diff --git a/build/three.js b/build/three.js index f4f94e7208209e..b423271905fdc4 100644 --- a/build/three.js +++ b/build/three.js @@ -6000,7 +6000,7 @@ var beginnormal_vertex = "\nvec3 objectNormal = vec3( normal );\n"; - var bsdfs = "float punctualLightIntensityToIrradianceFactor( const in float lightDistance, const in float cutoffDistance, const in float decayExponent ) {\n#if defined ( PHYSICALLY_CORRECT_LIGHTS )\n\tfloat distanceFalloff = 1.0 / max( pow( lightDistance, decayExponent ), 0.01 );\n\tif( cutoffDistance > 0.0 ) {\n\t\tdistanceFalloff *= pow2( saturate( 1.0 - pow4( lightDistance / cutoffDistance ) ) );\n\t}\n\treturn distanceFalloff;\n#else\n\tif( cutoffDistance > 0.0 ) {\n\t\treturn pow( saturate( -lightDistance / cutoffDistance + 1.0 ), decayExponent );\n\t}\n\treturn 1.0;\n#endif\n}\nvec3 BRDF_Diffuse_Lambert( const in vec3 diffuseColor ) {\n\treturn RECIPROCAL_PI * diffuseColor;\n}\nvec3 F_Schlick( const in vec3 specularColor, const in float dotLH ) {\n\tfloat fresnel = exp2( ( -5.55473 * dotLH - 6.98316 ) * dotLH );\n\treturn ( 1.0 - specularColor ) * fresnel + specularColor;\n}\nfloat G_GGX_Smith( const in float alpha, const in float dotNL, const in float dotNV ) {\n\tfloat a2 = pow2( alpha );\n\tfloat gl = dotNL + sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\n\tfloat gv = dotNV + sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\n\treturn 1.0 / ( gl * gv );\n}\nfloat G_GGX_SmithCorrelated( const in float alpha, const in float dotNL, const in float dotNV ) {\n\tfloat a2 = pow2( alpha );\n\tfloat gv = dotNL * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\n\tfloat gl = dotNV * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\n\treturn 0.5 / max( gv + gl, EPSILON );\n}\nfloat D_GGX( const in float alpha, const in float dotNH ) {\n\tfloat a2 = pow2( alpha );\n\tfloat denom = pow2( dotNH ) * ( a2 - 1.0 ) + 1.0;\n\treturn RECIPROCAL_PI * a2 / pow2( denom );\n}\nvec3 BRDF_Specular_GGX( const in IncidentLight incidentLight, const in GeometricContext geometry, const in vec3 specularColor, const in float roughness ) {\n\tfloat alpha = pow2( roughness );\n\tvec3 halfDir = normalize( incidentLight.direction + geometry.viewDir );\n\tfloat dotNL = saturate( dot( geometry.normal, incidentLight.direction ) );\n\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\tfloat dotNH = saturate( dot( geometry.normal, halfDir ) );\n\tfloat dotLH = saturate( dot( incidentLight.direction, halfDir ) );\n\tvec3 F = F_Schlick( specularColor, dotLH );\n\tfloat G = G_GGX_SmithCorrelated( alpha, dotNL, dotNV );\n\tfloat D = D_GGX( alpha, dotNH );\n\treturn F * ( G * D );\n}\nvec2 LTC_Uv( const in vec3 N, const in vec3 V, const in float roughness ) {\n\tconst float LUT_SIZE = 64.0;\n\tconst float LUT_SCALE = ( LUT_SIZE - 1.0 ) / LUT_SIZE;\n\tconst float LUT_BIAS = 0.5 / LUT_SIZE;\n\tfloat dotNV = saturate( dot( N, V ) );\n\tvec2 uv = vec2( roughness, sqrt( 1.0 - dotNV ) );\n\tuv = uv * LUT_SCALE + LUT_BIAS;\n\treturn uv;\n}\nfloat LTC_ClippedSphereFormFactor( const in vec3 f ) {\n\tfloat l = length( f );\n\treturn max( ( l * l + f.z ) / ( l + 1.0 ), 0.0 );\n}\nvec3 LTC_EdgeVectorFormFactor( const in vec3 v1, const in vec3 v2 ) {\n\tfloat x = dot( v1, v2 );\n\tfloat y = abs( x );\n\tfloat a = 0.8543985 + ( 0.4965155 + 0.0145206 * y ) * y;\n\tfloat b = 3.4175940 + ( 4.1616724 + y ) * y;\n\tfloat v = a / b;\n\tfloat theta_sintheta = ( x > 0.0 ) ? v : 0.5 * inversesqrt( max( 1.0 - x * x, 1e-7 ) ) - v;\n\treturn cross( v1, v2 ) * theta_sintheta;\n}\nvec3 LTC_Evaluate( const in vec3 N, const in vec3 V, const in vec3 P, const in mat3 mInv, const in vec3 rectCoords[ 4 ] ) {\n\tvec3 v1 = rectCoords[ 1 ] - rectCoords[ 0 ];\n\tvec3 v2 = rectCoords[ 3 ] - rectCoords[ 0 ];\n\tvec3 lightNormal = cross( v1, v2 );\n\tif( dot( lightNormal, P - rectCoords[ 0 ] ) < 0.0 ) return vec3( 0.0 );\n\tvec3 T1, T2;\n\tT1 = normalize( V - N * dot( V, N ) );\n\tT2 = - cross( N, T1 );\n\tmat3 mat = mInv * transposeMat3( mat3( T1, T2, N ) );\n\tvec3 coords[ 4 ];\n\tcoords[ 0 ] = mat * ( rectCoords[ 0 ] - P );\n\tcoords[ 1 ] = mat * ( rectCoords[ 1 ] - P );\n\tcoords[ 2 ] = mat * ( rectCoords[ 2 ] - P );\n\tcoords[ 3 ] = mat * ( rectCoords[ 3 ] - P );\n\tcoords[ 0 ] = normalize( coords[ 0 ] );\n\tcoords[ 1 ] = normalize( coords[ 1 ] );\n\tcoords[ 2 ] = normalize( coords[ 2 ] );\n\tcoords[ 3 ] = normalize( coords[ 3 ] );\n\tvec3 vectorFormFactor = vec3( 0.0 );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 0 ], coords[ 1 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 1 ], coords[ 2 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 2 ], coords[ 3 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 3 ], coords[ 0 ] );\n\tfloat result = LTC_ClippedSphereFormFactor( vectorFormFactor );\n\treturn vec3( result );\n}\nvec3 BRDF_Specular_GGX_Environment( const in GeometricContext geometry, const in vec3 specularColor, const in float roughness ) {\n\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\tconst vec4 c0 = vec4( - 1, - 0.0275, - 0.572, 0.022 );\n\tconst vec4 c1 = vec4( 1, 0.0425, 1.04, - 0.04 );\n\tvec4 r = roughness * c0 + c1;\n\tfloat a004 = min( r.x * r.x, exp2( - 9.28 * dotNV ) ) * r.x + r.y;\n\tvec2 AB = vec2( -1.04, 1.04 ) * a004 + r.zw;\n\treturn specularColor * AB.x + AB.y;\n}\nfloat G_BlinnPhong_Implicit( ) {\n\treturn 0.25;\n}\nfloat D_BlinnPhong( const in float shininess, const in float dotNH ) {\n\treturn RECIPROCAL_PI * ( shininess * 0.5 + 1.0 ) * pow( dotNH, shininess );\n}\nvec3 BRDF_Specular_BlinnPhong( const in IncidentLight incidentLight, const in GeometricContext geometry, const in vec3 specularColor, const in float shininess ) {\n\tvec3 halfDir = normalize( incidentLight.direction + geometry.viewDir );\n\tfloat dotNH = saturate( dot( geometry.normal, halfDir ) );\n\tfloat dotLH = saturate( dot( incidentLight.direction, halfDir ) );\n\tvec3 F = F_Schlick( specularColor, dotLH );\n\tfloat G = G_BlinnPhong_Implicit( );\n\tfloat D = D_BlinnPhong( shininess, dotNH );\n\treturn F * ( G * D );\n}\nfloat GGXRoughnessToBlinnExponent( const in float ggxRoughness ) {\n\treturn ( 2.0 / pow2( ggxRoughness + 0.0001 ) - 2.0 );\n}\nfloat BlinnExponentToGGXRoughness( const in float blinnExponent ) {\n\treturn sqrt( 2.0 / ( blinnExponent + 2.0 ) );\n}\n"; + var bsdfs = "float punctualLightIntensityToIrradianceFactor( const in float lightDistance, const in float cutoffDistance, const in float decayExponent ) {\n#if defined ( PHYSICALLY_CORRECT_LIGHTS )\n\tfloat distanceFalloff = 1.0 / max( pow( lightDistance, decayExponent ), 0.01 );\n\tif( cutoffDistance > 0.0 ) {\n\t\tdistanceFalloff *= pow2( saturate( 1.0 - pow4( lightDistance / cutoffDistance ) ) );\n\t}\n\treturn distanceFalloff;\n#else\n\tif( cutoffDistance > 0.0 && decayExponent > 0.0 ) {\n\t\treturn pow( saturate( -lightDistance / cutoffDistance + 1.0 ), decayExponent );\n\t}\n\treturn 1.0;\n#endif\n}\nvec3 BRDF_Diffuse_Lambert( const in vec3 diffuseColor ) {\n\treturn RECIPROCAL_PI * diffuseColor;\n}\nvec3 F_Schlick( const in vec3 specularColor, const in float dotLH ) {\n\tfloat fresnel = exp2( ( -5.55473 * dotLH - 6.98316 ) * dotLH );\n\treturn ( 1.0 - specularColor ) * fresnel + specularColor;\n}\nfloat G_GGX_Smith( const in float alpha, const in float dotNL, const in float dotNV ) {\n\tfloat a2 = pow2( alpha );\n\tfloat gl = dotNL + sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\n\tfloat gv = dotNV + sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\n\treturn 1.0 / ( gl * gv );\n}\nfloat G_GGX_SmithCorrelated( const in float alpha, const in float dotNL, const in float dotNV ) {\n\tfloat a2 = pow2( alpha );\n\tfloat gv = dotNL * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\n\tfloat gl = dotNV * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\n\treturn 0.5 / max( gv + gl, EPSILON );\n}\nfloat D_GGX( const in float alpha, const in float dotNH ) {\n\tfloat a2 = pow2( alpha );\n\tfloat denom = pow2( dotNH ) * ( a2 - 1.0 ) + 1.0;\n\treturn RECIPROCAL_PI * a2 / pow2( denom );\n}\nvec3 BRDF_Specular_GGX( const in IncidentLight incidentLight, const in GeometricContext geometry, const in vec3 specularColor, const in float roughness ) {\n\tfloat alpha = pow2( roughness );\n\tvec3 halfDir = normalize( incidentLight.direction + geometry.viewDir );\n\tfloat dotNL = saturate( dot( geometry.normal, incidentLight.direction ) );\n\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\tfloat dotNH = saturate( dot( geometry.normal, halfDir ) );\n\tfloat dotLH = saturate( dot( incidentLight.direction, halfDir ) );\n\tvec3 F = F_Schlick( specularColor, dotLH );\n\tfloat G = G_GGX_SmithCorrelated( alpha, dotNL, dotNV );\n\tfloat D = D_GGX( alpha, dotNH );\n\treturn F * ( G * D );\n}\nvec2 LTC_Uv( const in vec3 N, const in vec3 V, const in float roughness ) {\n\tconst float LUT_SIZE = 64.0;\n\tconst float LUT_SCALE = ( LUT_SIZE - 1.0 ) / LUT_SIZE;\n\tconst float LUT_BIAS = 0.5 / LUT_SIZE;\n\tfloat dotNV = saturate( dot( N, V ) );\n\tvec2 uv = vec2( roughness, sqrt( 1.0 - dotNV ) );\n\tuv = uv * LUT_SCALE + LUT_BIAS;\n\treturn uv;\n}\nfloat LTC_ClippedSphereFormFactor( const in vec3 f ) {\n\tfloat l = length( f );\n\treturn max( ( l * l + f.z ) / ( l + 1.0 ), 0.0 );\n}\nvec3 LTC_EdgeVectorFormFactor( const in vec3 v1, const in vec3 v2 ) {\n\tfloat x = dot( v1, v2 );\n\tfloat y = abs( x );\n\tfloat a = 0.8543985 + ( 0.4965155 + 0.0145206 * y ) * y;\n\tfloat b = 3.4175940 + ( 4.1616724 + y ) * y;\n\tfloat v = a / b;\n\tfloat theta_sintheta = ( x > 0.0 ) ? v : 0.5 * inversesqrt( max( 1.0 - x * x, 1e-7 ) ) - v;\n\treturn cross( v1, v2 ) * theta_sintheta;\n}\nvec3 LTC_Evaluate( const in vec3 N, const in vec3 V, const in vec3 P, const in mat3 mInv, const in vec3 rectCoords[ 4 ] ) {\n\tvec3 v1 = rectCoords[ 1 ] - rectCoords[ 0 ];\n\tvec3 v2 = rectCoords[ 3 ] - rectCoords[ 0 ];\n\tvec3 lightNormal = cross( v1, v2 );\n\tif( dot( lightNormal, P - rectCoords[ 0 ] ) < 0.0 ) return vec3( 0.0 );\n\tvec3 T1, T2;\n\tT1 = normalize( V - N * dot( V, N ) );\n\tT2 = - cross( N, T1 );\n\tmat3 mat = mInv * transposeMat3( mat3( T1, T2, N ) );\n\tvec3 coords[ 4 ];\n\tcoords[ 0 ] = mat * ( rectCoords[ 0 ] - P );\n\tcoords[ 1 ] = mat * ( rectCoords[ 1 ] - P );\n\tcoords[ 2 ] = mat * ( rectCoords[ 2 ] - P );\n\tcoords[ 3 ] = mat * ( rectCoords[ 3 ] - P );\n\tcoords[ 0 ] = normalize( coords[ 0 ] );\n\tcoords[ 1 ] = normalize( coords[ 1 ] );\n\tcoords[ 2 ] = normalize( coords[ 2 ] );\n\tcoords[ 3 ] = normalize( coords[ 3 ] );\n\tvec3 vectorFormFactor = vec3( 0.0 );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 0 ], coords[ 1 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 1 ], coords[ 2 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 2 ], coords[ 3 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 3 ], coords[ 0 ] );\n\tfloat result = LTC_ClippedSphereFormFactor( vectorFormFactor );\n\treturn vec3( result );\n}\nvec3 BRDF_Specular_GGX_Environment( const in GeometricContext geometry, const in vec3 specularColor, const in float roughness ) {\n\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\tconst vec4 c0 = vec4( - 1, - 0.0275, - 0.572, 0.022 );\n\tconst vec4 c1 = vec4( 1, 0.0425, 1.04, - 0.04 );\n\tvec4 r = roughness * c0 + c1;\n\tfloat a004 = min( r.x * r.x, exp2( - 9.28 * dotNV ) ) * r.x + r.y;\n\tvec2 AB = vec2( -1.04, 1.04 ) * a004 + r.zw;\n\treturn specularColor * AB.x + AB.y;\n}\nfloat G_BlinnPhong_Implicit( ) {\n\treturn 0.25;\n}\nfloat D_BlinnPhong( const in float shininess, const in float dotNH ) {\n\treturn RECIPROCAL_PI * ( shininess * 0.5 + 1.0 ) * pow( dotNH, shininess );\n}\nvec3 BRDF_Specular_BlinnPhong( const in IncidentLight incidentLight, const in GeometricContext geometry, const in vec3 specularColor, const in float shininess ) {\n\tvec3 halfDir = normalize( incidentLight.direction + geometry.viewDir );\n\tfloat dotNH = saturate( dot( geometry.normal, halfDir ) );\n\tfloat dotLH = saturate( dot( incidentLight.direction, halfDir ) );\n\tvec3 F = F_Schlick( specularColor, dotLH );\n\tfloat G = G_BlinnPhong_Implicit( );\n\tfloat D = D_BlinnPhong( shininess, dotNH );\n\treturn F * ( G * D );\n}\nfloat GGXRoughnessToBlinnExponent( const in float ggxRoughness ) {\n\treturn ( 2.0 / pow2( ggxRoughness + 0.0001 ) - 2.0 );\n}\nfloat BlinnExponentToGGXRoughness( const in float blinnExponent ) {\n\treturn sqrt( 2.0 / ( blinnExponent + 2.0 ) );\n}\n"; var bumpmap_pars_fragment = "#ifdef USE_BUMPMAP\n\tuniform sampler2D bumpMap;\n\tuniform float bumpScale;\n\tvec2 dHdxy_fwd() {\n\t\tvec2 dSTdx = dFdx( vUv );\n\t\tvec2 dSTdy = dFdy( vUv );\n\t\tfloat Hll = bumpScale * texture2D( bumpMap, vUv ).x;\n\t\tfloat dBx = bumpScale * texture2D( bumpMap, vUv + dSTdx ).x - Hll;\n\t\tfloat dBy = bumpScale * texture2D( bumpMap, vUv + dSTdy ).x - Hll;\n\t\treturn vec2( dBx, dBy );\n\t}\n\tvec3 perturbNormalArb( vec3 surf_pos, vec3 surf_norm, vec2 dHdxy ) {\n\t\tvec3 vSigmaX = vec3( dFdx( surf_pos.x ), dFdx( surf_pos.y ), dFdx( surf_pos.z ) );\n\t\tvec3 vSigmaY = vec3( dFdy( surf_pos.x ), dFdy( surf_pos.y ), dFdy( surf_pos.z ) );\n\t\tvec3 vN = surf_norm;\n\t\tvec3 R1 = cross( vSigmaY, vN );\n\t\tvec3 R2 = cross( vN, vSigmaX );\n\t\tfloat fDet = dot( vSigmaX, R1 );\n\t\tfDet *= ( float( gl_FrontFacing ) * 2.0 - 1.0 );\n\t\tvec3 vGrad = sign( fDet ) * ( dHdxy.x * R1 + dHdxy.y * R2 );\n\t\treturn normalize( abs( fDet ) * surf_norm - vGrad );\n\t}\n#endif\n"; @@ -6168,9 +6168,9 @@ var background_vert = "varying vec2 vUv;\nvoid main() {\n\tvUv = uv;\n\tgl_Position = vec4( position, 1.0 );\n\tgl_Position.z = 1.0;\n}\n"; - var cube_frag = "uniform samplerCube tCube;\nuniform float tFlip;\nuniform float opacity;\nvarying vec3 vWorldPosition;\nvoid main() {\n\tgl_FragColor = textureCube( tCube, vec3( tFlip * vWorldPosition.x, vWorldPosition.yz ) );\n\tgl_FragColor.a *= opacity;\n}\n"; + var cube_frag = "uniform samplerCube tCube;\nuniform float tFlip;\nuniform float opacity;\nvarying vec3 vWorldDirection;\nvoid main() {\n\tgl_FragColor = textureCube( tCube, vec3( tFlip * vWorldDirection.x, vWorldDirection.yz ) );\n\tgl_FragColor.a *= opacity;\n}\n"; - var cube_vert = "varying vec3 vWorldPosition;\n#include \nvoid main() {\n\tvWorldPosition = transformDirection( position, modelMatrix );\n\t#include \n\t#include \n\tgl_Position.z = gl_Position.w;\n}\n"; + var cube_vert = "varying vec3 vWorldDirection;\n#include \nvoid main() {\n\tvWorldDirection = transformDirection( position, modelMatrix );\n\t#include \n\t#include \n\tgl_Position.z = gl_Position.w;\n}\n"; var depth_frag = "#if DEPTH_PACKING == 3200\n\tuniform float opacity;\n#endif\n#include \n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\tvec4 diffuseColor = vec4( 1.0 );\n\t#if DEPTH_PACKING == 3200\n\t\tdiffuseColor.a = opacity;\n\t#endif\n\t#include \n\t#include \n\t#include \n\t#include \n\t#if DEPTH_PACKING == 3200\n\t\tgl_FragColor = vec4( vec3( 1.0 - gl_FragCoord.z ), opacity );\n\t#elif DEPTH_PACKING == 3201\n\t\tgl_FragColor = packDepthToRGBA( gl_FragCoord.z );\n\t#endif\n}\n"; @@ -6180,9 +6180,9 @@ var distanceRGBA_vert = "#define DISTANCE\nvarying vec3 vWorldPosition;\n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\t#include \n\t#ifdef USE_DISPLACEMENTMAP\n\t\t#include \n\t\t#include \n\t\t#include \n\t#endif\n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\tvWorldPosition = worldPosition.xyz;\n}\n"; - var equirect_frag = "uniform sampler2D tEquirect;\nvarying vec3 vWorldPosition;\n#include \nvoid main() {\n\tvec3 direction = normalize( vWorldPosition );\n\tvec2 sampleUV;\n\tsampleUV.y = asin( clamp( direction.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5;\n\tsampleUV.x = atan( direction.z, direction.x ) * RECIPROCAL_PI2 + 0.5;\n\tgl_FragColor = texture2D( tEquirect, sampleUV );\n}\n"; + var equirect_frag = "uniform sampler2D tEquirect;\nvarying vec3 vWorldDirection;\n#include \nvoid main() {\n\tvec3 direction = normalize( vWorldDirection );\n\tvec2 sampleUV;\n\tsampleUV.y = asin( clamp( direction.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5;\n\tsampleUV.x = atan( direction.z, direction.x ) * RECIPROCAL_PI2 + 0.5;\n\tgl_FragColor = texture2D( tEquirect, sampleUV );\n}\n"; - var equirect_vert = "varying vec3 vWorldPosition;\n#include \nvoid main() {\n\tvWorldPosition = transformDirection( position, modelMatrix );\n\t#include \n\t#include \n}\n"; + var equirect_vert = "varying vec3 vWorldDirection;\n#include \nvoid main() {\n\tvWorldDirection = transformDirection( position, modelMatrix );\n\t#include \n\t#include \n}\n"; var linedashed_frag = "uniform vec3 diffuse;\nuniform float opacity;\nuniform float dashSize;\nuniform float totalSize;\nvarying float vLineDistance;\n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\tif ( mod( vLineDistance, totalSize ) > dashSize ) {\n\t\tdiscard;\n\t}\n\tvec3 outgoingLight = vec3( 0.0 );\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include \n\t#include \n\toutgoingLight = diffuseColor.rgb;\n\tgl_FragColor = vec4( outgoingLight, diffuseColor.a );\n\t#include \n\t#include \n\t#include \n\t#include \n}\n"; @@ -7551,7 +7551,7 @@ function createBuffer( attribute, bufferType ) { var array = attribute.array; - var usage = attribute.dynamic ? gl.DYNAMIC_DRAW : gl.STATIC_DRAW; + var usage = attribute.dynamic ? 35048 : 35044; var buffer = gl.createBuffer(); @@ -7560,11 +7560,11 @@ attribute.onUploadCallback(); - var type = gl.FLOAT; + var type = 5126; if ( array instanceof Float32Array ) { - type = gl.FLOAT; + type = 5126; } else if ( array instanceof Float64Array ) { @@ -7572,27 +7572,27 @@ } else if ( array instanceof Uint16Array ) { - type = gl.UNSIGNED_SHORT; + type = 5123; } else if ( array instanceof Int16Array ) { - type = gl.SHORT; + type = 5122; } else if ( array instanceof Uint32Array ) { - type = gl.UNSIGNED_INT; + type = 5125; } else if ( array instanceof Int32Array ) { - type = gl.INT; + type = 5124; } else if ( array instanceof Int8Array ) { - type = gl.BYTE; + type = 5120; } else if ( array instanceof Uint8Array ) { - type = gl.UNSIGNED_BYTE; + type = 5121; } @@ -7614,7 +7614,7 @@ if ( attribute.dynamic === false ) { - gl.bufferData( bufferType, array, gl.STATIC_DRAW ); + gl.bufferData( bufferType, array, 35044 ); } else if ( updateRange.count === - 1 ) { @@ -8186,18 +8186,22 @@ Object.defineProperties( this, { position: { + configurable: true, enumerable: true, value: position }, rotation: { + configurable: true, enumerable: true, value: rotation }, quaternion: { + configurable: true, enumerable: true, value: quaternion }, scale: { + configurable: true, enumerable: true, value: scale }, @@ -9236,35 +9240,13 @@ if ( uvs2 !== undefined ) this.faceVertexUvs[ 1 ] = []; - var tempNormals = []; - var tempUVs = []; - var tempUVs2 = []; - for ( var i = 0, j = 0; i < positions.length; i += 3, j += 2 ) { - scope.vertices.push( new Vector3( positions[ i ], positions[ i + 1 ], positions[ i + 2 ] ) ); - - if ( normals !== undefined ) { - - tempNormals.push( new Vector3( normals[ i ], normals[ i + 1 ], normals[ i + 2 ] ) ); - - } + scope.vertices.push( new Vector3().fromArray( positions, i ) ); if ( colors !== undefined ) { - scope.colors.push( new Color( colors[ i ], colors[ i + 1 ], colors[ i + 2 ] ) ); - - } - - if ( uvs !== undefined ) { - - tempUVs.push( new Vector2( uvs[ j ], uvs[ j + 1 ] ) ); - - } - - if ( uvs2 !== undefined ) { - - tempUVs2.push( new Vector2( uvs2[ j ], uvs2[ j + 1 ] ) ); + scope.colors.push( new Color().fromArray( colors, i ) ); } @@ -9272,8 +9254,16 @@ function addFace( a, b, c, materialIndex ) { - var vertexNormals = normals !== undefined ? [ tempNormals[ a ].clone(), tempNormals[ b ].clone(), tempNormals[ c ].clone() ] : []; - var vertexColors = colors !== undefined ? [ scope.colors[ a ].clone(), scope.colors[ b ].clone(), scope.colors[ c ].clone() ] : []; + var vertexColors = ( colors === undefined ) ? [] : [ + scope.colors[ a ].clone(), + scope.colors[ b ].clone(), + scope.colors[ c ].clone() ]; + + var vertexNormals = ( normals === undefined ) ? [] : [ + new Vector3().fromArray( normals, a * 3 ), + new Vector3().fromArray( normals, b * 3 ), + new Vector3().fromArray( normals, c * 3 ) + ]; var face = new Face3( a, b, c, vertexNormals, vertexColors, materialIndex ); @@ -9281,13 +9271,21 @@ if ( uvs !== undefined ) { - scope.faceVertexUvs[ 0 ].push( [ tempUVs[ a ].clone(), tempUVs[ b ].clone(), tempUVs[ c ].clone() ] ); + scope.faceVertexUvs[ 0 ].push( [ + new Vector2().fromArray( uvs, a * 2 ), + new Vector2().fromArray( uvs, b * 2 ), + new Vector2().fromArray( uvs, c * 2 ) + ] ); } if ( uvs2 !== undefined ) { - scope.faceVertexUvs[ 1 ].push( [ tempUVs2[ a ].clone(), tempUVs2[ b ].clone(), tempUVs2[ c ].clone() ] ); + scope.faceVertexUvs[ 1 ].push( [ + new Vector2().fromArray( uvs2, a * 2 ), + new Vector2().fromArray( uvs2, b * 2 ), + new Vector2().fromArray( uvs2, c * 2 ) + ] ); } @@ -12634,8 +12632,6 @@ this.alphaTest = 0; this.premultipliedAlpha = false; - this.overdraw = 0; // Overdrawn pixels (typically between 0 and 1) for fixing antialiasing gaps in CanvasRenderer - this.visible = true; this.userData = {}; @@ -12693,11 +12689,6 @@ currentValue.copy( newValue ); - } else if ( key === 'overdraw' ) { - - // ensure overdraw is backwards-compatible with legacy boolean type - this[ key ] = Number( newValue ); - } else { this[ key ] = newValue; @@ -12924,8 +12915,6 @@ this.alphaTest = source.alphaTest; this.premultipliedAlpha = source.premultipliedAlpha; - this.overdraw = source.overdraw; - this.visible = source.visible; this.userData = JSON.parse( JSON.stringify( source.userData ) ); @@ -14628,7 +14617,7 @@ } - if ( background && background.isCubeTexture ) { + if ( background && ( background.isCubeTexture || background.isWebGLRenderTargetCube ) ) { if ( boxMesh === undefined ) { @@ -14658,8 +14647,10 @@ } - boxMesh.material.uniforms.tCube.value = background; + boxMesh.material.uniforms.tCube.value = ( background.isWebGLRenderTargetCube ) ? background.texture : background; + boxMesh.material.uniforms.tFlip.value = ( background.isWebGLRenderTargetCube ) ? 1 : - 1; + // push to the pre-sorted opaque render list renderList.push( boxMesh, boxMesh.geometry, boxMesh.material, 0, null ); } else if ( background && background.isTexture ) { @@ -14687,6 +14678,7 @@ planeMesh.material.uniforms.t2D.value = background; + // push to the pre-sorted opaque render list renderList.push( planeMesh, planeMesh.geometry, planeMesh.material, 0, null ); } @@ -14819,8 +14811,8 @@ if ( precision === 'highp' ) { - if ( gl.getShaderPrecisionFormat( gl.VERTEX_SHADER, gl.HIGH_FLOAT ).precision > 0 && - gl.getShaderPrecisionFormat( gl.FRAGMENT_SHADER, gl.HIGH_FLOAT ).precision > 0 ) { + if ( gl.getShaderPrecisionFormat( 35633, 36338 ).precision > 0 && + gl.getShaderPrecisionFormat( 35632, 36338 ).precision > 0 ) { return 'highp'; @@ -14832,8 +14824,8 @@ if ( precision === 'mediump' ) { - if ( gl.getShaderPrecisionFormat( gl.VERTEX_SHADER, gl.MEDIUM_FLOAT ).precision > 0 && - gl.getShaderPrecisionFormat( gl.FRAGMENT_SHADER, gl.MEDIUM_FLOAT ).precision > 0 ) { + if ( gl.getShaderPrecisionFormat( 35633, 36337 ).precision > 0 && + gl.getShaderPrecisionFormat( 35632, 36337 ).precision > 0 ) { return 'mediump'; @@ -14859,15 +14851,15 @@ var logarithmicDepthBuffer = parameters.logarithmicDepthBuffer === true; - var maxTextures = gl.getParameter( gl.MAX_TEXTURE_IMAGE_UNITS ); - var maxVertexTextures = gl.getParameter( gl.MAX_VERTEX_TEXTURE_IMAGE_UNITS ); - var maxTextureSize = gl.getParameter( gl.MAX_TEXTURE_SIZE ); - var maxCubemapSize = gl.getParameter( gl.MAX_CUBE_MAP_TEXTURE_SIZE ); + var maxTextures = gl.getParameter( 34930 ); + var maxVertexTextures = gl.getParameter( 35660 ); + var maxTextureSize = gl.getParameter( 3379 ); + var maxCubemapSize = gl.getParameter( 34076 ); - var maxAttributes = gl.getParameter( gl.MAX_VERTEX_ATTRIBS ); - var maxVertexUniforms = gl.getParameter( gl.MAX_VERTEX_UNIFORM_VECTORS ); - var maxVaryings = gl.getParameter( gl.MAX_VARYING_VECTORS ); - var maxFragmentUniforms = gl.getParameter( gl.MAX_FRAGMENT_UNIFORM_VECTORS ); + var maxAttributes = gl.getParameter( 34921 ); + var maxVertexUniforms = gl.getParameter( 36347 ); + var maxVaryings = gl.getParameter( 36348 ); + var maxFragmentUniforms = gl.getParameter( 36349 ); var vertexTextures = maxVertexTextures > 0; var floatFragmentTextures = isWebGL2 || !! extensions.get( 'OES_texture_float' ); @@ -15203,13 +15195,13 @@ if ( index !== null ) { - attributes.update( index, gl.ELEMENT_ARRAY_BUFFER ); + attributes.update( index, 34963 ); } for ( var name in geometryAttributes ) { - attributes.update( geometryAttributes[ name ], gl.ARRAY_BUFFER ); + attributes.update( geometryAttributes[ name ], 34962 ); } @@ -15223,7 +15215,7 @@ for ( var i = 0, l = array.length; i < l; i ++ ) { - attributes.update( array[ i ], gl.ARRAY_BUFFER ); + attributes.update( array[ i ], 34962 ); } @@ -15278,7 +15270,7 @@ attribute = new ( arrayMax( indices ) > 65535 ? Uint32BufferAttribute : Uint16BufferAttribute )( indices, 1 ); - attributes.update( attribute, gl.ELEMENT_ARRAY_BUFFER ); + attributes.update( attribute, 34963 ); wireframeAttributes[ geometry.id ] = attribute; @@ -15391,28 +15383,28 @@ switch ( mode ) { - case gl.TRIANGLES: + case 4: render.triangles += instanceCount * ( count / 3 ); break; - case gl.TRIANGLE_STRIP: - case gl.TRIANGLE_FAN: + case 5: + case 6: render.triangles += instanceCount * ( count - 2 ); break; - case gl.LINES: + case 1: render.lines += instanceCount * ( count / 2 ); break; - case gl.LINE_STRIP: + case 3: render.lines += instanceCount * ( count - 1 ); break; - case gl.LINE_LOOP: + case 2: render.lines += instanceCount * count; break; - case gl.POINTS: + case 0: render.points += instanceCount * count; break; @@ -16476,7 +16468,7 @@ this.renderer = renderer; - var n = gl.getProgramParameter( program, gl.ACTIVE_UNIFORMS ); + var n = gl.getProgramParameter( program, 35718 ); for ( var i = 0; i < n; ++ i ) { @@ -16566,7 +16558,7 @@ gl.shaderSource( shader, string ); gl.compileShader( shader ); - if ( gl.getShaderParameter( shader, gl.COMPILE_STATUS ) === false ) { + if ( gl.getShaderParameter( shader, 35713 ) === false ) { console.error( 'THREE.WebGLShader: Shader couldn\'t compile.' ); @@ -16574,7 +16566,7 @@ if ( gl.getShaderInfoLog( shader ) !== '' ) { - console.warn( 'THREE.WebGLShader: gl.getShaderInfoLog()', type === gl.VERTEX_SHADER ? 'vertex' : 'fragment', gl.getShaderInfoLog( shader ), addLineNumbers( string ) ); + console.warn( 'THREE.WebGLShader: gl.getShaderInfoLog()', type === 35633 ? 'vertex' : 'fragment', gl.getShaderInfoLog( shader ), addLineNumbers( string ) ); } @@ -16698,7 +16690,7 @@ var attributes = {}; - var n = gl.getProgramParameter( program, gl.ACTIVE_ATTRIBUTES ); + var n = gl.getProgramParameter( program, 35721 ); for ( var i = 0; i < n; i ++ ) { @@ -17150,8 +17142,8 @@ // console.log( '*VERTEX*', vertexGlsl ); // console.log( '*FRAGMENT*', fragmentGlsl ); - var glVertexShader = WebGLShader( gl, gl.VERTEX_SHADER, vertexGlsl ); - var glFragmentShader = WebGLShader( gl, gl.FRAGMENT_SHADER, fragmentGlsl ); + var glVertexShader = WebGLShader( gl, 35633, vertexGlsl ); + var glFragmentShader = WebGLShader( gl, 35632, fragmentGlsl ); gl.attachShader( program, glVertexShader ); gl.attachShader( program, glFragmentShader ); @@ -17181,11 +17173,11 @@ // console.log( '**VERTEX**', gl.getExtension( 'WEBGL_debug_shaders' ).getTranslatedShaderSource( glVertexShader ) ); // console.log( '**FRAGMENT**', gl.getExtension( 'WEBGL_debug_shaders' ).getTranslatedShaderSource( glFragmentShader ) ); - if ( gl.getProgramParameter( program, gl.LINK_STATUS ) === false ) { + if ( gl.getProgramParameter( program, 35714 ) === false ) { runnable = false; - console.error( 'THREE.WebGLProgram: shader error: ', gl.getError(), 'gl.VALIDATE_STATUS', gl.getProgramParameter( program, gl.VALIDATE_STATUS ), 'gl.getProgramInfoLog', programLog, vertexLog, fragmentLog ); + console.error( 'THREE.WebGLProgram: shader error: ', gl.getError(), '35715', gl.getProgramParameter( program, 35715 ), 'gl.getProgramInfoLog', programLog, vertexLog, fragmentLog ); } else if ( programLog !== '' ) { @@ -17558,6 +17550,8 @@ array.push( renderer.gammaOutput ); + array.push( renderer.gammaFactor ); + return array.join(); }; @@ -18518,7 +18512,7 @@ var _state = _renderer.state; // Set GL state for depth map. - _state.disable( _gl.BLEND ); + _state.disable( 3042 ); _state.buffers.color.setClear( 1, 1, 1, 1 ); _state.buffers.depth.setTest( true ); _state.setScissorTest( false ); @@ -18918,11 +18912,11 @@ if ( depthTest ) { - enable( gl.DEPTH_TEST ); + enable( 2929 ); } else { - disable( gl.DEPTH_TEST ); + disable( 2929 ); } @@ -18949,53 +18943,53 @@ case NeverDepth: - gl.depthFunc( gl.NEVER ); + gl.depthFunc( 512 ); break; case AlwaysDepth: - gl.depthFunc( gl.ALWAYS ); + gl.depthFunc( 519 ); break; case LessDepth: - gl.depthFunc( gl.LESS ); + gl.depthFunc( 513 ); break; case LessEqualDepth: - gl.depthFunc( gl.LEQUAL ); + gl.depthFunc( 515 ); break; case EqualDepth: - gl.depthFunc( gl.EQUAL ); + gl.depthFunc( 514 ); break; case GreaterEqualDepth: - gl.depthFunc( gl.GEQUAL ); + gl.depthFunc( 518 ); break; case GreaterDepth: - gl.depthFunc( gl.GREATER ); + gl.depthFunc( 516 ); break; case NotEqualDepth: - gl.depthFunc( gl.NOTEQUAL ); + gl.depthFunc( 517 ); break; default: - gl.depthFunc( gl.LEQUAL ); + gl.depthFunc( 515 ); } } else { - gl.depthFunc( gl.LEQUAL ); + gl.depthFunc( 515 ); } @@ -19055,11 +19049,11 @@ if ( stencilTest ) { - enable( gl.STENCIL_TEST ); + enable( 2960 ); } else { - disable( gl.STENCIL_TEST ); + disable( 2960 ); } @@ -19150,7 +19144,7 @@ var depthBuffer = new DepthBuffer(); var stencilBuffer = new StencilBuffer(); - var maxVertexAttributes = gl.getParameter( gl.MAX_VERTEX_ATTRIBS ); + var maxVertexAttributes = gl.getParameter( 34921 ); var newAttributes = new Uint8Array( maxVertexAttributes ); var enabledAttributes = new Uint8Array( maxVertexAttributes ); var attributeDivisors = new Uint8Array( maxVertexAttributes ); @@ -19179,11 +19173,11 @@ var currentPolygonOffsetFactor = null; var currentPolygonOffsetUnits = null; - var maxTextures = gl.getParameter( gl.MAX_COMBINED_TEXTURE_IMAGE_UNITS ); + var maxTextures = gl.getParameter( 35661 ); var lineWidthAvailable = false; var version = 0; - var glVersion = gl.getParameter( gl.VERSION ); + var glVersion = gl.getParameter( 7938 ); if ( glVersion.indexOf( 'WebGL' ) !== - 1 ) { @@ -19209,12 +19203,12 @@ var texture = gl.createTexture(); gl.bindTexture( type, texture ); - gl.texParameteri( type, gl.TEXTURE_MIN_FILTER, gl.NEAREST ); - gl.texParameteri( type, gl.TEXTURE_MAG_FILTER, gl.NEAREST ); + gl.texParameteri( type, 10241, 9728 ); + gl.texParameteri( type, 10240, 9728 ); for ( var i = 0; i < count; i ++ ) { - gl.texImage2D( target + i, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, data ); + gl.texImage2D( target + i, 0, 6408, 1, 1, 0, 6408, 5121, data ); } @@ -19223,8 +19217,8 @@ } var emptyTextures = {}; - emptyTextures[ gl.TEXTURE_2D ] = createTexture( gl.TEXTURE_2D, gl.TEXTURE_2D, 1 ); - emptyTextures[ gl.TEXTURE_CUBE_MAP ] = createTexture( gl.TEXTURE_CUBE_MAP, gl.TEXTURE_CUBE_MAP_POSITIVE_X, 6 ); + emptyTextures[ 3553 ] = createTexture( 3553, 3553, 1 ); + emptyTextures[ 34067 ] = createTexture( 34067, 34069, 6 ); // init @@ -19232,12 +19226,12 @@ depthBuffer.setClear( 1 ); stencilBuffer.setClear( 0 ); - enable( gl.DEPTH_TEST ); + enable( 2929 ); depthBuffer.setFunc( LessEqualDepth ); setFlipSided( false ); setCullFace( CullFaceBack ); - enable( gl.CULL_FACE ); + enable( 2884 ); setBlending( NoBlending ); @@ -19329,7 +19323,7 @@ extensions.get( 'WEBGL_compressed_texture_etc1' ) || extensions.get( 'WEBGL_compressed_texture_astc' ) ) { - var formats = gl.getParameter( gl.COMPRESSED_TEXTURE_FORMATS ); + var formats = gl.getParameter( 34467 ); for ( var i = 0; i < formats.length; i ++ ) { @@ -19367,7 +19361,7 @@ if ( currentBlendingEnabled ) { - disable( gl.BLEND ); + disable( 3042 ); currentBlendingEnabled = false; } @@ -19378,7 +19372,7 @@ if ( ! currentBlendingEnabled ) { - enable( gl.BLEND ); + enable( 3042 ); currentBlendingEnabled = true; } @@ -19389,7 +19383,7 @@ if ( currentBlendEquation !== AddEquation || currentBlendEquationAlpha !== AddEquation ) { - gl.blendEquation( gl.FUNC_ADD ); + gl.blendEquation( 32774 ); currentBlendEquation = AddEquation; currentBlendEquationAlpha = AddEquation; @@ -19401,19 +19395,19 @@ switch ( blending ) { case NormalBlending: - gl.blendFuncSeparate( gl.ONE, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA ); + gl.blendFuncSeparate( 1, 771, 1, 771 ); break; case AdditiveBlending: - gl.blendFunc( gl.ONE, gl.ONE ); + gl.blendFunc( 1, 1 ); break; case SubtractiveBlending: - gl.blendFuncSeparate( gl.ZERO, gl.ZERO, gl.ONE_MINUS_SRC_COLOR, gl.ONE_MINUS_SRC_ALPHA ); + gl.blendFuncSeparate( 0, 0, 769, 771 ); break; case MultiplyBlending: - gl.blendFuncSeparate( gl.ZERO, gl.SRC_COLOR, gl.ZERO, gl.SRC_ALPHA ); + gl.blendFuncSeparate( 0, 768, 0, 770 ); break; default: @@ -19427,19 +19421,19 @@ switch ( blending ) { case NormalBlending: - gl.blendFuncSeparate( gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA ); + gl.blendFuncSeparate( 770, 771, 1, 771 ); break; case AdditiveBlending: - gl.blendFunc( gl.SRC_ALPHA, gl.ONE ); + gl.blendFunc( 770, 1 ); break; case SubtractiveBlending: - gl.blendFunc( gl.ZERO, gl.ONE_MINUS_SRC_COLOR ); + gl.blendFunc( 0, 769 ); break; case MultiplyBlending: - gl.blendFunc( gl.ZERO, gl.SRC_COLOR ); + gl.blendFunc( 0, 768 ); break; default: @@ -19498,8 +19492,8 @@ function setMaterial( material, frontFaceCW ) { material.side === DoubleSide - ? disable( gl.CULL_FACE ) - : enable( gl.CULL_FACE ); + ? disable( 2884 ) + : enable( 2884 ); var flipSided = ( material.side === BackSide ); if ( frontFaceCW ) flipSided = ! flipSided; @@ -19527,11 +19521,11 @@ if ( flipSided ) { - gl.frontFace( gl.CW ); + gl.frontFace( 2304 ); } else { - gl.frontFace( gl.CCW ); + gl.frontFace( 2305 ); } @@ -19545,21 +19539,21 @@ if ( cullFace !== CullFaceNone ) { - enable( gl.CULL_FACE ); + enable( 2884 ); if ( cullFace !== currentCullFace ) { if ( cullFace === CullFaceBack ) { - gl.cullFace( gl.BACK ); + gl.cullFace( 1029 ); } else if ( cullFace === CullFaceFront ) { - gl.cullFace( gl.FRONT ); + gl.cullFace( 1028 ); } else { - gl.cullFace( gl.FRONT_AND_BACK ); + gl.cullFace( 1032 ); } @@ -19567,7 +19561,7 @@ } else { - disable( gl.CULL_FACE ); + disable( 2884 ); } @@ -19591,7 +19585,7 @@ if ( polygonOffset ) { - enable( gl.POLYGON_OFFSET_FILL ); + enable( 32823 ); if ( currentPolygonOffsetFactor !== factor || currentPolygonOffsetUnits !== units ) { @@ -19604,7 +19598,7 @@ } else { - disable( gl.POLYGON_OFFSET_FILL ); + disable( 32823 ); } @@ -19614,11 +19608,11 @@ if ( scissorTest ) { - enable( gl.SCISSOR_TEST ); + enable( 3089 ); } else { - disable( gl.SCISSOR_TEST ); + disable( 3089 ); } @@ -19628,7 +19622,7 @@ function activeTexture( webglSlot ) { - if ( webglSlot === undefined ) webglSlot = gl.TEXTURE0 + maxTextures - 1; + if ( webglSlot === undefined ) webglSlot = 33984 + maxTextures - 1; if ( currentTextureSlot !== webglSlot ) { @@ -19915,27 +19909,27 @@ if ( ! capabilities.isWebGL2 ) return glFormat; - if ( glFormat === _gl.RED ) { + if ( glFormat === 6403 ) { - if ( glType === _gl.FLOAT ) return _gl.R32F; - if ( glType === _gl.HALF_FLOAT ) return _gl.R16F; - if ( glType === _gl.UNSIGNED_BYTE ) return _gl.R8; + if ( glType === 5126 ) return 33326; + if ( glType === 5131 ) return 33325; + if ( glType === 5121 ) return 33321; } - if ( glFormat === _gl.RGB ) { + if ( glFormat === 6407 ) { - if ( glType === _gl.FLOAT ) return _gl.RGB32F; - if ( glType === _gl.HALF_FLOAT ) return _gl.RGB16F; - if ( glType === _gl.UNSIGNED_BYTE ) return _gl.RGB8; + if ( glType === 5126 ) return 34837; + if ( glType === 5131 ) return 34843; + if ( glType === 5121 ) return 32849; } - if ( glFormat === _gl.RGBA ) { + if ( glFormat === 6408 ) { - if ( glType === _gl.FLOAT ) return _gl.RGBA32F; - if ( glType === _gl.HALF_FLOAT ) return _gl.RGBA16F; - if ( glType === _gl.UNSIGNED_BYTE ) return _gl.RGBA8; + if ( glType === 5126 ) return 34836; + if ( glType === 5131 ) return 34842; + if ( glType === 5121 ) return 32856; } @@ -19949,11 +19943,11 @@ if ( f === NearestFilter || f === NearestMipMapNearestFilter || f === NearestMipMapLinearFilter ) { - return _gl.NEAREST; + return 9728; } - return _gl.LINEAR; + return 9729; } @@ -20087,8 +20081,8 @@ } - state.activeTexture( _gl.TEXTURE0 + slot ); - state.bindTexture( _gl.TEXTURE_2D, textureProperties.__webglTexture ); + state.activeTexture( 33984 + slot ); + state.bindTexture( 3553, textureProperties.__webglTexture ); } @@ -20103,8 +20097,8 @@ } - state.activeTexture( _gl.TEXTURE0 + slot ); - state.bindTexture( _gl.TEXTURE_3D, textureProperties.__webglTexture ); + state.activeTexture( 33984 + slot ); + state.bindTexture( 32879, textureProperties.__webglTexture ); } @@ -20127,10 +20121,10 @@ } - state.activeTexture( _gl.TEXTURE0 + slot ); - state.bindTexture( _gl.TEXTURE_CUBE_MAP, textureProperties.__image__webglTextureCube ); + state.activeTexture( 33984 + slot ); + state.bindTexture( 34067, textureProperties.__image__webglTextureCube ); - _gl.pixelStorei( _gl.UNPACK_FLIP_Y_WEBGL, texture.flipY ); + _gl.pixelStorei( 37440, texture.flipY ); var isCompressed = ( texture && texture.isCompressedTexture ); var isDataTexture = ( texture.image[ 0 ] && texture.image[ 0 ].isDataTexture ); @@ -20157,7 +20151,7 @@ glType = utils.convert( texture.type ), glInternalFormat = getInternalFormat( glFormat, glType ); - setTextureParameters( _gl.TEXTURE_CUBE_MAP, texture, isPowerOfTwoImage ); + setTextureParameters( 34067, texture, isPowerOfTwoImage ); for ( var i = 0; i < 6; i ++ ) { @@ -20165,11 +20159,11 @@ if ( isDataTexture ) { - state.texImage2D( _gl.TEXTURE_CUBE_MAP_POSITIVE_X + i, 0, glInternalFormat, cubeImage[ i ].width, cubeImage[ i ].height, 0, glFormat, glType, cubeImage[ i ].data ); + state.texImage2D( 34069 + i, 0, glInternalFormat, cubeImage[ i ].width, cubeImage[ i ].height, 0, glFormat, glType, cubeImage[ i ].data ); } else { - state.texImage2D( _gl.TEXTURE_CUBE_MAP_POSITIVE_X + i, 0, glInternalFormat, glFormat, glType, cubeImage[ i ] ); + state.texImage2D( 34069 + i, 0, glInternalFormat, glFormat, glType, cubeImage[ i ] ); } @@ -20185,7 +20179,7 @@ if ( state.getCompressedTextureFormats().indexOf( glFormat ) > - 1 ) { - state.compressedTexImage2D( _gl.TEXTURE_CUBE_MAP_POSITIVE_X + i, j, glInternalFormat, mipmap.width, mipmap.height, 0, mipmap.data ); + state.compressedTexImage2D( 34069 + i, j, glInternalFormat, mipmap.width, mipmap.height, 0, mipmap.data ); } else { @@ -20195,7 +20189,7 @@ } else { - state.texImage2D( _gl.TEXTURE_CUBE_MAP_POSITIVE_X + i, j, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data ); + state.texImage2D( 34069 + i, j, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data ); } @@ -20218,7 +20212,7 @@ if ( textureNeedsGenerateMipmaps( texture, isPowerOfTwoImage ) ) { // We assume images for cube map have the same size. - generateMipmap( _gl.TEXTURE_CUBE_MAP, texture, image.width, image.height ); + generateMipmap( 34067, texture, image.width, image.height ); } @@ -20228,8 +20222,8 @@ } else { - state.activeTexture( _gl.TEXTURE0 + slot ); - state.bindTexture( _gl.TEXTURE_CUBE_MAP, textureProperties.__image__webglTextureCube ); + state.activeTexture( 33984 + slot ); + state.bindTexture( 34067, textureProperties.__image__webglTextureCube ); } @@ -20239,8 +20233,8 @@ function setTextureCubeDynamic( texture, slot ) { - state.activeTexture( _gl.TEXTURE0 + slot ); - state.bindTexture( _gl.TEXTURE_CUBE_MAP, properties.get( texture ).__webglTexture ); + state.activeTexture( 33984 + slot ); + state.bindTexture( 34067, properties.get( texture ).__webglTexture ); } @@ -20250,16 +20244,16 @@ if ( isPowerOfTwoImage ) { - _gl.texParameteri( textureType, _gl.TEXTURE_WRAP_S, utils.convert( texture.wrapS ) ); - _gl.texParameteri( textureType, _gl.TEXTURE_WRAP_T, utils.convert( texture.wrapT ) ); + _gl.texParameteri( textureType, 10242, utils.convert( texture.wrapS ) ); + _gl.texParameteri( textureType, 10243, utils.convert( texture.wrapT ) ); - _gl.texParameteri( textureType, _gl.TEXTURE_MAG_FILTER, utils.convert( texture.magFilter ) ); - _gl.texParameteri( textureType, _gl.TEXTURE_MIN_FILTER, utils.convert( texture.minFilter ) ); + _gl.texParameteri( textureType, 10240, utils.convert( texture.magFilter ) ); + _gl.texParameteri( textureType, 10241, utils.convert( texture.minFilter ) ); } else { - _gl.texParameteri( textureType, _gl.TEXTURE_WRAP_S, _gl.CLAMP_TO_EDGE ); - _gl.texParameteri( textureType, _gl.TEXTURE_WRAP_T, _gl.CLAMP_TO_EDGE ); + _gl.texParameteri( textureType, 10242, 33071 ); + _gl.texParameteri( textureType, 10243, 33071 ); if ( texture.wrapS !== ClampToEdgeWrapping || texture.wrapT !== ClampToEdgeWrapping ) { @@ -20267,8 +20261,8 @@ } - _gl.texParameteri( textureType, _gl.TEXTURE_MAG_FILTER, filterFallback( texture.magFilter ) ); - _gl.texParameteri( textureType, _gl.TEXTURE_MIN_FILTER, filterFallback( texture.minFilter ) ); + _gl.texParameteri( textureType, 10240, filterFallback( texture.magFilter ) ); + _gl.texParameteri( textureType, 10241, filterFallback( texture.minFilter ) ); if ( texture.minFilter !== NearestFilter && texture.minFilter !== LinearFilter ) { @@ -20302,11 +20296,11 @@ if ( texture.isDataTexture3D ) { - textureType = _gl.TEXTURE_3D; + textureType = 32879; } else { - textureType = _gl.TEXTURE_2D; + textureType = 3553; } @@ -20322,16 +20316,16 @@ info.memory.textures ++; } - state.activeTexture( _gl.TEXTURE0 + slot ); + state.activeTexture( 33984 + slot ); state.bindTexture( textureType, textureProperties.__webglTexture ); - _gl.pixelStorei( _gl.UNPACK_FLIP_Y_WEBGL, texture.flipY ); - _gl.pixelStorei( _gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, texture.premultiplyAlpha ); - _gl.pixelStorei( _gl.UNPACK_ALIGNMENT, texture.unpackAlignment ); + _gl.pixelStorei( 37440, texture.flipY ); + _gl.pixelStorei( 37441, texture.premultiplyAlpha ); + _gl.pixelStorei( 3317, texture.unpackAlignment ); var image = clampToMaxSize( texture.image, capabilities.maxTextureSize ); @@ -20354,21 +20348,21 @@ // populate depth texture with dummy data - glInternalFormat = _gl.DEPTH_COMPONENT; + glInternalFormat = 6402; if ( texture.type === FloatType ) { if ( ! capabilities.isWebGL2 ) throw new Error( 'Float Depth Texture only supported in WebGL2.0' ); - glInternalFormat = _gl.DEPTH_COMPONENT32F; + glInternalFormat = 36012; } else if ( capabilities.isWebGL2 ) { // WebGL 2.0 requires signed internalformat for glTexImage2D - glInternalFormat = _gl.DEPTH_COMPONENT16; + glInternalFormat = 33189; } - if ( texture.format === DepthFormat && glInternalFormat === _gl.DEPTH_COMPONENT ) { + if ( texture.format === DepthFormat && glInternalFormat === 6402 ) { // The error INVALID_OPERATION is generated by texImage2D if format and internalformat are // DEPTH_COMPONENT and type is not UNSIGNED_SHORT or UNSIGNED_INT @@ -20388,7 +20382,7 @@ // (https://www.khronos.org/registry/webgl/extensions/WEBGL_depth_texture/) if ( texture.format === DepthStencilFormat ) { - glInternalFormat = _gl.DEPTH_STENCIL; + glInternalFormat = 34041; // The error INVALID_OPERATION is generated by texImage2D if format and internalformat are // DEPTH_STENCIL and type is not UNSIGNED_INT_24_8_WEBGL. @@ -20404,7 +20398,7 @@ } - state.texImage2D( _gl.TEXTURE_2D, 0, glInternalFormat, image.width, image.height, 0, glFormat, glType, null ); + state.texImage2D( 3553, 0, glInternalFormat, image.width, image.height, 0, glFormat, glType, null ); } else if ( texture.isDataTexture ) { @@ -20417,7 +20411,7 @@ for ( var i = 0, il = mipmaps.length; i < il; i ++ ) { mipmap = mipmaps[ i ]; - state.texImage2D( _gl.TEXTURE_2D, i, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data ); + state.texImage2D( 3553, i, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data ); } @@ -20426,7 +20420,7 @@ } else { - state.texImage2D( _gl.TEXTURE_2D, 0, glInternalFormat, image.width, image.height, 0, glFormat, glType, image.data ); + state.texImage2D( 3553, 0, glInternalFormat, image.width, image.height, 0, glFormat, glType, image.data ); textureProperties.__maxMipLevel = 0; } @@ -20441,7 +20435,7 @@ if ( state.getCompressedTextureFormats().indexOf( glFormat ) > - 1 ) { - state.compressedTexImage2D( _gl.TEXTURE_2D, i, glInternalFormat, mipmap.width, mipmap.height, 0, mipmap.data ); + state.compressedTexImage2D( 3553, i, glInternalFormat, mipmap.width, mipmap.height, 0, mipmap.data ); } else { @@ -20451,7 +20445,7 @@ } else { - state.texImage2D( _gl.TEXTURE_2D, i, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data ); + state.texImage2D( 3553, i, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data ); } @@ -20461,7 +20455,7 @@ } else if ( texture.isDataTexture3D ) { - state.texImage3D( _gl.TEXTURE_3D, 0, glInternalFormat, image.width, image.height, image.depth, 0, glFormat, glType, image.data ); + state.texImage3D( 32879, 0, glInternalFormat, image.width, image.height, image.depth, 0, glFormat, glType, image.data ); textureProperties.__maxMipLevel = 0; } else { @@ -20477,7 +20471,7 @@ for ( var i = 0, il = mipmaps.length; i < il; i ++ ) { mipmap = mipmaps[ i ]; - state.texImage2D( _gl.TEXTURE_2D, i, glInternalFormat, glFormat, glType, mipmap ); + state.texImage2D( 3553, i, glInternalFormat, glFormat, glType, mipmap ); } @@ -20486,7 +20480,7 @@ } else { - state.texImage2D( _gl.TEXTURE_2D, 0, glInternalFormat, glFormat, glType, image ); + state.texImage2D( 3553, 0, glInternalFormat, glFormat, glType, image ); textureProperties.__maxMipLevel = 0; } @@ -20495,7 +20489,7 @@ if ( textureNeedsGenerateMipmaps( texture, isPowerOfTwoImage ) ) { - generateMipmap( _gl.TEXTURE_2D, texture, image.width, image.height ); + generateMipmap( 3553, texture, image.width, image.height ); } @@ -20514,35 +20508,35 @@ var glType = utils.convert( renderTarget.texture.type ); var glInternalFormat = getInternalFormat( glFormat, glType ); state.texImage2D( textureTarget, 0, glInternalFormat, renderTarget.width, renderTarget.height, 0, glFormat, glType, null ); - _gl.bindFramebuffer( _gl.FRAMEBUFFER, framebuffer ); - _gl.framebufferTexture2D( _gl.FRAMEBUFFER, attachment, textureTarget, properties.get( renderTarget.texture ).__webglTexture, 0 ); - _gl.bindFramebuffer( _gl.FRAMEBUFFER, null ); + _gl.bindFramebuffer( 36160, framebuffer ); + _gl.framebufferTexture2D( 36160, attachment, textureTarget, properties.get( renderTarget.texture ).__webglTexture, 0 ); + _gl.bindFramebuffer( 36160, null ); } // Setup storage for internal depth/stencil buffers and bind to correct framebuffer function setupRenderBufferStorage( renderbuffer, renderTarget ) { - _gl.bindRenderbuffer( _gl.RENDERBUFFER, renderbuffer ); + _gl.bindRenderbuffer( 36161, renderbuffer ); if ( renderTarget.depthBuffer && ! renderTarget.stencilBuffer ) { - _gl.renderbufferStorage( _gl.RENDERBUFFER, _gl.DEPTH_COMPONENT16, renderTarget.width, renderTarget.height ); - _gl.framebufferRenderbuffer( _gl.FRAMEBUFFER, _gl.DEPTH_ATTACHMENT, _gl.RENDERBUFFER, renderbuffer ); + _gl.renderbufferStorage( 36161, 33189, renderTarget.width, renderTarget.height ); + _gl.framebufferRenderbuffer( 36160, 36096, 36161, renderbuffer ); } else if ( renderTarget.depthBuffer && renderTarget.stencilBuffer ) { - _gl.renderbufferStorage( _gl.RENDERBUFFER, _gl.DEPTH_STENCIL, renderTarget.width, renderTarget.height ); - _gl.framebufferRenderbuffer( _gl.FRAMEBUFFER, _gl.DEPTH_STENCIL_ATTACHMENT, _gl.RENDERBUFFER, renderbuffer ); + _gl.renderbufferStorage( 36161, 34041, renderTarget.width, renderTarget.height ); + _gl.framebufferRenderbuffer( 36160, 33306, 36161, renderbuffer ); } else { // FIXME: We don't support !depth !stencil - _gl.renderbufferStorage( _gl.RENDERBUFFER, _gl.RGBA4, renderTarget.width, renderTarget.height ); + _gl.renderbufferStorage( 36161, 32854, renderTarget.width, renderTarget.height ); } - _gl.bindRenderbuffer( _gl.RENDERBUFFER, null ); + _gl.bindRenderbuffer( 36161, null ); } @@ -20552,7 +20546,7 @@ var isCube = ( renderTarget && renderTarget.isWebGLRenderTargetCube ); if ( isCube ) throw new Error( 'Depth Texture with cube render targets is not supported' ); - _gl.bindFramebuffer( _gl.FRAMEBUFFER, framebuffer ); + _gl.bindFramebuffer( 36160, framebuffer ); if ( ! ( renderTarget.depthTexture && renderTarget.depthTexture.isDepthTexture ) ) { @@ -20577,11 +20571,11 @@ if ( renderTarget.depthTexture.format === DepthFormat ) { - _gl.framebufferTexture2D( _gl.FRAMEBUFFER, _gl.DEPTH_ATTACHMENT, _gl.TEXTURE_2D, webglDepthTexture, 0 ); + _gl.framebufferTexture2D( 36160, 36096, 3553, webglDepthTexture, 0 ); } else if ( renderTarget.depthTexture.format === DepthStencilFormat ) { - _gl.framebufferTexture2D( _gl.FRAMEBUFFER, _gl.DEPTH_STENCIL_ATTACHMENT, _gl.TEXTURE_2D, webglDepthTexture, 0 ); + _gl.framebufferTexture2D( 36160, 33306, 3553, webglDepthTexture, 0 ); } else { @@ -20612,7 +20606,7 @@ for ( var i = 0; i < 6; i ++ ) { - _gl.bindFramebuffer( _gl.FRAMEBUFFER, renderTargetProperties.__webglFramebuffer[ i ] ); + _gl.bindFramebuffer( 36160, renderTargetProperties.__webglFramebuffer[ i ] ); renderTargetProperties.__webglDepthbuffer[ i ] = _gl.createRenderbuffer(); setupRenderBufferStorage( renderTargetProperties.__webglDepthbuffer[ i ], renderTarget ); @@ -20620,7 +20614,7 @@ } else { - _gl.bindFramebuffer( _gl.FRAMEBUFFER, renderTargetProperties.__webglFramebuffer ); + _gl.bindFramebuffer( 36160, renderTargetProperties.__webglFramebuffer ); renderTargetProperties.__webglDepthbuffer = _gl.createRenderbuffer(); setupRenderBufferStorage( renderTargetProperties.__webglDepthbuffer, renderTarget ); @@ -20628,7 +20622,7 @@ } - _gl.bindFramebuffer( _gl.FRAMEBUFFER, null ); + _gl.bindFramebuffer( 36160, null ); } @@ -20669,36 +20663,36 @@ if ( isCube ) { - state.bindTexture( _gl.TEXTURE_CUBE_MAP, textureProperties.__webglTexture ); - setTextureParameters( _gl.TEXTURE_CUBE_MAP, renderTarget.texture, isTargetPowerOfTwo ); + state.bindTexture( 34067, textureProperties.__webglTexture ); + setTextureParameters( 34067, renderTarget.texture, isTargetPowerOfTwo ); for ( var i = 0; i < 6; i ++ ) { - setupFrameBufferTexture( renderTargetProperties.__webglFramebuffer[ i ], renderTarget, _gl.COLOR_ATTACHMENT0, _gl.TEXTURE_CUBE_MAP_POSITIVE_X + i ); + setupFrameBufferTexture( renderTargetProperties.__webglFramebuffer[ i ], renderTarget, 36064, 34069 + i ); } if ( textureNeedsGenerateMipmaps( renderTarget.texture, isTargetPowerOfTwo ) ) { - generateMipmap( _gl.TEXTURE_CUBE_MAP, renderTarget.texture, renderTarget.width, renderTarget.height ); + generateMipmap( 34067, renderTarget.texture, renderTarget.width, renderTarget.height ); } - state.bindTexture( _gl.TEXTURE_CUBE_MAP, null ); + state.bindTexture( 34067, null ); } else { - state.bindTexture( _gl.TEXTURE_2D, textureProperties.__webglTexture ); - setTextureParameters( _gl.TEXTURE_2D, renderTarget.texture, isTargetPowerOfTwo ); - setupFrameBufferTexture( renderTargetProperties.__webglFramebuffer, renderTarget, _gl.COLOR_ATTACHMENT0, _gl.TEXTURE_2D ); + state.bindTexture( 3553, textureProperties.__webglTexture ); + setTextureParameters( 3553, renderTarget.texture, isTargetPowerOfTwo ); + setupFrameBufferTexture( renderTargetProperties.__webglFramebuffer, renderTarget, 36064, 3553 ); if ( textureNeedsGenerateMipmaps( renderTarget.texture, isTargetPowerOfTwo ) ) { - generateMipmap( _gl.TEXTURE_2D, renderTarget.texture, renderTarget.width, renderTarget.height ); + generateMipmap( 3553, renderTarget.texture, renderTarget.width, renderTarget.height ); } - state.bindTexture( _gl.TEXTURE_2D, null ); + state.bindTexture( 3553, null ); } @@ -20719,7 +20713,7 @@ if ( textureNeedsGenerateMipmaps( texture, isTargetPowerOfTwo ) ) { - var target = renderTarget.isWebGLRenderTargetCube ? _gl.TEXTURE_CUBE_MAP : _gl.TEXTURE_2D; + var target = renderTarget.isWebGLRenderTargetCube ? 34067 : 3553; var webglTexture = properties.get( texture ).__webglTexture; state.bindTexture( target, webglTexture ); @@ -20765,33 +20759,33 @@ var extension; - if ( p === RepeatWrapping ) return gl.REPEAT; - if ( p === ClampToEdgeWrapping ) return gl.CLAMP_TO_EDGE; - if ( p === MirroredRepeatWrapping ) return gl.MIRRORED_REPEAT; + if ( p === RepeatWrapping ) return 10497; + if ( p === ClampToEdgeWrapping ) return 33071; + if ( p === MirroredRepeatWrapping ) return 33648; - if ( p === NearestFilter ) return gl.NEAREST; - if ( p === NearestMipMapNearestFilter ) return gl.NEAREST_MIPMAP_NEAREST; - if ( p === NearestMipMapLinearFilter ) return gl.NEAREST_MIPMAP_LINEAR; + if ( p === NearestFilter ) return 9728; + if ( p === NearestMipMapNearestFilter ) return 9984; + if ( p === NearestMipMapLinearFilter ) return 9986; - if ( p === LinearFilter ) return gl.LINEAR; - if ( p === LinearMipMapNearestFilter ) return gl.LINEAR_MIPMAP_NEAREST; - if ( p === LinearMipMapLinearFilter ) return gl.LINEAR_MIPMAP_LINEAR; + if ( p === LinearFilter ) return 9729; + if ( p === LinearMipMapNearestFilter ) return 9985; + if ( p === LinearMipMapLinearFilter ) return 9987; - if ( p === UnsignedByteType ) return gl.UNSIGNED_BYTE; - if ( p === UnsignedShort4444Type ) return gl.UNSIGNED_SHORT_4_4_4_4; - if ( p === UnsignedShort5551Type ) return gl.UNSIGNED_SHORT_5_5_5_1; - if ( p === UnsignedShort565Type ) return gl.UNSIGNED_SHORT_5_6_5; + if ( p === UnsignedByteType ) return 5121; + if ( p === UnsignedShort4444Type ) return 32819; + if ( p === UnsignedShort5551Type ) return 32820; + if ( p === UnsignedShort565Type ) return 33635; - if ( p === ByteType ) return gl.BYTE; - if ( p === ShortType ) return gl.SHORT; - if ( p === UnsignedShortType ) return gl.UNSIGNED_SHORT; - if ( p === IntType ) return gl.INT; - if ( p === UnsignedIntType ) return gl.UNSIGNED_INT; - if ( p === FloatType ) return gl.FLOAT; + if ( p === ByteType ) return 5120; + if ( p === ShortType ) return 5122; + if ( p === UnsignedShortType ) return 5123; + if ( p === IntType ) return 5124; + if ( p === UnsignedIntType ) return 5125; + if ( p === FloatType ) return 5126; if ( p === HalfFloatType ) { - if ( capabilities.isWebGL2 ) return gl.HALF_FLOAT; + if ( capabilities.isWebGL2 ) return 5131; extension = extensions.get( 'OES_texture_half_float' ); @@ -20799,31 +20793,31 @@ } - if ( p === AlphaFormat ) return gl.ALPHA; - if ( p === RGBFormat ) return gl.RGB; - if ( p === RGBAFormat ) return gl.RGBA; - if ( p === LuminanceFormat ) return gl.LUMINANCE; - if ( p === LuminanceAlphaFormat ) return gl.LUMINANCE_ALPHA; - if ( p === DepthFormat ) return gl.DEPTH_COMPONENT; - if ( p === DepthStencilFormat ) return gl.DEPTH_STENCIL; - if ( p === RedFormat ) return gl.RED; + if ( p === AlphaFormat ) return 6406; + if ( p === RGBFormat ) return 6407; + if ( p === RGBAFormat ) return 6408; + if ( p === LuminanceFormat ) return 6409; + if ( p === LuminanceAlphaFormat ) return 6410; + if ( p === DepthFormat ) return 6402; + if ( p === DepthStencilFormat ) return 34041; + if ( p === RedFormat ) return 6403; - if ( p === AddEquation ) return gl.FUNC_ADD; - if ( p === SubtractEquation ) return gl.FUNC_SUBTRACT; - if ( p === ReverseSubtractEquation ) return gl.FUNC_REVERSE_SUBTRACT; + if ( p === AddEquation ) return 32774; + if ( p === SubtractEquation ) return 32778; + if ( p === ReverseSubtractEquation ) return 32779; - if ( p === ZeroFactor ) return gl.ZERO; - if ( p === OneFactor ) return gl.ONE; - if ( p === SrcColorFactor ) return gl.SRC_COLOR; - if ( p === OneMinusSrcColorFactor ) return gl.ONE_MINUS_SRC_COLOR; - if ( p === SrcAlphaFactor ) return gl.SRC_ALPHA; - if ( p === OneMinusSrcAlphaFactor ) return gl.ONE_MINUS_SRC_ALPHA; - if ( p === DstAlphaFactor ) return gl.DST_ALPHA; - if ( p === OneMinusDstAlphaFactor ) return gl.ONE_MINUS_DST_ALPHA; + if ( p === ZeroFactor ) return 0; + if ( p === OneFactor ) return 1; + if ( p === SrcColorFactor ) return 768; + if ( p === OneMinusSrcColorFactor ) return 769; + if ( p === SrcAlphaFactor ) return 770; + if ( p === OneMinusSrcAlphaFactor ) return 771; + if ( p === DstAlphaFactor ) return 772; + if ( p === OneMinusDstAlphaFactor ) return 773; - if ( p === DstColorFactor ) return gl.DST_COLOR; - if ( p === OneMinusDstColorFactor ) return gl.ONE_MINUS_DST_COLOR; - if ( p === SrcAlphaSaturateFactor ) return gl.SRC_ALPHA_SATURATE; + if ( p === DstColorFactor ) return 774; + if ( p === OneMinusDstColorFactor ) return 775; + if ( p === SrcAlphaSaturateFactor ) return 776; if ( p === RGB_S3TC_DXT1_Format || p === RGBA_S3TC_DXT1_Format || p === RGBA_S3TC_DXT3_Format || p === RGBA_S3TC_DXT5_Format ) { @@ -20885,8 +20879,8 @@ if ( capabilities.isWebGL2 ) { - if ( p === MinEquation ) return gl.MIN; - if ( p === MaxEquation ) return gl.MAX; + if ( p === MinEquation ) return 32775; + if ( p === MaxEquation ) return 32776; } @@ -20903,7 +20897,7 @@ if ( p === UnsignedInt248Type ) { - if ( capabilities.isWebGL2 ) return gl.UNSIGNED_INT_24_8; + if ( capabilities.isWebGL2 ) return 34042; extension = extensions.get( 'WEBGL_depth_texture' ); @@ -21264,69 +21258,73 @@ constructor: ArrayCamera, - isArrayCamera: true, - - /** - * Assumes 2 cameras that are perpendicular and share an X-axis, and that - * the cameras' projection and world matrices have already been set. - * And that near and far planes are identical for both cameras. - */ - setProjectionFromUnion: function () { - var cameraLPos = new Vector3(); - var cameraRPos = new Vector3(); - - return function () { - cameraLPos.setFromMatrixPosition( this.cameras[ 0 ].matrixWorld ); - cameraRPos.setFromMatrixPosition( this.cameras[ 1 ].matrixWorld ); - - var ipd = cameraLPos.distanceTo( cameraRPos ); - - var projL = this.cameras[ 0 ].projectionMatrix; - var projR = this.cameras[ 1 ].projectionMatrix; - - // VR systems will have identical far and near planes, and - // most likely identical top and bottom frustum extents. - // via: https://computergraphics.stackexchange.com/a/4765 - var near = projL[ 14 ] / ( projL[ 10 ] - 1 ); - var far = projL[ 14 ] / ( projL[ 10 ] + 1 ); - - var leftFovL = ( projL[ 8 ] - 1 ) / projL[ 0 ]; - var rightFovR = ( projR[ 8 ] + 1 ) / projR[ 0 ]; - var leftL = leftFovL * near; - var rightR = rightFovR * near; - var topL = near * ( projL[ 9 ] + 1 ) / projL[ 5 ]; - var topR = near * ( projR[ 9 ] + 1 ) / projR[ 5 ]; - var bottomL = near * ( projL[ 9 ] - 1 ) / projL[ 5 ]; - var bottomR = near * ( projR[ 9 ] - 1 ) / projR[ 5 ]; - - // Calculate the new camera's position offset from the - // left camera. - var zOffset = ipd / (leftFovL + rightFovR); - var xOffset = zOffset * leftFovL; - - // TODO: Better way to apply this offset? - this.cameras[ 0 ].matrixWorld.decompose( this.position, this.quaternion, this.scale ); - this.translateX(xOffset); - this.translateZ(-zOffset); - this.matrixWorld.compose( this.position, this.quaternion, this.scale ); - this.matrixWorldInverse.getInverse(this.matrixWorld); - - // Find the union of the frustum values of the cameras and scale - // the values so that the near plane's position does not change in world space, - // although must now be relative to the new union camera. - var near2 = near + zOffset; - var far2 = far + zOffset; - var left = leftL - xOffset; - var right = rightR + (ipd - xOffset); - var top = Math.max( topL, topR ); - var bottom = Math.min( bottomL, bottomR ); - - this.projectionMatrix.makePerspective( left, right, top, bottom, near2, far2 ); - } - }(), + isArrayCamera: true } ); + /** + * @author jsantell / https://www.jsantell.com/ + * @author mrdoob / http://mrdoob.com/ + */ + + var cameraLPos = new Vector3(); + var cameraRPos = new Vector3(); + + /** + * Assumes 2 cameras that are parallel and share an X-axis, and that + * the cameras' projection and world matrices have already been set. + * And that near and far planes are identical for both cameras. + * Visualization of this technique: https://computergraphics.stackexchange.com/a/4765 + */ + function setProjectionFromUnion( camera, cameraL, cameraR ) { + + cameraLPos.setFromMatrixPosition( cameraL.matrixWorld ); + cameraRPos.setFromMatrixPosition( cameraR.matrixWorld ); + + var ipd = cameraLPos.distanceTo( cameraRPos ); + + var projL = cameraL.projectionMatrix.elements; + var projR = cameraR.projectionMatrix.elements; + + // VR systems will have identical far and near planes, and + // most likely identical top and bottom frustum extents. + // Use the left camera for these values. + var near = projL[ 14 ] / ( projL[ 10 ] - 1 ); + var far = projL[ 14 ] / ( projL[ 10 ] + 1 ); + var topFov = ( projL[ 9 ] + 1 ) / projL[ 5 ]; + var bottomFov = ( projL[ 9 ] - 1 ) / projL[ 5 ]; + + var leftFov = ( projL[ 8 ] - 1 ) / projL[ 0 ]; + var rightFov = ( projR[ 8 ] + 1 ) / projR[ 0 ]; + var left = near * leftFov; + var right = near * rightFov; + + // Calculate the new camera's position offset from the + // left camera. xOffset should be roughly half `ipd`. + var zOffset = ipd / ( - leftFov + rightFov ); + var xOffset = zOffset * - leftFov; + + // TODO: Better way to apply this offset? + cameraL.matrixWorld.decompose( camera.position, camera.quaternion, camera.scale ); + camera.translateX( xOffset ); + camera.translateZ( zOffset ); + camera.matrixWorld.compose( camera.position, camera.quaternion, camera.scale ); + camera.matrixWorldInverse.getInverse( camera.matrixWorld ); + + // Find the union of the frustum values of the cameras and scale + // the values so that the near plane's position does not change in world space, + // although must now be relative to the new union camera. + var near2 = near + zOffset; + var far2 = far + zOffset; + var left2 = left - xOffset; + var right2 = right + ( ipd - xOffset ); + var top2 = topFov * far / far2 * near2; + var bottom2 = bottomFov * far / far2 * near2; + + camera.projectionMatrix.makePerspective( left2, right2, top2, bottom2, near2, far2 ); + + } + /** * @author mrdoob / http://mrdoob.com/ */ @@ -21344,6 +21342,8 @@ var standingMatrix = new Matrix4(); var standingMatrixInverse = new Matrix4(); + var framebufferScaleFactor = 1.0; + var frameOfReferenceType = 'stage'; if ( typeof window !== 'undefined' && 'VRFrameData' in window ) { @@ -21384,8 +21384,8 @@ if ( isPresenting() ) { var eyeParameters = device.getEyeParameters( 'left' ); - var renderWidth = eyeParameters.renderWidth; - var renderHeight = eyeParameters.renderHeight; + var renderWidth = eyeParameters.renderWidth * framebufferScaleFactor; + var renderHeight = eyeParameters.renderHeight * framebufferScaleFactor; currentPixelRatio = renderer.getPixelRatio(); currentSize = renderer.getSize(); @@ -21528,6 +21528,12 @@ }; + this.setFramebufferScaleFactor = function ( value ) { + + framebufferScaleFactor = value; + + }; + this.setFrameOfReferenceType = function ( value ) { frameOfReferenceType = value; @@ -21643,7 +21649,7 @@ cameraL.projectionMatrix.fromArray( frameData.leftProjectionMatrix ); cameraR.projectionMatrix.fromArray( frameData.rightProjectionMatrix ); - cameraVR.setProjectionFromUnion(); + setProjectionFromUnion( cameraVR, cameraL, cameraR ); // @@ -21720,6 +21726,8 @@ var device = null; var session = null; + var framebufferScaleFactor = 1.0; + var frameOfReference = null; var frameOfReferenceType = 'stage'; @@ -21799,6 +21807,12 @@ } + this.setFramebufferScaleFactor = function ( value ) { + + framebufferScaleFactor = value; + + }; + this.setFrameOfReferenceType = function ( value ) { frameOfReferenceType = value; @@ -21816,7 +21830,7 @@ session.addEventListener( 'selectend', onSessionEvent ); session.addEventListener( 'end', onSessionEnd ); - session.baseLayer = new XRWebGLLayer( session, gl ); + session.baseLayer = new XRWebGLLayer( session, gl, { framebufferScaleFactor: framebufferScaleFactor } ); session.requestFrameOfReference( frameOfReferenceType ).then( function ( value ) { frameOfReference = value; @@ -21837,6 +21851,13 @@ inputSources = session.getInputSources(); console.log( inputSources ); + for ( var i = 0; i < controllers.length; i ++ ) { + + var controller = controllers[ i ]; + controller.userData.inputSource = inputSources[ i ]; + + } + } ); } @@ -21886,7 +21907,7 @@ } - cameraVR.setProjectionFromUnion(); + setProjectionFromUnion( cameraVR, cameraL, cameraR ); return cameraVR; @@ -22430,9 +22451,9 @@ var bits = 0; - if ( color === undefined || color ) bits |= _gl.COLOR_BUFFER_BIT; - if ( depth === undefined || depth ) bits |= _gl.DEPTH_BUFFER_BIT; - if ( stencil === undefined || stencil ) bits |= _gl.STENCIL_BUFFER_BIT; + if ( color === undefined || color ) bits |= 16384; + if ( depth === undefined || depth ) bits |= 256; + if ( stencil === undefined || stencil ) bits |= 1024; _gl.clear( bits ); @@ -22558,47 +22579,47 @@ if ( object.hasPositions ) { - _gl.bindBuffer( _gl.ARRAY_BUFFER, buffers.position ); - _gl.bufferData( _gl.ARRAY_BUFFER, object.positionArray, _gl.DYNAMIC_DRAW ); + _gl.bindBuffer( 34962, buffers.position ); + _gl.bufferData( 34962, object.positionArray, 35048 ); state.enableAttribute( programAttributes.position ); - _gl.vertexAttribPointer( programAttributes.position, 3, _gl.FLOAT, false, 0, 0 ); + _gl.vertexAttribPointer( programAttributes.position, 3, 5126, false, 0, 0 ); } if ( object.hasNormals ) { - _gl.bindBuffer( _gl.ARRAY_BUFFER, buffers.normal ); - _gl.bufferData( _gl.ARRAY_BUFFER, object.normalArray, _gl.DYNAMIC_DRAW ); + _gl.bindBuffer( 34962, buffers.normal ); + _gl.bufferData( 34962, object.normalArray, 35048 ); state.enableAttribute( programAttributes.normal ); - _gl.vertexAttribPointer( programAttributes.normal, 3, _gl.FLOAT, false, 0, 0 ); + _gl.vertexAttribPointer( programAttributes.normal, 3, 5126, false, 0, 0 ); } if ( object.hasUvs ) { - _gl.bindBuffer( _gl.ARRAY_BUFFER, buffers.uv ); - _gl.bufferData( _gl.ARRAY_BUFFER, object.uvArray, _gl.DYNAMIC_DRAW ); + _gl.bindBuffer( 34962, buffers.uv ); + _gl.bufferData( 34962, object.uvArray, 35048 ); state.enableAttribute( programAttributes.uv ); - _gl.vertexAttribPointer( programAttributes.uv, 2, _gl.FLOAT, false, 0, 0 ); + _gl.vertexAttribPointer( programAttributes.uv, 2, 5126, false, 0, 0 ); } if ( object.hasColors ) { - _gl.bindBuffer( _gl.ARRAY_BUFFER, buffers.color ); - _gl.bufferData( _gl.ARRAY_BUFFER, object.colorArray, _gl.DYNAMIC_DRAW ); + _gl.bindBuffer( 34962, buffers.color ); + _gl.bufferData( 34962, object.colorArray, 35048 ); state.enableAttribute( programAttributes.color ); - _gl.vertexAttribPointer( programAttributes.color, 3, _gl.FLOAT, false, 0, 0 ); + _gl.vertexAttribPointer( programAttributes.color, 3, 5126, false, 0, 0 ); } state.disableUnusedAttributes(); - _gl.drawArrays( _gl.TRIANGLES, 0, object.count ); + _gl.drawArrays( 4, 0, object.count ); object.count = 0; @@ -22664,7 +22685,7 @@ if ( index !== null ) { - _gl.bindBuffer( _gl.ELEMENT_ARRAY_BUFFER, attribute.buffer ); + _gl.bindBuffer( 34963, attribute.buffer ); } @@ -22704,22 +22725,22 @@ if ( material.wireframe === true ) { state.setLineWidth( material.wireframeLinewidth * getTargetPixelRatio() ); - renderer.setMode( _gl.LINES ); + renderer.setMode( 1 ); } else { switch ( object.drawMode ) { case TrianglesDrawMode: - renderer.setMode( _gl.TRIANGLES ); + renderer.setMode( 4 ); break; case TriangleStripDrawMode: - renderer.setMode( _gl.TRIANGLE_STRIP ); + renderer.setMode( 5 ); break; case TriangleFanDrawMode: - renderer.setMode( _gl.TRIANGLE_FAN ); + renderer.setMode( 6 ); break; } @@ -22737,25 +22758,25 @@ if ( object.isLineSegments ) { - renderer.setMode( _gl.LINES ); + renderer.setMode( 1 ); } else if ( object.isLineLoop ) { - renderer.setMode( _gl.LINE_LOOP ); + renderer.setMode( 2 ); } else { - renderer.setMode( _gl.LINE_STRIP ); + renderer.setMode( 3 ); } } else if ( object.isPoints ) { - renderer.setMode( _gl.POINTS ); + renderer.setMode( 0 ); } else if ( object.isSprite ) { - renderer.setMode( _gl.TRIANGLES ); + renderer.setMode( 4 ); } @@ -22841,7 +22862,7 @@ } - _gl.bindBuffer( _gl.ARRAY_BUFFER, buffer ); + _gl.bindBuffer( 34962, buffer ); _gl.vertexAttribPointer( programAttribute, size, type, normalized, stride * bytesPerElement, offset * bytesPerElement ); } else { @@ -22862,7 +22883,7 @@ } - _gl.bindBuffer( _gl.ARRAY_BUFFER, buffer ); + _gl.bindBuffer( 34962, buffer ); _gl.vertexAttribPointer( programAttribute, size, type, normalized, 0, 0 ); } @@ -23120,61 +23141,6 @@ }; - /* - // TODO Duplicated code (Frustum) - - var _sphere = new Sphere(); - - function isObjectViewable( object ) { - - var geometry = object.geometry; - - if ( geometry.boundingSphere === null ) - geometry.computeBoundingSphere(); - - _sphere.copy( geometry.boundingSphere ). - applyMatrix4( object.matrixWorld ); - - return isSphereViewable( _sphere ); - - } - - function isSpriteViewable( sprite ) { - - _sphere.center.set( 0, 0, 0 ); - _sphere.radius = 0.7071067811865476; - _sphere.applyMatrix4( sprite.matrixWorld ); - - return isSphereViewable( _sphere ); - - } - - function isSphereViewable( sphere ) { - - if ( ! _frustum.intersectsSphere( sphere ) ) return false; - - var numPlanes = _clipping.numPlanes; - - if ( numPlanes === 0 ) return true; - - var planes = _this.clippingPlanes, - - center = sphere.center, - negRad = - sphere.radius, - i = 0; - - do { - - // out when deeper than radius in the negative halfspace - if ( planes[ i ].distanceToPoint( center ) < negRad ) return false; - - } while ( ++ i !== numPlanes ); - - return true; - - } - */ - function projectObject( object, camera, sortObjects ) { if ( object.visible === false ) return; @@ -24521,7 +24487,7 @@ if ( _currentFramebuffer !== framebuffer ) { - _gl.bindFramebuffer( _gl.FRAMEBUFFER, framebuffer ); + _gl.bindFramebuffer( 36160, framebuffer ); _currentFramebuffer = framebuffer; } @@ -24533,7 +24499,7 @@ if ( isCube ) { var textureProperties = properties.get( renderTarget.texture ); - _gl.framebufferTexture2D( _gl.FRAMEBUFFER, _gl.COLOR_ATTACHMENT0, _gl.TEXTURE_CUBE_MAP_POSITIVE_X + renderTarget.activeCubeFace, textureProperties.__webglTexture, renderTarget.activeMipMapLevel ); + _gl.framebufferTexture2D( 36160, 36064, 34069 + renderTarget.activeCubeFace, textureProperties.__webglTexture, renderTarget.activeMipMapLevel ); } @@ -24556,7 +24522,7 @@ if ( framebuffer !== _currentFramebuffer ) { - _gl.bindFramebuffer( _gl.FRAMEBUFFER, framebuffer ); + _gl.bindFramebuffer( 36160, framebuffer ); restore = true; @@ -24568,14 +24534,14 @@ var textureFormat = texture.format; var textureType = texture.type; - if ( textureFormat !== RGBAFormat && utils.convert( textureFormat ) !== _gl.getParameter( _gl.IMPLEMENTATION_COLOR_READ_FORMAT ) ) { + if ( textureFormat !== RGBAFormat && utils.convert( textureFormat ) !== _gl.getParameter( 35739 ) ) { console.error( 'THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format.' ); return; } - if ( textureType !== UnsignedByteType && utils.convert( textureType ) !== _gl.getParameter( _gl.IMPLEMENTATION_COLOR_READ_TYPE ) && // IE11, Edge and Chrome Mac < 52 (#9513) + if ( textureType !== UnsignedByteType && utils.convert( textureType ) !== _gl.getParameter( 35738 ) && // IE11, Edge and Chrome Mac < 52 (#9513) ! ( textureType === FloatType && ( capabilities.isWebGL2 || extensions.get( 'OES_texture_float' ) || extensions.get( 'WEBGL_color_buffer_float' ) ) ) && // Chrome Mac >= 52 and Firefox ! ( textureType === HalfFloatType && ( capabilities.isWebGL2 ? extensions.get( 'EXT_color_buffer_float' ) : extensions.get( 'EXT_color_buffer_half_float' ) ) ) ) { @@ -24584,7 +24550,7 @@ } - if ( _gl.checkFramebufferStatus( _gl.FRAMEBUFFER ) === _gl.FRAMEBUFFER_COMPLETE ) { + if ( _gl.checkFramebufferStatus( 36160 ) === 36053 ) { // the following if statement ensures valid read requests (no out-of-bounds pixels, see #8604) @@ -24604,7 +24570,7 @@ if ( restore ) { - _gl.bindFramebuffer( _gl.FRAMEBUFFER, _currentFramebuffer ); + _gl.bindFramebuffer( 36160, _currentFramebuffer ); } @@ -24622,7 +24588,7 @@ this.setTexture2D( texture, 0 ); - _gl.copyTexImage2D( _gl.TEXTURE_2D, level || 0, glFormat, position.x, position.y, width, height, 0 ); + _gl.copyTexImage2D( 3553, level || 0, glFormat, position.x, position.y, width, height, 0 ); }; @@ -24637,11 +24603,11 @@ if ( srcTexture.isDataTexture ) { - _gl.texSubImage2D( _gl.TEXTURE_2D, level || 0, position.x, position.y, width, height, glFormat, glType, srcTexture.image.data ); + _gl.texSubImage2D( 3553, level || 0, position.x, position.y, width, height, glFormat, glType, srcTexture.image.data ); } else { - _gl.texSubImage2D( _gl.TEXTURE_2D, level || 0, position.x, position.y, glFormat, glType, srcTexture.image ); + _gl.texSubImage2D( 3553, level || 0, position.x, position.y, glFormat, glType, srcTexture.image ); } @@ -26086,9 +26052,20 @@ }() ), + copy: function ( source ) { + + Object3D.prototype.copy.call( this, source ); + + this.geometry.copy( source.geometry ); + this.material.copy( source.material ); + + return this; + + }, + clone: function () { - return new this.constructor( this.geometry, this.material ).copy( this ); + return new this.constructor().copy( this ); } @@ -31932,2635 +31909,2581 @@ }); /** - * @author mrdoob / http://mrdoob.com/ + * @author tschw + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ */ - var Cache = { - - enabled: false, + var AnimationUtils = { - files: {}, + // same as Array.prototype.slice, but also works on typed arrays + arraySlice: function ( array, from, to ) { - add: function ( key, file ) { + if ( AnimationUtils.isTypedArray( array ) ) { - if ( this.enabled === false ) return; + // in ios9 array.subarray(from, undefined) will return empty array + // but array.subarray(from) or array.subarray(from, len) is correct + return new array.constructor( array.subarray( from, to !== undefined ? to : array.length ) ); - // console.log( 'THREE.Cache', 'Adding key:', key ); + } - this.files[ key ] = file; + return array.slice( from, to ); }, - get: function ( key ) { + // converts an array to a specific type + convertArray: function ( array, type, forceClone ) { - if ( this.enabled === false ) return; + if ( ! array || // let 'undefined' and 'null' pass + ! forceClone && array.constructor === type ) return array; - // console.log( 'THREE.Cache', 'Checking key:', key ); + if ( typeof type.BYTES_PER_ELEMENT === 'number' ) { - return this.files[ key ]; + return new type( array ); // create typed array + + } + + return Array.prototype.slice.call( array ); // create Array }, - remove: function ( key ) { + isTypedArray: function ( object ) { - delete this.files[ key ]; + return ArrayBuffer.isView( object ) && + ! ( object instanceof DataView ); }, - clear: function () { - - this.files = {}; + // returns an array by which times and values can be sorted + getKeyframeOrder: function ( times ) { - } + function compareTime( i, j ) { - }; + return times[ i ] - times[ j ]; - /** - * @author mrdoob / http://mrdoob.com/ - */ + } - function LoadingManager( onLoad, onProgress, onError ) { + var n = times.length; + var result = new Array( n ); + for ( var i = 0; i !== n; ++ i ) result[ i ] = i; - var scope = this; + result.sort( compareTime ); - var isLoading = false; - var itemsLoaded = 0; - var itemsTotal = 0; - var urlModifier = undefined; + return result; - // Refer to #5689 for the reason why we don't set .onStart - // in the constructor + }, - this.onStart = undefined; - this.onLoad = onLoad; - this.onProgress = onProgress; - this.onError = onError; + // uses the array previously returned by 'getKeyframeOrder' to sort data + sortedArray: function ( values, stride, order ) { - this.itemStart = function ( url ) { + var nValues = values.length; + var result = new values.constructor( nValues ); - itemsTotal ++; + for ( var i = 0, dstOffset = 0; dstOffset !== nValues; ++ i ) { - if ( isLoading === false ) { + var srcOffset = order[ i ] * stride; - if ( scope.onStart !== undefined ) { + for ( var j = 0; j !== stride; ++ j ) { - scope.onStart( url, itemsLoaded, itemsTotal ); + result[ dstOffset ++ ] = values[ srcOffset + j ]; } } - isLoading = true; + return result; - }; + }, - this.itemEnd = function ( url ) { + // function for parsing AOS keyframe formats + flattenJSON: function ( jsonKeys, times, values, valuePropertyName ) { - itemsLoaded ++; + var i = 1, key = jsonKeys[ 0 ]; - if ( scope.onProgress !== undefined ) { + while ( key !== undefined && key[ valuePropertyName ] === undefined ) { - scope.onProgress( url, itemsLoaded, itemsTotal ); + key = jsonKeys[ i ++ ]; } - if ( itemsLoaded === itemsTotal ) { + if ( key === undefined ) return; // no data - isLoading = false; + var value = key[ valuePropertyName ]; + if ( value === undefined ) return; // no data - if ( scope.onLoad !== undefined ) { + if ( Array.isArray( value ) ) { - scope.onLoad(); + do { - } + value = key[ valuePropertyName ]; - } + if ( value !== undefined ) { - }; + times.push( key.time ); + values.push.apply( values, value ); // push all elements - this.itemError = function ( url ) { + } - if ( scope.onError !== undefined ) { + key = jsonKeys[ i ++ ]; - scope.onError( url ); + } while ( key !== undefined ); - } + } else if ( value.toArray !== undefined ) { - }; + // ...assume THREE.Math-ish - this.resolveURL = function ( url ) { + do { - if ( urlModifier ) { + value = key[ valuePropertyName ]; - return urlModifier( url ); + if ( value !== undefined ) { - } + times.push( key.time ); + value.toArray( values, values.length ); - return url; + } - }; + key = jsonKeys[ i ++ ]; - this.setURLModifier = function ( transform ) { + } while ( key !== undefined ); - urlModifier = transform; - return this; + } else { - }; + // otherwise push as-is - } + do { - var DefaultLoadingManager = new LoadingManager(); + value = key[ valuePropertyName ]; - /** - * @author mrdoob / http://mrdoob.com/ - */ + if ( value !== undefined ) { - var loading = {}; + times.push( key.time ); + values.push( value ); - function FileLoader( manager ) { + } - this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; + key = jsonKeys[ i ++ ]; - } + } while ( key !== undefined ); - Object.assign( FileLoader.prototype, { + } - load: function ( url, onLoad, onProgress, onError ) { + } - if ( url === undefined ) url = ''; + }; - if ( this.path !== undefined ) url = this.path + url; + /** + * Abstract base class of interpolants over parametric samples. + * + * The parameter domain is one dimensional, typically the time or a path + * along a curve defined by the data. + * + * The sample values can have any dimensionality and derived classes may + * apply special interpretations to the data. + * + * This class provides the interval seek in a Template Method, deferring + * the actual interpolation to derived classes. + * + * Time complexity is O(1) for linear access crossing at most two points + * and O(log N) for random access, where N is the number of positions. + * + * References: + * + * http://www.oodesign.com/template-method-pattern.html + * + * @author tschw + */ - url = this.manager.resolveURL( url ); + function Interpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { - var scope = this; + this.parameterPositions = parameterPositions; + this._cachedIndex = 0; - var cached = Cache.get( url ); + this.resultBuffer = resultBuffer !== undefined ? + resultBuffer : new sampleValues.constructor( sampleSize ); + this.sampleValues = sampleValues; + this.valueSize = sampleSize; - if ( cached !== undefined ) { + } - scope.manager.itemStart( url ); + Object.assign( Interpolant.prototype, { - setTimeout( function () { + evaluate: function ( t ) { - if ( onLoad ) onLoad( cached ); + var pp = this.parameterPositions, + i1 = this._cachedIndex, - scope.manager.itemEnd( url ); + t1 = pp[ i1 ], + t0 = pp[ i1 - 1 ]; - }, 0 ); + validate_interval: { - return cached; + seek: { - } + var right; - // Check if request is duplicate + linear_scan: { - if ( loading[ url ] !== undefined ) { + //- See http://jsperf.com/comparison-to-undefined/3 + //- slower code: + //- + //- if ( t >= t1 || t1 === undefined ) { + forward_scan: if ( ! ( t < t1 ) ) { - loading[ url ].push( { + for ( var giveUpAt = i1 + 2; ; ) { - onLoad: onLoad, - onProgress: onProgress, - onError: onError + if ( t1 === undefined ) { - } ); + if ( t < t0 ) break forward_scan; - return; + // after end - } + i1 = pp.length; + this._cachedIndex = i1; + return this.afterEnd_( i1 - 1, t, t0 ); - // Check for data: URI - var dataUriRegex = /^data:(.*?)(;base64)?,(.*)$/; - var dataUriRegexResult = url.match( dataUriRegex ); + } - // Safari can not handle Data URIs through XMLHttpRequest so process manually - if ( dataUriRegexResult ) { + if ( i1 === giveUpAt ) break; // this loop - var mimeType = dataUriRegexResult[ 1 ]; - var isBase64 = !! dataUriRegexResult[ 2 ]; - var data = dataUriRegexResult[ 3 ]; + t0 = t1; + t1 = pp[ ++ i1 ]; - data = decodeURIComponent( data ); + if ( t < t1 ) { - if ( isBase64 ) data = atob( data ); + // we have arrived at the sought interval + break seek; - try { + } - var response; - var responseType = ( this.responseType || '' ).toLowerCase(); + } - switch ( responseType ) { + // prepare binary search on the right side of the index + right = pp.length; + break linear_scan; - case 'arraybuffer': - case 'blob': + } - var view = new Uint8Array( data.length ); + //- slower code: + //- if ( t < t0 || t0 === undefined ) { + if ( ! ( t >= t0 ) ) { - for ( var i = 0; i < data.length; i ++ ) { + // looping? - view[ i ] = data.charCodeAt( i ); + var t1global = pp[ 1 ]; - } + if ( t < t1global ) { - if ( responseType === 'blob' ) { + i1 = 2; // + 1, using the scan for the details + t0 = t1global; - response = new Blob( [ view.buffer ], { type: mimeType } ); + } - } else { + // linear reverse scan - response = view.buffer; + for ( var giveUpAt = i1 - 2; ; ) { - } + if ( t0 === undefined ) { - break; + // before start - case 'document': + this._cachedIndex = 0; + return this.beforeStart_( 0, t, t1 ); - var parser = new DOMParser(); - response = parser.parseFromString( data, mimeType ); + } - break; + if ( i1 === giveUpAt ) break; // this loop - case 'json': + t1 = t0; + t0 = pp[ -- i1 - 1 ]; - response = JSON.parse( data ); + if ( t >= t0 ) { - break; + // we have arrived at the sought interval + break seek; - default: // 'text' or other + } - response = data; + } - break; + // prepare binary search on the left side of the index + right = i1; + i1 = 0; + break linear_scan; - } + } - // Wait for next browser tick like standard XMLHttpRequest event dispatching does - setTimeout( function () { + // the interval is valid - if ( onLoad ) onLoad( response ); + break validate_interval; - scope.manager.itemEnd( url ); + } // linear scan - }, 0 ); + // binary search - } catch ( error ) { + while ( i1 < right ) { - // Wait for next browser tick like standard XMLHttpRequest event dispatching does - setTimeout( function () { + var mid = ( i1 + right ) >>> 1; - if ( onError ) onError( error ); + if ( t < pp[ mid ] ) { - scope.manager.itemEnd( url ); - scope.manager.itemError( url ); + right = mid; - }, 0 ); + } else { - } + i1 = mid + 1; - } else { + } - // Initialise array for duplicate requests + } - loading[ url ] = []; + t1 = pp[ i1 ]; + t0 = pp[ i1 - 1 ]; - loading[ url ].push( { + // check boundary cases, again - onLoad: onLoad, - onProgress: onProgress, - onError: onError + if ( t0 === undefined ) { - } ); + this._cachedIndex = 0; + return this.beforeStart_( 0, t, t1 ); - var request = new XMLHttpRequest(); + } - request.open( 'GET', url, true ); + if ( t1 === undefined ) { - request.addEventListener( 'load', function ( event ) { + i1 = pp.length; + this._cachedIndex = i1; + return this.afterEnd_( i1 - 1, t0, t ); - var response = this.response; + } - Cache.add( url, response ); + } // seek - var callbacks = loading[ url ]; + this._cachedIndex = i1; - delete loading[ url ]; + this.intervalChanged_( i1, t0, t1 ); - if ( this.status === 200 || this.status === 0 ) { + } // validate_interval - // Some browsers return HTTP Status 0 when using non-http protocol - // e.g. 'file://' or 'data://'. Handle as success. + return this.interpolate_( i1, t0, t, t1 ); - if ( this.status === 0 ) console.warn( 'THREE.FileLoader: HTTP Status 0 received.' ); + }, - for ( var i = 0, il = callbacks.length; i < il; i ++ ) { + settings: null, // optional, subclass-specific settings structure + // Note: The indirection allows central control of many interpolants. - var callback = callbacks[ i ]; - if ( callback.onLoad ) callback.onLoad( response ); + // --- Protected interface - } + DefaultSettings_: {}, - scope.manager.itemEnd( url ); + getSettings_: function () { - } else { + return this.settings || this.DefaultSettings_; - for ( var i = 0, il = callbacks.length; i < il; i ++ ) { + }, - var callback = callbacks[ i ]; - if ( callback.onError ) callback.onError( event ); + copySampleValue_: function ( index ) { - } + // copies a sample value to the result buffer - scope.manager.itemEnd( url ); - scope.manager.itemError( url ); + var result = this.resultBuffer, + values = this.sampleValues, + stride = this.valueSize, + offset = index * stride; - } + for ( var i = 0; i !== stride; ++ i ) { - }, false ); + result[ i ] = values[ offset + i ]; - request.addEventListener( 'progress', function ( event ) { + } - var callbacks = loading[ url ]; - - for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - - var callback = callbacks[ i ]; - if ( callback.onProgress ) callback.onProgress( event ); - - } - - }, false ); - - request.addEventListener( 'error', function ( event ) { - - var callbacks = loading[ url ]; - - delete loading[ url ]; - - for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - - var callback = callbacks[ i ]; - if ( callback.onError ) callback.onError( event ); - - } + return result; - scope.manager.itemEnd( url ); - scope.manager.itemError( url ); + }, - }, false ); + // Template methods for derived classes: - request.addEventListener( 'abort', function ( event ) { + interpolate_: function ( /* i1, t0, t, t1 */ ) { - var callbacks = loading[ url ]; + throw new Error( 'call to abstract method' ); + // implementations shall return this.resultBuffer - delete loading[ url ]; + }, - for ( var i = 0, il = callbacks.length; i < il; i ++ ) { + intervalChanged_: function ( /* i1, t0, t1 */ ) { - var callback = callbacks[ i ]; - if ( callback.onError ) callback.onError( event ); + // empty - } + } - scope.manager.itemEnd( url ); - scope.manager.itemError( url ); + } ); - }, false ); + //!\ DECLARE ALIAS AFTER assign prototype ! + Object.assign( Interpolant.prototype, { - if ( this.responseType !== undefined ) request.responseType = this.responseType; - if ( this.withCredentials !== undefined ) request.withCredentials = this.withCredentials; + //( 0, t, t0 ), returns this.resultBuffer + beforeStart_: Interpolant.prototype.copySampleValue_, - if ( request.overrideMimeType ) request.overrideMimeType( this.mimeType !== undefined ? this.mimeType : 'text/plain' ); + //( N-1, tN-1, t ), returns this.resultBuffer + afterEnd_: Interpolant.prototype.copySampleValue_, - for ( var header in this.requestHeader ) { + } ); - request.setRequestHeader( header, this.requestHeader[ header ] ); + /** + * Fast and simple cubic spline interpolant. + * + * It was derived from a Hermitian construction setting the first derivative + * at each sample position to the linear slope between neighboring positions + * over their parameter interval. + * + * @author tschw + */ - } + function CubicInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { - request.send( null ); + Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); - } + this._weightPrev = - 0; + this._offsetPrev = - 0; + this._weightNext = - 0; + this._offsetNext = - 0; - scope.manager.itemStart( url ); + } - return request; + CubicInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { - }, + constructor: CubicInterpolant, - setPath: function ( value ) { + DefaultSettings_: { - this.path = value; - return this; + endingStart: ZeroCurvatureEnding, + endingEnd: ZeroCurvatureEnding }, - setResponseType: function ( value ) { + intervalChanged_: function ( i1, t0, t1 ) { - this.responseType = value; - return this; + var pp = this.parameterPositions, + iPrev = i1 - 2, + iNext = i1 + 1, - }, + tPrev = pp[ iPrev ], + tNext = pp[ iNext ]; - setWithCredentials: function ( value ) { + if ( tPrev === undefined ) { - this.withCredentials = value; - return this; + switch ( this.getSettings_().endingStart ) { - }, + case ZeroSlopeEnding: - setMimeType: function ( value ) { + // f'(t0) = 0 + iPrev = i1; + tPrev = 2 * t0 - t1; - this.mimeType = value; - return this; + break; - }, + case WrapAroundEnding: - setRequestHeader: function ( value ) { + // use the other end of the curve + iPrev = pp.length - 2; + tPrev = t0 + pp[ iPrev ] - pp[ iPrev + 1 ]; - this.requestHeader = value; - return this; + break; - } + default: // ZeroCurvatureEnding - } ); + // f''(t0) = 0 a.k.a. Natural Spline + iPrev = i1; + tPrev = t1; - /** - * @author mrdoob / http://mrdoob.com/ - * - * Abstract Base class to block based textures loader (dds, pvr, ...) - */ + } - function CompressedTextureLoader( manager ) { + } - this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; + if ( tNext === undefined ) { - // override in sub classes - this._parser = null; + switch ( this.getSettings_().endingEnd ) { - } + case ZeroSlopeEnding: - Object.assign( CompressedTextureLoader.prototype, { + // f'(tN) = 0 + iNext = i1; + tNext = 2 * t1 - t0; - load: function ( url, onLoad, onProgress, onError ) { + break; - var scope = this; + case WrapAroundEnding: - var images = []; + // use the other end of the curve + iNext = 1; + tNext = t1 + pp[ 1 ] - pp[ 0 ]; - var texture = new CompressedTexture(); - texture.image = images; + break; - var loader = new FileLoader( this.manager ); - loader.setPath( this.path ); - loader.setResponseType( 'arraybuffer' ); + default: // ZeroCurvatureEnding - function loadTexture( i ) { + // f''(tN) = 0, a.k.a. Natural Spline + iNext = i1 - 1; + tNext = t0; - loader.load( url[ i ], function ( buffer ) { + } - var texDatas = scope._parser( buffer, true ); + } - images[ i ] = { - width: texDatas.width, - height: texDatas.height, - format: texDatas.format, - mipmaps: texDatas.mipmaps - }; + var halfDt = ( t1 - t0 ) * 0.5, + stride = this.valueSize; - loaded += 1; + this._weightPrev = halfDt / ( t0 - tPrev ); + this._weightNext = halfDt / ( tNext - t1 ); + this._offsetPrev = iPrev * stride; + this._offsetNext = iNext * stride; - if ( loaded === 6 ) { + }, - if ( texDatas.mipmapCount === 1 ) - texture.minFilter = LinearFilter; + interpolate_: function ( i1, t0, t, t1 ) { - texture.format = texDatas.format; - texture.needsUpdate = true; + var result = this.resultBuffer, + values = this.sampleValues, + stride = this.valueSize, - if ( onLoad ) onLoad( texture ); + o1 = i1 * stride, o0 = o1 - stride, + oP = this._offsetPrev, oN = this._offsetNext, + wP = this._weightPrev, wN = this._weightNext, - } + p = ( t - t0 ) / ( t1 - t0 ), + pp = p * p, + ppp = pp * p; - }, onProgress, onError ); + // evaluate polynomials - } + var sP = - wP * ppp + 2 * wP * pp - wP * p; + var s0 = ( 1 + wP ) * ppp + ( - 1.5 - 2 * wP ) * pp + ( - 0.5 + wP ) * p + 1; + var s1 = ( - 1 - wN ) * ppp + ( 1.5 + wN ) * pp + 0.5 * p; + var sN = wN * ppp - wN * pp; - if ( Array.isArray( url ) ) { + // combine data linearly - var loaded = 0; + for ( var i = 0; i !== stride; ++ i ) { - for ( var i = 0, il = url.length; i < il; ++ i ) { + result[ i ] = + sP * values[ oP + i ] + + s0 * values[ o0 + i ] + + s1 * values[ o1 + i ] + + sN * values[ oN + i ]; - loadTexture( i ); + } - } + return result; - } else { + } - // compressed cubemap texture stored in a single DDS file + } ); - loader.load( url, function ( buffer ) { + /** + * @author tschw + */ - var texDatas = scope._parser( buffer, true ); + function LinearInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { - if ( texDatas.isCubemap ) { + Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); - var faces = texDatas.mipmaps.length / texDatas.mipmapCount; + } - for ( var f = 0; f < faces; f ++ ) { + LinearInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { - images[ f ] = { mipmaps: [] }; + constructor: LinearInterpolant, - for ( var i = 0; i < texDatas.mipmapCount; i ++ ) { + interpolate_: function ( i1, t0, t, t1 ) { - images[ f ].mipmaps.push( texDatas.mipmaps[ f * texDatas.mipmapCount + i ] ); - images[ f ].format = texDatas.format; - images[ f ].width = texDatas.width; - images[ f ].height = texDatas.height; + var result = this.resultBuffer, + values = this.sampleValues, + stride = this.valueSize, - } + offset1 = i1 * stride, + offset0 = offset1 - stride, - } + weight1 = ( t - t0 ) / ( t1 - t0 ), + weight0 = 1 - weight1; - } else { + for ( var i = 0; i !== stride; ++ i ) { - texture.image.width = texDatas.width; - texture.image.height = texDatas.height; - texture.mipmaps = texDatas.mipmaps; + result[ i ] = + values[ offset0 + i ] * weight0 + + values[ offset1 + i ] * weight1; - } + } - if ( texDatas.mipmapCount === 1 ) { + return result; - texture.minFilter = LinearFilter; + } - } + } ); - texture.format = texDatas.format; - texture.needsUpdate = true; + /** + * + * Interpolant that evaluates to the sample value at the position preceeding + * the parameter. + * + * @author tschw + */ - if ( onLoad ) onLoad( texture ); + function DiscreteInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { - }, onProgress, onError ); + Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); - } + } - return texture; + DiscreteInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { - }, + constructor: DiscreteInterpolant, - setPath: function ( value ) { + interpolate_: function ( i1 /*, t0, t, t1 */ ) { - this.path = value; - return this; + return this.copySampleValue_( i1 - 1 ); } } ); /** - * @author Nikos M. / https://github.com/foo123/ * - * Abstract Base class to load generic binary textures formats (rgbe, hdr, ...) + * A timed sequence of keyframes for a specific property. + * + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw */ - function DataTextureLoader( manager ) { + function KeyframeTrack( name, times, values, interpolation ) { - this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; + if ( name === undefined ) throw new Error( 'THREE.KeyframeTrack: track name is undefined' ); + if ( times === undefined || times.length === 0 ) throw new Error( 'THREE.KeyframeTrack: no keyframes in track named ' + name ); - // override in sub classes - this._parser = null; + this.name = name; - } + this.times = AnimationUtils.convertArray( times, this.TimeBufferType ); + this.values = AnimationUtils.convertArray( values, this.ValueBufferType ); - Object.assign( DataTextureLoader.prototype, { + this.setInterpolation( interpolation || this.DefaultInterpolation ); - load: function ( url, onLoad, onProgress, onError ) { + } - var scope = this; + // Static methods - var texture = new DataTexture(); + Object.assign( KeyframeTrack, { - var loader = new FileLoader( this.manager ); - loader.setResponseType( 'arraybuffer' ); - loader.setPath( this.path ); - loader.load( url, function ( buffer ) { + // Serialization (in static context, because of constructor invocation + // and automatic invocation of .toJSON): - var texData = scope._parser( buffer ); + toJSON: function ( track ) { - if ( ! texData ) return; + var trackType = track.constructor; - if ( undefined !== texData.image ) { + var json; - texture.image = texData.image; + // derived classes can define a static toJSON method + if ( trackType.toJSON !== undefined ) { - } else if ( undefined !== texData.data ) { + json = trackType.toJSON( track ); - texture.image.width = texData.width; - texture.image.height = texData.height; - texture.image.data = texData.data; + } else { - } + // by default, we assume the data can be serialized as-is + json = { - texture.wrapS = undefined !== texData.wrapS ? texData.wrapS : ClampToEdgeWrapping; - texture.wrapT = undefined !== texData.wrapT ? texData.wrapT : ClampToEdgeWrapping; + 'name': track.name, + 'times': AnimationUtils.convertArray( track.times, Array ), + 'values': AnimationUtils.convertArray( track.values, Array ) - texture.magFilter = undefined !== texData.magFilter ? texData.magFilter : LinearFilter; - texture.minFilter = undefined !== texData.minFilter ? texData.minFilter : LinearMipMapLinearFilter; + }; - texture.anisotropy = undefined !== texData.anisotropy ? texData.anisotropy : 1; + var interpolation = track.getInterpolation(); - if ( undefined !== texData.format ) { + if ( interpolation !== track.DefaultInterpolation ) { - texture.format = texData.format; + json.interpolation = interpolation; } - if ( undefined !== texData.type ) { - texture.type = texData.type; - - } + } - if ( undefined !== texData.mipmaps ) { + json.type = track.ValueTypeName; // mandatory - texture.mipmaps = texData.mipmaps; + return json; - } + } - if ( 1 === texData.mipmapCount ) { + } ); - texture.minFilter = LinearFilter; + Object.assign( KeyframeTrack.prototype, { - } + constructor: KeyframeTrack, - texture.needsUpdate = true; + TimeBufferType: Float32Array, - if ( onLoad ) onLoad( texture, texData ); + ValueBufferType: Float32Array, - }, onProgress, onError ); + DefaultInterpolation: InterpolateLinear, + InterpolantFactoryMethodDiscrete: function ( result ) { - return texture; + return new DiscreteInterpolant( this.times, this.values, this.getValueSize(), result ); }, - setPath: function ( value ) { - - this.path = value; - return this; - - } + InterpolantFactoryMethodLinear: function ( result ) { - } ); + return new LinearInterpolant( this.times, this.values, this.getValueSize(), result ); - /** - * @author mrdoob / http://mrdoob.com/ - */ + }, + InterpolantFactoryMethodSmooth: function ( result ) { - function ImageLoader( manager ) { + return new CubicInterpolant( this.times, this.values, this.getValueSize(), result ); - this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; + }, - } + setInterpolation: function ( interpolation ) { - Object.assign( ImageLoader.prototype, { + var factoryMethod; - crossOrigin: 'anonymous', + switch ( interpolation ) { - load: function ( url, onLoad, onProgress, onError ) { + case InterpolateDiscrete: - if ( url === undefined ) url = ''; + factoryMethod = this.InterpolantFactoryMethodDiscrete; - if ( this.path !== undefined ) url = this.path + url; + break; - url = this.manager.resolveURL( url ); + case InterpolateLinear: - var scope = this; + factoryMethod = this.InterpolantFactoryMethodLinear; - var cached = Cache.get( url ); + break; - if ( cached !== undefined ) { + case InterpolateSmooth: - scope.manager.itemStart( url ); + factoryMethod = this.InterpolantFactoryMethodSmooth; - setTimeout( function () { + break; - if ( onLoad ) onLoad( cached ); + } - scope.manager.itemEnd( url ); + if ( factoryMethod === undefined ) { - }, 0 ); + var message = "unsupported interpolation for " + + this.ValueTypeName + " keyframe track named " + this.name; - return cached; + if ( this.createInterpolant === undefined ) { - } + // fall back to default, unless the default itself is messed up + if ( interpolation !== this.DefaultInterpolation ) { - var image = document.createElementNS( 'http://www.w3.org/1999/xhtml', 'img' ); + this.setInterpolation( this.DefaultInterpolation ); - function onImageLoad() { + } else { - image.removeEventListener( 'load', onImageLoad, false ); - image.removeEventListener( 'error', onImageError, false ); + throw new Error( message ); // fatal, in this case - Cache.add( url, this ); + } - if ( onLoad ) onLoad( this ); + } - scope.manager.itemEnd( url ); + console.warn( 'THREE.KeyframeTrack:', message ); + return this; } - function onImageError( event ) { + this.createInterpolant = factoryMethod; - image.removeEventListener( 'load', onImageLoad, false ); - image.removeEventListener( 'error', onImageError, false ); + return this; - if ( onError ) onError( event ); + }, - scope.manager.itemEnd( url ); - scope.manager.itemError( url ); + getInterpolation: function () { - } + switch ( this.createInterpolant ) { - image.addEventListener( 'load', onImageLoad, false ); - image.addEventListener( 'error', onImageError, false ); + case this.InterpolantFactoryMethodDiscrete: - if ( url.substr( 0, 5 ) !== 'data:' ) { + return InterpolateDiscrete; - if ( this.crossOrigin !== undefined ) image.crossOrigin = this.crossOrigin; + case this.InterpolantFactoryMethodLinear: - } + return InterpolateLinear; - scope.manager.itemStart( url ); + case this.InterpolantFactoryMethodSmooth: - image.src = url; + return InterpolateSmooth; - return image; + } }, - setCrossOrigin: function ( value ) { + getValueSize: function () { - this.crossOrigin = value; - return this; + return this.values.length / this.times.length; }, - setPath: function ( value ) { + // move all keyframes either forwards or backwards in time + shift: function ( timeOffset ) { - this.path = value; - return this; + if ( timeOffset !== 0.0 ) { - } + var times = this.times; - } ); + for ( var i = 0, n = times.length; i !== n; ++ i ) { - /** - * @author mrdoob / http://mrdoob.com/ - */ + times[ i ] += timeOffset; + } - function CubeTextureLoader( manager ) { + } - this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; + return this; - } + }, - Object.assign( CubeTextureLoader.prototype, { + // scale all keyframe times by a factor (useful for frame <-> seconds conversions) + scale: function ( timeScale ) { - crossOrigin: 'anonymous', + if ( timeScale !== 1.0 ) { - load: function ( urls, onLoad, onProgress, onError ) { + var times = this.times; - var texture = new CubeTexture(); + for ( var i = 0, n = times.length; i !== n; ++ i ) { - var loader = new ImageLoader( this.manager ); - loader.setCrossOrigin( this.crossOrigin ); - loader.setPath( this.path ); + times[ i ] *= timeScale; - var loaded = 0; + } - function loadTexture( i ) { - - loader.load( urls[ i ], function ( image ) { - - texture.images[ i ] = image; + } - loaded ++; + return this; - if ( loaded === 6 ) { + }, - texture.needsUpdate = true; + // removes keyframes before and after animation without changing any values within the range [startTime, endTime]. + // IMPORTANT: We do not shift around keys to the start of the track time, because for interpolated keys this will change their values + trim: function ( startTime, endTime ) { - if ( onLoad ) onLoad( texture ); + var times = this.times, + nKeys = times.length, + from = 0, + to = nKeys - 1; - } + while ( from !== nKeys && times[ from ] < startTime ) { - }, undefined, onError ); + ++ from; } - for ( var i = 0; i < urls.length; ++ i ) { + while ( to !== - 1 && times[ to ] > endTime ) { - loadTexture( i ); + -- to; } - return texture; - - }, + ++ to; // inclusive -> exclusive bound - setCrossOrigin: function ( value ) { + if ( from !== 0 || to !== nKeys ) { - this.crossOrigin = value; - return this; + // empty tracks are forbidden, so keep at least one keyframe + if ( from >= to ) to = Math.max( to, 1 ), from = to - 1; - }, + var stride = this.getValueSize(); + this.times = AnimationUtils.arraySlice( times, from, to ); + this.values = AnimationUtils.arraySlice( this.values, from * stride, to * stride ); - setPath: function ( value ) { + } - this.path = value; return this; - } + }, - } ); + // ensure we do not get a GarbageInGarbageOut situation, make sure tracks are at least minimally viable + validate: function () { - /** - * @author mrdoob / http://mrdoob.com/ - */ + var valid = true; + var valueSize = this.getValueSize(); + if ( valueSize - Math.floor( valueSize ) !== 0 ) { - function TextureLoader( manager ) { + console.error( 'THREE.KeyframeTrack: Invalid value size in track.', this ); + valid = false; - this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; + } - } + var times = this.times, + values = this.values, - Object.assign( TextureLoader.prototype, { + nKeys = times.length; - crossOrigin: 'anonymous', + if ( nKeys === 0 ) { - load: function ( url, onLoad, onProgress, onError ) { + console.error( 'THREE.KeyframeTrack: Track is empty.', this ); + valid = false; - var texture = new Texture(); + } - var loader = new ImageLoader( this.manager ); - loader.setCrossOrigin( this.crossOrigin ); - loader.setPath( this.path ); + var prevTime = null; - loader.load( url, function ( image ) { + for ( var i = 0; i !== nKeys; i ++ ) { - texture.image = image; + var currTime = times[ i ]; - // JPEGs can't have an alpha channel, so memory can be saved by storing them as RGB. - var isJPEG = url.search( /\.jpe?g$/i ) > 0 || url.search( /^data\:image\/jpeg/ ) === 0; + if ( typeof currTime === 'number' && isNaN( currTime ) ) { - texture.format = isJPEG ? RGBFormat : RGBAFormat; - texture.needsUpdate = true; + console.error( 'THREE.KeyframeTrack: Time is not a valid number.', this, i, currTime ); + valid = false; + break; - if ( onLoad !== undefined ) { + } - onLoad( texture ); + if ( prevTime !== null && prevTime > currTime ) { + + console.error( 'THREE.KeyframeTrack: Out of order keys.', this, i, currTime, prevTime ); + valid = false; + break; } - }, onProgress, onError ); + prevTime = currTime; - return texture; + } - }, + if ( values !== undefined ) { - setCrossOrigin: function ( value ) { + if ( AnimationUtils.isTypedArray( values ) ) { - this.crossOrigin = value; - return this; + for ( var i = 0, n = values.length; i !== n; ++ i ) { - }, + var value = values[ i ]; - setPath: function ( value ) { + if ( isNaN( value ) ) { - this.path = value; - return this; + console.error( 'THREE.KeyframeTrack: Value is not a valid number.', this, i, value ); + valid = false; + break; - } + } - } ); + } - /** - * @author zz85 / http://www.lab4games.net/zz85/blog - * Extensible curve object - * - * Some common of curve methods: - * .getPoint( t, optionalTarget ), .getTangent( t ) - * .getPointAt( u, optionalTarget ), .getTangentAt( u ) - * .getPoints(), .getSpacedPoints() - * .getLength() - * .updateArcLengths() - * - * This following curves inherit from THREE.Curve: - * - * -- 2D curves -- - * THREE.ArcCurve - * THREE.CubicBezierCurve - * THREE.EllipseCurve - * THREE.LineCurve - * THREE.QuadraticBezierCurve - * THREE.SplineCurve - * - * -- 3D curves -- - * THREE.CatmullRomCurve3 - * THREE.CubicBezierCurve3 - * THREE.LineCurve3 - * THREE.QuadraticBezierCurve3 - * - * A series of curves can be represented as a THREE.CurvePath. - * - **/ + } - /************************************************************** - * Abstract Curve base class - **************************************************************/ + } - function Curve() { + return valid; - this.type = 'Curve'; + }, - this.arcLengthDivisions = 200; + // removes equivalent sequential keys as common in morph target sequences + // (0,0,0,0,1,1,1,0,0,0,0,0,0,0) --> (0,0,1,1,0,0) + optimize: function () { - } + var times = this.times, + values = this.values, + stride = this.getValueSize(), - Object.assign( Curve.prototype, { + smoothInterpolation = this.getInterpolation() === InterpolateSmooth, - // Virtual base class method to overwrite and implement in subclasses - // - t [0 .. 1] + writeIndex = 1, + lastIndex = times.length - 1; - getPoint: function ( /* t, optionalTarget */ ) { + for ( var i = 1; i < lastIndex; ++ i ) { - console.warn( 'THREE.Curve: .getPoint() not implemented.' ); - return null; + var keep = false; - }, + var time = times[ i ]; + var timeNext = times[ i + 1 ]; - // Get point at relative position in curve according to arc length - // - u [0 .. 1] + // remove adjacent keyframes scheduled at the same time - getPointAt: function ( u, optionalTarget ) { + if ( time !== timeNext && ( i !== 1 || time !== time[ 0 ] ) ) { - var t = this.getUtoTmapping( u ); - return this.getPoint( t, optionalTarget ); + if ( ! smoothInterpolation ) { - }, + // remove unnecessary keyframes same as their neighbors - // Get sequence of points using getPoint( t ) + var offset = i * stride, + offsetP = offset - stride, + offsetN = offset + stride; - getPoints: function ( divisions ) { + for ( var j = 0; j !== stride; ++ j ) { - if ( divisions === undefined ) divisions = 5; + var value = values[ offset + j ]; - var points = []; + if ( value !== values[ offsetP + j ] || + value !== values[ offsetN + j ] ) { - for ( var d = 0; d <= divisions; d ++ ) { + keep = true; + break; - points.push( this.getPoint( d / divisions ) ); + } - } + } - return points; + } else { - }, + keep = true; - // Get sequence of points using getPointAt( u ) + } - getSpacedPoints: function ( divisions ) { + } - if ( divisions === undefined ) divisions = 5; + // in-place compaction - var points = []; + if ( keep ) { - for ( var d = 0; d <= divisions; d ++ ) { + if ( i !== writeIndex ) { - points.push( this.getPointAt( d / divisions ) ); + times[ writeIndex ] = times[ i ]; - } + var readOffset = i * stride, + writeOffset = writeIndex * stride; - return points; + for ( var j = 0; j !== stride; ++ j ) { - }, + values[ writeOffset + j ] = values[ readOffset + j ]; - // Get total curve arc length + } - getLength: function () { + } - var lengths = this.getLengths(); - return lengths[ lengths.length - 1 ]; + ++ writeIndex; - }, + } - // Get list of cumulative segment lengths + } - getLengths: function ( divisions ) { + // flush last keyframe (compaction looks ahead) - if ( divisions === undefined ) divisions = this.arcLengthDivisions; + if ( lastIndex > 0 ) { - if ( this.cacheArcLengths && - ( this.cacheArcLengths.length === divisions + 1 ) && - ! this.needsUpdate ) { + times[ writeIndex ] = times[ lastIndex ]; - return this.cacheArcLengths; + for ( var readOffset = lastIndex * stride, writeOffset = writeIndex * stride, j = 0; j !== stride; ++ j ) { - } + values[ writeOffset + j ] = values[ readOffset + j ]; - this.needsUpdate = false; + } - var cache = []; - var current, last = this.getPoint( 0 ); - var p, sum = 0; + ++ writeIndex; - cache.push( 0 ); + } - for ( p = 1; p <= divisions; p ++ ) { + if ( writeIndex !== times.length ) { - current = this.getPoint( p / divisions ); - sum += current.distanceTo( last ); - cache.push( sum ); - last = current; + this.times = AnimationUtils.arraySlice( times, 0, writeIndex ); + this.values = AnimationUtils.arraySlice( values, 0, writeIndex * stride ); } - this.cacheArcLengths = cache; + return this; - return cache; // { sums: cache, sum: sum }; Sum is in the last element. + } - }, + } ); - updateArcLengths: function () { + /** + * + * A Track of Boolean keyframe values. + * + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw + */ - this.needsUpdate = true; - this.getLengths(); + function BooleanKeyframeTrack( name, times, values ) { - }, + KeyframeTrack.call( this, name, times, values ); - // Given u ( 0 .. 1 ), get a t to find p. This gives you points which are equidistant + } - getUtoTmapping: function ( u, distance ) { + BooleanKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { - var arcLengths = this.getLengths(); + constructor: BooleanKeyframeTrack, - var i = 0, il = arcLengths.length; + ValueTypeName: 'bool', + ValueBufferType: Array, - var targetArcLength; // The targeted u distance value to get + DefaultInterpolation: InterpolateDiscrete, - if ( distance ) { + InterpolantFactoryMethodLinear: undefined, + InterpolantFactoryMethodSmooth: undefined - targetArcLength = distance; + // Note: Actually this track could have a optimized / compressed + // representation of a single value and a custom interpolant that + // computes "firstValue ^ isOdd( index )". - } else { + } ); - targetArcLength = u * arcLengths[ il - 1 ]; + /** + * + * A Track of keyframe values that represent color. + * + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw + */ - } + function ColorKeyframeTrack( name, times, values, interpolation ) { - // binary search for the index with largest value smaller than target u distance + KeyframeTrack.call( this, name, times, values, interpolation ); - var low = 0, high = il - 1, comparison; + } - while ( low <= high ) { + ColorKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { - i = Math.floor( low + ( high - low ) / 2 ); // less likely to overflow, though probably not issue here, JS doesn't really have integers, all numbers are floats + constructor: ColorKeyframeTrack, - comparison = arcLengths[ i ] - targetArcLength; + ValueTypeName: 'color' - if ( comparison < 0 ) { + // ValueBufferType is inherited - low = i + 1; + // DefaultInterpolation is inherited - } else if ( comparison > 0 ) { + // Note: Very basic implementation and nothing special yet. + // However, this is the place for color space parameterization. - high = i - 1; + } ); - } else { + /** + * + * A Track of numeric keyframe values. + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw + */ - high = i; - break; + function NumberKeyframeTrack( name, times, values, interpolation ) { - // DONE + KeyframeTrack.call( this, name, times, values, interpolation ); - } + } - } + NumberKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { - i = high; + constructor: NumberKeyframeTrack, - if ( arcLengths[ i ] === targetArcLength ) { + ValueTypeName: 'number' - return i / ( il - 1 ); + // ValueBufferType is inherited - } + // DefaultInterpolation is inherited - // we could get finer grain at lengths, or use simple interpolation between two points + } ); - var lengthBefore = arcLengths[ i ]; - var lengthAfter = arcLengths[ i + 1 ]; + /** + * Spherical linear unit quaternion interpolant. + * + * @author tschw + */ - var segmentLength = lengthAfter - lengthBefore; + function QuaternionLinearInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { - // determine where we are between the 'before' and 'after' points + Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); - var segmentFraction = ( targetArcLength - lengthBefore ) / segmentLength; + } - // add that fractional amount to t + QuaternionLinearInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { - var t = ( i + segmentFraction ) / ( il - 1 ); + constructor: QuaternionLinearInterpolant, - return t; + interpolate_: function ( i1, t0, t, t1 ) { - }, + var result = this.resultBuffer, + values = this.sampleValues, + stride = this.valueSize, - // Returns a unit vector tangent at t - // In case any sub curve does not implement its tangent derivation, - // 2 points a small delta apart will be used to find its gradient - // which seems to give a reasonable approximation + offset = i1 * stride, - getTangent: function ( t ) { + alpha = ( t - t0 ) / ( t1 - t0 ); - var delta = 0.0001; - var t1 = t - delta; - var t2 = t + delta; + for ( var end = offset + stride; offset !== end; offset += 4 ) { - // Capping in case of danger + Quaternion.slerpFlat( result, 0, values, offset - stride, values, offset, alpha ); - if ( t1 < 0 ) t1 = 0; - if ( t2 > 1 ) t2 = 1; + } - var pt1 = this.getPoint( t1 ); - var pt2 = this.getPoint( t2 ); + return result; - var vec = pt2.clone().sub( pt1 ); - return vec.normalize(); + } - }, + } ); - getTangentAt: function ( u ) { + /** + * + * A Track of quaternion keyframe values. + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw + */ - var t = this.getUtoTmapping( u ); - return this.getTangent( t ); + function QuaternionKeyframeTrack( name, times, values, interpolation ) { - }, + KeyframeTrack.call( this, name, times, values, interpolation ); - computeFrenetFrames: function ( segments, closed ) { + } - // see http://www.cs.indiana.edu/pub/techreports/TR425.pdf + QuaternionKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { - var normal = new Vector3(); + constructor: QuaternionKeyframeTrack, - var tangents = []; - var normals = []; - var binormals = []; + ValueTypeName: 'quaternion', - var vec = new Vector3(); - var mat = new Matrix4(); + // ValueBufferType is inherited - var i, u, theta; + DefaultInterpolation: InterpolateLinear, - // compute the tangent vectors for each segment on the curve + InterpolantFactoryMethodLinear: function ( result ) { - for ( i = 0; i <= segments; i ++ ) { + return new QuaternionLinearInterpolant( this.times, this.values, this.getValueSize(), result ); - u = i / segments; + }, - tangents[ i ] = this.getTangentAt( u ); - tangents[ i ].normalize(); + InterpolantFactoryMethodSmooth: undefined // not yet implemented - } + } ); - // select an initial normal vector perpendicular to the first tangent vector, - // and in the direction of the minimum tangent xyz component + /** + * + * A Track that interpolates Strings + * + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw + */ - normals[ 0 ] = new Vector3(); - binormals[ 0 ] = new Vector3(); - var min = Number.MAX_VALUE; - var tx = Math.abs( tangents[ 0 ].x ); - var ty = Math.abs( tangents[ 0 ].y ); - var tz = Math.abs( tangents[ 0 ].z ); + function StringKeyframeTrack( name, times, values, interpolation ) { - if ( tx <= min ) { + KeyframeTrack.call( this, name, times, values, interpolation ); - min = tx; - normal.set( 1, 0, 0 ); + } - } + StringKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { - if ( ty <= min ) { + constructor: StringKeyframeTrack, - min = ty; - normal.set( 0, 1, 0 ); + ValueTypeName: 'string', + ValueBufferType: Array, - } + DefaultInterpolation: InterpolateDiscrete, - if ( tz <= min ) { + InterpolantFactoryMethodLinear: undefined, - normal.set( 0, 0, 1 ); + InterpolantFactoryMethodSmooth: undefined - } + } ); - vec.crossVectors( tangents[ 0 ], normal ).normalize(); + /** + * + * A Track of vectored keyframe values. + * + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw + */ - normals[ 0 ].crossVectors( tangents[ 0 ], vec ); - binormals[ 0 ].crossVectors( tangents[ 0 ], normals[ 0 ] ); + function VectorKeyframeTrack( name, times, values, interpolation ) { + KeyframeTrack.call( this, name, times, values, interpolation ); - // compute the slowly-varying normal and binormal vectors for each segment on the curve + } - for ( i = 1; i <= segments; i ++ ) { + VectorKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { - normals[ i ] = normals[ i - 1 ].clone(); + constructor: VectorKeyframeTrack, - binormals[ i ] = binormals[ i - 1 ].clone(); + ValueTypeName: 'vector' - vec.crossVectors( tangents[ i - 1 ], tangents[ i ] ); + // ValueBufferType is inherited - if ( vec.length() > Number.EPSILON ) { + // DefaultInterpolation is inherited - vec.normalize(); + } ); - theta = Math.acos( _Math.clamp( tangents[ i - 1 ].dot( tangents[ i ] ), - 1, 1 ) ); // clamp for floating pt errors + /** + * + * Reusable set of Tracks that represent an animation. + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + */ - normals[ i ].applyMatrix4( mat.makeRotationAxis( vec, theta ) ); + function AnimationClip( name, duration, tracks ) { - } + this.name = name; + this.tracks = tracks; + this.duration = ( duration !== undefined ) ? duration : - 1; - binormals[ i ].crossVectors( tangents[ i ], normals[ i ] ); + this.uuid = _Math.generateUUID(); - } + // this means it should figure out its duration by scanning the tracks + if ( this.duration < 0 ) { - // if the curve is closed, postprocess the vectors so the first and last normal vectors are the same + this.resetDuration(); - if ( closed === true ) { + } - theta = Math.acos( _Math.clamp( normals[ 0 ].dot( normals[ segments ] ), - 1, 1 ) ); - theta /= segments; + } - if ( tangents[ 0 ].dot( vec.crossVectors( normals[ 0 ], normals[ segments ] ) ) > 0 ) { + function getTrackTypeForValueTypeName( typeName ) { - theta = - theta; + switch ( typeName.toLowerCase() ) { - } + case 'scalar': + case 'double': + case 'float': + case 'number': + case 'integer': - for ( i = 1; i <= segments; i ++ ) { + return NumberKeyframeTrack; - // twist a little... - normals[ i ].applyMatrix4( mat.makeRotationAxis( tangents[ i ], theta * i ) ); - binormals[ i ].crossVectors( tangents[ i ], normals[ i ] ); + case 'vector': + case 'vector2': + case 'vector3': + case 'vector4': - } + return VectorKeyframeTrack; - } + case 'color': - return { - tangents: tangents, - normals: normals, - binormals: binormals - }; + return ColorKeyframeTrack; - }, + case 'quaternion': - clone: function () { + return QuaternionKeyframeTrack; - return new this.constructor().copy( this ); + case 'bool': + case 'boolean': - }, + return BooleanKeyframeTrack; - copy: function ( source ) { + case 'string': - this.arcLengthDivisions = source.arcLengthDivisions; + return StringKeyframeTrack; - return this; + } - }, + throw new Error( 'THREE.KeyframeTrack: Unsupported typeName: ' + typeName ); - toJSON: function () { + } - var data = { - metadata: { - version: 4.5, - type: 'Curve', - generator: 'Curve.toJSON' - } - }; + function parseKeyframeTrack( json ) { - data.arcLengthDivisions = this.arcLengthDivisions; - data.type = this.type; + if ( json.type === undefined ) { - return data; + throw new Error( 'THREE.KeyframeTrack: track type undefined, can not parse' ); - }, + } - fromJSON: function ( json ) { + var trackType = getTrackTypeForValueTypeName( json.type ); - this.arcLengthDivisions = json.arcLengthDivisions; + if ( json.times === undefined ) { - return this; + var times = [], values = []; + + AnimationUtils.flattenJSON( json.keys, times, values, 'value' ); + + json.times = times; + json.values = values; } - } ); + // derived classes can define a static parse method + if ( trackType.parse !== undefined ) { - function EllipseCurve( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) { + return trackType.parse( json ); - Curve.call( this ); + } else { - this.type = 'EllipseCurve'; + // by default, we assume a constructor compatible with the base + return new trackType( json.name, json.times, json.values, json.interpolation ); - this.aX = aX || 0; - this.aY = aY || 0; + } - this.xRadius = xRadius || 1; - this.yRadius = yRadius || 1; + } - this.aStartAngle = aStartAngle || 0; - this.aEndAngle = aEndAngle || 2 * Math.PI; + Object.assign( AnimationClip, { - this.aClockwise = aClockwise || false; + parse: function ( json ) { - this.aRotation = aRotation || 0; + var tracks = [], + jsonTracks = json.tracks, + frameTime = 1.0 / ( json.fps || 1.0 ); - } + for ( var i = 0, n = jsonTracks.length; i !== n; ++ i ) { - EllipseCurve.prototype = Object.create( Curve.prototype ); - EllipseCurve.prototype.constructor = EllipseCurve; + tracks.push( parseKeyframeTrack( jsonTracks[ i ] ).scale( frameTime ) ); - EllipseCurve.prototype.isEllipseCurve = true; + } - EllipseCurve.prototype.getPoint = function ( t, optionalTarget ) { + return new AnimationClip( json.name, json.duration, tracks ); - var point = optionalTarget || new Vector2(); + }, - var twoPi = Math.PI * 2; - var deltaAngle = this.aEndAngle - this.aStartAngle; - var samePoints = Math.abs( deltaAngle ) < Number.EPSILON; + toJSON: function ( clip ) { - // ensures that deltaAngle is 0 .. 2 PI - while ( deltaAngle < 0 ) deltaAngle += twoPi; - while ( deltaAngle > twoPi ) deltaAngle -= twoPi; + var tracks = [], + clipTracks = clip.tracks; - if ( deltaAngle < Number.EPSILON ) { + var json = { - if ( samePoints ) { + 'name': clip.name, + 'duration': clip.duration, + 'tracks': tracks, + 'uuid': clip.uuid - deltaAngle = 0; + }; - } else { + for ( var i = 0, n = clipTracks.length; i !== n; ++ i ) { - deltaAngle = twoPi; + tracks.push( KeyframeTrack.toJSON( clipTracks[ i ] ) ); } - } + return json; - if ( this.aClockwise === true && ! samePoints ) { + }, - if ( deltaAngle === twoPi ) { + CreateFromMorphTargetSequence: function ( name, morphTargetSequence, fps, noLoop ) { - deltaAngle = - twoPi; + var numMorphTargets = morphTargetSequence.length; + var tracks = []; - } else { + for ( var i = 0; i < numMorphTargets; i ++ ) { - deltaAngle = deltaAngle - twoPi; + var times = []; + var values = []; - } + times.push( + ( i + numMorphTargets - 1 ) % numMorphTargets, + i, + ( i + 1 ) % numMorphTargets ); - } + values.push( 0, 1, 0 ); - var angle = this.aStartAngle + t * deltaAngle; - var x = this.aX + this.xRadius * Math.cos( angle ); - var y = this.aY + this.yRadius * Math.sin( angle ); + var order = AnimationUtils.getKeyframeOrder( times ); + times = AnimationUtils.sortedArray( times, 1, order ); + values = AnimationUtils.sortedArray( values, 1, order ); - if ( this.aRotation !== 0 ) { + // if there is a key at the first frame, duplicate it as the + // last frame as well for perfect loop. + if ( ! noLoop && times[ 0 ] === 0 ) { - var cos = Math.cos( this.aRotation ); - var sin = Math.sin( this.aRotation ); + times.push( numMorphTargets ); + values.push( values[ 0 ] ); - var tx = x - this.aX; - var ty = y - this.aY; + } - // Rotate the point about the center of the ellipse. - x = tx * cos - ty * sin + this.aX; - y = tx * sin + ty * cos + this.aY; + tracks.push( + new NumberKeyframeTrack( + '.morphTargetInfluences[' + morphTargetSequence[ i ].name + ']', + times, values + ).scale( 1.0 / fps ) ); - } + } - return point.set( x, y ); + return new AnimationClip( name, - 1, tracks ); - }; + }, - EllipseCurve.prototype.copy = function ( source ) { + findByName: function ( objectOrClipArray, name ) { - Curve.prototype.copy.call( this, source ); + var clipArray = objectOrClipArray; - this.aX = source.aX; - this.aY = source.aY; + if ( ! Array.isArray( objectOrClipArray ) ) { - this.xRadius = source.xRadius; - this.yRadius = source.yRadius; + var o = objectOrClipArray; + clipArray = o.geometry && o.geometry.animations || o.animations; - this.aStartAngle = source.aStartAngle; - this.aEndAngle = source.aEndAngle; + } - this.aClockwise = source.aClockwise; + for ( var i = 0; i < clipArray.length; i ++ ) { - this.aRotation = source.aRotation; + if ( clipArray[ i ].name === name ) { - return this; + return clipArray[ i ]; - }; + } + } - EllipseCurve.prototype.toJSON = function () { + return null; - var data = Curve.prototype.toJSON.call( this ); + }, - data.aX = this.aX; - data.aY = this.aY; + CreateClipsFromMorphTargetSequences: function ( morphTargets, fps, noLoop ) { - data.xRadius = this.xRadius; - data.yRadius = this.yRadius; + var animationToMorphTargets = {}; - data.aStartAngle = this.aStartAngle; - data.aEndAngle = this.aEndAngle; + // tested with https://regex101.com/ on trick sequences + // such flamingo_flyA_003, flamingo_run1_003, crdeath0059 + var pattern = /^([\w-]*?)([\d]+)$/; - data.aClockwise = this.aClockwise; + // sort morph target names into animation groups based + // patterns like Walk_001, Walk_002, Run_001, Run_002 + for ( var i = 0, il = morphTargets.length; i < il; i ++ ) { - data.aRotation = this.aRotation; + var morphTarget = morphTargets[ i ]; + var parts = morphTarget.name.match( pattern ); - return data; + if ( parts && parts.length > 1 ) { - }; + var name = parts[ 1 ]; - EllipseCurve.prototype.fromJSON = function ( json ) { + var animationMorphTargets = animationToMorphTargets[ name ]; + if ( ! animationMorphTargets ) { - Curve.prototype.fromJSON.call( this, json ); + animationToMorphTargets[ name ] = animationMorphTargets = []; - this.aX = json.aX; - this.aY = json.aY; + } - this.xRadius = json.xRadius; - this.yRadius = json.yRadius; + animationMorphTargets.push( morphTarget ); - this.aStartAngle = json.aStartAngle; - this.aEndAngle = json.aEndAngle; + } - this.aClockwise = json.aClockwise; + } - this.aRotation = json.aRotation; + var clips = []; - return this; + for ( var name in animationToMorphTargets ) { - }; + clips.push( AnimationClip.CreateFromMorphTargetSequence( name, animationToMorphTargets[ name ], fps, noLoop ) ); - function ArcCurve( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) { + } - EllipseCurve.call( this, aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise ); + return clips; - this.type = 'ArcCurve'; + }, - } + // parse the animation.hierarchy format + parseAnimation: function ( animation, bones ) { - ArcCurve.prototype = Object.create( EllipseCurve.prototype ); - ArcCurve.prototype.constructor = ArcCurve; + if ( ! animation ) { - ArcCurve.prototype.isArcCurve = true; + console.error( 'THREE.AnimationClip: No animation in JSONLoader data.' ); + return null; - /** - * @author zz85 https://github.com/zz85 - * - * Centripetal CatmullRom Curve - which is useful for avoiding - * cusps and self-intersections in non-uniform catmull rom curves. - * http://www.cemyuksel.com/research/catmullrom_param/catmullrom.pdf - * - * curve.type accepts centripetal(default), chordal and catmullrom - * curve.tension is used for catmullrom which defaults to 0.5 - */ + } + var addNonemptyTrack = function ( trackType, trackName, animationKeys, propertyName, destTracks ) { - /* - Based on an optimized c++ solution in - - http://stackoverflow.com/questions/9489736/catmull-rom-curve-with-no-cusps-and-no-self-intersections/ - - http://ideone.com/NoEbVM + // only return track if there are actually keys. + if ( animationKeys.length !== 0 ) { - This CubicPoly class could be used for reusing some variables and calculations, - but for three.js curve use, it could be possible inlined and flatten into a single function call - which can be placed in CurveUtils. - */ + var times = []; + var values = []; - function CubicPoly() { + AnimationUtils.flattenJSON( animationKeys, times, values, propertyName ); - var c0 = 0, c1 = 0, c2 = 0, c3 = 0; + // empty keys are filtered out, so check again + if ( times.length !== 0 ) { - /* - * Compute coefficients for a cubic polynomial - * p(s) = c0 + c1*s + c2*s^2 + c3*s^3 - * such that - * p(0) = x0, p(1) = x1 - * and - * p'(0) = t0, p'(1) = t1. - */ - function init( x0, x1, t0, t1 ) { + destTracks.push( new trackType( trackName, times, values ) ); - c0 = x0; - c1 = t0; - c2 = - 3 * x0 + 3 * x1 - 2 * t0 - t1; - c3 = 2 * x0 - 2 * x1 + t0 + t1; + } - } + } - return { + }; - initCatmullRom: function ( x0, x1, x2, x3, tension ) { + var tracks = []; - init( x1, x2, tension * ( x2 - x0 ), tension * ( x3 - x1 ) ); + var clipName = animation.name || 'default'; + // automatic length determination in AnimationClip. + var duration = animation.length || - 1; + var fps = animation.fps || 30; - }, + var hierarchyTracks = animation.hierarchy || []; - initNonuniformCatmullRom: function ( x0, x1, x2, x3, dt0, dt1, dt2 ) { + for ( var h = 0; h < hierarchyTracks.length; h ++ ) { - // compute tangents when parameterized in [t1,t2] - var t1 = ( x1 - x0 ) / dt0 - ( x2 - x0 ) / ( dt0 + dt1 ) + ( x2 - x1 ) / dt1; - var t2 = ( x2 - x1 ) / dt1 - ( x3 - x1 ) / ( dt1 + dt2 ) + ( x3 - x2 ) / dt2; + var animationKeys = hierarchyTracks[ h ].keys; - // rescale tangents for parametrization in [0,1] - t1 *= dt1; - t2 *= dt1; + // skip empty tracks + if ( ! animationKeys || animationKeys.length === 0 ) continue; - init( x1, x2, t1, t2 ); + // process morph targets + if ( animationKeys[ 0 ].morphTargets ) { - }, + // figure out all morph targets used in this track + var morphTargetNames = {}; - calc: function ( t ) { + for ( var k = 0; k < animationKeys.length; k ++ ) { - var t2 = t * t; - var t3 = t2 * t; - return c0 + c1 * t + c2 * t2 + c3 * t3; + if ( animationKeys[ k ].morphTargets ) { - } + for ( var m = 0; m < animationKeys[ k ].morphTargets.length; m ++ ) { - }; + morphTargetNames[ animationKeys[ k ].morphTargets[ m ] ] = - 1; - } + } - // + } - var tmp = new Vector3(); - var px = new CubicPoly(), py = new CubicPoly(), pz = new CubicPoly(); + } - function CatmullRomCurve3( points, closed, curveType, tension ) { + // create a track for each morph target with all zero + // morphTargetInfluences except for the keys in which + // the morphTarget is named. + for ( var morphTargetName in morphTargetNames ) { - Curve.call( this ); + var times = []; + var values = []; - this.type = 'CatmullRomCurve3'; + for ( var m = 0; m !== animationKeys[ k ].morphTargets.length; ++ m ) { - this.points = points || []; - this.closed = closed || false; - this.curveType = curveType || 'centripetal'; - this.tension = tension || 0.5; + var animationKey = animationKeys[ k ]; - } + times.push( animationKey.time ); + values.push( ( animationKey.morphTarget === morphTargetName ) ? 1 : 0 ); - CatmullRomCurve3.prototype = Object.create( Curve.prototype ); - CatmullRomCurve3.prototype.constructor = CatmullRomCurve3; + } - CatmullRomCurve3.prototype.isCatmullRomCurve3 = true; + tracks.push( new NumberKeyframeTrack( '.morphTargetInfluence[' + morphTargetName + ']', times, values ) ); - CatmullRomCurve3.prototype.getPoint = function ( t, optionalTarget ) { + } - var point = optionalTarget || new Vector3(); + duration = morphTargetNames.length * ( fps || 1.0 ); - var points = this.points; - var l = points.length; + } else { - var p = ( l - ( this.closed ? 0 : 1 ) ) * t; - var intPoint = Math.floor( p ); - var weight = p - intPoint; + // ...assume skeletal animation - if ( this.closed ) { + var boneName = '.bones[' + bones[ h ].name + ']'; - intPoint += intPoint > 0 ? 0 : ( Math.floor( Math.abs( intPoint ) / l ) + 1 ) * l; + addNonemptyTrack( + VectorKeyframeTrack, boneName + '.position', + animationKeys, 'pos', tracks ); - } else if ( weight === 0 && intPoint === l - 1 ) { + addNonemptyTrack( + QuaternionKeyframeTrack, boneName + '.quaternion', + animationKeys, 'rot', tracks ); - intPoint = l - 2; - weight = 1; + addNonemptyTrack( + VectorKeyframeTrack, boneName + '.scale', + animationKeys, 'scl', tracks ); - } + } - var p0, p1, p2, p3; // 4 points + } - if ( this.closed || intPoint > 0 ) { + if ( tracks.length === 0 ) { - p0 = points[ ( intPoint - 1 ) % l ]; + return null; - } else { + } - // extrapolate first point - tmp.subVectors( points[ 0 ], points[ 1 ] ).add( points[ 0 ] ); - p0 = tmp; + var clip = new AnimationClip( clipName, duration, tracks ); + + return clip; } - p1 = points[ intPoint % l ]; - p2 = points[ ( intPoint + 1 ) % l ]; + } ); - if ( this.closed || intPoint + 2 < l ) { + Object.assign( AnimationClip.prototype, { - p3 = points[ ( intPoint + 2 ) % l ]; + resetDuration: function () { - } else { + var tracks = this.tracks, duration = 0; - // extrapolate last point - tmp.subVectors( points[ l - 1 ], points[ l - 2 ] ).add( points[ l - 1 ] ); - p3 = tmp; + for ( var i = 0, n = tracks.length; i !== n; ++ i ) { - } + var track = this.tracks[ i ]; - if ( this.curveType === 'centripetal' || this.curveType === 'chordal' ) { + duration = Math.max( duration, track.times[ track.times.length - 1 ] ); - // init Centripetal / Chordal Catmull-Rom - var pow = this.curveType === 'chordal' ? 0.5 : 0.25; - var dt0 = Math.pow( p0.distanceToSquared( p1 ), pow ); - var dt1 = Math.pow( p1.distanceToSquared( p2 ), pow ); - var dt2 = Math.pow( p2.distanceToSquared( p3 ), pow ); + } - // safety check for repeated points - if ( dt1 < 1e-4 ) dt1 = 1.0; - if ( dt0 < 1e-4 ) dt0 = dt1; - if ( dt2 < 1e-4 ) dt2 = dt1; + this.duration = duration; - px.initNonuniformCatmullRom( p0.x, p1.x, p2.x, p3.x, dt0, dt1, dt2 ); - py.initNonuniformCatmullRom( p0.y, p1.y, p2.y, p3.y, dt0, dt1, dt2 ); - pz.initNonuniformCatmullRom( p0.z, p1.z, p2.z, p3.z, dt0, dt1, dt2 ); + return this; - } else if ( this.curveType === 'catmullrom' ) { + }, - px.initCatmullRom( p0.x, p1.x, p2.x, p3.x, this.tension ); - py.initCatmullRom( p0.y, p1.y, p2.y, p3.y, this.tension ); - pz.initCatmullRom( p0.z, p1.z, p2.z, p3.z, this.tension ); + trim: function () { - } + for ( var i = 0; i < this.tracks.length; i ++ ) { - point.set( - px.calc( weight ), - py.calc( weight ), - pz.calc( weight ) - ); + this.tracks[ i ].trim( 0, this.duration ); - return point; + } - }; - - CatmullRomCurve3.prototype.copy = function ( source ) { - - Curve.prototype.copy.call( this, source ); + return this; - this.points = []; + }, - for ( var i = 0, l = source.points.length; i < l; i ++ ) { + validate: function () { - var point = source.points[ i ]; + var valid = true; - this.points.push( point.clone() ); + for ( var i = 0; i < this.tracks.length; i ++ ) { - } + valid = valid && this.tracks[ i ].validate(); - this.closed = source.closed; - this.curveType = source.curveType; - this.tension = source.tension; + } - return this; + return valid; - }; + }, - CatmullRomCurve3.prototype.toJSON = function () { + optimize: function () { - var data = Curve.prototype.toJSON.call( this ); + for ( var i = 0; i < this.tracks.length; i ++ ) { - data.points = []; + this.tracks[ i ].optimize(); - for ( var i = 0, l = this.points.length; i < l; i ++ ) { + } - var point = this.points[ i ]; - data.points.push( point.toArray() ); + return this; } - data.closed = this.closed; - data.curveType = this.curveType; - data.tension = this.tension; + } ); - return data; + /** + * @author mrdoob / http://mrdoob.com/ + */ - }; + var Cache = { - CatmullRomCurve3.prototype.fromJSON = function ( json ) { + enabled: false, - Curve.prototype.fromJSON.call( this, json ); + files: {}, - this.points = []; + add: function ( key, file ) { - for ( var i = 0, l = json.points.length; i < l; i ++ ) { + if ( this.enabled === false ) return; - var point = json.points[ i ]; - this.points.push( new Vector3().fromArray( point ) ); + // console.log( 'THREE.Cache', 'Adding key:', key ); - } + this.files[ key ] = file; - this.closed = json.closed; - this.curveType = json.curveType; - this.tension = json.tension; + }, - return this; + get: function ( key ) { - }; + if ( this.enabled === false ) return; - /** - * @author zz85 / http://www.lab4games.net/zz85/blog - * - * Bezier Curves formulas obtained from - * http://en.wikipedia.org/wiki/Bézier_curve - */ + // console.log( 'THREE.Cache', 'Checking key:', key ); - function CatmullRom( t, p0, p1, p2, p3 ) { + return this.files[ key ]; - var v0 = ( p2 - p0 ) * 0.5; - var v1 = ( p3 - p1 ) * 0.5; - var t2 = t * t; - var t3 = t * t2; - return ( 2 * p1 - 2 * p2 + v0 + v1 ) * t3 + ( - 3 * p1 + 3 * p2 - 2 * v0 - v1 ) * t2 + v0 * t + p1; + }, - } + remove: function ( key ) { - // + delete this.files[ key ]; - function QuadraticBezierP0( t, p ) { + }, - var k = 1 - t; - return k * k * p; + clear: function () { - } + this.files = {}; - function QuadraticBezierP1( t, p ) { + } - return 2 * ( 1 - t ) * t * p; + }; - } + /** + * @author mrdoob / http://mrdoob.com/ + */ - function QuadraticBezierP2( t, p ) { + function LoadingManager( onLoad, onProgress, onError ) { - return t * t * p; + var scope = this; - } + var isLoading = false; + var itemsLoaded = 0; + var itemsTotal = 0; + var urlModifier = undefined; - function QuadraticBezier( t, p0, p1, p2 ) { + // Refer to #5689 for the reason why we don't set .onStart + // in the constructor - return QuadraticBezierP0( t, p0 ) + QuadraticBezierP1( t, p1 ) + - QuadraticBezierP2( t, p2 ); + this.onStart = undefined; + this.onLoad = onLoad; + this.onProgress = onProgress; + this.onError = onError; - } + this.itemStart = function ( url ) { - // + itemsTotal ++; - function CubicBezierP0( t, p ) { + if ( isLoading === false ) { - var k = 1 - t; - return k * k * k * p; + if ( scope.onStart !== undefined ) { - } + scope.onStart( url, itemsLoaded, itemsTotal ); - function CubicBezierP1( t, p ) { + } - var k = 1 - t; - return 3 * k * k * t * p; + } - } + isLoading = true; - function CubicBezierP2( t, p ) { + }; - return 3 * ( 1 - t ) * t * t * p; + this.itemEnd = function ( url ) { - } + itemsLoaded ++; - function CubicBezierP3( t, p ) { + if ( scope.onProgress !== undefined ) { - return t * t * t * p; + scope.onProgress( url, itemsLoaded, itemsTotal ); - } + } - function CubicBezier( t, p0, p1, p2, p3 ) { + if ( itemsLoaded === itemsTotal ) { - return CubicBezierP0( t, p0 ) + CubicBezierP1( t, p1 ) + CubicBezierP2( t, p2 ) + - CubicBezierP3( t, p3 ); + isLoading = false; - } + if ( scope.onLoad !== undefined ) { - function CubicBezierCurve( v0, v1, v2, v3 ) { + scope.onLoad(); - Curve.call( this ); + } - this.type = 'CubicBezierCurve'; + } - this.v0 = v0 || new Vector2(); - this.v1 = v1 || new Vector2(); - this.v2 = v2 || new Vector2(); - this.v3 = v3 || new Vector2(); + }; - } + this.itemError = function ( url ) { - CubicBezierCurve.prototype = Object.create( Curve.prototype ); - CubicBezierCurve.prototype.constructor = CubicBezierCurve; + if ( scope.onError !== undefined ) { - CubicBezierCurve.prototype.isCubicBezierCurve = true; + scope.onError( url ); - CubicBezierCurve.prototype.getPoint = function ( t, optionalTarget ) { + } - var point = optionalTarget || new Vector2(); + }; - var v0 = this.v0, v1 = this.v1, v2 = this.v2, v3 = this.v3; + this.resolveURL = function ( url ) { - point.set( - CubicBezier( t, v0.x, v1.x, v2.x, v3.x ), - CubicBezier( t, v0.y, v1.y, v2.y, v3.y ) - ); + if ( urlModifier ) { - return point; + return urlModifier( url ); - }; + } - CubicBezierCurve.prototype.copy = function ( source ) { + return url; - Curve.prototype.copy.call( this, source ); + }; - this.v0.copy( source.v0 ); - this.v1.copy( source.v1 ); - this.v2.copy( source.v2 ); - this.v3.copy( source.v3 ); + this.setURLModifier = function ( transform ) { - return this; + urlModifier = transform; + return this; - }; + }; - CubicBezierCurve.prototype.toJSON = function () { + } - var data = Curve.prototype.toJSON.call( this ); + var DefaultLoadingManager = new LoadingManager(); - data.v0 = this.v0.toArray(); - data.v1 = this.v1.toArray(); - data.v2 = this.v2.toArray(); - data.v3 = this.v3.toArray(); + /** + * @author mrdoob / http://mrdoob.com/ + */ - return data; + var loading = {}; - }; + function FileLoader( manager ) { - CubicBezierCurve.prototype.fromJSON = function ( json ) { + this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; - Curve.prototype.fromJSON.call( this, json ); + } - this.v0.fromArray( json.v0 ); - this.v1.fromArray( json.v1 ); - this.v2.fromArray( json.v2 ); - this.v3.fromArray( json.v3 ); + Object.assign( FileLoader.prototype, { - return this; + load: function ( url, onLoad, onProgress, onError ) { - }; + if ( url === undefined ) url = ''; - function CubicBezierCurve3( v0, v1, v2, v3 ) { + if ( this.path !== undefined ) url = this.path + url; - Curve.call( this ); + url = this.manager.resolveURL( url ); - this.type = 'CubicBezierCurve3'; + var scope = this; - this.v0 = v0 || new Vector3(); - this.v1 = v1 || new Vector3(); - this.v2 = v2 || new Vector3(); - this.v3 = v3 || new Vector3(); + var cached = Cache.get( url ); - } + if ( cached !== undefined ) { - CubicBezierCurve3.prototype = Object.create( Curve.prototype ); - CubicBezierCurve3.prototype.constructor = CubicBezierCurve3; + scope.manager.itemStart( url ); - CubicBezierCurve3.prototype.isCubicBezierCurve3 = true; + setTimeout( function () { - CubicBezierCurve3.prototype.getPoint = function ( t, optionalTarget ) { + if ( onLoad ) onLoad( cached ); - var point = optionalTarget || new Vector3(); + scope.manager.itemEnd( url ); - var v0 = this.v0, v1 = this.v1, v2 = this.v2, v3 = this.v3; + }, 0 ); - point.set( - CubicBezier( t, v0.x, v1.x, v2.x, v3.x ), - CubicBezier( t, v0.y, v1.y, v2.y, v3.y ), - CubicBezier( t, v0.z, v1.z, v2.z, v3.z ) - ); + return cached; - return point; + } - }; + // Check if request is duplicate - CubicBezierCurve3.prototype.copy = function ( source ) { + if ( loading[ url ] !== undefined ) { - Curve.prototype.copy.call( this, source ); + loading[ url ].push( { - this.v0.copy( source.v0 ); - this.v1.copy( source.v1 ); - this.v2.copy( source.v2 ); - this.v3.copy( source.v3 ); + onLoad: onLoad, + onProgress: onProgress, + onError: onError - return this; + } ); - }; + return; - CubicBezierCurve3.prototype.toJSON = function () { + } - var data = Curve.prototype.toJSON.call( this ); + // Check for data: URI + var dataUriRegex = /^data:(.*?)(;base64)?,(.*)$/; + var dataUriRegexResult = url.match( dataUriRegex ); - data.v0 = this.v0.toArray(); - data.v1 = this.v1.toArray(); - data.v2 = this.v2.toArray(); - data.v3 = this.v3.toArray(); + // Safari can not handle Data URIs through XMLHttpRequest so process manually + if ( dataUriRegexResult ) { - return data; + var mimeType = dataUriRegexResult[ 1 ]; + var isBase64 = !! dataUriRegexResult[ 2 ]; + var data = dataUriRegexResult[ 3 ]; - }; + data = decodeURIComponent( data ); - CubicBezierCurve3.prototype.fromJSON = function ( json ) { + if ( isBase64 ) data = atob( data ); - Curve.prototype.fromJSON.call( this, json ); + try { - this.v0.fromArray( json.v0 ); - this.v1.fromArray( json.v1 ); - this.v2.fromArray( json.v2 ); - this.v3.fromArray( json.v3 ); + var response; + var responseType = ( this.responseType || '' ).toLowerCase(); - return this; + switch ( responseType ) { - }; + case 'arraybuffer': + case 'blob': - function LineCurve( v1, v2 ) { + var view = new Uint8Array( data.length ); - Curve.call( this ); + for ( var i = 0; i < data.length; i ++ ) { - this.type = 'LineCurve'; + view[ i ] = data.charCodeAt( i ); - this.v1 = v1 || new Vector2(); - this.v2 = v2 || new Vector2(); + } - } + if ( responseType === 'blob' ) { - LineCurve.prototype = Object.create( Curve.prototype ); - LineCurve.prototype.constructor = LineCurve; + response = new Blob( [ view.buffer ], { type: mimeType } ); - LineCurve.prototype.isLineCurve = true; + } else { - LineCurve.prototype.getPoint = function ( t, optionalTarget ) { + response = view.buffer; - var point = optionalTarget || new Vector2(); + } - if ( t === 1 ) { + break; - point.copy( this.v2 ); + case 'document': - } else { + var parser = new DOMParser(); + response = parser.parseFromString( data, mimeType ); - point.copy( this.v2 ).sub( this.v1 ); - point.multiplyScalar( t ).add( this.v1 ); + break; - } + case 'json': - return point; + response = JSON.parse( data ); - }; + break; - // Line curve is linear, so we can overwrite default getPointAt + default: // 'text' or other - LineCurve.prototype.getPointAt = function ( u, optionalTarget ) { + response = data; - return this.getPoint( u, optionalTarget ); + break; - }; + } - LineCurve.prototype.getTangent = function ( /* t */ ) { + // Wait for next browser tick like standard XMLHttpRequest event dispatching does + setTimeout( function () { - var tangent = this.v2.clone().sub( this.v1 ); + if ( onLoad ) onLoad( response ); - return tangent.normalize(); + scope.manager.itemEnd( url ); - }; + }, 0 ); - LineCurve.prototype.copy = function ( source ) { + } catch ( error ) { - Curve.prototype.copy.call( this, source ); + // Wait for next browser tick like standard XMLHttpRequest event dispatching does + setTimeout( function () { - this.v1.copy( source.v1 ); - this.v2.copy( source.v2 ); + if ( onError ) onError( error ); - return this; + scope.manager.itemError( url ); + scope.manager.itemEnd( url ); - }; + }, 0 ); - LineCurve.prototype.toJSON = function () { + } - var data = Curve.prototype.toJSON.call( this ); + } else { - data.v1 = this.v1.toArray(); - data.v2 = this.v2.toArray(); + // Initialise array for duplicate requests - return data; + loading[ url ] = []; - }; + loading[ url ].push( { - LineCurve.prototype.fromJSON = function ( json ) { + onLoad: onLoad, + onProgress: onProgress, + onError: onError - Curve.prototype.fromJSON.call( this, json ); + } ); - this.v1.fromArray( json.v1 ); - this.v2.fromArray( json.v2 ); + var request = new XMLHttpRequest(); - return this; + request.open( 'GET', url, true ); - }; + request.addEventListener( 'load', function ( event ) { - function LineCurve3( v1, v2 ) { + var response = this.response; - Curve.call( this ); + Cache.add( url, response ); - this.type = 'LineCurve3'; + var callbacks = loading[ url ]; - this.v1 = v1 || new Vector3(); - this.v2 = v2 || new Vector3(); + delete loading[ url ]; - } + if ( this.status === 200 || this.status === 0 ) { - LineCurve3.prototype = Object.create( Curve.prototype ); - LineCurve3.prototype.constructor = LineCurve3; + // Some browsers return HTTP Status 0 when using non-http protocol + // e.g. 'file://' or 'data://'. Handle as success. - LineCurve3.prototype.isLineCurve3 = true; + if ( this.status === 0 ) console.warn( 'THREE.FileLoader: HTTP Status 0 received.' ); - LineCurve3.prototype.getPoint = function ( t, optionalTarget ) { + for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - var point = optionalTarget || new Vector3(); + var callback = callbacks[ i ]; + if ( callback.onLoad ) callback.onLoad( response ); - if ( t === 1 ) { + } - point.copy( this.v2 ); + scope.manager.itemEnd( url ); - } else { + } else { - point.copy( this.v2 ).sub( this.v1 ); - point.multiplyScalar( t ).add( this.v1 ); + for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - } + var callback = callbacks[ i ]; + if ( callback.onError ) callback.onError( event ); - return point; + } - }; + scope.manager.itemError( url ); + scope.manager.itemEnd( url ); - // Line curve is linear, so we can overwrite default getPointAt + } - LineCurve3.prototype.getPointAt = function ( u, optionalTarget ) { + }, false ); - return this.getPoint( u, optionalTarget ); + request.addEventListener( 'progress', function ( event ) { - }; + var callbacks = loading[ url ]; - LineCurve3.prototype.copy = function ( source ) { + for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - Curve.prototype.copy.call( this, source ); + var callback = callbacks[ i ]; + if ( callback.onProgress ) callback.onProgress( event ); - this.v1.copy( source.v1 ); - this.v2.copy( source.v2 ); + } - return this; + }, false ); - }; + request.addEventListener( 'error', function ( event ) { - LineCurve3.prototype.toJSON = function () { + var callbacks = loading[ url ]; - var data = Curve.prototype.toJSON.call( this ); + delete loading[ url ]; - data.v1 = this.v1.toArray(); - data.v2 = this.v2.toArray(); + for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - return data; + var callback = callbacks[ i ]; + if ( callback.onError ) callback.onError( event ); - }; + } - LineCurve3.prototype.fromJSON = function ( json ) { + scope.manager.itemError( url ); + scope.manager.itemEnd( url ); - Curve.prototype.fromJSON.call( this, json ); + }, false ); - this.v1.fromArray( json.v1 ); - this.v2.fromArray( json.v2 ); + request.addEventListener( 'abort', function ( event ) { - return this; + var callbacks = loading[ url ]; - }; + delete loading[ url ]; - function QuadraticBezierCurve( v0, v1, v2 ) { + for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - Curve.call( this ); + var callback = callbacks[ i ]; + if ( callback.onError ) callback.onError( event ); - this.type = 'QuadraticBezierCurve'; + } - this.v0 = v0 || new Vector2(); - this.v1 = v1 || new Vector2(); - this.v2 = v2 || new Vector2(); + scope.manager.itemError( url ); + scope.manager.itemEnd( url ); - } + }, false ); - QuadraticBezierCurve.prototype = Object.create( Curve.prototype ); - QuadraticBezierCurve.prototype.constructor = QuadraticBezierCurve; + if ( this.responseType !== undefined ) request.responseType = this.responseType; + if ( this.withCredentials !== undefined ) request.withCredentials = this.withCredentials; - QuadraticBezierCurve.prototype.isQuadraticBezierCurve = true; + if ( request.overrideMimeType ) request.overrideMimeType( this.mimeType !== undefined ? this.mimeType : 'text/plain' ); - QuadraticBezierCurve.prototype.getPoint = function ( t, optionalTarget ) { + for ( var header in this.requestHeader ) { - var point = optionalTarget || new Vector2(); + request.setRequestHeader( header, this.requestHeader[ header ] ); - var v0 = this.v0, v1 = this.v1, v2 = this.v2; + } - point.set( - QuadraticBezier( t, v0.x, v1.x, v2.x ), - QuadraticBezier( t, v0.y, v1.y, v2.y ) - ); - - return point; - - }; + request.send( null ); - QuadraticBezierCurve.prototype.copy = function ( source ) { + } - Curve.prototype.copy.call( this, source ); + scope.manager.itemStart( url ); - this.v0.copy( source.v0 ); - this.v1.copy( source.v1 ); - this.v2.copy( source.v2 ); + return request; - return this; + }, - }; + setPath: function ( value ) { - QuadraticBezierCurve.prototype.toJSON = function () { + this.path = value; + return this; - var data = Curve.prototype.toJSON.call( this ); + }, - data.v0 = this.v0.toArray(); - data.v1 = this.v1.toArray(); - data.v2 = this.v2.toArray(); + setResponseType: function ( value ) { - return data; + this.responseType = value; + return this; - }; + }, - QuadraticBezierCurve.prototype.fromJSON = function ( json ) { + setWithCredentials: function ( value ) { - Curve.prototype.fromJSON.call( this, json ); + this.withCredentials = value; + return this; - this.v0.fromArray( json.v0 ); - this.v1.fromArray( json.v1 ); - this.v2.fromArray( json.v2 ); + }, - return this; + setMimeType: function ( value ) { - }; + this.mimeType = value; + return this; - function QuadraticBezierCurve3( v0, v1, v2 ) { + }, - Curve.call( this ); + setRequestHeader: function ( value ) { - this.type = 'QuadraticBezierCurve3'; + this.requestHeader = value; + return this; - this.v0 = v0 || new Vector3(); - this.v1 = v1 || new Vector3(); - this.v2 = v2 || new Vector3(); + } - } + } ); - QuadraticBezierCurve3.prototype = Object.create( Curve.prototype ); - QuadraticBezierCurve3.prototype.constructor = QuadraticBezierCurve3; + /** + * @author bhouston / http://clara.io/ + */ - QuadraticBezierCurve3.prototype.isQuadraticBezierCurve3 = true; + function AnimationLoader( manager ) { - QuadraticBezierCurve3.prototype.getPoint = function ( t, optionalTarget ) { + this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; - var point = optionalTarget || new Vector3(); + } - var v0 = this.v0, v1 = this.v1, v2 = this.v2; + Object.assign( AnimationLoader.prototype, { - point.set( - QuadraticBezier( t, v0.x, v1.x, v2.x ), - QuadraticBezier( t, v0.y, v1.y, v2.y ), - QuadraticBezier( t, v0.z, v1.z, v2.z ) - ); + load: function ( url, onLoad, onProgress, onError ) { - return point; + var scope = this; - }; + var loader = new FileLoader( scope.manager ); + loader.setPath( scope.path ); + loader.load( url, function ( text ) { - QuadraticBezierCurve3.prototype.copy = function ( source ) { + onLoad( scope.parse( JSON.parse( text ) ) ); - Curve.prototype.copy.call( this, source ); + }, onProgress, onError ); - this.v0.copy( source.v0 ); - this.v1.copy( source.v1 ); - this.v2.copy( source.v2 ); + }, - return this; + parse: function ( json, onLoad ) { - }; + var animations = []; - QuadraticBezierCurve3.prototype.toJSON = function () { + for ( var i = 0; i < json.length; i ++ ) { - var data = Curve.prototype.toJSON.call( this ); + var clip = AnimationClip.parse( json[ i ] ); - data.v0 = this.v0.toArray(); - data.v1 = this.v1.toArray(); - data.v2 = this.v2.toArray(); + animations.push( clip ); - return data; + } - }; + onLoad( animations ); - QuadraticBezierCurve3.prototype.fromJSON = function ( json ) { + }, - Curve.prototype.fromJSON.call( this, json ); + setPath: function ( value ) { - this.v0.fromArray( json.v0 ); - this.v1.fromArray( json.v1 ); - this.v2.fromArray( json.v2 ); + this.path = value; + return this; - return this; + } - }; + } ); - function SplineCurve( points /* array of Vector2 */ ) { + /** + * @author mrdoob / http://mrdoob.com/ + * + * Abstract Base class to block based textures loader (dds, pvr, ...) + */ - Curve.call( this ); + function CompressedTextureLoader( manager ) { - this.type = 'SplineCurve'; + this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; - this.points = points || []; + // override in sub classes + this._parser = null; } - SplineCurve.prototype = Object.create( Curve.prototype ); - SplineCurve.prototype.constructor = SplineCurve; - - SplineCurve.prototype.isSplineCurve = true; - - SplineCurve.prototype.getPoint = function ( t, optionalTarget ) { - - var point = optionalTarget || new Vector2(); + Object.assign( CompressedTextureLoader.prototype, { - var points = this.points; - var p = ( points.length - 1 ) * t; + load: function ( url, onLoad, onProgress, onError ) { - var intPoint = Math.floor( p ); - var weight = p - intPoint; + var scope = this; - var p0 = points[ intPoint === 0 ? intPoint : intPoint - 1 ]; - var p1 = points[ intPoint ]; - var p2 = points[ intPoint > points.length - 2 ? points.length - 1 : intPoint + 1 ]; - var p3 = points[ intPoint > points.length - 3 ? points.length - 1 : intPoint + 2 ]; + var images = []; - point.set( - CatmullRom( weight, p0.x, p1.x, p2.x, p3.x ), - CatmullRom( weight, p0.y, p1.y, p2.y, p3.y ) - ); + var texture = new CompressedTexture(); + texture.image = images; - return point; + var loader = new FileLoader( this.manager ); + loader.setPath( this.path ); + loader.setResponseType( 'arraybuffer' ); - }; + function loadTexture( i ) { - SplineCurve.prototype.copy = function ( source ) { + loader.load( url[ i ], function ( buffer ) { - Curve.prototype.copy.call( this, source ); + var texDatas = scope._parser( buffer, true ); - this.points = []; + images[ i ] = { + width: texDatas.width, + height: texDatas.height, + format: texDatas.format, + mipmaps: texDatas.mipmaps + }; - for ( var i = 0, l = source.points.length; i < l; i ++ ) { + loaded += 1; - var point = source.points[ i ]; + if ( loaded === 6 ) { - this.points.push( point.clone() ); + if ( texDatas.mipmapCount === 1 ) + texture.minFilter = LinearFilter; - } + texture.format = texDatas.format; + texture.needsUpdate = true; - return this; + if ( onLoad ) onLoad( texture ); - }; + } - SplineCurve.prototype.toJSON = function () { + }, onProgress, onError ); - var data = Curve.prototype.toJSON.call( this ); + } - data.points = []; + if ( Array.isArray( url ) ) { - for ( var i = 0, l = this.points.length; i < l; i ++ ) { + var loaded = 0; - var point = this.points[ i ]; - data.points.push( point.toArray() ); + for ( var i = 0, il = url.length; i < il; ++ i ) { - } + loadTexture( i ); - return data; + } - }; + } else { - SplineCurve.prototype.fromJSON = function ( json ) { + // compressed cubemap texture stored in a single DDS file - Curve.prototype.fromJSON.call( this, json ); + loader.load( url, function ( buffer ) { - this.points = []; + var texDatas = scope._parser( buffer, true ); - for ( var i = 0, l = json.points.length; i < l; i ++ ) { + if ( texDatas.isCubemap ) { - var point = json.points[ i ]; - this.points.push( new Vector2().fromArray( point ) ); + var faces = texDatas.mipmaps.length / texDatas.mipmapCount; - } + for ( var f = 0; f < faces; f ++ ) { - return this; + images[ f ] = { mipmaps: [] }; - }; + for ( var i = 0; i < texDatas.mipmapCount; i ++ ) { + images[ f ].mipmaps.push( texDatas.mipmaps[ f * texDatas.mipmapCount + i ] ); + images[ f ].format = texDatas.format; + images[ f ].width = texDatas.width; + images[ f ].height = texDatas.height; + } - var Curves = /*#__PURE__*/Object.freeze({ - ArcCurve: ArcCurve, - CatmullRomCurve3: CatmullRomCurve3, - CubicBezierCurve: CubicBezierCurve, - CubicBezierCurve3: CubicBezierCurve3, - EllipseCurve: EllipseCurve, - LineCurve: LineCurve, - LineCurve3: LineCurve3, - QuadraticBezierCurve: QuadraticBezierCurve, - QuadraticBezierCurve3: QuadraticBezierCurve3, - SplineCurve: SplineCurve - }); + } - /** - * @author zz85 / http://www.lab4games.net/zz85/blog - * - **/ + } else { - /************************************************************** - * Curved Path - a curve path is simply a array of connected - * curves, but retains the api of a curve - **************************************************************/ + texture.image.width = texDatas.width; + texture.image.height = texDatas.height; + texture.mipmaps = texDatas.mipmaps; - function CurvePath() { + } - Curve.call( this ); + if ( texDatas.mipmapCount === 1 ) { - this.type = 'CurvePath'; + texture.minFilter = LinearFilter; - this.curves = []; - this.autoClose = false; // Automatically closes the path + } - } + texture.format = texDatas.format; + texture.needsUpdate = true; - CurvePath.prototype = Object.assign( Object.create( Curve.prototype ), { + if ( onLoad ) onLoad( texture ); - constructor: CurvePath, + }, onProgress, onError ); - add: function ( curve ) { + } - this.curves.push( curve ); + return texture; }, - closePath: function () { - - // Add a line curve if start and end of lines are not connected - var startPoint = this.curves[ 0 ].getPoint( 0 ); - var endPoint = this.curves[ this.curves.length - 1 ].getPoint( 1 ); - - if ( ! startPoint.equals( endPoint ) ) { + setPath: function ( value ) { - this.curves.push( new LineCurve( endPoint, startPoint ) ); + this.path = value; + return this; - } + } - }, + } ); - // To get accurate point with reference to - // entire path distance at time t, - // following has to be done: + /** + * @author Nikos M. / https://github.com/foo123/ + * + * Abstract Base class to load generic binary textures formats (rgbe, hdr, ...) + */ - // 1. Length of each sub path have to be known - // 2. Locate and identify type of curve - // 3. Get t for the curve - // 4. Return curve.getPointAt(t') + function DataTextureLoader( manager ) { - getPoint: function ( t ) { + this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; - var d = t * this.getLength(); - var curveLengths = this.getCurveLengths(); - var i = 0; + // override in sub classes + this._parser = null; - // To think about boundaries points. + } - while ( i < curveLengths.length ) { + Object.assign( DataTextureLoader.prototype, { - if ( curveLengths[ i ] >= d ) { + load: function ( url, onLoad, onProgress, onError ) { - var diff = curveLengths[ i ] - d; - var curve = this.curves[ i ]; + var scope = this; - var segmentLength = curve.getLength(); - var u = segmentLength === 0 ? 0 : 1 - diff / segmentLength; + var texture = new DataTexture(); - return curve.getPointAt( u ); + var loader = new FileLoader( this.manager ); + loader.setResponseType( 'arraybuffer' ); + loader.setPath( this.path ); + loader.load( url, function ( buffer ) { - } + var texData = scope._parser( buffer ); - i ++; + if ( ! texData ) return; - } + if ( texData.image !== undefined ) { - return null; + texture.image = texData.image; - // loop where sum != 0, sum > d , sum+1 1 && ! points[ points.length - 1 ].equals( points[ 0 ] ) ) { + }, 0 ); - points.push( points[ 0 ] ); + return cached; } - return points; - - }, - - copy: function ( source ) { + var image = document.createElementNS( 'http://www.w3.org/1999/xhtml', 'img' ); - Curve.prototype.copy.call( this, source ); + function onImageLoad() { - this.curves = []; + image.removeEventListener( 'load', onImageLoad, false ); + image.removeEventListener( 'error', onImageError, false ); - for ( var i = 0, l = source.curves.length; i < l; i ++ ) { + Cache.add( url, this ); - var curve = source.curves[ i ]; + if ( onLoad ) onLoad( this ); - this.curves.push( curve.clone() ); + scope.manager.itemEnd( url ); } - this.autoClose = source.autoClose; + function onImageError( event ) { - return this; + image.removeEventListener( 'load', onImageLoad, false ); + image.removeEventListener( 'error', onImageError, false ); - }, + if ( onError ) onError( event ); - toJSON: function () { + scope.manager.itemError( url ); + scope.manager.itemEnd( url ); - var data = Curve.prototype.toJSON.call( this ); + } - data.autoClose = this.autoClose; - data.curves = []; + image.addEventListener( 'load', onImageLoad, false ); + image.addEventListener( 'error', onImageError, false ); - for ( var i = 0, l = this.curves.length; i < l; i ++ ) { + if ( url.substr( 0, 5 ) !== 'data:' ) { - var curve = this.curves[ i ]; - data.curves.push( curve.toJSON() ); + if ( this.crossOrigin !== undefined ) image.crossOrigin = this.crossOrigin; } - return data; + scope.manager.itemStart( url ); - }, + image.src = url; - fromJSON: function ( json ) { + return image; - Curve.prototype.fromJSON.call( this, json ); + }, - this.autoClose = json.autoClose; - this.curves = []; + setCrossOrigin: function ( value ) { - for ( var i = 0, l = json.curves.length; i < l; i ++ ) { + this.crossOrigin = value; + return this; - var curve = json.curves[ i ]; - this.curves.push( new Curves[ curve.type ]().fromJSON( curve ) ); + }, - } + setPath: function ( value ) { + this.path = value; return this; } @@ -34568,172 +34491,131 @@ } ); /** - * @author zz85 / http://www.lab4games.net/zz85/blog - * Creates free form 2d path using series of points, lines or curves. - **/ + * @author mrdoob / http://mrdoob.com/ + */ - function Path( points ) { - CurvePath.call( this ); + function CubeTextureLoader( manager ) { - this.type = 'Path'; + this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; - this.currentPoint = new Vector2(); + } - if ( points ) { + Object.assign( CubeTextureLoader.prototype, { - this.setFromPoints( points ); + crossOrigin: 'anonymous', - } + load: function ( urls, onLoad, onProgress, onError ) { - } - - Path.prototype = Object.assign( Object.create( CurvePath.prototype ), { - - constructor: Path, - - setFromPoints: function ( points ) { + var texture = new CubeTexture(); - this.moveTo( points[ 0 ].x, points[ 0 ].y ); + var loader = new ImageLoader( this.manager ); + loader.setCrossOrigin( this.crossOrigin ); + loader.setPath( this.path ); - for ( var i = 1, l = points.length; i < l; i ++ ) { + var loaded = 0; - this.lineTo( points[ i ].x, points[ i ].y ); + function loadTexture( i ) { - } + loader.load( urls[ i ], function ( image ) { - }, + texture.images[ i ] = image; - moveTo: function ( x, y ) { + loaded ++; - this.currentPoint.set( x, y ); // TODO consider referencing vectors instead of copying? + if ( loaded === 6 ) { - }, + texture.needsUpdate = true; - lineTo: function ( x, y ) { + if ( onLoad ) onLoad( texture ); - var curve = new LineCurve( this.currentPoint.clone(), new Vector2( x, y ) ); - this.curves.push( curve ); + } - this.currentPoint.set( x, y ); + }, undefined, onError ); - }, + } - quadraticCurveTo: function ( aCPx, aCPy, aX, aY ) { + for ( var i = 0; i < urls.length; ++ i ) { - var curve = new QuadraticBezierCurve( - this.currentPoint.clone(), - new Vector2( aCPx, aCPy ), - new Vector2( aX, aY ) - ); + loadTexture( i ); - this.curves.push( curve ); + } - this.currentPoint.set( aX, aY ); + return texture; }, - bezierCurveTo: function ( aCP1x, aCP1y, aCP2x, aCP2y, aX, aY ) { - - var curve = new CubicBezierCurve( - this.currentPoint.clone(), - new Vector2( aCP1x, aCP1y ), - new Vector2( aCP2x, aCP2y ), - new Vector2( aX, aY ) - ); - - this.curves.push( curve ); + setCrossOrigin: function ( value ) { - this.currentPoint.set( aX, aY ); + this.crossOrigin = value; + return this; }, - splineThru: function ( pts /*Array of Vector*/ ) { - - var npts = [ this.currentPoint.clone() ].concat( pts ); - - var curve = new SplineCurve( npts ); - this.curves.push( curve ); + setPath: function ( value ) { - this.currentPoint.copy( pts[ pts.length - 1 ] ); + this.path = value; + return this; - }, + } - arc: function ( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) { + } ); - var x0 = this.currentPoint.x; - var y0 = this.currentPoint.y; + /** + * @author mrdoob / http://mrdoob.com/ + */ - this.absarc( aX + x0, aY + y0, aRadius, - aStartAngle, aEndAngle, aClockwise ); - }, + function TextureLoader( manager ) { - absarc: function ( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) { + this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; - this.absellipse( aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise ); + } - }, + Object.assign( TextureLoader.prototype, { - ellipse: function ( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) { + crossOrigin: 'anonymous', - var x0 = this.currentPoint.x; - var y0 = this.currentPoint.y; + load: function ( url, onLoad, onProgress, onError ) { - this.absellipse( aX + x0, aY + y0, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ); + var texture = new Texture(); - }, + var loader = new ImageLoader( this.manager ); + loader.setCrossOrigin( this.crossOrigin ); + loader.setPath( this.path ); - absellipse: function ( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) { + loader.load( url, function ( image ) { - var curve = new EllipseCurve( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ); + texture.image = image; - if ( this.curves.length > 0 ) { + // JPEGs can't have an alpha channel, so memory can be saved by storing them as RGB. + var isJPEG = url.search( /\.jpe?g$/i ) > 0 || url.search( /^data\:image\/jpeg/ ) === 0; - // if a previous curve is present, attempt to join - var firstPoint = curve.getPoint( 0 ); + texture.format = isJPEG ? RGBFormat : RGBAFormat; + texture.needsUpdate = true; - if ( ! firstPoint.equals( this.currentPoint ) ) { + if ( onLoad !== undefined ) { - this.lineTo( firstPoint.x, firstPoint.y ); + onLoad( texture ); } - } - - this.curves.push( curve ); + }, onProgress, onError ); - var lastPoint = curve.getPoint( 1 ); - this.currentPoint.copy( lastPoint ); + return texture; }, - copy: function ( source ) { - - CurvePath.prototype.copy.call( this, source ); - - this.currentPoint.copy( source.currentPoint ); + setCrossOrigin: function ( value ) { + this.crossOrigin = value; return this; }, - toJSON: function () { - - var data = CurvePath.prototype.toJSON.call( this ); - - data.currentPoint = this.currentPoint.toArray(); - - return data; - - }, - - fromJSON: function ( json ) { - - CurvePath.prototype.fromJSON.call( this, json ); - - this.currentPoint.fromArray( json.currentPoint ); + setPath: function ( value ) { + this.path = value; return this; } @@ -34742,416 +34624,416 @@ /** * @author zz85 / http://www.lab4games.net/zz85/blog - * Defines a 2d shape plane using paths. + * Extensible curve object + * + * Some common of curve methods: + * .getPoint( t, optionalTarget ), .getTangent( t ) + * .getPointAt( u, optionalTarget ), .getTangentAt( u ) + * .getPoints(), .getSpacedPoints() + * .getLength() + * .updateArcLengths() + * + * This following curves inherit from THREE.Curve: + * + * -- 2D curves -- + * THREE.ArcCurve + * THREE.CubicBezierCurve + * THREE.EllipseCurve + * THREE.LineCurve + * THREE.QuadraticBezierCurve + * THREE.SplineCurve + * + * -- 3D curves -- + * THREE.CatmullRomCurve3 + * THREE.CubicBezierCurve3 + * THREE.LineCurve3 + * THREE.QuadraticBezierCurve3 + * + * A series of curves can be represented as a THREE.CurvePath. + * **/ - // STEP 1 Create a path. - // STEP 2 Turn path into shape. - // STEP 3 ExtrudeGeometry takes in Shape/Shapes - // STEP 3a - Extract points from each shape, turn to vertices - // STEP 3b - Triangulate each shape, add faces. - - function Shape( points ) { - - Path.call( this, points ); + /************************************************************** + * Abstract Curve base class + **************************************************************/ - this.uuid = _Math.generateUUID(); + function Curve() { - this.type = 'Shape'; + this.type = 'Curve'; - this.holes = []; + this.arcLengthDivisions = 200; } - Shape.prototype = Object.assign( Object.create( Path.prototype ), { + Object.assign( Curve.prototype, { - constructor: Shape, + // Virtual base class method to overwrite and implement in subclasses + // - t [0 .. 1] - getPointsHoles: function ( divisions ) { + getPoint: function ( /* t, optionalTarget */ ) { - var holesPts = []; + console.warn( 'THREE.Curve: .getPoint() not implemented.' ); + return null; - for ( var i = 0, l = this.holes.length; i < l; i ++ ) { + }, - holesPts[ i ] = this.holes[ i ].getPoints( divisions ); + // Get point at relative position in curve according to arc length + // - u [0 .. 1] - } + getPointAt: function ( u, optionalTarget ) { - return holesPts; + var t = this.getUtoTmapping( u ); + return this.getPoint( t, optionalTarget ); }, - // get points of shape and holes (keypoints based on segments parameter) - - extractPoints: function ( divisions ) { + // Get sequence of points using getPoint( t ) - return { + getPoints: function ( divisions ) { - shape: this.getPoints( divisions ), - holes: this.getPointsHoles( divisions ) + if ( divisions === undefined ) divisions = 5; - }; + var points = []; - }, + for ( var d = 0; d <= divisions; d ++ ) { - copy: function ( source ) { + points.push( this.getPoint( d / divisions ) ); - Path.prototype.copy.call( this, source ); + } - this.holes = []; + return points; - for ( var i = 0, l = source.holes.length; i < l; i ++ ) { + }, - var hole = source.holes[ i ]; + // Get sequence of points using getPointAt( u ) - this.holes.push( hole.clone() ); + getSpacedPoints: function ( divisions ) { - } + if ( divisions === undefined ) divisions = 5; - return this; + var points = []; - }, + for ( var d = 0; d <= divisions; d ++ ) { - toJSON: function () { + points.push( this.getPointAt( d / divisions ) ); - var data = Path.prototype.toJSON.call( this ); + } - data.uuid = this.uuid; - data.holes = []; + return points; - for ( var i = 0, l = this.holes.length; i < l; i ++ ) { + }, - var hole = this.holes[ i ]; - data.holes.push( hole.toJSON() ); + // Get total curve arc length - } + getLength: function () { - return data; + var lengths = this.getLengths(); + return lengths[ lengths.length - 1 ]; }, - fromJSON: function ( json ) { + // Get list of cumulative segment lengths - Path.prototype.fromJSON.call( this, json ); + getLengths: function ( divisions ) { - this.uuid = json.uuid; - this.holes = []; + if ( divisions === undefined ) divisions = this.arcLengthDivisions; - for ( var i = 0, l = json.holes.length; i < l; i ++ ) { + if ( this.cacheArcLengths && + ( this.cacheArcLengths.length === divisions + 1 ) && + ! this.needsUpdate ) { - var hole = json.holes[ i ]; - this.holes.push( new Path().fromJSON( hole ) ); + return this.cacheArcLengths; } - return this; - - } + this.needsUpdate = false; - } ); + var cache = []; + var current, last = this.getPoint( 0 ); + var p, sum = 0; - /** - * @author mrdoob / http://mrdoob.com/ - * @author alteredq / http://alteredqualia.com/ - */ + cache.push( 0 ); - function Light( color, intensity ) { + for ( p = 1; p <= divisions; p ++ ) { - Object3D.call( this ); + current = this.getPoint( p / divisions ); + sum += current.distanceTo( last ); + cache.push( sum ); + last = current; - this.type = 'Light'; + } - this.color = new Color( color ); - this.intensity = intensity !== undefined ? intensity : 1; + this.cacheArcLengths = cache; - this.receiveShadow = undefined; + return cache; // { sums: cache, sum: sum }; Sum is in the last element. - } + }, - Light.prototype = Object.assign( Object.create( Object3D.prototype ), { + updateArcLengths: function () { - constructor: Light, + this.needsUpdate = true; + this.getLengths(); - isLight: true, + }, - copy: function ( source ) { + // Given u ( 0 .. 1 ), get a t to find p. This gives you points which are equidistant - Object3D.prototype.copy.call( this, source ); + getUtoTmapping: function ( u, distance ) { - this.color.copy( source.color ); - this.intensity = source.intensity; + var arcLengths = this.getLengths(); - return this; + var i = 0, il = arcLengths.length; - }, + var targetArcLength; // The targeted u distance value to get - toJSON: function ( meta ) { + if ( distance ) { - var data = Object3D.prototype.toJSON.call( this, meta ); + targetArcLength = distance; - data.object.color = this.color.getHex(); - data.object.intensity = this.intensity; + } else { - if ( this.groundColor !== undefined ) data.object.groundColor = this.groundColor.getHex(); + targetArcLength = u * arcLengths[ il - 1 ]; - if ( this.distance !== undefined ) data.object.distance = this.distance; - if ( this.angle !== undefined ) data.object.angle = this.angle; - if ( this.decay !== undefined ) data.object.decay = this.decay; - if ( this.penumbra !== undefined ) data.object.penumbra = this.penumbra; + } - if ( this.shadow !== undefined ) data.object.shadow = this.shadow.toJSON(); + // binary search for the index with largest value smaller than target u distance - return data; + var low = 0, high = il - 1, comparison; - } + while ( low <= high ) { - } ); + i = Math.floor( low + ( high - low ) / 2 ); // less likely to overflow, though probably not issue here, JS doesn't really have integers, all numbers are floats - /** - * @author alteredq / http://alteredqualia.com/ - */ + comparison = arcLengths[ i ] - targetArcLength; - function HemisphereLight( skyColor, groundColor, intensity ) { + if ( comparison < 0 ) { - Light.call( this, skyColor, intensity ); + low = i + 1; - this.type = 'HemisphereLight'; + } else if ( comparison > 0 ) { - this.castShadow = undefined; + high = i - 1; - this.position.copy( Object3D.DefaultUp ); - this.updateMatrix(); + } else { - this.groundColor = new Color( groundColor ); + high = i; + break; - } + // DONE - HemisphereLight.prototype = Object.assign( Object.create( Light.prototype ), { + } - constructor: HemisphereLight, + } - isHemisphereLight: true, + i = high; - copy: function ( source ) { + if ( arcLengths[ i ] === targetArcLength ) { - Light.prototype.copy.call( this, source ); + return i / ( il - 1 ); - this.groundColor.copy( source.groundColor ); + } - return this; + // we could get finer grain at lengths, or use simple interpolation between two points - } + var lengthBefore = arcLengths[ i ]; + var lengthAfter = arcLengths[ i + 1 ]; - } ); + var segmentLength = lengthAfter - lengthBefore; - /** - * @author mrdoob / http://mrdoob.com/ - */ + // determine where we are between the 'before' and 'after' points - function LightShadow( camera ) { + var segmentFraction = ( targetArcLength - lengthBefore ) / segmentLength; - this.camera = camera; + // add that fractional amount to t - this.bias = 0; - this.radius = 1; + var t = ( i + segmentFraction ) / ( il - 1 ); - this.mapSize = new Vector2( 512, 512 ); + return t; - this.map = null; - this.matrix = new Matrix4(); + }, - } + // Returns a unit vector tangent at t + // In case any sub curve does not implement its tangent derivation, + // 2 points a small delta apart will be used to find its gradient + // which seems to give a reasonable approximation - Object.assign( LightShadow.prototype, { + getTangent: function ( t ) { - copy: function ( source ) { + var delta = 0.0001; + var t1 = t - delta; + var t2 = t + delta; - this.camera = source.camera.clone(); + // Capping in case of danger - this.bias = source.bias; - this.radius = source.radius; + if ( t1 < 0 ) t1 = 0; + if ( t2 > 1 ) t2 = 1; - this.mapSize.copy( source.mapSize ); + var pt1 = this.getPoint( t1 ); + var pt2 = this.getPoint( t2 ); - return this; + var vec = pt2.clone().sub( pt1 ); + return vec.normalize(); }, - clone: function () { + getTangentAt: function ( u ) { - return new this.constructor().copy( this ); + var t = this.getUtoTmapping( u ); + return this.getTangent( t ); }, - toJSON: function () { - - var object = {}; + computeFrenetFrames: function ( segments, closed ) { - if ( this.bias !== 0 ) object.bias = this.bias; - if ( this.radius !== 1 ) object.radius = this.radius; - if ( this.mapSize.x !== 512 || this.mapSize.y !== 512 ) object.mapSize = this.mapSize.toArray(); + // see http://www.cs.indiana.edu/pub/techreports/TR425.pdf - object.camera = this.camera.toJSON( false ).object; - delete object.camera.matrix; + var normal = new Vector3(); - return object; + var tangents = []; + var normals = []; + var binormals = []; - } + var vec = new Vector3(); + var mat = new Matrix4(); - } ); + var i, u, theta; - /** - * @author mrdoob / http://mrdoob.com/ - */ + // compute the tangent vectors for each segment on the curve - function SpotLightShadow() { + for ( i = 0; i <= segments; i ++ ) { - LightShadow.call( this, new PerspectiveCamera( 50, 1, 0.5, 500 ) ); + u = i / segments; - } + tangents[ i ] = this.getTangentAt( u ); + tangents[ i ].normalize(); - SpotLightShadow.prototype = Object.assign( Object.create( LightShadow.prototype ), { + } - constructor: SpotLightShadow, + // select an initial normal vector perpendicular to the first tangent vector, + // and in the direction of the minimum tangent xyz component - isSpotLightShadow: true, + normals[ 0 ] = new Vector3(); + binormals[ 0 ] = new Vector3(); + var min = Number.MAX_VALUE; + var tx = Math.abs( tangents[ 0 ].x ); + var ty = Math.abs( tangents[ 0 ].y ); + var tz = Math.abs( tangents[ 0 ].z ); - update: function ( light ) { + if ( tx <= min ) { - var camera = this.camera; + min = tx; + normal.set( 1, 0, 0 ); - var fov = _Math.RAD2DEG * 2 * light.angle; - var aspect = this.mapSize.width / this.mapSize.height; - var far = light.distance || camera.far; + } - if ( fov !== camera.fov || aspect !== camera.aspect || far !== camera.far ) { + if ( ty <= min ) { - camera.fov = fov; - camera.aspect = aspect; - camera.far = far; - camera.updateProjectionMatrix(); + min = ty; + normal.set( 0, 1, 0 ); } - } + if ( tz <= min ) { - } ); + normal.set( 0, 0, 1 ); - /** - * @author alteredq / http://alteredqualia.com/ - */ + } - function SpotLight( color, intensity, distance, angle, penumbra, decay ) { + vec.crossVectors( tangents[ 0 ], normal ).normalize(); - Light.call( this, color, intensity ); + normals[ 0 ].crossVectors( tangents[ 0 ], vec ); + binormals[ 0 ].crossVectors( tangents[ 0 ], normals[ 0 ] ); - this.type = 'SpotLight'; - this.position.copy( Object3D.DefaultUp ); - this.updateMatrix(); + // compute the slowly-varying normal and binormal vectors for each segment on the curve - this.target = new Object3D(); + for ( i = 1; i <= segments; i ++ ) { - Object.defineProperty( this, 'power', { - get: function () { + normals[ i ] = normals[ i - 1 ].clone(); - // intensity = power per solid angle. - // ref: equation (17) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf - return this.intensity * Math.PI; - - }, - set: function ( power ) { - - // intensity = power per solid angle. - // ref: equation (17) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf - this.intensity = power / Math.PI; - - } - } ); + binormals[ i ] = binormals[ i - 1 ].clone(); - this.distance = ( distance !== undefined ) ? distance : 0; - this.angle = ( angle !== undefined ) ? angle : Math.PI / 3; - this.penumbra = ( penumbra !== undefined ) ? penumbra : 0; - this.decay = ( decay !== undefined ) ? decay : 1; // for physically correct lights, should be 2. + vec.crossVectors( tangents[ i - 1 ], tangents[ i ] ); - this.shadow = new SpotLightShadow(); + if ( vec.length() > Number.EPSILON ) { - } + vec.normalize(); - SpotLight.prototype = Object.assign( Object.create( Light.prototype ), { + theta = Math.acos( _Math.clamp( tangents[ i - 1 ].dot( tangents[ i ] ), - 1, 1 ) ); // clamp for floating pt errors - constructor: SpotLight, + normals[ i ].applyMatrix4( mat.makeRotationAxis( vec, theta ) ); - isSpotLight: true, + } - copy: function ( source ) { + binormals[ i ].crossVectors( tangents[ i ], normals[ i ] ); - Light.prototype.copy.call( this, source ); + } - this.distance = source.distance; - this.angle = source.angle; - this.penumbra = source.penumbra; - this.decay = source.decay; + // if the curve is closed, postprocess the vectors so the first and last normal vectors are the same - this.target = source.target.clone(); + if ( closed === true ) { - this.shadow = source.shadow.clone(); + theta = Math.acos( _Math.clamp( normals[ 0 ].dot( normals[ segments ] ), - 1, 1 ) ); + theta /= segments; - return this; + if ( tangents[ 0 ].dot( vec.crossVectors( normals[ 0 ], normals[ segments ] ) ) > 0 ) { - } + theta = - theta; - } ); + } - /** - * @author mrdoob / http://mrdoob.com/ - */ + for ( i = 1; i <= segments; i ++ ) { + // twist a little... + normals[ i ].applyMatrix4( mat.makeRotationAxis( tangents[ i ], theta * i ) ); + binormals[ i ].crossVectors( tangents[ i ], normals[ i ] ); - function PointLight( color, intensity, distance, decay ) { + } - Light.call( this, color, intensity ); + } - this.type = 'PointLight'; + return { + tangents: tangents, + normals: normals, + binormals: binormals + }; - Object.defineProperty( this, 'power', { - get: function () { + }, - // intensity = power per solid angle. - // ref: equation (15) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf - return this.intensity * 4 * Math.PI; + clone: function () { - }, - set: function ( power ) { + return new this.constructor().copy( this ); - // intensity = power per solid angle. - // ref: equation (15) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf - this.intensity = power / ( 4 * Math.PI ); + }, - } - } ); + copy: function ( source ) { - this.distance = ( distance !== undefined ) ? distance : 0; - this.decay = ( decay !== undefined ) ? decay : 1; // for physically correct lights, should be 2. + this.arcLengthDivisions = source.arcLengthDivisions; - this.shadow = new LightShadow( new PerspectiveCamera( 90, 1, 0.5, 500 ) ); + return this; - } + }, - PointLight.prototype = Object.assign( Object.create( Light.prototype ), { + toJSON: function () { - constructor: PointLight, + var data = { + metadata: { + version: 4.5, + type: 'Curve', + generator: 'Curve.toJSON' + } + }; - isPointLight: true, + data.arcLengthDivisions = this.arcLengthDivisions; + data.type = this.type; - copy: function ( source ) { + return data; - Light.prototype.copy.call( this, source ); + }, - this.distance = source.distance; - this.decay = source.decay; + fromJSON: function ( json ) { - this.shadow = source.shadow.clone(); + this.arcLengthDivisions = json.arcLengthDivisions; return this; @@ -35159,1344 +35041,1471 @@ } ); - /** - * @author alteredq / http://alteredqualia.com/ - * @author arose / http://github.com/arose - */ + function EllipseCurve( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) { - function OrthographicCamera( left, right, top, bottom, near, far ) { + Curve.call( this ); - Camera.call( this ); + this.type = 'EllipseCurve'; - this.type = 'OrthographicCamera'; + this.aX = aX || 0; + this.aY = aY || 0; - this.zoom = 1; - this.view = null; + this.xRadius = xRadius || 1; + this.yRadius = yRadius || 1; - this.left = left; - this.right = right; - this.top = top; - this.bottom = bottom; + this.aStartAngle = aStartAngle || 0; + this.aEndAngle = aEndAngle || 2 * Math.PI; - this.near = ( near !== undefined ) ? near : 0.1; - this.far = ( far !== undefined ) ? far : 2000; + this.aClockwise = aClockwise || false; - this.updateProjectionMatrix(); + this.aRotation = aRotation || 0; } - OrthographicCamera.prototype = Object.assign( Object.create( Camera.prototype ), { - - constructor: OrthographicCamera, + EllipseCurve.prototype = Object.create( Curve.prototype ); + EllipseCurve.prototype.constructor = EllipseCurve; - isOrthographicCamera: true, + EllipseCurve.prototype.isEllipseCurve = true; - copy: function ( source, recursive ) { + EllipseCurve.prototype.getPoint = function ( t, optionalTarget ) { - Camera.prototype.copy.call( this, source, recursive ); + var point = optionalTarget || new Vector2(); - this.left = source.left; - this.right = source.right; - this.top = source.top; - this.bottom = source.bottom; - this.near = source.near; - this.far = source.far; + var twoPi = Math.PI * 2; + var deltaAngle = this.aEndAngle - this.aStartAngle; + var samePoints = Math.abs( deltaAngle ) < Number.EPSILON; - this.zoom = source.zoom; - this.view = source.view === null ? null : Object.assign( {}, source.view ); + // ensures that deltaAngle is 0 .. 2 PI + while ( deltaAngle < 0 ) deltaAngle += twoPi; + while ( deltaAngle > twoPi ) deltaAngle -= twoPi; - return this; + if ( deltaAngle < Number.EPSILON ) { - }, + if ( samePoints ) { - setViewOffset: function ( fullWidth, fullHeight, x, y, width, height ) { + deltaAngle = 0; - if ( this.view === null ) { + } else { - this.view = { - enabled: true, - fullWidth: 1, - fullHeight: 1, - offsetX: 0, - offsetY: 0, - width: 1, - height: 1 - }; + deltaAngle = twoPi; } - this.view.enabled = true; - this.view.fullWidth = fullWidth; - this.view.fullHeight = fullHeight; - this.view.offsetX = x; - this.view.offsetY = y; - this.view.width = width; - this.view.height = height; + } - this.updateProjectionMatrix(); + if ( this.aClockwise === true && ! samePoints ) { - }, + if ( deltaAngle === twoPi ) { - clearViewOffset: function () { + deltaAngle = - twoPi; - if ( this.view !== null ) { + } else { - this.view.enabled = false; + deltaAngle = deltaAngle - twoPi; } - this.updateProjectionMatrix(); - - }, + } - updateProjectionMatrix: function () { + var angle = this.aStartAngle + t * deltaAngle; + var x = this.aX + this.xRadius * Math.cos( angle ); + var y = this.aY + this.yRadius * Math.sin( angle ); - var dx = ( this.right - this.left ) / ( 2 * this.zoom ); - var dy = ( this.top - this.bottom ) / ( 2 * this.zoom ); - var cx = ( this.right + this.left ) / 2; - var cy = ( this.top + this.bottom ) / 2; + if ( this.aRotation !== 0 ) { - var left = cx - dx; - var right = cx + dx; - var top = cy + dy; - var bottom = cy - dy; + var cos = Math.cos( this.aRotation ); + var sin = Math.sin( this.aRotation ); - if ( this.view !== null && this.view.enabled ) { + var tx = x - this.aX; + var ty = y - this.aY; - var zoomW = this.zoom / ( this.view.width / this.view.fullWidth ); - var zoomH = this.zoom / ( this.view.height / this.view.fullHeight ); - var scaleW = ( this.right - this.left ) / this.view.width; - var scaleH = ( this.top - this.bottom ) / this.view.height; + // Rotate the point about the center of the ellipse. + x = tx * cos - ty * sin + this.aX; + y = tx * sin + ty * cos + this.aY; - left += scaleW * ( this.view.offsetX / zoomW ); - right = left + scaleW * ( this.view.width / zoomW ); - top -= scaleH * ( this.view.offsetY / zoomH ); - bottom = top - scaleH * ( this.view.height / zoomH ); + } - } + return point.set( x, y ); - this.projectionMatrix.makeOrthographic( left, right, top, bottom, this.near, this.far ); + }; - this.projectionMatrixInverse.getInverse( this.projectionMatrix ); + EllipseCurve.prototype.copy = function ( source ) { - }, + Curve.prototype.copy.call( this, source ); - toJSON: function ( meta ) { + this.aX = source.aX; + this.aY = source.aY; - var data = Object3D.prototype.toJSON.call( this, meta ); + this.xRadius = source.xRadius; + this.yRadius = source.yRadius; - data.object.zoom = this.zoom; - data.object.left = this.left; - data.object.right = this.right; - data.object.top = this.top; - data.object.bottom = this.bottom; - data.object.near = this.near; - data.object.far = this.far; + this.aStartAngle = source.aStartAngle; + this.aEndAngle = source.aEndAngle; - if ( this.view !== null ) data.object.view = Object.assign( {}, this.view ); + this.aClockwise = source.aClockwise; - return data; + this.aRotation = source.aRotation; - } + return this; - } ); + }; - /** - * @author mrdoob / http://mrdoob.com/ - */ - function DirectionalLightShadow( ) { + EllipseCurve.prototype.toJSON = function () { - LightShadow.call( this, new OrthographicCamera( - 5, 5, 5, - 5, 0.5, 500 ) ); + var data = Curve.prototype.toJSON.call( this ); - } + data.aX = this.aX; + data.aY = this.aY; - DirectionalLightShadow.prototype = Object.assign( Object.create( LightShadow.prototype ), { + data.xRadius = this.xRadius; + data.yRadius = this.yRadius; - constructor: DirectionalLightShadow + data.aStartAngle = this.aStartAngle; + data.aEndAngle = this.aEndAngle; - } ); + data.aClockwise = this.aClockwise; - /** - * @author mrdoob / http://mrdoob.com/ - * @author alteredq / http://alteredqualia.com/ - */ + data.aRotation = this.aRotation; - function DirectionalLight( color, intensity ) { + return data; - Light.call( this, color, intensity ); + }; - this.type = 'DirectionalLight'; + EllipseCurve.prototype.fromJSON = function ( json ) { - this.position.copy( Object3D.DefaultUp ); - this.updateMatrix(); + Curve.prototype.fromJSON.call( this, json ); - this.target = new Object3D(); + this.aX = json.aX; + this.aY = json.aY; - this.shadow = new DirectionalLightShadow(); + this.xRadius = json.xRadius; + this.yRadius = json.yRadius; - } + this.aStartAngle = json.aStartAngle; + this.aEndAngle = json.aEndAngle; - DirectionalLight.prototype = Object.assign( Object.create( Light.prototype ), { + this.aClockwise = json.aClockwise; - constructor: DirectionalLight, + this.aRotation = json.aRotation; - isDirectionalLight: true, + return this; - copy: function ( source ) { + }; - Light.prototype.copy.call( this, source ); + function ArcCurve( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) { - this.target = source.target.clone(); + EllipseCurve.call( this, aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise ); - this.shadow = source.shadow.clone(); + this.type = 'ArcCurve'; - return this; + } - } + ArcCurve.prototype = Object.create( EllipseCurve.prototype ); + ArcCurve.prototype.constructor = ArcCurve; - } ); + ArcCurve.prototype.isArcCurve = true; /** - * @author mrdoob / http://mrdoob.com/ + * @author zz85 https://github.com/zz85 + * + * Centripetal CatmullRom Curve - which is useful for avoiding + * cusps and self-intersections in non-uniform catmull rom curves. + * http://www.cemyuksel.com/research/catmullrom_param/catmullrom.pdf + * + * curve.type accepts centripetal(default), chordal and catmullrom + * curve.tension is used for catmullrom which defaults to 0.5 */ - function AmbientLight( color, intensity ) { - Light.call( this, color, intensity ); + /* + Based on an optimized c++ solution in + - http://stackoverflow.com/questions/9489736/catmull-rom-curve-with-no-cusps-and-no-self-intersections/ + - http://ideone.com/NoEbVM - this.type = 'AmbientLight'; + This CubicPoly class could be used for reusing some variables and calculations, + but for three.js curve use, it could be possible inlined and flatten into a single function call + which can be placed in CurveUtils. + */ - this.castShadow = undefined; + function CubicPoly() { - } + var c0 = 0, c1 = 0, c2 = 0, c3 = 0; - AmbientLight.prototype = Object.assign( Object.create( Light.prototype ), { + /* + * Compute coefficients for a cubic polynomial + * p(s) = c0 + c1*s + c2*s^2 + c3*s^3 + * such that + * p(0) = x0, p(1) = x1 + * and + * p'(0) = t0, p'(1) = t1. + */ + function init( x0, x1, t0, t1 ) { - constructor: AmbientLight, + c0 = x0; + c1 = t0; + c2 = - 3 * x0 + 3 * x1 - 2 * t0 - t1; + c3 = 2 * x0 - 2 * x1 + t0 + t1; - isAmbientLight: true + } - } ); + return { - /** - * @author abelnation / http://github.com/abelnation - */ + initCatmullRom: function ( x0, x1, x2, x3, tension ) { - function RectAreaLight( color, intensity, width, height ) { + init( x1, x2, tension * ( x2 - x0 ), tension * ( x3 - x1 ) ); - Light.call( this, color, intensity ); + }, - this.type = 'RectAreaLight'; + initNonuniformCatmullRom: function ( x0, x1, x2, x3, dt0, dt1, dt2 ) { - this.width = ( width !== undefined ) ? width : 10; - this.height = ( height !== undefined ) ? height : 10; + // compute tangents when parameterized in [t1,t2] + var t1 = ( x1 - x0 ) / dt0 - ( x2 - x0 ) / ( dt0 + dt1 ) + ( x2 - x1 ) / dt1; + var t2 = ( x2 - x1 ) / dt1 - ( x3 - x1 ) / ( dt1 + dt2 ) + ( x3 - x2 ) / dt2; - } + // rescale tangents for parametrization in [0,1] + t1 *= dt1; + t2 *= dt1; - RectAreaLight.prototype = Object.assign( Object.create( Light.prototype ), { + init( x1, x2, t1, t2 ); - constructor: RectAreaLight, + }, - isRectAreaLight: true, + calc: function ( t ) { - copy: function ( source ) { + var t2 = t * t; + var t3 = t2 * t; + return c0 + c1 * t + c2 * t2 + c3 * t3; - Light.prototype.copy.call( this, source ); + } - this.width = source.width; - this.height = source.height; + }; - return this; + } - }, + // - toJSON: function ( meta ) { + var tmp = new Vector3(); + var px = new CubicPoly(), py = new CubicPoly(), pz = new CubicPoly(); - var data = Light.prototype.toJSON.call( this, meta ); + function CatmullRomCurve3( points, closed, curveType, tension ) { - data.object.width = this.width; - data.object.height = this.height; + Curve.call( this ); - return data; + this.type = 'CatmullRomCurve3'; - } + this.points = points || []; + this.closed = closed || false; + this.curveType = curveType || 'centripetal'; + this.tension = tension || 0.5; - } ); + } - /** - * @author tschw - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - */ + CatmullRomCurve3.prototype = Object.create( Curve.prototype ); + CatmullRomCurve3.prototype.constructor = CatmullRomCurve3; - var AnimationUtils = { + CatmullRomCurve3.prototype.isCatmullRomCurve3 = true; - // same as Array.prototype.slice, but also works on typed arrays - arraySlice: function ( array, from, to ) { + CatmullRomCurve3.prototype.getPoint = function ( t, optionalTarget ) { - if ( AnimationUtils.isTypedArray( array ) ) { + var point = optionalTarget || new Vector3(); - // in ios9 array.subarray(from, undefined) will return empty array - // but array.subarray(from) or array.subarray(from, len) is correct - return new array.constructor( array.subarray( from, to !== undefined ? to : array.length ) ); + var points = this.points; + var l = points.length; - } + var p = ( l - ( this.closed ? 0 : 1 ) ) * t; + var intPoint = Math.floor( p ); + var weight = p - intPoint; - return array.slice( from, to ); + if ( this.closed ) { - }, + intPoint += intPoint > 0 ? 0 : ( Math.floor( Math.abs( intPoint ) / l ) + 1 ) * l; - // converts an array to a specific type - convertArray: function ( array, type, forceClone ) { + } else if ( weight === 0 && intPoint === l - 1 ) { - if ( ! array || // let 'undefined' and 'null' pass - ! forceClone && array.constructor === type ) return array; + intPoint = l - 2; + weight = 1; - if ( typeof type.BYTES_PER_ELEMENT === 'number' ) { + } - return new type( array ); // create typed array + var p0, p1, p2, p3; // 4 points - } + if ( this.closed || intPoint > 0 ) { - return Array.prototype.slice.call( array ); // create Array + p0 = points[ ( intPoint - 1 ) % l ]; - }, + } else { - isTypedArray: function ( object ) { + // extrapolate first point + tmp.subVectors( points[ 0 ], points[ 1 ] ).add( points[ 0 ] ); + p0 = tmp; - return ArrayBuffer.isView( object ) && - ! ( object instanceof DataView ); + } - }, + p1 = points[ intPoint % l ]; + p2 = points[ ( intPoint + 1 ) % l ]; - // returns an array by which times and values can be sorted - getKeyframeOrder: function ( times ) { + if ( this.closed || intPoint + 2 < l ) { - function compareTime( i, j ) { + p3 = points[ ( intPoint + 2 ) % l ]; - return times[ i ] - times[ j ]; + } else { - } + // extrapolate last point + tmp.subVectors( points[ l - 1 ], points[ l - 2 ] ).add( points[ l - 1 ] ); + p3 = tmp; - var n = times.length; - var result = new Array( n ); - for ( var i = 0; i !== n; ++ i ) result[ i ] = i; + } - result.sort( compareTime ); + if ( this.curveType === 'centripetal' || this.curveType === 'chordal' ) { - return result; + // init Centripetal / Chordal Catmull-Rom + var pow = this.curveType === 'chordal' ? 0.5 : 0.25; + var dt0 = Math.pow( p0.distanceToSquared( p1 ), pow ); + var dt1 = Math.pow( p1.distanceToSquared( p2 ), pow ); + var dt2 = Math.pow( p2.distanceToSquared( p3 ), pow ); - }, + // safety check for repeated points + if ( dt1 < 1e-4 ) dt1 = 1.0; + if ( dt0 < 1e-4 ) dt0 = dt1; + if ( dt2 < 1e-4 ) dt2 = dt1; - // uses the array previously returned by 'getKeyframeOrder' to sort data - sortedArray: function ( values, stride, order ) { + px.initNonuniformCatmullRom( p0.x, p1.x, p2.x, p3.x, dt0, dt1, dt2 ); + py.initNonuniformCatmullRom( p0.y, p1.y, p2.y, p3.y, dt0, dt1, dt2 ); + pz.initNonuniformCatmullRom( p0.z, p1.z, p2.z, p3.z, dt0, dt1, dt2 ); - var nValues = values.length; - var result = new values.constructor( nValues ); + } else if ( this.curveType === 'catmullrom' ) { - for ( var i = 0, dstOffset = 0; dstOffset !== nValues; ++ i ) { + px.initCatmullRom( p0.x, p1.x, p2.x, p3.x, this.tension ); + py.initCatmullRom( p0.y, p1.y, p2.y, p3.y, this.tension ); + pz.initCatmullRom( p0.z, p1.z, p2.z, p3.z, this.tension ); - var srcOffset = order[ i ] * stride; + } - for ( var j = 0; j !== stride; ++ j ) { + point.set( + px.calc( weight ), + py.calc( weight ), + pz.calc( weight ) + ); - result[ dstOffset ++ ] = values[ srcOffset + j ]; + return point; - } + }; - } + CatmullRomCurve3.prototype.copy = function ( source ) { - return result; + Curve.prototype.copy.call( this, source ); - }, + this.points = []; - // function for parsing AOS keyframe formats - flattenJSON: function ( jsonKeys, times, values, valuePropertyName ) { + for ( var i = 0, l = source.points.length; i < l; i ++ ) { - var i = 1, key = jsonKeys[ 0 ]; + var point = source.points[ i ]; - while ( key !== undefined && key[ valuePropertyName ] === undefined ) { + this.points.push( point.clone() ); - key = jsonKeys[ i ++ ]; + } - } + this.closed = source.closed; + this.curveType = source.curveType; + this.tension = source.tension; - if ( key === undefined ) return; // no data + return this; - var value = key[ valuePropertyName ]; - if ( value === undefined ) return; // no data + }; - if ( Array.isArray( value ) ) { + CatmullRomCurve3.prototype.toJSON = function () { - do { + var data = Curve.prototype.toJSON.call( this ); - value = key[ valuePropertyName ]; + data.points = []; - if ( value !== undefined ) { + for ( var i = 0, l = this.points.length; i < l; i ++ ) { - times.push( key.time ); - values.push.apply( values, value ); // push all elements + var point = this.points[ i ]; + data.points.push( point.toArray() ); - } + } - key = jsonKeys[ i ++ ]; + data.closed = this.closed; + data.curveType = this.curveType; + data.tension = this.tension; - } while ( key !== undefined ); + return data; - } else if ( value.toArray !== undefined ) { + }; - // ...assume THREE.Math-ish + CatmullRomCurve3.prototype.fromJSON = function ( json ) { - do { + Curve.prototype.fromJSON.call( this, json ); - value = key[ valuePropertyName ]; + this.points = []; - if ( value !== undefined ) { + for ( var i = 0, l = json.points.length; i < l; i ++ ) { - times.push( key.time ); - value.toArray( values, values.length ); + var point = json.points[ i ]; + this.points.push( new Vector3().fromArray( point ) ); - } + } - key = jsonKeys[ i ++ ]; + this.closed = json.closed; + this.curveType = json.curveType; + this.tension = json.tension; - } while ( key !== undefined ); + return this; - } else { + }; - // otherwise push as-is + /** + * @author zz85 / http://www.lab4games.net/zz85/blog + * + * Bezier Curves formulas obtained from + * http://en.wikipedia.org/wiki/Bézier_curve + */ - do { + function CatmullRom( t, p0, p1, p2, p3 ) { - value = key[ valuePropertyName ]; + var v0 = ( p2 - p0 ) * 0.5; + var v1 = ( p3 - p1 ) * 0.5; + var t2 = t * t; + var t3 = t * t2; + return ( 2 * p1 - 2 * p2 + v0 + v1 ) * t3 + ( - 3 * p1 + 3 * p2 - 2 * v0 - v1 ) * t2 + v0 * t + p1; - if ( value !== undefined ) { + } - times.push( key.time ); - values.push( value ); + // - } + function QuadraticBezierP0( t, p ) { - key = jsonKeys[ i ++ ]; + var k = 1 - t; + return k * k * p; - } while ( key !== undefined ); + } - } + function QuadraticBezierP1( t, p ) { - } + return 2 * ( 1 - t ) * t * p; - }; + } - /** - * Abstract base class of interpolants over parametric samples. - * - * The parameter domain is one dimensional, typically the time or a path - * along a curve defined by the data. - * - * The sample values can have any dimensionality and derived classes may - * apply special interpretations to the data. - * - * This class provides the interval seek in a Template Method, deferring - * the actual interpolation to derived classes. - * - * Time complexity is O(1) for linear access crossing at most two points - * and O(log N) for random access, where N is the number of positions. - * - * References: - * - * http://www.oodesign.com/template-method-pattern.html - * - * @author tschw - */ + function QuadraticBezierP2( t, p ) { - function Interpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { + return t * t * p; - this.parameterPositions = parameterPositions; - this._cachedIndex = 0; + } - this.resultBuffer = resultBuffer !== undefined ? - resultBuffer : new sampleValues.constructor( sampleSize ); - this.sampleValues = sampleValues; - this.valueSize = sampleSize; + function QuadraticBezier( t, p0, p1, p2 ) { + + return QuadraticBezierP0( t, p0 ) + QuadraticBezierP1( t, p1 ) + + QuadraticBezierP2( t, p2 ); } - Object.assign( Interpolant.prototype, { + // - evaluate: function ( t ) { + function CubicBezierP0( t, p ) { - var pp = this.parameterPositions, - i1 = this._cachedIndex, + var k = 1 - t; + return k * k * k * p; - t1 = pp[ i1 ], - t0 = pp[ i1 - 1 ]; + } - validate_interval: { + function CubicBezierP1( t, p ) { - seek: { + var k = 1 - t; + return 3 * k * k * t * p; - var right; + } - linear_scan: { + function CubicBezierP2( t, p ) { - //- See http://jsperf.com/comparison-to-undefined/3 - //- slower code: - //- - //- if ( t >= t1 || t1 === undefined ) { - forward_scan: if ( ! ( t < t1 ) ) { + return 3 * ( 1 - t ) * t * t * p; - for ( var giveUpAt = i1 + 2; ; ) { + } - if ( t1 === undefined ) { + function CubicBezierP3( t, p ) { - if ( t < t0 ) break forward_scan; + return t * t * t * p; - // after end + } - i1 = pp.length; - this._cachedIndex = i1; - return this.afterEnd_( i1 - 1, t, t0 ); + function CubicBezier( t, p0, p1, p2, p3 ) { - } + return CubicBezierP0( t, p0 ) + CubicBezierP1( t, p1 ) + CubicBezierP2( t, p2 ) + + CubicBezierP3( t, p3 ); - if ( i1 === giveUpAt ) break; // this loop + } - t0 = t1; - t1 = pp[ ++ i1 ]; + function CubicBezierCurve( v0, v1, v2, v3 ) { - if ( t < t1 ) { + Curve.call( this ); - // we have arrived at the sought interval - break seek; + this.type = 'CubicBezierCurve'; - } + this.v0 = v0 || new Vector2(); + this.v1 = v1 || new Vector2(); + this.v2 = v2 || new Vector2(); + this.v3 = v3 || new Vector2(); - } + } - // prepare binary search on the right side of the index - right = pp.length; - break linear_scan; + CubicBezierCurve.prototype = Object.create( Curve.prototype ); + CubicBezierCurve.prototype.constructor = CubicBezierCurve; - } + CubicBezierCurve.prototype.isCubicBezierCurve = true; - //- slower code: - //- if ( t < t0 || t0 === undefined ) { - if ( ! ( t >= t0 ) ) { + CubicBezierCurve.prototype.getPoint = function ( t, optionalTarget ) { - // looping? + var point = optionalTarget || new Vector2(); - var t1global = pp[ 1 ]; + var v0 = this.v0, v1 = this.v1, v2 = this.v2, v3 = this.v3; - if ( t < t1global ) { + point.set( + CubicBezier( t, v0.x, v1.x, v2.x, v3.x ), + CubicBezier( t, v0.y, v1.y, v2.y, v3.y ) + ); - i1 = 2; // + 1, using the scan for the details - t0 = t1global; + return point; - } + }; - // linear reverse scan + CubicBezierCurve.prototype.copy = function ( source ) { - for ( var giveUpAt = i1 - 2; ; ) { + Curve.prototype.copy.call( this, source ); - if ( t0 === undefined ) { + this.v0.copy( source.v0 ); + this.v1.copy( source.v1 ); + this.v2.copy( source.v2 ); + this.v3.copy( source.v3 ); - // before start + return this; - this._cachedIndex = 0; - return this.beforeStart_( 0, t, t1 ); + }; - } + CubicBezierCurve.prototype.toJSON = function () { - if ( i1 === giveUpAt ) break; // this loop + var data = Curve.prototype.toJSON.call( this ); - t1 = t0; - t0 = pp[ -- i1 - 1 ]; + data.v0 = this.v0.toArray(); + data.v1 = this.v1.toArray(); + data.v2 = this.v2.toArray(); + data.v3 = this.v3.toArray(); - if ( t >= t0 ) { + return data; - // we have arrived at the sought interval - break seek; + }; - } + CubicBezierCurve.prototype.fromJSON = function ( json ) { - } + Curve.prototype.fromJSON.call( this, json ); - // prepare binary search on the left side of the index - right = i1; - i1 = 0; - break linear_scan; + this.v0.fromArray( json.v0 ); + this.v1.fromArray( json.v1 ); + this.v2.fromArray( json.v2 ); + this.v3.fromArray( json.v3 ); - } + return this; - // the interval is valid + }; - break validate_interval; + function CubicBezierCurve3( v0, v1, v2, v3 ) { - } // linear scan + Curve.call( this ); - // binary search + this.type = 'CubicBezierCurve3'; - while ( i1 < right ) { + this.v0 = v0 || new Vector3(); + this.v1 = v1 || new Vector3(); + this.v2 = v2 || new Vector3(); + this.v3 = v3 || new Vector3(); - var mid = ( i1 + right ) >>> 1; + } - if ( t < pp[ mid ] ) { + CubicBezierCurve3.prototype = Object.create( Curve.prototype ); + CubicBezierCurve3.prototype.constructor = CubicBezierCurve3; - right = mid; + CubicBezierCurve3.prototype.isCubicBezierCurve3 = true; - } else { + CubicBezierCurve3.prototype.getPoint = function ( t, optionalTarget ) { - i1 = mid + 1; + var point = optionalTarget || new Vector3(); - } + var v0 = this.v0, v1 = this.v1, v2 = this.v2, v3 = this.v3; - } + point.set( + CubicBezier( t, v0.x, v1.x, v2.x, v3.x ), + CubicBezier( t, v0.y, v1.y, v2.y, v3.y ), + CubicBezier( t, v0.z, v1.z, v2.z, v3.z ) + ); - t1 = pp[ i1 ]; - t0 = pp[ i1 - 1 ]; + return point; - // check boundary cases, again + }; - if ( t0 === undefined ) { + CubicBezierCurve3.prototype.copy = function ( source ) { - this._cachedIndex = 0; - return this.beforeStart_( 0, t, t1 ); + Curve.prototype.copy.call( this, source ); - } + this.v0.copy( source.v0 ); + this.v1.copy( source.v1 ); + this.v2.copy( source.v2 ); + this.v3.copy( source.v3 ); - if ( t1 === undefined ) { + return this; - i1 = pp.length; - this._cachedIndex = i1; - return this.afterEnd_( i1 - 1, t0, t ); + }; - } + CubicBezierCurve3.prototype.toJSON = function () { - } // seek + var data = Curve.prototype.toJSON.call( this ); - this._cachedIndex = i1; + data.v0 = this.v0.toArray(); + data.v1 = this.v1.toArray(); + data.v2 = this.v2.toArray(); + data.v3 = this.v3.toArray(); - this.intervalChanged_( i1, t0, t1 ); + return data; - } // validate_interval + }; - return this.interpolate_( i1, t0, t, t1 ); + CubicBezierCurve3.prototype.fromJSON = function ( json ) { - }, + Curve.prototype.fromJSON.call( this, json ); - settings: null, // optional, subclass-specific settings structure - // Note: The indirection allows central control of many interpolants. + this.v0.fromArray( json.v0 ); + this.v1.fromArray( json.v1 ); + this.v2.fromArray( json.v2 ); + this.v3.fromArray( json.v3 ); - // --- Protected interface + return this; - DefaultSettings_: {}, + }; - getSettings_: function () { + function LineCurve( v1, v2 ) { - return this.settings || this.DefaultSettings_; + Curve.call( this ); - }, + this.type = 'LineCurve'; - copySampleValue_: function ( index ) { + this.v1 = v1 || new Vector2(); + this.v2 = v2 || new Vector2(); - // copies a sample value to the result buffer + } - var result = this.resultBuffer, - values = this.sampleValues, - stride = this.valueSize, - offset = index * stride; + LineCurve.prototype = Object.create( Curve.prototype ); + LineCurve.prototype.constructor = LineCurve; - for ( var i = 0; i !== stride; ++ i ) { + LineCurve.prototype.isLineCurve = true; - result[ i ] = values[ offset + i ]; + LineCurve.prototype.getPoint = function ( t, optionalTarget ) { - } + var point = optionalTarget || new Vector2(); - return result; + if ( t === 1 ) { - }, + point.copy( this.v2 ); - // Template methods for derived classes: + } else { - interpolate_: function ( /* i1, t0, t, t1 */ ) { + point.copy( this.v2 ).sub( this.v1 ); + point.multiplyScalar( t ).add( this.v1 ); - throw new Error( 'call to abstract method' ); - // implementations shall return this.resultBuffer + } - }, + return point; - intervalChanged_: function ( /* i1, t0, t1 */ ) { + }; - // empty + // Line curve is linear, so we can overwrite default getPointAt + + LineCurve.prototype.getPointAt = function ( u, optionalTarget ) { + + return this.getPoint( u, optionalTarget ); + + }; + + LineCurve.prototype.getTangent = function ( /* t */ ) { + + var tangent = this.v2.clone().sub( this.v1 ); + + return tangent.normalize(); + + }; + + LineCurve.prototype.copy = function ( source ) { + + Curve.prototype.copy.call( this, source ); + + this.v1.copy( source.v1 ); + this.v2.copy( source.v2 ); + + return this; + + }; + + LineCurve.prototype.toJSON = function () { + + var data = Curve.prototype.toJSON.call( this ); + + data.v1 = this.v1.toArray(); + data.v2 = this.v2.toArray(); + + return data; + + }; + + LineCurve.prototype.fromJSON = function ( json ) { + + Curve.prototype.fromJSON.call( this, json ); + + this.v1.fromArray( json.v1 ); + this.v2.fromArray( json.v2 ); + + return this; + + }; + + function LineCurve3( v1, v2 ) { + + Curve.call( this ); + + this.type = 'LineCurve3'; + + this.v1 = v1 || new Vector3(); + this.v2 = v2 || new Vector3(); + + } + + LineCurve3.prototype = Object.create( Curve.prototype ); + LineCurve3.prototype.constructor = LineCurve3; + + LineCurve3.prototype.isLineCurve3 = true; + + LineCurve3.prototype.getPoint = function ( t, optionalTarget ) { + + var point = optionalTarget || new Vector3(); + + if ( t === 1 ) { + + point.copy( this.v2 ); + + } else { + + point.copy( this.v2 ).sub( this.v1 ); + point.multiplyScalar( t ).add( this.v1 ); } - } ); + return point; - //!\ DECLARE ALIAS AFTER assign prototype ! - Object.assign( Interpolant.prototype, { + }; - //( 0, t, t0 ), returns this.resultBuffer - beforeStart_: Interpolant.prototype.copySampleValue_, + // Line curve is linear, so we can overwrite default getPointAt - //( N-1, tN-1, t ), returns this.resultBuffer - afterEnd_: Interpolant.prototype.copySampleValue_, + LineCurve3.prototype.getPointAt = function ( u, optionalTarget ) { - } ); + return this.getPoint( u, optionalTarget ); - /** - * Fast and simple cubic spline interpolant. - * - * It was derived from a Hermitian construction setting the first derivative - * at each sample position to the linear slope between neighboring positions - * over their parameter interval. - * - * @author tschw - */ + }; - function CubicInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { + LineCurve3.prototype.copy = function ( source ) { - Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); + Curve.prototype.copy.call( this, source ); - this._weightPrev = - 0; - this._offsetPrev = - 0; - this._weightNext = - 0; - this._offsetNext = - 0; + this.v1.copy( source.v1 ); + this.v2.copy( source.v2 ); + + return this; + + }; + + LineCurve3.prototype.toJSON = function () { + + var data = Curve.prototype.toJSON.call( this ); + + data.v1 = this.v1.toArray(); + data.v2 = this.v2.toArray(); + + return data; + + }; + + LineCurve3.prototype.fromJSON = function ( json ) { + + Curve.prototype.fromJSON.call( this, json ); + + this.v1.fromArray( json.v1 ); + this.v2.fromArray( json.v2 ); + + return this; + + }; + + function QuadraticBezierCurve( v0, v1, v2 ) { + + Curve.call( this ); + + this.type = 'QuadraticBezierCurve'; + + this.v0 = v0 || new Vector2(); + this.v1 = v1 || new Vector2(); + this.v2 = v2 || new Vector2(); } - CubicInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { + QuadraticBezierCurve.prototype = Object.create( Curve.prototype ); + QuadraticBezierCurve.prototype.constructor = QuadraticBezierCurve; - constructor: CubicInterpolant, + QuadraticBezierCurve.prototype.isQuadraticBezierCurve = true; - DefaultSettings_: { + QuadraticBezierCurve.prototype.getPoint = function ( t, optionalTarget ) { - endingStart: ZeroCurvatureEnding, - endingEnd: ZeroCurvatureEnding + var point = optionalTarget || new Vector2(); - }, + var v0 = this.v0, v1 = this.v1, v2 = this.v2; - intervalChanged_: function ( i1, t0, t1 ) { + point.set( + QuadraticBezier( t, v0.x, v1.x, v2.x ), + QuadraticBezier( t, v0.y, v1.y, v2.y ) + ); - var pp = this.parameterPositions, - iPrev = i1 - 2, - iNext = i1 + 1, + return point; - tPrev = pp[ iPrev ], - tNext = pp[ iNext ]; + }; - if ( tPrev === undefined ) { + QuadraticBezierCurve.prototype.copy = function ( source ) { - switch ( this.getSettings_().endingStart ) { + Curve.prototype.copy.call( this, source ); - case ZeroSlopeEnding: + this.v0.copy( source.v0 ); + this.v1.copy( source.v1 ); + this.v2.copy( source.v2 ); - // f'(t0) = 0 - iPrev = i1; - tPrev = 2 * t0 - t1; + return this; - break; + }; - case WrapAroundEnding: + QuadraticBezierCurve.prototype.toJSON = function () { - // use the other end of the curve - iPrev = pp.length - 2; - tPrev = t0 + pp[ iPrev ] - pp[ iPrev + 1 ]; + var data = Curve.prototype.toJSON.call( this ); - break; + data.v0 = this.v0.toArray(); + data.v1 = this.v1.toArray(); + data.v2 = this.v2.toArray(); - default: // ZeroCurvatureEnding + return data; - // f''(t0) = 0 a.k.a. Natural Spline - iPrev = i1; - tPrev = t1; + }; - } + QuadraticBezierCurve.prototype.fromJSON = function ( json ) { - } + Curve.prototype.fromJSON.call( this, json ); - if ( tNext === undefined ) { + this.v0.fromArray( json.v0 ); + this.v1.fromArray( json.v1 ); + this.v2.fromArray( json.v2 ); - switch ( this.getSettings_().endingEnd ) { + return this; - case ZeroSlopeEnding: + }; - // f'(tN) = 0 - iNext = i1; - tNext = 2 * t1 - t0; + function QuadraticBezierCurve3( v0, v1, v2 ) { - break; + Curve.call( this ); - case WrapAroundEnding: + this.type = 'QuadraticBezierCurve3'; - // use the other end of the curve - iNext = 1; - tNext = t1 + pp[ 1 ] - pp[ 0 ]; + this.v0 = v0 || new Vector3(); + this.v1 = v1 || new Vector3(); + this.v2 = v2 || new Vector3(); - break; + } - default: // ZeroCurvatureEnding + QuadraticBezierCurve3.prototype = Object.create( Curve.prototype ); + QuadraticBezierCurve3.prototype.constructor = QuadraticBezierCurve3; - // f''(tN) = 0, a.k.a. Natural Spline - iNext = i1 - 1; - tNext = t0; + QuadraticBezierCurve3.prototype.isQuadraticBezierCurve3 = true; - } + QuadraticBezierCurve3.prototype.getPoint = function ( t, optionalTarget ) { - } + var point = optionalTarget || new Vector3(); - var halfDt = ( t1 - t0 ) * 0.5, - stride = this.valueSize; + var v0 = this.v0, v1 = this.v1, v2 = this.v2; - this._weightPrev = halfDt / ( t0 - tPrev ); - this._weightNext = halfDt / ( tNext - t1 ); - this._offsetPrev = iPrev * stride; - this._offsetNext = iNext * stride; + point.set( + QuadraticBezier( t, v0.x, v1.x, v2.x ), + QuadraticBezier( t, v0.y, v1.y, v2.y ), + QuadraticBezier( t, v0.z, v1.z, v2.z ) + ); - }, + return point; - interpolate_: function ( i1, t0, t, t1 ) { + }; - var result = this.resultBuffer, - values = this.sampleValues, - stride = this.valueSize, + QuadraticBezierCurve3.prototype.copy = function ( source ) { - o1 = i1 * stride, o0 = o1 - stride, - oP = this._offsetPrev, oN = this._offsetNext, - wP = this._weightPrev, wN = this._weightNext, + Curve.prototype.copy.call( this, source ); - p = ( t - t0 ) / ( t1 - t0 ), - pp = p * p, - ppp = pp * p; + this.v0.copy( source.v0 ); + this.v1.copy( source.v1 ); + this.v2.copy( source.v2 ); - // evaluate polynomials + return this; - var sP = - wP * ppp + 2 * wP * pp - wP * p; - var s0 = ( 1 + wP ) * ppp + ( - 1.5 - 2 * wP ) * pp + ( - 0.5 + wP ) * p + 1; - var s1 = ( - 1 - wN ) * ppp + ( 1.5 + wN ) * pp + 0.5 * p; - var sN = wN * ppp - wN * pp; + }; - // combine data linearly + QuadraticBezierCurve3.prototype.toJSON = function () { - for ( var i = 0; i !== stride; ++ i ) { + var data = Curve.prototype.toJSON.call( this ); - result[ i ] = - sP * values[ oP + i ] + - s0 * values[ o0 + i ] + - s1 * values[ o1 + i ] + - sN * values[ oN + i ]; + data.v0 = this.v0.toArray(); + data.v1 = this.v1.toArray(); + data.v2 = this.v2.toArray(); - } + return data; + + }; + + QuadraticBezierCurve3.prototype.fromJSON = function ( json ) { + + Curve.prototype.fromJSON.call( this, json ); + + this.v0.fromArray( json.v0 ); + this.v1.fromArray( json.v1 ); + this.v2.fromArray( json.v2 ); - return result; + return this; - } + }; - } ); + function SplineCurve( points /* array of Vector2 */ ) { - /** - * @author tschw - */ + Curve.call( this ); - function LinearInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { + this.type = 'SplineCurve'; - Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); + this.points = points || []; } - LinearInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { + SplineCurve.prototype = Object.create( Curve.prototype ); + SplineCurve.prototype.constructor = SplineCurve; - constructor: LinearInterpolant, + SplineCurve.prototype.isSplineCurve = true; - interpolate_: function ( i1, t0, t, t1 ) { + SplineCurve.prototype.getPoint = function ( t, optionalTarget ) { - var result = this.resultBuffer, - values = this.sampleValues, - stride = this.valueSize, + var point = optionalTarget || new Vector2(); - offset1 = i1 * stride, - offset0 = offset1 - stride, + var points = this.points; + var p = ( points.length - 1 ) * t; - weight1 = ( t - t0 ) / ( t1 - t0 ), - weight0 = 1 - weight1; + var intPoint = Math.floor( p ); + var weight = p - intPoint; - for ( var i = 0; i !== stride; ++ i ) { + var p0 = points[ intPoint === 0 ? intPoint : intPoint - 1 ]; + var p1 = points[ intPoint ]; + var p2 = points[ intPoint > points.length - 2 ? points.length - 1 : intPoint + 1 ]; + var p3 = points[ intPoint > points.length - 3 ? points.length - 1 : intPoint + 2 ]; - result[ i ] = - values[ offset0 + i ] * weight0 + - values[ offset1 + i ] * weight1; + point.set( + CatmullRom( weight, p0.x, p1.x, p2.x, p3.x ), + CatmullRom( weight, p0.y, p1.y, p2.y, p3.y ) + ); - } + return point; - return result; + }; - } + SplineCurve.prototype.copy = function ( source ) { - } ); + Curve.prototype.copy.call( this, source ); - /** - * - * Interpolant that evaluates to the sample value at the position preceeding - * the parameter. - * - * @author tschw - */ + this.points = []; - function DiscreteInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { + for ( var i = 0, l = source.points.length; i < l; i ++ ) { - Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); + var point = source.points[ i ]; - } + this.points.push( point.clone() ); - DiscreteInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { + } - constructor: DiscreteInterpolant, + return this; - interpolate_: function ( i1 /*, t0, t, t1 */ ) { + }; - return this.copySampleValue_( i1 - 1 ); + SplineCurve.prototype.toJSON = function () { - } + var data = Curve.prototype.toJSON.call( this ); - } ); + data.points = []; - /** - * - * A timed sequence of keyframes for a specific property. - * - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw - */ + for ( var i = 0, l = this.points.length; i < l; i ++ ) { - function KeyframeTrack( name, times, values, interpolation ) { + var point = this.points[ i ]; + data.points.push( point.toArray() ); - if ( name === undefined ) throw new Error( 'THREE.KeyframeTrack: track name is undefined' ); - if ( times === undefined || times.length === 0 ) throw new Error( 'THREE.KeyframeTrack: no keyframes in track named ' + name ); + } - this.name = name; + return data; - this.times = AnimationUtils.convertArray( times, this.TimeBufferType ); - this.values = AnimationUtils.convertArray( values, this.ValueBufferType ); + }; - this.setInterpolation( interpolation || this.DefaultInterpolation ); + SplineCurve.prototype.fromJSON = function ( json ) { - } + Curve.prototype.fromJSON.call( this, json ); - // Static methods + this.points = []; - Object.assign( KeyframeTrack, { + for ( var i = 0, l = json.points.length; i < l; i ++ ) { - // Serialization (in static context, because of constructor invocation - // and automatic invocation of .toJSON): + var point = json.points[ i ]; + this.points.push( new Vector2().fromArray( point ) ); - toJSON: function ( track ) { + } - var trackType = track.constructor; + return this; - var json; + }; - // derived classes can define a static toJSON method - if ( trackType.toJSON !== undefined ) { - json = trackType.toJSON( track ); - } else { + var Curves = /*#__PURE__*/Object.freeze({ + ArcCurve: ArcCurve, + CatmullRomCurve3: CatmullRomCurve3, + CubicBezierCurve: CubicBezierCurve, + CubicBezierCurve3: CubicBezierCurve3, + EllipseCurve: EllipseCurve, + LineCurve: LineCurve, + LineCurve3: LineCurve3, + QuadraticBezierCurve: QuadraticBezierCurve, + QuadraticBezierCurve3: QuadraticBezierCurve3, + SplineCurve: SplineCurve + }); - // by default, we assume the data can be serialized as-is - json = { + /** + * @author zz85 / http://www.lab4games.net/zz85/blog + * + **/ - 'name': track.name, - 'times': AnimationUtils.convertArray( track.times, Array ), - 'values': AnimationUtils.convertArray( track.values, Array ) + /************************************************************** + * Curved Path - a curve path is simply a array of connected + * curves, but retains the api of a curve + **************************************************************/ - }; + function CurvePath() { - var interpolation = track.getInterpolation(); + Curve.call( this ); - if ( interpolation !== track.DefaultInterpolation ) { + this.type = 'CurvePath'; - json.interpolation = interpolation; + this.curves = []; + this.autoClose = false; // Automatically closes the path - } + } - } + CurvePath.prototype = Object.assign( Object.create( Curve.prototype ), { - json.type = track.ValueTypeName; // mandatory + constructor: CurvePath, - return json; + add: function ( curve ) { - } + this.curves.push( curve ); - } ); + }, - Object.assign( KeyframeTrack.prototype, { + closePath: function () { - constructor: KeyframeTrack, + // Add a line curve if start and end of lines are not connected + var startPoint = this.curves[ 0 ].getPoint( 0 ); + var endPoint = this.curves[ this.curves.length - 1 ].getPoint( 1 ); - TimeBufferType: Float32Array, + if ( ! startPoint.equals( endPoint ) ) { - ValueBufferType: Float32Array, + this.curves.push( new LineCurve( endPoint, startPoint ) ); - DefaultInterpolation: InterpolateLinear, + } - InterpolantFactoryMethodDiscrete: function ( result ) { + }, - return new DiscreteInterpolant( this.times, this.values, this.getValueSize(), result ); + // To get accurate point with reference to + // entire path distance at time t, + // following has to be done: - }, + // 1. Length of each sub path have to be known + // 2. Locate and identify type of curve + // 3. Get t for the curve + // 4. Return curve.getPointAt(t') - InterpolantFactoryMethodLinear: function ( result ) { + getPoint: function ( t ) { - return new LinearInterpolant( this.times, this.values, this.getValueSize(), result ); + var d = t * this.getLength(); + var curveLengths = this.getCurveLengths(); + var i = 0; - }, + // To think about boundaries points. - InterpolantFactoryMethodSmooth: function ( result ) { + while ( i < curveLengths.length ) { - return new CubicInterpolant( this.times, this.values, this.getValueSize(), result ); + if ( curveLengths[ i ] >= d ) { - }, + var diff = curveLengths[ i ] - d; + var curve = this.curves[ i ]; - setInterpolation: function ( interpolation ) { + var segmentLength = curve.getLength(); + var u = segmentLength === 0 ? 0 : 1 - diff / segmentLength; - var factoryMethod; + return curve.getPointAt( u ); - switch ( interpolation ) { + } - case InterpolateDiscrete: + i ++; - factoryMethod = this.InterpolantFactoryMethodDiscrete; + } - break; + return null; - case InterpolateLinear: + // loop where sum != 0, sum > d , sum+1 1 && ! points[ points.length - 1 ].equals( points[ 0 ] ) ) { + + points.push( points[ 0 ] ); + + } + + return points; }, - // scale all keyframe times by a factor (useful for frame <-> seconds conversions) - scale: function ( timeScale ) { + copy: function ( source ) { - if ( timeScale !== 1.0 ) { + Curve.prototype.copy.call( this, source ); - var times = this.times; + this.curves = []; - for ( var i = 0, n = times.length; i !== n; ++ i ) { + for ( var i = 0, l = source.curves.length; i < l; i ++ ) { - times[ i ] *= timeScale; + var curve = source.curves[ i ]; - } + this.curves.push( curve.clone() ); } + this.autoClose = source.autoClose; + return this; }, - // removes keyframes before and after animation without changing any values within the range [startTime, endTime]. - // IMPORTANT: We do not shift around keys to the start of the track time, because for interpolated keys this will change their values - trim: function ( startTime, endTime ) { + toJSON: function () { - var times = this.times, - nKeys = times.length, - from = 0, - to = nKeys - 1; + var data = Curve.prototype.toJSON.call( this ); - while ( from !== nKeys && times[ from ] < startTime ) { + data.autoClose = this.autoClose; + data.curves = []; - ++ from; + for ( var i = 0, l = this.curves.length; i < l; i ++ ) { + + var curve = this.curves[ i ]; + data.curves.push( curve.toJSON() ); } - while ( to !== - 1 && times[ to ] > endTime ) { + return data; - -- to; + }, - } + fromJSON: function ( json ) { - ++ to; // inclusive -> exclusive bound + Curve.prototype.fromJSON.call( this, json ); - if ( from !== 0 || to !== nKeys ) { + this.autoClose = json.autoClose; + this.curves = []; - // empty tracks are forbidden, so keep at least one keyframe - if ( from >= to ) to = Math.max( to, 1 ), from = to - 1; + for ( var i = 0, l = json.curves.length; i < l; i ++ ) { - var stride = this.getValueSize(); - this.times = AnimationUtils.arraySlice( times, from, to ); - this.values = AnimationUtils.arraySlice( this.values, from * stride, to * stride ); + var curve = json.curves[ i ]; + this.curves.push( new Curves[ curve.type ]().fromJSON( curve ) ); } return this; - }, - - // ensure we do not get a GarbageInGarbageOut situation, make sure tracks are at least minimally viable - validate: function () { - - var valid = true; - - var valueSize = this.getValueSize(); - if ( valueSize - Math.floor( valueSize ) !== 0 ) { - - console.error( 'THREE.KeyframeTrack: Invalid value size in track.', this ); - valid = false; + } - } + } ); - var times = this.times, - values = this.values, + /** + * @author zz85 / http://www.lab4games.net/zz85/blog + * Creates free form 2d path using series of points, lines or curves. + **/ - nKeys = times.length; + function Path( points ) { - if ( nKeys === 0 ) { + CurvePath.call( this ); - console.error( 'THREE.KeyframeTrack: Track is empty.', this ); - valid = false; + this.type = 'Path'; - } + this.currentPoint = new Vector2(); - var prevTime = null; + if ( points ) { - for ( var i = 0; i !== nKeys; i ++ ) { + this.setFromPoints( points ); - var currTime = times[ i ]; + } - if ( typeof currTime === 'number' && isNaN( currTime ) ) { + } - console.error( 'THREE.KeyframeTrack: Time is not a valid number.', this, i, currTime ); - valid = false; - break; + Path.prototype = Object.assign( Object.create( CurvePath.prototype ), { - } + constructor: Path, - if ( prevTime !== null && prevTime > currTime ) { + setFromPoints: function ( points ) { - console.error( 'THREE.KeyframeTrack: Out of order keys.', this, i, currTime, prevTime ); - valid = false; - break; + this.moveTo( points[ 0 ].x, points[ 0 ].y ); - } + for ( var i = 1, l = points.length; i < l; i ++ ) { - prevTime = currTime; + this.lineTo( points[ i ].x, points[ i ].y ); } - if ( values !== undefined ) { + }, - if ( AnimationUtils.isTypedArray( values ) ) { + moveTo: function ( x, y ) { - for ( var i = 0, n = values.length; i !== n; ++ i ) { + this.currentPoint.set( x, y ); // TODO consider referencing vectors instead of copying? - var value = values[ i ]; + }, - if ( isNaN( value ) ) { + lineTo: function ( x, y ) { - console.error( 'THREE.KeyframeTrack: Value is not a valid number.', this, i, value ); - valid = false; - break; + var curve = new LineCurve( this.currentPoint.clone(), new Vector2( x, y ) ); + this.curves.push( curve ); - } + this.currentPoint.set( x, y ); - } + }, - } + quadraticCurveTo: function ( aCPx, aCPy, aX, aY ) { - } + var curve = new QuadraticBezierCurve( + this.currentPoint.clone(), + new Vector2( aCPx, aCPy ), + new Vector2( aX, aY ) + ); - return valid; + this.curves.push( curve ); + + this.currentPoint.set( aX, aY ); }, - // removes equivalent sequential keys as common in morph target sequences - // (0,0,0,0,1,1,1,0,0,0,0,0,0,0) --> (0,0,1,1,0,0) - optimize: function () { + bezierCurveTo: function ( aCP1x, aCP1y, aCP2x, aCP2y, aX, aY ) { - var times = this.times, - values = this.values, - stride = this.getValueSize(), + var curve = new CubicBezierCurve( + this.currentPoint.clone(), + new Vector2( aCP1x, aCP1y ), + new Vector2( aCP2x, aCP2y ), + new Vector2( aX, aY ) + ); - smoothInterpolation = this.getInterpolation() === InterpolateSmooth, + this.curves.push( curve ); - writeIndex = 1, - lastIndex = times.length - 1; + this.currentPoint.set( aX, aY ); - for ( var i = 1; i < lastIndex; ++ i ) { + }, - var keep = false; + splineThru: function ( pts /*Array of Vector*/ ) { - var time = times[ i ]; - var timeNext = times[ i + 1 ]; + var npts = [ this.currentPoint.clone() ].concat( pts ); - // remove adjacent keyframes scheduled at the same time + var curve = new SplineCurve( npts ); + this.curves.push( curve ); - if ( time !== timeNext && ( i !== 1 || time !== time[ 0 ] ) ) { + this.currentPoint.copy( pts[ pts.length - 1 ] ); - if ( ! smoothInterpolation ) { + }, - // remove unnecessary keyframes same as their neighbors + arc: function ( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) { - var offset = i * stride, - offsetP = offset - stride, - offsetN = offset + stride; + var x0 = this.currentPoint.x; + var y0 = this.currentPoint.y; - for ( var j = 0; j !== stride; ++ j ) { + this.absarc( aX + x0, aY + y0, aRadius, + aStartAngle, aEndAngle, aClockwise ); - var value = values[ offset + j ]; + }, - if ( value !== values[ offsetP + j ] || - value !== values[ offsetN + j ] ) { + absarc: function ( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) { - keep = true; - break; + this.absellipse( aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise ); - } + }, - } + ellipse: function ( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) { - } else { + var x0 = this.currentPoint.x; + var y0 = this.currentPoint.y; - keep = true; + this.absellipse( aX + x0, aY + y0, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ); - } + }, - } + absellipse: function ( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) { - // in-place compaction + var curve = new EllipseCurve( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ); - if ( keep ) { + if ( this.curves.length > 0 ) { - if ( i !== writeIndex ) { + // if a previous curve is present, attempt to join + var firstPoint = curve.getPoint( 0 ); - times[ writeIndex ] = times[ i ]; + if ( ! firstPoint.equals( this.currentPoint ) ) { - var readOffset = i * stride, - writeOffset = writeIndex * stride; + this.lineTo( firstPoint.x, firstPoint.y ); - for ( var j = 0; j !== stride; ++ j ) { + } - values[ writeOffset + j ] = values[ readOffset + j ]; + } - } + this.curves.push( curve ); - } + var lastPoint = curve.getPoint( 1 ); + this.currentPoint.copy( lastPoint ); - ++ writeIndex; + }, - } + copy: function ( source ) { - } + CurvePath.prototype.copy.call( this, source ); - // flush last keyframe (compaction looks ahead) + this.currentPoint.copy( source.currentPoint ); - if ( lastIndex > 0 ) { + return this; - times[ writeIndex ] = times[ lastIndex ]; + }, - for ( var readOffset = lastIndex * stride, writeOffset = writeIndex * stride, j = 0; j !== stride; ++ j ) { + toJSON: function () { - values[ writeOffset + j ] = values[ readOffset + j ]; + var data = CurvePath.prototype.toJSON.call( this ); - } + data.currentPoint = this.currentPoint.toArray(); - ++ writeIndex; + return data; - } + }, - if ( writeIndex !== times.length ) { + fromJSON: function ( json ) { - this.times = AnimationUtils.arraySlice( times, 0, writeIndex ); - this.values = AnimationUtils.arraySlice( values, 0, writeIndex * stride ); + CurvePath.prototype.fromJSON.call( this, json ); - } + this.currentPoint.fromArray( json.currentPoint ); return this; @@ -36505,665 +36514,684 @@ } ); /** - * - * A Track of Boolean keyframe values. - * - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw - */ + * @author zz85 / http://www.lab4games.net/zz85/blog + * Defines a 2d shape plane using paths. + **/ - function BooleanKeyframeTrack( name, times, values ) { + // STEP 1 Create a path. + // STEP 2 Turn path into shape. + // STEP 3 ExtrudeGeometry takes in Shape/Shapes + // STEP 3a - Extract points from each shape, turn to vertices + // STEP 3b - Triangulate each shape, add faces. - KeyframeTrack.call( this, name, times, values ); + function Shape( points ) { - } + Path.call( this, points ); - BooleanKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { + this.uuid = _Math.generateUUID(); - constructor: BooleanKeyframeTrack, + this.type = 'Shape'; - ValueTypeName: 'bool', - ValueBufferType: Array, + this.holes = []; - DefaultInterpolation: InterpolateDiscrete, + } - InterpolantFactoryMethodLinear: undefined, - InterpolantFactoryMethodSmooth: undefined + Shape.prototype = Object.assign( Object.create( Path.prototype ), { - // Note: Actually this track could have a optimized / compressed - // representation of a single value and a custom interpolant that - // computes "firstValue ^ isOdd( index )". + constructor: Shape, - } ); + getPointsHoles: function ( divisions ) { - /** - * - * A Track of keyframe values that represent color. - * - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw - */ + var holesPts = []; - function ColorKeyframeTrack( name, times, values, interpolation ) { + for ( var i = 0, l = this.holes.length; i < l; i ++ ) { - KeyframeTrack.call( this, name, times, values, interpolation ); + holesPts[ i ] = this.holes[ i ].getPoints( divisions ); - } + } - ColorKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { + return holesPts; - constructor: ColorKeyframeTrack, + }, - ValueTypeName: 'color' + // get points of shape and holes (keypoints based on segments parameter) - // ValueBufferType is inherited + extractPoints: function ( divisions ) { - // DefaultInterpolation is inherited + return { - // Note: Very basic implementation and nothing special yet. - // However, this is the place for color space parameterization. + shape: this.getPoints( divisions ), + holes: this.getPointsHoles( divisions ) - } ); + }; - /** - * - * A Track of numeric keyframe values. - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw - */ + }, - function NumberKeyframeTrack( name, times, values, interpolation ) { + copy: function ( source ) { - KeyframeTrack.call( this, name, times, values, interpolation ); + Path.prototype.copy.call( this, source ); - } + this.holes = []; - NumberKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { + for ( var i = 0, l = source.holes.length; i < l; i ++ ) { - constructor: NumberKeyframeTrack, + var hole = source.holes[ i ]; - ValueTypeName: 'number' + this.holes.push( hole.clone() ); - // ValueBufferType is inherited + } - // DefaultInterpolation is inherited + return this; - } ); + }, - /** - * Spherical linear unit quaternion interpolant. - * - * @author tschw - */ + toJSON: function () { - function QuaternionLinearInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { + var data = Path.prototype.toJSON.call( this ); - Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); + data.uuid = this.uuid; + data.holes = []; - } + for ( var i = 0, l = this.holes.length; i < l; i ++ ) { - QuaternionLinearInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { + var hole = this.holes[ i ]; + data.holes.push( hole.toJSON() ); - constructor: QuaternionLinearInterpolant, + } - interpolate_: function ( i1, t0, t, t1 ) { + return data; - var result = this.resultBuffer, - values = this.sampleValues, - stride = this.valueSize, + }, - offset = i1 * stride, + fromJSON: function ( json ) { - alpha = ( t - t0 ) / ( t1 - t0 ); + Path.prototype.fromJSON.call( this, json ); - for ( var end = offset + stride; offset !== end; offset += 4 ) { + this.uuid = json.uuid; + this.holes = []; - Quaternion.slerpFlat( result, 0, values, offset - stride, values, offset, alpha ); + for ( var i = 0, l = json.holes.length; i < l; i ++ ) { + + var hole = json.holes[ i ]; + this.holes.push( new Path().fromJSON( hole ) ); } - return result; + return this; } } ); /** - * - * A Track of quaternion keyframe values. - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw + * @author mrdoob / http://mrdoob.com/ + * @author alteredq / http://alteredqualia.com/ */ - function QuaternionKeyframeTrack( name, times, values, interpolation ) { - - KeyframeTrack.call( this, name, times, values, interpolation ); + function Light( color, intensity ) { - } + Object3D.call( this ); - QuaternionKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { + this.type = 'Light'; - constructor: QuaternionKeyframeTrack, + this.color = new Color( color ); + this.intensity = intensity !== undefined ? intensity : 1; - ValueTypeName: 'quaternion', + this.receiveShadow = undefined; - // ValueBufferType is inherited + } - DefaultInterpolation: InterpolateLinear, + Light.prototype = Object.assign( Object.create( Object3D.prototype ), { - InterpolantFactoryMethodLinear: function ( result ) { + constructor: Light, - return new QuaternionLinearInterpolant( this.times, this.values, this.getValueSize(), result ); + isLight: true, - }, + copy: function ( source ) { - InterpolantFactoryMethodSmooth: undefined // not yet implemented + Object3D.prototype.copy.call( this, source ); - } ); + this.color.copy( source.color ); + this.intensity = source.intensity; - /** - * - * A Track that interpolates Strings - * - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw - */ + return this; - function StringKeyframeTrack( name, times, values, interpolation ) { + }, - KeyframeTrack.call( this, name, times, values, interpolation ); + toJSON: function ( meta ) { - } + var data = Object3D.prototype.toJSON.call( this, meta ); - StringKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { + data.object.color = this.color.getHex(); + data.object.intensity = this.intensity; - constructor: StringKeyframeTrack, + if ( this.groundColor !== undefined ) data.object.groundColor = this.groundColor.getHex(); - ValueTypeName: 'string', - ValueBufferType: Array, + if ( this.distance !== undefined ) data.object.distance = this.distance; + if ( this.angle !== undefined ) data.object.angle = this.angle; + if ( this.decay !== undefined ) data.object.decay = this.decay; + if ( this.penumbra !== undefined ) data.object.penumbra = this.penumbra; - DefaultInterpolation: InterpolateDiscrete, + if ( this.shadow !== undefined ) data.object.shadow = this.shadow.toJSON(); - InterpolantFactoryMethodLinear: undefined, + return data; - InterpolantFactoryMethodSmooth: undefined + } } ); /** - * - * A Track of vectored keyframe values. - * - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw + * @author alteredq / http://alteredqualia.com/ */ - function VectorKeyframeTrack( name, times, values, interpolation ) { + function HemisphereLight( skyColor, groundColor, intensity ) { - KeyframeTrack.call( this, name, times, values, interpolation ); + Light.call( this, skyColor, intensity ); + + this.type = 'HemisphereLight'; + + this.castShadow = undefined; + + this.position.copy( Object3D.DefaultUp ); + this.updateMatrix(); + + this.groundColor = new Color( groundColor ); } - VectorKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { + HemisphereLight.prototype = Object.assign( Object.create( Light.prototype ), { - constructor: VectorKeyframeTrack, + constructor: HemisphereLight, - ValueTypeName: 'vector' + isHemisphereLight: true, - // ValueBufferType is inherited + copy: function ( source ) { - // DefaultInterpolation is inherited + Light.prototype.copy.call( this, source ); + + this.groundColor.copy( source.groundColor ); + + return this; + + } } ); /** - * - * Reusable set of Tracks that represent an animation. - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ + * @author mrdoob / http://mrdoob.com/ */ - function AnimationClip( name, duration, tracks ) { - - this.name = name; - this.tracks = tracks; - this.duration = ( duration !== undefined ) ? duration : - 1; + function LightShadow( camera ) { - this.uuid = _Math.generateUUID(); + this.camera = camera; - // this means it should figure out its duration by scanning the tracks - if ( this.duration < 0 ) { + this.bias = 0; + this.radius = 1; - this.resetDuration(); + this.mapSize = new Vector2( 512, 512 ); - } + this.map = null; + this.matrix = new Matrix4(); } - function getTrackTypeForValueTypeName( typeName ) { + Object.assign( LightShadow.prototype, { - switch ( typeName.toLowerCase() ) { + copy: function ( source ) { - case 'scalar': - case 'double': - case 'float': - case 'number': - case 'integer': + this.camera = source.camera.clone(); - return NumberKeyframeTrack; + this.bias = source.bias; + this.radius = source.radius; - case 'vector': - case 'vector2': - case 'vector3': - case 'vector4': + this.mapSize.copy( source.mapSize ); - return VectorKeyframeTrack; + return this; - case 'color': + }, - return ColorKeyframeTrack; + clone: function () { - case 'quaternion': + return new this.constructor().copy( this ); - return QuaternionKeyframeTrack; + }, - case 'bool': - case 'boolean': + toJSON: function () { - return BooleanKeyframeTrack; + var object = {}; - case 'string': + if ( this.bias !== 0 ) object.bias = this.bias; + if ( this.radius !== 1 ) object.radius = this.radius; + if ( this.mapSize.x !== 512 || this.mapSize.y !== 512 ) object.mapSize = this.mapSize.toArray(); - return StringKeyframeTrack; + object.camera = this.camera.toJSON( false ).object; + delete object.camera.matrix; + + return object; } - throw new Error( 'THREE.KeyframeTrack: Unsupported typeName: ' + typeName ); + } ); + + /** + * @author mrdoob / http://mrdoob.com/ + */ + + function SpotLightShadow() { + + LightShadow.call( this, new PerspectiveCamera( 50, 1, 0.5, 500 ) ); } - function parseKeyframeTrack( json ) { + SpotLightShadow.prototype = Object.assign( Object.create( LightShadow.prototype ), { - if ( json.type === undefined ) { + constructor: SpotLightShadow, - throw new Error( 'THREE.KeyframeTrack: track type undefined, can not parse' ); + isSpotLightShadow: true, - } + update: function ( light ) { - var trackType = getTrackTypeForValueTypeName( json.type ); + var camera = this.camera; - if ( json.times === undefined ) { + var fov = _Math.RAD2DEG * 2 * light.angle; + var aspect = this.mapSize.width / this.mapSize.height; + var far = light.distance || camera.far; - var times = [], values = []; + if ( fov !== camera.fov || aspect !== camera.aspect || far !== camera.far ) { - AnimationUtils.flattenJSON( json.keys, times, values, 'value' ); + camera.fov = fov; + camera.aspect = aspect; + camera.far = far; + camera.updateProjectionMatrix(); - json.times = times; - json.values = values; + } } - // derived classes can define a static parse method - if ( trackType.parse !== undefined ) { + } ); - return trackType.parse( json ); + /** + * @author alteredq / http://alteredqualia.com/ + */ - } else { + function SpotLight( color, intensity, distance, angle, penumbra, decay ) { - // by default, we assume a constructor compatible with the base - return new trackType( json.name, json.times, json.values, json.interpolation ); + Light.call( this, color, intensity ); - } + this.type = 'SpotLight'; - } + this.position.copy( Object3D.DefaultUp ); + this.updateMatrix(); - Object.assign( AnimationClip, { + this.target = new Object3D(); - parse: function ( json ) { + Object.defineProperty( this, 'power', { + get: function () { - var tracks = [], - jsonTracks = json.tracks, - frameTime = 1.0 / ( json.fps || 1.0 ); + // intensity = power per solid angle. + // ref: equation (17) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf + return this.intensity * Math.PI; - for ( var i = 0, n = jsonTracks.length; i !== n; ++ i ) { + }, + set: function ( power ) { - tracks.push( parseKeyframeTrack( jsonTracks[ i ] ).scale( frameTime ) ); + // intensity = power per solid angle. + // ref: equation (17) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf + this.intensity = power / Math.PI; } + } ); - return new AnimationClip( json.name, json.duration, tracks ); - - }, - - toJSON: function ( clip ) { + this.distance = ( distance !== undefined ) ? distance : 0; + this.angle = ( angle !== undefined ) ? angle : Math.PI / 3; + this.penumbra = ( penumbra !== undefined ) ? penumbra : 0; + this.decay = ( decay !== undefined ) ? decay : 1; // for physically correct lights, should be 2. - var tracks = [], - clipTracks = clip.tracks; + this.shadow = new SpotLightShadow(); - var json = { + } - 'name': clip.name, - 'duration': clip.duration, - 'tracks': tracks, - 'uuid': clip.uuid + SpotLight.prototype = Object.assign( Object.create( Light.prototype ), { - }; + constructor: SpotLight, - for ( var i = 0, n = clipTracks.length; i !== n; ++ i ) { + isSpotLight: true, - tracks.push( KeyframeTrack.toJSON( clipTracks[ i ] ) ); + copy: function ( source ) { - } + Light.prototype.copy.call( this, source ); - return json; + this.distance = source.distance; + this.angle = source.angle; + this.penumbra = source.penumbra; + this.decay = source.decay; - }, + this.target = source.target.clone(); - CreateFromMorphTargetSequence: function ( name, morphTargetSequence, fps, noLoop ) { + this.shadow = source.shadow.clone(); - var numMorphTargets = morphTargetSequence.length; - var tracks = []; + return this; - for ( var i = 0; i < numMorphTargets; i ++ ) { + } - var times = []; - var values = []; + } ); - times.push( - ( i + numMorphTargets - 1 ) % numMorphTargets, - i, - ( i + 1 ) % numMorphTargets ); + /** + * @author mrdoob / http://mrdoob.com/ + */ - values.push( 0, 1, 0 ); - var order = AnimationUtils.getKeyframeOrder( times ); - times = AnimationUtils.sortedArray( times, 1, order ); - values = AnimationUtils.sortedArray( values, 1, order ); + function PointLight( color, intensity, distance, decay ) { - // if there is a key at the first frame, duplicate it as the - // last frame as well for perfect loop. - if ( ! noLoop && times[ 0 ] === 0 ) { + Light.call( this, color, intensity ); - times.push( numMorphTargets ); - values.push( values[ 0 ] ); + this.type = 'PointLight'; - } + Object.defineProperty( this, 'power', { + get: function () { - tracks.push( - new NumberKeyframeTrack( - '.morphTargetInfluences[' + morphTargetSequence[ i ].name + ']', - times, values - ).scale( 1.0 / fps ) ); + // intensity = power per solid angle. + // ref: equation (15) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf + return this.intensity * 4 * Math.PI; - } + }, + set: function ( power ) { - return new AnimationClip( name, - 1, tracks ); + // intensity = power per solid angle. + // ref: equation (15) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf + this.intensity = power / ( 4 * Math.PI ); - }, + } + } ); - findByName: function ( objectOrClipArray, name ) { + this.distance = ( distance !== undefined ) ? distance : 0; + this.decay = ( decay !== undefined ) ? decay : 1; // for physically correct lights, should be 2. - var clipArray = objectOrClipArray; + this.shadow = new LightShadow( new PerspectiveCamera( 90, 1, 0.5, 500 ) ); - if ( ! Array.isArray( objectOrClipArray ) ) { + } - var o = objectOrClipArray; - clipArray = o.geometry && o.geometry.animations || o.animations; + PointLight.prototype = Object.assign( Object.create( Light.prototype ), { - } + constructor: PointLight, - for ( var i = 0; i < clipArray.length; i ++ ) { + isPointLight: true, - if ( clipArray[ i ].name === name ) { + copy: function ( source ) { - return clipArray[ i ]; + Light.prototype.copy.call( this, source ); - } + this.distance = source.distance; + this.decay = source.decay; - } + this.shadow = source.shadow.clone(); - return null; + return this; - }, + } - CreateClipsFromMorphTargetSequences: function ( morphTargets, fps, noLoop ) { + } ); - var animationToMorphTargets = {}; + /** + * @author alteredq / http://alteredqualia.com/ + * @author arose / http://github.com/arose + */ - // tested with https://regex101.com/ on trick sequences - // such flamingo_flyA_003, flamingo_run1_003, crdeath0059 - var pattern = /^([\w-]*?)([\d]+)$/; + function OrthographicCamera( left, right, top, bottom, near, far ) { - // sort morph target names into animation groups based - // patterns like Walk_001, Walk_002, Run_001, Run_002 - for ( var i = 0, il = morphTargets.length; i < il; i ++ ) { + Camera.call( this ); - var morphTarget = morphTargets[ i ]; - var parts = morphTarget.name.match( pattern ); + this.type = 'OrthographicCamera'; - if ( parts && parts.length > 1 ) { + this.zoom = 1; + this.view = null; - var name = parts[ 1 ]; + this.left = ( left !== undefined ) ? left : - 1; + this.right = ( right !== undefined ) ? right : 1; + this.top = ( top !== undefined ) ? top : 1; + this.bottom = ( bottom !== undefined ) ? bottom : - 1; - var animationMorphTargets = animationToMorphTargets[ name ]; - if ( ! animationMorphTargets ) { + this.near = ( near !== undefined ) ? near : 0.1; + this.far = ( far !== undefined ) ? far : 2000; - animationToMorphTargets[ name ] = animationMorphTargets = []; + this.updateProjectionMatrix(); - } + } - animationMorphTargets.push( morphTarget ); + OrthographicCamera.prototype = Object.assign( Object.create( Camera.prototype ), { - } + constructor: OrthographicCamera, - } + isOrthographicCamera: true, - var clips = []; + copy: function ( source, recursive ) { - for ( var name in animationToMorphTargets ) { + Camera.prototype.copy.call( this, source, recursive ); - clips.push( AnimationClip.CreateFromMorphTargetSequence( name, animationToMorphTargets[ name ], fps, noLoop ) ); + this.left = source.left; + this.right = source.right; + this.top = source.top; + this.bottom = source.bottom; + this.near = source.near; + this.far = source.far; - } + this.zoom = source.zoom; + this.view = source.view === null ? null : Object.assign( {}, source.view ); - return clips; + return this; }, - // parse the animation.hierarchy format - parseAnimation: function ( animation, bones ) { + setViewOffset: function ( fullWidth, fullHeight, x, y, width, height ) { - if ( ! animation ) { + if ( this.view === null ) { - console.error( 'THREE.AnimationClip: No animation in JSONLoader data.' ); - return null; + this.view = { + enabled: true, + fullWidth: 1, + fullHeight: 1, + offsetX: 0, + offsetY: 0, + width: 1, + height: 1 + }; } - var addNonemptyTrack = function ( trackType, trackName, animationKeys, propertyName, destTracks ) { + this.view.enabled = true; + this.view.fullWidth = fullWidth; + this.view.fullHeight = fullHeight; + this.view.offsetX = x; + this.view.offsetY = y; + this.view.width = width; + this.view.height = height; - // only return track if there are actually keys. - if ( animationKeys.length !== 0 ) { + this.updateProjectionMatrix(); - var times = []; - var values = []; + }, - AnimationUtils.flattenJSON( animationKeys, times, values, propertyName ); + clearViewOffset: function () { - // empty keys are filtered out, so check again - if ( times.length !== 0 ) { + if ( this.view !== null ) { - destTracks.push( new trackType( trackName, times, values ) ); + this.view.enabled = false; - } + } - } + this.updateProjectionMatrix(); - }; + }, - var tracks = []; + updateProjectionMatrix: function () { - var clipName = animation.name || 'default'; - // automatic length determination in AnimationClip. - var duration = animation.length || - 1; - var fps = animation.fps || 30; + var dx = ( this.right - this.left ) / ( 2 * this.zoom ); + var dy = ( this.top - this.bottom ) / ( 2 * this.zoom ); + var cx = ( this.right + this.left ) / 2; + var cy = ( this.top + this.bottom ) / 2; - var hierarchyTracks = animation.hierarchy || []; + var left = cx - dx; + var right = cx + dx; + var top = cy + dy; + var bottom = cy - dy; - for ( var h = 0; h < hierarchyTracks.length; h ++ ) { + if ( this.view !== null && this.view.enabled ) { - var animationKeys = hierarchyTracks[ h ].keys; + var zoomW = this.zoom / ( this.view.width / this.view.fullWidth ); + var zoomH = this.zoom / ( this.view.height / this.view.fullHeight ); + var scaleW = ( this.right - this.left ) / this.view.width; + var scaleH = ( this.top - this.bottom ) / this.view.height; - // skip empty tracks - if ( ! animationKeys || animationKeys.length === 0 ) continue; + left += scaleW * ( this.view.offsetX / zoomW ); + right = left + scaleW * ( this.view.width / zoomW ); + top -= scaleH * ( this.view.offsetY / zoomH ); + bottom = top - scaleH * ( this.view.height / zoomH ); - // process morph targets - if ( animationKeys[ 0 ].morphTargets ) { + } - // figure out all morph targets used in this track - var morphTargetNames = {}; + this.projectionMatrix.makeOrthographic( left, right, top, bottom, this.near, this.far ); - for ( var k = 0; k < animationKeys.length; k ++ ) { + this.projectionMatrixInverse.getInverse( this.projectionMatrix ); - if ( animationKeys[ k ].morphTargets ) { + }, - for ( var m = 0; m < animationKeys[ k ].morphTargets.length; m ++ ) { + toJSON: function ( meta ) { - morphTargetNames[ animationKeys[ k ].morphTargets[ m ] ] = - 1; + var data = Object3D.prototype.toJSON.call( this, meta ); - } + data.object.zoom = this.zoom; + data.object.left = this.left; + data.object.right = this.right; + data.object.top = this.top; + data.object.bottom = this.bottom; + data.object.near = this.near; + data.object.far = this.far; - } + if ( this.view !== null ) data.object.view = Object.assign( {}, this.view ); - } + return data; - // create a track for each morph target with all zero - // morphTargetInfluences except for the keys in which - // the morphTarget is named. - for ( var morphTargetName in morphTargetNames ) { + } - var times = []; - var values = []; + } ); - for ( var m = 0; m !== animationKeys[ k ].morphTargets.length; ++ m ) { + /** + * @author mrdoob / http://mrdoob.com/ + */ - var animationKey = animationKeys[ k ]; + function DirectionalLightShadow( ) { - times.push( animationKey.time ); - values.push( ( animationKey.morphTarget === morphTargetName ) ? 1 : 0 ); + LightShadow.call( this, new OrthographicCamera( - 5, 5, 5, - 5, 0.5, 500 ) ); - } + } - tracks.push( new NumberKeyframeTrack( '.morphTargetInfluence[' + morphTargetName + ']', times, values ) ); + DirectionalLightShadow.prototype = Object.assign( Object.create( LightShadow.prototype ), { - } + constructor: DirectionalLightShadow - duration = morphTargetNames.length * ( fps || 1.0 ); + } ); - } else { + /** + * @author mrdoob / http://mrdoob.com/ + * @author alteredq / http://alteredqualia.com/ + */ - // ...assume skeletal animation + function DirectionalLight( color, intensity ) { - var boneName = '.bones[' + bones[ h ].name + ']'; + Light.call( this, color, intensity ); - addNonemptyTrack( - VectorKeyframeTrack, boneName + '.position', - animationKeys, 'pos', tracks ); + this.type = 'DirectionalLight'; - addNonemptyTrack( - QuaternionKeyframeTrack, boneName + '.quaternion', - animationKeys, 'rot', tracks ); + this.position.copy( Object3D.DefaultUp ); + this.updateMatrix(); - addNonemptyTrack( - VectorKeyframeTrack, boneName + '.scale', - animationKeys, 'scl', tracks ); + this.target = new Object3D(); - } + this.shadow = new DirectionalLightShadow(); - } + } - if ( tracks.length === 0 ) { + DirectionalLight.prototype = Object.assign( Object.create( Light.prototype ), { - return null; + constructor: DirectionalLight, - } + isDirectionalLight: true, - var clip = new AnimationClip( clipName, duration, tracks ); + copy: function ( source ) { - return clip; + Light.prototype.copy.call( this, source ); + + this.target = source.target.clone(); + + this.shadow = source.shadow.clone(); + + return this; } } ); - Object.assign( AnimationClip.prototype, { + /** + * @author mrdoob / http://mrdoob.com/ + */ - resetDuration: function () { + function AmbientLight( color, intensity ) { - var tracks = this.tracks, duration = 0; + Light.call( this, color, intensity ); - for ( var i = 0, n = tracks.length; i !== n; ++ i ) { + this.type = 'AmbientLight'; - var track = this.tracks[ i ]; + this.castShadow = undefined; - duration = Math.max( duration, track.times[ track.times.length - 1 ] ); + } - } + AmbientLight.prototype = Object.assign( Object.create( Light.prototype ), { - this.duration = duration; + constructor: AmbientLight, - return this; + isAmbientLight: true - }, + } ); - trim: function () { + /** + * @author abelnation / http://github.com/abelnation + */ - for ( var i = 0; i < this.tracks.length; i ++ ) { + function RectAreaLight( color, intensity, width, height ) { - this.tracks[ i ].trim( 0, this.duration ); + Light.call( this, color, intensity ); - } + this.type = 'RectAreaLight'; - return this; + this.width = ( width !== undefined ) ? width : 10; + this.height = ( height !== undefined ) ? height : 10; - }, + } - validate: function () { + RectAreaLight.prototype = Object.assign( Object.create( Light.prototype ), { - var valid = true; + constructor: RectAreaLight, - for ( var i = 0; i < this.tracks.length; i ++ ) { + isRectAreaLight: true, - valid = valid && this.tracks[ i ].validate(); + copy: function ( source ) { - } + Light.prototype.copy.call( this, source ); - return valid; + this.width = source.width; + this.height = source.height; - }, + return this; - optimize: function () { + }, - for ( var i = 0; i < this.tracks.length; i ++ ) { + toJSON: function ( meta ) { - this.tracks[ i ].optimize(); + var data = Light.prototype.toJSON.call( this, meta ); - } + data.object.width = this.width; + data.object.height = this.height; - return this; + return data; } @@ -38907,8 +38935,8 @@ }, undefined, function () { - scope.manager.itemEnd( url ); scope.manager.itemError( url ); + scope.manager.itemEnd( url ); } ); @@ -39438,8 +39466,8 @@ if ( onError ) onError( e ); - scope.manager.itemEnd( url ); scope.manager.itemError( url ); + scope.manager.itemEnd( url ); } ); @@ -40107,7 +40135,7 @@ * @author alteredq / http://alteredqualia.com/ */ - function CubeCamera( near, far, cubeResolution ) { + function CubeCamera( near, far, cubeResolution, options ) { Object3D.call( this ); @@ -40145,7 +40173,7 @@ cameraNZ.lookAt( new Vector3( 0, 0, - 1 ) ); this.add( cameraNZ ); - var options = { format: RGBFormat, magFilter: LinearFilter, minFilter: LinearFilter }; + options = options || { format: RGBFormat, magFilter: LinearFilter, minFilter: LinearFilter }; this.renderTarget = new WebGLRenderTargetCube( cubeResolution, cubeResolution, options ); this.renderTarget.texture.name = "CubeCamera"; @@ -40205,6 +40233,77 @@ CubeCamera.prototype = Object.create( Object3D.prototype ); CubeCamera.prototype.constructor = CubeCamera; + /** + * @author alteredq / http://alteredqualia.com/ + */ + + function Clock( autoStart ) { + + this.autoStart = ( autoStart !== undefined ) ? autoStart : true; + + this.startTime = 0; + this.oldTime = 0; + this.elapsedTime = 0; + + this.running = false; + + } + + Object.assign( Clock.prototype, { + + start: function () { + + this.startTime = ( typeof performance === 'undefined' ? Date : performance ).now(); // see #10732 + + this.oldTime = this.startTime; + this.elapsedTime = 0; + this.running = true; + + }, + + stop: function () { + + this.getElapsedTime(); + this.running = false; + this.autoStart = false; + + }, + + getElapsedTime: function () { + + this.getDelta(); + return this.elapsedTime; + + }, + + getDelta: function () { + + var diff = 0; + + if ( this.autoStart && ! this.running ) { + + this.start(); + return 0; + + } + + if ( this.running ) { + + var newTime = ( typeof performance === 'undefined' ? Date : performance ).now(); + + diff = ( newTime - this.oldTime ) / 1000; + this.oldTime = newTime; + + this.elapsedTime += diff; + + } + + return diff; + + } + + } ); + /** * @author mrdoob / http://mrdoob.com/ */ @@ -40222,6 +40321,8 @@ this.filter = null; + this.timeDelta = 0; + } AudioListener.prototype = Object.assign( Object.create( Object3D.prototype ), { @@ -40297,6 +40398,7 @@ var scale = new Vector3(); var orientation = new Vector3(); + var clock = new Clock(); return function updateMatrixWorld( force ) { @@ -40305,21 +40407,27 @@ var listener = this.context.listener; var up = this.up; + this.timeDelta = clock.getDelta(); + this.matrixWorld.decompose( position, quaternion, scale ); orientation.set( 0, 0, - 1 ).applyQuaternion( quaternion ); if ( listener.positionX ) { - listener.positionX.setValueAtTime( position.x, this.context.currentTime ); - listener.positionY.setValueAtTime( position.y, this.context.currentTime ); - listener.positionZ.setValueAtTime( position.z, this.context.currentTime ); - listener.forwardX.setValueAtTime( orientation.x, this.context.currentTime ); - listener.forwardY.setValueAtTime( orientation.y, this.context.currentTime ); - listener.forwardZ.setValueAtTime( orientation.z, this.context.currentTime ); - listener.upX.setValueAtTime( up.x, this.context.currentTime ); - listener.upY.setValueAtTime( up.y, this.context.currentTime ); - listener.upZ.setValueAtTime( up.z, this.context.currentTime ); + // code path for Chrome (see #14393) + + var endTime = this.context.currentTime + this.timeDelta; + + listener.positionX.linearRampToValueAtTime( position.x, endTime ); + listener.positionY.linearRampToValueAtTime( position.y, endTime ); + listener.positionZ.linearRampToValueAtTime( position.z, endTime ); + listener.forwardX.linearRampToValueAtTime( orientation.x, endTime ); + listener.forwardY.linearRampToValueAtTime( orientation.y, endTime ); + listener.forwardZ.linearRampToValueAtTime( orientation.z, endTime ); + listener.upX.linearRampToValueAtTime( up.x, endTime ); + listener.upY.linearRampToValueAtTime( up.y, endTime ); + listener.upZ.linearRampToValueAtTime( up.z, endTime ); } else { @@ -40345,6 +40453,7 @@ this.type = 'Audio'; + this.listener = listener; this.context = listener.context; this.gain = this.context.createGain(); @@ -40756,8 +40865,25 @@ orientation.set( 0, 0, 1 ).applyQuaternion( quaternion ); - panner.setPosition( position.x, position.y, position.z ); - panner.setOrientation( orientation.x, orientation.y, orientation.z ); + if ( panner.positionX ) { + + // code path for Chrome and Firefox (see #14393) + + var endTime = this.context.currentTime + this.listener.timeDelta; + + panner.positionX.linearRampToValueAtTime( position.x, endTime ); + panner.positionY.linearRampToValueAtTime( position.y, endTime ); + panner.positionZ.linearRampToValueAtTime( position.z, endTime ); + panner.orientationX.linearRampToValueAtTime( orientation.x, endTime ); + panner.orientationY.linearRampToValueAtTime( orientation.y, endTime ); + panner.orientationZ.linearRampToValueAtTime( orientation.z, endTime ); + + } else { + + panner.setPosition( position.x, position.y, position.z ); + panner.setOrientation( orientation.x, orientation.y, orientation.z ); + + } }; @@ -43793,77 +43919,6 @@ } ); - /** - * @author alteredq / http://alteredqualia.com/ - */ - - function Clock( autoStart ) { - - this.autoStart = ( autoStart !== undefined ) ? autoStart : true; - - this.startTime = 0; - this.oldTime = 0; - this.elapsedTime = 0; - - this.running = false; - - } - - Object.assign( Clock.prototype, { - - start: function () { - - this.startTime = ( typeof performance === 'undefined' ? Date : performance ).now(); // see #10732 - - this.oldTime = this.startTime; - this.elapsedTime = 0; - this.running = true; - - }, - - stop: function () { - - this.getElapsedTime(); - this.running = false; - this.autoStart = false; - - }, - - getElapsedTime: function () { - - this.getDelta(); - return this.elapsedTime; - - }, - - getDelta: function () { - - var diff = 0; - - if ( this.autoStart && ! this.running ) { - - this.start(); - return 0; - - } - - if ( this.running ) { - - var newTime = ( typeof performance === 'undefined' ? Date : performance ).now(); - - diff = ( newTime - this.oldTime ) / 1000; - this.oldTime = newTime; - - this.elapsedTime += diff; - - } - - return diff; - - } - - } ); - /** * @author bhouston / http://clara.io * @author WestLangley / http://github.com/WestLangley @@ -44797,7 +44852,7 @@ /* - var distanceGeometry = new THREE.IcosahedronGeometry( 1, 2 ); + var distanceGeometry = new THREE.IcosahedronBufferGeometry( 1, 2 ); var distanceMaterial = new THREE.MeshBasicMaterial( { color: hexColor, fog: false, wireframe: true, opacity: 0.1, transparent: true } ); this.lightSphere = new THREE.Mesh( bulbGeometry, bulbMaterial ); @@ -45643,6 +45698,22 @@ }; + BoxHelper.prototype.copy = function ( source ) { + + LineSegments.prototype.copy.call( this, source ); + + this.object = source.object; + + return this; + + }; + + BoxHelper.prototype.clone = function () { + + return new this.constructor().copy( this ); + + }; + /** * @author WestLangley / http://github.com/WestLangley */ @@ -45767,8 +45838,10 @@ Object3D.call( this ); - if ( color === undefined ) color = 0xffff00; + if ( dir === undefined ) dir = new THREE.Vector3( 0, 0, 1 ); + if ( origin === undefined ) origin = new THREE.Vector3( 0, 0, 0 ); if ( length === undefined ) length = 1; + if ( color === undefined ) color = 0xffff00; if ( headLength === undefined ) headLength = 0.2 * length; if ( headWidth === undefined ) headWidth = 0.2 * headLength; @@ -45852,6 +45925,23 @@ }; + ArrowHelper.prototype.copy = function ( source ) { + + Object3D.prototype.copy.call( this, source, false ); + + this.line.copy( source.line ); + this.cone.copy( source.cone ); + + return this; + + }; + + ArrowHelper.prototype.clone = function () { + + return new this.constructor().copy( this ); + + }; + /** * @author sroucheray / http://sroucheray.org/ * @author mrdoob / http://mrdoob.com/ @@ -47097,6 +47187,20 @@ } }, + + overdraw: { + get: function () { + + console.warn( 'THREE.Material: .overdraw has been removed.' ); + + }, + set: function () { + + console.warn( 'THREE.Material: .overdraw has been removed.' ); + + } + }, + wrapRGB: { get: function () { @@ -47682,13 +47786,7 @@ function CanvasRenderer() { - console.error( 'THREE.CanvasRenderer has been moved to /examples/js/renderers/CanvasRenderer.js' ); - - this.domElement = document.createElementNS( 'http://www.w3.org/1999/xhtml', 'canvas' ); - this.clear = function () {}; - this.render = function () {}; - this.setClearColor = function () {}; - this.setSize = function () {}; + console.error( 'THREE.CanvasRenderer has been removed' ); } @@ -47753,6 +47851,7 @@ exports.CanvasTexture = CanvasTexture; exports.DepthTexture = DepthTexture; exports.Texture = Texture; + exports.AnimationLoader = AnimationLoader; exports.CompressedTextureLoader = CompressedTextureLoader; exports.DataTextureLoader = DataTextureLoader; exports.CubeTextureLoader = CubeTextureLoader; diff --git a/build/three.min.js b/build/three.min.js index 831a7218e9908a..857c0ff52d2568 100644 --- a/build/three.min.js +++ b/build/three.min.js @@ -1,420 +1,416 @@ // threejs.org/license (function(l,ia){"object"===typeof exports&&"undefined"!==typeof module?ia(exports):"function"===typeof define&&define.amd?define(["exports"],ia):ia(l.THREE={})})(this,function(l){function ia(){}function z(a,b){this.x=a||0;this.y=b||0}function P(){this.elements=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];0b&&(b=a[c]);return b}function E(){Object.defineProperty(this,"id",{value:Kf+=2});this.uuid=S.generateUUID();this.name="";this.type="BufferGeometry";this.index=null;this.attributes={};this.morphAttributes= -{};this.groups=[];this.boundingSphere=this.boundingBox=null;this.drawRange={start:0,count:Infinity};this.userData={}}function Kb(a,b,c,d,e,f){M.call(this);this.type="BoxGeometry";this.parameters={width:a,height:b,depth:c,widthSegments:d,heightSegments:e,depthSegments:f};this.fromBufferGeometry(new nb(a,b,c,d,e,f));this.mergeVertices()}function nb(a,b,c,d,e,f){function g(a,b,c,d,e,f,g,l,X,B,Lb){var t=f/X,u=g/B,y=f/2,w=g/2,x=l/2;g=X+1;var R=B+1,I=f=0,F,z,A=new p;for(z=0;zb&&(b=a[c]);return b}function E(){Object.defineProperty(this,"id",{value:Of+=2});this.uuid=R.generateUUID();this.name="";this.type="BufferGeometry";this.index=null;this.attributes={};this.morphAttributes={};this.groups= +[];this.boundingSphere=this.boundingBox=null;this.drawRange={start:0,count:Infinity};this.userData={}}function Kb(a,b,c,d,e,f){I.call(this);this.type="BoxGeometry";this.parameters={width:a,height:b,depth:c,widthSegments:d,heightSegments:e,depthSegments:f};this.fromBufferGeometry(new pb(a,b,c,d,e,f));this.mergeVertices()}function pb(a,b,c,d,e,f){function g(a,b,c,d,e,f,g,l,X,B,Lb){var t=f/X,u=g/B,w=f/2,v=g/2,A=l/2;g=X+1;var y=B+1,H=f=0,N,z,C=new p;for(z=0;zm;m++){if(n=d[m])if(h=n[0],k=n[1]){q&&e.addAttribute("morphTarget"+m,q[h]);f&&e.addAttribute("morphNormal"+m,f[h]);c[m]=k;continue}c[m]=0}g.getUniforms().setValue(a,"morphTargetInfluences",c)}}}function Wf(a,b){var c={};return{update:function(d){var e=b.render.frame,f=d.geometry,g= -a.get(d,f);c[g.id]!==e&&(f.isGeometry&&g.updateFromObject(d),a.update(g),c[g.id]=e);return g},dispose:function(){c={}}}}function Ya(a,b,c,d,e,f,g,h,k,m){a=void 0!==a?a:[];Q.call(this,a,void 0!==b?b:301,c,d,e,f,g,h,k,m);this.flipY=!1}function Mb(a,b,c,d){Q.call(this,null);this.image={data:a,width:b,height:c,depth:d};this.minFilter=this.magFilter=1003;this.flipY=this.generateMipmaps=!1}function Nb(a,b,c){var d=a[0];if(0>=d||0/gm,function(a,c){a=K[c];if(void 0===a)throw Error("Can not resolve #include <"+c+">");return ae(a)})}function $e(a){return a.replace(/#pragma unroll_loop[\s]+?for \( int i = (\d+); i < (\d+); i \+\+ \) \{([\s\S]+?)(?=\})\}/g,function(a,c,d,e){a="";for(c=parseInt(c);c< -parseInt(d);c++)a+=e.replace(/\[ i \]/g,"[ "+c+" ]");return a})}function Ag(a,b,c,d,e,f,g){var h=a.context,k=d.defines,m=e.vertexShader,q=e.fragmentShader,n="SHADOWMAP_TYPE_BASIC";1===f.shadowMapType?n="SHADOWMAP_TYPE_PCF":2===f.shadowMapType&&(n="SHADOWMAP_TYPE_PCF_SOFT");var r="ENVMAP_TYPE_CUBE",v="ENVMAP_MODE_REFLECTION",t="ENVMAP_BLENDING_MULTIPLY";if(f.envMap){switch(d.envMap.mapping){case 301:case 302:r="ENVMAP_TYPE_CUBE";break;case 306:case 307:r="ENVMAP_TYPE_CUBE_UV";break;case 303:case 304:r= -"ENVMAP_TYPE_EQUIREC";break;case 305:r="ENVMAP_TYPE_SPHERE"}switch(d.envMap.mapping){case 302:case 304:v="ENVMAP_MODE_REFRACTION"}switch(d.combine){case 0:t="ENVMAP_BLENDING_MULTIPLY";break;case 1:t="ENVMAP_BLENDING_MIX";break;case 2:t="ENVMAP_BLENDING_ADD"}}var l=0m;m++){if(n=d[m])if(h=n[0],k=n[1]){q&&e.addAttribute("morphTarget"+m, +q[h]);f&&e.addAttribute("morphNormal"+m,f[h]);c[m]=k;continue}c[m]=0}g.getUniforms().setValue(a,"morphTargetInfluences",c)}}}function $f(a,b){var c={};return{update:function(d){var e=b.render.frame,f=d.geometry,g=a.get(d,f);c[g.id]!==e&&(f.isGeometry&&g.updateFromObject(d),a.update(g),c[g.id]=e);return g},dispose:function(){c={}}}}function Ya(a,b,c,d,e,f,g,h,k,m){a=void 0!==a?a:[];W.call(this,a,void 0!==b?b:301,c,d,e,f,g,h,k,m);this.flipY=!1}function Mb(a,b,c,d){W.call(this,null);this.image={data:a, +width:b,height:c,depth:d};this.minFilter=this.magFilter=1003;this.flipY=this.generateMipmaps=!1}function Nb(a,b,c){var d=a[0];if(0>=d||0/gm,function(a,c){a=K[c];if(void 0=== +a)throw Error("Can not resolve #include <"+c+">");return ae(a)})}function af(a){return a.replace(/#pragma unroll_loop[\s]+?for \( int i = (\d+); i < (\d+); i \+\+ \) \{([\s\S]+?)(?=\})\}/g,function(a,c,d,e){a="";for(c=parseInt(c);cb||a.height>b){if("data"in a){console.warn("THREE.WebGLRenderer: image in DataTexture is too big ("+a.width+"x"+a.height+").");return}b/=Math.max(a.width,a.height);var c=document.createElementNS("http://www.w3.org/1999/xhtml","canvas");c.width=Math.floor(a.width*b);c.height=Math.floor(a.height*b);c.getContext("2d").drawImage(a,0,0,a.width,a.height,0,0,c.width,c.height);console.warn("THREE.WebGLRenderer: image is too big ("+ -a.width+"x"+a.height+"). Resized to "+c.width+"x"+c.height);return c}return a}function k(a){return S.isPowerOfTwo(a.width)&&S.isPowerOfTwo(a.height)}function m(a,b){return a.generateMipmaps&&b&&1003!==a.minFilter&&1006!==a.minFilter}function q(b,c,e,f){a.generateMipmap(b);d.get(c).__maxMipLevel=Math.log(Math.max(e,f))*Math.LOG2E}function n(b,c){if(!e.isWebGL2)return b;if(b===a.RED){if(c===a.FLOAT)return a.R32F;if(c===a.HALF_FLOAT)return a.R16F;if(c===a.UNSIGNED_BYTE)return a.R8}if(b===a.RGB){if(c=== -a.FLOAT)return a.RGB32F;if(c===a.HALF_FLOAT)return a.RGB16F;if(c===a.UNSIGNED_BYTE)return a.RGB8}if(b===a.RGBA){if(c===a.FLOAT)return a.RGBA32F;if(c===a.HALF_FLOAT)return a.RGBA16F;if(c===a.UNSIGNED_BYTE)return a.RGBA8}return b}function r(b){return 1003===b||1004===b||1005===b?a.NEAREST:a.LINEAR}function v(b){b=b.target;b.removeEventListener("dispose",v);a:{var c=d.get(b);if(b.image&&c.__image__webglTextureCube)a.deleteTexture(c.__image__webglTextureCube);else{if(void 0===c.__webglInit)break a;a.deleteTexture(c.__webglTexture)}d.remove(b)}b.isVideoTexture&& -delete I[b.id];g.memory.textures--}function l(b){b=b.target;b.removeEventListener("dispose",l);var c=d.get(b),e=d.get(b.texture);if(b){void 0!==e.__webglTexture&&a.deleteTexture(e.__webglTexture);b.depthTexture&&b.depthTexture.dispose();if(b.isWebGLRenderTargetCube)for(e=0;6>e;e++)a.deleteFramebuffer(c.__webglFramebuffer[e]),c.__webglDepthbuffer&&a.deleteRenderbuffer(c.__webglDepthbuffer[e]);else a.deleteFramebuffer(c.__webglFramebuffer),c.__webglDepthbuffer&&a.deleteRenderbuffer(c.__webglDepthbuffer); -d.remove(b.texture);d.remove(b)}g.memory.textures--}function u(b,e){var f=d.get(b);if(b.isVideoTexture){var h=b.id,k=g.render.frame;I[h]!==k&&(I[h]=k,b.update())}if(0w;w++)u[w]=r||t?t?b.image[w].image:b.image[w]:h(b.image[w],e.maxCubemapSize);var y=u[0],x=k(y),R=f.convert(b.format),X=f.convert(b.type),B=n(R,X);p(a.TEXTURE_CUBE_MAP,b,x);for(w=0;6>w;w++)if(r)for(var F,I=u[w].mipmaps,z=0,A=I.length;zr;r++)e.__webglFramebuffer[r]=a.createFramebuffer()}else e.__webglFramebuffer=a.createFramebuffer();if(h){c.bindTexture(a.TEXTURE_CUBE_MAP,f.__webglTexture);p(a.TEXTURE_CUBE_MAP,b.texture,n);for(r=0;6>r;r++)w(e.__webglFramebuffer[r],b,a.COLOR_ATTACHMENT0,a.TEXTURE_CUBE_MAP_POSITIVE_X+r);m(b.texture,n)&&q(a.TEXTURE_CUBE_MAP,b.texture,b.width,b.height);c.bindTexture(a.TEXTURE_CUBE_MAP,null)}else c.bindTexture(a.TEXTURE_2D, -f.__webglTexture),p(a.TEXTURE_2D,b.texture,n),w(e.__webglFramebuffer,b,a.COLOR_ATTACHMENT0,a.TEXTURE_2D),m(b.texture,n)&&q(a.TEXTURE_2D,b.texture,b.width,b.height),c.bindTexture(a.TEXTURE_2D,null);if(b.depthBuffer){e=d.get(b);f=!0===b.isWebGLRenderTargetCube;if(b.depthTexture){if(f)throw Error("target.depthTexture not supported in Cube render targets");if(b&&b.isWebGLRenderTargetCube)throw Error("Depth Texture with cube render targets is not supported");a.bindFramebuffer(a.FRAMEBUFFER,e.__webglFramebuffer); -if(!b.depthTexture||!b.depthTexture.isDepthTexture)throw Error("renderTarget.depthTexture must be an instance of THREE.DepthTexture");d.get(b.depthTexture).__webglTexture&&b.depthTexture.image.width===b.width&&b.depthTexture.image.height===b.height||(b.depthTexture.image.width=b.width,b.depthTexture.image.height=b.height,b.depthTexture.needsUpdate=!0);u(b.depthTexture,0);e=d.get(b.depthTexture).__webglTexture;if(1026===b.depthTexture.format)a.framebufferTexture2D(a.FRAMEBUFFER,a.DEPTH_ATTACHMENT, -a.TEXTURE_2D,e,0);else if(1027===b.depthTexture.format)a.framebufferTexture2D(a.FRAMEBUFFER,a.DEPTH_STENCIL_ATTACHMENT,a.TEXTURE_2D,e,0);else throw Error("Unknown depthTexture format");}else if(f)for(e.__webglDepthbuffer=[],f=0;6>f;f++)a.bindFramebuffer(a.FRAMEBUFFER,e.__webglFramebuffer[f]),e.__webglDepthbuffer[f]=a.createRenderbuffer(),F(e.__webglDepthbuffer[f],b);else a.bindFramebuffer(a.FRAMEBUFFER,e.__webglFramebuffer),e.__webglDepthbuffer=a.createRenderbuffer(),F(e.__webglDepthbuffer,b);a.bindFramebuffer(a.FRAMEBUFFER, -null)}};this.updateRenderTargetMipmap=function(b){var e=b.texture,f=k(b);if(m(e,f)){f=b.isWebGLRenderTargetCube?a.TEXTURE_CUBE_MAP:a.TEXTURE_2D;var g=d.get(e).__webglTexture;c.bindTexture(f,g);q(f,e,b.width,b.height);c.bindTexture(f,null)}}}function cf(a,b,c){return{convert:function(d){if(1E3===d)return a.REPEAT;if(1001===d)return a.CLAMP_TO_EDGE;if(1002===d)return a.MIRRORED_REPEAT;if(1003===d)return a.NEAREST;if(1004===d)return a.NEAREST_MIPMAP_NEAREST;if(1005===d)return a.NEAREST_MIPMAP_LINEAR; -if(1006===d)return a.LINEAR;if(1007===d)return a.LINEAR_MIPMAP_NEAREST;if(1008===d)return a.LINEAR_MIPMAP_LINEAR;if(1009===d)return a.UNSIGNED_BYTE;if(1017===d)return a.UNSIGNED_SHORT_4_4_4_4;if(1018===d)return a.UNSIGNED_SHORT_5_5_5_1;if(1019===d)return a.UNSIGNED_SHORT_5_6_5;if(1010===d)return a.BYTE;if(1011===d)return a.SHORT;if(1012===d)return a.UNSIGNED_SHORT;if(1013===d)return a.INT;if(1014===d)return a.UNSIGNED_INT;if(1015===d)return a.FLOAT;if(1016===d){if(c.isWebGL2)return a.HALF_FLOAT;var e= -b.get("OES_texture_half_float");if(null!==e)return e.HALF_FLOAT_OES}if(1021===d)return a.ALPHA;if(1022===d)return a.RGB;if(1023===d)return a.RGBA;if(1024===d)return a.LUMINANCE;if(1025===d)return a.LUMINANCE_ALPHA;if(1026===d)return a.DEPTH_COMPONENT;if(1027===d)return a.DEPTH_STENCIL;if(1028===d)return a.RED;if(100===d)return a.FUNC_ADD;if(101===d)return a.FUNC_SUBTRACT;if(102===d)return a.FUNC_REVERSE_SUBTRACT;if(200===d)return a.ZERO;if(201===d)return a.ONE;if(202===d)return a.SRC_COLOR;if(203=== -d)return a.ONE_MINUS_SRC_COLOR;if(204===d)return a.SRC_ALPHA;if(205===d)return a.ONE_MINUS_SRC_ALPHA;if(206===d)return a.DST_ALPHA;if(207===d)return a.ONE_MINUS_DST_ALPHA;if(208===d)return a.DST_COLOR;if(209===d)return a.ONE_MINUS_DST_COLOR;if(210===d)return a.SRC_ALPHA_SATURATE;if(33776===d||33777===d||33778===d||33779===d)if(e=b.get("WEBGL_compressed_texture_s3tc"),null!==e){if(33776===d)return e.COMPRESSED_RGB_S3TC_DXT1_EXT;if(33777===d)return e.COMPRESSED_RGBA_S3TC_DXT1_EXT;if(33778===d)return e.COMPRESSED_RGBA_S3TC_DXT3_EXT; -if(33779===d)return e.COMPRESSED_RGBA_S3TC_DXT5_EXT}if(35840===d||35841===d||35842===d||35843===d)if(e=b.get("WEBGL_compressed_texture_pvrtc"),null!==e){if(35840===d)return e.COMPRESSED_RGB_PVRTC_4BPPV1_IMG;if(35841===d)return e.COMPRESSED_RGB_PVRTC_2BPPV1_IMG;if(35842===d)return e.COMPRESSED_RGBA_PVRTC_4BPPV1_IMG;if(35843===d)return e.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG}if(36196===d&&(e=b.get("WEBGL_compressed_texture_etc1"),null!==e))return e.COMPRESSED_RGB_ETC1_WEBGL;if(37808===d||37809===d||37810=== -d||37811===d||37812===d||37813===d||37814===d||37815===d||37816===d||37817===d||37818===d||37819===d||37820===d||37821===d)if(e=b.get("WEBGL_compressed_texture_astc"),null!==e)return d;if(103===d||104===d){if(c.isWebGL2){if(103===d)return a.MIN;if(104===d)return a.MAX}e=b.get("EXT_blend_minmax");if(null!==e){if(103===d)return e.MIN_EXT;if(104===d)return e.MAX_EXT}}if(1020===d){if(c.isWebGL2)return a.UNSIGNED_INT_24_8;e=b.get("WEBGL_depth_texture");if(null!==e)return e.UNSIGNED_INT_24_8_WEBGL}return 0}}} -function Ob(){C.call(this);this.type="Group"}function Ra(){C.call(this);this.type="Camera";this.matrixWorldInverse=new P;this.projectionMatrix=new P;this.projectionMatrixInverse=new P}function V(a,b,c,d){Ra.call(this);this.type="PerspectiveCamera";this.fov=void 0!==a?a:50;this.zoom=1;this.near=void 0!==c?c:.1;this.far=void 0!==d?d:2E3;this.focus=10;this.aspect=void 0!==b?b:1;this.view=null;this.filmGauge=35;this.filmOffset=0;this.updateProjectionMatrix()}function Cc(a){V.call(this);this.cameras=a|| -[]}function df(a){function b(){return null!==e&&!0===e.isPresenting}function c(){if(b()){var c=e.getEyeParameters("left"),f=c.renderWidth;c=c.renderHeight;w=a.getPixelRatio();x=a.getSize();a.setDrawingBufferSize(2*f,c,1);I.start()}else d.enabled&&a.setDrawingBufferSize(x.width,x.height,w),I.stop()}var d=this,e=null,f=null,g=null,h=[],k=new P,m=new P,q="stage";"undefined"!==typeof window&&"VRFrameData"in window&&(f=new window.VRFrameData,window.addEventListener("vrdisplaypresentchange",c,!1));var n= -new P,r=new ja,v=new p,l=new V;l.bounds=new Z(0,0,.5,1);l.layers.enable(1);var u=new V;u.bounds=new Z(.5,0,.5,1);u.layers.enable(2);var y=new Cc([l,u]);y.layers.enable(1);y.layers.enable(2);var x,w,F=[];this.enabled=!1;this.getController=function(a){var b=h[a];void 0===b&&(b=new Ob,b.matrixAutoUpdate=!1,b.visible=!1,h[a]=b);return b};this.getDevice=function(){return e};this.setDevice=function(a){void 0!==a&&(e=a);I.setContext(a)};this.setFrameOfReferenceType=function(a){q=a};this.setPoseTarget=function(a){void 0!== -a&&(g=a)};this.getCamera=function(a){var b="stage"===q?1.6:0;if(null===e)return a.position.set(0,b,0),a;e.depthNear=a.near;e.depthFar=a.far;e.getFrameData(f);if("stage"===q){var c=e.stageParameters;c?k.fromArray(c.sittingToStandingTransform):k.makeTranslation(0,b,0)}b=f.pose;c=null!==g?g:a;c.matrix.copy(k);c.matrix.decompose(c.position,c.quaternion,c.scale);null!==b.orientation&&(r.fromArray(b.orientation),c.quaternion.multiply(r));null!==b.position&&(r.setFromRotationMatrix(k),v.fromArray(b.position), -v.applyQuaternion(r),c.position.add(v));c.updateMatrixWorld();if(!1===e.isPresenting)return a;l.near=a.near;u.near=a.near;l.far=a.far;u.far=a.far;l.matrixWorldInverse.fromArray(f.leftViewMatrix);u.matrixWorldInverse.fromArray(f.rightViewMatrix);m.getInverse(k);"stage"===q&&(l.matrixWorldInverse.multiply(m),u.matrixWorldInverse.multiply(m));a=c.parent;null!==a&&(n.getInverse(a.matrixWorld),l.matrixWorldInverse.multiply(n),u.matrixWorldInverse.multiply(n));l.matrixWorld.getInverse(l.matrixWorldInverse); -u.matrixWorld.getInverse(u.matrixWorldInverse);l.projectionMatrix.fromArray(f.leftProjectionMatrix);u.projectionMatrix.fromArray(f.rightProjectionMatrix);y.setProjectionFromUnion();a=e.getLayers();a.length&&(a=a[0],null!==a.leftBounds&&4===a.leftBounds.length&&l.bounds.fromArray(a.leftBounds),null!==a.rightBounds&&4===a.rightBounds.length&&u.bounds.fromArray(a.rightBounds));a:for(a=0;ab||a.height>b){if("data"in a){console.warn("THREE.WebGLRenderer: image in DataTexture is too big ("+a.width+"x"+a.height+")."); +return}b/=Math.max(a.width,a.height);var c=document.createElementNS("http://www.w3.org/1999/xhtml","canvas");c.width=Math.floor(a.width*b);c.height=Math.floor(a.height*b);c.getContext("2d").drawImage(a,0,0,a.width,a.height,0,0,c.width,c.height);console.warn("THREE.WebGLRenderer: image is too big ("+a.width+"x"+a.height+"). Resized to "+c.width+"x"+c.height);return c}return a}function k(a){return R.isPowerOfTwo(a.width)&&R.isPowerOfTwo(a.height)}function m(a,b){return a.generateMipmaps&&b&&1003!== +a.minFilter&&1006!==a.minFilter}function q(b,c,e,f){a.generateMipmap(b);d.get(c).__maxMipLevel=Math.log(Math.max(e,f))*Math.LOG2E}function n(a,b){if(!e.isWebGL2)return a;if(6403===a){if(5126===b)return 33326;if(5131===b)return 33325;if(5121===b)return 33321}if(6407===a){if(5126===b)return 34837;if(5131===b)return 34843;if(5121===b)return 32849}if(6408===a){if(5126===b)return 34836;if(5131===b)return 34842;if(5121===b)return 32856}return a}function r(a){return 1003===a||1004===a||1005===a?9728:9729} +function x(b){b=b.target;b.removeEventListener("dispose",x);a:{var c=d.get(b);if(b.image&&c.__image__webglTextureCube)a.deleteTexture(c.__image__webglTextureCube);else{if(void 0===c.__webglInit)break a;a.deleteTexture(c.__webglTexture)}d.remove(b)}b.isVideoTexture&&delete y[b.id];g.memory.textures--}function l(b){b=b.target;b.removeEventListener("dispose",l);var c=d.get(b),e=d.get(b.texture);if(b){void 0!==e.__webglTexture&&a.deleteTexture(e.__webglTexture);b.depthTexture&&b.depthTexture.dispose(); +if(b.isWebGLRenderTargetCube)for(e=0;6>e;e++)a.deleteFramebuffer(c.__webglFramebuffer[e]),c.__webglDepthbuffer&&a.deleteRenderbuffer(c.__webglDepthbuffer[e]);else a.deleteFramebuffer(c.__webglFramebuffer),c.__webglDepthbuffer&&a.deleteRenderbuffer(c.__webglDepthbuffer);d.remove(b.texture);d.remove(b)}g.memory.textures--}function u(a,b){var e=d.get(a);if(a.isVideoTexture){var f=a.id,h=g.render.frame;y[f]!==h&&(y[f]=h,a.update())}if(0w;w++)u[w]=r||t?t?b.image[w].image: +b.image[w]:h(b.image[w],e.maxCubemapSize);var v=u[0],X=k(v),B=f.convert(b.format),y=f.convert(b.type),H=n(B,y);p(34067,b,X);for(w=0;6>w;w++)if(r)for(var A,N=u[w].mipmaps,z=0,C=N.length;zr;r++)e.__webglFramebuffer[r]=a.createFramebuffer()}else e.__webglFramebuffer=a.createFramebuffer();if(h){c.bindTexture(34067,f.__webglTexture);p(34067,b.texture,n);for(r=0;6>r;r++)v(e.__webglFramebuffer[r],b,36064,34069+r);m(b.texture,n)&&q(34067,b.texture,b.width,b.height);c.bindTexture(34067,null)}else c.bindTexture(3553,f.__webglTexture),p(3553,b.texture, +n),v(e.__webglFramebuffer,b,36064,3553),m(b.texture,n)&&q(3553,b.texture,b.width,b.height),c.bindTexture(3553,null);if(b.depthBuffer){e=d.get(b);f=!0===b.isWebGLRenderTargetCube;if(b.depthTexture){if(f)throw Error("target.depthTexture not supported in Cube render targets");if(b&&b.isWebGLRenderTargetCube)throw Error("Depth Texture with cube render targets is not supported");a.bindFramebuffer(36160,e.__webglFramebuffer);if(!b.depthTexture||!b.depthTexture.isDepthTexture)throw Error("renderTarget.depthTexture must be an instance of THREE.DepthTexture"); +d.get(b.depthTexture).__webglTexture&&b.depthTexture.image.width===b.width&&b.depthTexture.image.height===b.height||(b.depthTexture.image.width=b.width,b.depthTexture.image.height=b.height,b.depthTexture.needsUpdate=!0);u(b.depthTexture,0);e=d.get(b.depthTexture).__webglTexture;if(1026===b.depthTexture.format)a.framebufferTexture2D(36160,36096,3553,e,0);else if(1027===b.depthTexture.format)a.framebufferTexture2D(36160,33306,3553,e,0);else throw Error("Unknown depthTexture format");}else if(f)for(e.__webglDepthbuffer= +[],f=0;6>f;f++)a.bindFramebuffer(36160,e.__webglFramebuffer[f]),e.__webglDepthbuffer[f]=a.createRenderbuffer(),H(e.__webglDepthbuffer[f],b);else a.bindFramebuffer(36160,e.__webglFramebuffer),e.__webglDepthbuffer=a.createRenderbuffer(),H(e.__webglDepthbuffer,b);a.bindFramebuffer(36160,null)}};this.updateRenderTargetMipmap=function(a){var b=a.texture,e=k(a);if(m(b,e)){e=a.isWebGLRenderTargetCube?34067:3553;var f=d.get(b).__webglTexture;c.bindTexture(e,f);q(e,b,a.width,a.height);c.bindTexture(e,null)}}} +function df(a,b,c){return{convert:function(a){if(1E3===a)return 10497;if(1001===a)return 33071;if(1002===a)return 33648;if(1003===a)return 9728;if(1004===a)return 9984;if(1005===a)return 9986;if(1006===a)return 9729;if(1007===a)return 9985;if(1008===a)return 9987;if(1009===a)return 5121;if(1017===a)return 32819;if(1018===a)return 32820;if(1019===a)return 33635;if(1010===a)return 5120;if(1011===a)return 5122;if(1012===a)return 5123;if(1013===a)return 5124;if(1014===a)return 5125;if(1015===a)return 5126; +if(1016===a){if(c.isWebGL2)return 5131;var d=b.get("OES_texture_half_float");if(null!==d)return d.HALF_FLOAT_OES}if(1021===a)return 6406;if(1022===a)return 6407;if(1023===a)return 6408;if(1024===a)return 6409;if(1025===a)return 6410;if(1026===a)return 6402;if(1027===a)return 34041;if(1028===a)return 6403;if(100===a)return 32774;if(101===a)return 32778;if(102===a)return 32779;if(200===a)return 0;if(201===a)return 1;if(202===a)return 768;if(203===a)return 769;if(204===a)return 770;if(205===a)return 771; +if(206===a)return 772;if(207===a)return 773;if(208===a)return 774;if(209===a)return 775;if(210===a)return 776;if(33776===a||33777===a||33778===a||33779===a)if(d=b.get("WEBGL_compressed_texture_s3tc"),null!==d){if(33776===a)return d.COMPRESSED_RGB_S3TC_DXT1_EXT;if(33777===a)return d.COMPRESSED_RGBA_S3TC_DXT1_EXT;if(33778===a)return d.COMPRESSED_RGBA_S3TC_DXT3_EXT;if(33779===a)return d.COMPRESSED_RGBA_S3TC_DXT5_EXT}if(35840===a||35841===a||35842===a||35843===a)if(d=b.get("WEBGL_compressed_texture_pvrtc"), +null!==d){if(35840===a)return d.COMPRESSED_RGB_PVRTC_4BPPV1_IMG;if(35841===a)return d.COMPRESSED_RGB_PVRTC_2BPPV1_IMG;if(35842===a)return d.COMPRESSED_RGBA_PVRTC_4BPPV1_IMG;if(35843===a)return d.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG}if(36196===a&&(d=b.get("WEBGL_compressed_texture_etc1"),null!==d))return d.COMPRESSED_RGB_ETC1_WEBGL;if(37808===a||37809===a||37810===a||37811===a||37812===a||37813===a||37814===a||37815===a||37816===a||37817===a||37818===a||37819===a||37820===a||37821===a)if(d=b.get("WEBGL_compressed_texture_astc"), +null!==d)return a;if(103===a||104===a){if(c.isWebGL2){if(103===a)return 32775;if(104===a)return 32776}d=b.get("EXT_blend_minmax");if(null!==d){if(103===a)return d.MIN_EXT;if(104===a)return d.MAX_EXT}}if(1020===a){if(c.isWebGL2)return 34042;d=b.get("WEBGL_depth_texture");if(null!==d)return d.UNSIGNED_INT_24_8_WEBGL}return 0}}}function Ob(){D.call(this);this.type="Group"}function Ra(){D.call(this);this.type="Camera";this.matrixWorldInverse=new P;this.projectionMatrix=new P;this.projectionMatrixInverse= +new P}function V(a,b,c,d){Ra.call(this);this.type="PerspectiveCamera";this.fov=void 0!==a?a:50;this.zoom=1;this.near=void 0!==c?c:.1;this.far=void 0!==d?d:2E3;this.focus=10;this.aspect=void 0!==b?b:1;this.view=null;this.filmGauge=35;this.filmOffset=0;this.updateProjectionMatrix()}function Cc(a){V.call(this);this.cameras=a||[]}function ef(a,b,c){ff.setFromMatrixPosition(b.matrixWorld);gf.setFromMatrixPosition(c.matrixWorld);var d=ff.distanceTo(gf),e=b.projectionMatrix.elements,f=c.projectionMatrix.elements, +g=e[14]/(e[10]-1);c=e[14]/(e[10]+1);var h=(e[9]+1)/e[5],k=(e[9]-1)/e[5],m=(e[8]-1)/e[0],q=(f[8]+1)/f[0];e=g*m;f=g*q;q=d/(-m+q);m=q*-m;b.matrixWorld.decompose(a.position,a.quaternion,a.scale);a.translateX(m);a.translateZ(q);a.matrixWorld.compose(a.position,a.quaternion,a.scale);a.matrixWorldInverse.getInverse(a.matrixWorld);b=g+q;g=c+q;a.projectionMatrix.makePerspective(e-m,f+(d-m),h*c/g*b,k*c/g*b,b,g)}function hf(a){function b(){return null!==e&&!0===e.isPresenting}function c(){if(b()){var c=e.getEyeParameters("left"), +f=c.renderWidth*q;c=c.renderHeight*q;H=a.getPixelRatio();v=a.getSize();a.setDrawingBufferSize(2*f,c,1);N.start()}else d.enabled&&a.setDrawingBufferSize(v.width,v.height,H),N.stop()}var d=this,e=null,f=null,g=null,h=[],k=new P,m=new P,q=1,n="stage";"undefined"!==typeof window&&"VRFrameData"in window&&(f=new window.VRFrameData,window.addEventListener("vrdisplaypresentchange",c,!1));var r=new P,l=new ja,t=new p,u=new V;u.bounds=new Z(0,0,.5,1);u.layers.enable(1);var w=new V;w.bounds=new Z(.5,0,.5,1); +w.layers.enable(2);var A=new Cc([u,w]);A.layers.enable(1);A.layers.enable(2);var v,H,y=[];this.enabled=!1;this.getController=function(a){var b=h[a];void 0===b&&(b=new Ob,b.matrixAutoUpdate=!1,b.visible=!1,h[a]=b);return b};this.getDevice=function(){return e};this.setDevice=function(a){void 0!==a&&(e=a);N.setContext(a)};this.setFramebufferScaleFactor=function(a){q=a};this.setFrameOfReferenceType=function(a){n=a};this.setPoseTarget=function(a){void 0!==a&&(g=a)};this.getCamera=function(a){var b="stage"=== +n?1.6:0;if(null===e)return a.position.set(0,b,0),a;e.depthNear=a.near;e.depthFar=a.far;e.getFrameData(f);if("stage"===n){var c=e.stageParameters;c?k.fromArray(c.sittingToStandingTransform):k.makeTranslation(0,b,0)}b=f.pose;c=null!==g?g:a;c.matrix.copy(k);c.matrix.decompose(c.position,c.quaternion,c.scale);null!==b.orientation&&(l.fromArray(b.orientation),c.quaternion.multiply(l));null!==b.position&&(l.setFromRotationMatrix(k),t.fromArray(b.position),t.applyQuaternion(l),c.position.add(t));c.updateMatrixWorld(); +if(!1===e.isPresenting)return a;u.near=a.near;w.near=a.near;u.far=a.far;w.far=a.far;u.matrixWorldInverse.fromArray(f.leftViewMatrix);w.matrixWorldInverse.fromArray(f.rightViewMatrix);m.getInverse(k);"stage"===n&&(u.matrixWorldInverse.multiply(m),w.matrixWorldInverse.multiply(m));a=c.parent;null!==a&&(r.getInverse(a.matrixWorld),u.matrixWorldInverse.multiply(r),w.matrixWorldInverse.multiply(r));u.matrixWorld.getInverse(u.matrixWorldInverse);w.matrixWorld.getInverse(w.matrixWorldInverse);u.projectionMatrix.fromArray(f.leftProjectionMatrix); +w.projectionMatrix.fromArray(f.rightProjectionMatrix);ef(A,u,w);a=e.getLayers();a.length&&(a=a[0],null!==a.leftBounds&&4===a.leftBounds.length&&u.bounds.fromArray(a.leftBounds),null!==a.rightBounds&&4===a.rightBounds.length&&w.bounds.fromArray(a.rightBounds));a:for(a=0;af.normalMatrix.determinant();ba.setMaterial(e,h);var k=r(a,c,e,f),m=!1;if(b!==d.id||K!==k.id||sd!==(!0===e.wireframe))b=d.id,K=k.id,sd=!0===e.wireframe,m=!0;f.morphTargetInfluences&&(ya.update(f,d,e,k),m=!0);h=d.index;var q=d.attributes.position;c=1;!0===e.wireframe&&(h=ta.getWireframeAttribute(d),c=2);a=za;if(null!==h){var n=ra.get(h);a=Ba;a.setIndex(n)}if(m){if(d&& -d.isInstancedBufferGeometry&!xa.isWebGL2&&null===la.get("ANGLE_instanced_arrays"))console.error("THREE.WebGLRenderer.setupVertexAttributes: using THREE.InstancedBufferGeometry but hardware does not support extension ANGLE_instanced_arrays.");else{ba.initAttributes();m=d.attributes;k=k.getAttributes();var l=e.defaultAttributeValues;for(B in k){var v=k[B];if(0<=v){var t=m[B];if(void 0!==t){var u=t.normalized,p=t.itemSize,w=ra.get(t);if(void 0!==w){var y=w.buffer,x=w.type;w=w.bytesPerElement;if(t.isInterleavedBufferAttribute){var I= -t.data,F=I.stride;t=t.offset;I&&I.isInstancedInterleavedBuffer?(ba.enableAttributeAndDivisor(v,I.meshPerAttribute),void 0===d.maxInstancedCount&&(d.maxInstancedCount=I.meshPerAttribute*I.count)):ba.enableAttribute(v);D.bindBuffer(D.ARRAY_BUFFER,y);D.vertexAttribPointer(v,p,x,u,F*w,t*w)}else t.isInstancedBufferAttribute?(ba.enableAttributeAndDivisor(v,t.meshPerAttribute),void 0===d.maxInstancedCount&&(d.maxInstancedCount=t.meshPerAttribute*t.count)):ba.enableAttribute(v),D.bindBuffer(D.ARRAY_BUFFER, -y),D.vertexAttribPointer(v,p,x,u,0,0)}}else if(void 0!==l&&(u=l[B],void 0!==u))switch(u.length){case 2:D.vertexAttrib2fv(v,u);break;case 3:D.vertexAttrib3fv(v,u);break;case 4:D.vertexAttrib4fv(v,u);break;default:D.vertexAttrib1fv(v,u)}}}ba.disableUnusedAttributes()}null!==h&&D.bindBuffer(D.ELEMENT_ARRAY_BUFFER,n.buffer)}n=Infinity;null!==h?n=h.count:void 0!==q&&(n=q.count);h=d.drawRange.start*c;q=null!==g?g.start*c:0;var B=Math.max(h,q);g=Math.max(0,Math.min(n,h+d.drawRange.count*c,q+(null!==g?g.count* -c:Infinity))-1-B+1);if(0!==g){if(f.isMesh)if(!0===e.wireframe)ba.setLineWidth(e.wireframeLinewidth*(null===M?U:1)),a.setMode(D.LINES);else switch(f.drawMode){case 0:a.setMode(D.TRIANGLES);break;case 1:a.setMode(D.TRIANGLE_STRIP);break;case 2:a.setMode(D.TRIANGLE_FAN)}else f.isLine?(e=e.linewidth,void 0===e&&(e=1),ba.setLineWidth(e*(null===M?U:1)),f.isLineSegments?a.setMode(D.LINES):f.isLineLoop?a.setMode(D.LINE_LOOP):a.setMode(D.LINE_STRIP)):f.isPoints?a.setMode(D.POINTS):f.isSprite&&a.setMode(D.TRIANGLES); -d&&d.isInstancedBufferGeometry?0=xa.maxTextures&&console.warn("THREE.WebGLRenderer: Trying to use "+a+" texture units while this GPU supports only "+xa.maxTextures);ca+=1;return a};this.setTexture2D=function(){var a=!1;return function(b,c){b&&b.isWebGLRenderTarget&& -(a||(console.warn("THREE.WebGLRenderer.setTexture2D: don't use render targets as textures. Use their .texture property instead."),a=!0),b=b.texture);ha.setTexture2D(b,c)}}();this.setTexture3D=function(){return function(a,b){ha.setTexture3D(a,b)}}();this.setTexture=function(){var a=!1;return function(b,c){a||(console.warn("THREE.WebGLRenderer: .setTexture is deprecated, use setTexture2D instead."),a=!0);ha.setTexture2D(b,c)}}();this.setTextureCube=function(){var a=!1;return function(b,c){b&&b.isWebGLRenderTargetCube&& -(a||(console.warn("THREE.WebGLRenderer.setTextureCube: don't use cube render targets as textures. Use their .texture property instead."),a=!0),b=b.texture);b&&b.isCubeTexture||Array.isArray(b.image)&&6===b.image.length?ha.setTextureCube(b,c):ha.setTextureCubeDynamic(b,c)}}();this.setFramebuffer=function(a){N=a};this.getRenderTarget=function(){return M};this.setRenderTarget=function(a){(M=a)&&void 0===Da.get(a).__webglFramebuffer&&ha.setupRenderTarget(a);var b=N,c=!1;a?(b=Da.get(a).__webglFramebuffer, -a.isWebGLRenderTargetCube&&(b=b[a.activeCubeFace],c=!0),W.copy(a.viewport),Bc.copy(a.scissor),ea=a.scissorTest):(W.copy(fa).multiplyScalar(U),Bc.copy(ja).multiplyScalar(U),ea=sa);L!==b&&(D.bindFramebuffer(D.FRAMEBUFFER,b),L=b);ba.viewport(W);ba.scissor(Bc);ba.setScissorTest(ea);c&&(c=Da.get(a.texture),D.framebufferTexture2D(D.FRAMEBUFFER,D.COLOR_ATTACHMENT0,D.TEXTURE_CUBE_MAP_POSITIVE_X+a.activeCubeFace,c.__webglTexture,a.activeMipMapLevel))};this.readRenderTargetPixels=function(a,b,c,d,e,f){if(a&& -a.isWebGLRenderTarget){var g=Da.get(a).__webglFramebuffer;if(g){var h=!1;g!==L&&(D.bindFramebuffer(D.FRAMEBUFFER,g),h=!0);try{var k=a.texture,m=k.format,q=k.type;1023!==m&&ia.convert(m)!==D.getParameter(D.IMPLEMENTATION_COLOR_READ_FORMAT)?console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format."):1009===q||ia.convert(q)===D.getParameter(D.IMPLEMENTATION_COLOR_READ_TYPE)||1015===q&&(xa.isWebGL2||la.get("OES_texture_float")||la.get("WEBGL_color_buffer_float"))|| -1016===q&&(xa.isWebGL2?la.get("EXT_color_buffer_float"):la.get("EXT_color_buffer_half_float"))?D.checkFramebufferStatus(D.FRAMEBUFFER)===D.FRAMEBUFFER_COMPLETE?0<=b&&b<=a.width-d&&0<=c&&c<=a.height-e&&D.readPixels(b,c,d,e,ia.convert(m),ia.convert(q),f):console.error("THREE.WebGLRenderer.readRenderTargetPixels: readPixels from renderTarget failed. Framebuffer not complete."):console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in UnsignedByteType or implementation defined type.")}finally{h&& -D.bindFramebuffer(D.FRAMEBUFFER,L)}}}else console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.")};this.copyFramebufferToTexture=function(a,b,c){var d=b.image.width,e=b.image.height,f=ia.convert(b.format);this.setTexture2D(b,0);D.copyTexImage2D(D.TEXTURE_2D,c||0,f,a.x,a.y,d,e,0)};this.copyTextureToTexture=function(a,b,c,d){var e=b.image.width,f=b.image.height,g=ia.convert(c.format),h=ia.convert(c.type);this.setTexture2D(c,0);b.isDataTexture?D.texSubImage2D(D.TEXTURE_2D, -d||0,a.x,a.y,e,f,g,h,b.image.data):D.texSubImage2D(D.TEXTURE_2D,d||0,a.x,a.y,g,h,b.image)}}function Pb(a,b){this.name="";this.color=new G(a);this.density=void 0!==b?b:2.5E-4}function Qb(a,b,c){this.name="";this.color=new G(a);this.near=void 0!==b?b:1;this.far=void 0!==c?c:1E3}function vd(){C.call(this);this.type="Scene";this.overrideMaterial=this.fog=this.background=null;this.autoUpdate=!0}function qb(a,b){this.array=a;this.stride=b;this.count=void 0!==a?a.length/b:0;this.dynamic=!1;this.updateRange= -{offset:0,count:-1};this.version=0}function Dc(a,b,c,d){this.data=a;this.itemSize=b;this.offset=c;this.normalized=!0===d}function fb(a){L.call(this);this.type="SpriteMaterial";this.color=new G(16777215);this.map=null;this.rotation=0;this.sizeAttenuation=!0;this.lights=!1;this.transparent=!0;this.setValues(a)}function Ec(a){C.call(this);this.type="Sprite";if(void 0===Rb){Rb=new E;var b=new Float32Array([-.5,-.5,0,0,0,.5,-.5,0,1,0,.5,.5,0,1,1,-.5,.5,0,0,1]);b=new qb(b,5);Rb.setIndex([0,1,2,0,2,3]); -Rb.addAttribute("position",new Dc(b,3,0,!1));Rb.addAttribute("uv",new Dc(b,2,3,!1))}this.geometry=Rb;this.material=void 0!==a?a:new fb;this.center=new z(.5,.5)}function Fc(){C.call(this);this.type="LOD";Object.defineProperties(this,{levels:{enumerable:!0,value:[]}})}function Gc(a,b){a=a||[];this.bones=a.slice(0);this.boneMatrices=new Float32Array(16*this.bones.length);if(void 0===b)this.calculateInverses();else if(this.bones.length===b.length)this.boneInverses=b.slice(0);else for(console.warn("THREE.Skeleton boneInverses is the wrong length."), -this.boneInverses=[],a=0,b=this.bones.length;ac;c++){var n=q[h[c]];var r=q[h[(c+1)%3]];f[0]=Math.min(n,r);f[1]=Math.max(n,r);n=f[0]+","+f[1];void 0===g[n]&&(g[n]={index1:f[0],index2:f[1]})}}for(n in g)m=g[n],h=a.vertices[m.index1],b.push(h.x,h.y,h.z),h=a.vertices[m.index2],b.push(h.x,h.y,h.z)}else if(a&&a.isBufferGeometry)if(h=new p,null!==a.index){k=a.attributes.position;q=a.index;var l=a.groups;0===l.length&&(l=[{start:0, -count:q.count,materialIndex:0}]);a=0;for(e=l.length;ac;c++)n=q.getX(m+c),r=q.getX(m+(c+1)%3),f[0]=Math.min(n,r),f[1]=Math.max(n,r),n=f[0]+","+f[1],void 0===g[n]&&(g[n]={index1:f[0],index2:f[1]});for(n in g)m=g[n],h.fromBufferAttribute(k,m.index1),b.push(h.x,h.y,h.z),h.fromBufferAttribute(k,m.index2),b.push(h.x,h.y,h.z)}else for(k=a.attributes.position,m=0,d=k.count/3;mc;c++)g=3*m+c,h.fromBufferAttribute(k,g),b.push(h.x, -h.y,h.z),g=3*m+(c+1)%3,h.fromBufferAttribute(k,g),b.push(h.x,h.y,h.z);this.addAttribute("position",new A(b,3))}function Jc(a,b,c){M.call(this);this.type="ParametricGeometry";this.parameters={func:a,slices:b,stacks:c};this.fromBufferGeometry(new Vb(a,b,c));this.mergeVertices()}function Vb(a,b,c){E.call(this);this.type="ParametricBufferGeometry";this.parameters={func:a,slices:b,stacks:c};var d=[],e=[],f=[],g=[],h=new p,k=new p,m=new p,q=new p,n=new p,r,l;3>a.length&&console.error("THREE.ParametricGeometry: Function must now modify a Vector3 as third parameter."); -var t=b+1;for(r=0;r<=c;r++){var u=r/c;for(l=0;l<=b;l++){var y=l/b;a(y,u,k);e.push(k.x,k.y,k.z);0<=y-1E-5?(a(y-1E-5,u,m),q.subVectors(k,m)):(a(y+1E-5,u,m),q.subVectors(m,k));0<=u-1E-5?(a(y,u-1E-5,m),n.subVectors(k,m)):(a(y,u+1E-5,m),n.subVectors(m,k));h.crossVectors(q,n).normalize();f.push(h.x,h.y,h.z);g.push(y,u)}}for(r=0;rd&&1===a.x&&(k[b]=a.x-1);0===c.x&&0===c.z&&(k[b]=d/2/Math.PI+.5)}E.call(this);this.type="PolyhedronBufferGeometry";this.parameters={vertices:a, -indices:b,radius:c,detail:d};c=c||1;d=d||0;var h=[],k=[];(function(a){for(var c=new p,d=new p,g=new p,h=0;he&&(.2>b&&(k[a+0]+=1),.2>c&&(k[a+2]+=1),.2>d&&(k[a+4]+=1))})();this.addAttribute("position",new A(h,3));this.addAttribute("normal",new A(h.slice(),3));this.addAttribute("uv",new A(k,2));0===d?this.computeVertexNormals():this.normalizeNormals()}function Lc(a, -b){M.call(this);this.type="TetrahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new Wb(a,b));this.mergeVertices()}function Wb(a,b){ma.call(this,[1,1,1,-1,-1,1,-1,1,-1,1,-1,-1],[2,1,0,0,3,2,1,3,0,2,3,1],a,b);this.type="TetrahedronBufferGeometry";this.parameters={radius:a,detail:b}}function Mc(a,b){M.call(this);this.type="OctahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new rb(a,b));this.mergeVertices()}function rb(a,b){ma.call(this,[1,0,0, --1,0,0,0,1,0,0,-1,0,0,0,1,0,0,-1],[0,2,4,0,4,3,0,3,5,0,5,2,1,2,5,1,5,3,1,3,4,1,4,2],a,b);this.type="OctahedronBufferGeometry";this.parameters={radius:a,detail:b}}function Nc(a,b){M.call(this);this.type="IcosahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new Xb(a,b));this.mergeVertices()}function Xb(a,b){var c=(1+Math.sqrt(5))/2;ma.call(this,[-1,c,0,1,c,0,-1,-c,0,1,-c,0,0,-1,c,0,1,c,0,-1,-c,0,1,-c,c,0,-1,c,0,1,-c,0,-1,-c,0,1],[0,11,5,0,5,1,0,1,7,0,7,10,0,10,11,1,5,9,5, -11,4,11,10,2,10,7,6,7,1,8,3,9,4,3,4,2,3,2,6,3,6,8,3,8,9,4,9,5,2,4,11,6,2,10,8,6,7,9,8,1],a,b);this.type="IcosahedronBufferGeometry";this.parameters={radius:a,detail:b}}function Oc(a,b){M.call(this);this.type="DodecahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new Yb(a,b));this.mergeVertices()}function Yb(a,b){var c=(1+Math.sqrt(5))/2,d=1/c;ma.call(this,[-1,-1,-1,-1,-1,1,-1,1,-1,-1,1,1,1,-1,-1,1,-1,1,1,1,-1,1,1,1,0,-d,-c,0,-d,c,0,d,-c,0,d,c,-d,-c,0,-d,c,0,d,-c,0,d,c, -0,-c,0,-d,c,0,-d,-c,0,d,c,0,d],[3,11,7,3,7,15,3,15,13,7,19,17,7,17,6,7,6,15,17,4,8,17,8,10,17,10,6,8,0,16,8,16,2,8,2,10,0,12,1,0,1,18,0,18,16,6,10,2,6,2,13,6,13,15,2,16,18,2,18,3,2,3,13,18,1,9,18,9,11,18,11,3,4,14,12,4,12,0,4,0,8,11,9,5,11,5,19,11,19,7,19,5,14,19,14,4,19,4,17,1,12,14,1,14,5,1,5,9],a,b);this.type="DodecahedronBufferGeometry";this.parameters={radius:a,detail:b}}function Pc(a,b,c,d,e,f){M.call(this);this.type="TubeGeometry";this.parameters={path:a,tubularSegments:b,radius:c,radialSegments:d, +b.displacementScale,a.displacementBias.value=b.displacementBias);b.envMap&&(a.envMapIntensity.value=b.envMapIntensity)}console.log("THREE.WebGLRenderer","98dev");a=a||{};var w=void 0!==a.canvas?a.canvas:document.createElementNS("http://www.w3.org/1999/xhtml","canvas"),A=void 0!==a.context?a.context:null,v=void 0!==a.alpha?a.alpha:!1,H=void 0!==a.depth?a.depth:!0,y=void 0!==a.stencil?a.stencil:!0,N=void 0!==a.antialias?a.antialias:!1,z=void 0!==a.premultipliedAlpha?a.premultipliedAlpha:!0,B=void 0!== +a.preserveDrawingBuffer?a.preserveDrawingBuffer:!1,C=void 0!==a.powerPreference?a.powerPreference:"default",D=null,E=null;this.domElement=w;this.context=null;this.sortObjects=this.autoClearStencil=this.autoClearDepth=this.autoClearColor=this.autoClear=!0;this.clippingPlanes=[];this.localClippingEnabled=!1;this.gammaFactor=2;this.physicallyCorrectLights=this.gammaOutput=this.gammaInput=!1;this.toneMappingWhitePoint=this.toneMappingExposure=this.toneMapping=1;this.maxMorphTargets=8;this.maxMorphNormals= +4;var Y=this,G=!1,Q=null,I=null,L=null,F=-1;var K=b=null;var sd=!1;var T=null,W=null,S=new Z,Bc=new Z,ea=null,ca=0,V=w.width,M=w.height,U=1,fa=new Z(0,0,V,M),ja=new Z(0,0,V,M),sa=!1,qa=new rd,aa=new Tf,ud=!1,be=!1,Ac=new P,gb=new p;try{v={alpha:v,depth:H,stencil:y,antialias:N,premultipliedAlpha:z,preserveDrawingBuffer:B,powerPreference:C};w.addEventListener("webglcontextlost",d,!1);w.addEventListener("webglcontextrestored",e,!1);var O=A||w.getContext("webgl",v)||w.getContext("experimental-webgl", +v);if(null===O){if(null!==w.getContext("webgl"))throw Error("Error creating WebGL context with your selected attributes.");throw Error("Error creating WebGL context.");}void 0===O.getShaderPrecisionFormat&&(O.getShaderPrecisionFormat=function(){return{rangeMin:1,rangeMax:1,precision:1}})}catch(Tg){console.error("THREE.WebGLRenderer: "+Tg.message)}var la,xa,ba,da,Da,ha,ra,ua,oa,na,ta,pa,ma,ya,Aa,Ba,ia;c();var ka=null;"undefined"!==typeof navigator&&(ka="xr"in navigator?new Sg(Y):new hf(Y));this.vr= +ka;var Ca=new cf(Y,oa,xa.maxTextureSize);this.shadowMap=Ca;this.getContext=function(){return O};this.getContextAttributes=function(){return O.getContextAttributes()};this.forceContextLoss=function(){var a=la.get("WEBGL_lose_context");a&&a.loseContext()};this.forceContextRestore=function(){var a=la.get("WEBGL_lose_context");a&&a.restoreContext()};this.getPixelRatio=function(){return U};this.setPixelRatio=function(a){void 0!==a&&(U=a,this.setSize(V,M,!1))};this.getSize=function(){return{width:V,height:M}}; +this.setSize=function(a,b,c){ka.isPresenting()?console.warn("THREE.WebGLRenderer: Can't change size while VR device is presenting."):(V=a,M=b,w.width=a*U,w.height=b*U,!1!==c&&(w.style.width=a+"px",w.style.height=b+"px"),this.setViewport(0,0,a,b))};this.getDrawingBufferSize=function(){return{width:V*U,height:M*U}};this.setDrawingBufferSize=function(a,b,c){V=a;M=b;U=c;w.width=a*c;w.height=b*c;this.setViewport(0,0,a,b)};this.getCurrentViewport=function(){return S};this.setViewport=function(a,b,c,d){fa.set(a, +M-b-d,c,d);ba.viewport(S.copy(fa).multiplyScalar(U))};this.setScissor=function(a,b,c,d){ja.set(a,M-b-d,c,d);ba.scissor(Bc.copy(ja).multiplyScalar(U))};this.setScissorTest=function(a){ba.setScissorTest(sa=a)};this.getClearColor=function(){return ma.getClearColor()};this.setClearColor=function(){ma.setClearColor.apply(ma,arguments)};this.getClearAlpha=function(){return ma.getClearAlpha()};this.setClearAlpha=function(){ma.setClearAlpha.apply(ma,arguments)};this.clear=function(a,b,c){var d=0;if(void 0=== +a||a)d|=16384;if(void 0===b||b)d|=256;if(void 0===c||c)d|=1024;O.clear(d)};this.clearColor=function(){this.clear(!0,!1,!1)};this.clearDepth=function(){this.clear(!1,!0,!1)};this.clearStencil=function(){this.clear(!1,!1,!0)};this.dispose=function(){w.removeEventListener("webglcontextlost",d,!1);w.removeEventListener("webglcontextrestored",e,!1);ta.dispose();pa.dispose();Da.dispose();oa.dispose();ka.dispose();wa.stop()};this.renderBufferImmediate=function(a,b){ba.initAttributes();var c=Da.get(a);a.hasPositions&& +!c.position&&(c.position=O.createBuffer());a.hasNormals&&!c.normal&&(c.normal=O.createBuffer());a.hasUvs&&!c.uv&&(c.uv=O.createBuffer());a.hasColors&&!c.color&&(c.color=O.createBuffer());b=b.getAttributes();a.hasPositions&&(O.bindBuffer(34962,c.position),O.bufferData(34962,a.positionArray,35048),ba.enableAttribute(b.position),O.vertexAttribPointer(b.position,3,5126,!1,0,0));a.hasNormals&&(O.bindBuffer(34962,c.normal),O.bufferData(34962,a.normalArray,35048),ba.enableAttribute(b.normal),O.vertexAttribPointer(b.normal, +3,5126,!1,0,0));a.hasUvs&&(O.bindBuffer(34962,c.uv),O.bufferData(34962,a.uvArray,35048),ba.enableAttribute(b.uv),O.vertexAttribPointer(b.uv,2,5126,!1,0,0));a.hasColors&&(O.bindBuffer(34962,c.color),O.bufferData(34962,a.colorArray,35048),ba.enableAttribute(b.color),O.vertexAttribPointer(b.color,3,5126,!1,0,0));ba.disableUnusedAttributes();O.drawArrays(4,0,a.count);a.count=0};this.renderBufferDirect=function(a,c,d,e,f,g){var h=f.isMesh&&0>f.normalMatrix.determinant();ba.setMaterial(e,h);var k=r(a,c, +e,f),m=!1;if(b!==d.id||K!==k.id||sd!==(!0===e.wireframe))b=d.id,K=k.id,sd=!0===e.wireframe,m=!0;f.morphTargetInfluences&&(ya.update(f,d,e,k),m=!0);h=d.index;var q=d.attributes.position;c=1;!0===e.wireframe&&(h=ua.getWireframeAttribute(d),c=2);a=Aa;if(null!==h){var n=ra.get(h);a=Ba;a.setIndex(n)}if(m){if(d&&d.isInstancedBufferGeometry&!xa.isWebGL2&&null===la.get("ANGLE_instanced_arrays"))console.error("THREE.WebGLRenderer.setupVertexAttributes: using THREE.InstancedBufferGeometry but hardware does not support extension ANGLE_instanced_arrays."); +else{ba.initAttributes();m=d.attributes;k=k.getAttributes();var l=e.defaultAttributeValues;for(B in k){var x=k[B];if(0<=x){var t=m[B];if(void 0!==t){var u=t.normalized,w=t.itemSize,p=ra.get(t);if(void 0!==p){var v=p.buffer,A=p.type;p=p.bytesPerElement;if(t.isInterleavedBufferAttribute){var y=t.data,H=y.stride;t=t.offset;y&&y.isInstancedInterleavedBuffer?(ba.enableAttributeAndDivisor(x,y.meshPerAttribute),void 0===d.maxInstancedCount&&(d.maxInstancedCount=y.meshPerAttribute*y.count)):ba.enableAttribute(x); +O.bindBuffer(34962,v);O.vertexAttribPointer(x,w,A,u,H*p,t*p)}else t.isInstancedBufferAttribute?(ba.enableAttributeAndDivisor(x,t.meshPerAttribute),void 0===d.maxInstancedCount&&(d.maxInstancedCount=t.meshPerAttribute*t.count)):ba.enableAttribute(x),O.bindBuffer(34962,v),O.vertexAttribPointer(x,w,A,u,0,0)}}else if(void 0!==l&&(u=l[B],void 0!==u))switch(u.length){case 2:O.vertexAttrib2fv(x,u);break;case 3:O.vertexAttrib3fv(x,u);break;case 4:O.vertexAttrib4fv(x,u);break;default:O.vertexAttrib1fv(x,u)}}}ba.disableUnusedAttributes()}null!== +h&&O.bindBuffer(34963,n.buffer)}n=Infinity;null!==h?n=h.count:void 0!==q&&(n=q.count);h=d.drawRange.start*c;q=null!==g?g.start*c:0;var B=Math.max(h,q);g=Math.max(0,Math.min(n,h+d.drawRange.count*c,q+(null!==g?g.count*c:Infinity))-1-B+1);if(0!==g){if(f.isMesh)if(!0===e.wireframe)ba.setLineWidth(e.wireframeLinewidth*(null===I?U:1)),a.setMode(1);else switch(f.drawMode){case 0:a.setMode(4);break;case 1:a.setMode(5);break;case 2:a.setMode(6)}else f.isLine?(e=e.linewidth,void 0===e&&(e=1),ba.setLineWidth(e* +(null===I?U:1)),f.isLineSegments?a.setMode(1):f.isLineLoop?a.setMode(2):a.setMode(3)):f.isPoints?a.setMode(0):f.isSprite&&a.setMode(4);d&&d.isInstancedBufferGeometry?0=xa.maxTextures&&console.warn("THREE.WebGLRenderer: Trying to use "+a+" texture units while this GPU supports only "+ +xa.maxTextures);ca+=1;return a};this.setTexture2D=function(){var a=!1;return function(b,c){b&&b.isWebGLRenderTarget&&(a||(console.warn("THREE.WebGLRenderer.setTexture2D: don't use render targets as textures. Use their .texture property instead."),a=!0),b=b.texture);ha.setTexture2D(b,c)}}();this.setTexture3D=function(){return function(a,b){ha.setTexture3D(a,b)}}();this.setTexture=function(){var a=!1;return function(b,c){a||(console.warn("THREE.WebGLRenderer: .setTexture is deprecated, use setTexture2D instead."), +a=!0);ha.setTexture2D(b,c)}}();this.setTextureCube=function(){var a=!1;return function(b,c){b&&b.isWebGLRenderTargetCube&&(a||(console.warn("THREE.WebGLRenderer.setTextureCube: don't use cube render targets as textures. Use their .texture property instead."),a=!0),b=b.texture);b&&b.isCubeTexture||Array.isArray(b.image)&&6===b.image.length?ha.setTextureCube(b,c):ha.setTextureCubeDynamic(b,c)}}();this.setFramebuffer=function(a){Q=a};this.getRenderTarget=function(){return I};this.setRenderTarget=function(a){(I= +a)&&void 0===Da.get(a).__webglFramebuffer&&ha.setupRenderTarget(a);var b=Q,c=!1;a?(b=Da.get(a).__webglFramebuffer,a.isWebGLRenderTargetCube&&(b=b[a.activeCubeFace],c=!0),S.copy(a.viewport),Bc.copy(a.scissor),ea=a.scissorTest):(S.copy(fa).multiplyScalar(U),Bc.copy(ja).multiplyScalar(U),ea=sa);L!==b&&(O.bindFramebuffer(36160,b),L=b);ba.viewport(S);ba.scissor(Bc);ba.setScissorTest(ea);c&&(c=Da.get(a.texture),O.framebufferTexture2D(36160,36064,34069+a.activeCubeFace,c.__webglTexture,a.activeMipMapLevel))}; +this.readRenderTargetPixels=function(a,b,c,d,e,f){if(a&&a.isWebGLRenderTarget){var g=Da.get(a).__webglFramebuffer;if(g){var h=!1;g!==L&&(O.bindFramebuffer(36160,g),h=!0);try{var k=a.texture,m=k.format,q=k.type;1023!==m&&ia.convert(m)!==O.getParameter(35739)?console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format."):1009===q||ia.convert(q)===O.getParameter(35738)||1015===q&&(xa.isWebGL2||la.get("OES_texture_float")||la.get("WEBGL_color_buffer_float"))|| +1016===q&&(xa.isWebGL2?la.get("EXT_color_buffer_float"):la.get("EXT_color_buffer_half_float"))?36053===O.checkFramebufferStatus(36160)?0<=b&&b<=a.width-d&&0<=c&&c<=a.height-e&&O.readPixels(b,c,d,e,ia.convert(m),ia.convert(q),f):console.error("THREE.WebGLRenderer.readRenderTargetPixels: readPixels from renderTarget failed. Framebuffer not complete."):console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in UnsignedByteType or implementation defined type.")}finally{h&&O.bindFramebuffer(36160, +L)}}}else console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.")};this.copyFramebufferToTexture=function(a,b,c){var d=b.image.width,e=b.image.height,f=ia.convert(b.format);this.setTexture2D(b,0);O.copyTexImage2D(3553,c||0,f,a.x,a.y,d,e,0)};this.copyTextureToTexture=function(a,b,c,d){var e=b.image.width,f=b.image.height,g=ia.convert(c.format),h=ia.convert(c.type);this.setTexture2D(c,0);b.isDataTexture?O.texSubImage2D(3553,d||0,a.x,a.y,e,f,g,h,b.image.data): +O.texSubImage2D(3553,d||0,a.x,a.y,g,h,b.image)}}function Pb(a,b){this.name="";this.color=new G(a);this.density=void 0!==b?b:2.5E-4}function Qb(a,b,c){this.name="";this.color=new G(a);this.near=void 0!==b?b:1;this.far=void 0!==c?c:1E3}function vd(){D.call(this);this.type="Scene";this.overrideMaterial=this.fog=this.background=null;this.autoUpdate=!0}function sb(a,b){this.array=a;this.stride=b;this.count=void 0!==a?a.length/b:0;this.dynamic=!1;this.updateRange={offset:0,count:-1};this.version=0}function Dc(a, +b,c,d){this.data=a;this.itemSize=b;this.offset=c;this.normalized=!0===d}function hb(a){L.call(this);this.type="SpriteMaterial";this.color=new G(16777215);this.map=null;this.rotation=0;this.sizeAttenuation=!0;this.lights=!1;this.transparent=!0;this.setValues(a)}function Ec(a){D.call(this);this.type="Sprite";if(void 0===Rb){Rb=new E;var b=new Float32Array([-.5,-.5,0,0,0,.5,-.5,0,1,0,.5,.5,0,1,1,-.5,.5,0,0,1]);b=new sb(b,5);Rb.setIndex([0,1,2,0,2,3]);Rb.addAttribute("position",new Dc(b,3,0,!1));Rb.addAttribute("uv", +new Dc(b,2,3,!1))}this.geometry=Rb;this.material=void 0!==a?a:new hb;this.center=new z(.5,.5)}function Fc(){D.call(this);this.type="LOD";Object.defineProperties(this,{levels:{enumerable:!0,value:[]}})}function Gc(a,b){a=a||[];this.bones=a.slice(0);this.boneMatrices=new Float32Array(16*this.bones.length);if(void 0===b)this.calculateInverses();else if(this.bones.length===b.length)this.boneInverses=b.slice(0);else for(console.warn("THREE.Skeleton boneInverses is the wrong length."),this.boneInverses= +[],a=0,b=this.bones.length;ac;c++){var n=q[h[c]];var r=q[h[(c+1)%3]];f[0]=Math.min(n,r);f[1]=Math.max(n,r);n=f[0]+","+f[1];void 0===g[n]&&(g[n]={index1:f[0],index2:f[1]})}}for(n in g)m=g[n],h=a.vertices[m.index1],b.push(h.x,h.y,h.z),h=a.vertices[m.index2],b.push(h.x,h.y,h.z)}else if(a&&a.isBufferGeometry)if(h=new p,null!==a.index){k=a.attributes.position;q=a.index;var l=a.groups;0===l.length&&(l=[{start:0,count:q.count, +materialIndex:0}]);a=0;for(e=l.length;ac;c++)n=q.getX(m+c),r=q.getX(m+(c+1)%3),f[0]=Math.min(n,r),f[1]=Math.max(n,r),n=f[0]+","+f[1],void 0===g[n]&&(g[n]={index1:f[0],index2:f[1]});for(n in g)m=g[n],h.fromBufferAttribute(k,m.index1),b.push(h.x,h.y,h.z),h.fromBufferAttribute(k,m.index2),b.push(h.x,h.y,h.z)}else for(k=a.attributes.position,m=0,d=k.count/3;mc;c++)g=3*m+c,h.fromBufferAttribute(k,g),b.push(h.x,h.y,h.z), +g=3*m+(c+1)%3,h.fromBufferAttribute(k,g),b.push(h.x,h.y,h.z);this.addAttribute("position",new C(b,3))}function Jc(a,b,c){I.call(this);this.type="ParametricGeometry";this.parameters={func:a,slices:b,stacks:c};this.fromBufferGeometry(new Vb(a,b,c));this.mergeVertices()}function Vb(a,b,c){E.call(this);this.type="ParametricBufferGeometry";this.parameters={func:a,slices:b,stacks:c};var d=[],e=[],f=[],g=[],h=new p,k=new p,m=new p,q=new p,n=new p,r,l;3>a.length&&console.error("THREE.ParametricGeometry: Function must now modify a Vector3 as third parameter."); +var t=b+1;for(r=0;r<=c;r++){var u=r/c;for(l=0;l<=b;l++){var w=l/b;a(w,u,k);e.push(k.x,k.y,k.z);0<=w-1E-5?(a(w-1E-5,u,m),q.subVectors(k,m)):(a(w+1E-5,u,m),q.subVectors(m,k));0<=u-1E-5?(a(w,u-1E-5,m),n.subVectors(k,m)):(a(w,u+1E-5,m),n.subVectors(m,k));h.crossVectors(q,n).normalize();f.push(h.x,h.y,h.z);g.push(w,u)}}for(r=0;rd&&1===a.x&&(k[b]=a.x-1);0===c.x&&0===c.z&&(k[b]=d/2/Math.PI+.5)}E.call(this);this.type="PolyhedronBufferGeometry";this.parameters={vertices:a, +indices:b,radius:c,detail:d};c=c||1;d=d||0;var h=[],k=[];(function(a){for(var c=new p,d=new p,g=new p,h=0;he&&(.2>b&&(k[a+0]+=1),.2>c&&(k[a+2]+=1),.2>d&&(k[a+4]+=1))})();this.addAttribute("position",new C(h,3));this.addAttribute("normal",new C(h.slice(),3));this.addAttribute("uv",new C(k,2));0===d?this.computeVertexNormals():this.normalizeNormals()}function Lc(a, +b){I.call(this);this.type="TetrahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new Wb(a,b));this.mergeVertices()}function Wb(a,b){ya.call(this,[1,1,1,-1,-1,1,-1,1,-1,1,-1,-1],[2,1,0,0,3,2,1,3,0,2,3,1],a,b);this.type="TetrahedronBufferGeometry";this.parameters={radius:a,detail:b}}function Mc(a,b){I.call(this);this.type="OctahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new tb(a,b));this.mergeVertices()}function tb(a,b){ya.call(this,[1,0,0, +-1,0,0,0,1,0,0,-1,0,0,0,1,0,0,-1],[0,2,4,0,4,3,0,3,5,0,5,2,1,2,5,1,5,3,1,3,4,1,4,2],a,b);this.type="OctahedronBufferGeometry";this.parameters={radius:a,detail:b}}function Nc(a,b){I.call(this);this.type="IcosahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new Xb(a,b));this.mergeVertices()}function Xb(a,b){var c=(1+Math.sqrt(5))/2;ya.call(this,[-1,c,0,1,c,0,-1,-c,0,1,-c,0,0,-1,c,0,1,c,0,-1,-c,0,1,-c,c,0,-1,c,0,1,-c,0,-1,-c,0,1],[0,11,5,0,5,1,0,1,7,0,7,10,0,10,11,1,5,9,5, +11,4,11,10,2,10,7,6,7,1,8,3,9,4,3,4,2,3,2,6,3,6,8,3,8,9,4,9,5,2,4,11,6,2,10,8,6,7,9,8,1],a,b);this.type="IcosahedronBufferGeometry";this.parameters={radius:a,detail:b}}function Oc(a,b){I.call(this);this.type="DodecahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new Yb(a,b));this.mergeVertices()}function Yb(a,b){var c=(1+Math.sqrt(5))/2,d=1/c;ya.call(this,[-1,-1,-1,-1,-1,1,-1,1,-1,-1,1,1,1,-1,-1,1,-1,1,1,1,-1,1,1,1,0,-d,-c,0,-d,c,0,d,-c,0,d,c,-d,-c,0,-d,c,0,d,-c,0,d,c, +0,-c,0,-d,c,0,-d,-c,0,d,c,0,d],[3,11,7,3,7,15,3,15,13,7,19,17,7,17,6,7,6,15,17,4,8,17,8,10,17,10,6,8,0,16,8,16,2,8,2,10,0,12,1,0,1,18,0,18,16,6,10,2,6,2,13,6,13,15,2,16,18,2,18,3,2,3,13,18,1,9,18,9,11,18,11,3,4,14,12,4,12,0,4,0,8,11,9,5,11,5,19,11,19,7,19,5,14,19,14,4,19,4,17,1,12,14,1,14,5,1,5,9],a,b);this.type="DodecahedronBufferGeometry";this.parameters={radius:a,detail:b}}function Pc(a,b,c,d,e,f){I.call(this);this.type="TubeGeometry";this.parameters={path:a,tubularSegments:b,radius:c,radialSegments:d, closed:e};void 0!==f&&console.warn("THREE.TubeGeometry: taper has been removed.");a=new Zb(a,b,c,d,e);this.tangents=a.tangents;this.normals=a.normals;this.binormals=a.binormals;this.fromBufferGeometry(a);this.mergeVertices()}function Zb(a,b,c,d,e){function f(e){q=a.getPointAt(e/b,q);var f=g.normals[e];e=g.binormals[e];for(r=0;r<=d;r++){var m=r/d*Math.PI*2,n=Math.sin(m);m=-Math.cos(m);k.x=m*f.x+n*e.x;k.y=m*f.y+n*e.y;k.z=m*f.z+n*e.z;k.normalize();t.push(k.x,k.y,k.z);h.x=q.x+c*k.x;h.y=q.y+c*k.y;h.z= -q.z+c*k.z;l.push(h.x,h.y,h.z)}}E.call(this);this.type="TubeBufferGeometry";this.parameters={path:a,tubularSegments:b,radius:c,radialSegments:d,closed:e};b=b||64;c=c||1;d=d||8;e=e||!1;var g=a.computeFrenetFrames(b,e);this.tangents=g.tangents;this.normals=g.normals;this.binormals=g.binormals;var h=new p,k=new p,m=new z,q=new p,n,r,l=[],t=[],u=[],y=[];for(n=0;n=b;e-=d)f=ff(e,a[e],a[e+1],f);f&&sb(f,f.next)&&(Sc(f),f=f.next);return f}function Tc(a,b){if(!a)return a;b||(b=a);do{var c=!1;if(a.steiner||!sb(a,a.next)&&0!==na(a.prev,a,a.next))a=a.next;else{Sc(a);a=b=a.prev;if(a===a.next)break;c=!0}}while(c||a!==b);return b} -function Uc(a,b,c,d,e,f,g){if(a){if(!g&&f){var h=a,k=h;do null===k.z&&(k.z=ee(k.x,k.y,d,e,f)),k.prevZ=k.prev,k=k.nextZ=k.next;while(k!==h);k.prevZ.nextZ=null;k.prevZ=null;h=k;var m,q,n,l,v=1;do{k=h;var t=h=null;for(q=0;k;){q++;var u=k;for(m=n=0;mn.x?q.x>v.x?q.x:v.x:n.x>v.x?n.x:v.x,F=q.y>n.y?q.y>v.y?q.y:v.y:n.y>v.y?n.y:v.y;m=ee(q.x=m;){if(p!==t.prev&&p!==t.next&&zd(q.x,q.y,n.x,n.y,v.x,v.y,p.x,p.y)&&0<=na(p.prev,p,p.next)){t=!1;break a}p= -p.prevZ}t=!0}}else a:if(t=a,q=t.prev,n=t,v=t.next,0<=na(q,n,v))t=!1;else{for(m=t.next.next;m!==t.prev;){if(zd(q.x,q.y,n.x,n.y,v.x,v.y,m.x,m.y)&&0<=na(m.prev,m,m.next)){t=!1;break a}m=m.next}t=!0}if(t)b.push(k.i/c),b.push(a.i/c),b.push(u.i/c),Sc(a),h=a=u.next;else if(a=u,a===h){if(!g)Uc(Tc(a),b,c,d,e,f,1);else if(1===g){g=b;h=c;k=a;do u=k.prev,t=k.next.next,!sb(u,t)&&gf(u,k,k.next,t)&&Vc(u,t)&&Vc(t,u)&&(g.push(u.i/h),g.push(k.i/h),g.push(t.i/h),Sc(k),Sc(k.next),k=a=t),k=k.next;while(k!==a);a=k;Uc(a, -b,c,d,e,f,2)}else if(2===g)a:{g=a;do{for(h=g.next.next;h!==g.prev;){if(k=g.i!==h.i){k=g;u=h;if(t=k.next.i!==u.i&&k.prev.i!==u.i){b:{t=k;do{if(t.i!==k.i&&t.next.i!==k.i&&t.i!==u.i&&t.next.i!==u.i&&gf(t,t.next,k,u)){t=!0;break b}t=t.next}while(t!==k);t=!1}t=!t}if(t=t&&Vc(k,u)&&Vc(u,k)){t=k;q=!1;n=(k.x+u.x)/2;u=(k.y+u.y)/2;do t.y>u!==t.next.y>u&&t.next.y!==t.y&&n<(t.next.x-t.x)*(u-t.y)/(t.next.y-t.y)+t.x&&(q=!q),t=t.next;while(t!==k);t=q}k=t}if(k){a=hf(g,h);g=Tc(g,g.next);a=Tc(a,a.next);Uc(g,b,c,d,e, -f);Uc(a,b,c,d,e,f);break a}h=h.next}g=g.next}while(g!==a)}break}}}}function Qg(a,b){return a.x-b.x}function Rg(a,b){var c=b,d=a.x,e=a.y,f=-Infinity;do{if(e<=c.y&&e>=c.next.y&&c.next.y!==c.y){var g=c.x+(e-c.y)*(c.next.x-c.x)/(c.next.y-c.y);if(g<=d&&g>f){f=g;if(g===d){if(e===c.y)return c;if(e===c.next.y)return c.next}var h=c.x=c.x&&c.x>=g&&d!==c.x&&zd(eh.x)&&Vc(c,a)&&(h=c,m=q)}c=c.next}return h}function ee(a,b,c,d,e){a=32767*(a-c)*e;b=32767*(b-d)*e;a=(a|a<<8)&16711935;a=(a|a<<4)&252645135;a=(a|a<<2)&858993459;b=(b|b<<8)&16711935;b=(b|b<<4)&252645135;b=(b|b<<2)&858993459;return(a|a<<1)&1431655765|((b|b<<1)&1431655765)<<1}function Sg(a){var b=a,c=a;do b.xna(a.prev,a,a.next)?0<=na(a,b,a.next)&&0<=na(a,a.prev,b):0>na(a,b,a.prev)||0>na(a,a.next,b)}function hf(a,b){var c=new fe(a.i,a.x,a.y),d=new fe(b.i,b.x,b.y),e=a.next,f=b.prev;a.next=b;b.prev=a;c.next=e;e.prev= -c;d.next=c;c.prev=d;f.next=d;d.prev=f;return d}function ff(a,b,c,d){a=new fe(a,b,c);d?(a.next=d.next,a.prev=d,d.next.prev=a,d.next=a):(a.prev=a,a.next=a);return a}function Sc(a){a.next.prev=a.prev;a.prev.next=a.next;a.prevZ&&(a.prevZ.nextZ=a.nextZ);a.nextZ&&(a.nextZ.prevZ=a.prevZ)}function fe(a,b,c){this.i=a;this.x=b;this.y=c;this.nextZ=this.prevZ=this.z=this.next=this.prev=null;this.steiner=!1}function jf(a){var b=a.length;2Number.EPSILON){var k=Math.sqrt(h),m=Math.sqrt(f*f+g*g);h=b.x-e/k;b=b.y+d/k; -g=((c.x-g/m-h)*g-(c.y+f/m-b)*f)/(d*g-e*f);f=h+d*g-a.x;d=b+e*g-a.y;e=f*f+d*d;if(2>=e)return new z(f,d);e=Math.sqrt(e/2)}else a=!1,d>Number.EPSILON?f>Number.EPSILON&&(a=!0):d<-Number.EPSILON?f<-Number.EPSILON&&(a=!0):Math.sign(e)===Math.sign(g)&&(a=!0),a?(f=-e,e=Math.sqrt(h)):(f=d,d=e,e=Math.sqrt(h/2));return new z(f/e,d/e)}function h(a,b){for(O=a.length;0<=--O;){var c=O;var f=O-1;0>f&&(f=a.length-1);var g,h=w+2*B;for(g=0;g=b;e-=d)f=kf(e,a[e],a[e+1],f);f&&ub(f,f.next)&&(Sc(f),f=f.next);return f}function Tc(a,b){if(!a)return a;b||(b=a);do{var c=!1;if(a.steiner||!ub(a,a.next)&&0!==na(a.prev,a,a.next))a=a.next;else{Sc(a);a=b=a.prev;if(a===a.next)break;c=!0}}while(c||a!==b);return b} +function Uc(a,b,c,d,e,f,g){if(a){if(!g&&f){var h=a,k=h;do null===k.z&&(k.z=ee(k.x,k.y,d,e,f)),k.prevZ=k.prev,k=k.nextZ=k.next;while(k!==h);k.prevZ.nextZ=null;k.prevZ=null;h=k;var m,q,n,r,l=1;do{k=h;var t=h=null;for(q=0;k;){q++;var u=k;for(m=n=0;mn.x?q.x>l.x?q.x:l.x:n.x>l.x?n.x:l.x,H=q.y>n.y?q.y>l.y?q.y:l.y:n.y>l.y?n.y:l.y;m=ee(q.x=m;){if(p!==t.prev&&p!==t.next&&zd(q.x,q.y,n.x,n.y,l.x,l.y,p.x,p.y)&&0<=na(p.prev,p,p.next)){t=!1;break a}p= +p.prevZ}t=!0}}else a:if(t=a,q=t.prev,n=t,l=t.next,0<=na(q,n,l))t=!1;else{for(m=t.next.next;m!==t.prev;){if(zd(q.x,q.y,n.x,n.y,l.x,l.y,m.x,m.y)&&0<=na(m.prev,m,m.next)){t=!1;break a}m=m.next}t=!0}if(t)b.push(k.i/c),b.push(a.i/c),b.push(u.i/c),Sc(a),h=a=u.next;else if(a=u,a===h){if(!g)Uc(Tc(a),b,c,d,e,f,1);else if(1===g){g=b;h=c;k=a;do u=k.prev,t=k.next.next,!ub(u,t)&&lf(u,k,k.next,t)&&Vc(u,t)&&Vc(t,u)&&(g.push(u.i/h),g.push(k.i/h),g.push(t.i/h),Sc(k),Sc(k.next),k=a=t),k=k.next;while(k!==a);a=k;Uc(a, +b,c,d,e,f,2)}else if(2===g)a:{g=a;do{for(h=g.next.next;h!==g.prev;){if(k=g.i!==h.i){k=g;u=h;if(t=k.next.i!==u.i&&k.prev.i!==u.i){b:{t=k;do{if(t.i!==k.i&&t.next.i!==k.i&&t.i!==u.i&&t.next.i!==u.i&&lf(t,t.next,k,u)){t=!0;break b}t=t.next}while(t!==k);t=!1}t=!t}if(t=t&&Vc(k,u)&&Vc(u,k)){t=k;q=!1;n=(k.x+u.x)/2;u=(k.y+u.y)/2;do t.y>u!==t.next.y>u&&t.next.y!==t.y&&n<(t.next.x-t.x)*(u-t.y)/(t.next.y-t.y)+t.x&&(q=!q),t=t.next;while(t!==k);t=q}k=t}if(k){a=mf(g,h);g=Tc(g,g.next);a=Tc(a,a.next);Uc(g,b,c,d,e, +f);Uc(a,b,c,d,e,f);break a}h=h.next}g=g.next}while(g!==a)}break}}}}function Ug(a,b){return a.x-b.x}function Vg(a,b){var c=b,d=a.x,e=a.y,f=-Infinity;do{if(e<=c.y&&e>=c.next.y&&c.next.y!==c.y){var g=c.x+(e-c.y)*(c.next.x-c.x)/(c.next.y-c.y);if(g<=d&&g>f){f=g;if(g===d){if(e===c.y)return c;if(e===c.next.y)return c.next}var h=c.x=c.x&&c.x>=g&&d!==c.x&&zd(eh.x)&&Vc(c,a)&&(h=c,m=q)}c=c.next}return h}function ee(a,b,c,d,e){a=32767*(a-c)*e;b=32767*(b-d)*e;a=(a|a<<8)&16711935;a=(a|a<<4)&252645135;a=(a|a<<2)&858993459;b=(b|b<<8)&16711935;b=(b|b<<4)&252645135;b=(b|b<<2)&858993459;return(a|a<<1)&1431655765|((b|b<<1)&1431655765)<<1}function Wg(a){var b=a,c=a;do b.xna(a.prev,a,a.next)?0<=na(a,b,a.next)&&0<=na(a,a.prev,b):0>na(a,b,a.prev)||0>na(a,a.next,b)}function mf(a,b){var c=new fe(a.i,a.x,a.y),d=new fe(b.i,b.x,b.y),e=a.next,f=b.prev;a.next=b;b.prev=a;c.next=e;e.prev= +c;d.next=c;c.prev=d;f.next=d;d.prev=f;return d}function kf(a,b,c,d){a=new fe(a,b,c);d?(a.next=d.next,a.prev=d,d.next.prev=a,d.next=a):(a.prev=a,a.next=a);return a}function Sc(a){a.next.prev=a.prev;a.prev.next=a.next;a.prevZ&&(a.prevZ.nextZ=a.nextZ);a.nextZ&&(a.nextZ.prevZ=a.prevZ)}function fe(a,b,c){this.i=a;this.x=b;this.y=c;this.nextZ=this.prevZ=this.z=this.next=this.prev=null;this.steiner=!1}function nf(a){var b=a.length;2Number.EPSILON){var k=Math.sqrt(h),m=Math.sqrt(f*f+g*g);h=b.x-e/k;b=b.y+d/k; +g=((c.x-g/m-h)*g-(c.y+f/m-b)*f)/(d*g-e*f);f=h+d*g-a.x;d=b+e*g-a.y;e=f*f+d*d;if(2>=e)return new z(f,d);e=Math.sqrt(e/2)}else a=!1,d>Number.EPSILON?f>Number.EPSILON&&(a=!0):d<-Number.EPSILON?f<-Number.EPSILON&&(a=!0):Math.sign(e)===Math.sign(g)&&(a=!0),a?(f=-e,e=Math.sqrt(h)):(f=d,d=e,e=Math.sqrt(h/2));return new z(f/e,d/e)}function h(a,b){for(M=a.length;0<=--M;){var c=M;var f=M-1;0>f&&(f=a.length-1);var g,h=v+2*B;for(g=0;gq;q++){var n=m[f[q]];var l=m[f[(q+1)%3]];d[0]=Math.min(n,l);d[1]=Math.max(n,l);n=d[0]+","+d[1];void 0===e[n]?e[n]={index1:d[0],index2:d[1],face1:h,face2:void 0}:e[n].face2=h}for(n in e)if(d=e[n],void 0===d.face2||g[d.face1].normal.dot(g[d.face2].normal)<=b)f=a[d.index1], -c.push(f.x,f.y,f.z),f=a[d.index2],c.push(f.x,f.y,f.z);this.addAttribute("position",new A(c,3))}function xb(a,b,c,d,e,f,g,h){M.call(this);this.type="CylinderGeometry";this.parameters={radiusTop:a,radiusBottom:b,height:c,radialSegments:d,heightSegments:e,openEnded:f,thetaStart:g,thetaLength:h};this.fromBufferGeometry(new $a(a,b,c,d,e,f,g,h));this.mergeVertices()}function $a(a,b,c,d,e,f,g,h){function k(c){var e,f=new z,k=new p,r=0,u=!0===c?a:b,w=!0===c?1:-1;var A=t;for(e=1;e<=d;e++)n.push(0,y*w,0),l.push(0, -w,0),v.push(.5,.5),t++;var E=t;for(e=0;e<=d;e++){var C=e/d*h+g,J=Math.cos(C);C=Math.sin(C);k.x=u*C;k.y=y*w;k.z=u*J;n.push(k.x,k.y,k.z);l.push(0,w,0);f.x=.5*J+.5;f.y=.5*C*w+.5;v.push(f.x,f.y);t++}for(e=0;eq;q++){var n=m[f[q]];var l=m[f[(q+1)%3]];d[0]=Math.min(n,l);d[1]=Math.max(n,l);n=d[0]+","+d[1];void 0===e[n]?e[n]={index1:d[0],index2:d[1],face1:h,face2:void 0}:e[n].face2=h}for(n in e)if(d=e[n],void 0===d.face2||g[d.face1].normal.dot(g[d.face2].normal)<=b)f=a[d.index1], +c.push(f.x,f.y,f.z),f=a[d.index2],c.push(f.x,f.y,f.z);this.addAttribute("position",new C(c,3))}function zb(a,b,c,d,e,f,g,h){I.call(this);this.type="CylinderGeometry";this.parameters={radiusTop:a,radiusBottom:b,height:c,radialSegments:d,heightSegments:e,openEnded:f,thetaStart:g,thetaLength:h};this.fromBufferGeometry(new $a(a,b,c,d,e,f,g,h));this.mergeVertices()}function $a(a,b,c,d,e,f,g,h){function k(c){var e,f=new z,k=new p,r=0,u=!0===c?a:b,v=!0===c?1:-1;var C=t;for(e=1;e<=d;e++)n.push(0,w*v,0),l.push(0, +v,0),x.push(.5,.5),t++;var D=t;for(e=0;e<=d;e++){var E=e/d*h+g,F=Math.cos(E);E=Math.sin(E);k.x=u*E;k.y=w*v;k.z=u*F;n.push(k.x,k.y,k.z);l.push(0,v,0);f.x=.5*F+.5;f.y=.5*E*v+.5;x.push(f.x,f.y);t++}for(e=0;ethis.duration&&this.resetDuration()}function Ug(a){switch(a.toLowerCase()){case "scalar":case "double":case "float":case "number":case "integer":return ic;case "vector":case "vector2":case "vector3":case "vector4":return jc;case "color":return Md;case "quaternion":return hd;case "bool":case "boolean":return Ld;case "string":return Od}throw Error("THREE.KeyframeTrack: Unsupported typeName: "+ -a);}function Vg(a){if(void 0===a.type)throw Error("THREE.KeyframeTrack: track type undefined, can not parse");var b=Ug(a.type);if(void 0===a.times){var c=[],d=[];ra.flattenJSON(a.keys,c,d,"value");a.times=c;a.values=d}return void 0!==b.parse?b.parse(a):new b(a.name,a.times,a.values,a.interpolation)}function Pd(a){this.manager=void 0!==a?a:ya;this.textures={}}function ke(a){this.manager=void 0!==a?a:ya}function kc(){}function Qd(a){"boolean"===typeof a&&(console.warn("THREE.JSONLoader: showStatus parameter has been removed from constructor."), -a=void 0);this.manager=void 0!==a?a:ya;this.withCredentials=!1}function le(a){this.manager=void 0!==a?a:ya;this.resourcePath=""}function me(a){"undefined"===typeof createImageBitmap&&console.warn("THREE.ImageBitmapLoader: createImageBitmap() not supported.");"undefined"===typeof fetch&&console.warn("THREE.ImageBitmapLoader: fetch() not supported.");this.manager=void 0!==a?a:ya;this.options=void 0}function ne(){this.type="ShapePath";this.color=new G;this.subPaths=[];this.currentPath=null}function oe(a){this.type= -"Font";this.data=a}function pf(a){this.manager=void 0!==a?a:ya}function pe(a){this.manager=void 0!==a?a:ya}function qf(){this.type="StereoCamera";this.aspect=1;this.eyeSep=.064;this.cameraL=new V;this.cameraL.layers.enable(1);this.cameraL.matrixAutoUpdate=!1;this.cameraR=new V;this.cameraR.layers.enable(2);this.cameraR.matrixAutoUpdate=!1}function id(a,b,c){C.call(this);this.type="CubeCamera";var d=new V(90,1,a,b);d.up.set(0,-1,0);d.lookAt(new p(1,0,0));this.add(d);var e=new V(90,1,a,b);e.up.set(0, --1,0);e.lookAt(new p(-1,0,0));this.add(e);var f=new V(90,1,a,b);f.up.set(0,0,1);f.lookAt(new p(0,1,0));this.add(f);var g=new V(90,1,a,b);g.up.set(0,0,-1);g.lookAt(new p(0,-1,0));this.add(g);var h=new V(90,1,a,b);h.up.set(0,-1,0);h.lookAt(new p(0,0,1));this.add(h);var k=new V(90,1,a,b);k.up.set(0,-1,0);k.lookAt(new p(0,0,-1));this.add(k);this.renderTarget=new Jb(c,c,{format:1022,magFilter:1006,minFilter:1006});this.renderTarget.texture.name="CubeCamera";this.update=function(a,b){null===this.parent&& -this.updateMatrixWorld();var c=this.renderTarget,m=c.texture.generateMipmaps;c.texture.generateMipmaps=!1;c.activeCubeFace=0;a.render(b,d,c);c.activeCubeFace=1;a.render(b,e,c);c.activeCubeFace=2;a.render(b,f,c);c.activeCubeFace=3;a.render(b,g,c);c.activeCubeFace=4;a.render(b,h,c);c.texture.generateMipmaps=m;c.activeCubeFace=5;a.render(b,k,c);a.setRenderTarget(null)};this.clear=function(a,b,c,d){for(var e=this.renderTarget,f=0;6>f;f++)e.activeCubeFace=f,a.setRenderTarget(e),a.clear(b,c,d);a.setRenderTarget(null)}} -function qe(){C.call(this);this.type="AudioListener";this.context=re.getContext();this.gain=this.context.createGain();this.gain.connect(this.context.destination);this.filter=null}function lc(a){C.call(this);this.type="Audio";this.context=a.context;this.gain=this.context.createGain();this.gain.connect(a.getInput());this.autoplay=!1;this.buffer=null;this.loop=!1;this.offset=this.startTime=0;this.playbackRate=1;this.isPlaying=!1;this.hasPlaybackControl=!0;this.sourceType="empty";this.filters=[]}function se(a){lc.call(this, -a);this.panner=this.context.createPanner();this.panner.connect(this.gain)}function te(a,b){this.analyser=a.context.createAnalyser();this.analyser.fftSize=void 0!==b?b:2048;this.data=new Uint8Array(this.analyser.frequencyBinCount);a.getOutput().connect(this.analyser)}function ue(a,b,c){this.binding=a;this.valueSize=c;a=Float64Array;switch(b){case "quaternion":b=this._slerp;break;case "string":case "bool":a=Array;b=this._select;break;default:b=this._lerp}this.buffer=new a(4*c);this._mixBufferRegion= -b;this.referenceCount=this.useCount=this.cumulativeWeight=0}function rf(a,b,c){c=c||ta.parseTrackName(b);this._targetGroup=a;this._bindings=a.subscribe_(b,c)}function ta(a,b,c){this.path=b;this.parsedPath=c||ta.parseTrackName(b);this.node=ta.findNode(a,this.parsedPath.nodeName)||a;this.rootNode=a}function sf(){this.uuid=S.generateUUID();this._objects=Array.prototype.slice.call(arguments);this.nCachedObjects_=0;var a={};this._indicesByUUID=a;for(var b=0,c=arguments.length;b!==c;++b)a[arguments[b].uuid]= -b;this._paths=[];this._parsedPaths=[];this._bindings=[];this._bindingsIndicesByPath={};var d=this;this.stats={objects:{get total(){return d._objects.length},get inUse(){return this.total-d.nCachedObjects_}},get bindingsPerObject(){return d._bindings.length}}}function tf(a,b,c){this._mixer=a;this._clip=b;this._localRoot=c||null;a=b.tracks;b=a.length;c=Array(b);for(var d={endingStart:2400,endingEnd:2400},e=0;e!==b;++e){var f=a[e].createInterpolant(null);c[e]=f;f.settings=d}this._interpolantSettings= -d;this._interpolants=c;this._propertyBindings=Array(b);this._weightInterpolant=this._timeScaleInterpolant=this._byClipCacheIndex=this._cacheIndex=null;this.loop=2201;this._loopCount=-1;this._startTime=null;this.time=0;this._effectiveWeight=this.weight=this._effectiveTimeScale=this.timeScale=1;this.repetitions=Infinity;this.paused=!1;this.enabled=!0;this.clampWhenFinished=!1;this.zeroSlopeAtEnd=this.zeroSlopeAtStart=!0}function ve(a){this._root=a;this._initMemoryManager();this.time=this._accuIndex= -0;this.timeScale=1}function Rd(a,b){"string"===typeof a&&(console.warn("THREE.Uniform: Type parameter is no longer needed."),a=b);this.value=a}function we(){E.call(this);this.type="InstancedBufferGeometry";this.maxInstancedCount=void 0}function xe(a,b,c){qb.call(this,a,b);this.meshPerAttribute=c||1}function ye(a,b,c,d){"number"===typeof c&&(d=c,c=!1,console.error("THREE.InstancedBufferAttribute: The constructor now expects normalized as the third argument."));J.call(this,a,b,c);this.meshPerAttribute= -d||1}function uf(a,b,c,d){this.ray=new pb(a,b);this.near=c||0;this.far=d||Infinity;this.params={Mesh:{},Line:{},LOD:{},Points:{threshold:1},Sprite:{}};Object.defineProperties(this.params,{PointCloud:{get:function(){console.warn("THREE.Raycaster: params.PointCloud has been renamed to params.Points.");return this.Points}}})}function vf(a,b){return a.distance-b.distance}function ze(a,b,c,d){if(!1!==a.visible&&(a.raycast(b,c),!0===d)){a=a.children;d=0;for(var e=a.length;dc;c++,d++){var e=c/32*Math.PI*2,f=d/32*Math.PI*2;b.push(Math.cos(e),Math.sin(e),1,Math.cos(f),Math.sin(f),1)}a.addAttribute("position",new A(b,3));b=new T({fog:!1});this.cone=new W(a,b);this.add(this.cone);this.update()}function zf(a){var b=[];a&&a.isBone&&b.push(a);for(var c=0;ca?-1:0b;b++)a[b]=(16>b?"0":"")+b.toString(16);return function(){var b=4294967295*Math.random()|0,d=4294967295*Math.random()|0,e=4294967295*Math.random()|0,f=4294967295*Math.random()|0;return(a[b&255]+a[b>>8&255]+a[b>>16&255]+a[b>>24&255]+"-"+a[d&255]+a[d>>8&255]+"-"+a[d>> -16&15|64]+a[d>>24&255]+"-"+a[e&63|128]+a[e>>8&255]+"-"+a[e>>16&255]+a[e>>24&255]+a[f&255]+a[f>>8&255]+a[f>>16&255]+a[f>>24&255]).toUpperCase()}}(),clamp:function(a,b,c){return Math.max(b,Math.min(c,a))},euclideanModulo:function(a,b){return(a%b+b)%b},mapLinear:function(a,b,c,d,e){return d+(a-b)*(e-d)/(c-b)},lerp:function(a,b,c){return(1-c)*a+c*b},smoothstep:function(a,b,c){if(a<=b)return 0;if(a>=c)return 1;a=(a-b)/(c-b);return a*a*(3-2*a)},smootherstep:function(a,b,c){if(a<=b)return 0;if(a>=c)return 1; -a=(a-b)/(c-b);return a*a*a*(a*(6*a-15)+10)},randInt:function(a,b){return a+Math.floor(Math.random()*(b-a+1))},randFloat:function(a,b){return a+Math.random()*(b-a)},randFloatSpread:function(a){return a*(.5-Math.random())},degToRad:function(a){return a*S.DEG2RAD},radToDeg:function(a){return a*S.RAD2DEG},isPowerOfTwo:function(a){return 0===(a&a-1)&&0!==a},ceilPowerOfTwo:function(a){return Math.pow(2,Math.ceil(Math.log(a)/Math.LN2))},floorPowerOfTwo:function(a){return Math.pow(2,Math.floor(Math.log(a)/ -Math.LN2))}};Object.defineProperties(z.prototype,{width:{get:function(){return this.x},set:function(a){this.x=a}},height:{get:function(){return this.y},set:function(a){this.y=a}}});Object.assign(z.prototype,{isVector2:!0,set:function(a,b){this.x=a;this.y=b;return this},setScalar:function(a){this.y=this.x=a;return this},setX:function(a){this.x=a;return this},setY:function(a){this.y=a;return this},setComponent:function(a,b){switch(a){case 0:this.x=b;break;case 1:this.y=b;break;default:throw Error("index is out of range: "+ -a);}return this},getComponent:function(a){switch(a){case 0:return this.x;case 1:return this.y;default:throw Error("index is out of range: "+a);}},clone:function(){return new this.constructor(this.x,this.y)},copy:function(a){this.x=a.x;this.y=a.y;return this},add:function(a,b){if(void 0!==b)return console.warn("THREE.Vector2: .add() now only accepts one argument. Use .addVectors( a, b ) instead."),this.addVectors(a,b);this.x+=a.x;this.y+=a.y;return this},addScalar:function(a){this.x+=a;this.y+=a;return this}, -addVectors:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;return this},addScaledVector:function(a,b){this.x+=a.x*b;this.y+=a.y*b;return this},sub:function(a,b){if(void 0!==b)return console.warn("THREE.Vector2: .sub() now only accepts one argument. Use .subVectors( a, b ) instead."),this.subVectors(a,b);this.x-=a.x;this.y-=a.y;return this},subScalar:function(a){this.x-=a;this.y-=a;return this},subVectors:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;return this},multiply:function(a){this.x*=a.x;this.y*= -a.y;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;return this},divide:function(a){this.x/=a.x;this.y/=a.y;return this},divideScalar:function(a){return this.multiplyScalar(1/a)},applyMatrix3:function(a){var b=this.x,c=this.y;a=a.elements;this.x=a[0]*b+a[3]*c+a[6];this.y=a[1]*b+a[4]*c+a[7];return this},min:function(a){this.x=Math.min(this.x,a.x);this.y=Math.min(this.y,a.y);return this},max:function(a){this.x=Math.max(this.x,a.x);this.y=Math.max(this.y,a.y);return this},clamp:function(a, -b){this.x=Math.max(a.x,Math.min(b.x,this.x));this.y=Math.max(a.y,Math.min(b.y,this.y));return this},clampScalar:function(){var a=new z,b=new z;return function(c,d){a.set(c,c);b.set(d,d);return this.clamp(a,b)}}(),clampLength:function(a,b){var c=this.length();return this.divideScalar(c||1).multiplyScalar(Math.max(a,Math.min(b,c)))},floor:function(){this.x=Math.floor(this.x);this.y=Math.floor(this.y);return this},ceil:function(){this.x=Math.ceil(this.x);this.y=Math.ceil(this.y);return this},round:function(){this.x= -Math.round(this.x);this.y=Math.round(this.y);return this},roundToZero:function(){this.x=0>this.x?Math.ceil(this.x):Math.floor(this.x);this.y=0>this.y?Math.ceil(this.y):Math.floor(this.y);return this},negate:function(){this.x=-this.x;this.y=-this.y;return this},dot:function(a){return this.x*a.x+this.y*a.y},cross:function(a){return this.x*a.y-this.y*a.x},lengthSq:function(){return this.x*this.x+this.y*this.y},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},manhattanLength:function(){return Math.abs(this.x)+ -Math.abs(this.y)},normalize:function(){return this.divideScalar(this.length()||1)},angle:function(){var a=Math.atan2(this.y,this.x);0>a&&(a+=2*Math.PI);return a},distanceTo:function(a){return Math.sqrt(this.distanceToSquared(a))},distanceToSquared:function(a){var b=this.x-a.x;a=this.y-a.y;return b*b+a*a},manhattanDistanceTo:function(a){return Math.abs(this.x-a.x)+Math.abs(this.y-a.y)},setLength:function(a){return this.normalize().multiplyScalar(a)},lerp:function(a,b){this.x+=(a.x-this.x)*b;this.y+= -(a.y-this.y)*b;return this},lerpVectors:function(a,b,c){return this.subVectors(b,a).multiplyScalar(c).add(a)},equals:function(a){return a.x===this.x&&a.y===this.y},fromArray:function(a,b){void 0===b&&(b=0);this.x=a[b];this.y=a[b+1];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this.x;a[b+1]=this.y;return a},fromBufferAttribute:function(a,b,c){void 0!==c&&console.warn("THREE.Vector2: offset has been removed from .fromBufferAttribute().");this.x=a.getX(b);this.y=a.getY(b); -return this},rotateAround:function(a,b){var c=Math.cos(b);b=Math.sin(b);var d=this.x-a.x,e=this.y-a.y;this.x=d*c-e*b+a.x;this.y=d*b+e*c+a.y;return this}});Object.assign(P.prototype,{isMatrix4:!0,set:function(a,b,c,d,e,f,g,h,k,m,q,n,l,v,t,p){var r=this.elements;r[0]=a;r[4]=b;r[8]=c;r[12]=d;r[1]=e;r[5]=f;r[9]=g;r[13]=h;r[2]=k;r[6]=m;r[10]=q;r[14]=n;r[3]=l;r[7]=v;r[11]=t;r[15]=p;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},clone:function(){return(new P).fromArray(this.elements)}, -copy:function(a){var b=this.elements;a=a.elements;b[0]=a[0];b[1]=a[1];b[2]=a[2];b[3]=a[3];b[4]=a[4];b[5]=a[5];b[6]=a[6];b[7]=a[7];b[8]=a[8];b[9]=a[9];b[10]=a[10];b[11]=a[11];b[12]=a[12];b[13]=a[13];b[14]=a[14];b[15]=a[15];return this},copyPosition:function(a){var b=this.elements;a=a.elements;b[12]=a[12];b[13]=a[13];b[14]=a[14];return this},extractBasis:function(a,b,c){a.setFromMatrixColumn(this,0);b.setFromMatrixColumn(this,1);c.setFromMatrixColumn(this,2);return this},makeBasis:function(a,b,c){this.set(a.x, -b.x,c.x,0,a.y,b.y,c.y,0,a.z,b.z,c.z,0,0,0,0,1);return this},extractRotation:function(){var a=new p;return function(b){var c=this.elements,d=b.elements,e=1/a.setFromMatrixColumn(b,0).length(),f=1/a.setFromMatrixColumn(b,1).length();b=1/a.setFromMatrixColumn(b,2).length();c[0]=d[0]*e;c[1]=d[1]*e;c[2]=d[2]*e;c[3]=0;c[4]=d[4]*f;c[5]=d[5]*f;c[6]=d[6]*f;c[7]=0;c[8]=d[8]*b;c[9]=d[9]*b;c[10]=d[10]*b;c[11]=0;c[12]=0;c[13]=0;c[14]=0;c[15]=1;return this}}(),makeRotationFromEuler:function(a){a&&a.isEuler||console.error("THREE.Matrix4: .makeRotationFromEuler() now expects a Euler rotation rather than a Vector3 and order."); -var b=this.elements,c=a.x,d=a.y,e=a.z,f=Math.cos(c);c=Math.sin(c);var g=Math.cos(d);d=Math.sin(d);var h=Math.cos(e);e=Math.sin(e);if("XYZ"===a.order){a=f*h;var k=f*e,m=c*h,q=c*e;b[0]=g*h;b[4]=-g*e;b[8]=d;b[1]=k+m*d;b[5]=a-q*d;b[9]=-c*g;b[2]=q-a*d;b[6]=m+k*d;b[10]=f*g}else"YXZ"===a.order?(a=g*h,k=g*e,m=d*h,q=d*e,b[0]=a+q*c,b[4]=m*c-k,b[8]=f*d,b[1]=f*e,b[5]=f*h,b[9]=-c,b[2]=k*c-m,b[6]=q+a*c,b[10]=f*g):"ZXY"===a.order?(a=g*h,k=g*e,m=d*h,q=d*e,b[0]=a-q*c,b[4]=-f*e,b[8]=m+k*c,b[1]=k+m*c,b[5]=f*h,b[9]= -q-a*c,b[2]=-f*d,b[6]=c,b[10]=f*g):"ZYX"===a.order?(a=f*h,k=f*e,m=c*h,q=c*e,b[0]=g*h,b[4]=m*d-k,b[8]=a*d+q,b[1]=g*e,b[5]=q*d+a,b[9]=k*d-m,b[2]=-d,b[6]=c*g,b[10]=f*g):"YZX"===a.order?(a=f*g,k=f*d,m=c*g,q=c*d,b[0]=g*h,b[4]=q-a*e,b[8]=m*e+k,b[1]=e,b[5]=f*h,b[9]=-c*h,b[2]=-d*h,b[6]=k*e+m,b[10]=a-q*e):"XZY"===a.order&&(a=f*g,k=f*d,m=c*g,q=c*d,b[0]=g*h,b[4]=-e,b[8]=d*h,b[1]=a*e+q,b[5]=f*h,b[9]=k*e-m,b[2]=m*e-k,b[6]=c*h,b[10]=q*e+a);b[3]=0;b[7]=0;b[11]=0;b[12]=0;b[13]=0;b[14]=0;b[15]=1;return this},makeRotationFromQuaternion:function(){var a= -new p(0,0,0),b=new p(1,1,1);return function(c){return this.compose(a,c,b)}}(),lookAt:function(){var a=new p,b=new p,c=new p;return function(d,e,f){var g=this.elements;c.subVectors(d,e);0===c.lengthSq()&&(c.z=1);c.normalize();a.crossVectors(f,c);0===a.lengthSq()&&(1===Math.abs(f.z)?c.x+=1E-4:c.z+=1E-4,c.normalize(),a.crossVectors(f,c));a.normalize();b.crossVectors(c,a);g[0]=a.x;g[4]=b.x;g[8]=c.x;g[1]=a.y;g[5]=b.y;g[9]=c.y;g[2]=a.z;g[6]=b.z;g[10]=c.z;return this}}(),multiply:function(a,b){return void 0!== -b?(console.warn("THREE.Matrix4: .multiply() now only accepts one argument. Use .multiplyMatrices( a, b ) instead."),this.multiplyMatrices(a,b)):this.multiplyMatrices(this,a)},premultiply:function(a){return this.multiplyMatrices(a,this)},multiplyMatrices:function(a,b){var c=a.elements,d=b.elements;b=this.elements;a=c[0];var e=c[4],f=c[8],g=c[12],h=c[1],k=c[5],m=c[9],q=c[13],n=c[2],l=c[6],v=c[10],t=c[14],p=c[3],y=c[7],x=c[11];c=c[15];var w=d[0],F=d[4],I=d[8],R=d[12],z=d[1],B=d[5],A=d[9],C=d[13],E=d[2], -J=d[6],G=d[10],H=d[14],L=d[3],M=d[7],K=d[11];d=d[15];b[0]=a*w+e*z+f*E+g*L;b[4]=a*F+e*B+f*J+g*M;b[8]=a*I+e*A+f*G+g*K;b[12]=a*R+e*C+f*H+g*d;b[1]=h*w+k*z+m*E+q*L;b[5]=h*F+k*B+m*J+q*M;b[9]=h*I+k*A+m*G+q*K;b[13]=h*R+k*C+m*H+q*d;b[2]=n*w+l*z+v*E+t*L;b[6]=n*F+l*B+v*J+t*M;b[10]=n*I+l*A+v*G+t*K;b[14]=n*R+l*C+v*H+t*d;b[3]=p*w+y*z+x*E+c*L;b[7]=p*F+y*B+x*J+c*M;b[11]=p*I+y*A+x*G+c*K;b[15]=p*R+y*C+x*H+c*d;return this},multiplyScalar:function(a){var b=this.elements;b[0]*=a;b[4]*=a;b[8]*=a;b[12]*=a;b[1]*=a;b[5]*= -a;b[9]*=a;b[13]*=a;b[2]*=a;b[6]*=a;b[10]*=a;b[14]*=a;b[3]*=a;b[7]*=a;b[11]*=a;b[15]*=a;return this},applyToBufferAttribute:function(){var a=new p;return function(b){for(var c=0,d=b.count;cthis.determinant()&&(g=-g);c.x=f[12];c.y=f[13];c.z=f[14];b.copy(this);c=1/g;f=1/h;var m=1/k;b.elements[0]*=c;b.elements[1]*=c;b.elements[2]*=c;b.elements[4]*=f;b.elements[5]*=f;b.elements[6]*=f;b.elements[8]*=m;b.elements[9]*=m;b.elements[10]*=m;d.setFromRotationMatrix(b); -e.x=g;e.y=h;e.z=k;return this}}(),makePerspective:function(a,b,c,d,e,f){void 0===f&&console.warn("THREE.Matrix4: .makePerspective() has been redefined and has a new signature. Please check the docs.");var g=this.elements;g[0]=2*e/(b-a);g[4]=0;g[8]=(b+a)/(b-a);g[12]=0;g[1]=0;g[5]=2*e/(c-d);g[9]=(c+d)/(c-d);g[13]=0;g[2]=0;g[6]=0;g[10]=-(f+e)/(f-e);g[14]=-2*f*e/(f-e);g[3]=0;g[7]=0;g[11]=-1;g[15]=0;return this},makeOrthographic:function(a,b,c,d,e,f){var g=this.elements,h=1/(b-a),k=1/(c-d),m=1/(f-e);g[0]= -2*h;g[4]=0;g[8]=0;g[12]=-((b+a)*h);g[1]=0;g[5]=2*k;g[9]=0;g[13]=-((c+d)*k);g[2]=0;g[6]=0;g[10]=-2*m;g[14]=-((f+e)*m);g[3]=0;g[7]=0;g[11]=0;g[15]=1;return this},equals:function(a){var b=this.elements;a=a.elements;for(var c=0;16>c;c++)if(b[c]!==a[c])return!1;return!0},fromArray:function(a,b){void 0===b&&(b=0);for(var c=0;16>c;c++)this.elements[c]=a[c+b];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);var c=this.elements;a[b]=c[0];a[b+1]=c[1];a[b+2]=c[2];a[b+3]=c[3];a[b+4]=c[4]; -a[b+5]=c[5];a[b+6]=c[6];a[b+7]=c[7];a[b+8]=c[8];a[b+9]=c[9];a[b+10]=c[10];a[b+11]=c[11];a[b+12]=c[12];a[b+13]=c[13];a[b+14]=c[14];a[b+15]=c[15];return a}});Object.assign(ja,{slerp:function(a,b,c,d){return c.copy(a).slerp(b,d)},slerpFlat:function(a,b,c,d,e,f,g){var h=c[d+0],k=c[d+1],m=c[d+2];c=c[d+3];d=e[f+0];var l=e[f+1],n=e[f+2];e=e[f+3];if(c!==e||h!==d||k!==l||m!==n){f=1-g;var r=h*d+k*l+m*n+c*e,v=0<=r?1:-1,p=1-r*r;p>Number.EPSILON&&(p=Math.sqrt(p),r=Math.atan2(p,r*v),f=Math.sin(f*r)/p,g=Math.sin(g* -r)/p);v*=g;h=h*f+d*v;k=k*f+l*v;m=m*f+n*v;c=c*f+e*v;f===1-g&&(g=1/Math.sqrt(h*h+k*k+m*m+c*c),h*=g,k*=g,m*=g,c*=g)}a[b]=h;a[b+1]=k;a[b+2]=m;a[b+3]=c}});Object.defineProperties(ja.prototype,{x:{get:function(){return this._x},set:function(a){this._x=a;this.onChangeCallback()}},y:{get:function(){return this._y},set:function(a){this._y=a;this.onChangeCallback()}},z:{get:function(){return this._z},set:function(a){this._z=a;this.onChangeCallback()}},w:{get:function(){return this._w},set:function(a){this._w= -a;this.onChangeCallback()}}});Object.assign(ja.prototype,{isQuaternion:!0,set:function(a,b,c,d){this._x=a;this._y=b;this._z=c;this._w=d;this.onChangeCallback();return this},clone:function(){return new this.constructor(this._x,this._y,this._z,this._w)},copy:function(a){this._x=a.x;this._y=a.y;this._z=a.z;this._w=a.w;this.onChangeCallback();return this},setFromEuler:function(a,b){if(!a||!a.isEuler)throw Error("THREE.Quaternion: .setFromEuler() now expects an Euler rotation rather than a Vector3 and order."); -var c=a._x,d=a._y,e=a._z;a=a.order;var f=Math.cos,g=Math.sin,h=f(c/2),k=f(d/2);f=f(e/2);c=g(c/2);d=g(d/2);e=g(e/2);"XYZ"===a?(this._x=c*k*f+h*d*e,this._y=h*d*f-c*k*e,this._z=h*k*e+c*d*f,this._w=h*k*f-c*d*e):"YXZ"===a?(this._x=c*k*f+h*d*e,this._y=h*d*f-c*k*e,this._z=h*k*e-c*d*f,this._w=h*k*f+c*d*e):"ZXY"===a?(this._x=c*k*f-h*d*e,this._y=h*d*f+c*k*e,this._z=h*k*e+c*d*f,this._w=h*k*f-c*d*e):"ZYX"===a?(this._x=c*k*f-h*d*e,this._y=h*d*f+c*k*e,this._z=h*k*e-c*d*f,this._w=h*k*f+c*d*e):"YZX"===a?(this._x= -c*k*f+h*d*e,this._y=h*d*f+c*k*e,this._z=h*k*e-c*d*f,this._w=h*k*f-c*d*e):"XZY"===a&&(this._x=c*k*f-h*d*e,this._y=h*d*f-c*k*e,this._z=h*k*e+c*d*f,this._w=h*k*f+c*d*e);if(!1!==b)this.onChangeCallback();return this},setFromAxisAngle:function(a,b){b/=2;var c=Math.sin(b);this._x=a.x*c;this._y=a.y*c;this._z=a.z*c;this._w=Math.cos(b);this.onChangeCallback();return this},setFromRotationMatrix:function(a){var b=a.elements,c=b[0];a=b[4];var d=b[8],e=b[1],f=b[5],g=b[9],h=b[2],k=b[6];b=b[10];var m=c+f+b;0f&&c>b?(c=2*Math.sqrt(1+c-f-b),this._w=(k-g)/c,this._x=.25*c,this._y=(a+e)/c,this._z=(d+h)/c):f>b?(c=2*Math.sqrt(1+f-c-b),this._w=(d-h)/c,this._x=(a+e)/c,this._y=.25*c,this._z=(g+k)/c):(c=2*Math.sqrt(1+b-c-f),this._w=(e-a)/c,this._x=(d+h)/c,this._y=(g+k)/c,this._z=.25*c);this.onChangeCallback();return this},setFromUnitVectors:function(){var a=new p,b;return function(c,d){void 0===a&&(a=new p);b=c.dot(d)+1;1E-6>b? -(b=0,Math.abs(c.x)>Math.abs(c.z)?a.set(-c.y,c.x,0):a.set(0,-c.z,c.y)):a.crossVectors(c,d);this._x=a.x;this._y=a.y;this._z=a.z;this._w=b;return this.normalize()}}(),angleTo:function(a){return 2*Math.acos(Math.abs(S.clamp(this.dot(a),-1,1)))},rotateTowards:function(a,b){var c=this.angleTo(a);if(0===c)return this;this.slerp(a,Math.min(1,b/c));return this},inverse:function(){return this.conjugate()},conjugate:function(){this._x*=-1;this._y*=-1;this._z*=-1;this.onChangeCallback();return this},dot:function(a){return this._x* -a._x+this._y*a._y+this._z*a._z+this._w*a._w},lengthSq:function(){return this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w},length:function(){return Math.sqrt(this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w)},normalize:function(){var a=this.length();0===a?(this._z=this._y=this._x=0,this._w=1):(a=1/a,this._x*=a,this._y*=a,this._z*=a,this._w*=a);this.onChangeCallback();return this},multiply:function(a,b){return void 0!==b?(console.warn("THREE.Quaternion: .multiply() now only accepts one argument. Use .multiplyQuaternions( a, b ) instead."), -this.multiplyQuaternions(a,b)):this.multiplyQuaternions(this,a)},premultiply:function(a){return this.multiplyQuaternions(a,this)},multiplyQuaternions:function(a,b){var c=a._x,d=a._y,e=a._z;a=a._w;var f=b._x,g=b._y,h=b._z;b=b._w;this._x=c*b+a*f+d*h-e*g;this._y=d*b+a*g+e*f-c*h;this._z=e*b+a*h+c*g-d*f;this._w=a*b-c*f-d*g-e*h;this.onChangeCallback();return this},slerp:function(a,b){if(0===b)return this;if(1===b)return this.copy(a);var c=this._x,d=this._y,e=this._z,f=this._w,g=f*a._w+c*a._x+d*a._y+e*a._z; -0>g?(this._w=-a._w,this._x=-a._x,this._y=-a._y,this._z=-a._z,g=-g):this.copy(a);if(1<=g)return this._w=f,this._x=c,this._y=d,this._z=e,this;a=1-g*g;if(a<=Number.EPSILON)return g=1-b,this._w=g*f+b*this._w,this._x=g*c+b*this._x,this._y=g*d+b*this._y,this._z=g*e+b*this._z,this.normalize();a=Math.sqrt(a);var h=Math.atan2(a,g);g=Math.sin((1-b)*h)/a;b=Math.sin(b*h)/a;this._w=f*g+this._w*b;this._x=c*g+this._x*b;this._y=d*g+this._y*b;this._z=e*g+this._z*b;this.onChangeCallback();return this},equals:function(a){return a._x=== -this._x&&a._y===this._y&&a._z===this._z&&a._w===this._w},fromArray:function(a,b){void 0===b&&(b=0);this._x=a[b];this._y=a[b+1];this._z=a[b+2];this._w=a[b+3];this.onChangeCallback();return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this._x;a[b+1]=this._y;a[b+2]=this._z;a[b+3]=this._w;return a},onChange:function(a){this.onChangeCallback=a;return this},onChangeCallback:function(){}});Object.assign(p.prototype,{isVector3:!0,set:function(a,b,c){this.x=a;this.y=b;this.z=c;return this}, -setScalar:function(a){this.z=this.y=this.x=a;return this},setX:function(a){this.x=a;return this},setY:function(a){this.y=a;return this},setZ:function(a){this.z=a;return this},setComponent:function(a,b){switch(a){case 0:this.x=b;break;case 1:this.y=b;break;case 2:this.z=b;break;default:throw Error("index is out of range: "+a);}return this},getComponent:function(a){switch(a){case 0:return this.x;case 1:return this.y;case 2:return this.z;default:throw Error("index is out of range: "+a);}},clone:function(){return new this.constructor(this.x, -this.y,this.z)},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;return this},add:function(a,b){if(void 0!==b)return console.warn("THREE.Vector3: .add() now only accepts one argument. Use .addVectors( a, b ) instead."),this.addVectors(a,b);this.x+=a.x;this.y+=a.y;this.z+=a.z;return this},addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;return this},addVectors:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;return this},addScaledVector:function(a,b){this.x+=a.x*b;this.y+=a.y*b;this.z+= -a.z*b;return this},sub:function(a,b){if(void 0!==b)return console.warn("THREE.Vector3: .sub() now only accepts one argument. Use .subVectors( a, b ) instead."),this.subVectors(a,b);this.x-=a.x;this.y-=a.y;this.z-=a.z;return this},subScalar:function(a){this.x-=a;this.y-=a;this.z-=a;return this},subVectors:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;return this},multiply:function(a,b){if(void 0!==b)return console.warn("THREE.Vector3: .multiply() now only accepts one argument. Use .multiplyVectors( a, b ) instead."), -this.multiplyVectors(a,b);this.x*=a.x;this.y*=a.y;this.z*=a.z;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;return this},multiplyVectors:function(a,b){this.x=a.x*b.x;this.y=a.y*b.y;this.z=a.z*b.z;return this},applyEuler:function(){var a=new ja;return function(b){b&&b.isEuler||console.error("THREE.Vector3: .applyEuler() now expects an Euler rotation rather than a Vector3 and order.");return this.applyQuaternion(a.setFromEuler(b))}}(),applyAxisAngle:function(){var a=new ja;return function(b, -c){return this.applyQuaternion(a.setFromAxisAngle(b,c))}}(),applyMatrix3:function(a){var b=this.x,c=this.y,d=this.z;a=a.elements;this.x=a[0]*b+a[3]*c+a[6]*d;this.y=a[1]*b+a[4]*c+a[7]*d;this.z=a[2]*b+a[5]*c+a[8]*d;return this},applyMatrix4:function(a){var b=this.x,c=this.y,d=this.z;a=a.elements;var e=1/(a[3]*b+a[7]*c+a[11]*d+a[15]);this.x=(a[0]*b+a[4]*c+a[8]*d+a[12])*e;this.y=(a[1]*b+a[5]*c+a[9]*d+a[13])*e;this.z=(a[2]*b+a[6]*c+a[10]*d+a[14])*e;return this},applyQuaternion:function(a){var b=this.x, -c=this.y,d=this.z,e=a.x,f=a.y,g=a.z;a=a.w;var h=a*b+f*d-g*c,k=a*c+g*b-e*d,m=a*d+e*c-f*b;b=-e*b-f*c-g*d;this.x=h*a+b*-e+k*-g-m*-f;this.y=k*a+b*-f+m*-e-h*-g;this.z=m*a+b*-g+h*-f-k*-e;return this},project:function(a){return this.applyMatrix4(a.matrixWorldInverse).applyMatrix4(a.projectionMatrix)},unproject:function(){var a=new P;return function(b){return this.applyMatrix4(a.getInverse(b.projectionMatrix)).applyMatrix4(b.matrixWorld)}}(),transformDirection:function(a){var b=this.x,c=this.y,d=this.z;a= -a.elements;this.x=a[0]*b+a[4]*c+a[8]*d;this.y=a[1]*b+a[5]*c+a[9]*d;this.z=a[2]*b+a[6]*c+a[10]*d;return this.normalize()},divide:function(a){this.x/=a.x;this.y/=a.y;this.z/=a.z;return this},divideScalar:function(a){return this.multiplyScalar(1/a)},min:function(a){this.x=Math.min(this.x,a.x);this.y=Math.min(this.y,a.y);this.z=Math.min(this.z,a.z);return this},max:function(a){this.x=Math.max(this.x,a.x);this.y=Math.max(this.y,a.y);this.z=Math.max(this.z,a.z);return this},clamp:function(a,b){this.x=Math.max(a.x, -Math.min(b.x,this.x));this.y=Math.max(a.y,Math.min(b.y,this.y));this.z=Math.max(a.z,Math.min(b.z,this.z));return this},clampScalar:function(){var a=new p,b=new p;return function(c,d){a.set(c,c,c);b.set(d,d,d);return this.clamp(a,b)}}(),clampLength:function(a,b){var c=this.length();return this.divideScalar(c||1).multiplyScalar(Math.max(a,Math.min(b,c)))},floor:function(){this.x=Math.floor(this.x);this.y=Math.floor(this.y);this.z=Math.floor(this.z);return this},ceil:function(){this.x=Math.ceil(this.x); -this.y=Math.ceil(this.y);this.z=Math.ceil(this.z);return this},round:function(){this.x=Math.round(this.x);this.y=Math.round(this.y);this.z=Math.round(this.z);return this},roundToZero:function(){this.x=0>this.x?Math.ceil(this.x):Math.floor(this.x);this.y=0>this.y?Math.ceil(this.y):Math.floor(this.y);this.z=0>this.z?Math.ceil(this.z):Math.floor(this.z);return this},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z},lengthSq:function(){return this.x* -this.x+this.y*this.y+this.z*this.z},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)},manhattanLength:function(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)},normalize:function(){return this.divideScalar(this.length()||1)},setLength:function(a){return this.normalize().multiplyScalar(a)},lerp:function(a,b){this.x+=(a.x-this.x)*b;this.y+=(a.y-this.y)*b;this.z+=(a.z-this.z)*b;return this},lerpVectors:function(a,b,c){return this.subVectors(b,a).multiplyScalar(c).add(a)}, -cross:function(a,b){return void 0!==b?(console.warn("THREE.Vector3: .cross() now only accepts one argument. Use .crossVectors( a, b ) instead."),this.crossVectors(a,b)):this.crossVectors(this,a)},crossVectors:function(a,b){var c=a.x,d=a.y;a=a.z;var e=b.x,f=b.y;b=b.z;this.x=d*b-a*f;this.y=a*e-c*b;this.z=c*f-d*e;return this},projectOnVector:function(a){var b=a.dot(this)/a.lengthSq();return this.copy(a).multiplyScalar(b)},projectOnPlane:function(){var a=new p;return function(b){a.copy(this).projectOnVector(b); -return this.sub(a)}}(),reflect:function(){var a=new p;return function(b){return this.sub(a.copy(b).multiplyScalar(2*this.dot(b)))}}(),angleTo:function(a){a=this.dot(a)/Math.sqrt(this.lengthSq()*a.lengthSq());return Math.acos(S.clamp(a,-1,1))},distanceTo:function(a){return Math.sqrt(this.distanceToSquared(a))},distanceToSquared:function(a){var b=this.x-a.x,c=this.y-a.y;a=this.z-a.z;return b*b+c*c+a*a},manhattanDistanceTo:function(a){return Math.abs(this.x-a.x)+Math.abs(this.y-a.y)+Math.abs(this.z- -a.z)},setFromSpherical:function(a){return this.setFromSphericalCoords(a.radius,a.phi,a.theta)},setFromSphericalCoords:function(a,b,c){var d=Math.sin(b)*a;this.x=d*Math.sin(c);this.y=Math.cos(b)*a;this.z=d*Math.cos(c);return this},setFromCylindrical:function(a){return this.setFromCylindricalCoords(a.radius,a.theta,a.y)},setFromCylindricalCoords:function(a,b,c){this.x=a*Math.sin(b);this.y=c;this.z=a*Math.cos(b);return this},setFromMatrixPosition:function(a){a=a.elements;this.x=a[12];this.y=a[13];this.z= -a[14];return this},setFromMatrixScale:function(a){var b=this.setFromMatrixColumn(a,0).length(),c=this.setFromMatrixColumn(a,1).length();a=this.setFromMatrixColumn(a,2).length();this.x=b;this.y=c;this.z=a;return this},setFromMatrixColumn:function(a,b){return this.fromArray(a.elements,4*b)},equals:function(a){return a.x===this.x&&a.y===this.y&&a.z===this.z},fromArray:function(a,b){void 0===b&&(b=0);this.x=a[b];this.y=a[b+1];this.z=a[b+2];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0=== -b&&(b=0);a[b]=this.x;a[b+1]=this.y;a[b+2]=this.z;return a},fromBufferAttribute:function(a,b,c){void 0!==c&&console.warn("THREE.Vector3: offset has been removed from .fromBufferAttribute().");this.x=a.getX(b);this.y=a.getY(b);this.z=a.getZ(b);return this}});Object.assign(oa.prototype,{isMatrix3:!0,set:function(a,b,c,d,e,f,g,h,k){var m=this.elements;m[0]=a;m[1]=d;m[2]=g;m[3]=b;m[4]=e;m[5]=h;m[6]=c;m[7]=f;m[8]=k;return this},identity:function(){this.set(1,0,0,0,1,0,0,0,1);return this},clone:function(){return(new this.constructor).fromArray(this.elements)}, -copy:function(a){var b=this.elements;a=a.elements;b[0]=a[0];b[1]=a[1];b[2]=a[2];b[3]=a[3];b[4]=a[4];b[5]=a[5];b[6]=a[6];b[7]=a[7];b[8]=a[8];return this},setFromMatrix4:function(a){a=a.elements;this.set(a[0],a[4],a[8],a[1],a[5],a[9],a[2],a[6],a[10]);return this},applyToBufferAttribute:function(){var a=new p;return function(b){for(var c=0,d=b.count;cc;c++)if(b[c]!==a[c])return!1;return!0},fromArray:function(a,b){void 0===b&&(b=0);for(var c=0;9>c;c++)this.elements[c]=a[c+b];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);var c= -this.elements;a[b]=c[0];a[b+1]=c[1];a[b+2]=c[2];a[b+3]=c[3];a[b+4]=c[4];a[b+5]=c[5];a[b+6]=c[6];a[b+7]=c[7];a[b+8]=c[8];return a}});var hb={getDataURL:function(a){if("undefined"==typeof HTMLCanvasElement)return a.src;if(a instanceof HTMLCanvasElement)var b=a;else{b=document.createElementNS("http://www.w3.org/1999/xhtml","canvas");b.width=a.width;b.height=a.height;var c=b.getContext("2d");a instanceof ImageData?c.putImageData(a,0,0):c.drawImage(a,0,0,a.width,a.height)}return 2048a.x||1a.x?0:1;break;case 1002:a.x=1===Math.abs(Math.floor(a.x)%2)?Math.ceil(a.x)-a.x:a.x-Math.floor(a.x)}if(0>a.y||1a.y?0:1;break;case 1002:a.y=1===Math.abs(Math.floor(a.y)%2)?Math.ceil(a.y)-a.y:a.y-Math.floor(a.y)}this.flipY&&(a.y=1-a.y);return a}});Object.defineProperty(Q.prototype,"needsUpdate",{set:function(a){!0===a&&this.version++}});Object.assign(Z.prototype,{isVector4:!0,set:function(a, -b,c,d){this.x=a;this.y=b;this.z=c;this.w=d;return this},setScalar:function(a){this.w=this.z=this.y=this.x=a;return this},setX:function(a){this.x=a;return this},setY:function(a){this.y=a;return this},setZ:function(a){this.z=a;return this},setW:function(a){this.w=a;return this},setComponent:function(a,b){switch(a){case 0:this.x=b;break;case 1:this.y=b;break;case 2:this.z=b;break;case 3:this.w=b;break;default:throw Error("index is out of range: "+a);}return this},getComponent:function(a){switch(a){case 0:return this.x; -case 1:return this.y;case 2:return this.z;case 3:return this.w;default:throw Error("index is out of range: "+a);}},clone:function(){return new this.constructor(this.x,this.y,this.z,this.w)},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;this.w=void 0!==a.w?a.w:1;return this},add:function(a,b){if(void 0!==b)return console.warn("THREE.Vector4: .add() now only accepts one argument. Use .addVectors( a, b ) instead."),this.addVectors(a,b);this.x+=a.x;this.y+=a.y;this.z+=a.z;this.w+=a.w;return this}, -addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;this.w+=a;return this},addVectors:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;this.w=a.w+b.w;return this},addScaledVector:function(a,b){this.x+=a.x*b;this.y+=a.y*b;this.z+=a.z*b;this.w+=a.w*b;return this},sub:function(a,b){if(void 0!==b)return console.warn("THREE.Vector4: .sub() now only accepts one argument. Use .subVectors( a, b ) instead."),this.subVectors(a,b);this.x-=a.x;this.y-=a.y;this.z-=a.z;this.w-=a.w;return this},subScalar:function(a){this.x-= -a;this.y-=a;this.z-=a;this.w-=a;return this},subVectors:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;this.w=a.w-b.w;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;this.w*=a;return this},applyMatrix4:function(a){var b=this.x,c=this.y,d=this.z,e=this.w;a=a.elements;this.x=a[0]*b+a[4]*c+a[8]*d+a[12]*e;this.y=a[1]*b+a[5]*c+a[9]*d+a[13]*e;this.z=a[2]*b+a[6]*c+a[10]*d+a[14]*e;this.w=a[3]*b+a[7]*c+a[11]*d+a[15]*e;return this},divideScalar:function(a){return this.multiplyScalar(1/ -a)},setAxisAngleFromQuaternion:function(a){this.w=2*Math.acos(a.w);var b=Math.sqrt(1-a.w*a.w);1E-4>b?(this.x=1,this.z=this.y=0):(this.x=a.x/b,this.y=a.y/b,this.z=a.z/b);return this},setAxisAngleFromRotationMatrix:function(a){a=a.elements;var b=a[0];var c=a[4];var d=a[8],e=a[1],f=a[5],g=a[9];var h=a[2];var k=a[6];var m=a[10];if(.01>Math.abs(c-e)&&.01>Math.abs(d-h)&&.01>Math.abs(g-k)){if(.1>Math.abs(c+e)&&.1>Math.abs(d+h)&&.1>Math.abs(g+k)&&.1>Math.abs(b+f+m-3))return this.set(1,0,0,0),this;a=Math.PI; -b=(b+1)/2;f=(f+1)/2;m=(m+1)/2;c=(c+e)/4;d=(d+h)/4;g=(g+k)/4;b>f&&b>m?.01>b?(k=0,c=h=.707106781):(k=Math.sqrt(b),h=c/k,c=d/k):f>m?.01>f?(k=.707106781,h=0,c=.707106781):(h=Math.sqrt(f),k=c/h,c=g/h):.01>m?(h=k=.707106781,c=0):(c=Math.sqrt(m),k=d/c,h=g/c);this.set(k,h,c,a);return this}a=Math.sqrt((k-g)*(k-g)+(d-h)*(d-h)+(e-c)*(e-c));.001>Math.abs(a)&&(a=1);this.x=(k-g)/a;this.y=(d-h)/a;this.z=(e-c)/a;this.w=Math.acos((b+f+m-1)/2);return this},min:function(a){this.x=Math.min(this.x,a.x);this.y=Math.min(this.y, -a.y);this.z=Math.min(this.z,a.z);this.w=Math.min(this.w,a.w);return this},max:function(a){this.x=Math.max(this.x,a.x);this.y=Math.max(this.y,a.y);this.z=Math.max(this.z,a.z);this.w=Math.max(this.w,a.w);return this},clamp:function(a,b){this.x=Math.max(a.x,Math.min(b.x,this.x));this.y=Math.max(a.y,Math.min(b.y,this.y));this.z=Math.max(a.z,Math.min(b.z,this.z));this.w=Math.max(a.w,Math.min(b.w,this.w));return this},clampScalar:function(){var a,b;return function(c,d){void 0===a&&(a=new Z,b=new Z);a.set(c, -c,c,c);b.set(d,d,d,d);return this.clamp(a,b)}}(),clampLength:function(a,b){var c=this.length();return this.divideScalar(c||1).multiplyScalar(Math.max(a,Math.min(b,c)))},floor:function(){this.x=Math.floor(this.x);this.y=Math.floor(this.y);this.z=Math.floor(this.z);this.w=Math.floor(this.w);return this},ceil:function(){this.x=Math.ceil(this.x);this.y=Math.ceil(this.y);this.z=Math.ceil(this.z);this.w=Math.ceil(this.w);return this},round:function(){this.x=Math.round(this.x);this.y=Math.round(this.y); -this.z=Math.round(this.z);this.w=Math.round(this.w);return this},roundToZero:function(){this.x=0>this.x?Math.ceil(this.x):Math.floor(this.x);this.y=0>this.y?Math.ceil(this.y):Math.floor(this.y);this.z=0>this.z?Math.ceil(this.z):Math.floor(this.z);this.w=0>this.w?Math.ceil(this.w):Math.floor(this.w);return this},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;this.w=-this.w;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z+this.w*a.w},lengthSq:function(){return this.x* -this.x+this.y*this.y+this.z*this.z+this.w*this.w},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)},manhattanLength:function(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)+Math.abs(this.w)},normalize:function(){return this.divideScalar(this.length()||1)},setLength:function(a){return this.normalize().multiplyScalar(a)},lerp:function(a,b){this.x+=(a.x-this.x)*b;this.y+=(a.y-this.y)*b;this.z+=(a.z-this.z)*b;this.w+=(a.w-this.w)*b;return this},lerpVectors:function(a, -b,c){return this.subVectors(b,a).multiplyScalar(c).add(a)},equals:function(a){return a.x===this.x&&a.y===this.y&&a.z===this.z&&a.w===this.w},fromArray:function(a,b){void 0===b&&(b=0);this.x=a[b];this.y=a[b+1];this.z=a[b+2];this.w=a[b+3];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this.x;a[b+1]=this.y;a[b+2]=this.z;a[b+3]=this.w;return a},fromBufferAttribute:function(a,b,c){void 0!==c&&console.warn("THREE.Vector4: offset has been removed from .fromBufferAttribute()."); -this.x=a.getX(b);this.y=a.getY(b);this.z=a.getZ(b);this.w=a.getW(b);return this}});ib.prototype=Object.assign(Object.create(ia.prototype),{constructor:ib,isWebGLRenderTarget:!0,setSize:function(a,b){if(this.width!==a||this.height!==b)this.width=a,this.height=b,this.dispose();this.viewport.set(0,0,a,b);this.scissor.set(0,0,a,b)},clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.width=a.width;this.height=a.height;this.viewport.copy(a.viewport);this.texture=a.texture.clone(); -this.depthBuffer=a.depthBuffer;this.stencilBuffer=a.stencilBuffer;this.depthTexture=a.depthTexture;return this},dispose:function(){this.dispatchEvent({type:"dispose"})}});Jb.prototype=Object.create(ib.prototype);Jb.prototype.constructor=Jb;Jb.prototype.isWebGLRenderTargetCube=!0;jb.prototype=Object.create(Q.prototype);jb.prototype.constructor=jb;jb.prototype.isDataTexture=!0;Object.assign(Wa.prototype,{isBox3:!0,set:function(a,b){this.min.copy(a);this.max.copy(b);return this},setFromArray:function(a){for(var b= -Infinity,c=Infinity,d=Infinity,e=-Infinity,f=-Infinity,g=-Infinity,h=0,k=a.length;he&&(e=m);l>f&&(f=l);n>g&&(g=n)}this.min.set(b,c,d);this.max.set(e,f,g);return this},setFromBufferAttribute:function(a){for(var b=Infinity,c=Infinity,d=Infinity,e=-Infinity,f=-Infinity,g=-Infinity,h=0,k=a.count;he&&(e=m);l>f&&(f=l);n>g&&(g=n)}this.min.set(b,c,d); -this.max.set(e,f,g);return this},setFromPoints:function(a){this.makeEmpty();for(var b=0,c=a.length;bthis.max.x||a.ythis.max.y||a.zthis.max.z?!1:!0},containsBox:function(a){return this.min.x<=a.min.x&&a.max.x<=this.max.x&&this.min.y<=a.min.y&&a.max.y<=this.max.y&&this.min.z<=a.min.z&& -a.max.z<=this.max.z},getParameter:function(a,b){void 0===b&&(console.warn("THREE.Box3: .getParameter() target is now required"),b=new p);return b.set((a.x-this.min.x)/(this.max.x-this.min.x),(a.y-this.min.y)/(this.max.y-this.min.y),(a.z-this.min.z)/(this.max.z-this.min.z))},intersectsBox:function(a){return a.max.xthis.max.x||a.max.ythis.max.y||a.max.zthis.max.z?!1:!0},intersectsSphere:function(){var a=new p;return function(b){this.clampPoint(b.center, -a);return a.distanceToSquared(b.center)<=b.radius*b.radius}}(),intersectsPlane:function(a){if(0=-a.constant},intersectsTriangle:function(){function a(a){var e; -var f=0;for(e=a.length-3;f<=e;f+=3){h.fromArray(a,f);var g=m.x*Math.abs(h.x)+m.y*Math.abs(h.y)+m.z*Math.abs(h.z),k=b.dot(h),l=c.dot(h),q=d.dot(h);if(Math.max(-Math.max(k,l,q),Math.min(k,l,q))>g)return!1}return!0}var b=new p,c=new p,d=new p,e=new p,f=new p,g=new p,h=new p,k=new p,m=new p,l=new p;return function(h){if(this.isEmpty())return!1;this.getCenter(k);m.subVectors(this.max,k);b.subVectors(h.a,k);c.subVectors(h.b,k);d.subVectors(h.c,k);e.subVectors(c,b);f.subVectors(d,c);g.subVectors(b,d);h= -[0,-e.z,e.y,0,-f.z,f.y,0,-g.z,g.y,e.z,0,-e.x,f.z,0,-f.x,g.z,0,-g.x,-e.y,e.x,0,-f.y,f.x,0,-g.y,g.x,0];if(!a(h))return!1;h=[1,0,0,0,1,0,0,0,1];if(!a(h))return!1;l.crossVectors(e,f);h=[l.x,l.y,l.z];return a(h)}}(),clampPoint:function(a,b){void 0===b&&(console.warn("THREE.Box3: .clampPoint() target is now required"),b=new p);return b.copy(a).clamp(this.min,this.max)},distanceToPoint:function(){var a=new p;return function(b){return a.copy(b).clamp(this.min,this.max).sub(b).length()}}(),getBoundingSphere:function(){var a= -new p;return function(b){void 0===b&&(console.warn("THREE.Box3: .getBoundingSphere() target is now required"),b=new Fa);this.getCenter(b.center);b.radius=.5*this.getSize(a).length();return b}}(),intersect:function(a){this.min.max(a.min);this.max.min(a.max);this.isEmpty()&&this.makeEmpty();return this},union:function(a){this.min.min(a.min);this.max.max(a.max);return this},applyMatrix4:function(){var a=[new p,new p,new p,new p,new p,new p,new p,new p];return function(b){if(this.isEmpty())return this; -a[0].set(this.min.x,this.min.y,this.min.z).applyMatrix4(b);a[1].set(this.min.x,this.min.y,this.max.z).applyMatrix4(b);a[2].set(this.min.x,this.max.y,this.min.z).applyMatrix4(b);a[3].set(this.min.x,this.max.y,this.max.z).applyMatrix4(b);a[4].set(this.max.x,this.min.y,this.min.z).applyMatrix4(b);a[5].set(this.max.x,this.min.y,this.max.z).applyMatrix4(b);a[6].set(this.max.x,this.max.y,this.min.z).applyMatrix4(b);a[7].set(this.max.x,this.max.y,this.max.z).applyMatrix4(b);this.setFromPoints(a);return this}}(), -translate:function(a){this.min.add(a);this.max.add(a);return this},equals:function(a){return a.min.equals(this.min)&&a.max.equals(this.max)}});Object.assign(Fa.prototype,{set:function(a,b){this.center.copy(a);this.radius=b;return this},setFromPoints:function(){var a=new Wa;return function(b,c){var d=this.center;void 0!==c?d.copy(c):a.setFromPoints(b).getCenter(d);for(var e=c=0,f=b.length;e=this.radius},containsPoint:function(a){return a.distanceToSquared(this.center)<=this.radius*this.radius},distanceToPoint:function(a){return a.distanceTo(this.center)-this.radius},intersectsSphere:function(a){var b=this.radius+a.radius;return a.center.distanceToSquared(this.center)<=b*b},intersectsBox:function(a){return a.intersectsSphere(this)},intersectsPlane:function(a){return Math.abs(a.distanceToPoint(this.center))<= -this.radius},clampPoint:function(a,b){var c=this.center.distanceToSquared(a);void 0===b&&(console.warn("THREE.Sphere: .clampPoint() target is now required"),b=new p);b.copy(a);c>this.radius*this.radius&&(b.sub(this.center).normalize(),b.multiplyScalar(this.radius).add(this.center));return b},getBoundingBox:function(a){void 0===a&&(console.warn("THREE.Sphere: .getBoundingBox() target is now required"),a=new Wa);a.set(this.center,this.center);a.expandByScalar(this.radius);return a},applyMatrix4:function(a){this.center.applyMatrix4(a); -this.radius*=a.getMaxScaleOnAxis();return this},translate:function(a){this.center.add(a);return this},equals:function(a){return a.center.equals(this.center)&&a.radius===this.radius}});Object.assign(Pa.prototype,{set:function(a,b){this.normal.copy(a);this.constant=b;return this},setComponents:function(a,b,c,d){this.normal.set(a,b,c);this.constant=d;return this},setFromNormalAndCoplanarPoint:function(a,b){this.normal.copy(a);this.constant=-b.dot(this.normal);return this},setFromCoplanarPoints:function(){var a= -new p,b=new p;return function(c,d,e){d=a.subVectors(e,d).cross(b.subVectors(c,d)).normalize();this.setFromNormalAndCoplanarPoint(d,c);return this}}(),clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.normal.copy(a.normal);this.constant=a.constant;return this},normalize:function(){var a=1/this.normal.length();this.normal.multiplyScalar(a);this.constant*=a;return this},negate:function(){this.constant*=-1;this.normal.negate();return this},distanceToPoint:function(a){return this.normal.dot(a)+ -this.constant},distanceToSphere:function(a){return this.distanceToPoint(a.center)-a.radius},projectPoint:function(a,b){void 0===b&&(console.warn("THREE.Plane: .projectPoint() target is now required"),b=new p);return b.copy(this.normal).multiplyScalar(-this.distanceToPoint(a)).add(a)},intersectLine:function(){var a=new p;return function(b,c){void 0===c&&(console.warn("THREE.Plane: .intersectLine() target is now required"),c=new p);var d=b.delta(a),e=this.normal.dot(d);if(0===e){if(0===this.distanceToPoint(b.start))return c.copy(b.start)}else if(e= --(b.start.dot(this.normal)+this.constant)/e,!(0>e||1b&&0a&&0c;c++)b[c].copy(a.planes[c]);return this},setFromMatrix:function(a){var b=this.planes,c=a.elements;a=c[0];var d=c[1],e=c[2],f=c[3],g=c[4],h=c[5],k=c[6],m=c[7],l=c[8],n=c[9],r=c[10],p=c[11],t=c[12],u=c[13],y=c[14];c=c[15];b[0].setComponents(f-a,m-g,p-l,c-t).normalize();b[1].setComponents(f+a,m+g,p+l,c+t).normalize();b[2].setComponents(f+d,m+h,p+n,c+u).normalize();b[3].setComponents(f- -d,m-h,p-n,c-u).normalize();b[4].setComponents(f-e,m-k,p-r,c-y).normalize();b[5].setComponents(f+e,m+k,p+r,c+y).normalize();return this},intersectsObject:function(){var a=new Fa;return function(b){var c=b.geometry;null===c.boundingSphere&&c.computeBoundingSphere();a.copy(c.boundingSphere).applyMatrix4(b.matrixWorld);return this.intersectsSphere(a)}}(),intersectsSprite:function(){var a=new Fa;return function(b){a.center.set(0,0,0);a.radius=.7071067811865476;a.applyMatrix4(b.matrixWorld);return this.intersectsSphere(a)}}(), +new z(1,1);this.displacementMap=null;this.displacementScale=1;this.displacementBias=0;this.envMap=this.alphaMap=this.metalnessMap=this.roughnessMap=null;this.envMapIntensity=1;this.refractionRatio=.98;this.wireframe=!1;this.wireframeLinewidth=1;this.wireframeLinejoin=this.wireframeLinecap="round";this.morphNormals=this.morphTargets=this.skinning=!1;this.setValues(a)}function Bb(a){Ta.call(this);this.defines={PHYSICAL:""};this.type="MeshPhysicalMaterial";this.reflectivity=.5;this.clearCoatRoughness= +this.clearCoat=0;this.setValues(a)}function Ia(a){L.call(this);this.type="MeshPhongMaterial";this.color=new G(16777215);this.specular=new G(1118481);this.shininess=30;this.lightMap=this.map=null;this.lightMapIntensity=1;this.aoMap=null;this.aoMapIntensity=1;this.emissive=new G(0);this.emissiveIntensity=1;this.bumpMap=this.emissiveMap=null;this.bumpScale=1;this.normalMap=null;this.normalMapType=0;this.normalScale=new z(1,1);this.displacementMap=null;this.displacementScale=1;this.displacementBias=0; +this.envMap=this.alphaMap=this.specularMap=null;this.combine=0;this.reflectivity=1;this.refractionRatio=.98;this.wireframe=!1;this.wireframeLinewidth=1;this.wireframeLinejoin=this.wireframeLinecap="round";this.morphNormals=this.morphTargets=this.skinning=!1;this.setValues(a)}function Cb(a){Ia.call(this);this.defines={TOON:""};this.type="MeshToonMaterial";this.gradientMap=null;this.setValues(a)}function Db(a){L.call(this);this.type="MeshNormalMaterial";this.bumpMap=null;this.bumpScale=1;this.normalMap= +null;this.normalMapType=0;this.normalScale=new z(1,1);this.displacementMap=null;this.displacementScale=1;this.displacementBias=0;this.wireframe=!1;this.wireframeLinewidth=1;this.morphNormals=this.morphTargets=this.skinning=this.lights=this.fog=!1;this.setValues(a)}function Eb(a){L.call(this);this.type="MeshLambertMaterial";this.color=new G(16777215);this.lightMap=this.map=null;this.lightMapIntensity=1;this.aoMap=null;this.aoMapIntensity=1;this.emissive=new G(0);this.emissiveIntensity=1;this.envMap= +this.alphaMap=this.specularMap=this.emissiveMap=null;this.combine=0;this.reflectivity=1;this.refractionRatio=.98;this.wireframe=!1;this.wireframeLinewidth=1;this.wireframeLinejoin=this.wireframeLinecap="round";this.morphNormals=this.morphTargets=this.skinning=!1;this.setValues(a)}function Fb(a){L.call(this);this.defines={MATCAP:""};this.type="MeshMatcapMaterial";this.color=new G(16777215);this.bumpMap=this.map=this.matcap=null;this.bumpScale=1;this.normalMap=null;this.normalMapType=0;this.normalScale= +new z(1,1);this.displacementMap=null;this.displacementScale=1;this.displacementBias=0;this.alphaMap=null;this.lights=this.morphNormals=this.morphTargets=this.skinning=!1;this.setValues(a);if(null===this.matcap){a=document.createElement("canvas");a.width=1;a.height=1;var b=a.getContext("2d");b.fillStyle="#fff";b.fillRect(0,0,1,1);this.matcap=new THREE.CanvasTexture(a)}}function Gb(a){T.call(this);this.type="LineDashedMaterial";this.scale=1;this.dashSize=3;this.gapSize=1;this.setValues(a)}function Ca(a, +b,c,d){this.parameterPositions=a;this._cachedIndex=0;this.resultBuffer=void 0!==d?d:new b.constructor(c);this.sampleValues=b;this.valueSize=c}function Ad(a,b,c,d){Ca.call(this,a,b,c,d);this._offsetNext=this._weightNext=this._offsetPrev=this._weightPrev=-0}function cd(a,b,c,d){Ca.call(this,a,b,c,d)}function Bd(a,b,c,d){Ca.call(this,a,b,c,d)}function qa(a,b,c,d){if(void 0===a)throw Error("THREE.KeyframeTrack: track name is undefined");if(void 0===b||0===b.length)throw Error("THREE.KeyframeTrack: no keyframes in track named "+ +a);this.name=a;this.times=ha.convertArray(b,this.TimeBufferType);this.values=ha.convertArray(c,this.ValueBufferType);this.setInterpolation(d||this.DefaultInterpolation)}function Cd(a,b,c){qa.call(this,a,b,c)}function Dd(a,b,c,d){qa.call(this,a,b,c,d)}function hc(a,b,c,d){qa.call(this,a,b,c,d)}function Ed(a,b,c,d){Ca.call(this,a,b,c,d)}function dd(a,b,c,d){qa.call(this,a,b,c,d)}function Fd(a,b,c,d){qa.call(this,a,b,c,d)}function ic(a,b,c,d){qa.call(this,a,b,c,d)}function za(a,b,c){this.name=a;this.tracks= +c;this.duration=void 0!==b?b:-1;this.uuid=R.generateUUID();0>this.duration&&this.resetDuration()}function Yg(a){switch(a.toLowerCase()){case "scalar":case "double":case "float":case "number":case "integer":return hc;case "vector":case "vector2":case "vector3":case "vector4":return ic;case "color":return Dd;case "quaternion":return dd;case "bool":case "boolean":return Cd;case "string":return Fd}throw Error("THREE.KeyframeTrack: Unsupported typeName: "+a);}function Zg(a){if(void 0===a.type)throw Error("THREE.KeyframeTrack: track type undefined, can not parse"); +var b=Yg(a.type);if(void 0===a.times){var c=[],d=[];ha.flattenJSON(a.keys,c,d,"value");a.times=c;a.values=d}return void 0!==b.parse?b.parse(a):new b(a.name,a.times,a.values,a.interpolation)}function ge(a,b,c){var d=this,e=!1,f=0,g=0,h=void 0;this.onStart=void 0;this.onLoad=a;this.onProgress=b;this.onError=c;this.itemStart=function(a){g++;if(!1===e&&void 0!==d.onStart)d.onStart(a,f,g);e=!0};this.itemEnd=function(a){f++;if(void 0!==d.onProgress)d.onProgress(a,f,g);if(f===g&&(e=!1,void 0!==d.onLoad))d.onLoad()}; +this.itemError=function(a){if(void 0!==d.onError)d.onError(a)};this.resolveURL=function(a){return h?h(a):a};this.setURLModifier=function(a){h=a;return this}}function Fa(a){this.manager=void 0!==a?a:ta}function rf(a){this.manager=void 0!==a?a:ta}function sf(a){this.manager=void 0!==a?a:ta;this._parser=null}function he(a){this.manager=void 0!==a?a:ta;this._parser=null}function ed(a){this.manager=void 0!==a?a:ta}function ie(a){this.manager=void 0!==a?a:ta}function Gd(a){this.manager=void 0!==a?a:ta} +function Q(){this.type="Curve";this.arcLengthDivisions=200}function wa(a,b,c,d,e,f,g,h){Q.call(this);this.type="EllipseCurve";this.aX=a||0;this.aY=b||0;this.xRadius=c||1;this.yRadius=d||1;this.aStartAngle=e||0;this.aEndAngle=f||2*Math.PI;this.aClockwise=g||!1;this.aRotation=h||0}function jc(a,b,c,d,e,f){wa.call(this,a,b,c,c,d,e,f);this.type="ArcCurve"}function je(){var a=0,b=0,c=0,d=0;return{initCatmullRom:function(e,f,g,h,k){e=k*(g-e);h=k*(h-f);a=f;b=e;c=-3*f+3*g-2*e-h;d=2*f-2*g+e+h},initNonuniformCatmullRom:function(e, +f,g,h,k,m,q){e=((f-e)/k-(g-e)/(k+m)+(g-f)/m)*m;h=((g-f)/m-(h-f)/(m+q)+(h-g)/q)*m;a=f;b=e;c=-3*f+3*g-2*e-h;d=2*f-2*g+e+h},calc:function(e){var f=e*e;return a+b*e+c*f+d*f*e}}}function ra(a,b,c,d){Q.call(this);this.type="CatmullRomCurve3";this.points=a||[];this.closed=b||!1;this.curveType=c||"centripetal";this.tension=d||.5}function tf(a,b,c,d,e){b=.5*(d-b);e=.5*(e-c);var f=a*a;return(2*c-2*d+b+e)*a*f+(-3*c+3*d-2*b-e)*f+b*a+c}function fd(a,b,c,d){var e=1-a;return e*e*b+2*(1-a)*a*c+a*a*d}function gd(a, +b,c,d,e){var f=1-a,g=1-a;return f*f*f*b+3*g*g*a*c+3*(1-a)*a*a*d+a*a*a*e}function Ja(a,b,c,d){Q.call(this);this.type="CubicBezierCurve";this.v0=a||new z;this.v1=b||new z;this.v2=c||new z;this.v3=d||new z}function Ua(a,b,c,d){Q.call(this);this.type="CubicBezierCurve3";this.v0=a||new p;this.v1=b||new p;this.v2=c||new p;this.v3=d||new p}function Aa(a,b){Q.call(this);this.type="LineCurve";this.v1=a||new z;this.v2=b||new z}function Ka(a,b){Q.call(this);this.type="LineCurve3";this.v1=a||new p;this.v2=b|| +new p}function La(a,b,c){Q.call(this);this.type="QuadraticBezierCurve";this.v0=a||new z;this.v1=b||new z;this.v2=c||new z}function Va(a,b,c){Q.call(this);this.type="QuadraticBezierCurve3";this.v0=a||new p;this.v1=b||new p;this.v2=c||new p}function Ma(a){Q.call(this);this.type="SplineCurve";this.points=a||[]}function ab(){Q.call(this);this.type="CurvePath";this.curves=[];this.autoClose=!1}function Na(a){ab.call(this);this.type="Path";this.currentPoint=new z;a&&this.setFromPoints(a)}function ib(a){Na.call(this, +a);this.uuid=R.generateUUID();this.type="Shape";this.holes=[]}function ca(a,b){D.call(this);this.type="Light";this.color=new G(a);this.intensity=void 0!==b?b:1;this.receiveShadow=void 0}function Hd(a,b,c){ca.call(this,a,c);this.type="HemisphereLight";this.castShadow=void 0;this.position.copy(D.DefaultUp);this.updateMatrix();this.groundColor=new G(b)}function Hb(a){this.camera=a;this.bias=0;this.radius=1;this.mapSize=new z(512,512);this.map=null;this.matrix=new P}function Id(){Hb.call(this,new V(50, +1,.5,500))}function Jd(a,b,c,d,e,f){ca.call(this,a,b);this.type="SpotLight";this.position.copy(D.DefaultUp);this.updateMatrix();this.target=new D;Object.defineProperty(this,"power",{get:function(){return this.intensity*Math.PI},set:function(a){this.intensity=a/Math.PI}});this.distance=void 0!==c?c:0;this.angle=void 0!==d?d:Math.PI/3;this.penumbra=void 0!==e?e:0;this.decay=void 0!==f?f:1;this.shadow=new Id}function Kd(a,b,c,d){ca.call(this,a,b);this.type="PointLight";Object.defineProperty(this,"power", +{get:function(){return 4*this.intensity*Math.PI},set:function(a){this.intensity=a/(4*Math.PI)}});this.distance=void 0!==c?c:0;this.decay=void 0!==d?d:1;this.shadow=new Hb(new V(90,1,.5,500))}function hd(a,b,c,d,e,f){Ra.call(this);this.type="OrthographicCamera";this.zoom=1;this.view=null;this.left=void 0!==a?a:-1;this.right=void 0!==b?b:1;this.top=void 0!==c?c:1;this.bottom=void 0!==d?d:-1;this.near=void 0!==e?e:.1;this.far=void 0!==f?f:2E3;this.updateProjectionMatrix()}function Ld(){Hb.call(this, +new hd(-5,5,5,-5,.5,500))}function Md(a,b){ca.call(this,a,b);this.type="DirectionalLight";this.position.copy(D.DefaultUp);this.updateMatrix();this.target=new D;this.shadow=new Ld}function Nd(a,b){ca.call(this,a,b);this.type="AmbientLight";this.castShadow=void 0}function Od(a,b,c,d){ca.call(this,a,b);this.type="RectAreaLight";this.width=void 0!==c?c:10;this.height=void 0!==d?d:10}function Pd(a){this.manager=void 0!==a?a:ta;this.textures={}}function ke(a){this.manager=void 0!==a?a:ta}function kc(){} +function Qd(a){"boolean"===typeof a&&(console.warn("THREE.JSONLoader: showStatus parameter has been removed from constructor."),a=void 0);this.manager=void 0!==a?a:ta;this.withCredentials=!1}function le(a){this.manager=void 0!==a?a:ta;this.resourcePath=""}function me(a){"undefined"===typeof createImageBitmap&&console.warn("THREE.ImageBitmapLoader: createImageBitmap() not supported.");"undefined"===typeof fetch&&console.warn("THREE.ImageBitmapLoader: fetch() not supported.");this.manager=void 0!== +a?a:ta;this.options=void 0}function ne(){this.type="ShapePath";this.color=new G;this.subPaths=[];this.currentPath=null}function oe(a){this.type="Font";this.data=a}function uf(a){this.manager=void 0!==a?a:ta}function pe(a){this.manager=void 0!==a?a:ta}function vf(){this.type="StereoCamera";this.aspect=1;this.eyeSep=.064;this.cameraL=new V;this.cameraL.layers.enable(1);this.cameraL.matrixAutoUpdate=!1;this.cameraR=new V;this.cameraR.layers.enable(2);this.cameraR.matrixAutoUpdate=!1}function id(a,b, +c,d){D.call(this);this.type="CubeCamera";var e=new V(90,1,a,b);e.up.set(0,-1,0);e.lookAt(new p(1,0,0));this.add(e);var f=new V(90,1,a,b);f.up.set(0,-1,0);f.lookAt(new p(-1,0,0));this.add(f);var g=new V(90,1,a,b);g.up.set(0,0,1);g.lookAt(new p(0,1,0));this.add(g);var h=new V(90,1,a,b);h.up.set(0,0,-1);h.lookAt(new p(0,-1,0));this.add(h);var k=new V(90,1,a,b);k.up.set(0,-1,0);k.lookAt(new p(0,0,1));this.add(k);var m=new V(90,1,a,b);m.up.set(0,-1,0);m.lookAt(new p(0,0,-1));this.add(m);d=d||{format:1022, +magFilter:1006,minFilter:1006};this.renderTarget=new Jb(c,c,d);this.renderTarget.texture.name="CubeCamera";this.update=function(a,b){null===this.parent&&this.updateMatrixWorld();var c=this.renderTarget,d=c.texture.generateMipmaps;c.texture.generateMipmaps=!1;c.activeCubeFace=0;a.render(b,e,c);c.activeCubeFace=1;a.render(b,f,c);c.activeCubeFace=2;a.render(b,g,c);c.activeCubeFace=3;a.render(b,h,c);c.activeCubeFace=4;a.render(b,k,c);c.texture.generateMipmaps=d;c.activeCubeFace=5;a.render(b,m,c);a.setRenderTarget(null)}; +this.clear=function(a,b,c,d){for(var e=this.renderTarget,f=0;6>f;f++)e.activeCubeFace=f,a.setRenderTarget(e),a.clear(b,c,d);a.setRenderTarget(null)}}function qe(a){this.autoStart=void 0!==a?a:!0;this.elapsedTime=this.oldTime=this.startTime=0;this.running=!1}function re(){D.call(this);this.type="AudioListener";this.context=se.getContext();this.gain=this.context.createGain();this.gain.connect(this.context.destination);this.filter=null;this.timeDelta=0}function lc(a){D.call(this);this.type="Audio";this.listener= +a;this.context=a.context;this.gain=this.context.createGain();this.gain.connect(a.getInput());this.autoplay=!1;this.buffer=null;this.loop=!1;this.offset=this.startTime=0;this.playbackRate=1;this.isPlaying=!1;this.hasPlaybackControl=!0;this.sourceType="empty";this.filters=[]}function te(a){lc.call(this,a);this.panner=this.context.createPanner();this.panner.connect(this.gain)}function ue(a,b){this.analyser=a.context.createAnalyser();this.analyser.fftSize=void 0!==b?b:2048;this.data=new Uint8Array(this.analyser.frequencyBinCount); +a.getOutput().connect(this.analyser)}function ve(a,b,c){this.binding=a;this.valueSize=c;a=Float64Array;switch(b){case "quaternion":b=this._slerp;break;case "string":case "bool":a=Array;b=this._select;break;default:b=this._lerp}this.buffer=new a(4*c);this._mixBufferRegion=b;this.referenceCount=this.useCount=this.cumulativeWeight=0}function wf(a,b,c){c=c||ua.parseTrackName(b);this._targetGroup=a;this._bindings=a.subscribe_(b,c)}function ua(a,b,c){this.path=b;this.parsedPath=c||ua.parseTrackName(b); +this.node=ua.findNode(a,this.parsedPath.nodeName)||a;this.rootNode=a}function xf(){this.uuid=R.generateUUID();this._objects=Array.prototype.slice.call(arguments);this.nCachedObjects_=0;var a={};this._indicesByUUID=a;for(var b=0,c=arguments.length;b!==c;++b)a[arguments[b].uuid]=b;this._paths=[];this._parsedPaths=[];this._bindings=[];this._bindingsIndicesByPath={};var d=this;this.stats={objects:{get total(){return d._objects.length},get inUse(){return this.total-d.nCachedObjects_}},get bindingsPerObject(){return d._bindings.length}}} +function yf(a,b,c){this._mixer=a;this._clip=b;this._localRoot=c||null;a=b.tracks;b=a.length;c=Array(b);for(var d={endingStart:2400,endingEnd:2400},e=0;e!==b;++e){var f=a[e].createInterpolant(null);c[e]=f;f.settings=d}this._interpolantSettings=d;this._interpolants=c;this._propertyBindings=Array(b);this._weightInterpolant=this._timeScaleInterpolant=this._byClipCacheIndex=this._cacheIndex=null;this.loop=2201;this._loopCount=-1;this._startTime=null;this.time=0;this._effectiveWeight=this.weight=this._effectiveTimeScale= +this.timeScale=1;this.repetitions=Infinity;this.paused=!1;this.enabled=!0;this.clampWhenFinished=!1;this.zeroSlopeAtEnd=this.zeroSlopeAtStart=!0}function we(a){this._root=a;this._initMemoryManager();this.time=this._accuIndex=0;this.timeScale=1}function Rd(a,b){"string"===typeof a&&(console.warn("THREE.Uniform: Type parameter is no longer needed."),a=b);this.value=a}function xe(){E.call(this);this.type="InstancedBufferGeometry";this.maxInstancedCount=void 0}function ye(a,b,c){sb.call(this,a,b);this.meshPerAttribute= +c||1}function ze(a,b,c,d){"number"===typeof c&&(d=c,c=!1,console.error("THREE.InstancedBufferAttribute: The constructor now expects normalized as the third argument."));F.call(this,a,b,c);this.meshPerAttribute=d||1}function zf(a,b,c,d){this.ray=new rb(a,b);this.near=c||0;this.far=d||Infinity;this.params={Mesh:{},Line:{},LOD:{},Points:{threshold:1},Sprite:{}};Object.defineProperties(this.params,{PointCloud:{get:function(){console.warn("THREE.Raycaster: params.PointCloud has been renamed to params.Points."); +return this.Points}}})}function Af(a,b){return a.distance-b.distance}function Ae(a,b,c,d){if(!1!==a.visible&&(a.raycast(b,c),!0===d)){a=a.children;d=0;for(var e=a.length;dc;c++,d++){var e=c/32*Math.PI*2,f=d/32*Math.PI*2;b.push(Math.cos(e),Math.sin(e),1,Math.cos(f),Math.sin(f),1)}a.addAttribute("position",new C(b,3));b=new T({fog:!1});this.cone=new S(a,b);this.add(this.cone);this.update()}function Df(a){var b=[];a&&a.isBone&&b.push(a);for(var c= +0;ca?-1:0b;b++)a[b]=(16>b?"0":"")+b.toString(16); +return function(){var b=4294967295*Math.random()|0,d=4294967295*Math.random()|0,e=4294967295*Math.random()|0,f=4294967295*Math.random()|0;return(a[b&255]+a[b>>8&255]+a[b>>16&255]+a[b>>24&255]+"-"+a[d&255]+a[d>>8&255]+"-"+a[d>>16&15|64]+a[d>>24&255]+"-"+a[e&63|128]+a[e>>8&255]+"-"+a[e>>16&255]+a[e>>24&255]+a[f&255]+a[f>>8&255]+a[f>>16&255]+a[f>>24&255]).toUpperCase()}}(),clamp:function(a,b,c){return Math.max(b,Math.min(c,a))},euclideanModulo:function(a,b){return(a%b+b)%b},mapLinear:function(a,b,c, +d,e){return d+(a-b)*(e-d)/(c-b)},lerp:function(a,b,c){return(1-c)*a+c*b},smoothstep:function(a,b,c){if(a<=b)return 0;if(a>=c)return 1;a=(a-b)/(c-b);return a*a*(3-2*a)},smootherstep:function(a,b,c){if(a<=b)return 0;if(a>=c)return 1;a=(a-b)/(c-b);return a*a*a*(a*(6*a-15)+10)},randInt:function(a,b){return a+Math.floor(Math.random()*(b-a+1))},randFloat:function(a,b){return a+Math.random()*(b-a)},randFloatSpread:function(a){return a*(.5-Math.random())},degToRad:function(a){return a*R.DEG2RAD},radToDeg:function(a){return a* +R.RAD2DEG},isPowerOfTwo:function(a){return 0===(a&a-1)&&0!==a},ceilPowerOfTwo:function(a){return Math.pow(2,Math.ceil(Math.log(a)/Math.LN2))},floorPowerOfTwo:function(a){return Math.pow(2,Math.floor(Math.log(a)/Math.LN2))}};Object.defineProperties(z.prototype,{width:{get:function(){return this.x},set:function(a){this.x=a}},height:{get:function(){return this.y},set:function(a){this.y=a}}});Object.assign(z.prototype,{isVector2:!0,set:function(a,b){this.x=a;this.y=b;return this},setScalar:function(a){this.y= +this.x=a;return this},setX:function(a){this.x=a;return this},setY:function(a){this.y=a;return this},setComponent:function(a,b){switch(a){case 0:this.x=b;break;case 1:this.y=b;break;default:throw Error("index is out of range: "+a);}return this},getComponent:function(a){switch(a){case 0:return this.x;case 1:return this.y;default:throw Error("index is out of range: "+a);}},clone:function(){return new this.constructor(this.x,this.y)},copy:function(a){this.x=a.x;this.y=a.y;return this},add:function(a, +b){if(void 0!==b)return console.warn("THREE.Vector2: .add() now only accepts one argument. Use .addVectors( a, b ) instead."),this.addVectors(a,b);this.x+=a.x;this.y+=a.y;return this},addScalar:function(a){this.x+=a;this.y+=a;return this},addVectors:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;return this},addScaledVector:function(a,b){this.x+=a.x*b;this.y+=a.y*b;return this},sub:function(a,b){if(void 0!==b)return console.warn("THREE.Vector2: .sub() now only accepts one argument. Use .subVectors( a, b ) instead."), +this.subVectors(a,b);this.x-=a.x;this.y-=a.y;return this},subScalar:function(a){this.x-=a;this.y-=a;return this},subVectors:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;return this},multiply:function(a){this.x*=a.x;this.y*=a.y;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;return this},divide:function(a){this.x/=a.x;this.y/=a.y;return this},divideScalar:function(a){return this.multiplyScalar(1/a)},applyMatrix3:function(a){var b=this.x,c=this.y;a=a.elements;this.x=a[0]*b+a[3]*c+a[6];this.y= +a[1]*b+a[4]*c+a[7];return this},min:function(a){this.x=Math.min(this.x,a.x);this.y=Math.min(this.y,a.y);return this},max:function(a){this.x=Math.max(this.x,a.x);this.y=Math.max(this.y,a.y);return this},clamp:function(a,b){this.x=Math.max(a.x,Math.min(b.x,this.x));this.y=Math.max(a.y,Math.min(b.y,this.y));return this},clampScalar:function(){var a=new z,b=new z;return function(c,d){a.set(c,c);b.set(d,d);return this.clamp(a,b)}}(),clampLength:function(a,b){var c=this.length();return this.divideScalar(c|| +1).multiplyScalar(Math.max(a,Math.min(b,c)))},floor:function(){this.x=Math.floor(this.x);this.y=Math.floor(this.y);return this},ceil:function(){this.x=Math.ceil(this.x);this.y=Math.ceil(this.y);return this},round:function(){this.x=Math.round(this.x);this.y=Math.round(this.y);return this},roundToZero:function(){this.x=0>this.x?Math.ceil(this.x):Math.floor(this.x);this.y=0>this.y?Math.ceil(this.y):Math.floor(this.y);return this},negate:function(){this.x=-this.x;this.y=-this.y;return this},dot:function(a){return this.x* +a.x+this.y*a.y},cross:function(a){return this.x*a.y-this.y*a.x},lengthSq:function(){return this.x*this.x+this.y*this.y},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},manhattanLength:function(){return Math.abs(this.x)+Math.abs(this.y)},normalize:function(){return this.divideScalar(this.length()||1)},angle:function(){var a=Math.atan2(this.y,this.x);0>a&&(a+=2*Math.PI);return a},distanceTo:function(a){return Math.sqrt(this.distanceToSquared(a))},distanceToSquared:function(a){var b= +this.x-a.x;a=this.y-a.y;return b*b+a*a},manhattanDistanceTo:function(a){return Math.abs(this.x-a.x)+Math.abs(this.y-a.y)},setLength:function(a){return this.normalize().multiplyScalar(a)},lerp:function(a,b){this.x+=(a.x-this.x)*b;this.y+=(a.y-this.y)*b;return this},lerpVectors:function(a,b,c){return this.subVectors(b,a).multiplyScalar(c).add(a)},equals:function(a){return a.x===this.x&&a.y===this.y},fromArray:function(a,b){void 0===b&&(b=0);this.x=a[b];this.y=a[b+1];return this},toArray:function(a, +b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this.x;a[b+1]=this.y;return a},fromBufferAttribute:function(a,b,c){void 0!==c&&console.warn("THREE.Vector2: offset has been removed from .fromBufferAttribute().");this.x=a.getX(b);this.y=a.getY(b);return this},rotateAround:function(a,b){var c=Math.cos(b);b=Math.sin(b);var d=this.x-a.x,e=this.y-a.y;this.x=d*c-e*b+a.x;this.y=d*b+e*c+a.y;return this}});Object.assign(P.prototype,{isMatrix4:!0,set:function(a,b,c,d,e,f,g,h,k,m,q,l,r,p,t,u){var n=this.elements; +n[0]=a;n[4]=b;n[8]=c;n[12]=d;n[1]=e;n[5]=f;n[9]=g;n[13]=h;n[2]=k;n[6]=m;n[10]=q;n[14]=l;n[3]=r;n[7]=p;n[11]=t;n[15]=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},clone:function(){return(new P).fromArray(this.elements)},copy:function(a){var b=this.elements;a=a.elements;b[0]=a[0];b[1]=a[1];b[2]=a[2];b[3]=a[3];b[4]=a[4];b[5]=a[5];b[6]=a[6];b[7]=a[7];b[8]=a[8];b[9]=a[9];b[10]=a[10];b[11]=a[11];b[12]=a[12];b[13]=a[13];b[14]=a[14];b[15]=a[15];return this},copyPosition:function(a){var b= +this.elements;a=a.elements;b[12]=a[12];b[13]=a[13];b[14]=a[14];return this},extractBasis:function(a,b,c){a.setFromMatrixColumn(this,0);b.setFromMatrixColumn(this,1);c.setFromMatrixColumn(this,2);return this},makeBasis:function(a,b,c){this.set(a.x,b.x,c.x,0,a.y,b.y,c.y,0,a.z,b.z,c.z,0,0,0,0,1);return this},extractRotation:function(){var a=new p;return function(b){var c=this.elements,d=b.elements,e=1/a.setFromMatrixColumn(b,0).length(),f=1/a.setFromMatrixColumn(b,1).length();b=1/a.setFromMatrixColumn(b, +2).length();c[0]=d[0]*e;c[1]=d[1]*e;c[2]=d[2]*e;c[3]=0;c[4]=d[4]*f;c[5]=d[5]*f;c[6]=d[6]*f;c[7]=0;c[8]=d[8]*b;c[9]=d[9]*b;c[10]=d[10]*b;c[11]=0;c[12]=0;c[13]=0;c[14]=0;c[15]=1;return this}}(),makeRotationFromEuler:function(a){a&&a.isEuler||console.error("THREE.Matrix4: .makeRotationFromEuler() now expects a Euler rotation rather than a Vector3 and order.");var b=this.elements,c=a.x,d=a.y,e=a.z,f=Math.cos(c);c=Math.sin(c);var g=Math.cos(d);d=Math.sin(d);var h=Math.cos(e);e=Math.sin(e);if("XYZ"===a.order){a= +f*h;var k=f*e,m=c*h,q=c*e;b[0]=g*h;b[4]=-g*e;b[8]=d;b[1]=k+m*d;b[5]=a-q*d;b[9]=-c*g;b[2]=q-a*d;b[6]=m+k*d;b[10]=f*g}else"YXZ"===a.order?(a=g*h,k=g*e,m=d*h,q=d*e,b[0]=a+q*c,b[4]=m*c-k,b[8]=f*d,b[1]=f*e,b[5]=f*h,b[9]=-c,b[2]=k*c-m,b[6]=q+a*c,b[10]=f*g):"ZXY"===a.order?(a=g*h,k=g*e,m=d*h,q=d*e,b[0]=a-q*c,b[4]=-f*e,b[8]=m+k*c,b[1]=k+m*c,b[5]=f*h,b[9]=q-a*c,b[2]=-f*d,b[6]=c,b[10]=f*g):"ZYX"===a.order?(a=f*h,k=f*e,m=c*h,q=c*e,b[0]=g*h,b[4]=m*d-k,b[8]=a*d+q,b[1]=g*e,b[5]=q*d+a,b[9]=k*d-m,b[2]=-d,b[6]=c* +g,b[10]=f*g):"YZX"===a.order?(a=f*g,k=f*d,m=c*g,q=c*d,b[0]=g*h,b[4]=q-a*e,b[8]=m*e+k,b[1]=e,b[5]=f*h,b[9]=-c*h,b[2]=-d*h,b[6]=k*e+m,b[10]=a-q*e):"XZY"===a.order&&(a=f*g,k=f*d,m=c*g,q=c*d,b[0]=g*h,b[4]=-e,b[8]=d*h,b[1]=a*e+q,b[5]=f*h,b[9]=k*e-m,b[2]=m*e-k,b[6]=c*h,b[10]=q*e+a);b[3]=0;b[7]=0;b[11]=0;b[12]=0;b[13]=0;b[14]=0;b[15]=1;return this},makeRotationFromQuaternion:function(){var a=new p(0,0,0),b=new p(1,1,1);return function(c){return this.compose(a,c,b)}}(),lookAt:function(){var a=new p,b=new p, +c=new p;return function(d,e,f){var g=this.elements;c.subVectors(d,e);0===c.lengthSq()&&(c.z=1);c.normalize();a.crossVectors(f,c);0===a.lengthSq()&&(1===Math.abs(f.z)?c.x+=1E-4:c.z+=1E-4,c.normalize(),a.crossVectors(f,c));a.normalize();b.crossVectors(c,a);g[0]=a.x;g[4]=b.x;g[8]=c.x;g[1]=a.y;g[5]=b.y;g[9]=c.y;g[2]=a.z;g[6]=b.z;g[10]=c.z;return this}}(),multiply:function(a,b){return void 0!==b?(console.warn("THREE.Matrix4: .multiply() now only accepts one argument. Use .multiplyMatrices( a, b ) instead."), +this.multiplyMatrices(a,b)):this.multiplyMatrices(this,a)},premultiply:function(a){return this.multiplyMatrices(a,this)},multiplyMatrices:function(a,b){var c=a.elements,d=b.elements;b=this.elements;a=c[0];var e=c[4],f=c[8],g=c[12],h=c[1],k=c[5],m=c[9],q=c[13],n=c[2],l=c[6],p=c[10],t=c[14],u=c[3],w=c[7],A=c[11];c=c[15];var v=d[0],H=d[4],y=d[8],N=d[12],z=d[1],B=d[5],C=d[9],E=d[13],D=d[2],F=d[6],G=d[10],J=d[14],L=d[3],I=d[7],K=d[11];d=d[15];b[0]=a*v+e*z+f*D+g*L;b[4]=a*H+e*B+f*F+g*I;b[8]=a*y+e*C+f*G+ +g*K;b[12]=a*N+e*E+f*J+g*d;b[1]=h*v+k*z+m*D+q*L;b[5]=h*H+k*B+m*F+q*I;b[9]=h*y+k*C+m*G+q*K;b[13]=h*N+k*E+m*J+q*d;b[2]=n*v+l*z+p*D+t*L;b[6]=n*H+l*B+p*F+t*I;b[10]=n*y+l*C+p*G+t*K;b[14]=n*N+l*E+p*J+t*d;b[3]=u*v+w*z+A*D+c*L;b[7]=u*H+w*B+A*F+c*I;b[11]=u*y+w*C+A*G+c*K;b[15]=u*N+w*E+A*J+c*d;return this},multiplyScalar:function(a){var b=this.elements;b[0]*=a;b[4]*=a;b[8]*=a;b[12]*=a;b[1]*=a;b[5]*=a;b[9]*=a;b[13]*=a;b[2]*=a;b[6]*=a;b[10]*=a;b[14]*=a;b[3]*=a;b[7]*=a;b[11]*=a;b[15]*=a;return this},applyToBufferAttribute:function(){var a= +new p;return function(b){for(var c=0,d=b.count;cthis.determinant()&&(g=-g);c.x=f[12];c.y=f[13];c.z=f[14];b.copy(this);c=1/g;f=1/h;var m=1/k;b.elements[0]*=c;b.elements[1]*=c;b.elements[2]*=c;b.elements[4]*=f;b.elements[5]*=f;b.elements[6]*=f;b.elements[8]*=m;b.elements[9]*=m;b.elements[10]*=m;d.setFromRotationMatrix(b);e.x=g;e.y=h;e.z=k;return this}}(),makePerspective:function(a,b,c,d,e,f){void 0===f&&console.warn("THREE.Matrix4: .makePerspective() has been redefined and has a new signature. Please check the docs."); +var g=this.elements;g[0]=2*e/(b-a);g[4]=0;g[8]=(b+a)/(b-a);g[12]=0;g[1]=0;g[5]=2*e/(c-d);g[9]=(c+d)/(c-d);g[13]=0;g[2]=0;g[6]=0;g[10]=-(f+e)/(f-e);g[14]=-2*f*e/(f-e);g[3]=0;g[7]=0;g[11]=-1;g[15]=0;return this},makeOrthographic:function(a,b,c,d,e,f){var g=this.elements,h=1/(b-a),k=1/(c-d),m=1/(f-e);g[0]=2*h;g[4]=0;g[8]=0;g[12]=-((b+a)*h);g[1]=0;g[5]=2*k;g[9]=0;g[13]=-((c+d)*k);g[2]=0;g[6]=0;g[10]=-2*m;g[14]=-((f+e)*m);g[3]=0;g[7]=0;g[11]=0;g[15]=1;return this},equals:function(a){var b=this.elements; +a=a.elements;for(var c=0;16>c;c++)if(b[c]!==a[c])return!1;return!0},fromArray:function(a,b){void 0===b&&(b=0);for(var c=0;16>c;c++)this.elements[c]=a[c+b];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);var c=this.elements;a[b]=c[0];a[b+1]=c[1];a[b+2]=c[2];a[b+3]=c[3];a[b+4]=c[4];a[b+5]=c[5];a[b+6]=c[6];a[b+7]=c[7];a[b+8]=c[8];a[b+9]=c[9];a[b+10]=c[10];a[b+11]=c[11];a[b+12]=c[12];a[b+13]=c[13];a[b+14]=c[14];a[b+15]=c[15];return a}});Object.assign(ja,{slerp:function(a,b,c,d){return c.copy(a).slerp(b, +d)},slerpFlat:function(a,b,c,d,e,f,g){var h=c[d+0],k=c[d+1],m=c[d+2];c=c[d+3];d=e[f+0];var l=e[f+1],n=e[f+2];e=e[f+3];if(c!==e||h!==d||k!==l||m!==n){f=1-g;var r=h*d+k*l+m*n+c*e,p=0<=r?1:-1,t=1-r*r;t>Number.EPSILON&&(t=Math.sqrt(t),r=Math.atan2(t,r*p),f=Math.sin(f*r)/t,g=Math.sin(g*r)/t);p*=g;h=h*f+d*p;k=k*f+l*p;m=m*f+n*p;c=c*f+e*p;f===1-g&&(g=1/Math.sqrt(h*h+k*k+m*m+c*c),h*=g,k*=g,m*=g,c*=g)}a[b]=h;a[b+1]=k;a[b+2]=m;a[b+3]=c}});Object.defineProperties(ja.prototype,{x:{get:function(){return this._x}, +set:function(a){this._x=a;this.onChangeCallback()}},y:{get:function(){return this._y},set:function(a){this._y=a;this.onChangeCallback()}},z:{get:function(){return this._z},set:function(a){this._z=a;this.onChangeCallback()}},w:{get:function(){return this._w},set:function(a){this._w=a;this.onChangeCallback()}}});Object.assign(ja.prototype,{isQuaternion:!0,set:function(a,b,c,d){this._x=a;this._y=b;this._z=c;this._w=d;this.onChangeCallback();return this},clone:function(){return new this.constructor(this._x, +this._y,this._z,this._w)},copy:function(a){this._x=a.x;this._y=a.y;this._z=a.z;this._w=a.w;this.onChangeCallback();return this},setFromEuler:function(a,b){if(!a||!a.isEuler)throw Error("THREE.Quaternion: .setFromEuler() now expects an Euler rotation rather than a Vector3 and order.");var c=a._x,d=a._y,e=a._z;a=a.order;var f=Math.cos,g=Math.sin,h=f(c/2),k=f(d/2);f=f(e/2);c=g(c/2);d=g(d/2);e=g(e/2);"XYZ"===a?(this._x=c*k*f+h*d*e,this._y=h*d*f-c*k*e,this._z=h*k*e+c*d*f,this._w=h*k*f-c*d*e):"YXZ"===a? +(this._x=c*k*f+h*d*e,this._y=h*d*f-c*k*e,this._z=h*k*e-c*d*f,this._w=h*k*f+c*d*e):"ZXY"===a?(this._x=c*k*f-h*d*e,this._y=h*d*f+c*k*e,this._z=h*k*e+c*d*f,this._w=h*k*f-c*d*e):"ZYX"===a?(this._x=c*k*f-h*d*e,this._y=h*d*f+c*k*e,this._z=h*k*e-c*d*f,this._w=h*k*f+c*d*e):"YZX"===a?(this._x=c*k*f+h*d*e,this._y=h*d*f+c*k*e,this._z=h*k*e-c*d*f,this._w=h*k*f-c*d*e):"XZY"===a&&(this._x=c*k*f-h*d*e,this._y=h*d*f-c*k*e,this._z=h*k*e+c*d*f,this._w=h*k*f+c*d*e);if(!1!==b)this.onChangeCallback();return this},setFromAxisAngle:function(a, +b){b/=2;var c=Math.sin(b);this._x=a.x*c;this._y=a.y*c;this._z=a.z*c;this._w=Math.cos(b);this.onChangeCallback();return this},setFromRotationMatrix:function(a){var b=a.elements,c=b[0];a=b[4];var d=b[8],e=b[1],f=b[5],g=b[9],h=b[2],k=b[6];b=b[10];var m=c+f+b;0f&&c>b?(c=2*Math.sqrt(1+c-f-b),this._w=(k-g)/c,this._x=.25*c,this._y=(a+e)/c,this._z=(d+h)/c):f>b?(c=2*Math.sqrt(1+f-c-b),this._w=(d-h)/c,this._x=(a+e)/c,this._y= +.25*c,this._z=(g+k)/c):(c=2*Math.sqrt(1+b-c-f),this._w=(e-a)/c,this._x=(d+h)/c,this._y=(g+k)/c,this._z=.25*c);this.onChangeCallback();return this},setFromUnitVectors:function(){var a=new p,b;return function(c,d){void 0===a&&(a=new p);b=c.dot(d)+1;1E-6>b?(b=0,Math.abs(c.x)>Math.abs(c.z)?a.set(-c.y,c.x,0):a.set(0,-c.z,c.y)):a.crossVectors(c,d);this._x=a.x;this._y=a.y;this._z=a.z;this._w=b;return this.normalize()}}(),angleTo:function(a){return 2*Math.acos(Math.abs(R.clamp(this.dot(a),-1,1)))},rotateTowards:function(a, +b){var c=this.angleTo(a);if(0===c)return this;this.slerp(a,Math.min(1,b/c));return this},inverse:function(){return this.conjugate()},conjugate:function(){this._x*=-1;this._y*=-1;this._z*=-1;this.onChangeCallback();return this},dot:function(a){return this._x*a._x+this._y*a._y+this._z*a._z+this._w*a._w},lengthSq:function(){return this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w},length:function(){return Math.sqrt(this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w)},normalize:function(){var a= +this.length();0===a?(this._z=this._y=this._x=0,this._w=1):(a=1/a,this._x*=a,this._y*=a,this._z*=a,this._w*=a);this.onChangeCallback();return this},multiply:function(a,b){return void 0!==b?(console.warn("THREE.Quaternion: .multiply() now only accepts one argument. Use .multiplyQuaternions( a, b ) instead."),this.multiplyQuaternions(a,b)):this.multiplyQuaternions(this,a)},premultiply:function(a){return this.multiplyQuaternions(a,this)},multiplyQuaternions:function(a,b){var c=a._x,d=a._y,e=a._z;a=a._w; +var f=b._x,g=b._y,h=b._z;b=b._w;this._x=c*b+a*f+d*h-e*g;this._y=d*b+a*g+e*f-c*h;this._z=e*b+a*h+c*g-d*f;this._w=a*b-c*f-d*g-e*h;this.onChangeCallback();return this},slerp:function(a,b){if(0===b)return this;if(1===b)return this.copy(a);var c=this._x,d=this._y,e=this._z,f=this._w,g=f*a._w+c*a._x+d*a._y+e*a._z;0>g?(this._w=-a._w,this._x=-a._x,this._y=-a._y,this._z=-a._z,g=-g):this.copy(a);if(1<=g)return this._w=f,this._x=c,this._y=d,this._z=e,this;a=1-g*g;if(a<=Number.EPSILON)return g=1-b,this._w=g* +f+b*this._w,this._x=g*c+b*this._x,this._y=g*d+b*this._y,this._z=g*e+b*this._z,this.normalize();a=Math.sqrt(a);var h=Math.atan2(a,g);g=Math.sin((1-b)*h)/a;b=Math.sin(b*h)/a;this._w=f*g+this._w*b;this._x=c*g+this._x*b;this._y=d*g+this._y*b;this._z=e*g+this._z*b;this.onChangeCallback();return this},equals:function(a){return a._x===this._x&&a._y===this._y&&a._z===this._z&&a._w===this._w},fromArray:function(a,b){void 0===b&&(b=0);this._x=a[b];this._y=a[b+1];this._z=a[b+2];this._w=a[b+3];this.onChangeCallback(); +return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this._x;a[b+1]=this._y;a[b+2]=this._z;a[b+3]=this._w;return a},onChange:function(a){this.onChangeCallback=a;return this},onChangeCallback:function(){}});Object.assign(p.prototype,{isVector3:!0,set:function(a,b,c){this.x=a;this.y=b;this.z=c;return this},setScalar:function(a){this.z=this.y=this.x=a;return this},setX:function(a){this.x=a;return this},setY:function(a){this.y=a;return this},setZ:function(a){this.z=a;return this}, +setComponent:function(a,b){switch(a){case 0:this.x=b;break;case 1:this.y=b;break;case 2:this.z=b;break;default:throw Error("index is out of range: "+a);}return this},getComponent:function(a){switch(a){case 0:return this.x;case 1:return this.y;case 2:return this.z;default:throw Error("index is out of range: "+a);}},clone:function(){return new this.constructor(this.x,this.y,this.z)},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;return this},add:function(a,b){if(void 0!==b)return console.warn("THREE.Vector3: .add() now only accepts one argument. Use .addVectors( a, b ) instead."), +this.addVectors(a,b);this.x+=a.x;this.y+=a.y;this.z+=a.z;return this},addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;return this},addVectors:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;return this},addScaledVector:function(a,b){this.x+=a.x*b;this.y+=a.y*b;this.z+=a.z*b;return this},sub:function(a,b){if(void 0!==b)return console.warn("THREE.Vector3: .sub() now only accepts one argument. Use .subVectors( a, b ) instead."),this.subVectors(a,b);this.x-=a.x;this.y-=a.y;this.z-=a.z; +return this},subScalar:function(a){this.x-=a;this.y-=a;this.z-=a;return this},subVectors:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;return this},multiply:function(a,b){if(void 0!==b)return console.warn("THREE.Vector3: .multiply() now only accepts one argument. Use .multiplyVectors( a, b ) instead."),this.multiplyVectors(a,b);this.x*=a.x;this.y*=a.y;this.z*=a.z;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;return this},multiplyVectors:function(a,b){this.x=a.x* +b.x;this.y=a.y*b.y;this.z=a.z*b.z;return this},applyEuler:function(){var a=new ja;return function(b){b&&b.isEuler||console.error("THREE.Vector3: .applyEuler() now expects an Euler rotation rather than a Vector3 and order.");return this.applyQuaternion(a.setFromEuler(b))}}(),applyAxisAngle:function(){var a=new ja;return function(b,c){return this.applyQuaternion(a.setFromAxisAngle(b,c))}}(),applyMatrix3:function(a){var b=this.x,c=this.y,d=this.z;a=a.elements;this.x=a[0]*b+a[3]*c+a[6]*d;this.y=a[1]* +b+a[4]*c+a[7]*d;this.z=a[2]*b+a[5]*c+a[8]*d;return this},applyMatrix4:function(a){var b=this.x,c=this.y,d=this.z;a=a.elements;var e=1/(a[3]*b+a[7]*c+a[11]*d+a[15]);this.x=(a[0]*b+a[4]*c+a[8]*d+a[12])*e;this.y=(a[1]*b+a[5]*c+a[9]*d+a[13])*e;this.z=(a[2]*b+a[6]*c+a[10]*d+a[14])*e;return this},applyQuaternion:function(a){var b=this.x,c=this.y,d=this.z,e=a.x,f=a.y,g=a.z;a=a.w;var h=a*b+f*d-g*c,k=a*c+g*b-e*d,m=a*d+e*c-f*b;b=-e*b-f*c-g*d;this.x=h*a+b*-e+k*-g-m*-f;this.y=k*a+b*-f+m*-e-h*-g;this.z=m*a+b* +-g+h*-f-k*-e;return this},project:function(a){return this.applyMatrix4(a.matrixWorldInverse).applyMatrix4(a.projectionMatrix)},unproject:function(){var a=new P;return function(b){return this.applyMatrix4(a.getInverse(b.projectionMatrix)).applyMatrix4(b.matrixWorld)}}(),transformDirection:function(a){var b=this.x,c=this.y,d=this.z;a=a.elements;this.x=a[0]*b+a[4]*c+a[8]*d;this.y=a[1]*b+a[5]*c+a[9]*d;this.z=a[2]*b+a[6]*c+a[10]*d;return this.normalize()},divide:function(a){this.x/=a.x;this.y/=a.y;this.z/= +a.z;return this},divideScalar:function(a){return this.multiplyScalar(1/a)},min:function(a){this.x=Math.min(this.x,a.x);this.y=Math.min(this.y,a.y);this.z=Math.min(this.z,a.z);return this},max:function(a){this.x=Math.max(this.x,a.x);this.y=Math.max(this.y,a.y);this.z=Math.max(this.z,a.z);return this},clamp:function(a,b){this.x=Math.max(a.x,Math.min(b.x,this.x));this.y=Math.max(a.y,Math.min(b.y,this.y));this.z=Math.max(a.z,Math.min(b.z,this.z));return this},clampScalar:function(){var a=new p,b=new p; +return function(c,d){a.set(c,c,c);b.set(d,d,d);return this.clamp(a,b)}}(),clampLength:function(a,b){var c=this.length();return this.divideScalar(c||1).multiplyScalar(Math.max(a,Math.min(b,c)))},floor:function(){this.x=Math.floor(this.x);this.y=Math.floor(this.y);this.z=Math.floor(this.z);return this},ceil:function(){this.x=Math.ceil(this.x);this.y=Math.ceil(this.y);this.z=Math.ceil(this.z);return this},round:function(){this.x=Math.round(this.x);this.y=Math.round(this.y);this.z=Math.round(this.z); +return this},roundToZero:function(){this.x=0>this.x?Math.ceil(this.x):Math.floor(this.x);this.y=0>this.y?Math.ceil(this.y):Math.floor(this.y);this.z=0>this.z?Math.ceil(this.z):Math.floor(this.z);return this},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)},manhattanLength:function(){return Math.abs(this.x)+ +Math.abs(this.y)+Math.abs(this.z)},normalize:function(){return this.divideScalar(this.length()||1)},setLength:function(a){return this.normalize().multiplyScalar(a)},lerp:function(a,b){this.x+=(a.x-this.x)*b;this.y+=(a.y-this.y)*b;this.z+=(a.z-this.z)*b;return this},lerpVectors:function(a,b,c){return this.subVectors(b,a).multiplyScalar(c).add(a)},cross:function(a,b){return void 0!==b?(console.warn("THREE.Vector3: .cross() now only accepts one argument. Use .crossVectors( a, b ) instead."),this.crossVectors(a, +b)):this.crossVectors(this,a)},crossVectors:function(a,b){var c=a.x,d=a.y;a=a.z;var e=b.x,f=b.y;b=b.z;this.x=d*b-a*f;this.y=a*e-c*b;this.z=c*f-d*e;return this},projectOnVector:function(a){var b=a.dot(this)/a.lengthSq();return this.copy(a).multiplyScalar(b)},projectOnPlane:function(){var a=new p;return function(b){a.copy(this).projectOnVector(b);return this.sub(a)}}(),reflect:function(){var a=new p;return function(b){return this.sub(a.copy(b).multiplyScalar(2*this.dot(b)))}}(),angleTo:function(a){a= +this.dot(a)/Math.sqrt(this.lengthSq()*a.lengthSq());return Math.acos(R.clamp(a,-1,1))},distanceTo:function(a){return Math.sqrt(this.distanceToSquared(a))},distanceToSquared:function(a){var b=this.x-a.x,c=this.y-a.y;a=this.z-a.z;return b*b+c*c+a*a},manhattanDistanceTo:function(a){return Math.abs(this.x-a.x)+Math.abs(this.y-a.y)+Math.abs(this.z-a.z)},setFromSpherical:function(a){return this.setFromSphericalCoords(a.radius,a.phi,a.theta)},setFromSphericalCoords:function(a,b,c){var d=Math.sin(b)*a;this.x= +d*Math.sin(c);this.y=Math.cos(b)*a;this.z=d*Math.cos(c);return this},setFromCylindrical:function(a){return this.setFromCylindricalCoords(a.radius,a.theta,a.y)},setFromCylindricalCoords:function(a,b,c){this.x=a*Math.sin(b);this.y=c;this.z=a*Math.cos(b);return this},setFromMatrixPosition:function(a){a=a.elements;this.x=a[12];this.y=a[13];this.z=a[14];return this},setFromMatrixScale:function(a){var b=this.setFromMatrixColumn(a,0).length(),c=this.setFromMatrixColumn(a,1).length();a=this.setFromMatrixColumn(a, +2).length();this.x=b;this.y=c;this.z=a;return this},setFromMatrixColumn:function(a,b){return this.fromArray(a.elements,4*b)},equals:function(a){return a.x===this.x&&a.y===this.y&&a.z===this.z},fromArray:function(a,b){void 0===b&&(b=0);this.x=a[b];this.y=a[b+1];this.z=a[b+2];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this.x;a[b+1]=this.y;a[b+2]=this.z;return a},fromBufferAttribute:function(a,b,c){void 0!==c&&console.warn("THREE.Vector3: offset has been removed from .fromBufferAttribute()."); +this.x=a.getX(b);this.y=a.getY(b);this.z=a.getZ(b);return this}});Object.assign(oa.prototype,{isMatrix3:!0,set:function(a,b,c,d,e,f,g,h,k){var m=this.elements;m[0]=a;m[1]=d;m[2]=g;m[3]=b;m[4]=e;m[5]=h;m[6]=c;m[7]=f;m[8]=k;return this},identity:function(){this.set(1,0,0,0,1,0,0,0,1);return this},clone:function(){return(new this.constructor).fromArray(this.elements)},copy:function(a){var b=this.elements;a=a.elements;b[0]=a[0];b[1]=a[1];b[2]=a[2];b[3]=a[3];b[4]=a[4];b[5]=a[5];b[6]=a[6];b[7]=a[7];b[8]= +a[8];return this},setFromMatrix4:function(a){a=a.elements;this.set(a[0],a[4],a[8],a[1],a[5],a[9],a[2],a[6],a[10]);return this},applyToBufferAttribute:function(){var a=new p;return function(b){for(var c=0,d=b.count;cc;c++)if(b[c]!==a[c])return!1;return!0},fromArray:function(a,b){void 0===b&&(b=0);for(var c=0;9>c;c++)this.elements[c]=a[c+b];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);var c=this.elements;a[b]=c[0];a[b+1]=c[1];a[b+2]=c[2];a[b+3]=c[3];a[b+4]=c[4];a[b+5]=c[5];a[b+6]=c[6];a[b+7]=c[7];a[b+8]=c[8]; +return a}});var jb={getDataURL:function(a){if("undefined"==typeof HTMLCanvasElement)return a.src;if(a instanceof HTMLCanvasElement)var b=a;else{b=document.createElementNS("http://www.w3.org/1999/xhtml","canvas");b.width=a.width;b.height=a.height;var c=b.getContext("2d");a instanceof ImageData?c.putImageData(a,0,0):c.drawImage(a,0,0,a.width,a.height)}return 2048a.x||1a.x?0:1;break;case 1002:a.x=1===Math.abs(Math.floor(a.x)%2)?Math.ceil(a.x)-a.x:a.x-Math.floor(a.x)}if(0> +a.y||1a.y?0:1;break;case 1002:a.y=1===Math.abs(Math.floor(a.y)%2)?Math.ceil(a.y)-a.y:a.y-Math.floor(a.y)}this.flipY&&(a.y=1-a.y);return a}});Object.defineProperty(W.prototype,"needsUpdate",{set:function(a){!0===a&&this.version++}});Object.assign(Z.prototype,{isVector4:!0,set:function(a,b,c,d){this.x=a;this.y=b;this.z=c;this.w=d;return this},setScalar:function(a){this.w=this.z=this.y=this.x=a;return this},setX:function(a){this.x= +a;return this},setY:function(a){this.y=a;return this},setZ:function(a){this.z=a;return this},setW:function(a){this.w=a;return this},setComponent:function(a,b){switch(a){case 0:this.x=b;break;case 1:this.y=b;break;case 2:this.z=b;break;case 3:this.w=b;break;default:throw Error("index is out of range: "+a);}return this},getComponent:function(a){switch(a){case 0:return this.x;case 1:return this.y;case 2:return this.z;case 3:return this.w;default:throw Error("index is out of range: "+a);}},clone:function(){return new this.constructor(this.x, +this.y,this.z,this.w)},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;this.w=void 0!==a.w?a.w:1;return this},add:function(a,b){if(void 0!==b)return console.warn("THREE.Vector4: .add() now only accepts one argument. Use .addVectors( a, b ) instead."),this.addVectors(a,b);this.x+=a.x;this.y+=a.y;this.z+=a.z;this.w+=a.w;return this},addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;this.w+=a;return this},addVectors:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;this.w=a.w+b.w;return this}, +addScaledVector:function(a,b){this.x+=a.x*b;this.y+=a.y*b;this.z+=a.z*b;this.w+=a.w*b;return this},sub:function(a,b){if(void 0!==b)return console.warn("THREE.Vector4: .sub() now only accepts one argument. Use .subVectors( a, b ) instead."),this.subVectors(a,b);this.x-=a.x;this.y-=a.y;this.z-=a.z;this.w-=a.w;return this},subScalar:function(a){this.x-=a;this.y-=a;this.z-=a;this.w-=a;return this},subVectors:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;this.w=a.w-b.w;return this},multiplyScalar:function(a){this.x*= +a;this.y*=a;this.z*=a;this.w*=a;return this},applyMatrix4:function(a){var b=this.x,c=this.y,d=this.z,e=this.w;a=a.elements;this.x=a[0]*b+a[4]*c+a[8]*d+a[12]*e;this.y=a[1]*b+a[5]*c+a[9]*d+a[13]*e;this.z=a[2]*b+a[6]*c+a[10]*d+a[14]*e;this.w=a[3]*b+a[7]*c+a[11]*d+a[15]*e;return this},divideScalar:function(a){return this.multiplyScalar(1/a)},setAxisAngleFromQuaternion:function(a){this.w=2*Math.acos(a.w);var b=Math.sqrt(1-a.w*a.w);1E-4>b?(this.x=1,this.z=this.y=0):(this.x=a.x/b,this.y=a.y/b,this.z=a.z/ +b);return this},setAxisAngleFromRotationMatrix:function(a){a=a.elements;var b=a[0];var c=a[4];var d=a[8],e=a[1],f=a[5],g=a[9];var h=a[2];var k=a[6];var m=a[10];if(.01>Math.abs(c-e)&&.01>Math.abs(d-h)&&.01>Math.abs(g-k)){if(.1>Math.abs(c+e)&&.1>Math.abs(d+h)&&.1>Math.abs(g+k)&&.1>Math.abs(b+f+m-3))return this.set(1,0,0,0),this;a=Math.PI;b=(b+1)/2;f=(f+1)/2;m=(m+1)/2;c=(c+e)/4;d=(d+h)/4;g=(g+k)/4;b>f&&b>m?.01>b?(k=0,c=h=.707106781):(k=Math.sqrt(b),h=c/k,c=d/k):f>m?.01>f?(k=.707106781,h=0,c=.707106781): +(h=Math.sqrt(f),k=c/h,c=g/h):.01>m?(h=k=.707106781,c=0):(c=Math.sqrt(m),k=d/c,h=g/c);this.set(k,h,c,a);return this}a=Math.sqrt((k-g)*(k-g)+(d-h)*(d-h)+(e-c)*(e-c));.001>Math.abs(a)&&(a=1);this.x=(k-g)/a;this.y=(d-h)/a;this.z=(e-c)/a;this.w=Math.acos((b+f+m-1)/2);return this},min:function(a){this.x=Math.min(this.x,a.x);this.y=Math.min(this.y,a.y);this.z=Math.min(this.z,a.z);this.w=Math.min(this.w,a.w);return this},max:function(a){this.x=Math.max(this.x,a.x);this.y=Math.max(this.y,a.y);this.z=Math.max(this.z, +a.z);this.w=Math.max(this.w,a.w);return this},clamp:function(a,b){this.x=Math.max(a.x,Math.min(b.x,this.x));this.y=Math.max(a.y,Math.min(b.y,this.y));this.z=Math.max(a.z,Math.min(b.z,this.z));this.w=Math.max(a.w,Math.min(b.w,this.w));return this},clampScalar:function(){var a,b;return function(c,d){void 0===a&&(a=new Z,b=new Z);a.set(c,c,c,c);b.set(d,d,d,d);return this.clamp(a,b)}}(),clampLength:function(a,b){var c=this.length();return this.divideScalar(c||1).multiplyScalar(Math.max(a,Math.min(b,c)))}, +floor:function(){this.x=Math.floor(this.x);this.y=Math.floor(this.y);this.z=Math.floor(this.z);this.w=Math.floor(this.w);return this},ceil:function(){this.x=Math.ceil(this.x);this.y=Math.ceil(this.y);this.z=Math.ceil(this.z);this.w=Math.ceil(this.w);return this},round:function(){this.x=Math.round(this.x);this.y=Math.round(this.y);this.z=Math.round(this.z);this.w=Math.round(this.w);return this},roundToZero:function(){this.x=0>this.x?Math.ceil(this.x):Math.floor(this.x);this.y=0>this.y?Math.ceil(this.y): +Math.floor(this.y);this.z=0>this.z?Math.ceil(this.z):Math.floor(this.z);this.w=0>this.w?Math.ceil(this.w):Math.floor(this.w);return this},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;this.w=-this.w;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z+this.w*a.w},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)},manhattanLength:function(){return Math.abs(this.x)+ +Math.abs(this.y)+Math.abs(this.z)+Math.abs(this.w)},normalize:function(){return this.divideScalar(this.length()||1)},setLength:function(a){return this.normalize().multiplyScalar(a)},lerp:function(a,b){this.x+=(a.x-this.x)*b;this.y+=(a.y-this.y)*b;this.z+=(a.z-this.z)*b;this.w+=(a.w-this.w)*b;return this},lerpVectors:function(a,b,c){return this.subVectors(b,a).multiplyScalar(c).add(a)},equals:function(a){return a.x===this.x&&a.y===this.y&&a.z===this.z&&a.w===this.w},fromArray:function(a,b){void 0=== +b&&(b=0);this.x=a[b];this.y=a[b+1];this.z=a[b+2];this.w=a[b+3];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this.x;a[b+1]=this.y;a[b+2]=this.z;a[b+3]=this.w;return a},fromBufferAttribute:function(a,b,c){void 0!==c&&console.warn("THREE.Vector4: offset has been removed from .fromBufferAttribute().");this.x=a.getX(b);this.y=a.getY(b);this.z=a.getZ(b);this.w=a.getW(b);return this}});kb.prototype=Object.assign(Object.create(ia.prototype),{constructor:kb,isWebGLRenderTarget:!0, +setSize:function(a,b){if(this.width!==a||this.height!==b)this.width=a,this.height=b,this.dispose();this.viewport.set(0,0,a,b);this.scissor.set(0,0,a,b)},clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.width=a.width;this.height=a.height;this.viewport.copy(a.viewport);this.texture=a.texture.clone();this.depthBuffer=a.depthBuffer;this.stencilBuffer=a.stencilBuffer;this.depthTexture=a.depthTexture;return this},dispose:function(){this.dispatchEvent({type:"dispose"})}}); +Jb.prototype=Object.create(kb.prototype);Jb.prototype.constructor=Jb;Jb.prototype.isWebGLRenderTargetCube=!0;lb.prototype=Object.create(W.prototype);lb.prototype.constructor=lb;lb.prototype.isDataTexture=!0;Object.assign(Wa.prototype,{isBox3:!0,set:function(a,b){this.min.copy(a);this.max.copy(b);return this},setFromArray:function(a){for(var b=Infinity,c=Infinity,d=Infinity,e=-Infinity,f=-Infinity,g=-Infinity,h=0,k=a.length;h +e&&(e=m);l>f&&(f=l);n>g&&(g=n)}this.min.set(b,c,d);this.max.set(e,f,g);return this},setFromBufferAttribute:function(a){for(var b=Infinity,c=Infinity,d=Infinity,e=-Infinity,f=-Infinity,g=-Infinity,h=0,k=a.count;he&&(e=m);l>f&&(f=l);n>g&&(g=n)}this.min.set(b,c,d);this.max.set(e,f,g);return this},setFromPoints:function(a){this.makeEmpty();for(var b=0,c=a.length;bthis.max.x||a.ythis.max.y||a.zthis.max.z?!1:!0},containsBox:function(a){return this.min.x<=a.min.x&&a.max.x<=this.max.x&&this.min.y<=a.min.y&&a.max.y<=this.max.y&&this.min.z<=a.min.z&&a.max.z<=this.max.z},getParameter:function(a,b){void 0===b&&(console.warn("THREE.Box3: .getParameter() target is now required"),b=new p);return b.set((a.x-this.min.x)/(this.max.x- +this.min.x),(a.y-this.min.y)/(this.max.y-this.min.y),(a.z-this.min.z)/(this.max.z-this.min.z))},intersectsBox:function(a){return a.max.xthis.max.x||a.max.ythis.max.y||a.max.zthis.max.z?!1:!0},intersectsSphere:function(){var a=new p;return function(b){this.clampPoint(b.center,a);return a.distanceToSquared(b.center)<=b.radius*b.radius}}(),intersectsPlane:function(a){if(0=-a.constant},intersectsTriangle:function(){function a(a){var e;var f=0;for(e=a.length-3;f<=e;f+=3){h.fromArray(a,f);var g=m.x*Math.abs(h.x)+m.y*Math.abs(h.y)+m.z*Math.abs(h.z),k=b.dot(h),l=c.dot(h), +q=d.dot(h);if(Math.max(-Math.max(k,l,q),Math.min(k,l,q))>g)return!1}return!0}var b=new p,c=new p,d=new p,e=new p,f=new p,g=new p,h=new p,k=new p,m=new p,l=new p;return function(h){if(this.isEmpty())return!1;this.getCenter(k);m.subVectors(this.max,k);b.subVectors(h.a,k);c.subVectors(h.b,k);d.subVectors(h.c,k);e.subVectors(c,b);f.subVectors(d,c);g.subVectors(b,d);h=[0,-e.z,e.y,0,-f.z,f.y,0,-g.z,g.y,e.z,0,-e.x,f.z,0,-f.x,g.z,0,-g.x,-e.y,e.x,0,-f.y,f.x,0,-g.y,g.x,0];if(!a(h))return!1;h=[1,0,0,0,1,0,0, +0,1];if(!a(h))return!1;l.crossVectors(e,f);h=[l.x,l.y,l.z];return a(h)}}(),clampPoint:function(a,b){void 0===b&&(console.warn("THREE.Box3: .clampPoint() target is now required"),b=new p);return b.copy(a).clamp(this.min,this.max)},distanceToPoint:function(){var a=new p;return function(b){return a.copy(b).clamp(this.min,this.max).sub(b).length()}}(),getBoundingSphere:function(){var a=new p;return function(b){void 0===b&&(console.warn("THREE.Box3: .getBoundingSphere() target is now required"),b=new Ga); +this.getCenter(b.center);b.radius=.5*this.getSize(a).length();return b}}(),intersect:function(a){this.min.max(a.min);this.max.min(a.max);this.isEmpty()&&this.makeEmpty();return this},union:function(a){this.min.min(a.min);this.max.max(a.max);return this},applyMatrix4:function(){var a=[new p,new p,new p,new p,new p,new p,new p,new p];return function(b){if(this.isEmpty())return this;a[0].set(this.min.x,this.min.y,this.min.z).applyMatrix4(b);a[1].set(this.min.x,this.min.y,this.max.z).applyMatrix4(b); +a[2].set(this.min.x,this.max.y,this.min.z).applyMatrix4(b);a[3].set(this.min.x,this.max.y,this.max.z).applyMatrix4(b);a[4].set(this.max.x,this.min.y,this.min.z).applyMatrix4(b);a[5].set(this.max.x,this.min.y,this.max.z).applyMatrix4(b);a[6].set(this.max.x,this.max.y,this.min.z).applyMatrix4(b);a[7].set(this.max.x,this.max.y,this.max.z).applyMatrix4(b);this.setFromPoints(a);return this}}(),translate:function(a){this.min.add(a);this.max.add(a);return this},equals:function(a){return a.min.equals(this.min)&& +a.max.equals(this.max)}});Object.assign(Ga.prototype,{set:function(a,b){this.center.copy(a);this.radius=b;return this},setFromPoints:function(){var a=new Wa;return function(b,c){var d=this.center;void 0!==c?d.copy(c):a.setFromPoints(b).getCenter(d);for(var e=c=0,f=b.length;e= +this.radius},containsPoint:function(a){return a.distanceToSquared(this.center)<=this.radius*this.radius},distanceToPoint:function(a){return a.distanceTo(this.center)-this.radius},intersectsSphere:function(a){var b=this.radius+a.radius;return a.center.distanceToSquared(this.center)<=b*b},intersectsBox:function(a){return a.intersectsSphere(this)},intersectsPlane:function(a){return Math.abs(a.distanceToPoint(this.center))<=this.radius},clampPoint:function(a,b){var c=this.center.distanceToSquared(a); +void 0===b&&(console.warn("THREE.Sphere: .clampPoint() target is now required"),b=new p);b.copy(a);c>this.radius*this.radius&&(b.sub(this.center).normalize(),b.multiplyScalar(this.radius).add(this.center));return b},getBoundingBox:function(a){void 0===a&&(console.warn("THREE.Sphere: .getBoundingBox() target is now required"),a=new Wa);a.set(this.center,this.center);a.expandByScalar(this.radius);return a},applyMatrix4:function(a){this.center.applyMatrix4(a);this.radius*=a.getMaxScaleOnAxis();return this}, +translate:function(a){this.center.add(a);return this},equals:function(a){return a.center.equals(this.center)&&a.radius===this.radius}});Object.assign(Pa.prototype,{set:function(a,b){this.normal.copy(a);this.constant=b;return this},setComponents:function(a,b,c,d){this.normal.set(a,b,c);this.constant=d;return this},setFromNormalAndCoplanarPoint:function(a,b){this.normal.copy(a);this.constant=-b.dot(this.normal);return this},setFromCoplanarPoints:function(){var a=new p,b=new p;return function(c,d,e){d= +a.subVectors(e,d).cross(b.subVectors(c,d)).normalize();this.setFromNormalAndCoplanarPoint(d,c);return this}}(),clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.normal.copy(a.normal);this.constant=a.constant;return this},normalize:function(){var a=1/this.normal.length();this.normal.multiplyScalar(a);this.constant*=a;return this},negate:function(){this.constant*=-1;this.normal.negate();return this},distanceToPoint:function(a){return this.normal.dot(a)+this.constant},distanceToSphere:function(a){return this.distanceToPoint(a.center)- +a.radius},projectPoint:function(a,b){void 0===b&&(console.warn("THREE.Plane: .projectPoint() target is now required"),b=new p);return b.copy(this.normal).multiplyScalar(-this.distanceToPoint(a)).add(a)},intersectLine:function(){var a=new p;return function(b,c){void 0===c&&(console.warn("THREE.Plane: .intersectLine() target is now required"),c=new p);var d=b.delta(a),e=this.normal.dot(d);if(0===e){if(0===this.distanceToPoint(b.start))return c.copy(b.start)}else if(e=-(b.start.dot(this.normal)+this.constant)/ +e,!(0>e||1b&&0a&&0c;c++)b[c].copy(a.planes[c]);return this},setFromMatrix:function(a){var b=this.planes,c=a.elements;a=c[0];var d=c[1],e=c[2],f=c[3],g=c[4],h=c[5],k=c[6],m=c[7],l=c[8],n=c[9],r=c[10],p=c[11],t=c[12],u=c[13],w=c[14];c=c[15];b[0].setComponents(f-a,m-g,p-l,c-t).normalize();b[1].setComponents(f+a,m+g,p+l,c+t).normalize();b[2].setComponents(f+d,m+h,p+n,c+u).normalize();b[3].setComponents(f-d,m-h,p-n,c- +u).normalize();b[4].setComponents(f-e,m-k,p-r,c-w).normalize();b[5].setComponents(f+e,m+k,p+r,c+w).normalize();return this},intersectsObject:function(){var a=new Ga;return function(b){var c=b.geometry;null===c.boundingSphere&&c.computeBoundingSphere();a.copy(c.boundingSphere).applyMatrix4(b.matrixWorld);return this.intersectsSphere(a)}}(),intersectsSprite:function(){var a=new Ga;return function(b){a.center.set(0,0,0);a.radius=.7071067811865476;a.applyMatrix4(b.matrixWorld);return this.intersectsSphere(a)}}(), intersectsSphere:function(a){var b=this.planes,c=a.center;a=-a.radius;for(var d=0;6>d;d++)if(b[d].distanceToPoint(c)d;d++){var e=c[d];a.x=0e.distanceToPoint(a))return!1}return!0}}(),containsPoint:function(a){for(var b=this.planes,c=0;6>c;c++)if(0>b[c].distanceToPoint(a))return!1;return!0}});var K= {alphamap_fragment:"#ifdef USE_ALPHAMAP\n\tdiffuseColor.a *= texture2D( alphaMap, vUv ).g;\n#endif\n",alphamap_pars_fragment:"#ifdef USE_ALPHAMAP\n\tuniform sampler2D alphaMap;\n#endif\n",alphatest_fragment:"#ifdef ALPHATEST\n\tif ( diffuseColor.a < ALPHATEST ) discard;\n#endif\n",aomap_fragment:"#ifdef USE_AOMAP\n\tfloat ambientOcclusion = ( texture2D( aoMap, vUv2 ).r - 1.0 ) * aoMapIntensity + 1.0;\n\treflectedLight.indirectDiffuse *= ambientOcclusion;\n\t#if defined( USE_ENVMAP ) && defined( PHYSICAL )\n\t\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\t\treflectedLight.indirectSpecular *= computeSpecularOcclusion( dotNV, ambientOcclusion, material.specularRoughness );\n\t#endif\n#endif\n", -aomap_pars_fragment:"#ifdef USE_AOMAP\n\tuniform sampler2D aoMap;\n\tuniform float aoMapIntensity;\n#endif",begin_vertex:"\nvec3 transformed = vec3( position );\n",beginnormal_vertex:"\nvec3 objectNormal = vec3( normal );\n",bsdfs:"float punctualLightIntensityToIrradianceFactor( const in float lightDistance, const in float cutoffDistance, const in float decayExponent ) {\n#if defined ( PHYSICALLY_CORRECT_LIGHTS )\n\tfloat distanceFalloff = 1.0 / max( pow( lightDistance, decayExponent ), 0.01 );\n\tif( cutoffDistance > 0.0 ) {\n\t\tdistanceFalloff *= pow2( saturate( 1.0 - pow4( lightDistance / cutoffDistance ) ) );\n\t}\n\treturn distanceFalloff;\n#else\n\tif( cutoffDistance > 0.0 ) {\n\t\treturn pow( saturate( -lightDistance / cutoffDistance + 1.0 ), decayExponent );\n\t}\n\treturn 1.0;\n#endif\n}\nvec3 BRDF_Diffuse_Lambert( const in vec3 diffuseColor ) {\n\treturn RECIPROCAL_PI * diffuseColor;\n}\nvec3 F_Schlick( const in vec3 specularColor, const in float dotLH ) {\n\tfloat fresnel = exp2( ( -5.55473 * dotLH - 6.98316 ) * dotLH );\n\treturn ( 1.0 - specularColor ) * fresnel + specularColor;\n}\nfloat G_GGX_Smith( const in float alpha, const in float dotNL, const in float dotNV ) {\n\tfloat a2 = pow2( alpha );\n\tfloat gl = dotNL + sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\n\tfloat gv = dotNV + sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\n\treturn 1.0 / ( gl * gv );\n}\nfloat G_GGX_SmithCorrelated( const in float alpha, const in float dotNL, const in float dotNV ) {\n\tfloat a2 = pow2( alpha );\n\tfloat gv = dotNL * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\n\tfloat gl = dotNV * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\n\treturn 0.5 / max( gv + gl, EPSILON );\n}\nfloat D_GGX( const in float alpha, const in float dotNH ) {\n\tfloat a2 = pow2( alpha );\n\tfloat denom = pow2( dotNH ) * ( a2 - 1.0 ) + 1.0;\n\treturn RECIPROCAL_PI * a2 / pow2( denom );\n}\nvec3 BRDF_Specular_GGX( const in IncidentLight incidentLight, const in GeometricContext geometry, const in vec3 specularColor, const in float roughness ) {\n\tfloat alpha = pow2( roughness );\n\tvec3 halfDir = normalize( incidentLight.direction + geometry.viewDir );\n\tfloat dotNL = saturate( dot( geometry.normal, incidentLight.direction ) );\n\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\tfloat dotNH = saturate( dot( geometry.normal, halfDir ) );\n\tfloat dotLH = saturate( dot( incidentLight.direction, halfDir ) );\n\tvec3 F = F_Schlick( specularColor, dotLH );\n\tfloat G = G_GGX_SmithCorrelated( alpha, dotNL, dotNV );\n\tfloat D = D_GGX( alpha, dotNH );\n\treturn F * ( G * D );\n}\nvec2 LTC_Uv( const in vec3 N, const in vec3 V, const in float roughness ) {\n\tconst float LUT_SIZE = 64.0;\n\tconst float LUT_SCALE = ( LUT_SIZE - 1.0 ) / LUT_SIZE;\n\tconst float LUT_BIAS = 0.5 / LUT_SIZE;\n\tfloat dotNV = saturate( dot( N, V ) );\n\tvec2 uv = vec2( roughness, sqrt( 1.0 - dotNV ) );\n\tuv = uv * LUT_SCALE + LUT_BIAS;\n\treturn uv;\n}\nfloat LTC_ClippedSphereFormFactor( const in vec3 f ) {\n\tfloat l = length( f );\n\treturn max( ( l * l + f.z ) / ( l + 1.0 ), 0.0 );\n}\nvec3 LTC_EdgeVectorFormFactor( const in vec3 v1, const in vec3 v2 ) {\n\tfloat x = dot( v1, v2 );\n\tfloat y = abs( x );\n\tfloat a = 0.8543985 + ( 0.4965155 + 0.0145206 * y ) * y;\n\tfloat b = 3.4175940 + ( 4.1616724 + y ) * y;\n\tfloat v = a / b;\n\tfloat theta_sintheta = ( x > 0.0 ) ? v : 0.5 * inversesqrt( max( 1.0 - x * x, 1e-7 ) ) - v;\n\treturn cross( v1, v2 ) * theta_sintheta;\n}\nvec3 LTC_Evaluate( const in vec3 N, const in vec3 V, const in vec3 P, const in mat3 mInv, const in vec3 rectCoords[ 4 ] ) {\n\tvec3 v1 = rectCoords[ 1 ] - rectCoords[ 0 ];\n\tvec3 v2 = rectCoords[ 3 ] - rectCoords[ 0 ];\n\tvec3 lightNormal = cross( v1, v2 );\n\tif( dot( lightNormal, P - rectCoords[ 0 ] ) < 0.0 ) return vec3( 0.0 );\n\tvec3 T1, T2;\n\tT1 = normalize( V - N * dot( V, N ) );\n\tT2 = - cross( N, T1 );\n\tmat3 mat = mInv * transposeMat3( mat3( T1, T2, N ) );\n\tvec3 coords[ 4 ];\n\tcoords[ 0 ] = mat * ( rectCoords[ 0 ] - P );\n\tcoords[ 1 ] = mat * ( rectCoords[ 1 ] - P );\n\tcoords[ 2 ] = mat * ( rectCoords[ 2 ] - P );\n\tcoords[ 3 ] = mat * ( rectCoords[ 3 ] - P );\n\tcoords[ 0 ] = normalize( coords[ 0 ] );\n\tcoords[ 1 ] = normalize( coords[ 1 ] );\n\tcoords[ 2 ] = normalize( coords[ 2 ] );\n\tcoords[ 3 ] = normalize( coords[ 3 ] );\n\tvec3 vectorFormFactor = vec3( 0.0 );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 0 ], coords[ 1 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 1 ], coords[ 2 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 2 ], coords[ 3 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 3 ], coords[ 0 ] );\n\tfloat result = LTC_ClippedSphereFormFactor( vectorFormFactor );\n\treturn vec3( result );\n}\nvec3 BRDF_Specular_GGX_Environment( const in GeometricContext geometry, const in vec3 specularColor, const in float roughness ) {\n\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\tconst vec4 c0 = vec4( - 1, - 0.0275, - 0.572, 0.022 );\n\tconst vec4 c1 = vec4( 1, 0.0425, 1.04, - 0.04 );\n\tvec4 r = roughness * c0 + c1;\n\tfloat a004 = min( r.x * r.x, exp2( - 9.28 * dotNV ) ) * r.x + r.y;\n\tvec2 AB = vec2( -1.04, 1.04 ) * a004 + r.zw;\n\treturn specularColor * AB.x + AB.y;\n}\nfloat G_BlinnPhong_Implicit( ) {\n\treturn 0.25;\n}\nfloat D_BlinnPhong( const in float shininess, const in float dotNH ) {\n\treturn RECIPROCAL_PI * ( shininess * 0.5 + 1.0 ) * pow( dotNH, shininess );\n}\nvec3 BRDF_Specular_BlinnPhong( const in IncidentLight incidentLight, const in GeometricContext geometry, const in vec3 specularColor, const in float shininess ) {\n\tvec3 halfDir = normalize( incidentLight.direction + geometry.viewDir );\n\tfloat dotNH = saturate( dot( geometry.normal, halfDir ) );\n\tfloat dotLH = saturate( dot( incidentLight.direction, halfDir ) );\n\tvec3 F = F_Schlick( specularColor, dotLH );\n\tfloat G = G_BlinnPhong_Implicit( );\n\tfloat D = D_BlinnPhong( shininess, dotNH );\n\treturn F * ( G * D );\n}\nfloat GGXRoughnessToBlinnExponent( const in float ggxRoughness ) {\n\treturn ( 2.0 / pow2( ggxRoughness + 0.0001 ) - 2.0 );\n}\nfloat BlinnExponentToGGXRoughness( const in float blinnExponent ) {\n\treturn sqrt( 2.0 / ( blinnExponent + 2.0 ) );\n}\n", +aomap_pars_fragment:"#ifdef USE_AOMAP\n\tuniform sampler2D aoMap;\n\tuniform float aoMapIntensity;\n#endif",begin_vertex:"\nvec3 transformed = vec3( position );\n",beginnormal_vertex:"\nvec3 objectNormal = vec3( normal );\n",bsdfs:"float punctualLightIntensityToIrradianceFactor( const in float lightDistance, const in float cutoffDistance, const in float decayExponent ) {\n#if defined ( PHYSICALLY_CORRECT_LIGHTS )\n\tfloat distanceFalloff = 1.0 / max( pow( lightDistance, decayExponent ), 0.01 );\n\tif( cutoffDistance > 0.0 ) {\n\t\tdistanceFalloff *= pow2( saturate( 1.0 - pow4( lightDistance / cutoffDistance ) ) );\n\t}\n\treturn distanceFalloff;\n#else\n\tif( cutoffDistance > 0.0 && decayExponent > 0.0 ) {\n\t\treturn pow( saturate( -lightDistance / cutoffDistance + 1.0 ), decayExponent );\n\t}\n\treturn 1.0;\n#endif\n}\nvec3 BRDF_Diffuse_Lambert( const in vec3 diffuseColor ) {\n\treturn RECIPROCAL_PI * diffuseColor;\n}\nvec3 F_Schlick( const in vec3 specularColor, const in float dotLH ) {\n\tfloat fresnel = exp2( ( -5.55473 * dotLH - 6.98316 ) * dotLH );\n\treturn ( 1.0 - specularColor ) * fresnel + specularColor;\n}\nfloat G_GGX_Smith( const in float alpha, const in float dotNL, const in float dotNV ) {\n\tfloat a2 = pow2( alpha );\n\tfloat gl = dotNL + sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\n\tfloat gv = dotNV + sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\n\treturn 1.0 / ( gl * gv );\n}\nfloat G_GGX_SmithCorrelated( const in float alpha, const in float dotNL, const in float dotNV ) {\n\tfloat a2 = pow2( alpha );\n\tfloat gv = dotNL * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\n\tfloat gl = dotNV * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\n\treturn 0.5 / max( gv + gl, EPSILON );\n}\nfloat D_GGX( const in float alpha, const in float dotNH ) {\n\tfloat a2 = pow2( alpha );\n\tfloat denom = pow2( dotNH ) * ( a2 - 1.0 ) + 1.0;\n\treturn RECIPROCAL_PI * a2 / pow2( denom );\n}\nvec3 BRDF_Specular_GGX( const in IncidentLight incidentLight, const in GeometricContext geometry, const in vec3 specularColor, const in float roughness ) {\n\tfloat alpha = pow2( roughness );\n\tvec3 halfDir = normalize( incidentLight.direction + geometry.viewDir );\n\tfloat dotNL = saturate( dot( geometry.normal, incidentLight.direction ) );\n\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\tfloat dotNH = saturate( dot( geometry.normal, halfDir ) );\n\tfloat dotLH = saturate( dot( incidentLight.direction, halfDir ) );\n\tvec3 F = F_Schlick( specularColor, dotLH );\n\tfloat G = G_GGX_SmithCorrelated( alpha, dotNL, dotNV );\n\tfloat D = D_GGX( alpha, dotNH );\n\treturn F * ( G * D );\n}\nvec2 LTC_Uv( const in vec3 N, const in vec3 V, const in float roughness ) {\n\tconst float LUT_SIZE = 64.0;\n\tconst float LUT_SCALE = ( LUT_SIZE - 1.0 ) / LUT_SIZE;\n\tconst float LUT_BIAS = 0.5 / LUT_SIZE;\n\tfloat dotNV = saturate( dot( N, V ) );\n\tvec2 uv = vec2( roughness, sqrt( 1.0 - dotNV ) );\n\tuv = uv * LUT_SCALE + LUT_BIAS;\n\treturn uv;\n}\nfloat LTC_ClippedSphereFormFactor( const in vec3 f ) {\n\tfloat l = length( f );\n\treturn max( ( l * l + f.z ) / ( l + 1.0 ), 0.0 );\n}\nvec3 LTC_EdgeVectorFormFactor( const in vec3 v1, const in vec3 v2 ) {\n\tfloat x = dot( v1, v2 );\n\tfloat y = abs( x );\n\tfloat a = 0.8543985 + ( 0.4965155 + 0.0145206 * y ) * y;\n\tfloat b = 3.4175940 + ( 4.1616724 + y ) * y;\n\tfloat v = a / b;\n\tfloat theta_sintheta = ( x > 0.0 ) ? v : 0.5 * inversesqrt( max( 1.0 - x * x, 1e-7 ) ) - v;\n\treturn cross( v1, v2 ) * theta_sintheta;\n}\nvec3 LTC_Evaluate( const in vec3 N, const in vec3 V, const in vec3 P, const in mat3 mInv, const in vec3 rectCoords[ 4 ] ) {\n\tvec3 v1 = rectCoords[ 1 ] - rectCoords[ 0 ];\n\tvec3 v2 = rectCoords[ 3 ] - rectCoords[ 0 ];\n\tvec3 lightNormal = cross( v1, v2 );\n\tif( dot( lightNormal, P - rectCoords[ 0 ] ) < 0.0 ) return vec3( 0.0 );\n\tvec3 T1, T2;\n\tT1 = normalize( V - N * dot( V, N ) );\n\tT2 = - cross( N, T1 );\n\tmat3 mat = mInv * transposeMat3( mat3( T1, T2, N ) );\n\tvec3 coords[ 4 ];\n\tcoords[ 0 ] = mat * ( rectCoords[ 0 ] - P );\n\tcoords[ 1 ] = mat * ( rectCoords[ 1 ] - P );\n\tcoords[ 2 ] = mat * ( rectCoords[ 2 ] - P );\n\tcoords[ 3 ] = mat * ( rectCoords[ 3 ] - P );\n\tcoords[ 0 ] = normalize( coords[ 0 ] );\n\tcoords[ 1 ] = normalize( coords[ 1 ] );\n\tcoords[ 2 ] = normalize( coords[ 2 ] );\n\tcoords[ 3 ] = normalize( coords[ 3 ] );\n\tvec3 vectorFormFactor = vec3( 0.0 );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 0 ], coords[ 1 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 1 ], coords[ 2 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 2 ], coords[ 3 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 3 ], coords[ 0 ] );\n\tfloat result = LTC_ClippedSphereFormFactor( vectorFormFactor );\n\treturn vec3( result );\n}\nvec3 BRDF_Specular_GGX_Environment( const in GeometricContext geometry, const in vec3 specularColor, const in float roughness ) {\n\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\tconst vec4 c0 = vec4( - 1, - 0.0275, - 0.572, 0.022 );\n\tconst vec4 c1 = vec4( 1, 0.0425, 1.04, - 0.04 );\n\tvec4 r = roughness * c0 + c1;\n\tfloat a004 = min( r.x * r.x, exp2( - 9.28 * dotNV ) ) * r.x + r.y;\n\tvec2 AB = vec2( -1.04, 1.04 ) * a004 + r.zw;\n\treturn specularColor * AB.x + AB.y;\n}\nfloat G_BlinnPhong_Implicit( ) {\n\treturn 0.25;\n}\nfloat D_BlinnPhong( const in float shininess, const in float dotNH ) {\n\treturn RECIPROCAL_PI * ( shininess * 0.5 + 1.0 ) * pow( dotNH, shininess );\n}\nvec3 BRDF_Specular_BlinnPhong( const in IncidentLight incidentLight, const in GeometricContext geometry, const in vec3 specularColor, const in float shininess ) {\n\tvec3 halfDir = normalize( incidentLight.direction + geometry.viewDir );\n\tfloat dotNH = saturate( dot( geometry.normal, halfDir ) );\n\tfloat dotLH = saturate( dot( incidentLight.direction, halfDir ) );\n\tvec3 F = F_Schlick( specularColor, dotLH );\n\tfloat G = G_BlinnPhong_Implicit( );\n\tfloat D = D_BlinnPhong( shininess, dotNH );\n\treturn F * ( G * D );\n}\nfloat GGXRoughnessToBlinnExponent( const in float ggxRoughness ) {\n\treturn ( 2.0 / pow2( ggxRoughness + 0.0001 ) - 2.0 );\n}\nfloat BlinnExponentToGGXRoughness( const in float blinnExponent ) {\n\treturn sqrt( 2.0 / ( blinnExponent + 2.0 ) );\n}\n", bumpmap_pars_fragment:"#ifdef USE_BUMPMAP\n\tuniform sampler2D bumpMap;\n\tuniform float bumpScale;\n\tvec2 dHdxy_fwd() {\n\t\tvec2 dSTdx = dFdx( vUv );\n\t\tvec2 dSTdy = dFdy( vUv );\n\t\tfloat Hll = bumpScale * texture2D( bumpMap, vUv ).x;\n\t\tfloat dBx = bumpScale * texture2D( bumpMap, vUv + dSTdx ).x - Hll;\n\t\tfloat dBy = bumpScale * texture2D( bumpMap, vUv + dSTdy ).x - Hll;\n\t\treturn vec2( dBx, dBy );\n\t}\n\tvec3 perturbNormalArb( vec3 surf_pos, vec3 surf_norm, vec2 dHdxy ) {\n\t\tvec3 vSigmaX = vec3( dFdx( surf_pos.x ), dFdx( surf_pos.y ), dFdx( surf_pos.z ) );\n\t\tvec3 vSigmaY = vec3( dFdy( surf_pos.x ), dFdy( surf_pos.y ), dFdy( surf_pos.z ) );\n\t\tvec3 vN = surf_norm;\n\t\tvec3 R1 = cross( vSigmaY, vN );\n\t\tvec3 R2 = cross( vN, vSigmaX );\n\t\tfloat fDet = dot( vSigmaX, R1 );\n\t\tfDet *= ( float( gl_FrontFacing ) * 2.0 - 1.0 );\n\t\tvec3 vGrad = sign( fDet ) * ( dHdxy.x * R1 + dHdxy.y * R2 );\n\t\treturn normalize( abs( fDet ) * surf_norm - vGrad );\n\t}\n#endif\n", clipping_planes_fragment:"#if NUM_CLIPPING_PLANES > 0\n\tvec4 plane;\n\t#pragma unroll_loop\n\tfor ( int i = 0; i < UNION_CLIPPING_PLANES; i ++ ) {\n\t\tplane = clippingPlanes[ i ];\n\t\tif ( dot( vViewPosition, plane.xyz ) > plane.w ) discard;\n\t}\n\t#if UNION_CLIPPING_PLANES < NUM_CLIPPING_PLANES\n\t\tbool clipped = true;\n\t\t#pragma unroll_loop\n\t\tfor ( int i = UNION_CLIPPING_PLANES; i < NUM_CLIPPING_PLANES; i ++ ) {\n\t\t\tplane = clippingPlanes[ i ];\n\t\t\tclipped = ( dot( vViewPosition, plane.xyz ) > plane.w ) && clipped;\n\t\t}\n\t\tif ( clipped ) discard;\n\t#endif\n#endif\n", clipping_planes_pars_fragment:"#if NUM_CLIPPING_PLANES > 0\n\t#if ! defined( PHYSICAL ) && ! defined( PHONG ) && ! defined( MATCAP )\n\t\tvarying vec3 vViewPosition;\n\t#endif\n\tuniform vec4 clippingPlanes[ NUM_CLIPPING_PLANES ];\n#endif\n",clipping_planes_pars_vertex:"#if NUM_CLIPPING_PLANES > 0 && ! defined( PHYSICAL ) && ! defined( PHONG ) && ! defined( MATCAP )\n\tvarying vec3 vViewPosition;\n#endif\n",clipping_planes_vertex:"#if NUM_CLIPPING_PLANES > 0 && ! defined( PHYSICAL ) && ! defined( PHONG ) && ! defined( MATCAP )\n\tvViewPosition = - mvPosition.xyz;\n#endif\n", @@ -454,11 +450,11 @@ specularmap_fragment:"float specularStrength;\n#ifdef USE_SPECULARMAP\n\tvec4 te uv_pars_fragment:"#if defined( USE_MAP ) || defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) || defined( USE_SPECULARMAP ) || defined( USE_ALPHAMAP ) || defined( USE_EMISSIVEMAP ) || defined( USE_ROUGHNESSMAP ) || defined( USE_METALNESSMAP )\n\tvarying vec2 vUv;\n#endif",uv_pars_vertex:"#if defined( USE_MAP ) || defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) || defined( USE_SPECULARMAP ) || defined( USE_ALPHAMAP ) || defined( USE_EMISSIVEMAP ) || defined( USE_ROUGHNESSMAP ) || defined( USE_METALNESSMAP )\n\tvarying vec2 vUv;\n\tuniform mat3 uvTransform;\n#endif\n", uv_vertex:"#if defined( USE_MAP ) || defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) || defined( USE_SPECULARMAP ) || defined( USE_ALPHAMAP ) || defined( USE_EMISSIVEMAP ) || defined( USE_ROUGHNESSMAP ) || defined( USE_METALNESSMAP )\n\tvUv = ( uvTransform * vec3( uv, 1 ) ).xy;\n#endif",uv2_pars_fragment:"#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP )\n\tvarying vec2 vUv2;\n#endif",uv2_pars_vertex:"#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP )\n\tattribute vec2 uv2;\n\tvarying vec2 vUv2;\n#endif", uv2_vertex:"#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP )\n\tvUv2 = uv2;\n#endif",worldpos_vertex:"#if defined( USE_ENVMAP ) || defined( DISTANCE ) || defined ( USE_SHADOWMAP )\n\tvec4 worldPosition = modelMatrix * vec4( transformed, 1.0 );\n#endif\n",background_frag:"uniform sampler2D t2D;\nvarying vec2 vUv;\nvoid main() {\n\tgl_FragColor = texture2D( t2D, vUv );\n}\n",background_vert:"varying vec2 vUv;\nvoid main() {\n\tvUv = uv;\n\tgl_Position = vec4( position, 1.0 );\n\tgl_Position.z = 1.0;\n}\n", -cube_frag:"uniform samplerCube tCube;\nuniform float tFlip;\nuniform float opacity;\nvarying vec3 vWorldPosition;\nvoid main() {\n\tgl_FragColor = textureCube( tCube, vec3( tFlip * vWorldPosition.x, vWorldPosition.yz ) );\n\tgl_FragColor.a *= opacity;\n}\n",cube_vert:"varying vec3 vWorldPosition;\n#include \nvoid main() {\n\tvWorldPosition = transformDirection( position, modelMatrix );\n\t#include \n\t#include \n\tgl_Position.z = gl_Position.w;\n}\n",depth_frag:"#if DEPTH_PACKING == 3200\n\tuniform float opacity;\n#endif\n#include \n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\tvec4 diffuseColor = vec4( 1.0 );\n\t#if DEPTH_PACKING == 3200\n\t\tdiffuseColor.a = opacity;\n\t#endif\n\t#include \n\t#include \n\t#include \n\t#include \n\t#if DEPTH_PACKING == 3200\n\t\tgl_FragColor = vec4( vec3( 1.0 - gl_FragCoord.z ), opacity );\n\t#elif DEPTH_PACKING == 3201\n\t\tgl_FragColor = packDepthToRGBA( gl_FragCoord.z );\n\t#endif\n}\n", +cube_frag:"uniform samplerCube tCube;\nuniform float tFlip;\nuniform float opacity;\nvarying vec3 vWorldDirection;\nvoid main() {\n\tgl_FragColor = textureCube( tCube, vec3( tFlip * vWorldDirection.x, vWorldDirection.yz ) );\n\tgl_FragColor.a *= opacity;\n}\n",cube_vert:"varying vec3 vWorldDirection;\n#include \nvoid main() {\n\tvWorldDirection = transformDirection( position, modelMatrix );\n\t#include \n\t#include \n\tgl_Position.z = gl_Position.w;\n}\n",depth_frag:"#if DEPTH_PACKING == 3200\n\tuniform float opacity;\n#endif\n#include \n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\tvec4 diffuseColor = vec4( 1.0 );\n\t#if DEPTH_PACKING == 3200\n\t\tdiffuseColor.a = opacity;\n\t#endif\n\t#include \n\t#include \n\t#include \n\t#include \n\t#if DEPTH_PACKING == 3200\n\t\tgl_FragColor = vec4( vec3( 1.0 - gl_FragCoord.z ), opacity );\n\t#elif DEPTH_PACKING == 3201\n\t\tgl_FragColor = packDepthToRGBA( gl_FragCoord.z );\n\t#endif\n}\n", depth_vert:"#include \n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\t#include \n\t#ifdef USE_DISPLACEMENTMAP\n\t\t#include \n\t\t#include \n\t\t#include \n\t#endif\n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n}\n", distanceRGBA_frag:"#define DISTANCE\nuniform vec3 referencePosition;\nuniform float nearDistance;\nuniform float farDistance;\nvarying vec3 vWorldPosition;\n#include \n#include \n#include \n#include \n#include \n#include \nvoid main () {\n\t#include \n\tvec4 diffuseColor = vec4( 1.0 );\n\t#include \n\t#include \n\t#include \n\tfloat dist = length( vWorldPosition - referencePosition );\n\tdist = ( dist - nearDistance ) / ( farDistance - nearDistance );\n\tdist = saturate( dist );\n\tgl_FragColor = packDepthToRGBA( dist );\n}\n", distanceRGBA_vert:"#define DISTANCE\nvarying vec3 vWorldPosition;\n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\t#include \n\t#ifdef USE_DISPLACEMENTMAP\n\t\t#include \n\t\t#include \n\t\t#include \n\t#endif\n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\tvWorldPosition = worldPosition.xyz;\n}\n", -equirect_frag:"uniform sampler2D tEquirect;\nvarying vec3 vWorldPosition;\n#include \nvoid main() {\n\tvec3 direction = normalize( vWorldPosition );\n\tvec2 sampleUV;\n\tsampleUV.y = asin( clamp( direction.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5;\n\tsampleUV.x = atan( direction.z, direction.x ) * RECIPROCAL_PI2 + 0.5;\n\tgl_FragColor = texture2D( tEquirect, sampleUV );\n}\n",equirect_vert:"varying vec3 vWorldPosition;\n#include \nvoid main() {\n\tvWorldPosition = transformDirection( position, modelMatrix );\n\t#include \n\t#include \n}\n", +equirect_frag:"uniform sampler2D tEquirect;\nvarying vec3 vWorldDirection;\n#include \nvoid main() {\n\tvec3 direction = normalize( vWorldDirection );\n\tvec2 sampleUV;\n\tsampleUV.y = asin( clamp( direction.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5;\n\tsampleUV.x = atan( direction.z, direction.x ) * RECIPROCAL_PI2 + 0.5;\n\tgl_FragColor = texture2D( tEquirect, sampleUV );\n}\n",equirect_vert:"varying vec3 vWorldDirection;\n#include \nvoid main() {\n\tvWorldDirection = transformDirection( position, modelMatrix );\n\t#include \n\t#include \n}\n", linedashed_frag:"uniform vec3 diffuse;\nuniform float opacity;\nuniform float dashSize;\nuniform float totalSize;\nvarying float vLineDistance;\n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\tif ( mod( vLineDistance, totalSize ) > dashSize ) {\n\t\tdiscard;\n\t}\n\tvec3 outgoingLight = vec3( 0.0 );\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include \n\t#include \n\toutgoingLight = diffuseColor.rgb;\n\tgl_FragColor = vec4( outgoingLight, diffuseColor.a );\n\t#include \n\t#include \n\t#include \n\t#include \n}\n", linedashed_vert:"uniform float scale;\nattribute float lineDistance;\nvarying float vLineDistance;\n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\tvLineDistance = scale * lineDistance;\n\tvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\n\tgl_Position = projectionMatrix * mvPosition;\n\t#include \n\t#include \n\t#include \n}\n", meshbasic_frag:"uniform vec3 diffuse;\nuniform float opacity;\n#ifndef FLAT_SHADED\n\tvarying vec3 vNormal;\n#endif\n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\n\t#ifdef USE_LIGHTMAP\n\t\treflectedLight.indirectDiffuse += texture2D( lightMap, vUv2 ).xyz * lightMapIntensity;\n\t#else\n\t\treflectedLight.indirectDiffuse += vec3( 1.0 );\n\t#endif\n\t#include \n\treflectedLight.indirectDiffuse *= diffuseColor.rgb;\n\tvec3 outgoingLight = reflectedLight.indirectDiffuse;\n\t#include \n\tgl_FragColor = vec4( outgoingLight, diffuseColor.a );\n\t#include \n\t#include \n\t#include \n\t#include \n}\n", @@ -478,39 +474,39 @@ points_vert:"uniform float size;\nuniform float scale;\n#include \n#incl shadow_frag:"uniform vec3 color;\nuniform float opacity;\n#include \n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\tgl_FragColor = vec4( color, opacity * ( 1.0 - getShadowMask() ) );\n\t#include \n}\n",shadow_vert:"#include \n#include \nvoid main() {\n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n}\n", sprite_frag:"uniform vec3 diffuse;\nuniform float opacity;\n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\tvec3 outgoingLight = vec3( 0.0 );\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include \n\t#include \n\t#include \n\toutgoingLight = diffuseColor.rgb;\n\tgl_FragColor = vec4( outgoingLight, diffuseColor.a );\n\t#include \n\t#include \n\t#include \n}\n", sprite_vert:"uniform float rotation;\nuniform vec2 center;\n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\tvec4 mvPosition = modelViewMatrix * vec4( 0.0, 0.0, 0.0, 1.0 );\n\tvec2 scale;\n\tscale.x = length( vec3( modelMatrix[ 0 ].x, modelMatrix[ 0 ].y, modelMatrix[ 0 ].z ) );\n\tscale.y = length( vec3( modelMatrix[ 1 ].x, modelMatrix[ 1 ].y, modelMatrix[ 1 ].z ) );\n\t#ifndef USE_SIZEATTENUATION\n\t\tbool isPerspective = ( projectionMatrix[ 2 ][ 3 ] == - 1.0 );\n\t\tif ( isPerspective ) scale *= - mvPosition.z;\n\t#endif\n\tvec2 alignedPosition = ( position.xy - ( center - vec2( 0.5 ) ) ) * scale;\n\tvec2 rotatedPosition;\n\trotatedPosition.x = cos( rotation ) * alignedPosition.x - sin( rotation ) * alignedPosition.y;\n\trotatedPosition.y = sin( rotation ) * alignedPosition.x + cos( rotation ) * alignedPosition.y;\n\tmvPosition.xy += rotatedPosition;\n\tgl_Position = projectionMatrix * mvPosition;\n\t#include \n\t#include \n\t#include \n}\n"}, -va={merge:function(a){for(var b={},c=0;c>16&255)/255;this.g=(a>>8&255)/255;this.b=(a&255)/255;return this},setRGB:function(a,b,c){this.r=a;this.g=b;this.b=c;return this},setHSL:function(){function a(a,c,d){0>d&&(d+=1);1d?c:d<2/3?a+6*(c-a)*(2/3-d):a}return function(b, -c,d){b=S.euclideanModulo(b,1);c=S.clamp(c,0,1);d=S.clamp(d,0,1);0===c?this.r=this.g=this.b=d:(c=.5>=d?d*(1+c):d+c-d*c,d=2*d-c,this.r=a(d,c,b+1/3),this.g=a(d,c,b),this.b=a(d,c,b-1/3));return this}}(),setStyle:function(a){function b(b){void 0!==b&&1>parseFloat(b)&&console.warn("THREE.Color: Alpha component of "+a+" will be ignored.")}var c;if(c=/^((?:rgb|hsl)a?)\(\s*([^\)]*)\)/.exec(a)){var d=c[2];switch(c[1]){case "rgb":case "rgba":if(c=/^(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(,\s*([0-9]*\.?[0-9]+)\s*)?$/.exec(d))return this.r= +c,d){b=R.euclideanModulo(b,1);c=R.clamp(c,0,1);d=R.clamp(d,0,1);0===c?this.r=this.g=this.b=d:(c=.5>=d?d*(1+c):d+c-d*c,d=2*d-c,this.r=a(d,c,b+1/3),this.g=a(d,c,b),this.b=a(d,c,b-1/3));return this}}(),setStyle:function(a){function b(b){void 0!==b&&1>parseFloat(b)&&console.warn("THREE.Color: Alpha component of "+a+" will be ignored.")}var c;if(c=/^((?:rgb|hsl)a?)\(\s*([^\)]*)\)/.exec(a)){var d=c[2];switch(c[1]){case "rgb":case "rgba":if(c=/^(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(,\s*([0-9]*\.?[0-9]+)\s*)?$/.exec(d))return this.r= Math.min(255,parseInt(c[1],10))/255,this.g=Math.min(255,parseInt(c[2],10))/255,this.b=Math.min(255,parseInt(c[3],10))/255,b(c[5]),this;if(c=/^(\d+)%\s*,\s*(\d+)%\s*,\s*(\d+)%\s*(,\s*([0-9]*\.?[0-9]+)\s*)?$/.exec(d))return this.r=Math.min(100,parseInt(c[1],10))/100,this.g=Math.min(100,parseInt(c[2],10))/100,this.b=Math.min(100,parseInt(c[3],10))/100,b(c[5]),this;break;case "hsl":case "hsla":if(c=/^([0-9]*\.?[0-9]+)\s*,\s*(\d+)%\s*,\s*(\d+)%\s*(,\s*([0-9]*\.?[0-9]+)\s*)?$/.exec(d)){d=parseFloat(c[1])/ -360;var e=parseInt(c[2],10)/100,f=parseInt(c[3],10)/100;b(c[5]);return this.setHSL(d,e,f)}}}else if(c=/^#([A-Fa-f0-9]+)$/.exec(a)){c=c[1];d=c.length;if(3===d)return this.r=parseInt(c.charAt(0)+c.charAt(0),16)/255,this.g=parseInt(c.charAt(1)+c.charAt(1),16)/255,this.b=parseInt(c.charAt(2)+c.charAt(2),16)/255,this;if(6===d)return this.r=parseInt(c.charAt(0)+c.charAt(1),16)/255,this.g=parseInt(c.charAt(2)+c.charAt(3),16)/255,this.b=parseInt(c.charAt(4)+c.charAt(5),16)/255,this}a&&0a?.0773993808*a:Math.pow(.9478672986*a+.0521327014,2.4)}return function(b){this.r=a(b.r);this.g=a(b.g);this.b=a(b.b);return this}}(),copyLinearToSRGB:function(){function a(a){return.0031308>a?12.92*a:1.055*Math.pow(a,.41666)-.055}return function(b){this.r=a(b.r);this.g=a(b.g);this.b=a(b.b);return this}}(),convertSRGBToLinear:function(){this.copySRGBToLinear(this); return this},convertLinearToSRGB:function(){this.copyLinearToSRGB(this);return this},getHex:function(){return 255*this.r<<16^255*this.g<<8^255*this.b<<0},getHexString:function(){return("000000"+this.getHex().toString(16)).slice(-6)},getHSL:function(a){void 0===a&&(console.warn("THREE.Color: .getHSL() target is now required"),a={h:0,s:0,l:0});var b=this.r,c=this.g,d=this.b,e=Math.max(b,c,d),f=Math.min(b,c,d),g,h=(f+e)/2;if(f===e)f=g=0;else{var k=e-f;f=.5>=h?k/(e+f):k/(2-e-f);switch(e){case b:g=(c- d)/k+(cMath.abs(g)?(this._x=Math.atan2(-m,e),this._z=Math.atan2(-f,a)):(this._x=Math.atan2(n,k),this._z= +skyColor:{},groundColor:{}}},rectAreaLights:{value:[],properties:{color:{},position:{},width:{},height:{}}}},points:{diffuse:{value:new G(15658734)},opacity:{value:1},size:{value:1},scale:{value:1},map:{value:null},uvTransform:{value:new oa}},sprite:{diffuse:{value:new G(15658734)},opacity:{value:1},center:{value:new z(.5,.5)},rotation:{value:0},map:{value:null},uvTransform:{value:new oa}}},Qa={basic:{uniforms:va.merge([J.common,J.specularmap,J.envmap,J.aomap,J.lightmap,J.fog]),vertexShader:K.meshbasic_vert, +fragmentShader:K.meshbasic_frag},lambert:{uniforms:va.merge([J.common,J.specularmap,J.envmap,J.aomap,J.lightmap,J.emissivemap,J.fog,J.lights,{emissive:{value:new G(0)}}]),vertexShader:K.meshlambert_vert,fragmentShader:K.meshlambert_frag},phong:{uniforms:va.merge([J.common,J.specularmap,J.envmap,J.aomap,J.lightmap,J.emissivemap,J.bumpmap,J.normalmap,J.displacementmap,J.gradientmap,J.fog,J.lights,{emissive:{value:new G(0)},specular:{value:new G(1118481)},shininess:{value:30}}]),vertexShader:K.meshphong_vert, +fragmentShader:K.meshphong_frag},standard:{uniforms:va.merge([J.common,J.envmap,J.aomap,J.lightmap,J.emissivemap,J.bumpmap,J.normalmap,J.displacementmap,J.roughnessmap,J.metalnessmap,J.fog,J.lights,{emissive:{value:new G(0)},roughness:{value:.5},metalness:{value:.5},envMapIntensity:{value:1}}]),vertexShader:K.meshphysical_vert,fragmentShader:K.meshphysical_frag},matcap:{uniforms:va.merge([J.common,J.bumpmap,J.normalmap,J.displacementmap,J.fog,{matcap:{value:null}}]),vertexShader:K.meshmatcap_vert, +fragmentShader:K.meshmatcap_frag},points:{uniforms:va.merge([J.points,J.fog]),vertexShader:K.points_vert,fragmentShader:K.points_frag},dashed:{uniforms:va.merge([J.common,J.fog,{scale:{value:1},dashSize:{value:1},totalSize:{value:2}}]),vertexShader:K.linedashed_vert,fragmentShader:K.linedashed_frag},depth:{uniforms:va.merge([J.common,J.displacementmap]),vertexShader:K.depth_vert,fragmentShader:K.depth_frag},normal:{uniforms:va.merge([J.common,J.bumpmap,J.normalmap,J.displacementmap,{opacity:{value:1}}]), +vertexShader:K.normal_vert,fragmentShader:K.normal_frag},sprite:{uniforms:va.merge([J.sprite,J.fog]),vertexShader:K.sprite_vert,fragmentShader:K.sprite_frag},background:{uniforms:{t2D:{value:null}},vertexShader:K.background_vert,fragmentShader:K.background_frag},cube:{uniforms:{tCube:{value:null},tFlip:{value:-1},opacity:{value:1}},vertexShader:K.cube_vert,fragmentShader:K.cube_frag},equirect:{uniforms:{tEquirect:{value:null}},vertexShader:K.equirect_vert,fragmentShader:K.equirect_frag},distanceRGBA:{uniforms:va.merge([J.common, +J.displacementmap,{referencePosition:{value:new p},nearDistance:{value:1},farDistance:{value:1E3}}]),vertexShader:K.distanceRGBA_vert,fragmentShader:K.distanceRGBA_frag},shadow:{uniforms:va.merge([J.lights,J.fog,{color:{value:new G(0)},opacity:{value:1}}]),vertexShader:K.shadow_vert,fragmentShader:K.shadow_frag}};Qa.physical={uniforms:va.merge([Qa.standard.uniforms,{clearCoat:{value:0},clearCoatRoughness:{value:0}}]),vertexShader:K.meshphysical_vert,fragmentShader:K.meshphysical_frag};Object.assign(Xa.prototype, +{clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.a=a.a;this.b=a.b;this.c=a.c;this.normal.copy(a.normal);this.color.copy(a.color);this.materialIndex=a.materialIndex;for(var b=0,c=a.vertexNormals.length;bMath.abs(g)?(this._x=Math.atan2(-m,e),this._z=Math.atan2(-f,a)):(this._x=Math.atan2(n,k),this._z= 0)):"YXZ"===b?(this._x=Math.asin(-d(m,-1,1)),.99999>Math.abs(m)?(this._y=Math.atan2(g,e),this._z=Math.atan2(h,k)):(this._y=Math.atan2(-l,a),this._z=0)):"ZXY"===b?(this._x=Math.asin(d(n,-1,1)),.99999>Math.abs(n)?(this._y=Math.atan2(-l,e),this._z=Math.atan2(-f,k)):(this._y=0,this._z=Math.atan2(h,a))):"ZYX"===b?(this._y=Math.asin(-d(l,-1,1)),.99999>Math.abs(l)?(this._x=Math.atan2(n,e),this._z=Math.atan2(h,a)):(this._x=0,this._z=Math.atan2(-f,k))):"YZX"===b?(this._z=Math.asin(d(h,-1,1)),.99999>Math.abs(h)? (this._x=Math.atan2(-m,k),this._y=Math.atan2(-l,a)):(this._x=0,this._y=Math.atan2(g,e))):"XZY"===b?(this._z=Math.asin(-d(f,-1,1)),.99999>Math.abs(f)?(this._x=Math.atan2(n,k),this._y=Math.atan2(g,a)):(this._x=Math.atan2(-m,e),this._y=0)):console.warn("THREE.Euler: .setFromRotationMatrix() given unsupported order: "+b);this._order=b;if(!1!==c)this.onChangeCallback();return this},setFromQuaternion:function(){var a=new P;return function(b,c,d){a.makeRotationFromQuaternion(b);return this.setFromRotationMatrix(a, c,d)}}(),setFromVector3:function(a,b){return this.set(a.x,a.y,a.z,b||this._order)},reorder:function(){var a=new ja;return function(b){a.setFromEuler(this);return this.setFromQuaternion(a,b)}}(),equals:function(a){return a._x===this._x&&a._y===this._y&&a._z===this._z&&a._order===this._order},fromArray:function(a){this._x=a[0];this._y=a[1];this._z=a[2];void 0!==a[3]&&(this._order=a[3]);this.onChangeCallback();return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this._x;a[b+1]= -this._y;a[b+2]=this._z;a[b+3]=this._order;return a},toVector3:function(a){return a?a.set(this._x,this._y,this._z):new p(this._x,this._y,this._z)},onChange:function(a){this.onChangeCallback=a;return this},onChangeCallback:function(){}});Object.assign(Yd.prototype,{set:function(a){this.mask=1<g;g++)if(d[g]===d[(g+1)%3]){a.push(f);break}for(f=a.length-1;0<=f;f--)for(d=a[f],this.faces.splice(d,1),c=0,e=this.faceVertexUvs.length;cthis.opacity&&(d.opacity=this.opacity);!0===this.transparent&&(d.transparent=this.transparent);d.depthFunc=this.depthFunc;d.depthTest=this.depthTest;d.depthWrite=this.depthWrite;0!==this.rotation&&(d.rotation=this.rotation);!0===this.polygonOffset&&(d.polygonOffset=!0);0!==this.polygonOffsetFactor&&(d.polygonOffsetFactor=this.polygonOffsetFactor);0!==this.polygonOffsetUnits&&(d.polygonOffsetUnits=this.polygonOffsetUnits);1!==this.linewidth&&(d.linewidth=this.linewidth);void 0!== -this.dashSize&&(d.dashSize=this.dashSize);void 0!==this.gapSize&&(d.gapSize=this.gapSize);void 0!==this.scale&&(d.scale=this.scale);!0===this.dithering&&(d.dithering=!0);0a?b.copy(this.origin):b.copy(this.direction).multiplyScalar(a).add(this.origin)},distanceToPoint:function(a){return Math.sqrt(this.distanceSqToPoint(a))}, -distanceSqToPoint:function(){var a=new p;return function(b){var c=a.subVectors(b,this.origin).dot(this.direction);if(0>c)return this.origin.distanceToSquared(b);a.copy(this.direction).multiplyScalar(c).add(this.origin);return a.distanceToSquared(b)}}(),distanceSqToSegment:function(){var a=new p,b=new p,c=new p;return function(d,e,f,g){a.copy(d).add(e).multiplyScalar(.5);b.copy(e).sub(d).normalize();c.copy(this.origin).sub(a);var h=.5*d.distanceTo(e),k=-this.direction.dot(b),m=c.dot(this.direction), -l=-c.dot(b),n=c.lengthSq(),r=Math.abs(1-k*k);if(0=-p?e<=p?(h=1/r,d*=h,e*=h,k=d*(d+k*e+2*m)+e*(k*d+e+2*l)+n):(e=h,d=Math.max(0,-(k*e+m)),k=-d*d+e*(e+2*l)+n):(e=-h,d=Math.max(0,-(k*e+m)),k=-d*d+e*(e+2*l)+n):e<=-p?(d=Math.max(0,-(-k*h+m)),e=0b)return null;b=Math.sqrt(b-e);e=d-b;d+=b;return 0>e&&0>d?null:0>e?this.at(d,c):this.at(e,c)}}(),intersectsSphere:function(a){return this.distanceSqToPoint(a.center)<=a.radius*a.radius},distanceToPlane:function(a){var b= -a.normal.dot(this.direction);if(0===b)return 0===a.distanceToPoint(this.origin)?0:null;a=-(this.origin.dot(a.normal)+a.constant)/b;return 0<=a?a:null},intersectPlane:function(a,b){a=this.distanceToPlane(a);return null===a?null:this.at(a,b)},intersectsPlane:function(a){var b=a.distanceToPoint(this.origin);return 0===b||0>a.normal.dot(this.direction)*b?!0:!1},intersectBox:function(a,b){var c=1/this.direction.x;var d=1/this.direction.y;var e=1/this.direction.z,f=this.origin;if(0<=c){var g=(a.min.x-f.x)* -c;c*=a.max.x-f.x}else g=(a.max.x-f.x)*c,c*=a.min.x-f.x;if(0<=d){var h=(a.min.y-f.y)*d;d*=a.max.y-f.y}else h=(a.max.y-f.y)*d,d*=a.min.y-f.y;if(g>d||h>c)return null;if(h>g||g!==g)g=h;if(da||h>c)return null;if(h>g||g!==g)g=h;if(ac?null:this.at(0<=g?g:c,b)},intersectsBox:function(){var a=new p;return function(b){return null!==this.intersectBox(b,a)}}(),intersectTriangle:function(){var a= -new p,b=new p,c=new p,d=new p;return function(e,f,g,h,k){b.subVectors(f,e);c.subVectors(g,e);d.crossVectors(b,c);f=this.direction.dot(d);if(0f)h=-1,f=-f;else return null;a.subVectors(this.origin,e);e=h*this.direction.dot(c.crossVectors(a,c));if(0>e)return null;g=h*this.direction.dot(b.cross(a));if(0>g||e+g>f)return null;e=-h*a.dot(d);return 0>e?null:this.at(e/f,k)}}(),applyMatrix4:function(a){this.origin.applyMatrix4(a);this.direction.transformDirection(a);return this}, -equals:function(a){return a.origin.equals(this.origin)&&a.direction.equals(this.direction)}});Object.assign(da,{getNormal:function(){var a=new p;return function(b,c,d,e){void 0===e&&(console.warn("THREE.Triangle: .getNormal() target is now required"),e=new p);e.subVectors(d,c);a.subVectors(b,c);e.cross(a);b=e.lengthSq();return 0=a.x+a.y}}(),getUV:function(){var a=new p;return function(b,c,d,e,f,g,h,k){this.getBarycoord(b,c,d,e,a);k.set(0,0);k.addScaledVector(f, -a.x);k.addScaledVector(g,a.y);k.addScaledVector(h,a.z);return k}}()});Object.assign(da.prototype,{set:function(a,b,c){this.a.copy(a);this.b.copy(b);this.c.copy(c);return this},setFromPointsAndIndices:function(a,b,c,d){this.a.copy(a[b]);this.b.copy(a[c]);this.c.copy(a[d]);return this},clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.a.copy(a.a);this.b.copy(a.b);this.c.copy(a.c);return this},getArea:function(){var a=new p,b=new p;return function(){a.subVectors(this.c, -this.b);b.subVectors(this.a,this.b);return.5*a.cross(b).length()}}(),getMidpoint:function(a){void 0===a&&(console.warn("THREE.Triangle: .getMidpoint() target is now required"),a=new p);return a.addVectors(this.a,this.b).add(this.c).multiplyScalar(1/3)},getNormal:function(a){return da.getNormal(this.a,this.b,this.c,a)},getPlane:function(a){void 0===a&&(console.warn("THREE.Triangle: .getPlane() target is now required"),a=new p);return a.setFromCoplanarPoints(this.a,this.b,this.c)},getBarycoord:function(a, -b){return da.getBarycoord(a,this.a,this.b,this.c,b)},containsPoint:function(a){return da.containsPoint(a,this.a,this.b,this.c)},getUV:function(a,b,c,d,e){return da.getUV(a,this.a,this.b,this.c,b,c,d,e)},intersectsBox:function(a){return a.intersectsTriangle(this)},closestPointToPoint:function(){var a=new p,b=new p,c=new p,d=new p,e=new p,f=new p;return function(g,h){void 0===h&&(console.warn("THREE.Triangle: .closestPointToPoint() target is now required"),h=new p);var k=this.a,m=this.b,l=this.c;a.subVectors(m, -k);b.subVectors(l,k);d.subVectors(g,k);var n=a.dot(d),r=b.dot(d);if(0>=n&&0>=r)return h.copy(k);e.subVectors(g,m);var v=a.dot(e),t=b.dot(e);if(0<=v&&t<=v)return h.copy(m);var u=n*t-v*r;if(0>=u&&0<=n&&0>=v)return m=n/(n-v),h.copy(k).addScaledVector(a,m);f.subVectors(g,l);g=a.dot(f);var y=b.dot(f);if(0<=y&&g<=y)return h.copy(l);n=g*r-n*y;if(0>=n&&0<=r&&0>=y)return u=r/(r-y),h.copy(k).addScaledVector(b,u);r=v*y-g*t;if(0>=r&&0<=t-v&&0<=g-y)return c.subVectors(l,m),u=(t-v)/(t-v+(g-y)),h.copy(m).addScaledVector(c, -u);l=1/(r+n+u);m=n*l;u*=l;return h.copy(k).addScaledVector(a,m).addScaledVector(b,u)}}(),equals:function(a){return a.a.equals(this.a)&&a.b.equals(this.b)&&a.c.equals(this.c)}});wa.prototype=Object.create(L.prototype);wa.prototype.constructor=wa;wa.prototype.isMeshBasicMaterial=!0;wa.prototype.copy=function(a){L.prototype.copy.call(this,a);this.color.copy(a.color);this.map=a.map;this.lightMap=a.lightMap;this.lightMapIntensity=a.lightMapIntensity;this.aoMap=a.aoMap;this.aoMapIntensity=a.aoMapIntensity; -this.specularMap=a.specularMap;this.alphaMap=a.alphaMap;this.envMap=a.envMap;this.combine=a.combine;this.reflectivity=a.reflectivity;this.refractionRatio=a.refractionRatio;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.wireframeLinecap=a.wireframeLinecap;this.wireframeLinejoin=a.wireframeLinejoin;this.skinning=a.skinning;this.morphTargets=a.morphTargets;return this};ua.prototype=Object.assign(Object.create(C.prototype),{constructor:ua,isMesh:!0,setDrawMode:function(a){this.drawMode= -a},copy:function(a){C.prototype.copy.call(this,a);this.drawMode=a.drawMode;void 0!==a.morphTargetInfluences&&(this.morphTargetInfluences=a.morphTargetInfluences.slice());void 0!==a.morphTargetDictionary&&(this.morphTargetDictionary=Object.assign({},a.morphTargetDictionary));return this},updateMorphTargets:function(){var a=this.geometry;if(a.isBufferGeometry){a=a.morphAttributes;var b=Object.keys(a);if(0c.far?null:{distance:b,point:u.clone(),object:a}}function b(b,c,d,e,k,m,l,q,p){f.fromBufferAttribute(k,l);g.fromBufferAttribute(k,q);h.fromBufferAttribute(k,p);if(b=a(b,c,d,e,f,g,h,t))m&&(n.fromBufferAttribute(m,l),r.fromBufferAttribute(m,q),v.fromBufferAttribute(m,p),b.uv=da.getUV(t,f,g,h,n,r,v,new z)),m=new Xa(l,q,p),da.getNormal(f,g,h,m.normal),b.face=m;return b}var c=new P,d=new pb,e=new Fa,f=new p,g=new p, -h=new p,k=new p,m=new p,l=new p,n=new z,r=new z,v=new z,t=new p,u=new p;return function(q,p){var u=this.geometry,y=this.material,x=this.matrixWorld;if(void 0!==y&&(null===u.boundingSphere&&u.computeBoundingSphere(),e.copy(u.boundingSphere),e.applyMatrix4(x),!1!==q.ray.intersectsSphere(e)&&(c.getInverse(x),d.copy(q.ray).applyMatrix4(c),null===u.boundingBox||!1!==d.intersectsBox(u.boundingBox))))if(u.isBufferGeometry){var A=u.index,C=u.attributes.position,B=u.attributes.uv,E=u.groups;u=u.drawRange; -var J;if(null!==A)if(Array.isArray(y)){var G=0;for(J=E.length;Ge.far||f.push({distance:t,point:b.clone(),uv:da.getUV(b,h,k,m,l,n,r,new z),face:null,object:this})}}(),clone:function(){return(new this.constructor(this.material)).copy(this)},copy:function(a){C.prototype.copy.call(this,a);void 0!==a.center&&this.center.copy(a.center);return this}}); -Fc.prototype=Object.assign(Object.create(C.prototype),{constructor:Fc,copy:function(a){C.prototype.copy.call(this,a,!1);a=a.levels;for(var b=0,c=a.length;b=d[e].distance)d[e-1].object.visible=!1,d[e].object.visible=!0;else break; -for(;ef||(l.applyMatrix4(this.matrixWorld),u=d.ray.origin.distanceTo(l),ud.far||e.push({distance:u,point:h.clone().applyMatrix4(this.matrixWorld),index:g,face:null,faceIndex:null,object:this}))}}else for(g=0,t=v.length/3-1;gf||(l.applyMatrix4(this.matrixWorld),u=d.ray.origin.distanceTo(l),ud.far||e.push({distance:u, -point:h.clone().applyMatrix4(this.matrixWorld),index:g,face:null,faceIndex:null,object:this}))}else if(g.isGeometry)for(k=g.vertices,m=k.length,g=0;gf||(l.applyMatrix4(this.matrixWorld),u=d.ray.origin.distanceTo(l),ud.far||e.push({distance:u,point:h.clone().applyMatrix4(this.matrixWorld),index:g,face:null,faceIndex:null,object:this}))}}}(),clone:function(){return(new this.constructor(this.geometry,this.material)).copy(this)}});W.prototype= -Object.assign(Object.create(pa.prototype),{constructor:W,isLineSegments:!0,computeLineDistances:function(){var a=new p,b=new p;return function(){var c=this.geometry;if(c.isBufferGeometry)if(null===c.index){for(var d=c.attributes.position,e=[],f=0,g=d.count;fd.far||e.push({distance:a,distanceToRay:Math.sqrt(f),point:n.clone(),index:c,face:null,object:g}))}var g=this,h=this.geometry,k=this.matrixWorld,m=d.params.Points.threshold; -null===h.boundingSphere&&h.computeBoundingSphere();c.copy(h.boundingSphere);c.applyMatrix4(k);c.radius+=m;if(!1!==d.ray.intersectsSphere(c)){a.getInverse(k);b.copy(d.ray).applyMatrix4(a);m/=(this.scale.x+this.scale.y+this.scale.z)/3;var l=m*m;m=new p;var n=new p;if(h.isBufferGeometry){var r=h.index;h=h.attributes.position.array;if(null!==r){var v=r.array;r=0;for(var t=v.length;r=a.HAVE_CURRENT_DATA&&(this.needsUpdate=!0)}});Tb.prototype=Object.create(Q.prototype);Tb.prototype.constructor=Tb;Tb.prototype.isCompressedTexture=!0;Hc.prototype=Object.create(Q.prototype);Hc.prototype.constructor=Hc;Hc.prototype.isCanvasTexture= -!0;Ic.prototype=Object.create(Q.prototype);Ic.prototype.constructor=Ic;Ic.prototype.isDepthTexture=!0;Ub.prototype=Object.create(E.prototype);Ub.prototype.constructor=Ub;Jc.prototype=Object.create(M.prototype);Jc.prototype.constructor=Jc;Vb.prototype=Object.create(E.prototype);Vb.prototype.constructor=Vb;Kc.prototype=Object.create(M.prototype);Kc.prototype.constructor=Kc;ma.prototype=Object.create(E.prototype);ma.prototype.constructor=ma;Lc.prototype=Object.create(M.prototype);Lc.prototype.constructor= -Lc;Wb.prototype=Object.create(ma.prototype);Wb.prototype.constructor=Wb;Mc.prototype=Object.create(M.prototype);Mc.prototype.constructor=Mc;rb.prototype=Object.create(ma.prototype);rb.prototype.constructor=rb;Nc.prototype=Object.create(M.prototype);Nc.prototype.constructor=Nc;Xb.prototype=Object.create(ma.prototype);Xb.prototype.constructor=Xb;Oc.prototype=Object.create(M.prototype);Oc.prototype.constructor=Oc;Yb.prototype=Object.create(ma.prototype);Yb.prototype.constructor=Yb;Pc.prototype=Object.create(M.prototype); -Pc.prototype.constructor=Pc;Zb.prototype=Object.create(E.prototype);Zb.prototype.constructor=Zb;Qc.prototype=Object.create(M.prototype);Qc.prototype.constructor=Qc;$b.prototype=Object.create(E.prototype);$b.prototype.constructor=$b;Rc.prototype=Object.create(M.prototype);Rc.prototype.constructor=Rc;ac.prototype=Object.create(E.prototype);ac.prototype.constructor=ac;var Xg={triangulate:function(a,b,c){c=c||2;var d=b&&b.length,e=d?b[0]*c:a.length,f=ef(a,0,e,c,!0),g=[];if(!f)return g;var h;if(d){var k= -c;d=[];var m;var l=0;for(m=b.length;l80*c){var p=h=a[0];var t=d=a[1];for(k=c;kh&&(h=l),b>d&&(d=b);h=Math.max(h-p,d-t);h=0!==h?1/h:0}Uc(f,g,c,p,t,h);return g}},Za={area:function(a){for(var b=a.length,c=0,d=b-1,e=0;eZa.area(a)},triangulateShape:function(a,b){var c=[],d=[],e=[];jf(a);kf(c,a);var f=a.length;b.forEach(jf);for(a=0;aMath.abs(g-k)?[new z(a,1-c),new z(h,1-d),new z(m,1-e),new z(n,1-b)]:[new z(g,1-c),new z(k,1-d),new z(l,1-e),new z(r,1-b)]}};Wc.prototype=Object.create(M.prototype);Wc.prototype.constructor=Wc;bc.prototype=Object.create(Sa.prototype);bc.prototype.constructor=bc;Xc.prototype=Object.create(M.prototype);Xc.prototype.constructor=Xc;ub.prototype=Object.create(E.prototype);ub.prototype.constructor=ub;Yc.prototype=Object.create(M.prototype);Yc.prototype.constructor=Yc;cc.prototype=Object.create(E.prototype); -cc.prototype.constructor=cc;Zc.prototype=Object.create(M.prototype);Zc.prototype.constructor=Zc;dc.prototype=Object.create(E.prototype);dc.prototype.constructor=dc;vb.prototype=Object.create(M.prototype);vb.prototype.constructor=vb;vb.prototype.toJSON=function(){var a=M.prototype.toJSON.call(this);return mf(this.parameters.shapes,a)};wb.prototype=Object.create(E.prototype);wb.prototype.constructor=wb;wb.prototype.toJSON=function(){var a=E.prototype.toJSON.call(this);return mf(this.parameters.shapes, -a)};ec.prototype=Object.create(E.prototype);ec.prototype.constructor=ec;xb.prototype=Object.create(M.prototype);xb.prototype.constructor=xb;$a.prototype=Object.create(E.prototype);$a.prototype.constructor=$a;$c.prototype=Object.create(xb.prototype);$c.prototype.constructor=$c;ad.prototype=Object.create($a.prototype);ad.prototype.constructor=ad;bd.prototype=Object.create(M.prototype);bd.prototype.constructor=bd;fc.prototype=Object.create(E.prototype);fc.prototype.constructor=fc;var Ba=Object.freeze({WireframeGeometry:Ub, -ParametricGeometry:Jc,ParametricBufferGeometry:Vb,TetrahedronGeometry:Lc,TetrahedronBufferGeometry:Wb,OctahedronGeometry:Mc,OctahedronBufferGeometry:rb,IcosahedronGeometry:Nc,IcosahedronBufferGeometry:Xb,DodecahedronGeometry:Oc,DodecahedronBufferGeometry:Yb,PolyhedronGeometry:Kc,PolyhedronBufferGeometry:ma,TubeGeometry:Pc,TubeBufferGeometry:Zb,TorusKnotGeometry:Qc,TorusKnotBufferGeometry:$b,TorusGeometry:Rc,TorusBufferGeometry:ac,TextGeometry:Wc,TextBufferGeometry:bc,SphereGeometry:Xc,SphereBufferGeometry:ub, -RingGeometry:Yc,RingBufferGeometry:cc,PlaneGeometry:yc,PlaneBufferGeometry:ob,LatheGeometry:Zc,LatheBufferGeometry:dc,ShapeGeometry:vb,ShapeBufferGeometry:wb,ExtrudeGeometry:tb,ExtrudeBufferGeometry:Sa,EdgesGeometry:ec,ConeGeometry:$c,ConeBufferGeometry:ad,CylinderGeometry:xb,CylinderBufferGeometry:$a,CircleGeometry:bd,CircleBufferGeometry:fc,BoxGeometry:Kb,BoxBufferGeometry:nb});yb.prototype=Object.create(L.prototype);yb.prototype.constructor=yb;yb.prototype.isShadowMaterial=!0;yb.prototype.copy= -function(a){L.prototype.copy.call(this,a);this.color.copy(a.color);return this};gc.prototype=Object.create(ka.prototype);gc.prototype.constructor=gc;gc.prototype.isRawShaderMaterial=!0;Ta.prototype=Object.create(L.prototype);Ta.prototype.constructor=Ta;Ta.prototype.isMeshStandardMaterial=!0;Ta.prototype.copy=function(a){L.prototype.copy.call(this,a);this.defines={STANDARD:""};this.color.copy(a.color);this.roughness=a.roughness;this.metalness=a.metalness;this.map=a.map;this.lightMap=a.lightMap;this.lightMapIntensity= -a.lightMapIntensity;this.aoMap=a.aoMap;this.aoMapIntensity=a.aoMapIntensity;this.emissive.copy(a.emissive);this.emissiveMap=a.emissiveMap;this.emissiveIntensity=a.emissiveIntensity;this.bumpMap=a.bumpMap;this.bumpScale=a.bumpScale;this.normalMap=a.normalMap;this.normalMapType=a.normalMapType;this.normalScale.copy(a.normalScale);this.displacementMap=a.displacementMap;this.displacementScale=a.displacementScale;this.displacementBias=a.displacementBias;this.roughnessMap=a.roughnessMap;this.metalnessMap= -a.metalnessMap;this.alphaMap=a.alphaMap;this.envMap=a.envMap;this.envMapIntensity=a.envMapIntensity;this.refractionRatio=a.refractionRatio;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.wireframeLinecap=a.wireframeLinecap;this.wireframeLinejoin=a.wireframeLinejoin;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};zb.prototype=Object.create(Ta.prototype);zb.prototype.constructor=zb;zb.prototype.isMeshPhysicalMaterial= -!0;zb.prototype.copy=function(a){Ta.prototype.copy.call(this,a);this.defines={PHYSICAL:""};this.reflectivity=a.reflectivity;this.clearCoat=a.clearCoat;this.clearCoatRoughness=a.clearCoatRoughness;return this};Ha.prototype=Object.create(L.prototype);Ha.prototype.constructor=Ha;Ha.prototype.isMeshPhongMaterial=!0;Ha.prototype.copy=function(a){L.prototype.copy.call(this,a);this.color.copy(a.color);this.specular.copy(a.specular);this.shininess=a.shininess;this.map=a.map;this.lightMap=a.lightMap;this.lightMapIntensity= -a.lightMapIntensity;this.aoMap=a.aoMap;this.aoMapIntensity=a.aoMapIntensity;this.emissive.copy(a.emissive);this.emissiveMap=a.emissiveMap;this.emissiveIntensity=a.emissiveIntensity;this.bumpMap=a.bumpMap;this.bumpScale=a.bumpScale;this.normalMap=a.normalMap;this.normalMapType=a.normalMapType;this.normalScale.copy(a.normalScale);this.displacementMap=a.displacementMap;this.displacementScale=a.displacementScale;this.displacementBias=a.displacementBias;this.specularMap=a.specularMap;this.alphaMap=a.alphaMap; -this.envMap=a.envMap;this.combine=a.combine;this.reflectivity=a.reflectivity;this.refractionRatio=a.refractionRatio;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.wireframeLinecap=a.wireframeLinecap;this.wireframeLinejoin=a.wireframeLinejoin;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};Ab.prototype=Object.create(Ha.prototype);Ab.prototype.constructor=Ab;Ab.prototype.isMeshToonMaterial=!0;Ab.prototype.copy=function(a){Ha.prototype.copy.call(this, -a);this.gradientMap=a.gradientMap;return this};Bb.prototype=Object.create(L.prototype);Bb.prototype.constructor=Bb;Bb.prototype.isMeshNormalMaterial=!0;Bb.prototype.copy=function(a){L.prototype.copy.call(this,a);this.bumpMap=a.bumpMap;this.bumpScale=a.bumpScale;this.normalMap=a.normalMap;this.normalMapType=a.normalMapType;this.normalScale.copy(a.normalScale);this.displacementMap=a.displacementMap;this.displacementScale=a.displacementScale;this.displacementBias=a.displacementBias;this.wireframe=a.wireframe; -this.wireframeLinewidth=a.wireframeLinewidth;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};Cb.prototype=Object.create(L.prototype);Cb.prototype.constructor=Cb;Cb.prototype.isMeshLambertMaterial=!0;Cb.prototype.copy=function(a){L.prototype.copy.call(this,a);this.color.copy(a.color);this.map=a.map;this.lightMap=a.lightMap;this.lightMapIntensity=a.lightMapIntensity;this.aoMap=a.aoMap;this.aoMapIntensity=a.aoMapIntensity;this.emissive.copy(a.emissive); -this.emissiveMap=a.emissiveMap;this.emissiveIntensity=a.emissiveIntensity;this.specularMap=a.specularMap;this.alphaMap=a.alphaMap;this.envMap=a.envMap;this.combine=a.combine;this.reflectivity=a.reflectivity;this.refractionRatio=a.refractionRatio;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.wireframeLinecap=a.wireframeLinecap;this.wireframeLinejoin=a.wireframeLinejoin;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this}; -Db.prototype=Object.create(L.prototype);Db.prototype.constructor=Db;Db.prototype.isMeshMatcapMaterial=!0;Db.prototype.copy=function(a){L.prototype.copy.call(this,a);this.defines={MATCAP:""};this.color.copy(a.color);this.matcap=a.matcap;this.map=a.map;this.bumpMap=a.bumpMap;this.bumpScale=a.bumpScale;this.normalMap=a.normalMap;this.normalMapType=a.normalMapType;this.normalScale.copy(a.normalScale);this.displacementMap=a.displacementMap;this.displacementScale=a.displacementScale;this.displacementBias= -a.displacementBias;this.alphaMap=a.alphaMap;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};Eb.prototype=Object.create(T.prototype);Eb.prototype.constructor=Eb;Eb.prototype.isLineDashedMaterial=!0;Eb.prototype.copy=function(a){T.prototype.copy.call(this,a);this.scale=a.scale;this.dashSize=a.dashSize;this.gapSize=a.gapSize;return this};var Yg=Object.freeze({ShadowMaterial:yb,SpriteMaterial:fb,RawShaderMaterial:gc,ShaderMaterial:ka,PointsMaterial:Ga, -MeshPhysicalMaterial:zb,MeshStandardMaterial:Ta,MeshPhongMaterial:Ha,MeshToonMaterial:Ab,MeshNormalMaterial:Bb,MeshLambertMaterial:Cb,MeshDepthMaterial:cb,MeshDistanceMaterial:db,MeshBasicMaterial:wa,MeshMatcapMaterial:Db,LineDashedMaterial:Eb,LineBasicMaterial:T,Material:L}),Ib={enabled:!1,files:{},add:function(a,b){!1!==this.enabled&&(this.files[a]=b)},get:function(a){if(!1!==this.enabled)return this.files[a]},remove:function(a){delete this.files[a]},clear:function(){this.files={}}},ya=new ge,Oa= -{};Object.assign(Ia.prototype,{load:function(a,b,c,d){void 0===a&&(a="");void 0!==this.path&&(a=this.path+a);a=this.manager.resolveURL(a);var e=this,f=Ib.get(a);if(void 0!==f)return e.manager.itemStart(a),setTimeout(function(){b&&b(f);e.manager.itemEnd(a)},0),f;if(void 0!==Oa[a])Oa[a].push({onLoad:b,onProgress:c,onError:d});else{var g=a.match(/^data:(.*?)(;base64)?,(.*)$/);if(g){c=g[1];var h=!!g[2];g=g[3];g=decodeURIComponent(g);h&&(g=atob(g));try{var k=(this.responseType||"").toLowerCase();switch(k){case "arraybuffer":case "blob":var m= -new Uint8Array(g.length);for(h=0;hg;g++)if(d[g]===d[(g+1)%3]){a.push(f);break}for(f=a.length-1;0<=f;f--)for(d=a[f],this.faces.splice(d,1),c=0,e=this.faceVertexUvs.length;cthis.opacity&&(d.opacity=this.opacity);!0===this.transparent&&(d.transparent=this.transparent);d.depthFunc=this.depthFunc;d.depthTest=this.depthTest;d.depthWrite=this.depthWrite;0!==this.rotation&&(d.rotation=this.rotation);!0===this.polygonOffset&&(d.polygonOffset=!0);0!==this.polygonOffsetFactor&&(d.polygonOffsetFactor=this.polygonOffsetFactor);0!==this.polygonOffsetUnits&&(d.polygonOffsetUnits=this.polygonOffsetUnits); +1!==this.linewidth&&(d.linewidth=this.linewidth);void 0!==this.dashSize&&(d.dashSize=this.dashSize);void 0!==this.gapSize&&(d.gapSize=this.gapSize);void 0!==this.scale&&(d.scale=this.scale);!0===this.dithering&&(d.dithering=!0);0a?b.copy(this.origin):b.copy(this.direction).multiplyScalar(a).add(this.origin)}, +distanceToPoint:function(a){return Math.sqrt(this.distanceSqToPoint(a))},distanceSqToPoint:function(){var a=new p;return function(b){var c=a.subVectors(b,this.origin).dot(this.direction);if(0>c)return this.origin.distanceToSquared(b);a.copy(this.direction).multiplyScalar(c).add(this.origin);return a.distanceToSquared(b)}}(),distanceSqToSegment:function(){var a=new p,b=new p,c=new p;return function(d,e,f,g){a.copy(d).add(e).multiplyScalar(.5);b.copy(e).sub(d).normalize();c.copy(this.origin).sub(a); +var h=.5*d.distanceTo(e),k=-this.direction.dot(b),m=c.dot(this.direction),l=-c.dot(b),n=c.lengthSq(),r=Math.abs(1-k*k);if(0=-p?e<=p?(h=1/r,d*=h,e*=h,k=d*(d+k*e+2*m)+e*(k*d+e+2*l)+n):(e=h,d=Math.max(0,-(k*e+m)),k=-d*d+e*(e+2*l)+n):(e=-h,d=Math.max(0,-(k*e+m)),k=-d*d+e*(e+2*l)+n):e<=-p?(d=Math.max(0,-(-k*h+m)),e=0b)return null;b=Math.sqrt(b-e);e=d-b;d+=b;return 0>e&&0>d?null:0>e?this.at(d,c):this.at(e,c)}}(),intersectsSphere:function(a){return this.distanceSqToPoint(a.center)<= +a.radius*a.radius},distanceToPlane:function(a){var b=a.normal.dot(this.direction);if(0===b)return 0===a.distanceToPoint(this.origin)?0:null;a=-(this.origin.dot(a.normal)+a.constant)/b;return 0<=a?a:null},intersectPlane:function(a,b){a=this.distanceToPlane(a);return null===a?null:this.at(a,b)},intersectsPlane:function(a){var b=a.distanceToPoint(this.origin);return 0===b||0>a.normal.dot(this.direction)*b?!0:!1},intersectBox:function(a,b){var c=1/this.direction.x;var d=1/this.direction.y;var e=1/this.direction.z, +f=this.origin;if(0<=c){var g=(a.min.x-f.x)*c;c*=a.max.x-f.x}else g=(a.max.x-f.x)*c,c*=a.min.x-f.x;if(0<=d){var h=(a.min.y-f.y)*d;d*=a.max.y-f.y}else h=(a.max.y-f.y)*d,d*=a.min.y-f.y;if(g>d||h>c)return null;if(h>g||g!==g)g=h;if(da||h>c)return null;if(h>g||g!==g)g=h;if(ac?null:this.at(0<=g?g:c,b)},intersectsBox:function(){var a=new p;return function(b){return null!==this.intersectBox(b, +a)}}(),intersectTriangle:function(){var a=new p,b=new p,c=new p,d=new p;return function(e,f,g,h,k){b.subVectors(f,e);c.subVectors(g,e);d.crossVectors(b,c);f=this.direction.dot(d);if(0f)h=-1,f=-f;else return null;a.subVectors(this.origin,e);e=h*this.direction.dot(c.crossVectors(a,c));if(0>e)return null;g=h*this.direction.dot(b.cross(a));if(0>g||e+g>f)return null;e=-h*a.dot(d);return 0>e?null:this.at(e/f,k)}}(),applyMatrix4:function(a){this.origin.applyMatrix4(a); +this.direction.transformDirection(a);return this},equals:function(a){return a.origin.equals(this.origin)&&a.direction.equals(this.direction)}});Object.assign(da,{getNormal:function(){var a=new p;return function(b,c,d,e){void 0===e&&(console.warn("THREE.Triangle: .getNormal() target is now required"),e=new p);e.subVectors(d,c);a.subVectors(b,c);e.cross(a);b=e.lengthSq();return 0=a.x+a.y}}(),getUV:function(){var a=new p;return function(b,c,d, +e,f,g,h,k){this.getBarycoord(b,c,d,e,a);k.set(0,0);k.addScaledVector(f,a.x);k.addScaledVector(g,a.y);k.addScaledVector(h,a.z);return k}}()});Object.assign(da.prototype,{set:function(a,b,c){this.a.copy(a);this.b.copy(b);this.c.copy(c);return this},setFromPointsAndIndices:function(a,b,c,d){this.a.copy(a[b]);this.b.copy(a[c]);this.c.copy(a[d]);return this},clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.a.copy(a.a);this.b.copy(a.b);this.c.copy(a.c);return this},getArea:function(){var a= +new p,b=new p;return function(){a.subVectors(this.c,this.b);b.subVectors(this.a,this.b);return.5*a.cross(b).length()}}(),getMidpoint:function(a){void 0===a&&(console.warn("THREE.Triangle: .getMidpoint() target is now required"),a=new p);return a.addVectors(this.a,this.b).add(this.c).multiplyScalar(1/3)},getNormal:function(a){return da.getNormal(this.a,this.b,this.c,a)},getPlane:function(a){void 0===a&&(console.warn("THREE.Triangle: .getPlane() target is now required"),a=new p);return a.setFromCoplanarPoints(this.a, +this.b,this.c)},getBarycoord:function(a,b){return da.getBarycoord(a,this.a,this.b,this.c,b)},containsPoint:function(a){return da.containsPoint(a,this.a,this.b,this.c)},getUV:function(a,b,c,d,e){return da.getUV(a,this.a,this.b,this.c,b,c,d,e)},intersectsBox:function(a){return a.intersectsTriangle(this)},closestPointToPoint:function(){var a=new p,b=new p,c=new p,d=new p,e=new p,f=new p;return function(g,h){void 0===h&&(console.warn("THREE.Triangle: .closestPointToPoint() target is now required"),h= +new p);var k=this.a,m=this.b,l=this.c;a.subVectors(m,k);b.subVectors(l,k);d.subVectors(g,k);var n=a.dot(d),r=b.dot(d);if(0>=n&&0>=r)return h.copy(k);e.subVectors(g,m);var x=a.dot(e),t=b.dot(e);if(0<=x&&t<=x)return h.copy(m);var u=n*t-x*r;if(0>=u&&0<=n&&0>=x)return m=n/(n-x),h.copy(k).addScaledVector(a,m);f.subVectors(g,l);g=a.dot(f);var w=b.dot(f);if(0<=w&&g<=w)return h.copy(l);n=g*r-n*w;if(0>=n&&0<=r&&0>=w)return u=r/(r-w),h.copy(k).addScaledVector(b,u);r=x*w-g*t;if(0>=r&&0<=t-x&&0<=g-w)return c.subVectors(l, +m),u=(t-x)/(t-x+(g-w)),h.copy(m).addScaledVector(c,u);l=1/(r+n+u);m=n*l;u*=l;return h.copy(k).addScaledVector(a,m).addScaledVector(b,u)}}(),equals:function(a){return a.a.equals(this.a)&&a.b.equals(this.b)&&a.c.equals(this.c)}});Ea.prototype=Object.create(L.prototype);Ea.prototype.constructor=Ea;Ea.prototype.isMeshBasicMaterial=!0;Ea.prototype.copy=function(a){L.prototype.copy.call(this,a);this.color.copy(a.color);this.map=a.map;this.lightMap=a.lightMap;this.lightMapIntensity=a.lightMapIntensity;this.aoMap= +a.aoMap;this.aoMapIntensity=a.aoMapIntensity;this.specularMap=a.specularMap;this.alphaMap=a.alphaMap;this.envMap=a.envMap;this.combine=a.combine;this.reflectivity=a.reflectivity;this.refractionRatio=a.refractionRatio;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.wireframeLinecap=a.wireframeLinecap;this.wireframeLinejoin=a.wireframeLinejoin;this.skinning=a.skinning;this.morphTargets=a.morphTargets;return this};pa.prototype=Object.assign(Object.create(D.prototype),{constructor:pa, +isMesh:!0,setDrawMode:function(a){this.drawMode=a},copy:function(a){D.prototype.copy.call(this,a);this.drawMode=a.drawMode;void 0!==a.morphTargetInfluences&&(this.morphTargetInfluences=a.morphTargetInfluences.slice());void 0!==a.morphTargetDictionary&&(this.morphTargetDictionary=Object.assign({},a.morphTargetDictionary));return this},updateMorphTargets:function(){var a=this.geometry;if(a.isBufferGeometry){a=a.morphAttributes;var b=Object.keys(a);if(0c.far?null:{distance:b,point:u.clone(),object:a}}function b(b,c,d,e,k,m,l,q,p){f.fromBufferAttribute(k,l);g.fromBufferAttribute(k,q);h.fromBufferAttribute(k,p);if(b=a(b,c,d,e,f,g,h,t))m&&(n.fromBufferAttribute(m,l),r.fromBufferAttribute(m,q),x.fromBufferAttribute(m,p),b.uv=da.getUV(t,f,g,h,n,r,x,new z)),m=new Xa(l,q,p),da.getNormal(f,g,h,m.normal),b.face=m;return b}var c=new P,d= +new rb,e=new Ga,f=new p,g=new p,h=new p,k=new p,m=new p,l=new p,n=new z,r=new z,x=new z,t=new p,u=new p;return function(q,p){var u=this.geometry,w=this.material,y=this.matrixWorld;if(void 0!==w&&(null===u.boundingSphere&&u.computeBoundingSphere(),e.copy(u.boundingSphere),e.applyMatrix4(y),!1!==q.ray.intersectsSphere(e)&&(c.getInverse(y),d.copy(q.ray).applyMatrix4(c),null===u.boundingBox||!1!==d.intersectsBox(u.boundingBox))))if(u.isBufferGeometry){var A=u.index,C=u.attributes.position,B=u.attributes.uv, +E=u.groups;u=u.drawRange;var D;if(null!==A)if(Array.isArray(w)){var F=0;for(D=E.length;Fe.far||f.push({distance:t,point:b.clone(),uv:da.getUV(b, +h,k,m,l,n,r,new z),face:null,object:this})}}(),clone:function(){return(new this.constructor(this.material)).copy(this)},copy:function(a){D.prototype.copy.call(this,a);void 0!==a.center&&this.center.copy(a.center);return this}});Fc.prototype=Object.assign(Object.create(D.prototype),{constructor:Fc,copy:function(a){D.prototype.copy.call(this,a,!1);a=a.levels;for(var b=0,c=a.length;b=d[e].distance)d[e-1].object.visible=!1,d[e].object.visible=!0;else break;for(;ef||(l.applyMatrix4(this.matrixWorld),u=d.ray.origin.distanceTo(l),ud.far||e.push({distance:u,point:h.clone().applyMatrix4(this.matrixWorld),index:g,face:null,faceIndex:null,object:this}))}}else for(g=0,t=x.length/3-1;gf||(l.applyMatrix4(this.matrixWorld),u=d.ray.origin.distanceTo(l),ud.far||e.push({distance:u,point:h.clone().applyMatrix4(this.matrixWorld),index:g,face:null,faceIndex:null,object:this}))}else if(g.isGeometry)for(k=g.vertices,m=k.length,g=0;gf||(l.applyMatrix4(this.matrixWorld),u=d.ray.origin.distanceTo(l),ud.far||e.push({distance:u,point:h.clone().applyMatrix4(this.matrixWorld), +index:g,face:null,faceIndex:null,object:this}))}}}(),copy:function(a){D.prototype.copy.call(this,a);this.geometry.copy(a.geometry);this.material.copy(a.material);return this},clone:function(){return(new this.constructor).copy(this)}});S.prototype=Object.assign(Object.create(ma.prototype),{constructor:S,isLineSegments:!0,computeLineDistances:function(){var a=new p,b=new p;return function(){var c=this.geometry;if(c.isBufferGeometry)if(null===c.index){for(var d=c.attributes.position,e=[],f=0,g=d.count;f< +g;f+=2)a.fromBufferAttribute(d,f),b.fromBufferAttribute(d,f+1),e[f]=0===f?0:e[f-1],e[f+1]=e[f]+a.distanceTo(b);c.addAttribute("lineDistance",new C(e,1))}else console.warn("THREE.LineSegments.computeLineDistances(): Computation only possible with non-indexed BufferGeometry.");else if(c.isGeometry)for(d=c.vertices,e=c.lineDistances,f=0,g=d.length;fd.far||e.push({distance:a,distanceToRay:Math.sqrt(f),point:n.clone(),index:c,face:null,object:g}))}var g=this,h=this.geometry,k=this.matrixWorld,m=d.params.Points.threshold;null===h.boundingSphere&&h.computeBoundingSphere();c.copy(h.boundingSphere);c.applyMatrix4(k);c.radius+=m;if(!1!==d.ray.intersectsSphere(c)){a.getInverse(k);b.copy(d.ray).applyMatrix4(a);m/=(this.scale.x+this.scale.y+ +this.scale.z)/3;var l=m*m;m=new p;var n=new p;if(h.isBufferGeometry){var r=h.index;h=h.attributes.position.array;if(null!==r){var x=r.array;r=0;for(var t=x.length;r=a.HAVE_CURRENT_DATA&&(this.needsUpdate=!0)}});Tb.prototype=Object.create(W.prototype);Tb.prototype.constructor=Tb;Tb.prototype.isCompressedTexture=!0;Hc.prototype=Object.create(W.prototype);Hc.prototype.constructor=Hc;Hc.prototype.isCanvasTexture=!0;Ic.prototype=Object.create(W.prototype);Ic.prototype.constructor=Ic;Ic.prototype.isDepthTexture=!0;Ub.prototype=Object.create(E.prototype);Ub.prototype.constructor=Ub;Jc.prototype=Object.create(I.prototype); +Jc.prototype.constructor=Jc;Vb.prototype=Object.create(E.prototype);Vb.prototype.constructor=Vb;Kc.prototype=Object.create(I.prototype);Kc.prototype.constructor=Kc;ya.prototype=Object.create(E.prototype);ya.prototype.constructor=ya;Lc.prototype=Object.create(I.prototype);Lc.prototype.constructor=Lc;Wb.prototype=Object.create(ya.prototype);Wb.prototype.constructor=Wb;Mc.prototype=Object.create(I.prototype);Mc.prototype.constructor=Mc;tb.prototype=Object.create(ya.prototype);tb.prototype.constructor= +tb;Nc.prototype=Object.create(I.prototype);Nc.prototype.constructor=Nc;Xb.prototype=Object.create(ya.prototype);Xb.prototype.constructor=Xb;Oc.prototype=Object.create(I.prototype);Oc.prototype.constructor=Oc;Yb.prototype=Object.create(ya.prototype);Yb.prototype.constructor=Yb;Pc.prototype=Object.create(I.prototype);Pc.prototype.constructor=Pc;Zb.prototype=Object.create(E.prototype);Zb.prototype.constructor=Zb;Qc.prototype=Object.create(I.prototype);Qc.prototype.constructor=Qc;$b.prototype=Object.create(E.prototype); +$b.prototype.constructor=$b;Rc.prototype=Object.create(I.prototype);Rc.prototype.constructor=Rc;ac.prototype=Object.create(E.prototype);ac.prototype.constructor=ac;var ah={triangulate:function(a,b,c){c=c||2;var d=b&&b.length,e=d?b[0]*c:a.length,f=jf(a,0,e,c,!0),g=[];if(!f)return g;var h;if(d){var k=c;d=[];var m;var l=0;for(m=b.length;l80*c){var p=h=a[0];var t=d=a[1];for(k=c;kh&&(h=l),b>d&&(d=b);h=Math.max(h-p,d-t);h=0!==h?1/h:0}Uc(f,g,c,p,t,h);return g}},Za={area:function(a){for(var b=a.length,c=0,d=b-1,e=0;eZa.area(a)},triangulateShape:function(a,b){var c=[],d=[],e=[];nf(a);of(c,a);var f=a.length;b.forEach(nf);for(a=0;aMath.abs(g-k)?[new z(a,1-c),new z(h,1-d),new z(m,1-e),new z(n,1-b)]:[new z(g,1-c),new z(k,1-d),new z(l,1-e),new z(r,1-b)]}};Wc.prototype=Object.create(I.prototype);Wc.prototype.constructor= +Wc;bc.prototype=Object.create(Sa.prototype);bc.prototype.constructor=bc;Xc.prototype=Object.create(I.prototype);Xc.prototype.constructor=Xc;wb.prototype=Object.create(E.prototype);wb.prototype.constructor=wb;Yc.prototype=Object.create(I.prototype);Yc.prototype.constructor=Yc;cc.prototype=Object.create(E.prototype);cc.prototype.constructor=cc;Zc.prototype=Object.create(I.prototype);Zc.prototype.constructor=Zc;dc.prototype=Object.create(E.prototype);dc.prototype.constructor=dc;xb.prototype=Object.create(I.prototype); +xb.prototype.constructor=xb;xb.prototype.toJSON=function(){var a=I.prototype.toJSON.call(this);return qf(this.parameters.shapes,a)};yb.prototype=Object.create(E.prototype);yb.prototype.constructor=yb;yb.prototype.toJSON=function(){var a=E.prototype.toJSON.call(this);return qf(this.parameters.shapes,a)};ec.prototype=Object.create(E.prototype);ec.prototype.constructor=ec;zb.prototype=Object.create(I.prototype);zb.prototype.constructor=zb;$a.prototype=Object.create(E.prototype);$a.prototype.constructor= +$a;$c.prototype=Object.create(zb.prototype);$c.prototype.constructor=$c;ad.prototype=Object.create($a.prototype);ad.prototype.constructor=ad;bd.prototype=Object.create(I.prototype);bd.prototype.constructor=bd;fc.prototype=Object.create(E.prototype);fc.prototype.constructor=fc;var Ba=Object.freeze({WireframeGeometry:Ub,ParametricGeometry:Jc,ParametricBufferGeometry:Vb,TetrahedronGeometry:Lc,TetrahedronBufferGeometry:Wb,OctahedronGeometry:Mc,OctahedronBufferGeometry:tb,IcosahedronGeometry:Nc,IcosahedronBufferGeometry:Xb, +DodecahedronGeometry:Oc,DodecahedronBufferGeometry:Yb,PolyhedronGeometry:Kc,PolyhedronBufferGeometry:ya,TubeGeometry:Pc,TubeBufferGeometry:Zb,TorusKnotGeometry:Qc,TorusKnotBufferGeometry:$b,TorusGeometry:Rc,TorusBufferGeometry:ac,TextGeometry:Wc,TextBufferGeometry:bc,SphereGeometry:Xc,SphereBufferGeometry:wb,RingGeometry:Yc,RingBufferGeometry:cc,PlaneGeometry:yc,PlaneBufferGeometry:qb,LatheGeometry:Zc,LatheBufferGeometry:dc,ShapeGeometry:xb,ShapeBufferGeometry:yb,ExtrudeGeometry:vb,ExtrudeBufferGeometry:Sa, +EdgesGeometry:ec,ConeGeometry:$c,ConeBufferGeometry:ad,CylinderGeometry:zb,CylinderBufferGeometry:$a,CircleGeometry:bd,CircleBufferGeometry:fc,BoxGeometry:Kb,BoxBufferGeometry:pb});Ab.prototype=Object.create(L.prototype);Ab.prototype.constructor=Ab;Ab.prototype.isShadowMaterial=!0;Ab.prototype.copy=function(a){L.prototype.copy.call(this,a);this.color.copy(a.color);return this};gc.prototype=Object.create(ka.prototype);gc.prototype.constructor=gc;gc.prototype.isRawShaderMaterial=!0;Ta.prototype=Object.create(L.prototype); +Ta.prototype.constructor=Ta;Ta.prototype.isMeshStandardMaterial=!0;Ta.prototype.copy=function(a){L.prototype.copy.call(this,a);this.defines={STANDARD:""};this.color.copy(a.color);this.roughness=a.roughness;this.metalness=a.metalness;this.map=a.map;this.lightMap=a.lightMap;this.lightMapIntensity=a.lightMapIntensity;this.aoMap=a.aoMap;this.aoMapIntensity=a.aoMapIntensity;this.emissive.copy(a.emissive);this.emissiveMap=a.emissiveMap;this.emissiveIntensity=a.emissiveIntensity;this.bumpMap=a.bumpMap;this.bumpScale= +a.bumpScale;this.normalMap=a.normalMap;this.normalMapType=a.normalMapType;this.normalScale.copy(a.normalScale);this.displacementMap=a.displacementMap;this.displacementScale=a.displacementScale;this.displacementBias=a.displacementBias;this.roughnessMap=a.roughnessMap;this.metalnessMap=a.metalnessMap;this.alphaMap=a.alphaMap;this.envMap=a.envMap;this.envMapIntensity=a.envMapIntensity;this.refractionRatio=a.refractionRatio;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.wireframeLinecap= +a.wireframeLinecap;this.wireframeLinejoin=a.wireframeLinejoin;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};Bb.prototype=Object.create(Ta.prototype);Bb.prototype.constructor=Bb;Bb.prototype.isMeshPhysicalMaterial=!0;Bb.prototype.copy=function(a){Ta.prototype.copy.call(this,a);this.defines={PHYSICAL:""};this.reflectivity=a.reflectivity;this.clearCoat=a.clearCoat;this.clearCoatRoughness=a.clearCoatRoughness;return this};Ia.prototype=Object.create(L.prototype); +Ia.prototype.constructor=Ia;Ia.prototype.isMeshPhongMaterial=!0;Ia.prototype.copy=function(a){L.prototype.copy.call(this,a);this.color.copy(a.color);this.specular.copy(a.specular);this.shininess=a.shininess;this.map=a.map;this.lightMap=a.lightMap;this.lightMapIntensity=a.lightMapIntensity;this.aoMap=a.aoMap;this.aoMapIntensity=a.aoMapIntensity;this.emissive.copy(a.emissive);this.emissiveMap=a.emissiveMap;this.emissiveIntensity=a.emissiveIntensity;this.bumpMap=a.bumpMap;this.bumpScale=a.bumpScale; +this.normalMap=a.normalMap;this.normalMapType=a.normalMapType;this.normalScale.copy(a.normalScale);this.displacementMap=a.displacementMap;this.displacementScale=a.displacementScale;this.displacementBias=a.displacementBias;this.specularMap=a.specularMap;this.alphaMap=a.alphaMap;this.envMap=a.envMap;this.combine=a.combine;this.reflectivity=a.reflectivity;this.refractionRatio=a.refractionRatio;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.wireframeLinecap=a.wireframeLinecap; +this.wireframeLinejoin=a.wireframeLinejoin;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};Cb.prototype=Object.create(Ia.prototype);Cb.prototype.constructor=Cb;Cb.prototype.isMeshToonMaterial=!0;Cb.prototype.copy=function(a){Ia.prototype.copy.call(this,a);this.gradientMap=a.gradientMap;return this};Db.prototype=Object.create(L.prototype);Db.prototype.constructor=Db;Db.prototype.isMeshNormalMaterial=!0;Db.prototype.copy=function(a){L.prototype.copy.call(this, +a);this.bumpMap=a.bumpMap;this.bumpScale=a.bumpScale;this.normalMap=a.normalMap;this.normalMapType=a.normalMapType;this.normalScale.copy(a.normalScale);this.displacementMap=a.displacementMap;this.displacementScale=a.displacementScale;this.displacementBias=a.displacementBias;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};Eb.prototype=Object.create(L.prototype);Eb.prototype.constructor= +Eb;Eb.prototype.isMeshLambertMaterial=!0;Eb.prototype.copy=function(a){L.prototype.copy.call(this,a);this.color.copy(a.color);this.map=a.map;this.lightMap=a.lightMap;this.lightMapIntensity=a.lightMapIntensity;this.aoMap=a.aoMap;this.aoMapIntensity=a.aoMapIntensity;this.emissive.copy(a.emissive);this.emissiveMap=a.emissiveMap;this.emissiveIntensity=a.emissiveIntensity;this.specularMap=a.specularMap;this.alphaMap=a.alphaMap;this.envMap=a.envMap;this.combine=a.combine;this.reflectivity=a.reflectivity; +this.refractionRatio=a.refractionRatio;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.wireframeLinecap=a.wireframeLinecap;this.wireframeLinejoin=a.wireframeLinejoin;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};Fb.prototype=Object.create(L.prototype);Fb.prototype.constructor=Fb;Fb.prototype.isMeshMatcapMaterial=!0;Fb.prototype.copy=function(a){L.prototype.copy.call(this,a);this.defines={MATCAP:""};this.color.copy(a.color); +this.matcap=a.matcap;this.map=a.map;this.bumpMap=a.bumpMap;this.bumpScale=a.bumpScale;this.normalMap=a.normalMap;this.normalMapType=a.normalMapType;this.normalScale.copy(a.normalScale);this.displacementMap=a.displacementMap;this.displacementScale=a.displacementScale;this.displacementBias=a.displacementBias;this.alphaMap=a.alphaMap;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};Gb.prototype=Object.create(T.prototype);Gb.prototype.constructor= +Gb;Gb.prototype.isLineDashedMaterial=!0;Gb.prototype.copy=function(a){T.prototype.copy.call(this,a);this.scale=a.scale;this.dashSize=a.dashSize;this.gapSize=a.gapSize;return this};var bh=Object.freeze({ShadowMaterial:Ab,SpriteMaterial:hb,RawShaderMaterial:gc,ShaderMaterial:ka,PointsMaterial:Ha,MeshPhysicalMaterial:Bb,MeshStandardMaterial:Ta,MeshPhongMaterial:Ia,MeshToonMaterial:Cb,MeshNormalMaterial:Db,MeshLambertMaterial:Eb,MeshDepthMaterial:eb,MeshDistanceMaterial:fb,MeshBasicMaterial:Ea,MeshMatcapMaterial:Fb, +LineDashedMaterial:Gb,LineBasicMaterial:T,Material:L}),ha={arraySlice:function(a,b,c){return ha.isTypedArray(a)?new a.constructor(a.subarray(b,void 0!==c?c:a.length)):a.slice(b,c)},convertArray:function(a,b,c){return!a||!c&&a.constructor===b?a:"number"===typeof b.BYTES_PER_ELEMENT?new b(a):Array.prototype.slice.call(a)},isTypedArray:function(a){return ArrayBuffer.isView(a)&&!(a instanceof DataView)},getKeyframeOrder:function(a){for(var b=a.length,c=Array(b),d=0;d!==b;++d)c[d]=d;c.sort(function(b, +c){return a[b]-a[c]});return c},sortedArray:function(a,b,c){for(var d=a.length,e=new a.constructor(d),f=0,g=0;g!==d;++f)for(var h=c[f]*b,k=0;k!==b;++k)e[g++]=a[h+k];return e},flattenJSON:function(a,b,c,d){for(var e=1,f=a[0];void 0!==f&&void 0===f[d];)f=a[e++];if(void 0!==f){var g=f[d];if(void 0!==g)if(Array.isArray(g)){do g=f[d],void 0!==g&&(b.push(f.time),c.push.apply(c,g)),f=a[e++];while(void 0!==f)}else if(void 0!==g.toArray){do g=f[d],void 0!==g&&(b.push(f.time),g.toArray(c,c.length)),f=a[e++]; +while(void 0!==f)}else{do g=f[d],void 0!==g&&(b.push(f.time),c.push(g)),f=a[e++];while(void 0!==f)}}}};Object.assign(Ca.prototype,{evaluate:function(a){var b=this.parameterPositions,c=this._cachedIndex,d=b[c],e=b[c-1];a:{b:{c:{d:if(!(a=e)break a;else{f=b[1];a=e)break b}d=c;c=0}}for(;c>>1,ab;)--f;++f;if(0!==e||f!==d)e>=f&&(f=Math.max(f,1),e=f-1),a=this.getValueSize(),this.times=ha.arraySlice(c, +e,f),this.values=ha.arraySlice(this.values,e*a,f*a);return this},validate:function(){var a=!0,b=this.getValueSize();0!==b-Math.floor(b)&&(console.error("THREE.KeyframeTrack: Invalid value size in track.",this),a=!1);var c=this.times;b=this.values;var d=c.length;0===d&&(console.error("THREE.KeyframeTrack: Track is empty.",this),a=!1);for(var e=null,f=0;f!==d;f++){var g=c[f];if("number"===typeof g&&isNaN(g)){console.error("THREE.KeyframeTrack: Time is not a valid number.",this,f,g);a=!1;break}if(null!== +e&&e>g){console.error("THREE.KeyframeTrack: Out of order keys.",this,f,g,e);a=!1;break}e=g}if(void 0!==b&&ha.isTypedArray(b))for(f=0,c=b.length;f!==c;++f)if(d=b[f],isNaN(d)){console.error("THREE.KeyframeTrack: Value is not a valid number.",this,f,d);a=!1;break}return a},optimize:function(){for(var a=this.times,b=this.values,c=this.getValueSize(),d=2302===this.getInterpolation(),e=1,f=a.length-1,g=1;gg)e=a+1;else if(0b&&(b=0);1Number.EPSILON&&(g.normalize(),c=Math.acos(S.clamp(d[k-1].dot(d[k]),-1,1)),e[k].applyMatrix4(h.makeRotationAxis(g,c))),f[k].crossVectors(d[k],e[k]);if(!0===b)for(c=Math.acos(S.clamp(e[0].dot(e[a]),-1,1)),c/=a,0d;)d+=c;for(;d>c;)d-=c;de&&(e=1);1E-4>d&&(d=e);1E-4>k&&(k=e);Ee.initNonuniformCatmullRom(f.x,g.x,h.x,c.x,d,e,k);Fe.initNonuniformCatmullRom(f.y,g.y,h.y,c.y,d,e,k);Ge.initNonuniformCatmullRom(f.z,g.z,h.z,c.z,d,e,k)}else"catmullrom"===this.curveType&&(Ee.initCatmullRom(f.x,g.x,h.x,c.x,this.tension),Fe.initCatmullRom(f.y,g.y,h.y,c.y,this.tension),Ge.initCatmullRom(f.z,g.z,h.z,c.z,this.tension));b.set(Ee.calc(a), -Fe.calc(a),Ge.calc(a));return b};ha.prototype.copy=function(a){N.prototype.copy.call(this,a);this.points=[];for(var b=0,c=a.points.length;bc.length-2?c.length-1:a+1];c=c[a>c.length-3?c.length-1:a+2];b.set(of(d,e.x,f.x,g.x,c.x),of(d,e.y,f.y,g.y,c.y));return b};Ma.prototype.copy=function(a){N.prototype.copy.call(this,a);this.points=[];for(var b=0,c=a.points.length;b=b)return b=c[a]-b,a=this.curves[a],c=a.getLength(),a.getPointAt(0===c?0:1-b/c);a++}return null},getLength:function(){var a=this.getCurveLengths(); +0,1);g.crossVectors(d[0],c).normalize();e[0].crossVectors(d[0],g);f[0].crossVectors(d[0],e[0]);for(k=1;k<=a;k++)e[k]=e[k-1].clone(),f[k]=f[k-1].clone(),g.crossVectors(d[k-1],d[k]),g.length()>Number.EPSILON&&(g.normalize(),c=Math.acos(R.clamp(d[k-1].dot(d[k]),-1,1)),e[k].applyMatrix4(h.makeRotationAxis(g,c))),f[k].crossVectors(d[k],e[k]);if(!0===b)for(c=Math.acos(R.clamp(e[0].dot(e[a]),-1,1)),c/=a,0d;)d+=c;for(;d>c;)d-=c;de&&(e=1);1E-4>d&&(d=e);1E-4>k&&(k=e);Fe.initNonuniformCatmullRom(f.x,g.x,h.x,c.x,d,e,k);Ge.initNonuniformCatmullRom(f.y,g.y,h.y,c.y,d,e,k);He.initNonuniformCatmullRom(f.z,g.z,h.z,c.z,d,e,k)}else"catmullrom"===this.curveType&&(Fe.initCatmullRom(f.x,g.x,h.x,c.x,this.tension),Ge.initCatmullRom(f.y,g.y,h.y,c.y,this.tension),He.initCatmullRom(f.z,g.z,h.z,c.z,this.tension));b.set(Fe.calc(a), +Ge.calc(a),He.calc(a));return b};ra.prototype.copy=function(a){Q.prototype.copy.call(this,a);this.points=[];for(var b=0,c=a.points.length;bc.length-2?c.length-1:a+1];c=c[a>c.length-3?c.length-1:a+2];b.set(tf(d,e.x,f.x,g.x,c.x),tf(d,e.y,f.y,g.y,c.y));return b};Ma.prototype.copy=function(a){Q.prototype.copy.call(this,a);this.points=[];for(var b=0,c=a.points.length;b=b)return b=c[a]-b,a=this.curves[a],c=a.getLength(),a.getPointAt(0===c?0:1-b/c);a++}return null},getLength:function(){var a=this.getCurveLengths(); return a[a.length-1]},updateArcLengths:function(){this.needsUpdate=!0;this.cacheLengths=null;this.getCurveLengths()},getCurveLengths:function(){if(this.cacheLengths&&this.cacheLengths.length===this.curves.length)return this.cacheLengths;for(var a=[],b=0,c=0,d=this.curves.length;c=e)break a;else{f=b[1];a=e)break b}d=c;c=0}}for(;c>>1,ab;)--f;++f;if(0!==e||f!==d)e>=f&&(f=Math.max(f, -1),e=f-1),a=this.getValueSize(),this.times=ra.arraySlice(c,e,f),this.values=ra.arraySlice(this.values,e*a,f*a);return this},validate:function(){var a=!0,b=this.getValueSize();0!==b-Math.floor(b)&&(console.error("THREE.KeyframeTrack: Invalid value size in track.",this),a=!1);var c=this.times;b=this.values;var d=c.length;0===d&&(console.error("THREE.KeyframeTrack: Track is empty.",this),a=!1);for(var e=null,f=0;f!==d;f++){var g=c[f];if("number"===typeof g&&isNaN(g)){console.error("THREE.KeyframeTrack: Time is not a valid number.", -this,f,g);a=!1;break}if(null!==e&&e>g){console.error("THREE.KeyframeTrack: Out of order keys.",this,f,g,e);a=!1;break}e=g}if(void 0!==b&&ra.isTypedArray(b))for(f=0,c=b.length;f!==c;++f)if(d=b[f],isNaN(d)){console.error("THREE.KeyframeTrack: Value is not a valid number.",this,f,d);a=!1;break}return a},optimize:function(){for(var a=this.times,b=this.values,c=this.getValueSize(),d=2302===this.getInterpolation(),e=1,f=a.length-1,g=1;gm.opacity&&(m.transparent=!0);d.setTextures(k);return d.parse(m)}}()});Object.assign(Qd.prototype,{crossOrigin:"anonymous",load:function(a,b,c,d){var e=this,f=void 0===this.path?Vd.extractUrlBase(a):this.path,g=new Ia(this.manager);g.setPath(this.path);g.setWithCredentials(this.withCredentials);g.load(a,function(c){c=JSON.parse(c);var d=c.metadata;if(void 0!==d&&(d=d.type,void 0!==d&&"object"===d.toLowerCase())){console.error("THREE.JSONLoader: "+ -a+" should be loaded with THREE.ObjectLoader instead.");return}c=e.parse(c,f);b(c.geometry,c.materials)},c,d)},setPath:function(a){this.path=a;return this},setResourcePath:function(a){this.resourcePath=a;return this},setCrossOrigin:function(a){this.crossOrigin=a;return this},parse:function(){return function(a,b){void 0!==a.data&&(a=a.data);a.scale=void 0!==a.scale?1/a.scale:1;var c=new M,d=a,e,f,g,h=d.faces;var k=d.vertices;var m=d.normals,l=d.colors;var n=d.scale;var r=0;if(void 0!==d.uvs){for(e= -0;ef;f++){var I=h[v++];var C=A[2*I];I=A[2*I+1];C=new z(C,I);2!==f&&c.faceVertexUvs[e][u].push(C);0!==f&&c.faceVertexUvs[e][u+1].push(C)}}y&&(y=3*h[v++],t.normal.set(m[y++],m[y++],m[y]),w.normal.copy(t.normal));if(x)for(e=0;4>e;e++)y=3*h[v++],x=new p(m[y++],m[y++],m[y]),2!==e&&t.vertexNormals.push(x),0!==e&&w.vertexNormals.push(x);n&&(n=h[v++],n=l[n],t.color.setHex(n),w.color.setHex(n));if(k)for(e=0;4>e;e++)n=h[v++],n=l[n],2!==e&&t.vertexColors.push(new G(n)),0!==e&&w.vertexColors.push(new G(n)); -c.faces.push(t);c.faces.push(w)}else{t=new Xa;t.a=h[v++];t.b=h[v++];t.c=h[v++];u&&(u=h[v++],t.materialIndex=u);u=c.faces.length;if(e)for(e=0;ef;f++)I=h[v++],C=A[2*I],I=A[2*I+1],C=new z(C,I),c.faceVertexUvs[e][u].push(C);y&&(y=3*h[v++],t.normal.set(m[y++],m[y++],m[y]));if(x)for(e=0;3>e;e++)y=3*h[v++],x=new p(m[y++],m[y++],m[y]),t.vertexNormals.push(x);n&&(n=h[v++],t.color.setHex(l[n]));if(k)for(e=0;3>e;e++)n=h[v++],t.vertexColors.push(new G(l[n])); -c.faces.push(t)}}d=a;v=void 0!==d.influencesPerVertex?d.influencesPerVertex:2;if(d.skinWeights)for(g=0,h=d.skinWeights.length;gNumber.EPSILON){if(0>m&&(g=b[f],k=-k,h=b[e],m=-m),!(a.yh.y))if(a.y===g.y){if(a.x===g.x)return!0}else{e=m*(a.x-g.x)-k*(a.y-g.y);if(0===e)return!0;0>e||(d=!d)}}else if(a.y===g.y&&(h.x<= -a.x&&a.x<=g.x||g.x<=a.x&&a.x<=h.x))return!0}return d}var e=Za.isClockWise,f=this.subPaths;if(0===f.length)return[];if(!0===b)return c(f);b=[];if(1===f.length){var g=f[0];var h=new gb;h.curves=g.curves;b.push(h);return b}var k=!e(f[0].getPoints());k=a?!k:k;h=[];var m=[],l=[],n=0;m[n]=void 0;l[n]=[];for(var p=0,v=f.length;pd&&this._mixBufferRegion(c,a,3*b,1-d,b);d=b;for(var f=b+b;d!==f;++d)if(c[d]!==c[d+b]){e.setValue(c,a);break}},saveOriginalState:function(){var a=this.buffer,b=this.valueSize,c=3*b;this.binding.getValue(a,c);for(var d=b;d!==c;++d)a[d]=a[c+d%b];this.cumulativeWeight=0},restoreOriginalState:function(){this.binding.setValue(this.buffer,3*this.valueSize)},_select:function(a, -b,c,d,e){if(.5<=d)for(d=0;d!==e;++d)a[b+d]=a[c+d]},_slerp:function(a,b,c,d){ja.slerpFlat(a,b,a,b,a,c,d)},_lerp:function(a,b,c,d,e){for(var f=1-d,g=0;g!==e;++g){var h=b+g;a[h]=a[h]*f+a[c+g]*d}}});Object.assign(rf.prototype,{getValue:function(a,b){this.bind();var c=this._bindings[this._targetGroup.nCachedObjects_];void 0!==c&&c.getValue(a,b)},setValue:function(a,b){for(var c=this._bindings,d=this._targetGroup.nCachedObjects_,e=c.length;d!==e;++d)c[d].setValue(a,b)},bind:function(){for(var a=this._bindings, -b=this._targetGroup.nCachedObjects_,c=a.length;b!==c;++b)a[b].bind()},unbind:function(){for(var a=this._bindings,b=this._targetGroup.nCachedObjects_,c=a.length;b!==c;++b)a[b].unbind()}});Object.assign(ta,{Composite:rf,create:function(a,b,c){return a&&a.isAnimationObjectGroup?new ta.Composite(a,b,c):new ta(a,b,c)},sanitizeNodeName:function(){var a=/[\[\]\.:\/]/g;return function(b){return b.replace(/\s/g,"_").replace(a,"")}}(),parseTrackName:function(){var a="[^"+"\\[\\]\\.:\\/".replace("\\.","")+"]", -b=/((?:WC+[\/:])*)/.source.replace("WC","[^\\[\\]\\.:\\/]");a=/(WCOD+)?/.source.replace("WCOD",a);var c=/(?:\.(WC+)(?:\[(.+)\])?)?/.source.replace("WC","[^\\[\\]\\.:\\/]"),d=/\.(WC+)(?:\[(.+)\])?/.source.replace("WC","[^\\[\\]\\.:\\/]"),e=new RegExp("^"+b+a+c+d+"$"),f=["material","materials","bones"];return function(a){var b=e.exec(a);if(!b)throw Error("PropertyBinding: Cannot parse trackName: "+a);b={nodeName:b[2],objectName:b[3],objectIndex:b[4],propertyName:b[5],propertyIndex:b[6]};var c=b.nodeName&& -b.nodeName.lastIndexOf(".");if(void 0!==c&&-1!==c){var d=b.nodeName.substring(c+1);-1!==f.indexOf(d)&&(b.nodeName=b.nodeName.substring(0,c),b.objectName=d)}if(null===b.propertyName||0===b.propertyName.length)throw Error("PropertyBinding: can not parse propertyName from trackName: "+a);return b}}(),findNode:function(a,b){if(!b||""===b||"root"===b||"."===b||-1===b||b===a.name||b===a.uuid)return a;if(a.skeleton){var c=a.skeleton.getBoneByName(b);if(void 0!==c)return c}if(a.children){var d=function(a){for(var c= -0;cm.opacity&&(m.transparent=!0);d.setTextures(k);return d.parse(m)}}()});Object.assign(Qd.prototype, +{crossOrigin:"anonymous",load:function(a,b,c,d){var e=this,f=void 0===this.path?Vd.extractUrlBase(a):this.path,g=new Fa(this.manager);g.setPath(this.path);g.setWithCredentials(this.withCredentials);g.load(a,function(c){c=JSON.parse(c);var d=c.metadata;if(void 0!==d&&(d=d.type,void 0!==d&&"object"===d.toLowerCase())){console.error("THREE.JSONLoader: "+a+" should be loaded with THREE.ObjectLoader instead.");return}c=e.parse(c,f);b(c.geometry,c.materials)},c,d)},setPath:function(a){this.path=a;return this}, +setResourcePath:function(a){this.resourcePath=a;return this},setCrossOrigin:function(a){this.crossOrigin=a;return this},parse:function(){return function(a,b){void 0!==a.data&&(a=a.data);a.scale=void 0!==a.scale?1/a.scale:1;var c=new I,d=a,e,f,g,h=d.faces;var k=d.vertices;var m=d.normals,l=d.colors;var n=d.scale;var r=0;if(void 0!==d.uvs){for(e=0;ef;f++){var y=h[x++];var D=C[2*y];y=C[2*y+1];D=new z(D,y);2!==f&&c.faceVertexUvs[e][u].push(D);0!==f&&c.faceVertexUvs[e][u+1].push(D)}}w&& +(w=3*h[x++],t.normal.set(m[w++],m[w++],m[w]),v.normal.copy(t.normal));if(A)for(e=0;4>e;e++)w=3*h[x++],A=new p(m[w++],m[w++],m[w]),2!==e&&t.vertexNormals.push(A),0!==e&&v.vertexNormals.push(A);n&&(n=h[x++],n=l[n],t.color.setHex(n),v.color.setHex(n));if(k)for(e=0;4>e;e++)n=h[x++],n=l[n],2!==e&&t.vertexColors.push(new G(n)),0!==e&&v.vertexColors.push(new G(n));c.faces.push(t);c.faces.push(v)}else{t=new Xa;t.a=h[x++];t.b=h[x++];t.c=h[x++];u&&(u=h[x++],t.materialIndex=u);u=c.faces.length;if(e)for(e=0;e< +r;e++)for(C=d.uvs[e],c.faceVertexUvs[e][u]=[],f=0;3>f;f++)y=h[x++],D=C[2*y],y=C[2*y+1],D=new z(D,y),c.faceVertexUvs[e][u].push(D);w&&(w=3*h[x++],t.normal.set(m[w++],m[w++],m[w]));if(A)for(e=0;3>e;e++)w=3*h[x++],A=new p(m[w++],m[w++],m[w]),t.vertexNormals.push(A);n&&(n=h[x++],t.color.setHex(l[n]));if(k)for(e=0;3>e;e++)n=h[x++],t.vertexColors.push(new G(l[n]));c.faces.push(t)}}d=a;x=void 0!==d.influencesPerVertex?d.influencesPerVertex:2;if(d.skinWeights)for(g=0,h=d.skinWeights.length;g +Number.EPSILON){if(0>m&&(g=b[f],k=-k,h=b[e],m=-m),!(a.yh.y))if(a.y===g.y){if(a.x===g.x)return!0}else{e=m*(a.x-g.x)-k*(a.y-g.y);if(0===e)return!0;0>e||(d=!d)}}else if(a.y===g.y&&(h.x<=a.x&&a.x<=g.x||g.x<=a.x&&a.x<=h.x))return!0}return d}var e=Za.isClockWise,f=this.subPaths;if(0===f.length)return[];if(!0===b)return c(f);b=[];if(1===f.length){var g=f[0];var h=new ib;h.curves=g.curves;b.push(h);return b}var k=!e(f[0].getPoints());k=a?!k:k;h=[];var m=[],l=[],n=0;m[n]=void 0;l[n]=[];for(var p= +0,x=f.length;pd&&this._mixBufferRegion(c,a,3*b,1-d,b);d=b;for(var f=b+b;d!==f;++d)if(c[d]!==c[d+b]){e.setValue(c,a);break}},saveOriginalState:function(){var a=this.buffer,b=this.valueSize,c=3*b;this.binding.getValue(a,c);for(var d=b;d!==c;++d)a[d]=a[c+d%b];this.cumulativeWeight=0},restoreOriginalState:function(){this.binding.setValue(this.buffer,3* +this.valueSize)},_select:function(a,b,c,d,e){if(.5<=d)for(d=0;d!==e;++d)a[b+d]=a[c+d]},_slerp:function(a,b,c,d){ja.slerpFlat(a,b,a,b,a,c,d)},_lerp:function(a,b,c,d,e){for(var f=1-d,g=0;g!==e;++g){var h=b+g;a[h]=a[h]*f+a[c+g]*d}}});Object.assign(wf.prototype,{getValue:function(a,b){this.bind();var c=this._bindings[this._targetGroup.nCachedObjects_];void 0!==c&&c.getValue(a,b)},setValue:function(a,b){for(var c=this._bindings,d=this._targetGroup.nCachedObjects_,e=c.length;d!==e;++d)c[d].setValue(a,b)}, +bind:function(){for(var a=this._bindings,b=this._targetGroup.nCachedObjects_,c=a.length;b!==c;++b)a[b].bind()},unbind:function(){for(var a=this._bindings,b=this._targetGroup.nCachedObjects_,c=a.length;b!==c;++b)a[b].unbind()}});Object.assign(ua,{Composite:wf,create:function(a,b,c){return a&&a.isAnimationObjectGroup?new ua.Composite(a,b,c):new ua(a,b,c)},sanitizeNodeName:function(){var a=/[\[\]\.:\/]/g;return function(b){return b.replace(/\s/g,"_").replace(a,"")}}(),parseTrackName:function(){var a= +"[^"+"\\[\\]\\.:\\/".replace("\\.","")+"]",b=/((?:WC+[\/:])*)/.source.replace("WC","[^\\[\\]\\.:\\/]");a=/(WCOD+)?/.source.replace("WCOD",a);var c=/(?:\.(WC+)(?:\[(.+)\])?)?/.source.replace("WC","[^\\[\\]\\.:\\/]"),d=/\.(WC+)(?:\[(.+)\])?/.source.replace("WC","[^\\[\\]\\.:\\/]"),e=new RegExp("^"+b+a+c+d+"$"),f=["material","materials","bones"];return function(a){var b=e.exec(a);if(!b)throw Error("PropertyBinding: Cannot parse trackName: "+a);b={nodeName:b[2],objectName:b[3],objectIndex:b[4],propertyName:b[5], +propertyIndex:b[6]};var c=b.nodeName&&b.nodeName.lastIndexOf(".");if(void 0!==c&&-1!==c){var d=b.nodeName.substring(c+1);-1!==f.indexOf(d)&&(b.nodeName=b.nodeName.substring(0,c),b.objectName=d)}if(null===b.propertyName||0===b.propertyName.length)throw Error("PropertyBinding: can not parse propertyName from trackName: "+a);return b}}(),findNode:function(a,b){if(!b||""===b||"root"===b||"."===b||-1===b||b===a.name||b===a.uuid)return a;if(a.skeleton){var c=a.skeleton.getBoneByName(b);if(void 0!==c)return c}if(a.children){var d= +function(a){for(var c=0;c=b){var p=b++,n=a[p];c[n.uuid]=l;a[l]=n;c[k]=p;a[p]=h;h=0;for(k=e;h!==k;++h){n=d[h];var r=n[l];n[l]=n[p];n[p]=r}}}this.nCachedObjects_=b},uncache:function(){for(var a=this._objects,b=a.length,c=this.nCachedObjects_,d=this._indicesByUUID,e=this._bindings,f=e.length,g=0,h=arguments.length;g!==h;++g){var k=arguments[g].uuid,l=d[k];if(void 0!==l)if(delete d[k],lc.parameterPositions[1]&&(this.stopFading(),0===d&&(this.enabled=!1))}}return this._effectiveWeight=b},_updateTimeScale:function(a){var b=0;if(!this.paused){b=this.timeScale;var c=this._timeScaleInterpolant;if(null!==c){var d=c.evaluate(a)[0]; b*=d;a>c.parameterPositions[1]&&(this.stopWarping(),0===b?this.paused=!0:this.timeScale=b)}}return this._effectiveTimeScale=b},_updateTime:function(a){var b=this.time+a,c=this._clip.duration,d=this.loop,e=this._loopCount,f=2202===d;if(0===a)return-1===e?b:f&&1===(e&1)?c-b:b;if(2200===d)a:{if(-1===e&&(this._loopCount=0,this._setEndings(!0,!0,!1)),b>=c)b=c;else if(0>b)b=0;else break a;this.clampWhenFinished?this.paused=!0:this.enabled=!1;this._mixer.dispatchEvent({type:"finished",action:this,direction:0> a?-1:1})}else{-1===e&&(0<=a?(e=0,this._setEndings(!0,0===this.repetitions,f)):this._setEndings(0===this.repetitions,!0,f));if(b>=c||0>b){d=Math.floor(b/c);b-=c*d;e+=Math.abs(d);var g=this.repetitions-e;0>=g?(this.clampWhenFinished?this.paused=!0:this.enabled=!1,b=0a,this._setEndings(a,!a,f)):this._setEndings(!1,!1,f),this._loopCount=e,this._mixer.dispatchEvent({type:"loop",action:this,loopDelta:d}))}if(f&& -1===(e&1))return this.time=b,c-b}return this.time=b},_setEndings:function(a,b,c){var d=this._interpolantSettings;c?(d.endingStart=2401,d.endingEnd=2401):(d.endingStart=a?this.zeroSlopeAtStart?2401:2400:2402,d.endingEnd=b?this.zeroSlopeAtEnd?2401:2400:2402)},_scheduleFading:function(a,b,c){var d=this._mixer,e=d.time,f=this._weightInterpolant;null===f&&(this._weightInterpolant=f=d._lendControlInterpolant());d=f.parameterPositions;f=f.sampleValues;d[0]=e;f[0]=b;d[1]=e+a;f[1]=c;return this}});ve.prototype= -Object.assign(Object.create(ia.prototype),{constructor:ve,_bindAction:function(a,b){var c=a._localRoot||this._root,d=a._clip.tracks,e=d.length,f=a._propertyBindings;a=a._interpolants;var g=c.uuid,h=this._bindingsByRootAndName,k=h[g];void 0===k&&(k={},h[g]=k);for(h=0;h!==e;++h){var l=d[h],p=l.name,n=k[p];if(void 0===n){n=f[h];if(void 0!==n){null===n._cacheIndex&&(++n.referenceCount,this._addInactiveBinding(n,g,p));continue}n=new ue(ta.create(c,p,b&&b._propertyBindings[h].binding.parsedPath),l.ValueTypeName, +1===(e&1))return this.time=b,c-b}return this.time=b},_setEndings:function(a,b,c){var d=this._interpolantSettings;c?(d.endingStart=2401,d.endingEnd=2401):(d.endingStart=a?this.zeroSlopeAtStart?2401:2400:2402,d.endingEnd=b?this.zeroSlopeAtEnd?2401:2400:2402)},_scheduleFading:function(a,b,c){var d=this._mixer,e=d.time,f=this._weightInterpolant;null===f&&(this._weightInterpolant=f=d._lendControlInterpolant());d=f.parameterPositions;f=f.sampleValues;d[0]=e;f[0]=b;d[1]=e+a;f[1]=c;return this}});we.prototype= +Object.assign(Object.create(ia.prototype),{constructor:we,_bindAction:function(a,b){var c=a._localRoot||this._root,d=a._clip.tracks,e=d.length,f=a._propertyBindings;a=a._interpolants;var g=c.uuid,h=this._bindingsByRootAndName,k=h[g];void 0===k&&(k={},h[g]=k);for(h=0;h!==e;++h){var l=d[h],p=l.name,n=k[p];if(void 0===n){n=f[h];if(void 0!==n){null===n._cacheIndex&&(++n.referenceCount,this._addInactiveBinding(n,g,p));continue}n=new ve(ua.create(c,p,b&&b._propertyBindings[h].binding.parsedPath),l.ValueTypeName, l.getValueSize());++n.referenceCount;this._addInactiveBinding(n,g,p)}f[h]=n;a[h].resultBuffer=n.buffer}},_activateAction:function(a){if(!this._isActiveAction(a)){if(null===a._cacheIndex){var b=(a._localRoot||this._root).uuid,c=a._clip.uuid,d=this._actionsByClip[c];this._bindAction(a,d&&d.knownActions[0]);this._addInactiveAction(a,c,b)}b=a._propertyBindings;c=0;for(d=b.length;c!==d;++c){var e=b[c];0===e.useCount++&&(this._lendBinding(e),e.saveOriginalState())}this._lendAction(a)}},_deactivateAction:function(a){if(this._isActiveAction(a)){for(var b= a._propertyBindings,c=0,d=b.length;c!==d;++c){var e=b[c];0===--e.useCount&&(e.restoreOriginalState(),this._takeBackBinding(e))}this._takeBackAction(a)}},_initMemoryManager:function(){this._actions=[];this._nActiveActions=0;this._actionsByClip={};this._bindings=[];this._nActiveBindings=0;this._bindingsByRootAndName={};this._controlInterpolants=[];this._nActiveControlInterpolants=0;var a=this;this.stats={actions:{get total(){return a._actions.length},get inUse(){return a._nActiveActions}},bindings:{get total(){return a._bindings.length}, get inUse(){return a._nActiveBindings}},controlInterpolants:{get total(){return a._controlInterpolants.length},get inUse(){return a._nActiveControlInterpolants}}}},_isActiveAction:function(a){a=a._cacheIndex;return null!==a&&athis.max.x||a.ythis.max.y?!1:!0},containsBox:function(a){return this.min.x<=a.min.x&&a.max.x<=this.max.x&&this.min.y<=a.min.y&&a.max.y<=this.max.y},getParameter:function(a,b){void 0===b&&(console.warn("THREE.Box2: .getParameter() target is now required"), -b=new z);return b.set((a.x-this.min.x)/(this.max.x-this.min.x),(a.y-this.min.y)/(this.max.y-this.min.y))},intersectsBox:function(a){return a.max.xthis.max.x||a.max.ythis.max.y?!1:!0},clampPoint:function(a,b){void 0===b&&(console.warn("THREE.Box2: .clampPoint() target is now required"),b=new z);return b.copy(a).clamp(this.min,this.max)},distanceToPoint:function(){var a=new z;return function(b){return a.copy(b).clamp(this.min,this.max).sub(b).length()}}(),intersect:function(a){this.min.max(a.min); -this.max.min(a.max);return this},union:function(a){this.min.min(a.min);this.max.max(a.max);return this},translate:function(a){this.min.add(a);this.max.add(a);return this},equals:function(a){return a.min.equals(this.min)&&a.max.equals(this.max)}});Object.assign(Be.prototype,{set:function(a,b){this.start.copy(a);this.end.copy(b);return this},clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.start.copy(a.start);this.end.copy(a.end);return this},getCenter:function(a){void 0=== +a.uuid;var b=this._actionsByClip;for(d in b){var c=b[d].actionByRoot[a];void 0!==c&&(this._deactivateAction(c),this._removeInactiveAction(c))}var d=this._bindingsByRootAndName[a];if(void 0!==d)for(var e in d)a=d[e],a.restoreOriginalState(),this._removeInactiveBinding(a)},uncacheAction:function(a,b){a=this.existingAction(a,b);null!==a&&(this._deactivateAction(a),this._removeInactiveAction(a))}});Rd.prototype.clone=function(){return new Rd(void 0===this.value.clone?this.value:this.value.clone())};xe.prototype= +Object.assign(Object.create(E.prototype),{constructor:xe,isInstancedBufferGeometry:!0,copy:function(a){E.prototype.copy.call(this,a);this.maxInstancedCount=a.maxInstancedCount;return this},clone:function(){return(new this.constructor).copy(this)}});ye.prototype=Object.assign(Object.create(sb.prototype),{constructor:ye,isInstancedInterleavedBuffer:!0,copy:function(a){sb.prototype.copy.call(this,a);this.meshPerAttribute=a.meshPerAttribute;return this}});ze.prototype=Object.assign(Object.create(F.prototype), +{constructor:ze,isInstancedBufferAttribute:!0,copy:function(a){F.prototype.copy.call(this,a);this.meshPerAttribute=a.meshPerAttribute;return this}});Object.assign(zf.prototype,{linePrecision:1,set:function(a,b){this.ray.set(a,b)},setFromCamera:function(a,b){b&&b.isPerspectiveCamera?(this.ray.origin.setFromMatrixPosition(b.matrixWorld),this.ray.direction.set(a.x,a.y,.5).unproject(b).sub(this.ray.origin).normalize()):b&&b.isOrthographicCamera?(this.ray.origin.set(a.x,a.y,(b.near+b.far)/(b.near-b.far)).unproject(b), +this.ray.direction.set(0,0,-1).transformDirection(b.matrixWorld)):console.error("THREE.Raycaster: Unsupported camera type.")},intersectObject:function(a,b,c){c=c||[];Ae(a,this,c,b);c.sort(Af);return c},intersectObjects:function(a,b,c){c=c||[];if(!1===Array.isArray(a))return console.warn("THREE.Raycaster.intersectObjects: objects is not an Array."),c;for(var d=0,e=a.length;dthis.max.x||a.ythis.max.y?!1:!0},containsBox:function(a){return this.min.x<=a.min.x&&a.max.x<=this.max.x&&this.min.y<=a.min.y&&a.max.y<=this.max.y},getParameter:function(a,b){void 0===b&&(console.warn("THREE.Box2: .getParameter() target is now required"),b=new z); +return b.set((a.x-this.min.x)/(this.max.x-this.min.x),(a.y-this.min.y)/(this.max.y-this.min.y))},intersectsBox:function(a){return a.max.xthis.max.x||a.max.ythis.max.y?!1:!0},clampPoint:function(a,b){void 0===b&&(console.warn("THREE.Box2: .clampPoint() target is now required"),b=new z);return b.copy(a).clamp(this.min,this.max)},distanceToPoint:function(){var a=new z;return function(b){return a.copy(b).clamp(this.min,this.max).sub(b).length()}}(),intersect:function(a){this.min.max(a.min); +this.max.min(a.max);return this},union:function(a){this.min.min(a.min);this.max.max(a.max);return this},translate:function(a){this.min.add(a);this.max.add(a);return this},equals:function(a){return a.min.equals(this.min)&&a.max.equals(this.max)}});Object.assign(Ce.prototype,{set:function(a,b){this.start.copy(a);this.end.copy(b);return this},clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.start.copy(a.start);this.end.copy(a.end);return this},getCenter:function(a){void 0=== a&&(console.warn("THREE.Line3: .getCenter() target is now required"),a=new p);return a.addVectors(this.start,this.end).multiplyScalar(.5)},delta:function(a){void 0===a&&(console.warn("THREE.Line3: .delta() target is now required"),a=new p);return a.subVectors(this.end,this.start)},distanceSq:function(){return this.start.distanceToSquared(this.end)},distance:function(){return this.start.distanceTo(this.end)},at:function(a,b){void 0===b&&(console.warn("THREE.Line3: .at() target is now required"),b= -new p);return this.delta(b).multiplyScalar(a).add(this.start)},closestPointToPointParameter:function(){var a=new p,b=new p;return function(c,d){a.subVectors(c,this.start);b.subVectors(this.end,this.start);c=b.dot(b);c=b.dot(a)/c;d&&(c=S.clamp(c,0,1));return c}}(),closestPointToPoint:function(a,b,c){a=this.closestPointToPointParameter(a,b);void 0===c&&(console.warn("THREE.Line3: .closestPointToPoint() target is now required"),c=new p);return this.delta(c).multiplyScalar(a).add(this.start)},applyMatrix4:function(a){this.start.applyMatrix4(a); -this.end.applyMatrix4(a);return this},equals:function(a){return a.start.equals(this.start)&&a.end.equals(this.end)}});jd.prototype=Object.create(C.prototype);jd.prototype.constructor=jd;jd.prototype.isImmediateRenderObject=!0;kd.prototype=Object.create(W.prototype);kd.prototype.constructor=kd;kd.prototype.update=function(){var a=new p,b=new p,c=new oa;return function(){var d=["a","b","c"];this.object.updateMatrixWorld(!0);c.getNormalMatrix(this.object.matrixWorld);var e=this.object.matrixWorld,f= -this.geometry.attributes.position,g=this.object.geometry;if(g&&g.isGeometry)for(var h=g.vertices,k=g.faces,l=g=0,p=k.length;lMath.abs(b)&&(b=1E-8);this.scale.set(.5*this.size,.5*this.size,b);this.children[0].material.side=0>b?1:0;this.lookAt(this.plane.normal);C.prototype.updateMatrixWorld.call(this,a)};var Td,Ce;Hb.prototype=Object.create(C.prototype);Hb.prototype.constructor=Hb;Hb.prototype.setDirection=function(){var a=new p,b;return function(c){.99999c.y?this.quaternion.set(1,0,0,0):(a.set(c.z,0,-c.x).normalize(), -b=Math.acos(c.y),this.quaternion.setFromAxisAngle(a,b))}}();Hb.prototype.setLength=function(a,b,c){void 0===b&&(b=.2*a);void 0===c&&(c=.2*b);this.line.scale.set(1,Math.max(0,a-b),1);this.line.updateMatrix();this.cone.scale.set(c,b,c);this.cone.position.y=a;this.cone.updateMatrix()};Hb.prototype.setColor=function(a){this.line.material.color.copy(a);this.cone.material.color.copy(a)};qd.prototype=Object.create(W.prototype);qd.prototype.constructor=qd;N.create=function(a,b){console.log("THREE.Curve.create() has been deprecated"); -a.prototype=Object.create(N.prototype);a.prototype.constructor=a;a.prototype.getPoint=b;return a};Object.assign(ab.prototype,{createPointsGeometry:function(a){console.warn("THREE.CurvePath: .createPointsGeometry() has been removed. Use new THREE.Geometry().setFromPoints( points ) instead.");a=this.getPoints(a);return this.createGeometry(a)},createSpacedPointsGeometry:function(a){console.warn("THREE.CurvePath: .createSpacedPointsGeometry() has been removed. Use new THREE.Geometry().setFromPoints( points ) instead."); -a=this.getSpacedPoints(a);return this.createGeometry(a)},createGeometry:function(a){console.warn("THREE.CurvePath: .createGeometry() has been removed. Use new THREE.Geometry().setFromPoints( points ) instead.");for(var b=new M,c=0,d=a.length;cMath.abs(b)&&(b=1E-8);this.scale.set(.5*this.size,.5*this.size,b);this.children[0].material.side=0>b?1:0;this.lookAt(this.plane.normal);D.prototype.updateMatrixWorld.call(this,a)};var Td,De;cb.prototype=Object.create(D.prototype);cb.prototype.constructor=cb;cb.prototype.setDirection= +function(){var a=new p,b;return function(c){.99999c.y?this.quaternion.set(1,0,0,0):(a.set(c.z,0,-c.x).normalize(),b=Math.acos(c.y),this.quaternion.setFromAxisAngle(a,b))}}();cb.prototype.setLength=function(a,b,c){void 0===b&&(b=.2*a);void 0===c&&(c=.2*b);this.line.scale.set(1,Math.max(0,a-b),1);this.line.updateMatrix();this.cone.scale.set(c,b,c);this.cone.position.y=a;this.cone.updateMatrix()};cb.prototype.setColor=function(a){this.line.material.color.copy(a); +this.cone.material.color.copy(a)};cb.prototype.copy=function(a){D.prototype.copy.call(this,a,!1);this.line.copy(a.line);this.cone.copy(a.cone);return this};cb.prototype.clone=function(){return(new this.constructor).copy(this)};qd.prototype=Object.create(S.prototype);qd.prototype.constructor=qd;Q.create=function(a,b){console.log("THREE.Curve.create() has been deprecated");a.prototype=Object.create(Q.prototype);a.prototype.constructor=a;a.prototype.getPoint=b;return a};Object.assign(ab.prototype,{createPointsGeometry:function(a){console.warn("THREE.CurvePath: .createPointsGeometry() has been removed. Use new THREE.Geometry().setFromPoints( points ) instead."); +a=this.getPoints(a);return this.createGeometry(a)},createSpacedPointsGeometry:function(a){console.warn("THREE.CurvePath: .createSpacedPointsGeometry() has been removed. Use new THREE.Geometry().setFromPoints( points ) instead.");a=this.getSpacedPoints(a);return this.createGeometry(a)},createGeometry:function(a){console.warn("THREE.CurvePath: .createGeometry() has been removed. Use new THREE.Geometry().setFromPoints( points ) instead.");for(var b=new I,c=0,d=a.length;c\n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\t#include \n\t#ifdef USE_DISPLACEMENTMAP\n\t\t#include \n\t\t#include \n\t\t#include \n\t#endif\n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\tvWorldPosition = worldPosition.xyz;\n}\n"; -var equirect_frag = "uniform sampler2D tEquirect;\nvarying vec3 vWorldPosition;\n#include \nvoid main() {\n\tvec3 direction = normalize( vWorldPosition );\n\tvec2 sampleUV;\n\tsampleUV.y = asin( clamp( direction.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5;\n\tsampleUV.x = atan( direction.z, direction.x ) * RECIPROCAL_PI2 + 0.5;\n\tgl_FragColor = texture2D( tEquirect, sampleUV );\n}\n"; +var equirect_frag = "uniform sampler2D tEquirect;\nvarying vec3 vWorldDirection;\n#include \nvoid main() {\n\tvec3 direction = normalize( vWorldDirection );\n\tvec2 sampleUV;\n\tsampleUV.y = asin( clamp( direction.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5;\n\tsampleUV.x = atan( direction.z, direction.x ) * RECIPROCAL_PI2 + 0.5;\n\tgl_FragColor = texture2D( tEquirect, sampleUV );\n}\n"; -var equirect_vert = "varying vec3 vWorldPosition;\n#include \nvoid main() {\n\tvWorldPosition = transformDirection( position, modelMatrix );\n\t#include \n\t#include \n}\n"; +var equirect_vert = "varying vec3 vWorldDirection;\n#include \nvoid main() {\n\tvWorldDirection = transformDirection( position, modelMatrix );\n\t#include \n\t#include \n}\n"; var linedashed_frag = "uniform vec3 diffuse;\nuniform float opacity;\nuniform float dashSize;\nuniform float totalSize;\nvarying float vLineDistance;\n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\tif ( mod( vLineDistance, totalSize ) > dashSize ) {\n\t\tdiscard;\n\t}\n\tvec3 outgoingLight = vec3( 0.0 );\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include \n\t#include \n\toutgoingLight = diffuseColor.rgb;\n\tgl_FragColor = vec4( outgoingLight, diffuseColor.a );\n\t#include \n\t#include \n\t#include \n\t#include \n}\n"; @@ -7545,7 +7545,7 @@ function WebGLAttributes( gl ) { function createBuffer( attribute, bufferType ) { var array = attribute.array; - var usage = attribute.dynamic ? gl.DYNAMIC_DRAW : gl.STATIC_DRAW; + var usage = attribute.dynamic ? 35048 : 35044; var buffer = gl.createBuffer(); @@ -7554,11 +7554,11 @@ function WebGLAttributes( gl ) { attribute.onUploadCallback(); - var type = gl.FLOAT; + var type = 5126; if ( array instanceof Float32Array ) { - type = gl.FLOAT; + type = 5126; } else if ( array instanceof Float64Array ) { @@ -7566,27 +7566,27 @@ function WebGLAttributes( gl ) { } else if ( array instanceof Uint16Array ) { - type = gl.UNSIGNED_SHORT; + type = 5123; } else if ( array instanceof Int16Array ) { - type = gl.SHORT; + type = 5122; } else if ( array instanceof Uint32Array ) { - type = gl.UNSIGNED_INT; + type = 5125; } else if ( array instanceof Int32Array ) { - type = gl.INT; + type = 5124; } else if ( array instanceof Int8Array ) { - type = gl.BYTE; + type = 5120; } else if ( array instanceof Uint8Array ) { - type = gl.UNSIGNED_BYTE; + type = 5121; } @@ -7608,7 +7608,7 @@ function WebGLAttributes( gl ) { if ( attribute.dynamic === false ) { - gl.bufferData( bufferType, array, gl.STATIC_DRAW ); + gl.bufferData( bufferType, array, 35044 ); } else if ( updateRange.count === - 1 ) { @@ -8180,18 +8180,22 @@ function Object3D() { Object.defineProperties( this, { position: { + configurable: true, enumerable: true, value: position }, rotation: { + configurable: true, enumerable: true, value: rotation }, quaternion: { + configurable: true, enumerable: true, value: quaternion }, scale: { + configurable: true, enumerable: true, value: scale }, @@ -9230,35 +9234,13 @@ Geometry.prototype = Object.assign( Object.create( EventDispatcher.prototype ), if ( uvs2 !== undefined ) this.faceVertexUvs[ 1 ] = []; - var tempNormals = []; - var tempUVs = []; - var tempUVs2 = []; - for ( var i = 0, j = 0; i < positions.length; i += 3, j += 2 ) { - scope.vertices.push( new Vector3( positions[ i ], positions[ i + 1 ], positions[ i + 2 ] ) ); - - if ( normals !== undefined ) { - - tempNormals.push( new Vector3( normals[ i ], normals[ i + 1 ], normals[ i + 2 ] ) ); - - } + scope.vertices.push( new Vector3().fromArray( positions, i ) ); if ( colors !== undefined ) { - scope.colors.push( new Color( colors[ i ], colors[ i + 1 ], colors[ i + 2 ] ) ); - - } - - if ( uvs !== undefined ) { - - tempUVs.push( new Vector2( uvs[ j ], uvs[ j + 1 ] ) ); - - } - - if ( uvs2 !== undefined ) { - - tempUVs2.push( new Vector2( uvs2[ j ], uvs2[ j + 1 ] ) ); + scope.colors.push( new Color().fromArray( colors, i ) ); } @@ -9266,8 +9248,16 @@ Geometry.prototype = Object.assign( Object.create( EventDispatcher.prototype ), function addFace( a, b, c, materialIndex ) { - var vertexNormals = normals !== undefined ? [ tempNormals[ a ].clone(), tempNormals[ b ].clone(), tempNormals[ c ].clone() ] : []; - var vertexColors = colors !== undefined ? [ scope.colors[ a ].clone(), scope.colors[ b ].clone(), scope.colors[ c ].clone() ] : []; + var vertexColors = ( colors === undefined ) ? [] : [ + scope.colors[ a ].clone(), + scope.colors[ b ].clone(), + scope.colors[ c ].clone() ]; + + var vertexNormals = ( normals === undefined ) ? [] : [ + new Vector3().fromArray( normals, a * 3 ), + new Vector3().fromArray( normals, b * 3 ), + new Vector3().fromArray( normals, c * 3 ) + ]; var face = new Face3( a, b, c, vertexNormals, vertexColors, materialIndex ); @@ -9275,13 +9265,21 @@ Geometry.prototype = Object.assign( Object.create( EventDispatcher.prototype ), if ( uvs !== undefined ) { - scope.faceVertexUvs[ 0 ].push( [ tempUVs[ a ].clone(), tempUVs[ b ].clone(), tempUVs[ c ].clone() ] ); + scope.faceVertexUvs[ 0 ].push( [ + new Vector2().fromArray( uvs, a * 2 ), + new Vector2().fromArray( uvs, b * 2 ), + new Vector2().fromArray( uvs, c * 2 ) + ] ); } if ( uvs2 !== undefined ) { - scope.faceVertexUvs[ 1 ].push( [ tempUVs2[ a ].clone(), tempUVs2[ b ].clone(), tempUVs2[ c ].clone() ] ); + scope.faceVertexUvs[ 1 ].push( [ + new Vector2().fromArray( uvs2, a * 2 ), + new Vector2().fromArray( uvs2, b * 2 ), + new Vector2().fromArray( uvs2, c * 2 ) + ] ); } @@ -12628,8 +12626,6 @@ function Material() { this.alphaTest = 0; this.premultipliedAlpha = false; - this.overdraw = 0; // Overdrawn pixels (typically between 0 and 1) for fixing antialiasing gaps in CanvasRenderer - this.visible = true; this.userData = {}; @@ -12687,11 +12683,6 @@ Material.prototype = Object.assign( Object.create( EventDispatcher.prototype ), currentValue.copy( newValue ); - } else if ( key === 'overdraw' ) { - - // ensure overdraw is backwards-compatible with legacy boolean type - this[ key ] = Number( newValue ); - } else { this[ key ] = newValue; @@ -12918,8 +12909,6 @@ Material.prototype = Object.assign( Object.create( EventDispatcher.prototype ), this.alphaTest = source.alphaTest; this.premultipliedAlpha = source.premultipliedAlpha; - this.overdraw = source.overdraw; - this.visible = source.visible; this.userData = JSON.parse( JSON.stringify( source.userData ) ); @@ -14622,7 +14611,7 @@ function WebGLBackground( renderer, state, objects, premultipliedAlpha ) { } - if ( background && background.isCubeTexture ) { + if ( background && ( background.isCubeTexture || background.isWebGLRenderTargetCube ) ) { if ( boxMesh === undefined ) { @@ -14652,8 +14641,10 @@ function WebGLBackground( renderer, state, objects, premultipliedAlpha ) { } - boxMesh.material.uniforms.tCube.value = background; + boxMesh.material.uniforms.tCube.value = ( background.isWebGLRenderTargetCube ) ? background.texture : background; + boxMesh.material.uniforms.tFlip.value = ( background.isWebGLRenderTargetCube ) ? 1 : - 1; + // push to the pre-sorted opaque render list renderList.push( boxMesh, boxMesh.geometry, boxMesh.material, 0, null ); } else if ( background && background.isTexture ) { @@ -14681,6 +14672,7 @@ function WebGLBackground( renderer, state, objects, premultipliedAlpha ) { planeMesh.material.uniforms.t2D.value = background; + // push to the pre-sorted opaque render list renderList.push( planeMesh, planeMesh.geometry, planeMesh.material, 0, null ); } @@ -14813,8 +14805,8 @@ function WebGLCapabilities( gl, extensions, parameters ) { if ( precision === 'highp' ) { - if ( gl.getShaderPrecisionFormat( gl.VERTEX_SHADER, gl.HIGH_FLOAT ).precision > 0 && - gl.getShaderPrecisionFormat( gl.FRAGMENT_SHADER, gl.HIGH_FLOAT ).precision > 0 ) { + if ( gl.getShaderPrecisionFormat( 35633, 36338 ).precision > 0 && + gl.getShaderPrecisionFormat( 35632, 36338 ).precision > 0 ) { return 'highp'; @@ -14826,8 +14818,8 @@ function WebGLCapabilities( gl, extensions, parameters ) { if ( precision === 'mediump' ) { - if ( gl.getShaderPrecisionFormat( gl.VERTEX_SHADER, gl.MEDIUM_FLOAT ).precision > 0 && - gl.getShaderPrecisionFormat( gl.FRAGMENT_SHADER, gl.MEDIUM_FLOAT ).precision > 0 ) { + if ( gl.getShaderPrecisionFormat( 35633, 36337 ).precision > 0 && + gl.getShaderPrecisionFormat( 35632, 36337 ).precision > 0 ) { return 'mediump'; @@ -14853,15 +14845,15 @@ function WebGLCapabilities( gl, extensions, parameters ) { var logarithmicDepthBuffer = parameters.logarithmicDepthBuffer === true; - var maxTextures = gl.getParameter( gl.MAX_TEXTURE_IMAGE_UNITS ); - var maxVertexTextures = gl.getParameter( gl.MAX_VERTEX_TEXTURE_IMAGE_UNITS ); - var maxTextureSize = gl.getParameter( gl.MAX_TEXTURE_SIZE ); - var maxCubemapSize = gl.getParameter( gl.MAX_CUBE_MAP_TEXTURE_SIZE ); + var maxTextures = gl.getParameter( 34930 ); + var maxVertexTextures = gl.getParameter( 35660 ); + var maxTextureSize = gl.getParameter( 3379 ); + var maxCubemapSize = gl.getParameter( 34076 ); - var maxAttributes = gl.getParameter( gl.MAX_VERTEX_ATTRIBS ); - var maxVertexUniforms = gl.getParameter( gl.MAX_VERTEX_UNIFORM_VECTORS ); - var maxVaryings = gl.getParameter( gl.MAX_VARYING_VECTORS ); - var maxFragmentUniforms = gl.getParameter( gl.MAX_FRAGMENT_UNIFORM_VECTORS ); + var maxAttributes = gl.getParameter( 34921 ); + var maxVertexUniforms = gl.getParameter( 36347 ); + var maxVaryings = gl.getParameter( 36348 ); + var maxFragmentUniforms = gl.getParameter( 36349 ); var vertexTextures = maxVertexTextures > 0; var floatFragmentTextures = isWebGL2 || !! extensions.get( 'OES_texture_float' ); @@ -15197,13 +15189,13 @@ function WebGLGeometries( gl, attributes, info ) { if ( index !== null ) { - attributes.update( index, gl.ELEMENT_ARRAY_BUFFER ); + attributes.update( index, 34963 ); } for ( var name in geometryAttributes ) { - attributes.update( geometryAttributes[ name ], gl.ARRAY_BUFFER ); + attributes.update( geometryAttributes[ name ], 34962 ); } @@ -15217,7 +15209,7 @@ function WebGLGeometries( gl, attributes, info ) { for ( var i = 0, l = array.length; i < l; i ++ ) { - attributes.update( array[ i ], gl.ARRAY_BUFFER ); + attributes.update( array[ i ], 34962 ); } @@ -15272,7 +15264,7 @@ function WebGLGeometries( gl, attributes, info ) { attribute = new ( arrayMax( indices ) > 65535 ? Uint32BufferAttribute : Uint16BufferAttribute )( indices, 1 ); - attributes.update( attribute, gl.ELEMENT_ARRAY_BUFFER ); + attributes.update( attribute, 34963 ); wireframeAttributes[ geometry.id ] = attribute; @@ -15385,28 +15377,28 @@ function WebGLInfo( gl ) { switch ( mode ) { - case gl.TRIANGLES: + case 4: render.triangles += instanceCount * ( count / 3 ); break; - case gl.TRIANGLE_STRIP: - case gl.TRIANGLE_FAN: + case 5: + case 6: render.triangles += instanceCount * ( count - 2 ); break; - case gl.LINES: + case 1: render.lines += instanceCount * ( count / 2 ); break; - case gl.LINE_STRIP: + case 3: render.lines += instanceCount * ( count - 1 ); break; - case gl.LINE_LOOP: + case 2: render.lines += instanceCount * count; break; - case gl.POINTS: + case 0: render.points += instanceCount * count; break; @@ -16470,7 +16462,7 @@ function WebGLUniforms( gl, program, renderer ) { this.renderer = renderer; - var n = gl.getProgramParameter( program, gl.ACTIVE_UNIFORMS ); + var n = gl.getProgramParameter( program, 35718 ); for ( var i = 0; i < n; ++ i ) { @@ -16560,7 +16552,7 @@ function WebGLShader( gl, type, string ) { gl.shaderSource( shader, string ); gl.compileShader( shader ); - if ( gl.getShaderParameter( shader, gl.COMPILE_STATUS ) === false ) { + if ( gl.getShaderParameter( shader, 35713 ) === false ) { console.error( 'THREE.WebGLShader: Shader couldn\'t compile.' ); @@ -16568,7 +16560,7 @@ function WebGLShader( gl, type, string ) { if ( gl.getShaderInfoLog( shader ) !== '' ) { - console.warn( 'THREE.WebGLShader: gl.getShaderInfoLog()', type === gl.VERTEX_SHADER ? 'vertex' : 'fragment', gl.getShaderInfoLog( shader ), addLineNumbers( string ) ); + console.warn( 'THREE.WebGLShader: gl.getShaderInfoLog()', type === 35633 ? 'vertex' : 'fragment', gl.getShaderInfoLog( shader ), addLineNumbers( string ) ); } @@ -16692,7 +16684,7 @@ function fetchAttributeLocations( gl, program ) { var attributes = {}; - var n = gl.getProgramParameter( program, gl.ACTIVE_ATTRIBUTES ); + var n = gl.getProgramParameter( program, 35721 ); for ( var i = 0; i < n; i ++ ) { @@ -17144,8 +17136,8 @@ function WebGLProgram( renderer, extensions, code, material, shader, parameters, // console.log( '*VERTEX*', vertexGlsl ); // console.log( '*FRAGMENT*', fragmentGlsl ); - var glVertexShader = WebGLShader( gl, gl.VERTEX_SHADER, vertexGlsl ); - var glFragmentShader = WebGLShader( gl, gl.FRAGMENT_SHADER, fragmentGlsl ); + var glVertexShader = WebGLShader( gl, 35633, vertexGlsl ); + var glFragmentShader = WebGLShader( gl, 35632, fragmentGlsl ); gl.attachShader( program, glVertexShader ); gl.attachShader( program, glFragmentShader ); @@ -17175,11 +17167,11 @@ function WebGLProgram( renderer, extensions, code, material, shader, parameters, // console.log( '**VERTEX**', gl.getExtension( 'WEBGL_debug_shaders' ).getTranslatedShaderSource( glVertexShader ) ); // console.log( '**FRAGMENT**', gl.getExtension( 'WEBGL_debug_shaders' ).getTranslatedShaderSource( glFragmentShader ) ); - if ( gl.getProgramParameter( program, gl.LINK_STATUS ) === false ) { + if ( gl.getProgramParameter( program, 35714 ) === false ) { runnable = false; - console.error( 'THREE.WebGLProgram: shader error: ', gl.getError(), 'gl.VALIDATE_STATUS', gl.getProgramParameter( program, gl.VALIDATE_STATUS ), 'gl.getProgramInfoLog', programLog, vertexLog, fragmentLog ); + console.error( 'THREE.WebGLProgram: shader error: ', gl.getError(), '35715', gl.getProgramParameter( program, 35715 ), 'gl.getProgramInfoLog', programLog, vertexLog, fragmentLog ); } else if ( programLog !== '' ) { @@ -17552,6 +17544,8 @@ function WebGLPrograms( renderer, extensions, capabilities ) { array.push( renderer.gammaOutput ); + array.push( renderer.gammaFactor ); + return array.join(); }; @@ -18512,7 +18506,7 @@ function WebGLShadowMap( _renderer, _objects, maxTextureSize ) { var _state = _renderer.state; // Set GL state for depth map. - _state.disable( _gl.BLEND ); + _state.disable( 3042 ); _state.buffers.color.setClear( 1, 1, 1, 1 ); _state.buffers.depth.setTest( true ); _state.setScissorTest( false ); @@ -18912,11 +18906,11 @@ function WebGLState( gl, extensions, utils, capabilities ) { if ( depthTest ) { - enable( gl.DEPTH_TEST ); + enable( 2929 ); } else { - disable( gl.DEPTH_TEST ); + disable( 2929 ); } @@ -18943,53 +18937,53 @@ function WebGLState( gl, extensions, utils, capabilities ) { case NeverDepth: - gl.depthFunc( gl.NEVER ); + gl.depthFunc( 512 ); break; case AlwaysDepth: - gl.depthFunc( gl.ALWAYS ); + gl.depthFunc( 519 ); break; case LessDepth: - gl.depthFunc( gl.LESS ); + gl.depthFunc( 513 ); break; case LessEqualDepth: - gl.depthFunc( gl.LEQUAL ); + gl.depthFunc( 515 ); break; case EqualDepth: - gl.depthFunc( gl.EQUAL ); + gl.depthFunc( 514 ); break; case GreaterEqualDepth: - gl.depthFunc( gl.GEQUAL ); + gl.depthFunc( 518 ); break; case GreaterDepth: - gl.depthFunc( gl.GREATER ); + gl.depthFunc( 516 ); break; case NotEqualDepth: - gl.depthFunc( gl.NOTEQUAL ); + gl.depthFunc( 517 ); break; default: - gl.depthFunc( gl.LEQUAL ); + gl.depthFunc( 515 ); } } else { - gl.depthFunc( gl.LEQUAL ); + gl.depthFunc( 515 ); } @@ -19049,11 +19043,11 @@ function WebGLState( gl, extensions, utils, capabilities ) { if ( stencilTest ) { - enable( gl.STENCIL_TEST ); + enable( 2960 ); } else { - disable( gl.STENCIL_TEST ); + disable( 2960 ); } @@ -19144,7 +19138,7 @@ function WebGLState( gl, extensions, utils, capabilities ) { var depthBuffer = new DepthBuffer(); var stencilBuffer = new StencilBuffer(); - var maxVertexAttributes = gl.getParameter( gl.MAX_VERTEX_ATTRIBS ); + var maxVertexAttributes = gl.getParameter( 34921 ); var newAttributes = new Uint8Array( maxVertexAttributes ); var enabledAttributes = new Uint8Array( maxVertexAttributes ); var attributeDivisors = new Uint8Array( maxVertexAttributes ); @@ -19173,11 +19167,11 @@ function WebGLState( gl, extensions, utils, capabilities ) { var currentPolygonOffsetFactor = null; var currentPolygonOffsetUnits = null; - var maxTextures = gl.getParameter( gl.MAX_COMBINED_TEXTURE_IMAGE_UNITS ); + var maxTextures = gl.getParameter( 35661 ); var lineWidthAvailable = false; var version = 0; - var glVersion = gl.getParameter( gl.VERSION ); + var glVersion = gl.getParameter( 7938 ); if ( glVersion.indexOf( 'WebGL' ) !== - 1 ) { @@ -19203,12 +19197,12 @@ function WebGLState( gl, extensions, utils, capabilities ) { var texture = gl.createTexture(); gl.bindTexture( type, texture ); - gl.texParameteri( type, gl.TEXTURE_MIN_FILTER, gl.NEAREST ); - gl.texParameteri( type, gl.TEXTURE_MAG_FILTER, gl.NEAREST ); + gl.texParameteri( type, 10241, 9728 ); + gl.texParameteri( type, 10240, 9728 ); for ( var i = 0; i < count; i ++ ) { - gl.texImage2D( target + i, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, data ); + gl.texImage2D( target + i, 0, 6408, 1, 1, 0, 6408, 5121, data ); } @@ -19217,8 +19211,8 @@ function WebGLState( gl, extensions, utils, capabilities ) { } var emptyTextures = {}; - emptyTextures[ gl.TEXTURE_2D ] = createTexture( gl.TEXTURE_2D, gl.TEXTURE_2D, 1 ); - emptyTextures[ gl.TEXTURE_CUBE_MAP ] = createTexture( gl.TEXTURE_CUBE_MAP, gl.TEXTURE_CUBE_MAP_POSITIVE_X, 6 ); + emptyTextures[ 3553 ] = createTexture( 3553, 3553, 1 ); + emptyTextures[ 34067 ] = createTexture( 34067, 34069, 6 ); // init @@ -19226,12 +19220,12 @@ function WebGLState( gl, extensions, utils, capabilities ) { depthBuffer.setClear( 1 ); stencilBuffer.setClear( 0 ); - enable( gl.DEPTH_TEST ); + enable( 2929 ); depthBuffer.setFunc( LessEqualDepth ); setFlipSided( false ); setCullFace( CullFaceBack ); - enable( gl.CULL_FACE ); + enable( 2884 ); setBlending( NoBlending ); @@ -19323,7 +19317,7 @@ function WebGLState( gl, extensions, utils, capabilities ) { extensions.get( 'WEBGL_compressed_texture_etc1' ) || extensions.get( 'WEBGL_compressed_texture_astc' ) ) { - var formats = gl.getParameter( gl.COMPRESSED_TEXTURE_FORMATS ); + var formats = gl.getParameter( 34467 ); for ( var i = 0; i < formats.length; i ++ ) { @@ -19361,7 +19355,7 @@ function WebGLState( gl, extensions, utils, capabilities ) { if ( currentBlendingEnabled ) { - disable( gl.BLEND ); + disable( 3042 ); currentBlendingEnabled = false; } @@ -19372,7 +19366,7 @@ function WebGLState( gl, extensions, utils, capabilities ) { if ( ! currentBlendingEnabled ) { - enable( gl.BLEND ); + enable( 3042 ); currentBlendingEnabled = true; } @@ -19383,7 +19377,7 @@ function WebGLState( gl, extensions, utils, capabilities ) { if ( currentBlendEquation !== AddEquation || currentBlendEquationAlpha !== AddEquation ) { - gl.blendEquation( gl.FUNC_ADD ); + gl.blendEquation( 32774 ); currentBlendEquation = AddEquation; currentBlendEquationAlpha = AddEquation; @@ -19395,19 +19389,19 @@ function WebGLState( gl, extensions, utils, capabilities ) { switch ( blending ) { case NormalBlending: - gl.blendFuncSeparate( gl.ONE, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA ); + gl.blendFuncSeparate( 1, 771, 1, 771 ); break; case AdditiveBlending: - gl.blendFunc( gl.ONE, gl.ONE ); + gl.blendFunc( 1, 1 ); break; case SubtractiveBlending: - gl.blendFuncSeparate( gl.ZERO, gl.ZERO, gl.ONE_MINUS_SRC_COLOR, gl.ONE_MINUS_SRC_ALPHA ); + gl.blendFuncSeparate( 0, 0, 769, 771 ); break; case MultiplyBlending: - gl.blendFuncSeparate( gl.ZERO, gl.SRC_COLOR, gl.ZERO, gl.SRC_ALPHA ); + gl.blendFuncSeparate( 0, 768, 0, 770 ); break; default: @@ -19421,19 +19415,19 @@ function WebGLState( gl, extensions, utils, capabilities ) { switch ( blending ) { case NormalBlending: - gl.blendFuncSeparate( gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA ); + gl.blendFuncSeparate( 770, 771, 1, 771 ); break; case AdditiveBlending: - gl.blendFunc( gl.SRC_ALPHA, gl.ONE ); + gl.blendFunc( 770, 1 ); break; case SubtractiveBlending: - gl.blendFunc( gl.ZERO, gl.ONE_MINUS_SRC_COLOR ); + gl.blendFunc( 0, 769 ); break; case MultiplyBlending: - gl.blendFunc( gl.ZERO, gl.SRC_COLOR ); + gl.blendFunc( 0, 768 ); break; default: @@ -19492,8 +19486,8 @@ function WebGLState( gl, extensions, utils, capabilities ) { function setMaterial( material, frontFaceCW ) { material.side === DoubleSide - ? disable( gl.CULL_FACE ) - : enable( gl.CULL_FACE ); + ? disable( 2884 ) + : enable( 2884 ); var flipSided = ( material.side === BackSide ); if ( frontFaceCW ) flipSided = ! flipSided; @@ -19521,11 +19515,11 @@ function WebGLState( gl, extensions, utils, capabilities ) { if ( flipSided ) { - gl.frontFace( gl.CW ); + gl.frontFace( 2304 ); } else { - gl.frontFace( gl.CCW ); + gl.frontFace( 2305 ); } @@ -19539,21 +19533,21 @@ function WebGLState( gl, extensions, utils, capabilities ) { if ( cullFace !== CullFaceNone ) { - enable( gl.CULL_FACE ); + enable( 2884 ); if ( cullFace !== currentCullFace ) { if ( cullFace === CullFaceBack ) { - gl.cullFace( gl.BACK ); + gl.cullFace( 1029 ); } else if ( cullFace === CullFaceFront ) { - gl.cullFace( gl.FRONT ); + gl.cullFace( 1028 ); } else { - gl.cullFace( gl.FRONT_AND_BACK ); + gl.cullFace( 1032 ); } @@ -19561,7 +19555,7 @@ function WebGLState( gl, extensions, utils, capabilities ) { } else { - disable( gl.CULL_FACE ); + disable( 2884 ); } @@ -19585,7 +19579,7 @@ function WebGLState( gl, extensions, utils, capabilities ) { if ( polygonOffset ) { - enable( gl.POLYGON_OFFSET_FILL ); + enable( 32823 ); if ( currentPolygonOffsetFactor !== factor || currentPolygonOffsetUnits !== units ) { @@ -19598,7 +19592,7 @@ function WebGLState( gl, extensions, utils, capabilities ) { } else { - disable( gl.POLYGON_OFFSET_FILL ); + disable( 32823 ); } @@ -19608,11 +19602,11 @@ function WebGLState( gl, extensions, utils, capabilities ) { if ( scissorTest ) { - enable( gl.SCISSOR_TEST ); + enable( 3089 ); } else { - disable( gl.SCISSOR_TEST ); + disable( 3089 ); } @@ -19622,7 +19616,7 @@ function WebGLState( gl, extensions, utils, capabilities ) { function activeTexture( webglSlot ) { - if ( webglSlot === undefined ) webglSlot = gl.TEXTURE0 + maxTextures - 1; + if ( webglSlot === undefined ) webglSlot = 33984 + maxTextures - 1; if ( currentTextureSlot !== webglSlot ) { @@ -19909,27 +19903,27 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, if ( ! capabilities.isWebGL2 ) return glFormat; - if ( glFormat === _gl.RED ) { + if ( glFormat === 6403 ) { - if ( glType === _gl.FLOAT ) return _gl.R32F; - if ( glType === _gl.HALF_FLOAT ) return _gl.R16F; - if ( glType === _gl.UNSIGNED_BYTE ) return _gl.R8; + if ( glType === 5126 ) return 33326; + if ( glType === 5131 ) return 33325; + if ( glType === 5121 ) return 33321; } - if ( glFormat === _gl.RGB ) { + if ( glFormat === 6407 ) { - if ( glType === _gl.FLOAT ) return _gl.RGB32F; - if ( glType === _gl.HALF_FLOAT ) return _gl.RGB16F; - if ( glType === _gl.UNSIGNED_BYTE ) return _gl.RGB8; + if ( glType === 5126 ) return 34837; + if ( glType === 5131 ) return 34843; + if ( glType === 5121 ) return 32849; } - if ( glFormat === _gl.RGBA ) { + if ( glFormat === 6408 ) { - if ( glType === _gl.FLOAT ) return _gl.RGBA32F; - if ( glType === _gl.HALF_FLOAT ) return _gl.RGBA16F; - if ( glType === _gl.UNSIGNED_BYTE ) return _gl.RGBA8; + if ( glType === 5126 ) return 34836; + if ( glType === 5131 ) return 34842; + if ( glType === 5121 ) return 32856; } @@ -19943,11 +19937,11 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, if ( f === NearestFilter || f === NearestMipMapNearestFilter || f === NearestMipMapLinearFilter ) { - return _gl.NEAREST; + return 9728; } - return _gl.LINEAR; + return 9729; } @@ -20081,8 +20075,8 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } - state.activeTexture( _gl.TEXTURE0 + slot ); - state.bindTexture( _gl.TEXTURE_2D, textureProperties.__webglTexture ); + state.activeTexture( 33984 + slot ); + state.bindTexture( 3553, textureProperties.__webglTexture ); } @@ -20097,8 +20091,8 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } - state.activeTexture( _gl.TEXTURE0 + slot ); - state.bindTexture( _gl.TEXTURE_3D, textureProperties.__webglTexture ); + state.activeTexture( 33984 + slot ); + state.bindTexture( 32879, textureProperties.__webglTexture ); } @@ -20121,10 +20115,10 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } - state.activeTexture( _gl.TEXTURE0 + slot ); - state.bindTexture( _gl.TEXTURE_CUBE_MAP, textureProperties.__image__webglTextureCube ); + state.activeTexture( 33984 + slot ); + state.bindTexture( 34067, textureProperties.__image__webglTextureCube ); - _gl.pixelStorei( _gl.UNPACK_FLIP_Y_WEBGL, texture.flipY ); + _gl.pixelStorei( 37440, texture.flipY ); var isCompressed = ( texture && texture.isCompressedTexture ); var isDataTexture = ( texture.image[ 0 ] && texture.image[ 0 ].isDataTexture ); @@ -20151,7 +20145,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, glType = utils.convert( texture.type ), glInternalFormat = getInternalFormat( glFormat, glType ); - setTextureParameters( _gl.TEXTURE_CUBE_MAP, texture, isPowerOfTwoImage ); + setTextureParameters( 34067, texture, isPowerOfTwoImage ); for ( var i = 0; i < 6; i ++ ) { @@ -20159,11 +20153,11 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, if ( isDataTexture ) { - state.texImage2D( _gl.TEXTURE_CUBE_MAP_POSITIVE_X + i, 0, glInternalFormat, cubeImage[ i ].width, cubeImage[ i ].height, 0, glFormat, glType, cubeImage[ i ].data ); + state.texImage2D( 34069 + i, 0, glInternalFormat, cubeImage[ i ].width, cubeImage[ i ].height, 0, glFormat, glType, cubeImage[ i ].data ); } else { - state.texImage2D( _gl.TEXTURE_CUBE_MAP_POSITIVE_X + i, 0, glInternalFormat, glFormat, glType, cubeImage[ i ] ); + state.texImage2D( 34069 + i, 0, glInternalFormat, glFormat, glType, cubeImage[ i ] ); } @@ -20179,7 +20173,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, if ( state.getCompressedTextureFormats().indexOf( glFormat ) > - 1 ) { - state.compressedTexImage2D( _gl.TEXTURE_CUBE_MAP_POSITIVE_X + i, j, glInternalFormat, mipmap.width, mipmap.height, 0, mipmap.data ); + state.compressedTexImage2D( 34069 + i, j, glInternalFormat, mipmap.width, mipmap.height, 0, mipmap.data ); } else { @@ -20189,7 +20183,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } else { - state.texImage2D( _gl.TEXTURE_CUBE_MAP_POSITIVE_X + i, j, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data ); + state.texImage2D( 34069 + i, j, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data ); } @@ -20212,7 +20206,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, if ( textureNeedsGenerateMipmaps( texture, isPowerOfTwoImage ) ) { // We assume images for cube map have the same size. - generateMipmap( _gl.TEXTURE_CUBE_MAP, texture, image.width, image.height ); + generateMipmap( 34067, texture, image.width, image.height ); } @@ -20222,8 +20216,8 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } else { - state.activeTexture( _gl.TEXTURE0 + slot ); - state.bindTexture( _gl.TEXTURE_CUBE_MAP, textureProperties.__image__webglTextureCube ); + state.activeTexture( 33984 + slot ); + state.bindTexture( 34067, textureProperties.__image__webglTextureCube ); } @@ -20233,8 +20227,8 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, function setTextureCubeDynamic( texture, slot ) { - state.activeTexture( _gl.TEXTURE0 + slot ); - state.bindTexture( _gl.TEXTURE_CUBE_MAP, properties.get( texture ).__webglTexture ); + state.activeTexture( 33984 + slot ); + state.bindTexture( 34067, properties.get( texture ).__webglTexture ); } @@ -20244,16 +20238,16 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, if ( isPowerOfTwoImage ) { - _gl.texParameteri( textureType, _gl.TEXTURE_WRAP_S, utils.convert( texture.wrapS ) ); - _gl.texParameteri( textureType, _gl.TEXTURE_WRAP_T, utils.convert( texture.wrapT ) ); + _gl.texParameteri( textureType, 10242, utils.convert( texture.wrapS ) ); + _gl.texParameteri( textureType, 10243, utils.convert( texture.wrapT ) ); - _gl.texParameteri( textureType, _gl.TEXTURE_MAG_FILTER, utils.convert( texture.magFilter ) ); - _gl.texParameteri( textureType, _gl.TEXTURE_MIN_FILTER, utils.convert( texture.minFilter ) ); + _gl.texParameteri( textureType, 10240, utils.convert( texture.magFilter ) ); + _gl.texParameteri( textureType, 10241, utils.convert( texture.minFilter ) ); } else { - _gl.texParameteri( textureType, _gl.TEXTURE_WRAP_S, _gl.CLAMP_TO_EDGE ); - _gl.texParameteri( textureType, _gl.TEXTURE_WRAP_T, _gl.CLAMP_TO_EDGE ); + _gl.texParameteri( textureType, 10242, 33071 ); + _gl.texParameteri( textureType, 10243, 33071 ); if ( texture.wrapS !== ClampToEdgeWrapping || texture.wrapT !== ClampToEdgeWrapping ) { @@ -20261,8 +20255,8 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } - _gl.texParameteri( textureType, _gl.TEXTURE_MAG_FILTER, filterFallback( texture.magFilter ) ); - _gl.texParameteri( textureType, _gl.TEXTURE_MIN_FILTER, filterFallback( texture.minFilter ) ); + _gl.texParameteri( textureType, 10240, filterFallback( texture.magFilter ) ); + _gl.texParameteri( textureType, 10241, filterFallback( texture.minFilter ) ); if ( texture.minFilter !== NearestFilter && texture.minFilter !== LinearFilter ) { @@ -20296,11 +20290,11 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, if ( texture.isDataTexture3D ) { - textureType = _gl.TEXTURE_3D; + textureType = 32879; } else { - textureType = _gl.TEXTURE_2D; + textureType = 3553; } @@ -20316,16 +20310,16 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, info.memory.textures ++; } - state.activeTexture( _gl.TEXTURE0 + slot ); + state.activeTexture( 33984 + slot ); state.bindTexture( textureType, textureProperties.__webglTexture ); - _gl.pixelStorei( _gl.UNPACK_FLIP_Y_WEBGL, texture.flipY ); - _gl.pixelStorei( _gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, texture.premultiplyAlpha ); - _gl.pixelStorei( _gl.UNPACK_ALIGNMENT, texture.unpackAlignment ); + _gl.pixelStorei( 37440, texture.flipY ); + _gl.pixelStorei( 37441, texture.premultiplyAlpha ); + _gl.pixelStorei( 3317, texture.unpackAlignment ); var image = clampToMaxSize( texture.image, capabilities.maxTextureSize ); @@ -20348,21 +20342,21 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, // populate depth texture with dummy data - glInternalFormat = _gl.DEPTH_COMPONENT; + glInternalFormat = 6402; if ( texture.type === FloatType ) { if ( ! capabilities.isWebGL2 ) throw new Error( 'Float Depth Texture only supported in WebGL2.0' ); - glInternalFormat = _gl.DEPTH_COMPONENT32F; + glInternalFormat = 36012; } else if ( capabilities.isWebGL2 ) { // WebGL 2.0 requires signed internalformat for glTexImage2D - glInternalFormat = _gl.DEPTH_COMPONENT16; + glInternalFormat = 33189; } - if ( texture.format === DepthFormat && glInternalFormat === _gl.DEPTH_COMPONENT ) { + if ( texture.format === DepthFormat && glInternalFormat === 6402 ) { // The error INVALID_OPERATION is generated by texImage2D if format and internalformat are // DEPTH_COMPONENT and type is not UNSIGNED_SHORT or UNSIGNED_INT @@ -20382,7 +20376,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, // (https://www.khronos.org/registry/webgl/extensions/WEBGL_depth_texture/) if ( texture.format === DepthStencilFormat ) { - glInternalFormat = _gl.DEPTH_STENCIL; + glInternalFormat = 34041; // The error INVALID_OPERATION is generated by texImage2D if format and internalformat are // DEPTH_STENCIL and type is not UNSIGNED_INT_24_8_WEBGL. @@ -20398,7 +20392,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } - state.texImage2D( _gl.TEXTURE_2D, 0, glInternalFormat, image.width, image.height, 0, glFormat, glType, null ); + state.texImage2D( 3553, 0, glInternalFormat, image.width, image.height, 0, glFormat, glType, null ); } else if ( texture.isDataTexture ) { @@ -20411,7 +20405,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, for ( var i = 0, il = mipmaps.length; i < il; i ++ ) { mipmap = mipmaps[ i ]; - state.texImage2D( _gl.TEXTURE_2D, i, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data ); + state.texImage2D( 3553, i, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data ); } @@ -20420,7 +20414,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } else { - state.texImage2D( _gl.TEXTURE_2D, 0, glInternalFormat, image.width, image.height, 0, glFormat, glType, image.data ); + state.texImage2D( 3553, 0, glInternalFormat, image.width, image.height, 0, glFormat, glType, image.data ); textureProperties.__maxMipLevel = 0; } @@ -20435,7 +20429,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, if ( state.getCompressedTextureFormats().indexOf( glFormat ) > - 1 ) { - state.compressedTexImage2D( _gl.TEXTURE_2D, i, glInternalFormat, mipmap.width, mipmap.height, 0, mipmap.data ); + state.compressedTexImage2D( 3553, i, glInternalFormat, mipmap.width, mipmap.height, 0, mipmap.data ); } else { @@ -20445,7 +20439,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } else { - state.texImage2D( _gl.TEXTURE_2D, i, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data ); + state.texImage2D( 3553, i, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data ); } @@ -20455,7 +20449,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } else if ( texture.isDataTexture3D ) { - state.texImage3D( _gl.TEXTURE_3D, 0, glInternalFormat, image.width, image.height, image.depth, 0, glFormat, glType, image.data ); + state.texImage3D( 32879, 0, glInternalFormat, image.width, image.height, image.depth, 0, glFormat, glType, image.data ); textureProperties.__maxMipLevel = 0; } else { @@ -20471,7 +20465,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, for ( var i = 0, il = mipmaps.length; i < il; i ++ ) { mipmap = mipmaps[ i ]; - state.texImage2D( _gl.TEXTURE_2D, i, glInternalFormat, glFormat, glType, mipmap ); + state.texImage2D( 3553, i, glInternalFormat, glFormat, glType, mipmap ); } @@ -20480,7 +20474,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } else { - state.texImage2D( _gl.TEXTURE_2D, 0, glInternalFormat, glFormat, glType, image ); + state.texImage2D( 3553, 0, glInternalFormat, glFormat, glType, image ); textureProperties.__maxMipLevel = 0; } @@ -20489,7 +20483,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, if ( textureNeedsGenerateMipmaps( texture, isPowerOfTwoImage ) ) { - generateMipmap( _gl.TEXTURE_2D, texture, image.width, image.height ); + generateMipmap( 3553, texture, image.width, image.height ); } @@ -20508,35 +20502,35 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, var glType = utils.convert( renderTarget.texture.type ); var glInternalFormat = getInternalFormat( glFormat, glType ); state.texImage2D( textureTarget, 0, glInternalFormat, renderTarget.width, renderTarget.height, 0, glFormat, glType, null ); - _gl.bindFramebuffer( _gl.FRAMEBUFFER, framebuffer ); - _gl.framebufferTexture2D( _gl.FRAMEBUFFER, attachment, textureTarget, properties.get( renderTarget.texture ).__webglTexture, 0 ); - _gl.bindFramebuffer( _gl.FRAMEBUFFER, null ); + _gl.bindFramebuffer( 36160, framebuffer ); + _gl.framebufferTexture2D( 36160, attachment, textureTarget, properties.get( renderTarget.texture ).__webglTexture, 0 ); + _gl.bindFramebuffer( 36160, null ); } // Setup storage for internal depth/stencil buffers and bind to correct framebuffer function setupRenderBufferStorage( renderbuffer, renderTarget ) { - _gl.bindRenderbuffer( _gl.RENDERBUFFER, renderbuffer ); + _gl.bindRenderbuffer( 36161, renderbuffer ); if ( renderTarget.depthBuffer && ! renderTarget.stencilBuffer ) { - _gl.renderbufferStorage( _gl.RENDERBUFFER, _gl.DEPTH_COMPONENT16, renderTarget.width, renderTarget.height ); - _gl.framebufferRenderbuffer( _gl.FRAMEBUFFER, _gl.DEPTH_ATTACHMENT, _gl.RENDERBUFFER, renderbuffer ); + _gl.renderbufferStorage( 36161, 33189, renderTarget.width, renderTarget.height ); + _gl.framebufferRenderbuffer( 36160, 36096, 36161, renderbuffer ); } else if ( renderTarget.depthBuffer && renderTarget.stencilBuffer ) { - _gl.renderbufferStorage( _gl.RENDERBUFFER, _gl.DEPTH_STENCIL, renderTarget.width, renderTarget.height ); - _gl.framebufferRenderbuffer( _gl.FRAMEBUFFER, _gl.DEPTH_STENCIL_ATTACHMENT, _gl.RENDERBUFFER, renderbuffer ); + _gl.renderbufferStorage( 36161, 34041, renderTarget.width, renderTarget.height ); + _gl.framebufferRenderbuffer( 36160, 33306, 36161, renderbuffer ); } else { // FIXME: We don't support !depth !stencil - _gl.renderbufferStorage( _gl.RENDERBUFFER, _gl.RGBA4, renderTarget.width, renderTarget.height ); + _gl.renderbufferStorage( 36161, 32854, renderTarget.width, renderTarget.height ); } - _gl.bindRenderbuffer( _gl.RENDERBUFFER, null ); + _gl.bindRenderbuffer( 36161, null ); } @@ -20546,7 +20540,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, var isCube = ( renderTarget && renderTarget.isWebGLRenderTargetCube ); if ( isCube ) throw new Error( 'Depth Texture with cube render targets is not supported' ); - _gl.bindFramebuffer( _gl.FRAMEBUFFER, framebuffer ); + _gl.bindFramebuffer( 36160, framebuffer ); if ( ! ( renderTarget.depthTexture && renderTarget.depthTexture.isDepthTexture ) ) { @@ -20571,11 +20565,11 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, if ( renderTarget.depthTexture.format === DepthFormat ) { - _gl.framebufferTexture2D( _gl.FRAMEBUFFER, _gl.DEPTH_ATTACHMENT, _gl.TEXTURE_2D, webglDepthTexture, 0 ); + _gl.framebufferTexture2D( 36160, 36096, 3553, webglDepthTexture, 0 ); } else if ( renderTarget.depthTexture.format === DepthStencilFormat ) { - _gl.framebufferTexture2D( _gl.FRAMEBUFFER, _gl.DEPTH_STENCIL_ATTACHMENT, _gl.TEXTURE_2D, webglDepthTexture, 0 ); + _gl.framebufferTexture2D( 36160, 33306, 3553, webglDepthTexture, 0 ); } else { @@ -20606,7 +20600,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, for ( var i = 0; i < 6; i ++ ) { - _gl.bindFramebuffer( _gl.FRAMEBUFFER, renderTargetProperties.__webglFramebuffer[ i ] ); + _gl.bindFramebuffer( 36160, renderTargetProperties.__webglFramebuffer[ i ] ); renderTargetProperties.__webglDepthbuffer[ i ] = _gl.createRenderbuffer(); setupRenderBufferStorage( renderTargetProperties.__webglDepthbuffer[ i ], renderTarget ); @@ -20614,7 +20608,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } else { - _gl.bindFramebuffer( _gl.FRAMEBUFFER, renderTargetProperties.__webglFramebuffer ); + _gl.bindFramebuffer( 36160, renderTargetProperties.__webglFramebuffer ); renderTargetProperties.__webglDepthbuffer = _gl.createRenderbuffer(); setupRenderBufferStorage( renderTargetProperties.__webglDepthbuffer, renderTarget ); @@ -20622,7 +20616,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, } - _gl.bindFramebuffer( _gl.FRAMEBUFFER, null ); + _gl.bindFramebuffer( 36160, null ); } @@ -20663,36 +20657,36 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, if ( isCube ) { - state.bindTexture( _gl.TEXTURE_CUBE_MAP, textureProperties.__webglTexture ); - setTextureParameters( _gl.TEXTURE_CUBE_MAP, renderTarget.texture, isTargetPowerOfTwo ); + state.bindTexture( 34067, textureProperties.__webglTexture ); + setTextureParameters( 34067, renderTarget.texture, isTargetPowerOfTwo ); for ( var i = 0; i < 6; i ++ ) { - setupFrameBufferTexture( renderTargetProperties.__webglFramebuffer[ i ], renderTarget, _gl.COLOR_ATTACHMENT0, _gl.TEXTURE_CUBE_MAP_POSITIVE_X + i ); + setupFrameBufferTexture( renderTargetProperties.__webglFramebuffer[ i ], renderTarget, 36064, 34069 + i ); } if ( textureNeedsGenerateMipmaps( renderTarget.texture, isTargetPowerOfTwo ) ) { - generateMipmap( _gl.TEXTURE_CUBE_MAP, renderTarget.texture, renderTarget.width, renderTarget.height ); + generateMipmap( 34067, renderTarget.texture, renderTarget.width, renderTarget.height ); } - state.bindTexture( _gl.TEXTURE_CUBE_MAP, null ); + state.bindTexture( 34067, null ); } else { - state.bindTexture( _gl.TEXTURE_2D, textureProperties.__webglTexture ); - setTextureParameters( _gl.TEXTURE_2D, renderTarget.texture, isTargetPowerOfTwo ); - setupFrameBufferTexture( renderTargetProperties.__webglFramebuffer, renderTarget, _gl.COLOR_ATTACHMENT0, _gl.TEXTURE_2D ); + state.bindTexture( 3553, textureProperties.__webglTexture ); + setTextureParameters( 3553, renderTarget.texture, isTargetPowerOfTwo ); + setupFrameBufferTexture( renderTargetProperties.__webglFramebuffer, renderTarget, 36064, 3553 ); if ( textureNeedsGenerateMipmaps( renderTarget.texture, isTargetPowerOfTwo ) ) { - generateMipmap( _gl.TEXTURE_2D, renderTarget.texture, renderTarget.width, renderTarget.height ); + generateMipmap( 3553, renderTarget.texture, renderTarget.width, renderTarget.height ); } - state.bindTexture( _gl.TEXTURE_2D, null ); + state.bindTexture( 3553, null ); } @@ -20713,7 +20707,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils, if ( textureNeedsGenerateMipmaps( texture, isTargetPowerOfTwo ) ) { - var target = renderTarget.isWebGLRenderTargetCube ? _gl.TEXTURE_CUBE_MAP : _gl.TEXTURE_2D; + var target = renderTarget.isWebGLRenderTargetCube ? 34067 : 3553; var webglTexture = properties.get( texture ).__webglTexture; state.bindTexture( target, webglTexture ); @@ -20759,33 +20753,33 @@ function WebGLUtils( gl, extensions, capabilities ) { var extension; - if ( p === RepeatWrapping ) return gl.REPEAT; - if ( p === ClampToEdgeWrapping ) return gl.CLAMP_TO_EDGE; - if ( p === MirroredRepeatWrapping ) return gl.MIRRORED_REPEAT; + if ( p === RepeatWrapping ) return 10497; + if ( p === ClampToEdgeWrapping ) return 33071; + if ( p === MirroredRepeatWrapping ) return 33648; - if ( p === NearestFilter ) return gl.NEAREST; - if ( p === NearestMipMapNearestFilter ) return gl.NEAREST_MIPMAP_NEAREST; - if ( p === NearestMipMapLinearFilter ) return gl.NEAREST_MIPMAP_LINEAR; + if ( p === NearestFilter ) return 9728; + if ( p === NearestMipMapNearestFilter ) return 9984; + if ( p === NearestMipMapLinearFilter ) return 9986; - if ( p === LinearFilter ) return gl.LINEAR; - if ( p === LinearMipMapNearestFilter ) return gl.LINEAR_MIPMAP_NEAREST; - if ( p === LinearMipMapLinearFilter ) return gl.LINEAR_MIPMAP_LINEAR; + if ( p === LinearFilter ) return 9729; + if ( p === LinearMipMapNearestFilter ) return 9985; + if ( p === LinearMipMapLinearFilter ) return 9987; - if ( p === UnsignedByteType ) return gl.UNSIGNED_BYTE; - if ( p === UnsignedShort4444Type ) return gl.UNSIGNED_SHORT_4_4_4_4; - if ( p === UnsignedShort5551Type ) return gl.UNSIGNED_SHORT_5_5_5_1; - if ( p === UnsignedShort565Type ) return gl.UNSIGNED_SHORT_5_6_5; + if ( p === UnsignedByteType ) return 5121; + if ( p === UnsignedShort4444Type ) return 32819; + if ( p === UnsignedShort5551Type ) return 32820; + if ( p === UnsignedShort565Type ) return 33635; - if ( p === ByteType ) return gl.BYTE; - if ( p === ShortType ) return gl.SHORT; - if ( p === UnsignedShortType ) return gl.UNSIGNED_SHORT; - if ( p === IntType ) return gl.INT; - if ( p === UnsignedIntType ) return gl.UNSIGNED_INT; - if ( p === FloatType ) return gl.FLOAT; + if ( p === ByteType ) return 5120; + if ( p === ShortType ) return 5122; + if ( p === UnsignedShortType ) return 5123; + if ( p === IntType ) return 5124; + if ( p === UnsignedIntType ) return 5125; + if ( p === FloatType ) return 5126; if ( p === HalfFloatType ) { - if ( capabilities.isWebGL2 ) return gl.HALF_FLOAT; + if ( capabilities.isWebGL2 ) return 5131; extension = extensions.get( 'OES_texture_half_float' ); @@ -20793,31 +20787,31 @@ function WebGLUtils( gl, extensions, capabilities ) { } - if ( p === AlphaFormat ) return gl.ALPHA; - if ( p === RGBFormat ) return gl.RGB; - if ( p === RGBAFormat ) return gl.RGBA; - if ( p === LuminanceFormat ) return gl.LUMINANCE; - if ( p === LuminanceAlphaFormat ) return gl.LUMINANCE_ALPHA; - if ( p === DepthFormat ) return gl.DEPTH_COMPONENT; - if ( p === DepthStencilFormat ) return gl.DEPTH_STENCIL; - if ( p === RedFormat ) return gl.RED; + if ( p === AlphaFormat ) return 6406; + if ( p === RGBFormat ) return 6407; + if ( p === RGBAFormat ) return 6408; + if ( p === LuminanceFormat ) return 6409; + if ( p === LuminanceAlphaFormat ) return 6410; + if ( p === DepthFormat ) return 6402; + if ( p === DepthStencilFormat ) return 34041; + if ( p === RedFormat ) return 6403; - if ( p === AddEquation ) return gl.FUNC_ADD; - if ( p === SubtractEquation ) return gl.FUNC_SUBTRACT; - if ( p === ReverseSubtractEquation ) return gl.FUNC_REVERSE_SUBTRACT; + if ( p === AddEquation ) return 32774; + if ( p === SubtractEquation ) return 32778; + if ( p === ReverseSubtractEquation ) return 32779; - if ( p === ZeroFactor ) return gl.ZERO; - if ( p === OneFactor ) return gl.ONE; - if ( p === SrcColorFactor ) return gl.SRC_COLOR; - if ( p === OneMinusSrcColorFactor ) return gl.ONE_MINUS_SRC_COLOR; - if ( p === SrcAlphaFactor ) return gl.SRC_ALPHA; - if ( p === OneMinusSrcAlphaFactor ) return gl.ONE_MINUS_SRC_ALPHA; - if ( p === DstAlphaFactor ) return gl.DST_ALPHA; - if ( p === OneMinusDstAlphaFactor ) return gl.ONE_MINUS_DST_ALPHA; + if ( p === ZeroFactor ) return 0; + if ( p === OneFactor ) return 1; + if ( p === SrcColorFactor ) return 768; + if ( p === OneMinusSrcColorFactor ) return 769; + if ( p === SrcAlphaFactor ) return 770; + if ( p === OneMinusSrcAlphaFactor ) return 771; + if ( p === DstAlphaFactor ) return 772; + if ( p === OneMinusDstAlphaFactor ) return 773; - if ( p === DstColorFactor ) return gl.DST_COLOR; - if ( p === OneMinusDstColorFactor ) return gl.ONE_MINUS_DST_COLOR; - if ( p === SrcAlphaSaturateFactor ) return gl.SRC_ALPHA_SATURATE; + if ( p === DstColorFactor ) return 774; + if ( p === OneMinusDstColorFactor ) return 775; + if ( p === SrcAlphaSaturateFactor ) return 776; if ( p === RGB_S3TC_DXT1_Format || p === RGBA_S3TC_DXT1_Format || p === RGBA_S3TC_DXT3_Format || p === RGBA_S3TC_DXT5_Format ) { @@ -20879,8 +20873,8 @@ function WebGLUtils( gl, extensions, capabilities ) { if ( capabilities.isWebGL2 ) { - if ( p === MinEquation ) return gl.MIN; - if ( p === MaxEquation ) return gl.MAX; + if ( p === MinEquation ) return 32775; + if ( p === MaxEquation ) return 32776; } @@ -20897,7 +20891,7 @@ function WebGLUtils( gl, extensions, capabilities ) { if ( p === UnsignedInt248Type ) { - if ( capabilities.isWebGL2 ) return gl.UNSIGNED_INT_24_8; + if ( capabilities.isWebGL2 ) return 34042; extension = extensions.get( 'WEBGL_depth_texture' ); @@ -21258,69 +21252,73 @@ ArrayCamera.prototype = Object.assign( Object.create( PerspectiveCamera.prototyp constructor: ArrayCamera, - isArrayCamera: true, - - /** - * Assumes 2 cameras that are perpendicular and share an X-axis, and that - * the cameras' projection and world matrices have already been set. - * And that near and far planes are identical for both cameras. - */ - setProjectionFromUnion: function () { - var cameraLPos = new Vector3(); - var cameraRPos = new Vector3(); - - return function () { - cameraLPos.setFromMatrixPosition( this.cameras[ 0 ].matrixWorld ); - cameraRPos.setFromMatrixPosition( this.cameras[ 1 ].matrixWorld ); - - var ipd = cameraLPos.distanceTo( cameraRPos ); - - var projL = this.cameras[ 0 ].projectionMatrix; - var projR = this.cameras[ 1 ].projectionMatrix; - - // VR systems will have identical far and near planes, and - // most likely identical top and bottom frustum extents. - // via: https://computergraphics.stackexchange.com/a/4765 - var near = projL[ 14 ] / ( projL[ 10 ] - 1 ); - var far = projL[ 14 ] / ( projL[ 10 ] + 1 ); - - var leftFovL = ( projL[ 8 ] - 1 ) / projL[ 0 ]; - var rightFovR = ( projR[ 8 ] + 1 ) / projR[ 0 ]; - var leftL = leftFovL * near; - var rightR = rightFovR * near; - var topL = near * ( projL[ 9 ] + 1 ) / projL[ 5 ]; - var topR = near * ( projR[ 9 ] + 1 ) / projR[ 5 ]; - var bottomL = near * ( projL[ 9 ] - 1 ) / projL[ 5 ]; - var bottomR = near * ( projR[ 9 ] - 1 ) / projR[ 5 ]; - - // Calculate the new camera's position offset from the - // left camera. - var zOffset = ipd / (leftFovL + rightFovR); - var xOffset = zOffset * leftFovL; - - // TODO: Better way to apply this offset? - this.cameras[ 0 ].matrixWorld.decompose( this.position, this.quaternion, this.scale ); - this.translateX(xOffset); - this.translateZ(-zOffset); - this.matrixWorld.compose( this.position, this.quaternion, this.scale ); - this.matrixWorldInverse.getInverse(this.matrixWorld); - - // Find the union of the frustum values of the cameras and scale - // the values so that the near plane's position does not change in world space, - // although must now be relative to the new union camera. - var near2 = near + zOffset; - var far2 = far + zOffset; - var left = leftL - xOffset; - var right = rightR + (ipd - xOffset); - var top = Math.max( topL, topR ); - var bottom = Math.min( bottomL, bottomR ); - - this.projectionMatrix.makePerspective( left, right, top, bottom, near2, far2 ); - } - }(), + isArrayCamera: true } ); +/** + * @author jsantell / https://www.jsantell.com/ + * @author mrdoob / http://mrdoob.com/ + */ + +var cameraLPos = new Vector3(); +var cameraRPos = new Vector3(); + +/** + * Assumes 2 cameras that are parallel and share an X-axis, and that + * the cameras' projection and world matrices have already been set. + * And that near and far planes are identical for both cameras. + * Visualization of this technique: https://computergraphics.stackexchange.com/a/4765 + */ +function setProjectionFromUnion( camera, cameraL, cameraR ) { + + cameraLPos.setFromMatrixPosition( cameraL.matrixWorld ); + cameraRPos.setFromMatrixPosition( cameraR.matrixWorld ); + + var ipd = cameraLPos.distanceTo( cameraRPos ); + + var projL = cameraL.projectionMatrix.elements; + var projR = cameraR.projectionMatrix.elements; + + // VR systems will have identical far and near planes, and + // most likely identical top and bottom frustum extents. + // Use the left camera for these values. + var near = projL[ 14 ] / ( projL[ 10 ] - 1 ); + var far = projL[ 14 ] / ( projL[ 10 ] + 1 ); + var topFov = ( projL[ 9 ] + 1 ) / projL[ 5 ]; + var bottomFov = ( projL[ 9 ] - 1 ) / projL[ 5 ]; + + var leftFov = ( projL[ 8 ] - 1 ) / projL[ 0 ]; + var rightFov = ( projR[ 8 ] + 1 ) / projR[ 0 ]; + var left = near * leftFov; + var right = near * rightFov; + + // Calculate the new camera's position offset from the + // left camera. xOffset should be roughly half `ipd`. + var zOffset = ipd / ( - leftFov + rightFov ); + var xOffset = zOffset * - leftFov; + + // TODO: Better way to apply this offset? + cameraL.matrixWorld.decompose( camera.position, camera.quaternion, camera.scale ); + camera.translateX( xOffset ); + camera.translateZ( zOffset ); + camera.matrixWorld.compose( camera.position, camera.quaternion, camera.scale ); + camera.matrixWorldInverse.getInverse( camera.matrixWorld ); + + // Find the union of the frustum values of the cameras and scale + // the values so that the near plane's position does not change in world space, + // although must now be relative to the new union camera. + var near2 = near + zOffset; + var far2 = far + zOffset; + var left2 = left - xOffset; + var right2 = right + ( ipd - xOffset ); + var top2 = topFov * far / far2 * near2; + var bottom2 = bottomFov * far / far2 * near2; + + camera.projectionMatrix.makePerspective( left2, right2, top2, bottom2, near2, far2 ); + +} + /** * @author mrdoob / http://mrdoob.com/ */ @@ -21338,6 +21336,8 @@ function WebVRManager( renderer ) { var standingMatrix = new Matrix4(); var standingMatrixInverse = new Matrix4(); + var framebufferScaleFactor = 1.0; + var frameOfReferenceType = 'stage'; if ( typeof window !== 'undefined' && 'VRFrameData' in window ) { @@ -21378,8 +21378,8 @@ function WebVRManager( renderer ) { if ( isPresenting() ) { var eyeParameters = device.getEyeParameters( 'left' ); - var renderWidth = eyeParameters.renderWidth; - var renderHeight = eyeParameters.renderHeight; + var renderWidth = eyeParameters.renderWidth * framebufferScaleFactor; + var renderHeight = eyeParameters.renderHeight * framebufferScaleFactor; currentPixelRatio = renderer.getPixelRatio(); currentSize = renderer.getSize(); @@ -21522,6 +21522,12 @@ function WebVRManager( renderer ) { }; + this.setFramebufferScaleFactor = function ( value ) { + + framebufferScaleFactor = value; + + }; + this.setFrameOfReferenceType = function ( value ) { frameOfReferenceType = value; @@ -21637,7 +21643,7 @@ function WebVRManager( renderer ) { cameraL.projectionMatrix.fromArray( frameData.leftProjectionMatrix ); cameraR.projectionMatrix.fromArray( frameData.rightProjectionMatrix ); - cameraVR.setProjectionFromUnion(); + setProjectionFromUnion( cameraVR, cameraL, cameraR ); // @@ -21714,6 +21720,8 @@ function WebXRManager( renderer ) { var device = null; var session = null; + var framebufferScaleFactor = 1.0; + var frameOfReference = null; var frameOfReferenceType = 'stage'; @@ -21793,6 +21801,12 @@ function WebXRManager( renderer ) { } + this.setFramebufferScaleFactor = function ( value ) { + + framebufferScaleFactor = value; + + }; + this.setFrameOfReferenceType = function ( value ) { frameOfReferenceType = value; @@ -21810,7 +21824,7 @@ function WebXRManager( renderer ) { session.addEventListener( 'selectend', onSessionEvent ); session.addEventListener( 'end', onSessionEnd ); - session.baseLayer = new XRWebGLLayer( session, gl ); + session.baseLayer = new XRWebGLLayer( session, gl, { framebufferScaleFactor: framebufferScaleFactor } ); session.requestFrameOfReference( frameOfReferenceType ).then( function ( value ) { frameOfReference = value; @@ -21831,6 +21845,13 @@ function WebXRManager( renderer ) { inputSources = session.getInputSources(); console.log( inputSources ); + for ( var i = 0; i < controllers.length; i ++ ) { + + var controller = controllers[ i ]; + controller.userData.inputSource = inputSources[ i ]; + + } + } ); } @@ -21880,7 +21901,7 @@ function WebXRManager( renderer ) { } - cameraVR.setProjectionFromUnion(); + setProjectionFromUnion( cameraVR, cameraL, cameraR ); return cameraVR; @@ -22424,9 +22445,9 @@ function WebGLRenderer( parameters ) { var bits = 0; - if ( color === undefined || color ) bits |= _gl.COLOR_BUFFER_BIT; - if ( depth === undefined || depth ) bits |= _gl.DEPTH_BUFFER_BIT; - if ( stencil === undefined || stencil ) bits |= _gl.STENCIL_BUFFER_BIT; + if ( color === undefined || color ) bits |= 16384; + if ( depth === undefined || depth ) bits |= 256; + if ( stencil === undefined || stencil ) bits |= 1024; _gl.clear( bits ); @@ -22552,47 +22573,47 @@ function WebGLRenderer( parameters ) { if ( object.hasPositions ) { - _gl.bindBuffer( _gl.ARRAY_BUFFER, buffers.position ); - _gl.bufferData( _gl.ARRAY_BUFFER, object.positionArray, _gl.DYNAMIC_DRAW ); + _gl.bindBuffer( 34962, buffers.position ); + _gl.bufferData( 34962, object.positionArray, 35048 ); state.enableAttribute( programAttributes.position ); - _gl.vertexAttribPointer( programAttributes.position, 3, _gl.FLOAT, false, 0, 0 ); + _gl.vertexAttribPointer( programAttributes.position, 3, 5126, false, 0, 0 ); } if ( object.hasNormals ) { - _gl.bindBuffer( _gl.ARRAY_BUFFER, buffers.normal ); - _gl.bufferData( _gl.ARRAY_BUFFER, object.normalArray, _gl.DYNAMIC_DRAW ); + _gl.bindBuffer( 34962, buffers.normal ); + _gl.bufferData( 34962, object.normalArray, 35048 ); state.enableAttribute( programAttributes.normal ); - _gl.vertexAttribPointer( programAttributes.normal, 3, _gl.FLOAT, false, 0, 0 ); + _gl.vertexAttribPointer( programAttributes.normal, 3, 5126, false, 0, 0 ); } if ( object.hasUvs ) { - _gl.bindBuffer( _gl.ARRAY_BUFFER, buffers.uv ); - _gl.bufferData( _gl.ARRAY_BUFFER, object.uvArray, _gl.DYNAMIC_DRAW ); + _gl.bindBuffer( 34962, buffers.uv ); + _gl.bufferData( 34962, object.uvArray, 35048 ); state.enableAttribute( programAttributes.uv ); - _gl.vertexAttribPointer( programAttributes.uv, 2, _gl.FLOAT, false, 0, 0 ); + _gl.vertexAttribPointer( programAttributes.uv, 2, 5126, false, 0, 0 ); } if ( object.hasColors ) { - _gl.bindBuffer( _gl.ARRAY_BUFFER, buffers.color ); - _gl.bufferData( _gl.ARRAY_BUFFER, object.colorArray, _gl.DYNAMIC_DRAW ); + _gl.bindBuffer( 34962, buffers.color ); + _gl.bufferData( 34962, object.colorArray, 35048 ); state.enableAttribute( programAttributes.color ); - _gl.vertexAttribPointer( programAttributes.color, 3, _gl.FLOAT, false, 0, 0 ); + _gl.vertexAttribPointer( programAttributes.color, 3, 5126, false, 0, 0 ); } state.disableUnusedAttributes(); - _gl.drawArrays( _gl.TRIANGLES, 0, object.count ); + _gl.drawArrays( 4, 0, object.count ); object.count = 0; @@ -22658,7 +22679,7 @@ function WebGLRenderer( parameters ) { if ( index !== null ) { - _gl.bindBuffer( _gl.ELEMENT_ARRAY_BUFFER, attribute.buffer ); + _gl.bindBuffer( 34963, attribute.buffer ); } @@ -22698,22 +22719,22 @@ function WebGLRenderer( parameters ) { if ( material.wireframe === true ) { state.setLineWidth( material.wireframeLinewidth * getTargetPixelRatio() ); - renderer.setMode( _gl.LINES ); + renderer.setMode( 1 ); } else { switch ( object.drawMode ) { case TrianglesDrawMode: - renderer.setMode( _gl.TRIANGLES ); + renderer.setMode( 4 ); break; case TriangleStripDrawMode: - renderer.setMode( _gl.TRIANGLE_STRIP ); + renderer.setMode( 5 ); break; case TriangleFanDrawMode: - renderer.setMode( _gl.TRIANGLE_FAN ); + renderer.setMode( 6 ); break; } @@ -22731,25 +22752,25 @@ function WebGLRenderer( parameters ) { if ( object.isLineSegments ) { - renderer.setMode( _gl.LINES ); + renderer.setMode( 1 ); } else if ( object.isLineLoop ) { - renderer.setMode( _gl.LINE_LOOP ); + renderer.setMode( 2 ); } else { - renderer.setMode( _gl.LINE_STRIP ); + renderer.setMode( 3 ); } } else if ( object.isPoints ) { - renderer.setMode( _gl.POINTS ); + renderer.setMode( 0 ); } else if ( object.isSprite ) { - renderer.setMode( _gl.TRIANGLES ); + renderer.setMode( 4 ); } @@ -22835,7 +22856,7 @@ function WebGLRenderer( parameters ) { } - _gl.bindBuffer( _gl.ARRAY_BUFFER, buffer ); + _gl.bindBuffer( 34962, buffer ); _gl.vertexAttribPointer( programAttribute, size, type, normalized, stride * bytesPerElement, offset * bytesPerElement ); } else { @@ -22856,7 +22877,7 @@ function WebGLRenderer( parameters ) { } - _gl.bindBuffer( _gl.ARRAY_BUFFER, buffer ); + _gl.bindBuffer( 34962, buffer ); _gl.vertexAttribPointer( programAttribute, size, type, normalized, 0, 0 ); } @@ -23114,61 +23135,6 @@ function WebGLRenderer( parameters ) { }; - /* - // TODO Duplicated code (Frustum) - - var _sphere = new Sphere(); - - function isObjectViewable( object ) { - - var geometry = object.geometry; - - if ( geometry.boundingSphere === null ) - geometry.computeBoundingSphere(); - - _sphere.copy( geometry.boundingSphere ). - applyMatrix4( object.matrixWorld ); - - return isSphereViewable( _sphere ); - - } - - function isSpriteViewable( sprite ) { - - _sphere.center.set( 0, 0, 0 ); - _sphere.radius = 0.7071067811865476; - _sphere.applyMatrix4( sprite.matrixWorld ); - - return isSphereViewable( _sphere ); - - } - - function isSphereViewable( sphere ) { - - if ( ! _frustum.intersectsSphere( sphere ) ) return false; - - var numPlanes = _clipping.numPlanes; - - if ( numPlanes === 0 ) return true; - - var planes = _this.clippingPlanes, - - center = sphere.center, - negRad = - sphere.radius, - i = 0; - - do { - - // out when deeper than radius in the negative halfspace - if ( planes[ i ].distanceToPoint( center ) < negRad ) return false; - - } while ( ++ i !== numPlanes ); - - return true; - - } - */ - function projectObject( object, camera, sortObjects ) { if ( object.visible === false ) return; @@ -24515,7 +24481,7 @@ function WebGLRenderer( parameters ) { if ( _currentFramebuffer !== framebuffer ) { - _gl.bindFramebuffer( _gl.FRAMEBUFFER, framebuffer ); + _gl.bindFramebuffer( 36160, framebuffer ); _currentFramebuffer = framebuffer; } @@ -24527,7 +24493,7 @@ function WebGLRenderer( parameters ) { if ( isCube ) { var textureProperties = properties.get( renderTarget.texture ); - _gl.framebufferTexture2D( _gl.FRAMEBUFFER, _gl.COLOR_ATTACHMENT0, _gl.TEXTURE_CUBE_MAP_POSITIVE_X + renderTarget.activeCubeFace, textureProperties.__webglTexture, renderTarget.activeMipMapLevel ); + _gl.framebufferTexture2D( 36160, 36064, 34069 + renderTarget.activeCubeFace, textureProperties.__webglTexture, renderTarget.activeMipMapLevel ); } @@ -24550,7 +24516,7 @@ function WebGLRenderer( parameters ) { if ( framebuffer !== _currentFramebuffer ) { - _gl.bindFramebuffer( _gl.FRAMEBUFFER, framebuffer ); + _gl.bindFramebuffer( 36160, framebuffer ); restore = true; @@ -24562,14 +24528,14 @@ function WebGLRenderer( parameters ) { var textureFormat = texture.format; var textureType = texture.type; - if ( textureFormat !== RGBAFormat && utils.convert( textureFormat ) !== _gl.getParameter( _gl.IMPLEMENTATION_COLOR_READ_FORMAT ) ) { + if ( textureFormat !== RGBAFormat && utils.convert( textureFormat ) !== _gl.getParameter( 35739 ) ) { console.error( 'THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format.' ); return; } - if ( textureType !== UnsignedByteType && utils.convert( textureType ) !== _gl.getParameter( _gl.IMPLEMENTATION_COLOR_READ_TYPE ) && // IE11, Edge and Chrome Mac < 52 (#9513) + if ( textureType !== UnsignedByteType && utils.convert( textureType ) !== _gl.getParameter( 35738 ) && // IE11, Edge and Chrome Mac < 52 (#9513) ! ( textureType === FloatType && ( capabilities.isWebGL2 || extensions.get( 'OES_texture_float' ) || extensions.get( 'WEBGL_color_buffer_float' ) ) ) && // Chrome Mac >= 52 and Firefox ! ( textureType === HalfFloatType && ( capabilities.isWebGL2 ? extensions.get( 'EXT_color_buffer_float' ) : extensions.get( 'EXT_color_buffer_half_float' ) ) ) ) { @@ -24578,7 +24544,7 @@ function WebGLRenderer( parameters ) { } - if ( _gl.checkFramebufferStatus( _gl.FRAMEBUFFER ) === _gl.FRAMEBUFFER_COMPLETE ) { + if ( _gl.checkFramebufferStatus( 36160 ) === 36053 ) { // the following if statement ensures valid read requests (no out-of-bounds pixels, see #8604) @@ -24598,7 +24564,7 @@ function WebGLRenderer( parameters ) { if ( restore ) { - _gl.bindFramebuffer( _gl.FRAMEBUFFER, _currentFramebuffer ); + _gl.bindFramebuffer( 36160, _currentFramebuffer ); } @@ -24616,7 +24582,7 @@ function WebGLRenderer( parameters ) { this.setTexture2D( texture, 0 ); - _gl.copyTexImage2D( _gl.TEXTURE_2D, level || 0, glFormat, position.x, position.y, width, height, 0 ); + _gl.copyTexImage2D( 3553, level || 0, glFormat, position.x, position.y, width, height, 0 ); }; @@ -24631,11 +24597,11 @@ function WebGLRenderer( parameters ) { if ( srcTexture.isDataTexture ) { - _gl.texSubImage2D( _gl.TEXTURE_2D, level || 0, position.x, position.y, width, height, glFormat, glType, srcTexture.image.data ); + _gl.texSubImage2D( 3553, level || 0, position.x, position.y, width, height, glFormat, glType, srcTexture.image.data ); } else { - _gl.texSubImage2D( _gl.TEXTURE_2D, level || 0, position.x, position.y, glFormat, glType, srcTexture.image ); + _gl.texSubImage2D( 3553, level || 0, position.x, position.y, glFormat, glType, srcTexture.image ); } @@ -26080,9 +26046,20 @@ Line.prototype = Object.assign( Object.create( Object3D.prototype ), { }() ), + copy: function ( source ) { + + Object3D.prototype.copy.call( this, source ); + + this.geometry.copy( source.geometry ); + this.material.copy( source.material ); + + return this; + + }, + clone: function () { - return new this.constructor( this.geometry, this.material ).copy( this ); + return new this.constructor().copy( this ); } @@ -31926,2635 +31903,2581 @@ var Materials = /*#__PURE__*/Object.freeze({ }); /** - * @author mrdoob / http://mrdoob.com/ + * @author tschw + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ */ -var Cache = { - - enabled: false, +var AnimationUtils = { - files: {}, + // same as Array.prototype.slice, but also works on typed arrays + arraySlice: function ( array, from, to ) { - add: function ( key, file ) { + if ( AnimationUtils.isTypedArray( array ) ) { - if ( this.enabled === false ) return; + // in ios9 array.subarray(from, undefined) will return empty array + // but array.subarray(from) or array.subarray(from, len) is correct + return new array.constructor( array.subarray( from, to !== undefined ? to : array.length ) ); - // console.log( 'THREE.Cache', 'Adding key:', key ); + } - this.files[ key ] = file; + return array.slice( from, to ); }, - get: function ( key ) { + // converts an array to a specific type + convertArray: function ( array, type, forceClone ) { - if ( this.enabled === false ) return; + if ( ! array || // let 'undefined' and 'null' pass + ! forceClone && array.constructor === type ) return array; - // console.log( 'THREE.Cache', 'Checking key:', key ); + if ( typeof type.BYTES_PER_ELEMENT === 'number' ) { - return this.files[ key ]; + return new type( array ); // create typed array + + } + + return Array.prototype.slice.call( array ); // create Array }, - remove: function ( key ) { + isTypedArray: function ( object ) { - delete this.files[ key ]; + return ArrayBuffer.isView( object ) && + ! ( object instanceof DataView ); }, - clear: function () { - - this.files = {}; + // returns an array by which times and values can be sorted + getKeyframeOrder: function ( times ) { - } + function compareTime( i, j ) { -}; + return times[ i ] - times[ j ]; -/** - * @author mrdoob / http://mrdoob.com/ - */ + } -function LoadingManager( onLoad, onProgress, onError ) { + var n = times.length; + var result = new Array( n ); + for ( var i = 0; i !== n; ++ i ) result[ i ] = i; - var scope = this; + result.sort( compareTime ); - var isLoading = false; - var itemsLoaded = 0; - var itemsTotal = 0; - var urlModifier = undefined; + return result; - // Refer to #5689 for the reason why we don't set .onStart - // in the constructor + }, - this.onStart = undefined; - this.onLoad = onLoad; - this.onProgress = onProgress; - this.onError = onError; + // uses the array previously returned by 'getKeyframeOrder' to sort data + sortedArray: function ( values, stride, order ) { - this.itemStart = function ( url ) { + var nValues = values.length; + var result = new values.constructor( nValues ); - itemsTotal ++; + for ( var i = 0, dstOffset = 0; dstOffset !== nValues; ++ i ) { - if ( isLoading === false ) { + var srcOffset = order[ i ] * stride; - if ( scope.onStart !== undefined ) { + for ( var j = 0; j !== stride; ++ j ) { - scope.onStart( url, itemsLoaded, itemsTotal ); + result[ dstOffset ++ ] = values[ srcOffset + j ]; } } - isLoading = true; + return result; - }; + }, - this.itemEnd = function ( url ) { + // function for parsing AOS keyframe formats + flattenJSON: function ( jsonKeys, times, values, valuePropertyName ) { - itemsLoaded ++; + var i = 1, key = jsonKeys[ 0 ]; - if ( scope.onProgress !== undefined ) { + while ( key !== undefined && key[ valuePropertyName ] === undefined ) { - scope.onProgress( url, itemsLoaded, itemsTotal ); + key = jsonKeys[ i ++ ]; } - if ( itemsLoaded === itemsTotal ) { + if ( key === undefined ) return; // no data - isLoading = false; + var value = key[ valuePropertyName ]; + if ( value === undefined ) return; // no data - if ( scope.onLoad !== undefined ) { + if ( Array.isArray( value ) ) { - scope.onLoad(); + do { - } + value = key[ valuePropertyName ]; - } + if ( value !== undefined ) { - }; + times.push( key.time ); + values.push.apply( values, value ); // push all elements - this.itemError = function ( url ) { + } - if ( scope.onError !== undefined ) { + key = jsonKeys[ i ++ ]; - scope.onError( url ); + } while ( key !== undefined ); - } + } else if ( value.toArray !== undefined ) { - }; + // ...assume THREE.Math-ish - this.resolveURL = function ( url ) { + do { - if ( urlModifier ) { + value = key[ valuePropertyName ]; - return urlModifier( url ); + if ( value !== undefined ) { - } + times.push( key.time ); + value.toArray( values, values.length ); - return url; + } - }; + key = jsonKeys[ i ++ ]; - this.setURLModifier = function ( transform ) { + } while ( key !== undefined ); - urlModifier = transform; - return this; + } else { - }; + // otherwise push as-is -} + do { -var DefaultLoadingManager = new LoadingManager(); + value = key[ valuePropertyName ]; -/** - * @author mrdoob / http://mrdoob.com/ - */ + if ( value !== undefined ) { -var loading = {}; + times.push( key.time ); + values.push( value ); -function FileLoader( manager ) { + } - this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; + key = jsonKeys[ i ++ ]; -} + } while ( key !== undefined ); -Object.assign( FileLoader.prototype, { + } - load: function ( url, onLoad, onProgress, onError ) { + } - if ( url === undefined ) url = ''; +}; - if ( this.path !== undefined ) url = this.path + url; +/** + * Abstract base class of interpolants over parametric samples. + * + * The parameter domain is one dimensional, typically the time or a path + * along a curve defined by the data. + * + * The sample values can have any dimensionality and derived classes may + * apply special interpretations to the data. + * + * This class provides the interval seek in a Template Method, deferring + * the actual interpolation to derived classes. + * + * Time complexity is O(1) for linear access crossing at most two points + * and O(log N) for random access, where N is the number of positions. + * + * References: + * + * http://www.oodesign.com/template-method-pattern.html + * + * @author tschw + */ - url = this.manager.resolveURL( url ); +function Interpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { - var scope = this; + this.parameterPositions = parameterPositions; + this._cachedIndex = 0; - var cached = Cache.get( url ); + this.resultBuffer = resultBuffer !== undefined ? + resultBuffer : new sampleValues.constructor( sampleSize ); + this.sampleValues = sampleValues; + this.valueSize = sampleSize; - if ( cached !== undefined ) { +} - scope.manager.itemStart( url ); +Object.assign( Interpolant.prototype, { - setTimeout( function () { + evaluate: function ( t ) { - if ( onLoad ) onLoad( cached ); + var pp = this.parameterPositions, + i1 = this._cachedIndex, - scope.manager.itemEnd( url ); + t1 = pp[ i1 ], + t0 = pp[ i1 - 1 ]; - }, 0 ); + validate_interval: { - return cached; + seek: { - } + var right; - // Check if request is duplicate + linear_scan: { - if ( loading[ url ] !== undefined ) { + //- See http://jsperf.com/comparison-to-undefined/3 + //- slower code: + //- + //- if ( t >= t1 || t1 === undefined ) { + forward_scan: if ( ! ( t < t1 ) ) { - loading[ url ].push( { + for ( var giveUpAt = i1 + 2; ; ) { - onLoad: onLoad, - onProgress: onProgress, - onError: onError + if ( t1 === undefined ) { - } ); + if ( t < t0 ) break forward_scan; - return; + // after end - } + i1 = pp.length; + this._cachedIndex = i1; + return this.afterEnd_( i1 - 1, t, t0 ); - // Check for data: URI - var dataUriRegex = /^data:(.*?)(;base64)?,(.*)$/; - var dataUriRegexResult = url.match( dataUriRegex ); + } - // Safari can not handle Data URIs through XMLHttpRequest so process manually - if ( dataUriRegexResult ) { + if ( i1 === giveUpAt ) break; // this loop - var mimeType = dataUriRegexResult[ 1 ]; - var isBase64 = !! dataUriRegexResult[ 2 ]; - var data = dataUriRegexResult[ 3 ]; + t0 = t1; + t1 = pp[ ++ i1 ]; - data = decodeURIComponent( data ); + if ( t < t1 ) { - if ( isBase64 ) data = atob( data ); + // we have arrived at the sought interval + break seek; - try { + } - var response; - var responseType = ( this.responseType || '' ).toLowerCase(); + } - switch ( responseType ) { + // prepare binary search on the right side of the index + right = pp.length; + break linear_scan; - case 'arraybuffer': - case 'blob': + } - var view = new Uint8Array( data.length ); + //- slower code: + //- if ( t < t0 || t0 === undefined ) { + if ( ! ( t >= t0 ) ) { - for ( var i = 0; i < data.length; i ++ ) { + // looping? - view[ i ] = data.charCodeAt( i ); + var t1global = pp[ 1 ]; - } + if ( t < t1global ) { - if ( responseType === 'blob' ) { + i1 = 2; // + 1, using the scan for the details + t0 = t1global; - response = new Blob( [ view.buffer ], { type: mimeType } ); + } - } else { + // linear reverse scan - response = view.buffer; + for ( var giveUpAt = i1 - 2; ; ) { - } + if ( t0 === undefined ) { - break; + // before start - case 'document': + this._cachedIndex = 0; + return this.beforeStart_( 0, t, t1 ); - var parser = new DOMParser(); - response = parser.parseFromString( data, mimeType ); + } - break; + if ( i1 === giveUpAt ) break; // this loop - case 'json': + t1 = t0; + t0 = pp[ -- i1 - 1 ]; - response = JSON.parse( data ); + if ( t >= t0 ) { - break; + // we have arrived at the sought interval + break seek; - default: // 'text' or other + } - response = data; + } - break; + // prepare binary search on the left side of the index + right = i1; + i1 = 0; + break linear_scan; - } + } - // Wait for next browser tick like standard XMLHttpRequest event dispatching does - setTimeout( function () { + // the interval is valid - if ( onLoad ) onLoad( response ); + break validate_interval; - scope.manager.itemEnd( url ); + } // linear scan - }, 0 ); + // binary search - } catch ( error ) { + while ( i1 < right ) { - // Wait for next browser tick like standard XMLHttpRequest event dispatching does - setTimeout( function () { + var mid = ( i1 + right ) >>> 1; - if ( onError ) onError( error ); + if ( t < pp[ mid ] ) { - scope.manager.itemEnd( url ); - scope.manager.itemError( url ); + right = mid; - }, 0 ); + } else { - } + i1 = mid + 1; - } else { + } - // Initialise array for duplicate requests + } - loading[ url ] = []; + t1 = pp[ i1 ]; + t0 = pp[ i1 - 1 ]; - loading[ url ].push( { + // check boundary cases, again - onLoad: onLoad, - onProgress: onProgress, - onError: onError + if ( t0 === undefined ) { - } ); + this._cachedIndex = 0; + return this.beforeStart_( 0, t, t1 ); - var request = new XMLHttpRequest(); + } - request.open( 'GET', url, true ); + if ( t1 === undefined ) { - request.addEventListener( 'load', function ( event ) { + i1 = pp.length; + this._cachedIndex = i1; + return this.afterEnd_( i1 - 1, t0, t ); - var response = this.response; + } - Cache.add( url, response ); + } // seek - var callbacks = loading[ url ]; + this._cachedIndex = i1; - delete loading[ url ]; + this.intervalChanged_( i1, t0, t1 ); - if ( this.status === 200 || this.status === 0 ) { + } // validate_interval - // Some browsers return HTTP Status 0 when using non-http protocol - // e.g. 'file://' or 'data://'. Handle as success. + return this.interpolate_( i1, t0, t, t1 ); - if ( this.status === 0 ) console.warn( 'THREE.FileLoader: HTTP Status 0 received.' ); + }, - for ( var i = 0, il = callbacks.length; i < il; i ++ ) { + settings: null, // optional, subclass-specific settings structure + // Note: The indirection allows central control of many interpolants. - var callback = callbacks[ i ]; - if ( callback.onLoad ) callback.onLoad( response ); + // --- Protected interface - } + DefaultSettings_: {}, - scope.manager.itemEnd( url ); + getSettings_: function () { - } else { + return this.settings || this.DefaultSettings_; - for ( var i = 0, il = callbacks.length; i < il; i ++ ) { + }, - var callback = callbacks[ i ]; - if ( callback.onError ) callback.onError( event ); + copySampleValue_: function ( index ) { - } + // copies a sample value to the result buffer - scope.manager.itemEnd( url ); - scope.manager.itemError( url ); + var result = this.resultBuffer, + values = this.sampleValues, + stride = this.valueSize, + offset = index * stride; - } + for ( var i = 0; i !== stride; ++ i ) { - }, false ); + result[ i ] = values[ offset + i ]; - request.addEventListener( 'progress', function ( event ) { + } - var callbacks = loading[ url ]; - - for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - - var callback = callbacks[ i ]; - if ( callback.onProgress ) callback.onProgress( event ); - - } - - }, false ); - - request.addEventListener( 'error', function ( event ) { - - var callbacks = loading[ url ]; - - delete loading[ url ]; - - for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - - var callback = callbacks[ i ]; - if ( callback.onError ) callback.onError( event ); - - } + return result; - scope.manager.itemEnd( url ); - scope.manager.itemError( url ); + }, - }, false ); + // Template methods for derived classes: - request.addEventListener( 'abort', function ( event ) { + interpolate_: function ( /* i1, t0, t, t1 */ ) { - var callbacks = loading[ url ]; + throw new Error( 'call to abstract method' ); + // implementations shall return this.resultBuffer - delete loading[ url ]; + }, - for ( var i = 0, il = callbacks.length; i < il; i ++ ) { + intervalChanged_: function ( /* i1, t0, t1 */ ) { - var callback = callbacks[ i ]; - if ( callback.onError ) callback.onError( event ); + // empty - } + } - scope.manager.itemEnd( url ); - scope.manager.itemError( url ); +} ); - }, false ); +//!\ DECLARE ALIAS AFTER assign prototype ! +Object.assign( Interpolant.prototype, { - if ( this.responseType !== undefined ) request.responseType = this.responseType; - if ( this.withCredentials !== undefined ) request.withCredentials = this.withCredentials; + //( 0, t, t0 ), returns this.resultBuffer + beforeStart_: Interpolant.prototype.copySampleValue_, - if ( request.overrideMimeType ) request.overrideMimeType( this.mimeType !== undefined ? this.mimeType : 'text/plain' ); + //( N-1, tN-1, t ), returns this.resultBuffer + afterEnd_: Interpolant.prototype.copySampleValue_, - for ( var header in this.requestHeader ) { +} ); - request.setRequestHeader( header, this.requestHeader[ header ] ); +/** + * Fast and simple cubic spline interpolant. + * + * It was derived from a Hermitian construction setting the first derivative + * at each sample position to the linear slope between neighboring positions + * over their parameter interval. + * + * @author tschw + */ - } +function CubicInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { - request.send( null ); + Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); - } + this._weightPrev = - 0; + this._offsetPrev = - 0; + this._weightNext = - 0; + this._offsetNext = - 0; - scope.manager.itemStart( url ); +} - return request; +CubicInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { - }, + constructor: CubicInterpolant, - setPath: function ( value ) { + DefaultSettings_: { - this.path = value; - return this; + endingStart: ZeroCurvatureEnding, + endingEnd: ZeroCurvatureEnding }, - setResponseType: function ( value ) { + intervalChanged_: function ( i1, t0, t1 ) { - this.responseType = value; - return this; + var pp = this.parameterPositions, + iPrev = i1 - 2, + iNext = i1 + 1, - }, + tPrev = pp[ iPrev ], + tNext = pp[ iNext ]; - setWithCredentials: function ( value ) { + if ( tPrev === undefined ) { - this.withCredentials = value; - return this; + switch ( this.getSettings_().endingStart ) { - }, + case ZeroSlopeEnding: - setMimeType: function ( value ) { + // f'(t0) = 0 + iPrev = i1; + tPrev = 2 * t0 - t1; - this.mimeType = value; - return this; + break; - }, + case WrapAroundEnding: - setRequestHeader: function ( value ) { + // use the other end of the curve + iPrev = pp.length - 2; + tPrev = t0 + pp[ iPrev ] - pp[ iPrev + 1 ]; - this.requestHeader = value; - return this; + break; - } + default: // ZeroCurvatureEnding -} ); + // f''(t0) = 0 a.k.a. Natural Spline + iPrev = i1; + tPrev = t1; -/** - * @author mrdoob / http://mrdoob.com/ - * - * Abstract Base class to block based textures loader (dds, pvr, ...) - */ + } -function CompressedTextureLoader( manager ) { + } - this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; + if ( tNext === undefined ) { - // override in sub classes - this._parser = null; + switch ( this.getSettings_().endingEnd ) { -} + case ZeroSlopeEnding: -Object.assign( CompressedTextureLoader.prototype, { + // f'(tN) = 0 + iNext = i1; + tNext = 2 * t1 - t0; - load: function ( url, onLoad, onProgress, onError ) { + break; - var scope = this; + case WrapAroundEnding: - var images = []; + // use the other end of the curve + iNext = 1; + tNext = t1 + pp[ 1 ] - pp[ 0 ]; - var texture = new CompressedTexture(); - texture.image = images; + break; - var loader = new FileLoader( this.manager ); - loader.setPath( this.path ); - loader.setResponseType( 'arraybuffer' ); + default: // ZeroCurvatureEnding - function loadTexture( i ) { + // f''(tN) = 0, a.k.a. Natural Spline + iNext = i1 - 1; + tNext = t0; - loader.load( url[ i ], function ( buffer ) { + } - var texDatas = scope._parser( buffer, true ); + } - images[ i ] = { - width: texDatas.width, - height: texDatas.height, - format: texDatas.format, - mipmaps: texDatas.mipmaps - }; + var halfDt = ( t1 - t0 ) * 0.5, + stride = this.valueSize; - loaded += 1; + this._weightPrev = halfDt / ( t0 - tPrev ); + this._weightNext = halfDt / ( tNext - t1 ); + this._offsetPrev = iPrev * stride; + this._offsetNext = iNext * stride; - if ( loaded === 6 ) { + }, - if ( texDatas.mipmapCount === 1 ) - texture.minFilter = LinearFilter; + interpolate_: function ( i1, t0, t, t1 ) { - texture.format = texDatas.format; - texture.needsUpdate = true; + var result = this.resultBuffer, + values = this.sampleValues, + stride = this.valueSize, - if ( onLoad ) onLoad( texture ); + o1 = i1 * stride, o0 = o1 - stride, + oP = this._offsetPrev, oN = this._offsetNext, + wP = this._weightPrev, wN = this._weightNext, - } + p = ( t - t0 ) / ( t1 - t0 ), + pp = p * p, + ppp = pp * p; - }, onProgress, onError ); + // evaluate polynomials - } + var sP = - wP * ppp + 2 * wP * pp - wP * p; + var s0 = ( 1 + wP ) * ppp + ( - 1.5 - 2 * wP ) * pp + ( - 0.5 + wP ) * p + 1; + var s1 = ( - 1 - wN ) * ppp + ( 1.5 + wN ) * pp + 0.5 * p; + var sN = wN * ppp - wN * pp; - if ( Array.isArray( url ) ) { + // combine data linearly - var loaded = 0; + for ( var i = 0; i !== stride; ++ i ) { - for ( var i = 0, il = url.length; i < il; ++ i ) { + result[ i ] = + sP * values[ oP + i ] + + s0 * values[ o0 + i ] + + s1 * values[ o1 + i ] + + sN * values[ oN + i ]; - loadTexture( i ); + } - } + return result; - } else { + } - // compressed cubemap texture stored in a single DDS file +} ); - loader.load( url, function ( buffer ) { +/** + * @author tschw + */ - var texDatas = scope._parser( buffer, true ); +function LinearInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { - if ( texDatas.isCubemap ) { + Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); - var faces = texDatas.mipmaps.length / texDatas.mipmapCount; +} - for ( var f = 0; f < faces; f ++ ) { +LinearInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { - images[ f ] = { mipmaps: [] }; + constructor: LinearInterpolant, - for ( var i = 0; i < texDatas.mipmapCount; i ++ ) { + interpolate_: function ( i1, t0, t, t1 ) { - images[ f ].mipmaps.push( texDatas.mipmaps[ f * texDatas.mipmapCount + i ] ); - images[ f ].format = texDatas.format; - images[ f ].width = texDatas.width; - images[ f ].height = texDatas.height; + var result = this.resultBuffer, + values = this.sampleValues, + stride = this.valueSize, - } + offset1 = i1 * stride, + offset0 = offset1 - stride, - } + weight1 = ( t - t0 ) / ( t1 - t0 ), + weight0 = 1 - weight1; - } else { + for ( var i = 0; i !== stride; ++ i ) { - texture.image.width = texDatas.width; - texture.image.height = texDatas.height; - texture.mipmaps = texDatas.mipmaps; + result[ i ] = + values[ offset0 + i ] * weight0 + + values[ offset1 + i ] * weight1; - } + } - if ( texDatas.mipmapCount === 1 ) { + return result; - texture.minFilter = LinearFilter; + } - } +} ); - texture.format = texDatas.format; - texture.needsUpdate = true; +/** + * + * Interpolant that evaluates to the sample value at the position preceeding + * the parameter. + * + * @author tschw + */ - if ( onLoad ) onLoad( texture ); +function DiscreteInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { - }, onProgress, onError ); + Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); - } +} - return texture; +DiscreteInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { - }, + constructor: DiscreteInterpolant, - setPath: function ( value ) { + interpolate_: function ( i1 /*, t0, t, t1 */ ) { - this.path = value; - return this; + return this.copySampleValue_( i1 - 1 ); } } ); /** - * @author Nikos M. / https://github.com/foo123/ * - * Abstract Base class to load generic binary textures formats (rgbe, hdr, ...) + * A timed sequence of keyframes for a specific property. + * + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw */ -function DataTextureLoader( manager ) { +function KeyframeTrack( name, times, values, interpolation ) { - this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; + if ( name === undefined ) throw new Error( 'THREE.KeyframeTrack: track name is undefined' ); + if ( times === undefined || times.length === 0 ) throw new Error( 'THREE.KeyframeTrack: no keyframes in track named ' + name ); - // override in sub classes - this._parser = null; + this.name = name; -} + this.times = AnimationUtils.convertArray( times, this.TimeBufferType ); + this.values = AnimationUtils.convertArray( values, this.ValueBufferType ); -Object.assign( DataTextureLoader.prototype, { + this.setInterpolation( interpolation || this.DefaultInterpolation ); - load: function ( url, onLoad, onProgress, onError ) { +} - var scope = this; +// Static methods - var texture = new DataTexture(); +Object.assign( KeyframeTrack, { - var loader = new FileLoader( this.manager ); - loader.setResponseType( 'arraybuffer' ); - loader.setPath( this.path ); - loader.load( url, function ( buffer ) { + // Serialization (in static context, because of constructor invocation + // and automatic invocation of .toJSON): - var texData = scope._parser( buffer ); + toJSON: function ( track ) { - if ( ! texData ) return; + var trackType = track.constructor; - if ( undefined !== texData.image ) { + var json; - texture.image = texData.image; + // derived classes can define a static toJSON method + if ( trackType.toJSON !== undefined ) { - } else if ( undefined !== texData.data ) { + json = trackType.toJSON( track ); - texture.image.width = texData.width; - texture.image.height = texData.height; - texture.image.data = texData.data; + } else { - } + // by default, we assume the data can be serialized as-is + json = { - texture.wrapS = undefined !== texData.wrapS ? texData.wrapS : ClampToEdgeWrapping; - texture.wrapT = undefined !== texData.wrapT ? texData.wrapT : ClampToEdgeWrapping; + 'name': track.name, + 'times': AnimationUtils.convertArray( track.times, Array ), + 'values': AnimationUtils.convertArray( track.values, Array ) - texture.magFilter = undefined !== texData.magFilter ? texData.magFilter : LinearFilter; - texture.minFilter = undefined !== texData.minFilter ? texData.minFilter : LinearMipMapLinearFilter; + }; - texture.anisotropy = undefined !== texData.anisotropy ? texData.anisotropy : 1; + var interpolation = track.getInterpolation(); - if ( undefined !== texData.format ) { + if ( interpolation !== track.DefaultInterpolation ) { - texture.format = texData.format; + json.interpolation = interpolation; } - if ( undefined !== texData.type ) { - texture.type = texData.type; - - } + } - if ( undefined !== texData.mipmaps ) { + json.type = track.ValueTypeName; // mandatory - texture.mipmaps = texData.mipmaps; + return json; - } + } - if ( 1 === texData.mipmapCount ) { +} ); - texture.minFilter = LinearFilter; +Object.assign( KeyframeTrack.prototype, { - } + constructor: KeyframeTrack, - texture.needsUpdate = true; + TimeBufferType: Float32Array, - if ( onLoad ) onLoad( texture, texData ); + ValueBufferType: Float32Array, - }, onProgress, onError ); + DefaultInterpolation: InterpolateLinear, + InterpolantFactoryMethodDiscrete: function ( result ) { - return texture; + return new DiscreteInterpolant( this.times, this.values, this.getValueSize(), result ); }, - setPath: function ( value ) { - - this.path = value; - return this; - - } + InterpolantFactoryMethodLinear: function ( result ) { -} ); + return new LinearInterpolant( this.times, this.values, this.getValueSize(), result ); -/** - * @author mrdoob / http://mrdoob.com/ - */ + }, + InterpolantFactoryMethodSmooth: function ( result ) { -function ImageLoader( manager ) { + return new CubicInterpolant( this.times, this.values, this.getValueSize(), result ); - this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; + }, -} + setInterpolation: function ( interpolation ) { -Object.assign( ImageLoader.prototype, { + var factoryMethod; - crossOrigin: 'anonymous', + switch ( interpolation ) { - load: function ( url, onLoad, onProgress, onError ) { + case InterpolateDiscrete: - if ( url === undefined ) url = ''; + factoryMethod = this.InterpolantFactoryMethodDiscrete; - if ( this.path !== undefined ) url = this.path + url; + break; - url = this.manager.resolveURL( url ); + case InterpolateLinear: - var scope = this; + factoryMethod = this.InterpolantFactoryMethodLinear; - var cached = Cache.get( url ); + break; - if ( cached !== undefined ) { + case InterpolateSmooth: - scope.manager.itemStart( url ); + factoryMethod = this.InterpolantFactoryMethodSmooth; - setTimeout( function () { + break; - if ( onLoad ) onLoad( cached ); + } - scope.manager.itemEnd( url ); + if ( factoryMethod === undefined ) { - }, 0 ); + var message = "unsupported interpolation for " + + this.ValueTypeName + " keyframe track named " + this.name; - return cached; + if ( this.createInterpolant === undefined ) { - } + // fall back to default, unless the default itself is messed up + if ( interpolation !== this.DefaultInterpolation ) { - var image = document.createElementNS( 'http://www.w3.org/1999/xhtml', 'img' ); + this.setInterpolation( this.DefaultInterpolation ); - function onImageLoad() { + } else { - image.removeEventListener( 'load', onImageLoad, false ); - image.removeEventListener( 'error', onImageError, false ); + throw new Error( message ); // fatal, in this case - Cache.add( url, this ); + } - if ( onLoad ) onLoad( this ); + } - scope.manager.itemEnd( url ); + console.warn( 'THREE.KeyframeTrack:', message ); + return this; } - function onImageError( event ) { + this.createInterpolant = factoryMethod; - image.removeEventListener( 'load', onImageLoad, false ); - image.removeEventListener( 'error', onImageError, false ); + return this; - if ( onError ) onError( event ); + }, - scope.manager.itemEnd( url ); - scope.manager.itemError( url ); + getInterpolation: function () { - } + switch ( this.createInterpolant ) { - image.addEventListener( 'load', onImageLoad, false ); - image.addEventListener( 'error', onImageError, false ); + case this.InterpolantFactoryMethodDiscrete: - if ( url.substr( 0, 5 ) !== 'data:' ) { + return InterpolateDiscrete; - if ( this.crossOrigin !== undefined ) image.crossOrigin = this.crossOrigin; + case this.InterpolantFactoryMethodLinear: - } + return InterpolateLinear; - scope.manager.itemStart( url ); + case this.InterpolantFactoryMethodSmooth: - image.src = url; + return InterpolateSmooth; - return image; + } }, - setCrossOrigin: function ( value ) { + getValueSize: function () { - this.crossOrigin = value; - return this; + return this.values.length / this.times.length; }, - setPath: function ( value ) { + // move all keyframes either forwards or backwards in time + shift: function ( timeOffset ) { - this.path = value; - return this; + if ( timeOffset !== 0.0 ) { - } + var times = this.times; -} ); + for ( var i = 0, n = times.length; i !== n; ++ i ) { -/** - * @author mrdoob / http://mrdoob.com/ - */ + times[ i ] += timeOffset; + } -function CubeTextureLoader( manager ) { + } - this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; + return this; -} + }, -Object.assign( CubeTextureLoader.prototype, { + // scale all keyframe times by a factor (useful for frame <-> seconds conversions) + scale: function ( timeScale ) { - crossOrigin: 'anonymous', + if ( timeScale !== 1.0 ) { - load: function ( urls, onLoad, onProgress, onError ) { + var times = this.times; - var texture = new CubeTexture(); + for ( var i = 0, n = times.length; i !== n; ++ i ) { - var loader = new ImageLoader( this.manager ); - loader.setCrossOrigin( this.crossOrigin ); - loader.setPath( this.path ); + times[ i ] *= timeScale; - var loaded = 0; + } - function loadTexture( i ) { - - loader.load( urls[ i ], function ( image ) { - - texture.images[ i ] = image; + } - loaded ++; + return this; - if ( loaded === 6 ) { + }, - texture.needsUpdate = true; + // removes keyframes before and after animation without changing any values within the range [startTime, endTime]. + // IMPORTANT: We do not shift around keys to the start of the track time, because for interpolated keys this will change their values + trim: function ( startTime, endTime ) { - if ( onLoad ) onLoad( texture ); + var times = this.times, + nKeys = times.length, + from = 0, + to = nKeys - 1; - } + while ( from !== nKeys && times[ from ] < startTime ) { - }, undefined, onError ); + ++ from; } - for ( var i = 0; i < urls.length; ++ i ) { + while ( to !== - 1 && times[ to ] > endTime ) { - loadTexture( i ); + -- to; } - return texture; - - }, + ++ to; // inclusive -> exclusive bound - setCrossOrigin: function ( value ) { + if ( from !== 0 || to !== nKeys ) { - this.crossOrigin = value; - return this; + // empty tracks are forbidden, so keep at least one keyframe + if ( from >= to ) to = Math.max( to, 1 ), from = to - 1; - }, + var stride = this.getValueSize(); + this.times = AnimationUtils.arraySlice( times, from, to ); + this.values = AnimationUtils.arraySlice( this.values, from * stride, to * stride ); - setPath: function ( value ) { + } - this.path = value; return this; - } + }, -} ); + // ensure we do not get a GarbageInGarbageOut situation, make sure tracks are at least minimally viable + validate: function () { -/** - * @author mrdoob / http://mrdoob.com/ - */ + var valid = true; + var valueSize = this.getValueSize(); + if ( valueSize - Math.floor( valueSize ) !== 0 ) { -function TextureLoader( manager ) { + console.error( 'THREE.KeyframeTrack: Invalid value size in track.', this ); + valid = false; - this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; + } -} + var times = this.times, + values = this.values, -Object.assign( TextureLoader.prototype, { + nKeys = times.length; - crossOrigin: 'anonymous', + if ( nKeys === 0 ) { - load: function ( url, onLoad, onProgress, onError ) { + console.error( 'THREE.KeyframeTrack: Track is empty.', this ); + valid = false; - var texture = new Texture(); + } - var loader = new ImageLoader( this.manager ); - loader.setCrossOrigin( this.crossOrigin ); - loader.setPath( this.path ); + var prevTime = null; - loader.load( url, function ( image ) { + for ( var i = 0; i !== nKeys; i ++ ) { - texture.image = image; + var currTime = times[ i ]; - // JPEGs can't have an alpha channel, so memory can be saved by storing them as RGB. - var isJPEG = url.search( /\.jpe?g$/i ) > 0 || url.search( /^data\:image\/jpeg/ ) === 0; + if ( typeof currTime === 'number' && isNaN( currTime ) ) { - texture.format = isJPEG ? RGBFormat : RGBAFormat; - texture.needsUpdate = true; + console.error( 'THREE.KeyframeTrack: Time is not a valid number.', this, i, currTime ); + valid = false; + break; - if ( onLoad !== undefined ) { + } - onLoad( texture ); + if ( prevTime !== null && prevTime > currTime ) { + + console.error( 'THREE.KeyframeTrack: Out of order keys.', this, i, currTime, prevTime ); + valid = false; + break; } - }, onProgress, onError ); + prevTime = currTime; - return texture; + } - }, + if ( values !== undefined ) { - setCrossOrigin: function ( value ) { + if ( AnimationUtils.isTypedArray( values ) ) { - this.crossOrigin = value; - return this; + for ( var i = 0, n = values.length; i !== n; ++ i ) { - }, + var value = values[ i ]; - setPath: function ( value ) { + if ( isNaN( value ) ) { - this.path = value; - return this; + console.error( 'THREE.KeyframeTrack: Value is not a valid number.', this, i, value ); + valid = false; + break; - } + } -} ); + } -/** - * @author zz85 / http://www.lab4games.net/zz85/blog - * Extensible curve object - * - * Some common of curve methods: - * .getPoint( t, optionalTarget ), .getTangent( t ) - * .getPointAt( u, optionalTarget ), .getTangentAt( u ) - * .getPoints(), .getSpacedPoints() - * .getLength() - * .updateArcLengths() - * - * This following curves inherit from THREE.Curve: - * - * -- 2D curves -- - * THREE.ArcCurve - * THREE.CubicBezierCurve - * THREE.EllipseCurve - * THREE.LineCurve - * THREE.QuadraticBezierCurve - * THREE.SplineCurve - * - * -- 3D curves -- - * THREE.CatmullRomCurve3 - * THREE.CubicBezierCurve3 - * THREE.LineCurve3 - * THREE.QuadraticBezierCurve3 - * - * A series of curves can be represented as a THREE.CurvePath. - * - **/ + } -/************************************************************** - * Abstract Curve base class - **************************************************************/ + } -function Curve() { + return valid; - this.type = 'Curve'; + }, - this.arcLengthDivisions = 200; + // removes equivalent sequential keys as common in morph target sequences + // (0,0,0,0,1,1,1,0,0,0,0,0,0,0) --> (0,0,1,1,0,0) + optimize: function () { -} + var times = this.times, + values = this.values, + stride = this.getValueSize(), -Object.assign( Curve.prototype, { + smoothInterpolation = this.getInterpolation() === InterpolateSmooth, - // Virtual base class method to overwrite and implement in subclasses - // - t [0 .. 1] + writeIndex = 1, + lastIndex = times.length - 1; - getPoint: function ( /* t, optionalTarget */ ) { + for ( var i = 1; i < lastIndex; ++ i ) { - console.warn( 'THREE.Curve: .getPoint() not implemented.' ); - return null; + var keep = false; - }, + var time = times[ i ]; + var timeNext = times[ i + 1 ]; - // Get point at relative position in curve according to arc length - // - u [0 .. 1] + // remove adjacent keyframes scheduled at the same time - getPointAt: function ( u, optionalTarget ) { + if ( time !== timeNext && ( i !== 1 || time !== time[ 0 ] ) ) { - var t = this.getUtoTmapping( u ); - return this.getPoint( t, optionalTarget ); + if ( ! smoothInterpolation ) { - }, + // remove unnecessary keyframes same as their neighbors - // Get sequence of points using getPoint( t ) + var offset = i * stride, + offsetP = offset - stride, + offsetN = offset + stride; - getPoints: function ( divisions ) { + for ( var j = 0; j !== stride; ++ j ) { - if ( divisions === undefined ) divisions = 5; + var value = values[ offset + j ]; - var points = []; + if ( value !== values[ offsetP + j ] || + value !== values[ offsetN + j ] ) { - for ( var d = 0; d <= divisions; d ++ ) { + keep = true; + break; - points.push( this.getPoint( d / divisions ) ); + } - } + } - return points; + } else { - }, + keep = true; - // Get sequence of points using getPointAt( u ) + } - getSpacedPoints: function ( divisions ) { + } - if ( divisions === undefined ) divisions = 5; + // in-place compaction - var points = []; + if ( keep ) { - for ( var d = 0; d <= divisions; d ++ ) { + if ( i !== writeIndex ) { - points.push( this.getPointAt( d / divisions ) ); + times[ writeIndex ] = times[ i ]; - } + var readOffset = i * stride, + writeOffset = writeIndex * stride; - return points; + for ( var j = 0; j !== stride; ++ j ) { - }, + values[ writeOffset + j ] = values[ readOffset + j ]; - // Get total curve arc length + } - getLength: function () { + } - var lengths = this.getLengths(); - return lengths[ lengths.length - 1 ]; + ++ writeIndex; - }, + } - // Get list of cumulative segment lengths + } - getLengths: function ( divisions ) { + // flush last keyframe (compaction looks ahead) - if ( divisions === undefined ) divisions = this.arcLengthDivisions; + if ( lastIndex > 0 ) { - if ( this.cacheArcLengths && - ( this.cacheArcLengths.length === divisions + 1 ) && - ! this.needsUpdate ) { + times[ writeIndex ] = times[ lastIndex ]; - return this.cacheArcLengths; + for ( var readOffset = lastIndex * stride, writeOffset = writeIndex * stride, j = 0; j !== stride; ++ j ) { - } + values[ writeOffset + j ] = values[ readOffset + j ]; - this.needsUpdate = false; + } - var cache = []; - var current, last = this.getPoint( 0 ); - var p, sum = 0; + ++ writeIndex; - cache.push( 0 ); + } - for ( p = 1; p <= divisions; p ++ ) { + if ( writeIndex !== times.length ) { - current = this.getPoint( p / divisions ); - sum += current.distanceTo( last ); - cache.push( sum ); - last = current; + this.times = AnimationUtils.arraySlice( times, 0, writeIndex ); + this.values = AnimationUtils.arraySlice( values, 0, writeIndex * stride ); } - this.cacheArcLengths = cache; + return this; - return cache; // { sums: cache, sum: sum }; Sum is in the last element. + } - }, +} ); - updateArcLengths: function () { +/** + * + * A Track of Boolean keyframe values. + * + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw + */ - this.needsUpdate = true; - this.getLengths(); +function BooleanKeyframeTrack( name, times, values ) { - }, + KeyframeTrack.call( this, name, times, values ); - // Given u ( 0 .. 1 ), get a t to find p. This gives you points which are equidistant +} - getUtoTmapping: function ( u, distance ) { +BooleanKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { - var arcLengths = this.getLengths(); + constructor: BooleanKeyframeTrack, - var i = 0, il = arcLengths.length; + ValueTypeName: 'bool', + ValueBufferType: Array, - var targetArcLength; // The targeted u distance value to get + DefaultInterpolation: InterpolateDiscrete, - if ( distance ) { + InterpolantFactoryMethodLinear: undefined, + InterpolantFactoryMethodSmooth: undefined - targetArcLength = distance; + // Note: Actually this track could have a optimized / compressed + // representation of a single value and a custom interpolant that + // computes "firstValue ^ isOdd( index )". - } else { +} ); - targetArcLength = u * arcLengths[ il - 1 ]; +/** + * + * A Track of keyframe values that represent color. + * + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw + */ - } +function ColorKeyframeTrack( name, times, values, interpolation ) { - // binary search for the index with largest value smaller than target u distance + KeyframeTrack.call( this, name, times, values, interpolation ); - var low = 0, high = il - 1, comparison; +} - while ( low <= high ) { +ColorKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { - i = Math.floor( low + ( high - low ) / 2 ); // less likely to overflow, though probably not issue here, JS doesn't really have integers, all numbers are floats + constructor: ColorKeyframeTrack, - comparison = arcLengths[ i ] - targetArcLength; + ValueTypeName: 'color' - if ( comparison < 0 ) { + // ValueBufferType is inherited - low = i + 1; + // DefaultInterpolation is inherited - } else if ( comparison > 0 ) { + // Note: Very basic implementation and nothing special yet. + // However, this is the place for color space parameterization. - high = i - 1; +} ); - } else { +/** + * + * A Track of numeric keyframe values. + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw + */ - high = i; - break; +function NumberKeyframeTrack( name, times, values, interpolation ) { - // DONE + KeyframeTrack.call( this, name, times, values, interpolation ); - } +} - } +NumberKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { - i = high; + constructor: NumberKeyframeTrack, - if ( arcLengths[ i ] === targetArcLength ) { + ValueTypeName: 'number' - return i / ( il - 1 ); + // ValueBufferType is inherited - } + // DefaultInterpolation is inherited - // we could get finer grain at lengths, or use simple interpolation between two points +} ); - var lengthBefore = arcLengths[ i ]; - var lengthAfter = arcLengths[ i + 1 ]; +/** + * Spherical linear unit quaternion interpolant. + * + * @author tschw + */ - var segmentLength = lengthAfter - lengthBefore; +function QuaternionLinearInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { - // determine where we are between the 'before' and 'after' points + Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); - var segmentFraction = ( targetArcLength - lengthBefore ) / segmentLength; +} - // add that fractional amount to t +QuaternionLinearInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { - var t = ( i + segmentFraction ) / ( il - 1 ); + constructor: QuaternionLinearInterpolant, - return t; + interpolate_: function ( i1, t0, t, t1 ) { - }, + var result = this.resultBuffer, + values = this.sampleValues, + stride = this.valueSize, - // Returns a unit vector tangent at t - // In case any sub curve does not implement its tangent derivation, - // 2 points a small delta apart will be used to find its gradient - // which seems to give a reasonable approximation + offset = i1 * stride, - getTangent: function ( t ) { + alpha = ( t - t0 ) / ( t1 - t0 ); - var delta = 0.0001; - var t1 = t - delta; - var t2 = t + delta; + for ( var end = offset + stride; offset !== end; offset += 4 ) { - // Capping in case of danger + Quaternion.slerpFlat( result, 0, values, offset - stride, values, offset, alpha ); - if ( t1 < 0 ) t1 = 0; - if ( t2 > 1 ) t2 = 1; + } - var pt1 = this.getPoint( t1 ); - var pt2 = this.getPoint( t2 ); + return result; - var vec = pt2.clone().sub( pt1 ); - return vec.normalize(); + } - }, +} ); - getTangentAt: function ( u ) { +/** + * + * A Track of quaternion keyframe values. + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw + */ - var t = this.getUtoTmapping( u ); - return this.getTangent( t ); +function QuaternionKeyframeTrack( name, times, values, interpolation ) { - }, + KeyframeTrack.call( this, name, times, values, interpolation ); - computeFrenetFrames: function ( segments, closed ) { +} - // see http://www.cs.indiana.edu/pub/techreports/TR425.pdf +QuaternionKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { - var normal = new Vector3(); + constructor: QuaternionKeyframeTrack, - var tangents = []; - var normals = []; - var binormals = []; + ValueTypeName: 'quaternion', - var vec = new Vector3(); - var mat = new Matrix4(); + // ValueBufferType is inherited - var i, u, theta; + DefaultInterpolation: InterpolateLinear, - // compute the tangent vectors for each segment on the curve + InterpolantFactoryMethodLinear: function ( result ) { - for ( i = 0; i <= segments; i ++ ) { + return new QuaternionLinearInterpolant( this.times, this.values, this.getValueSize(), result ); - u = i / segments; + }, - tangents[ i ] = this.getTangentAt( u ); - tangents[ i ].normalize(); + InterpolantFactoryMethodSmooth: undefined // not yet implemented - } +} ); - // select an initial normal vector perpendicular to the first tangent vector, - // and in the direction of the minimum tangent xyz component +/** + * + * A Track that interpolates Strings + * + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw + */ - normals[ 0 ] = new Vector3(); - binormals[ 0 ] = new Vector3(); - var min = Number.MAX_VALUE; - var tx = Math.abs( tangents[ 0 ].x ); - var ty = Math.abs( tangents[ 0 ].y ); - var tz = Math.abs( tangents[ 0 ].z ); +function StringKeyframeTrack( name, times, values, interpolation ) { - if ( tx <= min ) { + KeyframeTrack.call( this, name, times, values, interpolation ); - min = tx; - normal.set( 1, 0, 0 ); +} - } +StringKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { - if ( ty <= min ) { + constructor: StringKeyframeTrack, - min = ty; - normal.set( 0, 1, 0 ); + ValueTypeName: 'string', + ValueBufferType: Array, - } + DefaultInterpolation: InterpolateDiscrete, - if ( tz <= min ) { + InterpolantFactoryMethodLinear: undefined, - normal.set( 0, 0, 1 ); + InterpolantFactoryMethodSmooth: undefined - } +} ); - vec.crossVectors( tangents[ 0 ], normal ).normalize(); +/** + * + * A Track of vectored keyframe values. + * + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + * @author tschw + */ - normals[ 0 ].crossVectors( tangents[ 0 ], vec ); - binormals[ 0 ].crossVectors( tangents[ 0 ], normals[ 0 ] ); +function VectorKeyframeTrack( name, times, values, interpolation ) { + KeyframeTrack.call( this, name, times, values, interpolation ); - // compute the slowly-varying normal and binormal vectors for each segment on the curve +} - for ( i = 1; i <= segments; i ++ ) { +VectorKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { - normals[ i ] = normals[ i - 1 ].clone(); + constructor: VectorKeyframeTrack, - binormals[ i ] = binormals[ i - 1 ].clone(); + ValueTypeName: 'vector' - vec.crossVectors( tangents[ i - 1 ], tangents[ i ] ); + // ValueBufferType is inherited - if ( vec.length() > Number.EPSILON ) { + // DefaultInterpolation is inherited - vec.normalize(); +} ); - theta = Math.acos( _Math.clamp( tangents[ i - 1 ].dot( tangents[ i ] ), - 1, 1 ) ); // clamp for floating pt errors +/** + * + * Reusable set of Tracks that represent an animation. + * + * @author Ben Houston / http://clara.io/ + * @author David Sarno / http://lighthaus.us/ + */ - normals[ i ].applyMatrix4( mat.makeRotationAxis( vec, theta ) ); +function AnimationClip( name, duration, tracks ) { - } + this.name = name; + this.tracks = tracks; + this.duration = ( duration !== undefined ) ? duration : - 1; - binormals[ i ].crossVectors( tangents[ i ], normals[ i ] ); + this.uuid = _Math.generateUUID(); - } + // this means it should figure out its duration by scanning the tracks + if ( this.duration < 0 ) { - // if the curve is closed, postprocess the vectors so the first and last normal vectors are the same + this.resetDuration(); - if ( closed === true ) { + } - theta = Math.acos( _Math.clamp( normals[ 0 ].dot( normals[ segments ] ), - 1, 1 ) ); - theta /= segments; +} - if ( tangents[ 0 ].dot( vec.crossVectors( normals[ 0 ], normals[ segments ] ) ) > 0 ) { +function getTrackTypeForValueTypeName( typeName ) { - theta = - theta; + switch ( typeName.toLowerCase() ) { - } + case 'scalar': + case 'double': + case 'float': + case 'number': + case 'integer': - for ( i = 1; i <= segments; i ++ ) { + return NumberKeyframeTrack; - // twist a little... - normals[ i ].applyMatrix4( mat.makeRotationAxis( tangents[ i ], theta * i ) ); - binormals[ i ].crossVectors( tangents[ i ], normals[ i ] ); + case 'vector': + case 'vector2': + case 'vector3': + case 'vector4': - } + return VectorKeyframeTrack; - } + case 'color': - return { - tangents: tangents, - normals: normals, - binormals: binormals - }; + return ColorKeyframeTrack; - }, + case 'quaternion': - clone: function () { + return QuaternionKeyframeTrack; - return new this.constructor().copy( this ); + case 'bool': + case 'boolean': - }, + return BooleanKeyframeTrack; - copy: function ( source ) { + case 'string': - this.arcLengthDivisions = source.arcLengthDivisions; + return StringKeyframeTrack; - return this; + } - }, + throw new Error( 'THREE.KeyframeTrack: Unsupported typeName: ' + typeName ); - toJSON: function () { +} - var data = { - metadata: { - version: 4.5, - type: 'Curve', - generator: 'Curve.toJSON' - } - }; +function parseKeyframeTrack( json ) { - data.arcLengthDivisions = this.arcLengthDivisions; - data.type = this.type; + if ( json.type === undefined ) { - return data; + throw new Error( 'THREE.KeyframeTrack: track type undefined, can not parse' ); - }, + } - fromJSON: function ( json ) { + var trackType = getTrackTypeForValueTypeName( json.type ); - this.arcLengthDivisions = json.arcLengthDivisions; + if ( json.times === undefined ) { - return this; + var times = [], values = []; + + AnimationUtils.flattenJSON( json.keys, times, values, 'value' ); + + json.times = times; + json.values = values; } -} ); + // derived classes can define a static parse method + if ( trackType.parse !== undefined ) { -function EllipseCurve( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) { + return trackType.parse( json ); - Curve.call( this ); + } else { - this.type = 'EllipseCurve'; + // by default, we assume a constructor compatible with the base + return new trackType( json.name, json.times, json.values, json.interpolation ); - this.aX = aX || 0; - this.aY = aY || 0; + } - this.xRadius = xRadius || 1; - this.yRadius = yRadius || 1; +} - this.aStartAngle = aStartAngle || 0; - this.aEndAngle = aEndAngle || 2 * Math.PI; +Object.assign( AnimationClip, { - this.aClockwise = aClockwise || false; + parse: function ( json ) { - this.aRotation = aRotation || 0; + var tracks = [], + jsonTracks = json.tracks, + frameTime = 1.0 / ( json.fps || 1.0 ); -} + for ( var i = 0, n = jsonTracks.length; i !== n; ++ i ) { -EllipseCurve.prototype = Object.create( Curve.prototype ); -EllipseCurve.prototype.constructor = EllipseCurve; + tracks.push( parseKeyframeTrack( jsonTracks[ i ] ).scale( frameTime ) ); -EllipseCurve.prototype.isEllipseCurve = true; + } -EllipseCurve.prototype.getPoint = function ( t, optionalTarget ) { + return new AnimationClip( json.name, json.duration, tracks ); - var point = optionalTarget || new Vector2(); + }, - var twoPi = Math.PI * 2; - var deltaAngle = this.aEndAngle - this.aStartAngle; - var samePoints = Math.abs( deltaAngle ) < Number.EPSILON; + toJSON: function ( clip ) { - // ensures that deltaAngle is 0 .. 2 PI - while ( deltaAngle < 0 ) deltaAngle += twoPi; - while ( deltaAngle > twoPi ) deltaAngle -= twoPi; + var tracks = [], + clipTracks = clip.tracks; - if ( deltaAngle < Number.EPSILON ) { + var json = { - if ( samePoints ) { + 'name': clip.name, + 'duration': clip.duration, + 'tracks': tracks, + 'uuid': clip.uuid - deltaAngle = 0; + }; - } else { + for ( var i = 0, n = clipTracks.length; i !== n; ++ i ) { - deltaAngle = twoPi; + tracks.push( KeyframeTrack.toJSON( clipTracks[ i ] ) ); } - } + return json; - if ( this.aClockwise === true && ! samePoints ) { + }, - if ( deltaAngle === twoPi ) { + CreateFromMorphTargetSequence: function ( name, morphTargetSequence, fps, noLoop ) { - deltaAngle = - twoPi; + var numMorphTargets = morphTargetSequence.length; + var tracks = []; - } else { + for ( var i = 0; i < numMorphTargets; i ++ ) { - deltaAngle = deltaAngle - twoPi; + var times = []; + var values = []; - } + times.push( + ( i + numMorphTargets - 1 ) % numMorphTargets, + i, + ( i + 1 ) % numMorphTargets ); - } + values.push( 0, 1, 0 ); - var angle = this.aStartAngle + t * deltaAngle; - var x = this.aX + this.xRadius * Math.cos( angle ); - var y = this.aY + this.yRadius * Math.sin( angle ); + var order = AnimationUtils.getKeyframeOrder( times ); + times = AnimationUtils.sortedArray( times, 1, order ); + values = AnimationUtils.sortedArray( values, 1, order ); - if ( this.aRotation !== 0 ) { + // if there is a key at the first frame, duplicate it as the + // last frame as well for perfect loop. + if ( ! noLoop && times[ 0 ] === 0 ) { - var cos = Math.cos( this.aRotation ); - var sin = Math.sin( this.aRotation ); + times.push( numMorphTargets ); + values.push( values[ 0 ] ); - var tx = x - this.aX; - var ty = y - this.aY; + } - // Rotate the point about the center of the ellipse. - x = tx * cos - ty * sin + this.aX; - y = tx * sin + ty * cos + this.aY; + tracks.push( + new NumberKeyframeTrack( + '.morphTargetInfluences[' + morphTargetSequence[ i ].name + ']', + times, values + ).scale( 1.0 / fps ) ); - } + } - return point.set( x, y ); + return new AnimationClip( name, - 1, tracks ); -}; + }, -EllipseCurve.prototype.copy = function ( source ) { + findByName: function ( objectOrClipArray, name ) { - Curve.prototype.copy.call( this, source ); + var clipArray = objectOrClipArray; - this.aX = source.aX; - this.aY = source.aY; + if ( ! Array.isArray( objectOrClipArray ) ) { - this.xRadius = source.xRadius; - this.yRadius = source.yRadius; + var o = objectOrClipArray; + clipArray = o.geometry && o.geometry.animations || o.animations; - this.aStartAngle = source.aStartAngle; - this.aEndAngle = source.aEndAngle; + } - this.aClockwise = source.aClockwise; + for ( var i = 0; i < clipArray.length; i ++ ) { - this.aRotation = source.aRotation; + if ( clipArray[ i ].name === name ) { - return this; + return clipArray[ i ]; -}; + } + } -EllipseCurve.prototype.toJSON = function () { + return null; - var data = Curve.prototype.toJSON.call( this ); + }, - data.aX = this.aX; - data.aY = this.aY; + CreateClipsFromMorphTargetSequences: function ( morphTargets, fps, noLoop ) { - data.xRadius = this.xRadius; - data.yRadius = this.yRadius; + var animationToMorphTargets = {}; - data.aStartAngle = this.aStartAngle; - data.aEndAngle = this.aEndAngle; + // tested with https://regex101.com/ on trick sequences + // such flamingo_flyA_003, flamingo_run1_003, crdeath0059 + var pattern = /^([\w-]*?)([\d]+)$/; - data.aClockwise = this.aClockwise; + // sort morph target names into animation groups based + // patterns like Walk_001, Walk_002, Run_001, Run_002 + for ( var i = 0, il = morphTargets.length; i < il; i ++ ) { - data.aRotation = this.aRotation; + var morphTarget = morphTargets[ i ]; + var parts = morphTarget.name.match( pattern ); - return data; + if ( parts && parts.length > 1 ) { -}; + var name = parts[ 1 ]; -EllipseCurve.prototype.fromJSON = function ( json ) { + var animationMorphTargets = animationToMorphTargets[ name ]; + if ( ! animationMorphTargets ) { - Curve.prototype.fromJSON.call( this, json ); + animationToMorphTargets[ name ] = animationMorphTargets = []; - this.aX = json.aX; - this.aY = json.aY; + } - this.xRadius = json.xRadius; - this.yRadius = json.yRadius; + animationMorphTargets.push( morphTarget ); - this.aStartAngle = json.aStartAngle; - this.aEndAngle = json.aEndAngle; + } - this.aClockwise = json.aClockwise; + } - this.aRotation = json.aRotation; + var clips = []; - return this; + for ( var name in animationToMorphTargets ) { -}; + clips.push( AnimationClip.CreateFromMorphTargetSequence( name, animationToMorphTargets[ name ], fps, noLoop ) ); -function ArcCurve( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) { + } - EllipseCurve.call( this, aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise ); + return clips; - this.type = 'ArcCurve'; + }, -} + // parse the animation.hierarchy format + parseAnimation: function ( animation, bones ) { -ArcCurve.prototype = Object.create( EllipseCurve.prototype ); -ArcCurve.prototype.constructor = ArcCurve; + if ( ! animation ) { -ArcCurve.prototype.isArcCurve = true; + console.error( 'THREE.AnimationClip: No animation in JSONLoader data.' ); + return null; -/** - * @author zz85 https://github.com/zz85 - * - * Centripetal CatmullRom Curve - which is useful for avoiding - * cusps and self-intersections in non-uniform catmull rom curves. - * http://www.cemyuksel.com/research/catmullrom_param/catmullrom.pdf - * - * curve.type accepts centripetal(default), chordal and catmullrom - * curve.tension is used for catmullrom which defaults to 0.5 - */ + } + var addNonemptyTrack = function ( trackType, trackName, animationKeys, propertyName, destTracks ) { -/* -Based on an optimized c++ solution in - - http://stackoverflow.com/questions/9489736/catmull-rom-curve-with-no-cusps-and-no-self-intersections/ - - http://ideone.com/NoEbVM + // only return track if there are actually keys. + if ( animationKeys.length !== 0 ) { -This CubicPoly class could be used for reusing some variables and calculations, -but for three.js curve use, it could be possible inlined and flatten into a single function call -which can be placed in CurveUtils. -*/ + var times = []; + var values = []; -function CubicPoly() { + AnimationUtils.flattenJSON( animationKeys, times, values, propertyName ); - var c0 = 0, c1 = 0, c2 = 0, c3 = 0; + // empty keys are filtered out, so check again + if ( times.length !== 0 ) { - /* - * Compute coefficients for a cubic polynomial - * p(s) = c0 + c1*s + c2*s^2 + c3*s^3 - * such that - * p(0) = x0, p(1) = x1 - * and - * p'(0) = t0, p'(1) = t1. - */ - function init( x0, x1, t0, t1 ) { + destTracks.push( new trackType( trackName, times, values ) ); - c0 = x0; - c1 = t0; - c2 = - 3 * x0 + 3 * x1 - 2 * t0 - t1; - c3 = 2 * x0 - 2 * x1 + t0 + t1; + } - } + } - return { + }; - initCatmullRom: function ( x0, x1, x2, x3, tension ) { + var tracks = []; - init( x1, x2, tension * ( x2 - x0 ), tension * ( x3 - x1 ) ); + var clipName = animation.name || 'default'; + // automatic length determination in AnimationClip. + var duration = animation.length || - 1; + var fps = animation.fps || 30; - }, + var hierarchyTracks = animation.hierarchy || []; - initNonuniformCatmullRom: function ( x0, x1, x2, x3, dt0, dt1, dt2 ) { + for ( var h = 0; h < hierarchyTracks.length; h ++ ) { - // compute tangents when parameterized in [t1,t2] - var t1 = ( x1 - x0 ) / dt0 - ( x2 - x0 ) / ( dt0 + dt1 ) + ( x2 - x1 ) / dt1; - var t2 = ( x2 - x1 ) / dt1 - ( x3 - x1 ) / ( dt1 + dt2 ) + ( x3 - x2 ) / dt2; + var animationKeys = hierarchyTracks[ h ].keys; - // rescale tangents for parametrization in [0,1] - t1 *= dt1; - t2 *= dt1; + // skip empty tracks + if ( ! animationKeys || animationKeys.length === 0 ) continue; - init( x1, x2, t1, t2 ); + // process morph targets + if ( animationKeys[ 0 ].morphTargets ) { - }, + // figure out all morph targets used in this track + var morphTargetNames = {}; - calc: function ( t ) { + for ( var k = 0; k < animationKeys.length; k ++ ) { - var t2 = t * t; - var t3 = t2 * t; - return c0 + c1 * t + c2 * t2 + c3 * t3; + if ( animationKeys[ k ].morphTargets ) { - } + for ( var m = 0; m < animationKeys[ k ].morphTargets.length; m ++ ) { - }; + morphTargetNames[ animationKeys[ k ].morphTargets[ m ] ] = - 1; -} + } -// + } -var tmp = new Vector3(); -var px = new CubicPoly(), py = new CubicPoly(), pz = new CubicPoly(); + } -function CatmullRomCurve3( points, closed, curveType, tension ) { + // create a track for each morph target with all zero + // morphTargetInfluences except for the keys in which + // the morphTarget is named. + for ( var morphTargetName in morphTargetNames ) { - Curve.call( this ); + var times = []; + var values = []; - this.type = 'CatmullRomCurve3'; + for ( var m = 0; m !== animationKeys[ k ].morphTargets.length; ++ m ) { - this.points = points || []; - this.closed = closed || false; - this.curveType = curveType || 'centripetal'; - this.tension = tension || 0.5; + var animationKey = animationKeys[ k ]; -} + times.push( animationKey.time ); + values.push( ( animationKey.morphTarget === morphTargetName ) ? 1 : 0 ); -CatmullRomCurve3.prototype = Object.create( Curve.prototype ); -CatmullRomCurve3.prototype.constructor = CatmullRomCurve3; + } -CatmullRomCurve3.prototype.isCatmullRomCurve3 = true; + tracks.push( new NumberKeyframeTrack( '.morphTargetInfluence[' + morphTargetName + ']', times, values ) ); -CatmullRomCurve3.prototype.getPoint = function ( t, optionalTarget ) { + } - var point = optionalTarget || new Vector3(); + duration = morphTargetNames.length * ( fps || 1.0 ); - var points = this.points; - var l = points.length; + } else { - var p = ( l - ( this.closed ? 0 : 1 ) ) * t; - var intPoint = Math.floor( p ); - var weight = p - intPoint; + // ...assume skeletal animation - if ( this.closed ) { + var boneName = '.bones[' + bones[ h ].name + ']'; - intPoint += intPoint > 0 ? 0 : ( Math.floor( Math.abs( intPoint ) / l ) + 1 ) * l; + addNonemptyTrack( + VectorKeyframeTrack, boneName + '.position', + animationKeys, 'pos', tracks ); - } else if ( weight === 0 && intPoint === l - 1 ) { + addNonemptyTrack( + QuaternionKeyframeTrack, boneName + '.quaternion', + animationKeys, 'rot', tracks ); - intPoint = l - 2; - weight = 1; + addNonemptyTrack( + VectorKeyframeTrack, boneName + '.scale', + animationKeys, 'scl', tracks ); - } + } - var p0, p1, p2, p3; // 4 points + } - if ( this.closed || intPoint > 0 ) { + if ( tracks.length === 0 ) { - p0 = points[ ( intPoint - 1 ) % l ]; + return null; - } else { + } - // extrapolate first point - tmp.subVectors( points[ 0 ], points[ 1 ] ).add( points[ 0 ] ); - p0 = tmp; + var clip = new AnimationClip( clipName, duration, tracks ); + + return clip; } - p1 = points[ intPoint % l ]; - p2 = points[ ( intPoint + 1 ) % l ]; +} ); - if ( this.closed || intPoint + 2 < l ) { +Object.assign( AnimationClip.prototype, { - p3 = points[ ( intPoint + 2 ) % l ]; + resetDuration: function () { - } else { + var tracks = this.tracks, duration = 0; - // extrapolate last point - tmp.subVectors( points[ l - 1 ], points[ l - 2 ] ).add( points[ l - 1 ] ); - p3 = tmp; + for ( var i = 0, n = tracks.length; i !== n; ++ i ) { - } + var track = this.tracks[ i ]; - if ( this.curveType === 'centripetal' || this.curveType === 'chordal' ) { + duration = Math.max( duration, track.times[ track.times.length - 1 ] ); - // init Centripetal / Chordal Catmull-Rom - var pow = this.curveType === 'chordal' ? 0.5 : 0.25; - var dt0 = Math.pow( p0.distanceToSquared( p1 ), pow ); - var dt1 = Math.pow( p1.distanceToSquared( p2 ), pow ); - var dt2 = Math.pow( p2.distanceToSquared( p3 ), pow ); + } - // safety check for repeated points - if ( dt1 < 1e-4 ) dt1 = 1.0; - if ( dt0 < 1e-4 ) dt0 = dt1; - if ( dt2 < 1e-4 ) dt2 = dt1; + this.duration = duration; - px.initNonuniformCatmullRom( p0.x, p1.x, p2.x, p3.x, dt0, dt1, dt2 ); - py.initNonuniformCatmullRom( p0.y, p1.y, p2.y, p3.y, dt0, dt1, dt2 ); - pz.initNonuniformCatmullRom( p0.z, p1.z, p2.z, p3.z, dt0, dt1, dt2 ); + return this; - } else if ( this.curveType === 'catmullrom' ) { + }, - px.initCatmullRom( p0.x, p1.x, p2.x, p3.x, this.tension ); - py.initCatmullRom( p0.y, p1.y, p2.y, p3.y, this.tension ); - pz.initCatmullRom( p0.z, p1.z, p2.z, p3.z, this.tension ); + trim: function () { - } + for ( var i = 0; i < this.tracks.length; i ++ ) { - point.set( - px.calc( weight ), - py.calc( weight ), - pz.calc( weight ) - ); + this.tracks[ i ].trim( 0, this.duration ); - return point; + } -}; - -CatmullRomCurve3.prototype.copy = function ( source ) { - - Curve.prototype.copy.call( this, source ); + return this; - this.points = []; + }, - for ( var i = 0, l = source.points.length; i < l; i ++ ) { + validate: function () { - var point = source.points[ i ]; + var valid = true; - this.points.push( point.clone() ); + for ( var i = 0; i < this.tracks.length; i ++ ) { - } + valid = valid && this.tracks[ i ].validate(); - this.closed = source.closed; - this.curveType = source.curveType; - this.tension = source.tension; + } - return this; + return valid; -}; + }, -CatmullRomCurve3.prototype.toJSON = function () { + optimize: function () { - var data = Curve.prototype.toJSON.call( this ); + for ( var i = 0; i < this.tracks.length; i ++ ) { - data.points = []; + this.tracks[ i ].optimize(); - for ( var i = 0, l = this.points.length; i < l; i ++ ) { + } - var point = this.points[ i ]; - data.points.push( point.toArray() ); + return this; } - data.closed = this.closed; - data.curveType = this.curveType; - data.tension = this.tension; +} ); - return data; +/** + * @author mrdoob / http://mrdoob.com/ + */ -}; +var Cache = { -CatmullRomCurve3.prototype.fromJSON = function ( json ) { + enabled: false, - Curve.prototype.fromJSON.call( this, json ); + files: {}, - this.points = []; + add: function ( key, file ) { - for ( var i = 0, l = json.points.length; i < l; i ++ ) { + if ( this.enabled === false ) return; - var point = json.points[ i ]; - this.points.push( new Vector3().fromArray( point ) ); + // console.log( 'THREE.Cache', 'Adding key:', key ); - } + this.files[ key ] = file; - this.closed = json.closed; - this.curveType = json.curveType; - this.tension = json.tension; + }, - return this; + get: function ( key ) { -}; + if ( this.enabled === false ) return; -/** - * @author zz85 / http://www.lab4games.net/zz85/blog - * - * Bezier Curves formulas obtained from - * http://en.wikipedia.org/wiki/Bézier_curve - */ + // console.log( 'THREE.Cache', 'Checking key:', key ); -function CatmullRom( t, p0, p1, p2, p3 ) { + return this.files[ key ]; - var v0 = ( p2 - p0 ) * 0.5; - var v1 = ( p3 - p1 ) * 0.5; - var t2 = t * t; - var t3 = t * t2; - return ( 2 * p1 - 2 * p2 + v0 + v1 ) * t3 + ( - 3 * p1 + 3 * p2 - 2 * v0 - v1 ) * t2 + v0 * t + p1; + }, -} + remove: function ( key ) { -// + delete this.files[ key ]; -function QuadraticBezierP0( t, p ) { + }, - var k = 1 - t; - return k * k * p; + clear: function () { -} + this.files = {}; -function QuadraticBezierP1( t, p ) { + } - return 2 * ( 1 - t ) * t * p; +}; -} +/** + * @author mrdoob / http://mrdoob.com/ + */ -function QuadraticBezierP2( t, p ) { +function LoadingManager( onLoad, onProgress, onError ) { - return t * t * p; + var scope = this; -} + var isLoading = false; + var itemsLoaded = 0; + var itemsTotal = 0; + var urlModifier = undefined; -function QuadraticBezier( t, p0, p1, p2 ) { + // Refer to #5689 for the reason why we don't set .onStart + // in the constructor - return QuadraticBezierP0( t, p0 ) + QuadraticBezierP1( t, p1 ) + - QuadraticBezierP2( t, p2 ); + this.onStart = undefined; + this.onLoad = onLoad; + this.onProgress = onProgress; + this.onError = onError; -} + this.itemStart = function ( url ) { -// + itemsTotal ++; -function CubicBezierP0( t, p ) { + if ( isLoading === false ) { - var k = 1 - t; - return k * k * k * p; + if ( scope.onStart !== undefined ) { -} + scope.onStart( url, itemsLoaded, itemsTotal ); -function CubicBezierP1( t, p ) { + } - var k = 1 - t; - return 3 * k * k * t * p; + } -} + isLoading = true; -function CubicBezierP2( t, p ) { + }; - return 3 * ( 1 - t ) * t * t * p; + this.itemEnd = function ( url ) { -} + itemsLoaded ++; -function CubicBezierP3( t, p ) { + if ( scope.onProgress !== undefined ) { - return t * t * t * p; + scope.onProgress( url, itemsLoaded, itemsTotal ); -} + } -function CubicBezier( t, p0, p1, p2, p3 ) { + if ( itemsLoaded === itemsTotal ) { - return CubicBezierP0( t, p0 ) + CubicBezierP1( t, p1 ) + CubicBezierP2( t, p2 ) + - CubicBezierP3( t, p3 ); + isLoading = false; -} + if ( scope.onLoad !== undefined ) { -function CubicBezierCurve( v0, v1, v2, v3 ) { + scope.onLoad(); - Curve.call( this ); + } - this.type = 'CubicBezierCurve'; + } - this.v0 = v0 || new Vector2(); - this.v1 = v1 || new Vector2(); - this.v2 = v2 || new Vector2(); - this.v3 = v3 || new Vector2(); + }; -} + this.itemError = function ( url ) { -CubicBezierCurve.prototype = Object.create( Curve.prototype ); -CubicBezierCurve.prototype.constructor = CubicBezierCurve; + if ( scope.onError !== undefined ) { -CubicBezierCurve.prototype.isCubicBezierCurve = true; + scope.onError( url ); -CubicBezierCurve.prototype.getPoint = function ( t, optionalTarget ) { + } - var point = optionalTarget || new Vector2(); + }; - var v0 = this.v0, v1 = this.v1, v2 = this.v2, v3 = this.v3; + this.resolveURL = function ( url ) { - point.set( - CubicBezier( t, v0.x, v1.x, v2.x, v3.x ), - CubicBezier( t, v0.y, v1.y, v2.y, v3.y ) - ); + if ( urlModifier ) { - return point; + return urlModifier( url ); -}; + } -CubicBezierCurve.prototype.copy = function ( source ) { + return url; - Curve.prototype.copy.call( this, source ); + }; - this.v0.copy( source.v0 ); - this.v1.copy( source.v1 ); - this.v2.copy( source.v2 ); - this.v3.copy( source.v3 ); + this.setURLModifier = function ( transform ) { - return this; + urlModifier = transform; + return this; -}; + }; -CubicBezierCurve.prototype.toJSON = function () { +} - var data = Curve.prototype.toJSON.call( this ); +var DefaultLoadingManager = new LoadingManager(); - data.v0 = this.v0.toArray(); - data.v1 = this.v1.toArray(); - data.v2 = this.v2.toArray(); - data.v3 = this.v3.toArray(); +/** + * @author mrdoob / http://mrdoob.com/ + */ - return data; +var loading = {}; -}; +function FileLoader( manager ) { -CubicBezierCurve.prototype.fromJSON = function ( json ) { + this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; - Curve.prototype.fromJSON.call( this, json ); +} - this.v0.fromArray( json.v0 ); - this.v1.fromArray( json.v1 ); - this.v2.fromArray( json.v2 ); - this.v3.fromArray( json.v3 ); +Object.assign( FileLoader.prototype, { - return this; + load: function ( url, onLoad, onProgress, onError ) { -}; + if ( url === undefined ) url = ''; -function CubicBezierCurve3( v0, v1, v2, v3 ) { + if ( this.path !== undefined ) url = this.path + url; - Curve.call( this ); + url = this.manager.resolveURL( url ); - this.type = 'CubicBezierCurve3'; + var scope = this; - this.v0 = v0 || new Vector3(); - this.v1 = v1 || new Vector3(); - this.v2 = v2 || new Vector3(); - this.v3 = v3 || new Vector3(); + var cached = Cache.get( url ); -} + if ( cached !== undefined ) { -CubicBezierCurve3.prototype = Object.create( Curve.prototype ); -CubicBezierCurve3.prototype.constructor = CubicBezierCurve3; + scope.manager.itemStart( url ); -CubicBezierCurve3.prototype.isCubicBezierCurve3 = true; + setTimeout( function () { -CubicBezierCurve3.prototype.getPoint = function ( t, optionalTarget ) { + if ( onLoad ) onLoad( cached ); - var point = optionalTarget || new Vector3(); + scope.manager.itemEnd( url ); - var v0 = this.v0, v1 = this.v1, v2 = this.v2, v3 = this.v3; + }, 0 ); - point.set( - CubicBezier( t, v0.x, v1.x, v2.x, v3.x ), - CubicBezier( t, v0.y, v1.y, v2.y, v3.y ), - CubicBezier( t, v0.z, v1.z, v2.z, v3.z ) - ); + return cached; - return point; + } -}; + // Check if request is duplicate -CubicBezierCurve3.prototype.copy = function ( source ) { + if ( loading[ url ] !== undefined ) { - Curve.prototype.copy.call( this, source ); + loading[ url ].push( { - this.v0.copy( source.v0 ); - this.v1.copy( source.v1 ); - this.v2.copy( source.v2 ); - this.v3.copy( source.v3 ); + onLoad: onLoad, + onProgress: onProgress, + onError: onError - return this; + } ); -}; + return; -CubicBezierCurve3.prototype.toJSON = function () { + } - var data = Curve.prototype.toJSON.call( this ); + // Check for data: URI + var dataUriRegex = /^data:(.*?)(;base64)?,(.*)$/; + var dataUriRegexResult = url.match( dataUriRegex ); - data.v0 = this.v0.toArray(); - data.v1 = this.v1.toArray(); - data.v2 = this.v2.toArray(); - data.v3 = this.v3.toArray(); + // Safari can not handle Data URIs through XMLHttpRequest so process manually + if ( dataUriRegexResult ) { - return data; + var mimeType = dataUriRegexResult[ 1 ]; + var isBase64 = !! dataUriRegexResult[ 2 ]; + var data = dataUriRegexResult[ 3 ]; -}; + data = decodeURIComponent( data ); -CubicBezierCurve3.prototype.fromJSON = function ( json ) { + if ( isBase64 ) data = atob( data ); - Curve.prototype.fromJSON.call( this, json ); + try { - this.v0.fromArray( json.v0 ); - this.v1.fromArray( json.v1 ); - this.v2.fromArray( json.v2 ); - this.v3.fromArray( json.v3 ); + var response; + var responseType = ( this.responseType || '' ).toLowerCase(); - return this; + switch ( responseType ) { -}; + case 'arraybuffer': + case 'blob': -function LineCurve( v1, v2 ) { + var view = new Uint8Array( data.length ); - Curve.call( this ); + for ( var i = 0; i < data.length; i ++ ) { - this.type = 'LineCurve'; + view[ i ] = data.charCodeAt( i ); - this.v1 = v1 || new Vector2(); - this.v2 = v2 || new Vector2(); + } -} + if ( responseType === 'blob' ) { -LineCurve.prototype = Object.create( Curve.prototype ); -LineCurve.prototype.constructor = LineCurve; + response = new Blob( [ view.buffer ], { type: mimeType } ); -LineCurve.prototype.isLineCurve = true; + } else { -LineCurve.prototype.getPoint = function ( t, optionalTarget ) { + response = view.buffer; - var point = optionalTarget || new Vector2(); + } - if ( t === 1 ) { + break; - point.copy( this.v2 ); + case 'document': - } else { + var parser = new DOMParser(); + response = parser.parseFromString( data, mimeType ); - point.copy( this.v2 ).sub( this.v1 ); - point.multiplyScalar( t ).add( this.v1 ); + break; - } + case 'json': - return point; + response = JSON.parse( data ); -}; + break; -// Line curve is linear, so we can overwrite default getPointAt + default: // 'text' or other -LineCurve.prototype.getPointAt = function ( u, optionalTarget ) { + response = data; - return this.getPoint( u, optionalTarget ); + break; -}; + } -LineCurve.prototype.getTangent = function ( /* t */ ) { + // Wait for next browser tick like standard XMLHttpRequest event dispatching does + setTimeout( function () { - var tangent = this.v2.clone().sub( this.v1 ); + if ( onLoad ) onLoad( response ); - return tangent.normalize(); + scope.manager.itemEnd( url ); -}; + }, 0 ); -LineCurve.prototype.copy = function ( source ) { + } catch ( error ) { - Curve.prototype.copy.call( this, source ); + // Wait for next browser tick like standard XMLHttpRequest event dispatching does + setTimeout( function () { - this.v1.copy( source.v1 ); - this.v2.copy( source.v2 ); + if ( onError ) onError( error ); - return this; + scope.manager.itemError( url ); + scope.manager.itemEnd( url ); -}; + }, 0 ); -LineCurve.prototype.toJSON = function () { + } - var data = Curve.prototype.toJSON.call( this ); + } else { - data.v1 = this.v1.toArray(); - data.v2 = this.v2.toArray(); + // Initialise array for duplicate requests - return data; + loading[ url ] = []; -}; + loading[ url ].push( { -LineCurve.prototype.fromJSON = function ( json ) { + onLoad: onLoad, + onProgress: onProgress, + onError: onError - Curve.prototype.fromJSON.call( this, json ); + } ); - this.v1.fromArray( json.v1 ); - this.v2.fromArray( json.v2 ); + var request = new XMLHttpRequest(); - return this; + request.open( 'GET', url, true ); -}; + request.addEventListener( 'load', function ( event ) { -function LineCurve3( v1, v2 ) { + var response = this.response; - Curve.call( this ); + Cache.add( url, response ); - this.type = 'LineCurve3'; + var callbacks = loading[ url ]; - this.v1 = v1 || new Vector3(); - this.v2 = v2 || new Vector3(); + delete loading[ url ]; -} + if ( this.status === 200 || this.status === 0 ) { -LineCurve3.prototype = Object.create( Curve.prototype ); -LineCurve3.prototype.constructor = LineCurve3; + // Some browsers return HTTP Status 0 when using non-http protocol + // e.g. 'file://' or 'data://'. Handle as success. -LineCurve3.prototype.isLineCurve3 = true; + if ( this.status === 0 ) console.warn( 'THREE.FileLoader: HTTP Status 0 received.' ); -LineCurve3.prototype.getPoint = function ( t, optionalTarget ) { + for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - var point = optionalTarget || new Vector3(); + var callback = callbacks[ i ]; + if ( callback.onLoad ) callback.onLoad( response ); - if ( t === 1 ) { + } - point.copy( this.v2 ); + scope.manager.itemEnd( url ); - } else { + } else { - point.copy( this.v2 ).sub( this.v1 ); - point.multiplyScalar( t ).add( this.v1 ); + for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - } + var callback = callbacks[ i ]; + if ( callback.onError ) callback.onError( event ); - return point; + } -}; + scope.manager.itemError( url ); + scope.manager.itemEnd( url ); -// Line curve is linear, so we can overwrite default getPointAt + } -LineCurve3.prototype.getPointAt = function ( u, optionalTarget ) { + }, false ); - return this.getPoint( u, optionalTarget ); + request.addEventListener( 'progress', function ( event ) { -}; + var callbacks = loading[ url ]; -LineCurve3.prototype.copy = function ( source ) { + for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - Curve.prototype.copy.call( this, source ); + var callback = callbacks[ i ]; + if ( callback.onProgress ) callback.onProgress( event ); - this.v1.copy( source.v1 ); - this.v2.copy( source.v2 ); + } - return this; + }, false ); -}; + request.addEventListener( 'error', function ( event ) { -LineCurve3.prototype.toJSON = function () { + var callbacks = loading[ url ]; - var data = Curve.prototype.toJSON.call( this ); + delete loading[ url ]; - data.v1 = this.v1.toArray(); - data.v2 = this.v2.toArray(); + for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - return data; + var callback = callbacks[ i ]; + if ( callback.onError ) callback.onError( event ); -}; + } -LineCurve3.prototype.fromJSON = function ( json ) { + scope.manager.itemError( url ); + scope.manager.itemEnd( url ); - Curve.prototype.fromJSON.call( this, json ); + }, false ); - this.v1.fromArray( json.v1 ); - this.v2.fromArray( json.v2 ); + request.addEventListener( 'abort', function ( event ) { - return this; + var callbacks = loading[ url ]; -}; + delete loading[ url ]; -function QuadraticBezierCurve( v0, v1, v2 ) { + for ( var i = 0, il = callbacks.length; i < il; i ++ ) { - Curve.call( this ); + var callback = callbacks[ i ]; + if ( callback.onError ) callback.onError( event ); - this.type = 'QuadraticBezierCurve'; + } - this.v0 = v0 || new Vector2(); - this.v1 = v1 || new Vector2(); - this.v2 = v2 || new Vector2(); + scope.manager.itemError( url ); + scope.manager.itemEnd( url ); -} + }, false ); -QuadraticBezierCurve.prototype = Object.create( Curve.prototype ); -QuadraticBezierCurve.prototype.constructor = QuadraticBezierCurve; + if ( this.responseType !== undefined ) request.responseType = this.responseType; + if ( this.withCredentials !== undefined ) request.withCredentials = this.withCredentials; -QuadraticBezierCurve.prototype.isQuadraticBezierCurve = true; + if ( request.overrideMimeType ) request.overrideMimeType( this.mimeType !== undefined ? this.mimeType : 'text/plain' ); -QuadraticBezierCurve.prototype.getPoint = function ( t, optionalTarget ) { + for ( var header in this.requestHeader ) { - var point = optionalTarget || new Vector2(); + request.setRequestHeader( header, this.requestHeader[ header ] ); - var v0 = this.v0, v1 = this.v1, v2 = this.v2; + } - point.set( - QuadraticBezier( t, v0.x, v1.x, v2.x ), - QuadraticBezier( t, v0.y, v1.y, v2.y ) - ); - - return point; - -}; + request.send( null ); -QuadraticBezierCurve.prototype.copy = function ( source ) { + } - Curve.prototype.copy.call( this, source ); + scope.manager.itemStart( url ); - this.v0.copy( source.v0 ); - this.v1.copy( source.v1 ); - this.v2.copy( source.v2 ); + return request; - return this; + }, -}; + setPath: function ( value ) { -QuadraticBezierCurve.prototype.toJSON = function () { + this.path = value; + return this; - var data = Curve.prototype.toJSON.call( this ); + }, - data.v0 = this.v0.toArray(); - data.v1 = this.v1.toArray(); - data.v2 = this.v2.toArray(); + setResponseType: function ( value ) { - return data; + this.responseType = value; + return this; -}; + }, -QuadraticBezierCurve.prototype.fromJSON = function ( json ) { + setWithCredentials: function ( value ) { - Curve.prototype.fromJSON.call( this, json ); + this.withCredentials = value; + return this; - this.v0.fromArray( json.v0 ); - this.v1.fromArray( json.v1 ); - this.v2.fromArray( json.v2 ); + }, - return this; + setMimeType: function ( value ) { -}; + this.mimeType = value; + return this; -function QuadraticBezierCurve3( v0, v1, v2 ) { + }, - Curve.call( this ); + setRequestHeader: function ( value ) { - this.type = 'QuadraticBezierCurve3'; + this.requestHeader = value; + return this; - this.v0 = v0 || new Vector3(); - this.v1 = v1 || new Vector3(); - this.v2 = v2 || new Vector3(); + } -} +} ); -QuadraticBezierCurve3.prototype = Object.create( Curve.prototype ); -QuadraticBezierCurve3.prototype.constructor = QuadraticBezierCurve3; +/** + * @author bhouston / http://clara.io/ + */ -QuadraticBezierCurve3.prototype.isQuadraticBezierCurve3 = true; +function AnimationLoader( manager ) { -QuadraticBezierCurve3.prototype.getPoint = function ( t, optionalTarget ) { + this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; - var point = optionalTarget || new Vector3(); +} - var v0 = this.v0, v1 = this.v1, v2 = this.v2; +Object.assign( AnimationLoader.prototype, { - point.set( - QuadraticBezier( t, v0.x, v1.x, v2.x ), - QuadraticBezier( t, v0.y, v1.y, v2.y ), - QuadraticBezier( t, v0.z, v1.z, v2.z ) - ); + load: function ( url, onLoad, onProgress, onError ) { - return point; + var scope = this; -}; + var loader = new FileLoader( scope.manager ); + loader.setPath( scope.path ); + loader.load( url, function ( text ) { -QuadraticBezierCurve3.prototype.copy = function ( source ) { + onLoad( scope.parse( JSON.parse( text ) ) ); - Curve.prototype.copy.call( this, source ); + }, onProgress, onError ); - this.v0.copy( source.v0 ); - this.v1.copy( source.v1 ); - this.v2.copy( source.v2 ); + }, - return this; + parse: function ( json, onLoad ) { -}; + var animations = []; -QuadraticBezierCurve3.prototype.toJSON = function () { + for ( var i = 0; i < json.length; i ++ ) { - var data = Curve.prototype.toJSON.call( this ); + var clip = AnimationClip.parse( json[ i ] ); - data.v0 = this.v0.toArray(); - data.v1 = this.v1.toArray(); - data.v2 = this.v2.toArray(); + animations.push( clip ); - return data; + } -}; + onLoad( animations ); -QuadraticBezierCurve3.prototype.fromJSON = function ( json ) { + }, - Curve.prototype.fromJSON.call( this, json ); + setPath: function ( value ) { - this.v0.fromArray( json.v0 ); - this.v1.fromArray( json.v1 ); - this.v2.fromArray( json.v2 ); + this.path = value; + return this; - return this; + } -}; +} ); -function SplineCurve( points /* array of Vector2 */ ) { +/** + * @author mrdoob / http://mrdoob.com/ + * + * Abstract Base class to block based textures loader (dds, pvr, ...) + */ - Curve.call( this ); +function CompressedTextureLoader( manager ) { - this.type = 'SplineCurve'; + this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; - this.points = points || []; + // override in sub classes + this._parser = null; } -SplineCurve.prototype = Object.create( Curve.prototype ); -SplineCurve.prototype.constructor = SplineCurve; - -SplineCurve.prototype.isSplineCurve = true; - -SplineCurve.prototype.getPoint = function ( t, optionalTarget ) { - - var point = optionalTarget || new Vector2(); +Object.assign( CompressedTextureLoader.prototype, { - var points = this.points; - var p = ( points.length - 1 ) * t; + load: function ( url, onLoad, onProgress, onError ) { - var intPoint = Math.floor( p ); - var weight = p - intPoint; + var scope = this; - var p0 = points[ intPoint === 0 ? intPoint : intPoint - 1 ]; - var p1 = points[ intPoint ]; - var p2 = points[ intPoint > points.length - 2 ? points.length - 1 : intPoint + 1 ]; - var p3 = points[ intPoint > points.length - 3 ? points.length - 1 : intPoint + 2 ]; + var images = []; - point.set( - CatmullRom( weight, p0.x, p1.x, p2.x, p3.x ), - CatmullRom( weight, p0.y, p1.y, p2.y, p3.y ) - ); + var texture = new CompressedTexture(); + texture.image = images; - return point; + var loader = new FileLoader( this.manager ); + loader.setPath( this.path ); + loader.setResponseType( 'arraybuffer' ); -}; + function loadTexture( i ) { -SplineCurve.prototype.copy = function ( source ) { + loader.load( url[ i ], function ( buffer ) { - Curve.prototype.copy.call( this, source ); + var texDatas = scope._parser( buffer, true ); - this.points = []; + images[ i ] = { + width: texDatas.width, + height: texDatas.height, + format: texDatas.format, + mipmaps: texDatas.mipmaps + }; - for ( var i = 0, l = source.points.length; i < l; i ++ ) { + loaded += 1; - var point = source.points[ i ]; + if ( loaded === 6 ) { - this.points.push( point.clone() ); + if ( texDatas.mipmapCount === 1 ) + texture.minFilter = LinearFilter; - } + texture.format = texDatas.format; + texture.needsUpdate = true; - return this; + if ( onLoad ) onLoad( texture ); -}; + } -SplineCurve.prototype.toJSON = function () { + }, onProgress, onError ); - var data = Curve.prototype.toJSON.call( this ); + } - data.points = []; + if ( Array.isArray( url ) ) { - for ( var i = 0, l = this.points.length; i < l; i ++ ) { + var loaded = 0; - var point = this.points[ i ]; - data.points.push( point.toArray() ); + for ( var i = 0, il = url.length; i < il; ++ i ) { - } + loadTexture( i ); - return data; + } -}; + } else { -SplineCurve.prototype.fromJSON = function ( json ) { + // compressed cubemap texture stored in a single DDS file - Curve.prototype.fromJSON.call( this, json ); + loader.load( url, function ( buffer ) { - this.points = []; + var texDatas = scope._parser( buffer, true ); - for ( var i = 0, l = json.points.length; i < l; i ++ ) { + if ( texDatas.isCubemap ) { - var point = json.points[ i ]; - this.points.push( new Vector2().fromArray( point ) ); + var faces = texDatas.mipmaps.length / texDatas.mipmapCount; - } + for ( var f = 0; f < faces; f ++ ) { - return this; + images[ f ] = { mipmaps: [] }; -}; + for ( var i = 0; i < texDatas.mipmapCount; i ++ ) { + images[ f ].mipmaps.push( texDatas.mipmaps[ f * texDatas.mipmapCount + i ] ); + images[ f ].format = texDatas.format; + images[ f ].width = texDatas.width; + images[ f ].height = texDatas.height; + } -var Curves = /*#__PURE__*/Object.freeze({ - ArcCurve: ArcCurve, - CatmullRomCurve3: CatmullRomCurve3, - CubicBezierCurve: CubicBezierCurve, - CubicBezierCurve3: CubicBezierCurve3, - EllipseCurve: EllipseCurve, - LineCurve: LineCurve, - LineCurve3: LineCurve3, - QuadraticBezierCurve: QuadraticBezierCurve, - QuadraticBezierCurve3: QuadraticBezierCurve3, - SplineCurve: SplineCurve -}); + } -/** - * @author zz85 / http://www.lab4games.net/zz85/blog - * - **/ + } else { -/************************************************************** - * Curved Path - a curve path is simply a array of connected - * curves, but retains the api of a curve - **************************************************************/ + texture.image.width = texDatas.width; + texture.image.height = texDatas.height; + texture.mipmaps = texDatas.mipmaps; -function CurvePath() { + } - Curve.call( this ); + if ( texDatas.mipmapCount === 1 ) { - this.type = 'CurvePath'; + texture.minFilter = LinearFilter; - this.curves = []; - this.autoClose = false; // Automatically closes the path + } -} + texture.format = texDatas.format; + texture.needsUpdate = true; -CurvePath.prototype = Object.assign( Object.create( Curve.prototype ), { + if ( onLoad ) onLoad( texture ); - constructor: CurvePath, + }, onProgress, onError ); - add: function ( curve ) { + } - this.curves.push( curve ); + return texture; }, - closePath: function () { - - // Add a line curve if start and end of lines are not connected - var startPoint = this.curves[ 0 ].getPoint( 0 ); - var endPoint = this.curves[ this.curves.length - 1 ].getPoint( 1 ); - - if ( ! startPoint.equals( endPoint ) ) { + setPath: function ( value ) { - this.curves.push( new LineCurve( endPoint, startPoint ) ); + this.path = value; + return this; - } + } - }, +} ); - // To get accurate point with reference to - // entire path distance at time t, - // following has to be done: +/** + * @author Nikos M. / https://github.com/foo123/ + * + * Abstract Base class to load generic binary textures formats (rgbe, hdr, ...) + */ - // 1. Length of each sub path have to be known - // 2. Locate and identify type of curve - // 3. Get t for the curve - // 4. Return curve.getPointAt(t') +function DataTextureLoader( manager ) { - getPoint: function ( t ) { + this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; - var d = t * this.getLength(); - var curveLengths = this.getCurveLengths(); - var i = 0; + // override in sub classes + this._parser = null; - // To think about boundaries points. +} - while ( i < curveLengths.length ) { +Object.assign( DataTextureLoader.prototype, { - if ( curveLengths[ i ] >= d ) { + load: function ( url, onLoad, onProgress, onError ) { - var diff = curveLengths[ i ] - d; - var curve = this.curves[ i ]; + var scope = this; - var segmentLength = curve.getLength(); - var u = segmentLength === 0 ? 0 : 1 - diff / segmentLength; + var texture = new DataTexture(); - return curve.getPointAt( u ); + var loader = new FileLoader( this.manager ); + loader.setResponseType( 'arraybuffer' ); + loader.setPath( this.path ); + loader.load( url, function ( buffer ) { - } + var texData = scope._parser( buffer ); - i ++; + if ( ! texData ) return; - } + if ( texData.image !== undefined ) { - return null; + texture.image = texData.image; - // loop where sum != 0, sum > d , sum+1 1 && ! points[ points.length - 1 ].equals( points[ 0 ] ) ) { + }, 0 ); - points.push( points[ 0 ] ); + return cached; } - return points; - - }, - - copy: function ( source ) { + var image = document.createElementNS( 'http://www.w3.org/1999/xhtml', 'img' ); - Curve.prototype.copy.call( this, source ); + function onImageLoad() { - this.curves = []; + image.removeEventListener( 'load', onImageLoad, false ); + image.removeEventListener( 'error', onImageError, false ); - for ( var i = 0, l = source.curves.length; i < l; i ++ ) { + Cache.add( url, this ); - var curve = source.curves[ i ]; + if ( onLoad ) onLoad( this ); - this.curves.push( curve.clone() ); + scope.manager.itemEnd( url ); } - this.autoClose = source.autoClose; + function onImageError( event ) { - return this; + image.removeEventListener( 'load', onImageLoad, false ); + image.removeEventListener( 'error', onImageError, false ); - }, + if ( onError ) onError( event ); - toJSON: function () { + scope.manager.itemError( url ); + scope.manager.itemEnd( url ); - var data = Curve.prototype.toJSON.call( this ); + } - data.autoClose = this.autoClose; - data.curves = []; + image.addEventListener( 'load', onImageLoad, false ); + image.addEventListener( 'error', onImageError, false ); - for ( var i = 0, l = this.curves.length; i < l; i ++ ) { + if ( url.substr( 0, 5 ) !== 'data:' ) { - var curve = this.curves[ i ]; - data.curves.push( curve.toJSON() ); + if ( this.crossOrigin !== undefined ) image.crossOrigin = this.crossOrigin; } - return data; + scope.manager.itemStart( url ); - }, + image.src = url; - fromJSON: function ( json ) { + return image; - Curve.prototype.fromJSON.call( this, json ); + }, - this.autoClose = json.autoClose; - this.curves = []; + setCrossOrigin: function ( value ) { - for ( var i = 0, l = json.curves.length; i < l; i ++ ) { + this.crossOrigin = value; + return this; - var curve = json.curves[ i ]; - this.curves.push( new Curves[ curve.type ]().fromJSON( curve ) ); + }, - } + setPath: function ( value ) { + this.path = value; return this; } @@ -34562,172 +34485,131 @@ CurvePath.prototype = Object.assign( Object.create( Curve.prototype ), { } ); /** - * @author zz85 / http://www.lab4games.net/zz85/blog - * Creates free form 2d path using series of points, lines or curves. - **/ + * @author mrdoob / http://mrdoob.com/ + */ -function Path( points ) { - CurvePath.call( this ); +function CubeTextureLoader( manager ) { - this.type = 'Path'; + this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; - this.currentPoint = new Vector2(); +} - if ( points ) { +Object.assign( CubeTextureLoader.prototype, { - this.setFromPoints( points ); + crossOrigin: 'anonymous', - } + load: function ( urls, onLoad, onProgress, onError ) { -} - -Path.prototype = Object.assign( Object.create( CurvePath.prototype ), { - - constructor: Path, - - setFromPoints: function ( points ) { + var texture = new CubeTexture(); - this.moveTo( points[ 0 ].x, points[ 0 ].y ); + var loader = new ImageLoader( this.manager ); + loader.setCrossOrigin( this.crossOrigin ); + loader.setPath( this.path ); - for ( var i = 1, l = points.length; i < l; i ++ ) { + var loaded = 0; - this.lineTo( points[ i ].x, points[ i ].y ); + function loadTexture( i ) { - } + loader.load( urls[ i ], function ( image ) { - }, + texture.images[ i ] = image; - moveTo: function ( x, y ) { + loaded ++; - this.currentPoint.set( x, y ); // TODO consider referencing vectors instead of copying? + if ( loaded === 6 ) { - }, + texture.needsUpdate = true; - lineTo: function ( x, y ) { + if ( onLoad ) onLoad( texture ); - var curve = new LineCurve( this.currentPoint.clone(), new Vector2( x, y ) ); - this.curves.push( curve ); + } - this.currentPoint.set( x, y ); + }, undefined, onError ); - }, + } - quadraticCurveTo: function ( aCPx, aCPy, aX, aY ) { + for ( var i = 0; i < urls.length; ++ i ) { - var curve = new QuadraticBezierCurve( - this.currentPoint.clone(), - new Vector2( aCPx, aCPy ), - new Vector2( aX, aY ) - ); + loadTexture( i ); - this.curves.push( curve ); + } - this.currentPoint.set( aX, aY ); + return texture; }, - bezierCurveTo: function ( aCP1x, aCP1y, aCP2x, aCP2y, aX, aY ) { - - var curve = new CubicBezierCurve( - this.currentPoint.clone(), - new Vector2( aCP1x, aCP1y ), - new Vector2( aCP2x, aCP2y ), - new Vector2( aX, aY ) - ); - - this.curves.push( curve ); + setCrossOrigin: function ( value ) { - this.currentPoint.set( aX, aY ); + this.crossOrigin = value; + return this; }, - splineThru: function ( pts /*Array of Vector*/ ) { - - var npts = [ this.currentPoint.clone() ].concat( pts ); - - var curve = new SplineCurve( npts ); - this.curves.push( curve ); + setPath: function ( value ) { - this.currentPoint.copy( pts[ pts.length - 1 ] ); + this.path = value; + return this; - }, + } - arc: function ( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) { +} ); - var x0 = this.currentPoint.x; - var y0 = this.currentPoint.y; +/** + * @author mrdoob / http://mrdoob.com/ + */ - this.absarc( aX + x0, aY + y0, aRadius, - aStartAngle, aEndAngle, aClockwise ); - }, +function TextureLoader( manager ) { - absarc: function ( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) { + this.manager = ( manager !== undefined ) ? manager : DefaultLoadingManager; - this.absellipse( aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise ); +} - }, +Object.assign( TextureLoader.prototype, { - ellipse: function ( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) { + crossOrigin: 'anonymous', - var x0 = this.currentPoint.x; - var y0 = this.currentPoint.y; + load: function ( url, onLoad, onProgress, onError ) { - this.absellipse( aX + x0, aY + y0, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ); + var texture = new Texture(); - }, + var loader = new ImageLoader( this.manager ); + loader.setCrossOrigin( this.crossOrigin ); + loader.setPath( this.path ); - absellipse: function ( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) { + loader.load( url, function ( image ) { - var curve = new EllipseCurve( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ); + texture.image = image; - if ( this.curves.length > 0 ) { + // JPEGs can't have an alpha channel, so memory can be saved by storing them as RGB. + var isJPEG = url.search( /\.jpe?g$/i ) > 0 || url.search( /^data\:image\/jpeg/ ) === 0; - // if a previous curve is present, attempt to join - var firstPoint = curve.getPoint( 0 ); + texture.format = isJPEG ? RGBFormat : RGBAFormat; + texture.needsUpdate = true; - if ( ! firstPoint.equals( this.currentPoint ) ) { + if ( onLoad !== undefined ) { - this.lineTo( firstPoint.x, firstPoint.y ); + onLoad( texture ); } - } - - this.curves.push( curve ); + }, onProgress, onError ); - var lastPoint = curve.getPoint( 1 ); - this.currentPoint.copy( lastPoint ); + return texture; }, - copy: function ( source ) { - - CurvePath.prototype.copy.call( this, source ); - - this.currentPoint.copy( source.currentPoint ); + setCrossOrigin: function ( value ) { + this.crossOrigin = value; return this; }, - toJSON: function () { - - var data = CurvePath.prototype.toJSON.call( this ); - - data.currentPoint = this.currentPoint.toArray(); - - return data; - - }, - - fromJSON: function ( json ) { - - CurvePath.prototype.fromJSON.call( this, json ); - - this.currentPoint.fromArray( json.currentPoint ); + setPath: function ( value ) { + this.path = value; return this; } @@ -34736,416 +34618,416 @@ Path.prototype = Object.assign( Object.create( CurvePath.prototype ), { /** * @author zz85 / http://www.lab4games.net/zz85/blog - * Defines a 2d shape plane using paths. + * Extensible curve object + * + * Some common of curve methods: + * .getPoint( t, optionalTarget ), .getTangent( t ) + * .getPointAt( u, optionalTarget ), .getTangentAt( u ) + * .getPoints(), .getSpacedPoints() + * .getLength() + * .updateArcLengths() + * + * This following curves inherit from THREE.Curve: + * + * -- 2D curves -- + * THREE.ArcCurve + * THREE.CubicBezierCurve + * THREE.EllipseCurve + * THREE.LineCurve + * THREE.QuadraticBezierCurve + * THREE.SplineCurve + * + * -- 3D curves -- + * THREE.CatmullRomCurve3 + * THREE.CubicBezierCurve3 + * THREE.LineCurve3 + * THREE.QuadraticBezierCurve3 + * + * A series of curves can be represented as a THREE.CurvePath. + * **/ -// STEP 1 Create a path. -// STEP 2 Turn path into shape. -// STEP 3 ExtrudeGeometry takes in Shape/Shapes -// STEP 3a - Extract points from each shape, turn to vertices -// STEP 3b - Triangulate each shape, add faces. - -function Shape( points ) { - - Path.call( this, points ); +/************************************************************** + * Abstract Curve base class + **************************************************************/ - this.uuid = _Math.generateUUID(); +function Curve() { - this.type = 'Shape'; + this.type = 'Curve'; - this.holes = []; + this.arcLengthDivisions = 200; } -Shape.prototype = Object.assign( Object.create( Path.prototype ), { +Object.assign( Curve.prototype, { - constructor: Shape, + // Virtual base class method to overwrite and implement in subclasses + // - t [0 .. 1] - getPointsHoles: function ( divisions ) { + getPoint: function ( /* t, optionalTarget */ ) { - var holesPts = []; + console.warn( 'THREE.Curve: .getPoint() not implemented.' ); + return null; - for ( var i = 0, l = this.holes.length; i < l; i ++ ) { + }, - holesPts[ i ] = this.holes[ i ].getPoints( divisions ); + // Get point at relative position in curve according to arc length + // - u [0 .. 1] - } + getPointAt: function ( u, optionalTarget ) { - return holesPts; + var t = this.getUtoTmapping( u ); + return this.getPoint( t, optionalTarget ); }, - // get points of shape and holes (keypoints based on segments parameter) - - extractPoints: function ( divisions ) { + // Get sequence of points using getPoint( t ) - return { + getPoints: function ( divisions ) { - shape: this.getPoints( divisions ), - holes: this.getPointsHoles( divisions ) + if ( divisions === undefined ) divisions = 5; - }; + var points = []; - }, + for ( var d = 0; d <= divisions; d ++ ) { - copy: function ( source ) { + points.push( this.getPoint( d / divisions ) ); - Path.prototype.copy.call( this, source ); + } - this.holes = []; + return points; - for ( var i = 0, l = source.holes.length; i < l; i ++ ) { + }, - var hole = source.holes[ i ]; + // Get sequence of points using getPointAt( u ) - this.holes.push( hole.clone() ); + getSpacedPoints: function ( divisions ) { - } + if ( divisions === undefined ) divisions = 5; - return this; + var points = []; - }, + for ( var d = 0; d <= divisions; d ++ ) { - toJSON: function () { + points.push( this.getPointAt( d / divisions ) ); - var data = Path.prototype.toJSON.call( this ); + } - data.uuid = this.uuid; - data.holes = []; + return points; - for ( var i = 0, l = this.holes.length; i < l; i ++ ) { + }, - var hole = this.holes[ i ]; - data.holes.push( hole.toJSON() ); + // Get total curve arc length - } + getLength: function () { - return data; + var lengths = this.getLengths(); + return lengths[ lengths.length - 1 ]; }, - fromJSON: function ( json ) { + // Get list of cumulative segment lengths - Path.prototype.fromJSON.call( this, json ); + getLengths: function ( divisions ) { - this.uuid = json.uuid; - this.holes = []; + if ( divisions === undefined ) divisions = this.arcLengthDivisions; - for ( var i = 0, l = json.holes.length; i < l; i ++ ) { + if ( this.cacheArcLengths && + ( this.cacheArcLengths.length === divisions + 1 ) && + ! this.needsUpdate ) { - var hole = json.holes[ i ]; - this.holes.push( new Path().fromJSON( hole ) ); + return this.cacheArcLengths; } - return this; - - } + this.needsUpdate = false; -} ); + var cache = []; + var current, last = this.getPoint( 0 ); + var p, sum = 0; -/** - * @author mrdoob / http://mrdoob.com/ - * @author alteredq / http://alteredqualia.com/ - */ + cache.push( 0 ); -function Light( color, intensity ) { + for ( p = 1; p <= divisions; p ++ ) { - Object3D.call( this ); + current = this.getPoint( p / divisions ); + sum += current.distanceTo( last ); + cache.push( sum ); + last = current; - this.type = 'Light'; + } - this.color = new Color( color ); - this.intensity = intensity !== undefined ? intensity : 1; + this.cacheArcLengths = cache; - this.receiveShadow = undefined; + return cache; // { sums: cache, sum: sum }; Sum is in the last element. -} + }, -Light.prototype = Object.assign( Object.create( Object3D.prototype ), { + updateArcLengths: function () { - constructor: Light, + this.needsUpdate = true; + this.getLengths(); - isLight: true, + }, - copy: function ( source ) { + // Given u ( 0 .. 1 ), get a t to find p. This gives you points which are equidistant - Object3D.prototype.copy.call( this, source ); + getUtoTmapping: function ( u, distance ) { - this.color.copy( source.color ); - this.intensity = source.intensity; + var arcLengths = this.getLengths(); - return this; + var i = 0, il = arcLengths.length; - }, + var targetArcLength; // The targeted u distance value to get - toJSON: function ( meta ) { + if ( distance ) { - var data = Object3D.prototype.toJSON.call( this, meta ); + targetArcLength = distance; - data.object.color = this.color.getHex(); - data.object.intensity = this.intensity; + } else { - if ( this.groundColor !== undefined ) data.object.groundColor = this.groundColor.getHex(); + targetArcLength = u * arcLengths[ il - 1 ]; - if ( this.distance !== undefined ) data.object.distance = this.distance; - if ( this.angle !== undefined ) data.object.angle = this.angle; - if ( this.decay !== undefined ) data.object.decay = this.decay; - if ( this.penumbra !== undefined ) data.object.penumbra = this.penumbra; + } - if ( this.shadow !== undefined ) data.object.shadow = this.shadow.toJSON(); + // binary search for the index with largest value smaller than target u distance - return data; + var low = 0, high = il - 1, comparison; - } + while ( low <= high ) { -} ); + i = Math.floor( low + ( high - low ) / 2 ); // less likely to overflow, though probably not issue here, JS doesn't really have integers, all numbers are floats -/** - * @author alteredq / http://alteredqualia.com/ - */ + comparison = arcLengths[ i ] - targetArcLength; -function HemisphereLight( skyColor, groundColor, intensity ) { + if ( comparison < 0 ) { - Light.call( this, skyColor, intensity ); + low = i + 1; - this.type = 'HemisphereLight'; + } else if ( comparison > 0 ) { - this.castShadow = undefined; + high = i - 1; - this.position.copy( Object3D.DefaultUp ); - this.updateMatrix(); + } else { - this.groundColor = new Color( groundColor ); + high = i; + break; -} + // DONE -HemisphereLight.prototype = Object.assign( Object.create( Light.prototype ), { + } - constructor: HemisphereLight, + } - isHemisphereLight: true, + i = high; - copy: function ( source ) { + if ( arcLengths[ i ] === targetArcLength ) { - Light.prototype.copy.call( this, source ); + return i / ( il - 1 ); - this.groundColor.copy( source.groundColor ); + } - return this; + // we could get finer grain at lengths, or use simple interpolation between two points - } + var lengthBefore = arcLengths[ i ]; + var lengthAfter = arcLengths[ i + 1 ]; -} ); + var segmentLength = lengthAfter - lengthBefore; -/** - * @author mrdoob / http://mrdoob.com/ - */ + // determine where we are between the 'before' and 'after' points -function LightShadow( camera ) { + var segmentFraction = ( targetArcLength - lengthBefore ) / segmentLength; - this.camera = camera; + // add that fractional amount to t - this.bias = 0; - this.radius = 1; + var t = ( i + segmentFraction ) / ( il - 1 ); - this.mapSize = new Vector2( 512, 512 ); + return t; - this.map = null; - this.matrix = new Matrix4(); + }, -} + // Returns a unit vector tangent at t + // In case any sub curve does not implement its tangent derivation, + // 2 points a small delta apart will be used to find its gradient + // which seems to give a reasonable approximation -Object.assign( LightShadow.prototype, { + getTangent: function ( t ) { - copy: function ( source ) { + var delta = 0.0001; + var t1 = t - delta; + var t2 = t + delta; - this.camera = source.camera.clone(); + // Capping in case of danger - this.bias = source.bias; - this.radius = source.radius; + if ( t1 < 0 ) t1 = 0; + if ( t2 > 1 ) t2 = 1; - this.mapSize.copy( source.mapSize ); + var pt1 = this.getPoint( t1 ); + var pt2 = this.getPoint( t2 ); - return this; + var vec = pt2.clone().sub( pt1 ); + return vec.normalize(); }, - clone: function () { + getTangentAt: function ( u ) { - return new this.constructor().copy( this ); + var t = this.getUtoTmapping( u ); + return this.getTangent( t ); }, - toJSON: function () { - - var object = {}; + computeFrenetFrames: function ( segments, closed ) { - if ( this.bias !== 0 ) object.bias = this.bias; - if ( this.radius !== 1 ) object.radius = this.radius; - if ( this.mapSize.x !== 512 || this.mapSize.y !== 512 ) object.mapSize = this.mapSize.toArray(); + // see http://www.cs.indiana.edu/pub/techreports/TR425.pdf - object.camera = this.camera.toJSON( false ).object; - delete object.camera.matrix; + var normal = new Vector3(); - return object; + var tangents = []; + var normals = []; + var binormals = []; - } + var vec = new Vector3(); + var mat = new Matrix4(); -} ); + var i, u, theta; -/** - * @author mrdoob / http://mrdoob.com/ - */ + // compute the tangent vectors for each segment on the curve -function SpotLightShadow() { + for ( i = 0; i <= segments; i ++ ) { - LightShadow.call( this, new PerspectiveCamera( 50, 1, 0.5, 500 ) ); + u = i / segments; -} + tangents[ i ] = this.getTangentAt( u ); + tangents[ i ].normalize(); -SpotLightShadow.prototype = Object.assign( Object.create( LightShadow.prototype ), { + } - constructor: SpotLightShadow, + // select an initial normal vector perpendicular to the first tangent vector, + // and in the direction of the minimum tangent xyz component - isSpotLightShadow: true, + normals[ 0 ] = new Vector3(); + binormals[ 0 ] = new Vector3(); + var min = Number.MAX_VALUE; + var tx = Math.abs( tangents[ 0 ].x ); + var ty = Math.abs( tangents[ 0 ].y ); + var tz = Math.abs( tangents[ 0 ].z ); - update: function ( light ) { + if ( tx <= min ) { - var camera = this.camera; + min = tx; + normal.set( 1, 0, 0 ); - var fov = _Math.RAD2DEG * 2 * light.angle; - var aspect = this.mapSize.width / this.mapSize.height; - var far = light.distance || camera.far; + } - if ( fov !== camera.fov || aspect !== camera.aspect || far !== camera.far ) { + if ( ty <= min ) { - camera.fov = fov; - camera.aspect = aspect; - camera.far = far; - camera.updateProjectionMatrix(); + min = ty; + normal.set( 0, 1, 0 ); } - } + if ( tz <= min ) { -} ); + normal.set( 0, 0, 1 ); -/** - * @author alteredq / http://alteredqualia.com/ - */ + } -function SpotLight( color, intensity, distance, angle, penumbra, decay ) { + vec.crossVectors( tangents[ 0 ], normal ).normalize(); - Light.call( this, color, intensity ); + normals[ 0 ].crossVectors( tangents[ 0 ], vec ); + binormals[ 0 ].crossVectors( tangents[ 0 ], normals[ 0 ] ); - this.type = 'SpotLight'; - this.position.copy( Object3D.DefaultUp ); - this.updateMatrix(); + // compute the slowly-varying normal and binormal vectors for each segment on the curve - this.target = new Object3D(); + for ( i = 1; i <= segments; i ++ ) { - Object.defineProperty( this, 'power', { - get: function () { + normals[ i ] = normals[ i - 1 ].clone(); - // intensity = power per solid angle. - // ref: equation (17) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf - return this.intensity * Math.PI; - - }, - set: function ( power ) { - - // intensity = power per solid angle. - // ref: equation (17) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf - this.intensity = power / Math.PI; - - } - } ); + binormals[ i ] = binormals[ i - 1 ].clone(); - this.distance = ( distance !== undefined ) ? distance : 0; - this.angle = ( angle !== undefined ) ? angle : Math.PI / 3; - this.penumbra = ( penumbra !== undefined ) ? penumbra : 0; - this.decay = ( decay !== undefined ) ? decay : 1; // for physically correct lights, should be 2. + vec.crossVectors( tangents[ i - 1 ], tangents[ i ] ); - this.shadow = new SpotLightShadow(); + if ( vec.length() > Number.EPSILON ) { -} + vec.normalize(); -SpotLight.prototype = Object.assign( Object.create( Light.prototype ), { + theta = Math.acos( _Math.clamp( tangents[ i - 1 ].dot( tangents[ i ] ), - 1, 1 ) ); // clamp for floating pt errors - constructor: SpotLight, + normals[ i ].applyMatrix4( mat.makeRotationAxis( vec, theta ) ); - isSpotLight: true, + } - copy: function ( source ) { + binormals[ i ].crossVectors( tangents[ i ], normals[ i ] ); - Light.prototype.copy.call( this, source ); + } - this.distance = source.distance; - this.angle = source.angle; - this.penumbra = source.penumbra; - this.decay = source.decay; + // if the curve is closed, postprocess the vectors so the first and last normal vectors are the same - this.target = source.target.clone(); + if ( closed === true ) { - this.shadow = source.shadow.clone(); + theta = Math.acos( _Math.clamp( normals[ 0 ].dot( normals[ segments ] ), - 1, 1 ) ); + theta /= segments; - return this; + if ( tangents[ 0 ].dot( vec.crossVectors( normals[ 0 ], normals[ segments ] ) ) > 0 ) { - } + theta = - theta; -} ); + } -/** - * @author mrdoob / http://mrdoob.com/ - */ + for ( i = 1; i <= segments; i ++ ) { + // twist a little... + normals[ i ].applyMatrix4( mat.makeRotationAxis( tangents[ i ], theta * i ) ); + binormals[ i ].crossVectors( tangents[ i ], normals[ i ] ); -function PointLight( color, intensity, distance, decay ) { + } - Light.call( this, color, intensity ); + } - this.type = 'PointLight'; + return { + tangents: tangents, + normals: normals, + binormals: binormals + }; - Object.defineProperty( this, 'power', { - get: function () { + }, - // intensity = power per solid angle. - // ref: equation (15) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf - return this.intensity * 4 * Math.PI; + clone: function () { - }, - set: function ( power ) { + return new this.constructor().copy( this ); - // intensity = power per solid angle. - // ref: equation (15) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf - this.intensity = power / ( 4 * Math.PI ); + }, - } - } ); + copy: function ( source ) { - this.distance = ( distance !== undefined ) ? distance : 0; - this.decay = ( decay !== undefined ) ? decay : 1; // for physically correct lights, should be 2. + this.arcLengthDivisions = source.arcLengthDivisions; - this.shadow = new LightShadow( new PerspectiveCamera( 90, 1, 0.5, 500 ) ); + return this; -} + }, -PointLight.prototype = Object.assign( Object.create( Light.prototype ), { + toJSON: function () { - constructor: PointLight, + var data = { + metadata: { + version: 4.5, + type: 'Curve', + generator: 'Curve.toJSON' + } + }; - isPointLight: true, + data.arcLengthDivisions = this.arcLengthDivisions; + data.type = this.type; - copy: function ( source ) { + return data; - Light.prototype.copy.call( this, source ); + }, - this.distance = source.distance; - this.decay = source.decay; + fromJSON: function ( json ) { - this.shadow = source.shadow.clone(); + this.arcLengthDivisions = json.arcLengthDivisions; return this; @@ -35153,1344 +35035,1471 @@ PointLight.prototype = Object.assign( Object.create( Light.prototype ), { } ); -/** - * @author alteredq / http://alteredqualia.com/ - * @author arose / http://github.com/arose - */ +function EllipseCurve( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) { -function OrthographicCamera( left, right, top, bottom, near, far ) { + Curve.call( this ); - Camera.call( this ); + this.type = 'EllipseCurve'; - this.type = 'OrthographicCamera'; + this.aX = aX || 0; + this.aY = aY || 0; - this.zoom = 1; - this.view = null; + this.xRadius = xRadius || 1; + this.yRadius = yRadius || 1; - this.left = left; - this.right = right; - this.top = top; - this.bottom = bottom; + this.aStartAngle = aStartAngle || 0; + this.aEndAngle = aEndAngle || 2 * Math.PI; - this.near = ( near !== undefined ) ? near : 0.1; - this.far = ( far !== undefined ) ? far : 2000; + this.aClockwise = aClockwise || false; - this.updateProjectionMatrix(); + this.aRotation = aRotation || 0; } -OrthographicCamera.prototype = Object.assign( Object.create( Camera.prototype ), { - - constructor: OrthographicCamera, +EllipseCurve.prototype = Object.create( Curve.prototype ); +EllipseCurve.prototype.constructor = EllipseCurve; - isOrthographicCamera: true, +EllipseCurve.prototype.isEllipseCurve = true; - copy: function ( source, recursive ) { +EllipseCurve.prototype.getPoint = function ( t, optionalTarget ) { - Camera.prototype.copy.call( this, source, recursive ); + var point = optionalTarget || new Vector2(); - this.left = source.left; - this.right = source.right; - this.top = source.top; - this.bottom = source.bottom; - this.near = source.near; - this.far = source.far; + var twoPi = Math.PI * 2; + var deltaAngle = this.aEndAngle - this.aStartAngle; + var samePoints = Math.abs( deltaAngle ) < Number.EPSILON; - this.zoom = source.zoom; - this.view = source.view === null ? null : Object.assign( {}, source.view ); + // ensures that deltaAngle is 0 .. 2 PI + while ( deltaAngle < 0 ) deltaAngle += twoPi; + while ( deltaAngle > twoPi ) deltaAngle -= twoPi; - return this; + if ( deltaAngle < Number.EPSILON ) { - }, + if ( samePoints ) { - setViewOffset: function ( fullWidth, fullHeight, x, y, width, height ) { + deltaAngle = 0; - if ( this.view === null ) { + } else { - this.view = { - enabled: true, - fullWidth: 1, - fullHeight: 1, - offsetX: 0, - offsetY: 0, - width: 1, - height: 1 - }; + deltaAngle = twoPi; } - this.view.enabled = true; - this.view.fullWidth = fullWidth; - this.view.fullHeight = fullHeight; - this.view.offsetX = x; - this.view.offsetY = y; - this.view.width = width; - this.view.height = height; + } - this.updateProjectionMatrix(); + if ( this.aClockwise === true && ! samePoints ) { - }, + if ( deltaAngle === twoPi ) { - clearViewOffset: function () { + deltaAngle = - twoPi; - if ( this.view !== null ) { + } else { - this.view.enabled = false; + deltaAngle = deltaAngle - twoPi; } - this.updateProjectionMatrix(); - - }, + } - updateProjectionMatrix: function () { + var angle = this.aStartAngle + t * deltaAngle; + var x = this.aX + this.xRadius * Math.cos( angle ); + var y = this.aY + this.yRadius * Math.sin( angle ); - var dx = ( this.right - this.left ) / ( 2 * this.zoom ); - var dy = ( this.top - this.bottom ) / ( 2 * this.zoom ); - var cx = ( this.right + this.left ) / 2; - var cy = ( this.top + this.bottom ) / 2; + if ( this.aRotation !== 0 ) { - var left = cx - dx; - var right = cx + dx; - var top = cy + dy; - var bottom = cy - dy; + var cos = Math.cos( this.aRotation ); + var sin = Math.sin( this.aRotation ); - if ( this.view !== null && this.view.enabled ) { + var tx = x - this.aX; + var ty = y - this.aY; - var zoomW = this.zoom / ( this.view.width / this.view.fullWidth ); - var zoomH = this.zoom / ( this.view.height / this.view.fullHeight ); - var scaleW = ( this.right - this.left ) / this.view.width; - var scaleH = ( this.top - this.bottom ) / this.view.height; + // Rotate the point about the center of the ellipse. + x = tx * cos - ty * sin + this.aX; + y = tx * sin + ty * cos + this.aY; - left += scaleW * ( this.view.offsetX / zoomW ); - right = left + scaleW * ( this.view.width / zoomW ); - top -= scaleH * ( this.view.offsetY / zoomH ); - bottom = top - scaleH * ( this.view.height / zoomH ); + } - } + return point.set( x, y ); - this.projectionMatrix.makeOrthographic( left, right, top, bottom, this.near, this.far ); +}; - this.projectionMatrixInverse.getInverse( this.projectionMatrix ); +EllipseCurve.prototype.copy = function ( source ) { - }, + Curve.prototype.copy.call( this, source ); - toJSON: function ( meta ) { + this.aX = source.aX; + this.aY = source.aY; - var data = Object3D.prototype.toJSON.call( this, meta ); + this.xRadius = source.xRadius; + this.yRadius = source.yRadius; - data.object.zoom = this.zoom; - data.object.left = this.left; - data.object.right = this.right; - data.object.top = this.top; - data.object.bottom = this.bottom; - data.object.near = this.near; - data.object.far = this.far; + this.aStartAngle = source.aStartAngle; + this.aEndAngle = source.aEndAngle; - if ( this.view !== null ) data.object.view = Object.assign( {}, this.view ); + this.aClockwise = source.aClockwise; - return data; + this.aRotation = source.aRotation; - } + return this; -} ); +}; -/** - * @author mrdoob / http://mrdoob.com/ - */ -function DirectionalLightShadow( ) { +EllipseCurve.prototype.toJSON = function () { - LightShadow.call( this, new OrthographicCamera( - 5, 5, 5, - 5, 0.5, 500 ) ); + var data = Curve.prototype.toJSON.call( this ); -} + data.aX = this.aX; + data.aY = this.aY; -DirectionalLightShadow.prototype = Object.assign( Object.create( LightShadow.prototype ), { + data.xRadius = this.xRadius; + data.yRadius = this.yRadius; - constructor: DirectionalLightShadow + data.aStartAngle = this.aStartAngle; + data.aEndAngle = this.aEndAngle; -} ); + data.aClockwise = this.aClockwise; -/** - * @author mrdoob / http://mrdoob.com/ - * @author alteredq / http://alteredqualia.com/ - */ + data.aRotation = this.aRotation; -function DirectionalLight( color, intensity ) { + return data; - Light.call( this, color, intensity ); +}; - this.type = 'DirectionalLight'; +EllipseCurve.prototype.fromJSON = function ( json ) { - this.position.copy( Object3D.DefaultUp ); - this.updateMatrix(); + Curve.prototype.fromJSON.call( this, json ); - this.target = new Object3D(); + this.aX = json.aX; + this.aY = json.aY; - this.shadow = new DirectionalLightShadow(); + this.xRadius = json.xRadius; + this.yRadius = json.yRadius; -} + this.aStartAngle = json.aStartAngle; + this.aEndAngle = json.aEndAngle; -DirectionalLight.prototype = Object.assign( Object.create( Light.prototype ), { + this.aClockwise = json.aClockwise; - constructor: DirectionalLight, + this.aRotation = json.aRotation; - isDirectionalLight: true, + return this; - copy: function ( source ) { +}; - Light.prototype.copy.call( this, source ); +function ArcCurve( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) { - this.target = source.target.clone(); + EllipseCurve.call( this, aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise ); - this.shadow = source.shadow.clone(); + this.type = 'ArcCurve'; - return this; +} - } +ArcCurve.prototype = Object.create( EllipseCurve.prototype ); +ArcCurve.prototype.constructor = ArcCurve; -} ); +ArcCurve.prototype.isArcCurve = true; /** - * @author mrdoob / http://mrdoob.com/ + * @author zz85 https://github.com/zz85 + * + * Centripetal CatmullRom Curve - which is useful for avoiding + * cusps and self-intersections in non-uniform catmull rom curves. + * http://www.cemyuksel.com/research/catmullrom_param/catmullrom.pdf + * + * curve.type accepts centripetal(default), chordal and catmullrom + * curve.tension is used for catmullrom which defaults to 0.5 */ -function AmbientLight( color, intensity ) { - Light.call( this, color, intensity ); +/* +Based on an optimized c++ solution in + - http://stackoverflow.com/questions/9489736/catmull-rom-curve-with-no-cusps-and-no-self-intersections/ + - http://ideone.com/NoEbVM - this.type = 'AmbientLight'; +This CubicPoly class could be used for reusing some variables and calculations, +but for three.js curve use, it could be possible inlined and flatten into a single function call +which can be placed in CurveUtils. +*/ - this.castShadow = undefined; +function CubicPoly() { -} + var c0 = 0, c1 = 0, c2 = 0, c3 = 0; -AmbientLight.prototype = Object.assign( Object.create( Light.prototype ), { + /* + * Compute coefficients for a cubic polynomial + * p(s) = c0 + c1*s + c2*s^2 + c3*s^3 + * such that + * p(0) = x0, p(1) = x1 + * and + * p'(0) = t0, p'(1) = t1. + */ + function init( x0, x1, t0, t1 ) { - constructor: AmbientLight, + c0 = x0; + c1 = t0; + c2 = - 3 * x0 + 3 * x1 - 2 * t0 - t1; + c3 = 2 * x0 - 2 * x1 + t0 + t1; - isAmbientLight: true + } -} ); + return { -/** - * @author abelnation / http://github.com/abelnation - */ + initCatmullRom: function ( x0, x1, x2, x3, tension ) { -function RectAreaLight( color, intensity, width, height ) { + init( x1, x2, tension * ( x2 - x0 ), tension * ( x3 - x1 ) ); - Light.call( this, color, intensity ); + }, - this.type = 'RectAreaLight'; + initNonuniformCatmullRom: function ( x0, x1, x2, x3, dt0, dt1, dt2 ) { - this.width = ( width !== undefined ) ? width : 10; - this.height = ( height !== undefined ) ? height : 10; + // compute tangents when parameterized in [t1,t2] + var t1 = ( x1 - x0 ) / dt0 - ( x2 - x0 ) / ( dt0 + dt1 ) + ( x2 - x1 ) / dt1; + var t2 = ( x2 - x1 ) / dt1 - ( x3 - x1 ) / ( dt1 + dt2 ) + ( x3 - x2 ) / dt2; -} + // rescale tangents for parametrization in [0,1] + t1 *= dt1; + t2 *= dt1; -RectAreaLight.prototype = Object.assign( Object.create( Light.prototype ), { + init( x1, x2, t1, t2 ); - constructor: RectAreaLight, + }, - isRectAreaLight: true, + calc: function ( t ) { - copy: function ( source ) { + var t2 = t * t; + var t3 = t2 * t; + return c0 + c1 * t + c2 * t2 + c3 * t3; - Light.prototype.copy.call( this, source ); + } - this.width = source.width; - this.height = source.height; + }; - return this; +} - }, +// - toJSON: function ( meta ) { +var tmp = new Vector3(); +var px = new CubicPoly(), py = new CubicPoly(), pz = new CubicPoly(); - var data = Light.prototype.toJSON.call( this, meta ); +function CatmullRomCurve3( points, closed, curveType, tension ) { - data.object.width = this.width; - data.object.height = this.height; + Curve.call( this ); - return data; + this.type = 'CatmullRomCurve3'; - } + this.points = points || []; + this.closed = closed || false; + this.curveType = curveType || 'centripetal'; + this.tension = tension || 0.5; -} ); +} -/** - * @author tschw - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - */ +CatmullRomCurve3.prototype = Object.create( Curve.prototype ); +CatmullRomCurve3.prototype.constructor = CatmullRomCurve3; -var AnimationUtils = { +CatmullRomCurve3.prototype.isCatmullRomCurve3 = true; - // same as Array.prototype.slice, but also works on typed arrays - arraySlice: function ( array, from, to ) { +CatmullRomCurve3.prototype.getPoint = function ( t, optionalTarget ) { - if ( AnimationUtils.isTypedArray( array ) ) { + var point = optionalTarget || new Vector3(); - // in ios9 array.subarray(from, undefined) will return empty array - // but array.subarray(from) or array.subarray(from, len) is correct - return new array.constructor( array.subarray( from, to !== undefined ? to : array.length ) ); + var points = this.points; + var l = points.length; - } + var p = ( l - ( this.closed ? 0 : 1 ) ) * t; + var intPoint = Math.floor( p ); + var weight = p - intPoint; - return array.slice( from, to ); + if ( this.closed ) { - }, + intPoint += intPoint > 0 ? 0 : ( Math.floor( Math.abs( intPoint ) / l ) + 1 ) * l; - // converts an array to a specific type - convertArray: function ( array, type, forceClone ) { + } else if ( weight === 0 && intPoint === l - 1 ) { - if ( ! array || // let 'undefined' and 'null' pass - ! forceClone && array.constructor === type ) return array; + intPoint = l - 2; + weight = 1; - if ( typeof type.BYTES_PER_ELEMENT === 'number' ) { + } - return new type( array ); // create typed array + var p0, p1, p2, p3; // 4 points - } + if ( this.closed || intPoint > 0 ) { - return Array.prototype.slice.call( array ); // create Array + p0 = points[ ( intPoint - 1 ) % l ]; - }, + } else { - isTypedArray: function ( object ) { + // extrapolate first point + tmp.subVectors( points[ 0 ], points[ 1 ] ).add( points[ 0 ] ); + p0 = tmp; - return ArrayBuffer.isView( object ) && - ! ( object instanceof DataView ); + } - }, + p1 = points[ intPoint % l ]; + p2 = points[ ( intPoint + 1 ) % l ]; - // returns an array by which times and values can be sorted - getKeyframeOrder: function ( times ) { + if ( this.closed || intPoint + 2 < l ) { - function compareTime( i, j ) { + p3 = points[ ( intPoint + 2 ) % l ]; - return times[ i ] - times[ j ]; + } else { - } + // extrapolate last point + tmp.subVectors( points[ l - 1 ], points[ l - 2 ] ).add( points[ l - 1 ] ); + p3 = tmp; - var n = times.length; - var result = new Array( n ); - for ( var i = 0; i !== n; ++ i ) result[ i ] = i; + } - result.sort( compareTime ); + if ( this.curveType === 'centripetal' || this.curveType === 'chordal' ) { - return result; + // init Centripetal / Chordal Catmull-Rom + var pow = this.curveType === 'chordal' ? 0.5 : 0.25; + var dt0 = Math.pow( p0.distanceToSquared( p1 ), pow ); + var dt1 = Math.pow( p1.distanceToSquared( p2 ), pow ); + var dt2 = Math.pow( p2.distanceToSquared( p3 ), pow ); - }, + // safety check for repeated points + if ( dt1 < 1e-4 ) dt1 = 1.0; + if ( dt0 < 1e-4 ) dt0 = dt1; + if ( dt2 < 1e-4 ) dt2 = dt1; - // uses the array previously returned by 'getKeyframeOrder' to sort data - sortedArray: function ( values, stride, order ) { + px.initNonuniformCatmullRom( p0.x, p1.x, p2.x, p3.x, dt0, dt1, dt2 ); + py.initNonuniformCatmullRom( p0.y, p1.y, p2.y, p3.y, dt0, dt1, dt2 ); + pz.initNonuniformCatmullRom( p0.z, p1.z, p2.z, p3.z, dt0, dt1, dt2 ); - var nValues = values.length; - var result = new values.constructor( nValues ); + } else if ( this.curveType === 'catmullrom' ) { - for ( var i = 0, dstOffset = 0; dstOffset !== nValues; ++ i ) { + px.initCatmullRom( p0.x, p1.x, p2.x, p3.x, this.tension ); + py.initCatmullRom( p0.y, p1.y, p2.y, p3.y, this.tension ); + pz.initCatmullRom( p0.z, p1.z, p2.z, p3.z, this.tension ); - var srcOffset = order[ i ] * stride; + } - for ( var j = 0; j !== stride; ++ j ) { + point.set( + px.calc( weight ), + py.calc( weight ), + pz.calc( weight ) + ); - result[ dstOffset ++ ] = values[ srcOffset + j ]; + return point; - } +}; - } +CatmullRomCurve3.prototype.copy = function ( source ) { - return result; + Curve.prototype.copy.call( this, source ); - }, + this.points = []; - // function for parsing AOS keyframe formats - flattenJSON: function ( jsonKeys, times, values, valuePropertyName ) { + for ( var i = 0, l = source.points.length; i < l; i ++ ) { - var i = 1, key = jsonKeys[ 0 ]; + var point = source.points[ i ]; - while ( key !== undefined && key[ valuePropertyName ] === undefined ) { + this.points.push( point.clone() ); - key = jsonKeys[ i ++ ]; + } - } + this.closed = source.closed; + this.curveType = source.curveType; + this.tension = source.tension; - if ( key === undefined ) return; // no data + return this; - var value = key[ valuePropertyName ]; - if ( value === undefined ) return; // no data +}; - if ( Array.isArray( value ) ) { +CatmullRomCurve3.prototype.toJSON = function () { - do { + var data = Curve.prototype.toJSON.call( this ); - value = key[ valuePropertyName ]; + data.points = []; - if ( value !== undefined ) { + for ( var i = 0, l = this.points.length; i < l; i ++ ) { - times.push( key.time ); - values.push.apply( values, value ); // push all elements + var point = this.points[ i ]; + data.points.push( point.toArray() ); - } + } - key = jsonKeys[ i ++ ]; + data.closed = this.closed; + data.curveType = this.curveType; + data.tension = this.tension; - } while ( key !== undefined ); + return data; - } else if ( value.toArray !== undefined ) { +}; - // ...assume THREE.Math-ish +CatmullRomCurve3.prototype.fromJSON = function ( json ) { - do { + Curve.prototype.fromJSON.call( this, json ); - value = key[ valuePropertyName ]; + this.points = []; - if ( value !== undefined ) { + for ( var i = 0, l = json.points.length; i < l; i ++ ) { - times.push( key.time ); - value.toArray( values, values.length ); + var point = json.points[ i ]; + this.points.push( new Vector3().fromArray( point ) ); - } + } - key = jsonKeys[ i ++ ]; + this.closed = json.closed; + this.curveType = json.curveType; + this.tension = json.tension; - } while ( key !== undefined ); + return this; - } else { +}; - // otherwise push as-is +/** + * @author zz85 / http://www.lab4games.net/zz85/blog + * + * Bezier Curves formulas obtained from + * http://en.wikipedia.org/wiki/Bézier_curve + */ - do { +function CatmullRom( t, p0, p1, p2, p3 ) { - value = key[ valuePropertyName ]; + var v0 = ( p2 - p0 ) * 0.5; + var v1 = ( p3 - p1 ) * 0.5; + var t2 = t * t; + var t3 = t * t2; + return ( 2 * p1 - 2 * p2 + v0 + v1 ) * t3 + ( - 3 * p1 + 3 * p2 - 2 * v0 - v1 ) * t2 + v0 * t + p1; - if ( value !== undefined ) { +} - times.push( key.time ); - values.push( value ); +// - } +function QuadraticBezierP0( t, p ) { - key = jsonKeys[ i ++ ]; + var k = 1 - t; + return k * k * p; - } while ( key !== undefined ); +} - } +function QuadraticBezierP1( t, p ) { - } + return 2 * ( 1 - t ) * t * p; -}; +} -/** - * Abstract base class of interpolants over parametric samples. - * - * The parameter domain is one dimensional, typically the time or a path - * along a curve defined by the data. - * - * The sample values can have any dimensionality and derived classes may - * apply special interpretations to the data. - * - * This class provides the interval seek in a Template Method, deferring - * the actual interpolation to derived classes. - * - * Time complexity is O(1) for linear access crossing at most two points - * and O(log N) for random access, where N is the number of positions. - * - * References: - * - * http://www.oodesign.com/template-method-pattern.html - * - * @author tschw - */ +function QuadraticBezierP2( t, p ) { -function Interpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { + return t * t * p; - this.parameterPositions = parameterPositions; - this._cachedIndex = 0; +} - this.resultBuffer = resultBuffer !== undefined ? - resultBuffer : new sampleValues.constructor( sampleSize ); - this.sampleValues = sampleValues; - this.valueSize = sampleSize; +function QuadraticBezier( t, p0, p1, p2 ) { + + return QuadraticBezierP0( t, p0 ) + QuadraticBezierP1( t, p1 ) + + QuadraticBezierP2( t, p2 ); } -Object.assign( Interpolant.prototype, { +// - evaluate: function ( t ) { +function CubicBezierP0( t, p ) { - var pp = this.parameterPositions, - i1 = this._cachedIndex, + var k = 1 - t; + return k * k * k * p; - t1 = pp[ i1 ], - t0 = pp[ i1 - 1 ]; +} - validate_interval: { +function CubicBezierP1( t, p ) { - seek: { + var k = 1 - t; + return 3 * k * k * t * p; - var right; +} - linear_scan: { +function CubicBezierP2( t, p ) { - //- See http://jsperf.com/comparison-to-undefined/3 - //- slower code: - //- - //- if ( t >= t1 || t1 === undefined ) { - forward_scan: if ( ! ( t < t1 ) ) { + return 3 * ( 1 - t ) * t * t * p; - for ( var giveUpAt = i1 + 2; ; ) { +} - if ( t1 === undefined ) { +function CubicBezierP3( t, p ) { - if ( t < t0 ) break forward_scan; + return t * t * t * p; - // after end +} - i1 = pp.length; - this._cachedIndex = i1; - return this.afterEnd_( i1 - 1, t, t0 ); +function CubicBezier( t, p0, p1, p2, p3 ) { - } + return CubicBezierP0( t, p0 ) + CubicBezierP1( t, p1 ) + CubicBezierP2( t, p2 ) + + CubicBezierP3( t, p3 ); - if ( i1 === giveUpAt ) break; // this loop +} - t0 = t1; - t1 = pp[ ++ i1 ]; +function CubicBezierCurve( v0, v1, v2, v3 ) { - if ( t < t1 ) { + Curve.call( this ); - // we have arrived at the sought interval - break seek; + this.type = 'CubicBezierCurve'; - } + this.v0 = v0 || new Vector2(); + this.v1 = v1 || new Vector2(); + this.v2 = v2 || new Vector2(); + this.v3 = v3 || new Vector2(); - } +} - // prepare binary search on the right side of the index - right = pp.length; - break linear_scan; +CubicBezierCurve.prototype = Object.create( Curve.prototype ); +CubicBezierCurve.prototype.constructor = CubicBezierCurve; - } +CubicBezierCurve.prototype.isCubicBezierCurve = true; - //- slower code: - //- if ( t < t0 || t0 === undefined ) { - if ( ! ( t >= t0 ) ) { +CubicBezierCurve.prototype.getPoint = function ( t, optionalTarget ) { - // looping? + var point = optionalTarget || new Vector2(); - var t1global = pp[ 1 ]; + var v0 = this.v0, v1 = this.v1, v2 = this.v2, v3 = this.v3; - if ( t < t1global ) { + point.set( + CubicBezier( t, v0.x, v1.x, v2.x, v3.x ), + CubicBezier( t, v0.y, v1.y, v2.y, v3.y ) + ); - i1 = 2; // + 1, using the scan for the details - t0 = t1global; + return point; - } +}; - // linear reverse scan +CubicBezierCurve.prototype.copy = function ( source ) { - for ( var giveUpAt = i1 - 2; ; ) { + Curve.prototype.copy.call( this, source ); - if ( t0 === undefined ) { + this.v0.copy( source.v0 ); + this.v1.copy( source.v1 ); + this.v2.copy( source.v2 ); + this.v3.copy( source.v3 ); - // before start + return this; - this._cachedIndex = 0; - return this.beforeStart_( 0, t, t1 ); +}; - } +CubicBezierCurve.prototype.toJSON = function () { - if ( i1 === giveUpAt ) break; // this loop + var data = Curve.prototype.toJSON.call( this ); - t1 = t0; - t0 = pp[ -- i1 - 1 ]; + data.v0 = this.v0.toArray(); + data.v1 = this.v1.toArray(); + data.v2 = this.v2.toArray(); + data.v3 = this.v3.toArray(); - if ( t >= t0 ) { + return data; - // we have arrived at the sought interval - break seek; +}; - } +CubicBezierCurve.prototype.fromJSON = function ( json ) { - } + Curve.prototype.fromJSON.call( this, json ); - // prepare binary search on the left side of the index - right = i1; - i1 = 0; - break linear_scan; + this.v0.fromArray( json.v0 ); + this.v1.fromArray( json.v1 ); + this.v2.fromArray( json.v2 ); + this.v3.fromArray( json.v3 ); - } + return this; - // the interval is valid +}; - break validate_interval; +function CubicBezierCurve3( v0, v1, v2, v3 ) { - } // linear scan + Curve.call( this ); - // binary search + this.type = 'CubicBezierCurve3'; - while ( i1 < right ) { + this.v0 = v0 || new Vector3(); + this.v1 = v1 || new Vector3(); + this.v2 = v2 || new Vector3(); + this.v3 = v3 || new Vector3(); - var mid = ( i1 + right ) >>> 1; +} - if ( t < pp[ mid ] ) { +CubicBezierCurve3.prototype = Object.create( Curve.prototype ); +CubicBezierCurve3.prototype.constructor = CubicBezierCurve3; - right = mid; +CubicBezierCurve3.prototype.isCubicBezierCurve3 = true; - } else { +CubicBezierCurve3.prototype.getPoint = function ( t, optionalTarget ) { - i1 = mid + 1; + var point = optionalTarget || new Vector3(); - } + var v0 = this.v0, v1 = this.v1, v2 = this.v2, v3 = this.v3; - } + point.set( + CubicBezier( t, v0.x, v1.x, v2.x, v3.x ), + CubicBezier( t, v0.y, v1.y, v2.y, v3.y ), + CubicBezier( t, v0.z, v1.z, v2.z, v3.z ) + ); - t1 = pp[ i1 ]; - t0 = pp[ i1 - 1 ]; + return point; - // check boundary cases, again +}; - if ( t0 === undefined ) { +CubicBezierCurve3.prototype.copy = function ( source ) { - this._cachedIndex = 0; - return this.beforeStart_( 0, t, t1 ); + Curve.prototype.copy.call( this, source ); - } + this.v0.copy( source.v0 ); + this.v1.copy( source.v1 ); + this.v2.copy( source.v2 ); + this.v3.copy( source.v3 ); - if ( t1 === undefined ) { + return this; - i1 = pp.length; - this._cachedIndex = i1; - return this.afterEnd_( i1 - 1, t0, t ); +}; - } +CubicBezierCurve3.prototype.toJSON = function () { - } // seek + var data = Curve.prototype.toJSON.call( this ); - this._cachedIndex = i1; + data.v0 = this.v0.toArray(); + data.v1 = this.v1.toArray(); + data.v2 = this.v2.toArray(); + data.v3 = this.v3.toArray(); - this.intervalChanged_( i1, t0, t1 ); + return data; - } // validate_interval +}; - return this.interpolate_( i1, t0, t, t1 ); +CubicBezierCurve3.prototype.fromJSON = function ( json ) { - }, + Curve.prototype.fromJSON.call( this, json ); - settings: null, // optional, subclass-specific settings structure - // Note: The indirection allows central control of many interpolants. + this.v0.fromArray( json.v0 ); + this.v1.fromArray( json.v1 ); + this.v2.fromArray( json.v2 ); + this.v3.fromArray( json.v3 ); - // --- Protected interface + return this; - DefaultSettings_: {}, +}; - getSettings_: function () { +function LineCurve( v1, v2 ) { - return this.settings || this.DefaultSettings_; + Curve.call( this ); - }, + this.type = 'LineCurve'; - copySampleValue_: function ( index ) { + this.v1 = v1 || new Vector2(); + this.v2 = v2 || new Vector2(); - // copies a sample value to the result buffer +} - var result = this.resultBuffer, - values = this.sampleValues, - stride = this.valueSize, - offset = index * stride; +LineCurve.prototype = Object.create( Curve.prototype ); +LineCurve.prototype.constructor = LineCurve; - for ( var i = 0; i !== stride; ++ i ) { +LineCurve.prototype.isLineCurve = true; - result[ i ] = values[ offset + i ]; +LineCurve.prototype.getPoint = function ( t, optionalTarget ) { - } + var point = optionalTarget || new Vector2(); - return result; + if ( t === 1 ) { - }, + point.copy( this.v2 ); - // Template methods for derived classes: + } else { - interpolate_: function ( /* i1, t0, t, t1 */ ) { + point.copy( this.v2 ).sub( this.v1 ); + point.multiplyScalar( t ).add( this.v1 ); - throw new Error( 'call to abstract method' ); - // implementations shall return this.resultBuffer + } - }, + return point; - intervalChanged_: function ( /* i1, t0, t1 */ ) { +}; - // empty +// Line curve is linear, so we can overwrite default getPointAt + +LineCurve.prototype.getPointAt = function ( u, optionalTarget ) { + + return this.getPoint( u, optionalTarget ); + +}; + +LineCurve.prototype.getTangent = function ( /* t */ ) { + + var tangent = this.v2.clone().sub( this.v1 ); + + return tangent.normalize(); + +}; + +LineCurve.prototype.copy = function ( source ) { + + Curve.prototype.copy.call( this, source ); + + this.v1.copy( source.v1 ); + this.v2.copy( source.v2 ); + + return this; + +}; + +LineCurve.prototype.toJSON = function () { + + var data = Curve.prototype.toJSON.call( this ); + + data.v1 = this.v1.toArray(); + data.v2 = this.v2.toArray(); + + return data; + +}; + +LineCurve.prototype.fromJSON = function ( json ) { + + Curve.prototype.fromJSON.call( this, json ); + + this.v1.fromArray( json.v1 ); + this.v2.fromArray( json.v2 ); + + return this; + +}; + +function LineCurve3( v1, v2 ) { + + Curve.call( this ); + + this.type = 'LineCurve3'; + + this.v1 = v1 || new Vector3(); + this.v2 = v2 || new Vector3(); + +} + +LineCurve3.prototype = Object.create( Curve.prototype ); +LineCurve3.prototype.constructor = LineCurve3; + +LineCurve3.prototype.isLineCurve3 = true; + +LineCurve3.prototype.getPoint = function ( t, optionalTarget ) { + + var point = optionalTarget || new Vector3(); + + if ( t === 1 ) { + + point.copy( this.v2 ); + + } else { + + point.copy( this.v2 ).sub( this.v1 ); + point.multiplyScalar( t ).add( this.v1 ); } -} ); + return point; -//!\ DECLARE ALIAS AFTER assign prototype ! -Object.assign( Interpolant.prototype, { +}; - //( 0, t, t0 ), returns this.resultBuffer - beforeStart_: Interpolant.prototype.copySampleValue_, +// Line curve is linear, so we can overwrite default getPointAt - //( N-1, tN-1, t ), returns this.resultBuffer - afterEnd_: Interpolant.prototype.copySampleValue_, +LineCurve3.prototype.getPointAt = function ( u, optionalTarget ) { -} ); + return this.getPoint( u, optionalTarget ); -/** - * Fast and simple cubic spline interpolant. - * - * It was derived from a Hermitian construction setting the first derivative - * at each sample position to the linear slope between neighboring positions - * over their parameter interval. - * - * @author tschw - */ +}; -function CubicInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { +LineCurve3.prototype.copy = function ( source ) { - Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); + Curve.prototype.copy.call( this, source ); - this._weightPrev = - 0; - this._offsetPrev = - 0; - this._weightNext = - 0; - this._offsetNext = - 0; + this.v1.copy( source.v1 ); + this.v2.copy( source.v2 ); + + return this; + +}; + +LineCurve3.prototype.toJSON = function () { + + var data = Curve.prototype.toJSON.call( this ); + + data.v1 = this.v1.toArray(); + data.v2 = this.v2.toArray(); + + return data; + +}; + +LineCurve3.prototype.fromJSON = function ( json ) { + + Curve.prototype.fromJSON.call( this, json ); + + this.v1.fromArray( json.v1 ); + this.v2.fromArray( json.v2 ); + + return this; + +}; + +function QuadraticBezierCurve( v0, v1, v2 ) { + + Curve.call( this ); + + this.type = 'QuadraticBezierCurve'; + + this.v0 = v0 || new Vector2(); + this.v1 = v1 || new Vector2(); + this.v2 = v2 || new Vector2(); } -CubicInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { +QuadraticBezierCurve.prototype = Object.create( Curve.prototype ); +QuadraticBezierCurve.prototype.constructor = QuadraticBezierCurve; - constructor: CubicInterpolant, +QuadraticBezierCurve.prototype.isQuadraticBezierCurve = true; - DefaultSettings_: { +QuadraticBezierCurve.prototype.getPoint = function ( t, optionalTarget ) { - endingStart: ZeroCurvatureEnding, - endingEnd: ZeroCurvatureEnding + var point = optionalTarget || new Vector2(); - }, + var v0 = this.v0, v1 = this.v1, v2 = this.v2; - intervalChanged_: function ( i1, t0, t1 ) { + point.set( + QuadraticBezier( t, v0.x, v1.x, v2.x ), + QuadraticBezier( t, v0.y, v1.y, v2.y ) + ); - var pp = this.parameterPositions, - iPrev = i1 - 2, - iNext = i1 + 1, + return point; - tPrev = pp[ iPrev ], - tNext = pp[ iNext ]; +}; - if ( tPrev === undefined ) { +QuadraticBezierCurve.prototype.copy = function ( source ) { - switch ( this.getSettings_().endingStart ) { + Curve.prototype.copy.call( this, source ); - case ZeroSlopeEnding: + this.v0.copy( source.v0 ); + this.v1.copy( source.v1 ); + this.v2.copy( source.v2 ); - // f'(t0) = 0 - iPrev = i1; - tPrev = 2 * t0 - t1; + return this; - break; +}; - case WrapAroundEnding: +QuadraticBezierCurve.prototype.toJSON = function () { - // use the other end of the curve - iPrev = pp.length - 2; - tPrev = t0 + pp[ iPrev ] - pp[ iPrev + 1 ]; + var data = Curve.prototype.toJSON.call( this ); - break; + data.v0 = this.v0.toArray(); + data.v1 = this.v1.toArray(); + data.v2 = this.v2.toArray(); - default: // ZeroCurvatureEnding + return data; - // f''(t0) = 0 a.k.a. Natural Spline - iPrev = i1; - tPrev = t1; +}; - } +QuadraticBezierCurve.prototype.fromJSON = function ( json ) { - } + Curve.prototype.fromJSON.call( this, json ); - if ( tNext === undefined ) { + this.v0.fromArray( json.v0 ); + this.v1.fromArray( json.v1 ); + this.v2.fromArray( json.v2 ); - switch ( this.getSettings_().endingEnd ) { + return this; - case ZeroSlopeEnding: +}; - // f'(tN) = 0 - iNext = i1; - tNext = 2 * t1 - t0; +function QuadraticBezierCurve3( v0, v1, v2 ) { - break; + Curve.call( this ); - case WrapAroundEnding: + this.type = 'QuadraticBezierCurve3'; - // use the other end of the curve - iNext = 1; - tNext = t1 + pp[ 1 ] - pp[ 0 ]; + this.v0 = v0 || new Vector3(); + this.v1 = v1 || new Vector3(); + this.v2 = v2 || new Vector3(); - break; +} - default: // ZeroCurvatureEnding +QuadraticBezierCurve3.prototype = Object.create( Curve.prototype ); +QuadraticBezierCurve3.prototype.constructor = QuadraticBezierCurve3; - // f''(tN) = 0, a.k.a. Natural Spline - iNext = i1 - 1; - tNext = t0; +QuadraticBezierCurve3.prototype.isQuadraticBezierCurve3 = true; - } +QuadraticBezierCurve3.prototype.getPoint = function ( t, optionalTarget ) { - } + var point = optionalTarget || new Vector3(); - var halfDt = ( t1 - t0 ) * 0.5, - stride = this.valueSize; + var v0 = this.v0, v1 = this.v1, v2 = this.v2; - this._weightPrev = halfDt / ( t0 - tPrev ); - this._weightNext = halfDt / ( tNext - t1 ); - this._offsetPrev = iPrev * stride; - this._offsetNext = iNext * stride; + point.set( + QuadraticBezier( t, v0.x, v1.x, v2.x ), + QuadraticBezier( t, v0.y, v1.y, v2.y ), + QuadraticBezier( t, v0.z, v1.z, v2.z ) + ); - }, + return point; - interpolate_: function ( i1, t0, t, t1 ) { +}; - var result = this.resultBuffer, - values = this.sampleValues, - stride = this.valueSize, +QuadraticBezierCurve3.prototype.copy = function ( source ) { - o1 = i1 * stride, o0 = o1 - stride, - oP = this._offsetPrev, oN = this._offsetNext, - wP = this._weightPrev, wN = this._weightNext, + Curve.prototype.copy.call( this, source ); - p = ( t - t0 ) / ( t1 - t0 ), - pp = p * p, - ppp = pp * p; + this.v0.copy( source.v0 ); + this.v1.copy( source.v1 ); + this.v2.copy( source.v2 ); - // evaluate polynomials + return this; - var sP = - wP * ppp + 2 * wP * pp - wP * p; - var s0 = ( 1 + wP ) * ppp + ( - 1.5 - 2 * wP ) * pp + ( - 0.5 + wP ) * p + 1; - var s1 = ( - 1 - wN ) * ppp + ( 1.5 + wN ) * pp + 0.5 * p; - var sN = wN * ppp - wN * pp; +}; - // combine data linearly +QuadraticBezierCurve3.prototype.toJSON = function () { - for ( var i = 0; i !== stride; ++ i ) { + var data = Curve.prototype.toJSON.call( this ); - result[ i ] = - sP * values[ oP + i ] + - s0 * values[ o0 + i ] + - s1 * values[ o1 + i ] + - sN * values[ oN + i ]; + data.v0 = this.v0.toArray(); + data.v1 = this.v1.toArray(); + data.v2 = this.v2.toArray(); - } + return data; + +}; + +QuadraticBezierCurve3.prototype.fromJSON = function ( json ) { + + Curve.prototype.fromJSON.call( this, json ); + + this.v0.fromArray( json.v0 ); + this.v1.fromArray( json.v1 ); + this.v2.fromArray( json.v2 ); - return result; + return this; - } +}; -} ); +function SplineCurve( points /* array of Vector2 */ ) { -/** - * @author tschw - */ + Curve.call( this ); -function LinearInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { + this.type = 'SplineCurve'; - Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); + this.points = points || []; } -LinearInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { +SplineCurve.prototype = Object.create( Curve.prototype ); +SplineCurve.prototype.constructor = SplineCurve; - constructor: LinearInterpolant, +SplineCurve.prototype.isSplineCurve = true; - interpolate_: function ( i1, t0, t, t1 ) { +SplineCurve.prototype.getPoint = function ( t, optionalTarget ) { - var result = this.resultBuffer, - values = this.sampleValues, - stride = this.valueSize, + var point = optionalTarget || new Vector2(); - offset1 = i1 * stride, - offset0 = offset1 - stride, + var points = this.points; + var p = ( points.length - 1 ) * t; - weight1 = ( t - t0 ) / ( t1 - t0 ), - weight0 = 1 - weight1; + var intPoint = Math.floor( p ); + var weight = p - intPoint; - for ( var i = 0; i !== stride; ++ i ) { + var p0 = points[ intPoint === 0 ? intPoint : intPoint - 1 ]; + var p1 = points[ intPoint ]; + var p2 = points[ intPoint > points.length - 2 ? points.length - 1 : intPoint + 1 ]; + var p3 = points[ intPoint > points.length - 3 ? points.length - 1 : intPoint + 2 ]; - result[ i ] = - values[ offset0 + i ] * weight0 + - values[ offset1 + i ] * weight1; + point.set( + CatmullRom( weight, p0.x, p1.x, p2.x, p3.x ), + CatmullRom( weight, p0.y, p1.y, p2.y, p3.y ) + ); - } + return point; - return result; +}; - } +SplineCurve.prototype.copy = function ( source ) { -} ); + Curve.prototype.copy.call( this, source ); -/** - * - * Interpolant that evaluates to the sample value at the position preceeding - * the parameter. - * - * @author tschw - */ + this.points = []; -function DiscreteInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { + for ( var i = 0, l = source.points.length; i < l; i ++ ) { - Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); + var point = source.points[ i ]; -} + this.points.push( point.clone() ); -DiscreteInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { + } - constructor: DiscreteInterpolant, + return this; - interpolate_: function ( i1 /*, t0, t, t1 */ ) { +}; - return this.copySampleValue_( i1 - 1 ); +SplineCurve.prototype.toJSON = function () { - } + var data = Curve.prototype.toJSON.call( this ); -} ); + data.points = []; -/** - * - * A timed sequence of keyframes for a specific property. - * - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw - */ + for ( var i = 0, l = this.points.length; i < l; i ++ ) { -function KeyframeTrack( name, times, values, interpolation ) { + var point = this.points[ i ]; + data.points.push( point.toArray() ); - if ( name === undefined ) throw new Error( 'THREE.KeyframeTrack: track name is undefined' ); - if ( times === undefined || times.length === 0 ) throw new Error( 'THREE.KeyframeTrack: no keyframes in track named ' + name ); + } - this.name = name; + return data; - this.times = AnimationUtils.convertArray( times, this.TimeBufferType ); - this.values = AnimationUtils.convertArray( values, this.ValueBufferType ); +}; - this.setInterpolation( interpolation || this.DefaultInterpolation ); +SplineCurve.prototype.fromJSON = function ( json ) { -} + Curve.prototype.fromJSON.call( this, json ); -// Static methods + this.points = []; -Object.assign( KeyframeTrack, { + for ( var i = 0, l = json.points.length; i < l; i ++ ) { - // Serialization (in static context, because of constructor invocation - // and automatic invocation of .toJSON): + var point = json.points[ i ]; + this.points.push( new Vector2().fromArray( point ) ); - toJSON: function ( track ) { + } - var trackType = track.constructor; + return this; - var json; +}; - // derived classes can define a static toJSON method - if ( trackType.toJSON !== undefined ) { - json = trackType.toJSON( track ); - } else { +var Curves = /*#__PURE__*/Object.freeze({ + ArcCurve: ArcCurve, + CatmullRomCurve3: CatmullRomCurve3, + CubicBezierCurve: CubicBezierCurve, + CubicBezierCurve3: CubicBezierCurve3, + EllipseCurve: EllipseCurve, + LineCurve: LineCurve, + LineCurve3: LineCurve3, + QuadraticBezierCurve: QuadraticBezierCurve, + QuadraticBezierCurve3: QuadraticBezierCurve3, + SplineCurve: SplineCurve +}); - // by default, we assume the data can be serialized as-is - json = { +/** + * @author zz85 / http://www.lab4games.net/zz85/blog + * + **/ - 'name': track.name, - 'times': AnimationUtils.convertArray( track.times, Array ), - 'values': AnimationUtils.convertArray( track.values, Array ) +/************************************************************** + * Curved Path - a curve path is simply a array of connected + * curves, but retains the api of a curve + **************************************************************/ - }; +function CurvePath() { - var interpolation = track.getInterpolation(); + Curve.call( this ); - if ( interpolation !== track.DefaultInterpolation ) { + this.type = 'CurvePath'; - json.interpolation = interpolation; + this.curves = []; + this.autoClose = false; // Automatically closes the path - } +} - } +CurvePath.prototype = Object.assign( Object.create( Curve.prototype ), { - json.type = track.ValueTypeName; // mandatory + constructor: CurvePath, - return json; + add: function ( curve ) { - } + this.curves.push( curve ); -} ); + }, -Object.assign( KeyframeTrack.prototype, { + closePath: function () { - constructor: KeyframeTrack, + // Add a line curve if start and end of lines are not connected + var startPoint = this.curves[ 0 ].getPoint( 0 ); + var endPoint = this.curves[ this.curves.length - 1 ].getPoint( 1 ); - TimeBufferType: Float32Array, + if ( ! startPoint.equals( endPoint ) ) { - ValueBufferType: Float32Array, + this.curves.push( new LineCurve( endPoint, startPoint ) ); - DefaultInterpolation: InterpolateLinear, + } - InterpolantFactoryMethodDiscrete: function ( result ) { + }, - return new DiscreteInterpolant( this.times, this.values, this.getValueSize(), result ); + // To get accurate point with reference to + // entire path distance at time t, + // following has to be done: - }, + // 1. Length of each sub path have to be known + // 2. Locate and identify type of curve + // 3. Get t for the curve + // 4. Return curve.getPointAt(t') - InterpolantFactoryMethodLinear: function ( result ) { + getPoint: function ( t ) { - return new LinearInterpolant( this.times, this.values, this.getValueSize(), result ); + var d = t * this.getLength(); + var curveLengths = this.getCurveLengths(); + var i = 0; - }, + // To think about boundaries points. - InterpolantFactoryMethodSmooth: function ( result ) { + while ( i < curveLengths.length ) { - return new CubicInterpolant( this.times, this.values, this.getValueSize(), result ); + if ( curveLengths[ i ] >= d ) { - }, + var diff = curveLengths[ i ] - d; + var curve = this.curves[ i ]; - setInterpolation: function ( interpolation ) { + var segmentLength = curve.getLength(); + var u = segmentLength === 0 ? 0 : 1 - diff / segmentLength; - var factoryMethod; + return curve.getPointAt( u ); - switch ( interpolation ) { + } - case InterpolateDiscrete: + i ++; - factoryMethod = this.InterpolantFactoryMethodDiscrete; + } - break; + return null; - case InterpolateLinear: + // loop where sum != 0, sum > d , sum+1 1 && ! points[ points.length - 1 ].equals( points[ 0 ] ) ) { + + points.push( points[ 0 ] ); + + } + + return points; }, - // scale all keyframe times by a factor (useful for frame <-> seconds conversions) - scale: function ( timeScale ) { + copy: function ( source ) { - if ( timeScale !== 1.0 ) { + Curve.prototype.copy.call( this, source ); - var times = this.times; + this.curves = []; - for ( var i = 0, n = times.length; i !== n; ++ i ) { + for ( var i = 0, l = source.curves.length; i < l; i ++ ) { - times[ i ] *= timeScale; + var curve = source.curves[ i ]; - } + this.curves.push( curve.clone() ); } + this.autoClose = source.autoClose; + return this; }, - // removes keyframes before and after animation without changing any values within the range [startTime, endTime]. - // IMPORTANT: We do not shift around keys to the start of the track time, because for interpolated keys this will change their values - trim: function ( startTime, endTime ) { + toJSON: function () { - var times = this.times, - nKeys = times.length, - from = 0, - to = nKeys - 1; + var data = Curve.prototype.toJSON.call( this ); - while ( from !== nKeys && times[ from ] < startTime ) { + data.autoClose = this.autoClose; + data.curves = []; - ++ from; + for ( var i = 0, l = this.curves.length; i < l; i ++ ) { + + var curve = this.curves[ i ]; + data.curves.push( curve.toJSON() ); } - while ( to !== - 1 && times[ to ] > endTime ) { + return data; - -- to; + }, - } + fromJSON: function ( json ) { - ++ to; // inclusive -> exclusive bound + Curve.prototype.fromJSON.call( this, json ); - if ( from !== 0 || to !== nKeys ) { + this.autoClose = json.autoClose; + this.curves = []; - // empty tracks are forbidden, so keep at least one keyframe - if ( from >= to ) to = Math.max( to, 1 ), from = to - 1; + for ( var i = 0, l = json.curves.length; i < l; i ++ ) { - var stride = this.getValueSize(); - this.times = AnimationUtils.arraySlice( times, from, to ); - this.values = AnimationUtils.arraySlice( this.values, from * stride, to * stride ); + var curve = json.curves[ i ]; + this.curves.push( new Curves[ curve.type ]().fromJSON( curve ) ); } return this; - }, - - // ensure we do not get a GarbageInGarbageOut situation, make sure tracks are at least minimally viable - validate: function () { - - var valid = true; - - var valueSize = this.getValueSize(); - if ( valueSize - Math.floor( valueSize ) !== 0 ) { - - console.error( 'THREE.KeyframeTrack: Invalid value size in track.', this ); - valid = false; + } - } +} ); - var times = this.times, - values = this.values, +/** + * @author zz85 / http://www.lab4games.net/zz85/blog + * Creates free form 2d path using series of points, lines or curves. + **/ - nKeys = times.length; +function Path( points ) { - if ( nKeys === 0 ) { + CurvePath.call( this ); - console.error( 'THREE.KeyframeTrack: Track is empty.', this ); - valid = false; + this.type = 'Path'; - } + this.currentPoint = new Vector2(); - var prevTime = null; + if ( points ) { - for ( var i = 0; i !== nKeys; i ++ ) { + this.setFromPoints( points ); - var currTime = times[ i ]; + } - if ( typeof currTime === 'number' && isNaN( currTime ) ) { +} - console.error( 'THREE.KeyframeTrack: Time is not a valid number.', this, i, currTime ); - valid = false; - break; +Path.prototype = Object.assign( Object.create( CurvePath.prototype ), { - } + constructor: Path, - if ( prevTime !== null && prevTime > currTime ) { + setFromPoints: function ( points ) { - console.error( 'THREE.KeyframeTrack: Out of order keys.', this, i, currTime, prevTime ); - valid = false; - break; + this.moveTo( points[ 0 ].x, points[ 0 ].y ); - } + for ( var i = 1, l = points.length; i < l; i ++ ) { - prevTime = currTime; + this.lineTo( points[ i ].x, points[ i ].y ); } - if ( values !== undefined ) { + }, - if ( AnimationUtils.isTypedArray( values ) ) { + moveTo: function ( x, y ) { - for ( var i = 0, n = values.length; i !== n; ++ i ) { + this.currentPoint.set( x, y ); // TODO consider referencing vectors instead of copying? - var value = values[ i ]; + }, - if ( isNaN( value ) ) { + lineTo: function ( x, y ) { - console.error( 'THREE.KeyframeTrack: Value is not a valid number.', this, i, value ); - valid = false; - break; + var curve = new LineCurve( this.currentPoint.clone(), new Vector2( x, y ) ); + this.curves.push( curve ); - } + this.currentPoint.set( x, y ); - } + }, - } + quadraticCurveTo: function ( aCPx, aCPy, aX, aY ) { - } + var curve = new QuadraticBezierCurve( + this.currentPoint.clone(), + new Vector2( aCPx, aCPy ), + new Vector2( aX, aY ) + ); - return valid; + this.curves.push( curve ); + + this.currentPoint.set( aX, aY ); }, - // removes equivalent sequential keys as common in morph target sequences - // (0,0,0,0,1,1,1,0,0,0,0,0,0,0) --> (0,0,1,1,0,0) - optimize: function () { + bezierCurveTo: function ( aCP1x, aCP1y, aCP2x, aCP2y, aX, aY ) { - var times = this.times, - values = this.values, - stride = this.getValueSize(), + var curve = new CubicBezierCurve( + this.currentPoint.clone(), + new Vector2( aCP1x, aCP1y ), + new Vector2( aCP2x, aCP2y ), + new Vector2( aX, aY ) + ); - smoothInterpolation = this.getInterpolation() === InterpolateSmooth, + this.curves.push( curve ); - writeIndex = 1, - lastIndex = times.length - 1; + this.currentPoint.set( aX, aY ); - for ( var i = 1; i < lastIndex; ++ i ) { + }, - var keep = false; + splineThru: function ( pts /*Array of Vector*/ ) { - var time = times[ i ]; - var timeNext = times[ i + 1 ]; + var npts = [ this.currentPoint.clone() ].concat( pts ); - // remove adjacent keyframes scheduled at the same time + var curve = new SplineCurve( npts ); + this.curves.push( curve ); - if ( time !== timeNext && ( i !== 1 || time !== time[ 0 ] ) ) { + this.currentPoint.copy( pts[ pts.length - 1 ] ); - if ( ! smoothInterpolation ) { + }, - // remove unnecessary keyframes same as their neighbors + arc: function ( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) { - var offset = i * stride, - offsetP = offset - stride, - offsetN = offset + stride; + var x0 = this.currentPoint.x; + var y0 = this.currentPoint.y; - for ( var j = 0; j !== stride; ++ j ) { + this.absarc( aX + x0, aY + y0, aRadius, + aStartAngle, aEndAngle, aClockwise ); - var value = values[ offset + j ]; + }, - if ( value !== values[ offsetP + j ] || - value !== values[ offsetN + j ] ) { + absarc: function ( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) { - keep = true; - break; + this.absellipse( aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise ); - } + }, - } + ellipse: function ( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) { - } else { + var x0 = this.currentPoint.x; + var y0 = this.currentPoint.y; - keep = true; + this.absellipse( aX + x0, aY + y0, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ); - } + }, - } + absellipse: function ( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) { - // in-place compaction + var curve = new EllipseCurve( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ); - if ( keep ) { + if ( this.curves.length > 0 ) { - if ( i !== writeIndex ) { + // if a previous curve is present, attempt to join + var firstPoint = curve.getPoint( 0 ); - times[ writeIndex ] = times[ i ]; + if ( ! firstPoint.equals( this.currentPoint ) ) { - var readOffset = i * stride, - writeOffset = writeIndex * stride; + this.lineTo( firstPoint.x, firstPoint.y ); - for ( var j = 0; j !== stride; ++ j ) { + } - values[ writeOffset + j ] = values[ readOffset + j ]; + } - } + this.curves.push( curve ); - } + var lastPoint = curve.getPoint( 1 ); + this.currentPoint.copy( lastPoint ); - ++ writeIndex; + }, - } + copy: function ( source ) { - } + CurvePath.prototype.copy.call( this, source ); - // flush last keyframe (compaction looks ahead) + this.currentPoint.copy( source.currentPoint ); - if ( lastIndex > 0 ) { + return this; - times[ writeIndex ] = times[ lastIndex ]; + }, - for ( var readOffset = lastIndex * stride, writeOffset = writeIndex * stride, j = 0; j !== stride; ++ j ) { + toJSON: function () { - values[ writeOffset + j ] = values[ readOffset + j ]; + var data = CurvePath.prototype.toJSON.call( this ); - } + data.currentPoint = this.currentPoint.toArray(); - ++ writeIndex; + return data; - } + }, - if ( writeIndex !== times.length ) { + fromJSON: function ( json ) { - this.times = AnimationUtils.arraySlice( times, 0, writeIndex ); - this.values = AnimationUtils.arraySlice( values, 0, writeIndex * stride ); + CurvePath.prototype.fromJSON.call( this, json ); - } + this.currentPoint.fromArray( json.currentPoint ); return this; @@ -36499,665 +36508,684 @@ Object.assign( KeyframeTrack.prototype, { } ); /** - * - * A Track of Boolean keyframe values. - * - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw - */ + * @author zz85 / http://www.lab4games.net/zz85/blog + * Defines a 2d shape plane using paths. + **/ -function BooleanKeyframeTrack( name, times, values ) { +// STEP 1 Create a path. +// STEP 2 Turn path into shape. +// STEP 3 ExtrudeGeometry takes in Shape/Shapes +// STEP 3a - Extract points from each shape, turn to vertices +// STEP 3b - Triangulate each shape, add faces. - KeyframeTrack.call( this, name, times, values ); +function Shape( points ) { -} + Path.call( this, points ); -BooleanKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { + this.uuid = _Math.generateUUID(); - constructor: BooleanKeyframeTrack, + this.type = 'Shape'; - ValueTypeName: 'bool', - ValueBufferType: Array, + this.holes = []; - DefaultInterpolation: InterpolateDiscrete, +} - InterpolantFactoryMethodLinear: undefined, - InterpolantFactoryMethodSmooth: undefined +Shape.prototype = Object.assign( Object.create( Path.prototype ), { - // Note: Actually this track could have a optimized / compressed - // representation of a single value and a custom interpolant that - // computes "firstValue ^ isOdd( index )". + constructor: Shape, -} ); + getPointsHoles: function ( divisions ) { -/** - * - * A Track of keyframe values that represent color. - * - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw - */ + var holesPts = []; -function ColorKeyframeTrack( name, times, values, interpolation ) { + for ( var i = 0, l = this.holes.length; i < l; i ++ ) { - KeyframeTrack.call( this, name, times, values, interpolation ); + holesPts[ i ] = this.holes[ i ].getPoints( divisions ); -} + } -ColorKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { + return holesPts; - constructor: ColorKeyframeTrack, + }, - ValueTypeName: 'color' + // get points of shape and holes (keypoints based on segments parameter) - // ValueBufferType is inherited + extractPoints: function ( divisions ) { - // DefaultInterpolation is inherited + return { - // Note: Very basic implementation and nothing special yet. - // However, this is the place for color space parameterization. + shape: this.getPoints( divisions ), + holes: this.getPointsHoles( divisions ) -} ); + }; -/** - * - * A Track of numeric keyframe values. - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw - */ + }, -function NumberKeyframeTrack( name, times, values, interpolation ) { + copy: function ( source ) { - KeyframeTrack.call( this, name, times, values, interpolation ); + Path.prototype.copy.call( this, source ); -} + this.holes = []; -NumberKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { + for ( var i = 0, l = source.holes.length; i < l; i ++ ) { - constructor: NumberKeyframeTrack, + var hole = source.holes[ i ]; - ValueTypeName: 'number' + this.holes.push( hole.clone() ); - // ValueBufferType is inherited + } - // DefaultInterpolation is inherited + return this; -} ); + }, -/** - * Spherical linear unit quaternion interpolant. - * - * @author tschw - */ + toJSON: function () { -function QuaternionLinearInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) { + var data = Path.prototype.toJSON.call( this ); - Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer ); + data.uuid = this.uuid; + data.holes = []; -} + for ( var i = 0, l = this.holes.length; i < l; i ++ ) { -QuaternionLinearInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), { + var hole = this.holes[ i ]; + data.holes.push( hole.toJSON() ); - constructor: QuaternionLinearInterpolant, + } - interpolate_: function ( i1, t0, t, t1 ) { + return data; - var result = this.resultBuffer, - values = this.sampleValues, - stride = this.valueSize, + }, - offset = i1 * stride, + fromJSON: function ( json ) { - alpha = ( t - t0 ) / ( t1 - t0 ); + Path.prototype.fromJSON.call( this, json ); - for ( var end = offset + stride; offset !== end; offset += 4 ) { + this.uuid = json.uuid; + this.holes = []; - Quaternion.slerpFlat( result, 0, values, offset - stride, values, offset, alpha ); + for ( var i = 0, l = json.holes.length; i < l; i ++ ) { + + var hole = json.holes[ i ]; + this.holes.push( new Path().fromJSON( hole ) ); } - return result; + return this; } } ); /** - * - * A Track of quaternion keyframe values. - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw + * @author mrdoob / http://mrdoob.com/ + * @author alteredq / http://alteredqualia.com/ */ -function QuaternionKeyframeTrack( name, times, values, interpolation ) { - - KeyframeTrack.call( this, name, times, values, interpolation ); +function Light( color, intensity ) { -} + Object3D.call( this ); -QuaternionKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { + this.type = 'Light'; - constructor: QuaternionKeyframeTrack, + this.color = new Color( color ); + this.intensity = intensity !== undefined ? intensity : 1; - ValueTypeName: 'quaternion', + this.receiveShadow = undefined; - // ValueBufferType is inherited +} - DefaultInterpolation: InterpolateLinear, +Light.prototype = Object.assign( Object.create( Object3D.prototype ), { - InterpolantFactoryMethodLinear: function ( result ) { + constructor: Light, - return new QuaternionLinearInterpolant( this.times, this.values, this.getValueSize(), result ); + isLight: true, - }, + copy: function ( source ) { - InterpolantFactoryMethodSmooth: undefined // not yet implemented + Object3D.prototype.copy.call( this, source ); -} ); + this.color.copy( source.color ); + this.intensity = source.intensity; -/** - * - * A Track that interpolates Strings - * - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw - */ + return this; -function StringKeyframeTrack( name, times, values, interpolation ) { + }, - KeyframeTrack.call( this, name, times, values, interpolation ); + toJSON: function ( meta ) { -} + var data = Object3D.prototype.toJSON.call( this, meta ); -StringKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { + data.object.color = this.color.getHex(); + data.object.intensity = this.intensity; - constructor: StringKeyframeTrack, + if ( this.groundColor !== undefined ) data.object.groundColor = this.groundColor.getHex(); - ValueTypeName: 'string', - ValueBufferType: Array, + if ( this.distance !== undefined ) data.object.distance = this.distance; + if ( this.angle !== undefined ) data.object.angle = this.angle; + if ( this.decay !== undefined ) data.object.decay = this.decay; + if ( this.penumbra !== undefined ) data.object.penumbra = this.penumbra; - DefaultInterpolation: InterpolateDiscrete, + if ( this.shadow !== undefined ) data.object.shadow = this.shadow.toJSON(); - InterpolantFactoryMethodLinear: undefined, + return data; - InterpolantFactoryMethodSmooth: undefined + } } ); /** - * - * A Track of vectored keyframe values. - * - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ - * @author tschw + * @author alteredq / http://alteredqualia.com/ */ -function VectorKeyframeTrack( name, times, values, interpolation ) { +function HemisphereLight( skyColor, groundColor, intensity ) { - KeyframeTrack.call( this, name, times, values, interpolation ); + Light.call( this, skyColor, intensity ); + + this.type = 'HemisphereLight'; + + this.castShadow = undefined; + + this.position.copy( Object3D.DefaultUp ); + this.updateMatrix(); + + this.groundColor = new Color( groundColor ); } -VectorKeyframeTrack.prototype = Object.assign( Object.create( KeyframeTrack.prototype ), { +HemisphereLight.prototype = Object.assign( Object.create( Light.prototype ), { - constructor: VectorKeyframeTrack, + constructor: HemisphereLight, - ValueTypeName: 'vector' + isHemisphereLight: true, - // ValueBufferType is inherited + copy: function ( source ) { - // DefaultInterpolation is inherited + Light.prototype.copy.call( this, source ); + + this.groundColor.copy( source.groundColor ); + + return this; + + } } ); /** - * - * Reusable set of Tracks that represent an animation. - * - * @author Ben Houston / http://clara.io/ - * @author David Sarno / http://lighthaus.us/ + * @author mrdoob / http://mrdoob.com/ */ -function AnimationClip( name, duration, tracks ) { - - this.name = name; - this.tracks = tracks; - this.duration = ( duration !== undefined ) ? duration : - 1; +function LightShadow( camera ) { - this.uuid = _Math.generateUUID(); + this.camera = camera; - // this means it should figure out its duration by scanning the tracks - if ( this.duration < 0 ) { + this.bias = 0; + this.radius = 1; - this.resetDuration(); + this.mapSize = new Vector2( 512, 512 ); - } + this.map = null; + this.matrix = new Matrix4(); } -function getTrackTypeForValueTypeName( typeName ) { +Object.assign( LightShadow.prototype, { - switch ( typeName.toLowerCase() ) { + copy: function ( source ) { - case 'scalar': - case 'double': - case 'float': - case 'number': - case 'integer': + this.camera = source.camera.clone(); - return NumberKeyframeTrack; + this.bias = source.bias; + this.radius = source.radius; - case 'vector': - case 'vector2': - case 'vector3': - case 'vector4': + this.mapSize.copy( source.mapSize ); - return VectorKeyframeTrack; + return this; - case 'color': + }, - return ColorKeyframeTrack; + clone: function () { - case 'quaternion': + return new this.constructor().copy( this ); - return QuaternionKeyframeTrack; + }, - case 'bool': - case 'boolean': + toJSON: function () { - return BooleanKeyframeTrack; + var object = {}; - case 'string': + if ( this.bias !== 0 ) object.bias = this.bias; + if ( this.radius !== 1 ) object.radius = this.radius; + if ( this.mapSize.x !== 512 || this.mapSize.y !== 512 ) object.mapSize = this.mapSize.toArray(); - return StringKeyframeTrack; + object.camera = this.camera.toJSON( false ).object; + delete object.camera.matrix; + + return object; } - throw new Error( 'THREE.KeyframeTrack: Unsupported typeName: ' + typeName ); +} ); + +/** + * @author mrdoob / http://mrdoob.com/ + */ + +function SpotLightShadow() { + + LightShadow.call( this, new PerspectiveCamera( 50, 1, 0.5, 500 ) ); } -function parseKeyframeTrack( json ) { +SpotLightShadow.prototype = Object.assign( Object.create( LightShadow.prototype ), { - if ( json.type === undefined ) { + constructor: SpotLightShadow, - throw new Error( 'THREE.KeyframeTrack: track type undefined, can not parse' ); + isSpotLightShadow: true, - } + update: function ( light ) { - var trackType = getTrackTypeForValueTypeName( json.type ); + var camera = this.camera; - if ( json.times === undefined ) { + var fov = _Math.RAD2DEG * 2 * light.angle; + var aspect = this.mapSize.width / this.mapSize.height; + var far = light.distance || camera.far; - var times = [], values = []; + if ( fov !== camera.fov || aspect !== camera.aspect || far !== camera.far ) { - AnimationUtils.flattenJSON( json.keys, times, values, 'value' ); + camera.fov = fov; + camera.aspect = aspect; + camera.far = far; + camera.updateProjectionMatrix(); - json.times = times; - json.values = values; + } } - // derived classes can define a static parse method - if ( trackType.parse !== undefined ) { +} ); - return trackType.parse( json ); +/** + * @author alteredq / http://alteredqualia.com/ + */ - } else { +function SpotLight( color, intensity, distance, angle, penumbra, decay ) { - // by default, we assume a constructor compatible with the base - return new trackType( json.name, json.times, json.values, json.interpolation ); + Light.call( this, color, intensity ); - } + this.type = 'SpotLight'; -} + this.position.copy( Object3D.DefaultUp ); + this.updateMatrix(); -Object.assign( AnimationClip, { + this.target = new Object3D(); - parse: function ( json ) { + Object.defineProperty( this, 'power', { + get: function () { - var tracks = [], - jsonTracks = json.tracks, - frameTime = 1.0 / ( json.fps || 1.0 ); + // intensity = power per solid angle. + // ref: equation (17) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf + return this.intensity * Math.PI; - for ( var i = 0, n = jsonTracks.length; i !== n; ++ i ) { + }, + set: function ( power ) { - tracks.push( parseKeyframeTrack( jsonTracks[ i ] ).scale( frameTime ) ); + // intensity = power per solid angle. + // ref: equation (17) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf + this.intensity = power / Math.PI; } + } ); - return new AnimationClip( json.name, json.duration, tracks ); - - }, - - toJSON: function ( clip ) { + this.distance = ( distance !== undefined ) ? distance : 0; + this.angle = ( angle !== undefined ) ? angle : Math.PI / 3; + this.penumbra = ( penumbra !== undefined ) ? penumbra : 0; + this.decay = ( decay !== undefined ) ? decay : 1; // for physically correct lights, should be 2. - var tracks = [], - clipTracks = clip.tracks; + this.shadow = new SpotLightShadow(); - var json = { +} - 'name': clip.name, - 'duration': clip.duration, - 'tracks': tracks, - 'uuid': clip.uuid +SpotLight.prototype = Object.assign( Object.create( Light.prototype ), { - }; + constructor: SpotLight, - for ( var i = 0, n = clipTracks.length; i !== n; ++ i ) { + isSpotLight: true, - tracks.push( KeyframeTrack.toJSON( clipTracks[ i ] ) ); + copy: function ( source ) { - } + Light.prototype.copy.call( this, source ); - return json; + this.distance = source.distance; + this.angle = source.angle; + this.penumbra = source.penumbra; + this.decay = source.decay; - }, + this.target = source.target.clone(); - CreateFromMorphTargetSequence: function ( name, morphTargetSequence, fps, noLoop ) { + this.shadow = source.shadow.clone(); - var numMorphTargets = morphTargetSequence.length; - var tracks = []; + return this; - for ( var i = 0; i < numMorphTargets; i ++ ) { + } - var times = []; - var values = []; +} ); - times.push( - ( i + numMorphTargets - 1 ) % numMorphTargets, - i, - ( i + 1 ) % numMorphTargets ); +/** + * @author mrdoob / http://mrdoob.com/ + */ - values.push( 0, 1, 0 ); - var order = AnimationUtils.getKeyframeOrder( times ); - times = AnimationUtils.sortedArray( times, 1, order ); - values = AnimationUtils.sortedArray( values, 1, order ); +function PointLight( color, intensity, distance, decay ) { - // if there is a key at the first frame, duplicate it as the - // last frame as well for perfect loop. - if ( ! noLoop && times[ 0 ] === 0 ) { + Light.call( this, color, intensity ); - times.push( numMorphTargets ); - values.push( values[ 0 ] ); + this.type = 'PointLight'; - } + Object.defineProperty( this, 'power', { + get: function () { - tracks.push( - new NumberKeyframeTrack( - '.morphTargetInfluences[' + morphTargetSequence[ i ].name + ']', - times, values - ).scale( 1.0 / fps ) ); + // intensity = power per solid angle. + // ref: equation (15) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf + return this.intensity * 4 * Math.PI; - } + }, + set: function ( power ) { - return new AnimationClip( name, - 1, tracks ); + // intensity = power per solid angle. + // ref: equation (15) from https://seblagarde.files.wordpress.com/2015/07/course_notes_moving_frostbite_to_pbr_v32.pdf + this.intensity = power / ( 4 * Math.PI ); - }, + } + } ); - findByName: function ( objectOrClipArray, name ) { + this.distance = ( distance !== undefined ) ? distance : 0; + this.decay = ( decay !== undefined ) ? decay : 1; // for physically correct lights, should be 2. - var clipArray = objectOrClipArray; + this.shadow = new LightShadow( new PerspectiveCamera( 90, 1, 0.5, 500 ) ); - if ( ! Array.isArray( objectOrClipArray ) ) { +} - var o = objectOrClipArray; - clipArray = o.geometry && o.geometry.animations || o.animations; +PointLight.prototype = Object.assign( Object.create( Light.prototype ), { - } + constructor: PointLight, - for ( var i = 0; i < clipArray.length; i ++ ) { + isPointLight: true, - if ( clipArray[ i ].name === name ) { + copy: function ( source ) { - return clipArray[ i ]; + Light.prototype.copy.call( this, source ); - } + this.distance = source.distance; + this.decay = source.decay; - } + this.shadow = source.shadow.clone(); - return null; + return this; - }, + } - CreateClipsFromMorphTargetSequences: function ( morphTargets, fps, noLoop ) { +} ); - var animationToMorphTargets = {}; +/** + * @author alteredq / http://alteredqualia.com/ + * @author arose / http://github.com/arose + */ - // tested with https://regex101.com/ on trick sequences - // such flamingo_flyA_003, flamingo_run1_003, crdeath0059 - var pattern = /^([\w-]*?)([\d]+)$/; +function OrthographicCamera( left, right, top, bottom, near, far ) { - // sort morph target names into animation groups based - // patterns like Walk_001, Walk_002, Run_001, Run_002 - for ( var i = 0, il = morphTargets.length; i < il; i ++ ) { + Camera.call( this ); - var morphTarget = morphTargets[ i ]; - var parts = morphTarget.name.match( pattern ); + this.type = 'OrthographicCamera'; - if ( parts && parts.length > 1 ) { + this.zoom = 1; + this.view = null; - var name = parts[ 1 ]; + this.left = ( left !== undefined ) ? left : - 1; + this.right = ( right !== undefined ) ? right : 1; + this.top = ( top !== undefined ) ? top : 1; + this.bottom = ( bottom !== undefined ) ? bottom : - 1; - var animationMorphTargets = animationToMorphTargets[ name ]; - if ( ! animationMorphTargets ) { + this.near = ( near !== undefined ) ? near : 0.1; + this.far = ( far !== undefined ) ? far : 2000; - animationToMorphTargets[ name ] = animationMorphTargets = []; + this.updateProjectionMatrix(); - } +} - animationMorphTargets.push( morphTarget ); +OrthographicCamera.prototype = Object.assign( Object.create( Camera.prototype ), { - } + constructor: OrthographicCamera, - } + isOrthographicCamera: true, - var clips = []; + copy: function ( source, recursive ) { - for ( var name in animationToMorphTargets ) { + Camera.prototype.copy.call( this, source, recursive ); - clips.push( AnimationClip.CreateFromMorphTargetSequence( name, animationToMorphTargets[ name ], fps, noLoop ) ); + this.left = source.left; + this.right = source.right; + this.top = source.top; + this.bottom = source.bottom; + this.near = source.near; + this.far = source.far; - } + this.zoom = source.zoom; + this.view = source.view === null ? null : Object.assign( {}, source.view ); - return clips; + return this; }, - // parse the animation.hierarchy format - parseAnimation: function ( animation, bones ) { + setViewOffset: function ( fullWidth, fullHeight, x, y, width, height ) { - if ( ! animation ) { + if ( this.view === null ) { - console.error( 'THREE.AnimationClip: No animation in JSONLoader data.' ); - return null; + this.view = { + enabled: true, + fullWidth: 1, + fullHeight: 1, + offsetX: 0, + offsetY: 0, + width: 1, + height: 1 + }; } - var addNonemptyTrack = function ( trackType, trackName, animationKeys, propertyName, destTracks ) { + this.view.enabled = true; + this.view.fullWidth = fullWidth; + this.view.fullHeight = fullHeight; + this.view.offsetX = x; + this.view.offsetY = y; + this.view.width = width; + this.view.height = height; - // only return track if there are actually keys. - if ( animationKeys.length !== 0 ) { + this.updateProjectionMatrix(); - var times = []; - var values = []; + }, - AnimationUtils.flattenJSON( animationKeys, times, values, propertyName ); + clearViewOffset: function () { - // empty keys are filtered out, so check again - if ( times.length !== 0 ) { + if ( this.view !== null ) { - destTracks.push( new trackType( trackName, times, values ) ); + this.view.enabled = false; - } + } - } + this.updateProjectionMatrix(); - }; + }, - var tracks = []; + updateProjectionMatrix: function () { - var clipName = animation.name || 'default'; - // automatic length determination in AnimationClip. - var duration = animation.length || - 1; - var fps = animation.fps || 30; + var dx = ( this.right - this.left ) / ( 2 * this.zoom ); + var dy = ( this.top - this.bottom ) / ( 2 * this.zoom ); + var cx = ( this.right + this.left ) / 2; + var cy = ( this.top + this.bottom ) / 2; - var hierarchyTracks = animation.hierarchy || []; + var left = cx - dx; + var right = cx + dx; + var top = cy + dy; + var bottom = cy - dy; - for ( var h = 0; h < hierarchyTracks.length; h ++ ) { + if ( this.view !== null && this.view.enabled ) { - var animationKeys = hierarchyTracks[ h ].keys; + var zoomW = this.zoom / ( this.view.width / this.view.fullWidth ); + var zoomH = this.zoom / ( this.view.height / this.view.fullHeight ); + var scaleW = ( this.right - this.left ) / this.view.width; + var scaleH = ( this.top - this.bottom ) / this.view.height; - // skip empty tracks - if ( ! animationKeys || animationKeys.length === 0 ) continue; + left += scaleW * ( this.view.offsetX / zoomW ); + right = left + scaleW * ( this.view.width / zoomW ); + top -= scaleH * ( this.view.offsetY / zoomH ); + bottom = top - scaleH * ( this.view.height / zoomH ); - // process morph targets - if ( animationKeys[ 0 ].morphTargets ) { + } - // figure out all morph targets used in this track - var morphTargetNames = {}; + this.projectionMatrix.makeOrthographic( left, right, top, bottom, this.near, this.far ); - for ( var k = 0; k < animationKeys.length; k ++ ) { + this.projectionMatrixInverse.getInverse( this.projectionMatrix ); - if ( animationKeys[ k ].morphTargets ) { + }, - for ( var m = 0; m < animationKeys[ k ].morphTargets.length; m ++ ) { + toJSON: function ( meta ) { - morphTargetNames[ animationKeys[ k ].morphTargets[ m ] ] = - 1; + var data = Object3D.prototype.toJSON.call( this, meta ); - } + data.object.zoom = this.zoom; + data.object.left = this.left; + data.object.right = this.right; + data.object.top = this.top; + data.object.bottom = this.bottom; + data.object.near = this.near; + data.object.far = this.far; - } + if ( this.view !== null ) data.object.view = Object.assign( {}, this.view ); - } + return data; - // create a track for each morph target with all zero - // morphTargetInfluences except for the keys in which - // the morphTarget is named. - for ( var morphTargetName in morphTargetNames ) { + } - var times = []; - var values = []; +} ); - for ( var m = 0; m !== animationKeys[ k ].morphTargets.length; ++ m ) { +/** + * @author mrdoob / http://mrdoob.com/ + */ - var animationKey = animationKeys[ k ]; +function DirectionalLightShadow( ) { - times.push( animationKey.time ); - values.push( ( animationKey.morphTarget === morphTargetName ) ? 1 : 0 ); + LightShadow.call( this, new OrthographicCamera( - 5, 5, 5, - 5, 0.5, 500 ) ); - } +} - tracks.push( new NumberKeyframeTrack( '.morphTargetInfluence[' + morphTargetName + ']', times, values ) ); +DirectionalLightShadow.prototype = Object.assign( Object.create( LightShadow.prototype ), { - } + constructor: DirectionalLightShadow - duration = morphTargetNames.length * ( fps || 1.0 ); +} ); - } else { +/** + * @author mrdoob / http://mrdoob.com/ + * @author alteredq / http://alteredqualia.com/ + */ - // ...assume skeletal animation +function DirectionalLight( color, intensity ) { - var boneName = '.bones[' + bones[ h ].name + ']'; + Light.call( this, color, intensity ); - addNonemptyTrack( - VectorKeyframeTrack, boneName + '.position', - animationKeys, 'pos', tracks ); + this.type = 'DirectionalLight'; - addNonemptyTrack( - QuaternionKeyframeTrack, boneName + '.quaternion', - animationKeys, 'rot', tracks ); + this.position.copy( Object3D.DefaultUp ); + this.updateMatrix(); - addNonemptyTrack( - VectorKeyframeTrack, boneName + '.scale', - animationKeys, 'scl', tracks ); + this.target = new Object3D(); - } + this.shadow = new DirectionalLightShadow(); - } +} - if ( tracks.length === 0 ) { +DirectionalLight.prototype = Object.assign( Object.create( Light.prototype ), { - return null; + constructor: DirectionalLight, - } + isDirectionalLight: true, - var clip = new AnimationClip( clipName, duration, tracks ); + copy: function ( source ) { - return clip; + Light.prototype.copy.call( this, source ); + + this.target = source.target.clone(); + + this.shadow = source.shadow.clone(); + + return this; } } ); -Object.assign( AnimationClip.prototype, { +/** + * @author mrdoob / http://mrdoob.com/ + */ - resetDuration: function () { +function AmbientLight( color, intensity ) { - var tracks = this.tracks, duration = 0; + Light.call( this, color, intensity ); - for ( var i = 0, n = tracks.length; i !== n; ++ i ) { + this.type = 'AmbientLight'; - var track = this.tracks[ i ]; + this.castShadow = undefined; - duration = Math.max( duration, track.times[ track.times.length - 1 ] ); +} - } +AmbientLight.prototype = Object.assign( Object.create( Light.prototype ), { - this.duration = duration; + constructor: AmbientLight, - return this; + isAmbientLight: true - }, +} ); - trim: function () { +/** + * @author abelnation / http://github.com/abelnation + */ - for ( var i = 0; i < this.tracks.length; i ++ ) { +function RectAreaLight( color, intensity, width, height ) { - this.tracks[ i ].trim( 0, this.duration ); + Light.call( this, color, intensity ); - } + this.type = 'RectAreaLight'; - return this; + this.width = ( width !== undefined ) ? width : 10; + this.height = ( height !== undefined ) ? height : 10; - }, +} - validate: function () { +RectAreaLight.prototype = Object.assign( Object.create( Light.prototype ), { - var valid = true; + constructor: RectAreaLight, - for ( var i = 0; i < this.tracks.length; i ++ ) { + isRectAreaLight: true, - valid = valid && this.tracks[ i ].validate(); + copy: function ( source ) { - } + Light.prototype.copy.call( this, source ); - return valid; + this.width = source.width; + this.height = source.height; - }, + return this; - optimize: function () { + }, - for ( var i = 0; i < this.tracks.length; i ++ ) { + toJSON: function ( meta ) { - this.tracks[ i ].optimize(); + var data = Light.prototype.toJSON.call( this, meta ); - } + data.object.width = this.width; + data.object.height = this.height; - return this; + return data; } @@ -38901,8 +38929,8 @@ Object.assign( ObjectLoader.prototype, { }, undefined, function () { - scope.manager.itemEnd( url ); scope.manager.itemError( url ); + scope.manager.itemEnd( url ); } ); @@ -39432,8 +39460,8 @@ ImageBitmapLoader.prototype = { if ( onError ) onError( e ); - scope.manager.itemEnd( url ); scope.manager.itemError( url ); + scope.manager.itemEnd( url ); } ); @@ -40101,7 +40129,7 @@ Object.assign( StereoCamera.prototype, { * @author alteredq / http://alteredqualia.com/ */ -function CubeCamera( near, far, cubeResolution ) { +function CubeCamera( near, far, cubeResolution, options ) { Object3D.call( this ); @@ -40139,7 +40167,7 @@ function CubeCamera( near, far, cubeResolution ) { cameraNZ.lookAt( new Vector3( 0, 0, - 1 ) ); this.add( cameraNZ ); - var options = { format: RGBFormat, magFilter: LinearFilter, minFilter: LinearFilter }; + options = options || { format: RGBFormat, magFilter: LinearFilter, minFilter: LinearFilter }; this.renderTarget = new WebGLRenderTargetCube( cubeResolution, cubeResolution, options ); this.renderTarget.texture.name = "CubeCamera"; @@ -40199,6 +40227,77 @@ function CubeCamera( near, far, cubeResolution ) { CubeCamera.prototype = Object.create( Object3D.prototype ); CubeCamera.prototype.constructor = CubeCamera; +/** + * @author alteredq / http://alteredqualia.com/ + */ + +function Clock( autoStart ) { + + this.autoStart = ( autoStart !== undefined ) ? autoStart : true; + + this.startTime = 0; + this.oldTime = 0; + this.elapsedTime = 0; + + this.running = false; + +} + +Object.assign( Clock.prototype, { + + start: function () { + + this.startTime = ( typeof performance === 'undefined' ? Date : performance ).now(); // see #10732 + + this.oldTime = this.startTime; + this.elapsedTime = 0; + this.running = true; + + }, + + stop: function () { + + this.getElapsedTime(); + this.running = false; + this.autoStart = false; + + }, + + getElapsedTime: function () { + + this.getDelta(); + return this.elapsedTime; + + }, + + getDelta: function () { + + var diff = 0; + + if ( this.autoStart && ! this.running ) { + + this.start(); + return 0; + + } + + if ( this.running ) { + + var newTime = ( typeof performance === 'undefined' ? Date : performance ).now(); + + diff = ( newTime - this.oldTime ) / 1000; + this.oldTime = newTime; + + this.elapsedTime += diff; + + } + + return diff; + + } + +} ); + /** * @author mrdoob / http://mrdoob.com/ */ @@ -40216,6 +40315,8 @@ function AudioListener() { this.filter = null; + this.timeDelta = 0; + } AudioListener.prototype = Object.assign( Object.create( Object3D.prototype ), { @@ -40291,6 +40392,7 @@ AudioListener.prototype = Object.assign( Object.create( Object3D.prototype ), { var scale = new Vector3(); var orientation = new Vector3(); + var clock = new Clock(); return function updateMatrixWorld( force ) { @@ -40299,21 +40401,27 @@ AudioListener.prototype = Object.assign( Object.create( Object3D.prototype ), { var listener = this.context.listener; var up = this.up; + this.timeDelta = clock.getDelta(); + this.matrixWorld.decompose( position, quaternion, scale ); orientation.set( 0, 0, - 1 ).applyQuaternion( quaternion ); if ( listener.positionX ) { - listener.positionX.setValueAtTime( position.x, this.context.currentTime ); - listener.positionY.setValueAtTime( position.y, this.context.currentTime ); - listener.positionZ.setValueAtTime( position.z, this.context.currentTime ); - listener.forwardX.setValueAtTime( orientation.x, this.context.currentTime ); - listener.forwardY.setValueAtTime( orientation.y, this.context.currentTime ); - listener.forwardZ.setValueAtTime( orientation.z, this.context.currentTime ); - listener.upX.setValueAtTime( up.x, this.context.currentTime ); - listener.upY.setValueAtTime( up.y, this.context.currentTime ); - listener.upZ.setValueAtTime( up.z, this.context.currentTime ); + // code path for Chrome (see #14393) + + var endTime = this.context.currentTime + this.timeDelta; + + listener.positionX.linearRampToValueAtTime( position.x, endTime ); + listener.positionY.linearRampToValueAtTime( position.y, endTime ); + listener.positionZ.linearRampToValueAtTime( position.z, endTime ); + listener.forwardX.linearRampToValueAtTime( orientation.x, endTime ); + listener.forwardY.linearRampToValueAtTime( orientation.y, endTime ); + listener.forwardZ.linearRampToValueAtTime( orientation.z, endTime ); + listener.upX.linearRampToValueAtTime( up.x, endTime ); + listener.upY.linearRampToValueAtTime( up.y, endTime ); + listener.upZ.linearRampToValueAtTime( up.z, endTime ); } else { @@ -40339,6 +40447,7 @@ function Audio( listener ) { this.type = 'Audio'; + this.listener = listener; this.context = listener.context; this.gain = this.context.createGain(); @@ -40750,8 +40859,25 @@ PositionalAudio.prototype = Object.assign( Object.create( Audio.prototype ), { orientation.set( 0, 0, 1 ).applyQuaternion( quaternion ); - panner.setPosition( position.x, position.y, position.z ); - panner.setOrientation( orientation.x, orientation.y, orientation.z ); + if ( panner.positionX ) { + + // code path for Chrome and Firefox (see #14393) + + var endTime = this.context.currentTime + this.listener.timeDelta; + + panner.positionX.linearRampToValueAtTime( position.x, endTime ); + panner.positionY.linearRampToValueAtTime( position.y, endTime ); + panner.positionZ.linearRampToValueAtTime( position.z, endTime ); + panner.orientationX.linearRampToValueAtTime( orientation.x, endTime ); + panner.orientationY.linearRampToValueAtTime( orientation.y, endTime ); + panner.orientationZ.linearRampToValueAtTime( orientation.z, endTime ); + + } else { + + panner.setPosition( position.x, position.y, position.z ); + panner.setOrientation( orientation.x, orientation.y, orientation.z ); + + } }; @@ -43787,77 +43913,6 @@ Object.assign( Raycaster.prototype, { } ); -/** - * @author alteredq / http://alteredqualia.com/ - */ - -function Clock( autoStart ) { - - this.autoStart = ( autoStart !== undefined ) ? autoStart : true; - - this.startTime = 0; - this.oldTime = 0; - this.elapsedTime = 0; - - this.running = false; - -} - -Object.assign( Clock.prototype, { - - start: function () { - - this.startTime = ( typeof performance === 'undefined' ? Date : performance ).now(); // see #10732 - - this.oldTime = this.startTime; - this.elapsedTime = 0; - this.running = true; - - }, - - stop: function () { - - this.getElapsedTime(); - this.running = false; - this.autoStart = false; - - }, - - getElapsedTime: function () { - - this.getDelta(); - return this.elapsedTime; - - }, - - getDelta: function () { - - var diff = 0; - - if ( this.autoStart && ! this.running ) { - - this.start(); - return 0; - - } - - if ( this.running ) { - - var newTime = ( typeof performance === 'undefined' ? Date : performance ).now(); - - diff = ( newTime - this.oldTime ) / 1000; - this.oldTime = newTime; - - this.elapsedTime += diff; - - } - - return diff; - - } - -} ); - /** * @author bhouston / http://clara.io * @author WestLangley / http://github.com/WestLangley @@ -44791,7 +44846,7 @@ function PointLightHelper( light, sphereSize, color ) { /* - var distanceGeometry = new THREE.IcosahedronGeometry( 1, 2 ); + var distanceGeometry = new THREE.IcosahedronBufferGeometry( 1, 2 ); var distanceMaterial = new THREE.MeshBasicMaterial( { color: hexColor, fog: false, wireframe: true, opacity: 0.1, transparent: true } ); this.lightSphere = new THREE.Mesh( bulbGeometry, bulbMaterial ); @@ -45637,6 +45692,22 @@ BoxHelper.prototype.setFromObject = function ( object ) { }; +BoxHelper.prototype.copy = function ( source ) { + + LineSegments.prototype.copy.call( this, source ); + + this.object = source.object; + + return this; + +}; + +BoxHelper.prototype.clone = function () { + + return new this.constructor().copy( this ); + +}; + /** * @author WestLangley / http://github.com/WestLangley */ @@ -45761,8 +45832,10 @@ function ArrowHelper( dir, origin, length, color, headLength, headWidth ) { Object3D.call( this ); - if ( color === undefined ) color = 0xffff00; + if ( dir === undefined ) dir = new THREE.Vector3( 0, 0, 1 ); + if ( origin === undefined ) origin = new THREE.Vector3( 0, 0, 0 ); if ( length === undefined ) length = 1; + if ( color === undefined ) color = 0xffff00; if ( headLength === undefined ) headLength = 0.2 * length; if ( headWidth === undefined ) headWidth = 0.2 * headLength; @@ -45846,6 +45919,23 @@ ArrowHelper.prototype.setColor = function ( color ) { }; +ArrowHelper.prototype.copy = function ( source ) { + + Object3D.prototype.copy.call( this, source, false ); + + this.line.copy( source.line ); + this.cone.copy( source.cone ); + + return this; + +}; + +ArrowHelper.prototype.clone = function () { + + return new this.constructor().copy( this ); + +}; + /** * @author sroucheray / http://sroucheray.org/ * @author mrdoob / http://mrdoob.com/ @@ -47091,6 +47181,20 @@ Object.defineProperties( Material.prototype, { } }, + + overdraw: { + get: function () { + + console.warn( 'THREE.Material: .overdraw has been removed.' ); + + }, + set: function () { + + console.warn( 'THREE.Material: .overdraw has been removed.' ); + + } + }, + wrapRGB: { get: function () { @@ -47676,13 +47780,7 @@ function Projector() { function CanvasRenderer() { - console.error( 'THREE.CanvasRenderer has been moved to /examples/js/renderers/CanvasRenderer.js' ); - - this.domElement = document.createElementNS( 'http://www.w3.org/1999/xhtml', 'canvas' ); - this.clear = function () {}; - this.render = function () {}; - this.setClearColor = function () {}; - this.setSize = function () {}; + console.error( 'THREE.CanvasRenderer has been removed' ); } @@ -47718,4 +47816,4 @@ function LensFlare() { } -export { WebGLRenderTargetCube, WebGLRenderTarget, WebGLRenderer, ShaderLib, UniformsLib, UniformsUtils, ShaderChunk, FogExp2, Fog, Scene, Sprite, LOD, SkinnedMesh, Skeleton, Bone, Mesh, LineSegments, LineLoop, Line, Points, Group, VideoTexture, DataTexture, DataTexture3D, CompressedTexture, CubeTexture, CanvasTexture, DepthTexture, Texture, CompressedTextureLoader, DataTextureLoader, CubeTextureLoader, TextureLoader, ObjectLoader, MaterialLoader, BufferGeometryLoader, DefaultLoadingManager, LoadingManager, JSONLoader, ImageLoader, ImageBitmapLoader, FontLoader, FileLoader, Loader, LoaderUtils, Cache, AudioLoader, SpotLightShadow, SpotLight, PointLight, RectAreaLight, HemisphereLight, DirectionalLightShadow, DirectionalLight, AmbientLight, LightShadow, Light, StereoCamera, PerspectiveCamera, OrthographicCamera, CubeCamera, ArrayCamera, Camera, AudioListener, PositionalAudio, AudioContext, AudioAnalyser, Audio, VectorKeyframeTrack, StringKeyframeTrack, QuaternionKeyframeTrack, NumberKeyframeTrack, ColorKeyframeTrack, BooleanKeyframeTrack, PropertyMixer, PropertyBinding, KeyframeTrack, AnimationUtils, AnimationObjectGroup, AnimationMixer, AnimationClip, Uniform, InstancedBufferGeometry, BufferGeometry, Geometry, InterleavedBufferAttribute, InstancedInterleavedBuffer, InterleavedBuffer, InstancedBufferAttribute, Face3, Object3D, Raycaster, Layers, EventDispatcher, Clock, QuaternionLinearInterpolant, LinearInterpolant, DiscreteInterpolant, CubicInterpolant, Interpolant, Triangle, _Math as Math, Spherical, Cylindrical, Plane, Frustum, Sphere, Ray, Matrix4, Matrix3, Box3, Box2, Line3, Euler, Vector4, Vector3, Vector2, Quaternion, Color, ImmediateRenderObject, VertexNormalsHelper, SpotLightHelper, SkeletonHelper, PointLightHelper, RectAreaLightHelper, HemisphereLightHelper, GridHelper, PolarGridHelper, FaceNormalsHelper, DirectionalLightHelper, CameraHelper, BoxHelper, Box3Helper, PlaneHelper, ArrowHelper, AxesHelper, Shape, Path, ShapePath, Font, CurvePath, Curve, ImageUtils, ShapeUtils, WebGLUtils, WireframeGeometry, ParametricGeometry, ParametricBufferGeometry, TetrahedronGeometry, TetrahedronBufferGeometry, OctahedronGeometry, OctahedronBufferGeometry, IcosahedronGeometry, IcosahedronBufferGeometry, DodecahedronGeometry, DodecahedronBufferGeometry, PolyhedronGeometry, PolyhedronBufferGeometry, TubeGeometry, TubeBufferGeometry, TorusKnotGeometry, TorusKnotBufferGeometry, TorusGeometry, TorusBufferGeometry, TextGeometry, TextBufferGeometry, SphereGeometry, SphereBufferGeometry, RingGeometry, RingBufferGeometry, PlaneGeometry, PlaneBufferGeometry, LatheGeometry, LatheBufferGeometry, ShapeGeometry, ShapeBufferGeometry, ExtrudeGeometry, ExtrudeBufferGeometry, EdgesGeometry, ConeGeometry, ConeBufferGeometry, CylinderGeometry, CylinderBufferGeometry, CircleGeometry, CircleBufferGeometry, BoxGeometry, BoxBufferGeometry, ShadowMaterial, SpriteMaterial, RawShaderMaterial, ShaderMaterial, PointsMaterial, MeshPhysicalMaterial, MeshStandardMaterial, MeshPhongMaterial, MeshToonMaterial, MeshNormalMaterial, MeshLambertMaterial, MeshDepthMaterial, MeshDistanceMaterial, MeshBasicMaterial, MeshMatcapMaterial, LineDashedMaterial, LineBasicMaterial, Material, Float64BufferAttribute, Float32BufferAttribute, Uint32BufferAttribute, Int32BufferAttribute, Uint16BufferAttribute, Int16BufferAttribute, Uint8ClampedBufferAttribute, Uint8BufferAttribute, Int8BufferAttribute, BufferAttribute, ArcCurve, CatmullRomCurve3, CubicBezierCurve, CubicBezierCurve3, EllipseCurve, LineCurve, LineCurve3, QuadraticBezierCurve, QuadraticBezierCurve3, SplineCurve, REVISION, MOUSE, CullFaceNone, CullFaceBack, CullFaceFront, CullFaceFrontBack, FrontFaceDirectionCW, FrontFaceDirectionCCW, BasicShadowMap, PCFShadowMap, PCFSoftShadowMap, FrontSide, BackSide, DoubleSide, FlatShading, SmoothShading, NoColors, FaceColors, VertexColors, NoBlending, NormalBlending, AdditiveBlending, SubtractiveBlending, MultiplyBlending, CustomBlending, AddEquation, SubtractEquation, ReverseSubtractEquation, MinEquation, MaxEquation, ZeroFactor, OneFactor, SrcColorFactor, OneMinusSrcColorFactor, SrcAlphaFactor, OneMinusSrcAlphaFactor, DstAlphaFactor, OneMinusDstAlphaFactor, DstColorFactor, OneMinusDstColorFactor, SrcAlphaSaturateFactor, NeverDepth, AlwaysDepth, LessDepth, LessEqualDepth, EqualDepth, GreaterEqualDepth, GreaterDepth, NotEqualDepth, MultiplyOperation, MixOperation, AddOperation, NoToneMapping, LinearToneMapping, ReinhardToneMapping, Uncharted2ToneMapping, CineonToneMapping, UVMapping, CubeReflectionMapping, CubeRefractionMapping, EquirectangularReflectionMapping, EquirectangularRefractionMapping, SphericalReflectionMapping, CubeUVReflectionMapping, CubeUVRefractionMapping, RepeatWrapping, ClampToEdgeWrapping, MirroredRepeatWrapping, NearestFilter, NearestMipMapNearestFilter, NearestMipMapLinearFilter, LinearFilter, LinearMipMapNearestFilter, LinearMipMapLinearFilter, UnsignedByteType, ByteType, ShortType, UnsignedShortType, IntType, UnsignedIntType, FloatType, HalfFloatType, UnsignedShort4444Type, UnsignedShort5551Type, UnsignedShort565Type, UnsignedInt248Type, AlphaFormat, RGBFormat, RGBAFormat, LuminanceFormat, LuminanceAlphaFormat, RGBEFormat, DepthFormat, DepthStencilFormat, RedFormat, RGB_S3TC_DXT1_Format, RGBA_S3TC_DXT1_Format, RGBA_S3TC_DXT3_Format, RGBA_S3TC_DXT5_Format, RGB_PVRTC_4BPPV1_Format, RGB_PVRTC_2BPPV1_Format, RGBA_PVRTC_4BPPV1_Format, RGBA_PVRTC_2BPPV1_Format, RGB_ETC1_Format, RGBA_ASTC_4x4_Format, RGBA_ASTC_5x4_Format, RGBA_ASTC_5x5_Format, RGBA_ASTC_6x5_Format, RGBA_ASTC_6x6_Format, RGBA_ASTC_8x5_Format, RGBA_ASTC_8x6_Format, RGBA_ASTC_8x8_Format, RGBA_ASTC_10x5_Format, RGBA_ASTC_10x6_Format, RGBA_ASTC_10x8_Format, RGBA_ASTC_10x10_Format, RGBA_ASTC_12x10_Format, RGBA_ASTC_12x12_Format, LoopOnce, LoopRepeat, LoopPingPong, InterpolateDiscrete, InterpolateLinear, InterpolateSmooth, ZeroCurvatureEnding, ZeroSlopeEnding, WrapAroundEnding, TrianglesDrawMode, TriangleStripDrawMode, TriangleFanDrawMode, LinearEncoding, sRGBEncoding, GammaEncoding, RGBEEncoding, LogLuvEncoding, RGBM7Encoding, RGBM16Encoding, RGBDEncoding, BasicDepthPacking, RGBADepthPacking, TangentSpaceNormalMap, ObjectSpaceNormalMap, BoxGeometry as CubeGeometry, Face4, LineStrip, LinePieces, MeshFaceMaterial, MultiMaterial, PointCloud, Particle, ParticleSystem, PointCloudMaterial, ParticleBasicMaterial, ParticleSystemMaterial, Vertex, DynamicBufferAttribute, Int8Attribute, Uint8Attribute, Uint8ClampedAttribute, Int16Attribute, Uint16Attribute, Int32Attribute, Uint32Attribute, Float32Attribute, Float64Attribute, ClosedSplineCurve3, SplineCurve3, Spline, AxisHelper, BoundingBoxHelper, EdgesHelper, WireframeHelper, XHRLoader, BinaryTextureLoader, GeometryUtils, Projector, CanvasRenderer, SceneUtils, LensFlare }; +export { WebGLRenderTargetCube, WebGLRenderTarget, WebGLRenderer, ShaderLib, UniformsLib, UniformsUtils, ShaderChunk, FogExp2, Fog, Scene, Sprite, LOD, SkinnedMesh, Skeleton, Bone, Mesh, LineSegments, LineLoop, Line, Points, Group, VideoTexture, DataTexture, DataTexture3D, CompressedTexture, CubeTexture, CanvasTexture, DepthTexture, Texture, AnimationLoader, CompressedTextureLoader, DataTextureLoader, CubeTextureLoader, TextureLoader, ObjectLoader, MaterialLoader, BufferGeometryLoader, DefaultLoadingManager, LoadingManager, JSONLoader, ImageLoader, ImageBitmapLoader, FontLoader, FileLoader, Loader, LoaderUtils, Cache, AudioLoader, SpotLightShadow, SpotLight, PointLight, RectAreaLight, HemisphereLight, DirectionalLightShadow, DirectionalLight, AmbientLight, LightShadow, Light, StereoCamera, PerspectiveCamera, OrthographicCamera, CubeCamera, ArrayCamera, Camera, AudioListener, PositionalAudio, AudioContext, AudioAnalyser, Audio, VectorKeyframeTrack, StringKeyframeTrack, QuaternionKeyframeTrack, NumberKeyframeTrack, ColorKeyframeTrack, BooleanKeyframeTrack, PropertyMixer, PropertyBinding, KeyframeTrack, AnimationUtils, AnimationObjectGroup, AnimationMixer, AnimationClip, Uniform, InstancedBufferGeometry, BufferGeometry, Geometry, InterleavedBufferAttribute, InstancedInterleavedBuffer, InterleavedBuffer, InstancedBufferAttribute, Face3, Object3D, Raycaster, Layers, EventDispatcher, Clock, QuaternionLinearInterpolant, LinearInterpolant, DiscreteInterpolant, CubicInterpolant, Interpolant, Triangle, _Math as Math, Spherical, Cylindrical, Plane, Frustum, Sphere, Ray, Matrix4, Matrix3, Box3, Box2, Line3, Euler, Vector4, Vector3, Vector2, Quaternion, Color, ImmediateRenderObject, VertexNormalsHelper, SpotLightHelper, SkeletonHelper, PointLightHelper, RectAreaLightHelper, HemisphereLightHelper, GridHelper, PolarGridHelper, FaceNormalsHelper, DirectionalLightHelper, CameraHelper, BoxHelper, Box3Helper, PlaneHelper, ArrowHelper, AxesHelper, Shape, Path, ShapePath, Font, CurvePath, Curve, ImageUtils, ShapeUtils, WebGLUtils, WireframeGeometry, ParametricGeometry, ParametricBufferGeometry, TetrahedronGeometry, TetrahedronBufferGeometry, OctahedronGeometry, OctahedronBufferGeometry, IcosahedronGeometry, IcosahedronBufferGeometry, DodecahedronGeometry, DodecahedronBufferGeometry, PolyhedronGeometry, PolyhedronBufferGeometry, TubeGeometry, TubeBufferGeometry, TorusKnotGeometry, TorusKnotBufferGeometry, TorusGeometry, TorusBufferGeometry, TextGeometry, TextBufferGeometry, SphereGeometry, SphereBufferGeometry, RingGeometry, RingBufferGeometry, PlaneGeometry, PlaneBufferGeometry, LatheGeometry, LatheBufferGeometry, ShapeGeometry, ShapeBufferGeometry, ExtrudeGeometry, ExtrudeBufferGeometry, EdgesGeometry, ConeGeometry, ConeBufferGeometry, CylinderGeometry, CylinderBufferGeometry, CircleGeometry, CircleBufferGeometry, BoxGeometry, BoxBufferGeometry, ShadowMaterial, SpriteMaterial, RawShaderMaterial, ShaderMaterial, PointsMaterial, MeshPhysicalMaterial, MeshStandardMaterial, MeshPhongMaterial, MeshToonMaterial, MeshNormalMaterial, MeshLambertMaterial, MeshDepthMaterial, MeshDistanceMaterial, MeshBasicMaterial, MeshMatcapMaterial, LineDashedMaterial, LineBasicMaterial, Material, Float64BufferAttribute, Float32BufferAttribute, Uint32BufferAttribute, Int32BufferAttribute, Uint16BufferAttribute, Int16BufferAttribute, Uint8ClampedBufferAttribute, Uint8BufferAttribute, Int8BufferAttribute, BufferAttribute, ArcCurve, CatmullRomCurve3, CubicBezierCurve, CubicBezierCurve3, EllipseCurve, LineCurve, LineCurve3, QuadraticBezierCurve, QuadraticBezierCurve3, SplineCurve, REVISION, MOUSE, CullFaceNone, CullFaceBack, CullFaceFront, CullFaceFrontBack, FrontFaceDirectionCW, FrontFaceDirectionCCW, BasicShadowMap, PCFShadowMap, PCFSoftShadowMap, FrontSide, BackSide, DoubleSide, FlatShading, SmoothShading, NoColors, FaceColors, VertexColors, NoBlending, NormalBlending, AdditiveBlending, SubtractiveBlending, MultiplyBlending, CustomBlending, AddEquation, SubtractEquation, ReverseSubtractEquation, MinEquation, MaxEquation, ZeroFactor, OneFactor, SrcColorFactor, OneMinusSrcColorFactor, SrcAlphaFactor, OneMinusSrcAlphaFactor, DstAlphaFactor, OneMinusDstAlphaFactor, DstColorFactor, OneMinusDstColorFactor, SrcAlphaSaturateFactor, NeverDepth, AlwaysDepth, LessDepth, LessEqualDepth, EqualDepth, GreaterEqualDepth, GreaterDepth, NotEqualDepth, MultiplyOperation, MixOperation, AddOperation, NoToneMapping, LinearToneMapping, ReinhardToneMapping, Uncharted2ToneMapping, CineonToneMapping, UVMapping, CubeReflectionMapping, CubeRefractionMapping, EquirectangularReflectionMapping, EquirectangularRefractionMapping, SphericalReflectionMapping, CubeUVReflectionMapping, CubeUVRefractionMapping, RepeatWrapping, ClampToEdgeWrapping, MirroredRepeatWrapping, NearestFilter, NearestMipMapNearestFilter, NearestMipMapLinearFilter, LinearFilter, LinearMipMapNearestFilter, LinearMipMapLinearFilter, UnsignedByteType, ByteType, ShortType, UnsignedShortType, IntType, UnsignedIntType, FloatType, HalfFloatType, UnsignedShort4444Type, UnsignedShort5551Type, UnsignedShort565Type, UnsignedInt248Type, AlphaFormat, RGBFormat, RGBAFormat, LuminanceFormat, LuminanceAlphaFormat, RGBEFormat, DepthFormat, DepthStencilFormat, RedFormat, RGB_S3TC_DXT1_Format, RGBA_S3TC_DXT1_Format, RGBA_S3TC_DXT3_Format, RGBA_S3TC_DXT5_Format, RGB_PVRTC_4BPPV1_Format, RGB_PVRTC_2BPPV1_Format, RGBA_PVRTC_4BPPV1_Format, RGBA_PVRTC_2BPPV1_Format, RGB_ETC1_Format, RGBA_ASTC_4x4_Format, RGBA_ASTC_5x4_Format, RGBA_ASTC_5x5_Format, RGBA_ASTC_6x5_Format, RGBA_ASTC_6x6_Format, RGBA_ASTC_8x5_Format, RGBA_ASTC_8x6_Format, RGBA_ASTC_8x8_Format, RGBA_ASTC_10x5_Format, RGBA_ASTC_10x6_Format, RGBA_ASTC_10x8_Format, RGBA_ASTC_10x10_Format, RGBA_ASTC_12x10_Format, RGBA_ASTC_12x12_Format, LoopOnce, LoopRepeat, LoopPingPong, InterpolateDiscrete, InterpolateLinear, InterpolateSmooth, ZeroCurvatureEnding, ZeroSlopeEnding, WrapAroundEnding, TrianglesDrawMode, TriangleStripDrawMode, TriangleFanDrawMode, LinearEncoding, sRGBEncoding, GammaEncoding, RGBEEncoding, LogLuvEncoding, RGBM7Encoding, RGBM16Encoding, RGBDEncoding, BasicDepthPacking, RGBADepthPacking, TangentSpaceNormalMap, ObjectSpaceNormalMap, BoxGeometry as CubeGeometry, Face4, LineStrip, LinePieces, MeshFaceMaterial, MultiMaterial, PointCloud, Particle, ParticleSystem, PointCloudMaterial, ParticleBasicMaterial, ParticleSystemMaterial, Vertex, DynamicBufferAttribute, Int8Attribute, Uint8Attribute, Uint8ClampedAttribute, Int16Attribute, Uint16Attribute, Int32Attribute, Uint32Attribute, Float32Attribute, Float64Attribute, ClosedSplineCurve3, SplineCurve3, Spline, AxisHelper, BoundingBoxHelper, EdgesHelper, WireframeHelper, XHRLoader, BinaryTextureLoader, GeometryUtils, Projector, CanvasRenderer, SceneUtils, LensFlare }; diff --git a/docs/api/en/audio/Audio.html b/docs/api/en/audio/Audio.html index 584c15d950b990..876cb044e65b66 100644 --- a/docs/api/en/audio/Audio.html +++ b/docs/api/en/audio/Audio.html @@ -73,12 +73,15 @@

[property:Boolean hasPlaybackControl]

Whether playback can be controlled using the [page:Audio.play play](), [page:Audio.pause pause]() etc. methods. Default is *true*.

-

[property:Number playbackRate]

-

Speed of playback. Default is *1*.

-

[property:Boolean isPlaying]

Whether the audio is currently playing.

+

[property:AudioListener listener]

+

A reference to the listener object of this audio.

+ +

[property:Number playbackRate]

+

Speed of playback. Default is *1*.

+

[property:Number startTime]

The time at which the sound should begin to play. Same as the *when* paramter of [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/start AudioBufferSourceNode.start](). Default is *0*.

diff --git a/docs/api/en/audio/AudioListener.html b/docs/api/en/audio/AudioListener.html index 9be2d3ef6ee9d6..87bef229343d02 100644 --- a/docs/api/en/audio/AudioListener.html +++ b/docs/api/en/audio/AudioListener.html @@ -67,6 +67,8 @@

[property:GainNode gain]

[property:AudioNode filter]

Default is *null*.

+

[property:Number timeDelta]

+

Time delta value for audio entities. Use in context of [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/linearRampToValueAtTime AudioParam.linearRampToValueAtTimeDefault](). Default is *0*.

Methods

diff --git a/docs/api/en/cameras/CubeCamera.html b/docs/api/en/cameras/CubeCamera.html index 117bfa117ce7d4..d32df93dd7209b 100644 --- a/docs/api/en/cameras/CubeCamera.html +++ b/docs/api/en/cameras/CubeCamera.html @@ -43,11 +43,17 @@

Examples

Constructor

-

[name]( [param:Number near], [param:Number far], [param:Number cubeResolution] )

+

[name]( [param:Number near], [param:Number far], [param:Number cubeResolution], [param:Object options] )

near -- The near clipping distance.
far -- The far clipping distance
- cubeResolution -- Sets the length of the cube's edges. + cubeResolution -- Sets the length of the cube's edges.
+ options - (optional) object that holds texture parameters passed to the auto-generated WebGLRenderTargetCube. + If not specified, the options default to: + + { format: RGBFormat, magFilter: LinearFilter, minFilter: LinearFilter } + +

Constructs a CubeCamera that contains 6 [page:PerspectiveCamera PerspectiveCameras] that diff --git a/docs/api/en/cameras/OrthographicCamera.html b/docs/api/en/cameras/OrthographicCamera.html index 23a78ecea91045..b6ec8862f7515a 100644 --- a/docs/api/en/cameras/OrthographicCamera.html +++ b/docs/api/en/cameras/OrthographicCamera.html @@ -24,7 +24,6 @@

[name]

Example

-

[example:canvas_camera_orthographic camera / orthographic ]

[example:webgl_camera camera ]

[example:webgl_interactive_cubes_ortho interactive / cubes / ortho ]

[example:webgl_materials_cubemap_dynamic materials / cubemap / dynamic ]

diff --git a/docs/api/en/cameras/PerspectiveCamera.html b/docs/api/en/cameras/PerspectiveCamera.html index 63277b5b71906c..a1b817c18f2626 100644 --- a/docs/api/en/cameras/PerspectiveCamera.html +++ b/docs/api/en/cameras/PerspectiveCamera.html @@ -22,8 +22,6 @@

[name]

Example

-

[example:canvas_geometry_birds geometry / birds ]

-

[example:canvas_geometry_cube geometry / cube ]

[example:webgl_animation_skinning_blending animation / skinning / blending ]

[example:webgl_animation_skinning_morph animation / skinning / blending ]

[example:webgl_effects_stereo effects / stereo ]

diff --git a/docs/api/en/core/BufferGeometry.html b/docs/api/en/core/BufferGeometry.html index 2f361191f4b574..db0a12925ccde4 100644 --- a/docs/api/en/core/BufferGeometry.html +++ b/docs/api/en/core/BufferGeometry.html @@ -232,7 +232,7 @@

[method:null clearGroups]( )

[method:null computeBoundingBox]()

- Computes bounding box of the geometry, updating [param:.boundingBox] attribute.
+ Computes bounding box of the geometry, updating [page:.boundingBox] attribute.
Bounding boxes aren't computed by default. They need to be explicitly computed, otherwise they are *null*.

diff --git a/docs/api/en/core/Geometry.html b/docs/api/en/core/Geometry.html index 697a24c0455b89..aa1a4c9a97cbf3 100644 --- a/docs/api/en/core/Geometry.html +++ b/docs/api/en/core/Geometry.html @@ -266,7 +266,8 @@

[method:null dispose]()

[method:Geometry fromBufferGeometry]( [param:BufferGeometry geometry] )

-

Convert a [page:BufferGeometry] to a Geometry.

+

Convert a [page:BufferGeometry] to a Geometry.
+ The array used to store the vertices in the bufferGeometry is a non indexed array, so the resultant geometry may contain duplicated vertices. Use [page:mergeVertices] to remove them.

[method:Geometry lookAt] ( [param:Vector3 vector] )

diff --git a/docs/api/en/core/InterleavedBuffer.html b/docs/api/en/core/InterleavedBuffer.html index dcdabed6da95ac..f0a25adaa28021 100644 --- a/docs/api/en/core/InterleavedBuffer.html +++ b/docs/api/en/core/InterleavedBuffer.html @@ -69,12 +69,12 @@

[property:Integer version]

A version number, incremented every time the needsUpdate property is set to true.

-

[property:Integer isInterleavedBuffer]

+

[property:Boolean isInterleavedBuffer]

Default is *true*.

-

[property:Integer needsUpdate]

+

[property:Boolean needsUpdate]

Default is *false*. Setting this to true increments [page:InterleavedBuffer.version version].

diff --git a/docs/api/en/deprecated/DeprecatedList.html b/docs/api/en/deprecated/DeprecatedList.html index 4cc5cbe2bc9e54..737b6ad746a9ef 100644 --- a/docs/api/en/deprecated/DeprecatedList.html +++ b/docs/api/en/deprecated/DeprecatedList.html @@ -501,11 +501,11 @@

[page:Shape]

-

Renderer

+

Renderers

-

[page:Projector]

+

[page:CanvasRenderer]

- CanvasRenderer has been moved to [link:https://github.com/mrdoob/three.js/blob/master/examples/js/renderers/CanvasRenderer.js /examples/js/renderers/CanvasRenderer.js]. + CanvasRenderer has been removed.

[page:Projector]

diff --git a/docs/api/en/lights/AmbientLight.html b/docs/api/en/lights/AmbientLight.html index c10f92983cf06d..4f78e0025e58c1 100644 --- a/docs/api/en/lights/AmbientLight.html +++ b/docs/api/en/lights/AmbientLight.html @@ -21,10 +21,6 @@

[name]

Example

- [example:canvas_camera_orthographic camera / orthographic ]
- [example:canvas_interactive_voxelpainter interactive / voxelpainter ]
- [example:canvas_materials materials ]
- [example:canvas_sandbox sandbox ]
[example:webgl_animation_cloth animation / cloth ]
[example:webgl_animation_skinning_blending animation / skinning / blending ]

diff --git a/docs/api/en/lights/DirectionalLight.html b/docs/api/en/lights/DirectionalLight.html index 5c5a4cfa3c2f62..d2b09aa7c0cd30 100644 --- a/docs/api/en/lights/DirectionalLight.html +++ b/docs/api/en/lights/DirectionalLight.html @@ -40,7 +40,6 @@

A Note about Position, Target and rotation

Example

- [example:canvas_morphtargets_horse morphtargets / horse ]
[example:misc_controls_fly controls / fly ]
[example:misc_lights_test lights / test ]
[example:webvr_cubes cubes ]
diff --git a/docs/api/en/lights/PointLight.html b/docs/api/en/lights/PointLight.html index 9308b6f9e9d4ce..3011e318f3b4db 100644 --- a/docs/api/en/lights/PointLight.html +++ b/docs/api/en/lights/PointLight.html @@ -23,7 +23,6 @@

[name]

Example

- [example:canvas_lights_pointlights lights / pointlights ]
[example:webgl_lights_pointlights lights / pointlights ]
[example:webgl_lights_pointlights2 lights / pointlights2 ]
[example:webgldeferred_animation animation ]
diff --git a/docs/api/en/loaders/JSONLoader.html b/docs/api/en/loaders/JSONLoader.html index aa76001b16b0f2..420890c69114cf 100644 --- a/docs/api/en/loaders/JSONLoader.html +++ b/docs/api/en/loaders/JSONLoader.html @@ -18,8 +18,7 @@

[name]

Example

- [example:webgl_loader_json WebGL / loader / json]
- [example:webgl_loader_json_objconverter WebGL / loader / json / objconverter] + [example:webgl_loader_json WebGL / loader / json]

diff --git a/docs/api/en/materials/LineDashedMaterial.html b/docs/api/en/materials/LineDashedMaterial.html index 7473f8b5347c7b..cfa1fef5d2ce14 100644 --- a/docs/api/en/materials/LineDashedMaterial.html +++ b/docs/api/en/materials/LineDashedMaterial.html @@ -18,7 +18,6 @@

Examples

[example:webgl_lines_dashed WebGL / lines / dashed]
- [example:canvas_lines_dashed Canvas / lines /dashed]

diff --git a/docs/api/en/materials/Material.html b/docs/api/en/materials/Material.html index c7986300440974..272e32f526f284 100644 --- a/docs/api/en/materials/Material.html +++ b/docs/api/en/materials/Material.html @@ -175,13 +175,6 @@

[property:Float opacity]

Default is *1.0*.

-

[property:Float overdraw]

-

- Amount of triangle expansion at draw time. - This is a workaround for cases when gaps appear between triangles when using [page:CanvasRenderer]. - *0.5* tends to give good results across browsers. Default is *0*. -

-

[property:Boolean polygonOffset]

Whether to use polygon offset. Default is *false*. This corresponds to the *GL_POLYGON_OFFSET_FILL* WebGL feature. diff --git a/docs/api/en/materials/ShaderMaterial.html b/docs/api/en/materials/ShaderMaterial.html index fd3c8f15992f93..c7c5f5802b1711 100644 --- a/docs/api/en/materials/ShaderMaterial.html +++ b/docs/api/en/materials/ShaderMaterial.html @@ -444,7 +444,7 @@

[property:Boolean wireframe]

[property:Float wireframeLinewidth]

Controls wireframe thickness. Default is 1.

- Due to limitations of the [link:https://www.khronos.org/registry/OpenGL/specs/gl/glspec46.core.pdf OpenGL Core Profile) + Due to limitations of the [link:https://www.khronos.org/registry/OpenGL/specs/gl/glspec46.core.pdf OpenGL Core Profile] with the [page:WebGLRenderer WebGL] renderer on most platforms linewidth will always be 1 regardless of the set value.

diff --git a/docs/api/en/materials/SpriteMaterial.html b/docs/api/en/materials/SpriteMaterial.html index 5f3f06cd331338..79c735ca09c2d5 100644 --- a/docs/api/en/materials/SpriteMaterial.html +++ b/docs/api/en/materials/SpriteMaterial.html @@ -18,7 +18,6 @@

Examples

[example:webgl_sprites WebGL / sprites]
[example:misc_ubiquity_test misc / ubiquity / test]
- [example:misc_ubiquity_test2 misc / ubiquity / test2]
[example:software_sandbox software / sandbox]
[example:svg_sandbox svg / sandbox]
[example:webgl_materials_cubemap_dynamic webgl / materials / cubemap / dynamic] diff --git a/docs/api/zh/audio/Audio.html b/docs/api/zh/audio/Audio.html index c58bf53f056c6f..bbffd88676d80a 100644 --- a/docs/api/zh/audio/Audio.html +++ b/docs/api/zh/audio/Audio.html @@ -78,6 +78,9 @@

[property:Number playbackRate]

[property:Boolean isPlaying]

是否正在播放

+

[property:AudioListener listener]

+

A reference to the listener object of this audio.

+

[property:Number startTime]

开始播放的时间. 和[link:https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/start AudioBufferSourceNode.start]()的*when*参数一样. 默认为 *0*.

diff --git a/docs/api/zh/audio/AudioListener.html b/docs/api/zh/audio/AudioListener.html index 6b4264bfd9affc..ff22e4c7646745 100644 --- a/docs/api/zh/audio/AudioListener.html +++ b/docs/api/zh/audio/AudioListener.html @@ -66,6 +66,8 @@

[property:GainNode gain]

[property:AudioNode filter]

默认为*null*.

+

[property:Number timeDelta]

+

Time delta value for audio entities. Use in context of [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/linearRampToValueAtTime AudioParam.linearRampToValueAtTimeDefault](). Default is *0*.

方法

diff --git a/docs/api/zh/materials/Material.html b/docs/api/zh/materials/Material.html index f78dfafd0a62b3..67a159434479f8 100644 --- a/docs/api/zh/materials/Material.html +++ b/docs/api/zh/materials/Material.html @@ -147,11 +147,6 @@

[property:Float opacity]

-

[property:Float overdraw]

-

绘制时的三角形扩展量。对于使用[page:CanvasRenderer]时三角形之间出现间隙的情况,这是一种解决方法。 - *0.5*往往会在浏览器中有良好的结果。默认值为*0*。 -

-

[property:Boolean polygonOffset]

是否使用多边形偏移。默认值为*false*。这对应于WebGL的*GL_POLYGON_OFFSET_FILL*功能。

diff --git a/docs/api/zh/materials/SpriteMaterial.html b/docs/api/zh/materials/SpriteMaterial.html index c6e53d0e0657b9..c0cd126bfeef2f 100644 --- a/docs/api/zh/materials/SpriteMaterial.html +++ b/docs/api/zh/materials/SpriteMaterial.html @@ -18,7 +18,6 @@

例子(Examples)

[example:webgl_sprites WebGL / sprites]
[example:misc_ubiquity_test misc / ubiquity / test]
- [example:misc_ubiquity_test2 misc / ubiquity / test2]
[example:software_sandbox software / sandbox]
[example:svg_sandbox svg / sandbox]
[example:webgl_materials_cubemap_dynamic webgl / materials / cubemap / dynamic] diff --git a/docs/examples/Lut.html b/docs/examples/Lut.html index 56d93c1bfa3204..10e192d4754f72 100644 --- a/docs/examples/Lut.html +++ b/docs/examples/Lut.html @@ -91,7 +91,7 @@

.setLegendLabels [parameters, callback]

Sets the labels of the legend of this Lut.

-

[method:Lut setminV]( [param:Float minV] )

+

[method:Lut setMin]( [param:Float minV] )

minV — The minimum value to be represented with the lookup table.

@@ -99,7 +99,7 @@

[method:Lut setminV]( [param:Float minV] )

Sets this Lut with the minimum value to be represented.

-

[method:Lut setmaxV]( [param:Float maxV] )

+

[method:Lut setMax]( [param:Float maxV] )

maxV — The maximum value to be represented with the lookup table.

diff --git a/docs/examples/SpriteCanvasMaterial.html b/docs/examples/SpriteCanvasMaterial.html deleted file mode 100644 index b49cba14f63226..00000000000000 --- a/docs/examples/SpriteCanvasMaterial.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - [page:Material] → - -

[name]

- -

Create a material that can draw custom sprites using a 2d canvas.

- - -

Constructor

- - -

[name]( [param:Object parameters] )

-

- parameters is an object that can be used to set up the default properties -

-

- rotation - the rotation of the sprite
- color - the color of the sprite
- program - the program used to draw the sprite -

- - -

Properties

- -

[property:Radians rotation]

-

- The rotation of the sprite in radians. Default is 0. -

- -

[property:Color color]

-

- The color of the sprite. The material will set up the color for the context before calling the material's program. -

- -

Methods

- - - -

[method:null program]([param:CanvasRenderingContext2D context], [param:Color color])

-

- context -- The canvas context
- color -- The color of the sprite -

-

- Define a program that will use the context to draw the sprite. -

- -

Source

- - [link:https://github.com/mrdoob/three.js/blob/master/examples/js/renderers/CanvasRenderer.js examples/js/renderers/CanvasRenderer.js] - - diff --git a/docs/examples/loaders/GLTFLoader.html b/docs/examples/loaders/GLTFLoader.html index 179931b2887889..9d5055599215c9 100644 --- a/docs/examples/loaders/GLTFLoader.html +++ b/docs/examples/loaders/GLTFLoader.html @@ -32,8 +32,20 @@

Extensions

  • KHR_materials_pbrSpecularGlossiness
  • KHR_materials_unlit
  • KHR_lights_punctual (experimental)
  • +
  • KHR_texture_transform*
  • +
  • MSFT_texture_dds
  • +

    + *UV transforms are supported, with several key limitations. Transforms applied to + a texture using the first UV slot (all textures except aoMap and lightMap) must share the same + transform, or no transfor at all. The aoMap and lightMap textures cannot be transformed. No + more than one transform may be used per material. Each use of a texture with a unique + transform will result in an additional GPU texture upload. See + #[link:https://github.com/mrdoob/three.js/pull/13831 13831] and + #[link:https://github.com/mrdoob/three.js/issues/12788 12788]. +

    +

    Example

    @@ -85,30 +97,30 @@

    Browser compatibility

    providing a Promise replacement.

    Textures

    - +

    Textures containing color information (.map, .emissiveMap, and .specularMap) always use sRGB colorspace in glTF, while vertex colors and material properties (.color, .emissive, .specular) use linear colorspace. In a typical rendering workflow, textures are converted to linear colorspace by the renderer, lighting calculations are made, then final output is converted back to sRGB and displayed on screen. Unless you need post-processing in linear colorspace, always configure [page:WebGLRenderer] as follows when using glTF:

    - + renderer.gammaOutput = true; renderer.gammaFactor = 2.2; - +

    GLTFLoader will automatically configure textures referenced from a .gltf or .glb file correctly, with the assumption that the renderer is set up as shown above. When loading textures externally (e.g., using [page:TextureLoader]) and applying them to a glTF model, colorspace and orientation must be given:

    - + // If texture is used for color information, set colorspace. texture.encoding = THREE.sRGBEncoding; // UVs use the convention that (0, 0) corresponds to the upper left corner of a texture. texture.flipY = false; - - +
    +

    Custom extensions

    diff --git a/docs/examples/loaders/LoaderSupport.html b/docs/examples/loaders/LoaderSupport.html index ddc2d14226737c..f3a561bf3fd617 100644 --- a/docs/examples/loaders/LoaderSupport.html +++ b/docs/examples/loaders/LoaderSupport.html @@ -375,6 +375,15 @@

    [method:null setContent]( [param:Object content )

    Set the content of this resource

    + + +

    [method:null setResourcePath] ( [param:String resourcePath] )

    +

    + [page:String resourcePath] - URL +

    +

    + Allows to specify resourcePath for dependencies of specified resource. +



    diff --git a/docs/examples/loaders/OBJLoader2.html b/docs/examples/loaders/OBJLoader2.html index 0def3566cccd1d..f0d0347ed102ee 100644 --- a/docs/examples/loaders/OBJLoader2.html +++ b/docs/examples/loaders/OBJLoader2.html @@ -123,6 +123,15 @@

    [method:null setPath] ( [param:String path] )

    +

    [method:null setResourcePath] ( [param:String resourcePath] )

    +

    + [page:String resourcePath] - URL +

    +

    + Allows to specify resourcePath for dependencies of specified resource. +

    + +

    [method:null setStreamMeshesTo] ( [param:Object3D streamMeshesTo] )

    [page:Object3D streamMeshesTo] - Object already attached to scenegraph where new meshes will be attached to diff --git a/docs/examples/loaders/SVGLoader.html b/docs/examples/loaders/SVGLoader.html index 685deebdcba860..eeb6f41cf2defc 100644 --- a/docs/examples/loaders/SVGLoader.html +++ b/docs/examples/loaders/SVGLoader.html @@ -91,7 +91,7 @@

    Methods

    [method:null load]( [param:String url], [param:Function onLoad], [param:Function onProgress], [param:Function onError] )

    [page:String url] — A string containing the path/URL of the .svg file.
    - [page:Function onLoad] — (optional) A function to be called after loading is successfully completed. The function receives the loaded [page:SVGDocument] as an argument.
    + [page:Function onLoad] — (optional) A function to be called after loading is successfully completed. The function receives an array of [page:ShapePath] as an argument.
    [page:Function onProgress] — (optional) A function to be called while the loading is in progress. The argument will be the XMLHttpRequest instance, which contains [page:Integer total] and [page:Integer loaded] bytes.
    [page:Function onError] — (optional) A function to be called if an error occurs during loading. The function receives the error as an argument.

    diff --git a/docs/examples/renderers/CanvasRenderer.html b/docs/examples/renderers/CanvasRenderer.html deleted file mode 100644 index e99b9f95cd28c5..00000000000000 --- a/docs/examples/renderers/CanvasRenderer.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - - - -

    [name]

    - -

    - The Canvas renderer displays your beautifully crafted scenes not using WebGL, - but draws it using the (slower) Canvas 2D Context - API.

    - - - NOTE: The Canvas renderer has been deprecated and is no longer part of the three.js core. - - If you still need to use it you can find it here: [link:https://github.com/mrdoob/three.js/blob/master/examples/js/[path].js examples/js/[path].js].

    - - This renderer can be a nice fallback from [page:WebGLRenderer] for simple scenes: - - - function webglAvailable() { - try { - var canvas = document.createElement( 'canvas' ); - return !!( window.WebGLRenderingContext && ( - canvas.getContext( 'webgl' ) || - canvas.getContext( 'experimental-webgl' ) ) - ); - } catch ( e ) { - return false; - } - } - - if ( webglAvailable() ) { - renderer = new THREE.WebGLRenderer(); - } else { - renderer = new THREE.CanvasRenderer(); - } - - - Note: both WebGLRenderer and CanvasRenderer are embedded in the web page using an HTML5 <canvas> tag. - The "Canvas" in CanvasRenderer means it uses Canvas 2D instead of WebGL.

    - - Don't confuse either CanvasRenderer with the SoftwareRenderer example, which simulates a screen buffer in a Javascript array. -

    - -

    Constructor

    - - -

    [name]([param:object parameters])

    -

    parameters is an optional object with properties defining the renderer's behaviour. The constructor also accepts no parameters at all. In all cases, it will assume sane defaults when parameters are missing.

    - -

    - [page:DOMElement canvas] - A [link:https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas canvas] - where the renderer draws its output. - This corresponds to the [page:CanvasRenderer.domElement domElement] property below. - If not passed in here, a new canvas element will be created.
    - - [page:Boolean alpha] - whether the canvas contains an alpha (transparency) buffer or not. - Default is *false*. -

    - - -

    Properties

    - -

    [property:Object info]

    - -

    - An object with a series of statistical information about the graphics board memory and the rendering process. Useful for debugging or just for the sake of curiosity. The object contains the following fields: -

      -
    • render: -
        -
      • vertices
      • -
      • faces
      • -
      -
    • -
    -

    - -

    [property:DOMElement domElement]

    - -

    - A [page:Canvas] where the renderer draws its output.
    - This is automatically created by the renderer in the constructor (if not provided already); you just need to add it to your page. -

    - -

    [property:Boolean autoClear]

    -

    - Defines whether the renderer should automatically clear its output before rendering. -

    - -

    [property:Boolean sortObjects]

    -

    - Defines whether the renderer should sort objects. Default is true.
    - Note: Sorting is used to attempt to properly render objects that have some degree of transparency. By definition, sorting objects may not work in all cases. Depending on the needs of application, it may be neccessary to turn off sorting and use other methods to deal with transparency rendering e.g. manually determining the object rendering order. -

    - -

    [property:boolean sortElements]

    -

    - Defines whether the renderer should sort the face of each object. Default is true. -

    - - -

    Methods

    - -

    [method:null render]([param:Scene scene], [param:Camera camera])

    -

    - scene -- The scene to render.
    - camera -- the camera to view the scene. -

    -

    - Render a scene using a camera. -

    - -

    [method:null clear]()

    -

    - Tells the renderer to clear its color drawing buffer with the clearcolor. -

    - -

    [method:null setClearColor]([param:Color color], [param:number alpha])

    -

    - color -- The color to clear the canvas with.
    - alpha -- The alpha channel to clear the canvas with. -

    -

    - This set the clearColor and the clearAlpha. -

    - - -

    [method:null setSize]([param:Number width], [param:Number height])

    -

    - width -- The width of the drawing canvas.
    - height -- The height of the drawing canvas. -

    -

    - This set the size of the drawing canvas and if updateStyle is set, then the css of the canvas is updated too. -

    - -

    [method:null setClearColorHex]([param:number hex], [param:number alpha])

    -

    - hex -- The the hexadecimal value of the color to clear the canvas with.
    - alpha -- The alpha channel to clear the canvas with. -

    -

    - This set the clearColor and the clearAlpha. -

    - -

    [method:number getClearColorHex]()

    -

    - Returns the [page:number hex] color. -

    - -

    [method:number getClearAlpha]()

    -

    - Returns the alpha value. -

    - -

    Empty Methods to Maintain Compatibility with [page:WebglRenderer]

    -

    - [method:null clearColor]()
    - [method:null clearDepth]()
    - [method:null clearStencil]()
    - [method:number getMaxAnisotropy]() - returns 1
    -

    - -

    Source

    - - [link:https://github.com/mrdoob/three.js/blob/master/examples/js/[path].js examples/js/[path].js] - - diff --git a/docs/index.html b/docs/index.html index 7198bc9d4d9099..4445a22dae5594 100644 --- a/docs/index.html +++ b/docs/index.html @@ -41,18 +41,30 @@

    three.js / docs

    var hash = window.location.hash.substring( 1 ); - // Route non-localised api links + // Localisation - if ( /^(api|manual)/.test( hash ) && /^(api|manual)\/(en|zh)\//.test( hash ) === false ) { + var language = 'en'; + + if ( /^(api|manual)/.test( hash ) ) { + + var hashLanguage = /^(api|manual)\/(en|zh)\//.exec( hash ); + + if ( hashLanguage === null ) { + + // Route old non-localised api links + + window.location.hash = hash.replace( /^(api|manual)/, '$1/en' ); - window.location.hash = hash.replace( /^(api|manual)/, '$1/en' ); + } else { + + language = hashLanguage[ 2 ]; + + } } // - var language = 'en'; - function setLanguage( value ) { language = value; @@ -406,7 +418,8 @@

    three.js / docs

    - + + diff --git a/docs/manual/en/introduction/Creating-text.html b/docs/manual/en/introduction/Creating-text.html index 2c03afd3641e60..77b98802492c28 100644 --- a/docs/manual/en/introduction/Creating-text.html +++ b/docs/manual/en/introduction/Creating-text.html @@ -77,7 +77,6 @@

    4. Procedural Text Geometry

    Examples

    [example:webgl_geometry_text WebGL / geometry / text]
    - [example:canvas_geometry_text canvas / geometry / text]
    [example:webgl_shadowmap WebGL / shadowmap]

    diff --git a/docs/manual/en/introduction/How-to-use-WebGL2.html b/docs/manual/en/introduction/How-to-use-WebGL2.html new file mode 100644 index 00000000000000..e75a4985812389 --- /dev/null +++ b/docs/manual/en/introduction/How-to-use-WebGL2.html @@ -0,0 +1,119 @@ + + + + + + + + + + + + +

    [name]

    +
    + +

    + Starting with three.js R95, the engine supports rendering with a WebGL 2 context. By default three.js always uses a + WebGL 1 context when creating an instance of *WebGLRenderer*. If you want use a WebGL 2 context, please have a look + at the following workflow. +

    + +

    Workflow

    + +

    + Since WebGL 2 is not supported by all devices that support WebGL 1, it's important to check the respective availability. + To do so, please include [link:https://github.com/mrdoob/three.js/blob/master/examples/js/WebGL.js WebGL.js] into your project. +

    + + +<script src="/path/to/WebGL.js"></script> + + +

    + Next, use a code similar to the following in order to perform the availability check. +

    + + + +if ( WEBGL.isWebGL2Available() === false ) { + + document.body.appendChild( WEBGL.getWebGL2ErrorMessage() ); + +} + + +

    + Now it's time to create the renderer by applying the HTML5 canvas element and the respective WebGL 2 context + to the constructor of *WebGLRenderer*. As a result, three.js will internally use the given context for rendering and + automatically convert the built-in material's shader code to GLSL ES 3.00. +

    + + +var canvas = document.createElement( 'canvas' ); +var context = canvas.getContext( 'webgl2' ); +var renderer = new THREE.WebGLRenderer( { canvas: canvas, context: context } ); + + +

    + Sometimes it is necessary to write custom shader code. Use the following code template as a basis for your own + implementation. First, the GLSL ES 3.00 code. +

    + + +<script id="vs" type="x-shader/x-vertex"> +#version 300 es + +void main() { + + gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 ); + +} +</script> +<script id="fs" type="x-shader/x-fragment"> +#version 300 es + +precision highp float; +precision highp int; +out vec4 out_FragColor; + +void main() { + + out_FragColor = vec4( 1.0 ); + +} +</script> + +

    + Second, the corresponding material creation in JavaScript. +

    + +var material = new THREE.ShaderMaterial( { + vertexShader: document.getElementById( 'vs' ).textContent.trim(), + fragmentShader: document.getElementById( 'fs' ).textContent.trim() +} ); + + +

    Next Steps

    + +

    + Have a look at one of the official examples in order to see WebGL 2 features in action.

    + + [example:webgl2_materials_texture3d WebGL2 / materials / texture3d]
    + [example:webgl2_materials_texture3d_volume WebGL2 / materials / texture3d / volume]
    +

    + +

    Supported features

    + +

    + Right now, the engine does only support a subset of all existing WebGL 2 features. The following list provides an + overview about what's already available in the latest version of three.js. +

      +
    • 3D Textures
    • +
    + +

    + + + + diff --git a/docs/manual/en/introduction/Loading-3D-models.html b/docs/manual/en/introduction/Loading-3D-models.html index 8f6c5830dda957..1fc61dc01ad47d 100644 --- a/docs/manual/en/introduction/Loading-3D-models.html +++ b/docs/manual/en/introduction/Loading-3D-models.html @@ -2,127 +2,174 @@ - - - - - + + + + + -

    [name]

    -
    - -

    - 3D models are available in hundreds of file formats, each with different - purposes, assorted features, and varying complexity. Although - - three.js provides many loaders, choosing the right format and - workflow will save time and frustration later on. Some formats are - difficult to work with, inefficient for realtime experiences, or simply not - fully supported at this time. -

    - -

    - This guide provides a workflow recommended for most users, and suggestions - for what to try if things don't go as expected. -

    - -

    Before we start

    - -

    - If you're new to running a local server, begin with - [link:#manual/introduction/How-to-run-things-locally how to run things locally] - first. Many common errors viewing 3D models can be avoided by hosting files - correctly. -

    - -

    Recommended workflow

    - -

    - Where possible, we recommend using glTF (GL Transmission Format). Both - .GLB and .GLTF versions of the format are - well supported. Because glTF is focused on runtime asset delivery, it is - compact to transmit and fast to load. Features include meshes, materials, - textures, skins, skeletons, morph targets, animations, lights, and - cameras. -

    - -

    - Public-domain glTF files are available on sites like - - Sketchfab, or various tools include glTF export: -

    - - - -

    - If your preferred tools do not support glTF, consider requesting glTF - export from the authors, or posting on - the glTF roadmap thread. -

    - -

    - When glTF is not an option, popular formats such as FBX, OBJ, or COLLADA - are also available and regularly maintained. -

    - -

    Troubleshooting

    - -

    - You've spent hours modeling an artisanal masterpiece, you load it into - the webpage, and — oh no! 😭 It's distorted, miscolored, or missing entirely. - Start with these troubleshooting steps: -

    - -
      -
    1. - Check the JavaScript console for errors, and make sure you've used an - onError callback when calling .load() to log the result. -
    2. -
    3. - View the model in another application. For glTF, drag-and-drop viewers - are available for - three.js and - babylon.js. If the model - appears correctly in one or more applications, - file a bug against three.js. - If the model cannot be shown in any application, we strongly encourage - filing a bug with the application used to create the model. -
    4. -
    5. - Try scaling the model up or down by a factor of 1000. Many models are - scaled differently, and large models may not appear if the camera is - inside the model. -
    6. -
    7. - Look for failed texture requests in the network tab, like - C:\\Path\To\Model\texture.jpg. Use paths relative to your - model instead, such as images/texture.jpg — this may require - editing the model file in a text editor. -
    8. -
    - -

    Asking for help

    - -

    - If you've gone through the troubleshooting process above and your model - still isn't working, the right approach to asking for help will get you to - a solution faster. Post a question on the - three.js forum and, whenever possible, - include your model (or a simpler model with the same problem) in any formats - you have available. Include enough information for someone else to reproduce - the issue quickly — ideally, a live demo. -

    +

    [name]

    +
    + +

    + 3D models are available in hundreds of file formats, each with different + purposes, assorted features, and varying complexity. Although + + three.js provides many loaders, choosing the right format and + workflow will save time and frustration later on. Some formats are + difficult to work with, inefficient for realtime experiences, or simply not + fully supported at this time. +

    + +

    + This guide provides a workflow recommended for most users, and suggestions + for what to try if things don't go as expected. +

    + +

    Before we start

    + +

    + If you're new to running a local server, begin with + [link:#manual/introduction/How-to-run-things-locally how to run things locally] + first. Many common errors viewing 3D models can be avoided by hosting files + correctly. +

    + +

    Recommended workflow

    + +

    + Where possible, we recommend using glTF (GL Transmission Format). Both + .GLB and .GLTF versions of the format are + well supported. Because glTF is focused on runtime asset delivery, it is + compact to transmit and fast to load. Features include meshes, materials, + textures, skins, skeletons, morph targets, animations, lights, and + cameras. +

    + +

    + Public-domain glTF files are available on sites like + + Sketchfab, or various tools include glTF export: +

    + + + +

    + If your preferred tools do not support glTF, consider requesting glTF + export from the authors, or posting on + the glTF roadmap thread. +

    + +

    + When glTF is not an option, popular formats such as FBX, OBJ, or COLLADA + are also available and regularly maintained. +

    + +

    Loading

    + +

    + Only a few loaders ([page:ObjectLoader] and [page:JSONLoader]) are included by default with + three.js — others should be added to your page individually. Depending on your + preference and comfort with build tools, choose one of the following: +

    + + + // global script + <script src="GLTFLoader.js"></script> + + // commonjs + var THREE = window.THREE = require('three'); + require('three/examples/js/loaders/GLTFLoader'); + + +

    + Currently three.js examples are not available as ES modules (import … from '…'). + Several workarounds are discussed in + #9562. +

    + +

    + Once you've imported a loader, you're ready to add a model to your scene. Syntax varies among + different loaders — when using another format, check the examples and documentation for that + loader. For glTF, basic usage would be: +

    + + + var loader = new THREE.GLTFLoader(); + + loader.load( 'path/to/model.glb', function ( gltf ) { + + scene.add( gltf.scene ); + + }, undefined, function ( error ) { + + console.error( error ); + + } ); + + +

    + See [page:GLTFLoader GLTFLoader documentation] for further details. +

    + +

    Troubleshooting

    + +

    + You've spent hours modeling an artisanal masterpiece, you load it into + the webpage, and — oh no! 😭 It's distorted, miscolored, or missing entirely. + Start with these troubleshooting steps: +

    + +
      +
    1. + Check the JavaScript console for errors, and make sure you've used an + onError callback when calling .load() to log the result. +
    2. +
    3. + View the model in another application. For glTF, drag-and-drop viewers + are available for + three.js and + babylon.js. If the model + appears correctly in one or more applications, + file a bug against three.js. + If the model cannot be shown in any application, we strongly encourage + filing a bug with the application used to create the model. +
    4. +
    5. + Try scaling the model up or down by a factor of 1000. Many models are + scaled differently, and large models may not appear if the camera is + inside the model. +
    6. +
    7. + Look for failed texture requests in the network tab, like + C:\\Path\To\Model\texture.jpg. Use paths relative to your + model instead, such as images/texture.jpg — this may require + editing the model file in a text editor. +
    8. +
    + +

    Asking for help

    + +

    + If you've gone through the troubleshooting process above and your model + still isn't working, the right approach to asking for help will get you to + a solution faster. Post a question on the + three.js forum and, whenever possible, + include your model (or a simpler model with the same problem) in any formats + you have available. Include enough information for someone else to reproduce + the issue quickly — ideally, a live demo. +

    diff --git a/docs/manual/zh/introduction/How-to-use-WebGL2.html b/docs/manual/zh/introduction/How-to-use-WebGL2.html new file mode 100644 index 00000000000000..e75a4985812389 --- /dev/null +++ b/docs/manual/zh/introduction/How-to-use-WebGL2.html @@ -0,0 +1,119 @@ + + + + + + + + + + + + +

    [name]

    +
    + +

    + Starting with three.js R95, the engine supports rendering with a WebGL 2 context. By default three.js always uses a + WebGL 1 context when creating an instance of *WebGLRenderer*. If you want use a WebGL 2 context, please have a look + at the following workflow. +

    + +

    Workflow

    + +

    + Since WebGL 2 is not supported by all devices that support WebGL 1, it's important to check the respective availability. + To do so, please include [link:https://github.com/mrdoob/three.js/blob/master/examples/js/WebGL.js WebGL.js] into your project. +

    + + +<script src="/path/to/WebGL.js"></script> + + +

    + Next, use a code similar to the following in order to perform the availability check. +

    + + + +if ( WEBGL.isWebGL2Available() === false ) { + + document.body.appendChild( WEBGL.getWebGL2ErrorMessage() ); + +} + + +

    + Now it's time to create the renderer by applying the HTML5 canvas element and the respective WebGL 2 context + to the constructor of *WebGLRenderer*. As a result, three.js will internally use the given context for rendering and + automatically convert the built-in material's shader code to GLSL ES 3.00. +

    + + +var canvas = document.createElement( 'canvas' ); +var context = canvas.getContext( 'webgl2' ); +var renderer = new THREE.WebGLRenderer( { canvas: canvas, context: context } ); + + +

    + Sometimes it is necessary to write custom shader code. Use the following code template as a basis for your own + implementation. First, the GLSL ES 3.00 code. +

    + + +<script id="vs" type="x-shader/x-vertex"> +#version 300 es + +void main() { + + gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 ); + +} +</script> +<script id="fs" type="x-shader/x-fragment"> +#version 300 es + +precision highp float; +precision highp int; +out vec4 out_FragColor; + +void main() { + + out_FragColor = vec4( 1.0 ); + +} +</script> + +

    + Second, the corresponding material creation in JavaScript. +

    + +var material = new THREE.ShaderMaterial( { + vertexShader: document.getElementById( 'vs' ).textContent.trim(), + fragmentShader: document.getElementById( 'fs' ).textContent.trim() +} ); + + +

    Next Steps

    + +

    + Have a look at one of the official examples in order to see WebGL 2 features in action.

    + + [example:webgl2_materials_texture3d WebGL2 / materials / texture3d]
    + [example:webgl2_materials_texture3d_volume WebGL2 / materials / texture3d / volume]
    +

    + +

    Supported features

    + +

    + Right now, the engine does only support a subset of all existing WebGL 2 features. The following list provides an + overview about what's already available in the latest version of three.js. +

      +
    • 3D Textures
    • +
    + +

    + + + + diff --git a/docs/manual/zh/introduction/Loading-3D-models.html b/docs/manual/zh/introduction/Loading-3D-models.html index 11d30a9bd66ea1..0f1fbe149c3d28 100644 --- a/docs/manual/zh/introduction/Loading-3D-models.html +++ b/docs/manual/zh/introduction/Loading-3D-models.html @@ -2,107 +2,111 @@ - - - - - + + + + + -

    载入3D模型([name])

    -
    +

    载入3D模型([name])

    +
    -

    +

    3D模型目前的有成千上万种格式可供选择,但每一种格式都具有不同的目的、用途以及复杂性。 - 虽然 + 虽然 three.js已经提供了多种导入工具 但是选择正确的文件格式以及工作流程将可以节省很多时间,以及避免很多挫折。某些格式难以使用,或者实时体验效率低下,或者目前尚未得到完全支持。 -

    +

    -

    +

    对大多数用户,本指南向你推荐了一个工作流程,并向你提供了一些当没有达到预期效果时的建议。 -

    +

    -

    在开始之前

    +

    在开始之前

    -

    - 如果你是第一次运行一个本地服务器,可以先阅读[link:#manual/introduction/How-to-run-things-locally how to run things locally]。 - 正确地托管文件,可以避免很多查看3D模型时的常见错误。 -

    +

    + 如果你是第一次运行一个本地服务器,可以先阅读[link:#manual/introduction/How-to-run-things-locally how to run things locally]。 + 正确地托管文件,可以避免很多查看3D模型时的常见错误。 +

    -

    推荐的工作流程

    +

    推荐的工作流程

    -

    - 如果有可能的话,我们推荐使用glTF(gl传输格式)。.GLB.GLTF是这种格式的这两种不同版本, - 都可以被很好地支持。由于glTF这种格式是专注于在程序运行时呈现三维物体的,所以它的传输效率非常高,且加载速度非常快。 - 功能方面则包括了网格、材质、纹理、皮肤、骨骼、变形目标、动画、灯光和摄像机。 -

    +

    + 如果有可能的话,我们推荐使用glTF(gl传输格式)。.GLB.GLTF是这种格式的这两种不同版本, + 都可以被很好地支持。由于glTF这种格式是专注于在程序运行时呈现三维物体的,所以它的传输效率非常高,且加载速度非常快。 + 功能方面则包括了网格、材质、纹理、皮肤、骨骼、变形目标、动画、灯光和摄像机。 +

    -

    - 公共领域的glTF文件可以在网上找到,例如 - - Sketchfab,或者很多工具包含了glTF的导出功能: -

    +

    + 公共领域的glTF文件可以在网上找到,例如 + + Sketchfab,或者很多工具包含了glTF的导出功能: +

    - + -

    - 倘若你所喜欢的工具不支持glTF格式,请考虑向该工具的作者请求glTF导出功能, - 或者在the glTF roadmap thread贴出你的想法。 +

    + 倘若你所喜欢的工具不支持glTF格式,请考虑向该工具的作者请求glTF导出功能, + 或者在the glTF roadmap thread贴出你的想法。 -

    +

    -

    - 当glTF不可用的时候,诸如FBX、OBJ或者COLLADA等等其它广受欢迎的格式在Three.js中也是可以使用、并且定期维护的。 -

    +

    + 当glTF不可用的时候,诸如FBX、OBJ或者COLLADA等等其它广受欢迎的格式在Three.js中也是可以使用、并且定期维护的。 +

    -

    故障排除

    +

    Loading

    -

    - 你花了几个小时亲手建了一个堪称杰作的模型,现在你把它给导入到网页中—— - 哦,天呐~😭它导入以后完全失真了、材质贴图丢了、或者说整个模型完全丢失了!
    - 接下来我们来按照下面的步骤排除故障: -

    +

    TODO.

    -
      -
    1. +

      故障排除

      + +

      + 你花了几个小时亲手建了一个堪称杰作的模型,现在你把它给导入到网页中—— + 哦,天呐~😭它导入以后完全失真了、材质贴图丢了、或者说整个模型完全丢失了!
      + 接下来我们来按照下面的步骤排除故障: +

      + +
        +
      1. 在Javascript的Console中查找错误,并确定当你调用.load()的时候,使用了onError回调函数来输出结果。 -
      2. -
      3. +
      4. +
      5. 请在别的应用程序中查看3D模型。对于glTF格式的模型来说,可以直接在下面的应用程序中进行查看: - three.js和 - babylon.js。 + three.js和 + babylon.js。 如果该模型能够在一个或者更多应用程序里正确地呈现,请点击这里向three.js提交Bug报告。 如果模型不能在任意一个应用程序里显示,我们强烈鼓励你向我们提交Bug报告,并告知我们你的模型是使用哪一款应用程序创建的。 -
      6. -
      7. +
      8. +
      9. 尝试将模型放大或缩小到原来的1000倍。许多模型的缩放比例各不相同,倘若摄像机位于相机内,则大型模型将可能不会显示。 -
      10. -
      11. +
      12. +
      13. 在网络面板中查找失败的纹理贴图请求,像C:\\Path\To\Model\texture.jpg。使用相对于你的模型的文件路径,例如 images/texture.jpg——这或许需要在文本编辑器中来对模型文件进行修改。 -
      14. -
      +
    2. +
    -

    请求帮助

    +

    请求帮助

    -

    +

    倘若你已经尝试经历了以上故障排除的过程,但是你的模型仍然无法工作,寻求正确的方法来获得帮助将使您更快地获得解决方案。 您可以将您的问题发布到three.js forum, 同时,尽可能将你的模型(或者一个简单的、具有相同问题的模型)包含在你能够使用的任何格式中,为其他人提供足够的信息,以便快速重现这个问题——最好是一个能够现场演示的Demo。 -

    +

    diff --git a/docs/page.css b/docs/page.css index 57232a30c26531..b5e7fcc4fb06ea 100644 --- a/docs/page.css +++ b/docs/page.css @@ -130,3 +130,14 @@ span.param { a.param:hover { color: #777; } + +sup, sub { + /* prevent superscript and subscript elements from affecting line-height */ + vertical-align: baseline; + position: relative; + top: -0.4em; +} + +sub { + top: 0.4em; +} diff --git a/docs/scenes/js/material.js b/docs/scenes/js/material.js index 8529fc12b72aba..ccb4f593de4d75 100644 --- a/docs/scenes/js/material.js +++ b/docs/scenes/js/material.js @@ -302,7 +302,6 @@ function guiMaterial( gui, mesh, material, geometry ) { // folder.add( material, 'polygonOffsetFactor' ); // folder.add( material, 'polygonOffsetUnits' ); folder.add( material, 'alphaTest', 0, 1 ); - // folder.add( material, 'overdraw', 0, 5 ); folder.add( material, 'visible' ); folder.add( material, 'side', constants.side ).onChange( needsUpdate( material, geometry ) ); diff --git a/editor/css/dark.css b/editor/css/dark.css index 425030c8dcc6ab..f219e884d826ed 100644 --- a/editor/css/dark.css +++ b/editor/css/dark.css @@ -220,6 +220,8 @@ select { #toolbar button { margin-right: 6px; + line-height: 14px; + height: 24px; } .Outliner { diff --git a/editor/css/light.css b/editor/css/light.css index 4a1ea8e07d04b9..f6cfa1c5ab0799 100644 --- a/editor/css/light.css +++ b/editor/css/light.css @@ -213,6 +213,8 @@ select { #toolbar button { margin-right: 6px; + line-height: 14px; + height: 24px; } .Outliner { diff --git a/editor/index.html b/editor/index.html index a606de3149bc30..e1e5d7a447c005 100644 --- a/editor/index.html +++ b/editor/index.html @@ -6,10 +6,10 @@ - - - - + + + + @@ -54,7 +54,6 @@ - @@ -139,6 +138,7 @@ + diff --git a/editor/js/Config.js b/editor/js/Config.js index 543f7b5dfb963a..8f4af901c186b7 100644 --- a/editor/js/Config.js +++ b/editor/js/Config.js @@ -7,6 +7,8 @@ var Config = function () { var name = 'threejs-editor'; var storage = { + 'language': 'en', + 'autosave': true, 'theme': 'css/light.css', diff --git a/editor/js/Editor.js b/editor/js/Editor.js index a34a0e80553a01..469fde057799b3 100644 --- a/editor/js/Editor.js +++ b/editor/js/Editor.js @@ -75,6 +75,8 @@ var Editor = function () { this.config = new Config(); this.history = new History( this ); this.storage = new Storage(); + this.strings = new Strings( this.config ); + this.loader = new Loader( this ); this.camera = this.DEFAULT_CAMERA.clone(); diff --git a/editor/js/Menubar.Add.js b/editor/js/Menubar.Add.js index 52c46f64cbedac..0e6aba99a7f942 100644 --- a/editor/js/Menubar.Add.js +++ b/editor/js/Menubar.Add.js @@ -4,12 +4,14 @@ Menubar.Add = function ( editor ) { + var strings = editor.strings; + var container = new UI.Panel(); container.setClass( 'menu' ); var title = new UI.Panel(); title.setClass( 'title' ); - title.setTextContent( 'Add' ); + title.setTextContent( strings.getKey( 'menubar/add' ) ); container.add( title ); var options = new UI.Panel(); @@ -20,7 +22,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Group' ); + option.setTextContent( strings.getKey( 'menubar/add/group' ) ); option.onClick( function () { var mesh = new THREE.Group(); @@ -39,7 +41,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Plane' ); + option.setTextContent( strings.getKey( 'menubar/add/plane' ) ); option.onClick( function () { var geometry = new THREE.PlaneBufferGeometry( 1, 1, 1, 1 ); @@ -56,7 +58,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Box' ); + option.setTextContent( strings.getKey( 'menubar/add/box' ) ); option.onClick( function () { var geometry = new THREE.BoxBufferGeometry( 1, 1, 1, 1, 1, 1 ); @@ -72,7 +74,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Circle' ); + option.setTextContent( strings.getKey( 'menubar/add/circle' ) ); option.onClick( function () { var geometry = new THREE.CircleBufferGeometry( 1, 8, 0, Math.PI * 2 ); @@ -88,7 +90,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Cylinder' ); + option.setTextContent( strings.getKey( 'menubar/add/cylinder' ) ); option.onClick( function () { var geometry = new THREE.CylinderBufferGeometry( 1, 1, 1, 8, 1, false, 0, Math.PI * 2 ); @@ -104,7 +106,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Sphere' ); + option.setTextContent( strings.getKey( 'menubar/add/sphere' ) ); option.onClick( function () { var geometry = new THREE.SphereBufferGeometry( 1, 8, 6, 0, Math.PI * 2, 0, Math.PI ); @@ -120,7 +122,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Icosahedron' ); + option.setTextContent( strings.getKey( 'menubar/add/icosahedron' ) ); option.onClick( function () { var geometry = new THREE.IcosahedronGeometry( 1, 0 ); @@ -136,7 +138,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Torus' ); + option.setTextContent( strings.getKey( 'menubar/add/torus' ) ); option.onClick( function () { var geometry = new THREE.TorusBufferGeometry( 1, 0.4, 8, 6, Math.PI * 2 ); @@ -152,7 +154,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'TorusKnot' ); + option.setTextContent( strings.getKey( 'menubar/add/torusknot' ) ); option.onClick( function () { var geometry = new THREE.TorusKnotBufferGeometry( 1, 0.4, 64, 8, 2, 3 ); @@ -197,7 +199,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Lathe' ); + option.setTextContent( strings.getKey( 'menubar/add/lathe' ) ); option.onClick( function() { var points = [ @@ -227,7 +229,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Sprite' ); + option.setTextContent( strings.getKey( 'menubar/add/sprite' ) ); option.onClick( function () { var sprite = new THREE.Sprite( new THREE.SpriteMaterial() ); @@ -246,7 +248,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'PointLight' ); + option.setTextContent( strings.getKey( 'menubar/add/pointlight' ) ); option.onClick( function () { var color = 0xffffff; @@ -265,7 +267,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'SpotLight' ); + option.setTextContent( strings.getKey( 'menubar/add/spotlight' ) ); option.onClick( function () { var color = 0xffffff; @@ -289,7 +291,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'DirectionalLight' ); + option.setTextContent( strings.getKey( 'menubar/add/directionallight' ) ); option.onClick( function () { var color = 0xffffff; @@ -310,7 +312,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'HemisphereLight' ); + option.setTextContent( strings.getKey( 'menubar/add/hemispherelight' ) ); option.onClick( function () { var skyColor = 0x00aaff; @@ -331,7 +333,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'AmbientLight' ); + option.setTextContent( strings.getKey( 'menubar/add/ambientlight' ) ); option.onClick( function() { var color = 0x222222; @@ -352,7 +354,7 @@ Menubar.Add = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'PerspectiveCamera' ); + option.setTextContent( strings.getKey( 'menubar/add/perspectivecamera' ) ); option.onClick( function() { var camera = new THREE.PerspectiveCamera( 50, 1, 1, 10000 ); diff --git a/editor/js/Menubar.Edit.js b/editor/js/Menubar.Edit.js index 1747d4419cd688..21aaa5ac6e8238 100644 --- a/editor/js/Menubar.Edit.js +++ b/editor/js/Menubar.Edit.js @@ -4,12 +4,14 @@ Menubar.Edit = function ( editor ) { + var strings = editor.strings; + var container = new UI.Panel(); container.setClass( 'menu' ); var title = new UI.Panel(); title.setClass( 'title' ); - title.setTextContent( 'Edit' ); + title.setTextContent( strings.getKey( 'menubar/edit' ) ); container.add( title ); var options = new UI.Panel(); @@ -20,7 +22,7 @@ Menubar.Edit = function ( editor ) { var undo = new UI.Row(); undo.setClass( 'option' ); - undo.setTextContent( 'Undo (Ctrl+Z)' ); + undo.setTextContent( strings.getKey( 'menubar/edit/undo' ) ); undo.onClick( function () { editor.undo(); @@ -32,7 +34,7 @@ Menubar.Edit = function ( editor ) { var redo = new UI.Row(); redo.setClass( 'option' ); - redo.setTextContent( 'Redo (Ctrl+Shift+Z)' ); + redo.setTextContent( strings.getKey( 'menubar/edit/redo' ) ); redo.onClick( function () { editor.redo(); @@ -44,7 +46,7 @@ Menubar.Edit = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Clear History' ); + option.setTextContent( strings.getKey( 'menubar/edit/clear_history' ) ); option.onClick( function () { if ( confirm( 'The Undo/Redo History will be cleared. Are you sure?' ) ) { @@ -86,7 +88,7 @@ Menubar.Edit = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Clone' ); + option.setTextContent( strings.getKey( 'menubar/edit/clone' ) ); option.onClick( function () { var object = editor.selected; @@ -104,7 +106,7 @@ Menubar.Edit = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Delete (Del)' ); + option.setTextContent( strings.getKey( 'menubar/edit/delete' ) ); option.onClick( function () { var object = editor.selected; @@ -121,7 +123,7 @@ Menubar.Edit = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Minify Shaders' ); + option.setTextContent( strings.getKey( 'menubar/edit/minify_shaders' ) ); option.onClick( function() { var root = editor.selected || editor.scene; diff --git a/editor/js/Menubar.Examples.js b/editor/js/Menubar.Examples.js index 9ae09e54e7a72a..14d56fc3e279a8 100644 --- a/editor/js/Menubar.Examples.js +++ b/editor/js/Menubar.Examples.js @@ -4,12 +4,14 @@ Menubar.Examples = function ( editor ) { + var strings = editor.strings; + var container = new UI.Panel(); container.setClass( 'menu' ); var title = new UI.Panel(); title.setClass( 'title' ); - title.setTextContent( 'Examples' ); + title.setTextContent( strings.getKey( 'menubar/examples' ) ); container.add( title ); var options = new UI.Panel(); diff --git a/editor/js/Menubar.File.js b/editor/js/Menubar.File.js index 9ba0e0a7b17dcb..c8f161dc82d5cf 100644 --- a/editor/js/Menubar.File.js +++ b/editor/js/Menubar.File.js @@ -15,13 +15,14 @@ Menubar.File = function ( editor ) { // var config = editor.config; + var strings = editor.strings; var container = new UI.Panel(); container.setClass( 'menu' ); var title = new UI.Panel(); title.setClass( 'title' ); - title.setTextContent( 'File' ); + title.setTextContent( strings.getKey( 'menubar/file' ) ); container.add( title ); var options = new UI.Panel(); @@ -32,7 +33,7 @@ Menubar.File = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'New' ); + option.setTextContent( strings.getKey( 'menubar/file/new' ) ); option.onClick( function () { if ( confirm( 'Any unsaved data will be lost. Are you sure?' ) ) { @@ -67,7 +68,7 @@ Menubar.File = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Import' ); + option.setTextContent( strings.getKey( 'menubar/file/import' ) ); option.onClick( function () { fileInput.click(); @@ -83,7 +84,7 @@ Menubar.File = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Export Geometry' ); + option.setTextContent( strings.getKey( 'menubar/file/export/geometry' ) ); option.onClick( function () { var object = editor.selected; @@ -126,7 +127,7 @@ Menubar.File = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Export Object' ); + option.setTextContent( strings.getKey( 'menubar/file/export/object' ) ); option.onClick( function () { var object = editor.selected; @@ -160,7 +161,7 @@ Menubar.File = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Export Scene' ); + option.setTextContent( strings.getKey( 'menubar/file/export/scene' ) ); option.onClick( function () { var output = editor.scene.toJSON(); @@ -189,7 +190,7 @@ Menubar.File = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Export DAE' ); + option.setTextContent( strings.getKey( 'menubar/file/export/dae' ) ); option.onClick( function () { var exporter = new THREE.ColladaExporter(); @@ -207,7 +208,7 @@ Menubar.File = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Export GLB' ); + option.setTextContent( strings.getKey( 'menubar/file/export/glb' ) ); option.onClick( function () { var exporter = new THREE.GLTFExporter(); @@ -227,7 +228,7 @@ Menubar.File = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Export GLTF' ); + option.setTextContent( strings.getKey( 'menubar/file/export/gltf' ) ); option.onClick( function () { var exporter = new THREE.GLTFExporter(); @@ -246,7 +247,7 @@ Menubar.File = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Export OBJ' ); + option.setTextContent( strings.getKey( 'menubar/file/export/obj' ) ); option.onClick( function () { var object = editor.selected; @@ -265,11 +266,11 @@ Menubar.File = function ( editor ) { } ); options.add( option ); - // Export STL + // Export STL (ASCII) var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Export STL' ); + option.setTextContent( strings.getKey( 'menubar/file/export/stl' ) ); option.onClick( function () { var exporter = new THREE.STLExporter(); @@ -279,6 +280,20 @@ Menubar.File = function ( editor ) { } ); options.add( option ); + // Export STL (Binary) + + var option = new UI.Row(); + option.setClass( 'option' ); + option.setTextContent( strings.getKey( 'menubar/file/export/stl_binary' ) ); + option.onClick( function () { + + var exporter = new THREE.STLExporter(); + + saveArrayBuffer( exporter.parse( editor.scene, { binary: true } ), 'model-binary.stl' ); + + } ); + options.add( option ); + // options.add( new UI.HorizontalRule() ); @@ -287,7 +302,7 @@ Menubar.File = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Publish' ); + option.setTextContent( strings.getKey( 'menubar/file/publish' ) ); option.onClick( function () { var zip = new JSZip(); diff --git a/editor/js/Menubar.Help.js b/editor/js/Menubar.Help.js index 53dca973281ae2..aab8f2703c866d 100644 --- a/editor/js/Menubar.Help.js +++ b/editor/js/Menubar.Help.js @@ -4,12 +4,14 @@ Menubar.Help = function ( editor ) { + var strings = editor.strings; + var container = new UI.Panel(); container.setClass( 'menu' ); var title = new UI.Panel(); title.setClass( 'title' ); - title.setTextContent( 'Help' ); + title.setTextContent( strings.getKey( 'menubar/help' ) ); container.add( title ); var options = new UI.Panel(); @@ -20,7 +22,7 @@ Menubar.Help = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'Source code' ); + option.setTextContent( strings.getKey( 'menubar/help/source_code' ) ); option.onClick( function () { window.open( 'https://github.com/mrdoob/three.js/tree/master/editor', '_blank' ) @@ -32,7 +34,7 @@ Menubar.Help = function ( editor ) { var option = new UI.Row(); option.setClass( 'option' ); - option.setTextContent( 'About' ); + option.setTextContent( strings.getKey( 'menubar/help/about' ) ); option.onClick( function () { window.open( 'http://threejs.org', '_blank' ); diff --git a/editor/js/Menubar.Play.js b/editor/js/Menubar.Play.js index 75a3cb2b657d10..8e82beee469388 100644 --- a/editor/js/Menubar.Play.js +++ b/editor/js/Menubar.Play.js @@ -5,6 +5,7 @@ Menubar.Play = function ( editor ) { var signals = editor.signals; + var strings = editor.strings; var container = new UI.Panel(); container.setClass( 'menu' ); @@ -13,7 +14,7 @@ Menubar.Play = function ( editor ) { var title = new UI.Panel(); title.setClass( 'title' ); - title.setTextContent( 'Play' ); + title.setTextContent( strings.getKey( 'menubar/play' ) ); title.onClick( function () { if ( isPlaying === false ) { diff --git a/editor/js/Sidebar.Object.js b/editor/js/Sidebar.Object.js index dcd4bf2ff7ee59..83ba3d170dba32 100644 --- a/editor/js/Sidebar.Object.js +++ b/editor/js/Sidebar.Object.js @@ -13,6 +13,7 @@ Sidebar.Object = function ( editor ) { // Actions + /* var objectActions = new UI.Select().setPosition( 'absolute' ).setRight( '8px' ).setFontSize( '11px' ); objectActions.setOptions( { @@ -50,7 +51,8 @@ Sidebar.Object = function ( editor ) { this.setValue( 'Actions' ); } ); - // container.addStatic( objectActions ); + container.addStatic( objectActions ); + */ // type diff --git a/editor/js/Sidebar.Project.js b/editor/js/Sidebar.Project.js index 43082b3088fb31..cdcf262c6d66d5 100644 --- a/editor/js/Sidebar.Project.js +++ b/editor/js/Sidebar.Project.js @@ -6,11 +6,11 @@ Sidebar.Project = function ( editor ) { var config = editor.config; var signals = editor.signals; + var strings = editor.strings; var rendererTypes = { 'WebGLRenderer': THREE.WebGLRenderer, - 'CanvasRenderer': THREE.CanvasRenderer, 'SVGRenderer': THREE.SVGRenderer, 'SoftwareRenderer': THREE.SoftwareRenderer, 'RaytracingRenderer': THREE.RaytracingRenderer @@ -30,7 +30,7 @@ Sidebar.Project = function ( editor ) { } ); - titleRow.add( new UI.Text( 'Title' ).setWidth( '90px' ) ); + titleRow.add( new UI.Text( strings.getKey( 'sidebar/project/title' ) ).setWidth( '90px' ) ); titleRow.add( title ); container.add( titleRow ); @@ -44,7 +44,7 @@ Sidebar.Project = function ( editor ) { } ); - editableRow.add( new UI.Text( 'Editable' ).setWidth( '90px' ) ); + editableRow.add( new UI.Text( strings.getKey( 'sidebar/project/editable' ) ).setWidth( '90px' ) ); editableRow.add( editable ); container.add( editableRow ); @@ -58,7 +58,7 @@ Sidebar.Project = function ( editor ) { } ); - vrRow.add( new UI.Text( 'VR' ).setWidth( '90px' ) ); + vrRow.add( new UI.Text( strings.getKey( 'sidebar/project/vr' ) ).setWidth( '90px' ) ); vrRow.add( vr ); container.add( vrRow ); @@ -86,7 +86,7 @@ Sidebar.Project = function ( editor ) { } ); - rendererTypeRow.add( new UI.Text( 'Renderer' ).setWidth( '90px' ) ); + rendererTypeRow.add( new UI.Text( strings.getKey( 'sidebar/project/renderer' ) ).setWidth( '90px' ) ); rendererTypeRow.add( rendererType ); container.add( rendererTypeRow ); @@ -153,12 +153,6 @@ Sidebar.Project = function ( editor ) { function createRenderer( type, antialias, shadows, gammaIn, gammaOut ) { - if ( type === 'WebGLRenderer' && System.support.webgl === false ) { - - type = 'CanvasRenderer'; - - } - rendererPropertiesRow.setDisplay( type === 'WebGLRenderer' ? '' : 'none' ); var renderer = new rendererTypes[ type ]( { antialias: antialias} ); diff --git a/editor/js/Sidebar.Properties.js b/editor/js/Sidebar.Properties.js index ed020654372dce..12fbda912cb0ef 100644 --- a/editor/js/Sidebar.Properties.js +++ b/editor/js/Sidebar.Properties.js @@ -5,24 +5,24 @@ Sidebar.Properties = function ( editor ) { var signals = editor.signals; + var strings = editor.strings; var container = new UI.Span(); - var objectTab = new UI.Text( 'OBJECT' ).onClick( onClick ); - var geometryTab = new UI.Text( 'GEOMETRY' ).onClick( onClick ); - var materialTab = new UI.Text( 'MATERIAL' ).onClick( onClick ); + var objectTab = new UI.Text( strings.getKey( 'sidebar/properties/object' ) ).setTextTransform( 'uppercase' ); + objectTab.onClick( function () { select( 'OBJECT' ) } ); + + var geometryTab = new UI.Text( strings.getKey( 'sidebar/properties/geometry' ) ).setTextTransform( 'uppercase' ); + geometryTab.onClick( function () { select( 'GEOMETRY' ) } ); + + var materialTab = new UI.Text( strings.getKey( 'sidebar/properties/material' ) ).setTextTransform( 'uppercase' ); + materialTab.onClick( function () { select( 'MATERIAL' ) } ); var tabs = new UI.Div(); tabs.setId( 'tabs' ); tabs.add( objectTab, geometryTab, materialTab ); container.add( tabs ); - function onClick( event ) { - - select( event.target.textContent ); - - } - // var object = new UI.Span().add( diff --git a/editor/js/Sidebar.Scene.js b/editor/js/Sidebar.Scene.js index c4488483165d96..ed461b4a34de20 100644 --- a/editor/js/Sidebar.Scene.js +++ b/editor/js/Sidebar.Scene.js @@ -5,6 +5,7 @@ Sidebar.Scene = function ( editor ) { var signals = editor.signals; + var strings = editor.strings; var container = new UI.Panel(); container.setBorderTop( '0' ); @@ -119,7 +120,7 @@ Sidebar.Scene = function ( editor ) { var backgroundColor = new UI.Color().setValue( '#aaaaaa' ).onChange( onBackgroundChanged ); - backgroundRow.add( new UI.Text( 'Background' ).setWidth( '90px' ) ); + backgroundRow.add( new UI.Text( strings.getKey( 'sidebar/scene/background' ) ).setWidth( '90px' ) ); backgroundRow.add( backgroundColor ); container.add( backgroundRow ); @@ -153,7 +154,7 @@ Sidebar.Scene = function ( editor ) { } ); - fogTypeRow.add( new UI.Text( 'Fog' ).setWidth( '90px' ) ); + fogTypeRow.add( new UI.Text( strings.getKey( 'sidebar/scene/fog' ) ).setWidth( '90px' ) ); fogTypeRow.add( fogType ); container.add( fogTypeRow ); diff --git a/editor/js/Sidebar.Settings.Shortcuts.js b/editor/js/Sidebar.Settings.Shortcuts.js index 734756accf4d98..a51599117978f8 100644 --- a/editor/js/Sidebar.Settings.Shortcuts.js +++ b/editor/js/Sidebar.Settings.Shortcuts.js @@ -4,7 +4,9 @@ Sidebar.Settings.Shortcuts = function ( editor ) { - const IS_MAC = navigator.platform.toUpperCase().indexOf( 'MAC' ) >= 0; + var strings = editor.strings; + + var IS_MAC = navigator.platform.toUpperCase().indexOf( 'MAC' ) >= 0; function isValidKeyBinding( key ) { @@ -76,7 +78,7 @@ Sidebar.Settings.Shortcuts = function ( editor ) { } shortcutInput.dom.maxLength = 1; - shortcutRow.add( new UI.Text( name ).setTextTransform( 'capitalize' ).setWidth( '90px' ) ); + shortcutRow.add( new UI.Text( strings.getKey( 'sidebar/settings/shortcuts/' + name ) ).setTextTransform( 'capitalize' ).setWidth( '90px' ) ); shortcutRow.add( shortcutInput ); container.add( shortcutRow ); diff --git a/editor/js/Sidebar.Settings.Viewport.js b/editor/js/Sidebar.Settings.Viewport.js index c7c3fe28c81644..2cfbecd27eb995 100644 --- a/editor/js/Sidebar.Settings.Viewport.js +++ b/editor/js/Sidebar.Settings.Viewport.js @@ -5,11 +5,12 @@ Sidebar.Settings.Viewport = function ( editor ) { var signals = editor.signals; + var strings = editor.strings; var container = new UI.Div(); container.add( new UI.Break() ); - container.add( new UI.Text( 'Grid' ).setWidth( '90px' ) ); + container.add( new UI.Text( strings.getKey( 'sidebar/settings/viewport/grid' ) ).setWidth( '90px' ) ); var show = new UI.THREE.Boolean( true ).onChange( update ); container.add( show ); diff --git a/editor/js/Sidebar.Settings.js b/editor/js/Sidebar.Settings.js index 62956df51fed24..af1906282e13c5 100644 --- a/editor/js/Sidebar.Settings.js +++ b/editor/js/Sidebar.Settings.js @@ -6,13 +6,44 @@ Sidebar.Settings = function ( editor ) { var config = editor.config; var signals = editor.signals; + var strings = editor.strings; var container = new UI.Panel(); container.setBorderTop( '0' ); container.setPaddingTop( '20px' ); container.setPaddingBottom( '20px' ); - // class + // language + + var options = { + 'en': 'English', + 'zh': '中文' + }; + + var languageRow = new UI.Row(); + var language = new UI.Select().setWidth( '150px' ); + language.setOptions( options ); + + if ( config.getKey( 'language' ) !== undefined ) { + + language.setValue( config.getKey( 'language' ) ); + + } + + language.onChange( function () { + + var value = this.getValue(); + + editor.config.setKey( 'language', value ); + + } ); + + languageRow.add( new UI.Text( strings.getKey( 'sidebar/settings/language' ) ).setWidth( '90px' ) ); + languageRow.add( language ); + + container.add( languageRow ); + + // theme var options = { 'css/light.css': 'light', @@ -38,7 +69,7 @@ Sidebar.Settings = function ( editor ) { } ); - themeRow.add( new UI.Text( 'Theme' ).setWidth( '90px' ) ); + themeRow.add( new UI.Text( strings.getKey( 'sidebar/settings/theme' ) ).setWidth( '90px' ) ); themeRow.add( theme ); container.add( themeRow ); diff --git a/editor/js/Sidebar.js b/editor/js/Sidebar.js index 0338df26519546..82fa2550854b2a 100644 --- a/editor/js/Sidebar.js +++ b/editor/js/Sidebar.js @@ -4,26 +4,27 @@ var Sidebar = function ( editor ) { + var strings = editor.strings; + var container = new UI.Panel(); container.setId( 'sidebar' ); // - var sceneTab = new UI.Text( 'SCENE' ).onClick( onClick ); - var projectTab = new UI.Text( 'PROJECT' ).onClick( onClick ); - var settingsTab = new UI.Text( 'SETTINGS' ).onClick( onClick ); + var sceneTab = new UI.Text( strings.getKey( 'sidebar/scene' ) ).setTextTransform( 'uppercase' ); + sceneTab.onClick( function () { select( 'SCENE' ) } ); + + var projectTab = new UI.Text( strings.getKey( 'sidebar/project' ) ).setTextTransform( 'uppercase' ); + projectTab.onClick( function () { select( 'PROJECT' ) } ); + + var settingsTab = new UI.Text( strings.getKey( 'sidebar/settings' ) ).setTextTransform( 'uppercase' ); + settingsTab.onClick( function () { select( 'SETTINGS' ) } ); var tabs = new UI.Div(); tabs.setId( 'tabs' ); tabs.add( sceneTab, projectTab, settingsTab ); container.add( tabs ); - function onClick( event ) { - - select( event.target.textContent ); - - } - // var scene = new UI.Span().add( diff --git a/editor/js/Strings.js b/editor/js/Strings.js new file mode 100644 index 00000000000000..8fb3d22c8b38c8 --- /dev/null +++ b/editor/js/Strings.js @@ -0,0 +1,199 @@ +/** + * @author mrdoob / http://mrdoob.com/ + */ + +var Strings = function ( config ) { + + var language = config.getKey( 'language' ); + + var values = { + + en: { + + 'menubar/file': 'File', + 'menubar/file/new': 'New', + 'menubar/file/import': 'Import', + 'menubar/file/export/geometry': 'Export Geometry', + 'menubar/file/export/object': 'Export Object', + 'menubar/file/export/scene': 'Export Scene', + 'menubar/file/export/dae': 'Export DAE', + 'menubar/file/export/glb': 'Export GLB', + 'menubar/file/export/gltf': 'Export GLTF', + 'menubar/file/export/obj': 'Export OBJ', + 'menubar/file/export/stl': 'Export STL', + 'menubar/file/export/stl_binary': 'Export STL (Binary)', + 'menubar/file/publish': 'Publish', + + 'menubar/edit': 'Edit', + 'menubar/edit/undo': 'Undo (Ctrl+Z)', + 'menubar/edit/redo': 'Redo (Ctrl+Shift+Z)', + 'menubar/edit/clear_history': 'Clear History', + 'menubar/edit/clone': 'Clone', + 'menubar/edit/delete': 'Delete (Del)', + 'menubar/edit/minify_shaders': 'Minify Shaders', + + 'menubar/add': 'Add', + 'menubar/add/group': 'Group', + 'menubar/add/plane': 'Plane', + 'menubar/add/box': 'Box', + 'menubar/add/circle': 'Circle', + 'menubar/add/cylinder': 'Cylinder', + 'menubar/add/sphere': 'Sphere', + 'menubar/add/icosahedron': 'Icosahedron', + 'menubar/add/torus': 'Torus', + 'menubar/add/torusknot': 'TorusKnot', + 'menubar/add/lathe': 'Lathe', + 'menubar/add/sprite': 'Sprite', + 'menubar/add/pointlight': 'PointLight', + 'menubar/add/spotlight': 'SpotLight', + 'menubar/add/directionallight': 'DirectionalLight', + 'menubar/add/hemispherelight': 'HemisphereLight', + 'menubar/add/ambientlight': 'AmbientLight', + 'menubar/add/perspectivecamera': 'PerspectiveCamera', + + 'menubar/play': 'Play', + + 'menubar/examples': 'Examples', + + 'menubar/help': 'Help', + 'menubar/help/source_code': 'Source Code', + 'menubar/help/about': 'About', + + 'sidebar/scene': 'Scene', + 'sidebar/scene/background': 'Background', + 'sidebar/scene/fog': 'Fog', + + 'sidebar/properties/object': 'Object', + 'sidebar/properties/geometry': 'Geometry', + 'sidebar/properties/material': 'Material', + 'sidebar/properties/script': 'Script', + + 'sidebar/project': 'Project', + 'sidebar/project/title': 'Title', + 'sidebar/project/editable': 'Editable', + 'sidebar/project/vr': 'VR', + 'sidebar/project/renderer': 'Renderer', + + 'sidebar/settings': 'Settings', + 'sidebar/settings/language': 'Language', + 'sidebar/settings/theme': 'Theme', + + 'sidebar/settings/shortcuts/translate': 'Translate', + 'sidebar/settings/shortcuts/rotate': 'Rotate', + 'sidebar/settings/shortcuts/scale': 'Scale', + 'sidebar/settings/shortcuts/undo': 'Undo', + 'sidebar/settings/shortcuts/focus': 'Focus', + + 'sidebar/settings/viewport/grid': 'Grid', + + 'toolbar/translate': 'Translate', + 'toolbar/rotate': 'Rotate', + 'toolbar/scale': 'Scale', + 'toolbar/local': 'Local', + + 'viewport/info/objects': 'Objects', + 'viewport/info/vertices': 'Vertices', + 'viewport/info/triangles': 'Triangles' + + }, + + zh: { + + 'menubar/file': '文件', + 'menubar/file/new': '新建', + 'menubar/file/import': '导入', + 'menubar/file/export/geometry': '导出几何体', + 'menubar/file/export/object': '导出物体', + 'menubar/file/export/scene': '导出场景', + 'menubar/file/export/dae': '导出DAE', + 'menubar/file/export/glb': '导出GLB', + 'menubar/file/export/gltf': '导出GLTF', + 'menubar/file/export/obj': '导出OBJ', + 'menubar/file/export/stl': '导出STL', + 'menubar/file/export/stl_binary': '导出STL(二进制)', + 'menubar/file/publish': '发布', + + 'menubar/edit': '编辑', + 'menubar/edit/undo': '撤销 (Ctrl+Z)', + 'menubar/edit/redo': '重做 (Ctrl+Shift+Z)', + 'menubar/edit/clear_history': '清空历史记录', + 'menubar/edit/clone': '拷贝', + 'menubar/edit/delete': '删除 (Del)', + 'menubar/edit/minify_shaders': '压缩着色器', + + 'menubar/add': '添加', + 'menubar/add/group': '组', + 'menubar/add/plane': '平面', + 'menubar/add/box': '正方体', + 'menubar/add/circle': '圆', + 'menubar/add/cylinder': '圆柱体', + 'menubar/add/sphere': '球体', + 'menubar/add/icosahedron': '二十面体', + 'menubar/add/torus': '圆环体', + 'menubar/add/torusknot': '环面纽结体', + 'menubar/add/lathe': '酒杯', + 'menubar/add/sprite': '精灵', + 'menubar/add/pointlight': '点光源', + 'menubar/add/spotlight': '聚光灯', + 'menubar/add/directionallight': '平行光', + 'menubar/add/hemispherelight': '半球光', + 'menubar/add/ambientlight': '环境光', + 'menubar/add/perspectivecamera': '透视相机', + + 'menubar/play': '启动', + + 'menubar/examples': '示例', + + 'menubar/help': '帮助', + 'menubar/help/source_code': '源码', + 'menubar/help/about': '关于', + + 'sidebar/scene': '场景', + 'sidebar/scene/background': '背景', + 'sidebar/scene/fog': '雾', + + 'sidebar/properties/object': '属性', + 'sidebar/properties/geometry': '几何组件', + 'sidebar/properties/material': '材质组件', + 'sidebar/properties/script': '脚本', + + 'sidebar/project': '项目', + 'sidebar/project/title': '标题', + 'sidebar/project/editable': '编辑性', + 'sidebar/project/vr': '虚拟现实', + 'sidebar/project/renderer': '渲染器', + + 'sidebar/settings': '设置', + 'sidebar/settings/language': '语言', + 'sidebar/settings/theme': '主题', + 'sidebar/settings/shortcuts/translate': '移动', + 'sidebar/settings/shortcuts/rotate': '旋转', + 'sidebar/settings/shortcuts/scale': '缩放', + 'sidebar/settings/shortcuts/undo': '撤销', + 'sidebar/settings/shortcuts/focus': '聚焦', + 'sidebar/settings/viewport/grid': '网格', + + 'toolbar/translate': '移动', + 'toolbar/rotate': '旋转', + 'toolbar/scale': '缩放', + 'toolbar/local': '本地', + + 'viewport/info/objects': '物体', + 'viewport/info/vertices': '顶点', + 'viewport/info/triangles': '三角形' + + } + + }; + + return { + + getKey: function ( key ) { + + return values[ language ][ key ] || '???'; + + } + + }; + +}; diff --git a/editor/js/Toolbar.js b/editor/js/Toolbar.js index 49e36196d92c07..0c31a45b8154ee 100644 --- a/editor/js/Toolbar.js +++ b/editor/js/Toolbar.js @@ -5,6 +5,7 @@ var Toolbar = function ( editor ) { var signals = editor.signals; + var strings = editor.strings; var container = new UI.Panel(); container.setId( 'toolbar' ); @@ -15,7 +16,7 @@ var Toolbar = function ( editor ) { // translate / rotate / scale - var translate = new UI.Button( 'translate' ); + var translate = new UI.Button( strings.getKey( 'toolbar/translate' ) ); translate.dom.className = 'Button selected'; translate.onClick( function () { @@ -24,7 +25,7 @@ var Toolbar = function ( editor ) { } ); buttons.add( translate ); - var rotate = new UI.Button( 'rotate' ); + var rotate = new UI.Button( strings.getKey( 'toolbar/rotate' ) ); rotate.onClick( function () { signals.transformModeChanged.dispatch( 'rotate' ); @@ -32,7 +33,7 @@ var Toolbar = function ( editor ) { } ); buttons.add( rotate ); - var scale = new UI.Button( 'scale' ); + var scale = new UI.Button( strings.getKey( 'toolbar/scale' ) ); scale.onClick( function () { signals.transformModeChanged.dispatch( 'scale' ); @@ -40,7 +41,7 @@ var Toolbar = function ( editor ) { } ); buttons.add( scale ); - var local = new UI.THREE.Boolean( false, 'local' ); + var local = new UI.THREE.Boolean( false, strings.getKey( 'toolbar/local' ) ); local.onChange( function () { signals.spaceChanged.dispatch( this.getValue() === true ? 'local' : 'world' ); diff --git a/editor/js/Viewport.Info.js b/editor/js/Viewport.Info.js index 5dfd99b5f72b42..b230a5464d25c9 100644 --- a/editor/js/Viewport.Info.js +++ b/editor/js/Viewport.Info.js @@ -5,6 +5,7 @@ Viewport.Info = function ( editor ) { var signals = editor.signals; + var strings = editor.strings; var container = new UI.Panel(); container.setId( 'info' ); @@ -18,9 +19,12 @@ Viewport.Info = function ( editor ) { var verticesText = new UI.Text( '0' ).setMarginLeft( '6px' ); var trianglesText = new UI.Text( '0' ).setMarginLeft( '6px' ); - container.add( new UI.Text( 'objects' ), objectsText, new UI.Break() ); - container.add( new UI.Text( 'vertices' ), verticesText, new UI.Break() ); - container.add( new UI.Text( 'triangles' ), trianglesText, new UI.Break() ); + container.add( new UI.Text( strings.getKey( 'viewport/info/objects' ) ).setTextTransform( 'lowercase' ) ); + container.add( objectsText, new UI.Break() ); + container.add( new UI.Text( strings.getKey( 'viewport/info/vertices' ) ).setTextTransform( 'lowercase' ) ); + container.add( verticesText, new UI.Break() ); + container.add( new UI.Text( strings.getKey( 'viewport/info/triangles' ) ).setTextTransform( 'lowercase' ) ); + container.add( trianglesText, new UI.Break() ); signals.objectAdded.add( update ); signals.objectRemoved.add( update ); diff --git a/examples/canvas_camera_orthographic.html b/examples/canvas_camera_orthographic.html deleted file mode 100644 index 98c8d206bb0ee5..00000000000000 --- a/examples/canvas_camera_orthographic.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - three.js canvas - camera - orthographic - - - - - - - - - - - - - - - - - diff --git a/examples/canvas_geometry_birds.html b/examples/canvas_geometry_birds.html deleted file mode 100644 index 75e10bd44fedb5..00000000000000 --- a/examples/canvas_geometry_birds.html +++ /dev/null @@ -1,483 +0,0 @@ - - - - three.js canvas - geometry - birds - - - - - - -
    -
    three.js - birds demo
    - - - - - - - - - - - - diff --git a/examples/canvas_geometry_cube.html b/examples/canvas_geometry_cube.html deleted file mode 100644 index 623c2c3d492844..00000000000000 --- a/examples/canvas_geometry_cube.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - three.js canvas - geometry - cube - - - - - - - - - - - - - - - - - diff --git a/examples/canvas_geometry_earth.html b/examples/canvas_geometry_earth.html deleted file mode 100644 index 16c4ed99073f23..00000000000000 --- a/examples/canvas_geometry_earth.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - three.js canvas - geometry - earth - - - - - - -
    -
    three.js - earth demo
    - - - - - - - - - - - - diff --git a/examples/canvas_geometry_hierarchy.html b/examples/canvas_geometry_hierarchy.html deleted file mode 100644 index a8e677d1004140..00000000000000 --- a/examples/canvas_geometry_hierarchy.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - three.js canvas - geometry - hierarchy - - - - - - - - - - - - - - - - - diff --git a/examples/canvas_geometry_nurbs.html b/examples/canvas_geometry_nurbs.html deleted file mode 100644 index 27db193e800733..00000000000000 --- a/examples/canvas_geometry_nurbs.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - three.js canvas - geometry - NURBS - - - - - - - -
    three.js - NURBS curve example
    - - - - - - - - - - - - - - - diff --git a/examples/canvas_geometry_panorama.html b/examples/canvas_geometry_panorama.html deleted file mode 100644 index b91e682e79b802..00000000000000 --- a/examples/canvas_geometry_panorama.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - three.js canvas - panorama demo - - - - - - -
    -
    three.js - panorama demo. cubemap by Jochum Skoglund.
    - - - - - - - - - diff --git a/examples/canvas_geometry_panorama_fisheye.html b/examples/canvas_geometry_panorama_fisheye.html deleted file mode 100644 index cc53ca866ae8d7..00000000000000 --- a/examples/canvas_geometry_panorama_fisheye.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - three.js canvas - panorama fisheye demo - - - - - - -
    -
    three.js - panorama fisheye demo. cubemap by Jochum Skoglund. (mousewheel: change fov)
    - - - - - - - - - diff --git a/examples/canvas_geometry_shapes.html b/examples/canvas_geometry_shapes.html deleted file mode 100644 index e3da4b16833d1f..00000000000000 --- a/examples/canvas_geometry_shapes.html +++ /dev/null @@ -1,409 +0,0 @@ - - - - three.js canvas - geometry - shapes - - - - - - - -
    three.js - shape geometry
    - - - - - - - - - - - - diff --git a/examples/canvas_geometry_terrain.html b/examples/canvas_geometry_terrain.html deleted file mode 100644 index 63a12bef58b704..00000000000000 --- a/examples/canvas_geometry_terrain.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - three.js canvas - geometry - terrain - - - - - - -





    Generating...
    -
    three.js - terrain demo. generate another
    - - - - - - - - - - - - - - diff --git a/examples/canvas_geometry_text.html b/examples/canvas_geometry_text.html deleted file mode 100644 index 12193b68ac92a8..00000000000000 --- a/examples/canvas_geometry_text.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - three.js canvas - geometry - text - - - - - - - - - - - - - - - - - - - diff --git a/examples/canvas_interactive_cubes.html b/examples/canvas_interactive_cubes.html deleted file mode 100644 index 66deb1cf0be1dd..00000000000000 --- a/examples/canvas_interactive_cubes.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - three.js canvas - interactive - cubes - - - - - - - - - - - - - - - - - diff --git a/examples/canvas_interactive_cubes_tween.html b/examples/canvas_interactive_cubes_tween.html deleted file mode 100644 index e1cd126333ca3a..00000000000000 --- a/examples/canvas_interactive_cubes_tween.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - three.js canvas - interactive - cubes tween - - - - - - - - - - - - - - - - - - diff --git a/examples/canvas_interactive_sprites.html b/examples/canvas_interactive_sprites.html deleted file mode 100644 index c5f9fb75f05e8e..00000000000000 --- a/examples/canvas_interactive_sprites.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - three.js canvas - interactive sprites - - - - - - - - - - - - - - - - - diff --git a/examples/canvas_interactive_voxelpainter.html b/examples/canvas_interactive_voxelpainter.html deleted file mode 100644 index 44330f4abe4e17..00000000000000 --- a/examples/canvas_interactive_voxelpainter.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - three.js canvas - interactive - voxel painter - - - - - - - - - - - - - - - diff --git a/examples/canvas_lights_pointlights.html b/examples/canvas_lights_pointlights.html deleted file mode 100644 index ae977edd0806b0..00000000000000 --- a/examples/canvas_lights_pointlights.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - three.js canvas - point light - - - - - - -
    -
    - three.js - point lights demo.
    - Walt Disney head by David OReilly -
    - - - - - - - - - diff --git a/examples/canvas_lines.html b/examples/canvas_lines.html deleted file mode 100644 index 917bc18fe0d1d4..00000000000000 --- a/examples/canvas_lines.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - three.js canvas - lines - random - - - - - - - - - - - - - - diff --git a/examples/canvas_lines_colors.html b/examples/canvas_lines_colors.html deleted file mode 100644 index 471e6a921aff40..00000000000000 --- a/examples/canvas_lines_colors.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - three.js canvas - lines - colors - - - - - - -
    - three.js - color lines - [Hilbert curve thanks to Thomas Diewald] -
    - - - - - - - - - - - - diff --git a/examples/canvas_lines_dashed.html b/examples/canvas_lines_dashed.html deleted file mode 100644 index b9b62aaa8d7f0e..00000000000000 --- a/examples/canvas_lines_dashed.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - three.js canvas - dashed lines - - - - - - -
    three.js - dashed lines example
    -
    - - - - - - - - - - - - - - - diff --git a/examples/canvas_lines_sphere.html b/examples/canvas_lines_sphere.html deleted file mode 100644 index 45ffe34ee6c1c1..00000000000000 --- a/examples/canvas_lines_sphere.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - three.js canvas - lines - sphere - - - - - - - - - - - - - - diff --git a/examples/canvas_materials.html b/examples/canvas_materials.html deleted file mode 100644 index 23e066530a67f0..00000000000000 --- a/examples/canvas_materials.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - three.js canvas - materials - - - - - - - - - - - - - - - - - diff --git a/examples/canvas_materials_normal.html b/examples/canvas_materials_normal.html deleted file mode 100644 index 4dcae35d0030eb..00000000000000 --- a/examples/canvas_materials_normal.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - three.js canvas - normal material - - - - - - -
    -
    - three.js - normal material.
    - Walt Disney head by David OReilly -
    - - - - - - - - - diff --git a/examples/canvas_materials_reflection.html b/examples/canvas_materials_reflection.html deleted file mode 100644 index 61d8f21ad9bff0..00000000000000 --- a/examples/canvas_materials_reflection.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - three.js canvas - spherical reflection - - - - - - -
    -
    - three.js - spherical reflection demo.
    - Walt Disney head by David OReilly. Reflection texture by Kewlers. -
    - - - - - - - - - diff --git a/examples/canvas_materials_video.html b/examples/canvas_materials_video.html deleted file mode 100644 index 0d62faf920cb12..00000000000000 --- a/examples/canvas_materials_video.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - three.js canvas - materials - video - - - - - - - - - - - - - - - - - - - diff --git a/examples/canvas_morphtargets_horse.html b/examples/canvas_morphtargets_horse.html deleted file mode 100644 index 7685f6002c4067..00000000000000 --- a/examples/canvas_morphtargets_horse.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - three.js canvas - morph targets - horse - - - - - - - - - - - - - - - - - - - diff --git a/examples/canvas_particles_floor.html b/examples/canvas_particles_floor.html deleted file mode 100644 index 0b8351aa2f1d40..00000000000000 --- a/examples/canvas_particles_floor.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - three.js canvas - particles - floor - - - - - - - - - - - - - - - - diff --git a/examples/canvas_particles_random.html b/examples/canvas_particles_random.html deleted file mode 100644 index 59df12e579aac9..00000000000000 --- a/examples/canvas_particles_random.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - three.js canvas - particles - random - - - - - - - - - - - - - - - - diff --git a/examples/canvas_particles_sprites.html b/examples/canvas_particles_sprites.html deleted file mode 100644 index 4d3816a48232da..00000000000000 --- a/examples/canvas_particles_sprites.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - three.js canvas - particles - sprites - - - - - - - - - - - - - - - - - diff --git a/examples/canvas_performance.html b/examples/canvas_performance.html deleted file mode 100644 index 11f7223662d742..00000000000000 --- a/examples/canvas_performance.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - three.js canvas - performance - - - - - - - - - - - - - - - - - diff --git a/examples/canvas_sandbox.html b/examples/canvas_sandbox.html deleted file mode 100644 index 8f97dfffde6cf7..00000000000000 --- a/examples/canvas_sandbox.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - three.js canvas - sandbox - - - - - - - - - - - - - - - - - - diff --git a/examples/files.js b/examples/files.js index 9dadbd2a2c34a6..1b191ec3efa3b0 100644 --- a/examples/files.js +++ b/examples/files.js @@ -14,6 +14,7 @@ var files = { "webgl_decals", "webgl_depth_texture", "webgl_effects_anaglyph", + "webgl_effects_ascii", "webgl_effects_parallaxbarrier", "webgl_effects_peppersghost", "webgl_effects_stereo", @@ -188,7 +189,6 @@ var files = { "webgl_modifier_tessellation", "webgl_morphtargets", "webgl_morphtargets_horse", - "webgl_morphtargets_human", "webgl_morphtargets_sphere", "webgl_multiple_canvases_circle", "webgl_multiple_canvases_complex", @@ -196,6 +196,7 @@ var files = { "webgl_multiple_elements", "webgl_multiple_elements_text", "webgl_multiple_renderers", + "webgl_multiple_scenes_comparison", "webgl_multiple_views", "webgl_nearestneighbour", "webgl_octree", @@ -215,6 +216,7 @@ var files = { "webgl_points_billboards", "webgl_points_dynamic", "webgl_points_sprites", + "webgl_points_waves", "webgl_postprocessing", "webgl_postprocessing_advanced", "webgl_postprocessing_afterimage", @@ -325,7 +327,6 @@ var files = { "webvr_ballshooter", "webvr_cubes", "webvr_dragging", - "webvr_frustum", "webvr_lorenzattractor", "webvr_panorama", "webvr_paint", @@ -340,6 +341,7 @@ var files = { "misc_animation_authoring", "misc_animation_groups", "misc_animation_keys", + "misc_boxselection", "misc_controls_deviceorientation", "misc_controls_fly", "misc_controls_map", @@ -354,7 +356,6 @@ var files = { "misc_lights_test", "misc_lookat", "misc_ubiquity_test", - "misc_ubiquity_test2", "misc_uv_tests" ], "css3d": [ @@ -370,40 +371,6 @@ var files = { "css2d": [ "css2d_label" ], - "canvas": [ - "canvas_ascii_effect", - "canvas_camera_orthographic", - "canvas_geometry_birds", - "canvas_geometry_cube", - "canvas_geometry_earth", - "canvas_geometry_hierarchy", - "canvas_geometry_nurbs", - "canvas_geometry_panorama", - "canvas_geometry_panorama_fisheye", - "canvas_geometry_shapes", - "canvas_geometry_terrain", - "canvas_geometry_text", - "canvas_interactive_cubes", - "canvas_interactive_cubes_tween", - "canvas_interactive_sprites", - "canvas_interactive_voxelpainter", - "canvas_lights_pointlights", - "canvas_lines", - "canvas_lines_colors", - "canvas_lines_dashed", - "canvas_lines_sphere", - "canvas_materials", - "canvas_materials_normal", - "canvas_materials_reflection", - "canvas_materials_video", - "canvas_morphtargets_horse", - "canvas_particles_floor", - "canvas_particles_random", - "canvas_particles_sprites", - "canvas_particles_waves", - "canvas_performance", - "canvas_sandbox" - ], "raytracing": [ "raytracing_sandbox" ], diff --git a/examples/js/Cloth.js b/examples/js/Cloth.js index 47c78b89ad811c..383f87f52690d3 100644 --- a/examples/js/Cloth.js +++ b/examples/js/Cloth.js @@ -243,19 +243,23 @@ function simulate( time ) { if ( wind ) { - var face, faces = clothGeometry.faces, normal; + var indx; + var normal = new THREE.Vector3(); + var indices = clothGeometry.index; + var normals = clothGeometry.attributes.normal; particles = cloth.particles; - for ( i = 0, il = faces.length; i < il; i ++ ) { + for ( i = 0, il = indices.count; i < il; i += 3 ) { - face = faces[ i ]; - normal = face.normal; + for ( j = 0; j < 3; j ++ ) { - tmpForce.copy( normal ).normalize().multiplyScalar( normal.dot( windForce ) ); - particles[ face.a ].addForce( tmpForce ); - particles[ face.b ].addForce( tmpForce ); - particles[ face.c ].addForce( tmpForce ); + indx = indices.getX( i + j ); + normal.fromBufferAttribute( normals, indx ) + tmpForce.copy( normal ).normalize().multiplyScalar( normal.dot( windForce ) ); + particles[ indx ].addForce( tmpForce ); + + } } diff --git a/examples/js/UCSCharacter.js b/examples/js/UCSCharacter.js deleted file mode 100644 index a3978c9f12fba9..00000000000000 --- a/examples/js/UCSCharacter.js +++ /dev/null @@ -1,141 +0,0 @@ -THREE.UCSCharacter = function () { - - var scope = this; - - var mesh; - - this.scale = 1; - - this.root = new THREE.Object3D(); - - this.numSkins = undefined; - this.numMorphs = undefined; - - this.skins = []; - this.materials = []; - this.morphs = []; - - this.mixer = new THREE.AnimationMixer( this.root ); - - this.onLoadComplete = function () {}; - - this.loadCounter = 0; - - this.loadParts = function ( config ) { - - this.numSkins = config.skins.length; - this.numMorphs = config.morphs.length; - - // Character geometry + number of skins - this.loadCounter = 1 + config.skins.length; - - // SKINS - this.skins = loadTextures( config.baseUrl + "skins/", config.skins ); - this.materials = createMaterials( this.skins ); - - // MORPHS - this.morphs = config.morphs; - - // CHARACTER - var loader = new THREE.JSONLoader(); - console.log( config.baseUrl + config.character ); - loader.load( config.baseUrl + config.character, function ( geometry ) { - - geometry.computeBoundingBox(); - geometry.computeVertexNormals(); - - mesh = new THREE.SkinnedMesh( geometry, [] ); - mesh.name = config.character; - scope.root.add( mesh ); - - var bb = geometry.boundingBox; - scope.root.scale.set( config.s, config.s, config.s ); - scope.root.position.set( config.x, config.y - bb.min.y * config.s, config.z ); - - mesh.castShadow = true; - mesh.receiveShadow = true; - - scope.mixer.clipAction( geometry.animations[ 0 ], mesh ).play(); - - scope.setSkin( 0 ); - - scope.checkLoadComplete(); - - } ); - - }; - - this.setSkin = function ( index ) { - - if ( mesh && scope.materials ) { - - mesh.material = scope.materials[ index ]; - - } - - }; - - this.updateMorphs = function ( influences ) { - - if ( mesh ) { - - for ( var i = 0; i < scope.numMorphs; i ++ ) { - - mesh.morphTargetInfluences[ i ] = influences[ scope.morphs[ i ] ] / 100; - - } - - } - - }; - - function loadTextures( baseUrl, textureUrls ) { - - var textureLoader = new THREE.TextureLoader(); - var textures = []; - - for ( var i = 0; i < textureUrls.length; i ++ ) { - - textures[ i ] = textureLoader.load( baseUrl + textureUrls[ i ], scope.checkLoadComplete ); - textures[ i ].mapping = THREE.UVMapping; - textures[ i ].name = textureUrls[ i ]; - - } - - return textures; - - } - - function createMaterials( skins ) { - - var materials = []; - - for ( var i = 0; i < skins.length; i ++ ) { - - materials[ i ] = new THREE.MeshLambertMaterial( { - color: 0xeeeeee, - specular: 10.0, - map: skins[ i ], - skinning: true, - morphTargets: true - } ); - - } - - return materials; - - } - - this.checkLoadComplete = function () { - - scope.loadCounter -= 1; - - if ( scope.loadCounter === 0 ) { - - scope.onLoadComplete(); - - } - - }; - -}; diff --git a/examples/js/controls/MapControls.js b/examples/js/controls/MapControls.js index 8c15a7c003516c..186a1bf0a434d1 100644 --- a/examples/js/controls/MapControls.js +++ b/examples/js/controls/MapControls.js @@ -11,7 +11,7 @@ // Unlike TrackballControls, it maintains the "up" direction object.up (+Y by default). // This is very similar to OrbitControls, another set of touch behavior // -// Orbit - right mouse, or left mouse + ctrl/metaKey / touch: two-finger rotate +// Orbit - right mouse, or left mouse + ctrl/meta/shiftKey / touch: two-finger rotate // Zoom - middle mouse, or mousewheel / touch: two-finger spread or squish // Pan - left mouse, or arrow keys / touch: one-finger move @@ -777,7 +777,7 @@ THREE.MapControls = function ( object, domElement ) { case scope.mouseButtons.LEFT: - if ( event.ctrlKey || event.metaKey ) { + if ( event.ctrlKey || event.metaKey || event.shiftKey ) { if ( scope.enableRotate === false ) return; diff --git a/examples/js/controls/OrbitControls.js b/examples/js/controls/OrbitControls.js index 39c5d1231f6f5f..001dc539e3d485 100644 --- a/examples/js/controls/OrbitControls.js +++ b/examples/js/controls/OrbitControls.js @@ -11,7 +11,7 @@ // // Orbit - left mouse / touch: one-finger move // Zoom - middle mouse, or mousewheel / touch: two-finger spread or squish -// Pan - right mouse, or left mouse + ctrl/metaKey, or arrow keys / touch: two-finger move +// Pan - right mouse, or left mouse + ctrl/meta/shiftKey, or arrow keys / touch: two-finger move THREE.OrbitControls = function ( object, domElement ) { @@ -679,7 +679,7 @@ THREE.OrbitControls = function ( object, domElement ) { case scope.mouseButtons.LEFT: - if ( event.ctrlKey || event.metaKey ) { + if ( event.ctrlKey || event.metaKey || event.shiftKey ) { if ( scope.enablePan === false ) return; diff --git a/examples/js/geometries/hilbert2D.js b/examples/js/geometries/hilbert2D.js index c63501e2b0ce81..3a2bb4e645c80e 100644 --- a/examples/js/geometries/hilbert2D.js +++ b/examples/js/geometries/hilbert2D.js @@ -15,17 +15,18 @@ * @param v2 Corner index +X, +Z. * @param v3 Corner index +X, -Z. */ + function hilbert2D( center, size, iterations, v0, v1, v2, v3 ) { // Default Vars - var center = undefined !== center ? center : new THREE.Vector3( 0, 0, 0 ), - size = undefined !== size ? size : 10, + var center = center !== undefined ? center : new THREE.Vector3( 0, 0, 0 ), + size = size !== undefined ? size : 10, half = size / 2, - iterations = undefined !== iterations ? iterations : 1, - v0 = undefined !== v0 ? v0 : 0, - v1 = undefined !== v1 ? v1 : 1, - v2 = undefined !== v2 ? v2 : 2, - v3 = undefined !== v3 ? v3 : 3 + iterations = iterations !== undefined ? iterations : 1, + v0 = v0 !== undefined ? v0 : 0, + v1 = v1 !== undefined ? v1 : 1, + v2 = v2 !== undefined ? v2 : 2, + v3 = v3 !== undefined ? v3 : 3 ; var vec_s = [ diff --git a/examples/js/geometries/hilbert3D.js b/examples/js/geometries/hilbert3D.js index 23d6ca82ca4e06..cd286bc895eaf5 100644 --- a/examples/js/geometries/hilbert3D.js +++ b/examples/js/geometries/hilbert3D.js @@ -7,11 +7,6 @@ * @author Thomas Diewald * @link http://www.openprocessing.org/visuals/?visualID=15599 * - * Based on `examples/canvas_lines_colors.html`: - * @author OpenShift guest - * @link https://github.com/mrdoob/three.js/blob/8413a860aa95ed29c79cbb7f857c97d7880d260f/examples/canvas_lines_colors.html - * @see Line 149 - 186 - * * @param center Center of Hilbert curve. * @param size Total width of Hilbert curve. * @param iterations Number of subdivisions. @@ -24,21 +19,22 @@ * @param v6 Corner index +X, +Y, +Z. * @param v7 Corner index +X, +Y, -Z. */ + function hilbert3D( center, size, iterations, v0, v1, v2, v3, v4, v5, v6, v7 ) { // Default Vars - var center = undefined !== center ? center : new THREE.Vector3( 0, 0, 0 ), - size = undefined !== size ? size : 10, + var center = center !== undefined ? center : new THREE.Vector3( 0, 0, 0 ), + size = size !== undefined ? size : 10, half = size / 2, - iterations = undefined !== iterations ? iterations : 1, - v0 = undefined !== v0 ? v0 : 0, - v1 = undefined !== v1 ? v1 : 1, - v2 = undefined !== v2 ? v2 : 2, - v3 = undefined !== v3 ? v3 : 3, - v4 = undefined !== v4 ? v4 : 4, - v5 = undefined !== v5 ? v5 : 5, - v6 = undefined !== v6 ? v6 : 6, - v7 = undefined !== v7 ? v7 : 7 + iterations = iterations !== undefined ? iterations : 1, + v0 = v0 !== undefined ? v0 : 0, + v1 = v1 !== undefined ? v1 : 1, + v2 = v2 !== undefined ? v2 : 2, + v3 = v3 !== undefined ? v3 : 3, + v4 = v4 !== undefined ? v4 : 4, + v5 = v5 !== undefined ? v5 : 5, + v6 = v6 !== undefined ? v6 : 6, + v7 = v7 !== undefined ? v7 : 7 ; var vec_s = [ diff --git a/examples/js/interactive/SelectionBox.js b/examples/js/interactive/SelectionBox.js new file mode 100644 index 00000000000000..f5fcca100e20f4 --- /dev/null +++ b/examples/js/interactive/SelectionBox.js @@ -0,0 +1,116 @@ +/** + * @author HypnosNova / https://www.threejs.org.cn/gallery + * This is a class to check whether objects are in a selection area in 3D space + */ + +function SelectionBox ( camera, scene, deep ) { + + this.camera = camera; + this.scene = scene; + this.startPoint = new THREE.Vector3(); + this.endPoint = new THREE.Vector3(); + this.collection = []; + this.deep = deep || Number.MAX_VALUE; + +} + +SelectionBox.prototype.select = function ( startPoint, endPoint ) { + + this.startPoint = startPoint || this.startPoint; + this.endPoint = endPoint || this.endPoint; + this.collection = []; + + var boxSelectionFrustum = this.createFrustum( this.startPoint, this.endPoint ); + this.searchChildInFrustum( boxSelectionFrustum, this.scene ); + + return this.collection; + +} + +SelectionBox.prototype.createFrustum = function ( startPoint, endPoint ) { + + startPoint = startPoint || this.startPoint; + endPoint = endPoint || this.endPoint + + this.camera.updateProjectionMatrix(); + this.camera.updateMatrixWorld(); + this.camera.updateMatrix(); + + var tmpPoint = startPoint.clone(); + tmpPoint.x = Math.min( startPoint.x, endPoint.x ); + tmpPoint.y = Math.max( startPoint.y, endPoint.y ); + endPoint.x = Math.max( startPoint.x, endPoint.x ); + endPoint.y = Math.min( startPoint.y, endPoint.y ); + + var vecNear = this.camera.position.clone(); + var vecTopLeft = tmpPoint.clone(); + var vecTopRight = new THREE.Vector3( endPoint.x, tmpPoint.y, 0 ); + var vecDownRight = endPoint.clone(); + var vecDownLeft = new THREE.Vector3( tmpPoint.x, endPoint.y, 0 ); + vecTopLeft.unproject( this.camera ); + vecTopRight.unproject( this.camera ); + vecDownRight.unproject( this.camera ); + vecDownLeft.unproject( this.camera ); + + var vectemp1 = vecTopLeft.clone().sub( vecNear ); + var vectemp2 = vecTopRight.clone().sub( vecNear ); + var vectemp3 = vecDownRight.clone().sub( vecNear ); + vectemp1.normalize(); + vectemp2.normalize(); + vectemp3.normalize(); + + vectemp1.multiplyScalar( this.deep ); + vectemp2.multiplyScalar( this.deep ); + vectemp3.multiplyScalar( this.deep ); + vectemp1.add( vecNear ); + vectemp2.add( vecNear ); + vectemp3.add( vecNear ); + + var planeTop = new THREE.Plane(); + planeTop.setFromCoplanarPoints( vecNear, vecTopLeft, vecTopRight ); + var planeRight = new THREE.Plane(); + planeRight.setFromCoplanarPoints( vecNear, vecTopRight, vecDownRight ); + var planeDown = new THREE.Plane(); + planeDown.setFromCoplanarPoints( vecDownRight, vecDownLeft, vecNear ); + var planeLeft = new THREE.Plane(); + planeLeft.setFromCoplanarPoints( vecDownLeft, vecTopLeft, vecNear ); + var planeFront = new THREE.Plane(); + planeFront.setFromCoplanarPoints( vecTopRight, vecDownRight, vecDownLeft ); + var planeBack = new THREE.Plane(); + planeBack.setFromCoplanarPoints( vectemp3, vectemp2, vectemp1 ); + planeBack.normal = planeBack.normal.multiplyScalar( -1 ); + + return new THREE.Frustum( planeTop, planeRight, planeDown, planeLeft, planeFront, planeBack ); + +} + +SelectionBox.prototype.searchChildInFrustum = function ( frustum, object ) { + + if ( object instanceof THREE.Mesh ) { + + if ( object.material !== undefined ) { + + object.geometry.computeBoundingSphere(); + var center = object.geometry.boundingSphere.center.clone().applyMatrix4( object.matrixWorld ); + + if ( frustum.containsPoint( center ) ) { + + this.collection.push( object ); + + } + + } + + } + + if ( object.children.length > 0 ) { + + for ( var x = 0; x < object.children.length; x++ ) { + + this.searchChildInFrustum( frustum, object.children[x] ); + + } + + } + +} \ No newline at end of file diff --git a/examples/js/interactive/SelectionHelper.js b/examples/js/interactive/SelectionHelper.js new file mode 100644 index 00000000000000..d18c68fb1e6e72 --- /dev/null +++ b/examples/js/interactive/SelectionHelper.js @@ -0,0 +1,73 @@ +function SelectionHelper ( selectionBox, renderer, cssClassName ) { + + this.element = document.createElement( "div" ); + this.element.classList.add( cssClassName ); + this.element.style.pointerEvents = "none"; + + this.renderer = renderer; + + this.startPoint = { x: 0, y: 0 }; + this.pointTopLeft = { x: 0, y: 0 }; + this.pointBottomRight = { x: 0, y: 0 }; + + this.isDown = false; + + this.renderer.domElement.addEventListener( "mousedown", function ( event ) { + + this.isDown = true; + this.onSelectStart( event ); + + }.bind( this ), false ); + + this.renderer.domElement.addEventListener( "mousemove", function ( event ) { + + if ( this.isDown ) { + + this.onSelectMove( event ); + + } + + }.bind( this ), false ); + + this.renderer.domElement.addEventListener( "mouseup", function ( event ) { + + this.isDown = false; + this.onSelectOver( event ); + + }.bind( this ), false ); + +} + +SelectionHelper.prototype.onSelectStart = function ( event ) { + + this.renderer.domElement.parentElement.appendChild( this.element ); + + this.element.style.left = event.clientX + "px"; + this.element.style.top = event.clientY + "px"; + this.element.style.width = "0px"; + this.element.style.height = "0px"; + + this.startPoint.x = event.clientX; + this.startPoint.y = event.clientY; + +} + +SelectionHelper.prototype.onSelectMove = function ( event ) { + + this.pointBottomRight.x = Math.max( this.startPoint.x, event.clientX ); + this.pointBottomRight.y = Math.max( this.startPoint.y, event.clientY ); + this.pointTopLeft.x = Math.min( this.startPoint.x, event.clientX ); + this.pointTopLeft.y = Math.min( this.startPoint.y, event.clientY ); + + this.element.style.left = this.pointTopLeft.x + "px"; + this.element.style.top = this.pointTopLeft.y + "px"; + this.element.style.width = ( this.pointBottomRight.x - this.pointTopLeft.x ) + "px"; + this.element.style.height = ( this.pointBottomRight.y - this.pointTopLeft.y ) + "px"; + +} + +SelectionHelper.prototype.onSelectOver = function ( event ) { + + this.element.parentElement.removeChild( this.element ); + +} diff --git a/examples/js/loaders/EquirectangularToCubeGenerator.js b/examples/js/loaders/EquirectangularToCubeGenerator.js index bd7c4f2bef1f0a..751efa746bc075 100644 --- a/examples/js/loaders/EquirectangularToCubeGenerator.js +++ b/examples/js/loaders/EquirectangularToCubeGenerator.js @@ -90,9 +90,7 @@ THREE.EquirectangularToCubeGenerator.prototype = { \n\ void main() {\n\ vec2 uv = EquirectangularSampleUV(normalize(localPosition));\n\ - vec3 color = texture2D(equirectangularMap, uv).rgb;\n\ - \n\ - gl_FragColor = vec4( color, 1.0 );\n\ + gl_FragColor = texture2D(equirectangularMap, uv);\n\ }", blending: THREE.NoBlending diff --git a/examples/js/loaders/GLTFLoader.js b/examples/js/loaders/GLTFLoader.js index e6ee5c78d2ddf2..1517156e0c8ea9 100644 --- a/examples/js/loaders/GLTFLoader.js +++ b/examples/js/loaders/GLTFLoader.js @@ -58,8 +58,8 @@ THREE.GLTFLoader = ( function () { } - scope.manager.itemEnd( url ); scope.manager.itemError( url ); + scope.manager.itemEnd( url ); }; @@ -181,7 +181,7 @@ THREE.GLTFLoader = ( function () { break; case EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS: - extensions[ extensionName ] = new GLTFMaterialsPbrSpecularGlossinessExtension(); + extensions[ extensionName ] = new GLTFMaterialsPbrSpecularGlossinessExtension( json ); break; case EXTENSIONS.KHR_DRACO_MESH_COMPRESSION: @@ -189,7 +189,11 @@ THREE.GLTFLoader = ( function () { break; case EXTENSIONS.MSFT_TEXTURE_DDS: - extensions[ EXTENSIONS.MSFT_TEXTURE_DDS ] = new GLTFTextureDDSExtension(); + extensions[ EXTENSIONS.MSFT_TEXTURE_DDS ] = new GLTFTextureDDSExtension( json ); + break; + + case EXTENSIONS.KHR_TEXTURE_TRANSFORM: + extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ] = new GLTFTextureTransformExtension( json ); break; default: @@ -282,6 +286,7 @@ THREE.GLTFLoader = ( function () { KHR_LIGHTS_PUNCTUAL: 'KHR_lights_punctual', KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS: 'KHR_materials_pbrSpecularGlossiness', KHR_MATERIALS_UNLIT: 'KHR_materials_unlit', + KHR_TEXTURE_TRANSFORM: 'KHR_texture_transform', MSFT_TEXTURE_DDS: 'MSFT_texture_dds' }; @@ -409,7 +414,7 @@ THREE.GLTFLoader = ( function () { if ( metallicRoughness.baseColorTexture !== undefined ) { - pending.push( parser.assignTexture( materialParams, 'map', metallicRoughness.baseColorTexture.index ) ); + pending.push( parser.assignTexture( materialParams, 'map', metallicRoughness.baseColorTexture ) ); } @@ -563,6 +568,51 @@ THREE.GLTFLoader = ( function () { }; + /** + * Texture Transform Extension + * + * Specification: + */ + function GLTFTextureTransformExtension( json ) { + + this.name = EXTENSIONS.KHR_TEXTURE_TRANSFORM; + + } + + GLTFTextureTransformExtension.prototype.extendTexture = function ( texture, transform ) { + + texture = texture.clone(); + + if ( transform.offset !== undefined ) { + + texture.offset.fromArray( transform.offset ); + + } + + if ( transform.rotation !== undefined ) { + + texture.rotation = transform.rotation; + + } + + if ( transform.scale !== undefined ) { + + texture.repeat.fromArray( transform.scale ); + + } + + if ( transform.texCoord !== undefined ) { + + console.warn( 'THREE.GLTFLoader: Custom UV sets in "' + this.name + '" extension not yet supported.' ); + + } + + texture.needsUpdate = true; + + return texture; + + }; + /** * Specular-Glossiness Extension * @@ -692,7 +742,7 @@ THREE.GLTFLoader = ( function () { if ( pbrSpecularGlossiness.diffuseTexture !== undefined ) { - pending.push( parser.assignTexture( params, 'map', pbrSpecularGlossiness.diffuseTexture.index ) ); + pending.push( parser.assignTexture( params, 'map', pbrSpecularGlossiness.diffuseTexture ) ); } @@ -708,9 +758,9 @@ THREE.GLTFLoader = ( function () { if ( pbrSpecularGlossiness.specularGlossinessTexture !== undefined ) { - var specGlossIndex = pbrSpecularGlossiness.specularGlossinessTexture.index; - pending.push( parser.assignTexture( params, 'glossinessMap', specGlossIndex ) ); - pending.push( parser.assignTexture( params, 'specularMap', specGlossIndex ) ); + var specGlossMapDef = pbrSpecularGlossiness.specularGlossinessTexture; + pending.push( parser.assignTexture( params, 'glossinessMap', specGlossMapDef ) ); + pending.push( parser.assignTexture( params, 'specularMap', specGlossMapDef ) ); } @@ -2146,15 +2196,29 @@ THREE.GLTFLoader = ( function () { /** * Asynchronously assigns a texture to the given material parameters. * @param {Object} materialParams - * @param {string} textureName - * @param {number} textureIndex - * @return {Promise} + * @param {string} mapName + * @param {Object} mapDef + * @return {Promise} */ - GLTFParser.prototype.assignTexture = function ( materialParams, textureName, textureIndex ) { + GLTFParser.prototype.assignTexture = function ( materialParams, mapName, mapDef ) { + + var parser = this; + + return this.getDependency( 'texture', mapDef.index ).then( function ( texture ) { + + if ( parser.extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ] ) { + + var transform = mapDef.extensions !== undefined ? mapDef.extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ] : undefined; - return this.getDependency( 'texture', textureIndex ).then( function ( texture ) { + if ( transform ) { + + texture = parser.extensions[ EXTENSIONS.KHR_TEXTURE_TRANSFORM ].extendTexture( texture, transform ); + + } + + } - materialParams[ textureName ] = texture; + materialParams[ mapName ] = texture; } ); @@ -2213,7 +2277,7 @@ THREE.GLTFLoader = ( function () { if ( metallicRoughness.baseColorTexture !== undefined ) { - pending.push( parser.assignTexture( materialParams, 'map', metallicRoughness.baseColorTexture.index ) ); + pending.push( parser.assignTexture( materialParams, 'map', metallicRoughness.baseColorTexture ) ); } @@ -2222,9 +2286,8 @@ THREE.GLTFLoader = ( function () { if ( metallicRoughness.metallicRoughnessTexture !== undefined ) { - var textureIndex = metallicRoughness.metallicRoughnessTexture.index; - pending.push( parser.assignTexture( materialParams, 'metalnessMap', textureIndex ) ); - pending.push( parser.assignTexture( materialParams, 'roughnessMap', textureIndex ) ); + pending.push( parser.assignTexture( materialParams, 'metalnessMap', metallicRoughness.metallicRoughnessTexture ) ); + pending.push( parser.assignTexture( materialParams, 'roughnessMap', metallicRoughness.metallicRoughnessTexture ) ); } @@ -2256,7 +2319,7 @@ THREE.GLTFLoader = ( function () { if ( materialDef.normalTexture !== undefined && materialType !== THREE.MeshBasicMaterial ) { - pending.push( parser.assignTexture( materialParams, 'normalMap', materialDef.normalTexture.index ) ); + pending.push( parser.assignTexture( materialParams, 'normalMap', materialDef.normalTexture ) ); materialParams.normalScale = new THREE.Vector2( 1, 1 ); @@ -2270,7 +2333,7 @@ THREE.GLTFLoader = ( function () { if ( materialDef.occlusionTexture !== undefined && materialType !== THREE.MeshBasicMaterial ) { - pending.push( parser.assignTexture( materialParams, 'aoMap', materialDef.occlusionTexture.index ) ); + pending.push( parser.assignTexture( materialParams, 'aoMap', materialDef.occlusionTexture ) ); if ( materialDef.occlusionTexture.strength !== undefined ) { @@ -2288,7 +2351,7 @@ THREE.GLTFLoader = ( function () { if ( materialDef.emissiveTexture !== undefined && materialType !== THREE.MeshBasicMaterial ) { - pending.push( parser.assignTexture( materialParams, 'emissiveMap', materialDef.emissiveTexture.index ) ); + pending.push( parser.assignTexture( materialParams, 'emissiveMap', materialDef.emissiveTexture ) ); } diff --git a/examples/js/loaders/HDRCubeTextureLoader.js b/examples/js/loaders/HDRCubeTextureLoader.js index b59591f36f6848..044f710d0fde56 100644 --- a/examples/js/loaders/HDRCubeTextureLoader.js +++ b/examples/js/loaders/HDRCubeTextureLoader.js @@ -147,11 +147,11 @@ THREE.HDRCubeTextureLoader.prototype.load = function ( type, urls, onLoad, onPro } - if ( undefined !== texData.image ) { + if ( texData.image !== undefined ) { texture[ i ].images = texData.image; - } else if ( undefined !== texData.data ) { + } else if ( texData.data !== undefined ) { var dataTexture = new THREE.DataTexture( texData.data, texData.width, texData.height ); dataTexture.format = texture.format; diff --git a/examples/js/loaders/LoaderSupport.js b/examples/js/loaders/LoaderSupport.js index f93e02d1761b66..aed6f4c55d2977 100644 --- a/examples/js/loaders/LoaderSupport.js +++ b/examples/js/loaders/LoaderSupport.js @@ -5,11 +5,7 @@ 'use strict'; -if ( THREE.LoaderSupport === undefined ) { - - THREE.LoaderSupport = {}; - -} +if ( THREE.LoaderSupport === undefined ) { THREE.LoaderSupport = {} } /** * Validation functions. @@ -42,71 +38,65 @@ THREE.LoaderSupport.Validator = { * Callbacks utilized by loaders and builders. * @class */ -THREE.LoaderSupport.Callbacks = (function () { +THREE.LoaderSupport.Callbacks = function () { + this.onProgress = null; + this.onReportError = null; + this.onMeshAlter = null; + this.onLoad = null; + this.onLoadMaterials = null; +}; - var Validator = THREE.LoaderSupport.Validator; +THREE.LoaderSupport.Callbacks.prototype = { - function Callbacks() { - this.onProgress = null; - this.onReportError = null; - this.onMeshAlter = null; - this.onLoad = null; - this.onLoadMaterials = null; - } + constructor: THREE.LoaderSupport.Callbacks, /** * Register callback function that is invoked by internal function "announceProgress" to print feedback. - * @memberOf THREE.LoaderSupport.Callbacks * * @param {callback} callbackOnProgress Callback function for described functionality */ - Callbacks.prototype.setCallbackOnProgress = function ( callbackOnProgress ) { - this.onProgress = Validator.verifyInput( callbackOnProgress, this.onProgress ); - }; + setCallbackOnProgress: function ( callbackOnProgress ) { + this.onProgress = THREE.LoaderSupport.Validator.verifyInput( callbackOnProgress, this.onProgress ); + }, /** * Register callback function that is invoked when an error is reported. - * @memberOf THREE.LoaderSupport.Callbacks * * @param {callback} callbackOnReportError Callback function for described functionality */ - Callbacks.prototype.setCallbackOnReportError = function ( callbackOnReportError ) { - this.onReportError = Validator.verifyInput( callbackOnReportError, this.onReportError ); - }; + setCallbackOnReportError: function ( callbackOnReportError ) { + this.onReportError = THREE.LoaderSupport.Validator.verifyInput( callbackOnReportError, this.onReportError ); + }, /** * Register callback function that is called every time a mesh was loaded. * Use {@link THREE.LoaderSupport.LoadedMeshUserOverride} for alteration instructions (geometry, material or disregard mesh). - * @memberOf THREE.LoaderSupport.Callbacks * * @param {callback} callbackOnMeshAlter Callback function for described functionality */ - Callbacks.prototype.setCallbackOnMeshAlter = function ( callbackOnMeshAlter ) { - this.onMeshAlter = Validator.verifyInput( callbackOnMeshAlter, this.onMeshAlter ); - }; + setCallbackOnMeshAlter: function ( callbackOnMeshAlter ) { + this.onMeshAlter = THREE.LoaderSupport.Validator.verifyInput( callbackOnMeshAlter, this.onMeshAlter ); + }, /** * Register callback function that is called once loading of the complete OBJ file is completed. - * @memberOf THREE.LoaderSupport.Callbacks * * @param {callback} callbackOnLoad Callback function for described functionality */ - Callbacks.prototype.setCallbackOnLoad = function ( callbackOnLoad ) { - this.onLoad = Validator.verifyInput( callbackOnLoad, this.onLoad ); - }; + setCallbackOnLoad: function ( callbackOnLoad ) { + this.onLoad = THREE.LoaderSupport.Validator.verifyInput( callbackOnLoad, this.onLoad ); + }, /** * Register callback function that is called when materials have been loaded. - * @memberOf THREE.LoaderSupport.Callbacks * * @param {callback} callbackOnLoadMaterials Callback function for described functionality */ - Callbacks.prototype.setCallbackOnLoadMaterials = function ( callbackOnLoadMaterials ) { - this.onLoadMaterials = Validator.verifyInput( callbackOnLoadMaterials, this.onLoadMaterials ); - }; + setCallbackOnLoadMaterials: function ( callbackOnLoadMaterials ) { + this.onLoadMaterials = THREE.LoaderSupport.Validator.verifyInput( callbackOnLoadMaterials, this.onLoadMaterials ); + } - return Callbacks; -})(); +}; /** @@ -116,46 +106,45 @@ THREE.LoaderSupport.Callbacks = (function () { * @param {boolean} disregardMesh=false Tell implementation to completely disregard this mesh * @param {boolean} disregardMesh=false Tell implementation that mesh(es) have been altered or added */ -THREE.LoaderSupport.LoadedMeshUserOverride = (function () { +THREE.LoaderSupport.LoadedMeshUserOverride = function( disregardMesh, alteredMesh ) { + this.disregardMesh = disregardMesh === true; + this.alteredMesh = alteredMesh === true; + this.meshes = []; +}; - function LoadedMeshUserOverride( disregardMesh, alteredMesh ) { - this.disregardMesh = disregardMesh === true; - this.alteredMesh = alteredMesh === true; - this.meshes = []; - } +THREE.LoaderSupport.LoadedMeshUserOverride.prototype = { + + constructor: THREE.LoaderSupport.LoadedMeshUserOverride, /** * Add a mesh created within callback. * - * @memberOf THREE.OBJLoader2.LoadedMeshUserOverride - * * @param {THREE.Mesh} mesh */ - LoadedMeshUserOverride.prototype.addMesh = function ( mesh ) { + addMesh: function ( mesh ) { this.meshes.push( mesh ); this.alteredMesh = true; - }; + }, /** * Answers if mesh shall be disregarded completely. * * @returns {boolean} */ - LoadedMeshUserOverride.prototype.isDisregardMesh = function () { + isDisregardMesh: function () { return this.disregardMesh; - }; + }, /** * Answers if new mesh(es) were created. * * @returns {boolean} */ - LoadedMeshUserOverride.prototype.providesAlteredMeshes = function () { + providesAlteredMeshes: function () { return this.alteredMesh; - }; + } - return LoadedMeshUserOverride; -})(); +}; /** @@ -165,103 +154,102 @@ THREE.LoaderSupport.LoadedMeshUserOverride = (function () { * @param {string} url URL to the file * @param {string} extension The file extension (type) */ -THREE.LoaderSupport.ResourceDescriptor = (function () { - - var Validator = THREE.LoaderSupport.Validator; +THREE.LoaderSupport.ResourceDescriptor = function ( url, extension ) { + var urlParts = url.split( '/' ); - function ResourceDescriptor( url, extension ) { - var urlParts = url.split( '/' ); + this.path; + this.resourcePath; + this.name = url; + this.url = url; + if ( urlParts.length >= 2 ) { - if ( urlParts.length < 2 ) { + this.path = THREE.LoaderSupport.Validator.verifyInput( urlParts.slice( 0, urlParts.length - 1).join( '/' ) + '/', this.path ); + this.name = urlParts[ urlParts.length - 1 ]; + this.url = url; - this.path = null; - this.name = url; - this.url = url; - - } else { + } + this.name = THREE.LoaderSupport.Validator.verifyInput( this.name, 'Unnamed_Resource' ); + this.extension = THREE.LoaderSupport.Validator.verifyInput( extension, 'default' ); + this.extension = this.extension.trim(); + this.content = null; +}; - this.path = Validator.verifyInput( urlParts.slice( 0, urlParts.length - 1).join( '/' ) + '/', null ); - this.name = urlParts[ urlParts.length - 1 ]; - this.url = url; +THREE.LoaderSupport.ResourceDescriptor.prototype = { - } - this.name = Validator.verifyInput( this.name, 'Unnamed_Resource' ); - this.extension = Validator.verifyInput( extension, 'default' ); - this.extension = this.extension.trim(); - this.content = null; - } + constructor: THREE.LoaderSupport.ResourceDescriptor, /** * Set the content of this resource - * @memberOf THREE.LoaderSupport.ResourceDescriptor * * @param {Object} content The file content as arraybuffer or text */ - ResourceDescriptor.prototype.setContent = function ( content ) { - this.content = Validator.verifyInput( content, null ); - }; + setContent: function ( content ) { + this.content = THREE.LoaderSupport.Validator.verifyInput( content, null ); + }, - return ResourceDescriptor; -})(); + /** + * Allows to specify resourcePath for dependencies of specified resource. + * @param {string} resourcePath + */ + setResourcePath: function ( resourcePath ) { + this.resourcePath = THREE.LoaderSupport.Validator.verifyInput( resourcePath, this.resourcePath ); + } +}; /** * Configuration instructions to be used by run method. * @class */ -THREE.LoaderSupport.PrepData = (function () { +THREE.LoaderSupport.PrepData = function ( modelName ) { + this.logging = { + enabled: true, + debug: false + }; + this.modelName = THREE.LoaderSupport.Validator.verifyInput( modelName, '' ); + this.resources = []; + this.callbacks = new THREE.LoaderSupport.Callbacks(); +}; - var Validator = THREE.LoaderSupport.Validator; +THREE.LoaderSupport.PrepData.prototype = { - function PrepData( modelName ) { - this.logging = { - enabled: true, - debug: false - }; - this.modelName = Validator.verifyInput( modelName, '' ); - this.resources = []; - this.callbacks = new THREE.LoaderSupport.Callbacks(); - } + constructor: THREE.LoaderSupport.PrepData, /** * Enable or disable logging in general (except warn and error), plus enable or disable debug logging. - * @memberOf THREE.LoaderSupport.PrepData * * @param {boolean} enabled True or false. * @param {boolean} debug True or false. */ - PrepData.prototype.setLogging = function ( enabled, debug ) { + setLogging: function ( enabled, debug ) { this.logging.enabled = enabled === true; this.logging.debug = debug === true; - }; + }, /** * Returns all callbacks as {@link THREE.LoaderSupport.Callbacks} - * @memberOf THREE.LoaderSupport.PrepData * * @returns {THREE.LoaderSupport.Callbacks} */ - PrepData.prototype.getCallbacks = function () { + getCallbacks: function () { return this.callbacks; - }; + }, /** * Add a resource description. - * @memberOf THREE.LoaderSupport.PrepData * * @param {THREE.LoaderSupport.ResourceDescriptor} Adds a {@link THREE.LoaderSupport.ResourceDescriptor} */ - PrepData.prototype.addResource = function ( resource ) { + addResource: function ( resource ) { this.resources.push( resource ); - }; + }, /** * Clones this object and returns it afterwards. Callbacks and resources are not cloned deep (references!). - * @memberOf THREE.LoaderSupport.PrepData * * @returns {@link THREE.LoaderSupport.PrepData} */ - PrepData.prototype.clone = function () { + clone: function () { var clone = new THREE.LoaderSupport.PrepData( this.modelName ); clone.logging.enabled = this.logging.enabled; clone.logging.debug = this.logging.debug; @@ -280,18 +268,16 @@ THREE.LoaderSupport.PrepData = (function () { } return clone; - }; - + }, /** * Identify files or content of interest from an Array of {@link THREE.LoaderSupport.ResourceDescriptor}. - * @memberOf THREE.LoaderSupport.PrepData * * @param {THREE.LoaderSupport.ResourceDescriptor[]} resources Array of {@link THREE.LoaderSupport.ResourceDescriptor} * @param Object fileDesc Object describing which resources are of interest (ext, type (string or UInt8Array) and ignore (boolean)) * @returns {{}} Object with each "ext" and the corresponding {@link THREE.LoaderSupport.ResourceDescriptor} */ - PrepData.prototype.checkResourceDescriptorFiles = function ( resources, fileDesc ) { + checkResourceDescriptorFiles: function ( resources, fileDesc ) { var resource, triple, i, found; var result = {}; @@ -299,8 +285,8 @@ THREE.LoaderSupport.PrepData = (function () { resource = resources[ index ]; found = false; - if ( ! Validator.isValid( resource.name ) ) continue; - if ( Validator.isValid( resource.content ) ) { + if ( ! THREE.LoaderSupport.Validator.isValid( resource.name ) ) continue; + if ( THREE.LoaderSupport.Validator.isValid( resource.content ) ) { for ( i = 0; i < fileDesc.length && !found; i++ ) { @@ -352,51 +338,48 @@ THREE.LoaderSupport.PrepData = (function () { } return result; - }; - - return PrepData; -})(); + } +}; /** * Builds one or many THREE.Mesh from one raw set of Arraybuffers, materialGroup descriptions and further parameters. * Supports vertex, vertexColor, normal, uv and index buffers. * @class */ -THREE.LoaderSupport.MeshBuilder = (function () { +THREE.LoaderSupport.MeshBuilder = function() { + console.info( 'Using THREE.LoaderSupport.MeshBuilder version: ' + THREE.LoaderSupport.MeshBuilder.LOADER_MESH_BUILDER_VERSION ); + this.validator = THREE.LoaderSupport.Validator; - var LOADER_MESH_BUILDER_VERSION = '1.2.2'; + this.logging = { + enabled: true, + debug: false + }; - var Validator = THREE.LoaderSupport.Validator; + this.callbacks = new THREE.LoaderSupport.Callbacks(); + this.materials = []; +}; +THREE.LoaderSupport.MeshBuilder.LOADER_MESH_BUILDER_VERSION = '1.3.0'; - function MeshBuilder() { - console.info( 'Using THREE.LoaderSupport.MeshBuilder version: ' + LOADER_MESH_BUILDER_VERSION ); - this.logging = { - enabled: true, - debug: false - }; +THREE.LoaderSupport.MeshBuilder.prototype = { - this.callbacks = new THREE.LoaderSupport.Callbacks(); - this.materials = []; - } + constructor: THREE.LoaderSupport.MeshBuilder, /** * Enable or disable logging in general (except warn and error), plus enable or disable debug logging. - * @memberOf THREE.LoaderSupport.MeshBuilder * * @param {boolean} enabled True or false. * @param {boolean} debug True or false. */ - MeshBuilder.prototype.setLogging = function ( enabled, debug ) { + setLogging: function ( enabled, debug ) { this.logging.enabled = enabled === true; this.logging.debug = debug === true; - }; + }, /** * Initializes the MeshBuilder (currently only default material initialisation). - * @memberOf THREE.LoaderSupport.MeshBuilder * */ - MeshBuilder.prototype.init = function () { + init: function () { var defaultMaterial = new THREE.MeshStandardMaterial( { color: 0xDCF1FF } ); defaultMaterial.name = 'defaultMaterial'; @@ -426,42 +409,40 @@ THREE.LoaderSupport.MeshBuilder = (function () { } } ); - }; + }, /** * Set materials loaded by any supplier of an Array of {@link THREE.Material}. - * @memberOf THREE.LoaderSupport.MeshBuilder * * @param {THREE.Material[]} materials Array of {@link THREE.Material} */ - MeshBuilder.prototype.setMaterials = function ( materials ) { + setMaterials: function ( materials ) { var payload = { cmd: 'materialData', materials: { materialCloneInstructions: null, serializedMaterials: null, - runtimeMaterials: Validator.isValid( this.callbacks.onLoadMaterials ) ? this.callbacks.onLoadMaterials( materials ) : materials + runtimeMaterials: this.validator.isValid( this.callbacks.onLoadMaterials ) ? this.callbacks.onLoadMaterials( materials ) : materials } }; this.updateMaterials( payload ); - }; + }, - MeshBuilder.prototype._setCallbacks = function ( callbacks ) { - if ( Validator.isValid( callbacks.onProgress ) ) this.callbacks.setCallbackOnProgress( callbacks.onProgress ); - if ( Validator.isValid( callbacks.onReportError ) ) this.callbacks.setCallbackOnReportError( callbacks.onReportError ); - if ( Validator.isValid( callbacks.onMeshAlter ) ) this.callbacks.setCallbackOnMeshAlter( callbacks.onMeshAlter ); - if ( Validator.isValid( callbacks.onLoad ) ) this.callbacks.setCallbackOnLoad( callbacks.onLoad ); - if ( Validator.isValid( callbacks.onLoadMaterials ) ) this.callbacks.setCallbackOnLoadMaterials( callbacks.onLoadMaterials ); - }; + _setCallbacks: function ( callbacks ) { + if ( this.validator.isValid( callbacks.onProgress ) ) this.callbacks.setCallbackOnProgress( callbacks.onProgress ); + if ( this.validator.isValid( callbacks.onReportError ) ) this.callbacks.setCallbackOnReportError( callbacks.onReportError ); + if ( this.validator.isValid( callbacks.onMeshAlter ) ) this.callbacks.setCallbackOnMeshAlter( callbacks.onMeshAlter ); + if ( this.validator.isValid( callbacks.onLoad ) ) this.callbacks.setCallbackOnLoad( callbacks.onLoad ); + if ( this.validator.isValid( callbacks.onLoadMaterials ) ) this.callbacks.setCallbackOnLoadMaterials( callbacks.onLoadMaterials ); + }, /** * Delegates processing of the payload (mesh building or material update) to the corresponding functions (BW-compatibility). - * @memberOf THREE.LoaderSupport.MeshBuilder * * @param {Object} payload Raw Mesh or Material descriptions. * @returns {THREE.Mesh[]} mesh Array of {@link THREE.Mesh} or null in case of material update */ - MeshBuilder.prototype.processPayload = function ( payload ) { + processPayload: function ( payload ) { if ( payload.cmd === 'meshData' ) { return this.buildMeshes( payload ); @@ -472,32 +453,31 @@ THREE.LoaderSupport.MeshBuilder = (function () { return null; } - }; + }, /** * Builds one or multiple meshes from the data described in the payload (buffers, params, material info). - * @memberOf THREE.LoaderSupport.MeshBuilder * * @param {Object} meshPayload Raw mesh description (buffers, params, materials) used to build one to many meshes. * @returns {THREE.Mesh[]} mesh Array of {@link THREE.Mesh} */ - MeshBuilder.prototype.buildMeshes = function ( meshPayload ) { + buildMeshes: function ( meshPayload ) { var meshName = meshPayload.params.meshName; var bufferGeometry = new THREE.BufferGeometry(); bufferGeometry.addAttribute( 'position', new THREE.BufferAttribute( new Float32Array( meshPayload.buffers.vertices ), 3 ) ); - if ( Validator.isValid( meshPayload.buffers.indices ) ) { + if ( this.validator.isValid( meshPayload.buffers.indices ) ) { bufferGeometry.setIndex( new THREE.BufferAttribute( new Uint32Array( meshPayload.buffers.indices ), 1 )); } - var haveVertexColors = Validator.isValid( meshPayload.buffers.colors ); + var haveVertexColors = this.validator.isValid( meshPayload.buffers.colors ); if ( haveVertexColors ) { bufferGeometry.addAttribute( 'color', new THREE.BufferAttribute( new Float32Array( meshPayload.buffers.colors ), 3 ) ); } - if ( Validator.isValid( meshPayload.buffers.normals ) ) { + if ( this.validator.isValid( meshPayload.buffers.normals ) ) { bufferGeometry.addAttribute( 'normal', new THREE.BufferAttribute( new Float32Array( meshPayload.buffers.normals ), 3 ) ); @@ -506,7 +486,7 @@ THREE.LoaderSupport.MeshBuilder = (function () { bufferGeometry.computeVertexNormals(); } - if ( Validator.isValid( meshPayload.buffers.uvs ) ) { + if ( this.validator.isValid( meshPayload.buffers.uvs ) ) { bufferGeometry.addAttribute( 'uv', new THREE.BufferAttribute( new Float32Array( meshPayload.buffers.uvs ), 2 ) ); @@ -542,8 +522,8 @@ THREE.LoaderSupport.MeshBuilder = (function () { var callbackOnMeshAlter = this.callbacks.onMeshAlter; var callbackOnMeshAlterResult; var useOrgMesh = true; - var geometryType = Validator.verifyInput( meshPayload.geometryType, 0 ); - if ( Validator.isValid( callbackOnMeshAlter ) ) { + var geometryType = this.validator.verifyInput( meshPayload.geometryType, 0 ); + if ( this.validator.isValid( callbackOnMeshAlter ) ) { callbackOnMeshAlterResult = callbackOnMeshAlter( { @@ -555,7 +535,7 @@ THREE.LoaderSupport.MeshBuilder = (function () { } } ); - if ( Validator.isValid( callbackOnMeshAlterResult ) ) { + if ( this.validator.isValid( callbackOnMeshAlterResult ) ) { if ( callbackOnMeshAlterResult.isDisregardMesh() ) { @@ -597,7 +577,7 @@ THREE.LoaderSupport.MeshBuilder = (function () { } var progressMessage; - if ( Validator.isValid( meshes ) && meshes.length > 0 ) { + if ( this.validator.isValid( meshes ) && meshes.length > 0 ) { var meshNames = []; for ( var i in meshes ) { @@ -616,7 +596,7 @@ THREE.LoaderSupport.MeshBuilder = (function () { } var callbackOnProgress = this.callbacks.onProgress; - if ( Validator.isValid( callbackOnProgress ) ) { + if ( this.validator.isValid( callbackOnProgress ) ) { var event = new CustomEvent( 'MeshBuilderEvent', { detail: { @@ -631,23 +611,22 @@ THREE.LoaderSupport.MeshBuilder = (function () { } return meshes; - }; + }, /** * Updates the materials with contained material objects (sync) or from alteration instructions (async). - * @memberOf THREE.LoaderSupport.MeshBuilder * * @param {Object} materialPayload Material update instructions */ - MeshBuilder.prototype.updateMaterials = function ( materialPayload ) { + updateMaterials: function ( materialPayload ) { var material, materialName; var materialCloneInstructions = materialPayload.materials.materialCloneInstructions; - if ( Validator.isValid( materialCloneInstructions ) ) { + if ( this.validator.isValid( materialCloneInstructions ) ) { var materialNameOrg = materialCloneInstructions.materialNameOrg; var materialOrg = this.materials[ materialNameOrg ]; - if ( Validator.isValid( materialNameOrg ) ) { + if ( this.validator.isValid( materialNameOrg ) ) { material = materialOrg.clone(); @@ -670,14 +649,14 @@ THREE.LoaderSupport.MeshBuilder = (function () { } var materials = materialPayload.materials.serializedMaterials; - if ( Validator.isValid( materials ) && Object.keys( materials ).length > 0 ) { + if ( this.validator.isValid( materials ) && Object.keys( materials ).length > 0 ) { var loader = new THREE.MaterialLoader(); var materialJson; for ( materialName in materials ) { materialJson = materials[ materialName ]; - if ( Validator.isValid( materialJson ) ) { + if ( this.validator.isValid( materialJson ) ) { material = loader.parse( materialJson ); if ( this.logging.enabled ) console.info( 'De-serialized material with name "' + materialName + '" will be added.' ); @@ -689,7 +668,7 @@ THREE.LoaderSupport.MeshBuilder = (function () { } materials = materialPayload.materials.runtimeMaterials; - if ( Validator.isValid( materials ) && Object.keys( materials ).length > 0 ) { + if ( this.validator.isValid( materials ) && Object.keys( materials ).length > 0 ) { for ( materialName in materials ) { @@ -700,14 +679,14 @@ THREE.LoaderSupport.MeshBuilder = (function () { } } - }; + }, /** * Returns the mapping object of material name and corresponding jsonified material. * * @returns {Object} Map of Materials in JSON representation */ - MeshBuilder.prototype.getMaterialsJSON = function () { + getMaterialsJSON: function () { var materialsJSON = {}; var material; for ( var materialName in this.materials ) { @@ -717,328 +696,64 @@ THREE.LoaderSupport.MeshBuilder = (function () { } return materialsJSON; - }; + }, /** * Returns the mapping object of material name and corresponding material. * * @returns {Object} Map of {@link THREE.Material} */ - MeshBuilder.prototype.getMaterials = function () { + getMaterials: function () { return this.materials; - }; - - return MeshBuilder; -})(); - -/** - * Default implementation of the WorkerRunner responsible for creation and configuration of the parser within the worker. - * - * @class - */ -THREE.LoaderSupport.WorkerRunnerRefImpl = (function () { - - function WorkerRunnerRefImpl() { - var scope = this; - var scopedRunner = function( event ) { - scope.processMessage( event.data ); - }; - self.addEventListener( 'message', scopedRunner, false ); } - /** - * Applies values from parameter object via set functions or via direct assignment. - * @memberOf THREE.LoaderSupport.WorkerRunnerRefImpl - * - * @param {Object} parser The parser instance - * @param {Object} params The parameter object - */ - WorkerRunnerRefImpl.prototype.applyProperties = function ( parser, params ) { - var property, funcName, values; - for ( property in params ) { - funcName = 'set' + property.substring( 0, 1 ).toLocaleUpperCase() + property.substring( 1 ); - values = params[ property ]; - - if ( typeof parser[ funcName ] === 'function' ) { - - parser[ funcName ]( values ); - - } else if ( parser.hasOwnProperty( property ) ) { - - parser[ property ] = values; - - } - } - }; - - /** - * Configures the Parser implementation according the supplied configuration object. - * @memberOf THREE.LoaderSupport.WorkerRunnerRefImpl - * - * @param {Object} payload Raw mesh description (buffers, params, materials) used to build one to many meshes. - */ - WorkerRunnerRefImpl.prototype.processMessage = function ( payload ) { - if ( payload.cmd === 'run' ) { - - var callbacks = { - callbackMeshBuilder: function ( payload ) { - self.postMessage( payload ); - }, - callbackProgress: function ( text ) { - if ( payload.logging.enabled && payload.logging.debug ) console.debug( 'WorkerRunner: progress: ' + text ); - } - }; - - // Parser is expected to be named as such - var parser = new Parser(); - if ( typeof parser[ 'setLogging' ] === 'function' ) parser.setLogging( payload.logging.enabled, payload.logging.debug ); - this.applyProperties( parser, payload.params ); - this.applyProperties( parser, payload.materials ); - this.applyProperties( parser, callbacks ); - parser.workerScope = self; - parser.parse( payload.data.input, payload.data.options ); - - if ( payload.logging.enabled ) console.log( 'WorkerRunner: Run complete!' ); - - callbacks.callbackMeshBuilder( { - cmd: 'complete', - msg: 'WorkerRunner completed run.' - } ); - - } else { - - console.error( 'WorkerRunner: Received unknown command: ' + payload.cmd ); - - } - }; - - return WorkerRunnerRefImpl; -})(); +}; /** * This class provides means to transform existing parser code into a web worker. It defines a simple communication protocol * which allows to configure the worker and receive raw mesh data during execution. * @class */ -THREE.LoaderSupport.WorkerSupport = (function () { - - var WORKER_SUPPORT_VERSION = '2.2.1'; - - var Validator = THREE.LoaderSupport.Validator; - - var LoaderWorker = (function () { - - function LoaderWorker() { - this._reset(); - } - - LoaderWorker.prototype._reset = function () { - this.logging = { - enabled: true, - debug: false - }; - this.worker = null; - this.runnerImplName = null; - this.callbacks = { - meshBuilder: null, - onLoad: null - }; - this.terminateRequested = false; - this.queuedMessage = null; - this.started = false; - this.forceCopy = false; - }; - - LoaderWorker.prototype.setLogging = function ( enabled, debug ) { - this.logging.enabled = enabled === true; - this.logging.debug = debug === true; - }; - - LoaderWorker.prototype.setForceCopy = function ( forceCopy ) { - this.forceCopy = forceCopy === true; - }; - - LoaderWorker.prototype.initWorker = function ( code, runnerImplName ) { - this.runnerImplName = runnerImplName; - var blob = new Blob( [ code ], { type: 'application/javascript' } ); - this.worker = new Worker( window.URL.createObjectURL( blob ) ); - this.worker.onmessage = this._receiveWorkerMessage; - - // set referemce to this, then processing in worker scope within "_receiveWorkerMessage" can access members - this.worker.runtimeRef = this; - - // process stored queuedMessage - this._postMessage(); - }; - - /** - * Executed in worker scope - */ - LoaderWorker.prototype._receiveWorkerMessage = function ( e ) { - var payload = e.data; - switch ( payload.cmd ) { - case 'meshData': - case 'materialData': - case 'imageData': - this.runtimeRef.callbacks.meshBuilder( payload ); - break; - - case 'complete': - this.runtimeRef.queuedMessage = null; - this.started = false; - this.runtimeRef.callbacks.onLoad( payload.msg ); - - if ( this.runtimeRef.terminateRequested ) { - - if ( this.runtimeRef.logging.enabled ) console.info( 'WorkerSupport [' + this.runtimeRef.runnerImplName + ']: Run is complete. Terminating application on request!' ); - this.runtimeRef._terminate(); - - } - break; - - case 'error': - console.error( 'WorkerSupport [' + this.runtimeRef.runnerImplName + ']: Reported error: ' + payload.msg ); - this.runtimeRef.queuedMessage = null; - this.started = false; - this.runtimeRef.callbacks.onLoad( payload.msg ); - - if ( this.runtimeRef.terminateRequested ) { - - if ( this.runtimeRef.logging.enabled ) console.info( 'WorkerSupport [' + this.runtimeRef.runnerImplName + ']: Run reported error. Terminating application on request!' ); - this.runtimeRef._terminate(); - - } - break; - - default: - console.error( 'WorkerSupport [' + this.runtimeRef.runnerImplName + ']: Received unknown command: ' + payload.cmd ); - break; - - } - }; - - LoaderWorker.prototype.setCallbacks = function ( meshBuilder, onLoad ) { - this.callbacks.meshBuilder = Validator.verifyInput( meshBuilder, this.callbacks.meshBuilder ); - this.callbacks.onLoad = Validator.verifyInput( onLoad, this.callbacks.onLoad ); - }; - - LoaderWorker.prototype.run = function( payload ) { - if ( Validator.isValid( this.queuedMessage ) ) { - - console.warn( 'Already processing message. Rejecting new run instruction' ); - return; - - } else { - - this.queuedMessage = payload; - this.started = true; - - } - if ( ! Validator.isValid( this.callbacks.meshBuilder ) ) throw 'Unable to run as no "MeshBuilder" callback is set.'; - if ( ! Validator.isValid( this.callbacks.onLoad ) ) throw 'Unable to run as no "onLoad" callback is set.'; - if ( payload.cmd !== 'run' ) payload.cmd = 'run'; - if ( Validator.isValid( payload.logging ) ) { - - payload.logging.enabled = payload.logging.enabled === true; - payload.logging.debug = payload.logging.debug === true; - - } else { - - payload.logging = { - enabled: true, - debug: false - }; - - } - this._postMessage(); - }; - - LoaderWorker.prototype._postMessage = function () { - if ( Validator.isValid( this.queuedMessage ) && Validator.isValid( this.worker ) ) { - - if ( this.queuedMessage.data.input instanceof ArrayBuffer ) { - - var content; - if ( this.forceCopy ) { - - content = this.queuedMessage.data.input.slice( 0 ); - - } else { - - content = this.queuedMessage.data.input; - - } - this.worker.postMessage( this.queuedMessage, [ content ] ); - - } else { - - this.worker.postMessage( this.queuedMessage ); - - } - - } - }; - - LoaderWorker.prototype.setTerminateRequested = function ( terminateRequested ) { - this.terminateRequested = terminateRequested === true; - if ( this.terminateRequested && Validator.isValid( this.worker ) && ! Validator.isValid( this.queuedMessage ) && this.started ) { - - if ( this.logging.enabled ) console.info( 'Worker is terminated immediately as it is not running!' ); - this._terminate(); - - } - }; - - LoaderWorker.prototype._terminate = function () { - this.worker.terminate(); - this._reset(); - }; - - return LoaderWorker; +THREE.LoaderSupport.WorkerSupport = function () { + console.info( 'Using THREE.LoaderSupport.WorkerSupport version: ' + THREE.LoaderSupport.WorkerSupport.WORKER_SUPPORT_VERSION ); + this.logging = { + enabled: true, + debug: false + }; - })(); + //Choose implementation of worker based on environment + this.loaderWorker = typeof window !== "undefined" ? new THREE.LoaderSupport.WorkerSupport.LoaderWorker() : new THREE.LoaderSupport.WorkerSupport.NodeLoaderWorker(); +}; - function WorkerSupport() { - console.info( 'Using THREE.LoaderSupport.WorkerSupport version: ' + WORKER_SUPPORT_VERSION ); - this.logging = { - enabled: true, - debug: false - }; +THREE.LoaderSupport.WorkerSupport.WORKER_SUPPORT_VERSION = '2.3.0'; - // check worker support first - if ( window.Worker === undefined ) throw "This browser does not support web workers!"; - if ( window.Blob === undefined ) throw "This browser does not support Blob!"; - if ( typeof window.URL.createObjectURL !== 'function' ) throw "This browser does not support Object creation from URL!"; +THREE.LoaderSupport.WorkerSupport.prototype = { - this.loaderWorker = new LoaderWorker(); - } + constructor: THREE.LoaderSupport.WorkerSupport, /** * Enable or disable logging in general (except warn and error), plus enable or disable debug logging. - * @memberOf THREE.LoaderSupport.WorkerSupport * * @param {boolean} enabled True or false. * @param {boolean} debug True or false. */ - WorkerSupport.prototype.setLogging = function ( enabled, debug ) { + setLogging: function ( enabled, debug ) { this.logging.enabled = enabled === true; this.logging.debug = debug === true; this.loaderWorker.setLogging( this.logging.enabled, this.logging.debug ); - }; + }, /** * Forces all ArrayBuffers to be transferred to worker to be copied. - * @memberOf THREE.LoaderSupport.WorkerSupport * * @param {boolean} forceWorkerDataCopy True or false. */ - WorkerSupport.prototype.setForceWorkerDataCopy = function ( forceWorkerDataCopy ) { + setForceWorkerDataCopy: function ( forceWorkerDataCopy ) { this.loaderWorker.setForceCopy( forceWorkerDataCopy ); - }; + }, /** * Validate the status of worker code and the derived worker. - * @memberOf THREE.LoaderSupport.WorkerSupport * * @param {Function} functionCodeBuilder Function that is invoked with funcBuildObject and funcBuildSingleton that allows stringification of objects and singletons. * @param {String} parserName Name of the Parser object @@ -1046,8 +761,8 @@ THREE.LoaderSupport.WorkerSupport = (function () { * @param {String} libPath Base path used for loading libraries * @param {THREE.LoaderSupport.WorkerRunnerRefImpl} runnerImpl The default worker parser wrapper implementation (communication and execution). An extended class could be passed here. */ - WorkerSupport.prototype.validate = function ( functionCodeBuilder, parserName, libLocations, libPath, runnerImpl ) { - if ( Validator.isValid( this.loaderWorker.worker ) ) return; + validate: function ( functionCodeBuilder, parserName, libLocations, libPath, runnerImpl ) { + if ( THREE.LoaderSupport.Validator.isValid( this.loaderWorker.worker ) ) return; if ( this.logging.enabled ) { @@ -1055,30 +770,36 @@ THREE.LoaderSupport.WorkerSupport = (function () { console.time( 'buildWebWorkerCode' ); } - if ( Validator.isValid( runnerImpl ) ) { + if ( THREE.LoaderSupport.Validator.isValid( runnerImpl ) ) { - if ( this.logging.enabled ) console.info( 'WorkerSupport: Using "' + runnerImpl.name + '" as Runner class for worker.' ); + if ( this.logging.enabled ) console.info( 'WorkerSupport: Using "' + runnerImpl.runnerName + '" as Runner class for worker.' ); - } else { + // Browser implementation + } else if ( typeof window !== "undefined" ) { runnerImpl = THREE.LoaderSupport.WorkerRunnerRefImpl; if ( this.logging.enabled ) console.info( 'WorkerSupport: Using DEFAULT "THREE.LoaderSupport.WorkerRunnerRefImpl" as Runner class for worker.' ); - } + // NodeJS implementation + } else { - var userWorkerCode = functionCodeBuilder( buildObject, buildSingleton ); + runnerImpl = THREE.LoaderSupport.NodeWorkerRunnerRefImpl; + if ( this.logging.enabled ) console.info( 'WorkerSupport: Using DEFAULT "THREE.LoaderSupport.NodeWorkerRunnerRefImpl" as Runner class for worker.' ); + + } + var userWorkerCode = functionCodeBuilder( THREE.LoaderSupport.WorkerSupport.CodeSerializer ); userWorkerCode += 'var Parser = '+ parserName + ';\n\n'; - userWorkerCode += buildSingleton( runnerImpl.name, runnerImpl ); - userWorkerCode += 'new ' + runnerImpl.name + '();\n\n'; + userWorkerCode += THREE.LoaderSupport.WorkerSupport.CodeSerializer.serializeClass( runnerImpl.runnerName, runnerImpl ); + userWorkerCode += 'new ' + runnerImpl.runnerName + '();\n\n'; var scope = this; - if ( Validator.isValid( libLocations ) && libLocations.length > 0 ) { + if ( THREE.LoaderSupport.Validator.isValid( libLocations ) && libLocations.length > 0 ) { var libsContent = ''; var loadAllLibraries = function ( path, locations ) { if ( locations.length === 0 ) { - scope.loaderWorker.initWorker( libsContent + userWorkerCode, runnerImpl.name ); + scope.loaderWorker.initWorker( libsContent + userWorkerCode, runnerImpl.runnerName ); if ( scope.logging.enabled ) console.timeEnd( 'buildWebWorkerCode' ); } else { @@ -1100,45 +821,246 @@ THREE.LoaderSupport.WorkerSupport = (function () { } else { - this.loaderWorker.initWorker( userWorkerCode, runnerImpl.name ); + this.loaderWorker.initWorker( userWorkerCode, runnerImpl.runnerName ); if ( this.logging.enabled ) console.timeEnd( 'buildWebWorkerCode' ); } - }; + }, /** * Specify functions that should be build when new raw mesh data becomes available and when the parser is finished. - * @memberOf THREE.LoaderSupport.WorkerSupport * * @param {Function} meshBuilder The mesh builder function. Default is {@link THREE.LoaderSupport.MeshBuilder}. * @param {Function} onLoad The function that is called when parsing is complete. */ - WorkerSupport.prototype.setCallbacks = function ( meshBuilder, onLoad ) { + setCallbacks: function ( meshBuilder, onLoad ) { this.loaderWorker.setCallbacks( meshBuilder, onLoad ); - }; + }, /** * Runs the parser with the provided configuration. - * @memberOf THREE.LoaderSupport.WorkerSupport * * @param {Object} payload Raw mesh description (buffers, params, materials) used to build one to many meshes. */ - WorkerSupport.prototype.run = function ( payload ) { + run: function ( payload ) { this.loaderWorker.run( payload ); - }; + }, /** * Request termination of worker once parser is finished. - * @memberOf THREE.LoaderSupport.WorkerSupport * * @param {boolean} terminateRequested True or false. */ - WorkerSupport.prototype.setTerminateRequested = function ( terminateRequested ) { + setTerminateRequested: function ( terminateRequested ) { this.loaderWorker.setTerminateRequested( terminateRequested ); - }; + } - var buildObject = function ( fullName, object ) { - var objectString = fullName + ' = {\n'; +}; + + +THREE.LoaderSupport.WorkerSupport.LoaderWorker = function () { + this._reset(); +}; + +THREE.LoaderSupport.WorkerSupport.LoaderWorker.prototype = { + + constructor: THREE.LoaderSupport.WorkerSupport.LoaderWorker, + + _reset: function () { + this.logging = { + enabled: true, + debug: false + }; + this.worker = null; + this.runnerImplName = null; + this.callbacks = { + meshBuilder: null, + onLoad: null + }; + this.terminateRequested = false; + this.queuedMessage = null; + this.started = false; + this.forceCopy = false; + }, + + /** + * Check support for Workers and other necessary features returning + * reason if the environment is unsupported + * + * @returns {string|undefined} Returns undefined if supported, or + * string with error if not supported + */ + checkSupport: function() { + if ( window.Worker === undefined ) return "This browser does not support web workers!"; + if ( window.Blob === undefined ) return "This browser does not support Blob!"; + if ( typeof window.URL.createObjectURL !== 'function' ) return "This browser does not support Object creation from URL!"; + }, + + setLogging: function ( enabled, debug ) { + this.logging.enabled = enabled === true; + this.logging.debug = debug === true; + }, + + setForceCopy: function ( forceCopy ) { + this.forceCopy = forceCopy === true; + }, + + initWorker: function ( code, runnerImplName ) { + var supportError = this.checkSupport(); + if ( supportError ) { + + throw supportError; + + } + this.runnerImplName = runnerImplName; + + var blob = new Blob( [ code ], { type: 'application/javascript' } ); + this.worker = new Worker( window.URL.createObjectURL( blob ) ); + + this.worker.onmessage = this._receiveWorkerMessage; + + // set referemce to this, then processing in worker scope within "_receiveWorkerMessage" can access members + this.worker.runtimeRef = this; + + // process stored queuedMessage + this._postMessage(); + }, + + /** + * Executed in worker scope + */ + _receiveWorkerMessage: function ( e ) { + var payload = e.data; + switch ( payload.cmd ) { + case 'meshData': + case 'materialData': + case 'imageData': + this.runtimeRef.callbacks.meshBuilder( payload ); + break; + + case 'complete': + this.runtimeRef.queuedMessage = null; + this.started = false; + this.runtimeRef.callbacks.onLoad( payload.msg ); + + if ( this.runtimeRef.terminateRequested ) { + + if ( this.runtimeRef.logging.enabled ) console.info( 'WorkerSupport [' + this.runtimeRef.runnerImplName + ']: Run is complete. Terminating application on request!' ); + this.runtimeRef._terminate(); + + } + break; + + case 'error': + console.error( 'WorkerSupport [' + this.runtimeRef.runnerImplName + ']: Reported error: ' + payload.msg ); + this.runtimeRef.queuedMessage = null; + this.started = false; + this.runtimeRef.callbacks.onLoad( payload.msg ); + + if ( this.runtimeRef.terminateRequested ) { + + if ( this.runtimeRef.logging.enabled ) console.info( 'WorkerSupport [' + this.runtimeRef.runnerImplName + ']: Run reported error. Terminating application on request!' ); + this.runtimeRef._terminate(); + + } + break; + + default: + console.error( 'WorkerSupport [' + this.runtimeRef.runnerImplName + ']: Received unknown command: ' + payload.cmd ); + break; + + } + }, + + setCallbacks: function ( meshBuilder, onLoad ) { + this.callbacks.meshBuilder = THREE.LoaderSupport.Validator.verifyInput( meshBuilder, this.callbacks.meshBuilder ); + this.callbacks.onLoad = THREE.LoaderSupport.Validator.verifyInput( onLoad, this.callbacks.onLoad ); + }, + + run: function( payload ) { + if ( THREE.LoaderSupport.Validator.isValid( this.queuedMessage ) ) { + + console.warn( 'Already processing message. Rejecting new run instruction' ); + return; + + } else { + + this.queuedMessage = payload; + this.started = true; + + } + if ( ! THREE.LoaderSupport.Validator.isValid( this.callbacks.meshBuilder ) ) throw 'Unable to run as no "MeshBuilder" callback is set.'; + if ( ! THREE.LoaderSupport.Validator.isValid( this.callbacks.onLoad ) ) throw 'Unable to run as no "onLoad" callback is set.'; + if ( payload.cmd !== 'run' ) payload.cmd = 'run'; + if ( THREE.LoaderSupport.Validator.isValid( payload.logging ) ) { + + payload.logging.enabled = payload.logging.enabled === true; + payload.logging.debug = payload.logging.debug === true; + + } else { + + payload.logging = { + enabled: true, + debug: false + } + + } + this._postMessage(); + }, + + _postMessage: function () { + if ( THREE.LoaderSupport.Validator.isValid( this.queuedMessage ) && THREE.LoaderSupport.Validator.isValid( this.worker ) ) { + + if ( this.queuedMessage.data.input instanceof ArrayBuffer ) { + + var content; + if ( this.forceCopy ) { + + content = this.queuedMessage.data.input.slice( 0 ); + + } else { + + content = this.queuedMessage.data.input; + + } + this.worker.postMessage( this.queuedMessage, [ content ] ); + + } else { + + this.worker.postMessage( this.queuedMessage ); + + } + + } + }, + + setTerminateRequested: function ( terminateRequested ) { + this.terminateRequested = terminateRequested === true; + if ( this.terminateRequested && THREE.LoaderSupport.Validator.isValid( this.worker ) && ! THREE.LoaderSupport.Validator.isValid( this.queuedMessage ) && this.started ) { + + if ( this.logging.enabled ) console.info( 'Worker is terminated immediately as it is not running!' ); + this._terminate(); + + } + }, + + _terminate: function () { + this.worker.terminate(); + this._reset(); + } +}; + + +THREE.LoaderSupport.WorkerSupport.CodeSerializer = { + + /** + * + * @param fullName + * @param object + * @returns {string} + */ + serializeObject: function ( fullName, object ) { + var objectString = fullName + ' = {\n\n'; var part; for ( var name in object ) { @@ -1153,11 +1075,12 @@ THREE.LoaderSupport.WorkerSupport = (function () { objectString += '\t' + name + ': [' + part + '],\n'; - } else if ( Number.isInteger( part ) ) { + } else if ( typeof part === 'object' ) { - objectString += '\t' + name + ': ' + part + ',\n'; + // TODO: Short-cut for now. Recursion required? + objectString += '\t' + name + ': {},\n'; - } else if ( typeof part === 'function' ) { + } else { objectString += '\t' + name + ': ' + part + ',\n'; @@ -1167,64 +1090,316 @@ THREE.LoaderSupport.WorkerSupport = (function () { objectString += '}\n\n'; return objectString; - }; + }, - var buildSingleton = function ( fullName, object, internalName, basePrototypeName, ignoreFunctions ) { - var objectString = ''; - var objectName = ( Validator.isValid( internalName ) ) ? internalName : object.name; + /** + * + * @param fullName + * @param object + * @param basePrototypeName + * @param ignoreFunctions + * @returns {string} + */ + serializeClass: function ( fullName, object, constructorName, basePrototypeName, ignoreFunctions, includeFunctions, overrideFunctions ) { + var valueString, objectPart, constructorString, i, funcOverride; + var prototypeFunctions = []; + var objectProperties = []; + var objectFunctions = []; + var isExtended = ( basePrototypeName !== null && basePrototypeName !== undefined ); + + if ( ! Array.isArray( ignoreFunctions ) ) ignoreFunctions = []; + if ( ! Array.isArray( includeFunctions ) ) includeFunctions = null; + if ( ! Array.isArray( overrideFunctions ) ) overrideFunctions = []; - var funcString, objectPart, constructorString; - ignoreFunctions = Validator.verifyInput( ignoreFunctions, [] ); for ( var name in object.prototype ) { objectPart = object.prototype[ name ]; + valueString = objectPart.toString(); if ( name === 'constructor' ) { - funcString = objectPart.toString(); - funcString = funcString.replace( 'function', '' ); - constructorString = '\tfunction ' + objectName + funcString + ';\n\n'; + constructorString = fullName + ' = ' + valueString + ';\n\n'; } else if ( typeof objectPart === 'function' ) { - if ( ignoreFunctions.indexOf( name ) < 0 ) { + if ( ignoreFunctions.indexOf( name ) < 0 && ( includeFunctions === null || includeFunctions.indexOf( name ) >= 0 ) ) { + + funcOverride = overrideFunctions[ name ]; + if ( funcOverride && funcOverride.fullName === fullName + '.prototype.' + name ) { + + valueString = funcOverride.code; + + } + if ( isExtended ) { + + prototypeFunctions.push( fullName + '.prototype.' + name + ' = ' + valueString + ';\n\n' ); + + } else { + + prototypeFunctions.push( '\t' + name + ': ' + valueString + ',\n\n' ); + + } + } + + } + + } + for ( var name in object ) { + + objectPart = object[ name ]; + + if ( typeof objectPart === 'function' ) { + + if ( ignoreFunctions.indexOf( name ) < 0 && ( includeFunctions === null || includeFunctions.indexOf( name ) >= 0 ) ) { + + funcOverride = overrideFunctions[ name ]; + if ( funcOverride && funcOverride.fullName === fullName + '.' + name ) { + + valueString = funcOverride.code; + + } else { + + valueString = objectPart.toString(); + + } + objectFunctions.push( fullName + '.' + name + ' = ' + valueString + ';\n\n' ); + + } + + } else { - funcString = objectPart.toString(); - objectString += '\t' + objectName + '.prototype.' + name + ' = ' + funcString + ';\n\n'; + if ( typeof( objectPart ) === 'string' || objectPart instanceof String) { + + valueString = '\"' + objectPart.toString() + '\"'; + + } else if ( typeof objectPart === 'object' ) { + + // TODO: Short-cut for now. Recursion required? + valueString = "{}"; + + } else { + + valueString = objectPart; } + objectProperties.push( fullName + '.' + name + ' = ' + valueString + ';\n' ); } } - objectString += '\treturn ' + objectName + ';\n'; - objectString += '})();\n\n'; + if ( ( constructorString === undefined || constructorString === null ) && typeof object.prototype.constructor === 'function' ) { - var inheritanceBlock = ''; - if ( Validator.isValid( basePrototypeName ) ) { + constructorString = fullName + ' = ' + object.prototype.constructor.toString().replace( constructorName, '' ); - inheritanceBlock += '\n'; - inheritanceBlock += objectName + '.prototype = Object.create( ' + basePrototypeName + '.prototype );\n'; - inheritanceBlock += objectName + '.constructor = ' + objectName + ';\n'; - inheritanceBlock += '\n'; } - if ( ! Validator.isValid( constructorString ) ) { + var objectString = constructorString + '\n\n'; + if ( isExtended ) { + + objectString += fullName + '.prototype = Object.create( ' + basePrototypeName + '.prototype );\n'; + + } + objectString += fullName + '.prototype.constructor = ' + fullName + ';\n'; + objectString += '\n\n'; + + for ( i = 0; i < objectProperties.length; i ++ ) objectString += objectProperties[ i ]; + objectString += '\n\n'; - constructorString = fullName + ' = (function () {\n\n'; - constructorString += inheritanceBlock + '\t' + object.prototype.constructor.toString() + '\n\n'; - objectString = constructorString + objectString; + for ( i = 0; i < objectFunctions.length; i ++ ) objectString += objectFunctions[ i ]; + objectString += '\n\n'; + + if ( isExtended ) { + + for ( i = 0; i < prototypeFunctions.length; i ++ ) objectString += prototypeFunctions[ i ]; } else { - objectString = fullName + ' = (function () {\n\n' + inheritanceBlock + constructorString + objectString; + objectString += fullName + '.prototype = {\n\n'; + for ( i = 0; i < prototypeFunctions.length; i ++ ) objectString += prototypeFunctions[ i ]; + objectString += '\n};'; } + objectString += '\n\n'; return objectString; + }, +}; + +/** + * Default implementation of the WorkerRunner responsible for creation and configuration of the parser within the worker. + * + * @class + */ +THREE.LoaderSupport.WorkerRunnerRefImpl = function () { + var scopedRunner = function( event ) { + this.processMessage( event.data ); }; + this.getParentScope().addEventListener( 'message', scopedRunner.bind( this ) ); +}; + +THREE.LoaderSupport.WorkerRunnerRefImpl.runnerName = 'THREE.LoaderSupport.WorkerRunnerRefImpl'; + +THREE.LoaderSupport.WorkerRunnerRefImpl.prototype = { + + constructor: THREE.LoaderSupport.WorkerRunnerRefImpl, + + /** + * Returns the parent scope that this worker was spawned in. + * + * @returns {WorkerGlobalScope|Object} Returns a references + * to the parent global scope or compatible type. + */ + getParentScope: function () { + return self; + }, + + /** + * Applies values from parameter object via set functions or via direct assignment. + * + * @param {Object} parser The parser instance + * @param {Object} params The parameter object + */ + applyProperties: function ( parser, params ) { + var property, funcName, values; + for ( property in params ) { + funcName = 'set' + property.substring( 0, 1 ).toLocaleUpperCase() + property.substring( 1 ); + values = params[ property ]; + + if ( typeof parser[ funcName ] === 'function' ) { + + parser[ funcName ]( values ); + + } else if ( parser.hasOwnProperty( property ) ) { + + parser[ property ] = values; + + } + } + }, + + /** + * Configures the Parser implementation according the supplied configuration object. + * + * @param {Object} payload Raw mesh description (buffers, params, materials) used to build one to many meshes. + */ + processMessage: function ( payload ) { + if ( payload.cmd === 'run' ) { + + var self = this.getParentScope(); + var callbacks = { + callbackMeshBuilder: function ( payload ) { + self.postMessage( payload ); + }, + callbackProgress: function ( text ) { + if ( payload.logging.enabled && payload.logging.debug ) console.debug( 'WorkerRunner: progress: ' + text ); + } + }; + + // Parser is expected to be named as such + var parser = new Parser(); + if ( typeof parser[ 'setLogging' ] === 'function' ) parser.setLogging( payload.logging.enabled, payload.logging.debug ); + this.applyProperties( parser, payload.params ); + this.applyProperties( parser, payload.materials ); + this.applyProperties( parser, callbacks ); + parser.workerScope = self; + parser.parse( payload.data.input, payload.data.options ); + + if ( payload.logging.enabled ) console.log( 'WorkerRunner: Run complete!' ); + + callbacks.callbackMeshBuilder( { + cmd: 'complete', + msg: 'WorkerRunner completed run.' + } ); + + } else { + + console.error( 'WorkerRunner: Received unknown command: ' + payload.cmd ); + + } + } +}; + + +/** + * This class provides the NodeJS implementation of the WorkerRunnerRefImpl + * @class + * @extends THREE.LoaderSupport.WorkerRunnerRefImpl + */ +THREE.LoaderSupport.NodeWorkerRunnerRefImpl = function () { + this.runnerName = 'THREE.LoaderSupport.NodeWorkerRunnerRefImpl'; + // No call to super because super class only binds to processMessage + // In NodeJS, there is no addEventListener so use onmessage. + // Also, the message object can be passed directly to + // processMessage() as it isn't an `Event`, but a plain object + // with the data + this.getParentScope().onmessage = this.processMessage.bind( this ); +}; + +THREE.LoaderSupport.NodeWorkerRunnerRefImpl.prototype = Object.create( THREE.LoaderSupport.WorkerRunnerRefImpl.prototype ); +THREE.LoaderSupport.NodeWorkerRunnerRefImpl.prototype.constructor = THREE.LoaderSupport.NodeWorkerRunnerRefImpl; +THREE.LoaderSupport.NodeWorkerRunnerRefImpl.runnerName = 'THREE.LoaderSupport.NodeWorkerRunnerRefImpl'; + +THREE.LoaderSupport.NodeWorkerRunnerRefImpl.prototype = { + + getParentScope: function(){ + // Work around webpack builds failing with NodeJS requires + // (placing it outside this function will fail because + // this class is passed to the worker as a string!) + var _require = eval( 'require' ); + return _require( 'worker_threads' ).parentPort; + } +}; + + +/** + * This class provides the NodeJS implementation of LoaderWorker + * @class + * @extends LoaderWorker + */ +THREE.LoaderSupport.WorkerSupport.NodeLoaderWorker = function (){ + THREE.LoaderSupport.WorkerSupport.LoaderWorker.call( this ); +}; - return WorkerSupport; +THREE.LoaderSupport.WorkerSupport.NodeLoaderWorker.prototype = Object.create( THREE.LoaderSupport.WorkerSupport.LoaderWorker.prototype ); +THREE.LoaderSupport.WorkerSupport.NodeLoaderWorker.prototype.constructor = THREE.LoaderSupport.WorkerSupport.NodeLoaderWorker; -})(); +/** + * @inheritdoc + */ +THREE.LoaderSupport.WorkerSupport.NodeLoaderWorker.checkSupport = function() { + try { + // Work around webpack builds failing with NodeJS requires + var _require = eval( 'require' ); + _require.resolve( 'worker_threads' ); + } + catch(e) { + return 'This version of Node does not support web workers!'; + } +}; + +/** + * @inheritdoc + */ +THREE.LoaderSupport.WorkerSupport.NodeLoaderWorker.prototype.initWorker = function ( code, runnerImplName ) { + var supportError = this.checkSupport(); + if( supportError ) { + + throw supportError; + + } + this.runnerImplName = runnerImplName; + + // Work around webpack builds failing with NodeJS requires + var _require = eval( 'require' ); + var Worker = _require( 'worker_threads' ).Worker; + this.worker = new Worker( code, { eval: true } ); + + this.worker.onmessage = this._receiveWorkerMessage; + + // set referemce to this, then processing in worker scope within "_receiveWorkerMessage" can access members + this.worker.runtimeRef = this; + + // process stored queuedMessage + this._postMessage(); +}; /** * Orchestrate loading of multiple OBJ files/data from an instruction queue with a configurable amount of workers (1-16). @@ -1238,105 +1413,98 @@ THREE.LoaderSupport.WorkerSupport = (function () { * * @param {string} classDef Class definition to be used for construction */ -THREE.LoaderSupport.WorkerDirector = (function () { - - var LOADER_WORKER_DIRECTOR_VERSION = '2.2.2'; +THREE.LoaderSupport.WorkerDirector = function ( classDef ) { + console.info( 'Using THREE.LoaderSupport.WorkerDirector version: ' + THREE.LoaderSupport.WorkerDirector.LOADER_WORKER_DIRECTOR_VERSION ); + this.logging = { + enabled: true, + debug: false + }; - var Validator = THREE.LoaderSupport.Validator; + this.maxQueueSize = THREE.LoaderSupport.WorkerDirector.MAX_QUEUE_SIZE ; + this.maxWebWorkers = THREE.LoaderSupport.WorkerDirector.MAX_WEB_WORKER; + this.crossOrigin = null; - var MAX_WEB_WORKER = 16; - var MAX_QUEUE_SIZE = 8192; + if ( ! THREE.LoaderSupport.Validator.isValid( classDef ) ) throw 'Provided invalid classDef: ' + classDef; - function WorkerDirector( classDef ) { - console.info( 'Using THREE.LoaderSupport.WorkerDirector version: ' + LOADER_WORKER_DIRECTOR_VERSION ); - this.logging = { - enabled: true, - debug: false - }; + this.workerDescription = { + classDef: classDef, + globalCallbacks: {}, + workerSupports: {}, + forceWorkerDataCopy: true + }; + this.objectsCompleted = 0; + this.instructionQueue = []; + this.instructionQueuePointer = 0; - this.maxQueueSize = MAX_QUEUE_SIZE ; - this.maxWebWorkers = MAX_WEB_WORKER; - this.crossOrigin = null; + this.callbackOnFinishedProcessing = null; +} - if ( ! Validator.isValid( classDef ) ) throw 'Provided invalid classDef: ' + classDef; - this.workerDescription = { - classDef: classDef, - globalCallbacks: {}, - workerSupports: {}, - forceWorkerDataCopy: true - }; - this.objectsCompleted = 0; - this.instructionQueue = []; - this.instructionQueuePointer = 0; +THREE.LoaderSupport.WorkerDirector.LOADER_WORKER_DIRECTOR_VERSION = '2.3.0'; +THREE.LoaderSupport.WorkerDirector.MAX_WEB_WORKER = 16; +THREE.LoaderSupport.WorkerDirector.MAX_QUEUE_SIZE = 2048; - this.callbackOnFinishedProcessing = null; - } +THREE.LoaderSupport.WorkerDirector.prototype = { + constructor: THREE.LoaderSupport.WorkerDirector, /** * Enable or disable logging in general (except warn and error), plus enable or disable debug logging. - * @memberOf THREE.LoaderSupport.WorkerDirector * * @param {boolean} enabled True or false. * @param {boolean} debug True or false. */ - WorkerDirector.prototype.setLogging = function ( enabled, debug ) { + setLogging: function ( enabled, debug ) { this.logging.enabled = enabled === true; this.logging.debug = debug === true; - }; + }, /** * Returns the maximum length of the instruction queue. - * @memberOf THREE.LoaderSupport.WorkerDirector * * @returns {number} */ - WorkerDirector.prototype.getMaxQueueSize = function () { + getMaxQueueSize: function () { return this.maxQueueSize; - }; + }, /** * Returns the maximum number of workers. - * @memberOf THREE.LoaderSupport.WorkerDirector * * @returns {number} */ - WorkerDirector.prototype.getMaxWebWorkers = function () { + getMaxWebWorkers: function () { return this.maxWebWorkers; - }; + }, /** * Sets the CORS string to be used. - * @memberOf THREE.LoaderSupport.WorkerDirector * * @param {string} crossOrigin CORS value */ - WorkerDirector.prototype.setCrossOrigin = function ( crossOrigin ) { + setCrossOrigin: function ( crossOrigin ) { this.crossOrigin = crossOrigin; - }; + }, /** * Forces all ArrayBuffers to be transferred to worker to be copied. - * @memberOf THREE.LoaderSupport.WorkerDirector * * @param {boolean} forceWorkerDataCopy True or false. */ - WorkerDirector.prototype.setForceWorkerDataCopy = function ( forceWorkerDataCopy ) { + setForceWorkerDataCopy: function ( forceWorkerDataCopy ) { this.workerDescription.forceWorkerDataCopy = forceWorkerDataCopy === true; - }; + }, /** * Create or destroy workers according limits. Set the name and register callbacks for dynamically created web workers. - * @memberOf THREE.LoaderSupport.WorkerDirector * * @param {THREE.OBJLoader2.WWOBJLoader2.PrepDataCallbacks} globalCallbacks Register global callbacks used by all web workers * @param {number} maxQueueSize Set the maximum size of the instruction queue (1-1024) * @param {number} maxWebWorkers Set the maximum amount of workers (1-16) */ - WorkerDirector.prototype.prepareWorkers = function ( globalCallbacks, maxQueueSize, maxWebWorkers ) { - if ( Validator.isValid( globalCallbacks ) ) this.workerDescription.globalCallbacks = globalCallbacks; - this.maxQueueSize = Math.min( maxQueueSize, MAX_QUEUE_SIZE ); - this.maxWebWorkers = Math.min( maxWebWorkers, MAX_WEB_WORKER ); + prepareWorkers: function ( globalCallbacks, maxQueueSize, maxWebWorkers ) { + if ( THREE.LoaderSupport.Validator.isValid( globalCallbacks ) ) this.workerDescription.globalCallbacks = globalCallbacks; + this.maxQueueSize = Math.min( maxQueueSize, THREE.LoaderSupport.WorkerDirector.MAX_QUEUE_SIZE ); + this.maxWebWorkers = Math.min( maxWebWorkers, THREE.LoaderSupport.WorkerDirector.MAX_WEB_WORKER ); this.maxWebWorkers = Math.min( this.maxWebWorkers, this.maxQueueSize ); this.objectsCompleted = 0; this.instructionQueue = []; @@ -1356,36 +1524,33 @@ THREE.LoaderSupport.WorkerDirector = (function () { }; } - }; + }, /** * Store run instructions in internal instructionQueue. - * @memberOf THREE.LoaderSupport.WorkerDirector * * @param {THREE.LoaderSupport.PrepData} prepData */ - WorkerDirector.prototype.enqueueForRun = function ( prepData ) { + enqueueForRun: function ( prepData ) { if ( this.instructionQueue.length < this.maxQueueSize ) { this.instructionQueue.push( prepData ); } - }; + }, /** * Returns if any workers are running. * - * @memberOf THREE.LoaderSupport.WorkerDirector * @returns {boolean} */ - WorkerDirector.prototype.isRunning = function () { + isRunning: function () { var wsKeys = Object.keys( this.workerDescription.workerSupports ); return ( ( this.instructionQueue.length > 0 && this.instructionQueuePointer < this.instructionQueue.length ) || wsKeys.length > 0 ); - }; + }, /** * Process the instructionQueue until it is depleted. - * @memberOf THREE.LoaderSupport.WorkerDirector */ - WorkerDirector.prototype.processQueue = function () { + processQueue: function () { var prepData, supportDesc; for ( var instanceNo in this.workerDescription.workerSupports ) { @@ -1414,20 +1579,21 @@ THREE.LoaderSupport.WorkerDirector = (function () { this.callbackOnFinishedProcessing = null; } - }; + }, - WorkerDirector.prototype._kickWorkerRun = function( prepData, supportDesc ) { + _kickWorkerRun: function( prepData, supportDesc ) { supportDesc.inUse = true; supportDesc.workerSupport.setTerminateRequested( supportDesc.terminateRequested ); if ( this.logging.enabled ) console.info( '\nAssigning next item from queue to worker (queue length: ' + this.instructionQueue.length + ')\n\n' ); + var validator = THREE.LoaderSupport.Validator; var scope = this; var prepDataCallbacks = prepData.getCallbacks(); var globalCallbacks = this.workerDescription.globalCallbacks; var wrapperOnLoad = function ( event ) { - if ( Validator.isValid( globalCallbacks.onLoad ) ) globalCallbacks.onLoad( event ); - if ( Validator.isValid( prepDataCallbacks.onLoad ) ) prepDataCallbacks.onLoad( event ); + if ( validator.isValid( globalCallbacks.onLoad ) ) globalCallbacks.onLoad( event ); + if ( validator.isValid( prepDataCallbacks.onLoad ) ) prepDataCallbacks.onLoad( event ); scope.objectsCompleted++; supportDesc.inUse = false; @@ -1435,28 +1601,28 @@ THREE.LoaderSupport.WorkerDirector = (function () { }; var wrapperOnProgress = function ( event ) { - if ( Validator.isValid( globalCallbacks.onProgress ) ) globalCallbacks.onProgress( event ); - if ( Validator.isValid( prepDataCallbacks.onProgress ) ) prepDataCallbacks.onProgress( event ); + if ( validator.isValid( globalCallbacks.onProgress ) ) globalCallbacks.onProgress( event ); + if ( validator.isValid( prepDataCallbacks.onProgress ) ) prepDataCallbacks.onProgress( event ); }; var wrapperOnMeshAlter = function ( event, override ) { - if ( Validator.isValid( globalCallbacks.onMeshAlter ) ) override = globalCallbacks.onMeshAlter( event, override ); - if ( Validator.isValid( prepDataCallbacks.onMeshAlter ) ) override = globalCallbacks.onMeshAlter( event, override ); + if ( validator.isValid( globalCallbacks.onMeshAlter ) ) override = globalCallbacks.onMeshAlter( event, override ); + if ( validator.isValid( prepDataCallbacks.onMeshAlter ) ) override = globalCallbacks.onMeshAlter( event, override ); return override; }; var wrapperOnLoadMaterials = function ( materials ) { - if ( Validator.isValid( globalCallbacks.onLoadMaterials ) ) materials = globalCallbacks.onLoadMaterials( materials ); - if ( Validator.isValid( prepDataCallbacks.onLoadMaterials ) ) materials = prepDataCallbacks.onLoadMaterials( materials ); + if ( validator.isValid( globalCallbacks.onLoadMaterials ) ) materials = globalCallbacks.onLoadMaterials( materials ); + if ( validator.isValid( prepDataCallbacks.onLoadMaterials ) ) materials = prepDataCallbacks.onLoadMaterials( materials ); return materials; }; var wrapperOnReportError = function ( errorMessage ) { var continueProcessing = true; - if ( Validator.isValid( globalCallbacks.onReportError ) ) continueProcessing = globalCallbacks.onReportError( supportDesc, errorMessage ); - if ( Validator.isValid( prepDataCallbacks.onReportError ) ) continueProcessing = prepDataCallbacks.onReportError( supportDesc, errorMessage ); + if ( validator.isValid( globalCallbacks.onReportError ) ) continueProcessing = globalCallbacks.onReportError( supportDesc, errorMessage ); + if ( validator.isValid( prepDataCallbacks.onReportError ) ) continueProcessing = prepDataCallbacks.onReportError( supportDesc, errorMessage ); - if ( ! Validator.isValid( globalCallbacks.onReportError ) && ! Validator.isValid( prepDataCallbacks.onReportError ) ) { + if ( ! validator.isValid( globalCallbacks.onReportError ) && ! validator.isValid( prepDataCallbacks.onReportError ) ) { console.error( 'Loader reported an error: ' ); console.error( errorMessage ); @@ -1481,9 +1647,9 @@ THREE.LoaderSupport.WorkerDirector = (function () { prepData.callbacks = updatedCallbacks; supportDesc.loader.run( prepData, supportDesc.workerSupport ); - }; + }, - WorkerDirector.prototype._buildLoader = function ( instanceNo ) { + _buildLoader: function ( instanceNo ) { var classDef = this.workerDescription.classDef; var loader = Object.create( classDef.prototype ); classDef.call( loader, THREE.DefaultLoadingManager ); @@ -1498,7 +1664,7 @@ THREE.LoaderSupport.WorkerDirector = (function () { } if ( typeof loader.run !== 'function' ) throw classDef.name + ' has no function "run".'; - if ( ! loader.hasOwnProperty( 'callbacks' ) || ! Validator.isValid( loader.callbacks ) ) { + if ( ! loader.hasOwnProperty( 'callbacks' ) || ! THREE.LoaderSupport.Validator.isValid( loader.callbacks ) ) { console.warn( classDef.name + ' has an invalid property "callbacks". Will change to "THREE.LoaderSupport.Callbacks"' ); loader.callbacks = new THREE.LoaderSupport.Callbacks(); @@ -1506,40 +1672,37 @@ THREE.LoaderSupport.WorkerDirector = (function () { } return loader; - }; + }, - WorkerDirector.prototype._deregister = function ( supportDesc ) { - if ( Validator.isValid( supportDesc ) ) { + _deregister: function ( supportDesc ) { + if ( THREE.LoaderSupport.Validator.isValid( supportDesc ) ) { supportDesc.workerSupport.setTerminateRequested( true ); if ( this.logging.enabled ) console.info( 'Requested termination of worker #' + supportDesc.instanceNo + '.' ); var loaderCallbacks = supportDesc.loader.callbacks; - if ( Validator.isValid( loaderCallbacks.onProgress ) ) loaderCallbacks.onProgress( { detail: { text: '' } } ); + if ( THREE.LoaderSupport.Validator.isValid( loaderCallbacks.onProgress ) ) loaderCallbacks.onProgress( { detail: { text: '' } } ); delete this.workerDescription.workerSupports[ supportDesc.instanceNo ]; } - }; + }, /** * Terminate all workers. - * @memberOf THREE.LoaderSupport.WorkerDirector * * @param {callback} callbackOnFinishedProcessing Function called once all workers finished processing. */ - WorkerDirector.prototype.tearDown = function ( callbackOnFinishedProcessing ) { + tearDown: function ( callbackOnFinishedProcessing ) { if ( this.logging.enabled ) console.info( 'WorkerDirector received the deregister call. Terminating all workers!' ); this.instructionQueuePointer = this.instructionQueue.length; - this.callbackOnFinishedProcessing = Validator.verifyInput( callbackOnFinishedProcessing, null ); + this.callbackOnFinishedProcessing = THREE.LoaderSupport.Validator.verifyInput( callbackOnFinishedProcessing, null ); for ( var name in this.workerDescription.workerSupports ) { this.workerDescription.workerSupports[ name ].terminateRequested = true; } - }; - - return WorkerDirector; + } -})(); +}; diff --git a/examples/js/loaders/OBJLoader2.js b/examples/js/loaders/OBJLoader2.js index ef8079fb33f629..7d3d21a5679bc4 100644 --- a/examples/js/loaders/OBJLoader2.js +++ b/examples/js/loaders/OBJLoader2.js @@ -15,149 +15,150 @@ if ( THREE.LoaderSupport === undefined ) console.error( '"THREE.LoaderSupport" i * * @param {THREE.DefaultLoadingManager} [manager] The loadingManager for the loader to use. Default is {@link THREE.DefaultLoadingManager} */ -THREE.OBJLoader2 = (function () { - var OBJLOADER2_VERSION = '2.4.2'; - var Validator = THREE.LoaderSupport.Validator; +THREE.OBJLoader2 = function ( manager ) { + console.info( 'Using THREE.OBJLoader2 version: ' + THREE.OBJLoader2.OBJLOADER2_VERSION ); - function OBJLoader2( manager ) { - console.info( 'Using THREE.OBJLoader2 version: ' + OBJLOADER2_VERSION ); + this.manager = THREE.LoaderSupport.Validator.verifyInput( manager, THREE.DefaultLoadingManager ); + this.logging = { + enabled: true, + debug: false + }; - this.manager = Validator.verifyInput( manager, THREE.DefaultLoadingManager ); - this.logging = { - enabled: true, - debug: false - }; + this.modelName = ''; + this.instanceNo = 0; + this.path; + this.resourcePath; + this.useIndices = false; + this.disregardNormals = false; + this.materialPerSmoothingGroup = false; + this.useOAsMesh = false; + this.loaderRootNode = new THREE.Group(); - this.modelName = ''; - this.instanceNo = 0; - this.path = ''; - this.useIndices = false; - this.disregardNormals = false; - this.materialPerSmoothingGroup = false; - this.useOAsMesh = false; - this.loaderRootNode = new THREE.Group(); - - this.meshBuilder = new THREE.LoaderSupport.MeshBuilder(); - this.callbacks = new THREE.LoaderSupport.Callbacks(); - this.workerSupport = new THREE.LoaderSupport.WorkerSupport(); - this.terminateWorkerOnLoad = true; - } + this.meshBuilder = new THREE.LoaderSupport.MeshBuilder(); + this.callbacks = new THREE.LoaderSupport.Callbacks(); + this.workerSupport = new THREE.LoaderSupport.WorkerSupport(); + this.terminateWorkerOnLoad = true; +}; + +THREE.OBJLoader2.OBJLOADER2_VERSION = '2.5.0'; + +THREE.OBJLoader2.prototype = { + + constructor: THREE.OBJLoader2, /** * Enable or disable logging in general (except warn and error), plus enable or disable debug logging. - * @memberOf THREE.OBJLoader2 * * @param {boolean} enabled True or false. * @param {boolean} debug True or false. */ - OBJLoader2.prototype.setLogging = function ( enabled, debug ) { + setLogging: function ( enabled, debug ) { this.logging.enabled = enabled === true; this.logging.debug = debug === true; this.meshBuilder.setLogging( this.logging.enabled, this.logging.debug ); - }; + }, /** * Set the name of the model. - * @memberOf THREE.OBJLoader2 * * @param {string} modelName */ - OBJLoader2.prototype.setModelName = function ( modelName ) { - this.modelName = Validator.verifyInput( modelName, this.modelName ); - }; + setModelName: function ( modelName ) { + this.modelName = THREE.LoaderSupport.Validator.verifyInput( modelName, this.modelName ); + }, /** * The URL of the base path. - * @memberOf THREE.OBJLoader2 * * @param {string} path URL */ - OBJLoader2.prototype.setPath = function ( path ) { - this.path = Validator.verifyInput( path, this.path ); - }; + setPath: function ( path ) { + this.path = THREE.LoaderSupport.Validator.verifyInput( path, this.path ); + }, + + /** + * Allows to specify resourcePath for dependencies of specified resource. + * @param {string} resourcePath + */ + setResourcePath: function ( resourcePath ) { + this.resourcePath = THREE.LoaderSupport.Validator.verifyInput( resourcePath, this.resourcePath ); + }, /** * Set the node where the loaded objects will be attached directly. - * @memberOf THREE.OBJLoader2 * * @param {THREE.Object3D} streamMeshesTo Object already attached to scenegraph where new meshes will be attached to */ - OBJLoader2.prototype.setStreamMeshesTo = function ( streamMeshesTo ) { - this.loaderRootNode = Validator.verifyInput( streamMeshesTo, this.loaderRootNode ); - }; + setStreamMeshesTo: function ( streamMeshesTo ) { + this.loaderRootNode = THREE.LoaderSupport.Validator.verifyInput( streamMeshesTo, this.loaderRootNode ); + }, /** * Set materials loaded by MTLLoader or any other supplier of an Array of {@link THREE.Material}. - * @memberOf THREE.OBJLoader2 * * @param {THREE.Material[]} materials Array of {@link THREE.Material} */ - OBJLoader2.prototype.setMaterials = function ( materials ) { + setMaterials: function ( materials ) { this.meshBuilder.setMaterials( materials ); - }; + }, /** * Instructs loaders to create indexed {@link THREE.BufferGeometry}. - * @memberOf THREE.OBJLoader2 * * @param {boolean} useIndices=false */ - OBJLoader2.prototype.setUseIndices = function ( useIndices ) { + setUseIndices: function ( useIndices ) { this.useIndices = useIndices === true; - }; + }, /** * Tells whether normals should be completely disregarded and regenerated. - * @memberOf THREE.OBJLoader2 * * @param {boolean} disregardNormals=false */ - OBJLoader2.prototype.setDisregardNormals = function ( disregardNormals ) { + setDisregardNormals: function ( disregardNormals ) { this.disregardNormals = disregardNormals === true; - }; + }, /** * Tells whether a material shall be created per smoothing group. - * @memberOf THREE.OBJLoader2 * * @param {boolean} materialPerSmoothingGroup=false */ - OBJLoader2.prototype.setMaterialPerSmoothingGroup = function ( materialPerSmoothingGroup ) { + setMaterialPerSmoothingGroup: function ( materialPerSmoothingGroup ) { this.materialPerSmoothingGroup = materialPerSmoothingGroup === true; - }; + }, /** * Usually 'o' is meta-information and does not result in creation of new meshes, but mesh creation on occurrence of "o" can be enforced. - * @memberOf THREE.OBJLoader2 * * @param {boolean} useOAsMesh=false */ - OBJLoader2.prototype.setUseOAsMesh = function ( useOAsMesh ) { + setUseOAsMesh: function ( useOAsMesh ) { this.useOAsMesh = useOAsMesh === true; - }; + }, - OBJLoader2.prototype._setCallbacks = function ( callbacks ) { - if ( Validator.isValid( callbacks.onProgress ) ) this.callbacks.setCallbackOnProgress( callbacks.onProgress ); - if ( Validator.isValid( callbacks.onReportError ) ) this.callbacks.setCallbackOnReportError( callbacks.onReportError ); - if ( Validator.isValid( callbacks.onMeshAlter ) ) this.callbacks.setCallbackOnMeshAlter( callbacks.onMeshAlter ); - if ( Validator.isValid( callbacks.onLoad ) ) this.callbacks.setCallbackOnLoad( callbacks.onLoad ); - if ( Validator.isValid( callbacks.onLoadMaterials ) ) this.callbacks.setCallbackOnLoadMaterials( callbacks.onLoadMaterials ); + _setCallbacks: function ( callbacks ) { + if ( THREE.LoaderSupport.Validator.isValid( callbacks.onProgress ) ) this.callbacks.setCallbackOnProgress( callbacks.onProgress ); + if ( THREE.LoaderSupport.Validator.isValid( callbacks.onReportError ) ) this.callbacks.setCallbackOnReportError( callbacks.onReportError ); + if ( THREE.LoaderSupport.Validator.isValid( callbacks.onMeshAlter ) ) this.callbacks.setCallbackOnMeshAlter( callbacks.onMeshAlter ); + if ( THREE.LoaderSupport.Validator.isValid( callbacks.onLoad ) ) this.callbacks.setCallbackOnLoad( callbacks.onLoad ); + if ( THREE.LoaderSupport.Validator.isValid( callbacks.onLoadMaterials ) ) this.callbacks.setCallbackOnLoadMaterials( callbacks.onLoadMaterials ); this.meshBuilder._setCallbacks( this.callbacks ); - }; + }, /** * Announce feedback which is give to the registered callbacks. - * @memberOf THREE.OBJLoader2 * @private * * @param {string} type The type of event * @param {string} text Textual description of the event * @param {number} numericalValue Numerical value describing the progress */ - OBJLoader2.prototype.onProgress = function ( type, text, numericalValue ) { - var content = Validator.isValid( text ) ? text: ''; + onProgress: function ( type, text, numericalValue ) { + var content = THREE.LoaderSupport.Validator.isValid( text ) ? text: ''; var event = { detail: { type: type, @@ -168,12 +169,12 @@ THREE.OBJLoader2 = (function () { } }; - if ( Validator.isValid( this.callbacks.onProgress ) ) this.callbacks.onProgress( event ); + if ( THREE.LoaderSupport.Validator.isValid( this.callbacks.onProgress ) ) this.callbacks.onProgress( event ); if ( this.logging.enabled && this.logging.debug ) console.debug( content ); - }; + }, - OBJLoader2.prototype._onError = function ( event ) { + _onError: function ( event ) { var output = 'Error occurred while downloading!'; if ( event.currentTarget && event.currentTarget.statusText !== null ) { @@ -183,10 +184,10 @@ THREE.OBJLoader2 = (function () { } this.onProgress( 'error', output, -1 ); this._throwError( output ); - }; + }, - OBJLoader2.prototype._throwError = function ( errorMessage ) { - if ( Validator.isValid( this.callbacks.onReportError ) ) { + _throwError: function ( errorMessage ) { + if ( THREE.LoaderSupport.Validator.isValid( this.callbacks.onReportError ) ) { this.callbacks.onReportError( errorMessage ); @@ -195,34 +196,33 @@ THREE.OBJLoader2 = (function () { throw errorMessage; } - }; + }, /** * Use this convenient method to load a file at the given URL. By default the fileLoader uses an ArrayBuffer. - * @memberOf THREE.OBJLoader2 * - * @param {string} url A string containing the path/URL of the file to be loaded. + * @param {string} url A string containing the path/URL of the file to be loaded. * @param {callback} onLoad A function to be called after loading is successfully completed. The function receives loaded Object3D as an argument. * @param {callback} [onProgress] A function to be called while the loading is in progress. The argument will be the XMLHttpRequest instance, which contains total and Integer bytes. * @param {callback} [onError] A function to be called if an error occurs during loading. The function receives the error as an argument. * @param {callback} [onMeshAlter] A function to be called after a new mesh raw data becomes available for alteration. * @param {boolean} [useAsync] If true, uses async loading with worker, if false loads data synchronously. */ - OBJLoader2.prototype.load = function ( url, onLoad, onProgress, onError, onMeshAlter, useAsync ) { + load: function ( url, onLoad, onProgress, onError, onMeshAlter, useAsync ) { var resource = new THREE.LoaderSupport.ResourceDescriptor( url, 'OBJ' ); this._loadObj( resource, onLoad, onProgress, onError, onMeshAlter, useAsync ); - }; + }, - OBJLoader2.prototype._loadObj = function ( resource, onLoad, onProgress, onError, onMeshAlter, useAsync ) { + _loadObj: function ( resource, onLoad, onProgress, onError, onMeshAlter, useAsync ) { var scope = this; - if ( ! Validator.isValid( onError ) ) { + if ( ! THREE.LoaderSupport.Validator.isValid( onError ) ) { onError = function ( event ) { scope._onError( event ); - }; + } } // fast-fail - if ( ! Validator.isValid( resource ) ) onError( 'An invalid ResourceDescriptor was provided. Unable to continue!' ); + if ( ! THREE.LoaderSupport.Validator.isValid( resource ) ) onError( 'An invalid ResourceDescriptor was provided. Unable to continue!' ); var fileLoaderOnLoad = function ( content ) { resource.content = content; @@ -247,15 +247,17 @@ THREE.OBJLoader2 = (function () { } }; + this.setPath( resource.path ); + this.setResourcePath( resource.resourcePath ); // fast-fail - if ( ! Validator.isValid( resource.url ) || Validator.isValid( resource.content ) ) { + if ( ! THREE.LoaderSupport.Validator.isValid( resource.url ) || THREE.LoaderSupport.Validator.isValid( resource.content ) ) { - fileLoaderOnLoad( Validator.isValid( resource.content ) ? resource.content : null ); + fileLoaderOnLoad( THREE.LoaderSupport.Validator.isValid( resource.content ) ? resource.content : null ); } else { - if ( ! Validator.isValid( onProgress ) ) { + if ( ! THREE.LoaderSupport.Validator.isValid( onProgress ) ) { var numericalValueRef = 0; var numericalValue = 0; onProgress = function ( event ) { @@ -274,22 +276,20 @@ THREE.OBJLoader2 = (function () { var fileLoader = new THREE.FileLoader( this.manager ); - fileLoader.setPath( this.path ); + fileLoader.setPath( this.path || this.resourcePath ); fileLoader.setResponseType( 'arraybuffer' ); - fileLoader.load( resource.url, fileLoaderOnLoad, onProgress, onError ); + fileLoader.load( resource.name, fileLoaderOnLoad, onProgress, onError ); } - }; - + }, /** * Run the loader according the provided instructions. - * @memberOf THREE.OBJLoader2 * * @param {THREE.LoaderSupport.PrepData} prepData All parameters and resources required for execution * @param {THREE.LoaderSupport.WorkerSupport} [workerSupportExternal] Use pre-existing WorkerSupport */ - OBJLoader2.prototype.run = function ( prepData, workerSupportExternal ) { + run: function ( prepData, workerSupportExternal ) { this._applyPrepData( prepData ); var available = prepData.checkResourceDescriptorFiles( prepData.resources, [ @@ -298,7 +298,7 @@ THREE.OBJLoader2 = (function () { { ext: "zip", type: "String", ignore: true } ] ); - if ( Validator.isValid( workerSupportExternal ) ) { + if ( THREE.LoaderSupport.Validator.isValid( workerSupportExternal ) ) { this.terminateWorkerOnLoad = false; this.workerSupport = workerSupportExternal; @@ -313,10 +313,10 @@ THREE.OBJLoader2 = (function () { }; this._loadMtl( available.mtl, onMaterialsLoaded, null, null, prepData.crossOrigin, prepData.materialOptions ); - }; + }, - OBJLoader2.prototype._applyPrepData = function ( prepData ) { - if ( Validator.isValid( prepData ) ) { + _applyPrepData: function ( prepData ) { + if ( THREE.LoaderSupport.Validator.isValid( prepData ) ) { this.setLogging( prepData.logging.enabled, prepData.logging.debug ); this.setModelName( prepData.modelName ); @@ -330,17 +330,16 @@ THREE.OBJLoader2 = (function () { this._setCallbacks( prepData.getCallbacks() ); } - }; + }, /** * Parses OBJ data synchronously from arraybuffer or string. - * @memberOf THREE.OBJLoader2 * * @param {arraybuffer|string} content OBJ data as Uint8Array or String */ - OBJLoader2.prototype.parse = function ( content ) { + parse: function ( content ) { // fast-fail in case of illegal data - if ( ! Validator.isValid( content ) ) { + if ( ! THREE.LoaderSupport.Validator.isValid( content ) ) { console.warn( 'Provided content is not a valid ArrayBuffer or String.' ); return this.loaderRootNode; @@ -349,7 +348,7 @@ THREE.OBJLoader2 = (function () { if ( this.logging.enabled ) console.time( 'OBJLoader2 parse: ' + this.modelName ); this.meshBuilder.init(); - var parser = new Parser(); + var parser = new THREE.OBJLoader2.Parser(); parser.setLogging( this.logging.enabled, this.logging.debug ); parser.setMaterialPerSmoothingGroup( this.materialPerSmoothingGroup ); parser.setUseOAsMesh( this.useOAsMesh ); @@ -391,16 +390,15 @@ THREE.OBJLoader2 = (function () { if ( this.logging.enabled ) console.timeEnd( 'OBJLoader2 parse: ' + this.modelName ); return this.loaderRootNode; - }; + }, /** * Parses OBJ content asynchronously from arraybuffer. - * @memberOf THREE.OBJLoader2 * * @param {arraybuffer} content OBJ data as Uint8Array * @param {callback} onLoad Called after worker successfully completed loading */ - OBJLoader2.prototype.parseAsync = function ( content, onLoad ) { + parseAsync: function ( content, onLoad ) { var scope = this; var measureTime = false; var scopedOnLoad = function () { @@ -416,10 +414,10 @@ THREE.OBJLoader2 = (function () { if ( measureTime && scope.logging.enabled ) console.timeEnd( 'OBJLoader2 parseAsync: ' + scope.modelName ); }; // fast-fail in case of illegal data - if ( ! Validator.isValid( content ) ) { + if ( ! THREE.LoaderSupport.Validator.isValid( content ) ) { console.warn( 'Provided content is not a valid ArrayBuffer.' ); - scopedOnLoad(); + scopedOnLoad() } else { @@ -437,18 +435,18 @@ THREE.OBJLoader2 = (function () { scope.loaderRootNode.add( mesh ); } }; - var buildCode = function ( funcBuildObject, funcBuildSingleton ) { + var buildCode = function ( codeSerializer ) { var workerCode = ''; workerCode += '/**\n'; workerCode += ' * This code was constructed by OBJLoader2 buildCode.\n'; workerCode += ' */\n\n'; - workerCode += 'THREE = { LoaderSupport: {} };\n\n'; - workerCode += funcBuildObject( 'THREE.LoaderSupport.Validator', Validator ); - workerCode += funcBuildSingleton( 'Parser', Parser ); + workerCode += 'THREE = { LoaderSupport: {}, OBJLoader2: {} };\n\n'; + workerCode += codeSerializer.serializeObject( 'THREE.LoaderSupport.Validator', THREE.LoaderSupport.Validator ); + workerCode += codeSerializer.serializeClass( 'THREE.OBJLoader2.Parser', THREE.OBJLoader2.Parser ); return workerCode; }; - this.workerSupport.validate( buildCode, 'Parser' ); + this.workerSupport.validate( buildCode, 'THREE.OBJLoader2.Parser' ); this.workerSupport.setCallbacks( scopedOnMeshLoaded, scopedOnLoad ); if ( scope.terminateWorkerOnLoad ) this.workerSupport.setTerminateRequested( true ); @@ -482,975 +480,970 @@ THREE.OBJLoader2 = (function () { } } ); - }; - + }, /** - * Parse OBJ data either from ArrayBuffer or string - * @class + * Utility method for loading an mtl file according resource description. Provide url or content. + * + * @param {string} url URL to the file + * @param {Object} content The file content as arraybuffer or text + * @param {function} onLoad Callback to be called after successful load + * @param {callback} [onProgress] A function to be called while the loading is in progress. The argument will be the XMLHttpRequest instance, which contains total and Integer bytes. + * @param {callback} [onError] A function to be called if an error occurs during loading. The function receives the error as an argument. + * @param {string} [crossOrigin] CORS value + * @param {Object} [materialOptions] Set material loading options for MTLLoader */ - var Parser = (function () { - - function Parser() { - this.callbackProgress = null; - this.callbackMeshBuilder = null; - this.contentRef = null; - this.legacyMode = false; - - this.materials = {}; - this.useAsync = false; - this.materialPerSmoothingGroup = false; - this.useOAsMesh = false; - this.useIndices = false; - this.disregardNormals = false; - - this.vertices = []; - this.colors = []; - this.normals = []; - this.uvs = []; - - this.rawMesh = { - objectName: '', - groupName: '', - activeMtlName: '', - mtllibName: '', - - // reset with new mesh - faceType: -1, - subGroups: [], - subGroupInUse: null, - smoothingGroup: { - splitMaterials: false, - normalized: -1, - real: -1 - }, - counts: { - doubleIndicesCount: 0, - faceCount: 0, - mtlCount: 0, - smoothingGroupCount: 0 - } - }; - - this.inputObjectCount = 1; - this.outputObjectCount = 1; - this.globalCounts = { - vertices: 0, - faces: 0, - doubleIndicesCount: 0, - lineByte: 0, - currentByte: 0, - totalBytes: 0 - }; - - this.logging = { - enabled: true, - debug: false - }; - } - - Parser.prototype.resetRawMesh = function () { - // faces are stored according combined index of group, material and smoothingGroup (0 or not) - this.rawMesh.subGroups = []; - this.rawMesh.subGroupInUse = null; - this.rawMesh.smoothingGroup.normalized = -1; - this.rawMesh.smoothingGroup.real = -1; - - // this default index is required as it is possible to define faces without 'g' or 'usemtl' - this.pushSmoothingGroup( 1 ); - - this.rawMesh.counts.doubleIndicesCount = 0; - this.rawMesh.counts.faceCount = 0; - this.rawMesh.counts.mtlCount = 0; - this.rawMesh.counts.smoothingGroupCount = 0; - }; - - Parser.prototype.setUseAsync = function ( useAsync ) { - this.useAsync = useAsync; - }; - - Parser.prototype.setMaterialPerSmoothingGroup = function ( materialPerSmoothingGroup ) { - this.materialPerSmoothingGroup = materialPerSmoothingGroup; - }; - - Parser.prototype.setUseOAsMesh = function ( useOAsMesh ) { - this.useOAsMesh = useOAsMesh; - }; + loadMtl: function ( url, content, onLoad, onProgress, onError, crossOrigin, materialOptions ) { + var resource = new THREE.LoaderSupport.ResourceDescriptor( url, 'MTL' ); + resource.setContent( content ); + this._loadMtl( resource, onLoad, onProgress, onError, crossOrigin, materialOptions ); + }, - Parser.prototype.setUseIndices = function ( useIndices ) { - this.useIndices = useIndices; - }; + _loadMtl: function ( resource, onLoad, onProgress, onError, crossOrigin, materialOptions ) { + if ( THREE.MTLLoader === undefined ) console.error( '"THREE.MTLLoader" is not available. "THREE.OBJLoader2" requires it for loading MTL files.' ); + if ( THREE.LoaderSupport.Validator.isValid( resource ) && this.logging.enabled ) console.time( 'Loading MTL: ' + resource.name ); - Parser.prototype.setDisregardNormals = function ( disregardNormals ) { - this.disregardNormals = disregardNormals; - }; + var materials = []; + var scope = this; + var processMaterials = function ( materialCreator ) { + var materialCreatorMaterials = []; + if ( THREE.LoaderSupport.Validator.isValid( materialCreator ) ) { - Parser.prototype.setMaterials = function ( materials ) { - this.materials = THREE.LoaderSupport.Validator.verifyInput( materials, this.materials ); - this.materials = THREE.LoaderSupport.Validator.verifyInput( this.materials, {} ); - }; + materialCreator.preload(); + materialCreatorMaterials = materialCreator.materials; + for ( var materialName in materialCreatorMaterials ) { - Parser.prototype.setCallbackMeshBuilder = function ( callbackMeshBuilder ) { - if ( ! THREE.LoaderSupport.Validator.isValid( callbackMeshBuilder ) ) { + if ( materialCreatorMaterials.hasOwnProperty( materialName ) ) { - this._throwError( 'Unable to run as no "MeshBuilder" callback is set.' ); + materials[ materialName ] = materialCreatorMaterials[ materialName ]; + } + } } - this.callbackMeshBuilder = callbackMeshBuilder; - }; - - Parser.prototype.setCallbackProgress = function ( callbackProgress ) { - this.callbackProgress = callbackProgress; - }; - Parser.prototype.setLogging = function ( enabled, debug ) { - this.logging.enabled = enabled === true; - this.logging.debug = debug === true; + if ( THREE.LoaderSupport.Validator.isValid( resource ) && scope.logging.enabled ) console.timeEnd( 'Loading MTL: ' + resource.name ); + onLoad( materials, materialCreator ); }; - Parser.prototype.configure = function () { - this.pushSmoothingGroup( 1 ); - - if ( this.logging.enabled ) { - - var matKeys = Object.keys( this.materials ); - var matNames = ( matKeys.length > 0 ) ? '\n\tmaterialNames:\n\t\t- ' + matKeys.join( '\n\t\t- ' ) : '\n\tmaterialNames: None'; - var printedConfig = 'OBJLoader2.Parser configuration:' - + matNames - + '\n\tuseAsync: ' + this.useAsync - + '\n\tmaterialPerSmoothingGroup: ' + this.materialPerSmoothingGroup - + '\n\tuseOAsMesh: ' + this.useOAsMesh - + '\n\tuseIndices: ' + this.useIndices - + '\n\tdisregardNormals: ' + this.disregardNormals - + '\n\tcallbackMeshBuilderName: ' + this.callbackMeshBuilder.name - + '\n\tcallbackProgressName: ' + this.callbackProgress.name; - console.info( printedConfig ); - } - }; + // fast-fail + if ( ! THREE.LoaderSupport.Validator.isValid( resource ) || ( ! THREE.LoaderSupport.Validator.isValid( resource.content ) && ! THREE.LoaderSupport.Validator.isValid( resource.url ) ) ) { - /** - * Parse the provided arraybuffer - * @memberOf Parser - * - * @param {Uint8Array} arrayBuffer OBJ data as Uint8Array - */ - Parser.prototype.parse = function ( arrayBuffer ) { - if ( this.logging.enabled ) console.time( 'OBJLoader2.Parser.parse' ); - this.configure(); - - var arrayBufferView = new Uint8Array( arrayBuffer ); - this.contentRef = arrayBufferView; - var length = arrayBufferView.byteLength; - this.globalCounts.totalBytes = length; - var buffer = new Array( 128 ); - - for ( var code, word = '', bufferPointer = 0, slashesCount = 0, i = 0; i < length; i++ ) { - - code = arrayBufferView[ i ]; - switch ( code ) { - // space - case 32: - if ( word.length > 0 ) buffer[ bufferPointer++ ] = word; - word = ''; - break; - // slash - case 47: - if ( word.length > 0 ) buffer[ bufferPointer++ ] = word; - slashesCount++; - word = ''; - break; - - // LF - case 10: - if ( word.length > 0 ) buffer[ bufferPointer++ ] = word; - word = ''; - this.globalCounts.lineByte = this.globalCounts.currentByte; - this.globalCounts.currentByte = i; - this.processLine( buffer, bufferPointer, slashesCount ); - bufferPointer = 0; - slashesCount = 0; - break; - - // CR - case 13: - break; - - default: - word += String.fromCharCode( code ); - break; - } - } - this.finalizeParsing(); - if ( this.logging.enabled ) console.timeEnd( 'OBJLoader2.Parser.parse' ); - }; + processMaterials(); - /** - * Parse the provided text - * @memberOf Parser - * - * @param {string} text OBJ data as string - */ - Parser.prototype.parseText = function ( text ) { - if ( this.logging.enabled ) console.time( 'OBJLoader2.Parser.parseText' ); - this.configure(); - this.legacyMode = true; - this.contentRef = text; - var length = text.length; - this.globalCounts.totalBytes = length; - var buffer = new Array( 128 ); - - for ( var char, word = '', bufferPointer = 0, slashesCount = 0, i = 0; i < length; i++ ) { - - char = text[ i ]; - switch ( char ) { - case ' ': - if ( word.length > 0 ) buffer[ bufferPointer++ ] = word; - word = ''; - break; - - case '/': - if ( word.length > 0 ) buffer[ bufferPointer++ ] = word; - slashesCount++; - word = ''; - break; - - case '\n': - if ( word.length > 0 ) buffer[ bufferPointer++ ] = word; - word = ''; - this.globalCounts.lineByte = this.globalCounts.currentByte; - this.globalCounts.currentByte = i; - this.processLine( buffer, bufferPointer, slashesCount ); - bufferPointer = 0; - slashesCount = 0; - break; - - case '\r': - break; - - default: - word += char; - } - } - this.finalizeParsing(); - if ( this.logging.enabled ) console.timeEnd( 'OBJLoader2.Parser.parseText' ); - }; + } else { - Parser.prototype.processLine = function ( buffer, bufferPointer, slashesCount ) { - if ( bufferPointer < 1 ) return; + var mtlLoader = new THREE.MTLLoader( this.manager ); + crossOrigin = THREE.LoaderSupport.Validator.verifyInput( crossOrigin, 'anonymous' ); + mtlLoader.setCrossOrigin( crossOrigin ); + mtlLoader.setResourcePath( resource.resourcePath || resource.path ); + if ( THREE.LoaderSupport.Validator.isValid( materialOptions ) ) mtlLoader.setMaterialOptions( materialOptions ); - var reconstructString = function ( content, legacyMode, start, stop ) { - var line = ''; - if ( stop > start ) { + var parseTextWithMtlLoader = function ( content ) { + var contentAsText = content; + if ( typeof( content ) !== 'string' && ! ( content instanceof String ) ) { - var i; - if ( legacyMode ) { + if ( content.length > 0 || content.byteLength > 0 ) { - for ( i = start; i < stop; i++ ) line += content[ i ]; + contentAsText = THREE.LoaderUtils.decodeText( content ); } else { - - for ( i = start; i < stop; i++ ) line += String.fromCharCode( content[ i ] ); - + this._throwError( 'Unable to parse mtl as it it seems to be neither a String, an Array or an ArrayBuffer!' ); } - line = line.trim(); } - return line; + processMaterials( mtlLoader.parse( contentAsText ) ); }; - var bufferLength, length, i, lineDesignation; - lineDesignation = buffer [ 0 ]; - switch ( lineDesignation ) { - case 'v': - this.vertices.push( parseFloat( buffer[ 1 ] ) ); - this.vertices.push( parseFloat( buffer[ 2 ] ) ); - this.vertices.push( parseFloat( buffer[ 3 ] ) ); - if ( bufferPointer > 4 ) { + if ( THREE.LoaderSupport.Validator.isValid( resource.content ) ) { - this.colors.push( parseFloat( buffer[ 4 ] ) ); - this.colors.push( parseFloat( buffer[ 5 ] ) ); - this.colors.push( parseFloat( buffer[ 6 ] ) ); + parseTextWithMtlLoader( resource.content ); + + } else if ( THREE.LoaderSupport.Validator.isValid( resource.url ) ) { + var fileLoader = new THREE.FileLoader( this.manager ); + if ( ! THREE.LoaderSupport.Validator.isValid( onError ) ) { + onError = function ( event ) { + scope._onError( event ); } - break; + } + if ( ! THREE.LoaderSupport.Validator.isValid( onProgress ) ) { + var numericalValueRef = 0; + var numericalValue = 0; + onProgress = function ( event ) { + if ( ! event.lengthComputable ) return; - case 'vt': - this.uvs.push( parseFloat( buffer[ 1 ] ) ); - this.uvs.push( parseFloat( buffer[ 2 ] ) ); - break; + numericalValue = event.loaded / event.total; + if ( numericalValue > numericalValueRef ) { - case 'vn': - this.normals.push( parseFloat( buffer[ 1 ] ) ); - this.normals.push( parseFloat( buffer[ 2 ] ) ); - this.normals.push( parseFloat( buffer[ 3 ] ) ); - break; + numericalValueRef = numericalValue; + var output = 'Download of "' + resource.url + '": ' + ( numericalValue * 100 ).toFixed( 2 ) + '%'; + scope.onProgress( 'progressLoad', output, numericalValue ); - case 'f': - bufferLength = bufferPointer - 1; + } + }; + } - // "f vertex ..." - if ( slashesCount === 0 ) { + fileLoader.load( resource.url, parseTextWithMtlLoader, onProgress, onError ); - this.checkFaceType( 0 ); - for ( i = 2, length = bufferLength; i < length; i ++ ) { + } + } + } +}; - this.buildFace( buffer[ 1 ] ); - this.buildFace( buffer[ i ] ); - this.buildFace( buffer[ i + 1 ] ); - } +/** + * Parse OBJ data either from ArrayBuffer or string + * @class + */ +THREE.OBJLoader2.Parser = function () { + this.callbackProgress = null; + this.callbackMeshBuilder = null; + this.contentRef = null; + this.legacyMode = false; + + this.materials = {}; + this.useAsync = false; + this.materialPerSmoothingGroup = false; + this.useOAsMesh = false; + this.useIndices = false; + this.disregardNormals = false; + + this.vertices = []; + this.colors = []; + this.normals = []; + this.uvs = []; + + this.rawMesh = { + objectName: '', + groupName: '', + activeMtlName: '', + mtllibName: '', + + // reset with new mesh + faceType: -1, + subGroups: [], + subGroupInUse: null, + smoothingGroup: { + splitMaterials: false, + normalized: -1, + real: -1 + }, + counts: { + doubleIndicesCount: 0, + faceCount: 0, + mtlCount: 0, + smoothingGroupCount: 0 + } + }; - // "f vertex/uv ..." - } else if ( bufferLength === slashesCount * 2 ) { + this.inputObjectCount = 1; + this.outputObjectCount = 1; + this.globalCounts = { + vertices: 0, + faces: 0, + doubleIndicesCount: 0, + lineByte: 0, + currentByte: 0, + totalBytes: 0 + }; - this.checkFaceType( 1 ); - for ( i = 3, length = bufferLength - 2; i < length; i += 2 ) { + this.logging = { + enabled: true, + debug: false + }; +}; - this.buildFace( buffer[ 1 ], buffer[ 2 ] ); - this.buildFace( buffer[ i ], buffer[ i + 1 ] ); - this.buildFace( buffer[ i + 2 ], buffer[ i + 3 ] ); - } +THREE.OBJLoader2.Parser.prototype = { - // "f vertex/uv/normal ..." - } else if ( bufferLength * 2 === slashesCount * 3 ) { + constructor: THREE.OBJLoader2.Parser, - this.checkFaceType( 2 ); - for ( i = 4, length = bufferLength - 3; i < length; i += 3 ) { + resetRawMesh: function () { + // faces are stored according combined index of group, material and smoothingGroup (0 or not) + this.rawMesh.subGroups = []; + this.rawMesh.subGroupInUse = null; + this.rawMesh.smoothingGroup.normalized = -1; + this.rawMesh.smoothingGroup.real = -1; - this.buildFace( buffer[ 1 ], buffer[ 2 ], buffer[ 3 ] ); - this.buildFace( buffer[ i ], buffer[ i + 1 ], buffer[ i + 2 ] ); - this.buildFace( buffer[ i + 3 ], buffer[ i + 4 ], buffer[ i + 5 ] ); + // this default index is required as it is possible to define faces without 'g' or 'usemtl' + this.pushSmoothingGroup( 1 ); - } + this.rawMesh.counts.doubleIndicesCount = 0; + this.rawMesh.counts.faceCount = 0; + this.rawMesh.counts.mtlCount = 0; + this.rawMesh.counts.smoothingGroupCount = 0; + }, - // "f vertex//normal ..." - } else { + setUseAsync: function ( useAsync ) { + this.useAsync = useAsync; + }, - this.checkFaceType( 3 ); - for ( i = 3, length = bufferLength - 2; i < length; i += 2 ) { + setMaterialPerSmoothingGroup: function ( materialPerSmoothingGroup ) { + this.materialPerSmoothingGroup = materialPerSmoothingGroup; + }, - this.buildFace( buffer[ 1 ], undefined, buffer[ 2 ] ); - this.buildFace( buffer[ i ], undefined, buffer[ i + 1 ] ); - this.buildFace( buffer[ i + 2 ], undefined, buffer[ i + 3 ] ); + setUseOAsMesh: function ( useOAsMesh ) { + this.useOAsMesh = useOAsMesh; + }, - } + setUseIndices: function ( useIndices ) { + this.useIndices = useIndices; + }, - } - break; + setDisregardNormals: function ( disregardNormals ) { + this.disregardNormals = disregardNormals; + }, - case 'l': - case 'p': - bufferLength = bufferPointer - 1; - if ( bufferLength === slashesCount * 2 ) { + setMaterials: function ( materials ) { + this.materials = THREE.LoaderSupport.Validator.verifyInput( materials, this.materials ); + this.materials = THREE.LoaderSupport.Validator.verifyInput( this.materials, {} ); + }, - this.checkFaceType( 4 ); - for ( i = 1, length = bufferLength + 1; i < length; i += 2 ) this.buildFace( buffer[ i ], buffer[ i + 1 ] ); + setCallbackMeshBuilder: function ( callbackMeshBuilder ) { + if ( ! THREE.LoaderSupport.Validator.isValid( callbackMeshBuilder ) ) { - } else { + this._throwError( 'Unable to run as no "MeshBuilder" callback is set.' ); - this.checkFaceType( ( lineDesignation === 'l' ) ? 5 : 6 ); - for ( i = 1, length = bufferLength + 1; i < length; i ++ ) this.buildFace( buffer[ i ] ); + } + this.callbackMeshBuilder = callbackMeshBuilder; + }, - } - break; + setCallbackProgress: function ( callbackProgress ) { + this.callbackProgress = callbackProgress; + }, + + setLogging: function ( enabled, debug ) { + this.logging.enabled = enabled === true; + this.logging.debug = debug === true; + }, + + configure: function () { + this.pushSmoothingGroup( 1 ); + + if ( this.logging.enabled ) { + + var matKeys = Object.keys( this.materials ); + var matNames = ( matKeys.length > 0 ) ? '\n\tmaterialNames:\n\t\t- ' + matKeys.join( '\n\t\t- ' ) : '\n\tmaterialNames: None'; + var printedConfig = 'OBJLoader2.Parser configuration:' + + matNames + + '\n\tuseAsync: ' + this.useAsync + + '\n\tmaterialPerSmoothingGroup: ' + this.materialPerSmoothingGroup + + '\n\tuseOAsMesh: ' + this.useOAsMesh + + '\n\tuseIndices: ' + this.useIndices + + '\n\tdisregardNormals: ' + this.disregardNormals + + '\n\tcallbackMeshBuilderName: ' + this.callbackMeshBuilder.name + + '\n\tcallbackProgressName: ' + this.callbackProgress.name; + console.info( printedConfig ); + } + }, - case 's': - this.pushSmoothingGroup( buffer[ 1 ] ); + /** + * Parse the provided arraybuffer + * + * @param {Uint8Array} arrayBuffer OBJ data as Uint8Array + */ + parse: function ( arrayBuffer ) { + if ( this.logging.enabled ) console.time( 'OBJLoader2.Parser.parse' ); + this.configure(); + + var arrayBufferView = new Uint8Array( arrayBuffer ); + this.contentRef = arrayBufferView; + var length = arrayBufferView.byteLength; + this.globalCounts.totalBytes = length; + var buffer = new Array( 128 ); + + for ( var code, word = '', bufferPointer = 0, slashesCount = 0, i = 0; i < length; i++ ) { + + code = arrayBufferView[ i ]; + switch ( code ) { + // space + case 32: + if ( word.length > 0 ) buffer[ bufferPointer++ ] = word; + word = ''; + break; + // slash + case 47: + if ( word.length > 0 ) buffer[ bufferPointer++ ] = word; + slashesCount++; + word = ''; break; - case 'g': - // 'g' leads to creation of mesh if valid data (faces declaration was done before), otherwise only groupName gets set - this.processCompletedMesh(); - this.rawMesh.groupName = reconstructString( this.contentRef, this.legacyMode, this.globalCounts.lineByte + 2, this.globalCounts.currentByte ); + // LF + case 10: + if ( word.length > 0 ) buffer[ bufferPointer++ ] = word; + word = ''; + this.globalCounts.lineByte = this.globalCounts.currentByte; + this.globalCounts.currentByte = i; + this.processLine( buffer, bufferPointer, slashesCount ); + bufferPointer = 0; + slashesCount = 0; break; - case 'o': - // 'o' is meta-information and usually does not result in creation of new meshes, but can be enforced with "useOAsMesh" - if ( this.useOAsMesh ) this.processCompletedMesh(); - this.rawMesh.objectName = reconstructString( this.contentRef, this.legacyMode, this.globalCounts.lineByte + 2, this.globalCounts.currentByte ); + // CR + case 13: break; - case 'mtllib': - this.rawMesh.mtllibName = reconstructString( this.contentRef, this.legacyMode, this.globalCounts.lineByte + 7, this.globalCounts.currentByte ); + default: + word += String.fromCharCode( code ); break; + } + } + this.finalizeParsing(); + if ( this.logging.enabled ) console.timeEnd( 'OBJLoader2.Parser.parse' ); + }, - case 'usemtl': - var mtlName = reconstructString( this.contentRef, this.legacyMode, this.globalCounts.lineByte + 7, this.globalCounts.currentByte ); - if ( mtlName !== '' && this.rawMesh.activeMtlName !== mtlName ) { + /** + * Parse the provided text + * + * @param {string} text OBJ data as string + */ + parseText: function ( text ) { + if ( this.logging.enabled ) console.time( 'OBJLoader2.Parser.parseText' ); + this.configure(); + this.legacyMode = true; + this.contentRef = text; + var length = text.length; + this.globalCounts.totalBytes = length; + var buffer = new Array( 128 ); + + for ( var char, word = '', bufferPointer = 0, slashesCount = 0, i = 0; i < length; i++ ) { + + char = text[ i ]; + switch ( char ) { + case ' ': + if ( word.length > 0 ) buffer[ bufferPointer++ ] = word; + word = ''; + break; - this.rawMesh.activeMtlName = mtlName; - this.rawMesh.counts.mtlCount++; - this.checkSubGroup(); + case '/': + if ( word.length > 0 ) buffer[ bufferPointer++ ] = word; + slashesCount++; + word = ''; + break; - } + case '\n': + if ( word.length > 0 ) buffer[ bufferPointer++ ] = word; + word = ''; + this.globalCounts.lineByte = this.globalCounts.currentByte; + this.globalCounts.currentByte = i; + this.processLine( buffer, bufferPointer, slashesCount ); + bufferPointer = 0; + slashesCount = 0; break; - default: + case '\r': break; - } - }; - Parser.prototype.pushSmoothingGroup = function ( smoothingGroup ) { - var smoothingGroupInt = parseInt( smoothingGroup ); - if ( isNaN( smoothingGroupInt ) ) { - smoothingGroupInt = smoothingGroup === "off" ? 0 : 1; + default: + word += char; } + } + this.finalizeParsing(); + if ( this.logging.enabled ) console.timeEnd( 'OBJLoader2.Parser.parseText' ); + }, - var smoothCheck = this.rawMesh.smoothingGroup.normalized; - this.rawMesh.smoothingGroup.normalized = this.rawMesh.smoothingGroup.splitMaterials ? smoothingGroupInt : ( smoothingGroupInt === 0 ) ? 0 : 1; - this.rawMesh.smoothingGroup.real = smoothingGroupInt; + processLine: function ( buffer, bufferPointer, slashesCount ) { + if ( bufferPointer < 1 ) return; - if ( smoothCheck !== smoothingGroupInt ) { + var reconstructString = function ( content, legacyMode, start, stop ) { + var line = ''; + if ( stop > start ) { - this.rawMesh.counts.smoothingGroupCount++; - this.checkSubGroup(); + var i; + if ( legacyMode ) { - } - }; + for ( i = start; i < stop; i++ ) line += content[ i ]; - /** - * Expanded faceTypes include all four face types, both line types and the point type - * faceType = 0: "f vertex ..." - * faceType = 1: "f vertex/uv ..." - * faceType = 2: "f vertex/uv/normal ..." - * faceType = 3: "f vertex//normal ..." - * faceType = 4: "l vertex/uv ..." or "l vertex ..." - * faceType = 5: "l vertex ..." - * faceType = 6: "p vertex ..." - */ - Parser.prototype.checkFaceType = function ( faceType ) { - if ( this.rawMesh.faceType !== faceType ) { + } else { - this.processCompletedMesh(); - this.rawMesh.faceType = faceType; - this.checkSubGroup(); - } - }; + for ( i = start; i < stop; i++ ) line += String.fromCharCode( content[ i ] ); - Parser.prototype.checkSubGroup = function () { - var index = this.rawMesh.activeMtlName + '|' + this.rawMesh.smoothingGroup.normalized; - this.rawMesh.subGroupInUse = this.rawMesh.subGroups[ index ]; - - if ( ! THREE.LoaderSupport.Validator.isValid( this.rawMesh.subGroupInUse ) ) { - - this.rawMesh.subGroupInUse = { - index: index, - objectName: this.rawMesh.objectName, - groupName: this.rawMesh.groupName, - materialName: this.rawMesh.activeMtlName, - smoothingGroup: this.rawMesh.smoothingGroup.normalized, - vertices: [], - indexMappingsCount: 0, - indexMappings: [], - indices: [], - colors: [], - uvs: [], - normals: [] - }; - this.rawMesh.subGroups[ index ] = this.rawMesh.subGroupInUse; + } + line = line.trim(); } + return line; }; - Parser.prototype.buildFace = function ( faceIndexV, faceIndexU, faceIndexN ) { - if ( this.disregardNormals ) faceIndexN = undefined; - var scope = this; - var updateSubGroupInUse = function () { + var bufferLength, length, i, lineDesignation; + lineDesignation = buffer [ 0 ]; + switch ( lineDesignation ) { + case 'v': + this.vertices.push( parseFloat( buffer[ 1 ] ) ); + this.vertices.push( parseFloat( buffer[ 2 ] ) ); + this.vertices.push( parseFloat( buffer[ 3 ] ) ); + if ( bufferPointer > 4 ) { - var faceIndexVi = parseInt( faceIndexV ); - var indexPointerV = 3 * ( faceIndexVi > 0 ? faceIndexVi - 1 : faceIndexVi + scope.vertices.length / 3 ); + this.colors.push( parseFloat( buffer[ 4 ] ) ); + this.colors.push( parseFloat( buffer[ 5 ] ) ); + this.colors.push( parseFloat( buffer[ 6 ] ) ); - var vertices = scope.rawMesh.subGroupInUse.vertices; - vertices.push( scope.vertices[ indexPointerV++ ] ); - vertices.push( scope.vertices[ indexPointerV++ ] ); - vertices.push( scope.vertices[ indexPointerV ] ); + } + break; - var indexPointerC = scope.colors.length > 0 ? indexPointerV + 1 : null; - if ( indexPointerC !== null ) { + case 'vt': + this.uvs.push( parseFloat( buffer[ 1 ] ) ); + this.uvs.push( parseFloat( buffer[ 2 ] ) ); + break; - var colors = scope.rawMesh.subGroupInUse.colors; - colors.push( scope.colors[ indexPointerC++ ] ); - colors.push( scope.colors[ indexPointerC++ ] ); - colors.push( scope.colors[ indexPointerC ] ); + case 'vn': + this.normals.push( parseFloat( buffer[ 1 ] ) ); + this.normals.push( parseFloat( buffer[ 2 ] ) ); + this.normals.push( parseFloat( buffer[ 3 ] ) ); + break; - } - if ( faceIndexU ) { + case 'f': + bufferLength = bufferPointer - 1; - var faceIndexUi = parseInt( faceIndexU ); - var indexPointerU = 2 * ( faceIndexUi > 0 ? faceIndexUi - 1 : faceIndexUi + scope.uvs.length / 2 ); - var uvs = scope.rawMesh.subGroupInUse.uvs; - uvs.push( scope.uvs[ indexPointerU++ ] ); - uvs.push( scope.uvs[ indexPointerU ] ); + // "f vertex ..." + if ( slashesCount === 0 ) { - } - if ( faceIndexN ) { + this.checkFaceType( 0 ); + for ( i = 2, length = bufferLength; i < length; i ++ ) { - var faceIndexNi = parseInt( faceIndexN ); - var indexPointerN = 3 * ( faceIndexNi > 0 ? faceIndexNi - 1 : faceIndexNi + scope.normals.length / 3 ); - var normals = scope.rawMesh.subGroupInUse.normals; - normals.push( scope.normals[ indexPointerN++ ] ); - normals.push( scope.normals[ indexPointerN++ ] ); - normals.push( scope.normals[ indexPointerN ] ); + this.buildFace( buffer[ 1 ] ); + this.buildFace( buffer[ i ] ); + this.buildFace( buffer[ i + 1 ] ); - } - }; + } - if ( this.useIndices ) { + // "f vertex/uv ..." + } else if ( bufferLength === slashesCount * 2 ) { - var mappingName = faceIndexV + ( faceIndexU ? '_' + faceIndexU : '_n' ) + ( faceIndexN ? '_' + faceIndexN : '_n' ); - var indicesPointer = this.rawMesh.subGroupInUse.indexMappings[ mappingName ]; - if ( THREE.LoaderSupport.Validator.isValid( indicesPointer ) ) { + this.checkFaceType( 1 ); + for ( i = 3, length = bufferLength - 2; i < length; i += 2 ) { - this.rawMesh.counts.doubleIndicesCount++; + this.buildFace( buffer[ 1 ], buffer[ 2 ] ); + this.buildFace( buffer[ i ], buffer[ i + 1 ] ); + this.buildFace( buffer[ i + 2 ], buffer[ i + 3 ] ); - } else { + } - indicesPointer = this.rawMesh.subGroupInUse.vertices.length / 3; - updateSubGroupInUse(); - this.rawMesh.subGroupInUse.indexMappings[ mappingName ] = indicesPointer; - this.rawMesh.subGroupInUse.indexMappingsCount++; + // "f vertex/uv/normal ..." + } else if ( bufferLength * 2 === slashesCount * 3 ) { - } - this.rawMesh.subGroupInUse.indices.push( indicesPointer ); + this.checkFaceType( 2 ); + for ( i = 4, length = bufferLength - 3; i < length; i += 3 ) { - } else { + this.buildFace( buffer[ 1 ], buffer[ 2 ], buffer[ 3 ] ); + this.buildFace( buffer[ i ], buffer[ i + 1 ], buffer[ i + 2 ] ); + this.buildFace( buffer[ i + 3 ], buffer[ i + 4 ], buffer[ i + 5 ] ); - updateSubGroupInUse(); + } - } - this.rawMesh.counts.faceCount++; - }; + // "f vertex//normal ..." + } else { - Parser.prototype.createRawMeshReport = function ( inputObjectCount ) { - return 'Input Object number: ' + inputObjectCount + - '\n\tObject name: ' + this.rawMesh.objectName + - '\n\tGroup name: ' + this.rawMesh.groupName + - '\n\tMtllib name: ' + this.rawMesh.mtllibName + - '\n\tVertex count: ' + this.vertices.length / 3 + - '\n\tNormal count: ' + this.normals.length / 3 + - '\n\tUV count: ' + this.uvs.length / 2 + - '\n\tSmoothingGroup count: ' + this.rawMesh.counts.smoothingGroupCount + - '\n\tMaterial count: ' + this.rawMesh.counts.mtlCount + - '\n\tReal MeshOutputGroup count: ' + this.rawMesh.subGroups.length; - }; + this.checkFaceType( 3 ); + for ( i = 3, length = bufferLength - 2; i < length; i += 2 ) { - /** - * Clear any empty subGroup and calculate absolute vertex, normal and uv counts - */ - Parser.prototype.finalizeRawMesh = function () { - var meshOutputGroupTemp = []; - var meshOutputGroup; - var absoluteVertexCount = 0; - var absoluteIndexMappingsCount = 0; - var absoluteIndexCount = 0; - var absoluteColorCount = 0; - var absoluteNormalCount = 0; - var absoluteUvCount = 0; - var indices; - for ( var name in this.rawMesh.subGroups ) { - - meshOutputGroup = this.rawMesh.subGroups[ name ]; - if ( meshOutputGroup.vertices.length > 0 ) { - - indices = meshOutputGroup.indices; - if ( indices.length > 0 && absoluteIndexMappingsCount > 0 ) { - - for ( var i in indices ) indices[ i ] = indices[ i ] + absoluteIndexMappingsCount; + this.buildFace( buffer[ 1 ], undefined, buffer[ 2 ] ); + this.buildFace( buffer[ i ], undefined, buffer[ i + 1 ] ); + this.buildFace( buffer[ i + 2 ], undefined, buffer[ i + 3 ] ); } - meshOutputGroupTemp.push( meshOutputGroup ); - absoluteVertexCount += meshOutputGroup.vertices.length; - absoluteIndexMappingsCount += meshOutputGroup.indexMappingsCount; - absoluteIndexCount += meshOutputGroup.indices.length; - absoluteColorCount += meshOutputGroup.colors.length; - absoluteUvCount += meshOutputGroup.uvs.length; - absoluteNormalCount += meshOutputGroup.normals.length; } - } + break; - // do not continue if no result - var result = null; - if ( meshOutputGroupTemp.length > 0 ) { - - result = { - name: this.rawMesh.groupName !== '' ? this.rawMesh.groupName : this.rawMesh.objectName, - subGroups: meshOutputGroupTemp, - absoluteVertexCount: absoluteVertexCount, - absoluteIndexCount: absoluteIndexCount, - absoluteColorCount: absoluteColorCount, - absoluteNormalCount: absoluteNormalCount, - absoluteUvCount: absoluteUvCount, - faceCount: this.rawMesh.counts.faceCount, - doubleIndicesCount: this.rawMesh.counts.doubleIndicesCount - }; + case 'l': + case 'p': + bufferLength = bufferPointer - 1; + if ( bufferLength === slashesCount * 2 ) { - } - return result; - }; + this.checkFaceType( 4 ); + for ( i = 1, length = bufferLength + 1; i < length; i += 2 ) this.buildFace( buffer[ i ], buffer[ i + 1 ] ); - Parser.prototype.processCompletedMesh = function () { - var result = this.finalizeRawMesh(); - if ( THREE.LoaderSupport.Validator.isValid( result ) ) { - - if ( this.colors.length > 0 && this.colors.length !== this.vertices.length ) { + } else { - this._throwError( 'Vertex Colors were detected, but vertex count and color count do not match!' ); + this.checkFaceType( ( lineDesignation === 'l' ) ? 5 : 6 ); + for ( i = 1, length = bufferLength + 1; i < length; i ++ ) this.buildFace( buffer[ i ] ); } - if ( this.logging.enabled && this.logging.debug ) console.debug( this.createRawMeshReport( this.inputObjectCount ) ); - this.inputObjectCount++; + break; - this.buildMesh( result ); - var progressBytesPercent = this.globalCounts.currentByte / this.globalCounts.totalBytes; - this.callbackProgress( 'Completed [o: ' + this.rawMesh.objectName + ' g:' + this.rawMesh.groupName + '] Total progress: ' + ( progressBytesPercent * 100 ).toFixed( 2 ) + '%', progressBytesPercent ); - this.resetRawMesh(); - return true; + case 's': + this.pushSmoothingGroup( buffer[ 1 ] ); + break; - } else { - - return false; - } - }; + case 'g': + // 'g' leads to creation of mesh if valid data (faces declaration was done before), otherwise only groupName gets set + this.processCompletedMesh(); + this.rawMesh.groupName = reconstructString( this.contentRef, this.legacyMode, this.globalCounts.lineByte + 2, this.globalCounts.currentByte ); + break; - /** - * SubGroups are transformed to too intermediate format that is forwarded to the MeshBuilder. - * It is ensured that SubGroups only contain objects with vertices (no need to check). - * - * @param result - */ - Parser.prototype.buildMesh = function ( result ) { - var meshOutputGroups = result.subGroups; - - var vertexFA = new Float32Array( result.absoluteVertexCount ); - this.globalCounts.vertices += result.absoluteVertexCount / 3; - this.globalCounts.faces += result.faceCount; - this.globalCounts.doubleIndicesCount += result.doubleIndicesCount; - var indexUA = ( result.absoluteIndexCount > 0 ) ? new Uint32Array( result.absoluteIndexCount ) : null; - var colorFA = ( result.absoluteColorCount > 0 ) ? new Float32Array( result.absoluteColorCount ) : null; - var normalFA = ( result.absoluteNormalCount > 0 ) ? new Float32Array( result.absoluteNormalCount ) : null; - var uvFA = ( result.absoluteUvCount > 0 ) ? new Float32Array( result.absoluteUvCount ) : null; - var haveVertexColors = THREE.LoaderSupport.Validator.isValid( colorFA ); - - var meshOutputGroup; - var materialNames = []; - - var createMultiMaterial = ( meshOutputGroups.length > 1 ); - var materialIndex = 0; - var materialIndexMapping = []; - var selectedMaterialIndex; - var materialGroup; - var materialGroups = []; - - var vertexFAOffset = 0; - var indexUAOffset = 0; - var colorFAOffset = 0; - var normalFAOffset = 0; - var uvFAOffset = 0; - var materialGroupOffset = 0; - var materialGroupLength = 0; - - var materialOrg, material, materialName, materialNameOrg; - // only one specific face type - for ( var oodIndex in meshOutputGroups ) { - - if ( ! meshOutputGroups.hasOwnProperty( oodIndex ) ) continue; - meshOutputGroup = meshOutputGroups[ oodIndex ]; - - materialNameOrg = meshOutputGroup.materialName; - if ( this.rawMesh.faceType < 4 ) { - - materialName = materialNameOrg + ( haveVertexColors ? '_vertexColor' : '' ) + ( meshOutputGroup.smoothingGroup === 0 ? '_flat' : '' ); + case 'o': + // 'o' is meta-information and usually does not result in creation of new meshes, but can be enforced with "useOAsMesh" + if ( this.useOAsMesh ) this.processCompletedMesh(); + this.rawMesh.objectName = reconstructString( this.contentRef, this.legacyMode, this.globalCounts.lineByte + 2, this.globalCounts.currentByte ); + break; + case 'mtllib': + this.rawMesh.mtllibName = reconstructString( this.contentRef, this.legacyMode, this.globalCounts.lineByte + 7, this.globalCounts.currentByte ); + break; - } else { + case 'usemtl': + var mtlName = reconstructString( this.contentRef, this.legacyMode, this.globalCounts.lineByte + 7, this.globalCounts.currentByte ); + if ( mtlName !== '' && this.rawMesh.activeMtlName !== mtlName ) { - materialName = this.rawMesh.faceType === 6 ? 'defaultPointMaterial' : 'defaultLineMaterial'; + this.rawMesh.activeMtlName = mtlName; + this.rawMesh.counts.mtlCount++; + this.checkSubGroup(); } - materialOrg = this.materials[ materialNameOrg ]; - material = this.materials[ materialName ]; + break; - // both original and derived names do not lead to an existing material => need to use a default material - if ( ! THREE.LoaderSupport.Validator.isValid( materialOrg ) && ! THREE.LoaderSupport.Validator.isValid( material ) ) { + default: + break; + } + }, - var defaultMaterialName = haveVertexColors ? 'defaultVertexColorMaterial' : 'defaultMaterial'; - materialOrg = this.materials[ defaultMaterialName ]; - if ( this.logging.enabled ) console.warn( 'object_group "' + meshOutputGroup.objectName + '_' + - meshOutputGroup.groupName + '" was defined with unresolvable material "' + - materialNameOrg + '"! Assigning "' + defaultMaterialName + '".' ); - materialNameOrg = defaultMaterialName; + pushSmoothingGroup: function ( smoothingGroup ) { + var smoothingGroupInt = parseInt( smoothingGroup ); + if ( isNaN( smoothingGroupInt ) ) { + smoothingGroupInt = smoothingGroup === "off" ? 0 : 1; + } - // if names are identical then there is no need for later manipulation - if ( materialNameOrg === materialName ) { + var smoothCheck = this.rawMesh.smoothingGroup.normalized; + this.rawMesh.smoothingGroup.normalized = this.rawMesh.smoothingGroup.splitMaterials ? smoothingGroupInt : ( smoothingGroupInt === 0 ) ? 0 : 1; + this.rawMesh.smoothingGroup.real = smoothingGroupInt; - material = materialOrg; - materialName = defaultMaterialName; + if ( smoothCheck !== smoothingGroupInt ) { - } + this.rawMesh.counts.smoothingGroupCount++; + this.checkSubGroup(); - } - if ( ! THREE.LoaderSupport.Validator.isValid( material ) ) { - - var materialCloneInstructions = { - materialNameOrg: materialNameOrg, - materialName: materialName, - materialProperties: { - vertexColors: haveVertexColors ? 2 : 0, - flatShading: meshOutputGroup.smoothingGroup === 0 - } - }; - var payload = { - cmd: 'materialData', - materials: { - materialCloneInstructions: materialCloneInstructions - } - }; - this.callbackMeshBuilder( payload ); + } + }, - // fake entry for async; sync Parser always works on material references (Builder update directly visible here) - if ( this.useAsync ) this.materials[ materialName ] = materialCloneInstructions; + /** + * Expanded faceTypes include all four face types, both line types and the point type + * faceType = 0: "f vertex ..." + * faceType = 1: "f vertex/uv ..." + * faceType = 2: "f vertex/uv/normal ..." + * faceType = 3: "f vertex//normal ..." + * faceType = 4: "l vertex/uv ..." or "l vertex ..." + * faceType = 5: "l vertex ..." + * faceType = 6: "p vertex ..." + */ + checkFaceType: function ( faceType ) { + if ( this.rawMesh.faceType !== faceType ) { - } + this.processCompletedMesh(); + this.rawMesh.faceType = faceType; + this.checkSubGroup(); + + } + }, + + checkSubGroup: function () { + var index = this.rawMesh.activeMtlName + '|' + this.rawMesh.smoothingGroup.normalized; + this.rawMesh.subGroupInUse = this.rawMesh.subGroups[ index ]; + + if ( ! THREE.LoaderSupport.Validator.isValid( this.rawMesh.subGroupInUse ) ) { + + this.rawMesh.subGroupInUse = { + index: index, + objectName: this.rawMesh.objectName, + groupName: this.rawMesh.groupName, + materialName: this.rawMesh.activeMtlName, + smoothingGroup: this.rawMesh.smoothingGroup.normalized, + vertices: [], + indexMappingsCount: 0, + indexMappings: [], + indices: [], + colors: [], + uvs: [], + normals: [] + }; + this.rawMesh.subGroups[ index ] = this.rawMesh.subGroupInUse; + + } + }, - if ( createMultiMaterial ) { + buildFace: function ( faceIndexV, faceIndexU, faceIndexN ) { + if ( this.disregardNormals ) faceIndexN = undefined; + var scope = this; + var updateSubGroupInUse = function () { - // re-use material if already used before. Reduces materials array size and eliminates duplicates - selectedMaterialIndex = materialIndexMapping[ materialName ]; - if ( ! selectedMaterialIndex ) { + var faceIndexVi = parseInt( faceIndexV ); + var indexPointerV = 3 * ( faceIndexVi > 0 ? faceIndexVi - 1 : faceIndexVi + scope.vertices.length / 3 ); + var indexPointerC = scope.colors.length > 0 ? indexPointerV : null; - selectedMaterialIndex = materialIndex; - materialIndexMapping[ materialName ] = materialIndex; - materialNames.push( materialName ); - materialIndex++; + var vertices = scope.rawMesh.subGroupInUse.vertices; + vertices.push( scope.vertices[ indexPointerV++ ] ); + vertices.push( scope.vertices[ indexPointerV++ ] ); + vertices.push( scope.vertices[ indexPointerV ] ); - } - materialGroupLength = this.useIndices ? meshOutputGroup.indices.length : meshOutputGroup.vertices.length / 3; - materialGroup = { - start: materialGroupOffset, - count: materialGroupLength, - index: selectedMaterialIndex - }; - materialGroups.push( materialGroup ); - materialGroupOffset += materialGroupLength; + if ( indexPointerC !== null ) { - } else { + var colors = scope.rawMesh.subGroupInUse.colors; + colors.push( scope.colors[ indexPointerC++ ] ); + colors.push( scope.colors[ indexPointerC++ ] ); + colors.push( scope.colors[ indexPointerC ] ); - materialNames.push( materialName ); + } + if ( faceIndexU ) { - } + var faceIndexUi = parseInt( faceIndexU ); + var indexPointerU = 2 * ( faceIndexUi > 0 ? faceIndexUi - 1 : faceIndexUi + scope.uvs.length / 2 ); + var uvs = scope.rawMesh.subGroupInUse.uvs; + uvs.push( scope.uvs[ indexPointerU++ ] ); + uvs.push( scope.uvs[ indexPointerU ] ); - vertexFA.set( meshOutputGroup.vertices, vertexFAOffset ); - vertexFAOffset += meshOutputGroup.vertices.length; + } + if ( faceIndexN ) { - if ( indexUA ) { + var faceIndexNi = parseInt( faceIndexN ); + var indexPointerN = 3 * ( faceIndexNi > 0 ? faceIndexNi - 1 : faceIndexNi + scope.normals.length / 3 ); + var normals = scope.rawMesh.subGroupInUse.normals; + normals.push( scope.normals[ indexPointerN++ ] ); + normals.push( scope.normals[ indexPointerN++ ] ); + normals.push( scope.normals[ indexPointerN ] ); - indexUA.set( meshOutputGroup.indices, indexUAOffset ); - indexUAOffset += meshOutputGroup.indices.length; + } + }; - } + if ( this.useIndices ) { - if ( colorFA ) { + var mappingName = faceIndexV + ( faceIndexU ? '_' + faceIndexU : '_n' ) + ( faceIndexN ? '_' + faceIndexN : '_n' ); + var indicesPointer = this.rawMesh.subGroupInUse.indexMappings[ mappingName ]; + if ( THREE.LoaderSupport.Validator.isValid( indicesPointer ) ) { - colorFA.set( meshOutputGroup.colors, colorFAOffset ); - colorFAOffset += meshOutputGroup.colors.length; + this.rawMesh.counts.doubleIndicesCount++; - } + } else { - if ( normalFA ) { + indicesPointer = this.rawMesh.subGroupInUse.vertices.length / 3; + updateSubGroupInUse(); + this.rawMesh.subGroupInUse.indexMappings[ mappingName ] = indicesPointer; + this.rawMesh.subGroupInUse.indexMappingsCount++; - normalFA.set( meshOutputGroup.normals, normalFAOffset ); - normalFAOffset += meshOutputGroup.normals.length; + } + this.rawMesh.subGroupInUse.indices.push( indicesPointer ); - } - if ( uvFA ) { + } else { - uvFA.set( meshOutputGroup.uvs, uvFAOffset ); - uvFAOffset += meshOutputGroup.uvs.length; + updateSubGroupInUse(); - } + } + this.rawMesh.counts.faceCount++; + }, + + createRawMeshReport: function ( inputObjectCount ) { + return 'Input Object number: ' + inputObjectCount + + '\n\tObject name: ' + this.rawMesh.objectName + + '\n\tGroup name: ' + this.rawMesh.groupName + + '\n\tMtllib name: ' + this.rawMesh.mtllibName + + '\n\tVertex count: ' + this.vertices.length / 3 + + '\n\tNormal count: ' + this.normals.length / 3 + + '\n\tUV count: ' + this.uvs.length / 2 + + '\n\tSmoothingGroup count: ' + this.rawMesh.counts.smoothingGroupCount + + '\n\tMaterial count: ' + this.rawMesh.counts.mtlCount + + '\n\tReal MeshOutputGroup count: ' + this.rawMesh.subGroups.length; + }, + + /** + * Clear any empty subGroup and calculate absolute vertex, normal and uv counts + */ + finalizeRawMesh: function () { + var meshOutputGroupTemp = []; + var meshOutputGroup; + var absoluteVertexCount = 0; + var absoluteIndexMappingsCount = 0; + var absoluteIndexCount = 0; + var absoluteColorCount = 0; + var absoluteNormalCount = 0; + var absoluteUvCount = 0; + var indices; + for ( var name in this.rawMesh.subGroups ) { + + meshOutputGroup = this.rawMesh.subGroups[ name ]; + if ( meshOutputGroup.vertices.length > 0 ) { + + indices = meshOutputGroup.indices; + if ( indices.length > 0 && absoluteIndexMappingsCount > 0 ) { + + for ( var i in indices ) indices[ i ] = indices[ i ] + absoluteIndexMappingsCount; - if ( this.logging.enabled && this.logging.debug ) { - var materialIndexLine = THREE.LoaderSupport.Validator.isValid( selectedMaterialIndex ) ? '\n\t\tmaterialIndex: ' + selectedMaterialIndex : ''; - var createdReport = '\tOutput Object no.: ' + this.outputObjectCount + - '\n\t\tgroupName: ' + meshOutputGroup.groupName + - '\n\t\tIndex: ' + meshOutputGroup.index + - '\n\t\tfaceType: ' + this.rawMesh.faceType + - '\n\t\tmaterialName: ' + meshOutputGroup.materialName + - '\n\t\tsmoothingGroup: ' + meshOutputGroup.smoothingGroup + - materialIndexLine + - '\n\t\tobjectName: ' + meshOutputGroup.objectName + - '\n\t\t#vertices: ' + meshOutputGroup.vertices.length / 3 + - '\n\t\t#indices: ' + meshOutputGroup.indices.length + - '\n\t\t#colors: ' + meshOutputGroup.colors.length / 3 + - '\n\t\t#uvs: ' + meshOutputGroup.uvs.length / 2 + - '\n\t\t#normals: ' + meshOutputGroup.normals.length / 3; - console.debug( createdReport ); } + meshOutputGroupTemp.push( meshOutputGroup ); + absoluteVertexCount += meshOutputGroup.vertices.length; + absoluteIndexMappingsCount += meshOutputGroup.indexMappingsCount; + absoluteIndexCount += meshOutputGroup.indices.length; + absoluteColorCount += meshOutputGroup.colors.length; + absoluteUvCount += meshOutputGroup.uvs.length; + absoluteNormalCount += meshOutputGroup.normals.length; } + } - this.outputObjectCount++; - this.callbackMeshBuilder( - { - cmd: 'meshData', - progress: { - numericalValue: this.globalCounts.currentByte / this.globalCounts.totalBytes - }, - params: { - meshName: result.name - }, - materials: { - multiMaterial: createMultiMaterial, - materialNames: materialNames, - materialGroups: materialGroups - }, - buffers: { - vertices: vertexFA, - indices: indexUA, - colors: colorFA, - normals: normalFA, - uvs: uvFA - }, - // 0: mesh, 1: line, 2: point - geometryType: this.rawMesh.faceType < 4 ? 0 : ( this.rawMesh.faceType === 6 ) ? 2 : 1 - }, - [ vertexFA.buffer ], - THREE.LoaderSupport.Validator.isValid( indexUA ) ? [ indexUA.buffer ] : null, - THREE.LoaderSupport.Validator.isValid( colorFA ) ? [ colorFA.buffer ] : null, - THREE.LoaderSupport.Validator.isValid( normalFA ) ? [ normalFA.buffer ] : null, - THREE.LoaderSupport.Validator.isValid( uvFA ) ? [ uvFA.buffer ] : null - ); - }; + // do not continue if no result + var result = null; + if ( meshOutputGroupTemp.length > 0 ) { + + result = { + name: this.rawMesh.groupName !== '' ? this.rawMesh.groupName : this.rawMesh.objectName, + subGroups: meshOutputGroupTemp, + absoluteVertexCount: absoluteVertexCount, + absoluteIndexCount: absoluteIndexCount, + absoluteColorCount: absoluteColorCount, + absoluteNormalCount: absoluteNormalCount, + absoluteUvCount: absoluteUvCount, + faceCount: this.rawMesh.counts.faceCount, + doubleIndicesCount: this.rawMesh.counts.doubleIndicesCount + }; + + } + return result; + }, - Parser.prototype.finalizeParsing = function () { - if ( this.logging.enabled ) console.info( 'Global output object count: ' + this.outputObjectCount ); - if ( this.processCompletedMesh() && this.logging.enabled ) { + processCompletedMesh: function () { + var result = this.finalizeRawMesh(); + if ( THREE.LoaderSupport.Validator.isValid( result ) ) { - var parserFinalReport = 'Overall counts: ' + - '\n\tVertices: ' + this.globalCounts.vertices + - '\n\tFaces: ' + this.globalCounts.faces + - '\n\tMultiple definitions: ' + this.globalCounts.doubleIndicesCount; - console.info( parserFinalReport ); + if ( this.colors.length > 0 && this.colors.length !== this.vertices.length ) { + + this._throwError( 'Vertex Colors were detected, but vertex count and color count do not match!' ); } - }; + if ( this.logging.enabled && this.logging.debug ) console.debug( this.createRawMeshReport( this.inputObjectCount ) ); + this.inputObjectCount++; - return Parser; - })(); + this.buildMesh( result ); + var progressBytesPercent = this.globalCounts.currentByte / this.globalCounts.totalBytes; + this.callbackProgress( 'Completed [o: ' + this.rawMesh.objectName + ' g:' + this.rawMesh.groupName + '] Total progress: ' + ( progressBytesPercent * 100 ).toFixed( 2 ) + '%', progressBytesPercent ); + this.resetRawMesh(); + return true; + + } else { + + return false; + } + }, /** - * Utility method for loading an mtl file according resource description. Provide url or content. - * @memberOf THREE.OBJLoader2 + * SubGroups are transformed to too intermediate format that is forwarded to the MeshBuilder. + * It is ensured that SubGroups only contain objects with vertices (no need to check). * - * @param {string} url URL to the file - * @param {Object} content The file content as arraybuffer or text - * @param {function} onLoad Callback to be called after successful load - * @param {callback} [onProgress] A function to be called while the loading is in progress. The argument will be the XMLHttpRequest instance, which contains total and Integer bytes. - * @param {callback} [onError] A function to be called if an error occurs during loading. The function receives the error as an argument. - * @param {string} [crossOrigin] CORS value - * @param {Object} [materialOptions] Set material loading options for MTLLoader + * @param result */ - OBJLoader2.prototype.loadMtl = function ( url, content, onLoad, onProgress, onError, crossOrigin, materialOptions ) { - var resource = new THREE.LoaderSupport.ResourceDescriptor( url, 'MTL' ); - resource.setContent( content ); - this._loadMtl( resource, onLoad, onProgress, onError, crossOrigin, materialOptions ); - }; + buildMesh: function ( result ) { + var meshOutputGroups = result.subGroups; + + var vertexFA = new Float32Array( result.absoluteVertexCount ); + this.globalCounts.vertices += result.absoluteVertexCount / 3; + this.globalCounts.faces += result.faceCount; + this.globalCounts.doubleIndicesCount += result.doubleIndicesCount; + var indexUA = ( result.absoluteIndexCount > 0 ) ? new Uint32Array( result.absoluteIndexCount ) : null; + var colorFA = ( result.absoluteColorCount > 0 ) ? new Float32Array( result.absoluteColorCount ) : null; + var normalFA = ( result.absoluteNormalCount > 0 ) ? new Float32Array( result.absoluteNormalCount ) : null; + var uvFA = ( result.absoluteUvCount > 0 ) ? new Float32Array( result.absoluteUvCount ) : null; + var haveVertexColors = THREE.LoaderSupport.Validator.isValid( colorFA ); + + var meshOutputGroup; + var materialNames = []; + + var createMultiMaterial = ( meshOutputGroups.length > 1 ); + var materialIndex = 0; + var materialIndexMapping = []; + var selectedMaterialIndex; + var materialGroup; + var materialGroups = []; + + var vertexFAOffset = 0; + var indexUAOffset = 0; + var colorFAOffset = 0; + var normalFAOffset = 0; + var uvFAOffset = 0; + var materialGroupOffset = 0; + var materialGroupLength = 0; + + var materialOrg, material, materialName, materialNameOrg; + // only one specific face type + for ( var oodIndex in meshOutputGroups ) { + + if ( ! meshOutputGroups.hasOwnProperty( oodIndex ) ) continue; + meshOutputGroup = meshOutputGroups[ oodIndex ]; + + materialNameOrg = meshOutputGroup.materialName; + if ( this.rawMesh.faceType < 4 ) { + + materialName = materialNameOrg + ( haveVertexColors ? '_vertexColor' : '' ) + ( meshOutputGroup.smoothingGroup === 0 ? '_flat' : '' ); - OBJLoader2.prototype._loadMtl = function ( resource, onLoad, onProgress, onError, crossOrigin, materialOptions ) { - if ( THREE.MTLLoader === undefined ) console.error( '"THREE.MTLLoader" is not available. "THREE.OBJLoader2" requires it for loading MTL files.' ); - if ( Validator.isValid( resource ) && this.logging.enabled ) console.time( 'Loading MTL: ' + resource.name ); + } else { - var materials = []; - var scope = this; - var processMaterials = function ( materialCreator ) { - var materialCreatorMaterials = []; - if ( Validator.isValid( materialCreator ) ) { + materialName = this.rawMesh.faceType === 6 ? 'defaultPointMaterial' : 'defaultLineMaterial'; - materialCreator.preload(); - materialCreatorMaterials = materialCreator.materials; - for ( var materialName in materialCreatorMaterials ) { + } + materialOrg = this.materials[ materialNameOrg ]; + material = this.materials[ materialName ]; - if ( materialCreatorMaterials.hasOwnProperty( materialName ) ) { + // both original and derived names do not lead to an existing material => need to use a default material + if ( ! THREE.LoaderSupport.Validator.isValid( materialOrg ) && ! THREE.LoaderSupport.Validator.isValid( material ) ) { - materials[ materialName ] = materialCreatorMaterials[ materialName ]; + var defaultMaterialName = haveVertexColors ? 'defaultVertexColorMaterial' : 'defaultMaterial'; + materialOrg = this.materials[ defaultMaterialName ]; + if ( this.logging.enabled ) console.warn( 'object_group "' + meshOutputGroup.objectName + '_' + + meshOutputGroup.groupName + '" was defined with unresolvable material "' + + materialNameOrg + '"! Assigning "' + defaultMaterialName + '".' ); + materialNameOrg = defaultMaterialName; + + // if names are identical then there is no need for later manipulation + if ( materialNameOrg === materialName ) { + + material = materialOrg; + materialName = defaultMaterialName; - } } + } + if ( ! THREE.LoaderSupport.Validator.isValid( material ) ) { + + var materialCloneInstructions = { + materialNameOrg: materialNameOrg, + materialName: materialName, + materialProperties: { + vertexColors: haveVertexColors ? 2 : 0, + flatShading: meshOutputGroup.smoothingGroup === 0 + } + }; + var payload = { + cmd: 'materialData', + materials: { + materialCloneInstructions: materialCloneInstructions + } + }; + this.callbackMeshBuilder( payload ); - if ( Validator.isValid( resource ) && scope.logging.enabled ) console.timeEnd( 'Loading MTL: ' + resource.name ); - onLoad( materials, materialCreator ); - }; + // fake entry for async; sync Parser always works on material references (Builder update directly visible here) + if ( this.useAsync ) this.materials[ materialName ] = materialCloneInstructions; - // fast-fail - if ( ! Validator.isValid( resource ) || ( ! Validator.isValid( resource.content ) && ! Validator.isValid( resource.url ) ) ) { + } - processMaterials(); + if ( createMultiMaterial ) { - } else { + // re-use material if already used before. Reduces materials array size and eliminates duplicates + selectedMaterialIndex = materialIndexMapping[ materialName ]; + if ( ! selectedMaterialIndex ) { - var mtlLoader = new THREE.MTLLoader( this.manager ); - crossOrigin = Validator.verifyInput( crossOrigin, 'anonymous' ); - mtlLoader.setCrossOrigin( crossOrigin ); - mtlLoader.setResourcePath( resource.path ); - if ( Validator.isValid( materialOptions ) ) mtlLoader.setMaterialOptions( materialOptions ); + selectedMaterialIndex = materialIndex; + materialIndexMapping[ materialName ] = materialIndex; + materialNames.push( materialName ); + materialIndex++; - var parseTextWithMtlLoader = function ( content ) { - var contentAsText = content; - if ( typeof( content ) !== 'string' && ! ( content instanceof String ) ) { + } + materialGroupLength = this.useIndices ? meshOutputGroup.indices.length : meshOutputGroup.vertices.length / 3; + materialGroup = { + start: materialGroupOffset, + count: materialGroupLength, + index: selectedMaterialIndex + }; + materialGroups.push( materialGroup ); + materialGroupOffset += materialGroupLength; - if ( content.length > 0 || content.byteLength > 0 ) { + } else { - contentAsText = THREE.LoaderUtils.decodeText( content ); + materialNames.push( materialName ); - } else { + } - this._throwError( 'Unable to parse mtl as it it seems to be neither a String, an Array or an ArrayBuffer!' ); - } + vertexFA.set( meshOutputGroup.vertices, vertexFAOffset ); + vertexFAOffset += meshOutputGroup.vertices.length; - } - processMaterials( mtlLoader.parse( contentAsText ) ); - }; + if ( indexUA ) { - if ( Validator.isValid( resource.content ) ) { + indexUA.set( meshOutputGroup.indices, indexUAOffset ); + indexUAOffset += meshOutputGroup.indices.length; - parseTextWithMtlLoader( resource.content ); + } - } else if ( Validator.isValid( resource.url ) ) { + if ( colorFA ) { - var fileLoader = new THREE.FileLoader( this.manager ); - if ( ! Validator.isValid( onError ) ) { - onError = function ( event ) { - scope._onError( event ); - }; - } - if ( ! Validator.isValid( onProgress ) ) { - var numericalValueRef = 0; - var numericalValue = 0; - onProgress = function ( event ) { - if ( ! event.lengthComputable ) return; + colorFA.set( meshOutputGroup.colors, colorFAOffset ); + colorFAOffset += meshOutputGroup.colors.length; - numericalValue = event.loaded / event.total; - if ( numericalValue > numericalValueRef ) { + } - numericalValueRef = numericalValue; - var output = 'Download of "' + resource.url + '": ' + ( numericalValue * 100 ).toFixed( 2 ) + '%'; - scope.onProgress( 'progressLoad', output, numericalValue ); + if ( normalFA ) { - } - }; - } + normalFA.set( meshOutputGroup.normals, normalFAOffset ); + normalFAOffset += meshOutputGroup.normals.length; - fileLoader.load( resource.url, parseTextWithMtlLoader, onProgress, onError ); + } + if ( uvFA ) { + + uvFA.set( meshOutputGroup.uvs, uvFAOffset ); + uvFAOffset += meshOutputGroup.uvs.length; } + + if ( this.logging.enabled && this.logging.debug ) { + var materialIndexLine = THREE.LoaderSupport.Validator.isValid( selectedMaterialIndex ) ? '\n\t\tmaterialIndex: ' + selectedMaterialIndex : ''; + var createdReport = '\tOutput Object no.: ' + this.outputObjectCount + + '\n\t\tgroupName: ' + meshOutputGroup.groupName + + '\n\t\tIndex: ' + meshOutputGroup.index + + '\n\t\tfaceType: ' + this.rawMesh.faceType + + '\n\t\tmaterialName: ' + meshOutputGroup.materialName + + '\n\t\tsmoothingGroup: ' + meshOutputGroup.smoothingGroup + + materialIndexLine + + '\n\t\tobjectName: ' + meshOutputGroup.objectName + + '\n\t\t#vertices: ' + meshOutputGroup.vertices.length / 3 + + '\n\t\t#indices: ' + meshOutputGroup.indices.length + + '\n\t\t#colors: ' + meshOutputGroup.colors.length / 3 + + '\n\t\t#uvs: ' + meshOutputGroup.uvs.length / 2 + + '\n\t\t#normals: ' + meshOutputGroup.normals.length / 3; + console.debug( createdReport ); + } + } - }; - return OBJLoader2; -})(); + this.outputObjectCount++; + this.callbackMeshBuilder( + { + cmd: 'meshData', + progress: { + numericalValue: this.globalCounts.currentByte / this.globalCounts.totalBytes + }, + params: { + meshName: result.name + }, + materials: { + multiMaterial: createMultiMaterial, + materialNames: materialNames, + materialGroups: materialGroups + }, + buffers: { + vertices: vertexFA, + indices: indexUA, + colors: colorFA, + normals: normalFA, + uvs: uvFA + }, + // 0: mesh, 1: line, 2: point + geometryType: this.rawMesh.faceType < 4 ? 0 : ( this.rawMesh.faceType === 6 ) ? 2 : 1 + }, + [ vertexFA.buffer ], + THREE.LoaderSupport.Validator.isValid( indexUA ) ? [ indexUA.buffer ] : null, + THREE.LoaderSupport.Validator.isValid( colorFA ) ? [ colorFA.buffer ] : null, + THREE.LoaderSupport.Validator.isValid( normalFA ) ? [ normalFA.buffer ] : null, + THREE.LoaderSupport.Validator.isValid( uvFA ) ? [ uvFA.buffer ] : null + ); + }, + + finalizeParsing: function () { + if ( this.logging.enabled ) console.info( 'Global output object count: ' + this.outputObjectCount ); + if ( this.processCompletedMesh() && this.logging.enabled ) { + + var parserFinalReport = 'Overall counts: ' + + '\n\tVertices: ' + this.globalCounts.vertices + + '\n\tFaces: ' + this.globalCounts.faces + + '\n\tMultiple definitions: ' + this.globalCounts.doubleIndicesCount; + console.info( parserFinalReport ); + + } + } +}; diff --git a/examples/js/loaders/PLYLoader.js b/examples/js/loaders/PLYLoader.js index bd8bbd0a1eccba..b0efd85b312703 100644 --- a/examples/js/loaders/PLYLoader.js +++ b/examples/js/loaders/PLYLoader.js @@ -71,7 +71,7 @@ THREE.PLYLoader.prototype = { function parseHeader( data ) { - var patternHeader = /ply([\s\S]*)end_header\s/; + var patternHeader = /ply([\s\S]*)end_header\r?\n/; var headerText = ''; var headerLength = 0; var result = patternHeader.exec( data ); diff --git a/examples/js/loaders/RGBELoader.js b/examples/js/loaders/RGBELoader.js index b79ff88e9dd9b2..85cdcc1ff819d9 100644 --- a/examples/js/loaders/RGBELoader.js +++ b/examples/js/loaders/RGBELoader.js @@ -8,6 +8,7 @@ THREE.HDRLoader = THREE.RGBELoader = function ( manager ) { this.manager = ( manager !== undefined ) ? manager : THREE.DefaultLoadingManager; + this.type = THREE.UnsignedByteType; }; @@ -328,19 +329,68 @@ THREE.RGBELoader.prototype._parser = function ( buffer ) { ; if ( RGBE_RETURN_FAILURE !== image_rgba_data ) { + if ( this.type === THREE.UnsignedByteType ) { + + var data = image_rgba_data; + var format = THREE.RGBEFormat; // handled as THREE.RGBAFormat in shaders + var type = THREE.UnsignedByteType; + + } else if ( this.type === THREE.FloatType ) { + + var RGBEByteToRGBFloat = function ( sourceArray, sourceOffset, destArray, destOffset ) { + + var e = sourceArray[ sourceOffset + 3 ]; + var scale = Math.pow( 2.0, e - 128.0 ) / 255.0; + + destArray[ destOffset + 0 ] = sourceArray[ sourceOffset + 0 ] * scale; + destArray[ destOffset + 1 ] = sourceArray[ sourceOffset + 1 ] * scale; + destArray[ destOffset + 2 ] = sourceArray[ sourceOffset + 2 ] * scale; + + }; + + var numElements = ( image_rgba_data.length / 4 ) * 3; + var floatArray = new Float32Array( numElements ); + + for ( var j = 0; j < numElements; j ++ ) { + + RGBEByteToRGBFloat( image_rgba_data, j * 4, floatArray, j * 3 ); + + } + + var data = floatArray; + var format = THREE.RGBFormat; + var type = THREE.FloatType; + + + } else { + + console.error( 'THREE.RGBELoader: unsupported type: ', this.type ); + + } + return { width: w, height: h, - data: image_rgba_data, + data: data, header: rgbe_header_info.string, gamma: rgbe_header_info.gamma, exposure: rgbe_header_info.exposure, - format: THREE.RGBEFormat, // handled as THREE.RGBAFormat in shaders - type: THREE.UnsignedByteType + format: format, + type: type }; } } + return null; }; + +THREE.RGBELoader.prototype.setType = function ( value ) { + + this.type = value; + return this; + +}; + + diff --git a/examples/js/loaders/SVGLoader.js b/examples/js/loaders/SVGLoader.js index a71ffa5833f2e0..809c4d94d0a8ae 100644 --- a/examples/js/loaders/SVGLoader.js +++ b/examples/js/loaders/SVGLoader.js @@ -756,140 +756,139 @@ THREE.SVGLoader.prototype = { function parseTransformNode( node ) { - var transformAttr = node.getAttribute( 'transform' ); - var transform = null; - var openParPos = transformAttr.indexOf( "(" ); - var closeParPos = transformAttr.indexOf( ")" ); + var transform = new THREE.Matrix3(); + var currentTransform = tempTransform0; + var transformsTexts = node.getAttribute( 'transform' ).split( ' ' ); + + for ( var tIndex = transformsTexts.length - 1; tIndex >= 0; tIndex-- ) { - if ( openParPos > 0 && openParPos < closeParPos ) { + var transformText = transformsTexts[ tIndex ]; + var openParPos = transformText.indexOf( "(" ); + var closeParPos = transformText.indexOf( ")" ); - var transformType = transformAttr.substr( 0, openParPos ); + if ( openParPos > 0 && openParPos < closeParPos ) { - var array = parseFloats( transformAttr.substr( openParPos + 1, closeParPos - openParPos - 1 ) ); + var transformType = transformText.substr( 0, openParPos ); - switch ( transformType ) { + var array = parseFloats( transformText.substr( openParPos + 1, closeParPos - openParPos - 1 ) ); + + currentTransform.identity(); - case "translate": + switch ( transformType ) { - if ( array.length >= 1 ) { + case "translate": - transform = new THREE.Matrix3(); + if ( array.length >= 1 ) { - var tx = array[ 0 ]; - var ty = tx; + var tx = array[ 0 ]; + var ty = tx; - if ( array.length >= 2 ) { + if ( array.length >= 2 ) { - ty = array[ 1 ]; + ty = array[ 1 ]; - } + } - transform.translate( tx, ty ); + currentTransform.translate( tx, ty ); - } + } - break; + break; - case "rotate": + case "rotate": - if ( array.length >= 1 ) { + if ( array.length >= 1 ) { - var angle = 0; - var cx = 0; - var cy = 0; + var angle = 0; + var cx = 0; + var cy = 0; - transform = new THREE.Matrix3(); + // Angle + angle = - array[ 0 ] * Math.PI / 180; - // Angle - angle = - array[ 0 ] * Math.PI / 180; + if ( array.length >= 3 ) { - if ( array.length >= 3 ) { + // Center x, y + cx = array[ 1 ]; + cy = array[ 2 ]; - // Center x, y - cx = array[ 1 ]; - cy = array[ 2 ]; + } - } + // Rotate around center (cx, cy) + tempTransform1.identity().translate( -cx, -cy ); + tempTransform2.identity().rotate( angle ); + tempTransform3.multiplyMatrices( tempTransform2, tempTransform1 ); + tempTransform1.identity().translate( cx, cy ); + currentTransform.multiplyMatrices( tempTransform1, tempTransform3 ); - // Rotate around center (cx, cy) - tempTransform1.identity().translate( -cx, -cy ); - tempTransform2.identity().rotate( angle ); - tempTransform3.multiplyMatrices( tempTransform2, tempTransform1 ); - tempTransform1.identity().translate( cx, cy ); - transform.multiplyMatrices( tempTransform1, tempTransform3 ); + } - } + break; - break; + case "scale": - case "scale": + if ( array.length >= 1 ) { - if ( array.length >= 1 ) { + var scaleX = array[ 0 ]; + var scaleY = scaleX; - transform = new THREE.Matrix3(); + if ( array.length >= 2 ) { + scaleY = array[ 1 ]; + } - var scaleX = array[ 0 ]; - var scaleY = scaleX; + currentTransform.scale( scaleX, scaleY ); - if ( array.length >= 2 ) { - scaleY = array[ 1 ]; } - transform.scale( scaleX, scaleY ); - - } - - break; - - case "skewX": - - if ( array.length === 1 ) { + break; - transform = new THREE.Matrix3(); + case "skewX": - transform.set( - 1, Math.tan( array[ 0 ] * Math.PI / 180 ), 0, - 0, 1, 0, - 0, 0, 1 - ); + if ( array.length === 1 ) { - } + currentTransform.set( + 1, Math.tan( array[ 0 ] * Math.PI / 180 ), 0, + 0, 1, 0, + 0, 0, 1 + ); - break; + } - case "skewY": + break; - if ( array.length === 1 ) { + case "skewY": - transform = new THREE.Matrix3(); + if ( array.length === 1 ) { - transform.set( - 1, 0, 0, - Math.tan( array[ 0 ] * Math.PI / 180 ), 1, 0, - 0, 0, 1 - ); + currentTransform.set( + 1, 0, 0, + Math.tan( array[ 0 ] * Math.PI / 180 ), 1, 0, + 0, 0, 1 + ); - } + } - break; + break; - case "matrix": + case "matrix": - if ( array.length === 6 ) { + if ( array.length === 6 ) { - transform = new THREE.Matrix3(); + currentTransform.set( + array[ 0 ], array[ 2 ], array[ 4 ], + array[ 1 ], array[ 3 ], array[ 5 ], + 0, 0, 1 + ); - transform.set( - array[ 0 ], array[ 2 ], array[ 4 ], - array[ 1 ], array[ 3 ], array[ 5 ], - 0, 0, 1 - ); + } - } + break; + } - break; } + transform.premultiply( currentTransform ); + } return transform; @@ -984,6 +983,7 @@ THREE.SVGLoader.prototype = { var transformStack = []; + var tempTransform0 = new THREE.Matrix3(); var tempTransform1 = new THREE.Matrix3(); var tempTransform2 = new THREE.Matrix3(); var tempTransform3 = new THREE.Matrix3(); diff --git a/examples/js/loaders/VRMLLoader.js b/examples/js/loaders/VRMLLoader.js index 062c18e3887b96..bb606622d1bc65 100644 --- a/examples/js/loaders/VRMLLoader.js +++ b/examples/js/loaders/VRMLLoader.js @@ -626,7 +626,7 @@ THREE.VRMLLoader.prototype = { parent.geometry = defines[ defineKey ].clone(); // the solid property is not cloned with clone(), is only needed for VRML loading, so we need to transfer it - if ( undefined !== defines[ defineKey ].solid && defines[ defineKey ].solid === false ) { + if ( defines[ defineKey ].solid !== undefined && defines[ defineKey ].solid === false ) { parent.geometry.solid = false; parent.material.side = THREE.DoubleSide; diff --git a/examples/js/objects/Water.js b/examples/js/objects/Water.js index 2b5ee95c8bc6e7..99c723921a1e09 100644 --- a/examples/js/objects/Water.js +++ b/examples/js/objects/Water.js @@ -162,7 +162,7 @@ THREE.Water = function ( geometry, options ) { ' float distance = length(worldToEye);', ' vec2 distortion = surfaceNormal.xz * ( 0.001 + 1.0 / distance ) * distortionScale;', - ' vec3 reflectionSample = vec3( texture2D( mirrorSampler, mirrorCoord.xy / mirrorCoord.z + distortion ) );', + ' vec3 reflectionSample = vec3( texture2D( mirrorSampler, mirrorCoord.xy / mirrorCoord.w + distortion ) );', ' float theta = max( dot( eyeDirection, surfaceNormal ), 0.0 );', ' float rf0 = 0.3;', diff --git a/examples/js/renderers/CanvasRenderer.js b/examples/js/renderers/CanvasRenderer.js deleted file mode 100644 index ceea437b2dad7a..00000000000000 --- a/examples/js/renderers/CanvasRenderer.js +++ /dev/null @@ -1,1153 +0,0 @@ -/** - * @author mrdoob / http://mrdoob.com/ - */ - -THREE.SpriteCanvasMaterial = function ( parameters ) { - - THREE.Material.call( this ); - - this.type = 'SpriteCanvasMaterial'; - this.rotation = 0; - this.color = new THREE.Color( 0xffffff ); - this.program = function () {}; - - this.setValues( parameters ); - -}; - -THREE.SpriteCanvasMaterial.prototype = Object.create( THREE.Material.prototype ); -THREE.SpriteCanvasMaterial.prototype.constructor = THREE.SpriteCanvasMaterial; -THREE.SpriteCanvasMaterial.prototype.isSpriteCanvasMaterial = true; - -THREE.SpriteCanvasMaterial.prototype.clone = function () { - - var material = new THREE.SpriteCanvasMaterial(); - - material.copy( this ); - material.color.copy( this.color ); - material.program = this.program; - - return material; - -}; - -// - -THREE.CanvasRenderer = function ( parameters ) { - - console.log( 'THREE.CanvasRenderer', THREE.REVISION ); - - parameters = parameters || {}; - - var _this = this, - _renderData, _elements, _lights, - _projector = new THREE.Projector(), - - _canvas = parameters.canvas !== undefined - ? parameters.canvas - : document.createElement( 'canvas' ), - - _canvasWidth = _canvas.width, - _canvasHeight = _canvas.height, - _canvasWidthHalf = Math.floor( _canvasWidth / 2 ), - _canvasHeightHalf = Math.floor( _canvasHeight / 2 ), - - _viewportX = 0, - _viewportY = 0, - _viewportWidth = _canvasWidth, - _viewportHeight = _canvasHeight, - - _pixelRatio = 1, - - _context = _canvas.getContext( '2d', { - alpha: parameters.alpha === true - } ), - - _clearColor = new THREE.Color( 0x000000 ), - _clearAlpha = parameters.alpha === true ? 0 : 1, - - _contextGlobalAlpha = 1, - _contextGlobalCompositeOperation = 0, - _contextStrokeStyle = null, - _contextFillStyle = null, - _contextLineWidth = null, - _contextLineCap = null, - _contextLineJoin = null, - _contextLineDash = [], - - _v1, _v2, _v3, - - _v1x, _v1y, _v2x, _v2y, _v3x, _v3y, - - _color = new THREE.Color(), - - _diffuseColor = new THREE.Color(), - _emissiveColor = new THREE.Color(), - - _lightColor = new THREE.Color(), - - _patterns = {}, - - _uvs, - _uv1x, _uv1y, _uv2x, _uv2y, _uv3x, _uv3y, - - _clipBox = new THREE.Box2(), - _clearBox = new THREE.Box2(), - _elemBox = new THREE.Box2(), - - _ambientLight = new THREE.Color(), - _directionalLights = new THREE.Color(), - _pointLights = new THREE.Color(), - - _vector3 = new THREE.Vector3(), // Needed for PointLight - _centroid = new THREE.Vector3(), - _normal = new THREE.Vector3(), - _normalViewMatrix = new THREE.Matrix3(); - - /* TODO - _canvas.mozImageSmoothingEnabled = false; - _canvas.webkitImageSmoothingEnabled = false; - _canvas.msImageSmoothingEnabled = false; - _canvas.imageSmoothingEnabled = false; - */ - - // dash+gap fallbacks for Firefox and everything else - - if ( _context.setLineDash === undefined ) { - - _context.setLineDash = function () {}; - - } - - this.domElement = _canvas; - - this.autoClear = true; - this.sortObjects = true; - this.sortElements = true; - - this.info = { - - render: { - - vertices: 0, - faces: 0 - - } - - }; - - // API - - this.getContext = function () { - - return _context; - - }; - - this.getContextAttributes = function () { - - return _context.getContextAttributes(); - - }; - - this.getPixelRatio = function () { - - return _pixelRatio; - - }; - - this.setPixelRatio = function ( value ) { - - if ( value !== undefined ) _pixelRatio = value; - - }; - - this.setSize = function ( width, height, updateStyle ) { - - _canvasWidth = width * _pixelRatio; - _canvasHeight = height * _pixelRatio; - - _canvas.width = _canvasWidth; - _canvas.height = _canvasHeight; - - _canvasWidthHalf = Math.floor( _canvasWidth / 2 ); - _canvasHeightHalf = Math.floor( _canvasHeight / 2 ); - - if ( updateStyle !== false ) { - - _canvas.style.width = width + 'px'; - _canvas.style.height = height + 'px'; - - } - - _clipBox.min.set( - _canvasWidthHalf, - _canvasHeightHalf ); - _clipBox.max.set( _canvasWidthHalf, _canvasHeightHalf ); - - _clearBox.min.set( - _canvasWidthHalf, - _canvasHeightHalf ); - _clearBox.max.set( _canvasWidthHalf, _canvasHeightHalf ); - - _contextGlobalAlpha = 1; - _contextGlobalCompositeOperation = 0; - _contextStrokeStyle = null; - _contextFillStyle = null; - _contextLineWidth = null; - _contextLineCap = null; - _contextLineJoin = null; - - this.setViewport( 0, 0, width, height ); - - }; - - this.setViewport = function ( x, y, width, height ) { - - _viewportX = x * _pixelRatio; - _viewportY = y * _pixelRatio; - - _viewportWidth = width * _pixelRatio; - _viewportHeight = height * _pixelRatio; - - }; - - this.setScissor = function () {}; - this.setScissorTest = function () {}; - - this.setClearColor = function ( color, alpha ) { - - _clearColor.set( color ); - _clearAlpha = alpha !== undefined ? alpha : 1; - - _clearBox.min.set( - _canvasWidthHalf, - _canvasHeightHalf ); - _clearBox.max.set( _canvasWidthHalf, _canvasHeightHalf ); - - }; - - this.setClearColorHex = function ( hex, alpha ) { - - console.warn( 'THREE.CanvasRenderer: .setClearColorHex() is being removed. Use .setClearColor() instead.' ); - this.setClearColor( hex, alpha ); - - }; - - this.getClearColor = function () { - - return _clearColor; - - }; - - this.getClearAlpha = function () { - - return _clearAlpha; - - }; - - this.getMaxAnisotropy = function () { - - return 0; - - }; - - this.clear = function () { - - if ( _clearBox.isEmpty() === false ) { - - _clearBox.intersect( _clipBox ); - _clearBox.expandByScalar( 2 ); - - _clearBox.min.x = _clearBox.min.x + _canvasWidthHalf; - _clearBox.min.y = - _clearBox.min.y + _canvasHeightHalf; // higher y value ! - _clearBox.max.x = _clearBox.max.x + _canvasWidthHalf; - _clearBox.max.y = - _clearBox.max.y + _canvasHeightHalf; // lower y value ! - - if ( _clearAlpha < 1 ) { - - _context.clearRect( - _clearBox.min.x | 0, - _clearBox.max.y | 0, - ( _clearBox.max.x - _clearBox.min.x ) | 0, - ( _clearBox.min.y - _clearBox.max.y ) | 0 - ); - - } - - if ( _clearAlpha > 0 ) { - - setOpacity( 1 ); - setBlending( THREE.NormalBlending ); - - setFillStyle( 'rgba(' + Math.floor( _clearColor.r * 255 ) + ',' + Math.floor( _clearColor.g * 255 ) + ',' + Math.floor( _clearColor.b * 255 ) + ',' + _clearAlpha + ')' ); - - _context.fillRect( - _clearBox.min.x | 0, - _clearBox.max.y | 0, - ( _clearBox.max.x - _clearBox.min.x ) | 0, - ( _clearBox.min.y - _clearBox.max.y ) | 0 - ); - - } - - _clearBox.makeEmpty(); - - } - - }; - - // compatibility - - this.clearColor = function () {}; - this.clearDepth = function () {}; - this.clearStencil = function () {}; - - this.render = function ( scene, camera ) { - - if ( camera.isCamera === undefined ) { - - console.error( 'THREE.CanvasRenderer.render: camera is not an instance of THREE.Camera.' ); - return; - - } - - var background = scene.background; - - if ( background && background.isColor ) { - - setOpacity( 1 ); - setBlending( THREE.NormalBlending ); - - setFillStyle( background.getStyle() ); - _context.fillRect( 0, 0, _canvasWidth, _canvasHeight ); - - } else if ( this.autoClear === true ) { - - this.clear(); - - } - - _this.info.render.vertices = 0; - _this.info.render.faces = 0; - - _context.setTransform( _viewportWidth / _canvasWidth, 0, 0, - _viewportHeight / _canvasHeight, _viewportX, _canvasHeight - _viewportY ); - _context.translate( _canvasWidthHalf, _canvasHeightHalf ); - - _renderData = _projector.projectScene( scene, camera, this.sortObjects, this.sortElements ); - _elements = _renderData.elements; - _lights = _renderData.lights; - - _normalViewMatrix.getNormalMatrix( camera.matrixWorldInverse ); - - /* DEBUG - setFillStyle( 'rgba( 0, 255, 255, 0.5 )' ); - _context.fillRect( _clipBox.min.x, _clipBox.min.y, _clipBox.max.x - _clipBox.min.x, _clipBox.max.y - _clipBox.min.y ); - */ - - calculateLights(); - - for ( var e = 0, el = _elements.length; e < el; e ++ ) { - - var element = _elements[ e ]; - - var material = element.material; - - if ( material === undefined || material.opacity === 0 ) continue; - - _elemBox.makeEmpty(); - - if ( element instanceof THREE.RenderableSprite ) { - - _v1 = element; - _v1.x *= _canvasWidthHalf; _v1.y *= _canvasHeightHalf; - - renderSprite( _v1, element, material ); - - } else if ( element instanceof THREE.RenderableLine ) { - - _v1 = element.v1; _v2 = element.v2; - - _v1.positionScreen.x *= _canvasWidthHalf; _v1.positionScreen.y *= _canvasHeightHalf; - _v2.positionScreen.x *= _canvasWidthHalf; _v2.positionScreen.y *= _canvasHeightHalf; - - _elemBox.setFromPoints( [ - _v1.positionScreen, - _v2.positionScreen - ] ); - - if ( _clipBox.intersectsBox( _elemBox ) === true ) { - - renderLine( _v1, _v2, element, material ); - - } - - } else if ( element instanceof THREE.RenderableFace ) { - - _v1 = element.v1; _v2 = element.v2; _v3 = element.v3; - - if ( _v1.positionScreen.z < - 1 || _v1.positionScreen.z > 1 ) continue; - if ( _v2.positionScreen.z < - 1 || _v2.positionScreen.z > 1 ) continue; - if ( _v3.positionScreen.z < - 1 || _v3.positionScreen.z > 1 ) continue; - - _v1.positionScreen.x *= _canvasWidthHalf; _v1.positionScreen.y *= _canvasHeightHalf; - _v2.positionScreen.x *= _canvasWidthHalf; _v2.positionScreen.y *= _canvasHeightHalf; - _v3.positionScreen.x *= _canvasWidthHalf; _v3.positionScreen.y *= _canvasHeightHalf; - - if ( material.overdraw > 0 ) { - - expand( _v1.positionScreen, _v2.positionScreen, material.overdraw ); - expand( _v2.positionScreen, _v3.positionScreen, material.overdraw ); - expand( _v3.positionScreen, _v1.positionScreen, material.overdraw ); - - } - - _elemBox.setFromPoints( [ - _v1.positionScreen, - _v2.positionScreen, - _v3.positionScreen - ] ); - - if ( _clipBox.intersectsBox( _elemBox ) === true ) { - - renderFace3( _v1, _v2, _v3, 0, 1, 2, element, material ); - - } - - } - - /* DEBUG - setLineWidth( 1 ); - setStrokeStyle( 'rgba( 0, 255, 0, 0.5 )' ); - _context.strokeRect( _elemBox.min.x, _elemBox.min.y, _elemBox.max.x - _elemBox.min.x, _elemBox.max.y - _elemBox.min.y ); - */ - - _clearBox.union( _elemBox ); - - } - - /* DEBUG - setLineWidth( 1 ); - setStrokeStyle( 'rgba( 255, 0, 0, 0.5 )' ); - _context.strokeRect( _clearBox.min.x, _clearBox.min.y, _clearBox.max.x - _clearBox.min.x, _clearBox.max.y - _clearBox.min.y ); - */ - - _context.setTransform( 1, 0, 0, 1, 0, 0 ); - - }; - - // - - function calculateLights() { - - _ambientLight.setRGB( 0, 0, 0 ); - _directionalLights.setRGB( 0, 0, 0 ); - _pointLights.setRGB( 0, 0, 0 ); - - for ( var l = 0, ll = _lights.length; l < ll; l ++ ) { - - var light = _lights[ l ]; - var lightColor = light.color; - - if ( light.isAmbientLight ) { - - _ambientLight.add( lightColor ); - - } else if ( light.isDirectionalLight ) { - - // for sprites - - _directionalLights.add( lightColor ); - - } else if ( light.isPointLight ) { - - // for sprites - - _pointLights.add( lightColor ); - - } - - } - - } - - function calculateLight( position, normal, color ) { - - for ( var l = 0, ll = _lights.length; l < ll; l ++ ) { - - var light = _lights[ l ]; - - _lightColor.copy( light.color ); - - if ( light.isDirectionalLight ) { - - var lightPosition = _vector3.setFromMatrixPosition( light.matrixWorld ).normalize(); - - var amount = normal.dot( lightPosition ); - - if ( amount <= 0 ) continue; - - amount *= light.intensity; - - color.add( _lightColor.multiplyScalar( amount ) ); - - } else if ( light.isPointLight ) { - - var lightPosition = _vector3.setFromMatrixPosition( light.matrixWorld ); - - var amount = normal.dot( _vector3.subVectors( lightPosition, position ).normalize() ); - - if ( amount <= 0 ) continue; - - amount *= light.distance == 0 ? 1 : 1 - Math.min( position.distanceTo( lightPosition ) / light.distance, 1 ); - - if ( amount == 0 ) continue; - - amount *= light.intensity; - - color.add( _lightColor.multiplyScalar( amount ) ); - - } - - } - - } - - function renderSprite( v1, element, material ) { - - setOpacity( material.opacity ); - setBlending( material.blending ); - - var scaleX = element.scale.x * _canvasWidthHalf; - var scaleY = element.scale.y * _canvasHeightHalf; - - var dist = Math.sqrt( scaleX * scaleX + scaleY * scaleY ); // allow for rotated sprite - _elemBox.min.set( v1.x - dist, v1.y - dist ); - _elemBox.max.set( v1.x + dist, v1.y + dist ); - - if ( material.isSpriteMaterial ) { - - var texture = material.map; - - if ( texture !== null ) { - - var pattern = _patterns[ texture.id ]; - - if ( pattern === undefined || pattern.version !== texture.version ) { - - pattern = textureToPattern( texture ); - _patterns[ texture.id ] = pattern; - - } - - if ( pattern.canvas !== undefined ) { - - setFillStyle( pattern.canvas ); - - var bitmap = texture.image; - - var ox = bitmap.width * texture.offset.x; - var oy = bitmap.height * texture.offset.y; - - var sx = bitmap.width * texture.repeat.x; - var sy = bitmap.height * texture.repeat.y; - - var cx = scaleX / sx; - var cy = scaleY / sy; - - _context.save(); - _context.translate( v1.x, v1.y ); - if ( material.rotation !== 0 ) _context.rotate( material.rotation ); - _context.translate( - scaleX / 2, - scaleY / 2 ); - _context.scale( cx, cy ); - _context.translate( - ox, - oy ); - _context.fillRect( ox, oy, sx, sy ); - _context.restore(); - - } - - } else { - - // no texture - - setFillStyle( material.color.getStyle() ); - - _context.save(); - _context.translate( v1.x, v1.y ); - if ( material.rotation !== 0 ) _context.rotate( material.rotation ); - _context.scale( scaleX, - scaleY ); - _context.fillRect( - 0.5, - 0.5, 1, 1 ); - _context.restore(); - - } - - } else if ( material.isSpriteCanvasMaterial ) { - - setStrokeStyle( material.color.getStyle() ); - setFillStyle( material.color.getStyle() ); - - _context.save(); - _context.translate( v1.x, v1.y ); - if ( material.rotation !== 0 ) _context.rotate( material.rotation ); - _context.scale( scaleX, scaleY ); - - material.program( _context ); - - _context.restore(); - - } else if ( material.isPointsMaterial ) { - - setFillStyle( material.color.getStyle() ); - - _context.save(); - _context.translate( v1.x, v1.y ); - if ( material.rotation !== 0 ) _context.rotate( material.rotation ); - _context.scale( scaleX * material.size, - scaleY * material.size ); - _context.fillRect( - 0.5, - 0.5, 1, 1 ); - _context.restore(); - - } - - /* DEBUG - setStrokeStyle( 'rgb(255,255,0)' ); - _context.beginPath(); - _context.moveTo( v1.x - 10, v1.y ); - _context.lineTo( v1.x + 10, v1.y ); - _context.moveTo( v1.x, v1.y - 10 ); - _context.lineTo( v1.x, v1.y + 10 ); - _context.stroke(); - */ - - } - - function renderLine( v1, v2, element, material ) { - - setOpacity( material.opacity ); - setBlending( material.blending ); - - _context.beginPath(); - _context.moveTo( v1.positionScreen.x, v1.positionScreen.y ); - _context.lineTo( v2.positionScreen.x, v2.positionScreen.y ); - - if ( material.isLineBasicMaterial ) { - - setLineWidth( material.linewidth ); - setLineCap( material.linecap ); - setLineJoin( material.linejoin ); - - if ( material.vertexColors !== THREE.VertexColors ) { - - setStrokeStyle( material.color.getStyle() ); - - } else { - - var colorStyle1 = element.vertexColors[ 0 ].getStyle(); - var colorStyle2 = element.vertexColors[ 1 ].getStyle(); - - if ( colorStyle1 === colorStyle2 ) { - - setStrokeStyle( colorStyle1 ); - - } else { - - try { - - var grad = _context.createLinearGradient( - v1.positionScreen.x, - v1.positionScreen.y, - v2.positionScreen.x, - v2.positionScreen.y - ); - grad.addColorStop( 0, colorStyle1 ); - grad.addColorStop( 1, colorStyle2 ); - - } catch ( exception ) { - - grad = colorStyle1; - - } - - setStrokeStyle( grad ); - - } - - } - - if ( material.isLineDashedMaterial ) { - - setLineDash( [ material.dashSize, material.gapSize ] ); - - } - - _context.stroke(); - _elemBox.expandByScalar( material.linewidth * 2 ); - - if ( material.isLineDashedMaterial ) { - - setLineDash( [] ); - - } - - } - - } - - function renderFace3( v1, v2, v3, uv1, uv2, uv3, element, material ) { - - _this.info.render.vertices += 3; - _this.info.render.faces ++; - - setOpacity( material.opacity ); - setBlending( material.blending ); - - _v1x = v1.positionScreen.x; _v1y = v1.positionScreen.y; - _v2x = v2.positionScreen.x; _v2y = v2.positionScreen.y; - _v3x = v3.positionScreen.x; _v3y = v3.positionScreen.y; - - drawTriangle( _v1x, _v1y, _v2x, _v2y, _v3x, _v3y ); - - if ( ( material.isMeshLambertMaterial || material.isMeshPhongMaterial || material.isMeshStandardMaterial ) && material.map === null ) { - - _diffuseColor.copy( material.color ); - _emissiveColor.copy( material.emissive ); - - if ( material.vertexColors === THREE.FaceColors ) { - - _diffuseColor.multiply( element.color ); - - } - - _color.copy( _ambientLight ); - - _centroid.copy( v1.positionWorld ).add( v2.positionWorld ).add( v3.positionWorld ).divideScalar( 3 ); - - calculateLight( _centroid, element.normalModel, _color ); - - _color.multiply( _diffuseColor ).add( _emissiveColor ); - - material.wireframe === true - ? strokePath( _color, material.wireframeLinewidth, material.wireframeLinecap, material.wireframeLinejoin ) - : fillPath( _color ); - - } else if ( material.isMeshBasicMaterial || material.isMeshLambertMaterial || material.isMeshPhongMaterial || material.isMeshStandardMaterial ) { - - if ( material.map !== null ) { - - var mapping = material.map.mapping; - - if ( mapping === THREE.UVMapping ) { - - _uvs = element.uvs; - patternPath( _v1x, _v1y, _v2x, _v2y, _v3x, _v3y, _uvs[ uv1 ].x, _uvs[ uv1 ].y, _uvs[ uv2 ].x, _uvs[ uv2 ].y, _uvs[ uv3 ].x, _uvs[ uv3 ].y, material.map ); - - } - - } else if ( material.envMap !== null ) { - - if ( material.envMap.mapping === THREE.SphericalReflectionMapping ) { - - _normal.copy( element.vertexNormalsModel[ uv1 ] ).applyMatrix3( _normalViewMatrix ); - _uv1x = 0.5 * _normal.x + 0.5; - _uv1y = 0.5 * _normal.y + 0.5; - - _normal.copy( element.vertexNormalsModel[ uv2 ] ).applyMatrix3( _normalViewMatrix ); - _uv2x = 0.5 * _normal.x + 0.5; - _uv2y = 0.5 * _normal.y + 0.5; - - _normal.copy( element.vertexNormalsModel[ uv3 ] ).applyMatrix3( _normalViewMatrix ); - _uv3x = 0.5 * _normal.x + 0.5; - _uv3y = 0.5 * _normal.y + 0.5; - - patternPath( _v1x, _v1y, _v2x, _v2y, _v3x, _v3y, _uv1x, _uv1y, _uv2x, _uv2y, _uv3x, _uv3y, material.envMap ); - - } - - } else { - - _color.copy( material.color ); - - if ( material.vertexColors === THREE.FaceColors ) { - - _color.multiply( element.color ); - - } - - material.wireframe === true - ? strokePath( _color, material.wireframeLinewidth, material.wireframeLinecap, material.wireframeLinejoin ) - : fillPath( _color ); - - } - - } else if ( material.isMeshNormalMaterial ) { - - _normal.copy( element.normalModel ).applyMatrix3( _normalViewMatrix ); - - _color.setRGB( _normal.x, _normal.y, _normal.z ).multiplyScalar( 0.5 ).addScalar( 0.5 ); - - material.wireframe === true - ? strokePath( _color, material.wireframeLinewidth, material.wireframeLinecap, material.wireframeLinejoin ) - : fillPath( _color ); - - } else { - - _color.setRGB( 1, 1, 1 ); - - material.wireframe === true - ? strokePath( _color, material.wireframeLinewidth, material.wireframeLinecap, material.wireframeLinejoin ) - : fillPath( _color ); - - } - - } - - // - - function drawTriangle( x0, y0, x1, y1, x2, y2 ) { - - _context.beginPath(); - _context.moveTo( x0, y0 ); - _context.lineTo( x1, y1 ); - _context.lineTo( x2, y2 ); - _context.closePath(); - - } - - function strokePath( color, linewidth, linecap, linejoin ) { - - setLineWidth( linewidth ); - setLineCap( linecap ); - setLineJoin( linejoin ); - setStrokeStyle( color.getStyle() ); - - _context.stroke(); - - _elemBox.expandByScalar( linewidth * 2 ); - - } - - function fillPath( color ) { - - setFillStyle( color.getStyle() ); - _context.fill(); - - } - - function textureToPattern( texture ) { - - if ( texture.version === 0 || - texture instanceof THREE.CompressedTexture || - texture instanceof THREE.DataTexture ) { - - return { - canvas: undefined, - version: texture.version - }; - - } - - var image = texture.image; - - if ( image.complete === false ) { - - return { - canvas: undefined, - version: 0 - }; - - } - - var repeatX = texture.wrapS === THREE.RepeatWrapping || texture.wrapS === THREE.MirroredRepeatWrapping; - var repeatY = texture.wrapT === THREE.RepeatWrapping || texture.wrapT === THREE.MirroredRepeatWrapping; - - var mirrorX = texture.wrapS === THREE.MirroredRepeatWrapping; - var mirrorY = texture.wrapT === THREE.MirroredRepeatWrapping; - - // - - var canvas = document.createElement( 'canvas' ); - canvas.width = image.width * ( mirrorX ? 2 : 1 ); - canvas.height = image.height * ( mirrorY ? 2 : 1 ); - - var context = canvas.getContext( '2d' ); - context.setTransform( 1, 0, 0, - 1, 0, image.height ); - context.drawImage( image, 0, 0 ); - - if ( mirrorX === true ) { - - context.setTransform( - 1, 0, 0, - 1, image.width, image.height ); - context.drawImage( image, - image.width, 0 ); - - } - - if ( mirrorY === true ) { - - context.setTransform( 1, 0, 0, 1, 0, 0 ); - context.drawImage( image, 0, image.height ); - - } - - if ( mirrorX === true && mirrorY === true ) { - - context.setTransform( - 1, 0, 0, 1, image.width, 0 ); - context.drawImage( image, - image.width, image.height ); - - } - - var repeat = 'no-repeat'; - - if ( repeatX === true && repeatY === true ) { - - repeat = 'repeat'; - - } else if ( repeatX === true ) { - - repeat = 'repeat-x'; - - } else if ( repeatY === true ) { - - repeat = 'repeat-y'; - - } - - var pattern = _context.createPattern( canvas, repeat ); - - if ( texture.onUpdate ) texture.onUpdate( texture ); - - return { - canvas: pattern, - version: texture.version - }; - - } - - function patternPath( x0, y0, x1, y1, x2, y2, u0, v0, u1, v1, u2, v2, texture ) { - - var pattern = _patterns[ texture.id ]; - - if ( pattern === undefined || pattern.version !== texture.version ) { - - pattern = textureToPattern( texture ); - _patterns[ texture.id ] = pattern; - - } - - if ( pattern.canvas !== undefined ) { - - setFillStyle( pattern.canvas ); - - } else { - - setFillStyle( 'rgba( 0, 0, 0, 1)' ); - _context.fill(); - return; - - } - - // http://extremelysatisfactorytotalitarianism.com/blog/?p=2120 - - var a, b, c, d, e, f, det, idet, - offsetX = texture.offset.x / texture.repeat.x, - offsetY = texture.offset.y / texture.repeat.y, - width = texture.image.width * texture.repeat.x, - height = texture.image.height * texture.repeat.y; - - u0 = ( u0 + offsetX ) * width; - v0 = ( v0 + offsetY ) * height; - - u1 = ( u1 + offsetX ) * width; - v1 = ( v1 + offsetY ) * height; - - u2 = ( u2 + offsetX ) * width; - v2 = ( v2 + offsetY ) * height; - - x1 -= x0; y1 -= y0; - x2 -= x0; y2 -= y0; - - u1 -= u0; v1 -= v0; - u2 -= u0; v2 -= v0; - - det = u1 * v2 - u2 * v1; - - if ( det === 0 ) return; - - idet = 1 / det; - - a = ( v2 * x1 - v1 * x2 ) * idet; - b = ( v2 * y1 - v1 * y2 ) * idet; - c = ( u1 * x2 - u2 * x1 ) * idet; - d = ( u1 * y2 - u2 * y1 ) * idet; - - e = x0 - a * u0 - c * v0; - f = y0 - b * u0 - d * v0; - - _context.save(); - _context.transform( a, b, c, d, e, f ); - _context.fill(); - _context.restore(); - - } - - /* - function clipImage( x0, y0, x1, y1, x2, y2, u0, v0, u1, v1, u2, v2, image ) { - - // http://extremelysatisfactorytotalitarianism.com/blog/?p=2120 - - var a, b, c, d, e, f, det, idet, - width = image.width - 1, - height = image.height - 1; - - u0 *= width; v0 *= height; - u1 *= width; v1 *= height; - u2 *= width; v2 *= height; - - x1 -= x0; y1 -= y0; - x2 -= x0; y2 -= y0; - - u1 -= u0; v1 -= v0; - u2 -= u0; v2 -= v0; - - det = u1 * v2 - u2 * v1; - - idet = 1 / det; - - a = ( v2 * x1 - v1 * x2 ) * idet; - b = ( v2 * y1 - v1 * y2 ) * idet; - c = ( u1 * x2 - u2 * x1 ) * idet; - d = ( u1 * y2 - u2 * y1 ) * idet; - - e = x0 - a * u0 - c * v0; - f = y0 - b * u0 - d * v0; - - _context.save(); - _context.transform( a, b, c, d, e, f ); - _context.clip(); - _context.drawImage( image, 0, 0 ); - _context.restore(); - - } - */ - - // Hide anti-alias gaps - - function expand( v1, v2, pixels ) { - - var x = v2.x - v1.x, y = v2.y - v1.y, - det = x * x + y * y, idet; - - if ( det === 0 ) return; - - idet = pixels / Math.sqrt( det ); - - x *= idet; y *= idet; - - v2.x += x; v2.y += y; - v1.x -= x; v1.y -= y; - - } - - // Context cached methods. - - function setOpacity( value ) { - - if ( _contextGlobalAlpha !== value ) { - - _context.globalAlpha = value; - _contextGlobalAlpha = value; - - } - - } - - function setBlending( value ) { - - if ( _contextGlobalCompositeOperation !== value ) { - - if ( value === THREE.NormalBlending ) { - - _context.globalCompositeOperation = 'source-over'; - - } else if ( value === THREE.AdditiveBlending ) { - - _context.globalCompositeOperation = 'lighter'; - - } else if ( value === THREE.SubtractiveBlending ) { - - _context.globalCompositeOperation = 'darker'; - - } else if ( value === THREE.MultiplyBlending ) { - - _context.globalCompositeOperation = 'multiply'; - - } - - _contextGlobalCompositeOperation = value; - - } - - } - - function setLineWidth( value ) { - - if ( _contextLineWidth !== value ) { - - _context.lineWidth = value; - _contextLineWidth = value; - - } - - } - - function setLineCap( value ) { - - // "butt", "round", "square" - - if ( _contextLineCap !== value ) { - - _context.lineCap = value; - _contextLineCap = value; - - } - - } - - function setLineJoin( value ) { - - // "round", "bevel", "miter" - - if ( _contextLineJoin !== value ) { - - _context.lineJoin = value; - _contextLineJoin = value; - - } - - } - - function setStrokeStyle( value ) { - - if ( _contextStrokeStyle !== value ) { - - _context.strokeStyle = value; - _contextStrokeStyle = value; - - } - - } - - function setFillStyle( value ) { - - if ( _contextFillStyle !== value ) { - - _context.fillStyle = value; - _contextFillStyle = value; - - } - - } - - function setLineDash( value ) { - - if ( _contextLineDash.length !== value.length ) { - - _context.setLineDash( value ); - _contextLineDash = value; - - } - - } - -}; diff --git a/examples/js/renderers/Projector.js b/examples/js/renderers/Projector.js index 898f7cb67b0ec3..ede8c00bf403a8 100644 --- a/examples/js/renderers/Projector.js +++ b/examples/js/renderers/Projector.js @@ -322,7 +322,7 @@ THREE.Projector = function () { _face.material = material; - if ( material.vertexColors === THREE.FaceColors ) { + if ( material.vertexColors === THREE.FaceColors || material.vertexColors === THREE.VertexColors ) { _face.color.fromArray( colors, a * 3 ); diff --git a/examples/js/renderers/SVGRenderer.js b/examples/js/renderers/SVGRenderer.js index 05e4aa542f61e0..5f6c82bfa2e613 100644 --- a/examples/js/renderers/SVGRenderer.js +++ b/examples/js/renderers/SVGRenderer.js @@ -403,7 +403,7 @@ THREE.SVGRenderer = function () { _color.copy( material.color ); - if ( material.vertexColors === THREE.FaceColors ) { + if ( material.vertexColors === THREE.FaceColors || material.vertexColors === THREE.VertexColors ) { _color.multiply( element.color ); @@ -413,7 +413,7 @@ THREE.SVGRenderer = function () { _diffuseColor.copy( material.color ); - if ( material.vertexColors === THREE.FaceColors ) { + if ( material.vertexColors === THREE.FaceColors || material.vertexColors === THREE.VertexColors ) { _diffuseColor.multiply( element.color ); diff --git a/examples/misc_boxselection.html b/examples/misc_boxselection.html new file mode 100644 index 00000000000000..3a15706160be06 --- /dev/null +++ b/examples/misc_boxselection.html @@ -0,0 +1,204 @@ + + + + three.js webgl - draggable cubes + + + + + + + + + + + + + + + + diff --git a/examples/misc_controls_deviceorientation.html b/examples/misc_controls_deviceorientation.html index 798122134e27c8..46f3272fddc838 100644 --- a/examples/misc_controls_deviceorientation.html +++ b/examples/misc_controls_deviceorientation.html @@ -20,6 +20,7 @@ font-size:13px; font-weight: bold; text-align:center; + box-sizing: border-box; } a { diff --git a/examples/misc_controls_fly.html b/examples/misc_controls_fly.html index d35d69a9cdf450..fb4f2e3b2387ec 100644 --- a/examples/misc_controls_fly.html +++ b/examples/misc_controls_fly.html @@ -23,6 +23,7 @@ top: 0px; width: 100%; padding: 5px; z-index:100; + box-sizing: border-box; } a { @@ -30,7 +31,9 @@ color: #0080ff; } - b { color:orange } + b { + color:orange + } diff --git a/examples/misc_controls_map.html b/examples/misc_controls_map.html index 7466186ff54941..1add4cdb2ad8a5 100644 --- a/examples/misc_controls_map.html +++ b/examples/misc_controls_map.html @@ -22,7 +22,7 @@ position: absolute; top: 0px; width: 100%; padding: 5px; - + box-sizing: border-box; } a { diff --git a/examples/misc_controls_orbit.html b/examples/misc_controls_orbit.html index e50546fc88ed68..cd30881db42159 100644 --- a/examples/misc_controls_orbit.html +++ b/examples/misc_controls_orbit.html @@ -22,7 +22,7 @@ position: absolute; top: 0px; width: 100%; padding: 5px; - + box-sizing: border-box; } a { diff --git a/examples/misc_controls_trackball.html b/examples/misc_controls_trackball.html index c6559309cebb5e..38e4515fcdea58 100644 --- a/examples/misc_controls_trackball.html +++ b/examples/misc_controls_trackball.html @@ -5,6 +5,12 @@ - - - - - - - - - - -
    -
    - - - - - - diff --git a/examples/models/gltf/RobotExpressive/README.md b/examples/models/gltf/RobotExpressive/README.md new file mode 100644 index 00000000000000..7eca324eccff3c --- /dev/null +++ b/examples/models/gltf/RobotExpressive/README.md @@ -0,0 +1,10 @@ +# RobotExpressive + +Model by [Tomás Laulhé](https://www.patreon.com/quaternius). Before using this +model on a project, consider supporting the creator's Patreon. CC0 1.0. + +Modifications by [Don McCurdy](https://donmccurdy.com/): + +- Added three facial expression morph targets +- Converted with FBX2GLTF +- Removed duplicate materials and reduced material metalness diff --git a/examples/models/gltf/RobotExpressive/RobotExpressive.glb b/examples/models/gltf/RobotExpressive/RobotExpressive.glb new file mode 100644 index 00000000000000..6fec9cfb4b41cb Binary files /dev/null and b/examples/models/gltf/RobotExpressive/RobotExpressive.glb differ diff --git a/examples/models/json/QRCode.json b/examples/models/json/QRCode.json deleted file mode 100644 index bd9cca5356da8d..00000000000000 --- a/examples/models/json/QRCode.json +++ /dev/null @@ -1 +0,0 @@ -{"metadata":{"version":4.5,"type":"Geometry","generator":"Geometry.toJSON"},"uuid":"5C236FF6-80D2-4EF0-B722-103C3323BC2D","type":"Geometry","data":{"vertices":[-54,134,58,-54,146,58,-42,146,58,-42,134,58,-42,158,58,-18,158,58,-18,146,58,-66,-57,58,-66,-141,58,-150,-141,58,-150,-57,58,-138,-129,58,-78,-129,58,-78,-69,58,-138,-69,58,-90,-81,58,-90,-117,58,-126,-117,58,-126,-81,58,-6,146,58,-6,122,58,-18,122,58,6,146,58,6,158,58,-6,158,58,6,122,58,6,74,58,-6,74,58,-6,86,58,-18,86,58,-18,74,58,-30,74,58,-30,86,58,-42,86,58,-42,98,58,-30,98,58,-30,122,58,-18,98,58,-6,98,58,18,74,58,18,2,58,30,2,58,30,50,58,42,50,58,42,38,58,54,38,58,54,26,58,66,26,58,66,38,58,78,38,58,78,2,58,66,2,58,66,14,58,54,14,58,54,-9,58,66,-9,58,66,-33,58,78,-33,58,78,-21,58,90,-21,58,90,-33,58,102,-33,58,102,-57,58,114,-57,58,114,-69,58,102,-69,58,102,-81,58,114,-81,58,114,-105,58,102,-105,58,102,-93,58,78,-93,58,78,-105,58,66,-105,58,66,-117,58,54,-117,58,54,-93,58,30,-93,58,30,-105,58,18,-105,58,18,-69,58,30,-69,58,30,-81,58,42,-81,58,42,-33,58,54,-33,58,54,-21,58,42,-21,58,30,-33,58,30,-9,58,-18,-9,58,-18,-21,58,-30,-21,58,-30,-33,58,-42,-33,58,-42,-21,58,-54,-21,58,-54,2,58,-42,2,58,-42,-9,58,-30,-9,58,-30,2,58,-6,2,58,-6,14,58,6,14,58,18,86,58,30,86,58,30,74,58,42,74,58,42,86,58,54,86,58,54,62,58,78,62,58,78,50,58,42,62,58,30,62,58,90,50,58,90,62,58,114,62,58,114,50,58,126,50,58,126,62,58,138,62,58,138,38,58,114,38,58,114,26,58,138,26,58,150,38,58,150,2,58,138,2,58,138,14,58,102,14,58,102,38,58,138,-9,58,150,-9,58,150,-33,58,138,-33,58,138,-21,58,126,-21,58,126,-33,58,138,-57,58,126,-57,58,126,-45,58,114,-45,58,114,-21,58,102,-21,58,102,-9,58,126,-9,58,126,2,58,150,-57,58,150,-141,58,138,-141,58,138,-129,58,114,-129,58,126,-105,58,126,-93,58,138,-93,58,138,-81,58,126,-81,58,126,-69,58,138,-69,58,114,-141,58,102,-141,58,102,-129,58,78,-129,58,90,-9,58,90,2,58,102,2,58,30,-117,58,42,-117,58,42,-105,58,30,-141,58,6,-141,58,6,-129,58,18,-129,58,18,-117,58,6,-69,58,6,-81,58,-18,-81,58,-18,-69,58,-6,-69,58,-6,-57,58,18,-57,58,-18,-93,58,-30,-93,58,-30,-117,58,-42,-117,58,-42,-105,58,-54,-105,58,-54,-69,58,-42,-69,58,-42,-57,58,-54,-57,58,-54,-45,58,-30,-45,58,-30,-81,58,-18,-117,58,-6,-117,58,-6,-129,58,-18,-129,58,-6,-105,58,6,-105,58,6,-117,58,-78,-45,58,-78,-33,58,-66,-33,58,-66,-21,58,-78,-21,58,-78,-9,58,-66,-9,58,-90,-9,58,-90,-21,58,-114,-21,58,-114,-9,58,-102,-9,58,-102,14,58,-114,14,58,-114,2,58,-126,2,58,-126,26,58,-138,26,58,-138,38,58,-90,38,58,-90,26,58,-78,26,58,-78,14,58,-90,14,58,-90,2,58,-78,2,58,-126,-9,58,-138,-9,58,-138,2,58,-150,2,58,-150,14,58,-138,14,58,-90,50,58,-114,50,58,-114,62,58,-66,62,58,-66,50,58,-78,50,58,-78,38,58,-54,50,58,-54,86,58,-42,74,58,-30,50,58,-42,50,58,-42,38,58,-54,38,58,-54,26,58,-66,26,58,-66,38,58,-18,26,58,-18,14,58,-30,14,58,-42,14,58,-54,14,58,-18,-57,58,-18,-33,58,-6,-33,58,-6,-21,58,18,-21,58,18,-33,58,30,-57,58,18,-45,58,6,-45,58,6,-33,58,-18,62,58,-6,62,58,-30,134,58,-42,122,58,54,158,58,54,134,58,42,134,58,42,146,58,18,146,58,18,158,58,42,122,58,54,122,58,54,98,58,42,98,58,42,110,58,30,110,58,30,134,58,30,98,58,18,98,58,18,110,58,150,158,58,150,74,58,66,74,58,66,158,58,78,86,58,138,86,58,138,146,58,78,146,58,126,134,58,126,98,58,90,98,58,90,134,58,54,-81,58,90,-81,58,90,-45,58,54,-45,58,78,-57,58,78,-69,58,66,-69,58,66,-57,58,54,-129,58,54,-141,58,42,-141,58,42,-129,58,-66,158,58,-66,74,58,-150,74,58,-150,158,58,-138,86,58,-78,86,58,-78,146,58,-138,146,58,-126,134,58,-90,134,58,-90,98,58,-126,98,58,-126,-21,58,-126,-45,58,-138,-45,58,-138,-21,58,-126,62,58,-126,50,58,-138,50,58,-138,62,58,-90,-33,58,-90,-45,58,-114,-45,58,-114,-33,58,-42,-129,58,-54,-129,58,-54,-117,58,-18,-141,58,-42,-141,58,-54,98,58,-54,122,58,-54,134,-41,-54,146,-41,-42,146,-41,-42,134,-41,-42,158,-41,-18,158,-41,-18,146,-41,-66,-57,-41,-66,-141,-41,-150,-141,-41,-150,-57,-41,-138,-129,-41,-78,-129,-41,-78,-69,-41,-138,-69,-41,-90,-81,-41,-90,-117,-41,-126,-117,-41,-126,-81,-41,-6,146,-41,-6,122,-41,-18,122,-41,6,146,-41,6,158,-41,-6,158,-41,6,122,-41,6,74,-41,-6,74,-41,-6,86,-41,-18,86,-41,-18,74,-41,-30,74,-41,-30,86,-41,-42,86,-41,-42,98,-41,-30,98,-41,-30,122,-41,-18,98,-41,-6,98,-41,18,74,-41,18,2,-41,30,2,-41,30,50,-41,42,50,-41,42,38,-41,54,38,-41,54,26,-41,66,26,-41,66,38,-41,78,38,-41,78,2,-41,66,2,-41,66,14,-41,54,14,-41,54,-9,-41,66,-9,-41,66,-33,-41,78,-33,-41,78,-21,-41,90,-21,-41,90,-33,-41,102,-33,-41,102,-57,-41,114,-57,-41,114,-69,-41,102,-69,-41,102,-81,-41,114,-81,-41,114,-105,-41,102,-105,-41,102,-93,-41,78,-93,-41,78,-105,-41,66,-105,-41,66,-117,-41,54,-117,-41,54,-93,-41,30,-93,-41,30,-105,-41,18,-105,-41,18,-69,-41,30,-69,-41,30,-81,-41,42,-81,-41,42,-33,-41,54,-33,-41,54,-21,-41,42,-21,-41,30,-33,-41,30,-9,-41,-18,-9,-41,-18,-21,-41,-30,-21,-41,-30,-33,-41,-42,-33,-41,-42,-21,-41,-54,-21,-41,-54,2,-41,-42,2,-41,-42,-9,-41,-30,-9,-41,-30,2,-41,-6,2,-41,-6,14,-41,6,14,-41,18,86,-41,30,86,-41,30,74,-41,42,74,-41,42,86,-41,54,86,-41,54,62,-41,78,62,-41,78,50,-41,42,62,-41,30,62,-41,90,50,-41,90,62,-41,114,62,-41,114,50,-41,126,50,-41,126,62,-41,138,62,-41,138,38,-41,114,38,-41,114,26,-41,138,26,-41,150,38,-41,150,2,-41,138,2,-41,138,14,-41,102,14,-41,102,38,-41,138,-9,-41,150,-9,-41,150,-33,-41,138,-33,-41,138,-21,-41,126,-21,-41,126,-33,-41,138,-57,-41,126,-57,-41,126,-45,-41,114,-45,-41,114,-21,-41,102,-21,-41,102,-9,-41,126,-9,-41,126,2,-41,150,-57,-41,150,-141,-41,138,-141,-41,138,-129,-41,114,-129,-41,126,-105,-41,126,-93,-41,138,-93,-41,138,-81,-41,126,-81,-41,126,-69,-41,138,-69,-41,114,-141,-41,102,-141,-41,102,-129,-41,78,-129,-41,90,-9,-41,90,2,-41,102,2,-41,30,-117,-41,42,-117,-41,42,-105,-41,30,-141,-41,6,-141,-41,6,-129,-41,18,-129,-41,18,-117,-41,6,-69,-41,6,-81,-41,-18,-81,-41,-18,-69,-41,-6,-69,-41,-6,-57,-41,18,-57,-41,-18,-93,-41,-30,-93,-41,-30,-117,-41,-42,-117,-41,-42,-105,-41,-54,-105,-41,-54,-69,-41,-42,-69,-41,-42,-57,-41,-54,-57,-41,-54,-45,-41,-30,-45,-41,-30,-81,-41,-18,-117,-41,-6,-117,-41,-6,-129,-41,-18,-129,-41,-6,-105,-41,6,-105,-41,6,-117,-41,-78,-45,-41,-78,-33,-41,-66,-33,-41,-66,-21,-41,-78,-21,-41,-78,-9,-41,-66,-9,-41,-90,-9,-41,-90,-21,-41,-114,-21,-41,-114,-9,-41,-102,-9,-41,-102,14,-41,-114,14,-41,-114,2,-41,-126,2,-41,-126,26,-41,-138,26,-41,-138,38,-41,-90,38,-41,-90,26,-41,-78,26,-41,-78,14,-41,-90,14,-41,-90,2,-41,-78,2,-41,-126,-9,-41,-138,-9,-41,-138,2,-41,-150,2,-41,-150,14,-41,-138,14,-41,-90,50,-41,-114,50,-41,-114,62,-41,-66,62,-41,-66,50,-41,-78,50,-41,-78,38,-41,-54,50,-41,-54,86,-41,-42,74,-41,-30,50,-41,-42,50,-41,-42,38,-41,-54,38,-41,-54,26,-41,-66,26,-41,-66,38,-41,-18,26,-41,-18,14,-41,-30,14,-41,-42,14,-41,-54,14,-41,-18,-57,-41,-18,-33,-41,-6,-33,-41,-6,-21,-41,18,-21,-41,18,-33,-41,30,-57,-41,18,-45,-41,6,-45,-41,6,-33,-41,-18,62,-41,-6,62,-41,-30,134,-41,-42,122,-41,54,158,-41,54,134,-41,42,134,-41,42,146,-41,18,146,-41,18,158,-41,42,122,-41,54,122,-41,54,98,-41,42,98,-41,42,110,-41,30,110,-41,30,134,-41,30,98,-41,18,98,-41,18,110,-41,150,158,-41,150,74,-41,66,74,-41,66,158,-41,78,86,-41,138,86,-41,138,146,-41,78,146,-41,126,134,-41,126,98,-41,90,98,-41,90,134,-41,54,-81,-41,90,-81,-41,90,-45,-41,54,-45,-41,78,-57,-41,78,-69,-41,66,-69,-41,66,-57,-41,54,-129,-41,54,-141,-41,42,-141,-41,42,-129,-41,-66,158,-41,-66,74,-41,-150,74,-41,-150,158,-41,-138,86,-41,-78,86,-41,-78,146,-41,-138,146,-41,-126,134,-41,-90,134,-41,-90,98,-41,-126,98,-41,-126,-21,-41,-126,-45,-41,-138,-45,-41,-138,-21,-41,-126,62,-41,-126,50,-41,-138,50,-41,-138,62,-41,-90,-33,-41,-90,-45,-41,-114,-45,-41,-114,-33,-41,-42,-129,-41,-54,-129,-41,-54,-117,-41,-18,-141,-41,-42,-141,-41,-54,98,-41,-54,122,-41],"normals":[0,0,1,0,0,-1,-1,0,0,0,-1,0,1,0,0,0,1,0],"colors":[0,12632256],"faces":[82,151,150,152,0,0,0,82,644,398,399,0,1,0,82,493,494,492,0,1,0,82,301,65,62,0,0,0,82,585,375,586,0,1,0,82,243,244,33,0,0,0,82,156,149,157,0,0,0,82,498,499,491,0,1,0,82,532,537,526,0,1,0,82,102,90,40,0,0,0,82,302,57,56,0,0,0,82,526,529,530,0,1,0,82,215,219,216,0,0,0,82,642,413,641,0,1,0,82,382,432,444,0,1,0,82,71,300,299,0,0,0,82,489,480,486,0,1,0,82,144,138,147,0,0,0,82,80,182,176,0,0,0,82,262,261,266,0,0,0,82,422,518,524,0,1,0,82,604,608,603,0,1,0,82,387,388,386,0,1,0,82,45,44,46,0,0,0,82,605,524,606,0,1,0,82,569,552,556,0,1,0,82,555,556,554,0,1,0,82,521,522,520,0,1,0,82,482,483,484,0,1,0,82,481,484,485,0,1,0,82,479,475,476,0,1,0,82,385,456,453,0,1,0,82,451,452,450,0,1,0,82,441,437,438,0,1,0,82,424,425,419,0,1,0,82,413,414,415,0,1,0,82,412,408,409,0,1,0,82,643,404,407,0,1,0,82,428,396,397,0,1,0,82,264,182,263,0,0,0,82,226,223,215,0,0,0,82,214,210,227,0,0,0,82,213,212,214,0,0,0,82,179,178,180,0,0,0,82,142,141,140,0,0,0,82,143,142,139,0,0,0,82,134,133,137,0,0,0,82,43,111,114,0,0,0,82,109,108,110,0,0,0,82,96,95,99,0,0,0,82,82,77,83,0,0,0,82,73,72,71,0,0,0,82,67,66,70,0,0,0,82,55,54,86,0,0,0,82,85,56,86,0,0,0,82,56,55,86,0,0,0,82,69,68,70,0,0,0,82,68,67,70,0,0,0,82,299,76,71,0,0,0,82,76,73,71,0,0,0,82,84,302,85,0,0,0,82,302,56,85,0,0,0,82,114,111,108,0,0,0,82,111,110,108,0,0,0,82,136,135,137,0,0,0,82,135,134,137,0,0,0,82,280,279,281,0,0,0,82,279,278,281,0,0,0,82,427,428,398,0,1,0,82,428,397,398,0,1,0,82,408,642,407,0,1,0,82,642,643,407,0,1,0,82,411,412,410,0,1,0,82,412,409,410,0,1,0,82,641,413,418,0,1,0,82,413,415,418,0,1,0,82,426,427,644,0,1,0,82,427,398,644,0,1,0,82,456,450,453,0,1,0,82,450,452,453,0,1,0,82,478,479,477,0,1,0,82,479,476,477,0,1,0,82,622,623,621,0,1,0,82,623,620,621,0,1,0,82,604,430,606,0,1,0,82,430,605,606,0,1,0,82,481,478,484,0,1,0,82,478,482,484,0,1,0,82,262,264,88,0,0,0,82,264,263,88,0,0,0,82,139,142,136,0,0,0,82,142,140,136,0,0,0,82,43,42,44,0,0,0,82,42,41,44,0,0,0,82,98,97,99,0,0,0,82,97,96,99,0,0,0,82,138,144,139,0,0,0,82,144,143,139,0,0,0,82,178,177,180,0,0,0,82,177,176,180,0,0,0,82,210,214,211,0,0,0,82,214,212,211,0,0,0,82,226,215,227,0,0,0,82,215,214,227,0,0,0,82,278,277,281,0,0,0,82,277,282,281,0,0,0,82,385,386,384,0,1,0,82,386,383,384,0,1,0,82,440,441,439,0,1,0,82,441,438,439,0,1,0,82,480,481,486,0,1,0,82,481,485,486,0,1,0,82,520,522,519,0,1,0,82,522,518,519,0,1,0,82,552,553,556,0,1,0,82,553,554,556,0,1,0,82,568,569,557,0,1,0,82,569,556,557,0,1,0,82,620,623,619,0,1,0,82,623,624,619,0,1,0,82,615,619,625,0,1,0,82,619,624,625,0,1,0,82,273,283,277,0,0,0,82,283,282,277,0,0,0,82,46,44,53,0,0,0,82,44,41,53,0,0,0,82,182,181,176,0,0,0,82,181,180,176,0,0,0,82,524,518,523,0,1,0,82,518,522,523,0,1,0,82,558,565,557,0,1,0,82,565,568,557,0,1,0,82,601,602,608,0,1,0,82,602,603,608,0,1,0,82,259,266,260,0,0,0,82,266,261,260,0,0,0,82,145,144,146,0,0,0,82,144,147,146,0,0,0,82,383,431,382,0,1,0,82,431,432,382,0,1,0,82,487,488,486,0,1,0,82,488,489,486,0,1,0,82,299,83,76,0,0,0,82,83,77,76,0,0,0,82,641,418,425,0,1,0,82,418,419,425,0,1,0,82,388,395,386,0,1,0,82,395,383,386,0,1,0,82,223,222,215,0,0,0,82,222,219,215,0,0,0,82,19,22,24,0,0,0,82,22,23,24,0,0,0,82,39,107,105,0,0,0,82,107,106,105,0,0,0,82,147,133,148,0,0,0,82,133,129,148,0,0,0,82,162,161,163,0,0,0,82,161,153,163,0,0,0,82,164,163,72,0,0,0,82,163,69,72,0,0,0,82,197,202,200,0,0,0,82,202,201,200,0,0,0,82,230,229,231,0,0,0,82,229,218,231,0,0,0,82,222,241,235,0,0,0,82,241,240,235,0,0,0,82,98,101,255,0,0,0,82,101,254,255,0,0,0,82,267,268,30,0,0,0,82,268,27,30,0,0,0,82,285,284,286,0,0,0,82,284,282,286,0,0,0,82,336,335,337,0,0,0,82,335,186,337,0,0,0,82,365,364,366,0,1,0,82,364,361,366,0,1,0,82,448,449,447,0,1,0,82,449,381,447,0,1,0,82,471,475,490,0,1,0,82,475,489,490,0,1,0,82,495,503,505,0,1,0,82,503,504,505,0,1,0,82,411,505,414,0,1,0,82,505,506,414,0,1,0,82,543,544,542,0,1,0,82,544,539,542,0,1,0,82,560,571,573,0,1,0,82,571,572,573,0,1,0,82,582,583,577,0,1,0,82,583,564,577,0,1,0,82,596,443,597,0,1,0,82,443,440,597,0,1,0,82,369,610,372,0,1,0,82,610,609,372,0,1,0,82,624,626,628,0,1,0,82,626,627,628,0,1,0,82,528,677,679,0,1,0,82,677,678,679,0,1,0,82,669,670,672,0,1,0,82,670,671,672,0,1,0,82,661,662,664,0,1,0,82,662,663,664,0,1,0,82,649,650,652,0,1,0,82,650,651,652,0,1,0,82,645,646,648,0,1,0,82,646,647,648,0,1,0,82,640,637,639,0,1,0,82,637,638,639,0,1,0,82,576,573,575,0,1,0,82,573,574,575,0,1,0,82,551,548,550,0,1,0,82,548,549,550,0,1,0,82,539,540,538,0,1,0,82,540,541,538,0,1,0,82,512,511,420,0,1,0,82,511,510,420,0,1,0,82,509,488,508,0,1,0,82,488,507,508,0,1,0,82,502,499,501,0,1,0,82,499,500,501,0,1,0,82,434,435,437,0,1,0,82,435,436,437,0,1,0,82,405,406,404,0,1,0,82,406,407,404,0,1,0,82,401,402,400,0,1,0,82,402,399,400,0,1,0,82,371,372,374,0,1,0,82,372,373,374,0,1,0,82,360,357,359,0,1,0,82,357,358,359,0,1,0,82,329,328,330,0,0,0,82,328,327,330,0,0,0,82,319,322,320,0,0,0,82,322,321,320,0,0,0,82,309,308,310,0,0,0,82,308,307,310,0,0,0,82,305,304,306,0,0,0,82,304,303,306,0,0,0,82,298,297,295,0,0,0,82,297,296,295,0,0,0,82,232,231,233,0,0,0,82,231,234,233,0,0,0,82,207,206,208,0,0,0,82,206,209,208,0,0,0,82,199,198,196,0,0,0,82,198,197,196,0,0,0,82,168,169,78,0,0,0,82,169,170,78,0,0,0,82,165,146,166,0,0,0,82,146,167,166,0,0,0,82,158,157,159,0,0,0,82,157,160,159,0,0,0,82,94,93,95,0,0,0,82,93,92,95,0,0,0,82,65,64,62,0,0,0,82,64,63,62,0,0,0,82,57,60,58,0,0,0,82,60,59,58,0,0,0,82,31,30,32,0,0,0,82,30,29,32,0,0,0,82,18,17,15,0,0,0,82,17,16,15,0,0,0,82,183,178,184,0,0,0,82,178,195,184,0,0,0,82,525,526,520,0,1,0,82,526,537,520,0,1,0,82,608,604,607,0,1,0,82,604,606,607,0,1,0,82,449,450,457,0,1,0,82,450,456,457,0,1,0,82,394,395,389,0,1,0,82,395,388,389,0,1,0,82,266,265,262,0,0,0,82,265,264,262,0,0,0,82,107,115,108,0,0,0,82,115,114,108,0,0,0,82,52,47,53,0,0,0,82,47,46,53,0,0,0,82,250,249,251,0,0,0,82,249,248,251,0,0,0,82,590,591,593,0,1,0,82,591,592,593,0,1,0,82,584,588,590,0,1,0,82,588,589,590,0,1,0,82,569,570,552,0,1,0,82,570,550,552,0,1,0,82,379,371,377,0,1,0,82,371,374,377,0,1,0,82,247,246,248,0,0,0,82,246,242,248,0,0,0,82,208,228,210,0,0,0,82,228,227,210,0,0,0,82,32,29,35,0,0,0,82,29,37,35,0,0,0,82,251,241,250,0,0,0,82,241,224,250,0,0,0,82,566,583,592,0,1,0,82,583,593,592,0,1,0,82,593,581,590,0,1,0,82,581,584,590,0,1,0,82,375,376,374,0,1,0,82,376,377,374,0,1,0,82,380,370,379,0,1,0,82,370,371,379,0,1,0,82,242,239,248,0,0,0,82,239,251,248,0,0,0,82,35,34,32,0,0,0,82,34,33,32,0,0,0,82,29,28,37,0,0,0,82,28,38,37,0,0,0,82,489,475,480,0,1,0,82,475,479,480,0,1,0,82,441,442,437,0,1,0,82,442,434,437,0,1,0,82,147,138,133,0,0,0,82,138,137,133,0,0,0,82,99,95,100,0,0,0,82,95,92,100,0,0,0,82,568,565,567,0,1,0,82,565,566,567,0,1,0,82,434,442,433,0,1,0,82,442,432,433,0,1,0,82,226,225,223,0,0,0,82,225,224,223,0,0,0,82,92,91,100,0,0,0,82,91,90,100,0,0,0,82,195,190,184,0,0,0,82,190,187,184,0,0,0,82,565,558,564,0,1,0,82,558,561,564,0,1,0,82,532,526,531,0,1,0,82,526,530,531,0,1,0,82,413,642,412,0,1,0,82,642,408,412,0,1,0,82,66,300,70,0,0,0,82,300,71,70,0,0,0,82,595,596,594,0,1,0,82,596,591,594,0,1,0,82,581,582,580,0,1,0,82,582,577,580,0,1,0,82,249,254,252,0,0,0,82,254,253,252,0,0,0,82,239,238,240,0,0,0,82,238,235,240,0,0,0,82,444,432,443,0,1,0,82,432,442,443,0,1,0,82,187,190,188,0,0,0,82,190,189,188,0,0,0,82,100,90,101,0,0,0,82,90,102,101,0,0,0,82,90,89,40,0,0,0,82,89,41,40,0,0,0,82,116,132,119,0,0,0,82,132,124,119,0,0,0,82,458,461,474,0,1,0,82,461,466,474,0,1,0,82,598,591,597,0,1,0,82,591,596,597,0,1,0,82,578,579,577,0,1,0,82,579,580,577,0,1,0,82,562,563,561,0,1,0,82,563,564,561,0,1,0,82,465,466,462,0,1,0,82,466,461,462,0,1,0,82,402,643,399,0,1,0,82,643,644,399,0,1,0,82,256,255,249,0,0,0,82,255,254,249,0,0,0,82,236,235,237,0,0,0,82,235,238,237,0,0,0,82,220,219,221,0,0,0,82,219,222,221,0,0,0,82,123,120,124,0,0,0,82,120,119,124,0,0,0,82,60,57,301,0,0,0,82,57,302,301,0,0,0,82,43,113,111,0,0,0,82,113,112,111,0,0,0,82,454,455,453,0,1,0,82,455,385,453,0,1,0,82,613,616,618,0,1,0,82,616,617,618,0,1,0,82,588,586,587,0,1,0,82,586,373,587,0,1,0,82,536,533,535,0,1,0,82,533,534,535,0,1,0,82,532,533,537,0,1,0,82,533,536,537,0,1,0,82,468,472,467,0,1,0,82,472,473,467,0,1,0,82,466,467,474,0,1,0,82,467,473,474,0,1,0,82,423,424,422,0,1,0,82,424,421,422,0,1,0,82,275,274,276,0,0,0,82,274,271,276,0,0,0,82,31,244,245,0,0,0,82,244,246,245,0,0,0,82,192,191,193,0,0,0,82,191,194,193,0,0,0,82,131,130,125,0,0,0,82,130,126,125,0,0,0,82,131,125,132,0,0,0,82,125,124,132,0,0,0,82,79,82,80,0,0,0,82,82,81,80,0,0,0,82,2,6,4,0,0,0,82,6,5,4,0,0,0,82,35,37,36,0,0,0,82,37,21,36,0,0,0,82,113,49,116,0,0,0,82,49,132,116,0,0,0,82,175,174,168,0,0,0,82,174,171,168,0,0,0,82,206,205,96,0,0,0,82,205,193,96,0,0,0,82,228,97,225,0,0,0,82,97,256,225,0,0,0,82,339,338,335,0,0,0,82,338,199,335,0,0,0,82,270,341,34,0,0,0,82,341,340,34,0,0,0,82,347,348,346,0,1,0,82,348,344,346,0,1,0,82,363,379,378,0,1,0,82,379,377,378,0,1,0,82,455,458,391,0,1,0,82,458,474,391,0,1,0,82,517,510,516,0,1,0,82,510,513,516,0,1,0,82,548,438,547,0,1,0,82,438,535,547,0,1,0,82,598,439,567,0,1,0,82,439,570,567,0,1,0,82,541,680,677,0,1,0,82,680,681,677,0,1,0,82,612,376,683,0,1,0,82,376,682,683,0,1,0,82,673,674,676,0,1,0,82,674,675,676,0,1,0,82,665,666,668,0,1,0,82,666,667,668,0,1,0,82,660,657,656,0,1,0,82,657,655,656,0,1,0,82,658,654,657,0,1,0,82,654,655,657,0,1,0,82,654,658,653,0,1,0,82,658,659,653,0,1,0,82,653,659,656,0,1,0,82,659,660,656,0,1,0,82,636,633,632,0,1,0,82,633,631,632,0,1,0,82,634,630,633,0,1,0,82,630,631,633,0,1,0,82,630,634,629,0,1,0,82,634,635,629,0,1,0,82,629,635,632,0,1,0,82,635,636,632,0,1,0,82,613,614,616,0,1,0,82,614,615,616,0,1,0,82,345,611,612,0,1,0,82,611,378,612,0,1,0,82,601,523,600,0,1,0,82,523,599,600,0,1,0,82,585,586,584,0,1,0,82,586,588,584,0,1,0,82,561,558,560,0,1,0,82,558,559,560,0,1,0,82,546,547,545,0,1,0,82,547,535,545,0,1,0,82,526,527,529,0,1,0,82,527,528,529,0,1,0,82,515,516,514,0,1,0,82,516,513,514,0,1,0,82,497,498,496,0,1,0,82,498,494,496,0,1,0,82,410,496,495,0,1,0,82,496,494,495,0,1,0,82,494,498,492,0,1,0,82,498,491,492,0,1,0,82,482,491,502,0,1,0,82,491,499,502,0,1,0,82,471,472,470,0,1,0,82,472,469,470,0,1,0,82,465,469,468,0,1,0,82,469,472,468,0,1,0,82,463,464,462,0,1,0,82,464,465,462,0,1,0,82,460,461,459,0,1,0,82,461,458,459,0,1,0,82,445,446,444,0,1,0,82,446,382,444,0,1,0,82,431,429,430,0,1,0,82,429,426,430,0,1,0,82,641,425,644,0,1,0,82,425,426,644,0,1,0,82,420,421,419,0,1,0,82,421,424,419,0,1,0,82,418,415,417,0,1,0,82,415,416,417,0,1,0,82,404,643,403,0,1,0,82,643,402,403,0,1,0,82,431,396,429,0,1,0,82,396,428,429,0,1,0,82,393,394,392,0,1,0,82,394,391,392,0,1,0,82,390,391,389,0,1,0,82,391,394,389,0,1,0,82,395,396,383,0,1,0,82,396,431,383,0,1,0,82,368,381,446,0,1,0,82,381,382,446,0,1,0,82,380,368,370,0,1,0,82,368,369,370,0,1,0,82,362,367,380,0,1,0,82,367,368,380,0,1,0,82,348,361,363,0,1,0,82,361,362,363,0,1,0,82,356,353,352,0,1,0,82,353,351,352,0,1,0,82,354,350,353,0,1,0,82,350,351,353,0,1,0,82,350,354,349,0,1,0,82,354,355,349,0,1,0,82,349,355,352,0,1,0,82,355,356,352,0,1,0,82,344,345,343,0,1,0,82,345,342,343,0,1,0,82,333,332,334,0,0,0,82,332,331,334,0,0,0,82,325,324,326,0,0,0,82,324,323,326,0,0,0,82,313,315,314,0,0,0,82,315,318,314,0,0,0,82,313,312,315,0,0,0,82,312,316,315,0,0,0,82,317,316,311,0,0,0,82,316,312,311,0,0,0,82,318,317,314,0,0,0,82,317,311,314,0,0,0,82,289,291,290,0,0,0,82,291,294,290,0,0,0,82,289,288,291,0,0,0,82,288,292,291,0,0,0,82,293,292,287,0,0,0,82,292,288,287,0,0,0,82,294,293,290,0,0,0,82,293,287,290,0,0,0,82,271,274,272,0,0,0,82,274,273,272,0,0,0,82,3,270,269,0,0,0,82,270,36,269,0,0,0,82,257,181,258,0,0,0,82,181,259,258,0,0,0,82,243,242,244,0,0,0,82,242,246,244,0,0,0,82,219,218,216,0,0,0,82,218,217,216,0,0,0,82,204,203,205,0,0,0,82,203,193,205,0,0,0,82,191,190,194,0,0,0,82,190,195,194,0,0,0,82,184,187,185,0,0,0,82,187,186,185,0,0,0,82,173,172,174,0,0,0,82,172,171,174,0,0,0,82,155,154,156,0,0,0,82,154,152,156,0,0,0,82,68,153,154,0,0,0,82,153,152,154,0,0,0,82,152,150,156,0,0,0,82,150,149,156,0,0,0,82,140,160,149,0,0,0,82,160,157,149,0,0,0,82,126,130,128,0,0,0,82,130,129,128,0,0,0,82,123,126,127,0,0,0,82,126,128,127,0,0,0,82,121,120,122,0,0,0,82,120,123,122,0,0,0,82,116,119,117,0,0,0,82,119,118,117,0,0,0,82,103,102,104,0,0,0,82,102,40,104,0,0,0,82,89,88,87,0,0,0,82,88,84,87,0,0,0,82,299,302,83,0,0,0,82,302,84,83,0,0,0,82,82,79,77,0,0,0,82,79,78,77,0,0,0,82,76,75,73,0,0,0,82,75,74,73,0,0,0,82,66,65,300,0,0,0,82,65,301,300,0,0,0,82,62,61,301,0,0,0,82,61,60,301,0,0,0,82,89,87,54,0,0,0,82,87,86,54,0,0,0,82,47,52,50,0,0,0,82,52,51,50,0,0,0,82,48,47,49,0,0,0,82,47,50,49,0,0,0,82,53,41,54,0,0,0,82,41,89,54,0,0,0,82,26,104,39,0,0,0,82,104,40,39,0,0,0,82,38,28,26,0,0,0,82,28,27,26,0,0,0,82,20,38,25,0,0,0,82,38,26,25,0,0,0,82,6,21,19,0,0,0,82,21,20,19,0,0,0,82,9,11,10,0,0,0,82,11,14,10,0,0,0,82,9,8,11,0,0,0,82,8,12,11,0,0,0,82,13,12,7,0,0,0,82,12,8,7,0,0,0,82,14,13,10,0,0,0,82,13,7,10,0,0,0,82,0,3,1,0,0,0,82,3,2,1,0,0,0,82,2,4,344,0,2,1,82,4,346,344,0,2,1,82,6,2,348,0,3,1,82,2,344,348,0,3,1,82,5,6,347,0,4,1,82,6,348,347,0,4,1,82,4,5,346,0,5,1,82,5,347,346,0,5,1,82,319,661,322,0,2,1,82,661,664,322,0,2,1,82,322,664,321,0,3,1,82,664,663,321,0,3,1,82,321,663,320,0,4,1,82,663,662,320,0,4,1,82,320,662,319,0,5,1,82,662,661,319,0,5,1,82,318,315,660,0,4,1,82,315,657,660,0,4,1,82,317,318,659,0,3,1,82,318,660,659,0,3,1,82,316,317,658,0,2,1,82,317,659,658,0,2,1,82,315,316,657,0,5,1,82,316,658,657,0,5,1,82,311,653,314,0,5,1,82,653,656,314,0,5,1,82,314,656,313,0,2,1,82,656,655,313,0,2,1,82,313,655,312,0,3,1,82,655,654,312,0,3,1,82,312,654,311,0,4,1,82,654,653,311,0,4,1,82,310,307,652,0,5,1,82,307,649,652,0,5,1,82,309,310,651,0,2,1,82,310,652,651,0,2,1,82,308,309,650,0,3,1,82,309,651,650,0,3,1,82,307,308,649,0,4,1,82,308,650,649,0,4,1,82,15,357,18,0,5,1,82,357,360,18,0,5,1,82,18,360,17,0,2,1,82,360,359,17,0,2,1,82,17,359,16,0,3,1,82,359,358,16,0,3,1,82,16,358,15,0,4,1,82,358,357,15,0,4,1,82,14,11,356,0,4,1,82,11,353,356,0,4,1,82,13,14,355,0,3,1,82,14,356,355,0,3,1,82,12,13,354,0,2,1,82,13,355,354,0,2,1,82,11,12,353,0,5,1,82,12,354,353,0,5,1,82,306,303,648,0,5,1,82,303,645,648,0,5,1,82,305,306,647,0,2,1,82,306,648,647,0,2,1,82,304,305,646,0,3,1,82,305,647,646,0,3,1,82,303,304,645,0,4,1,82,304,646,645,0,4,1,82,7,349,10,0,5,1,82,349,352,10,0,5,1,82,10,352,9,0,2,1,82,352,351,9,0,2,1,82,9,351,8,0,3,1,82,351,350,8,0,3,1,82,8,350,7,0,4,1,82,350,349,7,0,4,1,82,299,641,302,0,4,1,82,641,644,302,0,4,1,82,302,644,301,0,3,1,82,644,643,301,0,3,1,82,301,643,300,0,2,1,82,643,642,300,0,2,1,82,300,642,299,0,5,1,82,642,641,299,0,5,1,82,334,331,676,0,5,1,82,331,673,676,0,5,1,82,333,334,675,0,2,1,82,334,676,675,0,2,1,82,332,333,674,0,3,1,82,333,675,674,0,3,1,82,331,332,673,0,4,1,82,332,674,673,0,4,1,82,326,323,668,0,5,1,82,323,665,668,0,5,1,82,325,326,667,0,2,1,82,326,668,667,0,2,1,82,324,325,666,0,3,1,82,325,667,666,0,3,1,82,323,324,665,0,4,1,82,324,666,665,0,4,1,82,330,327,672,0,5,1,82,327,669,672,0,5,1,82,329,330,671,0,2,1,82,330,672,671,0,2,1,82,328,329,670,0,3,1,82,329,671,670,0,3,1,82,327,328,669,0,4,1,82,328,670,669,0,4,1,82,295,637,298,0,5,1,82,637,640,298,0,5,1,82,298,640,297,0,2,1,82,640,639,297,0,2,1,82,297,639,296,0,3,1,82,639,638,296,0,3,1,82,296,638,295,0,4,1,82,638,637,295,0,4,1,82,294,291,636,0,4,1,82,291,633,636,0,4,1,82,293,294,635,0,3,1,82,294,636,635,0,3,1,82,292,293,634,0,2,1,82,293,635,634,0,2,1,82,291,292,633,0,5,1,82,292,634,633,0,5,1,82,287,629,290,0,5,1,82,629,632,290,0,5,1,82,290,632,289,0,2,1,82,632,631,289,0,2,1,82,289,631,288,0,3,1,82,631,630,288,0,3,1,82,288,630,287,0,4,1,82,630,629,287,0,4,1,82,282,284,624,0,4,1,82,284,626,624,0,4,1,82,286,282,628,0,5,1,82,282,624,628,0,5,1,82,285,286,627,0,2,1,82,286,628,627,0,2,1,82,284,285,626,0,3,1,82,285,627,626,0,3,1,82,273,277,615,0,4,1,82,277,619,615,0,4,1,82,283,273,625,0,5,1,82,273,615,625,0,5,1,82,282,283,624,0,2,1,82,283,625,624,0,2,1,82,281,282,623,0,3,1,82,282,624,623,0,3,1,82,280,281,622,0,2,1,82,281,623,622,0,2,1,82,279,280,621,0,3,1,82,280,622,621,0,3,1,82,278,279,620,0,4,1,82,279,621,620,0,4,1,82,277,278,619,0,5,1,82,278,620,619,0,5,1,82,271,613,276,0,5,1,82,613,618,276,0,5,1,82,275,276,617,0,2,1,82,276,618,617,0,2,1,82,274,275,616,0,3,1,82,275,617,616,0,3,1,82,273,274,615,0,2,1,82,274,616,615,0,2,1,82,272,273,614,0,3,1,82,273,615,614,0,3,1,82,271,272,613,0,4,1,82,272,614,613,0,4,1,82,3,0,345,0,3,1,82,0,342,345,0,3,1,82,2,3,344,0,4,1,82,3,345,344,0,4,1,82,1,2,343,0,5,1,82,2,344,343,0,5,1,82,0,1,342,0,2,1,82,1,343,342,0,2,1,82,270,3,612,0,2,1,82,3,345,612,0,2,1,82,36,270,378,0,3,1,82,270,612,378,0,3,1,82,269,36,611,0,4,1,82,36,378,611,0,4,1,82,3,269,345,0,5,1,82,269,611,345,0,5,1,82,34,340,376,0,3,1,82,340,682,376,0,3,1,82,270,34,612,0,4,1,82,34,376,612,0,4,1,82,341,270,683,0,5,1,82,270,612,683,0,5,1,82,340,341,682,0,2,1,82,341,683,682,0,2,1,82,268,610,27,0,4,1,82,610,369,27,0,4,1,82,267,609,268,0,3,1,82,609,610,268,0,3,1,82,30,372,267,0,2,1,82,372,609,267,0,2,1,82,27,369,30,0,5,1,82,369,372,30,0,5,1,82,259,260,601,0,2,1,82,260,602,601,0,2,1,82,266,259,608,0,3,1,82,259,601,608,0,3,1,82,265,266,607,0,2,1,82,266,608,607,0,2,1,82,264,265,606,0,3,1,82,265,607,606,0,3,1,82,182,264,524,0,2,1,82,264,606,524,0,2,1,82,263,182,605,0,3,1,82,182,524,605,0,3,1,82,88,263,430,0,4,1,82,263,605,430,0,4,1,82,262,88,604,0,5,1,82,88,430,604,0,5,1,82,261,262,603,0,4,1,82,262,604,603,0,4,1,82,260,261,602,0,5,1,82,261,603,602,0,5,1,82,181,257,523,0,3,1,82,257,599,523,0,3,1,82,259,181,601,0,4,1,82,181,523,601,0,4,1,82,258,259,600,0,5,1,82,259,601,600,0,5,1,82,257,258,599,0,2,1,82,258,600,599,0,2,1,82,256,97,598,0,4,1,82,97,439,598,0,4,1,82,225,256,567,0,5,1,82,256,598,567,0,5,1,82,228,225,570,0,2,1,82,225,567,570,0,2,1,82,97,228,439,0,3,1,82,228,570,439,0,3,1,82,252,594,249,0,5,1,82,594,591,249,0,5,1,82,256,249,598,0,2,1,82,249,591,598,0,2,1,82,255,256,597,0,3,1,82,256,598,597,0,3,1,82,98,255,440,0,2,1,82,255,597,440,0,2,1,82,101,98,443,0,3,1,82,98,440,443,0,3,1,82,254,101,596,0,4,1,82,101,443,596,0,4,1,82,253,254,595,0,3,1,82,254,596,595,0,3,1,82,252,253,594,0,4,1,82,253,595,594,0,4,1,82,239,242,581,0,5,1,82,242,584,581,0,5,1,82,251,239,593,0,2,1,82,239,581,593,0,2,1,82,241,251,583,0,5,1,82,251,593,583,0,5,1,82,224,241,566,0,2,1,82,241,583,566,0,2,1,82,250,224,592,0,3,1,82,224,566,592,0,3,1,82,249,250,591,0,3,1,82,250,592,591,0,3,1,82,248,249,590,0,4,1,82,249,591,590,0,4,1,82,247,248,589,0,3,1,82,248,590,589,0,3,1,82,246,247,588,0,4,1,82,247,589,588,0,4,1,82,245,246,587,0,3,1,82,246,588,587,0,3,1,82,31,245,373,0,4,1,82,245,587,373,0,4,1,82,244,31,586,0,5,1,82,31,373,586,0,5,1,82,33,244,375,0,4,1,82,244,586,375,0,4,1,82,243,33,585,0,5,1,82,33,375,585,0,5,1,82,243,585,242,0,2,1,82,585,584,242,0,2,1,82,222,235,564,0,2,1,82,235,577,564,0,2,1,82,241,222,583,0,3,1,82,222,564,583,0,3,1,82,240,241,582,0,4,1,82,241,583,582,0,4,1,82,239,240,581,0,3,1,82,240,582,581,0,3,1,82,238,239,580,0,4,1,82,239,581,580,0,4,1,82,238,580,237,0,5,1,82,580,579,237,0,5,1,82,236,237,578,0,2,1,82,237,579,578,0,2,1,82,235,236,577,0,3,1,82,236,578,577,0,3,1,82,231,232,573,0,3,1,82,232,574,573,0,3,1,82,234,231,576,0,4,1,82,231,573,576,0,4,1,82,233,234,575,0,5,1,82,234,576,575,0,5,1,82,232,233,574,0,2,1,82,233,575,574,0,2,1,82,218,229,560,0,4,1,82,229,571,560,0,4,1,82,231,218,573,0,5,1,82,218,560,573,0,5,1,82,230,231,572,0,2,1,82,231,573,572,0,2,1,82,229,230,571,0,3,1,82,230,572,571,0,3,1,82,208,210,550,0,3,1,82,210,552,550,0,3,1,82,228,208,570,0,4,1,82,208,550,570,0,4,1,82,227,228,569,0,5,1,82,228,570,569,0,5,1,82,226,227,568,0,4,1,82,227,569,568,0,4,1,82,225,226,567,0,3,1,82,226,568,567,0,3,1,82,224,225,566,0,4,1,82,225,567,566,0,4,1,82,223,224,565,0,5,1,82,224,566,565,0,5,1,82,222,223,564,0,4,1,82,223,565,564,0,4,1,82,222,564,221,0,5,1,82,564,563,221,0,5,1,82,220,221,562,0,2,1,82,221,563,562,0,2,1,82,219,220,561,0,3,1,82,220,562,561,0,3,1,82,218,219,560,0,2,1,82,219,561,560,0,2,1,82,217,218,559,0,3,1,82,218,560,559,0,3,1,82,216,217,558,0,4,1,82,217,559,558,0,4,1,82,215,216,557,0,3,1,82,216,558,557,0,3,1,82,214,215,556,0,2,1,82,215,557,556,0,2,1,82,213,214,555,0,5,1,82,214,556,555,0,5,1,82,212,213,554,0,2,1,82,213,555,554,0,2,1,82,211,212,553,0,3,1,82,212,554,553,0,3,1,82,210,211,552,0,4,1,82,211,553,552,0,4,1,82,206,207,548,0,3,1,82,207,549,548,0,3,1,82,209,206,551,0,4,1,82,206,548,551,0,4,1,82,208,209,550,0,5,1,82,209,551,550,0,5,1,82,207,208,549,0,2,1,82,208,550,549,0,2,1,82,193,203,535,0,3,1,82,203,545,535,0,3,1,82,96,193,438,0,4,1,82,193,535,438,0,4,1,82,206,96,548,0,5,1,82,96,438,548,0,5,1,82,205,206,547,0,2,1,82,206,548,547,0,2,1,82,204,205,546,0,5,1,82,205,547,546,0,5,1,82,203,204,545,0,2,1,82,204,546,545,0,2,1,82,197,200,539,0,2,1,82,200,542,539,0,2,1,82,202,197,544,0,3,1,82,197,539,544,0,3,1,82,201,202,543,0,4,1,82,202,544,543,0,4,1,82,200,201,542,0,5,1,82,201,543,542,0,5,1,82,199,196,541,0,2,1,82,196,538,541,0,2,1,82,198,199,540,0,3,1,82,199,541,540,0,3,1,82,197,198,539,0,4,1,82,198,540,539,0,4,1,82,196,197,538,0,5,1,82,197,539,538,0,5,1,82,335,199,677,0,5,1,82,199,541,677,0,5,1,82,339,335,681,0,2,1,82,335,677,681,0,2,1,82,338,339,680,0,3,1,82,339,681,680,0,3,1,82,199,338,541,0,4,1,82,338,680,541,0,4,1,82,186,335,528,0,4,1,82,335,677,528,0,4,1,82,337,186,679,0,5,1,82,186,528,679,0,5,1,82,336,337,678,0,2,1,82,337,679,678,0,2,1,82,335,336,677,0,3,1,82,336,678,677,0,3,1,82,178,183,520,0,4,1,82,183,525,520,0,4,1,82,195,178,537,0,5,1,82,178,520,537,0,5,1,82,195,537,194,0,4,1,82,537,536,194,0,4,1,82,193,194,535,0,5,1,82,194,536,535,0,5,1,82,192,193,534,0,2,1,82,193,535,534,0,2,1,82,191,192,533,0,3,1,82,192,534,533,0,3,1,82,190,191,532,0,2,1,82,191,533,532,0,2,1,82,189,190,531,0,5,1,82,190,532,531,0,5,1,82,189,531,188,0,2,1,82,531,530,188,0,2,1,82,187,188,529,0,3,1,82,188,530,529,0,3,1,82,186,187,528,0,2,1,82,187,529,528,0,2,1,82,185,186,527,0,3,1,82,186,528,527,0,3,1,82,184,185,526,0,4,1,82,185,527,526,0,4,1,82,183,184,525,0,3,1,82,184,526,525,0,3,1,82,80,176,422,0,3,1,82,176,518,422,0,3,1,82,182,80,524,0,4,1,82,80,422,524,0,4,1,82,181,182,523,0,5,1,82,182,524,523,0,5,1,82,180,181,522,0,2,1,82,181,523,522,0,2,1,82,179,180,521,0,5,1,82,180,522,521,0,5,1,82,178,179,520,0,2,1,82,179,521,520,0,2,1,82,177,178,519,0,3,1,82,178,520,519,0,3,1,82,176,177,518,0,4,1,82,177,519,518,0,4,1,82,168,171,510,0,4,1,82,171,513,510,0,4,1,82,175,168,517,0,5,1,82,168,510,517,0,5,1,82,174,175,516,0,2,1,82,175,517,516,0,2,1,82,173,174,515,0,5,1,82,174,516,515,0,5,1,82,172,173,514,0,2,1,82,173,515,514,0,2,1,82,171,172,513,0,3,1,82,172,514,513,0,3,1,82,170,512,78,0,5,1,82,512,420,78,0,5,1,82,169,511,170,0,4,1,82,511,512,170,0,4,1,82,168,510,169,0,3,1,82,510,511,169,0,3,1,82,78,420,168,0,2,1,82,420,510,168,0,2,1,82,146,165,488,0,3,1,82,165,507,488,0,3,1,82,167,146,509,0,4,1,82,146,488,509,0,4,1,82,166,167,508,0,5,1,82,167,509,508,0,5,1,82,165,166,507,0,2,1,82,166,508,507,0,2,1,82,163,164,505,0,3,1,82,164,506,505,0,3,1,82,69,163,411,0,4,1,82,163,505,411,0,4,1,82,72,69,414,0,5,1,82,69,411,414,0,5,1,82,164,72,506,0,2,1,82,72,414,506,0,2,1,82,153,161,495,0,4,1,82,161,503,495,0,4,1,82,163,153,505,0,5,1,82,153,495,505,0,5,1,82,162,163,504,0,2,1,82,163,505,504,0,2,1,82,161,162,503,0,3,1,82,162,504,503,0,3,1,82,140,149,482,0,5,1,82,149,491,482,0,5,1,82,160,140,502,0,2,1,82,140,482,502,0,2,1,82,159,160,501,0,5,1,82,160,502,501,0,5,1,82,158,159,500,0,2,1,82,159,501,500,0,2,1,82,157,158,499,0,3,1,82,158,500,499,0,3,1,82,156,157,498,0,2,1,82,157,499,498,0,2,1,82,155,156,497,0,5,1,82,156,498,497,0,5,1,82,154,155,496,0,2,1,82,155,497,496,0,2,1,82,68,154,410,0,5,1,82,154,496,410,0,5,1,82,153,68,495,0,2,1,82,68,410,495,0,2,1,82,152,153,494,0,3,1,82,153,495,494,0,3,1,82,151,152,493,0,2,1,82,152,494,493,0,2,1,82,150,151,492,0,3,1,82,151,493,492,0,3,1,82,150,492,149,0,4,1,82,492,491,149,0,4,1,82,129,133,471,0,4,1,82,133,475,471,0,4,1,82,148,129,490,0,5,1,82,129,471,490,0,5,1,82,147,148,489,0,2,1,82,148,490,489,0,2,1,82,146,147,488,0,5,1,82,147,489,488,0,5,1,82,145,146,487,0,2,1,82,146,488,487,0,2,1,82,144,145,486,0,3,1,82,145,487,486,0,3,1,82,143,144,485,0,2,1,82,144,486,485,0,2,1,82,142,143,484,0,3,1,82,143,485,484,0,3,1,82,141,142,483,0,2,1,82,142,484,483,0,2,1,82,140,141,482,0,3,1,82,141,483,482,0,3,1,82,136,140,478,0,4,1,82,140,482,478,0,4,1,82,139,136,481,0,5,1,82,136,478,481,0,5,1,82,138,139,480,0,4,1,82,139,481,480,0,4,1,82,137,138,479,0,3,1,82,138,480,479,0,3,1,82,136,137,478,0,2,1,82,137,479,478,0,2,1,82,135,136,477,0,3,1,82,136,478,477,0,3,1,82,134,135,476,0,4,1,82,135,477,476,0,4,1,82,133,134,475,0,5,1,82,134,476,475,0,5,1,82,113,116,455,0,5,1,82,116,458,455,0,5,1,82,49,113,391,0,2,1,82,113,455,391,0,2,1,82,132,49,474,0,3,1,82,49,391,474,0,3,1,82,131,132,473,0,2,1,82,132,474,473,0,2,1,82,131,473,130,0,3,1,82,473,472,130,0,3,1,82,129,130,471,0,2,1,82,130,472,471,0,2,1,82,128,129,470,0,3,1,82,129,471,470,0,3,1,82,128,470,127,0,4,1,82,470,469,127,0,4,1,82,123,127,465,0,5,1,82,127,469,465,0,5,1,82,126,123,468,0,2,1,82,123,465,468,0,2,1,82,125,126,467,0,5,1,82,126,468,467,0,5,1,82,124,125,466,0,4,1,82,125,467,466,0,4,1,82,123,124,465,0,3,1,82,124,466,465,0,3,1,82,122,123,464,0,4,1,82,123,465,464,0,4,1,82,121,122,463,0,5,1,82,122,464,463,0,5,1,82,120,121,462,0,2,1,82,121,463,462,0,2,1,82,119,120,461,0,5,1,82,120,462,461,0,5,1,82,118,119,460,0,4,1,82,119,461,460,0,4,1,82,117,118,459,0,5,1,82,118,460,459,0,5,1,82,116,117,458,0,2,1,82,117,459,458,0,2,1,82,107,108,449,0,5,1,82,108,450,449,0,5,1,82,115,107,457,0,2,1,82,107,449,457,0,2,1,82,114,115,456,0,3,1,82,115,457,456,0,3,1,82,43,114,385,0,2,1,82,114,456,385,0,2,1,82,43,385,113,0,3,1,82,385,455,113,0,3,1,82,112,113,454,0,4,1,82,113,455,454,0,4,1,82,111,112,453,0,5,1,82,112,454,453,0,5,1,82,110,111,452,0,4,1,82,111,453,452,0,4,1,82,109,110,451,0,5,1,82,110,452,451,0,5,1,82,108,109,450,0,2,1,82,109,451,450,0,2,1,82,39,105,381,0,2,1,82,105,447,381,0,2,1,82,107,39,449,0,3,1,82,39,381,449,0,3,1,82,106,107,448,0,4,1,82,107,449,448,0,4,1,82,105,106,447,0,5,1,82,106,448,447,0,5,1,82,26,39,368,0,5,1,82,39,381,368,0,5,1,82,104,26,446,0,2,1,82,26,368,446,0,2,1,82,103,104,445,0,5,1,82,104,446,445,0,5,1,82,102,103,444,0,2,1,82,103,445,444,0,2,1,82,101,102,443,0,5,1,82,102,444,443,0,5,1,82,100,101,442,0,2,1,82,101,443,442,0,2,1,82,99,100,441,0,5,1,82,100,442,441,0,5,1,82,98,99,440,0,4,1,82,99,441,440,0,4,1,82,97,98,439,0,5,1,82,98,440,439,0,5,1,82,96,97,438,0,2,1,82,97,439,438,0,2,1,82,95,96,437,0,3,1,82,96,438,437,0,3,1,82,94,95,436,0,2,1,82,95,437,436,0,2,1,82,93,94,435,0,3,1,82,94,436,435,0,3,1,82,92,93,434,0,4,1,82,93,435,434,0,4,1,82,91,92,433,0,3,1,82,92,434,433,0,3,1,82,90,91,432,0,4,1,82,91,433,432,0,4,1,82,90,432,89,0,3,1,82,432,431,89,0,3,1,82,88,89,430,0,2,1,82,89,431,430,0,2,1,82,84,88,426,0,3,1,82,88,430,426,0,3,1,82,87,84,429,0,4,1,82,84,426,429,0,4,1,82,86,87,428,0,3,1,82,87,429,428,0,3,1,82,85,86,427,0,2,1,82,86,428,427,0,2,1,82,84,85,426,0,5,1,82,85,427,426,0,5,1,82,84,426,83,0,2,1,82,426,425,83,0,2,1,82,82,83,424,0,5,1,82,83,425,424,0,5,1,82,81,82,423,0,4,1,82,82,424,423,0,4,1,82,80,81,422,0,5,1,82,81,423,422,0,5,1,82,80,422,79,0,2,1,82,422,421,79,0,2,1,82,78,79,420,0,3,1,82,79,421,420,0,3,1,82,77,78,419,0,4,1,82,78,420,419,0,4,1,82,76,77,418,0,3,1,82,77,419,418,0,3,1,82,75,76,417,0,2,1,82,76,418,417,0,2,1,82,74,75,416,0,3,1,82,75,417,416,0,3,1,82,73,74,415,0,4,1,82,74,416,415,0,4,1,82,72,73,414,0,3,1,82,73,415,414,0,3,1,82,71,72,413,0,4,1,82,72,414,413,0,4,1,82,70,71,412,0,3,1,82,71,413,412,0,3,1,82,69,70,411,0,2,1,82,70,412,411,0,2,1,82,68,69,410,0,3,1,82,69,411,410,0,3,1,82,67,68,409,0,4,1,82,68,410,409,0,4,1,82,66,67,408,0,5,1,82,67,409,408,0,5,1,82,65,66,407,0,4,1,82,66,408,407,0,4,1,82,64,65,406,0,3,1,82,65,407,406,0,3,1,82,63,64,405,0,4,1,82,64,406,405,0,4,1,82,62,63,404,0,5,1,82,63,405,404,0,5,1,82,61,62,403,0,4,1,82,62,404,403,0,4,1,82,60,61,402,0,5,1,82,61,403,402,0,5,1,82,59,60,401,0,4,1,82,60,402,401,0,4,1,82,58,59,400,0,5,1,82,59,401,400,0,5,1,82,57,58,399,0,2,1,82,58,400,399,0,2,1,82,56,57,398,0,5,1,82,57,399,398,0,5,1,82,55,56,397,0,4,1,82,56,398,397,0,4,1,82,54,55,396,0,5,1,82,55,397,396,0,5,1,82,53,54,395,0,4,1,82,54,396,395,0,4,1,82,52,53,394,0,3,1,82,53,395,394,0,3,1,82,51,52,393,0,2,1,82,52,394,393,0,2,1,82,50,51,392,0,3,1,82,51,393,392,0,3,1,82,50,392,49,0,4,1,82,392,391,49,0,4,1,82,48,49,390,0,5,1,82,49,391,390,0,5,1,82,47,48,389,0,2,1,82,48,390,389,0,2,1,82,46,47,388,0,5,1,82,47,389,388,0,5,1,82,45,46,387,0,4,1,82,46,388,387,0,4,1,82,44,45,386,0,5,1,82,45,387,386,0,5,1,82,43,44,385,0,4,1,82,44,386,385,0,4,1,82,42,43,384,0,5,1,82,43,385,384,0,5,1,82,42,384,41,0,2,1,82,384,383,41,0,2,1,82,40,41,382,0,5,1,82,41,383,382,0,5,1,82,40,382,39,0,4,1,82,382,381,39,0,4,1,82,20,25,362,0,5,1,82,25,367,362,0,5,1,82,38,20,380,0,2,1,82,20,362,380,0,2,1,82,37,38,379,0,5,1,82,38,380,379,0,5,1,82,21,37,363,0,4,1,82,37,379,363,0,4,1,82,36,21,378,0,5,1,82,21,363,378,0,5,1,82,35,36,377,0,2,1,82,36,378,377,0,2,1,82,34,35,376,0,5,1,82,35,377,376,0,5,1,82,33,34,375,0,2,1,82,34,376,375,0,2,1,82,32,33,374,0,3,1,82,33,375,374,0,3,1,82,31,32,373,0,2,1,82,32,374,373,0,2,1,82,30,31,372,0,3,1,82,31,373,372,0,3,1,82,29,30,371,0,4,1,82,30,372,371,0,4,1,82,28,29,370,0,3,1,82,29,371,370,0,3,1,82,27,28,369,0,2,1,82,28,370,369,0,2,1,82,26,27,368,0,3,1,82,27,369,368,0,3,1,82,26,368,25,0,4,1,82,368,367,25,0,4,1,82,24,366,19,0,2,1,82,366,361,19,0,2,1,82,23,365,24,0,5,1,82,365,366,24,0,5,1,82,22,364,23,0,4,1,82,364,365,23,0,4,1,82,19,361,22,0,3,1,82,361,364,22,0,3,1,82,6,19,348,0,5,1,82,19,361,348,0,5,1,82,21,6,363,0,2,1,82,6,348,363,0,2,1,82,20,21,362,0,3,1,82,21,363,362,0,3,1,82,19,20,361,0,4,1,82,20,362,361,0,4,1]}} \ No newline at end of file diff --git a/examples/models/json/QRCode_buffergeometry.json b/examples/models/json/QRCode_buffergeometry.json new file mode 100644 index 00000000000000..f140a6f757ca76 --- /dev/null +++ b/examples/models/json/QRCode_buffergeometry.json @@ -0,0 +1 @@ +{"metadata":{"version":4.5,"type":"BufferGeometry","generator":"BufferGeometry.toJSON"},"uuid":"9B8F0A5F-7D33-45F3-9C54-CA046A86F1C9","type":"BufferGeometry","data":{"attributes":{"position":{"itemSize":3,"type":"Float32Array","array":[138,-141,58,150,-141,58,138,-129,58,54,-45,-41,66,-33,-41,78,-33,-41,138,-141,-41,138,-129,-41,150,-141,-41,90,-45,58,102,-69,58,102,-57,58,-54,86,-41,-42,86,-41,-42,74,-41,-54,86,58,-42,74,58,-42,86,58,138,-93,58,150,-57,58,138,-81,58,138,-93,-41,138,-81,-41,150,-57,-41,-42,-69,-41,-30,-81,-41,-30,-93,-41,-6,2,58,-18,-9,58,18,2,58,54,-45,58,78,-33,58,66,-33,58,-30,-93,-41,-42,-105,-41,-54,-105,-41,-102,14,58,-126,26,58,-114,14,58,90,-81,-41,78,-93,-41,54,-81,-41,18,2,-41,-18,-9,-41,-6,2,-41,78,-93,58,90,-81,58,54,-81,58,126,-9,-41,126,-21,-41,114,-21,-41,114,-21,58,126,-21,58,126,-9,58,18,-69,58,18,-57,58,6,-69,58,18,-33,58,18,-21,58,6,-33,58,18,-69,-41,6,-69,-41,18,-57,-41,18,-33,-41,6,-33,-41,18,-21,-41,54,38,-41,54,26,-41,42,38,-41,54,38,58,42,38,58,54,26,58,30,-57,-41,18,-57,-41,18,-45,-41,-90,2,-41,-90,-9,-41,-102,-9,-41,-114,-9,-41,-102,-9,-41,-114,-21,-41,-18,-69,-41,-6,-69,-41,-18,-81,-41,138,-57,-41,126,-57,-41,126,-45,-41,126,-33,-41,126,-45,-41,114,-45,-41,138,-21,-41,138,-9,-41,150,-9,-41,42,50,-41,42,62,-41,54,62,-41,42,86,-41,54,86,-41,42,74,-41,-42,-9,-41,-42,-21,-41,-54,-21,-41,30,-81,-41,42,-81,-41,30,-93,-41,78,-93,-41,78,-105,-41,66,-105,-41,102,-93,-41,102,-81,-41,114,-81,-41,90,-45,-41,102,-57,-41,102,-69,-41,54,-21,-41,54,-9,-41,66,-9,-41,18,-45,58,18,-57,58,30,-57,58,-90,14,58,-90,26,58,-102,14,58,-102,-9,58,-90,-9,58,-90,2,58,-114,-9,58,-114,-21,58,-102,-9,58,-18,-69,58,-18,-81,58,-6,-69,58,126,-45,58,126,-57,58,138,-57,58,114,-45,58,126,-45,58,126,-33,58,150,-9,58,138,-9,58,138,-21,58,42,50,58,54,62,58,42,62,58,42,86,58,42,74,58,54,86,58,-54,-21,58,-42,-21,58,-42,-9,58,30,-81,58,30,-93,58,42,-81,58,66,-105,58,78,-105,58,78,-93,58,114,-81,58,102,-81,58,102,-93,58,66,-9,58,54,-9,58,54,-21,58,54,-33,58,66,-33,58,54,-21,58,66,-33,58,66,-9,58,54,-21,58,102,-105,58,114,-105,58,102,-93,58,114,-105,58,114,-81,58,102,-93,58,54,-81,58,54,-93,58,78,-93,58,54,-93,58,66,-105,58,78,-93,58,42,-33,58,54,-45,58,54,-33,58,54,-45,58,66,-33,58,54,-33,58,42,62,58,54,62,58,42,74,58,54,62,58,54,86,58,42,74,58,138,-33,58,150,-33,58,138,-21,58,150,-33,58,150,-9,58,138,-21,58,42,98,58,54,98,58,42,110,58,54,98,58,54,122,58,42,110,58,54,-33,-41,54,-21,-41,66,-33,-41,54,-21,-41,66,-9,-41,66,-33,-41,102,-81,-41,90,-81,-41,102,-69,-41,90,-81,-41,90,-45,-41,102,-69,-41,102,-105,-41,102,-93,-41,114,-105,-41,102,-93,-41,114,-81,-41,114,-105,-41,54,-81,-41,78,-93,-41,54,-93,-41,78,-93,-41,66,-105,-41,54,-93,-41,42,-33,-41,54,-33,-41,54,-45,-41,54,-33,-41,66,-33,-41,54,-45,-41,42,62,-41,42,74,-41,54,62,-41,42,74,-41,54,86,-41,54,62,-41,138,-33,-41,138,-21,-41,150,-33,-41,138,-21,-41,150,-9,-41,150,-33,-41,42,98,-41,42,110,-41,54,98,-41,42,110,-41,54,122,-41,54,98,-41,18,-33,-41,30,-33,-41,18,-45,-41,30,-33,-41,30,-57,-41,18,-45,-41,126,-33,-41,138,-33,-41,126,-45,-41,138,-33,-41,138,-57,-41,126,-45,-41,18,-33,58,18,-45,58,30,-33,58,18,-45,58,30,-57,58,30,-33,58,126,-33,58,126,-45,58,138,-33,58,126,-45,58,138,-57,58,138,-33,58,42,50,58,30,50,58,42,38,58,30,50,58,30,2,58,42,38,58,-42,2,58,-54,2,58,-42,-9,58,-54,2,58,-54,-21,58,-42,-9,58,126,-21,58,114,-21,58,126,-33,58,114,-21,58,114,-45,58,126,-33,58,-18,-81,58,6,-81,58,-6,-69,58,6,-81,58,6,-69,58,-6,-69,58,-90,-9,58,-102,-9,58,-90,-21,58,-102,-9,58,-114,-21,58,-90,-21,58,-90,14,58,-102,14,58,-90,2,58,-102,14,58,-102,-9,58,-90,2,58,54,122,58,42,122,58,42,110,58,42,122,58,30,110,58,42,110,58,42,50,-41,42,38,-41,30,50,-41,42,38,-41,30,2,-41,30,50,-41,-42,2,-41,-42,-9,-41,-54,2,-41,-42,-9,-41,-54,-21,-41,-54,2,-41,126,-21,-41,126,-33,-41,114,-21,-41,126,-33,-41,114,-45,-41,114,-21,-41,-18,-81,-41,-6,-69,-41,6,-81,-41,-6,-69,-41,6,-69,-41,6,-81,-41,-90,-9,-41,-90,-21,-41,-102,-9,-41,-90,-21,-41,-114,-21,-41,-102,-9,-41,-90,14,-41,-90,2,-41,-102,14,-41,-90,2,-41,-102,-9,-41,-102,14,-41,54,122,-41,42,110,-41,42,122,-41,42,110,-41,30,110,-41,42,122,-41,42,134,-41,42,122,-41,30,134,-41,42,122,-41,30,110,-41,30,134,-41,42,134,58,30,134,58,42,122,58,30,134,58,30,110,58,42,122,58,54,26,58,42,38,58,54,14,58,42,38,58,30,2,58,54,14,58,18,-57,58,-6,-57,58,6,-69,58,-6,-57,58,-6,-69,58,6,-69,58,18,-57,-41,6,-69,-41,-6,-57,-41,6,-69,-41,-6,-69,-41,-6,-57,-41,-114,14,-41,-90,26,-41,-102,14,-41,-90,26,-41,-90,14,-41,-102,14,-41,-6,-33,-41,-6,-21,-41,6,-33,-41,-6,-21,-41,18,-21,-41,6,-33,-41,-6,-33,58,6,-33,58,-6,-21,58,6,-33,58,18,-21,58,-6,-21,58,102,-21,58,114,-21,58,102,-9,58,114,-21,58,126,-9,58,102,-9,58,30,2,-41,30,-9,-41,18,2,-41,30,-9,-41,-18,-9,-41,18,2,-41,102,-21,-41,102,-9,-41,114,-21,-41,102,-9,-41,126,-9,-41,114,-21,-41,54,-81,58,42,-81,58,54,-93,58,42,-81,58,30,-93,58,54,-93,58,54,-81,-41,54,-93,-41,42,-81,-41,54,-93,-41,30,-93,-41,42,-81,-41,54,26,-41,54,14,-41,42,38,-41,54,14,-41,30,2,-41,42,38,-41,-90,26,58,-90,38,58,-102,14,58,-90,38,58,-126,26,58,-102,14,58,-6,146,58,6,146,58,-6,158,58,6,146,58,6,158,58,-6,158,58,18,74,58,30,74,58,18,86,58,30,74,58,30,86,58,18,86,58,126,-9,58,138,-9,58,126,2,58,138,-9,58,138,2,58,126,2,58,102,-141,58,114,-141,58,102,-129,58,114,-141,58,114,-129,58,102,-129,58,78,-129,58,102,-129,58,78,-105,58,102,-129,58,102,-105,58,78,-105,58,-6,-117,58,6,-117,58,-6,-105,58,6,-117,58,6,-105,58,-6,-105,58,-138,-9,58,-126,-9,58,-138,2,58,-126,-9,58,-126,2,58,-138,2,58,-90,38,58,-78,38,58,-90,50,58,-78,38,58,-78,50,58,-90,50,58,-42,2,58,-30,2,58,-42,14,58,-30,2,58,-30,14,58,-42,14,58,-18,62,58,-6,62,58,-18,74,58,-6,62,58,-6,74,58,-18,74,58,18,98,58,30,98,58,18,110,58,30,98,58,30,110,58,18,110,58,-54,-129,58,-42,-129,58,-54,-117,58,-42,-129,58,-42,-117,58,-54,-117,58,6,158,-41,6,146,-41,-6,158,-41,6,146,-41,-6,146,-41,-6,158,-41,30,86,-41,30,74,-41,18,86,-41,30,74,-41,18,74,-41,18,86,-41,138,2,-41,138,-9,-41,126,2,-41,138,-9,-41,126,-9,-41,126,2,-41,114,-129,-41,114,-141,-41,102,-129,-41,114,-141,-41,102,-141,-41,102,-129,-41,102,-105,-41,102,-129,-41,78,-105,-41,102,-129,-41,78,-129,-41,78,-105,-41,6,-105,-41,6,-117,-41,-6,-105,-41,6,-117,-41,-6,-117,-41,-6,-105,-41,-126,2,-41,-126,-9,-41,-138,2,-41,-126,-9,-41,-138,-9,-41,-138,2,-41,-78,50,-41,-78,38,-41,-90,50,-41,-78,38,-41,-90,38,-41,-90,50,-41,-30,14,-41,-30,2,-41,-42,14,-41,-30,2,-41,-42,2,-41,-42,14,-41,-6,74,-41,-6,62,-41,-18,74,-41,-6,62,-41,-18,62,-41,-18,74,-41,30,110,-41,30,98,-41,18,110,-41,30,98,-41,18,98,-41,18,110,-41,-42,-117,-41,-42,-129,-41,-54,-117,-41,-42,-129,-41,-54,-129,-41,-54,-117,-41,-126,62,-41,-126,50,-41,-138,62,-41,-126,50,-41,-138,50,-41,-138,62,-41,-126,134,-41,-90,134,-41,-126,98,-41,-90,134,-41,-90,98,-41,-126,98,-41,54,-129,-41,54,-141,-41,42,-129,-41,54,-141,-41,42,-141,-41,42,-129,-41,78,-57,-41,78,-69,-41,66,-57,-41,78,-69,-41,66,-69,-41,66,-57,-41,90,134,-41,126,134,-41,90,98,-41,126,134,-41,126,98,-41,90,98,-41,-138,14,-41,-138,2,-41,-150,14,-41,-138,2,-41,-150,2,-41,-150,14,-41,-66,-9,-41,-66,-21,-41,-78,-9,-41,-66,-21,-41,-78,-21,-41,-78,-9,-41,-6,-117,-41,-6,-129,-41,-18,-117,-41,-6,-129,-41,-18,-129,-41,-18,-117,-41,42,-105,-41,42,-117,-41,30,-105,-41,42,-117,-41,30,-117,-41,30,-105,-41,102,2,-41,102,-9,-41,90,2,-41,102,-9,-41,90,-9,-41,90,2,-41,138,-69,-41,138,-81,-41,126,-69,-41,138,-81,-41,126,-81,-41,126,-69,-41,-30,-21,-41,-30,-33,-41,-42,-21,-41,-30,-33,-41,-42,-33,-41,-42,-21,-41,114,-57,-41,114,-69,-41,102,-57,-41,114,-69,-41,102,-69,-41,102,-57,-41,90,-21,-41,90,-33,-41,78,-21,-41,90,-33,-41,78,-33,-41,78,-21,-41,-18,86,-41,-18,74,-41,-30,86,-41,-18,74,-41,-30,74,-41,-30,86,-41,-126,-81,-41,-90,-81,-41,-126,-117,-41,-90,-81,-41,-90,-117,-41,-126,-117,-41,-138,50,58,-126,50,58,-138,62,58,-126,50,58,-126,62,58,-138,62,58,-126,134,58,-126,98,58,-90,134,58,-126,98,58,-90,98,58,-90,134,58,42,-141,58,54,-141,58,42,-129,58,54,-141,58,54,-129,58,42,-129,58,66,-69,58,78,-69,58,66,-57,58,78,-69,58,78,-57,58,66,-57,58,90,134,58,90,98,58,126,134,58,90,98,58,126,98,58,126,134,58,-150,2,58,-138,2,58,-150,14,58,-138,2,58,-138,14,58,-150,14,58,-78,-21,58,-66,-21,58,-78,-9,58,-66,-21,58,-66,-9,58,-78,-9,58,-18,-129,58,-6,-129,58,-18,-117,58,-6,-129,58,-6,-117,58,-18,-117,58,30,-117,58,42,-117,58,30,-105,58,42,-117,58,42,-105,58,30,-105,58,90,-9,58,102,-9,58,90,2,58,102,-9,58,102,2,58,90,2,58,126,-81,58,138,-81,58,126,-69,58,138,-81,58,138,-69,58,126,-69,58,-42,-33,58,-30,-33,58,-42,-21,58,-30,-33,58,-30,-21,58,-42,-21,58,102,-69,58,114,-69,58,102,-57,58,114,-69,58,114,-57,58,102,-57,58,78,-33,58,90,-33,58,78,-21,58,90,-33,58,90,-21,58,78,-21,58,-30,74,58,-18,74,58,-30,86,58,-18,74,58,-18,86,58,-30,86,58,-126,-81,58,-126,-117,58,-90,-81,58,-126,-117,58,-90,-117,58,-90,-81,58,-18,-93,58,-18,-81,58,-30,-93,58,-18,-81,58,-30,-81,58,-30,-93,58,-18,-93,-41,-30,-93,-41,-18,-81,-41,-30,-93,-41,-30,-81,-41,-18,-81,-41,6,-33,-41,18,-33,-41,6,-45,-41,18,-33,-41,18,-45,-41,6,-45,-41,30,74,-41,42,74,-41,30,62,-41,42,74,-41,42,62,-41,30,62,-41,66,14,-41,54,14,-41,66,26,-41,54,14,-41,54,26,-41,66,26,-41,6,-33,58,6,-45,58,18,-33,58,6,-45,58,18,-45,58,18,-33,58,30,74,58,30,62,58,42,74,58,30,62,58,42,62,58,42,74,58,66,14,58,66,26,58,54,14,58,66,26,58,54,26,58,54,14,58,-66,26,58,-54,26,58,-66,38,58,-54,26,58,-54,38,58,-66,38,58,-54,38,-41,-54,26,-41,-66,38,-41,-54,26,-41,-66,26,-41,-66,38,-41,-54,50,-41,-42,50,-41,-54,38,-41,-42,50,-41,-42,38,-41,-54,38,-41,-90,2,-41,-78,2,-41,-90,-9,-41,-78,2,-41,-78,-9,-41,-90,-9,-41,-18,98,-41,-18,86,-41,-30,98,-41,-18,86,-41,-30,86,-41,-30,98,-41,-42,38,58,-42,50,58,-54,38,58,-42,50,58,-54,50,58,-54,38,58,-78,-9,58,-78,2,58,-90,-9,58,-78,2,58,-90,2,58,-90,-9,58,-30,86,58,-18,86,58,-30,98,58,-18,86,58,-18,98,58,-30,98,58,-66,38,58,-78,38,58,-66,26,58,-78,38,58,-78,26,58,-66,26,58,-78,26,-41,-78,38,-41,-66,26,-41,-78,38,-41,-66,38,-41,-66,26,-41,-66,38,-41,-66,50,-41,-54,38,-41,-66,50,-41,-54,50,-41,-54,38,-41,-42,86,-41,-42,98,-41,-30,86,-41,-42,98,-41,-30,98,-41,-30,86,-41,-6,98,-41,-6,86,-41,-18,98,-41,-6,86,-41,-18,86,-41,-18,98,-41,-54,50,58,-66,50,58,-54,38,58,-66,50,58,-66,38,58,-54,38,58,-30,98,58,-42,98,58,-30,86,58,-42,98,58,-42,86,58,-30,86,58,-18,86,58,-6,86,58,-18,98,58,-6,86,58,-6,98,58,-18,98,58,126,-9,-41,138,-9,-41,126,-21,-41,138,-9,-41,138,-21,-41,126,-21,-41,-42,-9,-41,-30,-9,-41,-42,-21,-41,-30,-9,-41,-30,-21,-41,-42,-21,-41,126,-9,58,126,-21,58,138,-9,58,126,-21,58,138,-21,58,138,-9,58,-42,-9,58,-42,-21,58,-30,-9,58,-42,-21,58,-30,-21,58,-30,-9,58,-90,14,-41,-90,26,-41,-78,14,-41,-90,26,-41,-78,26,-41,-78,14,-41,-30,-21,-41,-30,-9,-41,-18,-21,-41,-30,-9,-41,-18,-9,-41,-18,-21,-41,-90,14,58,-78,14,58,-90,26,58,-78,14,58,-78,26,58,-90,26,58,-30,-21,58,-18,-21,58,-30,-9,58,-18,-21,58,-18,-9,58,-30,-9,58,-30,-81,58,-42,-69,58,-30,-93,58,-42,-69,58,-42,-105,58,-30,-93,58,-90,26,-41,-114,14,-41,-90,38,-41,-114,14,-41,-126,26,-41,-90,38,-41,-42,-69,-41,-30,-93,-41,-54,-69,-41,-30,-93,-41,-54,-105,-41,-54,-69,-41,78,-93,-41,90,-81,-41,102,-93,-41,90,-81,-41,102,-81,-41,102,-93,-41,102,-81,58,90,-81,58,102,-93,58,90,-81,58,78,-93,58,102,-93,58,-18,14,-41,-30,14,-41,-18,26,-41,-30,14,-41,-54,26,-41,-18,26,-41,-66,50,-41,-78,50,-41,-66,62,-41,-78,50,-41,-90,50,-41,-66,62,-41,-54,26,58,-30,14,58,-18,26,58,-30,14,58,-18,14,58,-18,26,58,-66,50,58,-66,62,58,-78,50,58,-66,62,58,-90,50,58,-78,50,58,-6,2,-41,-18,-9,-41,-30,2,-41,-18,-9,-41,-30,-9,-41,-30,2,-41,-42,-105,58,-42,-69,58,-54,-105,58,-42,-69,58,-54,-69,58,-54,-105,58,-30,-9,58,-18,-9,58,-30,2,58,-18,-9,58,-6,2,58,-30,2,58,-18,-9,58,30,-9,58,18,2,58,30,-9,58,30,2,58,18,2,58,90,50,58,102,38,58,114,50,58,102,38,58,114,38,58,114,50,58,90,50,-41,114,50,-41,102,38,-41,114,50,-41,114,38,-41,102,38,-41,-54,14,-41,-54,26,-41,-42,14,-41,-54,26,-41,-30,14,-41,-42,14,-41,-114,50,-41,-114,62,-41,-90,50,-41,-114,62,-41,-66,62,-41,-90,50,-41,-138,26,-41,-138,38,-41,-126,26,-41,-138,38,-41,-90,38,-41,-126,26,-41,138,38,-41,114,38,-41,126,50,-41,114,38,-41,114,50,-41,126,50,-41,90,-33,-41,90,-45,-41,78,-33,-41,90,-45,-41,54,-45,-41,78,-33,-41,-54,14,58,-42,14,58,-54,26,58,-42,14,58,-30,14,58,-54,26,58,-114,50,58,-90,50,58,-114,62,58,-90,50,58,-66,62,58,-114,62,58,-138,26,58,-126,26,58,-138,38,58,-126,26,58,-90,38,58,-138,38,58,138,38,58,126,50,58,114,38,58,126,50,58,114,50,58,114,38,58,90,-33,58,78,-33,58,90,-45,58,78,-33,58,54,-45,58,90,-45,58,42,50,58,78,50,58,54,62,58,78,50,58,78,62,58,54,62,58,78,62,-41,78,50,-41,54,62,-41,78,50,-41,42,50,-41,54,62,-41,54,158,-41,42,146,-41,18,158,-41,42,146,-41,18,146,-41,18,158,-41,-42,50,-41,-42,74,-41,-30,50,-41,-42,74,-41,-30,74,-41,-30,50,-41,-30,-45,-41,-42,-57,-41,-54,-45,-41,-42,-57,-41,-54,-57,-41,-54,-45,-41,-42,-69,-41,-42,-57,-41,-30,-81,-41,-42,-57,-41,-30,-45,-41,-30,-81,-41,138,26,-41,138,14,-41,114,26,-41,138,14,-41,102,14,-41,114,26,-41,114,38,-41,114,26,-41,102,38,-41,114,26,-41,102,14,-41,102,38,-41,30,-69,-41,30,-81,-41,18,-69,-41,30,-81,-41,18,-105,-41,18,-69,-41,18,146,58,42,146,58,18,158,58,42,146,58,54,158,58,18,158,58,-30,74,58,-42,74,58,-30,50,58,-42,74,58,-42,50,58,-30,50,58,-54,-57,58,-42,-57,58,-54,-45,58,-42,-57,58,-30,-45,58,-54,-45,58,102,14,58,138,14,58,114,26,58,138,14,58,138,26,58,114,26,58,102,14,58,114,26,58,102,38,58,114,26,58,114,38,58,102,38,58,18,-105,58,30,-81,58,18,-69,58,30,-81,58,30,-69,58,18,-69,58,-42,146,58,-18,146,58,-42,158,58,-18,146,58,-18,158,58,-42,158,58,-30,98,58,-18,98,58,-30,122,58,-18,98,58,-18,122,58,-30,122,58,78,50,58,78,38,58,90,50,58,78,38,58,102,38,58,90,50,58,18,-117,58,18,-129,58,30,-117,58,18,-129,58,30,-141,58,30,-117,58,-66,-21,58,-66,-33,58,-54,-21,58,-66,-33,58,-54,-45,58,-54,-21,58,-78,2,58,-54,2,58,-78,14,58,-54,2,58,-54,14,58,-78,14,58,-42,-141,58,-18,-141,58,-42,-129,58,-18,-141,58,-18,-129,58,-42,-129,58,-42,122,58,-54,122,58,-42,98,58,-54,122,58,-54,98,58,-42,98,58,-18,158,-41,-18,146,-41,-42,158,-41,-18,146,-41,-42,146,-41,-42,158,-41,-18,122,-41,-18,98,-41,-30,122,-41,-18,98,-41,-30,98,-41,-30,122,-41,78,50,-41,90,50,-41,78,38,-41,90,50,-41,102,38,-41,78,38,-41,18,-117,-41,30,-117,-41,18,-129,-41,30,-117,-41,30,-141,-41,18,-129,-41,-66,-21,-41,-54,-21,-41,-66,-33,-41,-54,-21,-41,-54,-45,-41,-66,-33,-41,-54,14,-41,-54,2,-41,-78,14,-41,-54,2,-41,-78,2,-41,-78,14,-41,-18,-129,-41,-18,-141,-41,-42,-129,-41,-18,-141,-41,-42,-141,-41,-42,-129,-41,-42,122,-41,-42,98,-41,-54,122,-41,-42,98,-41,-54,98,-41,-54,122,-41,-90,-33,-41,-90,-45,-41,-114,-33,-41,-90,-45,-41,-114,-45,-41,-114,-33,-41,-126,-21,-41,-126,-45,-41,-138,-21,-41,-126,-45,-41,-138,-45,-41,-138,-21,-41,-138,146,-41,-138,86,-41,-150,158,-41,-138,86,-41,-150,74,-41,-150,158,-41,-78,86,-41,-66,74,-41,-138,86,-41,-66,74,-41,-150,74,-41,-138,86,-41,-66,74,-41,-78,86,-41,-66,158,-41,-78,86,-41,-78,146,-41,-66,158,-41,-66,158,-41,-78,146,-41,-150,158,-41,-78,146,-41,-138,146,-41,-150,158,-41,78,146,-41,78,86,-41,66,158,-41,78,86,-41,66,74,-41,66,158,-41,138,86,-41,150,74,-41,78,86,-41,150,74,-41,66,74,-41,78,86,-41,150,74,-41,138,86,-41,150,158,-41,138,86,-41,138,146,-41,150,158,-41,150,158,-41,138,146,-41,66,158,-41,138,146,-41,78,146,-41,66,158,-41,54,158,-41,54,134,-41,42,146,-41,54,134,-41,42,134,-41,42,146,-41,-42,134,-41,-30,134,-41,-42,122,-41,-30,134,-41,-30,122,-41,-42,122,-41,-6,-33,-41,-6,-57,-41,-18,-33,-41,-6,-57,-41,-18,-57,-41,-18,-33,-41,-54,86,-41,-42,74,-41,-54,50,-41,-42,74,-41,-42,50,-41,-54,50,-41,-126,26,-41,-114,14,-41,-126,2,-41,-114,14,-41,-114,2,-41,-126,2,-41,-78,-33,-41,-66,-33,-41,-78,-45,-41,-66,-33,-41,-54,-45,-41,-78,-45,-41,-30,-93,-41,-30,-117,-41,-42,-105,-41,-30,-117,-41,-42,-117,-41,-42,-105,-41,6,-129,-41,18,-129,-41,6,-141,-41,18,-129,-41,30,-141,-41,6,-141,-41,126,-93,-41,138,-93,-41,126,-105,-41,138,-93,-41,138,-129,-41,126,-105,-41,114,-105,-41,126,-105,-41,114,-129,-41,126,-105,-41,138,-129,-41,114,-129,-41,138,-129,-41,138,-93,-41,150,-141,-41,138,-93,-41,150,-57,-41,150,-141,-41,138,-57,-41,150,-57,-41,138,-69,-41,150,-57,-41,138,-81,-41,138,-69,-41,138,2,-41,138,14,-41,150,2,-41,138,14,-41,150,38,-41,150,2,-41,138,38,-41,150,38,-41,138,26,-41,150,38,-41,138,14,-41,138,26,-41,126,62,-41,138,62,-41,126,50,-41,138,62,-41,138,38,-41,126,50,-41,114,62,-41,114,50,-41,90,62,-41,114,50,-41,90,50,-41,90,62,-41,-6,14,-41,6,14,-41,-6,2,-41,6,14,-41,18,2,-41,-6,2,-41,30,-9,-41,42,-21,-41,30,-33,-41,42,-21,-41,42,-33,-41,30,-33,-41,54,-81,-41,42,-81,-41,54,-45,-41,42,-81,-41,42,-33,-41,54,-45,-41,30,-105,-41,18,-105,-41,30,-93,-41,18,-105,-41,30,-81,-41,30,-93,-41,54,-93,-41,66,-105,-41,54,-117,-41,66,-105,-41,66,-117,-41,54,-117,-41,102,-57,-41,90,-45,-41,102,-33,-41,90,-45,-41,90,-33,-41,102,-33,-41,30,-9,-41,54,-9,-41,42,-21,-41,54,-9,-41,54,-21,-41,42,-21,-41,66,2,-41,66,14,-41,78,2,-41,66,14,-41,78,38,-41,78,2,-41,66,38,-41,78,38,-41,66,26,-41,78,38,-41,66,14,-41,66,26,-41,54,14,-41,54,-9,-41,30,2,-41,54,-9,-41,30,-9,-41,30,2,-41,6,74,-41,18,74,-41,6,14,-41,18,74,-41,18,2,-41,6,14,-41,-6,98,-41,6,74,-41,-6,86,-41,6,74,-41,-6,74,-41,-6,86,-41,-6,122,-41,6,122,-41,-6,98,-41,6,122,-41,6,74,-41,-6,98,-41,-18,146,-41,-6,146,-41,-18,122,-41,-6,146,-41,-6,122,-41,-18,122,-41,-138,-69,-41,-138,-129,-41,-150,-57,-41,-138,-129,-41,-150,-141,-41,-150,-57,-41,-78,-129,-41,-66,-141,-41,-138,-129,-41,-66,-141,-41,-150,-141,-41,-138,-129,-41,-66,-141,-41,-78,-129,-41,-66,-57,-41,-78,-129,-41,-78,-69,-41,-66,-57,-41,-66,-57,-41,-78,-69,-41,-150,-57,-41,-78,-69,-41,-138,-69,-41,-150,-57,-41,-42,146,-41,-42,134,-41,-54,146,-41,-42,134,-41,-54,134,-41,-54,146,-41,-114,-45,58,-90,-45,58,-114,-33,58,-90,-45,58,-90,-33,58,-114,-33,58,-138,-45,58,-126,-45,58,-138,-21,58,-126,-45,58,-126,-21,58,-138,-21,58,-150,74,58,-138,86,58,-150,158,58,-138,86,58,-138,146,58,-150,158,58,-150,74,58,-66,74,58,-138,86,58,-66,74,58,-78,86,58,-138,86,58,-78,146,58,-78,86,58,-66,158,58,-78,86,58,-66,74,58,-66,158,58,-138,146,58,-78,146,58,-150,158,58,-78,146,58,-66,158,58,-150,158,58,66,74,58,78,86,58,66,158,58,78,86,58,78,146,58,66,158,58,66,74,58,150,74,58,78,86,58,150,74,58,138,86,58,78,86,58,138,146,58,138,86,58,150,158,58,138,86,58,150,74,58,150,158,58,78,146,58,138,146,58,66,158,58,138,146,58,150,158,58,66,158,58,54,158,58,42,146,58,54,134,58,42,146,58,42,134,58,54,134,58,-42,134,58,-42,122,58,-30,134,58,-42,122,58,-30,122,58,-30,134,58,-18,-57,58,-6,-57,58,-18,-33,58,-6,-57,58,-6,-33,58,-18,-33,58,-54,86,58,-54,50,58,-42,74,58,-54,50,58,-42,50,58,-42,74,58,-126,26,58,-126,2,58,-114,14,58,-126,2,58,-114,2,58,-114,14,58,-78,-33,58,-78,-45,58,-66,-33,58,-78,-45,58,-54,-45,58,-66,-33,58,-42,-57,58,-42,-69,58,-30,-45,58,-42,-69,58,-30,-81,58,-30,-45,58,-30,-93,58,-42,-105,58,-30,-117,58,-42,-105,58,-42,-117,58,-30,-117,58,6,-129,58,6,-141,58,18,-129,58,6,-141,58,30,-141,58,18,-129,58,126,-93,58,126,-105,58,138,-93,58,126,-105,58,138,-129,58,138,-93,58,114,-105,58,114,-129,58,126,-105,58,114,-129,58,138,-129,58,126,-105,58,138,-129,58,150,-141,58,138,-93,58,150,-141,58,150,-57,58,138,-93,58,138,-57,58,138,-69,58,150,-57,58,138,-69,58,138,-81,58,150,-57,58,138,26,58,138,14,58,150,2,58,138,14,58,138,2,58,150,2,58,138,38,58,138,26,58,150,38,58,138,26,58,150,2,58,150,38,58,126,62,58,126,50,58,138,62,58,126,50,58,138,38,58,138,62,58,90,50,58,114,50,58,90,62,58,114,50,58,114,62,58,90,62,58,-6,14,58,-6,2,58,6,14,58,-6,2,58,18,2,58,6,14,58,30,-9,58,30,-33,58,42,-21,58,30,-33,58,42,-33,58,42,-21,58,54,-81,58,54,-45,58,42,-81,58,54,-45,58,42,-33,58,42,-81,58,30,-81,58,18,-105,58,30,-93,58,18,-105,58,30,-105,58,30,-93,58,54,-93,58,54,-117,58,66,-105,58,54,-117,58,66,-117,58,66,-105,58,102,-81,58,102,-69,58,90,-81,58,102,-69,58,90,-45,58,90,-81,58,102,-57,58,102,-33,58,90,-45,58,102,-33,58,90,-33,58,90,-45,58,30,-9,58,42,-21,58,54,-9,58,42,-21,58,54,-21,58,54,-9,58,66,26,58,66,14,58,78,2,58,66,14,58,66,2,58,78,2,58,66,38,58,66,26,58,78,38,58,66,26,58,78,2,58,78,38,58,54,14,58,30,2,58,54,-9,58,30,2,58,30,-9,58,54,-9,58,6,74,58,6,14,58,18,74,58,6,14,58,18,2,58,18,74,58,-6,98,58,-6,86,58,6,74,58,-6,86,58,-6,74,58,6,74,58,-6,122,58,-6,98,58,6,122,58,-6,98,58,6,74,58,6,122,58,-18,146,58,-18,122,58,-6,146,58,-18,122,58,-6,122,58,-6,146,58,-150,-141,58,-138,-129,58,-150,-57,58,-138,-129,58,-138,-69,58,-150,-57,58,-150,-141,58,-66,-141,58,-138,-129,58,-66,-141,58,-78,-129,58,-138,-129,58,-78,-69,58,-78,-129,58,-66,-57,58,-78,-129,58,-66,-141,58,-66,-57,58,-138,-69,58,-78,-69,58,-150,-57,58,-78,-69,58,-66,-57,58,-150,-57,58,-54,134,58,-42,134,58,-54,146,58,-42,134,58,-42,146,58,-54,146,58,-42,146,58,-42,158,58,-42,146,-41,-42,158,58,-42,158,-41,-42,146,-41,-18,146,58,-42,146,58,-18,146,-41,-42,146,58,-42,146,-41,-18,146,-41,-18,158,58,-18,146,58,-18,158,-41,-18,146,58,-18,146,-41,-18,158,-41,-42,158,58,-18,158,58,-42,158,-41,-18,158,58,-18,158,-41,-42,158,-41,-126,134,58,-126,134,-41,-126,98,58,-126,134,-41,-126,98,-41,-126,98,58,-126,98,58,-126,98,-41,-90,98,58,-126,98,-41,-90,98,-41,-90,98,58,-90,98,58,-90,98,-41,-90,134,58,-90,98,-41,-90,134,-41,-90,134,58,-90,134,58,-90,134,-41,-126,134,58,-90,134,-41,-126,134,-41,-126,134,58,-138,146,58,-138,86,58,-138,146,-41,-138,86,58,-138,86,-41,-138,146,-41,-78,146,58,-138,146,58,-78,146,-41,-138,146,58,-138,146,-41,-78,146,-41,-78,86,58,-78,146,58,-78,86,-41,-78,146,58,-78,146,-41,-78,86,-41,-138,86,58,-78,86,58,-138,86,-41,-78,86,58,-78,86,-41,-138,86,-41,-66,158,58,-66,158,-41,-150,158,58,-66,158,-41,-150,158,-41,-150,158,58,-150,158,58,-150,158,-41,-150,74,58,-150,158,-41,-150,74,-41,-150,74,58,-150,74,58,-150,74,-41,-66,74,58,-150,74,-41,-66,74,-41,-66,74,58,-66,74,58,-66,74,-41,-66,158,58,-66,74,-41,-66,158,-41,-66,158,58,42,-129,58,54,-129,58,42,-129,-41,54,-129,58,54,-129,-41,42,-129,-41,42,-141,58,42,-129,58,42,-141,-41,42,-129,58,42,-129,-41,42,-141,-41,54,-141,58,42,-141,58,54,-141,-41,42,-141,58,42,-141,-41,54,-141,-41,54,-129,58,54,-141,58,54,-129,-41,54,-141,58,54,-141,-41,54,-129,-41,-90,-81,58,-90,-81,-41,-126,-81,58,-90,-81,-41,-126,-81,-41,-126,-81,58,-126,-81,58,-126,-81,-41,-126,-117,58,-126,-81,-41,-126,-117,-41,-126,-117,58,-126,-117,58,-126,-117,-41,-90,-117,58,-126,-117,-41,-90,-117,-41,-90,-117,58,-90,-117,58,-90,-117,-41,-90,-81,58,-90,-117,-41,-90,-81,-41,-90,-81,58,-138,-69,58,-138,-129,58,-138,-69,-41,-138,-129,58,-138,-129,-41,-138,-69,-41,-78,-69,58,-138,-69,58,-78,-69,-41,-138,-69,58,-138,-69,-41,-78,-69,-41,-78,-129,58,-78,-69,58,-78,-129,-41,-78,-69,58,-78,-69,-41,-78,-129,-41,-138,-129,58,-78,-129,58,-138,-129,-41,-78,-129,58,-78,-129,-41,-138,-129,-41,66,-57,58,78,-57,58,66,-57,-41,78,-57,58,78,-57,-41,66,-57,-41,66,-69,58,66,-57,58,66,-69,-41,66,-57,58,66,-57,-41,66,-69,-41,78,-69,58,66,-69,58,78,-69,-41,66,-69,58,66,-69,-41,78,-69,-41,78,-57,58,78,-69,58,78,-57,-41,78,-69,58,78,-69,-41,78,-57,-41,-66,-57,58,-66,-57,-41,-150,-57,58,-66,-57,-41,-150,-57,-41,-150,-57,58,-150,-57,58,-150,-57,-41,-150,-141,58,-150,-57,-41,-150,-141,-41,-150,-141,58,-150,-141,58,-150,-141,-41,-66,-141,58,-150,-141,-41,-66,-141,-41,-66,-141,58,-66,-141,58,-66,-141,-41,-66,-57,58,-66,-141,-41,-66,-57,-41,-66,-57,58,54,-81,58,54,-81,-41,54,-45,58,54,-81,-41,54,-45,-41,54,-45,58,54,-45,58,54,-45,-41,90,-45,58,54,-45,-41,90,-45,-41,90,-45,58,90,-45,58,90,-45,-41,90,-81,58,90,-45,-41,90,-81,-41,90,-81,58,90,-81,58,90,-81,-41,54,-81,58,90,-81,-41,54,-81,-41,54,-81,58,-114,-33,58,-90,-33,58,-114,-33,-41,-90,-33,58,-90,-33,-41,-114,-33,-41,-114,-45,58,-114,-33,58,-114,-45,-41,-114,-33,58,-114,-33,-41,-114,-45,-41,-90,-45,58,-114,-45,58,-90,-45,-41,-114,-45,58,-114,-45,-41,-90,-45,-41,-90,-33,58,-90,-45,58,-90,-33,-41,-90,-45,58,-90,-45,-41,-90,-33,-41,-138,-21,58,-126,-21,58,-138,-21,-41,-126,-21,58,-126,-21,-41,-138,-21,-41,-138,-45,58,-138,-21,58,-138,-45,-41,-138,-21,58,-138,-21,-41,-138,-45,-41,-126,-45,58,-138,-45,58,-126,-45,-41,-138,-45,58,-138,-45,-41,-126,-45,-41,-126,-21,58,-126,-45,58,-126,-21,-41,-126,-45,58,-126,-45,-41,-126,-21,-41,-138,62,58,-126,62,58,-138,62,-41,-126,62,58,-126,62,-41,-138,62,-41,-138,50,58,-138,62,58,-138,50,-41,-138,62,58,-138,62,-41,-138,50,-41,-126,50,58,-138,50,58,-126,50,-41,-138,50,58,-138,50,-41,-126,50,-41,-126,62,58,-126,50,58,-126,62,-41,-126,50,58,-126,50,-41,-126,62,-41,126,134,58,126,134,-41,90,134,58,126,134,-41,90,134,-41,90,134,58,90,134,58,90,134,-41,90,98,58,90,134,-41,90,98,-41,90,98,58,90,98,58,90,98,-41,126,98,58,90,98,-41,126,98,-41,126,98,58,126,98,58,126,98,-41,126,134,58,126,98,-41,126,134,-41,126,134,58,78,146,58,78,86,58,78,146,-41,78,86,58,78,86,-41,78,146,-41,138,146,58,78,146,58,138,146,-41,78,146,58,78,146,-41,138,146,-41,138,86,58,138,146,58,138,86,-41,138,146,58,138,146,-41,138,86,-41,78,86,58,138,86,58,78,86,-41,138,86,58,138,86,-41,78,86,-41,150,158,58,150,158,-41,66,158,58,150,158,-41,66,158,-41,66,158,58,66,158,58,66,158,-41,66,74,58,66,158,-41,66,74,-41,66,74,58,66,74,58,66,74,-41,150,74,58,66,74,-41,150,74,-41,150,74,58,150,74,58,150,74,-41,150,158,58,150,74,-41,150,158,-41,150,158,58,30,110,58,30,98,58,30,110,-41,30,98,58,30,98,-41,30,110,-41,18,110,58,30,110,58,18,110,-41,30,110,58,30,110,-41,18,110,-41,18,98,58,18,110,58,18,98,-41,18,110,58,18,110,-41,18,98,-41,30,98,58,18,98,58,30,98,-41,18,98,58,18,98,-41,30,98,-41,42,134,58,42,122,58,42,134,-41,42,122,58,42,122,-41,42,134,-41,30,134,58,42,134,58,30,134,-41,42,134,58,42,134,-41,30,134,-41,30,110,58,30,134,58,30,110,-41,30,134,58,30,134,-41,30,110,-41,42,110,58,30,110,58,42,110,-41,30,110,58,30,110,-41,42,110,-41,42,98,58,42,110,58,42,98,-41,42,110,58,42,110,-41,42,98,-41,54,98,58,42,98,58,54,98,-41,42,98,58,42,98,-41,54,98,-41,54,122,58,54,98,58,54,122,-41,54,98,58,54,98,-41,54,122,-41,42,122,58,54,122,58,42,122,-41,54,122,58,54,122,-41,42,122,-41,54,158,58,54,158,-41,18,158,58,54,158,-41,18,158,-41,18,158,58,18,146,58,18,158,58,18,146,-41,18,158,58,18,158,-41,18,146,-41,42,146,58,18,146,58,42,146,-41,18,146,58,18,146,-41,42,146,-41,42,134,58,42,146,58,42,134,-41,42,146,58,42,146,-41,42,134,-41,54,134,58,42,134,58,54,134,-41,42,134,58,42,134,-41,54,134,-41,54,158,58,54,134,58,54,158,-41,54,134,58,54,134,-41,54,158,-41,-42,134,58,-54,134,58,-42,134,-41,-54,134,58,-54,134,-41,-42,134,-41,-42,146,58,-42,134,58,-42,146,-41,-42,134,58,-42,134,-41,-42,146,-41,-54,146,58,-42,146,58,-54,146,-41,-42,146,58,-42,146,-41,-54,146,-41,-54,134,58,-54,146,58,-54,134,-41,-54,146,58,-54,146,-41,-54,134,-41,-42,122,58,-42,134,58,-42,122,-41,-42,134,58,-42,134,-41,-42,122,-41,-30,122,58,-42,122,58,-30,122,-41,-42,122,58,-42,122,-41,-30,122,-41,-30,134,58,-30,122,58,-30,134,-41,-30,122,58,-30,122,-41,-30,134,-41,-42,134,58,-30,134,58,-42,134,-41,-30,134,58,-30,134,-41,-42,134,-41,-42,98,58,-54,98,58,-42,98,-41,-54,98,58,-54,98,-41,-42,98,-41,-42,122,58,-42,98,58,-42,122,-41,-42,98,58,-42,98,-41,-42,122,-41,-54,122,58,-42,122,58,-54,122,-41,-42,122,58,-42,122,-41,-54,122,-41,-54,98,58,-54,122,58,-54,98,-41,-54,122,58,-54,122,-41,-54,98,-41,-6,62,58,-6,62,-41,-6,74,58,-6,62,-41,-6,74,-41,-6,74,58,-18,62,58,-18,62,-41,-6,62,58,-18,62,-41,-6,62,-41,-6,62,58,-18,74,58,-18,74,-41,-18,62,58,-18,74,-41,-18,62,-41,-18,62,58,-6,74,58,-6,74,-41,-18,74,58,-6,74,-41,-18,74,-41,-18,74,58,-6,-33,58,-6,-21,58,-6,-33,-41,-6,-21,58,-6,-21,-41,-6,-33,-41,6,-33,58,-6,-33,58,6,-33,-41,-6,-33,58,-6,-33,-41,6,-33,-41,6,-45,58,6,-33,58,6,-45,-41,6,-33,58,6,-33,-41,6,-45,-41,18,-45,58,6,-45,58,18,-45,-41,6,-45,58,6,-45,-41,18,-45,-41,18,-57,58,18,-45,58,18,-57,-41,18,-45,58,18,-45,-41,18,-57,-41,30,-57,58,18,-57,58,30,-57,-41,18,-57,58,18,-57,-41,30,-57,-41,30,-33,58,30,-57,58,30,-33,-41,30,-57,58,30,-57,-41,30,-33,-41,18,-33,58,30,-33,58,18,-33,-41,30,-33,58,30,-33,-41,18,-33,-41,18,-21,58,18,-33,58,18,-21,-41,18,-33,58,18,-33,-41,18,-21,-41,-6,-21,58,18,-21,58,-6,-21,-41,18,-21,58,18,-21,-41,-6,-21,-41,-6,-57,58,-18,-57,58,-6,-57,-41,-18,-57,58,-18,-57,-41,-6,-57,-41,-6,-33,58,-6,-57,58,-6,-33,-41,-6,-57,58,-6,-57,-41,-6,-33,-41,-18,-33,58,-6,-33,58,-18,-33,-41,-6,-33,58,-6,-33,-41,-18,-33,-41,-18,-57,58,-18,-33,58,-18,-57,-41,-18,-33,58,-18,-33,-41,-18,-57,-41,-54,14,58,-54,2,58,-54,14,-41,-54,2,58,-54,2,-41,-54,14,-41,-78,14,58,-54,14,58,-78,14,-41,-54,14,58,-54,14,-41,-78,14,-41,-78,2,58,-78,14,58,-78,2,-41,-78,14,58,-78,14,-41,-78,2,-41,-54,2,58,-78,2,58,-54,2,-41,-78,2,58,-78,2,-41,-54,2,-41,-18,26,58,-18,26,-41,-54,26,58,-18,26,-41,-54,26,-41,-54,26,58,-54,14,58,-54,26,58,-54,14,-41,-54,26,58,-54,26,-41,-54,14,-41,-42,14,58,-54,14,58,-42,14,-41,-54,14,58,-54,14,-41,-42,14,-41,-42,2,58,-42,14,58,-42,2,-41,-42,14,58,-42,14,-41,-42,2,-41,-30,2,58,-42,2,58,-30,2,-41,-42,2,58,-42,2,-41,-30,2,-41,-30,14,58,-30,2,58,-30,14,-41,-30,2,58,-30,2,-41,-30,14,-41,-18,14,58,-30,14,58,-18,14,-41,-30,14,58,-30,14,-41,-18,14,-41,-18,26,58,-18,14,58,-18,26,-41,-18,14,58,-18,14,-41,-18,26,-41,-66,50,58,-54,50,58,-66,50,-41,-54,50,58,-54,50,-41,-66,50,-41,-66,38,58,-66,50,58,-66,38,-41,-66,50,58,-66,50,-41,-66,38,-41,-78,38,58,-66,38,58,-78,38,-41,-66,38,58,-66,38,-41,-78,38,-41,-78,26,58,-78,38,58,-78,26,-41,-78,38,58,-78,38,-41,-78,26,-41,-66,26,58,-78,26,58,-66,26,-41,-78,26,58,-78,26,-41,-66,26,-41,-54,26,58,-66,26,58,-54,26,-41,-66,26,58,-66,26,-41,-54,26,-41,-54,38,58,-54,26,58,-54,38,-41,-54,26,58,-54,26,-41,-54,38,-41,-42,38,58,-54,38,58,-42,38,-41,-54,38,58,-54,38,-41,-42,38,-41,-42,50,58,-42,38,58,-42,50,-41,-42,38,58,-42,38,-41,-42,50,-41,-30,50,58,-42,50,58,-30,50,-41,-42,50,58,-42,50,-41,-30,50,-41,-30,74,58,-30,50,58,-30,74,-41,-30,50,58,-30,50,-41,-30,74,-41,-42,74,58,-30,74,58,-42,74,-41,-30,74,58,-30,74,-41,-42,74,-41,-42,86,58,-42,74,58,-42,86,-41,-42,74,58,-42,74,-41,-42,86,-41,-54,86,58,-42,86,58,-54,86,-41,-42,86,58,-42,86,-41,-54,86,-41,-54,86,58,-54,86,-41,-54,50,58,-54,86,-41,-54,50,-41,-54,50,58,-90,38,58,-90,50,58,-90,38,-41,-90,50,58,-90,50,-41,-90,38,-41,-78,38,58,-90,38,58,-78,38,-41,-90,38,58,-90,38,-41,-78,38,-41,-78,50,58,-78,38,58,-78,50,-41,-78,38,58,-78,38,-41,-78,50,-41,-66,50,58,-78,50,58,-66,50,-41,-78,50,58,-78,50,-41,-66,50,-41,-66,62,58,-66,50,58,-66,62,-41,-66,50,58,-66,50,-41,-66,62,-41,-66,62,58,-66,62,-41,-114,62,58,-66,62,-41,-114,62,-41,-114,62,58,-114,50,58,-114,62,58,-114,50,-41,-114,62,58,-114,62,-41,-114,50,-41,-90,50,58,-114,50,58,-90,50,-41,-114,50,58,-114,50,-41,-90,50,-41,-138,2,58,-150,2,58,-138,2,-41,-150,2,58,-150,2,-41,-138,2,-41,-138,14,58,-138,2,58,-138,14,-41,-138,2,58,-138,2,-41,-138,14,-41,-150,14,58,-138,14,58,-150,14,-41,-138,14,58,-138,14,-41,-150,14,-41,-150,2,58,-150,14,58,-150,2,-41,-150,14,58,-150,14,-41,-150,2,-41,-126,2,58,-126,-9,58,-126,2,-41,-126,-9,58,-126,-9,-41,-126,2,-41,-138,2,58,-126,2,58,-138,2,-41,-126,2,58,-126,2,-41,-138,2,-41,-138,-9,58,-138,2,58,-138,-9,-41,-138,2,58,-138,2,-41,-138,-9,-41,-126,-9,58,-138,-9,58,-126,-9,-41,-138,-9,58,-138,-9,-41,-126,-9,-41,-78,-9,58,-90,-9,58,-78,-9,-41,-90,-9,58,-90,-9,-41,-78,-9,-41,-78,2,58,-78,-9,58,-78,2,-41,-78,-9,58,-78,-9,-41,-78,2,-41,-90,2,58,-78,2,58,-90,2,-41,-78,2,58,-78,2,-41,-90,2,-41,-90,14,58,-90,2,58,-90,14,-41,-90,2,58,-90,2,-41,-90,14,-41,-78,14,58,-90,14,58,-78,14,-41,-90,14,58,-90,14,-41,-78,14,-41,-78,26,58,-78,14,58,-78,26,-41,-78,14,58,-78,14,-41,-78,26,-41,-90,26,58,-78,26,58,-90,26,-41,-78,26,58,-78,26,-41,-90,26,-41,-90,38,58,-90,26,58,-90,38,-41,-90,26,58,-90,26,-41,-90,38,-41,-90,38,58,-90,38,-41,-138,38,58,-90,38,-41,-138,38,-41,-138,38,58,-138,26,58,-138,38,58,-138,26,-41,-138,38,58,-138,38,-41,-138,26,-41,-126,26,58,-138,26,58,-126,26,-41,-138,26,58,-138,26,-41,-126,26,-41,-126,2,58,-126,26,58,-126,2,-41,-126,26,58,-126,26,-41,-126,2,-41,-114,2,58,-126,2,58,-114,2,-41,-126,2,58,-126,2,-41,-114,2,-41,-114,14,58,-114,2,58,-114,14,-41,-114,2,58,-114,2,-41,-114,14,-41,-102,14,58,-114,14,58,-102,14,-41,-114,14,58,-114,14,-41,-102,14,-41,-102,-9,58,-102,14,58,-102,-9,-41,-102,14,58,-102,14,-41,-102,-9,-41,-114,-9,58,-102,-9,58,-114,-9,-41,-102,-9,58,-102,-9,-41,-114,-9,-41,-114,-21,58,-114,-9,58,-114,-21,-41,-114,-9,58,-114,-9,-41,-114,-21,-41,-90,-21,58,-114,-21,58,-90,-21,-41,-114,-21,58,-114,-21,-41,-90,-21,-41,-90,-9,58,-90,-21,58,-90,-9,-41,-90,-21,58,-90,-21,-41,-90,-9,-41,-66,-21,58,-78,-21,58,-66,-21,-41,-78,-21,58,-78,-21,-41,-66,-21,-41,-66,-9,58,-66,-21,58,-66,-9,-41,-66,-21,58,-66,-21,-41,-66,-9,-41,-78,-9,58,-66,-9,58,-78,-9,-41,-66,-9,58,-66,-9,-41,-78,-9,-41,-78,-21,58,-78,-9,58,-78,-21,-41,-78,-9,58,-78,-9,-41,-78,-21,-41,-54,-45,58,-78,-45,58,-54,-45,-41,-78,-45,58,-78,-45,-41,-54,-45,-41,-54,-21,58,-54,-45,58,-54,-21,-41,-54,-45,58,-54,-45,-41,-54,-21,-41,-66,-21,58,-54,-21,58,-66,-21,-41,-54,-21,58,-54,-21,-41,-66,-21,-41,-66,-33,58,-66,-21,58,-66,-33,-41,-66,-21,58,-66,-21,-41,-66,-33,-41,-78,-33,58,-66,-33,58,-78,-33,-41,-66,-33,58,-66,-33,-41,-78,-33,-41,-78,-45,58,-78,-33,58,-78,-45,-41,-78,-33,58,-78,-33,-41,-78,-45,-41,-6,-117,58,-6,-105,58,-6,-117,-41,-6,-105,58,-6,-105,-41,-6,-117,-41,6,-117,58,-6,-117,58,6,-117,-41,-6,-117,58,-6,-117,-41,6,-117,-41,6,-105,58,6,-117,58,6,-105,-41,6,-117,58,6,-117,-41,6,-105,-41,-6,-105,58,6,-105,58,-6,-105,-41,6,-105,58,6,-105,-41,-6,-105,-41,-18,-129,58,-18,-117,58,-18,-129,-41,-18,-117,58,-18,-117,-41,-18,-129,-41,-6,-129,58,-18,-129,58,-6,-129,-41,-18,-129,58,-18,-129,-41,-6,-129,-41,-6,-117,58,-6,-129,58,-6,-117,-41,-6,-129,58,-6,-129,-41,-6,-117,-41,-18,-117,58,-6,-117,58,-18,-117,-41,-6,-117,58,-6,-117,-41,-18,-117,-41,-42,-129,58,-18,-129,58,-42,-129,-41,-18,-129,58,-18,-129,-41,-42,-129,-41,-42,-141,58,-42,-129,58,-42,-141,-41,-42,-129,58,-42,-129,-41,-42,-141,-41,-18,-141,58,-42,-141,58,-18,-141,-41,-42,-141,58,-42,-141,-41,-18,-141,-41,-18,-129,58,-18,-141,58,-18,-129,-41,-18,-141,58,-18,-141,-41,-18,-129,-41,-42,-117,58,-42,-129,58,-42,-117,-41,-42,-129,58,-42,-129,-41,-42,-117,-41,-54,-117,58,-42,-117,58,-54,-117,-41,-42,-117,58,-42,-117,-41,-54,-117,-41,-54,-129,58,-54,-117,58,-54,-129,-41,-54,-117,58,-54,-117,-41,-54,-129,-41,-42,-129,58,-54,-129,58,-42,-129,-41,-54,-129,58,-54,-129,-41,-42,-129,-41,-18,-81,58,-18,-93,58,-18,-81,-41,-18,-93,58,-18,-93,-41,-18,-81,-41,-30,-81,58,-18,-81,58,-30,-81,-41,-18,-81,58,-18,-81,-41,-30,-81,-41,-30,-81,58,-30,-81,-41,-30,-45,58,-30,-81,-41,-30,-45,-41,-30,-45,58,-54,-45,58,-30,-45,58,-54,-45,-41,-30,-45,58,-30,-45,-41,-54,-45,-41,-54,-57,58,-54,-45,58,-54,-57,-41,-54,-45,58,-54,-45,-41,-54,-57,-41,-42,-57,58,-54,-57,58,-42,-57,-41,-54,-57,58,-54,-57,-41,-42,-57,-41,-42,-69,58,-42,-57,58,-42,-69,-41,-42,-57,58,-42,-57,-41,-42,-69,-41,-54,-69,58,-42,-69,58,-54,-69,-41,-42,-69,58,-42,-69,-41,-54,-69,-41,-54,-69,58,-54,-69,-41,-54,-105,58,-54,-69,-41,-54,-105,-41,-54,-105,58,-42,-105,58,-54,-105,58,-42,-105,-41,-54,-105,58,-54,-105,-41,-42,-105,-41,-42,-117,58,-42,-105,58,-42,-117,-41,-42,-105,58,-42,-105,-41,-42,-117,-41,-30,-117,58,-42,-117,58,-30,-117,-41,-42,-117,58,-42,-117,-41,-30,-117,-41,-30,-93,58,-30,-117,58,-30,-93,-41,-30,-117,58,-30,-117,-41,-30,-93,-41,-18,-93,58,-30,-93,58,-18,-93,-41,-30,-93,58,-30,-93,-41,-18,-93,-41,18,-69,58,6,-69,58,18,-69,-41,6,-69,58,6,-69,-41,18,-69,-41,18,-57,58,18,-69,58,18,-57,-41,18,-69,58,18,-69,-41,18,-57,-41,-6,-57,58,18,-57,58,-6,-57,-41,18,-57,58,18,-57,-41,-6,-57,-41,-6,-69,58,-6,-57,58,-6,-69,-41,-6,-57,58,-6,-57,-41,-6,-69,-41,-18,-69,58,-6,-69,58,-18,-69,-41,-6,-69,58,-6,-69,-41,-18,-69,-41,-18,-81,58,-18,-69,58,-18,-81,-41,-18,-69,58,-18,-69,-41,-18,-81,-41,6,-81,58,-18,-81,58,6,-81,-41,-18,-81,58,-18,-81,-41,6,-81,-41,6,-69,58,6,-81,58,6,-69,-41,6,-81,58,6,-81,-41,6,-69,-41,30,-117,58,30,-141,58,30,-117,-41,30,-141,58,30,-141,-41,30,-117,-41,18,-117,58,30,-117,58,18,-117,-41,30,-117,58,30,-117,-41,18,-117,-41,18,-129,58,18,-117,58,18,-129,-41,18,-117,58,18,-117,-41,18,-129,-41,6,-129,58,18,-129,58,6,-129,-41,18,-129,58,18,-129,-41,6,-129,-41,6,-141,58,6,-129,58,6,-141,-41,6,-129,58,6,-129,-41,6,-141,-41,30,-141,58,6,-141,58,30,-141,-41,6,-141,58,6,-141,-41,30,-141,-41,42,-105,58,42,-105,-41,30,-105,58,42,-105,-41,30,-105,-41,30,-105,58,42,-117,58,42,-117,-41,42,-105,58,42,-117,-41,42,-105,-41,42,-105,58,30,-117,58,30,-117,-41,42,-117,58,30,-117,-41,42,-117,-41,42,-117,58,30,-105,58,30,-105,-41,30,-117,58,30,-105,-41,30,-117,-41,30,-117,58,102,-9,58,90,-9,58,102,-9,-41,90,-9,58,90,-9,-41,102,-9,-41,102,2,58,102,-9,58,102,2,-41,102,-9,58,102,-9,-41,102,2,-41,90,2,58,102,2,58,90,2,-41,102,2,58,102,2,-41,90,2,-41,90,-9,58,90,2,58,90,-9,-41,90,2,58,90,2,-41,90,-9,-41,102,-129,58,78,-129,58,102,-129,-41,78,-129,58,78,-129,-41,102,-129,-41,102,-105,58,102,-129,58,102,-105,-41,102,-129,58,102,-129,-41,102,-105,-41,78,-105,58,102,-105,58,78,-105,-41,102,-105,58,102,-105,-41,78,-105,-41,78,-129,58,78,-105,58,78,-129,-41,78,-105,58,78,-105,-41,78,-129,-41,114,-129,58,114,-141,58,114,-129,-41,114,-141,58,114,-141,-41,114,-129,-41,102,-129,58,114,-129,58,102,-129,-41,114,-129,58,114,-129,-41,102,-129,-41,102,-141,58,102,-129,58,102,-141,-41,102,-129,58,102,-129,-41,102,-141,-41,114,-141,58,102,-141,58,114,-141,-41,102,-141,58,102,-141,-41,114,-141,-41,138,-57,58,150,-57,58,138,-57,-41,150,-57,58,150,-57,-41,138,-57,-41,138,-69,58,138,-57,58,138,-69,-41,138,-57,58,138,-57,-41,138,-69,-41,126,-69,58,138,-69,58,126,-69,-41,138,-69,58,138,-69,-41,126,-69,-41,126,-81,58,126,-69,58,126,-81,-41,126,-69,58,126,-69,-41,126,-81,-41,138,-81,58,126,-81,58,138,-81,-41,126,-81,58,126,-81,-41,138,-81,-41,138,-93,58,138,-81,58,138,-93,-41,138,-81,58,138,-81,-41,138,-93,-41,126,-93,58,138,-93,58,126,-93,-41,138,-93,58,138,-93,-41,126,-93,-41,126,-105,58,126,-93,58,126,-105,-41,126,-93,58,126,-93,-41,126,-105,-41,114,-105,58,126,-105,58,114,-105,-41,126,-105,58,126,-105,-41,114,-105,-41,114,-129,58,114,-105,58,114,-129,-41,114,-105,58,114,-105,-41,114,-129,-41,138,-129,58,114,-129,58,138,-129,-41,114,-129,58,114,-129,-41,138,-129,-41,138,-141,58,138,-129,58,138,-141,-41,138,-129,58,138,-129,-41,138,-141,-41,150,-141,58,138,-141,58,150,-141,-41,138,-141,58,138,-141,-41,150,-141,-41,150,-141,58,150,-141,-41,150,-57,58,150,-141,-41,150,-57,-41,150,-57,58,138,2,58,138,-9,58,138,2,-41,138,-9,58,138,-9,-41,138,2,-41,126,2,58,138,2,58,126,2,-41,138,2,58,138,2,-41,126,2,-41,126,-9,58,126,2,58,126,-9,-41,126,2,58,126,2,-41,126,-9,-41,102,-9,58,126,-9,58,102,-9,-41,126,-9,58,126,-9,-41,102,-9,-41,102,-21,58,102,-9,58,102,-21,-41,102,-9,58,102,-9,-41,102,-21,-41,114,-21,58,102,-21,58,114,-21,-41,102,-21,58,102,-21,-41,114,-21,-41,114,-45,58,114,-21,58,114,-45,-41,114,-21,58,114,-21,-41,114,-45,-41,126,-45,58,114,-45,58,126,-45,-41,114,-45,58,114,-45,-41,126,-45,-41,126,-57,58,126,-45,58,126,-57,-41,126,-45,58,126,-45,-41,126,-57,-41,138,-57,58,126,-57,58,138,-57,-41,126,-57,58,126,-57,-41,138,-57,-41,138,-33,58,138,-57,58,138,-33,-41,138,-57,58,138,-57,-41,138,-33,-41,126,-33,58,138,-33,58,126,-33,-41,138,-33,58,138,-33,-41,126,-33,-41,126,-21,58,126,-33,58,126,-21,-41,126,-33,58,126,-33,-41,126,-21,-41,138,-21,58,126,-21,58,138,-21,-41,126,-21,58,126,-21,-41,138,-21,-41,138,-33,58,138,-21,58,138,-33,-41,138,-21,58,138,-21,-41,138,-33,-41,150,-33,58,138,-33,58,150,-33,-41,138,-33,58,138,-33,-41,150,-33,-41,150,-9,58,150,-33,58,150,-9,-41,150,-33,58,150,-33,-41,150,-9,-41,138,-9,58,150,-9,58,138,-9,-41,150,-9,58,150,-9,-41,138,-9,-41,78,50,58,90,50,58,78,50,-41,90,50,58,90,50,-41,78,50,-41,78,38,58,78,50,58,78,38,-41,78,50,58,78,50,-41,78,38,-41,102,38,58,78,38,58,102,38,-41,78,38,58,78,38,-41,102,38,-41,102,14,58,102,38,58,102,14,-41,102,38,58,102,38,-41,102,14,-41,102,14,58,102,14,-41,138,14,58,102,14,-41,138,14,-41,138,14,58,138,2,58,138,14,58,138,2,-41,138,14,58,138,14,-41,138,2,-41,150,2,58,138,2,58,150,2,-41,138,2,58,138,2,-41,150,2,-41,150,2,58,150,2,-41,150,38,58,150,2,-41,150,38,-41,150,38,58,138,38,58,150,38,58,138,38,-41,150,38,58,150,38,-41,138,38,-41,138,26,58,138,38,58,138,26,-41,138,38,58,138,38,-41,138,26,-41,114,26,58,138,26,58,114,26,-41,138,26,58,138,26,-41,114,26,-41,114,38,58,114,26,58,114,38,-41,114,26,58,114,26,-41,114,38,-41,138,38,58,114,38,58,138,38,-41,114,38,58,114,38,-41,138,38,-41,138,62,58,138,38,58,138,62,-41,138,38,58,138,38,-41,138,62,-41,126,62,58,138,62,58,126,62,-41,138,62,58,138,62,-41,126,62,-41,126,50,58,126,62,58,126,50,-41,126,62,58,126,62,-41,126,50,-41,114,50,58,126,50,58,114,50,-41,126,50,58,126,50,-41,114,50,-41,114,62,58,114,50,58,114,62,-41,114,50,58,114,50,-41,114,62,-41,90,62,58,114,62,58,90,62,-41,114,62,58,114,62,-41,90,62,-41,90,50,58,90,62,58,90,50,-41,90,62,58,90,62,-41,90,50,-41,30,74,58,42,74,58,30,74,-41,42,74,58,42,74,-41,30,74,-41,30,62,58,30,74,58,30,62,-41,30,74,58,30,74,-41,30,62,-41,42,62,58,30,62,58,42,62,-41,30,62,58,30,62,-41,42,62,-41,42,50,58,42,62,58,42,50,-41,42,62,58,42,62,-41,42,50,-41,42,50,58,42,50,-41,78,50,58,42,50,-41,78,50,-41,78,50,58,78,62,58,78,50,58,78,62,-41,78,50,58,78,50,-41,78,62,-41,54,62,58,78,62,58,54,62,-41,78,62,58,78,62,-41,54,62,-41,54,86,58,54,62,58,54,86,-41,54,62,58,54,62,-41,54,86,-41,42,86,58,54,86,58,42,86,-41,54,86,58,54,86,-41,42,86,-41,42,74,58,42,86,58,42,74,-41,42,86,58,42,86,-41,42,74,-41,18,74,58,18,86,58,18,74,-41,18,86,58,18,86,-41,18,74,-41,30,74,58,18,74,58,30,74,-41,18,74,58,18,74,-41,30,74,-41,30,86,58,30,74,58,30,86,-41,30,74,58,30,74,-41,30,86,-41,18,86,58,30,86,58,18,86,-41,30,86,58,30,86,-41,18,86,-41,6,74,58,18,74,58,6,74,-41,18,74,58,18,74,-41,6,74,-41,6,14,58,6,74,58,6,14,-41,6,74,58,6,74,-41,6,14,-41,-6,14,58,6,14,58,-6,14,-41,6,14,58,6,14,-41,-6,14,-41,-6,2,58,-6,14,58,-6,2,-41,-6,14,58,-6,14,-41,-6,2,-41,-30,2,58,-6,2,58,-30,2,-41,-6,2,58,-6,2,-41,-30,2,-41,-30,-9,58,-30,2,58,-30,-9,-41,-30,2,58,-30,2,-41,-30,-9,-41,-42,-9,58,-30,-9,58,-42,-9,-41,-30,-9,58,-30,-9,-41,-42,-9,-41,-42,2,58,-42,-9,58,-42,2,-41,-42,-9,58,-42,-9,-41,-42,2,-41,-54,2,58,-42,2,58,-54,2,-41,-42,2,58,-42,2,-41,-54,2,-41,-54,-21,58,-54,2,58,-54,-21,-41,-54,2,58,-54,2,-41,-54,-21,-41,-42,-21,58,-54,-21,58,-42,-21,-41,-54,-21,58,-54,-21,-41,-42,-21,-41,-42,-33,58,-42,-21,58,-42,-33,-41,-42,-21,58,-42,-21,-41,-42,-33,-41,-30,-33,58,-42,-33,58,-30,-33,-41,-42,-33,58,-42,-33,-41,-30,-33,-41,-30,-21,58,-30,-33,58,-30,-21,-41,-30,-33,58,-30,-33,-41,-30,-21,-41,-18,-21,58,-30,-21,58,-18,-21,-41,-30,-21,58,-30,-21,-41,-18,-21,-41,-18,-9,58,-18,-21,58,-18,-9,-41,-18,-21,58,-18,-21,-41,-18,-9,-41,-18,-9,58,-18,-9,-41,30,-9,58,-18,-9,-41,30,-9,-41,30,-9,58,30,-33,58,30,-9,58,30,-33,-41,30,-9,58,30,-9,-41,30,-33,-41,42,-33,58,30,-33,58,42,-33,-41,30,-33,58,30,-33,-41,42,-33,-41,42,-21,58,42,-33,58,42,-21,-41,42,-33,58,42,-33,-41,42,-21,-41,54,-21,58,42,-21,58,54,-21,-41,42,-21,58,42,-21,-41,54,-21,-41,54,-33,58,54,-21,58,54,-33,-41,54,-21,58,54,-21,-41,54,-33,-41,42,-33,58,54,-33,58,42,-33,-41,54,-33,58,54,-33,-41,42,-33,-41,42,-33,58,42,-33,-41,42,-81,58,42,-33,-41,42,-81,-41,42,-81,58,30,-81,58,42,-81,58,30,-81,-41,42,-81,58,42,-81,-41,30,-81,-41,30,-69,58,30,-81,58,30,-69,-41,30,-81,58,30,-81,-41,30,-69,-41,18,-69,58,30,-69,58,18,-69,-41,30,-69,58,30,-69,-41,18,-69,-41,18,-69,58,18,-69,-41,18,-105,58,18,-69,-41,18,-105,-41,18,-105,58,30,-105,58,18,-105,58,30,-105,-41,18,-105,58,18,-105,-41,30,-105,-41,30,-93,58,30,-105,58,30,-93,-41,30,-105,58,30,-105,-41,30,-93,-41,54,-93,58,30,-93,58,54,-93,-41,30,-93,58,30,-93,-41,54,-93,-41,54,-117,58,54,-93,58,54,-117,-41,54,-93,58,54,-93,-41,54,-117,-41,66,-117,58,54,-117,58,66,-117,-41,54,-117,58,54,-117,-41,66,-117,-41,66,-105,58,66,-117,58,66,-105,-41,66,-117,58,66,-117,-41,66,-105,-41,78,-105,58,66,-105,58,78,-105,-41,66,-105,58,66,-105,-41,78,-105,-41,78,-93,58,78,-105,58,78,-93,-41,78,-105,58,78,-105,-41,78,-93,-41,102,-93,58,78,-93,58,102,-93,-41,78,-93,58,78,-93,-41,102,-93,-41,102,-105,58,102,-93,58,102,-105,-41,102,-93,58,102,-93,-41,102,-105,-41,114,-105,58,102,-105,58,114,-105,-41,102,-105,58,102,-105,-41,114,-105,-41,114,-81,58,114,-105,58,114,-81,-41,114,-105,58,114,-105,-41,114,-81,-41,102,-81,58,114,-81,58,102,-81,-41,114,-81,58,114,-81,-41,102,-81,-41,102,-69,58,102,-81,58,102,-69,-41,102,-81,58,102,-81,-41,102,-69,-41,114,-69,58,102,-69,58,114,-69,-41,102,-69,58,102,-69,-41,114,-69,-41,114,-57,58,114,-69,58,114,-57,-41,114,-69,58,114,-69,-41,114,-57,-41,102,-57,58,114,-57,58,102,-57,-41,114,-57,58,114,-57,-41,102,-57,-41,102,-33,58,102,-57,58,102,-33,-41,102,-57,58,102,-57,-41,102,-33,-41,90,-33,58,102,-33,58,90,-33,-41,102,-33,58,102,-33,-41,90,-33,-41,90,-21,58,90,-33,58,90,-21,-41,90,-33,58,90,-33,-41,90,-21,-41,78,-21,58,90,-21,58,78,-21,-41,90,-21,58,90,-21,-41,78,-21,-41,78,-33,58,78,-21,58,78,-33,-41,78,-21,58,78,-21,-41,78,-33,-41,66,-33,58,78,-33,58,66,-33,-41,78,-33,58,78,-33,-41,66,-33,-41,66,-9,58,66,-33,58,66,-9,-41,66,-33,58,66,-33,-41,66,-9,-41,54,-9,58,66,-9,58,54,-9,-41,66,-9,58,66,-9,-41,54,-9,-41,54,14,58,54,-9,58,54,14,-41,54,-9,58,54,-9,-41,54,14,-41,66,14,58,54,14,58,66,14,-41,54,14,58,54,14,-41,66,14,-41,66,2,58,66,14,58,66,2,-41,66,14,58,66,14,-41,66,2,-41,78,2,58,66,2,58,78,2,-41,66,2,58,66,2,-41,78,2,-41,78,2,58,78,2,-41,78,38,58,78,2,-41,78,38,-41,78,38,58,66,38,58,78,38,58,66,38,-41,78,38,58,78,38,-41,66,38,-41,66,26,58,66,38,58,66,26,-41,66,38,58,66,38,-41,66,26,-41,54,26,58,66,26,58,54,26,-41,66,26,58,66,26,-41,54,26,-41,54,38,58,54,26,58,54,38,-41,54,26,58,54,26,-41,54,38,-41,42,38,58,54,38,58,42,38,-41,54,38,58,54,38,-41,42,38,-41,42,50,58,42,38,58,42,50,-41,42,38,58,42,38,-41,42,50,-41,30,50,58,42,50,58,30,50,-41,42,50,58,42,50,-41,30,50,-41,30,50,58,30,50,-41,30,2,58,30,50,-41,30,2,-41,30,2,58,18,2,58,30,2,58,18,2,-41,30,2,58,30,2,-41,18,2,-41,18,2,58,18,2,-41,18,74,58,18,2,-41,18,74,-41,18,74,58,-6,122,58,6,122,58,-6,122,-41,6,122,58,6,122,-41,-6,122,-41,-6,98,58,-6,122,58,-6,98,-41,-6,122,58,-6,122,-41,-6,98,-41,-18,98,58,-6,98,58,-18,98,-41,-6,98,58,-6,98,-41,-18,98,-41,-18,122,58,-18,98,58,-18,122,-41,-18,98,58,-18,98,-41,-18,122,-41,-30,122,58,-18,122,58,-30,122,-41,-18,122,58,-18,122,-41,-30,122,-41,-30,98,58,-30,122,58,-30,98,-41,-30,122,58,-30,122,-41,-30,98,-41,-42,98,58,-30,98,58,-42,98,-41,-30,98,58,-30,98,-41,-42,98,-41,-42,86,58,-42,98,58,-42,86,-41,-42,98,58,-42,98,-41,-42,86,-41,-30,86,58,-42,86,58,-30,86,-41,-42,86,58,-42,86,-41,-30,86,-41,-30,74,58,-30,86,58,-30,74,-41,-30,86,58,-30,86,-41,-30,74,-41,-18,74,58,-30,74,58,-18,74,-41,-30,74,58,-30,74,-41,-18,74,-41,-18,86,58,-18,74,58,-18,86,-41,-18,74,58,-18,74,-41,-18,86,-41,-6,86,58,-18,86,58,-6,86,-41,-18,86,58,-18,86,-41,-6,86,-41,-6,74,58,-6,86,58,-6,74,-41,-6,86,58,-6,86,-41,-6,74,-41,6,74,58,-6,74,58,6,74,-41,-6,74,58,-6,74,-41,6,74,-41,6,74,58,6,74,-41,6,122,58,6,74,-41,6,122,-41,6,122,58,-6,158,58,-6,158,-41,-6,146,58,-6,158,-41,-6,146,-41,-6,146,58,6,158,58,6,158,-41,-6,158,58,6,158,-41,-6,158,-41,-6,158,58,6,146,58,6,146,-41,6,158,58,6,146,-41,6,158,-41,6,158,58,-6,146,58,-6,146,-41,6,146,58,-6,146,-41,6,146,-41,6,146,58,-18,146,58,-6,146,58,-18,146,-41,-6,146,58,-6,146,-41,-18,146,-41,-18,122,58,-18,146,58,-18,122,-41,-18,146,58,-18,146,-41,-18,122,-41,-6,122,58,-18,122,58,-6,122,-41,-18,122,58,-18,122,-41,-6,122,-41,-6,146,58,-6,122,58,-6,146,-41,-6,122,58,-6,122,-41,-6,146,-41],"normalized":false},"normal":{"itemSize":3,"type":"Float32Array","array":[0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0],"normalized":false},"color":{"itemSize":3,"type":"Float32Array","array":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417,0.7529411911964417],"normalized":false}},"groups":[{"start":0,"materialIndex":0,"count":4284}]}} diff --git a/examples/models/platform/platform.jpg b/examples/models/json/platform/platform.jpg similarity index 100% rename from examples/models/platform/platform.jpg rename to examples/models/json/platform/platform.jpg diff --git a/examples/models/json/platform/platform.json b/examples/models/json/platform/platform.json new file mode 100644 index 00000000000000..448159e8ebe5f6 --- /dev/null +++ b/examples/models/json/platform/platform.json @@ -0,0 +1 @@ +{"metadata":{"version":4.5,"type":"Object","generator":"Object3D.toJSON"},"geometries":[{"uuid":"023B57F0-404F-4673-8855-9FFC5C87F8DA","type":"Geometry","data":{"vertices":[2.78,0,-8.67,6.12,0,6.74,-8.9,0,1.93,-2.78,0,-8.67,8.9,0,1.93,-6.12,0,6.74,2.78,2.8,-14.65,11.3,2.8,9.73,-14.08,2.8,4.92,-2.78,2.8,-14.65,14.08,2.8,4.92,-11.3,2.8,9.73,0,2.8,-14.65,12.69,2.8,7.32,-12.69,2.8,7.32,0,0,-8.67,7.51,0,4.33,-7.51,0,4.33,4.58,2.8,-16.45,11.95,2.8,12.19,-16.53,2.8,4.26,-4.58,2.8,-16.45,16.53,2.8,4.26,-11.95,2.8,12.19,0,2.8,-18.97,16.43,2.8,9.49,-16.43,2.8,9.49,4.58,2.8,-21.59,16.41,2.8,14.76,-20.99,2.8,6.83,-4.58,2.8,-21.59,20.99,2.8,6.83,-16.41,2.8,14.76,0,2.8,-23.37,20.24,2.8,11.68,-20.24,2.8,11.68,2.79,2.8,-23.37,18.85,2.8,14.1,-21.63,2.8,9.27,-2.79,2.8,-23.37,21.63,2.8,9.27,-18.85,2.8,14.1,16.03,7.6,-16.45,6.23,7.6,22.1,-22.26,7.6,-5.66,-16.03,7.6,-16.45,22.26,7.6,-5.66,-6.23,7.6,22.1,16.03,7.6,-21.59,10.68,7.6,24.68,-26.71,7.6,-3.09,-16.03,7.6,-21.59,26.71,7.6,-3.09,-10.68,7.6,24.68,16.03,7.6,-16.45,6.23,7.6,22.11,-22.26,7.6,-5.66,-16.03,7.6,-16.45,22.26,7.6,-5.66,-6.23,7.6,22.11,16.03,7.6,-21.59,10.68,7.6,24.68,-26.71,7.6,-3.09,-16.03,7.6,-21.59,26.71,7.6,-3.09,-10.68,7.6,24.68,20.64,7.6,-21.59,8.38,7.6,28.67,-29.01,7.6,-7.08,-20.64,7.6,-21.59,29.01,7.6,-7.08,-8.38,7.6,28.67,17.4,7.6,-16.45,5.54,7.6,23.29,-22.94,7.6,-6.85,-17.4,7.6,-16.45,22.94,7.6,-6.85,-5.54,7.6,23.29,16.03,7.6,-18.74,8.22,7.6,23.26,-24.25,7.6,-4.51,-16.03,7.6,-18.74,24.25,7.6,-4.51,-8.22,7.6,23.26,19.99,7.6,-13.49,1.69,7.6,24.06,-21.68,7.6,-10.57,-19.99,7.6,-13.49,21.68,7.6,-10.57,-1.69,7.6,24.06,18.88,7.6,-13.79,2.5,7.6,23.24,-21.38,7.6,-9.46,-18.88,7.6,-13.79,21.38,7.6,-9.46,-2.5,7.6,23.24,20.83,7.6,-12.02,0,7.6,24.05,-20.83,7.6,-12.03,-20.83,7.6,-12.02,20.83,7.6,-12.03,0,7.6,24.05,24.89,7.6,-14.37,0,7.6,28.74,-24.89,7.6,-14.37,-24.89,7.6,-14.37,24.89,7.6,-14.37,0,7.6,28.74,16.32,7.6,-10.91,1.29,7.6,19.59,-17.61,7.6,-8.68,-16.32,7.6,-10.91,17.61,7.6,-8.68,-1.29,7.6,19.59,17,7.6,-9.82,0,7.6,19.63,-17,7.6,-9.82,-17,7.6,-9.82,17,7.6,-9.82,0,7.6,19.63,3.59,0,-2.07,0,0,4.15,-3.59,0,-2.07,-3.59,0,-2.07,3.59,0,-2.07,0,0,4.15,0,0,-4.15,3.6,0,2.08,-3.6,0,2.08,8.9,0,-5.14,0,0,10.28,-8.9,0,-5.14,-8.9,0,-5.14,8.9,0,-5.14,0,0,10.28,2.78,2.8,-14.65,11.3,2.8,9.73,-14.08,2.8,4.92,-2.78,2.8,-14.65,14.08,2.8,4.92,-11.3,2.8,9.73,2.78,0,-8.67,6.12,0,6.74,-8.9,0,1.93,-2.78,0,-8.67,8.9,0,1.93,-6.12,0,6.74,4.58,2.8,-16.45,11.95,2.8,12.19,-16.53,2.8,4.26,-4.58,2.8,-16.45,16.53,2.8,4.26,-11.95,2.8,12.19,0,2.8,-23.37,20.24,2.8,11.68,-20.24,2.8,11.68,2.79,2.8,-23.37,18.85,2.8,14.1,-21.63,2.8,9.27,-2.79,2.8,-23.37,21.63,2.8,9.27,-18.85,2.8,14.1,4.58,2.8,-21.59,16.41,2.8,14.76,-20.99,2.8,6.83,-4.58,2.8,-21.59,20.99,2.8,6.83,-16.41,2.8,14.76,16.03,7.6,-21.59,10.68,7.6,24.68,-26.71,7.6,-3.09,-16.03,7.6,-21.59,26.71,7.6,-3.09,-10.68,7.6,24.68,16.03,7.6,-16.45,6.23,7.6,22.1,-22.26,7.6,-5.66,-16.03,7.6,-16.45,22.26,7.6,-5.66,-6.23,7.6,22.1,20.64,7.6,-21.59,8.38,7.6,28.67,-29.01,7.6,-7.08,-20.64,7.6,-21.59,29.01,7.6,-7.08,-8.38,7.6,28.67,16.03,7.6,-21.59,10.68,7.6,24.68,-26.71,7.6,-3.09,-16.03,7.6,-21.59,26.71,7.6,-3.09,-10.68,7.6,24.68,16.03,7.6,-16.45,6.23,7.6,22.11,-22.26,7.6,-5.66,-16.03,7.6,-16.45,22.26,7.6,-5.66,-6.23,7.6,22.11,17.4,7.6,-16.45,5.54,7.6,23.29,-22.94,7.6,-6.85,-17.4,7.6,-16.45,22.94,7.6,-6.85,-5.54,7.6,23.29,18.88,7.6,-13.79,2.5,7.6,23.24,-21.38,7.6,-9.46,-18.88,7.6,-13.79,21.38,7.6,-9.46,-2.5,7.6,23.24,24.89,7.6,-14.37,0,7.6,28.74,-24.89,7.6,-14.37,-24.89,7.6,-14.37,24.89,7.6,-14.37,0,7.6,28.74,17,7.6,-9.82,0,7.6,19.63,-17,7.6,-9.82,-17,7.6,-9.82,17,7.6,-9.82,0,7.6,19.63,16.32,7.6,-10.91,1.29,7.6,19.59,-17.61,7.6,-8.68,-16.32,7.6,-10.91,17.61,7.6,-8.68,-1.29,7.6,19.59,3.59,0,-2.07,0,0,4.15,-3.59,0,-2.07,-3.59,0,-2.07,3.59,0,-2.07,0,0,4.15,0,0,-4.15,3.6,0,2.08,-3.6,0,2.08,8.9,0,-5.14,0,0,10.28,-8.9,0,-5.14,-8.9,0,-5.14,8.9,0,-5.14,0,0,10.28,2.81,-0.85,-8.67,6.1,-0.85,6.76,-8.91,-0.85,1.9,-2.81,-0.85,-8.67,8.91,-0.85,1.9,-6.1,-0.85,6.76,8.93,-0.85,-5.14,-0.01,-0.85,10.3,-8.92,-0.85,-5.16,-8.93,-0.85,-5.14,8.92,-0.85,-5.16,0.01,-0.85,10.3,3.62,-0.85,-2.07,-0.01,-0.85,4.17,-3.6,-0.85,-2.1,-3.62,-0.85,-2.07,3.6,-0.85,-2.1,0.01,-0.85,4.17,0,-0.85,-8.67,7.5,-0.85,4.33,-7.5,-0.85,4.33,0,-0.85,-4.15,3.6,-0.85,2.08,-3.6,-0.85,2.08,18.9,6.75,-13.79,2.49,6.75,23.26,-21.39,6.75,-9.48,-18.9,6.75,-13.79,21.39,6.75,-9.48,-2.49,6.75,23.26,16.35,6.75,-10.91,1.28,6.75,19.61,-17.62,6.75,-8.7,-16.35,6.75,-10.91,17.62,6.75,-8.7,-1.28,6.75,19.61,17.03,6.75,-9.83,0,6.75,19.66,-17.03,6.75,-9.83,-17.03,6.75,-9.83,17.03,6.75,-9.83,0,6.75,19.66,20.85,6.75,-12.04,0,6.75,24.08,-20.85,6.75,-12.04,-20.85,6.75,-12.04,20.85,6.75,-12.04,0,6.75,24.08,24.91,6.75,-14.38,0,6.75,28.77,-24.91,6.75,-14.38,-24.91,6.75,-14.38,24.91,6.75,-14.38,0,6.75,28.77,20.66,6.75,-21.59,8.36,6.75,28.69,-29.03,6.75,-7.1,-20.66,6.75,-21.59,29.03,6.75,-7.1,-8.36,6.75,28.69,17.43,6.75,-16.44,5.53,6.75,23.31,-22.95,6.75,-6.87,-17.43,6.75,-16.44,22.95,6.75,-6.87,-5.53,6.75,23.31,16.06,6.75,-18.74,8.2,6.75,23.28,-24.26,6.75,-4.54,-16.06,6.75,-18.74,24.26,6.75,-4.54,-8.2,6.75,23.28,16.06,6.75,-16.44,6.21,6.75,22.13,-22.27,6.75,-5.68,-16.06,6.75,-16.44,22.27,6.75,-5.68,-6.21,6.75,22.13,16.06,6.75,-21.59,10.67,6.75,24.7,-26.72,6.75,-3.11,-16.06,6.75,-21.59,26.72,6.75,-3.11,-10.67,6.75,24.7,16.06,6.75,-16.44,6.21,6.75,22.13,-22.27,6.75,-5.68,-16.06,6.75,-16.44,22.27,6.75,-5.68,-6.21,6.75,22.13,4.6,1.95,-16.44,11.94,1.95,12.21,-16.54,1.95,4.24,-4.6,1.95,-16.44,16.54,1.95,4.24,-11.94,1.95,12.21,16.06,6.75,-21.59,10.67,6.75,24.7,-26.72,6.75,-3.11,-16.06,6.75,-21.59,26.72,6.75,-3.11,-10.67,6.75,24.7,4.6,1.95,-21.59,16.39,1.95,14.78,-21,1.95,6.81,-4.6,1.95,-21.59,21,1.95,6.81,-16.39,1.95,14.78,2.81,1.95,-23.37,18.83,1.95,14.12,-21.65,1.95,9.25,-2.81,1.95,-23.37,21.65,1.95,9.25,-18.83,1.95,14.12,0,1.95,-23.37,20.23,1.95,11.68,-20.23,1.95,11.68,0,1.95,-18.97,16.43,1.95,9.49,-16.43,1.95,9.48,0,1.95,-18.97,16.43,1.95,9.48,-16.43,1.95,9.49,2.81,1.95,-14.65,11.28,1.95,9.75,-14.09,1.95,4.89,-2.81,1.95,-14.65,14.09,1.95,4.89,-11.28,1.95,9.75,0,1.95,-14.65,12.69,1.95,7.32,-12.69,1.95,7.32,20.02,6.75,-13.49,1.67,6.75,24.08,-21.69,6.75,-10.59,-20.02,6.75,-13.49,21.69,6.75,-10.59,-1.67,6.75,24.08],"normals":[0,0.9056407322532398,0.42404582781088146,-0.36727681388234784,0.905668265459526,-0.2118318553097359,-0.3672768138823479,0.905668265459526,-0.21183185530973572,0.3668949212878449,0.9056681017581697,-0.2124933085792102,-0.3668949212878449,0.9056681017581697,-0.2124933085792102,0.3672768138823479,0.905668265459526,-0.21183185530973586,0.36727681388234784,0.905668265459526,-0.2118318553097357,0,0.9999999999999999,0,0,1,0,-0.3866161913410277,0.9222407064280767,0,0.19294186664875884,0.922312485162991,-0.33483296702469445,0.1940272027039664,0.9221478094531352,-0.33465932249327557,0.19301342110670627,0.9222524228554833,0.33495714324354436,0.1932670019907807,0.922312559492336,0.33464519799960074,0.3866161913410277,0.9222407064280767,0,-0.1930134211067062,0.9222524228554833,0.33495714324354436,-0.19326700199078078,0.9223125594923359,0.33464519799960074,-0.19294186664875884,0.9223124851629909,-0.3348329670246944,-0.1940272027039664,0.9221478094531351,-0.33465932249327546,0.49956309375114993,0.01763163860298191,-0.8660980548886792,0.49956309375115004,0.017631638602981486,-0.8660980548886792,0.500683248198756,0.008585993887355833,0.8655879884114088,0.5012629483040193,0.01445982848547501,0.8651741847846205,-0.9999308030307444,0.01176389180036145,0,-0.9997230789512334,0.023489577425782518,0.0014160383554549746,-0.4995630937511499,0.017631638602982072,-0.8660980548886792,-0.49956309375115004,0.01763163860298139,-0.8660980548886792,0.9999308030307444,0.01176389180036145,0,0.9997230789512335,0.02348957742578252,0.0014160383554549748,-0.500683248198756,0.008585993887356033,0.8655879884114088,-0.5012629483040193,0.014459828485474571,0.8651741847846205,-0.5012428117468869,-0.01769092276753733,0.8651258145054439,-0.4982010919008283,0,0.8670615157120182,-0.4984184889201182,-0.014531894561864902,-0.8668147633393358,-0.5010362705417046,0,-0.8654262854811262,0.9999268965273509,-0.011848885690955133,0.002409462401270781,1,0,0,0.5012428117468869,-0.017690922767537243,0.8651258145054439,0.4982010919008283,0,0.8670615157120182,-0.9999268965273509,-0.011848885690955132,0.0024094624012707807,-1,0,0,0.49841848892011825,-0.014531894561865185,-0.8668147633393359,0.5010362705417046,0,-0.8654262854811262,-0.7471494083160146,-0.026369979117036816,-0.6641328073920129,-0.7485826196108822,-0.017613708696726346,-0.6628075277804681,0.949038486344065,-0.018567811803733864,-0.31461275848666276,0.9490384863440651,-0.018567811803734742,-0.31461275848666254,-0.2025623873233819,-0.020653419883951772,0.9790515387296778,-0.2025623873233819,-0.020653419883951724,0.9790515387296775,0.7471494083160146,-0.02636997911703672,-0.6641328073920129,0.7485826196108822,-0.017613708696726273,-0.662807527780468,0.2025623873233819,-0.020653419883951724,0.9790515387296775,0.2025623873233819,-0.020653419883951772,0.9790515387296778,-0.949038486344065,-0.018567811803733944,-0.31461275848666276,-0.9490384863440651,-0.01856781180373493,-0.31461275848666254,-0.84788080541264,-0.03614818328526737,0.5289531630097202,-0.8458556555785454,-0.02985372902042037,0.5325757831420468,-0.030973589015865426,-0.0352552322033548,-0.9988982457616811,-0.03902236473364937,-0.023046149525048562,-0.9989725371814098,0.8811176200543459,-0.03664503621072361,0.4714752177483774,0.8862435553860105,-0.02131413443978982,0.4627289359980051,0.84788080541264,-0.03614818328526737,0.5289531630097202,0.8458556555785454,-0.029853729020420397,0.5325757831420468,-0.8811176200543459,-0.03664503621072365,0.4714752177483774,-0.8862435553860105,-0.021314134439789884,0.46272893599800496,0.03097358901586542,-0.035255232203354796,-0.9988982457616811,0.039022364733649374,-0.02304614952504857,-0.9989725371814098,0.8616036441395264,0.02027302692092961,-0.5071766603314386,0.8611766094638528,0.02623507758617982,-0.5076283758975555,0.008350657868159427,0.02332570315442239,0.9996930419311324,0.009562986085862,0.035270542799034306,0.9993320459726002,-0.8701379769298585,0.03204478114022264,-0.49176522152963215,-0.8699953383342024,0.026262949127477953,-0.4923599991671586,-0.8616036441395264,0.020273026920929676,-0.5071766603314386,-0.8611766094638528,0.026235077586180055,-0.5076283758975555,0.8701379769298585,0.032044781140222973,-0.49176522152963215,0.8699953383342024,0.026262949127477696,-0.4923599991671585,-0.008350657868159427,0.023325703154422388,0.9996930419311324,-0.009562986085862,0.0352705427990343,0.9993320459726002,-0.8736625243324939,-0.02055676527841119,0.4860979458692072,-0.8741918286140715,-0.025148781573450487,0.48492905209912573,0.01644051996730009,-0.023713032329309124,-0.9995836140118313,0.01644051996729893,-0.023713032329304936,-0.9995836140118316,0.8581513794372058,-0.022164558955039382,0.5129180658705143,0.8581513794372064,-0.022164558955036225,0.5129180658705137,0.8736625243324939,-0.02055676527841125,0.4860979458692072,0.8741918286140715,-0.02514878157345042,0.48492905209912573,-0.8581513794372058,-0.022164558955039288,0.5129180658705143,-0.8581513794372064,-0.022164558955036325,0.5129180658705138,-0.016440519967300095,-0.023713032329309134,-0.9995836140118316,-0.016440519967298922,-0.023713032329304932,-0.9995836140118315,0,0.011763891800359362,0.9999308030307444,0,0.011763891800359364,0.9999308030307444,-0.8632464733970291,-0.0017213289599142898,-0.5047797174948734,-0.8663976395432211,0.008638062208806477,-0.49927999566897474,0.8682422177254647,0.0014592306180282945,-0.49613841012883697,0.868242217725465,0.001459230618027737,-0.49613841012883675,0,0.011763891800359362,0.9999308030307446,-0.8682422177254647,0.0014592306180283092,-0.49613841012883697,-0.868242217725465,0.0014592306180277667,-0.49613841012883675,0.8632464733970291,-0.0017213289599143178,-0.5047797174948734,0.8663976395432212,0.008638062208806524,-0.4992799956689749,0,0,-1,0.8663652220610385,0.0015582567756367936,0.49940852399508434,0.8653944778578968,-0.008573567582494418,0.5010178556019401,-0.8663652220610382,-0.0015582567756388798,0.49940852399508473,-0.8653944778578966,0.008573567582492607,0.5010178556019407,0.8663652220610382,-0.001558256775638651,0.49940852399508473,0.8653944778578966,0.0085735675824929,0.5010178556019407,-0.8663652220610385,0.001558256775636836,0.49940852399508434,-0.8653944778578968,-0.008573567582494728,0.5010178556019402,-0.004859637314097807,0.011592259843004143,0.999920998597843,-0.004879147274645985,0.011648964118217291,0.9999202445979603,-0.8655165188952516,0.0026872179051800078,-0.5008731719501213,-0.8662504706345656,-0.0015642890768977848,-0.49960752108537876,0.866250470634566,0.001564289076898137,-0.49960752108537826,0.8662504706345658,0.0015642890768985081,-0.4996075210853786,0.004859637314097806,0.011592259843004143,0.999920998597843,0.004879147274645986,0.011648964118217291,0.9999202445979603,-0.8662504706345658,0.0015642890768985081,-0.4996075210853786,-0.8662504706345662,0.001564289076898137,-0.49960752108537837,0.8655165188952517,0.0026872179051797744,-0.500873171950121,0.866250470634566,-0.0015642890768973782,-0.4996075210853786,0,0,-0.9999999999999999,0.8641076942415478,-0.00849111453769233,0.5032353263896162,0.866624086190674,0.0015446395532479299,0.4989592241083733,-0.8666240861906735,-0.0015446395532466158,0.4989592241083741,-0.8666240861906747,-0.0015446395532508167,0.4989592241083721,0.8666240861906737,-0.0015446395532472048,0.49895922410837373,0.8666240861906741,-0.001544639553249935,0.4989592241083726,-0.864107694241548,-0.008491114537692168,0.5032353263896161,-0.8666240861906738,0.0015446395532478865,0.4989592241083734,0.7050262954853604,0.016588854011420264,-0.7089871173701091,0.7050262954853607,0.01658885401141986,-0.7089871173701092,0.26107247433547265,0.016567165929308413,0.9651770263311414,0.261072474335473,0.016567165929309492,0.9651770263311413,-0.9668806901585694,0.028717382118498856,-0.25360804987765784,-0.9661539710189102,0.017422448657719858,-0.2573770824435615,-0.7050262954853604,0.016588854011420275,-0.7089871173701092,-0.7050262954853607,0.0165888540114199,-0.7089871173701092,0.9668806901585693,0.028717382118498887,-0.2536080498776578,0.9661539710189102,0.01742244865771996,-0.25737708244356156,-0.26107247433547265,0.016567165929308438,0.9651770263311414,-0.261072474335473,0.016567165929309492,0.9651770263311413,0.8670933506390072,-0.010201098242809821,0.4980412220612469,0.8673339542806665,-0.008698431171188585,0.4976506295053013,-0.8662004394929764,-0.010190593405797697,0.49959278460383305,-0.8633612681670684,0.008443426587738756,0.5045156381881629,0.8662004394929764,-0.010190593405797569,0.49959278460383305,0.8633612681670684,0.008443426587738775,0.5045156381881629,-0.8670933506390072,-0.010201098242809792,0.4980412220612469,-0.8673339542806665,-0.008698431171188504,0.49765062950530137,0.706886677733667,0.0249489415670686,0.7068866777336675,0.7068866777336674,0.02494894156707085,0.706886677733667,-0.9666734346141883,0.017382554347916693,0.2554218424793583,-0.965441896652782,0.028810891607430226,0.25902099666294154,0.26006455678737805,0.019655503044179866,-0.9653911577713279,0.2563107992330409,0.031082033572151987,-0.9660945509553087,-0.706886677733667,0.024948941567068485,0.7068866777336675,-0.7068866777336674,0.024948941567070827,0.706886677733667,-0.2600645567873781,0.019655503044179835,-0.9653911577713279,-0.2563107992330409,0.031082033572151942,-0.9660945509553087,0.9666734346141883,0.017382554347916686,0.25542184247935823,0.9654418966527821,0.028810891607430195,0.2590209966629415,0.9992414775902818,0.0352673462678926,0.016513138720752385,0.9992414775902819,0.03526734626789261,0.01651313872075239,-0.5126744222807146,0.03225062583278912,0.8579771756128066,-0.5126744222807144,0.03225062583278862,0.8579771756128068,-0.48469040308785677,0.03654654392357282,-0.8739219434719405,-0.4846904030878569,0.03654654392357229,-0.8739219434719402,-0.9992414775902819,0.03526734626789261,0.01651313872075239,-0.9992414775902818,0.035267346267892595,0.01651313872075238,0.4846904030878567,0.03654654392357299,-0.8739219434719402,0.4846904030878568,0.03654654392357258,-0.8739219434719402,0.5126744222807146,0.03225062583278933,0.8579771756128067,0.5126744222807145,0.03225062583278858,0.8579771756128068,0,-1,0,0,-0.9999999999999999,0,0.38632919989793746,-0.9223609647563256,0,-0.1930134211067062,-0.9222524228554831,0.33495714324354436,-0.1932670019907806,-0.9223125594923359,0.33464519799960085,-0.1933387978581518,-0.9222523959698632,-0.33476951380108017,-0.19294186664875881,-0.922312485162991,-0.33483296702469445,-0.38632919989793746,-0.9223609647563256,0,0.1933387978581519,-0.9222523959698631,-0.33476951380108005,0.19294186664875873,-0.922312485162991,-0.33483296702469445,0.1930134211067061,-0.9222524228554834,0.3349571432435444,0.19326700199078067,-0.9223125594923358,0.3346451979996008,0,-0.9056407322532398,-0.4240458278108814,0.3662889069329873,-0.9059028821730656,0.21253800772654827,0.3673773101269938,-0.9056682207060728,0.21165770953818583,-0.36694121984505806,-0.9059036638141287,0.21140646410826386,-0.36672344692074804,-0.9056678565025581,0.21279014821327355,0.36694121984505806,-0.9059036638141287,0.21140646410826391,0.366723446920748,-0.9056678565025581,0.21279014821327358,-0.3662889069329873,-0.9059028821730656,0.21253800772654827,-0.3673773101269938,-0.9056682207060728,0.2116577095381858],"uvs":[[0.007544,0.336649,0.749592,0.170358,0.006326,0.171122,0.750809,0.335884,0.144602,0.54169,0.560668,0.358683,0.143734,0.359599,0.318466,0.658909,0.81479,0.657819,0.984918,0.357752,0.986279,0.540201,0.003455,0.335026,0.996032,0.00243,0.002592,0.00243,0.996894,0.335026,0.492694,0.573781,0.548034,0.637342,0.335213,0.637987,0.140199,0.559941,0.326277,0.345848,0.855424,0.598001,0.78998,0.641537,0.993052,0.346056,0.989689,0.599244,0.843989,0.781591,0.745574,0.714764,0.843162,0.920011,0.309465,0.919927,0.304178,0.814147,0.153419,0.437245,0.349552,0.667112,0.362164,0.355232,0.709627,0.667198,0.974985,0.354255,0.003064,0.94063,0.122096,0.3414,0.003193,0.341511,0.121967,0.940363,0.003319,0.795986,0.122431,0.451794,0.003616,0.452352,0.122134,0.796857,0.003647,0.685438,0.12223,0.339336,0.003839,0.339481,0.122728,0.685409,0.004466,0.687038,0.123262,0.56705,0.00372,0.566846,0.122929,0.687242,0.005123,0.997825,0.123437,0.338751,0.004869,0.338817,0.123691,0.997759,0.004862,0.794918,0.122534,0.5669,0.004517,0.567196,0.121532,0.794622,0.005099,0.684676,0.122529,0.557363,0.004317,0.557682,0.121964,0.685271,0.004985,0.793209,0.122398,0.340454,0.005276,0.340628,0.122106,0.793034,0.998771,0.927054,0.162297,0.998734,0.162118,0.926526,0.998949,0.999262,0.998246,0.927837,0.133282,0.99941,0.13347,0.927365,0.998058,0.999882,0.003412,0.795023,0.122242,0.570718,0.003775,0.570941,0.12188,0.7948,0.122264,0.339711,0.003797,0.339934,0.004173,0.795395,0.122582,0.566445,0.004111,0.566812,0.122645,0.795028,0.500355,0.928348,0.970999,0.999245,0.971331,0.927953,0.500023,0.998839,0.793582,0.672092,0.135372,0.344864,0.415507,0.67293,0.778833,0.344616,0.99841,0.430304,0.435298,0.44406,0.145318,0.601852,0.348856,0.405663,0.346332,0.644244,0.280435,0.600399,0.81261,0.346076,0.141657,0.346868,0.589797,0.639738,0.803953,0.640203,1.0001,0.561458,0.650819,0.577007,0.568735,0.349316,0.134015,0.536057,0.310106,0.656051,0.134517,0.34932,0.81809,0.656048,0.995464,0.349313,0.995465,0.535684]],"faces":[26,0,12,15,0,0,1,2,0,26,6,12,0,0,3,1,0,0,26,1,13,16,0,0,1,2,1,26,7,13,1,0,3,1,0,2,26,2,14,17,0,0,1,2,3,26,8,14,2,0,3,1,0,3,26,12,3,15,0,1,0,2,0,26,9,3,12,0,3,0,1,0,26,13,4,16,0,1,0,2,4,26,10,4,13,0,3,0,1,4,26,14,5,17,0,1,0,2,5,26,11,5,14,0,3,0,1,6,26,6,24,12,0,4,5,6,7,26,18,24,6,0,7,5,4,8,26,7,25,13,0,4,5,6,7,26,19,25,7,0,7,5,4,7,26,8,26,14,0,4,5,6,8,26,20,26,8,0,7,5,4,7,26,24,9,12,0,5,4,6,7,26,21,9,24,0,7,4,5,8,26,25,10,13,0,5,4,6,8,26,22,10,25,0,7,4,5,7,26,26,11,14,0,5,4,6,7,26,23,11,26,0,7,4,5,7,26,18,27,24,0,7,8,5,8,26,19,28,25,0,7,8,5,8,26,20,29,26,0,7,8,5,8,26,30,21,24,0,8,7,5,8,26,31,22,25,0,8,7,5,8,26,32,23,26,0,8,7,5,8,26,33,27,36,0,9,8,10,8,26,24,27,33,0,5,8,9,8,26,34,28,37,0,9,8,10,8,26,25,28,34,0,5,8,9,8,26,35,29,38,0,9,8,10,8,26,26,29,35,0,5,8,9,8,26,30,33,39,0,8,9,10,8,26,24,33,30,0,5,9,8,8,26,31,34,40,0,8,9,10,8,26,25,34,31,0,5,9,8,8,26,32,35,41,0,8,9,10,8,26,26,35,32,0,5,9,8,8,26,18,48,27,0,11,12,13,9,26,42,48,18,0,14,12,11,9,26,19,49,28,0,11,12,13,10,26,43,49,19,0,14,12,11,11,26,20,50,29,0,11,12,13,12,26,44,50,20,0,14,12,11,13,26,51,21,30,0,12,11,13,14,26,45,21,51,0,14,11,12,14,26,52,22,31,0,12,11,13,15,26,46,22,52,0,14,11,12,16,26,53,23,32,0,12,11,13,17,26,47,23,53,0,14,11,12,18,26,54,72,78,0,15,16,17,8,26,55,73,79,0,15,16,17,8,26,56,74,80,0,15,16,17,8,26,75,57,81,0,16,15,17,8,26,76,58,82,0,16,15,17,8,26,77,59,83,0,16,15,17,8,26,72,60,78,0,16,18,17,8,26,66,60,72,0,19,18,16,8,26,73,61,79,0,16,18,17,8,26,67,61,73,0,19,18,16,8,26,74,62,80,0,16,18,17,8,26,68,62,74,0,19,18,16,8,26,63,75,81,0,18,16,17,8,26,69,75,63,0,19,16,18,8,26,64,76,82,0,18,16,17,8,26,70,76,64,0,19,16,18,8,26,65,77,83,0,18,16,17,8,26,71,77,65,0,19,16,18,8,26,72,84,66,0,16,20,19,8,26,90,84,72,0,21,20,16,8,26,73,85,67,0,16,20,19,8,26,91,85,73,0,21,20,16,8,26,74,86,68,0,16,20,19,8,26,92,86,74,0,21,20,16,8,26,87,75,69,0,20,16,19,8,26,93,75,87,0,21,16,20,8,26,88,76,70,0,20,16,19,8,26,94,76,88,0,21,16,20,8,26,89,77,71,0,20,16,19,8,26,95,77,89,0,21,16,20,8,26,84,102,66,0,20,22,19,8,26,96,102,84,0,23,22,20,7,26,85,103,67,0,20,22,19,7,26,97,103,85,0,23,22,20,8,26,86,104,68,0,20,22,19,8,26,98,104,86,0,23,22,20,8,26,105,87,69,0,22,20,19,8,26,99,87,105,0,23,20,22,8,26,106,88,70,0,22,20,19,8,26,100,88,106,0,23,20,22,8,26,107,89,71,0,22,20,19,8,26,101,89,107,0,23,20,22,8,26,84,90,96,0,24,25,26,8,26,85,91,97,0,24,25,26,7,26,86,92,98,0,24,25,26,8,26,93,87,99,0,25,24,26,8,26,94,88,100,0,25,24,26,8,26,95,89,101,0,25,24,26,7,26,90,114,96,0,25,27,26,8,26,108,114,90,0,28,27,25,8,26,91,115,97,0,25,27,26,8,26,109,115,91,0,28,27,25,8,26,92,116,98,0,25,27,26,8,26,110,116,92,0,28,27,25,8,26,117,93,99,0,27,25,26,8,26,111,93,117,0,28,25,27,8,26,118,94,100,0,27,25,26,8,26,112,94,118,0,28,25,27,8,26,119,95,101,0,27,25,26,8,26,113,95,119,0,28,25,27,8,26,15,126,0,0,29,30,31,7,26,16,127,1,0,29,30,31,8,26,17,128,2,0,29,30,31,7,26,126,15,3,0,30,29,31,7,26,127,16,4,0,30,29,31,7,26,128,17,5,0,30,29,31,8,26,0,120,129,0,31,32,33,8,26,126,120,0,0,30,32,31,8,26,1,121,130,0,31,32,33,8,26,127,121,1,0,30,32,31,8,26,2,122,131,0,31,32,33,8,26,128,122,2,0,30,32,31,8,26,123,3,132,0,32,31,33,8,26,126,3,123,0,30,31,32,8,26,124,4,133,0,32,31,33,8,26,127,4,124,0,30,31,32,8,26,125,5,134,0,32,31,33,8,26,128,5,125,0,30,31,32,8,26,237,243,141,0,34,35,36,19,26,249,243,237,0,37,35,34,20,26,238,244,142,0,34,35,36,21,26,250,244,238,0,37,35,34,22,26,239,245,143,0,34,35,36,23,26,251,245,239,0,37,35,34,24,26,246,240,144,0,35,34,36,25,26,252,240,246,0,37,34,35,26,26,247,241,145,0,35,34,36,27,26,253,241,247,0,37,34,35,28,26,248,242,146,0,35,34,36,29,26,254,242,248,0,37,34,35,30,26,234,255,228,0,38,39,40,31,26,264,255,234,0,41,39,38,32,26,235,256,229,0,38,39,40,33,26,265,256,235,0,41,39,38,34,26,236,257,230,0,38,39,40,35,26,266,257,236,0,41,39,38,36,26,258,234,231,0,39,38,40,37,26,264,234,258,0,41,38,39,38,26,259,235,232,0,39,38,40,39,26,265,235,259,0,41,38,39,40,26,260,236,233,0,39,38,40,41,26,266,236,260,0,41,38,39,42,26,204,273,222,0,42,43,44,43,26,267,273,204,0,45,43,42,44,26,205,274,223,0,42,43,44,45,26,268,274,205,0,45,43,42,46,26,206,275,224,0,42,43,44,47,26,269,275,206,0,45,43,42,48,26,276,207,225,0,43,42,44,49,26,270,207,276,0,45,42,43,50,26,277,208,226,0,43,42,44,51,26,271,208,277,0,45,42,43,52,26,278,209,227,0,43,42,44,53,26,272,209,278,0,45,42,43,54,26,222,279,216,0,46,47,48,55,26,273,279,222,0,49,47,46,56,26,223,280,217,0,46,47,48,57,26,274,280,223,0,49,47,46,58,26,224,281,218,0,46,47,48,59,26,275,281,224,0,49,47,46,60,26,282,225,219,0,47,46,48,61,26,276,225,282,0,49,46,47,62,26,283,226,220,0,47,46,48,63,26,277,226,283,0,49,46,47,64,26,284,227,221,0,47,46,48,65,26,278,227,284,0,49,46,47,66,26,210,297,180,0,50,51,52,67,26,291,297,210,0,53,51,50,68,26,211,298,181,0,50,51,52,69,26,292,298,211,0,53,51,50,70,26,212,299,182,0,50,51,52,71,26,293,299,212,0,53,51,50,72,26,300,213,183,0,51,50,52,73,26,294,213,300,0,53,50,51,74,26,301,214,184,0,51,50,52,75,26,295,214,301,0,53,50,51,76,26,302,215,185,0,51,50,52,77,26,296,215,302,0,53,50,51,78,26,198,267,204,0,54,55,56,79,26,303,267,198,0,57,55,54,80,26,199,268,205,0,54,55,56,81,26,304,268,199,0,57,55,54,82,26,200,269,206,0,54,55,56,83,26,305,269,200,0,57,55,54,84,26,270,201,207,0,55,54,56,85,26,306,201,270,0,57,54,55,86,26,271,202,208,0,55,54,56,87,26,307,202,271,0,57,54,55,88,26,272,203,209,0,55,54,56,89,26,308,203,272,0,57,54,55,90,26,192,303,198,0,58,59,60,91,26,315,303,192,0,61,59,58,92,26,193,304,199,0,58,59,60,93,26,316,304,193,0,61,59,58,94,26,194,305,200,0,58,59,60,95,26,317,305,194,0,61,59,58,96,26,306,195,201,0,59,58,60,91,26,318,195,306,0,61,58,59,97,26,307,196,202,0,59,58,60,98,26,319,196,307,0,61,58,59,99,26,308,197,203,0,59,58,60,100,26,320,197,308,0,61,58,59,101,26,180,321,186,0,62,63,64,102,26,297,321,180,0,65,63,62,102,26,181,322,187,0,62,63,64,103,26,298,322,181,0,65,63,62,104,26,182,323,188,0,62,63,64,105,26,299,323,182,0,65,63,62,106,26,324,183,189,0,63,62,64,102,26,300,183,324,0,65,62,63,102,26,325,184,190,0,63,62,64,107,26,301,184,325,0,65,62,63,108,26,326,185,191,0,63,62,64,109,26,302,185,326,0,65,62,63,110,26,147,327,174,0,66,67,68,111,26,333,327,147,0,69,67,66,112,26,148,328,175,0,66,67,68,113,26,334,328,148,0,69,67,66,114,26,149,329,176,0,66,67,68,115,26,335,329,149,0,69,67,66,116,26,330,150,177,0,67,66,68,117,26,336,150,330,0,69,66,67,118,26,331,151,178,0,67,66,68,119,26,337,151,331,0,69,66,67,120,26,332,152,179,0,67,66,68,121,26,338,152,332,0,69,66,67,122,26,168,345,162,0,70,71,72,102,26,339,345,168,0,73,71,70,123,26,169,346,163,0,70,71,72,124,26,340,346,169,0,73,71,70,125,26,170,347,164,0,70,71,72,126,26,341,347,170,0,73,71,70,127,26,348,171,165,0,71,70,72,102,26,342,171,348,0,73,70,71,102,26,349,172,166,0,71,70,72,128,26,343,172,349,0,73,70,71,129,26,350,173,167,0,71,70,72,130,26,344,173,350,0,73,70,71,131,26,162,351,156,0,74,75,76,132,26,345,351,162,0,77,75,74,133,26,163,352,157,0,74,75,76,134,26,346,352,163,0,77,75,74,135,26,164,353,158,0,74,75,76,136,26,347,353,164,0,77,75,74,137,26,354,165,159,0,75,74,76,138,26,348,165,354,0,77,74,75,139,26,355,166,160,0,75,74,76,140,26,349,166,355,0,77,74,75,141,26,356,167,161,0,75,74,76,142,26,350,167,356,0,77,74,75,143,26,156,357,153,0,76,78,79,102,26,351,357,156,0,75,78,76,102,26,157,358,154,0,76,78,79,144,26,352,358,157,0,75,78,76,145,26,158,359,155,0,76,78,79,146,26,353,359,158,0,75,78,76,147,26,357,159,153,0,78,76,79,102,26,354,159,357,0,75,76,78,102,26,358,160,154,0,78,76,79,148,26,355,160,358,0,75,76,78,149,26,359,161,155,0,78,76,79,150,26,356,161,359,0,75,76,78,151,26,135,333,147,0,80,81,82,152,26,366,333,135,0,83,81,80,153,26,136,334,148,0,80,81,82,154,26,367,334,136,0,83,81,80,155,26,137,335,149,0,80,81,82,156,26,368,335,137,0,83,81,80,157,26,336,138,150,0,81,80,82,158,26,369,138,336,0,83,80,81,159,26,337,139,151,0,81,80,82,160,26,370,139,337,0,83,80,81,161,26,338,140,152,0,81,80,82,162,26,371,140,338,0,83,80,81,163,26,141,366,135,0,84,85,86,164,26,243,366,141,0,87,85,84,165,26,142,367,136,0,84,85,86,166,26,244,367,142,0,87,85,84,167,26,143,368,137,0,84,85,86,168,26,245,368,143,0,87,85,84,169,26,369,144,138,0,85,84,86,170,26,246,144,369,0,87,84,85,171,26,370,145,139,0,85,84,86,172,26,247,145,370,0,87,84,85,173,26,371,146,140,0,85,84,86,174,26,248,146,371,0,87,84,85,175,26,264,249,255,0,88,89,90,176,26,243,249,264,0,91,89,88,177,26,265,250,256,0,88,89,90,176,26,244,250,265,0,91,89,88,176,26,266,251,257,0,88,89,90,176,26,245,251,266,0,91,89,88,176,26,252,264,258,0,89,88,90,176,26,246,264,252,0,91,88,89,177,26,253,265,259,0,89,88,90,176,26,247,265,253,0,91,88,89,176,26,254,266,260,0,89,88,90,176,26,248,266,254,0,91,88,89,177,26,264,261,243,0,88,92,91,176,26,265,262,244,0,88,92,91,176,26,266,263,245,0,88,92,91,176,26,261,264,246,0,92,88,91,176,26,262,265,247,0,92,88,91,176,26,263,266,248,0,92,88,91,176,26,273,285,279,0,93,94,95,176,26,267,285,273,0,96,94,93,176,26,274,286,280,0,93,94,95,176,26,268,286,274,0,96,94,93,176,26,275,287,281,0,93,94,95,176,26,269,287,275,0,96,94,93,176,26,288,276,282,0,94,93,95,176,26,270,276,288,0,96,93,94,176,26,289,277,283,0,94,93,95,176,26,271,277,289,0,96,93,94,177,26,290,278,284,0,94,93,95,176,26,272,278,290,0,96,93,94,177,26,267,375,285,0,96,97,94,176,26,268,376,286,0,96,97,94,176,26,269,377,287,0,96,97,94,176,26,378,270,288,0,97,96,94,176,26,379,271,289,0,97,96,94,176,26,380,272,290,0,97,96,94,176,26,285,297,291,0,94,98,99,176,26,375,297,285,0,97,98,94,176,26,286,298,292,0,94,98,99,176,26,376,298,286,0,97,98,94,176,26,287,299,293,0,94,98,99,176,26,377,299,287,0,97,98,94,176,26,300,288,294,0,98,94,99,176,26,378,288,300,0,97,94,98,176,26,301,289,295,0,98,94,99,176,26,379,289,301,0,97,94,98,176,26,302,290,296,0,98,94,99,176,26,380,290,302,0,97,94,98,177,26,267,297,375,0,96,98,97,176,26,303,297,267,0,100,98,96,176,26,268,298,376,0,96,98,97,176,26,304,298,268,0,100,98,96,176,26,269,299,377,0,96,98,97,176,26,305,299,269,0,100,98,96,176,26,300,270,378,0,98,96,97,176,26,306,270,300,0,100,96,98,176,26,301,271,379,0,98,96,97,176,26,307,271,301,0,100,96,98,176,26,302,272,380,0,98,96,97,176,26,308,272,302,0,100,96,98,176,26,297,309,321,0,98,101,102,177,26,303,309,297,0,100,101,98,176,26,298,310,322,0,98,101,102,177,26,304,310,298,0,100,101,98,176,26,299,311,323,0,98,101,102,176,26,305,311,299,0,100,101,98,177,26,312,300,324,0,101,98,102,177,26,306,300,312,0,100,98,101,177,26,313,301,325,0,101,98,102,177,26,307,301,313,0,100,98,101,177,26,314,302,326,0,101,98,102,177,26,308,302,314,0,100,98,101,176,26,303,315,309,0,100,103,101,176,26,304,316,310,0,100,103,101,177,26,305,317,311,0,100,103,101,176,26,318,306,312,0,103,100,101,176,26,319,307,313,0,103,100,101,176,26,320,308,314,0,103,100,101,176,26,327,345,339,0,11,12,13,178,26,333,345,327,0,14,12,11,178,26,328,346,340,0,11,12,13,179,26,334,346,328,0,14,12,11,180,26,329,347,341,0,11,12,13,181,26,335,347,329,0,14,12,11,182,26,348,330,342,0,12,11,13,183,26,336,330,348,0,14,11,12,183,26,349,331,343,0,12,11,13,184,26,337,331,349,0,14,11,12,185,26,350,332,344,0,12,11,13,186,26,338,332,350,0,14,11,12,187,26,360,351,345,0,104,105,106,176,26,357,351,360,0,107,105,104,176,26,361,352,346,0,104,105,106,176,26,358,352,361,0,107,105,104,176,26,362,353,347,0,104,105,106,176,26,359,353,362,0,107,105,104,176,26,354,363,348,0,105,104,106,176,26,357,363,354,0,107,104,105,176,26,355,364,349,0,105,104,106,176,26,358,364,355,0,107,104,105,176,26,356,365,350,0,105,104,106,176,26,359,365,356,0,107,104,105,176,26,345,333,360,0,106,108,104,176,26,346,334,361,0,106,108,104,177,26,347,335,362,0,106,108,104,176,26,336,348,363,0,108,106,104,176,26,337,349,364,0,108,106,104,176,26,338,350,365,0,108,106,104,177,26,333,372,360,0,108,109,104,177,26,366,372,333,0,110,109,108,176,26,334,373,361,0,108,109,104,176,26,367,373,334,0,110,109,108,176,26,335,374,362,0,108,109,104,176,26,368,374,335,0,110,109,108,176,26,372,336,363,0,109,108,104,177,26,369,336,372,0,110,108,109,176,26,373,337,364,0,109,108,104,176,26,370,337,373,0,110,108,109,176,26,374,338,365,0,109,108,104,176,26,371,338,374,0,110,108,109,176,26,366,261,372,0,0,1,2,188,26,243,261,366,0,3,1,0,188,26,367,262,373,0,0,1,2,189,26,244,262,367,0,3,1,0,190,26,368,263,374,0,0,1,2,191,26,245,263,368,0,3,1,0,192,26,261,369,372,0,1,0,2,188,26,246,369,261,0,3,0,1,188,26,262,370,373,0,1,0,2,193,26,247,370,262,0,3,0,1,194,26,263,371,374,0,1,0,2,195,26,248,371,263,0,3,0,1,196]}}],"materials":[{"uuid":"429FD17C-8503-41E0-8BE1-E2A3557EBAEA","type":"MeshBasicMaterial","color":16777215,"map":"83A1487F-47DE-41D3-93FA-2888918537FB","depthFunc":3,"depthTest":true,"depthWrite":true}],"textures":[{"uuid":"83A1487F-47DE-41D3-93FA-2888918537FB","name":"","mapping":300,"repeat":[1,1],"offset":[0,0],"center":[0,0],"rotation":0,"wrap":[1001,1001],"format":1022,"minFilter":1006,"magFilter":1006,"anisotropy":16,"flipY":true,"image":"AFBBF4FE-9FFD-4E8F-8429-B5B246384CDB"}],"images":[{"uuid":"AFBBF4FE-9FFD-4E8F-8429-B5B246384CDB","url":"platform.jpg"}],"object":{"uuid":"1CACBA2F-911F-411C-925B-9708211AA9D8","type":"Mesh","name":"platform","layers":1,"matrix":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],"geometry":"023B57F0-404F-4673-8855-9FFC5C87F8DA","material":"429FD17C-8503-41E0-8BE1-E2A3557EBAEA"}} diff --git a/examples/models/platform/platform.json b/examples/models/platform/platform.json deleted file mode 100644 index eee956a27fc731..00000000000000 --- a/examples/models/platform/platform.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "metadata": { - "version": 4, - "type": "geometry" - }, - "vertices": [2.78,0,-8.67,6.12,0,6.74,-8.9,0,1.93,-2.78,0,-8.67,8.9,0,1.93,-6.12,0,6.74,2.78,2.8,-14.65,11.3,2.8,9.73,-14.08,2.8,4.92,-2.78,2.8,-14.65,14.08,2.8,4.92,-11.3,2.8,9.73,0,2.8,-14.65,12.69,2.8,7.32,-12.69,2.8,7.32,0,0,-8.67,7.51,0,4.33,-7.51,0,4.33,4.58,2.8,-16.45,11.95,2.8,12.19,-16.53,2.8,4.26,-4.58,2.8,-16.45,16.53,2.8,4.26,-11.95,2.8,12.19,0,2.8,-18.97,16.43,2.8,9.49,-16.43,2.8,9.49,4.58,2.8,-21.59,16.41,2.8,14.76,-20.99,2.8,6.83,-4.58,2.8,-21.59,20.99,2.8,6.83,-16.41,2.8,14.76,0,2.8,-23.37,20.24,2.8,11.68,-20.24,2.8,11.68,2.79,2.8,-23.37,18.85,2.8,14.1,-21.63,2.8,9.27,-2.79,2.8,-23.37,21.63,2.8,9.27,-18.85,2.8,14.1,16.03,7.6,-16.45,6.23,7.6,22.1,-22.26,7.6,-5.66,-16.03,7.6,-16.45,22.26,7.6,-5.66,-6.23,7.6,22.1,16.03,7.6,-21.59,10.68,7.6,24.68,-26.71,7.6,-3.09,-16.03,7.6,-21.59,26.71,7.6,-3.09,-10.68,7.6,24.68,16.03,7.6,-16.45,6.23,7.6,22.11,-22.26,7.6,-5.66,-16.03,7.6,-16.45,22.26,7.6,-5.66,-6.23,7.6,22.11,16.03,7.6,-21.59,10.68,7.6,24.68,-26.71,7.6,-3.09,-16.03,7.6,-21.59,26.71,7.6,-3.09,-10.68,7.6,24.68,20.64,7.6,-21.59,8.38,7.6,28.67,-29.01,7.6,-7.08,-20.64,7.6,-21.59,29.01,7.6,-7.08,-8.38,7.6,28.67,17.4,7.6,-16.45,5.54,7.6,23.29,-22.94,7.6,-6.85,-17.4,7.6,-16.45,22.94,7.6,-6.85,-5.54,7.6,23.29,16.03,7.6,-18.74,8.22,7.6,23.26,-24.25,7.6,-4.51,-16.03,7.6,-18.74,24.25,7.6,-4.51,-8.22,7.6,23.26,19.99,7.6,-13.49,1.69,7.6,24.06,-21.68,7.6,-10.57,-19.99,7.6,-13.49,21.68,7.6,-10.57,-1.69,7.6,24.06,18.88,7.6,-13.79,2.5,7.6,23.24,-21.38,7.6,-9.46,-18.88,7.6,-13.79,21.38,7.6,-9.46,-2.5,7.6,23.24,20.83,7.6,-12.02,0,7.6,24.05,-20.83,7.6,-12.03,-20.83,7.6,-12.02,20.83,7.6,-12.03,0,7.6,24.05,24.89,7.6,-14.37,0,7.6,28.74,-24.89,7.6,-14.37,-24.89,7.6,-14.37,24.89,7.6,-14.37,0,7.6,28.74,16.32,7.6,-10.91,1.29,7.6,19.59,-17.61,7.6,-8.68,-16.32,7.6,-10.91,17.61,7.6,-8.68,-1.29,7.6,19.59,17,7.6,-9.82,0,7.6,19.63,-17,7.6,-9.82,-17,7.6,-9.82,17,7.6,-9.82,0,7.6,19.63,3.59,0,-2.07,0,0,4.15,-3.59,0,-2.07,-3.59,0,-2.07,3.59,0,-2.07,0,0,4.15,0,0,-4.15,3.6,0,2.08,-3.6,0,2.08,8.9,0,-5.14,0,0,10.28,-8.9,0,-5.14,-8.9,0,-5.14,8.9,0,-5.14,0,0,10.28,2.78,2.8,-14.65,11.3,2.8,9.73,-14.08,2.8,4.92,-2.78,2.8,-14.65,14.08,2.8,4.92,-11.3,2.8,9.73,2.78,0,-8.67,6.12,0,6.74,-8.9,0,1.93,-2.78,0,-8.67,8.9,0,1.93,-6.12,0,6.74,4.58,2.8,-16.45,11.95,2.8,12.19,-16.53,2.8,4.26,-4.58,2.8,-16.45,16.53,2.8,4.26,-11.95,2.8,12.19,0,2.8,-23.37,20.24,2.8,11.68,-20.24,2.8,11.68,2.79,2.8,-23.37,18.85,2.8,14.1,-21.63,2.8,9.27,-2.79,2.8,-23.37,21.63,2.8,9.27,-18.85,2.8,14.1,4.58,2.8,-21.59,16.41,2.8,14.76,-20.99,2.8,6.83,-4.58,2.8,-21.59,20.99,2.8,6.83,-16.41,2.8,14.76,16.03,7.6,-21.59,10.68,7.6,24.68,-26.71,7.6,-3.09,-16.03,7.6,-21.59,26.71,7.6,-3.09,-10.68,7.6,24.68,16.03,7.6,-16.45,6.23,7.6,22.1,-22.26,7.6,-5.66,-16.03,7.6,-16.45,22.26,7.6,-5.66,-6.23,7.6,22.1,20.64,7.6,-21.59,8.38,7.6,28.67,-29.01,7.6,-7.08,-20.64,7.6,-21.59,29.01,7.6,-7.08,-8.38,7.6,28.67,16.03,7.6,-21.59,10.68,7.6,24.68,-26.71,7.6,-3.09,-16.03,7.6,-21.59,26.71,7.6,-3.09,-10.68,7.6,24.68,16.03,7.6,-16.45,6.23,7.6,22.11,-22.26,7.6,-5.66,-16.03,7.6,-16.45,22.26,7.6,-5.66,-6.23,7.6,22.11,17.4,7.6,-16.45,5.54,7.6,23.29,-22.94,7.6,-6.85,-17.4,7.6,-16.45,22.94,7.6,-6.85,-5.54,7.6,23.29,18.88,7.6,-13.79,2.5,7.6,23.24,-21.38,7.6,-9.46,-18.88,7.6,-13.79,21.38,7.6,-9.46,-2.5,7.6,23.24,24.89,7.6,-14.37,0,7.6,28.74,-24.89,7.6,-14.37,-24.89,7.6,-14.37,24.89,7.6,-14.37,0,7.6,28.74,17,7.6,-9.82,0,7.6,19.63,-17,7.6,-9.82,-17,7.6,-9.82,17,7.6,-9.82,0,7.6,19.63,16.32,7.6,-10.91,1.29,7.6,19.59,-17.61,7.6,-8.68,-16.32,7.6,-10.91,17.61,7.6,-8.68,-1.29,7.6,19.59,3.59,0,-2.07,0,0,4.15,-3.59,0,-2.07,-3.59,0,-2.07,3.59,0,-2.07,0,0,4.15,0,0,-4.15,3.6,0,2.08,-3.6,0,2.08,8.9,0,-5.14,0,0,10.28,-8.9,0,-5.14,-8.9,0,-5.14,8.9,0,-5.14,0,0,10.28,2.81,-0.85,-8.67,6.1,-0.85,6.76,-8.91,-0.85,1.9,-2.81,-0.85,-8.67,8.91,-0.85,1.9,-6.1,-0.85,6.76,8.93,-0.85,-5.14,-0.01,-0.85,10.3,-8.92,-0.85,-5.16,-8.93,-0.85,-5.14,8.92,-0.85,-5.16,0.01,-0.85,10.3,3.62,-0.85,-2.07,-0.01,-0.85,4.17,-3.6,-0.85,-2.1,-3.62,-0.85,-2.07,3.6,-0.85,-2.1,0.01,-0.85,4.17,0,-0.85,-8.67,7.5,-0.85,4.33,-7.5,-0.85,4.33,0,-0.85,-4.15,3.6,-0.85,2.08,-3.6,-0.85,2.08,18.9,6.75,-13.79,2.49,6.75,23.26,-21.39,6.75,-9.48,-18.9,6.75,-13.79,21.39,6.75,-9.48,-2.49,6.75,23.26,16.35,6.75,-10.91,1.28,6.75,19.61,-17.62,6.75,-8.7,-16.35,6.75,-10.91,17.62,6.75,-8.7,-1.28,6.75,19.61,17.03,6.75,-9.83,0,6.75,19.66,-17.03,6.75,-9.83,-17.03,6.75,-9.83,17.03,6.75,-9.83,0,6.75,19.66,20.85,6.75,-12.04,0,6.75,24.08,-20.85,6.75,-12.04,-20.85,6.75,-12.04,20.85,6.75,-12.04,0,6.75,24.08,24.91,6.75,-14.38,0,6.75,28.77,-24.91,6.75,-14.38,-24.91,6.75,-14.38,24.91,6.75,-14.38,0,6.75,28.77,20.66,6.75,-21.59,8.36,6.75,28.69,-29.03,6.75,-7.1,-20.66,6.75,-21.59,29.03,6.75,-7.1,-8.36,6.75,28.69,17.43,6.75,-16.44,5.53,6.75,23.31,-22.95,6.75,-6.87,-17.43,6.75,-16.44,22.95,6.75,-6.87,-5.53,6.75,23.31,16.06,6.75,-18.74,8.2,6.75,23.28,-24.26,6.75,-4.54,-16.06,6.75,-18.74,24.26,6.75,-4.54,-8.2,6.75,23.28,16.06,6.75,-16.44,6.21,6.75,22.13,-22.27,6.75,-5.68,-16.06,6.75,-16.44,22.27,6.75,-5.68,-6.21,6.75,22.13,16.06,6.75,-21.59,10.67,6.75,24.7,-26.72,6.75,-3.11,-16.06,6.75,-21.59,26.72,6.75,-3.11,-10.67,6.75,24.7,16.06,6.75,-16.44,6.21,6.75,22.13,-22.27,6.75,-5.68,-16.06,6.75,-16.44,22.27,6.75,-5.68,-6.21,6.75,22.13,4.6,1.95,-16.44,11.94,1.95,12.21,-16.54,1.95,4.24,-4.6,1.95,-16.44,16.54,1.95,4.24,-11.94,1.95,12.21,16.06,6.75,-21.59,10.67,6.75,24.7,-26.72,6.75,-3.11,-16.06,6.75,-21.59,26.72,6.75,-3.11,-10.67,6.75,24.7,4.6,1.95,-21.59,16.39,1.95,14.78,-21,1.95,6.81,-4.6,1.95,-21.59,21,1.95,6.81,-16.39,1.95,14.78,2.81,1.95,-23.37,18.83,1.95,14.12,-21.65,1.95,9.25,-2.81,1.95,-23.37,21.65,1.95,9.25,-18.83,1.95,14.12,0,1.95,-23.37,20.23,1.95,11.68,-20.23,1.95,11.68,0,1.95,-18.97,16.43,1.95,9.49,-16.43,1.95,9.48,0,1.95,-18.97,16.43,1.95,9.48,-16.43,1.95,9.49,2.81,1.95,-14.65,11.28,1.95,9.75,-14.09,1.95,4.89,-2.81,1.95,-14.65,14.09,1.95,4.89,-11.28,1.95,9.75,0,1.95,-14.65,12.69,1.95,7.32,-12.69,1.95,7.32,20.02,6.75,-13.49,1.67,6.75,24.08,-21.69,6.75,-10.59,-20.02,6.75,-13.49,21.69,6.75,-10.59,-1.67,6.75,24.08], - "uvs": [[0.007544,0.336649,0.749592,0.170358,0.006326,0.171122,0.750809,0.335884,0.144602,0.54169,0.560668,0.358683,0.143734,0.359599,0.318466,0.658909,0.81479,0.657819,0.984918,0.357752,0.986279,0.540201,0.003455,0.335026,0.996032,0.00243,0.002592,0.00243,0.996894,0.335026,0.492694,0.573781,0.548034,0.637342,0.335213,0.637987,0.140199,0.559941,0.326277,0.345848,0.855424,0.598001,0.78998,0.641537,0.993052,0.346056,0.989689,0.599244,0.843989,0.781591,0.745574,0.714764,0.843162,0.920011,0.309465,0.919927,0.304178,0.814147,0.153419,0.437245,0.349552,0.667112,0.362164,0.355232,0.709627,0.667198,0.974985,0.354255,0.003064,0.94063,0.122096,0.3414,0.003193,0.341511,0.121967,0.940363,0.003319,0.795986,0.122431,0.451794,0.003616,0.452352,0.122134,0.796857,0.003647,0.685438,0.12223,0.339336,0.003839,0.339481,0.122728,0.685409,0.004466,0.687038,0.123262,0.56705,0.00372,0.566846,0.122929,0.687242,0.005123,0.997825,0.123437,0.338751,0.004869,0.338817,0.123691,0.997759,0.004862,0.794918,0.122534,0.5669,0.004517,0.567196,0.121532,0.794622,0.005099,0.684676,0.122529,0.557363,0.004317,0.557682,0.121964,0.685271,0.004985,0.793209,0.122398,0.340454,0.005276,0.340628,0.122106,0.793034,0.998771,0.927054,0.162297,0.998734,0.162118,0.926526,0.998949,0.999262,0.998246,0.927837,0.133282,0.99941,0.13347,0.927365,0.998058,0.999882,0.003412,0.795023,0.122242,0.570718,0.003775,0.570941,0.12188,0.7948,0.122264,0.339711,0.003797,0.339934,0.004173,0.795395,0.122582,0.566445,0.004111,0.566812,0.122645,0.795028,0.500355,0.928348,0.970999,0.999245,0.971331,0.927953,0.500023,0.998839,0.793582,0.672092,0.135372,0.344864,0.415507,0.67293,0.778833,0.344616,0.99841,0.430304,0.435298,0.44406,0.145318,0.601852,0.348856,0.405663,0.346332,0.644244,0.280435,0.600399,0.81261,0.346076,0.141657,0.346868,0.589797,0.639738,0.803953,0.640203,1.0001,0.561458,0.650819,0.577007,0.568735,0.349316,0.134015,0.536057,0.310106,0.656051,0.134517,0.34932,0.81809,0.656048,0.995464,0.349313,0.995465,0.535684]], - "faces": [24,0,12,15,0,1,2,0,24,6,12,0,3,1,0,0,24,1,13,16,0,1,2,1,24,7,13,1,3,1,0,2,24,2,14,17,0,1,2,3,24,8,14,2,3,1,0,3,24,12,3,15,1,0,2,0,24,9,3,12,3,0,1,0,24,13,4,16,1,0,2,4,24,10,4,13,3,0,1,4,24,14,5,17,1,0,2,5,24,11,5,14,3,0,1,6,24,6,24,12,4,5,6,7,24,18,24,6,7,5,4,8,24,7,25,13,4,5,6,7,24,19,25,7,7,5,4,7,24,8,26,14,4,5,6,8,24,20,26,8,7,5,4,7,24,24,9,12,5,4,6,7,24,21,9,24,7,4,5,8,24,25,10,13,5,4,6,8,24,22,10,25,7,4,5,7,24,26,11,14,5,4,6,7,24,23,11,26,7,4,5,7,24,18,27,24,7,8,5,8,24,19,28,25,7,8,5,8,24,20,29,26,7,8,5,8,24,30,21,24,8,7,5,8,24,31,22,25,8,7,5,8,24,32,23,26,8,7,5,8,24,33,27,36,9,8,10,8,24,24,27,33,5,8,9,8,24,34,28,37,9,8,10,8,24,25,28,34,5,8,9,8,24,35,29,38,9,8,10,8,24,26,29,35,5,8,9,8,24,30,33,39,8,9,10,8,24,24,33,30,5,9,8,8,24,31,34,40,8,9,10,8,24,25,34,31,5,9,8,8,24,32,35,41,8,9,10,8,24,26,35,32,5,9,8,8,24,18,48,27,11,12,13,9,24,42,48,18,14,12,11,9,24,19,49,28,11,12,13,10,24,43,49,19,14,12,11,11,24,20,50,29,11,12,13,12,24,44,50,20,14,12,11,13,24,51,21,30,12,11,13,14,24,45,21,51,14,11,12,14,24,52,22,31,12,11,13,15,24,46,22,52,14,11,12,16,24,53,23,32,12,11,13,17,24,47,23,53,14,11,12,18,24,54,72,78,15,16,17,8,24,55,73,79,15,16,17,8,24,56,74,80,15,16,17,8,24,75,57,81,16,15,17,8,24,76,58,82,16,15,17,8,24,77,59,83,16,15,17,8,24,72,60,78,16,18,17,8,24,66,60,72,19,18,16,8,24,73,61,79,16,18,17,8,24,67,61,73,19,18,16,8,24,74,62,80,16,18,17,8,24,68,62,74,19,18,16,8,24,63,75,81,18,16,17,8,24,69,75,63,19,16,18,8,24,64,76,82,18,16,17,8,24,70,76,64,19,16,18,8,24,65,77,83,18,16,17,8,24,71,77,65,19,16,18,8,24,72,84,66,16,20,19,8,24,90,84,72,21,20,16,8,24,73,85,67,16,20,19,8,24,91,85,73,21,20,16,8,24,74,86,68,16,20,19,8,24,92,86,74,21,20,16,8,24,87,75,69,20,16,19,8,24,93,75,87,21,16,20,8,24,88,76,70,20,16,19,8,24,94,76,88,21,16,20,8,24,89,77,71,20,16,19,8,24,95,77,89,21,16,20,8,24,84,102,66,20,22,19,8,24,96,102,84,23,22,20,7,24,85,103,67,20,22,19,7,24,97,103,85,23,22,20,8,24,86,104,68,20,22,19,8,24,98,104,86,23,22,20,8,24,105,87,69,22,20,19,8,24,99,87,105,23,20,22,8,24,106,88,70,22,20,19,8,24,100,88,106,23,20,22,8,24,107,89,71,22,20,19,8,24,101,89,107,23,20,22,8,24,84,90,96,24,25,26,8,24,85,91,97,24,25,26,7,24,86,92,98,24,25,26,8,24,93,87,99,25,24,26,8,24,94,88,100,25,24,26,8,24,95,89,101,25,24,26,7,24,90,114,96,25,27,26,8,24,108,114,90,28,27,25,8,24,91,115,97,25,27,26,8,24,109,115,91,28,27,25,8,24,92,116,98,25,27,26,8,24,110,116,92,28,27,25,8,24,117,93,99,27,25,26,8,24,111,93,117,28,25,27,8,24,118,94,100,27,25,26,8,24,112,94,118,28,25,27,8,24,119,95,101,27,25,26,8,24,113,95,119,28,25,27,8,24,15,126,0,29,30,31,7,24,16,127,1,29,30,31,8,24,17,128,2,29,30,31,7,24,126,15,3,30,29,31,7,24,127,16,4,30,29,31,7,24,128,17,5,30,29,31,8,24,0,120,129,31,32,33,8,24,126,120,0,30,32,31,8,24,1,121,130,31,32,33,8,24,127,121,1,30,32,31,8,24,2,122,131,31,32,33,8,24,128,122,2,30,32,31,8,24,123,3,132,32,31,33,8,24,126,3,123,30,31,32,8,24,124,4,133,32,31,33,8,24,127,4,124,30,31,32,8,24,125,5,134,32,31,33,8,24,128,5,125,30,31,32,8,24,237,243,141,34,35,36,19,24,249,243,237,37,35,34,20,24,238,244,142,34,35,36,21,24,250,244,238,37,35,34,22,24,239,245,143,34,35,36,23,24,251,245,239,37,35,34,24,24,246,240,144,35,34,36,25,24,252,240,246,37,34,35,26,24,247,241,145,35,34,36,27,24,253,241,247,37,34,35,28,24,248,242,146,35,34,36,29,24,254,242,248,37,34,35,30,24,234,255,228,38,39,40,31,24,264,255,234,41,39,38,32,24,235,256,229,38,39,40,33,24,265,256,235,41,39,38,34,24,236,257,230,38,39,40,35,24,266,257,236,41,39,38,36,24,258,234,231,39,38,40,37,24,264,234,258,41,38,39,38,24,259,235,232,39,38,40,39,24,265,235,259,41,38,39,40,24,260,236,233,39,38,40,41,24,266,236,260,41,38,39,42,24,204,273,222,42,43,44,43,24,267,273,204,45,43,42,44,24,205,274,223,42,43,44,45,24,268,274,205,45,43,42,46,24,206,275,224,42,43,44,47,24,269,275,206,45,43,42,48,24,276,207,225,43,42,44,49,24,270,207,276,45,42,43,50,24,277,208,226,43,42,44,51,24,271,208,277,45,42,43,52,24,278,209,227,43,42,44,53,24,272,209,278,45,42,43,54,24,222,279,216,46,47,48,55,24,273,279,222,49,47,46,56,24,223,280,217,46,47,48,57,24,274,280,223,49,47,46,58,24,224,281,218,46,47,48,59,24,275,281,224,49,47,46,60,24,282,225,219,47,46,48,61,24,276,225,282,49,46,47,62,24,283,226,220,47,46,48,63,24,277,226,283,49,46,47,64,24,284,227,221,47,46,48,65,24,278,227,284,49,46,47,66,24,210,297,180,50,51,52,67,24,291,297,210,53,51,50,68,24,211,298,181,50,51,52,69,24,292,298,211,53,51,50,70,24,212,299,182,50,51,52,71,24,293,299,212,53,51,50,72,24,300,213,183,51,50,52,73,24,294,213,300,53,50,51,74,24,301,214,184,51,50,52,75,24,295,214,301,53,50,51,76,24,302,215,185,51,50,52,77,24,296,215,302,53,50,51,78,24,198,267,204,54,55,56,79,24,303,267,198,57,55,54,80,24,199,268,205,54,55,56,81,24,304,268,199,57,55,54,82,24,200,269,206,54,55,56,83,24,305,269,200,57,55,54,84,24,270,201,207,55,54,56,85,24,306,201,270,57,54,55,86,24,271,202,208,55,54,56,87,24,307,202,271,57,54,55,88,24,272,203,209,55,54,56,89,24,308,203,272,57,54,55,90,24,192,303,198,58,59,60,91,24,315,303,192,61,59,58,92,24,193,304,199,58,59,60,93,24,316,304,193,61,59,58,94,24,194,305,200,58,59,60,95,24,317,305,194,61,59,58,96,24,306,195,201,59,58,60,91,24,318,195,306,61,58,59,97,24,307,196,202,59,58,60,98,24,319,196,307,61,58,59,99,24,308,197,203,59,58,60,100,24,320,197,308,61,58,59,101,24,180,321,186,62,63,64,102,24,297,321,180,65,63,62,102,24,181,322,187,62,63,64,103,24,298,322,181,65,63,62,104,24,182,323,188,62,63,64,105,24,299,323,182,65,63,62,106,24,324,183,189,63,62,64,102,24,300,183,324,65,62,63,102,24,325,184,190,63,62,64,107,24,301,184,325,65,62,63,108,24,326,185,191,63,62,64,109,24,302,185,326,65,62,63,110,24,147,327,174,66,67,68,111,24,333,327,147,69,67,66,112,24,148,328,175,66,67,68,113,24,334,328,148,69,67,66,114,24,149,329,176,66,67,68,115,24,335,329,149,69,67,66,116,24,330,150,177,67,66,68,117,24,336,150,330,69,66,67,118,24,331,151,178,67,66,68,119,24,337,151,331,69,66,67,120,24,332,152,179,67,66,68,121,24,338,152,332,69,66,67,122,24,168,345,162,70,71,72,102,24,339,345,168,73,71,70,123,24,169,346,163,70,71,72,124,24,340,346,169,73,71,70,125,24,170,347,164,70,71,72,126,24,341,347,170,73,71,70,127,24,348,171,165,71,70,72,102,24,342,171,348,73,70,71,102,24,349,172,166,71,70,72,128,24,343,172,349,73,70,71,129,24,350,173,167,71,70,72,130,24,344,173,350,73,70,71,131,24,162,351,156,74,75,76,132,24,345,351,162,77,75,74,133,24,163,352,157,74,75,76,134,24,346,352,163,77,75,74,135,24,164,353,158,74,75,76,136,24,347,353,164,77,75,74,137,24,354,165,159,75,74,76,138,24,348,165,354,77,74,75,139,24,355,166,160,75,74,76,140,24,349,166,355,77,74,75,141,24,356,167,161,75,74,76,142,24,350,167,356,77,74,75,143,24,156,357,153,76,78,79,102,24,351,357,156,75,78,76,102,24,157,358,154,76,78,79,144,24,352,358,157,75,78,76,145,24,158,359,155,76,78,79,146,24,353,359,158,75,78,76,147,24,357,159,153,78,76,79,102,24,354,159,357,75,76,78,102,24,358,160,154,78,76,79,148,24,355,160,358,75,76,78,149,24,359,161,155,78,76,79,150,24,356,161,359,75,76,78,151,24,135,333,147,80,81,82,152,24,366,333,135,83,81,80,153,24,136,334,148,80,81,82,154,24,367,334,136,83,81,80,155,24,137,335,149,80,81,82,156,24,368,335,137,83,81,80,157,24,336,138,150,81,80,82,158,24,369,138,336,83,80,81,159,24,337,139,151,81,80,82,160,24,370,139,337,83,80,81,161,24,338,140,152,81,80,82,162,24,371,140,338,83,80,81,163,24,141,366,135,84,85,86,164,24,243,366,141,87,85,84,165,24,142,367,136,84,85,86,166,24,244,367,142,87,85,84,167,24,143,368,137,84,85,86,168,24,245,368,143,87,85,84,169,24,369,144,138,85,84,86,170,24,246,144,369,87,84,85,171,24,370,145,139,85,84,86,172,24,247,145,370,87,84,85,173,24,371,146,140,85,84,86,174,24,248,146,371,87,84,85,175,24,264,249,255,88,89,90,176,24,243,249,264,91,89,88,177,24,265,250,256,88,89,90,176,24,244,250,265,91,89,88,176,24,266,251,257,88,89,90,176,24,245,251,266,91,89,88,176,24,252,264,258,89,88,90,176,24,246,264,252,91,88,89,177,24,253,265,259,89,88,90,176,24,247,265,253,91,88,89,176,24,254,266,260,89,88,90,176,24,248,266,254,91,88,89,177,24,264,261,243,88,92,91,176,24,265,262,244,88,92,91,176,24,266,263,245,88,92,91,176,24,261,264,246,92,88,91,176,24,262,265,247,92,88,91,176,24,263,266,248,92,88,91,176,24,273,285,279,93,94,95,176,24,267,285,273,96,94,93,176,24,274,286,280,93,94,95,176,24,268,286,274,96,94,93,176,24,275,287,281,93,94,95,176,24,269,287,275,96,94,93,176,24,288,276,282,94,93,95,176,24,270,276,288,96,93,94,176,24,289,277,283,94,93,95,176,24,271,277,289,96,93,94,177,24,290,278,284,94,93,95,176,24,272,278,290,96,93,94,177,24,267,375,285,96,97,94,176,24,268,376,286,96,97,94,176,24,269,377,287,96,97,94,176,24,378,270,288,97,96,94,176,24,379,271,289,97,96,94,176,24,380,272,290,97,96,94,176,24,285,297,291,94,98,99,176,24,375,297,285,97,98,94,176,24,286,298,292,94,98,99,176,24,376,298,286,97,98,94,176,24,287,299,293,94,98,99,176,24,377,299,287,97,98,94,176,24,300,288,294,98,94,99,176,24,378,288,300,97,94,98,176,24,301,289,295,98,94,99,176,24,379,289,301,97,94,98,176,24,302,290,296,98,94,99,176,24,380,290,302,97,94,98,177,24,267,297,375,96,98,97,176,24,303,297,267,100,98,96,176,24,268,298,376,96,98,97,176,24,304,298,268,100,98,96,176,24,269,299,377,96,98,97,176,24,305,299,269,100,98,96,176,24,300,270,378,98,96,97,176,24,306,270,300,100,96,98,176,24,301,271,379,98,96,97,176,24,307,271,301,100,96,98,176,24,302,272,380,98,96,97,176,24,308,272,302,100,96,98,176,24,297,309,321,98,101,102,177,24,303,309,297,100,101,98,176,24,298,310,322,98,101,102,177,24,304,310,298,100,101,98,176,24,299,311,323,98,101,102,176,24,305,311,299,100,101,98,177,24,312,300,324,101,98,102,177,24,306,300,312,100,98,101,177,24,313,301,325,101,98,102,177,24,307,301,313,100,98,101,177,24,314,302,326,101,98,102,177,24,308,302,314,100,98,101,176,24,303,315,309,100,103,101,176,24,304,316,310,100,103,101,177,24,305,317,311,100,103,101,176,24,318,306,312,103,100,101,176,24,319,307,313,103,100,101,176,24,320,308,314,103,100,101,176,24,327,345,339,11,12,13,178,24,333,345,327,14,12,11,178,24,328,346,340,11,12,13,179,24,334,346,328,14,12,11,180,24,329,347,341,11,12,13,181,24,335,347,329,14,12,11,182,24,348,330,342,12,11,13,183,24,336,330,348,14,11,12,183,24,349,331,343,12,11,13,184,24,337,331,349,14,11,12,185,24,350,332,344,12,11,13,186,24,338,332,350,14,11,12,187,24,360,351,345,104,105,106,176,24,357,351,360,107,105,104,176,24,361,352,346,104,105,106,176,24,358,352,361,107,105,104,176,24,362,353,347,104,105,106,176,24,359,353,362,107,105,104,176,24,354,363,348,105,104,106,176,24,357,363,354,107,104,105,176,24,355,364,349,105,104,106,176,24,358,364,355,107,104,105,176,24,356,365,350,105,104,106,176,24,359,365,356,107,104,105,176,24,345,333,360,106,108,104,176,24,346,334,361,106,108,104,177,24,347,335,362,106,108,104,176,24,336,348,363,108,106,104,176,24,337,349,364,108,106,104,176,24,338,350,365,108,106,104,177,24,333,372,360,108,109,104,177,24,366,372,333,110,109,108,176,24,334,373,361,108,109,104,176,24,367,373,334,110,109,108,176,24,335,374,362,108,109,104,176,24,368,374,335,110,109,108,176,24,372,336,363,109,108,104,177,24,369,336,372,110,108,109,176,24,373,337,364,109,108,104,176,24,370,337,373,110,108,109,176,24,374,338,365,109,108,104,176,24,371,338,374,110,108,109,176,24,366,261,372,0,1,2,188,24,243,261,366,3,1,0,188,24,367,262,373,0,1,2,189,24,244,262,367,3,1,0,190,24,368,263,374,0,1,2,191,24,245,263,368,3,1,0,192,24,261,369,372,1,0,2,188,24,246,369,261,3,0,1,188,24,262,370,373,1,0,2,193,24,247,370,262,3,0,1,194,24,263,371,374,1,0,2,195,24,248,371,263,3,0,1,196], - "normals": [] -} \ No newline at end of file diff --git a/examples/models/skinned/UCS/skins/Asian_Male.jpg b/examples/models/skinned/UCS/skins/Asian_Male.jpg deleted file mode 100644 index 2b306fe419d136..00000000000000 Binary files a/examples/models/skinned/UCS/skins/Asian_Male.jpg and /dev/null differ diff --git a/examples/models/skinned/UCS/skins/Black_Female.jpg b/examples/models/skinned/UCS/skins/Black_Female.jpg deleted file mode 100644 index f77d64c1226982..00000000000000 Binary files a/examples/models/skinned/UCS/skins/Black_Female.jpg and /dev/null differ diff --git a/examples/models/skinned/UCS/skins/Caucasion_Female.jpg b/examples/models/skinned/UCS/skins/Caucasion_Female.jpg deleted file mode 100644 index db144106b7b410..00000000000000 Binary files a/examples/models/skinned/UCS/skins/Caucasion_Female.jpg and /dev/null differ diff --git a/examples/models/skinned/UCS/skins/Caucasion_Male.jpg b/examples/models/skinned/UCS/skins/Caucasion_Male.jpg deleted file mode 100644 index 4c92538aa74580..00000000000000 Binary files a/examples/models/skinned/UCS/skins/Caucasion_Male.jpg and /dev/null differ diff --git a/examples/models/skinned/UCS/skins/Highlighted_Muscles.jpg b/examples/models/skinned/UCS/skins/Highlighted_Muscles.jpg deleted file mode 100644 index 0f5f57139f279d..00000000000000 Binary files a/examples/models/skinned/UCS/skins/Highlighted_Muscles.jpg and /dev/null differ diff --git a/examples/models/skinned/UCS/skins/Indian_Male.jpg b/examples/models/skinned/UCS/skins/Indian_Male.jpg deleted file mode 100644 index b6cd60273ada7a..00000000000000 Binary files a/examples/models/skinned/UCS/skins/Indian_Male.jpg and /dev/null differ diff --git a/examples/models/skinned/UCS/umich_ucs.js b/examples/models/skinned/UCS/umich_ucs.js deleted file mode 100644 index 6c25272220bc42..00000000000000 --- a/examples/models/skinned/UCS/umich_ucs.js +++ /dev/null @@ -1,1684 +0,0 @@ -{ - -"metadata": -{ -"sourceFile": "", -"generatedBy": "3ds max ThreeJSExporter", -"formatVersion": 3, -"vertices": 7340, -"normals": 14584, -"colors": 0, -"uvs": 8181, -"triangles": 14584, -"materials": 1 -}, - -"materials": [ -{ -"DbgIndex" : 0, -"DbgName" : "Material #0", -"colorDiffuse" : [0.5880, 0.5880, 0.5880], -"colorSpecular" : [0.9000, 0.9000, 0.9000], -"opacity" : 1.0, -"specularCoef" : 10.0, -"mapDiffuse" : "skins/Caucasion_Male.jpg", -"vertexColors" : false -} - -], - -"vertices": [3.13364,-9.72623,176.129,3.90474,-9.64007,175.921,4.46922,-9.57699,175.353,4.67584,-9.55391,174.577,4.46922,-9.57699,173.802,3.90474,-9.64007,173.234,3.13364,-9.72623,173.026,2.36255,-9.81239,173.234,1.79806,-9.87547,173.802,1.59145,-9.89855,174.577,1.79806,-9.87547,175.353,2.36254,-9.81239,175.921,3.2198,-10.4973,175.921,3.88759,-10.4227,175.741,4.37645,-10.3681,175.249,4.55538,-10.3481,174.577,4.37645,-10.3681,173.905,3.88759,-10.4227,173.414,3.2198,-10.4973,173.234,2.55201,-10.5719,173.414,2.06316,-10.6266,173.905,1.88422,-10.6466,174.577,2.06316,-10.6266,175.249,2.55201,-10.5719,175.741,3.28288,-11.0618,175.353,3.66843,-11.0187,175.249,3.95067,-10.9872,174.965,4.05398,-10.9757,174.577,3.95067,-10.9872,174.189,3.66843,-11.0187,173.905,3.28288,-11.0618,173.802,2.89733,-11.1049,173.905,2.61509,-11.1364,174.189,2.51178,-11.148,174.577,2.61509,-11.1364,174.965,2.89733,-11.1049,175.249,3.30597,-11.2684,174.577,3.07294,-9.09432,175.847,3.70368,-9.02384,175.677,4.16542,-8.97225,175.212,4.33443,-8.95336,174.577,4.16542,-8.97225,173.943,3.70369,-9.02384,173.478,3.07294,-9.09432,173.308,2.4422,-9.1648,173.478,1.98047,-9.21639,173.943,1.81146,-9.23528,174.577,1.98046,-9.21639,175.212,2.4422,-9.1648,175.677,0.667976,-10.3791,165.157,1.13994,-9.90453,165.279,1.00633,-7.07055,165.035,1.55048,-7.07055,165.035,0.799233,-10.3898,166.092,1.20976,-9.9223,166.208,1.00633,-7.07055,166.414,1.55048,-7.08208,166.349,0.799233,-10.7678,165.473,1.57552,-9.99298,165.473,2.03531,-7.07055,165.473,0.799233,-10.7678,165.771,1.57552,-9.99298,165.911,2.03531,-7.07055,165.911,1.00633,-9.08034,165.252,1.55048,-9.08034,165.252,2.03529,-9.2854,165.69,2.03529,-9.2854,166.127,1.55048,-9.09186,166.565,1.00633,-9.08034,166.63,1.55048,-8.07842,166.567,1.00633,-8.06689,166.632,1.00633,-8.06689,165.254,1.55048,-8.06689,165.254,2.0353,-8.15642,165.692,2.0353,-8.15642,166.129,0.0568168,-10.3791,165.15,-0.554342,-10.3791,165.157,-0.892694,-9.08034,165.252,-1.43684,-9.08034,165.252,-1.02631,-9.90453,165.279,0.0568164,-10.5684,166.075,-0.6856,-10.3898,166.092,-0.892695,-9.08034,166.63,0.0568162,-9.08034,166.415,-1.09612,-9.9223,166.208,-1.43685,-9.09186,166.565,-1.46189,-9.99298,165.473,-0.6856,-10.7678,165.473,0.0568167,-10.9632,165.466,-0.6856,-10.7678,165.771,0.0568166,-10.9632,165.761,-1.46189,-9.99298,165.911,-1.92166,-9.2854,165.69,-1.92166,-9.2854,166.127,0.0568168,-9.08034,165.244,0.0568167,-8.06689,165.246,-0.892694,-8.06689,165.254,-1.43684,-8.06689,165.254,-0.892695,-8.06689,166.632,0.0568162,-8.06689,166.417,-1.43685,-8.07842,166.567,-1.92167,-8.15642,165.692,-1.92167,-8.15642,166.129,0.0568168,-7.07055,165.028,-0.892694,-7.07055,165.035,-1.43684,-7.07055,165.035,-0.892695,-7.07055,166.414,0.0568163,-7.07055,166.199,-1.43685,-7.08208,166.349,-1.92168,-7.07055,165.473,-1.92168,-7.07055,165.911,0.0568168,-10.3791,165.15,0.0568168,-10.3837,165.17,1.3532,-12.0965,167.213,2.3729,-11.3342,167.148,2.96403,-10.2243,167.054,3.01525,-8.9758,166.949,1.35319,-12.0422,168.129,2.3729,-11.2799,168.064,2.96403,-10.17,167.97,3.01525,-8.92152,167.865,1.26917,-12.0202,167.152,2.01746,-11.1142,167.106,2.17921,-10.0228,167.037,2.21641,-9.11606,166.961,1.00931,-11.6075,167.794,2.01746,-10.6168,167.747,2.44678,-9.81073,167.679,2.21641,-8.61868,167.602,0.0568158,-12.3676,167.236,-1.23956,-12.0965,167.213,-1.23956,-12.0422,168.129,0.0568153,-12.3133,168.152,-2.25927,-11.3342,167.148,-2.25927,-11.2799,168.064,-2.8504,-10.2243,167.054,-2.8504,-10.17,167.97,-2.90162,-8.9758,166.949,-2.90162,-8.92152,167.865,0.0568158,-12.3017,167.169,0.0568155,-11.8044,167.811,-0.895681,-11.6075,167.794,-1.15554,-12.0202,167.152,-1.90383,-10.6168,167.747,-1.90383,-11.1142,167.106,-2.33315,-9.81073,167.679,-2.06558,-10.0228,167.037,-2.10278,-8.61868,167.602,-2.10278,-9.11606,166.961,-3.12398,-9.72623,176.129,-3.89507,-9.64007,175.921,-4.45956,-9.57699,175.353,-4.66617,-9.55391,174.577,-4.45956,-9.57699,173.802,-3.89507,-9.64007,173.234,-3.12398,-9.72623,173.026,-2.35288,-9.81239,173.234,-1.7884,-9.87547,173.802,-1.58178,-9.89855,174.577,-1.78839,-9.87547,175.353,-2.35288,-9.81239,175.921,-3.21014,-10.4973,175.921,-3.87793,-10.4227,175.741,-4.36678,-10.3681,175.249,-4.54572,-10.3481,174.577,-4.36678,-10.3681,173.905,-3.87793,-10.4227,173.414,-3.21014,-10.4973,173.234,-2.54235,-10.5719,173.414,-2.05349,-10.6266,173.905,-1.87456,-10.6466,174.577,-2.05349,-10.6266,175.249,-2.54235,-10.5719,175.741,-3.27321,-11.0618,175.353,-3.65876,-11.0187,175.249,-3.941,-10.9872,174.965,-4.04431,-10.9756,174.577,-3.941,-10.9872,174.189,-3.65876,-11.0187,173.905,-3.27321,-11.0618,173.802,-2.88766,-11.1049,173.905,-2.60542,-11.1364,174.189,-2.50211,-11.148,174.577,-2.60542,-11.1364,174.965,-2.88766,-11.1049,175.249,-3.2963,-11.2684,174.577,-3.06328,-9.09432,175.847,-3.69402,-9.02384,175.677,-4.15575,-8.97225,175.212,-4.32476,-8.95336,174.577,-4.15575,-8.97225,173.943,-3.69402,-9.02384,173.478,-3.06328,-9.09432,173.308,-2.43253,-9.1648,173.478,-1.9708,-9.21639,173.943,-1.80179,-9.23528,174.577,-1.9708,-9.21639,175.212,-2.43253,-9.1648,175.677,1.3532,-11.1899,165.956,2.3729,-10.4287,166.031,2.96403,-9.32023,166.141,3.01525,-8.07337,166.342,1.3532,-11.1264,165.315,2.3729,-10.3652,165.391,2.96403,-9.25674,165.5,3.01525,-8.00988,165.624,1.25443,-10.9459,166.027,1.92182,-10.1482,166.081,2.17921,-9.11899,166.161,2.21641,-8.21344,166.328,1.25443,-9.94623,164.91,1.92182,-9.1486,164.965,2.17921,-9.0555,164.944,2.21641,-8.14995,165.034,0.0568162,-11.4607,165.929,0.0568165,-11.3972,165.288,-1.23956,-11.1264,165.315,-1.23956,-11.1899,165.956,-2.25927,-10.3652,165.391,-2.25927,-10.4287,166.031,-2.85039,-9.25674,165.5,-2.8504,-9.32023,166.141,-2.90162,-8.00988,165.624,-2.90162,-8.07337,166.342,0.0568162,-11.2432,166.007,-1.1408,-10.9459,166.027,-1.14079,-9.94623,164.91,0.0568166,-10.2436,164.89,-1.80819,-10.1482,166.081,-1.80819,-9.1486,164.965,-2.06558,-9.11899,166.161,-2.06557,-9.0555,164.944,-2.10278,-8.21344,166.328,-2.10278,-8.14995,165.034,-1.62489e-005,15.0688,147.182,-2.67217e-005,-14.1105,118.943,-1.79422e-005,13.6762,152.006,1.57796e-005,5.66084,107.795,2.65743e-006,5.65281,92.686,-4.53868e-005,-12.0583,181.197,-4.21675e-005,-12.8791,167.533,-4.47016e-005,-13.9554,169.642,-3.0052e-005,-14.6919,114.963,-1.37532e-005,-12.8569,131.96,2.08252e-006,8.41945,127.539,-1.66888e-005,-5.26042,152.859,-4.45622e-005,-11.305,182.534,-3.97011e-005,-12.2218,163.522,-3.83746e-005,-11.7013,162.203,-1.11001e-005,7.9436,179.976,-3.93839e-005,-11.6156,165.625,-4.19265e-005,-9.34177,184.577,-1.77903e-005,8.26834,160.771,-4.74393e-005,-15.2268,171.374,-4.25159e-005,-13.0978,167.468,-2.14731e-005,-5.90021,161.292,-1.78627e-005,10.5208,157.577,-3.48632e-005,-8.40935,168.32,2.19731e-005,4.92419,114.21,-3.09549e-005,-15.2627,112.394,1.65971e-005,5.25142,118.312,-1.84929e-005,12.66,154.174,-1.8735e-005,11.5253,155.997,0.0,-14.3638,99.1041,2.33676e-006,-0.529133,89.6933,2.31059e-006,6.94971,100.17,-3.99599e-005,-12.2229,164.283,-3.68676e-005,-10.9235,161.748,-4.72513e-005,-15.0187,171.862,-4.5431e-005,-13.2445,175.373,-3.59855e-005,-5.48479,186.33,-4.03844e-005,-12.337,164.969,-4.32027e-005,-13.4716,167.627,-9.63541e-006,7.60248,173.749,-2.20618e-005,6.65413,164.565,-3.89205e-005,-10.7558,168.567,-3.80618e-005,-10.8992,165.302,-3.29947e-005,-7.77741,165.954,21.7115,3.70067,142.376,23.1274,3.44302,142.417,22.8623,5.90456,141.648,21.3853,6.17406,141.72,48.1601,7.47914,139.928,51.578,7.27152,139.847,51.5689,9.25811,140.699,47.9326,9.41217,140.77,45.0522,9.73416,141.162,45.326,7.93382,140.211,41.1267,4.38912,148.156,41.3517,2.94424,146.946,38.5478,2.56347,147.056,38.3449,4.23036,148.305,35.2696,2.32505,147.207,32.1628,2.12437,147.339,32.2415,4.00008,148.754,35.2219,4.13894,148.53,40.4946,6.37734,148.694,37.6058,6.4125,148.885,31.8975,6.42645,149.47,34.6293,6.46454,149.185,34.8603,1.31328,145.373,31.6884,1.15958,145.4,42.8206,3.08674,146.924,43.9472,3.11857,146.839,44.111,2.71649,145.581,42.8221,2.45388,145.448,38.2982,1.5943,145.353,37.7444,1.71238,143.298,34.1655,1.5531,143.205,37.0674,3.07228,141.516,33.3809,3.04646,141.479,36.3277,5.19643,140.455,32.653,5.25393,140.487,48.6977,5.28687,140.249,51.7438,5.21608,140.039,31.9518,7.65935,139.836,35.5623,7.40297,139.858,34.7127,9.6506,140.156,31.3138,10.0696,140.053,54.8302,10.255,142.55,54.6764,9.072,140.852,57.6119,8.94322,141.127,57.749,9.91193,142.802,57.5652,7.26676,140.19,54.6594,7.20739,139.95,60.9331,7.32842,140.562,61.0744,8.76148,141.57,61.2304,9.40531,143.258,54.7938,5.24021,140.049,57.629,5.44257,140.216,60.8585,5.66642,140.455,60.8438,4.08158,141.173,57.7442,3.77356,141.188,60.8527,2.93833,142.459,57.82,2.65819,142.847,55.0051,3.4884,141.244,55.1688,2.46604,143.197,64.1413,4.29409,141.082,64.269,5.77188,140.707,64.0833,3.10681,141.994,64.4634,7.22838,140.995,64.6996,8.39329,142.029,68.1711,7.00708,141.263,68.4964,7.94982,142.342,67.8893,5.71384,140.796,57.891,9.70143,144.743,61.3177,8.90146,144.859,64.8886,8.7226,143.606,64.9526,8.0095,144.896,55.0143,10.2126,144.644,64.9187,6.82888,145.846,61.3542,7.77442,146.125,68.7726,7.04989,144.78,68.6782,5.80716,145.369,68.7207,7.95589,143.774,49.1474,2.62626,144.035,52.2748,2.43799,143.641,52.0195,3.39358,141.481,49.0462,3.56849,141.642,47.0604,2.95064,146.0,49.404,2.67159,146.071,46.9677,2.88557,143.871,52.4086,2.3573,145.868,55.2528,2.37178,145.287,49.1944,3.97165,148.198,52.4745,3.50647,147.762,55.3151,3.39272,147.079,57.9981,8.62653,146.294,55.156,9.19221,146.465,55.2681,7.47045,147.662,58.0328,6.9702,147.206,61.2734,6.25427,146.696,52.2614,7.91876,148.103,52.0962,9.70251,146.698,48.6451,8.28013,148.273,48.9797,6.08977,148.787,46.1701,6.22191,148.685,45.8081,8.30589,148.18,52.4188,5.70976,148.534,46.7385,4.02827,147.863,55.3295,5.3945,147.944,57.9964,5.0621,147.293,57.9173,3.3215,146.391,61.1208,4.58358,146.541,60.9598,3.16134,145.569,37.1998,11.174,145.531,37.01,11.339,143.546,40.4995,11.0126,143.451,40.6203,10.9223,145.382,33.9809,11.5956,145.603,33.6645,11.8289,143.528,41.1792,9.97054,147.021,38.0756,10.2019,147.229,44.9834,10.8728,142.94,43.0316,10.8956,143.231,43.29,9.92183,141.478,45.1401,11.0232,145.029,45.4593,10.0358,146.894,43.4145,9.91264,146.899,43.1188,10.8837,145.211,34.9711,10.564,147.45,48.3443,10.0458,146.829,41.0433,2.06467,143.597,42.6777,2.43031,143.716,42.3756,3.17757,142.156,40.5601,3.20682,141.865,42.2786,4.59103,140.98,39.955,5.16733,140.701,43.6761,3.07512,142.47,44.0223,2.66364,143.892,45.2498,2.93726,143.765,44.4272,3.87147,141.54,64.4951,3.9759,145.76,64.7428,5.41715,146.119,68.4484,4.45357,145.448,68.1587,3.19342,144.975,60.8753,2.57716,144.035,57.8588,2.46839,144.723,67.708,4.34486,140.853,37.4828,10.6285,141.702,34.0005,11.2291,141.564,38.3618,9.09795,140.41,30.833,11.8366,141.462,41.2819,2.12031,145.37,36.3525,8.69917,148.626,33.501,8.90203,148.955,32.153,10.9958,147.723,64.1079,2.55071,143.321,67.6545,2.34545,142.572,67.6161,3.11097,141.456,64.2547,2.87051,144.742,67.8714,2.37171,143.916,42.8654,4.31106,148.052,42.653,6.34456,148.62,39.4452,8.51279,148.362,41.975,8.36368,148.189,43.8417,8.27847,148.121,44.2948,6.25055,148.597,41.6919,8.57808,140.479,43.7096,8.24232,140.368,40.9003,10.1602,141.701,39.3092,7.04464,140.149,42.2424,6.55873,140.224,30.6322,12.4437,143.518,31.06,12.1605,145.689,28.6601,12.5372,145.913,28.2478,12.912,143.692,29.7325,11.2589,147.945,24.055,1.35872,145.529,22.6044,1.11965,145.198,22.9294,1.4276,147.596,24.6363,2.00184,147.417,23.2871,1.90114,143.547,21.7903,2.02961,143.29,26.47,2.10329,147.169,25.8364,1.36959,145.393,29.4233,3.82621,148.67,29.3933,6.28457,149.564,30.99,1.49327,143.257,28.0319,1.52955,143.414,28.6513,1.14639,145.31,25.3325,1.76133,143.688,25.1084,3.27003,142.467,19.2814,12.8721,143.987,21.0233,12.922,144.003,21.5895,12.5767,146.067,19.4854,12.7714,145.901,21.9678,8.64698,141.111,20.4105,8.86143,141.246,20.0464,10.9472,141.551,21.7597,10.8326,141.381,21.3399,12.2951,142.343,19.6435,12.2757,142.485,28.363,12.2657,141.638,26.0138,12.475,141.872,26.2863,10.6725,140.755,28.6193,10.3592,140.301,26.573,8.1892,140.586,29.032,7.87355,140.094,27.0711,5.37741,141.116,29.6172,5.31456,140.697,27.4537,3.03389,141.992,30.2308,3.03829,141.626,25.121,3.76537,149.17,26.9119,3.8385,148.735,31.0008,9.03449,149.211,28.637,9.13989,149.338,27.2673,11.4168,148.044,26.1605,12.6977,146.108,25.7901,13.1466,143.887,48.114,10.9484,144.788,47.9011,10.7016,142.608,51.723,10.5672,142.475,51.9452,10.6474,144.669,44.735,3.95424,147.659,46.0946,5.58871,140.398,23.6186,3.56193,149.867,23.5199,6.33203,150.968,25.1189,6.36709,150.212,22.5188,9.3517,150.525,24.2826,9.18935,149.88,21.0931,11.5332,148.595,22.8728,11.343,148.265,23.6062,12.62,146.105,24.847,11.3393,148.171,29.1772,1.99875,147.197,26.9446,6.34059,149.719,24.0879,10.7616,141.384,23.4341,12.3316,142.246,24.471,8.47179,141.244,24.951,5.67665,141.688,26.1958,9.12671,149.507,23.1072,13.0219,143.986,45.333,2.95749,145.842,46.5663,3.66872,141.747,44.1246,5.96476,140.388,70.8109,1.91929,143.291,72.658,1.55825,142.786,72.2249,2.0351,141.49,70.5104,2.15678,141.98,70.4524,3.08993,141.058,72.183,3.07535,140.742,71.1538,2.63097,144.431,73.1937,2.19712,144.047,70.7526,5.69491,140.77,71.047,6.84454,141.329,71.3938,7.61731,142.367,73.2719,5.80427,140.585,73.6344,6.81729,141.217,72.8676,6.79475,141.288,72.5777,5.74707,140.67,70.555,4.37488,140.627,72.314,4.42358,140.453,71.667,7.57256,143.729,71.7561,6.56214,144.594,73.7405,7.39488,143.609,73.9267,6.30959,144.398,74.8643,6.22859,144.24,74.8339,4.81116,144.569,73.8511,4.94082,144.722,71.6733,5.25608,144.992,71.4437,3.86848,144.977,73.5813,3.4659,144.664,74.5277,3.27642,144.497,74.0098,1.99833,143.862,72.6601,3.08042,140.616,72.9265,4.4642,140.356,73.2849,7.44388,142.303,72.7079,1.99031,141.293,73.2579,1.43581,142.577,74.5171,7.31686,143.501,74.0603,7.41064,142.229,17.3071,-1.9111,147.987,16.0486,-3.32847,146.679,15.202,-3.32223,148.345,16.4011,-1.84917,149.545,14.2866,-2.9322,150.335,15.5691,-1.43075,151.255,18.1473,-0.419244,149.446,17.1858,-0.275067,150.731,16.3271,0.150104,152.08,17.6236,1.54322,151.895,18.7252,1.28558,150.89,17.7806,3.70778,152.788,19.0705,3.21207,152.014,18.7237,6.07408,152.627,17.4841,6.17538,153.101,16.7145,4.03915,153.443,16.406,6.389,153.66,18.0603,8.73182,152.23,16.9959,8.43006,152.777,16.3448,10.4101,152.155,17.2811,10.9208,151.204,16.1006,8.16772,153.436,15.5977,9.87844,153.128,16.2814,12.4199,150.197,15.4712,11.9343,151.594,14.823,11.2826,152.873,15.6301,0.891237,153.285,14.878,-0.562919,152.884,14.3506,0.695963,154.342,15.0835,1.91418,154.238,13.8987,2.50259,155.279,14.6731,3.44619,154.864,15.9524,2.40608,153.629,15.5084,2.77354,154.191,15.2759,4.08033,154.464,16.6929,1.94581,152.852,14.8739,5.95919,154.625,15.5676,6.28714,154.145,15.9281,4.19374,154.003,15.3097,7.80722,154.048,14.6488,7.40854,154.664,14.3031,8.81323,154.62,14.9052,9.28474,153.932,13.9408,9.82164,154.443,14.2962,10.4821,153.886,13.2075,10.0574,154.737,13.2852,11.2515,153.917,13.6016,12.2601,152.684,11.785,11.742,153.856,11.9181,12.815,152.347,13.5758,8.62182,155.24,14.1041,12.9533,151.132,14.7306,13.3776,149.475,12.6925,13.9584,148.897,12.2563,13.5795,150.617,14.3324,5.39374,155.234,13.611,4.66274,155.78,14.006,7.01379,155.378,9.83574,12.1811,153.535,9.91346,13.1863,151.821,13.5804,-1.97634,152.302,13.1284,-0.755062,154.153,12.4097,1.37567,155.362,12.6684,3.98219,156.176,12.2625,6.11579,156.673,13.2089,6.57815,156.091,18.7099,1.43134,141.238,17.7516,-0.444514,141.73,19.6092,0.531174,143.274,20.1195,2.09479,142.657,20.5149,3.99466,142.243,20.0388,3.63891,141.531,10.4605,14.3989,148.079,10.8225,14.5507,146.544,13.1608,14.0752,147.228,11.73,14.3993,143.57,14.3267,13.7587,144.03,13.7028,14.0138,145.57,11.2434,14.559,145.029,17.2889,11.4698,141.568,15.4259,11.9208,140.342,18.1549,9.98891,140.586,18.779,9.36885,141.394,19.4384,7.91698,140.961,20.2131,6.29789,141.768,20.1404,5.70159,141.3,19.3668,-0.548267,144.126,17.4756,-1.77497,142.557,21.2333,0.253935,145.737,19.013,-1.27007,145.309,20.4967,-0.162062,147.217,16.781,-3.10458,145.142,18.2881,-1.73105,146.63,17.2704,-2.61578,143.736,14.8476,13.2546,142.781,12.3425,13.9489,142.225,13.47,13.1607,141.053,15.7069,12.503,141.866,10.1334,14.0586,149.718,12.5959,8.4998,155.935,11.9845,10.2732,155.095,17.2062,12.7397,148.764,18.4131,11.5186,150.117,19.3986,9.19662,151.723,15.4174,13.5458,147.807,20.9924,2.17832,143.069,21.1049,4.00744,142.418,21.0926,0.871206,144.242,19.5292,9.11257,141.459,18.6687,11.1109,141.773,20.6905,6.31052,141.833,20.4956,3.26805,151.315,20.2228,6.12873,152.244,21.9204,6.26781,151.69,22.0843,3.39595,150.65,17.8556,12.2396,142.447,17.2471,12.8433,143.375,16.1481,13.5007,146.193,18.284,12.8289,147.386,19.6921,11.6533,149.241,20.9791,9.42857,151.136,21.4977,1.32331,149.074,20.0262,1.25816,150.013,16.8918,13.2422,144.678,19.3075,-0.375407,148.361,8.00554,5.37357,119.039,10.206,3.9109,119.148,10.0274,4.53788,121.385,7.82563,6.02968,121.383,1.45243,-11.7177,136.929,1.61072,-12.1389,135.266,-1.23485e-005,-12.1506,135.321,7.91611,14.4172,149.529,7.75007,13.6519,151.604,8.14475,14.8144,147.682,5.60613,15.2736,147.447,5.44737,14.8303,149.53,8.41007,15.0286,146.044,5.7859,15.4947,145.623,9.20832,14.9477,142.873,9.86052,14.554,141.255,12.4957,12.731,138.436,10.8982,13.8404,139.654,13.3443,-6.1662,142.794,15.0831,-4.59322,143.934,15.4348,-4.26775,142.205,13.7335,-6.07911,140.782,7.16176,-7.65282,146.542,5.53988,-8.1575,146.48,5.47455,-7.17317,148.842,6.95606,-6.66901,148.932,4.01009,-8.5018,146.421,4.03979,-7.56808,148.755,1.24344,-8.60073,146.478,1.30681,-7.68338,148.837,2.64298,-7.76859,148.768,2.57764,-8.66446,146.421,1.14142,-9.63678,143.557,2.42439,-9.69305,143.667,2.34455,-10.5887,141.082,1.12862,-10.5647,140.914,11.5947,-2.0407,153.754,10.1413,-3.11162,153.362,9.28041,-1.92485,154.452,10.6691,-0.610452,154.809,12.119,-3.00214,151.814,10.6586,-3.96391,151.486,5.26209,-5.77163,152.452,6.50757,-5.16577,152.635,6.75978,-5.78925,150.932,5.39759,-6.3239,150.754,4.88668,-5.01904,153.587,5.9769,-4.3898,153.76,11.3143,-4.84373,149.451,12.8667,-3.93342,149.83,13.7397,-4.39757,147.719,12.1056,-5.40642,147.259,3.98185,-6.18572,152.301,4.04007,-6.74329,150.662,3.75854,-5.43239,153.407,2.69294,-6.94536,150.637,2.68402,-6.35967,152.104,1.2795,-6.20423,151.763,1.54813,-5.52968,152.92,2.59011,-5.57495,153.141,1.36599,-6.86252,150.576,3.4682,-12.0333,135.019,3.64604,-12.3112,133.42,1.73338,-12.4846,133.699,5.09237,-14.4484,113.099,3.27976,-14.9214,112.78,2.93826,-14.6348,115.502,4.81128,-14.2179,115.799,6.96504,-13.7145,113.41,6.77238,-13.4825,115.969,6.98294,-13.7646,110.789,5.19428,-14.5203,110.311,3.43832,-15.0776,109.897,7.75858,-10.5512,135.679,7.92844,-10.6455,134.079,5.60702,-11.5894,134.542,5.52216,-11.3322,136.07,10.1088,-9.18412,135.519,10.2562,-9.12205,133.702,14.2533,-1.52912,127.958,14.1335,-1.81777,125.57,13.4518,-4.73592,126.017,13.5064,-4.47308,128.399,13.8232,-2.17067,123.34,13.1956,-5.0577,123.789,14.0359,1.23555,125.574,14.4552,1.54597,127.867,13.537,0.798002,123.333,7.70579,12.3531,153.893,5.20359,12.8179,154.078,5.3144,14.0501,151.799,2.57906,12.8186,154.168,2.66052,13.9469,151.933,2.74016,14.7879,149.488,2.82393,15.2924,147.226,2.9206,15.5206,145.248,14.8016,10.7685,138.038,17.1169,8.26442,138.297,18.5342,5.60046,138.865,12.8994,11.2066,135.702,15.1541,8.50827,135.728,17.955,2.99669,138.885,16.3854,5.48093,135.954,16.2163,2.44031,135.944,16.6249,0.399677,138.629,15.4835,-0.588976,135.938,4.16993,-11.3387,137.86,3.33198,-11.5996,136.938,2.54208,-11.2054,138.984,3.82926,-11.0894,139.181,14.417,-3.96849,136.487,15.9614,-1.90873,139.44,13.8397,-4.11675,133.328,14.9075,-1.05114,133.198,14.487,-1.28862,130.514,13.5663,-4.25632,130.839,14.0682,-5.43863,138.896,15.6361,-3.42957,140.707,13.7405,-3.36546,119.138,13.2176,-6.25543,119.548,13.1071,-5.597,121.628,13.5852,-2.69913,121.182,13.9465,-3.93929,117.37,13.3173,-6.69496,117.663,11.9478,-8.95241,117.933,11.8633,-8.66416,120.106,11.8287,-8.11495,122.357,13.279,-8.28673,110.965,11.9724,-10.2062,110.322,12.1218,-9.82969,112.198,13.4573,-7.82431,112.593,10.4901,-11.1619,113.888,12.1382,-9.4771,114.069,10.4813,-11.424,111.755,14.1081,-5.9619,111.447,14.2672,-5.4011,112.885,10.1984,-10.6067,118.219,10.078,-10.3833,120.606,13.4237,-7.03538,115.911,12.0602,-9.18208,115.961,10.3788,-10.8868,116.022,13.3164,-0.394356,118.861,13.6675,-1.04072,117.003,14.1523,-4.41848,115.818,14.0026,-1.5941,115.616,11.9533,1.90981,119.067,12.3986,1.40126,117.113,12.8501,0.934678,115.556,13.1724,0.197399,121.074,11.8466,2.5688,121.294,8.32989,5.02239,116.903,10.5996,3.48317,117.129,2.67314,5.88956,118.454,2.78314,5.47922,116.042,5.61787,5.66321,116.52,5.41086,6.08068,118.799,5.88457,5.3868,114.668,2.87225,5.33757,114.374,8.69888,4.67474,115.075,11.0208,3.07105,115.406,15.4474,2.08749,133.192,14.0119,4.62168,128.179,14.9268,1.82511,130.422,14.7426,5.07539,130.638,12.4427,7.4341,128.506,13.3876,8.14663,130.867,4.26327,13.6241,135.658,9.20953,13.2262,136.226,7.75932,14.3006,138.449,3.92407,14.458,137.771,6.37479,15.3234,142.268,6.90201,14.9221,140.436,8.75335,15.0785,144.456,6.03329,15.5263,143.939,3.2443,15.4465,141.872,3.05361,15.5731,143.543,3.85025,-12.532,131.646,1.87445,-12.7968,131.874,5.77052,-11.751,132.983,5.94064,-11.872,131.253,8.13377,-10.932,128.491,8.13761,-11.3152,126.035,6.1489,-12.5582,126.426,6.11048,-12.18,129.115,8.05631,-11.6177,123.485,6.04949,-12.7757,123.716,4.02869,-12.8863,129.424,4.04935,-13.2217,126.689,1.99351,-13.4559,126.74,1.98602,-13.1645,129.512,3.99243,-13.4711,123.924,1.96261,-13.7143,124.035,10.3267,5.56508,123.763,7.92534,7.11934,123.9,5.25825,7.91873,124.168,5.26369,6.76872,121.393,2.69245,7.69519,124.364,2.63137,6.57167,121.331,2.88928,9.13572,127.226,5.86436,9.29863,126.863,13.1963,4.14197,125.993,12.3531,3.45245,123.654,11.3456,6.61358,126.24,8.81929,8.42971,126.532,9.81089,9.49544,128.75,6.57832,10.5864,129.103,10.7592,10.3706,131.018,11.6792,10.9918,133.373,8.12072,12.4523,133.545,7.3195,11.6083,131.312,3.19589,10.5794,129.664,3.99581,12.7218,133.658,12.5028,1.77106,111.044,13.9077,-0.706851,111.399,13.627,-0.0798325,112.772,11.9905,2.27283,112.461,11.5179,2.69975,113.878,9.18508,4.4277,113.512,9.72302,4.1417,112.121,3.52414,15.0632,139.901,3.42787,5.56311,109.89,3.36725,5.40845,111.49,7.41697,5.17148,110.395,6.79395,5.18337,111.752,2.00978e-005,4.96605,115.829,8.76199,-12.591,113.675,8.74784,-12.7266,111.28,8.61972,-12.3339,116.042,8.34156,-11.9354,118.415,14.2884,-4.88863,114.335,14.2737,-2.12924,114.295,14.3783,-2.71788,112.957,6.26725,5.27694,113.119,8.08047,-10.7236,132.457,8.12142,-10.739,130.646,14.3791,-3.36438,111.612,6.42459,-13.0532,118.494,6.16028,-12.8228,121.078,8.13374,-11.7129,120.906,4.408,-13.8744,118.477,4.15523,-13.6647,121.199,2.1074,-14.2899,118.288,2.05989,-14.0153,121.314,1.14146,-14.3932,116.889,3.73143,-10.4972,141.19,3.87337,-9.56316,143.724,11.8743,-7.58342,124.533,10.0232,-10.0825,123.068,10.0635,-9.63258,125.361,9.42875,-8.7716,141.589,11.4644,-7.59722,142.014,11.8085,-7.83721,139.846,9.64606,-9.26806,139.365,7.36211,-9.63284,141.36,7.42457,-10.2581,139.18,5.39377,-10.2193,141.208,5.40139,-10.8231,139.167,9.18038,-7.9743,144.116,11.0175,-7.0028,144.437,9.92186,-9.36484,137.401,12.1564,-7.62733,137.851,12.3266,-7.12329,135.684,7.32326,-8.71441,143.932,7.61059,-10.4957,137.338,5.50573,-9.25116,143.77,5.53641,-11.1112,137.524,12.7929,-5.85231,145.008,1.61285,-15.2016,112.51,1.41102,-14.7522,115.109,-1.26167e-005,14.731,139.802,3.50094,-15.0654,106.826,1.76214,-15.3855,106.426,1.72229,-15.4392,109.594,12.0365,-7.26412,126.756,12.1586,-7.08012,129.072,10.2933,-9.17086,129.88,10.3475,-9.15718,131.887,12.197,-6.95075,131.314,10.1604,-9.2997,127.635,12.2626,-6.90837,133.455,1.24603,-11.2318,138.799,-1.27995e-005,-12.5125,133.787,14.4861,-4.58617,145.8,15.3623,5.31419,133.303,14.1696,8.45976,133.345,3.58179,11.7454,131.745,0.648392,-5.70481,152.242,0.729707,-5.347,152.876,-1.20902e-005,-9.56462,143.416,-7.76441e-006,12.125,133.887,-2.34123e-005,-13.896,121.513,-2.94262e-005,-15.5528,109.476,7.01832,-3.6384,153.946,8.08264,-2.85921,154.168,8.85217,-3.90787,153.053,7.67696,-4.55575,152.818,9.33494,-4.69619,151.257,8.06205,-5.27344,151.084,9.85951,-5.54364,149.207,8.42473,-6.12135,149.041,8.81007,-7.02876,146.637,10.4624,-6.28036,146.888,-5.51019e-006,11.0679,132.059,13.4956,-7.40193,114.233,13.2969,0.465007,114.145,3.0585,5.3429,112.9,8.64813,-12.8721,108.844,6.93557,-13.8239,108.092,5.22464,-14.5543,107.4,10.3582,-11.6944,109.602,10.3891,3.85521,110.727,11.2801,8.35105,156.647,10.2309,10.4838,155.469,11.2221,3.74667,156.683,10.9722,5.6795,157.229,9.87194,7.94944,157.304,7.98567,10.3505,156.278,10.6873,1.96286,156.009,3.42521,-4.78963,154.256,4.39215,-4.37447,154.434,5.31331,-3.70586,154.6,8.13934,-1.01214,155.202,9.42431,0.320139,155.518,5.04585,11.3131,156.131,2.46384,11.5547,156.082,2.44182,-4.98894,154.049,1.5428,-5.03622,153.867,0.74579,-4.96074,153.74,6.21782,-2.90754,154.806,7.11808,-2.06259,155.009,-1.76717e-005,-4.9069,153.692,1.73283,-14.267,99.4238,3.41508,-14.1628,100.108,3.26962,-13.1021,96.7238,1.67511,-13.2276,95.9902,13.8331,-8.22887,106.848,12.7078,-10.0655,105.924,12.7511,-9.40311,107.667,13.7205,-7.35974,108.479,7.97873,-12.9458,101.19,6.35243,-13.1831,99.5108,6.66271,-13.7423,102.382,8.27946,-13.1417,103.772,9.63389,-12.3731,102.896,9.89319,-12.237,105.175,4.78933,-13.1719,97.9768,5.0437,-14.0355,101.117,5.19116,-14.4696,104.328,6.85354,-13.9007,105.289,3.49235,-14.8045,103.549,1.75886,-15.0021,103.013,8.49799,-13.0553,106.345,12.986,-8.79738,109.322,13.8605,-6.59807,109.975,10.1442,-11.9741,107.413,11.0669,3.67797,109.261,7.87414,5.37658,108.954,8.3764,5.67706,107.378,11.6837,3.57617,107.649,14.56,-5.88577,107.056,14.3044,-4.92784,108.741,1.84855,6.6887,104.798,5.07712,6.95109,105.195,4.73552,6.37099,106.965,1.71122,6.12926,106.528,1.31676,5.57288,108.921,1.52924,5.78588,107.939,4.3576,5.91789,108.452,14.3705,-2.13156,108.477,13.586,0.80845,107.978,14.0596,0.408642,106.073,14.7491,-2.97144,106.627,13.0792,1.28048,109.561,14.1335,-1.38811,109.967,12.2004,3.60808,105.735,11.2611,-11.4368,104.516,11.4396,-11.0267,106.503,11.7065,-10.5991,108.426,14.2962,-4.08861,110.2,8.85952,6.03518,105.533,-1.31781e-005,-15.0873,102.803,8.76045e-006,5.89526,106.347,16.7606,-5.38151,93.4132,17.0577,-4.78704,89.0373,16.3222,-7.71111,88.6826,15.9803,-8.24633,92.8237,16.3935,-5.99117,96.3713,15.4826,-8.67643,96.2448,16.378,-2.18939,93.4105,16.656,-1.59119,89.0637,16.2729,-2.68933,95.6201,14.6472,-9.98372,87.9781,14.3391,-10.3827,91.9641,16.4636,-7.16387,84.5073,17.2424,-4.23348,84.7948,14.7356,-9.49003,84.091,13.5335,-10.9486,98.1767,15.0303,-9.17303,99.3234,13.8965,-10.6376,95.2805,11.5288,-11.894,96.3984,11.7956,-11.7215,93.7813,12.0943,-11.6233,90.6807,9.20346,-12.18,98.5034,11.1668,-11.8982,100.369,11.3025,-11.9525,98.3805,9.19701,-12.0841,96.4982,9.32264,-11.9872,94.5253,9.50758,-11.8683,92.1527,12.8553,-10.6322,104.009,11.1695,-11.7356,102.443,15.0024,-6.63025,105.104,14.1881,-9.00266,105.018,15.0341,-3.5578,104.516,15.3581,-3.8681,102.463,15.7204,-3.80974,100.509,15.6661,-6.86056,101.147,15.4003,-6.90118,103.061,15.939,-6.62331,99.2642,16.0572,-3.53786,98.5398,15.0028,-0.101044,99.6202,15.2277,0.129893,97.4316,15.1631,0.617858,94.824,15.0438,0.899577,92.8625,1.22702,-9.83674,88.95,2.35514,-10.0248,89.4339,1.53271,-8.09393,88.3477,0.859144,-8.47055,88.802,0.507919,-6.8456,88.822,0.628321,-5.01974,88.6409,2.86403,-8.89715,86.4548,4.85305,-10.4886,87.0473,4.55905,-9.73796,84.2617,2.79746,-7.6189,83.8815,7.1658,-11.399,88.045,6.94864,-11.1101,84.9478,4.31776,-8.83307,81.4983,2.66786,-6.35988,81.323,6.65092,-10.5648,81.9632,3.17863,-9.86147,88.5873,5.15498,-10.8813,89.4274,7.27743,-11.5019,90.6504,1.62672,-4.86274,84.0147,1.55227,-6.50033,86.4231,1.2203,-1.52361,84.6273,1.00696,-3.47397,86.8153,3.04403,-12.1624,94.0126,1.57181,-12.3828,93.1266,4.44924,-12.1639,95.3688,4.16719,-11.4155,93.2746,2.88522,-11.6019,91.9779,1.52995,-11.8539,90.9331,2.75859,-10.9705,90.4651,1.48278,-11.0117,89.4485,1.19053,-0.614622,87.4614,0.647272,-0.370021,89.3557,1.91742,2.12299,87.1802,1.72676,3.63125,90.3098,5.35564,4.99013,87.6665,5.33753,5.86127,90.5145,9.1563,5.35222,87.8658,9.38136,5.90589,91.0616,12.7924,3.86796,91.9431,12.5171,3.9455,88.3559,15.0512,1.47776,88.8092,13.0751,3.95001,93.7431,9.67932,6.43465,92.8041,5.73483,6.94815,92.299,2.20603,6.09458,92.277,5.69766,8.11081,98.0223,5.65666,7.91545,95.1958,9.99704,6.89346,95.6579,9.92804,6.92655,98.4027,1.91958,7.39933,95.0627,5.61923,7.95606,100.687,2.02588,7.6123,100.348,2.00077,7.7104,97.7444,9.70866,6.73497,100.991,9.32075,6.39739,103.374,5.39384,7.5203,103.09,1.97354,7.24141,102.734,13.4142,3.83796,96.4074,13.2804,3.7443,98.8537,14.3924,0.0420632,103.926,12.6624,3.63285,103.558,14.7072,-0.195183,101.742,13.0592,3.67058,101.238,7.33905,-11.9293,96.5712,7.19832,-11.718,94.6473,7.62973,-12.4578,98.7449,5.96475,-12.3121,96.9329,5.63729,-11.4847,94.7544,5.49075,-11.1713,93.0172,3.98912,-10.9069,91.653,5.3799,-11.0566,91.3524,3.72795,-10.5046,90.2292,7.23853,-11.6018,92.7992,9.60338,-11.8446,89.3053,8.72769,1.63842,38.2507,11.3066,1.17444,38.4289,11.4226,1.96927,34.479,9.00898,2.29217,34.3182,8.83421,0.798833,42.6434,11.4012,0.445593,42.6752,13.8224,2.64212,39.0396,13.6112,3.25053,34.8925,13.9062,1.89258,43.21,6.57044,8.97203,22.7986,6.84079,6.79399,22.8193,6.5752,6.94369,19.114,6.38245,9.0255,19.0736,7.5794,4.90648,22.9494,7.36388,5.04304,19.1614,8.82467,3.59823,19.1849,8.9781,3.39487,22.9886,14.2074,12.8505,36.0285,15.4311,10.7114,35.8841,15.8849,10.7441,40.0063,14.5456,12.8936,40.3608,13.697,12.3323,32.0446,14.8642,10.5891,31.9582,12.3651,14.0888,40.1421,12.2973,14.1193,36.0312,11.8608,12.717,27.501,12.1464,13.4465,31.9973,10.1106,13.8504,31.8816,10.1461,13.2328,27.4725,13.237,9.90533,22.5809,14.1449,10.3757,27.6272,13.0618,11.7915,27.5811,12.3586,11.2132,22.5564,9.97017,12.8297,22.6007,11.3196,12.1761,22.5544,9.90255,14.3915,35.8744,12.7642,9.70248,19.0474,13.2086,8.04521,19.0972,13.7039,8.05349,22.6572,16.481,-6.58727,80.1352,14.6942,-8.89197,79.6893,12.2678,-10.9565,83.3835,12.2711,-11.3784,86.981,12.1548,-10.3094,79.0625,17.3125,-3.72008,80.4367,14.5083,-8.19394,75.4842,11.954,-9.47748,74.9403,9.23704,-10.5682,78.4317,9.42223,-11.2895,82.614,9.05183,-9.59219,74.4684,6.48206,-9.62051,77.9192,6.34634,-8.53541,74.1059,4.23884,-7.68387,77.5755,4.24593,-6.46403,73.886,6.14674,-7.34896,70.4378,4.26361,-5.14839,70.2889,2.73111,-5.06122,77.4723,2.96531,-3.74939,73.8306,3.25115,-2.41444,70.2707,5.91536,-6.20652,66.8974,4.24749,-3.88223,66.7681,8.77734,-8.48036,70.7352,8.45797,-7.43404,67.1959,11.578,-8.43852,71.1503,11.1287,-7.38532,67.6338,14.0788,-7.3733,71.5994,13.4903,-6.48839,68.0515,10.6797,-6.45605,64.4211,8.16051,-6.50108,63.9203,12.8486,-5.66033,64.85,10.3286,-5.71736,61.5446,8.03409,-5.6326,60.9984,12.26,-5.01752,61.9492,14.6484,-4.27885,65.1116,13.8843,-3.81125,62.1109,11.8439,-4.69144,59.0588,9.83122,-5.1112,58.8432,13.406,-3.32344,59.2107,5.73523,-5.13477,63.5451,5.8569,-4.05498,60.492,4.25307,-2.69914,63.3859,4.5793,-1.51714,60.2978,15.4079,-4.87914,68.3687,16.4549,-2.4305,68.6621,15.7666,-2.10672,65.3299,15.0072,-1.84524,62.1312,3.49267,-1.14637,66.7789,3.66798,0.0171373,63.4038,3.34365,1.71364,66.951,2.84032,0.547882,70.3983,3.69987,2.74713,63.6226,4.19752,4.51012,67.3218,3.40548,3.53046,70.7165,2.61856,2.4684,74.2725,2.30237,-0.702066,73.9475,1.97404,1.28768,77.8602,1.8594,-2.01271,77.5131,1.52601,-0.0509487,82.1956,1.63461,-3.39845,81.6934,4.0366,1.07309,60.2487,4.05256,3.54826,60.4322,5.33732,5.78919,60.9473,4.84339,5.27145,64.0642,5.0504,5.67783,71.051,4.10834,4.94482,74.6678,3.34256,4.0592,78.3584,6.19869,-2.73269,58.2275,7.82457,-4.43513,58.4979,7.68482,-3.55946,56.3197,6.40734,-1.75681,56.2146,6.41489,-1.02824,54.2521,7.52326,-2.88817,54.3579,5.58622,1.1299,54.0974,5.39651,0.389023,55.9919,5.11222,-0.412923,57.9276,9.46721,-4.64202,56.3748,11.4976,-4.37491,56.4206,13.2022,-3.07448,56.5262,14.4746,-1.41606,59.3406,14.2001,-1.03441,56.7504,15.1761,0.662011,59.4249,14.9832,1.16877,56.9489,15.2214,3.00323,59.7719,14.9698,3.61967,57.164,14.9954,1.64103,54.6313,14.1245,-0.672317,54.4016,14.9193,4.33455,55.0253,12.9642,-2.67261,54.2825,14.9858,2.08624,52.251,13.9017,-0.245894,52.119,15.0629,4.74272,52.6133,15.0384,2.62564,49.838,15.4167,5.43625,50.1943,13.4389,0.0131896,49.664,11.2207,-3.76453,54.2648,9.33158,-3.90609,54.3034,11.1067,-3.14641,52.2667,9.24182,-3.20728,52.3197,12.6937,-2.07898,52.2802,9.17177,-1.01127,48.9066,9.28619,-2.14162,50.6946,11.0756,-2.26399,50.5646,11.3579,-1.13444,48.8145,8.94403,-0.043997,46.4278,11.3346,-0.329781,46.2688,13.7489,1.02088,46.7252,7.69482,-2.1532,52.4509,5.23549,3.34927,54.0266,4.82185,2.69008,55.7211,4.49489,2.31463,57.3104,4.98967,4.85399,55.7301,5.52422,5.37804,54.1841,4.56616,4.47927,57.3911,5.8027,4.23221,52.2102,6.05977,6.25686,52.5031,5.912,6.1865,56.0943,6.37488,6.65111,54.4201,6.87837,7.74432,52.5913,6.03501,1.9699,52.1507,6.44032,2.8848,49.8981,6.07384,5.32234,50.0242,6.7355,-0.293599,52.2158,7.40417,0.240941,49.8276,7.36175,1.62837,46.9974,6.35675,4.01073,47.3731,5.86845,6.58488,47.5069,7.2229,2.62764,43.0312,5.91637,4.95331,43.4465,5.32874,7.73446,43.6829,6.21745,7.56408,50.3551,7.04945,9.38525,50.3083,6.0185,9.0523,47.4545,7.10545,11.08,47.3214,8.68068,10.5202,50.2449,8.39702,8.94587,52.686,9.09071,12.11,47.1961,10.3008,9.21532,52.7798,10.7644,10.7017,50.1531,9.89254,7.88262,54.9405,8.04461,7.58864,54.684,9.68291,7.13318,57.1337,7.78229,6.80971,56.6674,9.60592,6.61775,59.5061,7.58169,6.52975,58.8788,2.66394,3.10274,82.9206,5.69899,5.4142,83.5177,6.24369,6.03329,78.945,7.39261,6.55479,61.4934,9.55175,6.48348,62.1861,11.6984,6.21631,59.8722,11.7359,5.98029,62.5949,11.7084,6.79642,57.4252,13.5969,5.59373,57.4566,13.6807,5.02762,59.9279,12.2714,8.56043,52.8647,13.8737,7.036,52.9146,13.6247,6.24916,55.2032,11.8244,7.452,55.1316,14.4908,8.1103,50.5915,12.8178,9.8596,50.3176,15.1919,8.96291,47.6546,15.8951,6.34191,47.6157,15.4041,3.51729,47.2629,13.5597,10.9452,47.4378,15.6611,4.27767,43.781,16.3165,7.1232,44.1082,14.2084,12.0565,44.0719,15.757,9.8901,44.1742,16.2939,7.90156,39.8176,7.12998,12.5797,43.6614,9.45863,13.4902,43.6596,5.65185,10.4753,43.7191,7.29379,13.5875,39.594,5.59543,11.5399,39.4109,5.94347,11.6152,35.3877,7.46339,13.6517,35.6701,8.00147,13.3357,31.7457,6.49779,11.5994,31.6088,5.16897,8.69662,39.081,5.61661,8.97039,35.0509,6.04325,9.06987,31.4404,6.46593,8.91592,27.6166,6.98212,11.4429,27.5837,9.7953,14.3489,39.7892,11.9654,13.2828,43.8356,5.69583,5.75379,38.8023,7.05447,3.40045,38.4795,7.67133,4.64656,27.4501,9.07838,3.11437,27.4021,6.86865,6.62171,27.5488,10.7955,3.31492,23.0125,11.0436,2.87683,27.4734,7.495,4.42179,31.0643,9.089,2.73133,30.979,11.3019,2.46177,31.1005,12.8488,3.98053,27.6334,12.3214,4.40296,22.9634,6.08424,6.32432,34.7185,6.51252,6.56211,31.2398,8.3558,12.9169,27.5208,7.10939,11.2125,22.7606,8.31928,12.6701,22.6858,7.02758,10.9895,19.0345,8.1289,12.3725,19.0017,15.5978,5.02035,39.5639,15.1743,5.39267,35.2976,14.1592,5.92941,27.7369,13.2964,3.66831,31.3865,14.7553,5.75384,31.6501,15.8148,8.08392,35.6242,15.2658,8.21223,31.8422,13.3376,6.11594,22.7715,12.8438,6.3328,19.1312,11.9292,4.72318,19.1414,14.5871,8.20586,27.7272,9.39519,5.68151,84.0874,9.83674,6.27059,79.5172,13.0964,4.86723,79.9919,12.6916,4.37107,84.411,13.4148,5.11283,76.0443,10.3769,6.56627,75.6309,15.7023,2.78819,76.3067,15.5844,2.48742,80.3444,15.2747,2.02672,84.7392,15.6932,2.8964,72.4734,13.6692,5.1595,72.288,10.9139,6.5913,71.9274,15.6535,2.93215,68.9415,13.8401,5.0845,68.8187,16.4459,0.281787,68.8845,16.8056,0.130995,72.4759,17.0686,-0.0953082,76.3813,6.96869,6.56505,75.1265,7.78815,6.88786,71.476,11.3547,6.39626,68.5256,8.59989,6.86321,68.1499,6.11566,6.44148,67.7273,11.6368,6.14223,65.4065,9.19723,6.64004,65.0071,6.90207,6.58587,64.5146,16.0566,0.406234,65.569,15.5677,2.96048,65.6836,13.904,4.99082,65.6231,17.2532,-3.24941,76.2562,16.985,-2.84663,72.3008,16.3744,-6.05511,75.9472,16.0221,-5.49509,71.989,17.1238,-0.588397,80.5058,16.9146,-1.0576,84.9186,15.352,3.00518,62.6345,15.6175,0.53413,62.4295,13.7901,4.9375,62.646,9.58833,-11.6784,85.9225,5.64549,6.02595,57.9099,11.3915,12.0232,47.219,7.27051,4.05299,34.4582,10.5294,3.62142,19.2051,9.37691,-12.3192,100.638,13.2887,-11.023,100.099,14.5885,-9.30596,102.993,2.88702e-006,-4.61995,89.0822,6.32576,7.04293,16.148,6.20967,9.07472,16.0509,7.19744,5.03622,16.296,8.71866,3.67783,16.3874,12.4285,9.64946,16.2596,12.8762,8.12609,16.2815,6.94637,10.8687,16.0627,12.5346,6.50487,16.2747,11.6699,4.9365,16.2451,10.3848,3.8086,16.3408,9.60555,12.7394,18.9683,10.9634,12.0624,18.9547,11.9403,10.9873,18.9959,7.98377,12.2097,16.0998,9.37919,12.6807,16.1273,10.702,12.01,16.1545,11.6758,10.9192,16.2016,2.80057e-006,-10.8378,88.8681,2.06918e-006,3.20154,90.9416,2.50836e-006,6.99537,97.6386,14.8259,-9.31841,101.15,13.076,-10.9374,101.991,2.46414e-006,-12.0029,90.4842,6.13622,6.84142,13.9934,7.17478,4.87997,14.3194,7.14533,4.64041,12.9085,5.83936,6.46843,12.1189,5.9863,9.08466,13.903,5.22126,9.71854,9.55079,4.79043,7.18018,9.52045,5.05912,7.16684,7.21602,4.94514,9.56147,7.40996,5.48935,8.95713,11.739,6.32916,5.16019,11.2705,6.1983,4.88989,10.0574,6.046,4.33043,8.09781,8.37105,0.603831,8.00854,7.16461,1.05316,6.92815,7.50254,2.65758,9.5276,6.37084,1.36297,5.47657,5.50851,4.35688,5.85471,7.3303,3.62795,10.9302,6.17207,11.4429,9.68908,5.64303,12.0412,7.49307,6.93037,13.5034,7.89069,7.3106,12.8491,9.97394,9.14058,14.2489,7.86805,9.03342,13.3868,10.1809,5.19867,12.2269,5.71716,6.65807,14.046,5.86518,4.62342,9.83046,5.62447,8.74193,2.92241,11.3834,8.9928,2.02976,10.0939,10.0484,2.99992,11.2987,10.2119,2.06511,10.0195,10.6472,0.330456,8.3099,11.392,-2.32045,6.20985,10.468,-2.40062,6.31308,9.57758,0.314506,8.35361,9.30003,-2.19537,6.28824,11.5569,4.99268,14.2763,10.2844,3.85899,14.4471,8.67313,3.67189,14.5138,12.0856,5.14152,10.1494,12.0523,3.32026,8.66841,11.2476,2.55802,9.56151,11.1603,3.63588,10.8521,12.5894,12.215,6.24447,12.6943,12.6926,4.26033,13.389,10.4248,4.55926,13.1764,9.97659,6.63309,11.1951,14.0001,6.06029,10.9738,14.2959,4.1022,12.2639,12.954,2.43117,13.1729,10.8657,2.6422,10.5715,14.3202,2.35519,12.0933,10.9743,1.36392,11.0671,12.4105,1.24328,10.1568,13.4465,1.29828,13.1746,5.63301,6.23258,13.4787,6.30912,4.52441,13.8941,3.98947,4.05989,13.5261,3.10835,5.40214,14.8232,1.15755,3.33073,14.268,0.233884,4.51861,12.9721,2.18963,6.47721,13.535,-0.67979,5.25313,12.6748,4.1932,7.47975,13.2668,9.43387,7.6192,13.2103,8.03472,6.22386,13.1952,7.84703,7.2739,13.1501,-10.8524,1.23963,13.6645,-10.7636,1.36855,13.7226,-11.1064,0.934105,13.3996,-11.2332,0.726734,13.7624,-11.1433,0.485871,14.0108,-10.8971,0.72968,14.3678,2.0097,0.856677,15.085,1.87404,1.9747,14.2253,4.615,2.5686,13.4553,4.75499,1.01419,13.7669,6.97273,2.82961,12.8814,7.06127,1.17376,9.48803,11.8769,0.784698,10.2946,10.4574,0.733264,13.3957,9.37665,2.74355,12.4215,9.32811,1.30841,11.3781,6.65463,0.671381,10.8965,8.9266,0.701674,8.72457,13.1563,1.10024,7.96376,11.1388,0.627666,7.12797,12.2915,0.997932,8.62409,9.7988,0.568451,8.35824,14.4273,2.3112,8.93441,14.6851,5.97037,8.61235,14.7268,4.03885,6.36543,13.9132,3.98896,11.1327,13.4271,7.99234,4.46198,9.715,3.93041,4.7168,9.36831,2.41696,4.95546,11.6063,2.32704,4.94098,12.0603,3.94935,6.26645,13.4335,2.28005,6.01341,10.9459,1.04035,5.80936,9.10341,1.17843,4.7337,7.20204,3.96571,5.14763,7.05887,2.52684,6.1459,7.18611,1.42764,10.6912,12.6758,10.4971,9.19963,8.27062,0.580028,13.8776,-10.1988,0.431797,13.865,-9.77008,0.6845,13.4242,-9.84262,0.583394,13.5591,-10.3739,0.341395,13.0096,-10.1591,0.667726,13.2058,-10.5332,0.412741,13.6974,-10.8465,0.315285,14.0478,-10.5093,0.500683,13.1978,-10.9253,0.478274,14.3925,-9.0323,0.643044,14.6384,-8.98294,0.58141,14.5383,-8.57698,0.739873,14.2435,-8.74431,0.835837,14.9028,-8.23462,1.01219,14.4857,-8.17659,0.974233,14.9041,-8.64997,0.755921,15.2116,-8.94253,0.883576,14.8876,-8.9556,0.601862,15.0785,-9.25803,0.65054,15.2542,-8.52104,1.20934,14.165,-8.37015,1.11559,14.1229,-8.73419,1.4065,14.2074,-9.12266,1.02868,14.1495,-8.00496,1.2943,14.4678,-7.80602,1.11708,14.1077,-8.30934,1.69291,14.4336,-9.38355,0.708155,14.4764,-9.48708,1.24746,14.5806,-9.69199,0.904222,14.7822,-9.41527,0.588626,14.9347,-9.76583,0.868307,5.76035,4.63101,2.68073,6.68488,4.87909,1.64498,6.20101,-1.47945,2.42098,6.94786,-1.26563,1.03496,7.04468,1.839,1.381,6.1926,1.88765,2.6151,5.38927,4.49972,4.10382,6.04531,1.68667,3.97092,7.21892,-1.83732,5.06809,6.43841,-1.65949,3.82422,12.8265,-8.62899,1.28468,12.8805,-9.12897,1.25017,13.3153,-8.89965,1.06885,13.242,-8.40167,1.06858,12.9018,-9.62709,1.0249,13.3433,-9.32944,0.886908,12.6416,-8.85548,1.87003,12.6982,-9.40358,1.76719,12.7455,-10.0124,1.42347,12.5841,-8.0212,1.1264,13.0414,-7.71971,0.931404,12.5477,-8.46391,1.85601,14.0992,-9.25094,2.21061,14.0893,-8.97323,1.67638,14.1123,-9.49901,1.37406,14.0934,-9.87742,1.76648,13.6228,-9.51371,2.51959,13.6617,-10.202,1.99563,14.1222,-10.0279,0.919428,14.0377,-10.4254,1.19498,14.221,-4.86618,3.92882,14.9776,-4.31972,3.65691,15.031,-5.52602,3.35139,14.5838,-5.84683,3.46832,13.5808,-5.57932,3.89032,14.1645,-6.25779,3.33878,15.1318,-6.2378,2.91524,14.7712,-6.58197,3.01156,14.3671,-6.85504,2.88726,15.5599,-4.90722,3.19406,15.3082,-5.44404,3.14094,15.7378,-5.4811,2.76599,15.3678,-5.87277,2.78078,13.6556,-6.61964,3.39628,13.9619,-6.634,3.16656,14.0587,-7.07297,2.81878,14.3481,-7.46672,2.38561,14.0909,-7.50433,2.33277,14.8477,-7.23055,2.58543,13.0959,-6.77743,3.53022,12.7063,-5.82092,4.06484,12.504,-7.04484,3.41656,11.8143,-6.28822,4.01038,12.1595,-4.53842,4.78857,11.2286,-4.81219,4.87485,12.9834,-4.16535,4.71074,13.3051,-7.50574,3.12718,12.7346,-7.68834,3.06379,12.1778,-7.37349,3.31721,12.2777,-7.82392,3.04968,11.761,-7.28029,3.61001,13.4145,-8.14531,2.84598,12.746,-8.33474,2.63977,12.3726,-8.27569,2.5807,13.7889,-7.295,2.97612,13.9317,-7.8868,2.47139,15.3207,-8.89702,1.50809,15.2871,-9.31985,1.13418,15.3233,-8.34542,1.88549,15.2364,-8.02306,1.48554,14.8828,-7.80794,1.18967,8.92808,-11.5428,2.21445,9.82283,-11.1347,1.84787,9.98634,-11.8081,1.7468,9.0577,-12.1006,2.06007,10.3254,-11.7046,0.931965,10.1162,-10.8827,0.977943,8.82858,-10.9435,2.39869,9.70265,-10.4165,2.07558,9.83306,-10.0595,1.17028,12.821,0.986806,0.649624,12.1199,3.64011,0.5279,10.49,2.36083,0.539995,11.0428,-0.129792,0.601954,15.1997,-9.55512,0.846323,6.2986,-7.64927,1.13093,6.04935,-6.55668,1.1387,5.85528,-6.65621,2.33152,6.20415,-7.86569,2.14221,6.71324,-8.4897,1.04353,6.63161,-8.79396,1.91131,6.40577,-6.72366,3.53239,6.7538,-7.93003,3.16436,7.16968,-8.9077,2.83929,7.07934,-9.24364,0.935108,6.94875,-9.62294,1.70406,7.72192,-8.86458,0.533383,7.28331,-8.17427,0.474359,6.89288,-7.42878,0.417247,7.49739,-9.78513,2.58638,7.2643,-10.0167,0.764739,7.99922,-9.59436,0.423802,8.75947,-8.61707,0.683707,8.11235,-7.95639,0.256861,8.92643,-9.33123,0.638095,7.77967,-7.31475,0.0739427,8.50647,-7.38213,0.0201091,8.90082,-7.846,0.256406,9.4214,-8.37083,0.821351,8.20652,-8.6824,3.40296,8.56182,-9.50239,3.07302,7.83504,-7.79303,3.804,9.22347,-8.27399,3.46364,9.53539,-8.88734,2.73058,9.59882,-9.67466,2.36464,8.74406,-10.2744,2.73693,7.69051,-10.5723,2.34665,9.01311,-7.61162,3.90593,9.69774,-7.5493,3.65237,9.87841,-7.92487,3.29854,9.97525,-8.38723,2.64334,10.4416,-7.62942,0.361482,9.64008,-7.75894,0.298219,10.2022,-8.57225,0.860125,10.9629,-8.46177,0.690436,11.779,-8.37141,1.01068,11.2201,-7.50254,0.492494,10.7445,-9.38862,0.995235,11.3413,-9.23972,0.797538,11.9976,-9.14867,1.11192,11.8007,-7.36299,0.597152,12.1755,-8.04072,1.11431,12.235,-7.14767,0.619453,11.6875,-6.35983,0.310867,11.4487,-6.77628,0.327422,10.7911,-6.66598,0.211417,12.6982,-6.88647,0.615528,13.5531,-7.55527,1.10767,13.1618,-6.67455,0.658187,13.7017,-8.31694,1.24627,9.82616,-6.77276,0.0915014,10.8673,-5.69725,0.312181,9.56733,-5.70037,0.292575,13.8105,-6.18601,0.643009,13.4512,-5.42772,0.391369,13.2763,-5.88739,0.44639,13.5125,-6.46937,0.681497,12.851,-5.81625,0.385544,12.6931,-4.70294,0.411169,12.2288,-5.96284,0.333157,11.7909,-5.14717,0.362124,14.1998,-5.83874,0.594926,13.9019,-4.93763,0.374737,14.3747,-6.66904,0.877922,14.0187,-7.05263,1.1111,14.6546,-5.52362,0.619178,14.4971,-4.66867,0.420181,14.8575,-6.42575,0.989419,16.0229,-4.45361,0.728636,15.8399,-3.55873,0.604677,15.217,-4.13524,0.502882,15.4619,-4.84381,0.685392,16.6212,-4.22995,0.924079,16.5192,-3.20301,0.91906,16.1497,-2.03457,0.898717,15.0363,-2.71746,0.65562,14.3991,-3.70475,0.50601,15.979,-5.2722,0.762332,15.4454,-5.66617,0.950241,15.4045,-6.13299,1.03906,15.8427,-5.89622,0.74354,16.3844,-5.83383,0.762368,16.5318,-5.12066,0.865381,12.3815,-8.39625,1.83408,12.0521,-8.53054,2.77355,11.8503,-7.93009,3.27967,12.2681,-8.6426,1.85096,14.01,-8.58186,2.37649,13.5196,-8.79274,2.73355,12.8823,-8.91048,2.52925,15.2082,-6.84317,2.29234,15.3605,-6.26927,2.19976,15.6571,-6.08587,2.20388,15.3441,-6.16108,1.53272,15.2583,-6.2813,1.53488,15.1716,-6.75764,1.55727,11.312,-8.55795,3.11657,11.1818,-7.9042,3.42051,12.1187,-9.23206,2.66175,11.4504,-9.33734,2.95005,12.3344,-9.16859,1.85951,10.487,-7.84756,3.32684,10.5458,-8.55609,2.75575,10.8059,-9.41421,2.51461,10.2391,-8.82714,1.74208,9.82301,-8.58943,1.69202,10.5398,-9.47688,1.68413,9.55442,-8.81376,1.59103,16.2716,-2.46781,2.70162,16.5061,-2.01261,1.73708,16.8041,-3.21487,1.64604,16.6024,-3.59896,2.48297,16.905,-4.27132,1.51667,16.7386,-4.58031,2.21789,15.7829,-1.14198,2.93049,16.0532,-0.591423,1.79696,15.305,-0.376024,0.805882,16.8359,-5.18725,1.33156,16.728,-5.95521,1.12653,16.7317,-5.43478,1.9181,16.6786,-6.20019,1.63886,16.3243,-5.05862,2.72955,16.3023,-5.78299,2.31408,16.2474,-6.4469,2.00232,15.6582,-6.54606,1.9787,9.98071,-13.099,1.31352,10.0622,-12.5322,1.59364,10.3425,-12.4741,0.934571,10.0613,-13.1014,0.862922,9.39078,-13.4334,0.83715,9.37934,-13.348,1.35458,8.22562,-13.0077,0.567674,8.0154,-13.0882,1.16651,8.61098,-13.4399,0.979777,8.63626,-13.3234,0.622011,8.72875,-13.3783,1.36935,8.39417,-12.9782,1.69185,9.27898,-13.2142,0.470208,9.23137,-12.7727,1.84098,11.6617,-12.4951,1.14074,11.4505,-12.1542,1.41988,12.0105,-12.0824,1.54426,12.1303,-12.4857,1.11723,12.1289,-12.4543,0.718089,11.5848,-12.4165,0.816953,11.234,-12.0429,0.992945,12.5278,-11.9059,1.32585,12.5391,-12.2988,1.06085,12.7195,-11.7302,0.937064,12.6003,-12.2176,0.752402,14.4163,-7.9877,2.236,14.1134,-7.87515,1.7998,14.0703,-7.55288,1.76772,13.9727,-7.54803,1.72586,14.1346,-7.59694,1.29724,13.7703,-7.15247,1.13276,15.3129,-6.41485,1.54177,15.1574,-5.88108,0.994848,12.447,-12.0199,0.551702,12.0471,-12.1204,0.500517,11.6334,-12.1718,0.569864,12.4639,-11.5986,0.584828,15.4616,-7.96845,0.541236,15.2166,-7.91915,0.762259,15.3923,-8.2193,0.929303,15.6687,-8.31083,0.773486,15.9049,-8.12906,0.601335,15.7841,-7.82461,0.422992,16.1608,-7.88271,0.750774,16.0999,-7.49556,0.464756,15.4046,-7.54046,0.479995,15.6625,-7.50862,0.377004,15.8186,-7.19344,0.409613,15.4486,-7.14299,0.546665,11.6183,-10.2284,2.7194,12.271,-10.013,2.50775,12.4526,-9.82325,1.7835,16.1876,-7.11865,1.73145,15.6178,-7.10259,1.80643,16.576,-6.8876,1.34785,11.3205,-11.624,1.64483,11.8837,-11.5662,1.85759,11.1658,-11.0591,1.96116,11.7746,-11.0145,2.30241,12.3684,-10.7584,2.11124,12.4165,-11.3567,1.64764,15.1518,-7.66213,1.04673,15.1878,-7.27794,1.31437,15.5456,-7.59772,1.50416,15.4506,-8.02146,1.22023,15.2475,-6.84305,1.49695,16.0607,-7.66985,1.39043,15.9247,-8.12671,1.11207,14.9105,-7.89794,2.35735,14.4364,-8.55855,2.04736,14.9669,-8.58657,2.13929,16.3806,-7.43509,1.01322,9.59822,-9.35305,1.4097,9.15894,-10.0924,0.386368,8.15633,-10.4134,0.143285,9.45523,-10.9758,0.167293,8.37926,-11.3218,-0.00672549,12.336,1.41835,7.37988,12.8761,-1.44533,5.73399,12.2017,-2.01277,6.05136,11.6063,0.748613,7.98349,4.76905,7.23127,5.65878,12.9053,6.56966,7.4624,13.2795,7.51331,8.78847,12.5332,5.66722,8.45049,13.7532,-1.58541,0.623519,8.26842,-5.24181,0.431271,9.31882,-3.96953,0.516601,6.71984,-4.38775,0.768981,7.22747,-5.39053,0.524179,6.70086,-6.545,0.378164,8.27253,-6.37333,0.266381,14.3766,-2.85984,4.24363,13.6853,-3.58659,4.54565,15.1713,-1.97822,3.8274,15.7057,-3.24549,3.42268,10.1064,-4.89492,4.85827,10.5617,-6.27257,4.18725,8.83703,-5.04633,4.92265,8.26013,-2.07161,5.9431,9.22691,-6.62889,4.26246,7.46832,-5.098,4.62284,7.6004,-6.68215,4.28203,6.35988,-5.05803,3.73007,13.3367,8.69654,4.77439,6.90632,10.407,0.671784,13.183,9.60069,8.81092,12.7872,6.87101,10.8128,12.9809,9.0585,10.4887,9.70578,5.99468,0.664242,7.11333,9.19027,0.715784,13.8151,-9.27421,1.02793,13.7755,-8.83186,1.23291,14.0256,-8.41207,1.75376,12.859,-10.5874,0.921346,14.4471,-9.06094,1.65937,16.1337,-4.22906,3.09849,14.9555,-9.13079,1.70849,14.9558,-9.57957,1.32163,10.1413,-7.27186,3.69364,10.9598,-7.21939,3.75557,9.06027,-7.07143,0.168233,7.10192,-10.4173,1.53802,8.69749,-12.1397,0.0502157,7.53415,-11.6751,0.520989,7.83341,-12.4136,0.525566,9.02549,-12.7828,0.229489,7.36386,-11.8788,1.3461,7.61574,-12.5256,1.28318,7.95848,-11.8297,1.96966,8.11977,-12.3905,1.88277,13.5083,-4.16205,0.438554,15.0561,-5.21133,0.665,14.9313,-4.64878,0.498657,14.8624,-7.27425,1.15458,14.4453,-7.34621,1.05582,13.9384,-7.86937,1.73672,9.88463,-12.5529,0.374947,9.72956,-11.8417,0.2046,9.85673,-13.0014,0.51161,12.3862,6.58537,14.2211,12.2448,11.6588,8.15425,11.8791,11.1038,10.4631,15.248,-7.65513,2.08168,15.1888,-7.42216,1.56389,11.4364,-11.8019,0.577782,11.9465,-11.6254,0.439499,15.2017,-7.58713,0.646504,15.1746,-7.31008,0.786437,12.978,-9.57843,2.34136,13.0614,-10.2612,1.85295,16.5763,-6.57004,0.912502,11.0466,-11.5063,1.16408,12.6421,-11.1299,1.20592,12.397,-10.9849,0.735663,11.8418,-11.0209,0.510674,11.2733,-11.2374,0.666386,10.8998,-10.9186,1.3455,12.5602,-10.4859,1.53858,12.2962,-10.361,0.944921,11.7268,-10.4268,0.650951,11.1421,-10.6535,0.792508,10.7409,-10.2423,1.53027,10.9913,-10.297,2.2764,10.9975,-10.0715,0.926043,12.1534,-9.78223,1.09462,11.572,-9.88311,0.78527,16.0116,-6.78051,0.538458,15.5469,-6.73684,0.665482,15.211,-6.92896,0.962492,16.3651,-7.0637,0.659944,15.2979,-6.53735,1.05743,15.6881,-6.3457,0.744732,16.2036,-6.35542,0.680179,7.34027,-10.8456,0.575993,7.20434,-11.1743,1.41523,7.82901,-11.244,2.11346,8.99447,-0.89785,0.73473,5.86416,-4.95529,2.38571,12.4841,6.6366,12.493,12.6884,8.17325,14.1944,12.7606,8.38563,12.4061,12.8321,10.469,8.51414,9.23136,12.7008,14.1868,10.6045,12.0684,14.2421,75.0856,5.10617,139.686,73.6641,4.4637,140.133,74.53,3.40775,139.768,75.4477,4.0768,139.452,75.2405,6.25739,140.022,74.059,5.95469,140.406,75.6266,7.2244,140.728,76.2711,6.48942,139.658,76.6117,7.39556,140.391,76.2508,7.59616,141.656,77.13,7.75983,141.272,74.9823,7.42316,142.038,74.4675,6.93632,141.044,76.1908,5.42927,139.326,75.614,7.25776,143.154,76.2317,6.20468,143.84,76.3469,4.65461,144.198,75.9872,2.97497,144.097,77.849,2.63527,143.459,78.2554,4.55643,143.563,78.1811,6.14528,143.107,76.7761,1.08997,142.843,75.1,1.66321,143.462,77.3332,7.29247,142.44,77.6684,7.65302,141.812,77.9781,7.88778,140.96,78.5145,7.70874,141.622,76.3095,4.49796,139.202,75.4467,0.584837,141.891,73.809,1.26114,142.231,78.9664,7.25878,142.046,79.5172,6.68777,142.29,75.2797,2.50191,139.3,76.0695,3.19251,139.116,73.0876,1.93957,141.073,73.115,2.98944,140.457,89.755,9.09481,138.615,89.6741,9.0519,138.875,89.4033,9.05709,138.895,89.3785,9.17559,138.56,89.9588,8.86732,138.673,89.7616,8.84692,138.974,92.009,4.14351,138.482,92.064,4.33235,138.785,92.5879,4.3744,138.677,92.7179,4.28395,138.415,92.7863,4.60785,138.765,93.1401,4.55955,138.397,87.003,-2.12604,139.639,86.9588,-2.36103,139.442,86.5365,-2.37093,139.325,86.4696,-1.94273,139.832,85.6016,-2.01473,139.645,85.7258,-1.64051,140.13,87.1425,-1.79222,139.771,86.6473,-1.48419,140.012,85.8965,-1.08558,140.287,87.0018,-1.12389,139.655,87.3034,-1.53419,139.74,87.5817,-1.67465,139.575,87.544,-1.9705,139.519,87.4078,-2.28052,139.412,86.0514,-0.584284,139.955,85.1542,-0.134108,140.278,85.0362,-0.667657,140.661,84.8852,-1.28056,140.519,86.0924,-0.322304,139.339,87.0292,-0.723082,139.102,85.2464,0.0371602,139.555,84.2117,0.371118,140.666,84.5953,0.402873,139.759,85.1772,-0.0732268,138.857,85.9861,-0.373934,138.68,84.5593,0.37323,138.977,88.0091,-2.09958,139.206,87.8451,-2.48042,139.104,87.9075,-1.55523,139.241,88.6715,-2.34604,138.877,88.4853,-2.76494,138.783,88.8129,-1.89085,138.763,89.3226,-2.6238,138.569,89.1546,-3.01859,138.5,89.658,-2.27493,138.352,87.2223,-2.76872,138.337,87.4154,-2.68848,138.921,88.2757,-3.07113,138.48,88.0968,-3.1122,137.972,89.1825,-3.3904,138.158,88.9757,-3.41205,137.666,89.9417,-3.57971,137.869,89.7819,-3.66323,137.448,90.5207,-3.74201,137.706,90.4756,-3.88489,137.345,89.6085,-3.40496,138.216,89.8524,-3.45891,138.104,90.2788,-3.33436,137.994,90.6814,-3.45811,137.919,90.0056,-3.26403,138.166,90.9736,-3.84853,137.654,91.0987,-3.97726,137.342,91.0663,-3.90462,136.989,90.5132,-3.75581,136.948,89.753,-3.47314,137.031,91.2071,-3.63795,137.796,90.8415,-3.08496,137.931,91.3829,-3.27221,137.802,90.4206,-2.97786,138.033,90.9545,-2.75154,137.759,91.3762,-2.97177,137.655,90.3679,-2.5433,138.003,90.6593,-3.3944,136.739,91.3316,-3.67389,136.869,89.8527,-3.05642,136.804,90.8403,-2.9718,136.747,90.0406,-2.5871,136.843,91.5007,-3.29971,136.873,88.912,-3.15474,137.218,88.9999,-2.68111,136.986,89.2125,-2.19149,137.093,89.6606,-3.17648,138.339,89.7938,-2.8401,138.389,90.132,-2.94259,138.216,89.9305,-2.59723,138.336,90.1595,-2.67554,138.217,91.4954,-2.9571,137.008,90.9995,-2.63453,137.006,90.252,-2.26919,137.169,89.4542,-1.91273,137.474,90.3907,-2.23107,137.627,89.6273,-1.92211,137.952,88.6563,-1.50172,137.833,88.3944,-1.77687,137.394,88.8183,-1.54437,138.358,91.5699,-2.95592,137.35,91.0664,-2.55675,137.425,87.5408,-1.41008,137.738,87.2761,-1.96284,137.581,88.1442,-2.30234,137.243,87.8094,-1.08862,138.193,86.6313,-1.09934,138.043,86.3688,-1.67711,137.934,86.8995,-0.719207,138.485,85.4263,-1.41906,138.235,85.3474,-1.92708,138.546,86.2594,-2.20876,138.182,85.6943,-0.80747,138.25,87.1578,-2.50506,137.821,87.9526,-1.13663,138.771,85.4604,-2.10835,139.07,84.4586,-1.63553,138.914,84.5801,-1.80774,139.451,83.5159,-1.32567,139.232,83.6213,-1.49325,139.837,84.7356,-1.6782,140.031,83.7954,-1.32488,140.452,84.229,4.12474,138.529,85.2121,4.21191,138.783,85.0616,4.99846,138.695,84.0693,5.00288,138.466,84.5611,3.23185,138.825,85.3464,3.62322,139.269,85.8767,4.9995,138.589,85.9376,4.27201,138.763,85.9766,3.81125,139.24,86.7055,3.84605,139.078,86.6825,4.28023,138.566,86.6992,5.00802,138.352,85.9283,3.77986,139.886,86.7181,3.80183,139.688,87.6295,3.85504,139.465,87.5812,3.88669,138.893,87.5718,4.31483,138.402,85.319,3.73531,140.009,85.2287,3.33902,139.482,85.063,3.4428,140.06,85.4013,2.9631,139.241,85.3986,3.09744,140.058,86.1188,2.68903,139.148,86.1064,2.83097,139.888,85.2482,2.26829,138.783,85.9826,2.13281,138.7,84.2501,2.44678,138.707,87.0006,2.5747,139.598,86.9276,2.52032,138.882,86.7314,2.01539,138.412,88.0464,2.33208,139.239,87.9017,2.30713,138.554,88.0571,2.01523,139.927,86.9104,2.3338,140.285,85.9248,2.63785,140.631,87.6695,1.81731,138.12,89.1607,2.05467,138.824,88.9741,2.03667,138.21,88.7145,1.58402,137.795,86.6967,1.93391,140.761,85.7315,2.19474,141.124,87.6089,1.68577,140.426,88.5401,0.923424,137.857,87.5053,1.15039,138.198,89.798,1.36782,137.465,90.0715,1.79569,137.883,89.6174,0.707946,137.497,86.7133,4.10056,140.208,87.7082,4.11754,139.997,87.4908,4.55901,140.269,86.6962,4.59142,140.453,85.8423,4.10766,140.466,85.8302,4.64267,140.725,86.7545,5.10074,140.354,87.5593,5.01669,140.194,88.0873,4.56041,140.184,88.1136,4.28546,140.11,88.1475,4.94159,140.131,85.843,5.19079,140.603,88.5739,4.55467,140.036,88.4423,4.2879,140.005,88.6364,4.93651,140.0,89.097,4.54536,139.803,88.7147,4.13416,139.71,89.1635,4.98987,139.759,88.5832,5.21795,139.898,88.889,5.40351,139.533,89.8399,5.43233,139.23,89.854,5.02126,139.527,89.7929,4.56616,139.573,88.5281,3.93843,138.7,88.6001,3.88931,139.229,89.5539,3.90117,138.995,89.4502,3.9929,138.496,90.4256,3.95949,138.788,90.2929,4.07941,138.322,89.6801,4.15429,139.396,90.5907,4.22268,139.206,88.5124,4.36125,138.252,89.4124,4.40721,138.077,87.6238,5.00384,138.182,88.5672,5.00067,138.032,89.4656,5.00759,137.863,90.2417,4.48262,137.968,90.3035,5.01848,137.795,89.6136,5.53855,138.143,90.462,5.49476,138.041,88.7003,5.56916,138.315,87.7515,5.60173,138.499,86.8019,5.64704,138.682,91.0998,4.1467,138.181,91.2247,4.03603,138.616,91.0556,4.5322,137.874,91.3693,4.27204,139.013,91.9608,4.20284,138.088,88.2751,1.47695,140.17,88.4613,1.73115,140.044,88.8472,1.35073,139.899,88.8426,1.64072,139.859,89.2248,1.7442,139.42,89.4931,1.26036,139.524,90.3784,1.52253,138.906,90.3675,1.1044,139.14,90.281,1.80719,138.444,91.4524,1.27492,138.654,91.2053,0.924911,138.891,91.3041,1.56484,138.203,91.1011,1.53381,137.694,92.1453,1.32487,138.069,92.2145,1.04663,138.467,92.0094,1.29996,137.597,90.8556,1.14903,137.316,91.8181,0.953334,137.238,90.6865,0.558558,137.293,91.6673,0.412993,137.173,90.6833,0.0672284,137.613,91.6352,-0.0774454,137.423,89.6193,0.212215,137.91,88.5158,0.445352,138.304,89.7684,0.0603147,138.461,90.8414,-0.109251,138.11,88.6128,0.316818,138.899,92.8312,1.08433,138.006,92.7603,0.872702,138.323,93.1833,0.72168,138.289,93.3809,0.791165,138.021,92.8034,1.05741,137.584,93.3411,0.813873,137.672,93.6358,0.400693,138.044,93.23,0.423735,138.408,93.4295,0.496174,137.524,93.1627,0.0244567,138.395,93.591,-0.0327969,138.011,93.3505,0.0897883,137.473,92.7057,0.527276,138.478,92.3368,0.615916,138.524,92.2566,0.239007,138.487,92.6207,0.133208,138.45,91.7598,0.762478,138.778,91.8394,1.00485,138.724,92.0806,0.932276,138.663,92.1063,0.663325,138.682,91.6755,0.40483,138.741,92.0308,0.318717,138.642,91.0911,0.495444,138.864,91.8854,0.0884241,138.563,91.6331,0.144123,138.631,91.9451,-0.0849106,138.346,91.1343,0.0672102,138.572,91.7367,-0.261614,137.899,89.9998,0.264513,138.924,90.2294,0.652357,139.147,88.6999,1.00963,139.882,89.3383,0.847885,139.523,88.8014,0.557826,139.448,88.5005,0.787615,139.851,88.1143,0.863705,140.038,88.1305,1.12935,140.167,87.5972,0.787201,139.98,87.4283,1.2402,140.436,86.409,0.995683,140.359,86.4951,1.42562,140.788,86.3983,0.765397,139.667,87.47,0.585917,139.323,87.4458,0.698768,138.677,86.47,0.881424,138.952,85.4877,0.945202,139.892,85.4184,1.16873,140.654,85.6538,1.0246,139.133,85.5338,1.61827,141.139,84.5059,1.25129,140.81,84.656,1.766,141.446,84.8168,2.46883,141.517,86.5732,1.33267,138.454,92.5851,0.252417,137.216,92.5075,-0.177255,137.418,93.1317,-0.218856,137.536,93.1854,-0.348093,137.907,92.5051,-0.353862,137.838,93.0027,-0.256468,138.232,92.5258,-0.194688,138.225,90.4622,4.60307,139.414,90.5146,5.01076,139.375,90.9536,4.40972,139.282,90.9407,4.64665,139.338,90.987,4.9796,139.325,90.7415,5.39754,139.083,91.0643,5.22317,139.224,91.5414,5.38745,138.92,91.3222,5.22606,139.17,91.36,4.9856,139.24,90.6269,5.63614,138.551,89.7572,5.66332,138.703,91.2922,5.47453,137.955,91.4534,5.61749,138.431,88.823,5.68153,138.915,92.2608,5.33251,138.728,92.2576,5.51198,138.356,92.1696,5.41374,137.93,92.7731,5.22229,138.645,92.9255,5.2945,138.364,92.8777,4.95561,138.783,92.2661,5.00559,138.93,91.7256,5.01297,139.057,92.0588,5.0097,137.716,91.1287,5.02739,137.737,92.8248,5.2786,138.032,92.9228,4.9653,137.933,92.1905,4.63925,138.937,91.6623,4.64805,139.082,91.3067,4.65854,139.25,91.2026,4.41967,139.222,83.697,1.07283,140.99,84.0782,0.892557,140.549,83.4399,0.740345,141.207,82.8304,1.28832,141.688,83.6872,1.42338,141.346,84.395,0.848289,139.873,84.795,1.04932,139.96,91.9771,4.55093,137.808,92.8488,4.57643,137.957,93.2326,4.94996,138.39,92.6407,4.28903,138.1,91.7269,-3.40315,137.358,91.5499,-3.79252,137.363,88.5502,8.62913,139.277,88.5534,8.92693,139.038,88.8641,8.84204,139.157,88.8919,8.65893,139.243,89.0148,8.86236,139.122,89.0971,8.69172,139.18,89.0506,8.9978,138.957,89.146,8.44945,139.214,88.9433,8.40248,139.277,89.1365,8.2528,139.196,88.9897,8.21377,139.234,88.6273,8.30241,139.332,88.7563,8.01078,139.159,89.5738,8.11465,138.717,89.8814,8.31918,138.737,89.8567,8.30216,138.464,89.5479,8.13969,138.378,90.0029,8.59337,138.718,89.8934,8.52491,138.347,89.773,8.37115,138.951,89.7969,8.58315,139.001,89.8345,8.8084,138.296,89.7184,9.03003,138.334,89.3666,9.05951,138.208,89.4107,8.73455,138.046,89.4847,8.37859,138.119,88.8273,9.01568,138.152,88.8389,8.62753,137.955,88.9084,9.14929,138.558,84.8253,-0.560923,138.488,84.0224,-0.204307,138.662,83.6272,-0.84851,138.779,84.5275,-1.16106,138.553,84.543,0.777235,139.286,88.2153,8.89437,138.196,88.2233,8.47556,138.012,88.3376,9.06312,138.612,75.9017,1.84605,138.696,74.9062,1.58871,139.556,75.6998,0.751492,138.77,76.2639,2.47153,138.715,86.3499,-2.42668,138.707,87.2353,-2.45825,139.303,78.2421,0.95222,142.7,78.7998,1.81561,142.922,79.3032,2.91175,143.132,79.3833,2.29132,142.907,79.5357,3.8833,143.147,79.6637,1.40195,142.588,80.0702,2.10508,142.666,80.32,2.82784,142.836,80.5466,1.03755,142.302,80.9243,1.82738,142.395,81.2619,2.64924,142.565,79.2191,0.655693,142.414,80.18,0.342269,142.134,78.0813,0.357631,142.313,78.7194,0.0266225,141.992,79.6429,-0.470147,141.543,79.6742,5.76613,142.685,79.6799,4.96189,142.979,79.9842,4.40657,142.97,80.7528,5.01147,142.57,80.7526,4.34589,142.693,80.5546,3.65085,142.818,80.7532,5.69763,142.296,80.3237,7.89443,140.133,80.7622,7.79556,140.801,79.657,7.7894,141.194,79.1723,7.94178,140.504,78.8,7.56709,139.74,77.5915,7.51753,140.074,79.9893,7.52817,139.455,81.9748,7.80859,139.236,82.3343,7.97207,139.817,81.3699,7.91627,139.922,81.0476,7.62997,139.291,82.7356,7.8509,140.327,81.7999,7.82162,140.516,81.2081,7.43116,141.219,80.1402,7.36357,141.582,83.0771,7.55165,140.766,82.2382,7.506,140.938,81.5927,6.97137,141.512,80.6143,6.89861,141.807,83.3055,7.04217,141.075,82.5221,7.01422,141.275,80.804,6.32761,142.03,81.7312,6.35401,141.73,81.7337,5.68178,141.987,83.4642,6.30704,141.205,82.6217,6.34933,141.478,83.3489,5.55464,141.617,82.5949,5.63281,141.774,80.0077,6.28122,142.333,83.2597,8.00282,139.698,83.5804,7.87649,140.169,82.9486,7.9138,139.177,81.9188,7.20272,138.636,82.8601,7.4514,138.688,83.9036,7.58427,138.688,84.7589,7.67008,138.594,84.6954,8.11671,138.9,83.9291,8.01709,139.045,84.7861,8.22841,139.403,84.1246,8.11003,139.544,81.0031,6.87649,138.695,84.9298,8.05828,139.87,84.3471,7.96231,140.008,85.4014,8.38454,139.26,85.3795,8.25298,138.748,85.492,7.78971,138.484,85.4791,8.19999,139.747,86.1685,8.3802,139.646,86.0875,8.55991,139.104,86.0501,8.00994,140.001,85.554,7.87507,140.093,85.0681,7.75251,140.219,84.5363,7.66745,140.378,85.1909,7.32727,140.329,84.6592,7.2089,140.526,78.5399,6.76933,139.067,77.2954,6.6575,139.333,79.8345,6.76502,138.852,78.5074,5.70282,138.737,79.9099,5.70302,138.551,77.2374,5.60794,139.004,77.3154,4.66862,138.923,78.5658,4.7153,138.692,76.9793,2.40884,138.386,76.6632,1.60975,138.161,77.6524,1.37358,137.86,78.1158,2.2536,138.181,79.4848,1.91741,138.299,79.7781,2.84256,138.571,78.3812,3.05584,138.549,79.9492,4.66855,138.518,82.8497,4.30191,138.429,82.8319,5.16906,138.387,81.4553,5.70997,138.397,82.3072,6.33688,138.364,78.8985,0.988056,137.878,80.2273,0.585861,138.268,81.1687,1.50497,138.604,77.0369,0.517904,137.863,78.1004,-0.0608448,137.595,76.4113,0.930331,138.171,75.001,0.429984,140.908,76.3854,-0.20566,141.405,75.7362,-0.413366,140.519,76.0323,-0.954309,139.238,75.4385,-0.167836,139.568,76.4105,-1.08293,140.201,77.09,-0.83772,140.98,77.0365,-1.64463,139.791,76.6572,-1.55265,138.857,77.7312,-1.41781,140.518,77.221,-2.00113,138.478,77.5492,-2.11805,139.32,77.9025,-2.53482,138.825,77.6709,-2.38562,138.082,78.2238,-1.95615,139.984,78.5132,-2.43413,139.425,78.1579,-2.96299,138.35,78.0362,-2.79135,137.696,78.7432,-2.85984,138.915,78.5962,-3.47531,137.926,78.4737,-3.24217,137.346,79.0679,-3.34749,138.468,79.0324,-3.97838,137.486,78.9033,-3.67373,136.933,79.4588,-3.88485,138.005,78.6557,-2.83971,136.911,79.0887,-3.22316,136.563,79.348,-4.04598,136.415,79.5708,-3.53364,136.123,79.0853,-2.38958,136.776,79.4945,-2.8056,136.497,79.9777,-3.1533,136.164,79.47,-4.48889,136.979,78.7488,-1.94472,137.04,78.2573,-2.41555,137.203,79.5792,-2.08626,137.081,79.3246,-1.62749,137.359,78.4952,-1.48296,137.291,77.8905,-1.98299,137.484,79.22,-1.19059,137.598,79.9402,-2.54993,136.78,79.8432,-4.34961,135.864,80.0959,-3.81069,135.638,79.9516,-4.8257,136.37,79.9691,-4.87717,136.799,79.8032,-4.77286,137.023,80.481,-4.96785,136.658,80.7514,-5.07588,136.35,80.3973,-5.00749,135.909,80.3674,-4.6353,135.448,80.2884,-4.87234,136.996,79.2479,-2.14233,139.746,79.3652,-2.53385,139.243,79.8404,-1.7423,139.611,79.1949,-1.59469,140.432,80.0615,-1.43082,139.982,79.7797,-2.04887,139.233,78.6097,-1.00612,141.054,79.808,-1.09127,140.903,81.7387,-0.699855,141.098,81.2826,-0.993497,139.956,80.5028,-1.06946,140.341,80.8216,-0.544008,141.361,77.5056,-1.4778,137.725,78.3145,-0.916027,137.468,76.9813,-0.891126,137.945,79.332,-0.700208,137.792,79.8667,-1.1802,138.432,80.2847,-0.788936,138.778,79.779,-1.56149,138.095,80.4046,-0.309065,138.493,79.5772,-0.12293,137.925,81.6601,4.2599,142.385,81.5067,3.4962,142.521,82.5099,4.10053,142.117,83.3827,3.89094,141.816,83.2151,3.07872,142.139,82.3862,3.30259,142.298,83.0042,2.2033,142.121,82.156,2.41352,142.334,83.3361,4.78317,141.837,82.5748,4.88778,142.032,81.7242,4.98652,142.256,84.0671,4.11561,141.428,84.0829,4.75248,141.558,84.0627,5.42034,141.355,84.8972,5.29635,140.936,84.9417,4.69839,141.09,84.9259,4.07627,140.785,84.069,6.60931,140.776,84.0998,6.27792,140.671,84.0115,5.92708,140.939,84.3865,6.27877,140.282,84.6732,6.70199,140.305,84.7398,5.78991,140.435,85.2681,6.9429,140.079,84.8197,6.56228,139.692,85.2998,6.78547,139.593,85.8498,5.60496,140.164,84.6203,3.57597,140.766,84.1547,3.69278,141.273,84.939,3.05419,140.98,84.056,3.36185,141.548,81.8205,1.53272,142.092,83.7938,1.99604,141.836,83.958,2.75415,141.897,82.3732,0.471206,141.816,81.4736,0.754339,142.035,83.208,0.130024,141.509,82.0867,-0.154134,141.738,82.9864,-0.51708,141.429,84.1064,-0.245806,141.083,83.9615,-0.897056,140.956,82.7217,-0.977925,140.863,82.4975,-1.16242,140.15,82.6348,-0.395167,138.857,83.0621,0.631989,138.698,80.5129,-3.43741,135.76,80.9312,-3.30518,136.106,80.3976,-2.96365,136.457,80.7734,-2.97325,136.938,80.3017,-2.51231,137.313,81.2996,-3.4071,136.588,81.449,-3.78075,137.058,80.9479,-3.26976,137.45,80.4554,-2.73239,137.851,80.7866,-3.81069,137.77,80.3068,-3.12671,138.161,81.2508,-4.3472,137.283,79.9538,-2.02243,137.712,80.0803,-2.20295,138.325,79.9072,-1.7185,138.841,81.0764,-3.83519,135.425,81.4693,-3.74168,135.789,80.664,-4.1604,135.272,81.5419,-4.38012,135.246,81.892,-4.30811,135.561,81.7831,-3.88096,136.26,82.1366,-4.38885,135.978,81.1629,-4.5956,135.112,81.777,-4.92602,135.257,82.0925,-4.87601,135.497,81.462,-4.9493,135.132,81.8679,-4.23014,136.676,82.172,-4.61966,136.349,81.7127,-5.32109,135.462,82.0645,-5.2918,135.672,81.3124,-5.215,135.287,81.1669,-5.31954,135.595,81.434,-5.39348,135.84,80.8684,-4.94323,135.263,80.8135,-5.19634,135.688,82.3036,-4.85728,135.815,82.2715,-5.16737,135.856,82.3149,-4.89076,136.115,82.1735,-5.14779,136.175,81.9388,-4.94062,136.52,81.8273,-5.38011,136.089,81.5039,-5.1758,136.417,81.0703,-5.24948,136.115,81.6297,-4.65647,136.831,81.2093,-4.98653,136.693,80.9386,-4.82894,136.988,80.9392,-4.4884,137.466,80.6884,-4.72201,137.277,80.4689,-4.48686,137.565,80.782,-4.30927,137.646,80.0642,-4.6937,137.32,79.7898,-4.35555,137.608,80.2574,-4.07244,137.852,79.9335,-3.52274,138.217,84.8771,5.79549,139.106,84.5861,6.20412,139.296,83.9042,5.9501,138.692,84.5887,6.51662,139.072,84.1538,6.98788,138.674,83.1809,6.71337,138.514,84.976,7.13497,138.651,85.2153,6.81565,139.061,85.6826,7.28766,138.571,85.837,7.02037,138.975,86.1887,7.94562,138.375,86.3493,7.47306,138.449,86.4828,7.22095,138.825,86.8689,8.12481,138.186,87.0213,7.64921,138.263,87.1707,7.4126,138.644,86.5277,7.21089,139.3,87.2613,7.41414,139.101,85.8743,6.99536,139.467,86.08,8.40115,138.605,86.7979,8.58229,138.431,86.8496,8.766,138.913,84.9781,5.93924,139.737,84.5997,6.2699,139.762,85.8876,5.79309,139.549,85.8672,5.6623,138.915,86.8551,5.50224,139.933,86.8786,5.72973,139.33,87.8544,5.691,139.131,87.8884,5.40854,139.776,85.0552,1.56297,138.718,84.0398,1.68826,138.702,84.8629,1.01184,139.149,84.0061,0.896297,138.817,85.6852,7.47797,140.178,85.8218,7.14933,139.918,86.4852,7.40843,139.774,86.1692,7.6547,140.058,87.2938,7.63468,139.544,86.988,7.71893,139.795,86.7103,7.63844,139.883,86.5888,7.82334,139.978,88.0915,7.80444,139.295,87.9918,7.61006,138.918,87.5145,8.03399,139.672,88.1178,8.16533,139.479,87.0151,7.9442,139.843,87.8557,7.622,138.5,88.632,7.79703,138.797,88.4876,7.81711,138.409,87.4035,8.39471,139.618,88.0131,8.5447,139.414,86.9219,8.22915,139.804,86.7694,8.40426,139.718,86.9954,8.6188,139.425,87.8218,8.82702,139.157,86.4929,8.10593,139.933,88.3356,8.05881,138.101,87.6998,7.85625,138.151,87.5657,8.30496,138.068,89.0565,7.97617,138.357,88.9353,8.21853,138.051,89.1541,7.95677,138.731,87.5324,8.74824,138.287,87.6348,8.94194,138.728,89.2186,8.15279,139.058,89.5426,8.26234,138.984,89.3027,8.46856,139.15,89.5215,8.51886,139.103,89.2505,8.75499,139.127,89.4741,8.80692,139.077,86.4856,8.32032,139.798,85.819,1.47144,138.671,88.0385,-2.82657,137.486,88.253,5.21579,139.978,92.7049,0.727418,137.27,77.303,0.155659,142.082,77.9359,-0.433817,141.559,83.8417,7.59792,140.578,84.0114,7.12317,140.801,79.5844,-2.95923,138.719,79.9528,-2.54134,138.676,80.0776,-1.36184,139.245,80.4243,-1.129,139.515,81.178,0.106751,141.915,77.123,3.15548,138.727,82.4431,-0.986239,139.419,81.2783,-0.823938,139.342,81.3118,-0.0743926,138.775,76.3076,-0.21066,138.313,74.784,0.772766,140.08,82.9158,5.75839,138.41,81.2752,2.634,138.603,81.3996,4.54793,138.426,82.0165,0.719486,138.667,82.8885,3.40542,138.532,82.8065,2.55702,138.632,81.3716,3.58269,138.502,79.9171,3.74467,138.569,78.5503,3.8644,138.694,77.3128,3.88741,138.889,82.7628,1.69912,138.697,76.4794,3.85344,139.114,74.0794,2.42692,140.106,74.2011,1.06393,141.232,74.0104,1.55833,140.616,2.92105,-11.6999,167.707,2.78718,-11.7492,167.292,2.48548,-12.1123,167.646,2.56525,-12.0748,168.13,7.65617,-3.52328,173.465,7.54015,-4.09876,173.4,7.58091,-3.91822,174.431,7.6998,-3.44589,174.228,8.274,-2.2529,174.311,8.23952,-2.69841,174.418,8.74055,-2.04251,175.299,8.73654,-1.80688,174.888,8.00331,-3.1196,174.382,8.30173,-2.26782,175.403,8.15059,-0.904966,171.756,8.3773,-0.45721,171.712,8.04556,-0.901113,171.073,7.92311,-1.2812,171.243,8.51302,-0.653136,172.681,8.84242,-0.131758,172.732,8.74733,-0.57783,173.788,9.10587,-0.0509636,173.95,8.76253,0.331052,172.851,9.10933,0.40547,174.204,9.08417,-1.11025,175.088,9.11139,-1.05575,175.591,8.64236,-1.08916,175.718,8.68009,0.41523,174.241,8.32132,0.379019,172.924,7.84246,0.0112108,171.799,8.27742,-0.066558,171.706,7.93157,-0.612386,170.862,7.5263,-0.564604,170.925,7.48226,-1.36179,170.186,7.21485,-1.39754,170.386,7.25227,-2.25883,169.799,7.48878,-2.07048,169.684,7.92568,-0.164729,172.788,7.54862,-0.397339,171.889,8.19312,-0.164666,173.809,7.83687,-2.69073,174.899,8.11047,-1.33127,175.147,7.2854,-0.815206,171.103,7.19222,-0.539022,171.901,7.10288,-0.829617,171.219,7.09996,-2.14149,169.856,7.05335,-0.835547,170.547,7.22768,-2.80908,169.841,7.44918,-2.71865,169.756,7.77911,-2.24356,169.701,7.71457,-1.64296,174.696,7.61994,-2.85051,174.722,7.37521,-3.11939,170.377,7.65035,-2.83913,170.222,7.98713,-2.35557,170.245,8.05207,-1.68763,170.565,7.89189,-1.46093,170.148,7.96773,-1.79722,170.95,7.93095,-2.29882,170.948,7.54343,-3.0737,171.389,7.38663,-3.43076,171.028,7.48643,-3.71884,171.718,7.67329,-3.26899,171.995,7.73298,-3.42739,172.705,7.55454,-3.96443,172.512,7.80392,-2.95308,172.872,7.81621,-3.03701,173.655,8.85008,-0.813701,174.527,9.17535,-0.421292,174.777,8.88784,-1.13828,174.806,9.2164,-0.112449,175.182,8.78815,-0.100394,175.253,8.25138,-0.473484,174.672,7.714,-0.777902,174.225,7.62643,-0.46263,173.491,7.43252,-0.384816,172.696,7.95198,-2.73413,173.728,8.05091,-2.31034,173.756,7.87583,-2.19867,173.248,7.63424,-2.52789,172.855,7.74936,-2.94608,172.184,7.67126,-2.66894,171.673,7.53372,-2.9878,170.93,7.71648,-2.74346,170.933,6.77471,-1.06019,169.238,6.613,0.112684,169.31,6.42502,-0.0957066,167.885,6.43428,-1.47182,167.758,7.69313,-2.5628,175.578,7.78719,-1.31781,175.42,7.18572,-0.0160921,171.839,7.07653,0.852203,171.977,6.84671,0.441288,170.649,7.68843,-0.403994,174.803,7.55069,0.0875121,173.914,7.38165,0.227099,172.915,4.8381,4.44731,167.72,4.99546,4.56519,166.095,5.73141,3.30234,166.145,5.56019,3.27294,167.769,6.02102,2.1462,167.829,6.09836,2.13006,166.214,6.26137,1.01093,166.299,6.28198,1.04302,167.89,3.74205,5.53753,167.692,3.80118,5.72534,166.099,2.47701,6.19231,167.677,2.47006,6.32495,166.085,6.26906,-0.11854,166.319,6.16929,-1.24071,166.142,1.25614,6.4308,167.701,1.25738,6.4658,166.127,7.37617,-4.71202,172.268,7.40689,-5.01569,173.371,7.30118,-4.32756,171.33,7.22348,-3.91088,170.544,7.14228,-3.44512,169.9,7.03637,-2.91905,169.442,6.90121,-2.14952,169.238,3.46886,-8.76254,183.458,4.66376,-7.86963,182.947,4.51361,-9.02447,181.907,3.35403,-9.98945,182.256,5.53824,-7.93531,181.466,5.66792,-7.00236,182.327,4.44635,-9.85536,180.824,3.29078,-10.8587,181.066,5.4935,-8.65088,180.459,1.02849,-11.9692,181.202,1.04603,-11.1893,182.516,1.03559,-10.2658,183.699,4.43668,-10.4219,179.818,3.27735,-11.3996,180.012,5.47949,-9.21732,179.446,6.35926,-7.33063,180.034,6.34267,-7.85717,178.891,1.01989,-12.4182,180.082,2.129,-11.5684,181.185,2.11441,-12.0601,180.084,2.16735,-10.7311,182.458,2.1897,-9.58555,183.744,6.32458,-6.81044,181.077,6.23378,-6.39913,181.813,7.14228,-6.13034,173.22,7.15314,-5.6468,171.917,6.85415,-6.63741,171.391,6.74124,-7.44617,172.866,7.112,-5.12115,170.835,6.85772,-6.0048,170.245,7.05743,-4.57952,169.954,6.81158,-5.36617,169.278,6.97268,-3.97643,169.274,6.73199,-4.67473,168.494,6.82906,-3.29792,168.761,6.57856,-3.91989,167.913,6.27286,-8.43552,177.799,5.46267,-9.69493,178.515,6.13531,-9.0756,176.969,5.42723,-10.1255,177.681,4.45588,-10.8257,178.928,4.48138,-11.1471,178.088,3.30484,-11.7528,179.116,3.34365,-12.0159,178.272,2.12688,-12.3813,179.164,2.13851,-12.6008,178.319,1.02282,-12.7089,179.152,1.01546,-12.8846,178.314,-4.59452e-005,-12.7952,179.153,-4.59375e-005,-12.957,178.318,6.59518,-8.17956,175.912,6.9585,-6.94172,176.622,7.00691,-6.35673,178.288,6.99695,-5.88615,179.637,6.90414,-5.51614,180.869,7.13294,-6.50611,174.744,6.77024,-7.67098,174.539,6.04379,-2.54445,166.796,6.31432,-3.12849,167.471,6.62439,-2.48953,168.362,5.80811,-2.25711,165.616,5.40893,-10.5244,176.861,6.01286,-9.63162,176.246,4.52986,-11.4454,177.23,3.41287,-12.2468,177.403,5.86139,-10.0511,175.579,5.33538,-10.8301,176.093,1.03792,-12.9943,177.507,-4.5814e-005,-13.0424,177.523,2.18705,-12.7668,177.473,1.05755,-13.0253,176.716,2.21903,-12.8051,176.645,3.42978,-12.3499,176.556,4.50895,-11.6419,176.409,6.34344,-8.92719,175.396,6.11373,-9.46625,174.935,-4.56217e-005,-13.0823,176.752,6.44795,-8.55821,174.388,6.37641,-8.55232,173.371,6.1614,-9.20794,174.256,6.07179,-9.23887,173.578,6.11548,-8.94172,172.525,5.84831,-9.51812,172.977,6.3517,-8.25181,171.78,6.47885,-7.56127,170.725,6.47114,-6.90648,169.625,6.41136,-6.21955,168.599,6.3198,-5.50486,167.716,6.17101,-4.79696,167.031,5.89803,-4.11676,166.513,5.54244,-3.58653,165.905,5.20547,-3.21699,164.877,2.24558,-12.5833,170.578,2.00136,-12.7494,170.012,1.81316,-13.1442,170.279,1.95909,-13.0006,170.871,2.96728,-10.7735,164.869,3.23672,-10.6717,165.559,3.61982,-10.0762,165.398,3.33909,-10.1176,164.407,2.70401,-12.0106,168.697,2.10084,-12.4964,168.497,2.20965,-12.4288,169.084,0.862994,-12.1034,164.364,0.992124,-12.0453,163.67,1.20249,-11.3908,162.346,1.13084,-10.4225,161.94,1.11733,-11.9404,163.064,3.8186,-10.2996,166.363,4.30513,-9.69934,166.536,4.10277,-9.24175,165.356,3.41731,-10.7429,166.285,2.92761,-11.0721,165.76,3.09527,-11.0614,166.271,2.54586,-11.0697,164.236,2.29109,-11.4548,164.734,2.6879,-11.197,165.259,2.08083,-11.6824,165.169,2.45312,-11.4535,165.617,2.92687,-10.458,163.615,4.84855,-8.92353,166.885,4.68659,-8.27186,165.648,4.40387,-7.73541,164.61,3.72719,-9.14274,163.731,2.43042,-12.3235,169.681,2.69524,-12.1855,170.286,3.23775,-11.7446,169.925,2.92954,-11.9059,169.294,2.93215,-12.0494,170.938,3.54565,-11.5725,170.653,4.35407,-10.7715,170.249,3.75557,-11.2383,169.402,4.72034,-10.1537,169.148,4.11894,-10.7321,168.631,3.36193,-11.4884,168.796,3.67861,-11.0722,168.138,3.0991,-11.6248,168.229,3.36982,-11.2613,167.66,3.1321,-11.3836,167.246,2.9354,-9.64761,162.998,4.85428,-9.5949,168.088,4.30036,-10.2396,167.663,3.84805,-10.6633,167.305,3.47976,-10.9525,167.0,3.17837,-11.1676,166.771,1.57188,-12.9884,169.436,1.38428,-13.4113,169.946,1.50393,-12.9787,168.765,0.78608,-13.3469,168.872,0.784342,-13.4347,169.367,-4.40565e-005,-13.6372,169.327,0.75993,-13.7467,169.836,2.05692,-12.7413,171.444,2.4237,-12.42,171.191,1.79266,-13.197,171.313,1.78117,-12.998,171.714,2.68448,-11.3202,165.953,2.85126,-11.2732,166.291,2.94868,-11.3267,166.627,2.93888,-11.4813,166.955,2.06024,-12.5297,167.983,1.48488,-13.0007,168.245,0.794726,-13.3685,168.412,1.55947,-11.9129,164.733,1.73961,-11.7372,164.176,1.95565,-11.4892,163.596,2.18529,-10.9015,162.923,2.13432,-10.0183,162.46,5.85528,-9.02631,171.119,5.97977,-8.45024,170.124,5.98444,-7.82594,169.049,5.92585,-7.1412,167.972,5.68383,-5.79972,166.188,5.83465,-6.4458,166.989,5.2308,-9.83484,170.641,5.38538,-9.33755,169.625,5.40049,-8.06796,167.404,5.44333,-8.75206,168.546,5.28959,-7.38788,166.302,5.0902,-6.79332,165.388,1.90191,-9.08247,162.364,2.74242,-8.76756,162.872,2.34278,-7.70656,162.788,3.46815,-8.0465,163.452,3.06315,-7.22215,163.254,4.10268,-7.17398,164.045,3.70293,-6.43896,163.727,4.79817,-6.23025,164.782,4.39802,-5.59806,164.31,5.40326,-5.20591,165.584,4.99825,-4.65786,165.033,0.975228,-9.43433,161.968,0.791737,-8.37848,162.086,1.5955,-8.06449,162.384,4.60299,-4.1114,164.181,2.65677,-6.29751,162.915,2.01143,-6.7108,162.52,3.30028,-5.56157,163.212,3.9719,-4.88077,163.613,1.77671,-13.4714,170.431,1.71313,-13.8056,170.542,1.74083,-13.7087,170.891,1.84511,-13.3813,170.816,1.48081,-14.1516,170.66,1.48116,-14.0545,171.021,1.12652,-14.5059,170.763,1.11458,-14.3963,171.146,1.67859,-13.593,171.234,1.39847,-13.908,171.4,0.675772,-15.0069,170.757,0.668993,-14.9298,171.293,1.2897,-13.7188,171.758,1.06438,-14.2297,171.549,1.0151,-14.0251,171.94,0.647667,-14.7388,171.751,0.637424,-14.508,172.172,1.57364,-13.4349,171.558,1.80773,-13.3658,171.111,0.636334,-14.2909,172.598,1.00946,-13.8321,172.352,1.25152,-13.5185,172.153,1.51473,-13.2493,171.948,1.57784,-13.6044,170.158,1.57947,-13.8798,170.281,0.647217,-14.8467,170.332,0.481928,-14.7719,170.147,1.39099,-14.1995,170.402,1.08544,-14.5417,170.484,0.432373,-14.4864,170.076,0.496179,-14.171,169.992,-4.53151e-005,-14.2786,169.838,0.770337,-14.6963,170.33,0.610212,-14.6507,170.225,1.01571,-14.4942,170.375,1.37047,-13.6941,170.057,1.38916,-13.905,170.16,0.643401,-14.122,170.086,0.860859,-13.8207,170.015,1.17575,-13.644,169.997,1.24858,-14.1949,170.284,0.573847,-14.4252,170.167,0.711461,-14.4055,170.241,0.804099,-14.1074,170.167,0.680863,-14.5826,170.271,0.771204,-14.6071,170.321,0.900773,-14.4464,170.325,1.06613,-14.1641,170.233,1.19077,-13.8867,170.123,1.24338,-13.7303,170.048,1.13659,-13.7121,170.031,0.977265,-13.8451,170.088,5.26816,-10.5656,174.845,4.87763,-11.0004,175.193,5.1219,-10.9664,175.522,5.58725,-10.3586,175.101,4.17316,-11.5176,175.449,4.35738,-11.626,175.792,5.29955,-10.2944,173.584,5.5756,-9.96598,173.299,5.23483,-10.3131,172.948,4.9875,-10.5651,173.322,0.766684,-13.0087,175.2,0.686345,-13.1527,174.733,4.1896,-11.1365,172.556,4.33452,-11.0312,172.033,3.68331,-11.4984,172.042,3.56592,-11.5021,172.545,5.466,-9.97239,172.506,3.34522,-12.2123,175.889,3.21648,-11.9402,175.507,1.00978,-12.9359,175.812,2.97816,-11.7714,172.655,2.82924,-11.6735,173.086,3.39306,-11.4956,172.98,3.07877,-11.8635,172.173,2.57586,-12.1279,172.347,2.5132,-11.969,172.811,4.01344,-11.2219,172.994,2.09447,-11.9335,173.366,2.06856,-11.7278,173.698,2.33237,-11.6495,173.591,2.3965,-11.8034,173.225,4.7633,-10.7239,172.694,4.95122,-10.5021,172.187,4.55644,-10.8949,173.118,2.22862,-12.6281,175.93,2.27444,-12.2271,175.43,3.09854,-11.7099,175.32,2.27505,-11.8069,175.167,4.03933,-11.4248,175.268,4.6996,-10.9765,175.002,5.01361,-10.6496,174.735,5.04282,-10.5101,173.844,4.76847,-10.7403,173.648,4.37766,-11.0327,173.484,3.86486,-11.3126,173.382,3.27217,-11.5022,173.383,2.72688,-11.5935,173.475,1.7371,-11.9496,174.919,1.53927,-12.442,175.251,5.67588,-9.54177,171.921,5.09763,-10.2154,171.523,4.40174,-10.9035,171.343,3.69301,-11.5021,171.41,2.54379,-12.2722,171.801,3.06636,-11.9451,171.594,1.56073,-12.7923,172.869,1.53444,-13.0418,172.413,1.27573,-13.3102,172.601,1.29377,-13.0651,173.042,0.635859,-14.0781,173.042,-4.65746e-005,-14.3544,173.191,0.620082,-13.8515,173.486,5.80514,-9.91867,174.646,5.47314,-10.2533,174.527,5.19042,-10.4363,174.499,1.30078,-12.7696,173.449,1.56355,-12.499,173.289,1.3197,-12.4643,173.831,1.56954,-12.2127,173.672,1.41839,-12.1368,174.231,1.63528,-11.9445,173.978,2.17939,-12.3523,172.519,2.1569,-12.1408,172.959,1.49667,-12.0646,174.627,1.23347,-12.5268,174.839,1.12206,-12.626,174.433,1.0432,-13.3918,173.232,1.05036,-13.1106,173.648,1.03531,-13.6291,172.794,1.07146,-12.8361,174.044,0.639519,-13.3568,174.321,0.619882,-13.5993,173.911,1.82022,-12.794,172.216,1.85579,-12.566,172.696,2.13694,-12.5468,172.008,1.85199,-12.3081,173.129,1.8282,-12.0609,173.531,1.84434,-11.8221,173.826,5.85838,-9.71938,174.187,5.77809,-9.75173,173.724,5.55115,-10.1058,174.202,5.48933,-10.1298,173.883,5.26169,-10.3463,174.269,5.21013,-10.3757,174.052,3.04747,-11.5187,173.991,3.15336,-11.5302,173.725,2.58815,-11.5387,173.823,2.48128,-11.4536,174.109,2.23418,-11.4969,173.922,2.13691,-11.3066,174.217,2.02003,-11.5054,173.994,1.94944,-11.269,174.258,1.84662,-11.5501,174.073,1.83388,-11.2838,174.279,1.74355,-11.3063,174.326,1.70339,-11.6132,174.185,1.61605,-11.6672,174.355,1.692,-11.3156,174.416,1.66114,-11.6431,174.572,1.71907,-11.2982,174.525,1.83797,-11.5664,174.784,1.87979,-11.2941,174.651,2.2247,-11.4971,175.02,2.29088,-11.4083,174.831,3.02052,-11.5929,175.0,3.03214,-11.5854,175.198,3.94042,-11.3966,175.145,4.56177,-10.944,174.884,4.46123,-10.9816,174.769,3.86049,-11.452,174.974,4.82474,-10.6666,174.674,4.69018,-10.6846,174.625,4.95694,-10.5208,174.505,4.776,-10.5652,174.523,5.00477,-10.4733,174.351,4.79805,-10.5432,174.431,4.95866,-10.5162,174.213,4.75908,-10.6011,174.355,4.65799,-10.7289,174.278,4.82704,-10.6478,174.081,4.60368,-10.8654,173.937,4.48279,-10.9289,174.175,4.25333,-11.1417,173.8,4.17621,-11.1912,174.056,3.75218,-11.3943,173.713,3.67148,-11.425,173.972,4.38511,-10.9284,174.301,4.52174,-10.7514,174.386,4.58082,-10.7188,174.618,4.37778,-11.0006,174.717,3.81059,-11.4319,174.874,2.34002,-11.3454,174.712,1.98803,-11.2082,174.552,1.86664,-11.1988,174.465,1.83803,-11.2155,174.418,1.85918,-11.2166,174.379,2.00655,-11.1704,174.36,2.17494,-11.1748,174.332,2.45725,-11.383,174.235,1.87078,-11.1685,174.411,1.88189,-11.1746,174.394,1.90346,-11.146,174.435,3.00792,-11.5486,174.878,2.95145,-11.4309,174.132,3.61396,-11.3738,174.107,4.60368,-10.635,174.446,2.36594,-11.1776,174.661,2.02368,-11.1437,174.501,3.0139,-11.3902,174.862,3.78892,-11.2699,174.879,4.3242,-10.9141,174.739,4.50664,-10.6839,174.646,4.41433,-10.7061,174.403,4.49987,-10.6105,174.479,4.28816,-10.8477,174.301,2.95738,-11.2667,174.126,3.59612,-11.2281,174.099,2.5101,-11.1639,174.24,2.2487,-11.08,174.426,2.03395,-11.141,174.427,4.12806,-11.1632,174.197,4.06451,-11.0441,174.186,4.64081,-10.5978,174.555,4.55572,-10.5839,174.591,1.91395,-11.1977,174.363,1.92282,-11.1592,174.401,4.64421,-10.5784,174.495,4.55007,-10.5651,174.535,2.41064,-10.8619,174.4,2.61542,-10.9025,174.169,2.54902,-10.9084,174.691,3.03963,-10.9517,174.875,3.72361,-10.8033,174.917,4.21784,-10.6384,174.795,4.4278,-10.5319,174.675,4.50579,-10.4852,174.604,4.51271,-10.4745,174.544,4.44286,-10.4919,174.474,4.31319,-10.5371,174.368,4.16683,-10.6236,174.244,3.96124,-10.7524,174.113,3.59982,-10.899,174.015,3.06867,-10.9511,174.034,2.71806,-10.4768,174.562,2.6873,-10.4996,174.239,3.04238,-10.3833,174.628,3.54557,-10.3029,174.664,3.99025,-10.302,174.636,4.25954,-10.3273,174.562,4.40134,-10.3496,174.527,4.46949,-10.3764,174.522,4.41443,-10.3738,174.467,4.28078,-10.3464,174.383,4.10957,-10.3447,174.299,3.86413,-10.3444,174.21,3.52627,-10.3528,174.139,3.09499,-10.3794,174.139,6.35587,3.89791,179.957,7.02019,2.81575,178.796,7.12347,1.44453,180.423,6.48058,2.25305,181.796,5.32534,5.01425,181.075,5.48101,2.98858,183.062,7.14537,-0.234715,181.542,6.49513,0.222527,182.998,5.50711,0.503237,184.287,3.91541,5.98498,182.073,4.098,3.6427,184.225,4.15293,0.737371,185.383,4.35079,6.0853,173.367,5.36661,5.06109,173.022,5.76852,5.22041,175.324,4.76195,6.28003,175.883,6.11066,3.92013,172.746,6.49899,4.02376,174.774,3.38458,7.20374,176.3,2.98898,6.93851,173.541,7.10237,-2.01983,182.061,6.45671,-1.86933,183.462,5.45144,-1.94551,184.703,4.09643,-2.08722,185.697,2.28879,-2.2135,186.491,2.2798,0.967316,186.261,2.19467,4.12471,185.146,2.08634,6.60296,182.921,1.72387,7.80959,176.553,1.53558,7.43849,173.698,7.28696,-3.99298,180.747,7.49189,-2.38087,180.54,7.66953,-2.81553,179.028,7.42551,-4.3332,179.335,7.54455,-0.818198,180.009,7.75018,-1.41536,178.518,7.50051,0.635116,179.032,7.69875,-0.109751,177.71,7.38818,1.82886,177.654,7.56816,0.959838,176.582,7.15774,1.90828,173.729,6.92201,2.90913,174.234,6.56784,2.82058,172.483,6.85821,1.80224,172.222,7.31091,1.02014,173.28,7.65927,0.209532,175.627,7.78215,-0.769197,176.487,7.79601,-2.00136,177.038,7.70424,-3.29897,177.496,7.4565,-4.76419,177.859,6.38184,1.21426,169.354,6.05819,2.28409,169.347,5.56822,3.3728,169.315,4.83892,4.48876,169.285,3.80337,5.50566,169.278,2.56022,6.21175,169.315,6.92161,-3.8004,182.111,6.2754,-3.89864,183.351,5.21637,-4.25056,184.457,3.86829,-4.76022,185.322,2.16345,-5.27909,185.991,1.27223,6.55989,169.317,-3.07884e-005,-2.31533,186.836,1.93205,7.72373,179.748,3.62799,7.11345,179.224,5.03996,6.12731,178.547,6.11317,4.89345,177.72,6.8102,3.68473,176.849,7.19891,2.59851,176.004,7.3944,1.64391,175.217,7.50383,0.810569,174.52,6.58124,1.49142,170.761,6.25073,2.52752,170.846,5.76244,3.60022,170.905,5.02124,4.70786,170.98,3.97841,5.73027,171.098,2.72668,6.50122,171.218,1.37969,6.93951,171.275,-1.91174e-005,4.29806,185.441,7.65172,-3.77159,175.857,7.44912,-5.15569,176.25,7.42601,-5.18479,174.673,6.57525,-5.36199,181.965,5.95437,-5.66452,182.94,4.90309,-6.28282,183.831,3.61251,-7.04935,184.526,1.91398,-7.95838,185.001,0.78825,-12.2446,165.042,2.51014,-11.4696,166.1,2.67493,-11.4047,166.323,2.2799,-11.6169,165.82,1.93598,-11.8371,165.533,1.44181,-12.0691,165.277,0.653835,-12.2019,165.933,0.689743,-12.3356,165.801,1.28931,-12.1433,165.919,1.22521,-11.9798,166.032,1.75444,-11.9097,166.037,1.68799,-11.7742,166.098,2.11303,-11.6752,166.145,2.05634,-11.5723,166.151,2.26485,-11.4697,166.255,2.30421,-11.532,166.252,2.40865,-11.4008,166.374,2.44902,-11.4585,166.376,2.20816,-11.3582,166.248,2.36013,-11.2931,166.365,1.98764,-11.4239,166.134,1.62647,-11.5388,166.048,1.17512,-11.7253,165.994,0.621565,-11.9643,165.959,-4.02078e-005,-12.0426,165.923,2.5456,-11.4642,166.354,2.39241,-11.5377,166.195,2.19344,-11.6861,166.047,1.84885,-11.9319,165.798,1.37683,-12.1809,165.6,0.744784,-12.3877,165.458,2.18366,-10.8586,166.107,2.32166,-10.8462,166.303,1.96923,-10.9052,165.904,1.64009,-11.0342,165.732,1.17934,-11.2294,165.641,0.617,-11.5015,165.685,2.67158,-11.7798,167.016,2.42155,-12.1169,167.283,2.78129,-11.43,166.549,2.7868,-11.5519,166.779,2.03227,-12.5253,167.569,1.46608,-12.9966,167.808,0.79243,-13.3799,167.972,2.34709,-12.0804,167.057,2.27431,-12.011,166.942,1.92012,-12.3605,167.125,1.98636,-12.468,167.281,1.41474,-12.915,167.462,1.33711,-12.7311,167.299,0.699549,-13.0654,167.434,0.754004,-13.2847,167.602,1.88229,-12.2823,167.097,2.22299,-11.925,166.92,0.677658,-12.9008,167.428,1.29881,-12.5864,167.296,0.668869,-12.7356,167.48,1.2685,-12.4184,167.352,2.19707,-11.8539,166.931,1.82456,-12.1572,167.13,2.57272,-11.7792,166.856,2.67267,-11.5782,166.682,2.49582,-11.7393,166.776,2.58838,-11.5561,166.636,2.44992,-11.6724,166.76,2.54462,-11.4983,166.625,2.42618,-11.6083,166.762,2.51585,-11.4324,166.621,2.65363,-11.475,166.516,2.55768,-11.4641,166.505,2.51353,-11.409,166.498,2.47767,-11.3351,166.493,0.693362,-12.3275,167.83,1.25653,-11.9898,167.687,1.75377,-11.6976,167.452,2.15414,-11.5298,167.103,2.39854,-11.2995,166.845,2.4713,-11.1071,166.645,2.42056,-10.915,166.483,0.947164,-9.33232,184.48,5.15836,4.77378,164.757,5.88068,3.4665,164.698,6.17253,2.25275,164.681,6.21242,1.10282,164.7,1.28753,6.65314,164.629,4.00517,5.91872,164.806,2.64062,6.51592,164.759,6.11759,-0.0318187,164.688,5.9951,-1.12198,164.539,5.61228,-2.09071,164.147,5.00821,-2.92799,163.614,4.33821,-3.62886,163.135,2.35773,-5.28424,162.212,1.77827,-5.73709,161.987,3.00865,-4.7818,162.485,3.685,-4.2337,162.764,6.06698,3.69269,163.37,5.38344,5.03213,163.525,5.83583,5.37938,162.273,6.5311,3.98072,162.058,6.2883,2.43648,163.245,6.67159,2.63695,161.822,6.38169,1.4029,161.607,6.18245,1.25033,163.151,1.58224,7.44369,162.127,1.43333,6.95782,163.387,-1.90484e-005,7.53113,162.007,4.28639,6.17664,163.623,4.67183,6.56412,162.392,2.89381,6.81301,163.565,3.17432,7.24947,162.325,5.86733,-1.00702,162.93,6.01274,0.09559,163.073,6.05173,0.233313,161.491,5.79054,-0.876842,161.372,5.4889,-1.95812,162.634,5.41762,-1.85086,161.127,4.91907,-2.71632,162.265,4.89152,-2.60698,160.817,4.22315,-3.28851,161.928,4.23788,-3.17094,160.526,1.70379,-5.02605,161.119,2.25292,-4.60493,161.228,2.23464,-4.15503,159.808,1.61819,-4.48175,159.645,2.84311,-4.1694,161.425,2.83002,-3.86103,160.044,3.50324,-3.73757,161.656,3.50739,-3.55973,160.28,7.43666,4.34752,160.685,6.60704,5.86068,160.983,7.59764,6.52111,159.662,8.59544,4.79813,159.306,7.59868,2.88758,160.303,8.87504,3.21,158.793,8.42085,1.82632,158.261,7.16278,1.57815,159.955,1.98851,9.19743,159.46,1.74783,8.18924,160.857,5.25342,7.15531,161.13,6.03748,8.03687,159.778,3.53435,7.91348,161.046,4.04849,8.90988,159.656,6.47247,0.360836,159.822,7.40081,0.480766,157.991,6.44378,-0.777699,157.908,5.91347,-0.775078,159.738,5.46865,-1.78454,159.496,5.79181,-1.79457,157.697,4.99447,-2.6156,159.18,5.242,-2.6662,157.417,4.37343,-3.26583,158.884,4.60268,-3.43769,157.16,1.4785,-4.20512,157.886,2.20253,-4.05731,158.143,2.25058,-4.35298,156.429,1.46155,-4.38755,156.2,2.91395,-3.93469,158.412,3.0545,-4.26966,156.703,3.64804,-3.703,158.645,3.84268,-3.97813,156.929,0.725488,-4.3384,157.7,-2.22716e-005,-4.39896,157.579,-2.2098e-005,-4.86103,159.246,0.825096,-4.87081,159.706,0.719365,-4.42371,156.074,8.67157,7.28672,158.378,9.77909,5.26448,158.094,10.1147,3.51763,157.53,9.60698,2.05227,156.893,6.90457,9.0877,158.195,4.61852,10.0816,157.916,8.31029,0.5789,156.55,7.08452,-0.808399,156.409,2.26726,10.4168,157.739,6.28617,-1.87246,156.189,5.59962,-2.7247,155.945,4.87342,-3.54493,155.724,2.33119,-4.66229,155.091,1.50022,-4.69188,154.908,3.20249,-4.53748,155.316,4.06194,-4.18857,155.527,0.734425,-4.67041,154.781,1.37289,-7.08117,162.201,1.20628,-6.16603,161.861,1.16091,-5.43771,161.171,7.78849,-2.00213,171.345,7.73753,-1.68954,172.004,8.01382,-1.48361,172.858,8.27536,-1.44805,173.716,8.46296,-1.50817,174.355,8.6876,-1.48953,174.707,0.677025,-7.37132,162.031,-2.61883e-005,-7.56226,161.952,0.611492,-6.46612,161.775,0.590897,-5.76986,161.275,0.484838,-5.36179,160.58,2.45064,-10.4136,166.517,2.55344,-10.598,166.751,0.694026,-11.7054,168.282,1.34216,-11.5015,168.171,2.3743,-11.1416,167.427,1.84267,-11.2471,167.821,2.58718,-10.9063,167.034,1.74456,-10.4232,165.405,2.11139,-10.3325,165.675,0.607719,-10.9023,165.274,1.21488,-10.609,165.251,2.28972,-10.3245,165.987,2.36675,-10.3258,166.268,2.51205,-9.79262,166.585,2.6091,-9.94662,166.874,0.737161,-10.8357,168.736,1.39205,-10.602,168.464,2.56529,-10.3188,167.894,1.98491,-10.4726,168.191,2.78567,-10.1059,167.194,1.76313,-9.57238,165.371,2.17794,-9.57013,165.657,0.580138,-9.80652,165.085,1.20522,-9.6424,165.133,2.40783,-9.61266,165.978,2.45519,-9.6868,166.297,2.53848,-9.18707,166.665,2.61257,-9.30345,166.941,2.05189,-9.47608,168.21,1.42666,-9.53862,168.515,2.56214,-9.41641,167.771,2.66602,-9.36341,167.267,1.85743,-8.68538,165.423,2.29066,-8.80999,165.766,0.572718,-8.72586,165.26,1.20987,-8.67718,165.283,2.45579,-8.9682,166.117,2.50565,-9.09587,166.39,2.54418,-8.72398,166.498,2.57348,-8.74196,166.732,1.97307,-8.47543,167.832,1.35214,-8.43917,168.08,2.47632,-8.59181,167.495,2.65918,-8.74826,167.135,1.87391,-7.8772,165.944,2.39155,-8.19267,166.109,0.576813,-7.78033,165.925,1.20743,-7.78494,165.913,2.5367,-8.52442,166.372,2.00913,-7.69446,167.216,1.26437,-7.63424,167.294,2.50131,-8.14278,166.94,2.57228,-8.45956,166.809,2.61332,-8.86448,166.947,0.67592,-8.42575,168.269,0.620737,-7.64237,167.349,0.728191,-9.61516,168.788,-3.71578e-005,-9.66057,168.841,7.83852,12.1973,14.1039,6.77218,10.8576,13.9871,9.16227,12.8527,12.5802,10.6122,12.2341,12.6903,7.69632,12.4109,12.4523,6.58654,11.0087,12.22,12.2661,9.63275,14.2068,12.282,9.70852,12.3939,11.5958,10.9005,14.2543,11.6553,10.7951,12.672,12.4109,10.145,10.4716,11.4799,4.87374,12.4442,10.9415,3.88891,11.9737,10.0628,3.34543,12.3026,10.2191,3.74906,13.1535,8.66097,3.22282,12.3797,8.66517,3.4974,13.2974,7.22766,4.14947,11.9353,7.52483,7.57938,0.876625,8.04274,5.32932,1.06083,8.67564,1.76293,0.798277,11.87,-2.98581,0.50067,12.4499,-1.58424,50.8195,8.02062,-1.42153,51.0317,13.0371,-3.3276,0.481943,13.7314,-2.86391,0.530416,10.5186,-4.63104,0.40628,11.388,-4.24648,0.414187,-21.5775,3.70068,142.289,-21.2452,6.17406,141.639,-22.6938,5.90457,141.529,-22.97,3.44302,142.293,-47.8786,7.47914,139.021,-47.6777,9.41216,139.87,-51.3099,9.25811,139.685,-51.2922,7.27152,138.833,-45.0548,7.93382,139.393,-44.811,9.73416,140.352,-41.1069,4.38912,147.466,-38.3311,4.23035,147.702,-38.4948,2.56347,146.447,-41.2938,2.94424,146.249,-35.2229,2.32505,146.701,-35.2167,4.13893,148.025,-32.2448,4.00007,148.343,-32.1218,2.12437,146.931,-40.492,6.37734,148.024,-37.6106,6.41249,148.305,-34.6449,6.46453,148.698,-31.9235,6.42645,149.069,-34.7562,1.31328,144.881,-31.5871,1.15957,145.007,-42.7612,3.08674,146.181,-42.7164,2.45388,144.706,-44.0089,2.71649,144.798,-43.8846,3.11857,146.061,-33.9937,1.5531,142.736,-37.5738,1.71238,142.717,-38.1918,1.5943,144.753,-33.1553,3.04646,141.035,-36.8411,3.07228,140.956,-32.3967,5.25393,140.067,-36.0685,5.19643,139.919,-51.464,5.21608,139.02,-48.426,5.28687,139.325,-31.6753,7.65935,139.438,-31.0445,10.0696,139.675,-34.445,9.65061,139.671,-35.2849,7.40297,139.347,-54.6277,10.255,141.433,-57.553,9.91192,141.593,-57.3634,8.94321,139.923,-54.4206,9.072,139.74,-57.2873,7.26675,138.987,-54.3754,7.20739,138.839,-60.8381,8.76147,140.257,-60.6652,7.32842,139.254,-61.047,9.4053,141.939,-57.3519,5.44256,139.012,-54.5128,5.2402,138.934,-60.5872,5.66642,139.15,-60.5952,4.08157,139.868,-57.4975,3.77356,139.98,-60.6443,2.93832,141.153,-57.6254,2.65818,141.636,-54.7615,3.4884,140.122,-54.9864,2.46603,142.069,-63.8881,4.29408,139.673,-64.004,5.77188,139.294,-63.8588,3.1068,140.587,-64.2073,7.22837,139.576,-64.4759,8.39328,140.602,-68.2806,7.94981,140.795,-67.9216,7.00707,139.727,-67.6253,5.71383,139.27,-57.7558,9.70142,143.528,-61.1845,8.90145,143.537,-64.8187,8.00949,143.46,-64.7142,8.72259,142.172,-54.8774,10.2126,143.52,-61.2607,7.77441,144.801,-64.8146,6.82887,144.41,-68.5573,5.80715,143.815,-68.6332,7.04988,143.224,-68.5498,7.95588,142.22,-48.9943,2.62625,143.095,-48.818,3.56848,140.707,-51.7848,3.39358,140.452,-52.1078,2.43799,142.603,-46.97,2.95064,145.124,-46.8105,2.88556,143.0,-49.3147,2.67158,145.122,-52.3114,2.35729,144.825,-55.136,2.37177,144.155,-52.4367,3.50646,146.716,-49.1719,3.97164,147.254,-55.2545,3.39271,145.945,-55.0762,9.1922,145.335,-57.9115,8.62652,145.076,-55.2258,7.47044,146.528,-57.9748,6.97019,145.986,-61.1979,6.25426,145.374,-52.0253,9.7025,145.665,-52.2344,7.91875,147.064,-48.6253,8.28012,147.347,-45.7867,8.30589,147.343,-46.1644,6.22191,147.836,-48.9758,6.08976,147.85,-52.4053,5.70975,147.489,-46.7068,4.02826,146.997,-55.2961,5.39449,146.808,-57.9411,5.06209,146.074,-57.8338,3.32149,145.175,-60.849,3.16133,144.257,-61.0404,4.58357,145.224,-37.0995,11.174,144.965,-40.5136,10.9223,144.709,-40.3323,11.0126,142.783,-36.8475,11.339,142.988,-33.8845,11.5956,145.138,-33.5031,11.8289,143.075,-38.0282,10.2019,146.635,-41.1237,9.97054,146.329,-44.7979,10.8728,142.132,-43.0595,9.92183,140.723,-42.8563,10.8956,142.484,-45.0202,11.0232,144.215,-43.0055,10.8837,144.46,-43.3541,9.91263,146.137,-45.3977,10.0357,146.068,-34.9322,10.564,146.954,-48.2793,10.0458,145.913,-40.8804,2.06467,142.912,-40.3431,3.20682,141.195,-42.1669,3.17757,141.43,-42.5178,2.43031,142.979,-39.7018,5.16733,140.051,-42.033,4.59103,140.257,-43.4766,3.07512,141.702,-44.1981,3.87147,140.75,-45.0902,2.93725,142.948,-43.8672,2.66364,143.113,-64.3886,3.97589,144.338,-68.0257,3.19341,143.438,-68.3301,4.45356,143.901,-64.6474,5.41714,144.688,-57.7229,2.46838,143.51,-60.7164,2.57715,142.727,-67.4459,4.34486,139.332,-37.2622,10.6285,141.129,-38.1003,9.09795,139.81,-33.7773,11.2291,141.101,-30.6082,11.8367,141.098,-41.1746,2.1203,144.676,-32.124,10.9958,147.315,-33.51,8.90202,148.504,-36.3498,8.69916,148.086,-67.3729,3.11096,139.938,-67.4463,2.34544,141.052,-63.9251,2.5507,141.912,-67.7053,2.3717,142.389,-64.1163,2.8705,143.328,-42.8415,4.31105,147.307,-42.647,6.34456,147.882,-41.9558,8.36367,147.473,-39.4327,8.51279,147.725,-44.2873,6.25054,147.807,-43.8194,8.27846,147.345,-41.4308,8.57808,139.775,-40.678,10.1602,141.021,-43.4441,8.24232,139.601,-39.039,7.04464,139.519,-41.9731,6.55874,139.503,-30.472,12.4437,143.159,-28.0942,12.912,143.409,-28.576,12.5372,145.615,-30.9678,12.1605,145.316,-29.7116,11.2589,147.613,-23.964,1.35872,145.376,-24.6038,2.00183,147.246,-22.905,1.4276,147.478,-22.5169,1.11965,145.092,-21.6759,2.02961,143.205,-23.1571,1.90114,143.42,-25.7409,1.36959,145.185,-26.4289,2.10329,146.941,-29.4236,6.28456,149.242,-29.4262,3.82621,148.347,-30.8221,1.49327,142.888,-28.5513,1.14639,145.014,-27.8741,1.52955,143.138,-24.9216,3.27003,142.282,-25.184,1.76133,143.497,-19.2027,12.8721,143.96,-19.4433,12.7714,145.878,-21.5371,12.5767,145.989,-20.9264,12.922,143.938,-20.2795,8.86143,141.184,-21.8048,8.64698,141.013,-19.91,10.9472,141.499,-19.5255,12.2757,142.446,-21.1885,12.2951,142.265,-21.5871,10.8326,141.289,-28.1449,12.2657,141.351,-28.3591,10.3592,140.007,-26.0415,10.6725,140.534,-25.8043,12.475,141.659,-28.7651,7.87355,139.787,-26.323,8.18921,140.356,-29.3695,5.31456,140.372,-26.8393,5.37742,140.87,-27.2512,3.0339,141.735,-30.0128,3.0383,141.282,-25.1421,3.76536,148.983,-26.9187,3.83849,148.492,-31.019,9.03448,148.839,-28.6605,9.13988,149.039,-27.251,11.4168,147.789,-26.0844,12.6977,145.889,-25.6447,13.1466,143.68,-47.985,10.9484,143.88,-47.7038,10.7016,141.708,-51.5197,10.5672,141.455,-51.8106,10.6474,143.641,-44.6978,3.95423,146.856,-45.8289,5.58871,139.556,-23.6628,3.56193,149.728,-25.1719,6.36708,150.024,-23.5974,6.33203,150.83,-24.3262,9.18934,149.719,-22.5844,9.35169,150.421,-22.8719,11.343,148.15,-21.1076,11.5332,148.538,-24.8372,11.3393,147.992,-23.5417,12.62,145.967,-29.1346,1.99874,146.884,-26.9813,6.34058,149.474,-23.247,12.3316,142.111,-23.8663,10.7616,141.232,-24.2469,8.4718,141.079,-24.7399,5.67665,141.508,-26.2261,9.1267,149.285,-22.9833,13.0219,143.862,-45.2385,2.95749,145.021,-46.3427,3.66872,140.89,-43.8595,5.96476,139.607,-70.6237,1.91928,141.671,-70.2822,2.15676,140.371,-71.9805,2.03509,139.827,-72.4541,1.55823,141.109,-70.1954,3.08992,139.451,-71.9151,3.07533,139.081,-73.0291,2.1971,142.353,-71.0023,2.63095,142.8,-70.7982,6.84453,139.703,-70.4863,5.6949,139.154,-71.1774,7.6173,140.73,-72.9986,5.80425,138.89,-72.3074,5.74706,138.997,-72.6166,6.79473,139.605,-73.3807,6.81727,139.51,-72.0371,4.42356,138.788,-70.2843,4.37487,139.017,-71.4931,7.57255,142.082,-71.6094,6.56213,142.944,-73.7728,6.30958,142.68,-73.5619,7.39486,141.897,-74.7049,6.22857,142.493,-73.7074,4.9408,143.007,-74.6849,4.81114,142.823,-71.5391,5.25607,143.344,-71.3091,3.86847,143.337,-73.4359,3.46588,142.957,-73.839,1.9983,142.142,-74.3766,3.2764,142.76,-72.3881,3.0804,138.94,-72.6462,4.46418,138.672,-73.0655,7.44387,140.606,-72.4571,1.99029,139.615,-73.0471,1.43579,140.881,-74.3347,7.31684,141.765,-73.8383,7.41062,140.509,-17.3016,-1.91111,148.012,-16.408,-1.84917,149.578,-15.1955,-3.32223,148.364,-16.0341,-3.32847,146.694,-15.5834,-1.43076,151.29,-14.2877,-2.93221,150.355,-18.1763,-0.41925,149.47,-17.2258,-0.275075,150.774,-16.3733,0.150096,152.133,-18.7961,1.28557,150.907,-17.6999,1.54321,151.941,-19.1748,3.21207,152.026,-17.8793,3.70777,152.837,-18.8397,6.07407,152.652,-17.5894,6.17537,153.158,-16.7921,4.03914,153.508,-16.4878,6.38899,153.73,-18.1728,8.73181,152.266,-17.0902,8.43005,152.842,-17.3509,10.9208,151.256,-16.4086,10.4101,152.222,-16.1761,8.16771,153.508,-15.6539,9.87843,153.196,-16.3042,12.4199,150.247,-15.5024,11.9343,151.651,-14.8531,11.2826,152.925,-15.6697,0.891229,153.335,-15.1154,1.91417,154.281,-14.3708,0.695957,154.369,-14.8951,-0.562926,152.915,-14.7032,3.44618,154.905,-13.9035,2.50259,155.288,-16.0152,2.40607,153.692,-15.5476,2.77354,154.24,-15.3095,4.08032,154.512,-16.7655,1.9458,152.913,-15.9868,4.19373,154.066,-15.6326,6.28713,154.213,-14.9158,5.95918,154.681,-15.3726,7.80721,154.118,-14.6872,7.40853,154.716,-14.33,8.81322,154.662,-14.9546,9.28473,153.995,-13.9611,9.82163,154.48,-14.3213,10.4821,153.93,-13.2175,10.0574,154.761,-13.2924,11.2515,153.939,-13.6098,12.2601,152.711,-11.9188,12.8149,152.354,-11.7861,11.742,153.862,-13.5861,8.62181,155.262,-14.73,13.3776,149.509,-14.1099,12.9533,151.164,-12.6893,13.9584,148.908,-12.256,13.5795,150.625,-14.3628,5.39373,155.275,-13.6217,4.66273,155.797,-14.0261,7.01378,155.409,-9.9135,13.1863,151.822,-9.83578,12.1811,153.535,-13.1314,-0.755067,154.159,-13.5841,-1.97635,152.315,-12.4097,1.37567,155.362,-12.6711,3.98219,156.18,-12.2647,6.11578,156.677,-13.2158,6.57814,156.103,-18.6254,1.43134,141.207,-20.0117,2.09479,142.61,-19.5312,0.531175,143.24,-17.7016,-0.444513,141.715,-19.9106,3.63891,141.478,-20.385,3.99466,142.184,-13.154,14.0751,147.237,-10.8224,14.5507,146.545,-10.4604,14.3989,148.08,-11.7278,14.3993,143.571,-11.2422,14.559,145.03,-13.6863,14.0138,145.582,-14.2981,13.7587,144.04,-17.1969,11.4698,141.557,-18.6661,9.36885,141.363,-18.0473,9.98891,140.558,-15.3792,11.9208,140.337,-19.3142,7.91698,140.916,-20.0057,5.70159,141.244,-20.0813,6.29789,141.714,-19.3119,-0.548267,144.102,-17.4434,-1.77497,142.549,-21.1775,0.253933,145.675,-20.4755,-0.162065,147.177,-18.9741,-1.27007,145.298,-16.7597,-3.10458,145.149,-17.2418,-2.61578,143.733,-18.2652,-1.73105,146.638,-14.8106,13.2546,142.787,-15.6542,12.503,141.866,-13.4548,13.1607,141.054,-12.339,13.9489,142.226,-10.1335,14.0586,149.718,-12.5996,8.49979,155.944,-11.9887,10.2732,155.107,-17.2143,12.7397,148.799,-18.464,11.5186,150.139,-19.501,9.19661,151.719,-15.405,13.5458,147.836,-20.8815,2.17833,143.004,-20.9731,4.00744,142.347,-21.0092,0.871206,144.18,-18.5537,11.1109,141.747,-19.4085,9.11257,141.415,-20.5567,6.31053,141.768,-20.5883,3.26805,151.278,-22.1555,3.39595,150.559,-22.0226,6.2678,151.603,-20.3426,6.12872,152.214,-17.7657,12.2396,142.436,-17.1798,12.8433,143.374,-16.1197,13.5007,146.214,-18.2714,12.8289,147.395,-21.0649,9.42857,151.082,-19.7242,11.6533,149.226,-21.5224,1.3233,149.002,-20.0807,1.25815,149.988,-16.8424,13.2422,144.687,-19.3159,-0.375412,148.355,-8.00551,5.3736,119.039,-7.82561,6.0297,121.383,-10.0273,4.53791,121.385,-10.206,3.91094,119.148,-1.45245,-11.7177,136.929,-1.18759e-005,-11.7308,136.92,-1.61074,-12.1389,135.266,-7.91615,14.4172,149.529,-7.75011,13.6519,151.604,-8.14478,14.8144,147.682,-5.60617,15.2736,147.447,-5.44741,14.8303,149.53,-8.4101,15.0286,146.044,-5.78593,15.4947,145.623,-9.86055,14.554,141.254,-9.20835,14.9477,142.873,-12.4943,12.731,138.436,-10.8981,13.8404,139.654,-13.3435,-6.1662,142.795,-13.7335,-6.07911,140.782,-15.4285,-4.26775,142.204,-15.0746,-4.59323,143.936,-7.16178,-7.65282,146.542,-6.95609,-6.66901,148.932,-5.47458,-7.17317,148.842,-5.53991,-8.15751,146.48,-4.03982,-7.56808,148.755,-4.01012,-8.5018,146.421,-1.24346,-8.60073,146.478,-2.57766,-8.66446,146.421,-2.64301,-7.76859,148.768,-1.30684,-7.68338,148.837,-1.14144,-9.63677,143.557,-1.12864,-10.5647,140.914,-2.34458,-10.5887,141.082,-2.42441,-9.69305,143.667,-11.5947,-2.0407,153.754,-10.6692,-0.610455,154.809,-9.28044,-1.92485,154.452,-10.1413,-3.11162,153.362,-12.1196,-3.00215,151.818,-10.6586,-3.96392,151.486,-5.26212,-5.77162,152.452,-5.39762,-6.3239,150.755,-6.75981,-5.78925,150.932,-6.50761,-5.16577,152.635,-4.88672,-5.01903,153.587,-5.97694,-4.3898,153.76,-11.3141,-4.84373,149.452,-12.1045,-5.40642,147.261,-13.7347,-4.39757,147.727,-12.8656,-3.93343,149.837,-3.98189,-6.18572,152.301,-4.0401,-6.74329,150.662,-3.75857,-5.43239,153.407,-2.68406,-6.35967,152.104,-2.69298,-6.94536,150.637,-2.59015,-5.57495,153.141,-1.54816,-5.52968,152.92,-1.27953,-6.20423,151.763,-1.36602,-6.86252,150.576,-3.46822,-12.0333,135.019,-1.73341,-12.4846,133.699,-3.64606,-12.3112,133.42,-5.09243,-14.4484,113.099,-4.81133,-14.2178,115.799,-2.93832,-14.6348,115.502,-3.27982,-14.9214,112.78,-6.96509,-13.7144,113.41,-6.77243,-13.4825,115.969,-5.19433,-14.5203,110.311,-6.98299,-13.7646,110.789,-3.43837,-15.0776,109.897,-7.75861,-10.5512,135.679,-5.52218,-11.3322,136.07,-5.60704,-11.5894,134.542,-7.92846,-10.6455,134.079,-10.2562,-9.12204,133.702,-10.1088,-9.18411,135.519,-14.2533,-1.52909,127.958,-13.5064,-4.47305,128.399,-13.4518,-4.73588,126.017,-14.1335,-1.81774,125.57,-13.1957,-5.05766,123.789,-13.8232,-2.17062,123.34,-14.0359,1.23558,125.574,-14.4552,1.546,127.867,-13.537,0.798045,123.333,-7.70582,12.3531,153.893,-5.31444,14.0501,151.799,-5.20363,12.8179,154.078,-2.66055,13.9469,151.933,-2.5791,12.8186,154.168,-2.82396,15.2924,147.226,-2.74019,14.7879,149.488,-2.92063,15.5206,145.248,-14.7887,10.7685,138.035,-18.4492,5.60046,138.826,-17.0621,8.26442,138.275,-15.1473,8.50827,135.725,-12.8991,11.2066,135.702,-17.8947,2.99669,138.858,-16.2073,2.44032,135.94,-16.3675,5.48093,135.945,-16.6019,0.39968,138.62,-15.4829,-0.58897,135.937,-4.16995,-11.3387,137.86,-3.82928,-11.0894,139.181,-2.5421,-11.2054,138.984,-3.33201,-11.5996,136.938,-15.9488,-1.90873,139.436,-14.417,-3.96848,136.487,-13.8398,-4.11674,133.328,-13.5663,-4.2563,130.839,-14.487,-1.2886,130.514,-14.9075,-1.05113,133.197,-15.6306,-3.42957,140.706,-14.0682,-5.43863,138.896,-13.7405,-3.3654,119.138,-13.5852,-2.69907,121.182,-13.1071,-5.59694,121.628,-13.2176,-6.25538,119.548,-13.9465,-3.93923,117.37,-13.3174,-6.6949,117.663,-11.9478,-8.95235,117.933,-11.8633,-8.66411,120.106,-11.8287,-8.11491,122.357,-13.279,-8.28669,110.965,-13.4573,-7.82425,112.593,-12.1218,-9.82963,112.198,-11.9724,-10.2061,110.322,-10.4902,-11.1618,113.888,-10.4813,-11.4239,111.755,-12.1383,-9.47705,114.069,-14.1081,-5.96186,111.447,-14.2672,-5.40104,112.885,-10.0781,-10.3832,120.606,-10.1984,-10.6066,118.219,-12.0602,-9.18203,115.961,-13.4237,-7.03532,115.911,-10.3788,-10.8867,116.022,-13.6674,-1.04066,117.003,-13.3164,-0.394298,118.861,-14.1523,-4.41842,115.818,-14.0026,-1.59404,115.616,-12.3985,1.40131,117.113,-11.9533,1.90986,119.067,-12.8501,0.934736,115.556,-11.8466,2.56885,121.294,-13.1724,0.197452,121.074,-8.32985,5.02242,116.903,-10.5996,3.48322,117.129,-2.67311,5.88957,118.454,-5.41083,6.0807,118.799,-5.61783,5.66323,116.52,-2.7831,5.47924,116.042,-5.88452,5.38683,114.668,-2.87221,5.33758,114.374,-8.69884,4.67478,115.075,-11.0208,3.0711,115.406,-15.4466,2.0875,133.192,-14.0119,4.6217,128.179,-14.7425,5.0754,130.638,-14.9268,1.82513,130.422,-12.4427,7.43412,128.506,-13.3876,8.14664,130.867,-4.26329,13.6241,135.658,-3.9241,14.458,137.771,-7.75934,14.3006,138.449,-9.20955,13.2262,136.226,-6.90203,14.9221,140.436,-6.37482,15.3234,142.268,-6.03332,15.5263,143.939,-8.75338,15.0785,144.456,-3.24432,15.4465,141.872,-3.05364,15.5731,143.543,-1.87447,-12.7968,131.874,-3.85027,-12.5319,131.646,-5.77054,-11.751,132.983,-5.94066,-11.872,131.253,-8.13379,-10.932,128.491,-6.11051,-12.18,129.115,-6.14893,-12.5582,126.426,-8.13763,-11.3152,126.035,-6.04953,-12.7757,123.716,-8.05635,-11.6177,123.485,-4.02872,-12.8863,129.424,-1.98605,-13.1645,129.512,-1.99354,-13.4559,126.74,-4.04938,-13.2217,126.689,-1.96265,-13.7143,124.035,-3.99247,-13.4711,123.924,-10.3267,5.56511,123.763,-7.92533,7.11936,123.9,-5.26366,6.76873,121.393,-5.25823,7.91874,124.168,-2.63134,6.57168,121.331,-2.69243,7.6952,124.364,-2.88927,9.13572,127.226,-5.86435,9.29864,126.863,-12.3531,3.45248,123.654,-13.1963,4.14199,125.993,-11.3456,6.6136,126.24,-8.81928,8.42972,126.532,-9.81089,9.49545,128.75,-6.57832,10.5864,129.103,-10.7592,10.3706,131.018,-7.31951,11.6083,131.312,-8.12073,12.4523,133.545,-11.6792,10.9918,133.373,-3.19589,10.5794,129.664,-3.99582,12.7218,133.658,-12.5028,1.7711,111.044,-11.9905,2.27288,112.461,-13.627,-0.0797754,112.772,-13.9077,-0.706804,111.399,-11.5179,2.69981,113.878,-9.72298,4.14175,112.121,-9.18503,4.42775,113.512,-3.52417,15.0632,139.901,2.39903e-005,5.30069,110.251,2.36575e-005,5.15773,111.47,-3.3672,5.40846,111.49,-3.42783,5.56313,109.89,-6.79391,5.1834,111.752,-7.41693,5.17151,110.395,-8.76203,-12.591,113.675,-8.74788,-12.7265,111.28,-8.61977,-12.3338,116.042,-8.3416,-11.9354,118.415,-14.2885,-4.88857,114.335,-14.3783,-2.71782,112.957,-14.2737,-2.12918,114.295,-6.26721,5.27697,113.119,-8.12144,-10.739,130.646,-8.08049,-10.7236,132.457,-14.3791,-3.36433,111.612,-6.42464,-13.0532,118.494,-8.13378,-11.7129,120.906,-6.16032,-12.8228,121.078,-4.15528,-13.6647,121.199,-4.40805,-13.8743,118.477,-2.05993,-14.0153,121.314,-2.10745,-14.2899,118.288,-2.83293e-005,-14.2209,117.037,-1.14151,-14.3932,116.889,-3.73146,-10.4972,141.19,-3.87339,-9.56316,143.724,-11.8743,-7.58338,124.533,-10.0635,-9.63255,125.361,-10.0232,-10.0824,123.068,-9.42877,-8.7716,141.589,-9.64608,-9.26806,139.365,-11.8085,-7.83721,139.846,-11.4644,-7.59723,142.014,-7.36213,-9.63284,141.36,-7.42459,-10.2581,139.18,-5.39379,-10.2193,141.208,-5.40141,-10.8231,139.167,-11.0175,-7.0028,144.437,-9.1804,-7.9743,144.116,-12.3266,-7.12328,135.684,-12.1564,-7.62733,137.851,-9.92188,-9.36484,137.401,-7.32328,-8.71441,143.932,-7.61061,-10.4957,137.338,-5.50576,-9.25117,143.77,-5.53643,-11.1112,137.524,-12.791,-5.85232,145.009,-1.61291,-15.2016,112.51,-1.41108,-14.7522,115.109,-1.37267e-005,15.1789,141.723,-1.46113e-005,15.3255,143.416,-1.54744e-005,15.2861,145.254,-1.70752e-005,14.5754,149.41,-3.50098,-15.0654,106.826,-1.72235,-15.4392,109.594,-1.76218,-15.3855,106.426,-12.1586,-7.0801,129.072,-12.0365,-7.26409,126.756,-10.2933,-9.17084,129.88,-12.197,-6.95073,131.314,-10.3475,-9.15717,131.887,-10.1604,-9.29968,127.635,-12.2627,-6.90836,133.455,-1.24605,-11.2318,138.799,7.01965e-006,6.95604,124.584,-1.15496e-005,-11.226,138.732,1.2097e-005,5.84076,121.321,-14.4781,-4.58618,145.806,-15.3608,5.3142,133.302,-14.1689,8.45977,133.345,-3.5818,11.7454,131.745,-0.648424,-5.70481,152.242,-0.72974,-5.347,152.876,-1.16498e-005,-10.5392,140.815,-1.54916e-005,-13.2176,129.535,-1.78081e-005,-13.459,126.74,-9.65484e-006,13.1285,135.765,-2.23433e-006,9.88225,130.065,-1.11646e-005,14.0317,137.76,-1.5634e-005,-6.21977,151.376,-1.52184e-005,-6.72863,150.477,-1.44511e-005,-7.54468,148.831,-1.32949e-005,-8.48738,146.46,-2.03099e-005,-13.6383,124.134,-7.01835,-3.6384,153.946,-7.677,-4.55575,152.818,-8.85221,-3.90787,153.053,-8.08268,-2.85921,154.168,-8.06208,-5.27344,151.084,-9.33497,-4.69619,151.257,-8.42476,-6.12135,149.041,-9.85954,-5.54364,149.207,-10.4624,-6.28036,146.888,-8.81009,-7.02876,146.637,-13.4957,-7.40188,114.233,-13.2968,0.465066,114.145,-3.05845,5.34292,112.9,2.30268e-005,5.02359,112.777,-8.64817,-12.8721,108.844,-6.93561,-13.8239,108.092,-5.22468,-14.5542,107.4,-10.3582,-11.6944,109.602,-10.3891,3.85526,110.727,-2.46763e-005,-15.5023,106.274,-1.60949e-005,-5.68688,152.151,-10.2309,10.4838,155.469,-11.2805,8.35105,156.647,-11.2221,3.74667,156.683,-10.9723,5.67949,157.229,-9.87198,7.94944,157.304,-7.98571,10.3505,156.278,-10.6873,1.96286,156.009,-4.39218,-4.37447,154.434,-3.42525,-4.78963,154.256,-5.31335,-3.70586,154.6,-9.42435,0.320139,155.518,-8.13937,-1.01214,155.202,-5.04588,11.3131,156.131,-2.46387,11.5547,156.082,-2.44186,-4.98894,154.049,-1.54284,-5.03622,153.867,-0.745825,-4.96074,153.74,-7.11812,-2.06259,155.009,-6.21786,-2.90754,154.806,-1.73283,-14.267,99.4238,-1.67511,-13.2276,95.9902,-3.26961,-13.1021,96.7238,-3.41508,-14.1628,100.108,-13.8331,-8.22887,106.848,-13.7205,-7.35972,108.479,-12.7511,-9.4031,107.667,-12.7078,-10.0655,105.924,-7.97873,-12.9458,101.19,-8.27946,-13.1417,103.772,-6.66271,-13.7423,102.382,-6.35243,-13.1831,99.5108,-9.63389,-12.3731,102.896,-9.89319,-12.2369,105.175,-5.0437,-14.0355,101.117,-4.78932,-13.1719,97.9768,-5.19117,-14.4696,104.328,-6.85355,-13.9007,105.289,-3.49238,-14.8045,103.549,-1.75889,-15.0021,103.013,-8.498,-13.0553,106.345,-12.986,-8.79736,109.322,-13.8605,-6.59804,109.975,-10.1442,-11.9741,107.413,-11.0669,3.67801,109.261,-11.6837,3.57619,107.649,-8.37639,5.67707,107.378,-7.87411,5.3766,108.954,-14.56,-5.88577,107.056,-14.3044,-4.92782,108.741,-1.84854,6.6887,104.798,-1.7112,6.12926,106.528,-4.73551,6.371,106.965,-5.07711,6.95109,105.195,-4.35757,5.9179,108.452,-1.52921,5.78588,107.939,-1.31672,5.57288,108.921,-14.3705,-2.13155,108.477,-14.7491,-2.97144,106.627,-14.0596,0.408647,106.073,-13.586,0.808464,107.978,-13.0792,1.28052,109.561,-14.1335,-1.38808,109.967,-12.2004,3.60808,105.735,-11.4396,-11.0267,106.503,-11.2611,-11.4368,104.516,-11.7066,-10.5991,108.426,-14.2962,-4.08858,110.2,-8.85951,6.03518,105.533,2.86366e-006,6.23662,104.596,1.62153e-006,-13.405,95.6562,-16.7606,-5.38151,93.4131,-15.9803,-8.24633,92.8237,-16.3222,-7.71111,88.6826,-17.0577,-4.78705,89.0372,-16.3935,-5.99116,96.3713,-15.4826,-8.67643,96.2448,-16.378,-2.18939,93.4105,-16.656,-1.59119,89.0636,-16.2729,-2.68933,95.6201,-14.3391,-10.3827,91.9641,-14.6472,-9.98372,87.978,-16.4636,-7.16388,84.5073,-17.2424,-4.23349,84.7947,-14.7356,-9.49003,84.091,-13.5335,-10.9486,98.1767,-13.8965,-10.6376,95.2805,-15.0303,-9.17302,99.3234,-11.5288,-11.894,96.3984,-11.7956,-11.7215,93.7813,-12.0943,-11.6233,90.6807,-9.20346,-12.18,98.5034,-9.19701,-12.0841,96.4982,-11.3025,-11.9525,98.3805,-11.1668,-11.8982,100.369,-9.32264,-11.9872,94.5253,-9.50758,-11.8683,92.1527,-11.1695,-11.7356,102.443,-12.8553,-10.6322,104.009,-15.0024,-6.63025,105.104,-14.1881,-9.00266,105.018,-15.0341,-3.5578,104.516,-15.3581,-3.8681,102.463,-15.4003,-6.90118,103.061,-15.6661,-6.86056,101.147,-15.7204,-3.80973,100.509,-16.0572,-3.53785,98.5398,-15.939,-6.62331,99.2642,-15.0028,-0.101037,99.6202,-15.2277,0.129896,97.4316,-15.0438,0.899576,92.8625,-15.1631,0.617859,94.824,-1.22701,-9.83675,88.95,-0.859138,-8.47056,88.802,-1.53271,-8.09393,88.3477,-2.35514,-10.0248,89.4339,-0.507913,-6.8456,88.822,-0.628315,-5.01975,88.6409,-2.86402,-8.89714,86.4548,-2.79745,-7.61889,83.8815,-4.55903,-9.73796,84.2617,-4.85304,-10.4886,87.0473,-6.94862,-11.1101,84.9477,-7.16578,-11.399,88.045,-2.66785,-6.35987,81.323,-4.31774,-8.83306,81.4983,-6.6509,-10.5648,81.9632,-3.17862,-9.86147,88.5873,-5.15498,-10.8813,89.4274,-7.27743,-11.5019,90.6504,-1.55227,-6.50032,86.4231,-1.6267,-4.86273,84.0147,-1.00696,-3.47397,86.8153,-1.22029,-1.5236,84.6273,-3.04403,-12.1624,94.0126,-1.5718,-12.3828,93.1266,-4.44923,-12.1639,95.3688,-4.16719,-11.4155,93.2746,-2.88522,-11.6019,91.9779,-1.52994,-11.8539,90.9331,-1.48277,-11.0117,89.4485,-2.75859,-10.9705,90.4651,-0.647268,-0.37002,89.3557,-1.19052,-0.614618,87.4614,-1.91741,2.123,87.1802,-1.72676,3.63125,90.3098,-5.33753,5.86127,90.5145,-5.35564,4.99013,87.6665,-9.1563,5.35222,87.8658,-9.38136,5.90589,91.0616,-12.7924,3.86796,91.9431,-15.0512,1.47776,88.8091,-12.5171,3.9455,88.3559,-13.0751,3.95001,93.7431,-9.67932,6.43465,92.8041,-2.20603,6.09458,92.277,-5.73483,6.94815,92.299,-5.69765,8.11081,98.0223,-9.92803,6.92655,98.4027,-9.99704,6.89347,95.6579,-5.65666,7.91545,95.1958,-1.91957,7.39933,95.0627,-2.00076,7.7104,97.7444,-2.02587,7.6123,100.348,-5.61922,7.95605,100.687,-5.39384,7.52029,103.09,-9.32075,6.39739,103.374,-9.70865,6.73497,100.991,-1.97354,7.24141,102.734,-13.2804,3.7443,98.8537,-13.4142,3.83796,96.4074,-14.3924,0.0420688,103.926,-12.6624,3.63286,103.558,-14.7072,-0.195175,101.742,-13.0592,3.67059,101.238,-7.33905,-11.9293,96.5712,-7.19832,-11.718,94.6473,-7.62972,-12.4578,98.7449,-5.96474,-12.3121,96.9329,-5.63729,-11.4847,94.7544,-5.49074,-11.1713,93.0172,-3.98911,-10.9069,91.6531,-5.37989,-11.0566,91.3524,-3.72795,-10.5046,90.2292,-7.23853,-11.6018,92.7992,-9.60336,-11.8446,89.3053,-8.72767,1.63842,38.2507,-9.00895,2.29217,34.3182,-11.4226,1.96926,34.479,-11.3066,1.17443,38.4289,-11.4012,0.445586,42.6752,-8.83418,0.798828,42.6434,-13.6112,3.25052,34.8925,-13.8224,2.64211,39.0396,-13.9061,1.89258,43.21,-6.57041,8.97202,22.7986,-6.38242,9.0255,19.0736,-6.57516,6.94369,19.114,-6.84076,6.79398,22.8193,-7.36385,5.04303,19.1614,-7.57937,4.90647,22.9494,-8.82464,3.59822,19.1849,-8.97807,3.39486,22.9886,-14.2074,12.8505,36.0285,-14.5456,12.8936,40.3608,-15.8849,10.7441,40.0063,-15.431,10.7114,35.8841,-14.8642,10.5891,31.9582,-13.697,12.3323,32.0446,-12.2972,14.1193,36.0312,-12.3651,14.0888,40.142,-11.8608,12.717,27.5009,-10.1461,13.2328,27.4725,-10.1105,13.8504,31.8815,-12.1464,13.4465,31.9973,-13.2369,9.90532,22.5809,-12.3586,11.2132,22.5564,-13.0618,11.7915,27.5811,-14.1448,10.3757,27.6272,-11.3196,12.1761,22.5544,-9.97014,12.8297,22.6006,-9.90253,14.3915,35.8744,-13.7039,8.05348,22.6572,-13.2086,8.0452,19.0972,-12.7642,9.70247,19.0474,-16.481,-6.58727,80.1352,-14.6941,-8.89198,79.6893,-12.2711,-11.3784,86.981,-12.2678,-10.9565,83.3835,-12.1548,-10.3094,79.0625,-17.3125,-3.72008,80.4367,-11.954,-9.47749,74.9403,-14.5083,-8.19395,75.4842,-9.42221,-11.2895,82.614,-9.23702,-10.5682,78.4317,-9.05181,-9.5922,74.4684,-6.48204,-9.62051,77.9192,-6.34631,-8.53541,74.1059,-4.23882,-7.68386,77.5755,-4.24591,-6.46402,73.886,-4.26359,-5.14838,70.2889,-6.14672,-7.34895,70.4378,-2.73109,-5.06121,77.4723,-2.96529,-3.74938,73.8306,-3.25113,-2.41444,70.2707,-4.24747,-3.88222,66.7681,-5.91533,-6.20652,66.8974,-8.45794,-7.43404,67.1959,-8.77732,-8.48036,70.7352,-11.1287,-7.38533,67.6338,-11.578,-8.43852,71.1503,-13.4903,-6.48839,68.0515,-14.0788,-7.37331,71.5994,-10.6796,-6.45606,64.4211,-8.16049,-6.50108,63.9203,-12.8486,-5.66033,64.85,-8.03407,-5.6326,60.9984,-10.3286,-5.71736,61.5446,-12.26,-5.01753,61.9492,-13.8843,-3.81125,62.1108,-14.6484,-4.27886,65.1116,-9.8312,-5.1112,58.8432,-11.8438,-4.69145,59.0588,-13.406,-3.32345,59.2107,-5.73521,-5.13477,63.5451,-5.85688,-4.05498,60.492,-4.25305,-2.69914,63.3859,-4.57928,-1.51713,60.2978,-15.4079,-4.87915,68.3687,-15.7666,-2.10673,65.3299,-16.4548,-2.43051,68.6621,-15.0072,-1.84525,62.1312,-3.49265,-1.14636,66.7789,-3.66796,0.0171437,63.4038,-2.84031,0.547891,70.3983,-3.34363,1.71365,66.951,-3.69985,2.74714,63.6226,-3.40547,3.53047,70.7165,-4.19751,4.51013,67.3218,-2.30236,-0.702056,73.9475,-2.61855,2.46841,74.2725,-1.97403,1.28769,77.8602,-1.85939,-2.0127,77.5131,-1.52601,-0.0509378,82.1956,-1.6346,-3.39844,81.6934,-4.05255,3.54826,60.4322,-4.03658,1.0731,60.2487,-5.33731,5.78919,60.9473,-4.84338,5.27146,64.0642,-5.05039,5.67783,71.051,-4.10834,4.94483,74.6678,-3.34255,4.05921,78.3584,-6.19867,-2.73269,58.2275,-6.40732,-1.7568,56.2146,-7.68479,-3.55946,56.3197,-7.82455,-4.43513,58.4979,-6.41487,-1.02824,54.2521,-7.52323,-2.88818,54.3579,-5.39649,0.389025,55.9919,-5.58621,1.1299,54.0974,-5.1122,-0.41292,57.9276,-9.46719,-4.64202,56.3748,-11.4976,-4.37492,56.4206,-13.2022,-3.07449,56.5262,-14.2001,-1.03442,56.7504,-14.4746,-1.41607,59.3406,-14.9832,1.16877,56.9489,-15.1761,0.662003,59.4249,-14.9698,3.61967,57.164,-15.2214,3.00322,59.7719,-14.1245,-0.672325,54.4016,-14.9954,1.64102,54.6313,-14.9192,4.33454,55.0253,-12.9642,-2.67261,54.2825,-13.9016,-0.245902,52.119,-14.9858,2.08623,52.251,-15.0629,4.74272,52.6133,-15.0384,2.62563,49.838,-15.4166,5.43624,50.1943,-13.4389,0.0131819,49.664,-11.2206,-3.76453,54.2648,-9.33156,-3.9061,54.3034,-9.24179,-3.20728,52.3197,-11.1066,-3.14642,52.2667,-12.6937,-2.07898,52.2802,-9.17174,-1.01127,48.9066,-11.3579,-1.13445,48.8145,-11.0756,-2.26399,50.5646,-9.28617,-2.14162,50.6946,-8.944,-0.0440013,46.4278,-11.3346,-0.329787,46.2688,-13.7489,1.02087,46.7252,-7.6948,-2.1532,52.4509,-4.82183,2.69009,55.7211,-5.23547,3.34928,54.0266,-4.49487,2.31463,57.3104,-4.98966,4.85399,55.7301,-5.52421,5.37804,54.1841,-4.56614,4.47928,57.3911,-5.80268,4.23221,52.2102,-6.05975,6.25686,52.5031,-5.91198,6.1865,56.0943,-6.37487,6.65111,54.4201,-6.87836,7.74432,52.5913,-6.03499,1.9699,52.1507,-6.07382,5.32234,50.0242,-6.4403,2.8848,49.8981,-7.40414,0.240939,49.8276,-6.73548,-0.2936,52.2158,-6.35673,4.01073,47.3731,-7.36173,1.62837,46.9974,-5.86844,6.58488,47.5069,-7.22287,2.62763,43.0312,-5.91635,4.9533,43.4465,-5.32872,7.73446,43.6829,-6.21743,7.56408,50.3551,-7.04944,9.38525,50.3083,-6.01849,9.0523,47.4545,-7.10544,11.08,47.3214,-8.39701,8.94587,52.686,-8.68066,10.5202,50.2449,-9.09069,12.11,47.1961,-10.3007,9.21531,52.7798,-10.7644,10.7017,50.1531,-8.0446,7.58864,54.684,-9.89253,7.88262,54.9405,-7.78227,6.80971,56.6674,-9.6829,7.13318,57.1337,-7.58168,6.52975,58.8788,-9.60591,6.61775,59.5061,-2.66393,3.10275,82.9206,-5.69899,5.41421,83.5177,-6.24369,6.0333,78.945,-7.3926,6.55479,61.4934,-9.55174,6.48348,62.1861,-11.7359,5.98029,62.5949,-11.6984,6.21631,59.8722,-11.7084,6.79642,57.4252,-13.6807,5.02761,59.9279,-13.5969,5.59372,57.4566,-12.2714,8.56042,52.8647,-11.8244,7.452,55.1316,-13.6247,6.24916,55.2032,-13.8737,7.03599,52.9146,-14.4908,8.11029,50.5915,-12.8178,9.85959,50.3176,-15.8951,6.3419,47.6157,-15.1918,8.9629,47.6546,-15.4041,3.51728,47.2629,-13.5597,10.9451,47.4378,-15.661,4.27766,43.781,-16.3165,7.12319,44.1082,-15.757,9.89009,44.1742,-14.2084,12.0565,44.0719,-16.2939,7.90155,39.8176,-7.12997,12.5797,43.6614,-9.45862,13.4902,43.6596,-5.65183,10.4753,43.7191,-7.29377,13.5875,39.594,-7.46337,13.6517,35.6701,-5.94345,11.6152,35.3877,-5.59541,11.5399,39.4109,-8.00145,13.3357,31.7457,-6.49776,11.5994,31.6088,-5.16895,8.69662,39.081,-5.61659,8.97038,35.0509,-6.04323,9.06987,31.4404,-6.9821,11.4429,27.5837,-6.46591,8.91591,27.6165,-9.79528,14.3489,39.7892,-11.9653,13.2827,43.8356,-5.69581,5.75379,38.8023,-7.05445,3.40045,38.4795,-9.07835,3.11436,27.4021,-7.6713,4.64655,27.4501,-6.86862,6.62171,27.5487,-10.7955,3.31491,23.0125,-11.0436,2.87682,27.4734,-9.08897,2.73133,30.979,-7.49498,4.42178,31.0643,-11.3019,2.46177,31.1005,-12.3214,4.40295,22.9634,-12.8488,3.98052,27.6334,-6.08422,6.32432,34.7185,-6.51249,6.5621,31.2398,-8.35578,12.9169,27.5208,-8.31925,12.6701,22.6858,-7.10936,11.2125,22.7606,-8.12887,12.3725,19.0017,-7.02755,10.9895,19.0345,-15.1742,5.39266,35.2976,-15.5978,5.02033,39.5639,-14.1591,5.9294,27.7369,-14.7553,5.75383,31.6501,-13.2964,3.6683,31.3865,-15.8147,8.08391,35.6242,-15.2658,8.21222,31.8422,-11.9291,4.72317,19.1414,-12.8437,6.33279,19.1312,-13.3376,6.11593,22.7715,-14.5871,8.20585,27.7272,-9.39519,5.68151,84.0874,-9.83674,6.2706,79.5172,-13.0964,4.86723,79.9919,-12.6916,4.37107,84.411,-13.4148,5.11282,76.0443,-10.3769,6.56628,75.6309,-15.7022,2.78818,76.3067,-15.5844,2.48741,80.3444,-15.2747,2.02672,84.7392,-15.6932,2.89639,72.4734,-13.6692,5.15949,72.2879,-10.9139,6.5913,71.9274,-15.6535,2.93214,68.9415,-13.8401,5.0845,68.8187,-16.4459,0.281779,68.8844,-16.8056,0.130986,72.4758,-17.0686,-0.0953165,76.3812,-7.78814,6.88786,71.476,-6.96869,6.56505,75.1265,-11.3547,6.39626,68.5256,-8.59989,6.86321,68.1499,-6.11566,6.44148,67.7273,-11.6368,6.14222,65.4065,-9.19722,6.64004,65.0071,-6.90206,6.58587,64.5146,-16.0566,0.406226,65.569,-15.5677,2.96047,65.6836,-13.904,4.99082,65.6231,-17.2532,-3.24942,76.2562,-16.985,-2.84663,72.3007,-16.3744,-6.05512,75.9472,-16.0221,-5.4951,71.989,-17.1238,-0.588405,80.5058,-16.9146,-1.0576,84.9186,-15.6175,0.534122,62.4295,-15.352,3.00518,62.6345,-13.7901,4.93749,62.646,-9.58831,-11.6784,85.9225,-5.64548,6.02596,57.9099,-11.3915,12.0232,47.219,-7.27048,4.05299,34.4582,-10.5293,3.62141,19.2051,-9.37691,-12.3192,100.638,-13.2887,-11.023,100.099,-14.5885,-9.30595,102.993,-6.32573,7.04293,16.1479,-6.20964,9.07471,16.0509,-7.19741,5.03622,16.296,-8.71862,3.67783,16.3874,-12.8761,8.12608,16.2815,-12.4285,9.64945,16.2596,-6.94633,10.8687,16.0627,-11.6698,4.93649,16.2451,-12.5345,6.50486,16.2747,-10.3847,3.80859,16.3407,-10.9633,12.0624,18.9547,-9.60552,12.7394,18.9683,-11.9403,10.9873,18.9959,-7.98374,12.2097,16.0998,-10.702,12.01,16.1545,-9.37916,12.6807,16.1273,-11.6758,10.9192,16.2016,2.09254e-006,-12.6139,92.7651,2.8757e-006,-9.73808,88.6896,2.89466e-006,-8.61134,88.8438,2.93673e-006,-6.7291,88.959,2.75231e-006,6.74713,95.0871,2.07337e-006,6.65649,102.536,-14.8259,-9.3184,101.15,-13.076,-10.9374,101.991,2.12745e-005,5.4469,109.063,-6.13618,6.84141,13.9934,-5.83932,6.46842,12.1189,-7.14529,4.6404,12.9085,-7.17474,4.87996,14.3194,-5.98627,9.08466,13.9029,-5.22122,9.71853,9.55078,-4.9451,9.56147,7.40994,-5.05908,7.16684,7.21601,-4.7904,7.18018,9.52044,-5.48931,8.95712,11.739,-6.19826,4.88989,10.0573,-6.32912,5.16018,11.2705,-6.04596,4.33042,8.0978,-8.37101,0.603822,8.00853,-7.5025,2.65757,9.52758,-7.16457,1.05315,6.92813,-5.50847,4.35687,5.8547,-6.3708,1.36296,5.47655,-7.33026,3.62794,10.9301,-6.17203,11.4429,9.68906,-7.31056,12.8491,9.97392,-6.93033,13.5034,7.89067,-5.64299,12.0412,7.49305,-9.03338,13.3868,10.1809,-9.14054,14.2489,7.86803,-6.65803,14.046,5.86516,-5.19863,12.2269,5.71714,-4.62338,9.83045,5.62446,-8.74189,2.9224,11.3834,-8.99276,2.02975,10.0939,-10.0484,2.99991,11.2987,-10.2119,2.0651,10.0195,-10.6472,0.330446,8.30988,-9.57753,0.314496,8.35359,-10.4679,-2.40063,6.31306,-11.3919,-2.32046,6.20983,-9.29998,-2.19538,6.28823,-10.2844,3.85898,14.4471,-11.5569,4.99267,14.2763,-8.6731,3.67188,14.5138,-12.0856,5.14151,10.1493,-11.1603,3.63587,10.8521,-11.2475,2.55801,9.56149,-12.0523,3.32025,8.66839,-12.5894,12.215,6.24446,-13.1764,9.97658,6.63308,-13.389,10.4248,4.55924,-12.6942,12.6926,4.2603,-11.195,14.0,6.06027,-10.9738,14.2959,4.10218,-13.1729,10.8657,2.64218,-12.2639,12.954,2.43115,-10.5715,14.3201,2.35516,-12.0933,10.9743,1.3639,-11.0671,12.4105,1.24326,-10.1567,13.4464,1.29826,-13.1745,5.633,6.23256,-13.526,3.10834,5.40212,-13.894,3.98946,4.05987,-13.4787,6.30911,4.52439,-14.8232,1.15753,3.33071,-14.2679,0.233871,4.5186,-12.972,2.18962,6.47719,-13.535,-0.679802,5.25312,-12.6748,4.19319,7.47974,-13.2668,9.43386,7.61918,-13.1951,7.84702,7.27388,-13.2102,8.03471,6.22384,-13.15,-10.8525,1.23961,-13.3996,-11.2332,0.726714,-13.7226,-11.1064,0.934084,-13.6645,-10.7636,1.36853,-13.7624,-11.1433,0.48585,-14.0107,-10.8971,0.729659,-14.3678,2.00969,0.856656,-13.4552,4.75497,1.01417,-14.2253,4.61498,2.56858,-15.085,1.87403,1.97468,-13.7669,6.97272,2.82959,-12.8813,7.06126,1.17374,-10.2946,10.4574,0.733242,-9.48799,11.8769,0.784676,-12.4214,9.3281,1.30839,-13.3956,9.37664,2.74353,-11.3781,6.65462,0.67136,-10.8965,8.92659,0.701652,-8.72453,13.1563,1.10022,-7.96372,11.1388,0.627644,-7.12793,12.2915,0.997911,-8.62405,9.79879,0.56843,-8.3582,14.4273,2.31118,-8.93437,14.6851,5.97035,-8.61231,14.7268,4.03883,-6.36539,13.9132,3.98894,-11.1327,13.4271,7.99232,-4.46194,9.71499,3.93039,-4.94093,12.0603,3.94933,-4.95541,11.6063,2.32702,-4.71676,9.36831,2.41694,-6.26641,13.4335,2.28003,-6.01337,10.9459,1.04032,-5.80931,9.1034,1.17841,-4.73366,7.20203,3.96569,-5.14759,7.05887,2.52682,-6.14585,7.1861,1.42762,-10.6911,12.6758,10.4971,-9.19959,8.27061,0.580007,-13.8775,-10.1988,0.431776,-13.5591,-10.3739,0.341374,-13.4242,-9.84264,0.583373,-13.865,-9.77011,0.684478,-13.2058,-10.5332,0.412721,-13.0096,-10.1591,0.667706,-14.0478,-10.5093,0.500661,-13.6973,-10.8465,0.315264,-13.1977,-10.9254,0.478254,-14.3924,-9.03233,0.643022,-14.2435,-8.74434,0.835815,-14.5382,-8.577,0.73985,-14.6383,-8.98296,0.581387,-14.9028,-8.23465,1.01216,-14.9041,-8.64999,0.755898,-14.4857,-8.17661,0.97421,-15.2116,-8.94255,0.883552,-15.0785,-9.25805,0.650517,-14.8875,-8.95562,0.601839,-15.2542,-8.52106,1.20932,-14.2074,-9.12268,1.02866,-14.1229,-8.73421,1.40648,-14.165,-8.37017,1.11557,-14.1494,-8.00498,1.29428,-14.4678,-7.80604,1.11706,-14.1077,-8.30936,1.69289,-14.4336,-9.38357,0.708133,-14.5806,-9.69201,0.9042,-14.4764,-9.4871,1.24744,-14.7821,-9.41529,0.588603,-14.9347,-9.76585,0.868284,-6.68483,4.87908,1.64496,-5.7603,4.63101,2.68071,-6.20096,-1.47946,2.42097,-6.19255,1.88764,2.61508,-7.04464,1.83899,1.38098,-6.94782,-1.26564,1.03495,-5.38922,4.49972,4.1038,-6.04527,1.68666,3.9709,-6.43836,-1.6595,3.8242,-7.21887,-1.83733,5.06807,-12.8265,-8.62901,1.28466,-13.242,-8.40169,1.06856,-13.3152,-8.89967,1.06883,-12.8805,-9.12899,1.25015,-13.3432,-9.32946,0.886887,-12.9018,-9.62711,1.02488,-12.6416,-8.8555,1.87002,-12.6982,-9.4036,1.76717,-12.7455,-10.0125,1.42345,-12.584,-8.02122,1.12638,-13.0413,-7.71973,0.931383,-12.5477,-8.46393,1.85599,-14.0991,-9.25096,2.21059,-14.0933,-9.87744,1.76646,-14.1123,-9.49903,1.37404,-14.0893,-8.97325,1.67636,-13.6227,-9.51373,2.51957,-13.6617,-10.2021,1.99561,-14.0376,-10.4254,1.19496,-14.1222,-10.0279,0.919407,-14.221,-4.8662,3.9288,-14.5837,-5.84685,3.4683,-15.031,-5.52604,3.35137,-14.9776,-4.31973,3.6569,-13.5807,-5.57934,3.8903,-14.1644,-6.2578,3.33876,-14.7711,-6.58199,3.01154,-15.1318,-6.23782,2.91522,-14.3671,-6.85506,2.88724,-15.3081,-5.44406,3.14092,-15.5598,-4.90724,3.19404,-15.3677,-5.87279,2.78076,-15.7378,-5.48111,2.76596,-13.6555,-6.61966,3.39627,-13.9618,-6.63402,3.16654,-14.0586,-7.07299,2.81876,-14.0908,-7.50435,2.33275,-14.348,-7.46674,2.38558,-14.8476,-7.23057,2.5854,-13.0959,-6.77745,3.53021,-12.7062,-5.82093,4.06482,-12.504,-7.04486,3.41654,-11.8142,-6.28823,4.01036,-12.1594,-4.53843,4.78856,-11.2285,-4.8122,4.87484,-12.9833,-4.16536,4.71072,-12.7345,-7.68836,3.06377,-13.305,-7.50576,3.12716,-12.1777,-7.37351,3.31719,-12.2776,-7.82394,3.04966,-11.7609,-7.28031,3.60999,-13.4145,-8.14533,2.84596,-12.7459,-8.33475,2.63976,-12.3726,-8.27571,2.58068,-13.7888,-7.29502,2.9761,-13.9316,-7.88682,2.47136,-15.3207,-8.89705,1.50806,-15.2871,-9.31987,1.13416,-15.3233,-8.34544,1.88546,-15.2364,-8.02308,1.48552,-14.8827,-7.80796,1.18964,-8.92803,-11.5428,2.21443,-9.05765,-12.1006,2.06006,-9.98629,-11.8082,1.74678,-9.82278,-11.1348,1.84786,-10.3253,-11.7046,0.931949,-10.1161,-10.8828,0.977927,-8.82853,-10.9435,2.39868,-9.7026,-10.4165,2.07557,-9.83301,-10.0595,1.17026,-12.8209,0.986793,0.649603,-11.0427,-0.129804,0.601934,-10.49,2.36082,0.539975,-12.1199,3.6401,0.52788,-15.1997,-9.55514,0.8463,-6.29855,-7.64929,1.13092,-6.2041,-7.8657,2.1422,-5.85523,-6.65622,2.33151,-6.04931,-6.55669,1.13868,-6.71319,-8.48972,1.04352,-6.63156,-8.79398,1.91129,-6.75376,-7.93005,3.16435,-6.40572,-6.72367,3.53238,-7.16963,-8.90771,2.83927,-7.0793,-9.24366,0.935095,-6.9487,-9.62295,1.70405,-7.28326,-8.17429,0.474344,-7.72187,-8.8646,0.533368,-6.89283,-7.42879,0.417231,-7.49734,-9.78515,2.58636,-7.99917,-9.59437,0.423788,-7.26425,-10.0168,0.764726,-8.1123,-7.95641,0.256845,-8.75942,-8.61709,0.683692,-8.92638,-9.33125,0.63808,-7.77962,-7.31476,0.0739262,-8.50642,-7.38214,0.0200921,-8.90077,-7.84601,0.25639,-9.42135,-8.37084,0.821335,-8.56177,-9.50241,3.073,-8.20648,-8.68241,3.40295,-7.83499,-7.79304,3.80399,-9.22342,-8.27401,3.46363,-9.53534,-8.88736,2.73057,-8.74401,-10.2744,2.73692,-9.59878,-9.67468,2.36463,-7.69046,-10.5723,2.34664,-9.01306,-7.61163,3.90592,-9.87836,-7.92488,3.29852,-9.69769,-7.54932,3.65235,-9.9752,-8.38725,2.64333,-10.4416,-7.62944,0.361464,-10.9628,-8.46179,0.690418,-10.2021,-8.57227,0.860108,-9.64003,-7.75895,0.298202,-11.2201,-7.50256,0.492476,-11.779,-8.37143,1.01066,-11.3413,-9.23974,0.79752,-10.7445,-9.38864,0.995218,-11.9975,-9.14869,1.1119,-11.8006,-7.36301,0.597133,-12.1754,-8.04074,1.11429,-12.2349,-7.14768,0.619434,-11.4487,-6.77629,0.327403,-11.6875,-6.35985,0.310848,-10.7911,-6.66599,0.211398,-12.6982,-6.88649,0.615508,-13.1618,-6.67456,0.658167,-13.5531,-7.55529,1.10765,-13.7017,-8.31696,1.24625,-9.82611,-6.77278,0.0914835,-10.8673,-5.69727,0.312163,-9.56728,-5.70039,0.292557,-13.8105,-6.18603,0.642989,-13.5124,-6.46938,0.681476,-13.2762,-5.88741,0.44637,-13.4511,-5.42774,0.391349,-12.8509,-5.81627,0.385525,-12.693,-4.70295,0.41115,-12.2287,-5.96286,0.333138,-11.7908,-5.14718,0.362105,-14.1998,-5.83876,0.594905,-13.9019,-4.93765,0.374717,-14.3747,-6.66906,0.8779,-14.0186,-7.05265,1.11108,-14.497,-4.66869,0.42016,-14.6546,-5.52364,0.619157,-14.8574,-6.42577,0.989395,-16.0229,-4.45362,0.728613,-15.4619,-4.84382,0.68537,-15.217,-4.13526,0.502861,-15.8398,-3.55874,0.604656,-16.6211,-4.22997,0.924056,-16.5192,-3.20303,0.919038,-15.0362,-2.71748,0.6556,-16.1496,-2.03458,0.898697,-14.3991,-3.70477,0.50599,-15.979,-5.27222,0.762308,-15.4454,-5.66618,0.950217,-15.8427,-5.89624,0.743515,-15.4044,-6.13301,1.03903,-16.5318,-5.12067,0.865356,-16.3843,-5.83385,0.762343,-12.3815,-8.39627,1.83406,-12.052,-8.53056,2.77353,-11.8503,-7.9301,3.27965,-12.2681,-8.64262,1.85094,-13.5195,-8.79276,2.73353,-14.01,-8.58188,2.37647,-12.8822,-8.9105,2.52923,-15.2082,-6.84319,2.29231,-15.3604,-6.26929,2.19974,-15.657,-6.08589,2.20386,-15.2583,-6.28132,1.53486,-15.344,-6.1611,1.5327,-15.1716,-6.75766,1.55724,-11.1818,-7.90422,3.4205,-11.3119,-8.55797,3.11655,-11.4504,-9.33736,2.95003,-12.1187,-9.23207,2.66173,-12.3344,-9.16861,1.85949,-10.4869,-7.84757,3.32683,-10.5458,-8.55611,2.75573,-10.8058,-9.41423,2.51459,-9.82296,-8.58945,1.69201,-10.239,-8.82715,1.74207,-10.5398,-9.4769,1.68412,-9.55437,-8.81378,1.59101,-16.2715,-2.46783,2.7016,-16.6024,-3.59898,2.48295,-16.8041,-3.21489,1.64602,-16.506,-2.01263,1.73706,-16.7385,-4.58033,2.21787,-16.905,-4.27134,1.51664,-15.7829,-1.14199,2.93047,-16.0531,-0.591438,1.79694,-15.3049,-0.376038,0.805862,-16.8359,-5.18727,1.33153,-16.7279,-5.95523,1.12651,-16.7316,-5.4348,1.91807,-16.6785,-6.20021,1.63884,-16.3243,-5.05864,2.72952,-16.3023,-5.78301,2.31405,-16.2473,-6.44692,2.00229,-15.6582,-6.54608,1.97868,-9.98066,-13.099,1.3135,-10.0613,-13.1014,0.862907,-10.3425,-12.4742,0.934555,-10.0622,-12.5322,1.59363,-9.37929,-13.348,1.35457,-9.39073,-13.4334,0.837136,-8.22557,-13.0077,0.567661,-8.63621,-13.3234,0.621998,-8.61093,-13.4399,0.979764,-8.01535,-13.0882,1.1665,-8.7287,-13.3783,1.36934,-8.39412,-12.9782,1.69184,-9.27893,-13.2142,0.470194,-9.23132,-12.7727,1.84096,-11.6616,-12.4952,1.14072,-12.1302,-12.4857,1.11721,-12.0105,-12.0825,1.54424,-11.4505,-12.1542,1.41986,-11.5847,-12.4165,0.816936,-12.1288,-12.4543,0.718071,-11.2339,-12.0429,0.992929,-12.5391,-12.2988,1.06083,-12.5278,-11.9059,1.32583,-12.6003,-12.2176,0.752383,-12.7194,-11.7302,0.937046,-14.4163,-7.98772,2.23597,-14.0702,-7.5529,1.76769,-14.1133,-7.87517,1.79978,-13.9727,-7.54805,1.72584,-14.1346,-7.59696,1.29721,-13.7702,-7.15249,1.13274,-15.3129,-6.41487,1.54175,-15.1574,-5.8811,0.994825,-12.4469,-12.0199,0.551683,-12.0471,-12.1205,0.500499,-11.6333,-12.1718,0.569847,-12.4638,-11.5986,0.584809,-15.4616,-7.96847,0.541212,-15.6686,-8.31085,0.773462,-15.3922,-8.21932,0.92928,-15.2166,-7.91917,0.762236,-15.9049,-8.12908,0.601311,-15.7841,-7.82463,0.422968,-16.0999,-7.49558,0.464731,-16.1607,-7.88273,0.750749,-15.4046,-7.54048,0.479971,-15.6625,-7.50865,0.37698,-15.8186,-7.19346,0.409588,-15.4486,-7.14301,0.546641,-11.6182,-10.2284,2.71939,-12.2709,-10.0131,2.50774,-12.4525,-9.82327,1.78348,-15.6177,-7.10261,1.80641,-16.1875,-7.11867,1.73142,-16.576,-6.88762,1.34782,-11.8836,-11.5662,1.85758,-11.3205,-11.624,1.64481,-11.7746,-11.0145,2.3024,-11.1658,-11.0591,1.96114,-12.4164,-11.3568,1.64762,-12.3683,-10.7584,2.11123,-15.1517,-7.66215,1.04671,-15.4505,-8.02148,1.2202,-15.5456,-7.59774,1.50413,-15.1878,-7.27796,1.31435,-15.2475,-6.84307,1.49693,-16.0607,-7.66987,1.39041,-15.9246,-8.12673,1.11205,-14.9105,-7.89796,2.35733,-14.4363,-8.55857,2.04733,-14.9669,-8.58659,2.13927,-16.3805,-7.43511,1.01319,-9.15889,-10.0925,0.386352,-9.59817,-9.35307,1.40969,-8.15628,-10.4135,0.143271,-9.45518,-10.9759,0.167277,-8.37921,-11.3219,-0.0067395,-12.336,1.41834,7.37987,-11.6063,0.748603,7.98347,-12.2016,-2.01278,6.05134,-12.8761,-1.44534,5.73398,-4.76901,7.23126,5.65876,-12.9053,6.56965,7.46239,-13.2794,7.5133,8.78846,-12.5332,5.66721,8.45047,-13.7531,-1.58543,0.623499,-8.26837,-5.24182,0.431253,-7.22743,-5.39054,0.524162,-6.71979,-4.38776,0.768963,-9.31877,-3.96954,0.516582,-6.70081,-6.54501,0.378148,-8.27248,-6.37335,0.266364,-14.3766,-2.85985,4.24361,-13.6853,-3.5866,4.54564,-15.1713,-1.97824,3.82738,-15.7057,-3.2455,3.42266,-10.1063,-4.89494,4.85825,-10.5617,-6.27258,4.18724,-8.83698,-5.04634,4.92264,-8.26009,-2.07162,5.94308,-9.22686,-6.6289,4.26245,-7.46827,-5.09801,4.62283,-7.60035,-6.68217,4.28201,-6.35983,-5.05804,3.73005,-13.3366,8.69653,4.77437,-6.90627,10.407,0.671763,-13.183,9.60068,8.8109,-12.9809,9.05849,10.4887,-12.7871,6.871,10.8128,-9.70573,5.99467,0.664222,-7.11329,9.19026,0.715763,-13.815,-9.27423,1.02791,-13.7754,-8.83188,1.23289,-14.0255,-8.41209,1.75374,-12.859,-10.5875,0.921327,-14.447,-9.06096,1.65935,-16.1336,-4.22907,3.09847,-14.9554,-9.13081,1.70846,-14.9558,-9.57959,1.32161,-10.1412,-7.27187,3.69362,-10.9598,-7.21941,3.75555,-9.06022,-7.07144,0.168215,-7.10187,-10.4173,1.53801,-8.69744,-12.1397,0.0502015,-7.83336,-12.4136,0.525553,-7.5341,-11.6751,0.520976,-9.02544,-12.7828,0.229475,-7.61569,-12.5257,1.28316,-7.36381,-11.8789,1.34609,-8.11972,-12.3906,1.88275,-7.95844,-11.8297,1.96965,-13.5083,-4.16207,0.438535,-14.9312,-4.6488,0.498635,-15.056,-5.21135,0.664978,-14.8624,-7.27427,1.15455,-14.4453,-7.34623,1.0558,-13.9384,-7.86939,1.73669,-9.88458,-12.553,0.374931,-9.72951,-11.8417,0.204584,-9.85668,-13.0014,0.511595,-12.3862,6.58536,14.2211,-11.8791,11.1038,10.4631,-12.2448,11.6588,8.15423,-15.248,-7.65515,2.08165,-15.1888,-7.42218,1.56387,-11.4363,-11.8019,0.577765,-11.9465,-11.6254,0.439481,-15.2017,-7.58715,0.646481,-15.1745,-7.3101,0.786414,-12.9779,-9.57845,2.34134,-13.0613,-10.2612,1.85293,-16.5763,-6.57006,0.912476,-11.0466,-11.5063,1.16406,-12.642,-11.13,1.2059,-12.397,-10.9849,0.735644,-11.8418,-11.021,0.510656,-11.2732,-11.2374,0.666369,-10.8998,-10.9186,1.34549,-12.5601,-10.4859,1.53856,-12.2961,-10.361,0.944903,-11.7268,-10.4268,0.650933,-11.1421,-10.6536,0.792491,-10.9913,-10.297,2.27638,-10.7408,-10.2423,1.53025,-10.9974,-10.0715,0.926026,-11.5719,-9.88313,0.785252,-12.1534,-9.78225,1.0946,-15.5469,-6.73686,0.665458,-16.0116,-6.78053,0.538433,-15.2109,-6.92898,0.962468,-16.365,-7.06372,0.659918,-15.2978,-6.53737,1.0574,-15.6881,-6.34572,0.744707,-16.2036,-6.35544,0.680153,-7.34022,-10.8456,0.57598,-7.20429,-11.1743,1.41522,-7.82896,-11.244,2.11344,-8.99443,-0.897862,0.734712,-5.86411,-4.95531,2.38569,-12.4841,6.63659,12.493,-12.7606,8.38561,12.4061,-12.6883,8.17324,14.1944,-12.8321,10.469,8.51413,-10.6045,12.0684,14.2421,-9.23133,12.7008,14.1868,-74.7832,5.10614,137.934,-75.1378,4.07677,137.689,-74.2305,3.40773,138.033,-73.3764,4.46367,138.426,-73.7797,5.95466,138.686,-74.9486,6.25737,138.265,-75.3566,7.22438,138.959,-76.3306,7.39554,138.591,-75.9673,6.4894,137.869,-76.0097,7.59613,139.867,-76.8764,7.75981,139.456,-74.7538,7.42313,140.289,-74.208,6.9363,139.311,-75.8765,5.42925,137.54,-75.4202,7.25773,141.384,-76.0591,6.20466,142.05,-75.8228,2.97495,142.315,-76.1855,4.65459,142.405,-77.6636,2.63525,141.618,-78.0731,4.5564,141.71,-77.9846,6.14526,141.257,-74.9161,1.66319,141.708,-76.572,1.08994,141.037,-77.1161,7.29245,140.616,-77.4315,7.653,139.979,-78.2711,7.70872,139.762,-77.7142,7.88776,139.117,-75.9913,4.49794,137.412,-73.5871,1.26112,140.519,-75.2133,0.584809,140.127,-78.7361,7.25877,140.171,-79.2943,6.68775,140.398,-74.9651,2.50188,137.542,-75.7487,3.19248,137.334,-72.8297,1.93955,139.383,-72.8377,2.98941,138.767,-89.4117,9.09479,136.403,-89.0337,9.17558,136.36,-89.069,9.05707,136.694,-89.3391,9.05188,136.666,-89.6172,8.86731,136.455,-89.4296,8.8469,136.762,-91.6605,4.14347,136.2,-92.3669,4.28391,136.111,-92.2452,4.37437,136.377,-91.725,4.33232,136.501,-92.4463,4.60782,136.458,-92.7884,4.55952,136.08,-86.6933,-2.12607,137.513,-86.1662,-1.94277,137.723,-86.2172,-2.37097,137.214,-86.6429,-2.36106,137.318,-85.4321,-1.64054,138.044,-85.2928,-2.01477,137.563,-86.8368,-1.79226,137.641,-86.3494,-1.48423,137.897,-85.6077,-1.08562,138.196,-86.9967,-1.53422,137.605,-86.6926,-1.12393,137.529,-87.2697,-1.67468,137.431,-87.2302,-1.97054,137.376,-87.0908,-2.28056,137.274,-85.7521,-0.584321,137.859,-84.8654,-0.134142,138.21,-84.7595,-0.667691,138.596,-84.6041,-1.2806,138.46,-85.7737,-0.322341,137.242,-86.7026,-0.72312,136.975,-84.9349,0.0371258,137.485,-84.2905,0.402838,137.709,-83.9356,0.371082,138.627,-84.8439,-0.0732606,136.789,-85.6468,-0.37397,136.587,-84.23,0.373196,136.928,-87.6853,-2.09961,137.049,-87.5181,-2.48045,136.952,-87.5848,-1.55527,137.088,-88.148,-2.76498,136.612,-88.3371,-2.34608,136.699,-88.4748,-1.89088,136.581,-88.8081,-3.01863,136.308,-88.9782,-2.62384,136.371,-89.3066,-2.27497,136.143,-86.8716,-2.76876,136.205,-87.7343,-3.11223,135.812,-87.929,-3.07116,136.315,-87.0829,-2.68852,136.783,-88.8252,-3.39044,135.964,-88.6031,-3.41209,135.479,-89.402,-3.66327,135.236,-89.575,-3.57975,135.652,-90.1486,-3.74205,135.471,-90.0921,-3.88493,135.111,-89.4931,-3.45896,135.89,-89.2529,-3.405,136.01,-90.3159,-3.45815,135.679,-89.9158,-3.3344,135.766,-89.6482,-3.26407,135.947,-90.7149,-3.97729,135.089,-90.5996,-3.84857,135.405,-90.6714,-3.90465,134.737,-90.1174,-3.75585,134.714,-89.3601,-3.47318,134.82,-90.8375,-3.63799,135.54,-91.0134,-3.27225,135.54,-90.4763,-3.085,135.686,-90.0588,-2.9779,135.801,-91.0021,-2.97181,135.393,-90.5838,-2.75158,135.51,-90.0052,-2.54335,135.772,-90.2568,-3.39443,134.5,-90.9329,-3.67393,134.609,-89.4526,-3.05646,134.59,-90.4379,-2.97183,134.502,-89.6417,-2.58714,134.624,-91.102,-3.29974,134.608,-88.5254,-3.15478,135.034,-88.6059,-2.68115,134.799,-88.8218,-2.19153,134.899,-89.3088,-3.17652,136.131,-89.4435,-2.84014,136.176,-89.7761,-2.94263,135.993,-89.5785,-2.59727,136.119,-89.8036,-2.67558,135.993,-91.1009,-2.95714,134.743,-90.6052,-2.63457,134.756,-89.8632,-2.26923,134.942,-89.0754,-1.91278,135.273,-89.2634,-1.92215,135.745,-90.0162,-2.23111,135.396,-88.0135,-1.77691,135.225,-88.2891,-1.50176,135.656,-88.4675,-1.54441,136.176,-90.6852,-2.55679,135.173,-91.1861,-2.95596,135.082,-87.7588,-2.30237,135.082,-86.9017,-1.96288,135.448,-87.1712,-1.41011,135.597,-87.4539,-1.08865,136.043,-86.2717,-1.09937,135.93,-86.0059,-1.67715,135.829,-86.5536,-0.719244,136.363,-85.0733,-1.4191,136.16,-85.9043,-2.2088,136.08,-85.0042,-1.92711,136.473,-85.3416,-0.807505,136.166,-86.791,-2.50509,135.692,-87.6152,-1.13667,136.616,-85.1336,-2.10839,136.993,-84.2657,-1.80777,137.402,-84.1274,-1.63556,136.869,-83.1951,-1.32571,137.216,-83.3195,-1.49328,137.817,-84.4393,-1.67824,137.976,-83.5128,-1.32492,138.427,-83.8858,4.12472,136.491,-83.7242,5.00286,136.433,-84.7232,4.99843,136.631,-84.8764,4.21188,136.714,-85.0259,3.62319,137.195,-84.227,3.23182,136.777,-85.5346,4.99948,136.499,-85.6009,4.27198,136.672,-85.6549,3.81122,137.147,-86.3783,3.84601,136.962,-86.3393,4.2802,136.451,-86.3492,5.00799,136.236,-86.41,3.8018,137.571,-85.6268,3.77982,137.794,-87.3139,3.85501,137.32,-87.2477,3.88666,136.75,-87.223,4.3148,136.259,-85.0216,3.73528,137.936,-84.7674,3.44276,137.995,-84.9149,3.33899,137.412,-85.1028,3.0974,137.982,-85.0799,2.96306,137.165,-85.8049,2.83093,137.79,-85.794,2.689,137.05,-85.6439,2.13277,136.607,-84.9124,2.26826,136.712,-83.9125,2.44674,136.668,-86.6896,2.57466,137.473,-86.5941,2.52028,136.759,-86.3833,2.01535,136.296,-87.7236,2.33205,137.081,-87.5575,2.3071,136.401,-87.7559,2.01519,137.769,-86.621,2.33377,138.162,-85.6467,2.63781,138.539,-87.3118,1.81727,135.975,-88.8243,2.05464,136.631,-88.6185,2.03664,136.023,-88.3461,1.58399,135.616,-86.4223,1.93387,138.644,-85.469,2.1947,139.038,-87.3236,1.68574,138.281,-88.1736,0.923391,135.684,-87.1501,1.15035,136.057,-89.4186,1.36779,135.252,-89.7052,1.79566,135.662,-89.2392,0.707913,135.291,-87.4093,4.11751,137.849,-86.4215,4.10053,138.091,-87.2006,4.55898,138.128,-86.4121,4.59139,138.337,-85.5591,4.10763,138.377,-85.5551,4.64264,138.636,-87.2667,5.01666,138.05,-86.4673,5.10071,138.236,-87.7941,4.56037,138.024,-87.8181,4.28543,137.949,-87.8527,4.94156,137.969,-85.5641,5.19077,138.513,-88.1434,4.28786,137.834,-88.2759,4.55463,137.861,-88.3372,4.93647,137.823,-88.4064,4.13412,137.531,-88.7914,4.54533,137.612,-88.8564,4.98983,137.566,-88.2808,5.21792,137.723,-88.575,5.40348,137.348,-89.5394,5.02122,137.312,-89.5159,5.4323,137.015,-89.4797,4.56613,137.36,-88.1882,3.9384,136.527,-89.1034,3.99286,136.294,-89.2227,3.90114,136.79,-88.2767,3.88927,137.053,-89.9402,4.07937,136.094,-90.0875,3.95945,136.555,-89.3615,4.15425,137.186,-90.2656,4.22264,136.968,-88.1584,4.36122,136.08,-89.0524,4.40717,135.876,-87.2681,5.00381,136.038,-88.2063,5.00063,135.858,-89.0989,5.00755,135.661,-89.9342,5.01845,135.566,-89.8779,4.48258,135.742,-89.2556,5.53851,135.937,-90.1004,5.49472,135.808,-88.3482,5.56913,136.137,-87.4056,5.6017,136.351,-86.4622,5.64701,136.563,-90.7423,4.14667,135.927,-90.8808,4.03599,136.359,-90.6885,4.53217,135.622,-91.0378,4.272,136.751,-91.6,4.20281,135.808,-87.9814,1.47692,138.004,-88.1635,1.73111,137.872,-88.5447,1.3507,137.715,-88.5388,1.64068,137.676,-88.9071,1.74417,137.224,-89.1785,1.26033,137.321,-90.0405,1.10437,136.909,-90.044,1.5225,136.675,-89.9322,1.80716,136.216,-90.87,0.924877,136.634,-91.1096,1.27489,136.389,-90.9472,1.56481,135.944,-90.7283,1.53378,135.441,-91.8654,1.0466,136.179,-91.7837,1.32484,135.782,-91.6332,1.29992,135.315,-91.4306,0.953303,134.962,-90.471,1.149,135.071,-91.2779,0.412963,134.903,-90.3013,0.558525,135.053,-91.2537,-0.0774761,135.153,-90.3081,0.0671955,135.373,-89.254,0.212182,135.703,-88.1634,0.44532,136.131,-89.4203,0.0602818,136.249,-90.4818,-0.109284,135.865,-88.279,0.316786,136.723,-92.4065,0.872672,136.017,-92.4674,1.0843,135.698,-92.8282,0.721652,135.97,-93.0173,0.791137,135.696,-92.4263,1.05738,135.277,-92.9665,0.813845,135.348,-92.8786,0.423707,136.087,-93.2728,0.400667,135.711,-93.0502,0.496147,135.198,-92.8109,0.0244287,136.077,-93.2269,-0.0328235,135.679,-92.9696,0.0897615,135.149,-92.3567,0.527246,136.174,-91.9894,0.615885,136.231,-91.9081,0.238976,136.197,-92.2708,0.133178,136.148,-91.4207,0.762445,136.503,-91.4986,1.00482,136.447,-91.7378,0.932244,136.379,-91.7641,0.663293,136.397,-91.3352,0.404798,136.469,-91.6873,0.318686,136.359,-90.755,0.495411,136.61,-91.5395,0.0883928,136.285,-91.2894,0.144091,136.361,-91.5924,-0.0849414,136.066,-90.789,0.0671772,136.317,-91.37,-0.261644,135.626,-89.9027,0.652324,136.921,-89.6661,0.26448,136.704,-88.3969,1.00959,137.703,-88.1967,0.787581,137.678,-88.4847,0.557794,137.266,-89.0237,0.847853,137.324,-87.8368,1.12932,138.006,-87.8166,0.86367,137.878,-87.2979,0.787166,137.836,-87.1433,1.24016,138.296,-86.2217,1.42558,138.678,-86.1221,0.995647,138.252,-86.0898,0.765361,137.56,-87.1501,0.585882,137.183,-86.1389,0.88139,136.843,-87.1056,0.698734,136.538,-85.1867,0.945168,137.814,-85.1412,1.1687,138.577,-85.3289,1.02456,137.05,-85.2719,1.61823,139.058,-84.4041,1.76596,139.393,-84.2341,1.25125,138.762,-84.5671,2.46879,139.459,-86.2265,1.33264,136.343,-92.1965,0.252389,134.916,-92.7529,-0.218883,135.219,-92.1253,-0.177283,135.121,-92.8182,-0.34812,135.588,-92.1361,-0.353891,135.541,-92.6459,-0.256496,135.919,-92.169,-0.194717,135.927,-90.1436,4.60304,137.18,-90.1949,5.01073,137.139,-90.6307,4.40968,137.032,-90.6196,4.64661,137.089,-90.6655,4.97957,137.074,-90.7396,5.22313,136.972,-90.4125,5.3975,136.841,-90.9956,5.22602,136.909,-91.2069,5.38741,136.652,-91.0355,4.98556,136.977,-90.2812,5.63611,136.313,-89.4168,5.66328,136.492,-91.1036,5.61746,136.166,-90.9274,5.4745,135.696,-88.4896,5.6815,136.733,-91.9199,5.33248,136.438,-91.905,5.51195,136.066,-91.8037,5.41371,135.643,-92.4294,5.22226,136.339,-92.5728,5.29447,136.053,-91.9315,5.00555,136.64,-92.5382,4.95557,136.474,-91.3952,5.01294,136.783,-91.6862,5.00966,135.432,-90.7572,5.02736,135.483,-92.4618,5.27857,135.724,-92.5566,4.96526,135.623,-91.8561,4.63921,136.649,-91.3328,4.64801,136.81,-90.9827,4.6585,136.99,-90.8777,4.41963,136.965,-83.4313,1.07279,138.967,-83.1811,0.740309,139.192,-83.7985,0.89252,138.515,-83.4327,1.42334,139.323,-82.587,1.28829,139.692,-84.0939,0.848253,137.829,-84.4964,1.04928,137.903,-92.4833,4.5764,135.648,-91.6075,4.55089,135.527,-92.8805,4.94993,136.069,-92.2799,4.28899,135.798,-91.1665,-3.79256,135.096,-91.3433,-3.40319,135.085,-88.2283,8.62911,137.103,-88.5688,8.65891,137.058,-88.5383,8.84202,136.973,-88.224,8.92691,136.863,-88.7719,8.6917,136.989,-88.6878,8.86234,136.934,-88.7184,8.99778,136.768,-88.6213,8.40246,137.091,-88.8218,8.44943,137.021,-88.6662,8.21375,137.047,-88.8117,8.25278,137.004,-88.3071,8.30238,137.156,-88.4306,8.01076,136.978,-89.2338,8.11463,136.511,-89.1973,8.13968,136.173,-89.5086,8.30214,136.249,-89.5419,8.31916,136.521,-89.5416,8.52489,136.131,-89.6627,8.59335,136.499,-89.4658,8.58313,136.788,-89.4403,8.37113,136.739,-89.4812,8.80839,136.082,-89.3663,9.03001,136.124,-89.0108,9.05949,136.009,-89.0497,8.73453,135.846,-89.126,8.37858,135.917,-88.4699,9.01567,135.97,-88.4754,8.62751,135.773,-88.5637,9.14927,136.373,-84.4805,-0.560956,136.431,-83.6835,-0.20434,136.631,-84.1849,-1.16109,136.505,-83.2922,-0.848543,136.76,-84.2234,0.777199,137.238,-87.8619,8.47553,135.849,-87.8597,8.89435,136.033,-87.9949,9.0631,136.445,-75.5678,1.84602,136.919,-75.3684,0.751462,136.999,-74.5999,1.58868,137.81,-75.9305,2.4715,136.927,-86.0112,-2.42672,136.602,-86.9149,-2.45828,137.17,-78.0328,0.952197,140.847,-78.5972,1.81559,141.052,-79.1799,2.2913,141.018,-79.1069,2.91173,141.246,-79.3397,3.88328,141.254,-79.4501,1.40193,140.691,-79.8589,2.10507,140.756,-80.1139,2.82782,140.918,-80.3236,1.03753,140.378,-80.7041,1.82736,140.458,-81.0468,2.64922,140.618,-79.0003,0.655674,140.532,-79.9519,0.342248,140.221,-77.8599,0.357608,140.466,-78.4876,0.0266009,140.125,-79.3965,-0.470168,139.647,-79.4785,4.96188,141.082,-79.4637,5.76611,140.788,-79.7824,4.40656,141.063,-80.5418,4.34587,140.762,-80.5381,5.01146,140.639,-80.3478,3.65084,140.893,-80.5299,5.69762,140.365,-80.0328,7.89442,138.217,-78.8936,7.94177,138.623,-79.3996,7.78938,139.298,-80.492,7.79555,138.87,-78.4974,7.56707,137.872,-77.3,7.5175,138.243,-79.6772,7.52816,137.549,-81.6548,7.80858,137.269,-80.7299,7.62996,137.353,-81.0718,7.91626,137.973,-82.0324,7.97206,137.838,-81.5202,7.82161,138.553,-82.4495,7.85088,138.335,-79.8948,7.36356,139.671,-80.9508,7.43115,139.274,-81.9716,7.50598,138.961,-82.8046,7.55162,138.763,-80.3757,6.89859,139.881,-81.3444,6.97136,139.555,-82.2659,7.01421,139.289,-83.0427,7.04214,139.065,-80.5723,6.32759,140.097,-81.4897,6.354,139.769,-81.5002,5.68177,140.025,-82.3719,6.34931,139.489,-83.2053,6.30701,139.189,-82.3543,5.63279,139.785,-83.1031,5.55461,139.605,-79.786,6.2812,140.425,-83.2889,7.87646,138.15,-82.9536,8.00279,137.69,-82.6263,7.91378,137.179,-82.5225,7.45139,136.693,-81.58,7.20271,136.67,-83.5656,7.58425,136.66,-83.6022,8.01706,137.016,-84.3636,8.11669,136.847,-84.4174,7.67005,136.539,-83.8133,8.11,137.509,-84.4701,8.22839,137.347,-80.6666,6.87648,136.758,-84.0502,7.96228,137.966,-84.6283,8.05826,137.809,-85.0805,8.38452,137.185,-85.0426,8.25296,136.674,-85.1468,7.78968,136.406,-85.1735,8.19996,137.669,-85.8594,8.38017,137.547,-85.7614,8.55989,137.007,-85.2592,7.87505,138.012,-85.7521,8.00991,137.905,-84.7775,7.75248,138.153,-84.2509,7.66742,138.33,-84.3785,7.20888,138.474,-84.9037,7.32725,138.26,-78.2164,6.76931,137.207,-76.9809,6.65748,137.512,-79.5036,6.765,136.951,-79.5695,5.70301,136.648,-78.1736,5.7028,136.879,-76.9125,5.60792,137.185,-78.2304,4.71528,136.831,-76.9879,4.6686,137.101,-76.6352,2.40881,136.575,-77.7647,2.25357,136.335,-77.2915,1.37355,136.029,-76.3121,1.60972,136.36,-79.1367,1.91739,136.41,-78.0416,3.05582,136.695,-79.4384,2.84254,136.672,-79.6078,4.66854,136.614,-82.504,4.30189,136.434,-82.485,5.16905,136.393,-81.9597,6.33687,136.386,-81.1093,5.70996,136.446,-78.5375,0.988032,136.007,-80.8294,1.50496,136.662,-79.8778,0.585844,136.355,-77.7309,-0.0608726,135.75,-76.6763,0.517874,136.051,-76.0607,0.930301,136.378,-74.737,0.429955,139.159,-75.4596,-0.413394,138.747,-76.1363,-0.205687,139.611,-75.7154,-0.954336,137.457,-76.1236,-1.08296,138.408,-75.1322,-0.167865,137.805,-76.8272,-0.837746,139.165,-76.328,-1.55268,137.057,-76.7365,-1.64466,137.978,-77.4536,-1.41783,138.682,-76.8797,-2.00115,136.66,-77.317,-2.38564,136.25,-77.5718,-2.53485,136.985,-77.2341,-2.11807,137.491,-78.201,-2.43415,137.566,-77.9292,-1.95617,138.134,-77.67,-2.79138,135.853,-77.8121,-2.96302,136.502,-78.4148,-2.85987,137.049,-78.0963,-3.24219,135.489,-78.2369,-3.47533,136.065,-78.7254,-3.34751,136.592,-78.659,-3.9784,135.611,-78.5127,-3.67375,135.063,-79.1016,-3.88487,136.116,-78.2645,-2.83973,135.049,-78.6864,-3.22318,134.687,-79.1544,-3.53366,134.232,-78.9409,-4.04599,134.531,-78.6896,-2.3896,134.9,-79.0899,-2.80562,134.608,-79.5624,-3.15332,134.26,-79.0805,-4.4889,135.091,-78.3617,-1.94474,135.175,-77.8755,-2.41558,135.353,-79.1929,-2.08629,135.19,-78.9471,-1.62752,135.476,-77.5177,-1.98301,135.645,-78.116,-1.48299,135.434,-78.8501,-1.19061,135.718,-79.5442,-2.54995,134.877,-79.664,-3.8107,133.731,-79.4185,-4.34962,133.965,-79.5428,-4.82571,134.468,-79.5738,-4.87719,134.895,-79.415,-4.77287,135.125,-80.0809,-4.96787,134.738,-79.9738,-5.00751,133.992,-80.3415,-5.0759,134.422,-79.9294,-4.63531,133.533,-79.8991,-4.87235,135.082,-79.0468,-2.53388,137.357,-78.9454,-2.14235,137.864,-79.5333,-1.74232,137.71,-79.766,-1.43084,138.074,-78.9139,-1.59472,138.551,-79.4608,-2.04889,137.334,-78.3485,-1.00615,139.191,-79.5415,-1.09129,139.003,-81.4774,-0.699886,139.137,-80.569,-0.544034,139.428,-80.2183,-1.06948,138.419,-80.9857,-0.993522,138.01,-77.1405,-1.47782,135.898,-77.9409,-0.916054,135.616,-76.6234,-0.891153,136.135,-78.9681,-0.700235,135.908,-79.5227,-1.18023,136.531,-79.9513,-0.788955,136.863,-79.4244,-1.56151,136.197,-79.2174,-0.122954,136.034,-80.0622,-0.309084,136.575,-81.2901,3.49619,140.566,-81.4392,4.25988,140.426,-82.2801,4.10051,140.131,-82.1622,3.30257,140.316,-82.9857,3.07869,140.131,-83.1431,3.89091,139.803,-81.9332,2.4135,140.359,-82.7744,2.20326,140.119,-83.0972,4.78314,139.826,-82.3424,4.88776,140.044,-81.4992,4.9865,140.294,-83.815,4.11557,139.394,-83.8348,4.75245,139.523,-83.8082,5.42031,139.32,-84.6785,4.69835,139.028,-84.6292,5.29632,138.876,-84.6531,4.07624,138.724,-83.7964,6.60929,138.742,-83.744,5.92704,138.907,-83.8239,6.27789,138.636,-84.0982,6.27874,138.239,-84.3855,6.70196,138.252,-84.4561,5.78988,138.38,-84.973,6.94288,138.008,-84.5127,6.56226,137.635,-84.9894,6.78545,137.521,-85.557,5.60493,138.074,-83.8977,3.69275,139.236,-84.3471,3.57594,138.714,-83.8077,3.36181,139.514,-84.6724,3.05415,138.919,-81.5903,1.53269,140.128,-83.5546,1.996,139.81,-83.7206,2.75411,139.866,-82.1341,0.471172,139.835,-81.2418,0.754311,140.082,-82.9588,0.129989,139.502,-81.8453,-0.154167,139.766,-82.7348,-0.517116,139.428,-83.8434,-0.245842,139.048,-83.6946,-0.897091,138.925,-82.4525,-0.977961,138.871,-82.206,-1.16245,138.166,-82.3026,-0.395199,136.869,-82.7248,0.63196,136.696,-80.0847,-3.43742,133.84,-79.9913,-2.96367,134.541,-80.5136,-3.3052,134.172,-80.382,-2.97327,135.009,-79.9223,-2.51233,135.399,-80.897,-3.40712,134.642,-80.5725,-3.26978,135.515,-81.061,-3.78077,135.108,-80.0928,-2.73241,135.931,-79.954,-3.12673,136.246,-80.4213,-3.81071,135.84,-80.87,-4.34722,135.339,-79.5871,-2.02245,135.808,-79.7328,-2.20297,136.417,-79.5759,-1.71852,136.938,-80.6374,-3.8352,133.487,-81.0415,-3.74169,133.839,-80.2204,-4.16042,133.348,-81.4569,-4.30813,133.598,-81.097,-4.38013,133.294,-81.3699,-3.88097,134.299,-81.7144,-4.38886,134.007,-80.714,-4.59562,133.171,-81.6553,-4.87602,133.528,-81.3323,-4.92603,133.297,-81.0136,-4.94931,133.182,-81.4678,-4.23015,134.713,-81.7614,-4.61967,134.377,-81.6327,-5.29181,133.703,-81.2745,-5.32111,133.504,-80.8689,-5.21501,133.342,-81.0078,-5.39349,133.891,-80.7331,-5.31955,133.654,-80.3828,-5.19635,133.759,-80.4244,-4.94325,133.332,-81.8762,-4.85729,133.838,-81.8454,-5.16739,133.88,-81.8969,-4.89077,134.138,-81.7575,-5.1478,134.203,-81.5338,-4.94064,134.555,-81.4088,-5.38012,134.127,-81.0958,-5.17582,134.465,-80.6529,-5.24949,134.177,-81.2345,-4.65648,134.875,-80.81,-4.98654,134.751,-80.5487,-4.82895,135.054,-80.5643,-4.48841,135.532,-80.3077,-4.72202,135.35,-80.4128,-4.30928,135.717,-80.0974,-4.48687,135.646,-79.6852,-4.69371,135.413,-79.4199,-4.35557,135.709,-79.895,-4.07246,135.939,-79.5826,-3.52275,136.314,-84.5516,5.79546,137.047,-83.5662,5.95009,136.664,-84.2667,6.2041,137.247,-82.8377,6.71336,136.509,-83.8152,6.98785,136.638,-84.2623,6.51659,137.022,-84.6362,7.13495,136.589,-84.8883,6.81562,136.992,-85.34,7.28763,136.487,-85.507,7.02034,136.887,-85.8396,7.94559,136.275,-86.0025,7.47303,136.345,-86.1478,7.22092,136.716,-86.5136,8.12478,136.065,-86.6684,7.64918,136.138,-86.8296,7.41257,136.513,-86.9345,7.41411,136.968,-86.2076,7.21086,137.189,-85.5597,6.99534,137.376,-85.7383,8.40112,136.509,-86.4504,8.58226,136.312,-86.5172,8.76598,136.793,-84.295,6.26987,137.711,-84.6724,5.93921,137.674,-85.5755,5.79307,137.458,-85.5353,5.66228,136.825,-86.5547,5.50222,137.812,-86.5592,5.72971,137.208,-87.5825,5.40851,137.622,-87.5283,5.69097,136.979,-84.7175,1.56294,136.654,-83.7022,1.68823,136.67,-84.5389,1.0118,137.091,-83.6721,0.896262,136.786,-85.3929,7.47794,138.093,-85.5214,7.1493,137.83,-86.1799,7.4084,137.664,-85.873,7.65467,137.958,-86.9809,7.63465,137.409,-86.6831,7.7189,137.67,-86.4083,7.63841,137.767,-86.2899,7.82331,137.866,-87.7703,7.80442,137.135,-87.659,7.61003,136.762,-87.8025,8.16531,137.319,-87.2055,8.03396,137.53,-86.7117,7.94417,137.717,-87.5097,7.62197,136.348,-88.295,7.797,136.62,-88.1385,7.81709,136.237,-87.6958,8.54468,137.257,-87.0928,8.39469,137.479,-86.6173,8.22912,137.681,-86.6789,8.61877,137.3,-86.4622,8.40424,137.599,-87.4965,8.827,137.006,-86.1926,8.1059,137.823,-87.343,7.85622,136.005,-87.9769,8.05879,135.934,-87.2064,8.30494,135.925,-88.5747,8.21851,135.866,-88.7055,7.97615,136.168,-88.8147,7.95675,136.538,-87.1799,8.74821,136.145,-87.2961,8.94192,136.583,-88.8895,8.15277,136.863,-89.2111,8.26232,136.779,-89.1937,8.51884,136.899,-88.9764,8.46854,136.953,-88.9235,8.75497,136.931,-89.1455,8.8069,136.874,-86.1811,8.32029,137.689,-85.4794,1.47141,136.583,-87.6607,-2.82661,135.329,-87.9533,5.21576,137.813,-92.318,0.72739,134.966,-77.0747,0.155633,140.259,-77.6909,-0.433841,139.717,-83.5629,7.59789,138.551,-83.7396,7.12315,138.769,-79.2495,-2.95925,136.826,-79.6163,-2.54136,136.772,-79.7589,-1.36186,137.336,-80.1139,-1.12902,137.596,-80.9425,0.106722,139.971,-76.7895,3.15546,136.912,-82.1287,-0.986272,137.436,-80.9778,-0.0744132,136.828,-80.9621,-0.823961,137.396,-75.9616,-0.210689,136.524,-74.4941,0.772736,138.337,-82.5695,5.75837,136.414,-80.9358,2.63399,136.657,-81.0546,4.54792,136.477,-81.6787,0.719468,136.698,-82.4672,2.55701,136.638,-82.546,3.40541,136.536,-81.029,3.58267,136.554,-79.5772,3.74466,136.666,-78.215,3.86438,136.834,-76.9843,3.88739,137.068,-82.4256,1.6991,136.705,-76.1584,3.85342,137.319,-73.7907,2.42689,138.385,-73.9477,1.0639,139.507,-73.7377,1.5583,138.898,-2.92114,-11.6999,167.707,-2.56533,-12.0747,168.13,-2.48556,-12.1123,167.646,-2.78726,-11.7491,167.292,-7.65623,-3.52326,173.465,-7.69985,-3.44587,174.228,-7.58097,-3.9182,174.431,-7.54021,-4.09874,173.4,-8.27405,-2.25287,174.311,-8.73659,-1.80685,174.888,-8.7406,-2.04248,175.299,-8.23958,-2.69838,174.418,-8.30178,-2.26779,175.403,-8.00337,-3.11958,174.382,-8.15063,-0.904938,171.756,-7.92316,-1.28118,171.243,-8.0456,-0.901085,171.073,-8.37735,-0.457182,171.712,-8.51307,-0.653108,172.681,-8.84246,-0.131728,172.732,-8.74738,-0.5778,173.788,-9.10591,-0.0509327,173.95,-8.76257,0.331082,172.851,-9.10938,0.405501,174.204,-9.08422,-1.11021,175.088,-9.11144,-1.05572,175.591,-8.64241,-1.08914,175.718,-8.32137,0.379047,172.924,-8.68013,0.41526,174.241,-8.27746,-0.06653,171.706,-7.84251,0.0112373,171.799,-7.93162,-0.612359,170.862,-7.52635,-0.564578,170.925,-7.48231,-1.36177,170.186,-7.48883,-2.07045,169.684,-7.25232,-2.2588,169.799,-7.21489,-1.39751,170.386,-7.54867,-0.397313,171.889,-7.92573,-0.164703,172.788,-8.19317,-0.164638,173.809,-8.11052,-1.33124,175.147,-7.83693,-2.6907,174.899,-7.28544,-0.815181,171.103,-7.10292,-0.829593,171.219,-7.19227,-0.538998,171.901,-7.10001,-2.14147,169.856,-7.05339,-0.835523,170.547,-7.22773,-2.80906,169.841,-7.44923,-2.71863,169.756,-7.77916,-2.24354,169.701,-7.71462,-1.64293,174.696,-7.61999,-2.85048,174.722,-7.65041,-2.83911,170.222,-7.37526,-3.11936,170.377,-7.98718,-2.35554,170.245,-7.89194,-1.4609,170.148,-8.05212,-1.6876,170.565,-7.96778,-1.7972,170.95,-7.931,-2.2988,170.948,-7.54348,-3.07368,171.389,-7.67335,-3.26896,171.995,-7.48649,-3.71881,171.718,-7.38669,-3.43074,171.028,-7.55459,-3.96441,172.512,-7.73304,-3.42736,172.705,-7.80398,-2.95306,172.872,-7.81626,-3.03698,173.655,-8.85013,-0.813671,174.527,-9.1754,-0.421261,174.777,-8.88789,-1.13825,174.806,-9.21645,-0.112418,175.182,-8.7882,-0.100364,175.253,-8.25143,-0.473456,174.672,-7.62648,-0.462604,173.491,-7.71404,-0.777876,174.225,-7.43256,-0.38479,172.696,-7.95204,-2.7341,173.728,-7.63429,-2.52787,172.855,-7.87589,-2.19865,173.248,-8.05097,-2.31032,173.756,-7.74941,-2.94605,172.184,-7.67131,-2.66891,171.673,-7.53377,-2.98777,170.93,-7.71654,-2.74343,170.933,-6.77476,-1.06017,169.238,-6.43432,-1.47181,167.758,-6.42506,-0.0956915,167.885,-6.61304,0.112705,169.31,-7.78724,-1.31779,175.42,-7.69319,-2.56277,175.578,-7.18576,-0.0160678,171.839,-6.84675,0.441311,170.649,-7.07657,0.852227,171.977,-7.68847,-0.403968,174.803,-7.55074,0.0875377,173.914,-7.38169,0.227124,172.915,-4.83814,4.44731,167.72,-5.56023,3.27295,167.769,-5.73145,3.30234,166.145,-4.99551,4.56519,166.095,-6.02106,2.14621,167.829,-6.28202,1.04303,167.89,-6.26141,1.01094,166.299,-6.09841,2.13007,166.214,-3.74209,5.53753,167.692,-3.80122,5.72534,166.099,-2.47705,6.19231,167.677,-2.47011,6.32495,166.085,-6.16934,-1.2407,166.142,-6.26911,-0.118531,166.319,-1.25742,6.4658,166.127,-1.25618,6.4308,167.701,-7.40695,-5.01567,173.371,-7.37623,-4.712,172.268,-7.30124,-4.32754,171.33,-7.22354,-3.91085,170.544,-7.14233,-3.44509,169.9,-7.03642,-2.91902,169.442,-6.90126,-2.14949,169.238,-3.46895,-8.76253,183.458,-3.35411,-9.98944,182.256,-4.51369,-9.02445,181.907,-4.66384,-7.86962,182.947,-5.53832,-7.93529,181.466,-5.66799,-7.00235,182.327,-3.29087,-10.8587,181.066,-4.44643,-9.85534,180.824,-5.49358,-8.65086,180.459,-1.02859,-11.9692,181.202,-1.04612,-11.1893,182.516,-1.03568,-10.2658,183.699,-4.34991e-005,-10.4505,183.673,-3.27744,-11.3995,180.012,-4.43676,-10.4219,179.818,-5.47957,-9.2173,179.446,-6.34274,-7.85715,178.891,-6.35934,-7.33061,180.034,-1.01998,-12.4182,180.082,-4.57871e-005,-12.5174,180.079,-2.12909,-11.5684,181.185,-2.1145,-12.0601,180.084,-2.16744,-10.7311,182.458,-2.18979,-9.58554,183.744,-6.32465,-6.81042,181.077,-6.23385,-6.39911,181.813,-7.14234,-6.13032,173.22,-6.74131,-7.44615,172.866,-6.85422,-6.63739,171.391,-7.1532,-5.64678,171.917,-6.85778,-6.00478,170.245,-7.11206,-5.12113,170.835,-6.81164,-5.36614,169.278,-7.05749,-4.5795,169.954,-6.73204,-4.67471,168.494,-6.97273,-3.9764,169.274,-6.57862,-3.91987,167.913,-6.82912,-3.2979,168.761,-6.27293,-8.4355,177.799,-5.46275,-9.69491,178.515,-6.13539,-9.07558,176.969,-5.42731,-10.1255,177.681,-4.45597,-10.8257,178.928,-4.48146,-11.1471,178.088,-3.30493,-11.7528,179.116,-3.34374,-12.0159,178.272,-2.12697,-12.3813,179.164,-2.1386,-12.6007,178.319,-1.02291,-12.7089,179.152,-1.01555,-12.8846,178.314,-6.59526,-8.17953,175.912,-6.95857,-6.94169,176.622,-7.00697,-6.35671,178.288,-6.99702,-5.88612,179.637,-6.90421,-5.51612,180.869,-7.133,-6.50609,174.744,-6.77031,-7.67096,174.539,-6.04384,-2.54444,166.796,-6.62444,-2.48951,168.362,-6.31437,-3.12847,167.471,-5.80815,-2.2571,165.616,-5.40901,-10.5244,176.861,-6.01294,-9.6316,176.246,-4.52995,-11.4454,177.23,-3.41296,-12.2468,177.403,-5.33546,-10.8301,176.093,-5.86147,-10.0511,175.579,-1.03801,-12.9943,177.507,-2.18714,-12.7668,177.473,-1.05764,-13.0253,176.716,-2.21912,-12.8051,176.645,-3.42987,-12.3498,176.556,-4.50904,-11.6419,176.409,-6.11381,-9.46623,174.935,-6.34352,-8.92717,175.396,-6.44803,-8.55819,174.388,-6.37648,-8.5523,173.371,-6.16148,-9.20792,174.256,-6.07186,-9.23885,173.578,-5.84839,-9.5181,172.977,-6.11556,-8.9417,172.525,-6.35177,-8.25179,171.78,-6.47892,-7.56124,170.725,-6.4712,-6.90646,169.625,-6.41142,-6.21952,168.599,-6.31986,-5.50484,167.716,-6.17107,-4.79694,167.031,-5.89808,-4.11674,166.513,-5.54249,-3.58652,165.905,-5.20552,-3.21698,164.877,-2.24566,-12.5833,170.578,-1.95918,-13.0006,170.871,-1.81324,-13.1442,170.279,-2.00144,-12.7494,170.012,-2.96736,-10.7735,164.869,-3.33917,-10.1176,164.407,-3.61989,-10.0762,165.398,-3.23679,-10.6717,165.559,-2.70409,-12.0106,168.697,-2.20974,-12.4288,169.084,-2.10092,-12.4964,168.497,-0.863074,-12.1034,164.364,-0.992202,-12.0453,163.67,-1.20257,-11.3908,162.346,-1.13092,-10.4225,161.94,-3.92928e-005,-12.1181,162.832,-1.11741,-11.9404,163.064,-4.10285,-9.24173,165.356,-4.3052,-9.69932,166.536,-3.81867,-10.2996,166.363,-3.41739,-10.7429,166.285,-3.09535,-11.0614,166.271,-2.92769,-11.0721,165.76,-2.68798,-11.197,165.259,-2.29117,-11.4548,164.734,-2.54594,-11.0697,164.236,-2.4532,-11.4535,165.617,-2.08091,-11.6824,165.169,-2.92694,-10.458,163.615,-4.68666,-8.27184,165.648,-4.84862,-8.92351,166.885,-4.40394,-7.7354,164.61,-3.72726,-9.14273,163.731,-2.4305,-12.3235,169.681,-2.92962,-11.9059,169.294,-3.23783,-11.7446,169.925,-2.69532,-12.1855,170.286,-2.93223,-12.0494,170.938,-3.54573,-11.5725,170.653,-3.75565,-11.2383,169.402,-4.35415,-10.7715,170.249,-4.72042,-10.1537,169.148,-4.11902,-10.7321,168.631,-3.36201,-11.4884,168.796,-3.67869,-11.0722,168.138,-3.09918,-11.6248,168.229,-3.3699,-11.2613,167.66,-3.13218,-11.3836,167.246,-2.93547,-9.6476,162.998,-4.85436,-9.59489,168.088,-4.30043,-10.2396,167.663,-3.84813,-10.6633,167.305,-3.47984,-10.9525,167.0,-3.17845,-11.1676,166.771,-1.57197,-12.9884,169.436,-1.38437,-13.4113,169.946,-1.50402,-12.9787,168.765,-0.78443,-13.4347,169.367,-0.786166,-13.3469,168.872,-4.3657e-005,-13.4834,168.915,-0.760018,-13.7467,169.836,-2.42379,-12.42,171.191,-2.05701,-12.7413,171.444,-1.78126,-12.998,171.714,-1.79275,-13.197,171.313,-2.85134,-11.2731,166.291,-2.68456,-11.3202,165.953,-2.94876,-11.3267,166.627,-2.93896,-11.4813,166.955,-2.06033,-12.5297,167.983,-1.48497,-13.0007,168.245,-0.794812,-13.3685,168.412,-4.35303e-005,-13.4993,168.459,-1.73969,-11.7372,164.176,-1.55955,-11.9129,164.733,-1.95573,-11.4892,163.596,-2.18537,-10.9015,162.923,-2.13439,-10.0183,162.46,-5.85535,-9.02629,171.119,-5.97984,-8.45022,170.124,-5.98451,-7.82592,169.049,-5.92591,-7.14118,167.972,-5.83472,-6.44578,166.989,-5.68389,-5.7997,166.188,-5.23087,-9.83482,170.641,-5.38545,-9.33753,169.625,-5.4434,-8.75204,168.546,-5.40056,-8.06794,167.404,-5.28965,-7.38786,166.302,-5.09026,-6.79331,165.388,-1.90198,-9.08246,162.364,-2.74249,-8.76755,162.872,-2.34284,-7.70655,162.788,-3.0632,-7.22214,163.254,-3.46821,-8.04649,163.452,-3.70299,-6.43895,163.727,-4.10274,-7.17397,164.045,-4.39807,-5.59805,164.31,-4.79823,-6.23023,164.782,-4.9983,-4.65784,165.033,-5.40332,-5.20589,165.584,-0.975296,-9.43433,161.968,-3.48734e-005,-9.89864,161.74,-3.08959e-005,-8.61959,161.965,-0.791797,-8.37848,162.086,-1.59556,-8.06448,162.384,-4.60303,-4.11139,164.181,-2.01148,-6.7108,162.52,-2.65682,-6.2975,162.915,-3.30033,-5.56157,163.212,-3.97195,-4.88076,163.613,-1.7768,-13.4714,170.431,-1.8452,-13.3813,170.816,-1.74092,-13.7086,170.891,-1.71322,-13.8056,170.542,-1.48125,-14.0545,171.021,-1.4809,-14.1516,170.66,-1.11467,-14.3963,171.146,-1.12661,-14.5059,170.763,-1.67868,-13.5929,171.234,-1.39856,-13.908,171.4,-0.669087,-14.9298,171.293,-0.675866,-15.0069,170.757,-4.73822e-005,-15.3202,170.736,-1.2898,-13.7188,171.758,-1.01519,-14.0251,171.94,-1.06448,-14.2297,171.549,-0.637516,-14.508,172.172,-0.647761,-14.7388,171.751,-4.70428e-005,-14.8055,172.314,-1.57373,-13.4349,171.558,-1.80781,-13.3658,171.111,-4.68102e-005,-14.5814,172.749,-0.636426,-14.2909,172.598,-1.00955,-13.8321,172.352,-1.25161,-13.5185,172.153,-1.51482,-13.2493,171.948,-1.57793,-13.6044,170.158,-1.57956,-13.8798,170.281,-4.68598e-005,-15.1136,170.225,-0.647309,-14.8467,170.332,-4.64713e-005,-14.9224,170.033,-0.48202,-14.7719,170.147,-1.39108,-14.1995,170.402,-1.08553,-14.5417,170.484,-4.58483e-005,-14.5744,169.933,-0.496269,-14.171,169.992,-0.432465,-14.4864,170.076,-0.610304,-14.6507,170.225,-0.770429,-14.6962,170.33,-1.0158,-14.4942,170.375,-1.38925,-13.905,170.16,-1.37056,-13.6941,170.057,-0.643491,-14.122,170.086,-0.860949,-13.8207,170.015,-1.17584,-13.644,169.997,-1.24868,-14.1949,170.284,-0.573939,-14.4252,170.167,-0.804189,-14.1074,170.167,-0.711553,-14.4055,170.241,-0.680955,-14.5826,170.271,-0.771296,-14.6071,170.321,-0.900865,-14.4464,170.325,-1.06623,-14.1641,170.233,-1.19086,-13.8867,170.123,-1.24347,-13.7303,170.048,-1.13668,-13.7121,170.031,-0.977355,-13.8451,170.088,-5.26824,-10.5655,174.845,-5.58733,-10.3585,175.101,-5.12198,-10.9664,175.522,-4.87771,-11.0003,175.193,-4.35746,-11.6259,175.792,-4.17325,-11.5176,175.449,-5.29963,-10.2944,173.584,-4.98758,-10.5651,173.322,-5.23491,-10.3131,172.948,-5.57568,-9.96596,173.299,-4.55666e-005,-13.4205,174.891,-0.686435,-13.1527,174.733,-0.766774,-13.0087,175.2,-4.18968,-11.1365,172.556,-3.566,-11.5021,172.545,-3.68339,-11.4984,172.042,-4.3346,-11.0312,172.033,-5.46608,-9.97237,172.506,-3.34531,-12.2123,175.889,-3.21656,-11.9402,175.507,-1.00987,-12.9359,175.812,-4.54219e-005,-13.0986,176.078,-2.97825,-11.7714,172.655,-3.39314,-11.4956,172.98,-2.82932,-11.6735,173.086,-3.07886,-11.8635,172.173,-2.57594,-12.1279,172.347,-2.51328,-11.969,172.811,-4.01353,-11.2219,172.994,-2.09455,-11.9334,173.366,-2.39659,-11.8034,173.225,-2.33245,-11.6495,173.591,-2.06865,-11.7278,173.698,-4.76338,-10.7239,172.694,-4.95129,-10.5021,172.187,-4.55652,-10.8949,173.118,-2.22871,-12.6281,175.93,-2.27452,-12.2271,175.43,-2.27513,-11.8069,175.167,-3.09862,-11.7099,175.32,-4.03942,-11.4247,175.268,-4.69968,-10.9765,175.002,-5.01369,-10.6495,174.735,-5.0429,-10.51,173.844,-4.76855,-10.7403,173.648,-4.37774,-11.0327,173.484,-3.86494,-11.3126,173.382,-3.27225,-11.5022,173.383,-2.72696,-11.5934,173.475,-1.53935,-12.442,175.251,-1.73718,-11.9496,174.919,-5.67595,-9.54175,171.921,-5.09771,-10.2154,171.523,-4.40182,-10.9034,171.343,-3.69309,-11.5021,171.41,-2.54388,-12.2722,171.801,-3.06644,-11.9451,171.594,-1.56082,-12.7923,172.869,-1.29385,-13.0651,173.042,-1.27582,-13.3102,172.601,-1.53453,-13.0418,172.413,-0.635951,-14.0781,173.042,-0.620174,-13.8515,173.486,-4.63238e-005,-14.1182,173.633,-5.80522,-9.91865,174.646,-5.47322,-10.2533,174.527,-5.1905,-10.4363,174.499,-1.30087,-12.7696,173.449,-1.56363,-12.499,173.289,-1.31979,-12.4643,173.831,-1.56963,-12.2127,173.672,-1.41848,-12.1368,174.231,-1.63536,-11.9445,173.978,-2.17947,-12.3523,172.519,-2.15698,-12.1408,172.959,-1.49676,-12.0646,174.627,-1.23356,-12.5268,174.839,-1.12215,-12.626,174.433,-1.05045,-13.1106,173.648,-1.04329,-13.3918,173.232,-1.03541,-13.6291,172.794,-1.07155,-12.8361,174.044,-4.5779e-005,-13.6286,174.476,-0.639609,-13.3568,174.321,-4.60436e-005,-13.8673,174.062,-0.619974,-13.5993,173.911,-1.8203,-12.794,172.216,-2.13702,-12.5467,172.008,-1.85588,-12.566,172.696,-1.85207,-12.3081,173.129,-1.82828,-12.0609,173.531,-1.84443,-11.8221,173.826,-5.85846,-9.71936,174.187,-5.77817,-9.75171,173.724,-5.55123,-10.1058,174.202,-5.48941,-10.1298,173.883,-5.26177,-10.3462,174.269,-5.21021,-10.3757,174.052,-3.04756,-11.5187,173.991,-2.48136,-11.4536,174.109,-2.58823,-11.5387,173.823,-3.15345,-11.5302,173.725,-2.137,-11.3066,174.217,-2.23426,-11.4969,173.922,-1.94953,-11.269,174.258,-2.02011,-11.5054,173.994,-1.83397,-11.2838,174.279,-1.84671,-11.5501,174.073,-1.74363,-11.3063,174.326,-1.70347,-11.6132,174.185,-1.69208,-11.3155,174.416,-1.61614,-11.6672,174.355,-1.71915,-11.2982,174.525,-1.66122,-11.6431,174.572,-1.87987,-11.2941,174.651,-1.83805,-11.5664,174.784,-2.29096,-11.4083,174.831,-2.22478,-11.4971,175.02,-3.0206,-11.5929,175.0,-3.03222,-11.5854,175.198,-3.94051,-11.3966,175.145,-3.86058,-11.452,174.974,-4.46131,-10.9816,174.769,-4.56185,-10.944,174.884,-4.69027,-10.6846,174.625,-4.82482,-10.6666,174.674,-4.77609,-10.5652,174.523,-4.95702,-10.5208,174.505,-4.79813,-10.5432,174.431,-5.00485,-10.4733,174.351,-4.75916,-10.6011,174.355,-4.95874,-10.5162,174.213,-4.65807,-10.7289,174.278,-4.48287,-10.9289,174.175,-4.60376,-10.8654,173.937,-4.82712,-10.6478,174.081,-4.17629,-11.1912,174.056,-4.25341,-11.1417,173.8,-3.67157,-11.425,173.972,-3.75226,-11.3943,173.713,-4.52182,-10.7513,174.386,-4.38519,-10.9283,174.301,-4.37787,-11.0006,174.717,-4.5809,-10.7188,174.618,-3.81067,-11.4319,174.874,-1.98811,-11.2082,174.552,-2.34011,-11.3454,174.712,-1.86672,-11.1988,174.465,-1.83811,-11.2155,174.418,-1.85927,-11.2166,174.379,-2.17502,-11.1748,174.332,-2.00664,-11.1704,174.36,-2.45733,-11.383,174.235,-1.88197,-11.1746,174.394,-1.87086,-11.1685,174.411,-1.90355,-11.146,174.435,-3.00801,-11.5486,174.878,-2.95154,-11.4309,174.132,-3.61404,-11.3738,174.107,-4.60376,-10.635,174.446,-2.02377,-11.1436,174.501,-2.36602,-11.1776,174.661,-3.01398,-11.3902,174.862,-3.78901,-11.2699,174.879,-4.32428,-10.9141,174.739,-4.50672,-10.6839,174.646,-4.49995,-10.6104,174.479,-4.41441,-10.7061,174.403,-4.28824,-10.8477,174.301,-2.95746,-11.2667,174.126,-3.5962,-11.2281,174.099,-2.51018,-11.1639,174.24,-2.24879,-11.08,174.426,-2.03403,-11.141,174.427,-4.12814,-11.1632,174.197,-4.06459,-11.0441,174.186,-4.64089,-10.5978,174.555,-4.5558,-10.5839,174.591,-1.91403,-11.1977,174.363,-1.9229,-11.1592,174.401,-4.64429,-10.5784,174.495,-4.55016,-10.5651,174.535,-2.61551,-10.9025,174.169,-2.41072,-10.8619,174.4,-2.5491,-10.9084,174.691,-3.03972,-10.9517,174.875,-3.7237,-10.8033,174.917,-4.21792,-10.6384,174.795,-4.42788,-10.5318,174.675,-4.50587,-10.4852,174.604,-4.51279,-10.4745,174.544,-4.44294,-10.4919,174.474,-4.31327,-10.5371,174.368,-4.16691,-10.6236,174.244,-3.96132,-10.7524,174.113,-3.5999,-10.899,174.015,-3.06875,-10.9511,174.034,-2.68738,-10.4995,174.239,-2.71814,-10.4768,174.562,-3.04246,-10.3833,174.628,-3.54565,-10.3029,174.664,-3.99033,-10.302,174.636,-4.25962,-10.3273,174.562,-4.40142,-10.3496,174.527,-4.46957,-10.3764,174.522,-4.41451,-10.3738,174.467,-4.28086,-10.3464,174.383,-4.10965,-10.3447,174.299,-3.86421,-10.3444,174.21,-3.52635,-10.3528,174.139,-3.09507,-10.3794,174.139,-6.35591,3.89794,179.957,-6.48062,2.25307,181.796,-7.12351,1.44456,180.423,-7.02023,2.81577,178.796,-5.32537,5.01427,181.075,-5.48105,2.9886,183.062,-7.14542,-0.234691,181.542,-6.49519,0.222549,182.998,-5.50716,0.503255,184.287,-3.91544,5.985,182.073,-4.09804,3.64272,184.225,-4.15298,0.737385,185.383,-4.35082,6.08532,173.367,-4.76198,6.28005,175.883,-5.76855,5.22043,175.324,-5.36664,5.06111,173.022,-6.49902,4.02379,174.774,-6.11069,3.92015,172.746,-2.989,6.93852,173.541,-3.3846,7.20375,176.3,-7.10243,-2.01981,182.061,-6.45677,-1.86931,183.462,-5.45149,-1.94549,184.703,-4.09649,-2.0872,185.697,-2.27985,0.967324,186.261,-2.28885,-2.21349,186.491,-2.19471,4.12472,185.146,-2.08637,6.60297,182.921,-1.5356,7.43849,173.698,-1.72389,7.8096,176.553,-7.28703,-3.99295,180.747,-7.42557,-4.33318,179.335,-7.66958,-2.81551,179.028,-7.49195,-2.38084,180.54,-7.75024,-1.41534,178.518,-7.5446,-0.818173,180.009,-7.6988,-0.109725,177.71,-7.50056,0.635141,179.032,-7.5682,0.959863,176.582,-7.38822,1.82888,177.654,-7.15778,1.9083,173.729,-6.85824,1.80226,172.222,-6.56788,2.8206,172.483,-6.92204,2.90915,174.234,-7.31096,1.02016,173.28,-7.7822,-0.76917,176.487,-7.65932,0.209558,175.627,-7.79607,-2.00133,177.038,-7.7043,-3.29894,177.496,-7.45656,-4.76416,177.859,-6.05823,2.28411,169.347,-6.38188,1.21428,169.354,-5.56826,3.37281,169.315,-4.83896,4.48877,169.285,-3.80341,5.50566,169.278,-2.56026,6.21176,169.315,-6.92168,-3.80038,182.111,-6.27547,-3.89862,183.351,-5.21643,-4.25054,184.457,-3.86836,-4.7602,185.322,-2.16352,-5.27908,185.991,-2.18204e-005,6.49191,167.686,-1.73372e-005,6.65255,169.298,-1.27226,6.55989,169.317,-2.51539e-005,0.9596,186.574,-1.93208,7.72373,179.748,-1.41642e-005,6.79171,183.277,-9.88687e-006,8.00169,176.672,-3.62802,7.11346,179.224,-5.03999,6.12733,178.547,-6.1132,4.89347,177.72,-6.81024,3.68475,176.849,-7.19895,2.59854,176.004,-7.39444,1.64394,175.217,-7.50387,0.810594,174.52,-6.58128,1.49144,170.761,-6.25076,2.52754,170.846,-5.76247,3.60024,170.905,-5.02127,4.70788,170.98,-3.97844,5.73028,171.098,-2.7267,6.50123,171.218,-1.37971,6.93952,171.275,-7.65178,-3.77156,175.857,-7.44918,-5.15567,176.25,-7.42608,-5.18477,174.673,-6.57532,-5.36197,181.965,-5.95444,-5.6645,182.94,-4.90317,-6.2828,183.831,-3.61259,-7.04934,184.526,-1.91405,-7.95838,185.001,-3.96293e-005,-7.80974,185.459,-0.78833,-12.2446,165.042,-2.67501,-11.4047,166.323,-2.51022,-11.4696,166.1,-2.27998,-11.6169,165.82,-1.93606,-11.8371,165.533,-1.44189,-12.0691,165.277,-4.06609e-005,-12.3175,165.886,-4.08595e-005,-12.4623,165.748,-0.689825,-12.3356,165.801,-0.653915,-12.2019,165.933,-1.2894,-12.1433,165.919,-1.22529,-11.9798,166.032,-1.75452,-11.9097,166.037,-1.68807,-11.7742,166.098,-2.1131,-11.6752,166.145,-2.05642,-11.5723,166.151,-2.30428,-11.532,166.252,-2.26493,-11.4697,166.255,-2.4491,-11.4585,166.376,-2.40873,-11.4008,166.374,-2.36021,-11.2931,166.365,-2.20824,-11.3582,166.248,-1.98772,-11.4239,166.134,-1.62655,-11.5388,166.048,-1.1752,-11.7253,165.994,-0.621645,-11.9643,165.959,-2.39249,-11.5377,166.195,-2.54568,-11.4642,166.354,-2.19352,-11.6861,166.047,-1.84893,-11.9319,165.798,-1.37691,-12.1809,165.6,-0.744866,-12.3877,165.458,-4.07733e-005,-12.4817,165.395,-2.32174,-10.8462,166.303,-2.18374,-10.8586,166.107,-1.96931,-10.9052,165.904,-1.64017,-11.0342,165.732,-1.17941,-11.2294,165.641,-0.617078,-11.5015,165.685,-2.42163,-12.1169,167.283,-2.67166,-11.7798,167.016,-2.78688,-11.5519,166.779,-2.78137,-11.43,166.549,-2.03235,-12.5253,167.569,-1.46617,-12.9966,167.808,-0.792516,-13.3799,167.972,-4.34996e-005,-13.5864,167.931,-2.34717,-12.0804,167.057,-1.98644,-12.468,167.281,-1.9202,-12.3605,167.125,-2.27439,-12.011,166.942,-1.41483,-12.915,167.462,-0.75409,-13.2847,167.602,-0.699633,-13.0654,167.434,-1.33719,-12.7311,167.299,-1.88238,-12.2823,167.097,-2.22307,-11.925,166.92,-0.677742,-12.9008,167.428,-1.29889,-12.5864,167.296,-0.668953,-12.7356,167.48,-1.26859,-12.4184,167.352,-1.82464,-12.1572,167.13,-2.19716,-11.8539,166.931,-4.27451e-005,-13.2271,167.499,-2.5728,-11.7792,166.856,-2.67275,-11.5782,166.682,-2.4959,-11.7393,166.776,-2.58846,-11.556,166.636,-2.44999,-11.6724,166.76,-2.5447,-11.4983,166.625,-2.42626,-11.6083,166.762,-2.51593,-11.4324,166.621,-2.65371,-11.475,166.516,-2.55776,-11.4641,166.505,-2.51361,-11.409,166.498,-2.47775,-11.3351,166.493,-4.12253e-005,-12.2796,167.75,-0.693444,-12.3275,167.83,-1.25661,-11.9898,167.687,-1.75385,-11.6976,167.452,-2.15421,-11.5298,167.103,-2.39862,-11.2995,166.845,-2.47138,-11.1071,166.645,-2.42063,-10.915,166.483,-0.947248,-9.33232,184.48,-1.18278e-005,7.07137,171.28,-5.88073,3.4665,164.698,-5.1584,4.77378,164.757,-6.21246,1.10282,164.7,-6.17258,2.25275,164.681,-1.28757,6.65314,164.629,-2.2915e-005,6.48862,166.095,-4.00521,5.91872,164.806,-2.64066,6.51592,164.759,-5.99514,-1.12197,164.538,-6.11763,-0.0318143,164.688,-5.61232,-2.0907,164.147,-5.00825,-2.92798,163.614,-4.33825,-3.62885,163.135,-1.77831,-5.73709,161.987,-2.35778,-5.28424,162.212,-3.00869,-4.7818,162.485,-3.68505,-4.2337,162.764,-6.06703,3.6927,163.37,-6.53114,3.98073,162.058,-5.83587,5.37938,162.273,-5.38348,5.03213,163.525,-6.28834,2.43648,163.245,-6.18249,1.25033,163.151,-6.38173,1.4029,161.607,-6.67164,2.63695,161.822,-1.58228,7.4437,162.127,-2.07457e-005,6.94236,163.276,-1.43337,6.95782,163.387,-4.67187,6.56413,162.392,-4.28643,6.17665,163.623,-3.17436,7.24947,162.325,-2.89385,6.81301,163.565,-5.86738,-1.00701,162.93,-5.79058,-0.876839,161.372,-6.05178,0.233316,161.491,-6.01279,0.0955927,163.073,-5.48894,-1.95812,162.634,-5.41767,-1.85086,161.127,-4.91911,-2.71632,162.265,-4.89157,-2.60698,160.817,-4.22319,-3.28851,161.928,-4.23793,-3.17093,160.526,-1.70384,-5.02605,161.119,-1.61824,-4.48175,159.645,-2.23469,-4.15503,159.808,-2.25297,-4.60493,161.228,-2.83007,-3.86103,160.044,-2.84315,-4.16939,161.425,-3.50744,-3.55973,160.28,-3.50328,-3.73757,161.656,-7.4367,4.34752,160.685,-8.59547,4.79813,159.306,-7.59767,6.52112,159.661,-6.60708,5.86068,160.983,-7.59872,2.88758,160.303,-7.16282,1.57816,159.955,-8.42089,1.82633,158.261,-8.87507,3.21001,158.793,-1.70122e-005,9.28452,159.347,-1.74786,8.18924,160.857,-1.98855,9.19743,159.46,-6.03752,8.03687,159.778,-5.25345,7.15531,161.13,-4.04852,8.90988,159.656,-3.53439,7.91348,161.046,-6.47251,0.360841,159.822,-5.91351,-0.775073,159.738,-6.44382,-0.777694,157.908,-7.40085,0.480771,157.991,-5.4687,-1.78453,159.496,-5.79185,-1.79456,157.697,-4.99451,-2.6156,159.18,-5.24205,-2.66619,157.417,-4.37347,-3.26583,158.883,-4.60272,-3.43768,157.16,-1.47854,-4.20512,157.886,-1.4616,-4.38755,156.2,-2.25063,-4.35298,156.429,-2.20258,-4.0573,158.143,-3.05454,-4.26966,156.703,-2.914,-3.93469,158.412,-3.84272,-3.97813,156.929,-3.64809,-3.70299,158.645,-0.725532,-4.3384,157.7,-0.82514,-4.87081,159.706,-2.09271e-005,-4.44086,156.026,-0.719407,-4.42371,156.074,-9.77913,5.26448,158.094,-8.6716,7.28672,158.378,-9.60702,2.05228,156.893,-10.1147,3.51763,157.53,-6.9046,9.0877,158.195,-4.61855,10.0816,157.916,-7.08456,-0.808396,156.409,-8.31033,0.578903,156.551,-2.26729,10.4168,157.739,-6.28621,-1.87246,156.189,-5.59966,-2.7247,155.945,-4.87347,-3.54492,155.724,-2.33123,-4.66229,155.091,-1.50026,-4.69188,154.908,-3.20253,-4.53748,155.316,-4.06198,-4.18856,155.527,-0.734463,-4.67041,154.781,-1.37294,-7.08117,162.201,-1.20633,-6.16602,161.861,-1.16096,-5.43771,161.171,-7.78854,-2.0021,171.345,-7.73758,-1.68951,172.004,-8.01387,-1.48358,172.858,-8.27541,-1.44802,173.716,-8.46301,-1.50814,174.355,-8.68766,-1.4895,174.707,-0.677076,-7.37132,162.031,-0.590941,-5.76986,161.275,-0.611536,-6.46612,161.775,-2.27504e-005,-6.64921,161.775,-2.15307e-005,-5.37482,160.483,-0.484882,-5.36178,160.58,-1.92e-005,-4.6505,154.732,-2.55352,-10.598,166.751,-2.45072,-10.4136,166.517,-4.02595e-005,-11.6413,168.091,-0.694106,-11.7054,168.282,-1.34225,-11.5015,168.171,-1.84275,-11.2471,167.821,-2.37437,-11.1416,167.427,-2.58725,-10.9063,167.034,-2.11147,-10.3325,165.675,-1.74463,-10.4232,165.405,-0.607795,-10.9023,165.274,-1.21495,-10.609,165.251,-2.2898,-10.3245,165.987,-2.36682,-10.3258,166.268,-2.60917,-9.94661,166.874,-2.51212,-9.79261,166.585,-0.737239,-10.8357,168.736,-1.39213,-10.602,168.464,-1.98498,-10.4726,168.191,-2.56536,-10.3188,167.894,-2.78574,-10.1059,167.194,-2.17801,-9.57012,165.657,-1.7632,-9.57238,165.371,-0.58021,-9.80652,165.085,-1.20529,-9.6424,165.133,-3.6544e-005,-10.0397,165.118,-2.4079,-9.61265,165.978,-2.45527,-9.6868,166.297,-2.61264,-9.30344,166.941,-2.53855,-9.18707,166.665,-1.42673,-9.53861,168.515,-2.05197,-9.47608,168.21,-2.56221,-9.4164,167.771,-2.6661,-9.3634,167.267,-2.29073,-8.80998,165.766,-1.8575,-8.68538,165.423,-0.572786,-8.72586,165.26,-1.20994,-8.67717,165.283,-3.44609e-005,-8.77847,165.275,-2.45586,-8.9682,166.117,-2.50572,-9.09586,166.39,-2.57355,-8.74195,166.732,-2.54425,-8.72397,166.498,-1.35221,-8.43917,168.08,-1.97314,-8.47543,167.832,-2.47639,-8.5918,167.495,-2.65925,-8.74825,167.135,-1.87397,-7.8772,165.944,-2.39161,-8.19267,166.109,-1.20749,-7.78493,165.913,-0.576879,-7.78033,165.925,-2.53677,-8.52441,166.372,-2.00919,-7.69445,167.216,-1.26444,-7.63424,167.294,-2.50138,-8.14277,166.94,-2.57235,-8.45955,166.809,-2.61339,-8.86447,166.947,-0.67599,-8.42575,168.269,-3.32315e-005,-7.63431,167.374,-0.620803,-7.64237,167.349,-0.728265,-9.61516,168.788,-7.83848,12.1973,14.1039,-6.77215,10.8575,13.987,-9.16224,12.8527,12.5802,-10.6122,12.2341,12.6902,-7.69629,12.4109,12.4523,-6.58651,11.0087,12.2199,-12.2819,9.70851,12.3939,-12.2661,9.63274,14.2067,-11.5957,10.9005,14.2543,-11.6553,10.7951,12.672,-12.4108,10.1449,10.4716,-11.4799,4.87373,12.4442,-10.9414,3.8889,11.9737,-10.2191,3.74905,13.1534,-10.0627,3.34543,12.3026,-8.66513,3.49739,13.2974,-8.66093,3.22281,12.3797,-7.22762,4.14946,11.9353,-7.52479,7.57937,0.876604,-8.0427,5.32931,1.06081,-8.6756,1.76292,0.798258,-11.87,-2.98582,0.500651,-12.4498,-1.58425,50.8195,-8.0206,-1.42153,51.0317,-13.0371,-3.32761,0.481924,-13.7313,-2.86393,0.530396,-10.5185,-4.63105,0.406262,-11.3879,-4.24649,0.414169], - -"morphTargets": [{ "name": "morph_Group1", "vertices": [3.13364,-9.72623,176.129,3.90474,-9.64007,175.921,4.46922,-9.57699,175.353,4.67584,-9.55391,174.577,4.46922,-9.57699,173.802,3.90474,-9.64007,173.234,3.13364,-9.72623,173.026,2.36255,-9.81239,173.234,1.79806,-9.87547,173.802,1.59145,-9.89855,174.577,1.79806,-9.87547,175.353,2.36254,-9.81239,175.921,3.2198,-10.4973,175.921,3.88759,-10.4227,175.741,4.37645,-10.3681,175.249,4.55538,-10.3481,174.577,4.37645,-10.3681,173.905,3.88759,-10.4227,173.414,3.2198,-10.4973,173.234,2.55201,-10.5719,173.414,2.06316,-10.6266,173.905,1.88422,-10.6466,174.577,2.06316,-10.6266,175.249,2.55201,-10.5719,175.741,3.28288,-11.0618,175.353,3.66843,-11.0187,175.249,3.95067,-10.9872,174.965,4.05398,-10.9757,174.577,3.95067,-10.9872,174.189,3.66843,-11.0187,173.905,3.28288,-11.0618,173.802,2.89733,-11.1049,173.905,2.61509,-11.1364,174.189,2.51178,-11.148,174.577,2.61509,-11.1364,174.965,2.89733,-11.1049,175.249,3.30597,-11.2684,174.577,3.07294,-9.09432,175.847,3.70368,-9.02384,175.677,4.16542,-8.97225,175.212,4.33443,-8.95336,174.577,4.16542,-8.97225,173.943,3.70369,-9.02384,173.478,3.07294,-9.09432,173.308,2.4422,-9.1648,173.478,1.98047,-9.21639,173.943,1.81146,-9.23528,174.577,1.98046,-9.21639,175.212,2.4422,-9.1648,175.677,0.667976,-10.3791,165.157,1.13994,-9.90453,165.279,1.00633,-7.07055,165.035,1.55048,-7.07055,165.035,0.799233,-10.3898,166.092,1.20976,-9.9223,166.208,1.00633,-7.07055,166.414,1.55048,-7.08208,166.349,0.799233,-10.7678,165.473,1.57552,-9.99298,165.473,2.03531,-7.07055,165.473,0.799233,-10.7678,165.771,1.57552,-9.99298,165.911,2.03531,-7.07055,165.911,1.00633,-9.08034,165.252,1.55048,-9.08034,165.252,2.03529,-9.2854,165.69,2.03529,-9.2854,166.127,1.55048,-9.09186,166.565,1.00633,-9.08034,166.63,1.55048,-8.07842,166.567,1.00633,-8.06689,166.632,1.00633,-8.06689,165.254,1.55048,-8.06689,165.254,2.0353,-8.15642,165.692,2.0353,-8.15642,166.129,0.0568168,-10.3791,165.15,-0.554342,-10.3791,165.157,-0.892694,-9.08034,165.252,-1.43684,-9.08034,165.252,-1.02631,-9.90453,165.279,0.0568164,-10.5684,166.075,-0.6856,-10.3898,166.092,-0.892695,-9.08034,166.63,0.0568162,-9.08034,166.415,-1.09612,-9.9223,166.208,-1.43685,-9.09186,166.565,-1.46189,-9.99298,165.473,-0.6856,-10.7678,165.473,0.0568167,-10.9632,165.466,-0.6856,-10.7678,165.771,0.0568166,-10.9632,165.761,-1.46189,-9.99298,165.911,-1.92166,-9.2854,165.69,-1.92166,-9.2854,166.127,0.0568168,-9.08034,165.244,0.0568167,-8.06689,165.246,-0.892694,-8.06689,165.254,-1.43684,-8.06689,165.254,-0.892695,-8.06689,166.632,0.0568162,-8.06689,166.417,-1.43685,-8.07842,166.567,-1.92167,-8.15642,165.692,-1.92167,-8.15642,166.129,0.0568168,-7.07055,165.028,-0.892694,-7.07055,165.035,-1.43684,-7.07055,165.035,-0.892695,-7.07055,166.414,0.0568163,-7.07055,166.199,-1.43685,-7.08208,166.349,-1.92168,-7.07055,165.473,-1.92168,-7.07055,165.911,0.0568168,-10.3791,165.15,0.0568168,-10.3837,165.17,1.3532,-12.0965,167.213,2.3729,-11.3342,167.148,2.96403,-10.2243,167.054,3.01525,-8.9758,166.949,1.35319,-12.0422,168.129,2.3729,-11.2799,168.064,2.96403,-10.17,167.97,3.01525,-8.92152,167.865,1.26917,-12.0202,167.152,2.01746,-11.1142,167.106,2.17921,-10.0228,167.037,2.21641,-9.11606,166.961,1.00931,-11.6075,167.794,2.01746,-10.6168,167.747,2.44678,-9.81073,167.679,2.21641,-8.61868,167.602,0.0568158,-12.3676,167.236,-1.23956,-12.0965,167.213,-1.23956,-12.0422,168.129,0.0568153,-12.3133,168.152,-2.25927,-11.3342,167.148,-2.25927,-11.2799,168.064,-2.8504,-10.2243,167.054,-2.8504,-10.17,167.97,-2.90162,-8.9758,166.949,-2.90162,-8.92152,167.865,0.0568158,-12.3017,167.169,0.0568155,-11.8044,167.811,-0.895681,-11.6075,167.794,-1.15554,-12.0202,167.152,-1.90383,-10.6168,167.747,-1.90383,-11.1142,167.106,-2.33315,-9.81073,167.679,-2.06558,-10.0228,167.037,-2.10278,-8.61868,167.602,-2.10278,-9.11606,166.961,-3.12398,-9.72623,176.129,-3.89507,-9.64007,175.921,-4.45956,-9.57699,175.353,-4.66617,-9.55391,174.577,-4.45956,-9.57699,173.802,-3.89507,-9.64007,173.234,-3.12398,-9.72623,173.026,-2.35288,-9.81239,173.234,-1.7884,-9.87547,173.802,-1.58178,-9.89855,174.577,-1.78839,-9.87547,175.353,-2.35288,-9.81239,175.921,-3.21014,-10.4973,175.921,-3.87793,-10.4227,175.741,-4.36678,-10.3681,175.249,-4.54572,-10.3481,174.577,-4.36678,-10.3681,173.905,-3.87793,-10.4227,173.414,-3.21014,-10.4973,173.234,-2.54235,-10.5719,173.414,-2.05349,-10.6266,173.905,-1.87456,-10.6466,174.577,-2.05349,-10.6266,175.249,-2.54235,-10.5719,175.741,-3.27321,-11.0618,175.353,-3.65876,-11.0187,175.249,-3.941,-10.9872,174.965,-4.04431,-10.9756,174.577,-3.941,-10.9872,174.189,-3.65876,-11.0187,173.905,-3.27321,-11.0618,173.802,-2.88766,-11.1049,173.905,-2.60542,-11.1364,174.189,-2.50211,-11.148,174.577,-2.60542,-11.1364,174.965,-2.88766,-11.1049,175.249,-3.2963,-11.2684,174.577,-3.06328,-9.09432,175.847,-3.69402,-9.02384,175.677,-4.15575,-8.97225,175.212,-4.32476,-8.95336,174.577,-4.15575,-8.97225,173.943,-3.69402,-9.02384,173.478,-3.06328,-9.09432,173.308,-2.43253,-9.1648,173.478,-1.9708,-9.21639,173.943,-1.80179,-9.23528,174.577,-1.9708,-9.21639,175.212,-2.43253,-9.1648,175.677,1.3532,-11.1899,165.956,2.3729,-10.4287,166.031,2.96403,-9.32023,166.141,3.01525,-8.07337,166.342,1.3532,-11.1264,165.315,2.3729,-10.3652,165.391,2.96403,-9.25674,165.5,3.01525,-8.00988,165.624,1.25443,-10.9459,166.027,1.92182,-10.1482,166.081,2.17921,-9.11899,166.161,2.21641,-8.21344,166.328,1.25443,-9.94623,164.91,1.92182,-9.1486,164.965,2.17921,-9.0555,164.944,2.21641,-8.14995,165.034,0.0568162,-11.4607,165.929,0.0568165,-11.3972,165.288,-1.23956,-11.1264,165.315,-1.23956,-11.1899,165.956,-2.25927,-10.3652,165.391,-2.25927,-10.4287,166.031,-2.85039,-9.25674,165.5,-2.8504,-9.32023,166.141,-2.90162,-8.00988,165.624,-2.90162,-8.07337,166.342,0.0568162,-11.2432,166.007,-1.1408,-10.9459,166.027,-1.14079,-9.94623,164.91,0.0568166,-10.2436,164.89,-1.80819,-10.1482,166.081,-1.80819,-9.1486,164.965,-2.06558,-9.11899,166.161,-2.06557,-9.0555,164.944,-2.10278,-8.21344,166.328,-2.10278,-8.14995,165.034,-0.00244992,15.2123,147.204,0.0824608,-23.4981,122.141,-0.00202584,13.9056,152.32,0.000659928,5.66289,107.821,-0.0189361,4.03761,92.7364,-4.49004e-005,-12.0596,181.201,-4.27062e-005,-12.8724,167.533,-4.52127e-005,-13.9486,169.649,0.0856401,-26.0033,117.673,-0.0358921,-17.2662,135.475,-0.00501519,8.31338,127.7,-0.00990889,-6.46147,152.63,-4.34633e-005,-11.3126,182.529,-2.73595e-005,-12.2211,163.521,-0.000358671,-11.7173,162.17,-1.28806e-005,7.93196,179.979,-2.75867e-005,-11.6088,165.638,-4.12259e-005,-9.34622,184.583,0.00294645,9.98747,161.446,-4.98916e-005,-15.2283,171.373,-4.25867e-005,-13.0916,167.472,-0.0716574,-7.97245,159.068,-0.00148218,11.4941,158.621,-1.91264e-005,-8.41473,168.333,-0.000642986,4.89615,114.206,0.0649415,-28.7488,113.494,-0.00697595,5.34918,118.311,-0.00215262,13.1599,154.832,-0.00314614,12.2963,156.889,0.0563721,-24.2659,91.9603,-0.0163355,-3.76461,90.3251,0.00573968,7.60565,100.608,-4.04164e-005,-12.222,164.278,-0.000305646,-11.0999,161.691,-4.74227e-005,-15.0192,171.863,-4.61274e-005,-13.2407,175.381,-3.85163e-005,-5.47692,186.342,-4.02136e-005,-12.3372,164.966,-4.44005e-005,-13.4661,167.619,-9.93674e-006,7.6017,173.749,0.00388378,8.28473,164.765,-3.69702e-005,-10.7748,168.59,-2.10298e-006,-10.9242,165.299,-0.000307786,-7.77689,165.962,21.49,3.45786,142.045,22.7305,3.01237,141.801,22.5914,5.66509,141.047,21.2769,6.03421,141.391,48.0584,7.53015,138.547,51.5419,7.07342,138.221,51.5956,9.77317,139.388,47.8708,9.97838,139.648,45.0233,10.3613,140.256,45.2799,8.22784,139.048,41.1845,4.22568,149.374,41.2192,2.61675,147.616,38.5208,2.14392,147.805,38.4817,4.00562,149.683,35.3995,1.51782,148.043,32.2344,0.957386,148.146,32.4036,3.12532,150.483,35.4389,3.62966,150.117,40.6584,6.64813,150.13,37.8148,6.65785,150.424,32.063,6.27784,151.259,34.8598,6.54888,150.866,35.0456,0.197103,145.483,31.7172,-0.182043,145.434,42.87,2.82655,147.45,43.9659,2.76604,147.276,44.074,2.36397,145.703,42.7927,2.13932,145.569,38.3321,0.974974,145.524,37.8912,0.950644,142.911,34.3294,0.348825,142.58,37.2088,2.5943,140.635,33.4575,2.32598,140.397,36.5615,4.9128,138.887,32.7166,4.76,138.759,48.495,4.63224,138.719,51.6574,4.25473,138.345,32.0218,7.63954,137.809,35.8715,7.53385,137.87,34.9354,10.2532,138.667,31.3045,10.4976,138.676,55.0662,11.2747,141.972,54.8506,9.59958,139.427,57.9581,9.63939,139.644,58.1336,11.0789,142.302,57.8921,7.13692,138.135,54.7905,6.93911,138.07,61.3882,7.4363,138.64,61.5648,9.62057,140.359,61.7215,10.5831,143.086,54.8723,4.17377,138.032,57.9691,4.48014,138.004,61.2552,4.94125,138.331,61.1874,2.79978,139.303,58.0737,2.39011,139.344,61.1785,1.50521,141.149,58.1643,1.28231,141.623,55.0378,2.12936,139.603,55.2237,1.21657,142.207,64.4164,3.18249,139.414,64.6089,5.23621,138.981,64.3302,1.72752,140.728,64.8841,7.38859,139.6,65.1704,9.11399,141.35,68.3955,7.0863,140.453,68.7639,8.37428,142.105,68.0453,5.32936,139.637,58.335,10.8722,145.29,61.8299,10.0088,145.682,65.367,9.6226,143.84,65.4288,8.745,145.878,55.3349,11.2947,145.054,65.3765,7.21176,147.202,61.8816,8.56881,147.606,69.0371,7.34103,145.626,68.9108,5.83967,146.388,69.0071,8.478,144.206,49.245,1.79803,143.357,52.1974,1.36546,142.854,51.9075,2.19073,140.075,48.9002,2.55558,140.499,47.0068,2.28457,146.278,49.4197,1.9356,146.374,46.9013,2.29757,143.496,52.4444,1.58809,145.953,55.419,1.45747,145.173,49.2892,3.3253,149.168,52.6164,2.9026,148.8,55.6263,2.72737,147.971,58.511,9.59401,147.704,55.5698,10.125,147.755,55.7408,8.05852,149.467,58.5776,7.5173,149.024,61.7822,6.56735,148.406,52.5599,8.45623,149.754,52.342,10.5302,147.776,48.7508,8.69506,149.494,49.0776,6.11708,150.177,46.176,6.25432,149.866,45.8144,8.74784,149.153,52.6903,5.72704,150.182,46.664,3.49479,148.898,55.7646,5.4046,149.607,58.5025,4.98737,148.827,58.391,2.56284,147.038,61.5675,4.24853,147.818,61.3784,2.19693,146.017,37.3661,12.1393,145.986,37.154,12.0576,143.522,40.5989,11.9587,143.275,40.7423,12.1091,145.719,34.0944,12.0765,145.97,33.7294,12.1002,143.544,41.2973,10.8253,147.676,38.268,11.0974,148.058,44.9892,11.7479,142.394,43.0681,11.8838,142.838,43.2901,10.5701,140.767,45.1642,12.0327,145.072,45.4634,10.7865,147.509,43.4751,10.7293,147.495,43.1749,12.0783,145.385,35.148,11.3296,148.277,48.4281,10.799,147.603,40.8985,1.74546,143.35,42.6327,2.19576,143.566,42.4,3.13819,141.768,40.5378,3.06878,141.292,42.3265,4.64694,140.245,40.0824,5.08658,139.635,43.5913,2.96652,142.108,43.9317,2.41688,143.654,45.1909,2.53324,143.519,44.3401,3.6614,140.96,64.855,3.30393,146.685,65.1634,5.3417,147.511,68.6171,4.15433,146.439,68.237,2.40515,145.601,61.2413,1.3226,143.573,58.2656,1.4316,144.365,67.7786,3.51489,139.59,37.6561,11.2862,141.087,34.1165,11.7424,140.968,38.6278,9.69751,139.156,30.8292,12.188,140.967,41.0885,1.69419,145.548,36.5588,9.35369,149.849,33.6766,9.37496,150.147,32.3005,11.5995,148.447,64.3821,1.14813,142.766,67.6409,1.10444,141.978,67.6192,1.97389,140.364,64.5717,1.67584,144.968,67.878,1.23698,143.949,42.9722,4.13203,149.134,42.7518,6.55663,149.915,39.6046,9.20031,149.52,42.0999,8.99437,149.203,43.8934,8.8123,149.038,44.344,6.37281,149.809,41.7591,9.0521,139.653,43.6887,8.65521,139.461,40.998,10.7466,141.175,39.5411,7.28074,138.775,42.2804,6.77411,139.241,30.6743,12.6809,143.484,31.1589,12.5215,145.948,28.7313,13.0056,146.113,28.2607,13.2576,143.59,29.822,11.7722,148.6,24.0305,0.230393,145.4,22.7077,0.295038,145.006,23.4321,0.400771,148.175,24.9516,0.806259,147.962,23.0173,1.29438,143.163,21.6423,1.65271,143.053,26.6164,0.810221,147.76,25.7442,0.0672842,145.305,29.4997,2.82794,150.167,29.5018,6.02126,151.269,30.8953,0.275858,142.64,27.7006,0.439736,142.814,28.5142,-0.118317,145.298,24.9893,0.853403,143.147,24.7038,2.64092,141.626,19.2385,13.1021,143.822,20.9564,13.2399,143.865,21.6642,12.8644,146.094,19.5908,13.0324,145.939,21.5622,8.50989,140.478,20.0905,8.76038,140.836,19.7493,10.9095,141.216,21.3941,10.7952,140.887,21.1328,12.4223,142.041,19.4784,12.3771,142.258,28.2619,12.5913,141.156,25.8049,12.7517,141.396,25.9013,10.7673,139.794,28.3893,10.6249,139.107,26.1299,7.99229,139.075,28.7984,7.74731,138.2,26.6334,4.77579,139.536,29.4313,4.68036,138.94,27.0604,2.18752,140.933,30.0586,2.23274,140.56,25.6744,2.94708,150.434,27.1668,2.9477,149.93,31.1231,9.3074,150.338,28.7346,9.28625,150.355,27.3292,11.7902,148.579,26.197,13.1385,146.242,25.7511,13.5172,143.729,48.1589,11.8335,144.843,47.9025,11.5276,141.971,51.8039,11.4871,141.88,52.1012,11.5981,144.932,44.7597,3.50075,148.59,45.9401,5.3812,139.144,24.3508,2.80819,151.341,24.2434,6.27724,152.595,25.6915,6.1938,151.73,22.9712,9.68571,151.379,24.5998,9.3864,150.708,21.4663,11.9049,148.915,23.0603,11.5711,148.562,23.6422,12.9763,146.177,24.9407,11.5898,148.531,29.1752,0.752998,147.902,27.2116,6.05894,151.204,23.7377,10.7531,140.611,23.2288,12.5368,141.818,24.0777,8.27858,140.208,24.5546,5.26804,140.613,26.3796,9.22708,150.349,23.0286,13.4006,143.802,45.3246,2.45837,146.021,46.4632,3.19095,140.859,44.0826,6.04302,139.284,70.7551,1.09803,143.183,72.6146,1.00894,142.71,72.1661,1.44685,141.125,70.4461,1.30788,141.465,70.4081,2.34251,140.294,72.119,2.56998,140.245,71.1656,1.98492,144.806,73.1801,1.77522,144.339,70.8128,5.44161,140.136,71.1494,6.84864,140.976,71.5381,7.83619,142.381,73.2713,5.69248,140.332,73.6559,6.83549,141.15,72.9108,6.8004,141.143,72.5827,5.58627,140.317,70.5613,3.84617,139.843,72.2922,4.07185,139.967,71.8526,7.92373,144.191,71.9305,6.69006,145.332,73.8169,7.56472,144.022,74.0063,6.37294,145.025,74.9407,6.26084,144.767,74.9122,4.73392,145.143,73.9079,4.85088,145.419,71.8186,5.16291,145.823,71.5376,3.51384,145.711,73.6072,3.21046,145.25,74.5841,3.07268,144.989,74.0087,1.65075,144.122,72.6031,2.65284,140.183,72.8895,4.1857,139.969,73.3556,7.56221,142.429,72.643,1.47629,140.969,73.2059,0.965587,142.521,74.592,7.41153,143.869,74.1021,7.49812,142.399,18.2309,-2.47431,148.274,17.5505,-3.71992,146.571,16.154,-3.73272,148.366,16.9727,-2.31545,149.809,14.7473,-3.22007,150.42,15.9042,-1.78394,151.5,18.7562,-1.12215,150.076,17.6575,-0.85489,151.298,16.6462,-0.226351,152.517,18.0374,0.963877,152.75,19.2507,0.499716,151.902,18.0864,3.43726,153.635,19.5036,2.82482,153.304,19.065,6.10178,153.718,17.7,6.25666,153.866,16.8441,3.94684,153.958,16.5485,6.42103,154.161,18.3526,9.22241,153.248,17.2603,8.76428,153.603,16.699,10.9443,152.944,17.5776,11.5389,151.863,16.3377,8.36365,154.123,16.0621,10.2274,153.982,16.5775,12.9967,150.597,15.9076,12.4931,152.22,15.4408,11.7032,153.726,15.7564,0.679524,153.618,15.0176,-0.792965,153.136,14.3404,0.557254,154.57,15.0629,1.78625,154.53,13.8541,2.42151,155.528,14.5719,3.39483,155.098,16.02,2.26451,153.983,15.4787,2.65895,154.478,15.2076,4.03408,154.689,16.9436,1.65903,153.4,14.9523,5.95703,154.949,15.6476,6.28291,154.521,15.9287,4.14677,154.291,15.5689,7.88878,154.641,14.9888,7.46648,155.218,14.938,8.93717,155.418,15.4583,9.45099,154.768,14.7368,10.0018,155.395,15.0496,10.7306,154.833,14.1526,10.3034,155.809,14.1321,11.5505,154.918,14.2518,12.6494,153.456,12.6249,12.1387,154.903,12.5084,13.3046,153.134,14.4052,8.80114,156.163,14.5541,13.4693,151.671,15.0313,13.9309,149.785,12.9403,14.5445,149.219,12.6445,14.1279,151.191,14.4282,5.38356,155.595,13.7562,4.58807,156.198,14.4688,7.0938,155.98,10.5209,12.6364,154.751,10.2997,13.7244,152.64,13.7509,-2.11615,152.438,13.1332,-0.765131,154.277,12.3614,1.29626,155.638,12.8471,3.89933,156.673,13.0594,6.17464,157.622,13.8713,6.65176,156.852,19.4223,1.3348,141.439,18.8789,-0.489571,141.686,20.1466,0.398724,143.467,20.4424,1.99879,142.865,20.7082,3.91473,142.346,20.3791,3.50399,141.585,10.5684,14.9378,148.526,10.904,15.0947,146.745,13.3407,14.6564,147.351,11.8163,14.8615,143.507,14.4665,14.2679,143.927,13.8542,14.58,145.558,11.3201,15.0579,145.077,17.0696,11.3748,141.378,15.2713,12.1233,140.212,17.8894,10.1097,140.237,18.5569,9.24452,141.136,19.235,7.87526,140.67,20.1829,6.2768,141.633,20.1741,5.6309,141.164,20.144,-0.739871,144.252,18.9776,-1.74911,142.308,21.7008,-0.319427,145.892,20.314,-1.81427,145.477,21.2801,-0.999003,147.687,18.7299,-3.42563,144.88,19.5673,-2.40533,146.938,19.164,-2.6885,143.383,14.9935,13.6704,142.632,12.4514,14.4078,142.08,13.4821,13.532,140.904,15.6428,12.6199,141.805,10.3487,14.5252,150.497,13.6529,8.8283,157.065,13.0447,10.7347,156.328,17.4455,13.2203,149.017,18.7245,11.9785,150.715,19.7316,9.7241,152.749,15.6298,14.0604,147.948,20.929,1.9269,142.98,21.2172,3.86686,142.379,21.3309,0.497177,144.16,19.277,9.02415,141.174,18.4613,11.0569,141.554,20.6666,6.24707,141.66,21.0456,2.74159,152.855,20.6403,6.15049,153.677,22.5099,6.27354,153.347,22.7404,2.73381,152.283,17.7326,12.2137,142.303,17.2847,13.0608,143.26,16.3143,13.9896,146.206,18.4756,13.2422,147.542,20.0595,12.0969,149.696,21.3374,9.82424,152.046,22.1522,0.309047,150.067,20.638,0.346503,151.068,16.9901,13.7134,144.587,20.0914,-1.23592,149.014,9.10943,6.95108,118.991,12.2921,5.46171,119.122,11.9644,5.75303,121.159,8.78023,7.08828,121.252,2.3989,-14.0505,139.369,2.71447,-15.0719,138.055,-0.0099906,-14.9584,138.162,7.9462,14.9372,150.008,7.87465,14.1794,152.334,8.13627,15.3312,147.962,5.58058,15.6967,147.591,5.42217,15.2613,149.789,8.42494,15.5171,146.161,5.78693,15.9154,145.682,9.28665,15.4067,142.841,9.96639,15.0612,141.199,12.5577,13.2051,138.42,10.9747,14.407,139.634,17.3966,-6.55121,140.962,17.8246,-4.71264,142.854,18.1537,-4.07891,141.134,18.1085,-6.03024,139.025,9.6389,-9.15788,146.202,7.62446,-9.75614,146.49,6.35258,-8.34709,149.172,7.94358,-7.76979,149.129,5.5153,-10.0682,146.767,4.72966,-8.77026,149.155,1.5225,-10.2542,146.923,1.39076,-8.91275,149.131,3.05694,-8.95365,149.148,3.4758,-10.2066,146.884,1.66573,-11.2506,144.763,3.78085,-11.3824,144.714,4.04817,-12.2747,142.614,1.82761,-12.0713,142.67,11.6978,-2.03735,153.879,10.3157,-3.14418,153.56,9.4419,-1.84319,154.756,10.7841,-0.641874,155.109,12.3829,-3.20502,151.922,11.0464,-4.26932,151.625,5.45924,-6.01014,152.757,6.69008,-5.44623,152.976,7.11993,-6.43215,151.268,5.73423,-7.00945,151.153,5.22773,-5.11993,153.83,6.21173,-4.45,154.121,12.3152,-5.53732,149.391,13.5671,-4.39735,149.819,15.2485,-5.02488,147.393,14.1721,-6.27795,146.645,4.18164,-6.40544,152.488,4.29346,-7.43148,151.052,4.16596,-5.61412,153.437,2.80929,-7.63098,150.983,2.81763,-6.65534,152.211,1.27315,-6.71167,151.948,1.70088,-6.28962,152.782,2.95095,-6.01787,153.06,1.34753,-7.60448,150.864,6.35317,-15.103,137.144,6.73621,-15.9519,135.936,3.01618,-16.1225,136.897,8.56607,-28.2844,114.52,4.64845,-29.4489,114.147,3.34048,-27.4862,119.189,7.1307,-26.9182,119.786,12.629,-25.5223,114.708,11.2171,-24.3313,119.547,14.0639,-25.3853,108.911,10.2067,-28.1688,108.071,6.22079,-29.6985,107.358,13.4805,-12.3601,133.155,13.3143,-11.8081,132.202,10.1443,-14.1314,134.743,10.1486,-13.8245,135.828,16.6204,-9.85759,132.307,16.2046,-9.164,131.216,19.0784,-1.09065,129.339,19.6451,-1.28284,126.804,19.2439,-4.65722,127.97,18.2514,-4.06021,129.822,20.0883,-1.57765,124.288,19.8324,-5.23053,125.897,19.1529,2.35362,125.789,18.8575,2.32364,128.46,18.9301,2.06946,123.153,8.0003,13.0946,154.872,5.2342,13.4446,154.938,5.30807,14.5159,152.303,2.55925,13.3573,154.89,2.65344,14.3031,152.318,2.73135,15.0937,149.633,2.81989,15.6128,147.296,2.9297,15.8343,145.29,14.6943,11.0662,137.954,17.0017,8.33711,138.161,18.6629,5.50231,138.805,13.1294,11.7939,135.683,15.4969,8.81682,135.719,18.5729,2.811,138.997,16.9999,5.44454,136.053,17.3543,2.22869,136.249,17.8568,0.291215,138.79,17.4213,-0.604696,136.2,7.94808,-13.6421,138.794,6.16166,-14.1142,138.72,4.54374,-13.0958,140.812,7.26375,-13.0831,140.224,18.2399,-3.49559,135.961,17.8526,-1.82885,139.211,17.8268,-3.5261,133.294,17.492,-0.983038,133.893,18.14,-1.01953,131.656,17.6295,-3.68265,131.593,18.4977,-5.14141,137.594,18.029,-3.21089,140.01,20.0556,-2.73787,119.803,20.7713,-6.93225,121.127,20.1661,-6.03541,123.639,19.6671,-2.12886,121.991,20.9183,-3.23465,117.833,21.6341,-7.60526,118.631,20.3824,-12.3501,119.977,19.6437,-11.3121,122.856,19.2001,-10.0582,125.477,23.1476,-9.83875,108.872,23.0501,-14.2234,107.504,22.9757,-13.9471,110.743,23.469,-9.22879,111.324,19.7111,-18.0875,114.2,22.0301,-13.4538,113.784,20.7066,-18.3407,110.215,22.4995,-5.83013,109.98,22.7458,-4.98357,112.027,17.7276,-16.3237,121.245,17.1947,-15.0928,124.085,22.5145,-8.15059,116.231,21.2568,-12.9566,116.894,18.7754,-17.3587,117.972,18.0248,0.712224,119.175,18.9776,0.441632,117.406,21.819,-3.75813,115.991,20.0237,0.106916,115.862,15.3521,3.38652,119.14,16.3294,3.40597,117.37,17.3304,3.27013,115.742,17.8222,1.19019,121.198,15.0684,3.73356,121.094,9.59577,6.90667,116.884,13.0887,5.57544,117.231,2.81475,6.46873,118.403,2.95488,5.93443,116.037,6.11823,7.02266,116.445,5.85967,7.41619,118.712,6.45511,6.61899,114.609,3.05672,5.68854,114.345,10.1761,6.79012,115.008,13.8932,5.51434,115.446,17.2837,2.01,133.794,17.352,5.90262,128.071,18.1461,2.17189,131.155,17.2452,5.86712,130.844,14.5161,9.08113,127.999,14.9371,9.32375,130.774,4.21102,14.2266,135.612,9.30916,13.9997,136.175,7.80882,15.0035,138.412,3.93837,14.9123,137.744,6.43297,15.763,142.221,6.98042,15.4612,140.366,8.79902,15.5335,144.481,6.05862,15.926,143.942,3.27909,15.707,141.819,3.07819,15.8543,143.537,7.06095,-16.8394,134.544,3.28852,-17.3033,135.389,10.3058,-14.4707,133.725,10.4719,-15.0422,132.681,12.7553,-13.3183,129.444,13.0674,-15.1205,128.222,10.4499,-18.2009,129.603,10.6014,-16.3153,131.402,13.2955,-16.8404,126.58,9.99369,-19.7983,127.308,7.08228,-18.091,132.706,6.66252,-19.7017,130.293,3.01908,-20.1101,130.255,3.32223,-18.6679,133.12,6.1972,-21.4652,127.761,2.69512,-21.71,127.548,12.7286,7.31972,122.831,8.92959,8.22772,123.563,5.63055,8.52684,124.079,5.66122,7.61583,121.332,2.79577,7.94677,124.36,2.70267,7.17486,121.248,2.91449,9.54573,127.157,6.16737,10.3503,126.473,17.063,5.81425,125.247,16.3498,5.22145,122.651,13.8217,8.58912,125.177,9.96338,10.2041,125.593,10.8271,11.2718,128.116,6.83408,11.9788,128.629,11.5427,11.8357,130.784,12.2013,12.0266,133.327,8.25715,13.4335,133.415,7.52048,12.822,131.043,3.18418,11.154,129.472,3.98449,13.3619,133.531,15.5122,3.48595,110.823,18.6068,0.947031,110.788,18.4827,2.04655,112.42,15.2493,4.63897,112.247,14.6773,5.28052,113.755,10.803,6.50481,113.404,11.4183,5.95995,112.019,3.55741,15.3662,139.852,3.60106,5.85916,109.947,3.56554,5.71164,111.506,8.09944,5.99128,110.448,7.45613,6.05105,111.751,-0.00293523,4.97067,115.84,16.5457,-22.1224,114.577,17.6304,-22.0879,109.667,15.4173,-21.1358,118.847,14.3541,-19.6929,122.086,22.5358,-4.29177,114.055,20.7189,-0.47058,114.212,20.9401,-1.30475,112.431,6.88576,6.30304,113.086,12.976,-11.6482,131.428,12.6157,-12.0151,130.545,20.9565,-2.23659,110.577,10.3692,-22.5744,122.679,9.97538,-21.0735,125.005,13.7221,-18.2235,124.509,6.38092,-24.9158,123.029,6.16225,-23.1731,125.39,2.38304,-24.8471,122.063,2.58724,-23.3832,125.007,1.18749,-24.5419,119.94,6.81473,-12.401,142.086,6.29853,-11.3837,144.341,18.2854,-8.68767,127.253,16.4624,-13.5518,126.296,15.5348,-11.7427,127.502,15.3337,-10.8337,139.152,16.9738,-8.9063,139.666,17.9697,-8.61218,137.254,16.3185,-11.1288,136.437,12.6773,-11.8559,139.683,13.3044,-12.4756,137.116,9.82535,-12.3014,140.934,10.2034,-12.8623,138.72,13.6827,-9.60395,142.491,15.1215,-8.1879,142.756,16.7456,-10.7474,134.11,18.4127,-7.7482,135.279,18.3249,-6.72811,133.474,11.5523,-10.6537,142.854,13.4972,-12.7024,134.894,9.01032,-11.288,143.625,10.343,-13.4043,137.047,16.017,-6.63114,143.688,1.78814,-29.2746,113.686,1.23956,-26.643,118.12,-0.000881524,14.9001,139.737,7.41242,-27.3156,101.548,3.64389,-27.7704,101.035,2.78498,-30.0519,106.945,17.1823,-7.47503,128.428,16.5136,-6.53882,129.702,14.8065,-9.15621,129.729,15.5801,-8.98494,130.487,17.1539,-6.31442,130.912,14.8386,-10.1324,128.491,17.8282,-6.22898,131.963,2.0371,-13.0758,140.924,-0.0238291,-15.9841,136.995,16.7662,-5.06756,145.043,16.7781,5.56564,133.569,15.0883,9.14877,133.398,3.58214,12.3485,131.549,0.608325,-6.46468,152.225,0.737789,-6.41625,152.664,-0.0379563,-11.1744,144.724,-0.0032595,12.4545,133.826,0.0409856,-22.633,124.647,-6.75286e-006,-29.9241,106.909,7.19466,-3.64161,154.302,8.2522,-2.78977,154.496,9.05152,-4.05397,153.346,7.86758,-4.78801,153.151,9.74835,-5.14138,151.461,8.45545,-5.82238,151.348,10.97,-6.41016,149.141,9.51293,-7.10682,149.074,11.4565,-8.2975,146.004,12.9173,-7.36041,146.132,-0.00116828,11.3269,132.038,23.2114,-8.71477,113.816,18.0943,2.83922,114.051,3.23647,5.63867,112.885,18.1523,-21.8346,105.079,14.6953,-24.2569,103.73,11.1184,-26.1193,102.523,21.1547,-18.4942,106.32,11.9797,5.16753,110.742,12.4422,8.8705,157.987,11.2728,11.192,156.813,11.757,3.54829,157.439,11.9576,5.77257,158.401,10.9747,8.63871,158.797,8.57616,11.4032,157.626,10.8984,1.75142,156.562,4.35084,-5.18745,154.202,5.33284,-4.56483,154.692,6.15991,-3.82486,155.11,8.53443,-1.00971,155.808,9.69477,0.217323,156.078,5.11539,12.4558,157.349,2.42608,12.4595,157.07,3.21042,-5.79078,153.776,1.97116,-6.24297,153.483,0.879672,-6.51814,153.344,6.86718,-2.95404,155.386,7.61242,-2.03882,155.596,-0.0148243,-6.63412,153.316,4.57788,-24.1914,92.2188,8.23746,-23.9735,93.2985,6.98066,-19.7123,91.7909,3.91229,-19.6795,91.0338,22.2098,-9.68955,104.948,22.3213,-13.716,103.198,22.0205,-12.066,104.852,21.5652,-8.27901,106.608,15.8269,-21.185,96.328,12.9334,-21.3522,94.2034,14.0002,-22.9488,96.9442,16.8372,-21.5643,98.8597,18.5498,-19.7697,98.6041,19.5233,-19.2981,100.822,9.97216,-20.4759,92.6778,11.2402,-23.6738,94.9908,11.2006,-24.506,98.8629,14.0916,-22.9843,100.298,8.0543,-25.6867,97.4942,4.30576,-26.3614,96.5868,17.3375,-21.3423,101.691,22.22,-10.7561,106.726,21.8614,-6.94226,108.171,20.259,-18.5996,103.224,12.6709,4.77356,109.354,8.66774,6.17102,109.064,9.27933,6.58526,107.548,13.4605,4.64186,107.751,21.2669,-5.96366,105.954,20.5055,-4.78381,107.652,1.86086,7.35895,105.088,5.42397,7.81276,105.453,5.09871,7.0198,107.138,1.82934,6.49356,106.669,1.44044,5.65343,108.986,1.6668,5.94866,107.997,4.68221,6.38962,108.546,18.8631,-1.43183,108.063,16.5894,1.78571,107.929,17.4604,1.36409,106.046,19.7902,-2.28136,106.225,15.8194,2.34544,109.521,18.4833,-0.404161,109.464,14.2478,4.71958,105.891,20.8761,-17.2628,100.881,21.5193,-16.0839,102.825,22.0542,-14.798,104.866,20.6795,-3.42214,108.984,9.90688,7.12339,105.776,-0.0201802,-26.5139,96.3522,0.000126609,5.94123,106.408,24.7648,-5.61593,92.4792,24.9234,-5.18557,87.8583,25.1528,-9.67052,87.3389,25.0506,-10.1384,91.7119,24.2769,-6.13985,95.6291,24.2217,-10.5282,95.1353,22.7858,-1.70923,92.6304,22.9471,-1.10244,88.1788,22.7223,-2.18774,95.1334,22.7512,-13.9967,86.6822,22.8049,-14.5776,90.6146,24.7318,-9.24329,83.0189,24.6954,-4.77555,83.4794,22.2128,-13.3322,82.7244,22.0881,-15.525,95.9932,23.496,-11.2488,97.9462,22.276,-14.8689,93.6805,18.8262,-18.0603,93.8623,18.5908,-17.5297,91.9961,18.4882,-17.3596,89.3438,16.1017,-19.4476,95.0495,19.5053,-18.4566,97.1001,19.0611,-18.3922,95.4628,15.2042,-18.9823,93.6669,14.5971,-18.4348,92.3462,14.0573,-18.0262,90.8455,22.388,-15.0145,101.278,20.1953,-18.1597,98.9153,22.2037,-6.87038,103.98,23.076,-10.9461,103.151,20.5868,-2.92469,104.088,21.2649,-3.17681,102.006,21.8603,-3.08501,100.017,23.0881,-7.19887,100.225,22.7819,-7.24527,101.984,23.4676,-6.83981,98.4093,22.3422,-2.79821,97.8408,19.6331,1.24539,99.4761,19.9185,1.35591,96.9956,19.8682,1.49015,94.4175,19.572,1.65402,92.1539,1.82026,-16.075,88.2964,3.27347,-15.7777,88.9079,1.85433,-13.6579,88.1618,1.20453,-14.3273,88.5506,0.679166,-12.026,89.0964,0.662691,-9.48798,88.9619,2.98982,-14.3489,86.4961,5.52977,-16.311,86.9874,4.70768,-15.4042,84.3077,2.29712,-12.8106,84.1085,9.01497,-17.7658,87.7419,8.32007,-17.1753,84.7477,3.92392,-14.1044,81.3421,1.72053,-11.0171,81.3585,7.55971,-16.1095,81.6257,3.95871,-15.4309,88.3285,6.46877,-16.5084,89.1997,9.77767,-17.688,90.0544,1.18742,-9.29189,84.3559,1.46605,-11.4142,86.6262,0.804286,-5.06283,85.1304,0.895442,-7.56726,87.1853,5.513,-17.5873,91.8974,3.0308,-17.9014,91.1688,8.13358,-18.1202,92.417,6.86337,-17.3626,91.4782,4.74516,-16.9453,90.822,2.68563,-17.3777,89.7479,4.1096,-16.4655,89.7789,2.33445,-16.9132,88.6772,1.02225,-3.93489,88.0593,0.696477,-3.66841,89.8491,1.82473,-0.442762,87.5757,1.70108,1.59387,90.3113,5.47988,3.87879,87.8476,5.62549,5.03433,89.8572,10.075,5.35884,87.7827,10.5011,6.2548,90.0423,15.2704,4.61195,91.1017,14.759,4.57287,88.0387,19.2388,2.20915,88.2391,15.7414,4.8662,93.4685,10.9515,7.22224,92.2762,5.72413,7.82648,90.9264,1.52341,5.68032,91.4299,5.91395,9.47098,97.8861,5.87951,9.14489,94.247,11.1051,7.72447,95.1921,11.1121,7.95783,98.2618,1.4476,7.82935,94.3517,5.91109,9.07559,100.845,1.67016,8.65625,100.757,1.33512,8.66895,97.8461,10.9158,7.83551,101.075,10.5131,7.56554,103.602,5.72998,8.59569,103.366,1.89345,8.13195,103.097,15.9694,5.0869,96.0958,15.9206,5.14022,98.8328,18.3017,1.08716,103.917,14.9869,4.81309,103.722,19.0594,1.08557,101.745,15.541,4.96679,101.377,12.5417,-18.8268,93.5427,11.3789,-18.4364,92.2929,14.1584,-19.9323,94.6616,10.9996,-18.8782,93.3756,9.32881,-18.1551,92.2704,8.27822,-17.5549,91.1226,6.00291,-16.6086,90.5596,7.44157,-16.7852,90.3253,5.07966,-15.8656,89.7022,10.5766,-18.0277,91.1804,13.5234,-18.1988,88.421,7.85029,0.894544,38.2624,11.2187,0.402322,38.4238,11.4503,1.00367,34.4551,8.12078,1.54719,34.2921,8.17365,0.345752,42.6968,11.2369,0.00012666,42.6974,14.525,1.86791,39.0176,14.5876,2.26064,34.8666,14.3711,1.43779,43.2197,4.81634,9.97384,22.7786,5.2507,7.08402,22.905,5.10915,7.27802,19.2052,4.94766,10.0287,19.1018,6.30763,4.69945,23.0549,6.18405,4.85164,19.2748,8.2588,3.08689,19.2757,8.31913,2.87797,23.0908,15.7707,14.339,36.097,16.893,11.4411,35.9183,17.2245,11.3338,40.3106,15.8996,14.303,40.7098,15.0769,13.8022,31.7998,16.152,11.3196,31.8529,13.29,16.1967,40.6854,13.3653,16.2359,36.1105,12.5264,14.6022,27.1723,13.0246,15.41,31.7297,10.1264,16.0509,31.5993,10.1472,15.4433,27.0949,14.3337,11.0126,22.4895,15.2545,11.2043,27.4601,14.1348,13.2406,27.311,13.2567,12.8368,22.3866,9.92443,15.0611,22.36,11.8448,14.1596,22.3345,9.95938,16.7497,35.935,13.8101,10.8441,18.9646,14.3348,8.68289,19.0698,14.8762,8.61476,22.6403,23.8978,-8.81591,78.6292,21.3654,-12.7056,78.2495,17.6225,-16.0124,82.3154,18.192,-16.8498,85.9286,16.8921,-15.0775,77.9829,24.0395,-4.37948,79.1723,20.115,-11.6597,74.0176,15.9836,-13.7107,73.7175,11.6951,-15.5156,77.8177,12.3641,-16.7648,81.9059,11.0858,-13.8064,73.6928,6.92278,-14.6226,77.5667,6.55817,-12.5575,73.5606,3.43487,-12.1796,77.4278,3.30205,-9.86337,73.5068,6.14764,-10.2949,69.7351,3.33796,-7.35535,69.7687,1.52369,-8.74903,77.4756,1.64668,-6.34186,73.5792,2.07634,-3.88087,69.8667,5.60513,-8.19619,66.0759,3.37321,-5.00182,66.1659,10.2922,-11.7706,69.8418,9.37819,-9.87991,66.234,14.7211,-11.6708,70.0206,13.3481,-9.57905,66.7065,18.4483,-10.0662,70.343,16.6276,-8.25361,67.1468,12.197,-8.03643,63.5559,8.62179,-8.18509,62.9479,15.0087,-6.67976,64.2304,11.2485,-6.56947,60.8802,8.14754,-6.5216,60.1197,13.6423,-5.35129,61.6245,17.5017,-5.05069,64.429,15.844,-4.01469,61.751,12.7957,-4.72634,58.8702,10.4038,-5.26717,58.5227,14.7503,-3.23645,59.1029,5.26674,-6.22904,62.707,5.41711,-4.42674,59.7858,3.41767,-3.02381,62.7593,3.94705,-1.36629,59.7645,19.2549,-6.13058,67.4106,20.5018,-2.7983,67.9556,19.132,-2.2642,64.7713,17.5756,-1.67796,61.8549,2.36701,-1.63579,66.2551,2.68414,0.207531,62.8764,2.26222,1.87521,66.5098,1.64856,-0.195311,70.0572,2.74415,3.49595,63.2021,3.25039,5.45716,66.9917,2.3211,3.63387,70.4528,1.53046,1.55679,74.1617,0.982182,-2.47508,73.7593,0.967541,-0.612482,78.027,0.637067,-4.8324,77.6402,0.723236,-2.87952,82.4993,0.831465,-7.17687,81.8385,3.30832,1.62493,59.7927,3.26754,4.55605,60.0888,4.74978,7.30368,60.7135,4.0552,6.71605,63.769,4.40368,6.74549,70.9023,3.33737,5.08181,74.6534,2.5272,3.29702,78.549,6.01399,-2.62697,57.809,7.96022,-4.56393,58.0706,7.76007,-3.49872,56.0645,6.27807,-1.56138,55.9514,6.23737,-0.888371,54.0717,7.50199,-2.89767,54.1559,5.27147,1.41902,53.9543,5.05491,0.723823,55.7511,4.73511,-0.0463409,57.5515,9.8503,-4.64133,56.1664,12.2151,-4.39838,56.276,14.3005,-3.01,56.4586,16.2974,-1.00717,59.288,15.6939,-0.6359,56.7848,17.6316,1.55043,59.42,17.1157,1.95224,57.014,18.0781,4.51586,59.7165,17.4701,4.95098,57.3017,16.8393,2.25672,54.773,15.3613,-0.404109,54.462,17.0634,5.41653,55.2316,13.8189,-2.64483,54.2232,16.4768,2.43106,52.4005,14.8638,-0.128202,52.1794,16.8872,5.57017,52.9227,16.1646,2.77325,50.0055,16.855,5.94733,50.556,13.9923,-0.0170034,49.7043,11.7452,-3.77876,54.1609,9.57861,-3.9096,54.1515,11.4867,-3.25553,52.1711,9.37126,-3.29845,52.1937,13.319,-2.07945,52.2455,9.01077,-1.15701,48.8496,9.28486,-2.22297,50.5795,11.3213,-2.34054,50.4844,11.4657,-1.28876,48.761,8.58841,-0.246565,46.4341,11.2874,-0.518996,46.2837,14.1527,0.844844,46.7656,7.65215,-2.13092,52.3184,4.84654,3.86049,53.9604,4.35876,3.281,55.5176,3.9781,2.88293,57.0684,4.57529,5.68865,55.6393,5.16493,6.1158,54.2277,4.02907,5.41809,57.2195,5.4499,4.68308,52.2648,5.66021,6.9333,52.6615,5.67739,7.33447,56.12,6.13612,7.6606,54.5795,6.5139,8.67359,52.9092,5.75625,2.21243,52.0972,6.00563,3.04235,49.9517,5.51956,5.69706,50.2211,6.56373,-0.190548,52.1224,7.15187,0.250363,49.806,6.80231,1.49977,47.0186,5.61804,4.0357,47.5094,4.93221,6.89337,47.8277,6.26668,2.27995,43.1367,4.66521,4.79701,43.6793,3.79112,8.06054,44.0935,5.59636,8.19473,50.6739,6.50261,10.2985,50.8378,5.03211,9.77667,48.0065,6.35293,12.2608,48.0644,8.44719,11.6666,50.8892,8.26178,10.0772,53.1583,8.86175,13.6006,48.0667,10.6528,10.4639,53.3089,10.9814,11.895,50.8535,10.4675,9.39527,55.3324,8.06019,8.89532,55.0002,10.3964,9.02713,57.3737,7.85584,8.39236,56.824,10.3987,8.72521,59.5772,7.66261,8.28551,58.8751,2.0556,1.38221,83.2933,5.60544,4.99236,83.8436,6.11272,6.58352,79.1783,7.38669,8.41913,61.38,10.355,8.68949,62.0588,13.3859,8.38914,59.9306,13.5712,8.37717,62.4574,13.1958,8.7512,57.6649,15.8213,7.39241,57.6494,16.2172,7.06466,59.9474,13.2153,9.84787,53.4282,15.4952,8.2567,53.4132,15.5176,7.76654,55.5435,13.0811,9.05688,55.5428,15.7438,8.97947,51.0982,13.5531,10.9537,50.9755,16.273,9.66312,48.1776,17.0494,6.59523,47.9032,16.3035,3.44332,47.3958,14.3423,12.0989,48.1725,16.5595,4.02367,43.8505,17.3363,7.24995,44.2887,15.2817,13.3858,44.8306,16.9076,10.5404,44.605,17.1911,7.95019,39.9091,6.1559,14.2782,44.4659,9.37502,15.561,44.5845,4.14647,11.5013,44.3418,6.13825,15.6482,40.065,3.62014,12.8428,39.7302,3.68757,13.0638,35.2583,6.16545,15.8813,35.6158,6.85834,15.4168,31.403,4.42093,13.052,31.2662,3.19666,9.09974,39.28,3.38497,9.48027,34.9438,3.9679,9.66776,31.2561,4.55905,9.71168,27.4478,5.23602,13.0211,27.26,9.84261,16.6712,40.378,12.6353,15.1713,44.7639,4.08173,5.55343,38.9129,5.82102,2.95895,38.5521,6.3393,4.45706,27.4752,8.31964,2.62717,27.4362,5.27995,6.83741,27.5086,11.0253,2.63608,23.0659,11.1975,2.15832,27.4636,6.21447,4.20333,31.0754,8.30129,2.17521,30.987,11.4132,1.59777,31.0702,13.8529,3.34031,27.5538,13.306,3.94757,22.9719,4.3431,6.24965,34.6827,4.89657,6.67768,31.1935,7.42235,15.0544,27.133,5.67423,12.9905,22.617,7.58707,14.8639,22.4654,5.8757,12.6108,18.99,7.48928,14.3504,18.8847,16.5013,4.6577,39.5589,16.3461,4.96355,35.2629,15.4075,5.75638,27.6124,14.3759,2.75373,31.2946,16.0813,5.37494,31.5393,16.8529,8.1744,35.6227,16.4457,8.39184,31.7534,14.5718,6.1452,22.7874,13.9824,6.46754,19.1196,12.8173,4.42569,19.1524,15.7226,8.54592,27.5957,10.3186,6.32009,84.23,10.9851,7.7311,79.7341,15.8426,6.64731,79.9766,15.041,5.50066,84.2994,16.4268,7.24409,75.9573,11.7869,8.62225,75.6999,20.1541,4.46387,75.8985,19.9412,3.96335,79.9197,19.41,3.09456,84.209,20.0511,4.63713,72.112,16.762,7.4663,72.1427,12.5331,8.95222,71.842,19.7177,4.65575,68.6264,16.9264,7.47277,68.6126,20.6593,0.962817,68.4034,21.742,0.79768,71.8012,22.5555,0.604528,75.5571,6.96741,7.90517,75.2204,8.02127,8.80135,71.3909,13.1326,8.87375,68.3205,9.13731,9.08669,67.9197,5.7389,8.04964,67.4922,13.5032,8.63216,65.1879,9.9383,8.93862,64.7858,6.75828,8.49602,64.2752,19.6454,1.16741,65.2188,19.2707,4.66891,65.405,16.8967,7.37843,65.396,23.2138,-3.93616,75.1051,22.0438,-3.43895,71.3335,22.7363,-8.23129,74.4882,21.1449,-7.31333,70.7124,22.9298,0.0923938,79.6157,22.9716,-0.489717,83.9414,18.6808,4.64726,62.4362,18.5638,1.38382,62.2312,16.5983,7.19361,62.5045,13.0168,-17.6752,85.2756,5.3214,7.32988,57.9029,11.727,13.5015,48.087,5.96107,3.69727,34.4679,10.7967,3.05673,19.2404,17.3064,-19.8295,96.6418,22.0888,-15.8106,97.6491,23.4912,-11.5313,101.171,0.0438461,-8.95704,89.6747,5.21715,7.40203,16.2702,5.05937,9.9759,16.1673,6.35638,5.01385,16.4145,8.34008,3.41082,16.4756,13.2801,10.6859,16.2473,13.7913,8.75882,16.3054,5.94008,12.2557,16.1399,13.4163,6.75453,16.3149,12.3258,4.85819,16.3022,10.6071,3.53634,16.4055,9.55488,14.7767,18.8133,11.4006,13.9041,18.8037,12.7704,12.5519,18.8683,7.37221,13.884,16.117,9.2645,14.4472,16.087,11.0389,13.6198,16.1072,12.333,12.2786,16.1692,0.203251,-17.1666,88.0092,-0.0253604,0.917252,91.2964,-0.00231613,7.32579,97.8863,23.5443,-11.6137,99.5388,22.2209,-15.6479,99.3282,0.207931,-17.961,88.9874,5.35203,7.17787,14.1571,6.62101,4.96932,14.4441,6.78439,4.76987,13.0635,5.3178,6.7129,12.2374,5.04912,9.78459,14.0445,4.70057,10.0132,9.6922,4.52584,7.33,9.6267,4.89048,7.26531,7.35003,4.66892,9.80576,7.50256,4.84047,9.51998,11.9685,6.06338,5.31602,11.4377,5.97401,5.08613,10.164,5.97882,4.42327,8.14962,8.30551,0.823029,8.07119,7.12876,1.23011,7.00206,7.43985,2.86484,9.63647,6.35665,1.47489,5.51483,5.46609,4.43697,5.88772,7.2002,3.80215,11.0379,5.60576,12.0186,9.9231,5.23615,12.3093,7.68226,6.54649,13.9411,8.04562,6.79128,13.5245,10.2116,8.88918,14.5876,8.03979,8.74229,14.1127,10.3859,4.95203,12.4084,5.80189,6.40293,14.2568,5.97332,4.45741,9.90324,5.69848,8.67479,3.12858,11.5139,8.93701,2.28866,10.1971,10.0763,3.22316,11.4264,10.2003,2.33901,10.1277,10.6176,0.58799,8.38817,11.3615,-2.12153,6.26148,10.4252,-2.19582,6.36458,9.5389,0.554907,8.4366,9.28528,-2.02667,6.33078,11.9913,5.09403,14.364,10.4579,3.82607,14.5444,8.45557,3.6034,14.6231,12.1917,5.3049,10.2675,12.0749,3.55615,8.7532,11.2685,2.81272,9.65481,11.2319,3.88078,10.9727,12.6283,12.1836,6.31057,12.7244,12.6198,4.29945,13.4086,10.3667,4.59837,13.2391,9.97808,6.70259,11.1582,14.0525,6.12419,10.9487,14.3222,4.15318,12.2832,12.8808,2.42819,13.1903,10.8399,2.65923,10.5517,14.3193,2.34917,12.0738,10.9188,1.34786,11.0806,12.4074,1.23317,10.1355,13.4755,1.28844,13.1786,5.71619,6.30109,13.4921,6.35286,4.57275,13.9058,4.03267,4.08788,13.5146,3.2154,5.44432,14.8151,1.2409,3.35983,14.2474,0.362778,4.54895,12.958,2.34701,6.53198,13.5144,-0.512842,5.29084,12.6799,4.33971,7.56275,13.354,9.41792,7.65052,13.2392,8.03493,6.27857,13.2569,7.9156,7.37908,13.1482,-10.8557,1.24315,13.6646,-10.7643,1.36821,13.7229,-11.1114,0.934862,13.4075,-11.2296,0.726656,13.7621,-11.1501,0.483598,14.0069,-10.8987,0.731368,14.351,2.02917,0.858403,15.0902,1.91751,1.99689,14.2145,4.64385,2.56694,13.4706,4.72608,1.03158,13.7517,6.98191,2.8319,12.8829,7.07211,1.19585,9.47444,11.873,0.770115,10.3046,10.4588,0.730056,13.4162,9.28557,2.78317,12.4499,9.29579,1.30454,11.3875,6.63781,0.655261,10.8923,8.89996,0.699056,8.69256,13.2034,1.08932,7.94325,11.1519,0.617843,7.07481,12.3501,0.993606,8.61429,9.79776,0.564136,8.30251,14.4887,2.30606,8.78283,14.8587,6.04938,8.50862,14.8392,4.09031,6.20628,14.0586,4.03441,11.0923,13.6567,8.12696,4.37722,9.74791,3.96437,4.68565,9.37381,2.41358,4.89984,11.6569,2.32642,4.78913,12.1568,3.99721,6.19397,13.5142,2.27491,5.97011,10.9665,1.03389,5.7868,9.11176,1.18305,4.70154,7.19646,3.99523,5.13814,7.05576,2.53349,6.14668,7.1739,1.43674,10.7096,13.3071,10.6346,9.1898,8.26562,0.588091,13.8785,-10.1982,0.430266,13.8649,-9.77041,0.684856,13.4245,-9.84318,0.58296,13.5594,-10.3731,0.341472,13.0086,-10.1594,0.666985,13.2041,-10.5323,0.411187,13.6959,-10.8483,0.314555,14.0467,-10.5074,0.501418,13.1982,-10.9256,0.474655,14.393,-9.03125,0.643134,14.6377,-8.98187,0.580095,14.538,-8.57728,0.740174,14.2444,-8.74417,0.835202,14.9027,-8.23526,1.01295,14.4858,-8.17725,0.975024,14.9039,-8.64909,0.755676,15.2119,-8.94209,0.883932,14.887,-8.95532,0.602475,15.0788,-9.25869,0.650218,15.2544,-8.52031,1.20958,14.1649,-8.37029,1.11579,14.1226,-8.73383,1.40558,14.2068,-9.12253,1.02814,14.1493,-8.00471,1.2955,14.4675,-7.80607,1.11473,14.1071,-8.30825,1.69279,14.4336,-9.3839,0.707576,14.4767,-9.48842,1.24881,14.5774,-9.69389,0.903787,14.7836,-9.41895,0.588893,14.9347,-9.76332,0.868,5.75866,4.64806,2.69052,6.68092,4.87872,1.64414,6.17705,-1.46848,2.42411,6.96851,-1.24599,1.05129,7.0395,1.85312,1.39053,6.18791,1.90941,2.6124,5.37748,4.53016,4.11961,6.03401,1.74335,3.99401,7.19087,-1.74868,5.09017,6.42229,-1.60601,3.84126,12.8254,-8.62763,1.28515,12.8809,-9.1287,1.25068,13.315,-8.89907,1.06795,13.2422,-8.40128,1.06985,12.9025,-9.62769,1.02503,13.3436,-9.33099,0.887298,12.6413,-8.85481,1.87132,12.6962,-9.40394,1.76657,12.7441,-10.0116,1.4236,12.5843,-8.02185,1.12571,13.042,-7.72101,0.931699,12.5463,-8.46031,1.85775,14.0988,-9.24838,2.20899,14.0921,-8.97251,1.67521,14.1136,-9.49892,1.37381,14.0929,-9.87779,1.76537,13.6225,-9.5112,2.52226,13.6615,-10.2024,1.99567,14.1212,-10.0262,0.919383,14.0438,-10.4262,1.19742,14.21,-4.7904,3.94002,14.9684,-4.2468,3.67278,15.0219,-5.47414,3.36028,14.5738,-5.79306,3.47916,13.5712,-5.51139,3.9044,14.1562,-6.21288,3.3491,15.1269,-6.20751,2.92021,14.7665,-6.55258,3.01644,14.3615,-6.83043,2.89327,15.5516,-4.85588,3.20793,15.3024,-5.39999,3.14856,15.7334,-5.45312,2.77554,15.3649,-5.84312,2.78558,13.6484,-6.57443,3.40363,13.9586,-6.60026,3.17516,14.0572,-7.0517,2.82325,14.3455,-7.45445,2.38949,14.0891,-7.49272,2.33418,14.8452,-7.21468,2.58869,13.0874,-6.72992,3.53849,12.6954,-5.75383,4.0746,12.4979,-7.00678,3.42934,11.8037,-6.22756,4.02108,12.1389,-4.41283,4.82214,11.2083,-4.68325,4.89351,12.9582,-4.03651,4.73556,13.3011,-7.48071,3.13333,12.7286,-7.66481,3.06701,12.1755,-7.3437,3.32848,12.2759,-7.80473,3.05546,11.7524,-7.23552,3.61446,13.412,-8.13075,2.84959,12.7437,-8.32288,2.6418,12.3716,-8.2675,2.58215,13.7846,-7.26978,2.97847,13.9304,-7.87602,2.4741,15.3201,-8.89654,1.50874,15.2876,-9.32227,1.13511,15.3224,-8.34342,1.88407,15.2381,-8.02243,1.48412,14.8831,-7.80846,1.18845,8.92662,-11.5405,2.20958,9.82866,-11.1334,1.85246,9.98532,-11.8075,1.74519,9.05817,-12.1028,2.06535,10.323,-11.7044,0.933107,10.1134,-10.8812,0.977637,8.83138,-10.9455,2.40518,9.70397,-10.419,2.07195,9.83351,-10.0591,1.17159,12.8282,0.998984,0.632,12.1075,3.65947,0.534939,10.4798,2.41556,0.54925,11.0472,-0.152253,0.60682,15.2019,-9.55515,0.844614,6.29572,-7.6576,1.13249,6.0405,-6.54522,1.13216,5.85926,-6.67632,2.33404,6.20083,-7.85995,2.14234,6.71484,-8.48674,1.04291,6.63047,-8.79403,1.91065,6.40677,-6.71754,3.53434,6.74693,-7.91676,3.16947,7.16915,-8.90382,2.83974,7.07811,-9.24405,0.933444,6.94745,-9.6233,1.70539,7.72372,-8.86577,0.534129,7.2847,-8.17113,0.474237,6.88044,-7.44422,0.413917,7.49678,-9.78417,2.58827,7.26284,-10.0154,0.764928,7.9971,-9.59335,0.420071,8.76044,-8.61614,0.683195,8.10829,-7.95974,0.253949,8.92546,-9.33168,0.638496,7.78831,-7.31079,0.0805361,8.51616,-7.37924,0.0339017,8.89693,-7.84722,0.250092,9.42244,-8.37131,0.822382,8.20375,-8.67188,3.41128,8.55837,-9.49617,3.07296,7.8286,-7.76891,3.81799,9.21921,-8.2536,3.46452,9.53588,-8.87855,2.73228,9.59527,-9.67819,2.36221,8.74645,-10.2741,2.73659,7.69019,-10.5731,2.3467,9.00685,-7.57117,3.90974,9.69316,-7.51503,3.65792,9.87623,-7.90691,3.30309,9.97501,-8.38137,2.64406,10.4336,-7.63053,0.353018,9.64345,-7.75889,0.306951,10.2012,-8.57271,0.857669,10.9645,-8.46179,0.690587,11.7823,-8.37106,1.00908,11.217,-7.50205,0.490746,10.745,-9.38695,0.995742,11.3412,-9.23996,0.798824,11.9945,-9.14828,1.11397,11.802,-7.36314,0.597146,12.1752,-8.04133,1.11492,12.2334,-7.14547,0.617816,11.6923,-6.3647,0.315606,11.4424,-6.77252,0.324125,10.7955,-6.66997,0.210598,12.6962,-6.88136,0.612142,13.5536,-7.5547,1.10702,13.1618,-6.67494,0.657063,13.7011,-8.31561,1.24756,9.84072,-6.76946,0.112762,10.8577,-5.69255,0.306691,9.56799,-5.70882,0.288738,13.811,-6.18581,0.642135,13.4488,-5.42503,0.394515,13.2763,-5.88627,0.44306,13.5127,-6.46972,0.681726,12.8497,-5.81293,0.389398,12.6959,-4.70799,0.406114,12.2316,-5.97443,0.337974,11.7944,-5.12928,0.359016,14.1987,-5.83341,0.591224,13.9067,-4.94679,0.379531,14.3747,-6.66974,0.878797,14.0176,-7.05205,1.11149,14.6547,-5.52101,0.617713,14.4968,-4.67166,0.424702,14.8573,-6.42452,0.988945,16.0283,-4.44983,0.721564,15.8262,-3.55925,0.609822,15.2154,-4.13882,0.507804,15.4632,-4.83953,0.684251,16.6187,-4.22487,0.925861,16.5256,-3.19675,0.922245,16.1239,-2.02335,0.896033,15.0602,-2.70706,0.64513,14.399,-3.69673,0.502413,15.9771,-5.26979,0.762294,15.4439,-5.66357,0.95185,15.4043,-6.13039,1.03947,15.8432,-5.89499,0.745395,16.3836,-5.83262,0.764506,16.5315,-5.11784,0.865894,12.381,-8.3924,1.83502,12.0512,-8.51916,2.77658,11.8462,-7.90398,3.28157,12.2651,-8.63848,1.85305,14.0094,-8.57555,2.37783,13.5182,-8.78389,2.73791,12.8824,-8.90484,2.53024,15.2063,-6.82976,2.29509,15.3583,-6.25407,2.20238,15.6526,-6.0687,2.20723,15.3424,-6.15149,1.53573,15.2572,-6.27574,1.53569,15.171,-6.75263,1.55899,11.3105,-8.54384,3.12017,11.1778,-7.87851,3.42661,12.1188,-9.22556,2.66383,11.4491,-9.3297,2.9522,12.3353,-9.16892,1.86049,10.481,-7.82329,3.32808,10.5434,-8.54528,2.75664,10.8043,-9.41239,2.51606,10.2383,-8.82387,1.74354,9.82357,-8.58697,1.69167,10.5397,-9.47727,1.68432,9.55268,-8.81106,1.59291,16.2666,-2.42362,2.71105,16.5154,-1.99835,1.74582,16.8023,-3.19242,1.65023,16.5989,-3.55803,2.49174,16.9009,-4.25992,1.51762,16.7408,-4.55876,2.22385,15.7719,-1.07125,2.94682,16.0328,-0.526997,1.7984,15.3088,-0.383634,0.814168,16.8363,-5.18118,1.33226,16.7279,-5.95241,1.12706,16.7317,-5.42295,1.92148,16.6782,-6.19457,1.64034,16.3152,-5.0253,2.73094,16.3,-5.76573,2.31691,16.2469,-6.43963,2.00743,15.6574,-6.53685,1.98124,9.98289,-13.0978,1.31474,10.0649,-12.537,1.5933,10.3428,-12.4758,0.935646,10.063,-13.0996,0.861825,9.39056,-13.4331,0.835859,9.37869,-13.3455,1.35849,8.22814,-13.0075,0.567619,8.01446,-13.0898,1.16858,8.6091,-13.4408,0.978752,8.63794,-13.3233,0.619917,8.72689,-13.3798,1.3718,8.39469,-12.9809,1.68977,9.27671,-13.2142,0.46905,9.23143,-12.7732,1.84087,11.661,-12.496,1.14262,11.4524,-12.1534,1.41895,12.0108,-12.0843,1.5407,12.1307,-12.4874,1.12099,12.1288,-12.4541,0.716323,11.584,-12.4169,0.815606,11.2329,-12.0433,0.992294,12.5292,-11.9063,1.32693,12.5404,-12.2992,1.06376,12.7179,-11.729,0.937137,12.598,-12.2162,0.750976,14.4163,-7.98121,2.23868,14.1115,-7.87253,1.79904,14.0694,-7.54651,1.76825,13.9731,-7.54402,1.72647,14.1347,-7.59488,1.29855,13.7696,-7.15178,1.1335,15.312,-6.41038,1.54349,15.1563,-5.8794,0.996179,12.4466,-12.0205,0.547965,12.0481,-12.1212,0.499381,11.6342,-12.1722,0.568739,12.4649,-11.5989,0.58519,15.4623,-7.9715,0.541046,15.2162,-7.91975,0.762549,15.3885,-8.22137,0.931292,15.6684,-8.309,0.773881,15.9076,-8.12807,0.598568,15.7841,-7.82529,0.421929,16.1627,-7.88499,0.751442,16.0984,-7.49596,0.465586,15.4044,-7.53946,0.479867,15.6621,-7.50837,0.377561,15.8178,-7.19325,0.409273,15.4486,-7.14256,0.546504,11.6178,-10.2268,2.7226,12.2702,-10.0115,2.50643,12.4556,-9.82289,1.78404,16.1863,-7.11395,1.7317,15.6162,-7.09718,1.80482,16.5753,-6.88551,1.34707,11.3176,-11.626,1.64989,11.8841,-11.5669,1.85851,11.1661,-11.0593,1.96091,11.7746,-11.0132,2.30019,12.3683,-10.7603,2.11037,12.4199,-11.3581,1.65212,15.1512,-7.66256,1.04669,15.1872,-7.2767,1.31355,15.5444,-7.59801,1.50851,15.4516,-8.02247,1.22091,15.2459,-6.8403,1.4977,16.0633,-7.66918,1.39336,15.9213,-8.12635,1.10918,14.9095,-7.89071,2.36333,14.4356,-8.55659,2.04765,14.9653,-8.58227,2.13667,16.3833,-7.43534,1.01411,9.60304,-9.35069,1.41095,9.16057,-10.091,0.382631,8.15514,-10.4128,0.145886,9.45645,-10.9756,0.168718,8.37931,-11.3209,-0.00619698,12.3169,1.61246,7.43877,12.8498,-1.25283,5.78361,12.1723,-1.80914,6.09925,11.5794,0.983516,8.06494,4.71429,7.25693,5.69206,12.9484,6.57994,7.4885,13.3902,7.60959,8.8736,12.6304,5.84414,8.53205,13.7551,-1.56892,0.619576,8.24525,-5.24739,0.441645,9.31696,-3.95869,0.511261,6.72268,-4.40978,0.78642,7.21488,-5.40076,0.473624,6.73197,-6.52687,0.391305,8.2649,-6.37007,0.258379,14.3561,-2.7402,4.27568,13.659,-3.46018,4.5738,15.1449,-1.87113,3.84677,15.6966,-3.17798,3.43472,10.0799,-4.7714,4.89801,10.5543,-6.21864,4.19739,8.82182,-4.92888,4.94924,8.21972,-1.92367,5.96838,9.21867,-6.57926,4.27254,7.45595,-4.99917,4.65016,7.59578,-6.64944,4.2793,6.34601,-5.00432,3.75075,13.3738,8.63517,4.7804,6.90086,10.4294,0.657178,13.341,9.69165,8.87738,13.0815,7.11611,10.8661,13.274,9.30496,10.6123,9.71655,5.95682,0.664833,7.1062,9.1952,0.706769,13.8148,-9.27545,1.02842,13.775,-8.83231,1.23304,14.0254,-8.41108,1.75453,12.8602,-10.5849,0.921168,14.4451,-9.06123,1.66152,16.1211,-4.17462,3.10708,14.9574,-9.13297,1.71392,14.9571,-9.57951,1.31887,10.1349,-7.23605,3.70956,10.9505,-7.17132,3.76313,9.05167,-7.07235,0.150331,7.10198,-10.4167,1.53776,8.69693,-12.1409,0.0508953,7.53105,-11.6773,0.519107,7.83224,-12.4143,0.526468,9.02455,-12.784,0.231193,7.36569,-11.8788,1.34471,7.61611,-12.5247,1.28353,7.95589,-11.8296,1.97488,8.12018,-12.3894,1.88214,13.4962,-4.15178,0.433944,15.0557,-5.20982,0.665335,14.9329,-4.64333,0.494101,14.8615,-7.27233,1.15694,14.4454,-7.34551,1.05745,13.938,-7.86529,1.738,9.88627,-12.5545,0.373883,9.73197,-11.8432,0.203977,9.85759,-13.0016,0.508559,13.0125,6.87902,14.3036,12.315,11.821,8.27696,12.0365,11.5868,10.6151,15.2474,-7.64889,2.08306,15.189,-7.41974,1.56496,11.4361,-11.8022,0.579224,11.9468,-11.6261,0.44034,15.2024,-7.58621,0.646115,15.174,-7.30962,0.78593,12.9776,-9.57746,2.34083,13.0603,-10.262,1.85422,16.5759,-6.56943,0.912079,11.0477,-11.5048,1.16235,12.6419,-11.1285,1.20565,12.3978,-10.9852,0.73602,11.8417,-11.0211,0.509922,11.273,-11.2382,0.666669,10.8998,-10.9186,1.34415,12.5612,-10.4864,1.53774,12.2951,-10.3614,0.945512,11.7262,-10.4275,0.651993,11.1433,-10.6547,0.793722,10.7409,-10.2418,1.53042,10.9885,-10.2979,2.27848,10.997,-10.0708,0.9269,12.155,-9.78179,1.09435,11.5721,-9.88229,0.782019,16.0119,-6.78079,0.539071,15.5473,-6.73704,0.6657,15.2103,-6.92876,0.962464,16.3636,-7.06326,0.660556,15.2973,-6.53636,1.05714,15.6882,-6.34607,0.743379,16.2038,-6.35573,0.678993,7.34213,-10.8446,0.579234,7.20398,-11.1749,1.41298,7.82721,-11.2452,2.11439,8.98547,-0.913992,0.710864,5.86628,-4.89094,2.37665,12.8744,6.90976,12.6082,13.368,8.72447,14.2562,13.2248,8.81787,12.4845,12.9325,10.5938,8.59922,9.02938,14.1718,14.2474,10.8028,13.3869,14.2832,75.0642,5.0057,139.575,73.6312,4.24806,139.855,74.4853,3.19133,139.569,75.4117,3.94826,139.349,75.227,6.22209,139.977,74.0427,5.88232,140.253,75.6297,7.23755,140.778,76.2675,6.47528,139.665,76.6155,7.41167,140.46,76.2604,7.63372,141.816,77.1407,7.78404,141.408,74.9999,7.49091,142.208,74.4745,6.96035,141.042,76.1739,5.37862,139.294,75.663,7.33263,143.474,76.2747,6.21968,144.284,76.3867,4.60996,144.672,76.0104,2.83756,144.519,77.8722,2.57547,143.744,78.2949,4.52505,143.865,78.2149,6.15048,143.378,76.7709,0.956972,143.043,75.0824,1.40646,143.717,77.3603,7.32266,142.678,77.6876,7.67352,141.989,77.998,7.9019,141.062,78.5322,7.71695,141.759,76.2884,4.41953,139.162,75.3976,0.348791,141.944,73.7659,0.842113,142.16,78.9829,7.26172,142.2,79.5368,6.68291,142.443,75.2353,2.32751,139.148,76.0347,3.08184,139.031,73.0151,1.47976,140.777,73.0517,2.60901,140.095,89.8315,9.19324,138.605,89.7407,9.14796,138.929,89.4322,9.16321,138.96,89.4035,9.28284,138.544,90.0905,8.92916,138.676,89.8657,8.90801,139.068,92.0609,3.95928,138.489,92.1282,4.18712,138.896,92.6594,4.26126,138.767,92.7954,4.15914,138.425,92.8676,4.55999,138.866,93.2431,4.51947,138.409,87.0386,-2.20573,139.744,86.9745,-2.4493,139.516,86.5277,-2.46262,139.38,86.4935,-2.04048,139.985,85.5691,-2.17608,139.73,85.7522,-1.77603,140.324,87.2054,-1.82732,139.89,86.7133,-1.50474,140.166,85.9908,-1.08857,140.477,87.0645,-1.08402,139.726,87.3669,-1.53042,139.824,87.6501,-1.67631,139.657,87.616,-2.01333,139.624,87.4596,-2.35926,139.512,86.1461,-0.496003,140.028,85.2649,-0.0125342,140.344,85.1288,-0.645579,140.817,84.9061,-1.40271,140.686,86.1437,-0.227391,139.307,87.0582,-0.672264,139.081,85.3106,0.152694,139.521,84.301,0.452727,140.695,84.6723,0.479817,139.731,85.1933,0.00116919,138.756,86.006,-0.285611,138.579,84.565,0.394761,138.907,88.0845,-2.13986,139.337,87.8938,-2.56631,139.228,87.9694,-1.53211,139.31,88.7313,-2.36934,139.019,88.5155,-2.83813,138.913,88.8708,-1.85629,138.844,89.3607,-2.63517,138.68,89.1748,-3.05774,138.601,89.6989,-2.24891,138.418,87.1759,-2.86588,138.317,87.4118,-2.79365,138.978,88.2592,-3.17376,138.534,88.046,-3.22403,137.951,89.1775,-3.4466,138.203,88.9453,-3.47944,137.654,89.9401,-3.65405,137.931,89.7532,-3.73467,137.44,90.52,-3.85373,137.79,90.455,-4.00151,137.333,89.6247,-3.44795,138.279,89.8696,-3.51189,138.177,90.3165,-3.38639,138.117,90.7187,-3.51626,138.068,90.0454,-3.30553,138.261,91.0032,-3.97794,137.747,91.1349,-4.1112,137.341,91.095,-4.0077,136.907,90.4957,-3.83903,136.859,89.722,-3.52163,136.969,91.2857,-3.71889,137.928,90.9031,-3.07823,138.08,91.488,-3.26796,137.922,90.4774,-2.98466,138.16,91.0238,-2.6867,137.846,91.4774,-2.91253,137.741,90.4184,-2.50525,138.077,90.6638,-3.42317,136.607,91.398,-3.73662,136.777,89.8331,-3.0639,136.708,90.8683,-2.94214,136.628,90.0408,-2.55008,136.76,91.5898,-3.29616,136.788,88.8791,-3.20194,137.158,88.9786,-2.68206,136.899,89.2125,-2.14772,137.021,89.6901,-3.20629,138.42,89.8351,-2.85187,138.477,90.1856,-2.95652,138.316,89.9752,-2.58882,138.414,90.2109,-2.6655,138.303,91.579,-2.9081,136.942,91.0463,-2.56206,136.939,90.2695,-2.20714,137.127,89.4703,-1.85775,137.443,90.4206,-2.17079,137.636,89.6536,-1.87571,137.964,88.6778,-1.43322,137.796,88.3908,-1.71658,137.304,88.8579,-1.48381,138.374,91.6742,-2.90109,137.354,91.1278,-2.47284,137.428,87.5287,-1.34582,137.635,87.2286,-1.95337,137.455,88.1065,-2.29927,137.125,87.823,-1.02836,138.148,86.6187,-1.03525,137.91,86.324,-1.67222,137.798,86.9146,-0.652195,138.414,85.379,-1.43018,138.086,85.3004,-1.98968,138.469,86.2163,-2.25207,138.109,85.6787,-0.747074,138.084,87.097,-2.56586,137.734,87.9818,-1.09048,138.771,85.4148,-2.22038,139.059,84.4043,-1.71555,138.842,84.5202,-1.95269,139.442,83.4826,-1.37576,139.187,83.5804,-1.57719,139.833,84.6932,-1.85846,140.114,83.7638,-1.41867,140.494,84.2199,4.09693,138.467,85.2086,4.1394,138.657,85.0546,4.97184,138.578,84.0601,4.98485,138.421,84.5688,3.20031,138.758,85.3597,3.50057,139.176,85.8418,4.96549,138.429,85.9126,4.17025,138.601,85.9695,3.62435,139.121,86.7117,3.68481,138.968,86.6648,4.17863,138.411,86.6706,4.9724,138.185,85.9439,3.51,139.87,86.7494,3.58051,139.66,87.6593,3.72007,139.425,87.5905,3.78074,138.801,87.5597,4.22497,138.268,85.3631,3.52667,140.001,85.2713,3.28047,139.401,85.1588,3.37744,140.05,85.4135,2.94623,139.156,85.4506,3.12839,140.004,86.1185,2.6753,139.05,86.1323,2.83711,139.818,85.2416,2.25035,138.681,85.9628,2.11721,138.566,84.2364,2.4265,138.637,87.0125,2.55683,139.532,86.9231,2.50109,138.787,86.7092,1.99912,138.277,88.0534,2.31269,139.189,87.8987,2.29628,138.473,88.0909,2.02157,139.935,86.931,2.3249,140.249,85.9495,2.63688,140.585,87.6504,1.80669,137.994,89.1739,2.07135,138.796,88.9738,2.0745,138.129,88.6888,1.60184,137.65,86.7201,1.91005,140.759,85.7432,2.17255,141.093,87.6549,1.66318,140.49,88.5003,0.876374,137.725,87.478,1.10068,138.078,89.7824,1.41148,137.308,90.0812,1.87099,137.808,89.5783,0.658716,137.344,86.7576,3.91374,140.272,87.7469,4.00861,140.011,87.5132,4.49318,140.302,86.7349,4.506,140.537,85.8816,3.89817,140.552,85.873,4.55838,140.818,86.7762,5.08265,140.394,87.5704,4.98075,140.207,88.1142,4.50774,140.198,88.1478,4.21423,140.119,88.1664,4.9078,140.144,85.8694,5.19341,140.647,88.6153,4.50071,140.082,88.4816,4.21473,140.037,88.6688,4.90882,140.043,89.1493,4.47453,139.902,88.7605,4.0209,139.755,89.2013,4.9751,139.841,88.602,5.20472,139.923,88.9061,5.41976,139.56,89.8515,5.46975,139.272,89.8801,5.01472,139.633,89.8341,4.47503,139.721,88.5232,3.82133,138.602,88.6192,3.75316,139.197,89.5645,3.70069,138.986,89.4424,3.82452,138.389,90.4492,3.7227,138.791,90.2985,3.89062,138.212,89.7167,3.97899,139.498,90.6368,4.03352,139.355,88.4929,4.26426,138.102,89.3968,4.30275,137.922,87.6031,4.96722,138.036,88.5436,4.97225,137.873,89.4506,4.98921,137.711,90.2361,4.3847,137.825,90.2951,5.0061,137.673,89.6076,5.5875,138.054,90.4576,5.53338,137.973,88.688,5.60407,138.222,87.7416,5.60811,138.416,86.7884,5.65045,138.595,91.1154,3.97925,138.075,91.2646,3.81957,138.62,91.0554,4.45344,137.734,91.4336,4.10767,139.144,91.9958,4.05999,137.988,88.3469,1.44712,140.277,88.518,1.73461,140.103,88.9255,1.31934,140.001,88.9046,1.64325,139.924,89.2683,1.75866,139.452,89.5681,1.2425,139.634,90.413,1.56134,138.96,90.4289,1.10573,139.287,90.2992,1.85824,138.436,91.4796,1.3154,138.706,91.2434,0.927205,139.034,91.321,1.61251,138.201,91.1166,1.60059,137.639,92.1711,1.40003,138.072,92.2509,1.10066,138.529,92.0324,1.38546,137.539,90.8578,1.19313,137.187,91.8311,1.00804,137.104,90.6654,0.518275,137.144,91.6575,0.380594,137.0,90.6457,-0.0645557,137.509,91.6011,-0.220138,137.286,89.5736,0.0854561,137.819,88.4791,0.355369,138.224,89.7419,-0.105338,138.468,90.8107,-0.288857,138.113,88.5985,0.196961,138.883,92.8816,1.18631,138.015,92.8046,0.946708,138.404,93.252,0.7945,138.375,93.4746,0.875236,138.038,92.8583,1.16213,137.512,93.4369,0.901496,137.61,93.7779,0.428772,138.071,93.312,0.449613,138.531,93.5507,0.539683,137.428,93.2385,-0.0405366,138.532,93.7376,-0.0992054,138.031,93.4688,0.0462598,137.347,92.7401,0.545275,138.616,92.3828,0.62307,138.654,92.2868,0.173904,138.637,92.6372,0.0751739,138.606,91.7951,0.761821,138.907,91.8751,1.03855,138.806,92.1233,0.967448,138.747,92.157,0.664485,138.801,91.7036,0.348248,138.903,92.0744,0.26331,138.785,91.1258,0.421192,139.053,91.9094,-0.0204667,138.703,91.6487,0.0354116,138.783,91.9422,-0.23717,138.451,91.1351,-0.0849125,138.7,91.7013,-0.459727,137.883,90.0174,0.107701,139.04,90.2904,0.565476,139.333,88.7749,0.926133,139.998,89.4146,0.763323,139.656,88.8383,0.424178,139.519,88.5527,0.674075,139.943,88.1586,0.740232,140.128,88.1942,1.04094,140.281,87.6148,0.640323,140.024,87.4685,1.15066,140.516,86.4008,0.818016,140.385,86.5115,1.34437,140.81,86.3639,0.540974,139.632,87.4572,0.44148,139.294,87.4219,0.610381,138.593,86.4335,0.744367,138.844,85.436,0.725238,139.857,85.4025,1.0084,140.664,85.6159,0.892691,139.027,85.5388,1.55213,141.13,84.507,1.13971,140.814,84.6555,1.72865,141.436,84.8233,2.45208,141.487,86.543,1.27552,138.318,92.6243,0.221134,137.018,92.5205,-0.316537,137.261,93.2121,-0.338453,137.409,93.2659,-0.501689,137.89,92.5028,-0.548215,137.804,93.0447,-0.401379,138.324,92.52,-0.350101,138.321,90.4991,4.51426,139.583,90.5355,5.00312,139.485,91.0119,4.28655,139.466,90.9874,4.58391,139.503,91.0176,4.97727,139.432,90.7518,5.4288,139.124,91.0851,5.24823,139.292,91.5609,5.43409,138.968,91.3481,5.25584,139.243,91.4016,4.98834,139.345,90.6281,5.67737,138.539,89.7601,5.7205,138.688,91.2911,5.51889,137.897,91.4581,5.66739,138.424,88.8237,5.7187,138.892,92.2894,5.39076,138.782,92.2785,5.5767,138.351,92.1898,5.46743,137.873,92.8183,5.27214,138.697,92.9731,5.34119,138.367,92.9423,4.97564,138.856,92.313,5.02623,139.043,91.7733,5.02719,139.169,92.0816,5.026,137.603,91.124,5.02903,137.625,92.8663,5.32461,137.988,92.9848,4.98896,137.868,92.2532,4.58641,139.079,91.7276,4.58476,139.228,91.3643,4.60341,139.4,91.2669,4.30475,139.392,83.7433,1.04633,141.002,84.1531,0.875147,140.568,83.4792,0.756901,141.219,82.8359,1.28452,141.692,83.6996,1.38814,141.341,84.4753,0.784275,139.862,84.7895,0.882578,139.927,92.0038,4.49246,137.666,92.9213,4.53649,137.872,93.315,4.96761,138.402,92.7052,4.18347,138.023,91.8614,-3.4146,137.369,91.6589,-3.88264,137.375,88.5888,8.73184,139.542,88.5545,9.06667,139.148,88.8817,8.9591,139.315,88.9345,8.73397,139.473,89.0453,8.9693,139.264,89.158,8.75392,139.378,89.0658,9.11541,139.04,89.2498,8.42385,139.446,89.0308,8.37631,139.563,89.2669,8.13253,139.417,89.109,8.08064,139.495,88.7193,8.25902,139.671,88.8734,7.79552,139.378,89.7019,7.93031,138.726,90.0494,8.21227,138.753,90.0118,8.2057,138.388,89.6575,7.99629,138.278,90.1733,8.58659,138.733,90.0382,8.50327,138.249,89.9215,8.27593,139.057,89.9352,8.57208,139.121,89.9442,8.85675,138.203,89.7926,9.11362,138.262,89.3993,9.14222,138.125,89.4642,8.76549,137.911,89.5674,8.32479,137.969,88.8251,9.09083,138.071,88.8479,8.64476,137.82,88.9069,9.25623,138.545,84.8048,-0.519945,138.347,84.0116,-0.180087,138.58,83.6084,-0.858434,138.715,84.4838,-1.18188,138.434,84.5646,0.74436,139.225,88.198,8.96316,138.116,88.2146,8.48542,137.878,88.3231,9.17359,138.604,75.8584,1.73465,138.565,74.8475,1.36744,139.374,75.6524,0.613948,138.641,76.2248,2.38301,138.613,86.3187,-2.49785,138.691,87.2591,-2.5488,139.379,78.256,0.904788,142.872,78.8165,1.78207,143.111,79.3242,2.89368,143.324,79.3961,2.27154,143.079,79.558,3.86636,143.343,79.6745,1.38662,142.712,80.0806,2.09318,142.789,80.3353,2.81925,142.957,80.557,1.03583,142.375,80.9305,1.81941,142.466,81.2701,2.64403,142.63,79.2297,0.637038,142.533,80.1864,0.331689,142.201,78.0822,0.308335,142.452,78.7218,0.000642449,142.099,79.6482,-0.481276,141.605,79.6946,5.75718,142.853,79.7004,4.95505,143.161,79.9983,4.3978,143.132,80.7665,5.0064,142.672,80.7655,4.34012,142.801,80.5694,3.64226,142.936,80.7658,5.69298,142.391,80.3229,7.91461,140.142,80.7668,7.80044,140.832,79.6655,7.79134,141.276,79.1753,7.9544,140.565,78.7897,7.59375,139.746,77.5879,7.53222,140.131,79.9726,7.58001,139.396,81.9718,7.83424,139.189,82.3295,7.98599,139.805,81.3643,7.93738,139.907,81.0316,7.67469,139.218,82.7358,7.86813,140.334,81.8021,7.82925,140.519,81.2176,7.43439,141.256,80.1554,7.3639,141.667,83.0891,7.57566,140.792,82.2365,7.51034,140.954,81.5974,6.97026,141.544,80.6192,6.89268,141.889,83.3348,7.04913,141.118,82.5283,7.01528,141.287,80.815,6.32528,142.108,81.738,6.35394,141.766,81.7386,5.67992,142.031,83.503,6.3062,141.239,82.6273,6.35076,141.495,83.3583,5.55466,141.617,82.5996,5.63389,141.789,80.022,6.27506,142.462,83.2568,8.04185,139.698,83.5869,7.94935,140.208,82.9443,7.93569,139.154,81.9162,7.24003,138.544,82.8624,7.46744,138.641,83.8888,7.59696,138.62,84.7348,7.68392,138.464,84.6618,8.20691,138.819,83.9084,8.07208,139.007,84.7548,8.37835,139.41,84.1069,8.21557,139.555,80.982,6.93724,138.548,84.9187,8.24332,139.996,84.3451,8.11254,140.103,85.3667,8.52163,139.258,85.3465,8.33576,138.657,85.4703,7.79645,138.344,85.4579,8.36688,139.867,86.1599,8.51369,139.744,86.0609,8.66599,139.095,86.0799,8.09734,140.236,85.5883,7.99299,140.362,85.1156,7.88959,140.489,84.5756,7.79087,140.59,85.3339,7.24877,140.681,84.7709,7.16239,140.817,78.5168,6.79898,139.018,77.2892,6.66019,139.35,79.8012,6.82502,138.714,78.4745,5.72019,138.655,79.8703,5.73897,138.384,77.2222,5.59116,138.988,77.2957,4.63169,138.907,78.5433,4.70557,138.635,76.9468,2.37804,138.298,76.6264,1.56259,138.047,77.641,1.37192,137.758,78.1087,2.26813,138.1,79.4988,1.94044,138.228,79.7806,2.8532,138.521,78.3749,3.05901,138.508,79.9269,4.66942,138.413,82.8507,4.29365,138.381,82.8342,5.1648,138.331,81.4484,5.73381,138.252,82.3105,6.35673,138.273,78.9167,1.00395,137.798,80.2505,0.586555,138.221,81.1842,1.51298,138.566,77.0093,0.48725,137.769,78.1077,-0.0559076,137.497,76.3767,0.863632,138.057,74.9334,0.173909,140.833,76.3596,-0.336872,141.456,75.694,-0.58027,140.483,76.0002,-1.05217,139.167,75.3847,-0.331347,139.467,76.3817,-1.18431,140.185,77.076,-0.911099,141.02,77.0181,-1.69658,139.788,76.6346,-1.60398,138.82,77.7233,-1.45098,140.543,77.2025,-2.02684,138.449,77.5372,-2.14236,139.315,77.8907,-2.54536,138.817,77.6365,-2.40364,138.05,78.2179,-1.97188,139.997,78.5091,-2.4412,139.428,78.1569,-2.97215,138.343,77.9884,-2.81068,137.656,78.7378,-2.86526,138.918,78.5854,-3.47959,137.923,78.4312,-3.25467,137.308,79.0668,-3.34879,138.466,79.0291,-3.97859,137.483,78.8819,-3.67345,136.908,79.4573,-3.88415,138.005,78.57,-2.83094,136.778,79.0415,-3.19601,136.472,79.329,-4.04506,136.389,79.5385,-3.5032,136.044,79.0296,-2.29378,136.512,79.4724,-2.70983,136.323,79.9746,-3.05697,136.043,79.4686,-4.49244,136.977,78.6739,-1.83966,136.747,78.1522,-2.41571,137.052,79.6986,-1.90676,136.857,79.4305,-1.43914,137.119,78.4438,-1.38075,137.039,77.8108,-1.97408,137.355,79.3152,-1.05309,137.403,80.0322,-2.40555,136.639,79.7991,-4.36423,135.812,80.0447,-3.77097,135.518,79.9372,-4.84512,136.366,79.9642,-4.88556,136.802,79.8042,-4.77623,137.023,80.4745,-4.97985,136.656,80.7383,-5.10115,136.35,80.3701,-5.04456,135.892,80.3143,-4.67164,135.374,80.2866,-4.87682,136.996,79.2498,-2.14688,139.751,79.3654,-2.53161,139.245,79.8571,-1.75426,139.625,79.1986,-1.6031,140.454,80.0716,-1.44607,139.978,79.8035,-2.06351,139.232,78.6049,-1.02748,141.108,79.816,-1.10064,140.899,81.7426,-0.7077,141.101,81.2904,-1.04465,139.956,80.5033,-1.08231,140.384,80.8265,-0.552396,141.368,77.4602,-1.48602,137.633,78.3021,-0.864184,137.283,76.9541,-0.92686,137.886,79.4041,-0.648894,137.658,79.9992,-1.14723,138.369,80.3603,-0.84222,138.701,79.9332,-1.471,138.043,80.4392,-0.336353,138.447,79.6263,-0.105808,137.86,81.6672,4.25701,142.44,81.5143,3.49235,142.584,82.5132,4.09954,142.137,83.3877,3.8852,141.813,83.2114,3.07358,142.131,82.3912,3.30179,142.322,83.0059,2.19998,142.116,82.1596,2.41203,142.356,83.3362,4.77758,141.832,82.5766,4.8852,142.044,81.7301,4.98345,142.303,84.0828,4.08369,141.42,84.092,4.73363,141.551,84.0825,5.42104,141.354,84.9264,5.30583,140.957,84.9688,4.65121,141.127,84.9684,3.95078,140.823,84.1821,6.54499,140.903,84.2455,6.24708,140.756,84.0975,5.94849,140.974,84.574,6.23024,140.363,84.8306,6.49827,140.474,84.8482,5.84899,140.463,85.4426,6.66349,140.282,84.9506,6.342,139.705,85.4155,6.50491,139.608,85.8715,5.63992,140.17,84.6872,3.54346,140.768,84.1858,3.6745,141.258,84.9694,3.0658,140.951,84.0664,3.35687,141.53,81.8245,1.53347,142.123,83.7988,1.9829,141.821,83.9629,2.75024,141.878,82.379,0.477688,141.822,81.4789,0.75242,142.069,83.2285,0.140496,141.522,82.0893,-0.157918,141.744,82.9951,-0.522883,141.439,84.1576,-0.219669,141.161,83.9679,-0.948794,141.037,82.7237,-0.996834,140.871,82.4948,-1.18951,140.126,82.6272,-0.400438,138.834,83.0581,0.625575,138.657,80.5195,-3.31645,135.625,81.0028,-3.17231,136.043,80.4598,-2.84244,136.384,80.8466,-2.90163,136.935,80.4275,-2.42209,137.283,81.3716,-3.33576,136.597,81.4813,-3.76336,137.077,80.9812,-3.25153,137.465,80.5154,-2.71032,137.863,80.7895,-3.81078,137.772,80.3197,-3.12331,138.167,81.2558,-4.34795,137.289,80.1185,-1.9144,137.663,80.1604,-2.17726,138.338,79.9991,-1.71311,138.841,81.1222,-3.72715,135.267,81.5742,-3.63125,135.719,80.6274,-4.13106,135.116,81.6048,-4.34331,135.134,81.9838,-4.27137,135.509,81.8706,-3.82865,136.265,82.2077,-4.37696,135.976,81.1656,-4.60069,134.99,81.8164,-4.93793,135.204,82.1427,-4.88605,135.475,81.4797,-4.97205,135.062,81.9062,-4.2204,136.695,82.2068,-4.62328,136.362,81.7221,-5.34127,135.445,82.0829,-5.30525,135.669,81.3098,-5.24789,135.25,81.1545,-5.35477,135.578,81.4285,-5.41466,135.833,80.8414,-4.9852,135.197,80.7929,-5.23486,135.67,82.3438,-4.87188,135.817,82.2928,-5.18055,135.858,82.3401,-4.90282,136.123,82.1897,-5.15637,136.178,81.9487,-4.94272,136.525,81.8298,-5.38359,136.086,81.5022,-5.18616,136.421,81.0601,-5.26981,136.112,81.6427,-4.65726,136.842,81.2073,-4.99004,136.693,80.938,-4.83347,136.99,80.9384,-4.48905,137.469,80.6886,-4.72326,137.277,80.47,-4.48769,137.566,80.7838,-4.3115,137.648,80.0642,-4.69369,137.318,79.7897,-4.35599,137.607,80.2578,-4.07184,137.853,79.9337,-3.52321,138.22,84.9163,5.79059,139.034,84.654,6.15494,139.24,83.9207,5.93077,138.658,84.63,6.41262,139.012,84.1545,6.94909,138.598,83.1833,6.71194,138.465,84.9733,7.06496,138.532,85.2512,6.65319,138.981,85.6832,7.21296,138.451,85.8733,6.86097,138.902,86.1626,7.94712,138.25,86.3453,7.40299,138.347,86.5139,7.07531,138.767,86.8458,8.12703,138.076,87.019,7.58239,138.174,87.2003,7.25782,138.594,86.6189,6.98946,139.329,87.3421,7.18255,139.146,85.9805,6.74046,139.489,86.049,8.46547,138.525,86.7679,8.64384,138.354,86.8264,8.86999,138.904,85.0775,5.99306,139.717,84.7628,6.21739,139.77,85.8963,5.82767,139.518,85.8525,5.66491,138.832,86.8619,5.49857,139.93,86.8765,5.73309,139.295,87.8548,5.68812,139.099,87.8969,5.38736,139.768,85.0431,1.53236,138.627,84.0277,1.67265,138.638,84.8544,0.94152,139.075,84.0296,0.886015,138.766,85.8209,7.39368,140.515,85.9881,6.88844,140.113,86.6316,7.18428,139.96,86.2817,7.57688,140.35,87.4351,7.41396,139.757,87.1441,7.55299,140.055,86.8608,7.46787,140.129,86.7085,7.76334,140.246,88.2103,7.57088,139.528,88.0689,7.35043,138.969,87.6493,7.98633,140.013,88.2354,8.1142,139.851,87.1528,7.90045,140.132,87.8923,7.44438,138.437,88.7173,7.54243,138.827,88.5358,7.63487,138.32,87.4759,8.51618,139.887,88.0688,8.67309,139.703,87.0031,8.32493,140.037,86.8053,8.53481,139.87,87.0046,8.76233,139.531,87.8224,8.9843,139.273,86.5496,8.18384,140.151,88.3517,7.97869,137.964,87.706,7.78209,138.043,87.5501,8.31193,137.948,89.1241,7.80633,138.256,88.9697,8.14565,137.902,89.2562,7.73203,138.742,87.5072,8.8158,138.206,87.6131,9.05682,138.721,89.3464,7.9767,139.211,89.666,8.11971,139.11,89.3996,8.42786,139.353,89.6167,8.48632,139.28,89.301,8.8178,139.292,89.5311,8.86601,139.222,86.5085,8.44472,139.942,85.7937,1.42002,138.541,87.9796,-2.8999,137.395,88.2666,5.19187,139.984,92.7602,0.78795,137.115,77.2986,0.0682327,142.198,77.933,-0.479684,141.639,83.8703,7.67259,140.679,84.0844,7.12096,140.957,79.5883,-2.96407,138.72,79.9696,-2.53802,138.683,80.1468,-1.39501,139.221,80.4732,-1.18509,139.486,81.1794,0.103596,141.95,77.1074,3.11043,138.686,82.4375,-1.01491,139.4,81.3075,-0.878587,139.288,81.329,-0.0929252,138.742,76.2778,-0.291589,138.234,74.7261,0.519892,139.927,82.9174,5.76088,138.355,81.2792,2.63936,138.575,81.3971,4.54628,138.338,81.9904,0.717489,138.651,82.8847,3.39614,138.49,82.8054,2.55391,138.593,81.3705,3.57833,138.463,79.9089,3.73921,138.526,78.5376,3.84789,138.67,77.2897,3.83758,138.877,82.7666,1.69551,138.658,76.4645,3.77641,139.075,74.0149,2.13171,139.865,74.1176,0.722942,141.095,73.9329,1.21672,140.4,2.92118,-11.6999,167.706,2.78673,-11.7495,167.292,2.4861,-12.1114,167.646,2.56604,-12.0745,168.13,7.66013,-3.52051,173.467,7.54099,-4.10162,173.398,7.57807,-3.92311,174.435,7.69967,-3.44354,174.223,8.28593,-2.24785,174.316,8.24669,-2.70185,174.421,8.73512,-2.04563,175.298,8.73747,-1.80896,174.889,7.99892,-3.10106,174.394,8.31315,-2.29171,175.395,8.14595,-0.905738,171.759,8.3758,-0.449759,171.714,8.05253,-0.906337,171.066,7.92787,-1.29683,171.238,8.5141,-0.656944,172.681,8.8402,-0.12762,172.732,8.74804,-0.583423,173.783,9.10404,-0.0459266,173.949,8.76789,0.330009,172.852,9.11615,0.398177,174.2,9.08347,-1.10735,175.093,9.12221,-1.05107,175.583,8.64192,-1.07968,175.722,8.66426,0.420726,174.242,8.32045,0.377422,172.927,7.84708,0.00729097,171.802,8.27748,-0.0641619,171.706,7.93509,-0.615648,170.863,7.52843,-0.569476,170.927,7.4802,-1.36584,170.177,7.21614,-1.40112,170.384,7.25397,-2.25752,169.806,7.48407,-2.06496,169.676,7.91113,-0.156433,172.79,7.54037,-0.398248,171.887,8.16564,-0.144958,173.812,7.79356,-2.68065,174.922,8.05342,-1.3359,175.166,7.28491,-0.818599,171.106,7.19904,-0.534772,171.896,7.10738,-0.816356,171.218,7.09993,-2.13845,169.847,7.0515,-0.838945,170.548,7.22677,-2.80654,169.838,7.44559,-2.7233,169.764,7.77985,-2.24804,169.698,7.72629,-1.63323,174.713,7.62729,-2.84816,174.729,7.37441,-3.11926,170.378,7.65265,-2.84065,170.225,7.98693,-2.36269,170.248,8.0535,-1.68023,170.567,7.89199,-1.45553,170.151,7.97089,-1.78876,170.952,7.9273,-2.29428,170.936,7.54656,-3.07494,171.388,7.38666,-3.43081,171.027,7.48716,-3.71878,171.719,7.6731,-3.26766,171.993,7.73152,-3.42378,172.707,7.55422,-3.96513,172.511,7.7907,-2.95245,172.875,7.82243,-3.05458,173.645,8.85004,-0.817111,174.523,9.17097,-0.418768,174.785,8.8891,-1.13811,174.805,9.23265,-0.123941,175.179,8.76916,-0.0822472,175.266,8.24569,-0.472613,174.67,7.72348,-0.778446,174.24,7.62987,-0.452192,173.503,7.43649,-0.375891,172.698,7.9418,-2.7334,173.728,8.05124,-2.30498,173.756,7.86003,-2.194,173.245,7.64928,-2.52698,172.845,7.74913,-2.94547,172.187,7.66964,-2.67041,171.678,7.53389,-2.98689,170.928,7.71501,-2.74503,170.931,6.78787,-1.05349,169.244,6.6252,0.121346,169.315,6.47222,-0.0325042,167.912,6.5153,-1.39765,167.785,7.69918,-2.55986,175.586,7.78122,-1.32593,175.4,7.18089,-0.0206282,171.842,7.07604,0.852832,171.978,6.84733,0.442503,170.65,7.68487,-0.405756,174.796,7.5448,0.0812639,173.907,7.37608,0.219448,172.913,4.89009,4.54408,167.749,5.19526,5.07083,166.252,5.97042,3.60378,166.274,5.61492,3.32353,167.79,6.06294,2.17832,167.851,6.30369,2.32297,166.33,6.41635,1.1825,166.405,6.32534,1.08514,167.913,3.78437,5.68874,167.742,3.95567,6.45475,166.31,2.49307,6.36339,167.732,2.52807,7.18102,166.304,6.4277,0.0903573,166.424,6.45931,-1.02527,166.23,1.25698,6.57887,167.737,1.25655,7.32027,166.289,7.37553,-4.71163,172.269,7.40485,-5.01423,173.37,7.30185,-4.32851,171.331,7.22251,-3.91003,170.544,7.14382,-3.44788,169.901,7.03697,-2.92041,169.445,6.90691,-2.14825,169.245,3.46962,-8.76321,183.461,4.66599,-7.87063,182.949,4.51467,-9.02531,181.907,3.3549,-9.99107,182.257,5.53903,-7.93664,181.467,5.66765,-7.00324,182.328,4.4467,-9.85553,180.824,3.291,-10.8581,181.066,5.49458,-8.65131,180.46,1.02812,-11.9647,181.204,1.04534,-11.1927,182.516,1.03603,-10.2613,183.701,4.43678,-10.4225,179.818,3.27809,-11.3995,180.013,5.47995,-9.21732,179.446,6.3591,-7.33069,180.033,6.34327,-7.8583,178.892,1.02045,-12.4198,180.081,2.1289,-11.5679,181.185,2.11476,-12.0619,180.084,2.16804,-10.7339,182.46,2.19307,-9.58761,183.743,6.32522,-6.81063,181.077,6.23859,-6.40093,181.814,7.14513,-6.13198,173.22,7.15261,-5.64571,171.916,6.85628,-6.63929,171.392,6.7432,-7.44614,172.866,7.11337,-5.12157,170.835,6.85777,-6.00432,170.244,7.0574,-4.57867,169.955,6.81154,-5.36605,169.278,6.97363,-3.97572,169.272,6.73497,-4.67367,168.497,6.83669,-3.29409,168.763,6.60236,-3.90943,167.924,6.27335,-8.43456,177.8,5.46199,-9.69483,178.515,6.13588,-9.07684,176.968,5.42776,-10.1257,177.68,4.45549,-10.8254,178.928,4.4819,-11.1479,178.088,3.30434,-11.7523,179.116,3.34406,-12.0165,178.272,2.12612,-12.3806,179.164,2.13924,-12.6012,178.318,1.02182,-12.7076,179.153,1.01627,-12.8846,178.315,-4.64157e-005,-12.7957,179.152,-4.56568e-005,-12.9566,178.317,6.59508,-8.17907,175.912,6.95938,-6.94268,176.623,7.00684,-6.35636,178.288,6.99938,-5.88593,179.638,6.90204,-5.51549,180.869,7.13162,-6.50425,174.743,6.77113,-7.67149,174.539,6.28845,-2.43862,166.812,6.40928,-3.09393,167.486,6.65614,-2.46949,168.371,6.34197,-2.07721,165.629,5.40942,-10.5245,176.862,6.013,-9.63056,176.246,4.52971,-11.4462,177.23,3.41236,-12.2469,177.404,5.86124,-10.0503,175.579,5.33484,-10.8286,176.093,1.03882,-12.9939,177.508,-4.55456e-005,-13.0436,177.521,2.18714,-12.7662,177.474,1.05233,-13.0257,176.712,2.2202,-12.8058,176.647,3.42928,-12.3486,176.556,4.50896,-11.6413,176.409,6.34437,-8.92748,175.394,6.11243,-9.46809,174.937,-4.54537e-005,-13.0819,176.76,6.44864,-8.55852,174.389,6.37698,-8.55229,173.369,6.16153,-9.20751,174.256,6.07257,-9.23918,173.579,6.11649,-8.94347,172.524,5.84868,-9.51857,172.977,6.35322,-8.25245,171.781,6.47937,-7.56218,170.724,6.47298,-6.90629,169.624,6.41193,-6.22029,168.599,6.33126,-5.50579,167.718,6.24141,-4.78246,167.041,6.12566,-4.05825,166.521,6.03194,-3.47531,165.843,6.08579,-3.10101,164.71,2.24683,-12.5835,170.579,2.00228,-12.7499,170.01,1.81033,-13.1437,170.281,1.95856,-13.0006,170.87,2.97224,-10.7738,164.874,3.23732,-10.6719,165.561,3.63723,-10.0789,165.4,3.37855,-10.1547,164.378,2.70429,-12.0103,168.697,2.10062,-12.497,168.497,2.20902,-12.4306,169.084,0.863888,-12.1058,164.368,0.990487,-12.0518,163.68,1.21316,-11.4381,162.321,1.17967,-10.7313,161.839,1.11765,-11.9308,163.047,3.81923,-10.3011,166.364,4.31029,-9.69588,166.545,4.17226,-9.2641,165.328,3.41758,-10.7438,166.284,2.92844,-11.0718,165.76,3.09556,-11.0618,166.27,2.55981,-11.0715,164.235,2.28911,-11.4532,164.735,2.68595,-11.1987,165.261,2.08158,-11.6825,165.172,2.45205,-11.4553,165.609,2.94885,-10.4972,163.576,4.85911,-8.92163,166.889,4.77719,-8.2861,165.644,4.73881,-7.89388,164.42,3.94025,-9.28812,163.641,2.43129,-12.3227,169.681,2.6953,-12.1859,170.286,3.23761,-11.7463,169.925,2.92946,-11.9066,169.294,2.9311,-12.0505,170.938,3.5473,-11.5717,170.652,4.35659,-10.7746,170.249,3.75779,-11.2384,169.403,4.72119,-10.1564,169.149,4.12122,-10.7348,168.63,3.36282,-11.4901,168.795,3.68055,-11.073,168.137,3.09971,-11.6251,168.228,3.37031,-11.262,167.66,3.13194,-11.3843,167.247,3.07988,-9.89141,162.844,4.85717,-9.59446,168.085,4.30225,-10.2406,167.661,3.84775,-10.6655,167.304,3.47995,-10.9535,167.0,3.17915,-11.1678,166.771,1.5724,-12.9882,169.437,1.38646,-13.4108,169.946,1.50319,-12.9769,168.763,0.786253,-13.3459,168.875,0.785567,-13.4381,169.367,-4.42706e-005,-13.6343,169.324,0.755757,-13.7491,169.832,2.05741,-12.7409,171.444,2.42417,-12.4203,171.19,1.7925,-13.1966,171.313,1.78152,-12.9982,171.715,2.68539,-11.3201,165.955,2.85125,-11.2738,166.291,2.94888,-11.3265,166.626,2.9389,-11.4816,166.955,2.0597,-12.5306,167.983,1.48587,-13.0006,168.246,0.793807,-13.3666,168.412,1.5599,-11.9113,164.734,1.73979,-11.741,164.174,1.96022,-11.4919,163.592,2.19969,-10.9514,162.882,2.23395,-10.2951,162.286,5.85967,-9.02751,171.118,5.9821,-8.45177,170.124,5.9867,-7.82705,169.049,5.92672,-7.14219,167.972,5.80432,-5.79318,166.189,5.85399,-6.4462,166.992,5.23296,-9.8382,170.641,5.3882,-9.33913,169.625,5.40539,-8.06774,167.405,5.44401,-8.75317,168.545,5.3386,-7.38251,166.304,5.31136,-6.8031,165.354,2.17684,-9.75443,161.767,3.16058,-9.30752,162.333,3.11723,-8.63562,161.53,4.0906,-8.49277,162.927,4.02353,-7.83597,162.17,4.78573,-7.40713,163.606,4.70295,-6.76062,162.892,5.30368,-6.26425,164.604,5.24022,-5.67049,163.859,5.75822,-5.17701,165.539,5.69496,-4.60272,164.819,1.09247,-10.1664,161.422,0.992453,-9.59065,160.734,2.07137,-9.14907,160.979,5.72455,-4.11178,163.731,3.79034,-7.18053,161.399,2.94008,-7.93162,160.749,4.53118,-6.07897,162.072,5.21378,-5.08031,162.842,1.77754,-13.472,170.431,1.71277,-13.8057,170.541,1.74062,-13.7093,170.891,1.847,-13.3805,170.815,1.48044,-14.1507,170.661,1.4804,-14.0521,171.021,1.12743,-14.5097,170.761,1.11568,-14.4002,171.148,1.67764,-13.5936,171.235,1.39819,-13.905,171.398,0.677179,-15.0047,170.757,0.670537,-14.9291,171.293,1.29189,-13.7165,171.757,1.06473,-14.2326,171.55,1.01474,-14.0283,171.941,0.64838,-14.7362,171.751,0.637657,-14.5086,172.172,1.57297,-13.4358,171.558,1.80695,-13.3672,171.111,0.637054,-14.2918,172.599,1.00904,-13.8327,172.353,1.25249,-13.5175,172.153,1.51487,-13.2495,171.949,1.57669,-13.6035,170.157,1.5787,-13.8799,170.281,0.648411,-14.8514,170.333,0.478223,-14.7703,170.144,1.3916,-14.2007,170.403,1.08444,-14.5373,170.482,0.430851,-14.4897,170.074,0.491747,-14.1716,169.989,-4.40526e-005,-14.2761,169.843,0.771535,-14.6928,170.327,0.6143,-14.6504,170.228,1.01656,-14.4959,170.376,1.37118,-13.6942,170.057,1.38921,-13.9051,170.159,0.646586,-14.1205,170.088,0.864721,-13.8192,170.016,1.17478,-13.6437,169.999,1.24955,-14.1959,170.284,0.575459,-14.4241,170.167,0.710426,-14.4056,170.242,0.805438,-14.1098,170.168,0.678406,-14.5834,170.271,0.769041,-14.6086,170.325,0.899183,-14.4456,170.324,1.06369,-14.1624,170.233,1.1908,-13.8859,170.122,1.24333,-13.7318,170.048,1.13501,-13.7116,170.03,0.976727,-13.8451,170.087,5.26872,-10.5644,174.847,4.87783,-11.0011,175.192,5.12223,-10.9668,175.521,5.58666,-10.3591,175.101,4.17313,-11.5175,175.448,4.35757,-11.627,175.791,5.29969,-10.2943,173.584,5.57565,-9.96626,173.299,5.23468,-10.3133,172.948,4.9878,-10.5651,173.322,0.760371,-13.011,175.197,0.687665,-13.1521,174.732,4.1899,-11.137,172.556,4.33509,-11.0318,172.033,3.68386,-11.4991,172.042,3.56466,-11.5017,172.545,5.46718,-9.97291,172.506,3.34592,-12.2114,175.891,3.21763,-11.9409,175.507,1.01884,-12.9332,175.82,2.97827,-11.7715,172.656,2.83006,-11.6733,173.085,3.39492,-11.4951,172.981,3.07881,-11.8629,172.173,2.57597,-12.1281,172.346,2.51204,-11.9689,172.81,4.01276,-11.2227,172.994,2.09471,-11.9331,173.366,2.06852,-11.7281,173.698,2.33204,-11.6503,173.59,2.39884,-11.8039,173.224,4.76363,-10.7242,172.694,4.95168,-10.5027,172.187,4.55665,-10.8948,173.118,2.22346,-12.6284,175.925,2.27398,-12.2282,175.433,3.10116,-11.7091,175.32,2.27082,-11.808,175.169,4.03836,-11.4236,175.269,4.69771,-10.9775,175.004,5.01459,-10.6486,174.734,5.0429,-10.5103,173.844,4.7686,-10.7407,173.648,4.3779,-11.0329,173.484,3.8647,-11.3121,173.382,3.27136,-11.5027,173.382,2.72515,-11.5941,173.475,1.73984,-11.9507,174.923,1.53733,-12.4399,175.242,5.67782,-9.54255,171.92,5.09951,-10.2162,171.523,4.40258,-10.9044,171.341,3.69355,-11.5034,171.411,2.54359,-12.2725,171.801,3.06668,-11.9455,171.594,1.56023,-12.7927,172.87,1.53374,-13.042,172.413,1.27622,-13.3093,172.6,1.29521,-13.0634,173.041,0.636684,-14.0793,173.043,-4.25409e-005,-14.3524,173.19,0.622482,-13.8519,173.486,5.80542,-9.91848,174.646,5.47377,-10.2529,174.526,5.18973,-10.4371,174.499,1.30169,-12.7675,173.448,1.5628,-12.4999,173.289,1.32162,-12.4631,173.831,1.56991,-12.2146,173.672,1.42033,-12.1366,174.23,1.63415,-11.9436,173.978,2.17973,-12.3522,172.519,2.15626,-12.141,172.961,1.49785,-12.0632,174.626,1.23373,-12.5285,174.843,1.12193,-12.6283,174.434,1.04203,-13.3928,173.233,1.04866,-13.1126,173.649,1.03384,-13.63,172.794,1.06901,-12.838,174.044,0.641807,-13.3563,174.322,0.621832,-13.5997,173.912,1.8198,-12.7942,172.215,1.85578,-12.5655,172.696,2.13718,-12.5469,172.008,1.85146,-12.3079,173.13,1.82897,-12.0606,173.529,1.84486,-11.8226,173.827,5.85848,-9.71957,174.186,5.77862,-9.75151,173.724,5.55066,-10.1058,174.203,5.48926,-10.1298,173.883,5.26141,-10.3463,174.27,5.20995,-10.3754,174.052,3.0446,-11.5183,173.992,3.15261,-11.5303,173.725,2.59057,-11.5373,173.823,2.48111,-11.4563,174.108,2.23219,-11.4964,173.923,2.13933,-11.3065,174.214,2.01728,-11.5039,173.996,1.95084,-11.2697,174.256,1.84581,-11.5488,174.074,1.83587,-11.2854,174.278,1.74595,-11.3085,174.326,1.70191,-11.6123,174.185,1.61398,-11.6653,174.356,1.69495,-11.3178,174.415,1.65743,-11.6412,174.572,1.72271,-11.3015,174.524,1.83118,-11.5637,174.782,1.8837,-11.2974,174.652,2.23504,-11.5051,175.016,2.28818,-11.4037,174.831,3.0169,-11.5902,175.005,3.02856,-11.5785,175.197,3.94047,-11.3927,175.146,4.56075,-10.9478,174.884,4.45954,-10.9818,174.771,3.86456,-11.449,174.974,4.82633,-10.6656,174.673,4.68926,-10.686,174.625,4.95694,-10.5207,174.505,4.77595,-10.565,174.522,5.00471,-10.4734,174.351,4.79801,-10.5432,174.431,4.95915,-10.5167,174.213,4.75872,-10.6006,174.355,4.65785,-10.7285,174.277,4.82717,-10.6479,174.081,4.60344,-10.8651,173.938,4.48282,-10.9291,174.175,4.2534,-11.1416,173.8,4.17688,-11.1909,174.056,3.75275,-11.3941,173.713,3.67194,-11.4244,173.972,4.38606,-10.9286,174.301,4.5223,-10.752,174.386,4.58081,-10.7174,174.618,4.37754,-11.0023,174.717,3.81265,-11.4336,174.867,2.34119,-11.3449,174.712,1.98725,-11.2072,174.552,1.86371,-11.1968,174.465,1.83635,-11.2134,174.417,1.8575,-11.2154,174.379,2.00565,-11.1703,174.362,2.17545,-11.1797,174.332,2.45694,-11.3693,174.238,1.87105,-11.1703,174.411,1.88317,-11.1755,174.394,1.90401,-11.1484,174.436,3.00709,-11.552,174.873,2.95426,-11.4372,174.132,3.61292,-11.3735,174.108,4.60382,-10.6354,174.446,2.36462,-11.1813,174.66,2.026,-11.1444,174.501,3.01452,-11.3879,174.86,3.79118,-11.2688,174.875,4.32227,-10.9151,174.738,4.50693,-10.6833,174.646,4.4135,-10.7052,174.403,4.50032,-10.6099,174.479,4.28812,-10.8473,174.302,2.96232,-11.2679,174.126,3.59554,-11.2306,174.102,2.50867,-11.1694,174.241,2.24808,-11.0807,174.427,2.03298,-11.1383,174.427,4.12678,-11.1636,174.195,4.06341,-11.0436,174.188,4.64027,-10.5979,174.555,4.55635,-10.584,174.59,1.91208,-11.1974,174.364,1.9237,-11.1591,174.4,4.64383,-10.5788,174.496,4.5505,-10.5649,174.535,2.41385,-10.8581,174.398,2.61432,-10.8983,174.169,2.54915,-10.9031,174.69,3.0398,-10.9504,174.877,3.72111,-10.8083,174.918,4.21743,-10.6376,174.795,4.42825,-10.532,174.675,4.50551,-10.4857,174.603,4.51297,-10.4757,174.545,4.44278,-10.4917,174.474,4.31231,-10.537,174.368,4.16678,-10.6233,174.242,3.96233,-10.7523,174.111,3.59743,-10.8963,174.015,3.06685,-10.9455,174.033,2.71018,-10.4787,174.561,2.67917,-10.504,174.239,3.04463,-10.3811,174.63,3.54788,-10.3028,174.663,3.99307,-10.2992,174.631,4.25999,-10.3251,174.56,4.40122,-10.347,174.527,4.46793,-10.3764,174.523,4.41319,-10.3722,174.465,4.28333,-10.3468,174.384,4.11037,-10.3442,174.3,3.86866,-10.3437,174.214,3.5282,-10.3551,174.141,3.09433,-10.3858,174.137,6.35329,3.89805,179.958,7.01735,2.81396,178.796,7.12818,1.4459,180.424,6.48438,2.25394,181.798,5.31768,5.01056,181.07,5.48455,2.98884,183.066,7.15011,-0.233649,181.542,6.50058,0.223134,182.999,5.51545,0.507445,184.291,3.90073,5.96591,182.066,4.09639,3.64194,184.225,4.16007,0.747008,185.396,4.34656,6.08545,173.357,5.36884,5.05896,173.025,5.7715,5.21485,175.326,4.75696,6.28835,175.884,6.10891,3.91938,172.744,6.49532,4.02445,174.773,3.37648,7.20862,176.295,2.9982,6.93308,173.549,7.10713,-2.02088,182.06,6.46087,-1.87154,183.466,5.45632,-1.94541,184.706,4.10268,-2.08931,185.71,2.293,-2.22238,186.508,2.28477,0.966121,186.277,2.19792,4.12472,185.143,2.07833,6.57361,182.9,1.72878,7.80746,176.555,1.53225,7.43919,173.695,7.28833,-3.99225,180.748,7.49322,-2.3803,180.541,7.67013,-2.81651,179.029,7.42717,-4.33389,179.336,7.54556,-0.817276,180.01,7.7491,-1.41396,178.518,7.4996,0.635124,179.032,7.69563,-0.109902,177.71,7.38364,1.82732,177.653,7.56349,0.958467,176.582,7.15151,1.90681,173.73,6.91621,2.9062,174.236,6.56641,2.81897,172.483,6.85662,1.80156,172.222,7.30782,1.0217,173.281,7.65799,0.211082,175.631,7.78215,-0.768331,176.491,7.79445,-2.00138,177.037,7.70561,-3.30184,177.49,7.45808,-4.76525,177.861,6.38872,1.21755,169.358,6.06177,2.28447,169.349,5.57147,3.3734,169.318,4.84262,4.49133,169.288,3.80545,5.51354,169.285,2.56215,6.2198,169.319,6.92532,-3.80123,182.111,6.27677,-3.8984,183.357,5.22303,-4.25463,184.463,3.87687,-4.76465,185.331,2.16789,-5.27555,186.006,1.27619,6.56393,169.321,-3.21888e-005,-2.32403,186.852,1.92368,7.71851,179.749,3.62869,7.10354,179.224,5.04105,6.1163,178.545,6.10875,4.89531,177.719,6.80689,3.68336,176.849,7.1933,2.59649,176.004,7.38755,1.64223,175.217,7.5002,0.812114,174.522,6.58211,1.49231,170.761,6.25003,2.52764,170.847,5.76265,3.60177,170.907,5.02034,4.70968,170.981,3.98207,5.72993,171.102,2.72429,6.50225,171.216,1.3786,6.93882,171.274,-2.38816e-005,4.28721,185.458,7.65063,-3.77159,175.857,7.44885,-5.15409,176.247,7.42756,-5.1848,174.672,6.5799,-5.36356,181.966,5.95413,-5.66515,182.942,4.90907,-6.28449,183.833,3.61827,-7.04884,184.53,1.90916,-7.96586,185.005,0.788255,-12.2471,165.04,2.51004,-11.4698,166.097,2.67513,-11.4049,166.324,2.28172,-11.6163,165.828,1.93608,-11.8381,165.532,1.44292,-12.0693,165.269,0.653958,-12.2036,165.936,0.690699,-12.3399,165.799,1.28867,-12.1412,165.916,1.22424,-11.9835,166.033,1.75704,-11.9084,166.034,1.68921,-11.7742,166.1,2.11083,-11.6726,166.146,2.05445,-11.579,166.154,2.2643,-11.4718,166.256,2.30622,-11.5306,166.251,2.40771,-11.4041,166.375,2.44997,-11.457,166.375,2.20945,-11.3501,166.245,2.36122,-11.2914,166.365,1.986,-11.418,166.13,1.62742,-11.5366,166.046,1.17502,-11.7229,165.991,0.622328,-11.9597,165.956,-3.96547e-005,-12.0475,165.919,2.54503,-11.4645,166.354,2.39266,-11.5372,166.198,2.19154,-11.6881,166.04,1.84952,-11.9314,165.803,1.37508,-12.1808,165.605,0.744647,-12.385,165.461,2.1843,-10.8649,166.108,2.32074,-10.8493,166.304,1.97346,-10.9121,165.904,1.64183,-11.0361,165.731,1.1797,-11.2363,165.646,0.617055,-11.5067,165.679,2.67149,-11.7803,167.016,2.42154,-12.1161,167.283,2.78085,-11.43,166.549,2.78721,-11.5517,166.778,2.03185,-12.5266,167.569,1.46745,-12.996,167.81,0.792121,-13.3841,167.964,2.34776,-12.0806,167.057,2.27427,-12.0089,166.942,1.91874,-12.3612,167.126,1.98452,-12.4684,167.279,1.41541,-12.9125,167.463,1.33911,-12.7306,167.3,0.698852,-13.0653,167.436,0.753492,-13.2853,167.601,1.87962,-12.2815,167.098,2.22673,-11.9307,166.918,0.677089,-12.9056,167.425,1.30087,-12.5893,167.292,0.670731,-12.7338,167.485,1.26959,-12.4185,167.353,2.19614,-11.8507,166.932,1.82229,-12.1479,167.137,2.57275,-11.7794,166.855,2.67239,-11.5782,166.682,2.49535,-11.7382,166.776,2.58842,-11.5556,166.636,2.45017,-11.6743,166.76,2.54436,-11.5004,166.625,2.42525,-11.6037,166.764,2.51484,-11.43,166.622,2.6532,-11.4753,166.516,2.55888,-11.4632,166.504,2.5136,-11.4127,166.499,2.47683,-11.3276,166.492,0.687323,-12.314,167.82,1.26099,-12.001,167.694,1.75375,-11.7068,167.442,2.15923,-11.532,167.105,2.40137,-11.3087,166.845,2.47297,-11.1042,166.647,2.42143,-10.9219,166.483,0.952483,-9.33688,184.489,5.48673,5.70302,165.058,6.35271,4.05428,165.03,6.63624,2.62666,165.005,6.57717,1.39503,164.978,1.3235,8.24,164.834,4.20917,7.16281,165.093,2.7252,7.97697,164.997,6.49319,0.247367,164.934,6.5468,-0.856083,164.717,6.45465,-1.90529,164.184,6.17819,-2.88651,163.395,5.72885,-3.81153,162.575,3.60076,-6.55348,160.557,2.78551,-7.29207,160.062,4.41548,-5.6268,161.184,5.14358,-4.7128,161.842,6.78539,4.36635,164.0,5.85942,6.10986,164.072,6.4884,6.39117,163.131,7.4619,4.49032,163.017,7.0165,2.79116,163.862,7.55958,2.73893,162.71,7.0852,1.37522,162.335,6.75826,1.48366,163.655,1.57319,9.30198,162.701,1.44821,8.80039,163.697,0.00153915,9.39663,162.522,4.53937,7.64103,164.127,5.02905,8.06598,163.207,2.99033,8.51607,163.984,3.30283,9.0301,163.06,6.601,-0.805457,163.217,6.59894,0.263443,163.478,6.77688,0.209312,162.074,6.63625,-0.824995,161.813,6.47383,-1.83467,162.756,6.4525,-1.82557,161.4,6.1785,-2.79102,162.13,6.12389,-2.75676,160.885,5.67577,-3.7064,161.459,5.67193,-3.62472,160.333,2.81281,-6.84693,159.356,3.6294,-6.14845,159.741,3.76403,-5.87419,158.632,2.80184,-6.52529,158.193,4.38582,-5.35019,160.252,4.48486,-5.18584,159.207,5.05723,-4.54296,160.825,5.1173,-4.43424,159.765,8.44491,4.58902,161.832,7.38041,6.71957,162.092,8.44909,7.2634,160.92,9.5902,4.87725,160.462,8.4458,2.67948,161.284,9.61768,2.85196,159.75,9.11511,1.28263,159.239,7.92989,1.2192,160.835,1.98871,10.6955,160.425,1.74644,9.92134,161.645,5.66695,8.55114,162.174,6.45421,9.2567,160.995,3.68331,9.62388,162.025,4.17714,10.4199,160.827,7.30067,0.0858652,160.583,8.28604,0.00388041,158.978,7.56475,-1.09675,158.822,6.82005,-0.888375,160.348,6.49963,-1.81555,159.984,7.06061,-1.99228,158.532,6.20047,-2.68472,159.534,6.65124,-2.75732,158.114,5.834,-3.50115,159.032,6.21919,-3.52632,157.633,2.65332,-6.50021,156.899,3.79585,-5.81309,157.358,3.75777,-5.82709,155.957,2.488,-6.48424,155.578,4.67858,-5.0775,157.931,4.84402,-5.08762,156.492,5.33391,-4.30286,158.501,5.64119,-4.30562,157.081,1.32469,-7.04077,156.615,-0.0178975,-7.25288,156.498,-0.0411262,-7.37892,157.569,1.41358,-7.18991,157.992,1.19814,-6.96235,155.38,9.65264,8.00835,159.78,10.7904,5.35474,159.269,10.7544,3.20469,158.455,10.0498,1.57988,157.774,7.36911,10.1907,159.592,4.71597,11.3952,159.291,9.00027,0.18474,157.428,8.10618,-1.05355,157.27,2.24081,11.588,158.887,7.4714,-2.04715,157.042,6.94331,-2.85703,156.708,6.38075,-3.64685,156.291,3.54644,-5.81948,154.705,2.26158,-6.38504,154.393,4.71477,-5.13595,155.186,5.65914,-4.41952,155.759,1.0455,-6.75165,154.258,1.9785,-8.51489,160.314,1.90147,-7.8719,159.79,1.90117,-7.41442,159.169,7.78704,-1.99865,171.356,7.74137,-1.68938,172.011,8.01481,-1.48414,172.86,8.27483,-1.44971,173.717,8.4608,-1.50901,174.354,8.68619,-1.49222,174.706,0.953493,-8.9477,160.154,-0.0356496,-9.16887,160.12,0.933067,-8.27581,159.678,0.92814,-7.81404,159.1,0.780232,-7.62353,158.508,2.45076,-10.4103,166.518,2.55068,-10.6025,166.75,0.692216,-11.7045,168.277,1.33897,-11.4923,168.163,2.36392,-11.1359,167.437,1.84838,-11.2484,167.826,2.58844,-10.8967,167.025,1.7427,-10.4178,165.411,2.10782,-10.3302,165.679,0.607686,-10.881,165.275,1.21597,-10.6083,165.254,2.29097,-10.3183,165.986,2.36804,-10.3246,166.268,2.5092,-9.79304,166.587,2.61654,-9.94446,166.867,0.729256,-10.8203,168.717,1.39966,-10.6152,168.478,2.56786,-10.3242,167.869,1.98264,-10.4694,168.197,2.77426,-10.1126,167.209,1.782,-9.57207,165.366,2.18986,-9.57032,165.661,0.584678,-9.82537,165.088,1.21516,-9.64357,165.136,2.40607,-9.61575,165.983,2.45717,-9.68763,166.297,2.53976,-9.18818,166.665,2.60928,-9.30132,166.941,2.04749,-9.47487,168.203,1.42512,-9.53682,168.511,2.5566,-9.41042,167.781,2.67883,-9.36009,167.264,1.87798,-8.69102,165.431,2.31312,-8.81098,165.769,0.577479,-8.7225,165.255,1.22498,-8.67296,165.279,2.46938,-8.96773,166.12,2.50757,-9.09425,166.392,2.54779,-8.72757,166.501,2.57048,-8.74096,166.734,1.98168,-8.47126,167.849,1.35142,-8.43817,168.09,2.48003,-8.5982,167.494,2.64907,-8.74938,167.138,1.90465,-7.86636,165.96,2.41944,-8.19935,166.128,0.581877,-7.77907,165.936,1.21578,-7.78099,165.923,2.54736,-8.52403,166.375,2.00842,-7.709,167.197,1.2629,-7.6325,167.288,2.50756,-8.13381,166.944,2.58597,-8.46179,166.808,2.61819,-8.86741,166.945,0.678606,-8.42585,168.276,0.620373,-7.64064,167.34,0.731207,-9.61904,168.787,-3.94179e-005,-9.65118,168.829,7.23395,13.5622,14.2368,5.90093,11.9908,14.1628,8.88426,13.995,12.7146,10.6917,13.2377,12.8057,7.10583,13.4629,12.6273,5.81868,11.8566,12.4018,12.8963,10.4657,14.247,12.7205,10.3288,12.5011,12.0689,11.9763,14.2969,11.9992,11.6418,12.7602,12.6838,10.5086,10.5712,11.7407,5.05635,12.5713,11.0763,4.10838,12.076,10.1064,3.53191,12.4357,10.3156,3.82472,13.2918,8.55995,3.39361,12.5021,8.51276,3.57544,13.4248,7.00444,4.31329,12.064,7.52558,7.58242,0.877733,8.04968,5.29929,1.05006,8.66669,1.81245,0.811312,11.8677,-2.97528,0.50307,12.8927,-1.62886,50.7901,7.95474,-1.43739,50.9523,13.0681,-3.32441,0.483185,13.7018,-2.88727,0.53354,10.5546,-4.62251,0.409716,11.3595,-4.27673,0.414845,-21.382,3.44226,141.973,-21.1656,6.02316,141.316,-22.4492,5.65762,140.96,-22.5599,2.9865,141.669,-47.7338,7.5304,137.618,-47.587,10.016,138.736,-51.3019,9.80888,138.376,-51.2067,7.07405,137.189,-44.9694,8.23047,138.173,-44.7561,10.3998,139.416,-41.1988,4.27046,148.643,-38.5072,4.0452,149.033,-38.496,2.16687,147.194,-41.1812,2.65843,146.917,-35.3869,1.53319,147.533,-35.4801,3.66784,149.56,-32.454,3.17343,150.015,-32.2233,0.9784,147.738,-40.6945,6.66131,149.398,-37.8608,6.67031,149.779,-34.9195,6.56643,150.314,-32.1365,6.30428,150.799,-34.9524,0.202916,145.004,-31.6261,-0.18269,145.064,-42.825,2.87091,146.705,-42.6907,2.15862,144.848,-43.9747,2.3818,144.937,-43.9133,2.80422,146.503,-34.1428,0.339984,142.122,-37.7125,0.948943,142.338,-38.2372,0.984437,144.94,-33.2,2.30714,139.943,-36.9554,2.58235,140.059,-32.406,4.73491,138.302,-36.2549,4.89071,138.3,-51.3248,4.21848,137.32,-48.1769,4.59884,137.794,-31.6789,7.62272,137.359,-30.9871,10.5263,138.242,-34.6188,10.2853,138.12,-35.5274,7.526,137.28,-54.8467,11.2959,140.882,-57.9183,11.0992,141.123,-57.6624,9.68438,138.445,-54.5544,9.63496,138.328,-57.5489,7.14276,136.902,-54.4488,6.94007,136.935,-61.2879,9.67859,139.058,-61.0582,7.45948,137.31,-61.5253,10.6093,141.797,-57.6266,4.42949,136.786,-54.5289,4.13371,136.912,-60.9137,4.89467,137.009,-60.877,2.7282,138.02,-57.7722,2.33459,138.153,-60.9279,1.46141,139.89,-57.9334,1.27072,140.445,-54.7437,2.08796,138.499,-55.0127,1.20955,141.105,-64.0989,3.11102,138.021,-64.2809,5.21348,137.568,-64.0555,1.65226,139.366,-64.5827,7.42967,138.184,-64.9284,9.19,139.944,-68.5449,8.44647,140.59,-68.1176,7.13435,138.931,-67.7321,5.32854,138.111,-58.2058,10.8455,144.078,-61.7102,10.0101,144.348,-65.3198,8.76853,144.433,-65.1992,9.66512,142.432,-55.2056,11.2679,143.936,-61.8195,8.57701,146.234,-65.3052,7.24333,145.729,-68.8074,5.86993,144.79,-68.9146,7.34951,144.047,-68.8512,8.51276,142.681,-49.0783,1.78525,142.441,-48.6434,2.52682,139.589,-51.6324,2.15733,139.064,-52.0122,1.35752,141.842,-46.9307,2.29192,145.436,-46.7362,2.27669,142.65,-49.3492,1.94104,145.468,-52.3604,1.5975,144.953,-55.3047,1.46853,144.079,-52.623,2.95642,147.789,-49.3098,3.36956,148.244,-55.597,2.78087,146.864,-55.5195,10.0799,146.587,-58.4508,9.56092,146.436,-55.7428,8.04072,148.272,-58.5591,7.52116,147.732,-61.745,6.60741,147.015,-52.3011,10.4894,146.716,-52.583,8.43601,148.675,-48.7728,8.67878,148.537,-45.8287,8.7278,148.272,-46.2174,6.27376,148.983,-49.1262,6.13645,149.22,-52.7323,5.75762,149.122,-46.6742,3.53514,148.038,-55.777,5.44267,148.439,-58.4846,5.0475,147.568,-58.3248,2.61581,145.849,-61.2779,2.2397,144.733,-61.5183,4.32182,146.466,-37.2779,12.1016,145.41,-40.6454,12.0832,145.04,-40.4288,11.9693,142.603,-36.9916,12.0677,142.96,-34.0059,12.0477,145.499,-33.5677,12.0932,143.093,-38.2403,11.051,147.433,-41.2568,10.7813,146.952,-44.7911,11.7706,141.577,-43.0392,10.6084,139.98,-42.8837,11.9092,142.082,-45.0468,12.02,144.251,-43.0685,12.0597,144.628,-43.4347,10.691,146.697,-45.4242,10.7504,146.65,-35.1264,11.2812,147.747,-48.3867,10.7622,146.662,-40.7302,1.73952,142.681,-40.3053,3.04039,140.599,-42.1795,3.10281,141.025,-42.4692,2.18719,142.841,-39.8,5.05405,138.924,-42.0554,4.60383,139.475,-43.3837,2.93299,141.339,-44.0959,3.61701,140.157,-45.0272,2.51862,142.719,-43.7711,2.4084,142.889,-64.7738,3.36833,145.249,-68.1221,2.44492,144.067,-68.5202,4.20589,144.847,-65.1035,5.3996,146.03,-58.1197,1.43983,143.189,-61.0656,1.31535,142.313,-67.453,3.46203,138.071,-37.4191,11.305,140.502,-38.3346,9.73011,138.496,-33.8746,11.7613,140.5,-30.5892,12.217,140.619,-40.9894,1.71059,144.884,-32.2825,11.5505,147.997,-33.715,9.35405,149.639,-36.5873,9.31921,149.25,-67.316,1.88827,138.87,-67.397,1.04643,140.514,-64.1736,1.1165,141.413,-67.7076,1.24922,142.471,-64.4367,1.70484,143.591,-42.9785,4.17583,148.355,-42.7817,6.57293,149.119,-42.104,8.96707,148.431,-39.6201,9.16886,148.827,-44.3752,6.39249,148.968,-43.9009,8.79288,148.219,-41.4787,9.07387,138.896,-40.7649,10.7743,140.467,-43.3951,8.6695,138.635,-39.2335,7.27402,138.058,-41.9821,6.75618,138.452,-30.5088,12.6628,143.133,-28.0971,13.2462,143.304,-28.6454,12.9764,145.803,-31.0678,12.4919,145.564,-29.8133,11.7243,148.222,-23.9484,0.224607,145.27,-24.9333,0.843358,147.785,-23.4217,0.418823,148.055,-22.6339,0.286492,144.916,-21.5285,1.6024,142.957,-22.8812,1.23416,143.031,-25.657,0.0553898,145.122,-26.5941,0.847775,147.523,-29.5754,6.0563,150.889,-29.5399,2.88029,149.793,-30.7161,0.246359,142.285,-28.4251,-0.127195,145.031,-27.5329,0.385809,142.552,-24.5003,2.60268,141.443,-24.8281,0.792316,142.961,-19.1475,13.1129,143.787,-19.5441,13.0127,145.913,-21.6063,12.836,146.005,-20.8457,13.2488,143.793,-19.9332,8.74151,140.729,-21.3728,8.49073,140.349,-19.5613,10.9153,141.09,-19.3301,12.4087,142.18,-20.943,12.4597,141.917,-21.1643,10.7977,140.716,-28.021,12.6164,140.85,-28.0787,10.6411,138.749,-25.594,10.7797,139.492,-25.5606,12.784,141.143,-28.4742,7.72481,137.866,-25.8353,7.96821,138.834,-29.1396,4.65922,138.614,-26.381,4.76346,139.336,-26.8325,2.14223,140.673,-29.8124,2.18576,140.194,-25.7177,2.97931,150.202,-27.1944,3.00479,149.628,-31.1711,9.29949,149.917,-28.7844,9.2867,150.017,-27.3253,11.7513,148.283,-26.1151,13.1122,146.013,-25.5915,13.5145,143.516,-48.0321,11.8198,143.933,-47.6909,11.5536,141.073,-51.5853,11.5042,140.878,-51.9735,11.5782,143.906,-44.7491,3.54269,147.776,-45.6363,5.33091,138.27,-24.43,2.81246,151.173,-25.7509,6.22691,151.461,-24.3321,6.2936,152.387,-24.6462,9.38531,150.497,-23.0392,9.69149,151.225,-23.0611,11.5477,148.422,-21.4869,11.8985,148.842,-24.9386,11.5579,148.318,-23.5751,12.9526,146.027,-29.1573,0.783214,147.586,-27.2725,6.09991,150.882,-22.9996,12.5769,141.632,-23.4548,10.7544,140.37,-23.8233,8.2541,140.025,-24.354,5.25544,140.483,-26.4263,9.2289,150.086,-22.8897,13.4085,143.67,-45.2376,2.47136,145.219,-46.2148,3.14552,140.009,-43.7844,6.00933,138.453,-70.5572,1.08789,141.599,-70.1794,1.24294,139.885,-71.886,1.41069,139.484,-72.4015,0.99846,141.062,-70.0992,2.28174,138.694,-71.8074,2.54067,138.6,-73.0202,1.7887,142.643,-71.0219,2.01094,143.168,-70.8827,6.88345,139.373,-70.5119,5.45034,138.531,-71.3212,7.87854,140.777,-72.9752,5.69975,138.661,-72.2878,5.59412,138.662,-72.6486,6.82383,139.486,-73.3934,6.85296,139.474,-71.9785,4.058,138.317,-70.2433,3.81932,138.235,-71.6908,7.92891,142.561,-71.7989,6.69259,143.649,-73.8673,6.3787,143.283,-73.6496,7.56907,142.322,-74.7972,6.27118,143.012,-73.7793,4.86754,143.665,-74.7779,4.74585,143.376,-71.7,5.18556,144.126,-71.4168,3.55022,144.023,-73.474,3.23141,143.512,-73.8418,1.6573,142.404,-74.444,3.08519,143.234,-72.2896,2.63434,138.527,-72.574,4.1777,138.306,-73.1381,7.58592,140.762,-72.3568,1.4533,139.313,-72.9832,0.957116,140.849,-74.4221,7.42282,142.148,-73.8845,7.51537,140.707,-18.2208,-2.44649,148.28,-16.9629,-2.27433,149.821,-16.1301,-3.69174,148.369,-17.521,-3.68408,146.569,-15.9032,-1.74928,151.511,-14.7344,-3.18442,150.423,-18.7864,-1.09185,150.078,-17.6856,-0.815161,151.312,-16.6778,-0.193657,152.537,-19.3287,0.537664,151.883,-18.1106,1.00157,152.754,-19.613,2.85957,153.25,-18.1849,3.45799,153.627,-19.183,6.10924,153.662,-17.8068,6.25736,153.865,-16.9213,3.95801,153.982,-16.6327,6.41915,154.196,-18.4743,9.20406,153.216,-17.359,8.75071,153.616,-17.6512,11.5082,151.872,-16.7657,10.9188,152.969,-16.4175,8.35577,154.161,-16.1212,10.2133,154.015,-16.6011,12.9754,150.624,-15.9397,12.473,152.251,-15.4711,11.689,153.753,-15.7879,0.695916,153.646,-15.0931,1.78866,154.564,-14.3604,0.561528,154.592,-15.0273,-0.775698,153.151,-14.5919,3.39967,155.105,-13.8518,2.42799,155.515,-16.0783,2.2756,154.025,-15.5175,2.65954,154.515,-15.2324,4.03313,154.703,-17.0081,1.6841,153.421,-15.9827,4.15288,154.325,-15.7122,6.27591,154.566,-14.9829,5.94927,154.963,-15.6336,7.88259,154.689,-15.0194,7.4579,155.237,-14.9596,8.92493,155.435,-15.5108,9.44421,154.812,-14.7585,9.98806,155.415,-15.0765,10.7217,154.859,-14.1608,10.2821,155.816,-14.1399,11.538,154.93,-14.2593,12.6448,153.469,-12.5083,13.3029,153.133,-12.6276,12.1273,154.907,-14.3988,8.78361,156.151,-15.0326,13.9273,149.807,-14.5604,13.4656,151.689,-12.9379,14.5446,149.222,-12.644,14.1284,151.19,-14.4414,5.38219,155.588,-13.752,4.59241,156.174,-14.4685,7.08924,155.962,-10.299,13.7169,152.63,-10.5226,12.6263,154.744,-13.1353,-0.762901,154.278,-13.7477,-2.10069,152.439,-12.3587,1.3001,155.624,-12.8368,3.90756,156.637,-13.0323,6.18265,157.557,-13.8522,6.65289,156.81,-19.286,1.33446,141.388,-20.2911,1.98227,142.821,-20.0402,0.398713,143.426,-18.7642,-0.486173,141.669,-20.2156,3.51301,141.545,-20.6112,3.9295,142.373,-13.3349,14.6561,147.355,-10.9049,15.0909,146.742,-10.5691,14.9336,148.52,-11.8099,14.8567,143.508,-11.3183,15.0539,145.077,-13.8368,14.5798,145.567,-14.4328,14.2686,143.935,-16.9165,11.3314,141.383,-18.4099,9.2217,141.118,-17.6975,10.0628,140.207,-15.1511,12.0694,140.216,-19.0556,7.84722,140.639,-20.0144,5.63098,141.142,-20.066,6.27846,141.64,-20.0819,-0.732413,144.231,-18.8718,-1.73838,142.302,-21.6565,-0.316593,145.838,-21.273,-0.996016,147.638,-20.2837,-1.80822,145.454,-18.7009,-3.40382,144.87,-19.0956,-2.66265,143.368,-19.5572,-2.39781,146.93,-14.9469,13.6726,142.633,-15.5603,12.6006,141.81,-13.4442,13.5165,140.905,-12.4388,14.4006,142.08,-10.3486,14.5208,150.489,-13.6361,8.80582,157.039,-13.0504,10.7146,156.34,-17.4573,13.2076,149.037,-18.7835,11.9589,150.705,-19.8418,9.70622,152.675,-15.6195,14.0577,147.968,-20.8971,1.88457,142.885,-21.1526,3.86014,142.332,-21.2887,0.480237,144.099,-18.3243,11.0663,141.46,-19.1367,9.00885,141.077,-20.5633,6.23856,141.592,-21.155,2.77074,152.758,-22.8438,2.74297,152.153,-22.6185,6.29291,153.164,-20.768,6.16659,153.553,-17.6309,12.2314,142.262,-17.2093,13.0732,143.249,-16.2864,13.9881,146.222,-18.4673,13.2356,147.546,-21.4245,9.81329,151.929,-20.102,12.0912,149.664,-22.2017,0.313734,149.982,-20.7127,0.360027,151.021,-16.9363,13.7144,144.592,-20.1147,-1.22763,148.992,-9.1017,6.94209,118.999,-8.77521,7.06329,121.268,-11.9327,5.719,121.179,-12.256,5.43897,119.13,-2.40437,-14.0674,139.371,0.0106081,-14.086,139.471,-2.76826,-15.0866,138.039,-7.94551,14.9281,150.002,-7.87263,14.1627,152.324,-8.13664,15.3222,147.959,-5.58101,15.6918,147.59,-5.42259,15.2572,149.79,-8.42604,15.5081,146.159,-5.78793,15.9087,145.682,-9.9575,15.0404,141.203,-9.28445,15.3954,142.843,-12.512,13.1633,138.432,-10.9538,14.3788,139.64,-17.379,-6.50335,140.958,-18.0914,-5.99687,139.033,-18.0894,-4.04019,141.132,-17.7787,-4.66588,142.842,-9.65144,-9.13712,146.185,-7.94294,-7.74941,149.107,-6.3378,-8.34731,149.143,-7.63695,-9.74084,146.479,-4.73011,-8.75931,149.146,-5.53002,-10.0557,146.766,-1.57889,-10.2558,146.928,-3.48953,-10.2,146.885,-3.05845,-8.94515,149.15,-1.41811,-8.92048,149.135,-1.70451,-11.2623,144.765,-1.84365,-12.0859,142.663,-4.11782,-12.2863,142.591,-3.82004,-11.3804,144.707,-11.6936,-2.0354,153.872,-10.7795,-0.641597,155.095,-9.43107,-1.84481,154.74,-10.31,-3.14225,153.553,-12.37,-3.18192,151.912,-11.0349,-4.24071,151.607,-5.46225,-6.0037,152.756,-5.73325,-6.99962,151.139,-7.1187,-6.4157,151.254,-6.68932,-5.44314,152.973,-5.22618,-5.10613,153.83,-6.203,-4.4402,154.109,-12.3029,-5.49861,149.37,-14.1532,-6.23282,146.631,-15.2228,-4.97841,147.388,-13.5512,-4.36094,149.81,-4.18769,-6.39611,152.491,-4.29652,-7.41813,151.048,-4.17449,-5.59984,153.443,-2.82293,-6.6531,152.222,-2.81035,-7.62437,150.99,-2.96413,-6.01067,153.071,-1.71303,-6.29581,152.797,-1.27425,-6.72319,151.961,-1.35447,-7.61388,150.873,-6.41179,-15.0786,137.084,-3.0847,-16.1221,136.87,-6.79763,-15.9068,135.875,-8.76345,-28.1824,114.538,-7.29654,-26.8788,119.868,-3.31942,-27.5244,119.325,-4.68732,-29.461,114.184,-12.8625,-25.3275,114.729,-11.4632,-24.1938,119.569,-10.4046,-28.0437,108.11,-14.2046,-25.1787,109.02,-6.35307,-29.6539,107.352,-13.4578,-12.2648,133.13,-10.1675,-13.7794,135.766,-10.1662,-14.0897,134.671,-13.2696,-11.711,132.17,-16.1514,-9.0994,131.197,-16.5832,-9.78024,132.31,-19.052,-1.06547,129.337,-18.2455,-4.03681,129.814,-19.2404,-4.61254,127.973,-19.6257,-1.24135,126.8,-19.8298,-5.17179,125.883,-20.081,-1.52544,124.273,-19.1295,2.38984,125.789,-18.785,2.34203,128.467,-18.9061,2.10406,123.141,-8.00034,13.0788,154.857,-5.31019,14.5083,152.304,-5.23703,13.4378,154.933,-2.65516,14.3131,152.326,-2.56101,13.3649,154.894,-2.82102,15.6208,147.299,-2.73317,15.1036,149.637,-2.92995,15.8436,145.291,-14.6056,11.0104,137.972,-18.5715,5.49993,138.8,-16.8973,8.30342,138.166,-15.4337,8.77648,135.75,-13.0797,11.745,135.708,-18.4816,2.81917,138.99,-17.3146,2.23107,136.273,-16.9695,5.43664,136.079,-17.7757,0.301493,138.792,-17.3693,-0.601485,136.215,-8.01858,-13.5981,138.715,-7.38952,-13.0464,140.143,-4.62836,-13.123,140.792,-6.22035,-14.1057,138.67,-17.7705,-1.82871,139.227,-18.2087,-3.49032,135.977,-17.8142,-3.52716,133.298,-17.6091,-3.67671,131.574,-18.082,-1.00326,131.649,-17.4373,-0.97938,133.9,-17.962,-3.20136,140.026,-18.4707,-5.12583,137.611,-19.9472,-2.70017,119.777,-19.587,-2.09232,121.969,-20.1534,-5.96018,123.615,-20.7327,-6.83483,121.106,-20.8419,-3.16268,117.824,-21.593,-7.49614,118.622,-20.3947,-12.1882,119.957,-19.6572,-11.1711,122.835,-19.2198,-9.95707,125.47,-23.0893,-9.8037,108.959,-23.4121,-9.13647,111.375,-22.9635,-13.8668,110.855,-22.9484,-14.1999,107.679,-19.7525,-17.9095,114.23,-20.7007,-18.2236,110.346,-22.0351,-13.3194,113.826,-22.4669,-5.75352,109.988,-22.6948,-4.87572,112.023,-17.2405,-14.9353,124.069,-17.776,-16.1252,121.215,-21.2628,-12.7979,116.886,-22.4964,-8.03097,116.235,-18.8321,-17.1613,117.953,-18.8791,0.472437,117.395,-17.9212,0.708002,119.161,-21.7392,-3.66904,115.971,-19.9566,0.178713,115.845,-16.2765,3.4284,117.375,-15.293,3.37786,119.146,-17.2782,3.30837,115.737,-15.0127,3.70693,121.112,-17.7466,1.18774,121.192,-9.58287,6.90394,116.888,-13.0583,5.57887,117.239,-2.81839,6.48689,118.401,-5.86353,7.41739,118.715,-6.11755,7.02433,116.447,-2.95391,5.9545,116.035,-6.45097,6.61799,114.61,-3.05493,5.70354,114.344,-10.1584,6.79139,115.008,-13.8562,5.52548,115.445,-17.2287,2.00984,133.82,-17.2887,5.89773,128.103,-17.1757,5.85515,130.874,-18.0731,2.18329,131.171,-14.4862,9.06677,128.033,-14.8926,9.29086,130.808,-4.21361,14.2319,135.61,-3.93912,14.9169,137.743,-7.80389,14.9924,138.415,-9.29855,13.9852,136.182,-6.97811,15.4445,140.37,-6.4318,15.7462,142.223,-6.05853,15.915,143.942,-8.79929,15.5243,144.481,-3.27745,15.7115,141.819,-3.07698,15.8621,143.537,-3.36708,-17.2826,135.363,-7.12777,-16.7738,134.495,-10.3312,-14.3974,133.665,-10.493,-14.9393,132.632,-12.7238,-13.2183,129.43,-10.641,-16.1943,131.384,-10.5522,-18.0978,129.656,-13.0804,-15.0088,128.233,-10.1548,-19.7311,127.407,-13.3782,-16.7287,126.619,-7.16747,-18.0149,132.701,-3.40273,-18.6332,133.128,-3.09303,-20.0824,130.312,-6.77325,-19.6347,130.356,-2.73236,-21.6852,127.647,-6.31654,-21.4086,127.876,-12.7173,7.31925,122.839,-8.92861,8.21146,123.58,-5.669,7.61317,121.338,-5.63801,8.52905,124.081,-2.7131,7.18525,121.245,-2.79737,7.97554,124.349,-2.90742,9.57512,127.143,-6.17037,10.3517,126.474,-16.327,5.23183,122.65,-17.0287,5.82547,125.26,-13.8061,8.592,125.195,-9.9626,10.2039,125.604,-10.8209,11.2623,128.135,-6.83628,11.9811,128.632,-11.5286,11.8078,130.807,-7.52225,12.8147,131.05,-8.25501,13.4186,133.424,-12.1714,11.986,133.351,-3.17957,11.1792,129.459,-3.98848,13.368,133.529,-15.4213,3.4738,110.787,-15.1972,4.65771,112.226,-18.4188,2.10903,112.391,-18.5215,0.996956,110.749,-14.6367,5.30095,113.743,-11.3875,5.94675,112.008,-10.7808,6.50401,113.399,-3.55686,15.3695,139.852,0.00481521,5.22455,110.258,0.00317552,5.06468,111.461,-3.55645,5.71809,111.506,-3.58937,5.86602,109.948,-7.44217,6.03409,111.748,-8.07833,5.9671,110.439,-16.6639,-21.92,114.595,-17.6669,-21.9085,109.8,-15.5454,-20.9586,118.824,-14.4805,-19.5238,122.086,-22.4825,-4.17117,114.034,-20.8733,-1.21267,112.401,-20.6583,-0.382134,114.184,-6.87706,6.29575,113.085,-12.5522,-11.9111,130.515,-12.9235,-11.5456,131.421,-20.8941,-2.15531,110.551,-10.5792,-22.4872,122.76,-13.8425,-18.0993,124.551,-10.156,-21.0103,125.114,-6.27377,-23.1524,125.557,-6.49839,-24.9242,123.2,-2.54587,-23.3987,125.171,-2.22801,-24.9324,122.268,0.11428,-24.0589,119.928,-0.914748,-24.5073,120.037,-6.86998,-12.3878,142.035,-6.33017,-11.3731,144.328,-18.2901,-8.6168,127.248,-15.5196,-11.6493,127.489,-16.48,-13.4261,126.284,-15.3446,-10.8074,139.147,-16.3202,-11.0681,136.429,-17.9724,-8.57679,137.259,-16.9709,-8.862,139.662,-12.662,-11.8174,139.651,-13.3043,-12.4168,137.088,-9.79618,-12.2521,140.853,-10.2235,-12.7999,138.646,-15.1111,-8.15179,142.742,-13.6801,-9.58349,142.482,-18.3229,-6.70474,133.481,-18.4143,-7.71946,135.289,-16.726,-10.6661,134.113,-11.552,-10.628,142.832,-13.4882,-12.6129,134.869,-9.01829,-11.2645,143.59,-10.3617,-13.3487,136.989,-15.9996,-6.58273,143.672,-1.6839,-29.2312,113.692,-1.10863,-26.5934,118.152,-0.000732041,15.2858,141.683,-0.00107705,15.4401,143.406,-0.00168794,15.417,145.24,-0.00311332,14.724,149.519,-7.51844,-27.2434,101.603,-2.82497,-30.0588,106.935,-3.77184,-27.7294,101.058,-16.4874,-6.49478,129.686,-17.1602,-7.42026,128.425,-14.7234,-9.07691,129.715,-17.1328,-6.29358,130.893,-15.5147,-8.92106,130.485,-14.79,-10.0676,128.476,-17.8305,-6.21788,131.946,-2.03014,-13.0924,140.925,-0.0110052,6.8581,124.66,0.0209123,-13.1322,140.981,-0.0103371,5.96369,121.337,-16.7328,-5.02049,145.032,-16.7364,5.55324,133.601,-15.0314,9.10733,133.428,-3.58278,12.3648,131.542,-0.610995,-6.47862,152.234,-0.750026,-6.42599,152.673,0.00663359,-12.0418,142.677,-0.0378795,-18.6026,132.992,-0.0276987,-19.7776,129.896,-0.00362877,13.4405,135.691,-0.00221965,9.90207,130.168,-0.0021718,14.2848,137.678,0.00342641,-6.81099,151.63,-0.0248276,-7.56113,150.786,-0.0721016,-8.87422,149.12,-0.11667,-10.2637,146.924,-0.00128357,-21.1579,127.169,-7.17962,-3.6348,154.286,-7.86325,-4.78624,153.147,-9.04606,-4.05311,153.341,-8.23799,-2.78813,154.479,-8.44832,-5.80005,151.334,-9.73899,-5.11557,151.443,-9.50904,-7.07707,149.054,-10.9624,-6.37202,149.119,-12.9061,-7.3236,146.113,-11.4531,-8.27358,145.984,-23.1914,-8.59666,113.841,-18.0381,2.89541,114.027,-3.23242,5.64758,112.885,0.00092635,4.93054,112.774,-18.1078,-21.7417,105.311,-14.6972,-24.1413,103.928,-11.1815,-26.0263,102.645,-21.0877,-18.4529,106.553,-11.9244,5.11591,110.72,-0.0686465,-27.8268,100.961,-0.00093271,-6.48493,152.146,-11.2741,11.184,156.81,-12.422,8.8525,157.945,-11.752,3.55499,157.411,-11.9211,5.78497,158.326,-10.9564,8.63059,158.749,-8.57553,11.4027,157.613,-10.892,1.75992,156.545,-5.33564,-4.54841,154.696,-4.3687,-5.1678,154.213,-6.14731,-3.81181,155.099,-9.68244,0.224269,156.062,-8.514,-1.00013,155.786,-5.11739,12.4594,157.34,-2.42764,12.4648,157.067,-3.23701,-5.77534,153.789,-1.99961,-6.23895,153.496,-0.90371,-6.5189,153.352,-7.58931,-2.0273,155.569,-6.84481,-2.94104,155.363,-4.48487,-24.1455,92.171,-3.68726,-19.6421,91.0616,-6.82399,-19.6407,91.8716,-8.1979,-23.944,93.2744,-22.1265,-9.72187,105.089,-21.4924,-8.31194,106.707,-21.9406,-12.1017,105.064,-22.2319,-13.729,103.464,-15.7933,-21.3717,96.5187,-16.7279,-21.6647,99.13,-13.9104,-23.021,97.1321,-12.8308,-21.479,94.3317,-18.5343,-19.9154,98.8801,-19.4521,-19.3851,101.113,-11.1836,-23.7191,95.0706,-9.81792,-20.4851,92.7784,-11.2014,-24.5235,98.9967,-14.0253,-22.9677,100.514,-8.08439,-25.6829,97.542,-4.338,-26.3431,96.5941,-17.2261,-21.3298,101.958,-22.1658,-10.7714,106.866,-21.8504,-6.91245,108.198,-20.1238,-18.5883,103.498,-12.6056,4.72184,109.316,-13.3878,4.5785,107.729,-9.25154,6.54493,107.534,-8.64206,6.14231,109.052,-21.1152,-6.01818,106.004,-20.4021,-4.79588,107.674,-1.85948,7.36438,105.088,-1.82488,6.51419,106.676,-5.08749,7.02002,107.138,-5.41623,7.80398,105.451,-4.66964,6.39282,108.547,-1.65992,5.96702,108.001,-1.43179,5.66944,108.989,-18.656,-1.45985,108.073,-19.5261,-2.33906,106.243,-17.2143,1.3037,106.048,-16.4204,1.74417,107.91,-15.686,2.30681,109.476,-18.3244,-0.401199,109.455,-14.1225,4.65697,105.875,-21.4851,-16.1411,103.106,-20.8461,-17.3339,101.195,-21.9239,-14.809,105.106,-20.6148,-3.37336,108.97,-9.86709,7.07397,105.758,0.00710304,6.45566,104.751,0.137411,-20.0502,90.5479,-23.9275,-5.69892,92.9185,-24.2498,-10.044,92.2347,-24.3243,-9.65354,87.9454,-24.1595,-5.30262,88.3689,-23.5139,-6.2033,95.9697,-23.5754,-10.4398,95.5566,-22.0057,-1.93374,92.949,-22.3502,-1.28392,88.5623,-21.9868,-2.33695,95.4373,-22.21,-14.4571,91.167,-22.0664,-13.909,87.3063,-23.9953,-9.25417,83.6287,-24.1135,-4.87086,83.9824,-21.6014,-13.3099,83.3214,-21.7796,-15.4964,96.3637,-21.7884,-14.7702,94.1557,-23.1085,-11.2632,98.2791,-18.5432,-18.1477,94.2099,-18.2005,-17.4845,92.4367,-18.0211,-17.3058,89.8659,-15.8972,-19.5596,95.3479,-14.9523,-19.0515,94.001,-18.8793,-18.4997,95.8104,-19.3704,-18.5528,97.4514,-14.2869,-18.5874,92.6333,-13.7063,-18.0594,91.188,-20.0715,-18.1869,99.2633,-22.2817,-15.0238,101.579,-21.9987,-6.94765,104.076,-22.9638,-10.9717,103.334,-20.2722,-3.0005,104.16,-20.8934,-3.24478,102.144,-22.4756,-7.33321,102.142,-22.6527,-7.28772,100.439,-21.4354,-3.10628,100.215,-21.8091,-2.80606,98.0801,-22.8787,-6.91819,98.6647,-19.4282,1.35836,99.6549,-19.6408,1.47606,97.2012,-18.9369,1.42008,92.3681,-19.3738,1.43519,94.6392,-1.47378,-16.1588,88.2394,-0.908607,-14.3448,88.4991,-1.54915,-13.7196,88.0904,-2.97102,-15.9065,88.8229,-0.453711,-12.0241,89.0269,-0.465798,-9.49648,88.9102,-2.6669,-14.4099,86.489,-2.02894,-12.8849,84.1164,-4.39046,-15.4573,84.4306,-5.23402,-16.2184,87.1185,-7.97735,-17.1984,85.0408,-8.67462,-17.6654,88.0799,-1.55441,-11.0835,81.3756,-3.65759,-14.2309,81.4309,-7.25269,-16.2507,81.8455,-3.64591,-15.5188,88.2999,-6.21462,-16.3704,89.2905,-9.49862,-17.5977,90.2468,-1.21774,-11.4559,86.6008,-1.04858,-9.31613,84.3436,-0.765593,-7.57351,87.1747,-0.797803,-5.0509,85.1273,-5.2207,-17.5189,92.0717,-2.74042,-17.9664,91.1493,-7.85189,-18.1533,92.5801,-6.57114,-17.3922,91.6386,-4.45221,-16.9845,90.877,-2.36516,-17.4787,89.6824,-1.99517,-17.0315,88.5933,-3.82807,-16.5966,89.7269,-0.647374,-3.65113,89.8159,-0.984884,-3.92129,88.0468,-1.85113,-0.402413,87.5756,-1.73956,1.6316,90.2881,-5.66402,5.0886,89.8614,-5.53429,3.95554,87.8732,-10.0749,5.37848,87.8438,-10.4622,6.29087,90.0777,-15.0246,4.57484,91.193,-18.8032,2.04376,88.4884,-14.5575,4.48735,88.1788,-15.5279,4.90596,93.5682,-10.8962,7.25869,92.3203,-1.56923,5.72713,91.4123,-5.75613,7.85628,90.9486,-5.92891,9.47654,97.8938,-11.061,7.98152,98.2964,-11.0478,7.761,95.2374,-5.90101,9.15966,94.264,-1.48658,7.86821,94.3417,-1.36247,8.691,97.8442,-1.67981,8.66191,100.757,-5.9165,9.06376,100.845,-5.72735,8.5807,103.363,-10.4574,7.51518,103.593,-10.8608,7.81682,101.088,-1.89246,8.12972,103.096,-15.7949,5.22589,98.9281,-15.811,5.18259,96.2031,-18.0756,1.07454,103.984,-14.8414,4.78432,103.742,-18.8557,1.13409,101.875,-15.4161,5.00246,101.443,-12.312,-18.7498,93.8633,-11.1039,-18.4495,92.5567,-13.9704,-20.0519,94.895,-10.7489,-18.8766,93.6127,-9.05943,-18.0691,92.5264,-8.00778,-17.5767,91.3137,-5.72656,-16.7084,90.6299,-7.17959,-16.775,90.4426,-4.79287,-15.9818,89.6928,-10.2974,-18.0468,91.3664,-13.1234,-18.1853,88.8828,-7.86162,0.833876,38.2508,-8.1298,1.48771,34.2793,-11.4565,1.02695,34.456,-11.2281,0.422908,38.4295,-11.254,0.0229266,42.7057,-8.18455,0.285908,42.6887,-14.5448,2.31666,34.8725,-14.5018,1.91075,39.0268,-14.3464,1.49227,43.2341,-4.74765,9.9337,22.8058,-4.87659,10.0061,19.1171,-5.05875,7.22032,19.2179,-5.20286,7.01673,22.9239,-6.15107,4.76929,19.2788,-6.27509,4.60989,23.0599,-8.29719,3.03032,19.2712,-8.36575,2.80986,23.0868,-15.7716,14.3323,36.102,-15.8887,14.2904,40.712,-17.2109,11.3413,40.3211,-16.8727,11.4466,35.9274,-16.0973,11.3153,31.8608,-15.0614,13.7819,31.8061,-13.3773,16.2245,36.1129,-13.2866,16.1793,40.6849,-12.5181,14.5655,27.1839,-10.1608,15.4235,27.1086,-10.152,16.0286,31.6048,-13.0317,15.383,31.7364,-14.2847,11.0054,22.4948,-13.2094,12.8062,22.3967,-14.1014,13.2095,27.3207,-15.2137,11.2016,27.4641,-11.8078,14.1183,22.3463,-9.90869,15.0331,22.3737,-9.97566,16.7344,35.9348,-14.8256,8.63391,22.6431,-14.2808,8.69757,19.0698,-13.7625,10.834,18.9641,-23.3565,-8.8214,79.1454,-20.8552,-12.6547,78.7652,-17.6858,-16.8082,86.4697,-17.1539,-16.0117,82.8031,-16.5354,-15.1065,78.3895,-23.716,-4.43317,79.5721,-15.7616,-13.7717,73.994,-19.806,-11.6488,74.3787,-12.0046,-16.8629,82.2514,-11.4161,-15.6481,78.0844,-10.9053,-13.9682,73.8488,-6.68182,-14.8174,77.7071,-6.3957,-12.761,73.6224,-3.27285,-12.3065,77.4903,-3.21483,-9.98157,73.542,-3.27748,-7.45953,69.7742,-6.07284,-10.4234,69.7652,-1.48226,-8.79724,77.5017,-1.67965,-6.38013,73.6064,-2.07974,-3.92223,69.8729,-3.32184,-5.07893,66.1547,-5.60363,-8.24017,66.093,-9.35206,-9.91423,66.2782,-10.2023,-11.8809,69.9264,-13.2924,-9.62319,66.7705,-14.6025,-11.7458,70.1622,-16.5529,-8.2557,67.2486,-18.2792,-10.0672,70.5538,-12.1959,-8.04917,63.5805,-8.63163,-8.20424,62.9623,-14.999,-6.67274,64.2713,-8.17799,-6.53363,60.124,-11.2797,-6.55798,60.8935,-13.6563,-5.31321,61.649,-15.8638,-3.98169,61.77,-17.5159,-5.05391,64.4591,-10.4371,-5.26571,58.5245,-12.8138,-4.68267,58.8798,-14.7383,-3.17769,59.1203,-5.27967,-6.26349,62.708,-5.42563,-4.45622,59.7759,-3.38234,-3.07013,62.7463,-3.90919,-1.4036,59.7409,-19.2093,-6.13847,67.4978,-19.144,-2.2459,64.8092,-20.4499,-2.79253,68.0431,-17.5899,-1.6379,61.8777,-2.33972,-1.66508,66.2527,-2.64436,0.188451,62.8718,-1.68047,-0.191735,70.0642,-2.24613,1.88597,66.515,-2.69973,3.51138,63.2086,-2.35988,3.69874,70.4664,-3.25497,5.5088,67.0045,-1.07678,-2.47545,73.7762,-1.60161,1.62782,74.1799,-1.06294,-0.573715,78.0422,-0.706052,-4.83147,77.6542,-0.80379,-2.85756,82.5047,-0.803308,-7.18333,81.8406,-3.20265,4.56825,60.0892,-3.25373,1.60145,59.7789,-4.74496,7.34221,60.72,-4.04217,6.76924,63.7812,-4.52471,6.86722,70.9213,-3.49622,5.24106,74.6765,-2.62821,3.37792,78.5701,-5.9943,-2.67176,57.7816,-6.23954,-1.60581,55.9341,-7.73576,-3.55656,56.0492,-7.96698,-4.60434,58.0553,-6.18088,-0.932155,54.0552,-7.47326,-2.95108,54.1409,-5.00211,0.681536,55.7313,-5.20594,1.38055,53.9297,-4.69768,-0.0851686,57.5252,-9.87872,-4.65202,56.1647,-12.2405,-4.36887,56.2831,-14.279,-2.94915,56.4734,-15.6636,-0.583169,56.7981,-16.2806,-0.950095,59.3094,-17.0742,2.00205,57.0265,-17.6047,1.60689,59.4389,-17.4101,4.9531,57.3034,-18.0443,4.52883,59.7194,-15.3239,-0.351461,54.479,-16.7881,2.30015,54.783,-17.0015,5.41252,55.2308,-13.8042,-2.58825,54.2456,-14.8281,-0.076486,52.2018,-16.4179,2.47398,52.4148,-16.8095,5.5665,52.919,-16.1001,2.81834,50.018,-16.7617,5.95099,50.5478,-13.9679,0.0345969,49.7269,-11.7696,-3.7491,54.1719,-9.60332,-3.92352,54.1487,-9.38742,-3.32315,52.1845,-11.5054,-3.22309,52.1857,-13.3035,-2.02623,52.2715,-9.00999,-1.19603,48.8339,-11.4794,-1.25794,48.7772,-11.3378,-2.31593,50.5008,-9.29067,-2.2525,50.5617,-8.59072,-0.301733,46.4246,-11.3152,-0.493244,46.2955,-14.1344,0.902756,46.7836,-7.6204,-2.17941,52.2928,-4.28765,3.25441,55.4934,-4.76962,3.83878,53.9284,-3.9171,2.85317,57.0473,-4.50274,5.70131,55.6171,-5.08328,6.12713,54.2028,-3.96349,5.42951,57.208,-5.35767,4.66567,52.2341,-5.55594,6.9424,52.6489,-5.65492,7.37327,56.1186,-6.08778,7.70426,54.5833,-6.44561,8.70883,52.9252,-5.68199,2.18013,52.0649,-5.42469,5.67276,50.2063,-5.92353,3.00672,49.927,-7.092,0.200663,49.7762,-6.50418,-0.229903,52.0954,-5.54527,3.99357,47.5014,-6.74114,1.44246,47.0042,-4.84748,6.8646,47.8283,-6.23315,2.22095,43.1279,-4.62627,4.75198,43.6739,-3.72485,8.02287,44.0923,-5.48904,8.19812,50.678,-6.43495,10.3339,50.8593,-4.93336,9.78198,48.018,-6.29438,12.2977,48.0825,-8.24395,10.0972,53.1731,-8.44026,11.686,50.9037,-8.85612,13.6054,48.0728,-10.654,10.455,53.3115,-10.9863,11.8682,50.8611,-8.04461,8.92559,55.0132,-10.4746,9.40029,55.3346,-7.86204,8.41011,56.8287,-10.4169,9.03028,57.3742,-7.69231,8.29058,58.8784,-10.4351,8.71968,59.578,-2.13834,1.44417,83.3098,-5.74763,5.10093,83.8634,-6.22468,6.6449,79.1995,-7.43032,8.41774,61.385,-10.403,8.6727,62.0629,-13.627,8.36655,62.4582,-13.4244,8.37743,59.9253,-13.2178,8.74142,57.6592,-16.2326,7.05334,59.9385,-15.8126,7.37104,57.6402,-13.2057,9.82594,53.4149,-13.0882,9.04595,55.5357,-15.4943,7.73739,55.5344,-15.4514,8.22949,53.3942,-15.6806,8.94605,51.0775,-13.5359,10.9092,50.9702,-16.9535,6.60709,47.8974,-16.2011,9.63412,48.1636,-16.2346,3.49209,47.4043,-14.3165,12.0496,48.1668,-16.4898,4.07644,43.8622,-17.2513,7.27404,44.2935,-16.8538,10.5333,44.5981,-15.2475,13.3542,44.8186,-17.1148,7.97473,39.9271,-6.13188,14.3073,44.4778,-9.36662,15.5477,44.5898,-4.06306,11.5012,44.3512,-6.12935,15.6653,40.0674,-6.1596,15.8828,35.6087,-3.6622,13.0255,35.2461,-3.55449,12.8276,39.7245,-6.88562,15.4173,31.4074,-4.4506,13.0107,31.2806,-3.16716,9.04416,39.2725,-3.40745,9.41212,34.9439,-4.05023,9.60121,31.2822,-5.23942,12.9952,27.2919,-4.60235,9.65156,27.4821,-9.84116,16.6539,40.3778,-12.6221,15.141,44.7587,-4.06202,5.49887,38.9064,-5.79675,2.89589,38.5433,-8.37445,2.54107,27.4268,-6.3219,4.36444,27.4779,-5.29982,6.7693,27.5278,-11.0565,2.65595,23.0668,-11.2278,2.18023,27.4624,-8.3244,2.10385,30.9752,-6.20006,4.12577,31.0727,-11.4252,1.62612,31.0686,-13.2771,3.99833,22.9786,-13.809,3.40363,27.5623,-4.35948,6.18875,34.6831,-4.94619,6.61657,31.2086,-7.43467,15.0658,27.154,-7.54429,14.9002,22.4824,-5.5744,13.0065,22.6398,-7.43365,14.4023,18.8891,-5.77973,12.6389,18.998,-16.2754,5.00188,35.2737,-16.4412,4.69853,39.5732,-15.3388,5.7991,27.6214,-16.0048,5.41626,31.5504,-14.3244,2.81801,31.3024,-16.7701,8.19668,35.6388,-16.374,8.41157,31.7626,-12.8009,4.46006,19.1531,-13.9472,6.50064,19.1196,-14.5198,6.18604,22.794,-15.6727,8.56608,27.5984,-10.403,6.33254,84.2679,-11.0415,7.73299,79.7632,-15.7614,6.60258,80.0556,-14.9257,5.45118,84.4124,-16.3893,7.22053,76.0128,-11.849,8.61489,75.7215,-20.0215,4.4341,76.0187,-19.7477,3.91438,80.0957,-19.1409,3.01274,84.4372,-19.9942,4.63423,72.1862,-16.7759,7.45326,72.18,-12.6061,8.94345,71.8604,-19.7085,4.66122,68.6642,-16.978,7.475,68.6323,-20.605,0.978679,68.4754,-21.6257,0.796251,71.9325,-22.3477,0.575912,75.7659,-8.13537,8.82586,71.4046,-7.1006,7.95745,75.2387,-13.2055,8.86697,68.3352,-9.21253,9.08684,67.9306,-5.80183,8.10487,67.5034,-13.569,8.62503,65.1959,-9.99676,8.92981,64.7941,-6.80975,8.51237,64.2827,-19.6355,1.19975,65.2554,-19.2858,4.6839,65.4217,-16.9525,7.37867,65.4022,-22.9797,-3.95157,75.3931,-21.8558,-3.4285,71.5317,-22.3794,-8.21313,74.8643,-20.9333,-7.28086,70.9541,-22.6216,0.0221739,79.9039,-22.5521,-0.601709,84.309,-18.5586,1.43074,62.2536,-18.6777,4.65951,62.4439,-16.6358,7.18317,62.5051,-12.609,-17.7421,85.6987,-5.31798,7.36147,57.904,-11.7233,13.4712,48.0869,-5.93332,3.62712,34.4576,-10.8207,3.08388,19.2403,-17.1652,-19.9067,96.9503,-21.9275,-15.8337,97.986,-23.3025,-11.5464,101.399,-5.18982,7.35648,16.2809,-5.02364,9.96297,16.1772,-6.34405,4.95469,16.4205,-8.37523,3.3745,16.4722,-13.7556,8.76481,16.2993,-13.247,10.6755,16.2399,-5.89021,12.2743,16.1466,-12.3008,4.89557,16.2996,-13.381,6.7838,16.3102,-10.6215,3.56786,16.403,-11.3616,13.8764,18.8089,-9.53895,14.7565,18.8215,-12.7275,12.5336,18.8699,-7.33711,13.9174,16.1211,-11.0038,13.5938,16.107,-9.25275,14.4422,16.0913,-12.2952,12.2615,16.1631,0.191855,-18.5218,90.4036,0.186618,-16.2334,87.9357,0.153168,-14.6936,88.4758,0.0941128,-11.9039,89.2709,-0.0148047,6.32171,94.9794,0.0108136,7.1992,102.837,-23.2695,-11.6333,99.8111,-22.0969,-15.671,99.6553,0.00358403,5.40437,109.087,-5.34431,7.14303,14.1678,-5.31832,6.68782,12.2486,-6.78686,4.74061,13.0706,-6.61745,4.92646,14.4495,-5.02898,9.77653,14.0548,-4.69601,10.014,9.69847,-4.66199,9.80147,7.50476,-4.88555,7.25686,7.3472,-4.52214,7.31772,9.6299,-4.83028,9.51363,11.9796,-5.97014,5.07384,10.167,-6.06352,5.29614,11.4439,-5.97077,4.42152,8.15145,-8.30174,0.82587,8.07529,-7.43423,2.86243,9.64128,-7.12258,1.23289,7.00535,-5.45997,4.43646,5.88885,-6.35113,1.47693,5.5167,-7.19661,3.79327,11.0434,-5.59116,12.0274,9.9352,-6.7748,13.5417,10.2234,-6.53224,13.952,8.05495,-5.22261,12.3132,7.69294,-8.73957,14.1107,10.3866,-8.88697,14.5869,8.0366,-6.38911,14.26,5.97424,-4.94241,12.4092,5.81167,-4.45297,9.89844,5.70197,-8.67887,3.12726,11.5176,-8.93816,2.28998,10.1995,-10.0747,3.23128,11.4208,-10.1984,2.34285,10.124,-10.6169,0.590252,8.38663,-9.53894,0.558053,8.43851,-10.4249,-2.19338,6.36516,-11.361,-2.12012,6.2605,-9.28429,-2.02329,6.33223,-10.4616,3.85115,14.5399,-11.9698,5.12207,14.3577,-8.47794,3.58278,14.6221,-12.175,5.31198,10.2604,-11.2184,3.8889,10.963,-11.2592,2.81545,9.64732,-12.063,3.55604,8.74668,-12.6162,12.1818,6.30501,-13.228,9.97662,6.69846,-13.4004,10.3655,4.59707,-12.7181,12.6169,4.29696,-11.1512,14.0485,6.11975,-10.9511,14.3162,4.14824,-13.186,10.8386,2.66121,-12.2799,12.8785,2.43019,-10.5516,14.3168,2.34969,-12.0733,10.9178,1.34967,-11.08,12.4071,1.23471,-10.1347,13.4753,1.28962,-13.1703,5.71365,6.29753,-13.5102,3.2127,5.44157,-13.9029,4.03071,4.08589,-13.4872,6.35087,4.57085,-14.8138,1.23922,3.35817,-14.2459,0.360482,4.5467,-12.9526,2.34472,6.52824,-13.5126,-0.514656,5.28832,-12.6702,4.33752,7.5575,-13.3435,9.41727,7.64528,-13.2457,7.91643,7.37612,-13.23,8.03371,6.27616,-13.1481,-10.8559,1.24322,-13.4075,-11.2297,0.726636,-13.7228,-11.1113,0.93473,-13.6645,-10.7642,1.36808,-13.7619,-11.1499,0.483594,-14.0065,-10.8986,0.731297,-14.3506,2.02956,0.859051,-13.4701,4.72572,1.03226,-14.2124,4.64261,2.5665,-15.0888,1.91707,1.99665,-13.7486,6.9805,2.83188,-12.8823,7.07141,1.19678,-10.3048,10.4581,0.730474,-9.47432,11.8726,0.770388,-12.4492,9.29482,1.306,-13.4122,9.28426,2.78414,-11.3876,6.63754,0.655401,-10.8926,8.89929,0.699363,-8.69179,13.2028,1.08924,-7.94366,11.1511,0.616942,-7.07501,12.3491,0.992688,-8.61477,9.79699,0.563402,-8.3012,14.489,2.30461,-8.77839,14.8586,6.04451,-8.50642,14.8389,4.08509,-6.19685,14.06,4.03167,-11.08,13.6506,8.11817,-4.37307,9.74479,3.96462,-4.78116,12.1577,3.99952,-4.89672,11.6568,2.32407,-4.68337,9.37208,2.41133,-6.19138,13.5143,2.27221,-5.96998,10.9658,1.03159,-5.78668,9.11082,1.1812,-4.69721,7.19413,3.99426,-5.13615,7.05472,2.53142,-6.1466,7.17355,1.43559,-10.6959,13.2926,10.6238,-9.19008,8.26508,0.587524,-13.8783,-10.1983,0.430311,-13.5594,-10.3731,0.341424,-13.4244,-9.84318,0.582917,-13.8648,-9.77055,0.684974,-13.204,-10.5323,0.411078,-13.0084,-10.1593,0.666815,-14.0464,-10.5074,0.501564,-13.6959,-10.8483,0.314612,-13.198,-10.9256,0.474546,-14.393,-9.03126,0.642967,-14.2442,-8.74416,0.835069,-14.5379,-8.5773,0.740123,-14.6376,-8.9819,0.58005,-14.9026,-8.23538,1.01308,-14.9038,-8.64918,0.755815,-14.4858,-8.17725,0.974973,-15.2116,-8.94219,0.884076,-15.0787,-9.25871,0.650367,-14.887,-8.95537,0.602552,-15.2541,-8.52043,1.20966,-14.2064,-9.12268,1.0281,-14.1222,-8.73393,1.40562,-14.1646,-8.37024,1.11564,-14.149,-8.00468,1.29537,-14.4675,-7.80605,1.11473,-14.1066,-8.30825,1.6929,-14.4335,-9.38404,0.707454,-14.5773,-9.69398,0.903726,-14.4765,-9.48861,1.24891,-14.7835,-9.41896,0.588904,-14.9346,-9.76323,0.868006,-6.68046,4.879,1.64333,-5.75641,4.64769,2.68895,-6.17506,-1.46735,2.42429,-6.18556,1.91002,2.61179,-7.0389,1.85356,1.38988,-6.96799,-1.24556,1.05073,-5.37279,4.52998,4.11916,-6.02992,1.7447,3.99452,-6.41965,-1.6035,3.84294,-7.1879,-1.74518,5.09259,-12.8252,-8.62769,1.28497,-13.2422,-8.40129,1.06984,-13.315,-8.89908,1.06794,-12.8807,-9.12868,1.2505,-13.3436,-9.33099,0.887243,-12.9022,-9.62763,1.02484,-12.6409,-8.85474,1.87133,-12.6958,-9.40394,1.76657,-12.7437,-10.0117,1.42364,-12.5842,-8.02192,1.12563,-13.042,-7.721,0.931757,-12.5459,-8.46021,1.85776,-14.0983,-9.24829,2.20881,-14.0925,-9.87767,1.76526,-14.1131,-9.49903,1.37386,-14.0917,-8.9726,1.67531,-13.6224,-9.5111,2.52223,-13.6613,-10.2023,1.99555,-14.0434,-10.4261,1.19728,-14.1207,-10.0263,0.91944,-14.2098,-4.79117,3.93939,-14.5736,-5.79334,3.47906,-15.0215,-5.47461,3.36023,-14.9684,-4.24814,3.6722,-13.5709,-5.51097,3.90422,-14.156,-6.21255,3.34924,-14.7662,-6.55245,3.01663,-15.1263,-6.20722,2.92065,-14.3613,-6.82996,2.89349,-15.302,-5.40012,3.14879,-15.5515,-4.85621,3.20817,-15.3645,-5.8428,2.78614,-15.7332,-5.45284,2.77605,-13.648,-6.57403,3.40356,-13.9582,-6.59968,3.17523,-14.0568,-7.05098,2.82342,-14.0911,-7.49413,2.33506,-14.3451,-7.45395,2.38967,-14.845,-7.21471,2.58865,-13.0873,-6.72942,3.53853,-12.6952,-5.75305,4.07444,-12.4977,-7.00611,3.42937,-11.8036,-6.22675,4.02093,-12.1385,-4.41185,4.82167,-11.2081,-4.68169,4.89354,-12.9578,-4.03641,4.73475,-12.7284,-7.66383,3.06729,-13.3011,-7.48037,3.13334,-12.1752,-7.34289,3.32849,-12.2757,-7.80359,3.05569,-11.7523,-7.23503,3.61431,-13.4119,-8.13057,2.84952,-12.7433,-8.32174,2.64222,-12.3715,-8.26687,2.58209,-13.7842,-7.2692,2.9786,-13.9299,-7.87559,2.47416,-15.3196,-8.89646,1.50864,-15.2871,-9.3222,1.13501,-15.3219,-8.34334,1.88396,-15.2377,-8.02258,1.48425,-14.883,-7.80849,1.18861,-8.92656,-11.5405,2.20958,-9.05813,-12.1028,2.06528,-9.9851,-11.8075,1.74499,-9.82842,-11.1334,1.85223,-10.3226,-11.7045,0.933152,-10.113,-10.8814,0.977665,-8.83133,-10.9454,2.40513,-9.70367,-10.419,2.07174,-9.83316,-10.0592,1.17166,-12.8281,0.999164,0.632637,-11.0471,-0.152114,0.607079,-10.4797,2.4157,0.549079,-12.1074,3.65946,0.535186,-15.2017,-9.55511,0.844769,-6.2955,-7.65766,1.13238,-6.20052,-7.85959,2.14237,-5.85876,-6.67563,2.33407,-6.04021,-6.54516,1.1321,-6.71459,-8.48685,1.04275,-6.63006,-8.79398,1.91069,-6.74637,-7.91507,3.16947,-6.4059,-6.71546,3.53418,-7.16868,-8.90286,2.83998,-7.07784,-9.24412,0.93323,-6.947,-9.62339,1.7054,-7.2846,-8.17118,0.47415,-7.72365,-8.86579,0.534053,-6.88031,-7.44426,0.413762,-7.49645,-9.784,2.58846,-7.99703,-9.59337,0.419957,-7.26254,-10.0154,0.764725,-8.10823,-7.95975,0.253967,-8.76031,-8.61612,0.683357,-8.92536,-9.33174,0.638615,-7.78827,-7.31083,0.0804471,-8.51613,-7.37923,0.0339124,-8.89687,-7.84721,0.250119,-9.42239,-8.3713,0.822354,-8.55822,-9.49555,3.07305,-8.20345,-8.67041,3.4114,-7.82821,-7.76697,3.81794,-9.21879,-8.25245,3.46448,-9.53541,-8.87795,2.73221,-8.74635,-10.2739,2.73656,-9.59489,-9.67802,2.36205,-7.68999,-10.5732,2.34687,-9.00644,-7.56976,3.90958,-9.87579,-7.90583,3.30306,-9.6927,-7.51378,3.65788,-9.97483,-8.38075,2.64402,-10.4336,-7.63052,0.353056,-10.9644,-8.46181,0.690625,-10.2011,-8.57281,0.857569,-9.6434,-7.75888,0.307017,-11.217,-7.50204,0.490822,-11.7821,-8.37102,1.00923,-11.3412,-9.23997,0.798884,-10.7448,-9.38704,0.995568,-11.9943,-9.14833,1.11411,-11.8019,-7.36309,0.59725,-12.1751,-8.04121,1.115,-12.2334,-7.14544,0.617886,-11.4423,-6.77252,0.324179,-11.6922,-6.36471,0.315687,-10.7954,-6.66999,0.210646,-12.6962,-6.88132,0.612234,-13.1618,-6.67487,0.65716,-13.5535,-7.55464,1.10725,-13.7009,-8.31562,1.24778,-9.84068,-6.76946,0.112794,-10.8577,-5.69255,0.306739,-9.56793,-5.70882,0.288754,-13.811,-6.1857,0.642198,-13.5126,-6.4696,0.681805,-13.2763,-5.88617,0.443124,-13.4488,-5.42496,0.394574,-12.8497,-5.81289,0.389445,-12.6959,-4.70794,0.406078,-12.2315,-5.97442,0.338022,-11.7943,-5.12927,0.359042,-14.1986,-5.83326,0.591326,-13.9066,-4.94668,0.379589,-14.3747,-6.66961,0.878875,-14.0175,-7.05215,1.11131,-14.4967,-4.67151,0.424782,-14.6547,-5.52081,0.617909,-14.8572,-6.42428,0.989357,-16.0282,-4.44973,0.721636,-15.4631,-4.83946,0.68434,-15.2153,-4.13866,0.507973,-15.8261,-3.55902,0.60999,-16.6186,-4.22464,0.926111,-16.5253,-3.19633,0.922569,-15.06,-2.70679,0.645232,-16.1237,-2.02259,0.896308,-14.3989,-3.69661,0.502427,-15.9771,-5.26978,0.762253,-15.4438,-5.6637,0.951754,-15.8431,-5.89502,0.745303,-15.4041,-6.13043,1.03941,-16.5314,-5.11774,0.866119,-16.3835,-5.83257,0.76467,-12.3861,-8.40217,1.83295,-12.0509,-8.51876,2.77644,-11.846,-7.90328,3.2816,-12.2646,-8.63828,1.85313,-13.5181,-8.78389,2.73783,-14.009,-8.5755,2.37771,-12.8821,-8.90444,2.53065,-15.2058,-6.82944,2.29527,-15.358,-6.2535,2.20295,-15.6525,-6.06854,2.20744,-15.2568,-6.27528,1.53622,-15.3418,-6.15171,1.53597,-15.1706,-6.75221,1.55938,-11.1777,-7.87764,3.42698,-11.3104,-8.54315,3.12032,-11.449,-9.32914,2.95238,-12.1185,-9.22539,2.66363,-12.3348,-9.16891,1.86054,-10.4807,-7.82242,3.32834,-10.543,-8.54489,2.7569,-10.8039,-9.41214,2.5163,-9.8235,-8.58698,1.69165,-10.2379,-8.82397,1.74357,-10.5393,-9.47734,1.68433,-9.55225,-8.81095,1.59303,-16.2666,-2.42473,2.7106,-16.5987,-3.55867,2.49161,-16.8019,-3.19221,1.65041,-16.5151,-1.99827,1.7458,-16.7404,-4.55893,2.22403,-16.9005,-4.25958,1.51792,-15.772,-1.07273,2.94594,-16.0324,-0.527106,1.7982,-15.3087,-0.383187,0.814181,-16.8359,-5.18089,1.33248,-16.7276,-5.95222,1.12725,-16.7313,-5.42294,1.92164,-16.6778,-6.19449,1.64038,-16.3149,-5.02567,2.73108,-16.2997,-5.76591,2.31692,-16.2467,-6.43968,2.00737,-15.6572,-6.53651,1.98144,-9.98266,-13.0976,1.31461,-10.0628,-13.0995,0.861849,-10.3424,-12.4757,0.935675,-10.0647,-12.537,1.59309,-9.37861,-13.3455,1.35844,-9.3905,-13.433,0.835878,-8.22803,-13.0076,0.567506,-8.63782,-13.3234,0.619871,-8.60902,-13.4409,0.978728,-8.01423,-13.09,1.16861,-8.72685,-13.3799,1.3718,-8.39463,-12.981,1.68979,-9.27666,-13.2142,0.469053,-9.23138,-12.7732,1.8408,-11.661,-12.496,1.14263,-12.1306,-12.4873,1.12093,-12.0107,-12.0843,1.54058,-11.4522,-12.1536,1.41901,-11.5839,-12.4169,0.815527,-12.1288,-12.4541,0.716355,-11.2325,-12.0434,0.992227,-12.5402,-12.2991,1.06354,-12.5289,-11.9062,1.32671,-12.5978,-12.2161,0.751085,-12.7174,-11.7291,0.937113,-14.416,-7.98081,2.23889,-14.0689,-7.54647,1.76829,-14.111,-7.87234,1.79919,-13.9771,-7.546,1.72471,-14.1344,-7.59495,1.29838,-13.7694,-7.15162,1.13364,-15.3117,-6.41013,1.54384,-15.1562,-5.87922,0.996596,-12.4465,-12.0206,0.548097,-12.048,-12.1211,0.499374,-11.6341,-12.1723,0.568716,-12.4647,-11.5989,0.585355,-15.4622,-7.97157,0.540922,-15.6683,-8.30897,0.773823,-15.3883,-8.22155,0.931335,-15.2158,-7.91989,0.762442,-15.9075,-8.12817,0.598633,-15.784,-7.82527,0.421988,-16.0983,-7.49595,0.465705,-16.1624,-7.88488,0.75145,-15.4043,-7.53948,0.47967,-15.6621,-7.50846,0.377469,-15.8178,-7.19326,0.409254,-15.4485,-7.14252,0.546368,-11.6177,-10.2266,2.72273,-12.2699,-10.0113,2.50622,-12.4552,-9.82296,1.78405,-15.6161,-7.09739,1.80484,-16.1861,-7.114,1.73156,-16.5749,-6.88539,1.3471,-11.884,-11.5669,1.85843,-11.3174,-11.6261,1.65002,-11.7746,-11.0132,2.30016,-11.1659,-11.0594,1.96105,-12.4196,-11.358,1.6519,-12.3679,-10.7602,2.11018,-15.1507,-7.66265,1.04678,-15.4515,-8.02261,1.22097,-15.5444,-7.59822,1.50847,-15.1868,-7.27675,1.31373,-15.2455,-6.84025,1.49802,-16.0631,-7.66909,1.39319,-15.9211,-8.12616,1.10901,-14.9093,-7.89071,2.36322,-14.4354,-8.55661,2.0478,-14.9651,-8.5822,2.13657,-16.3829,-7.4352,1.01408,-9.16045,-10.0911,0.382749,-9.60264,-9.3508,1.41104,-8.15507,-10.4128,0.145821,-9.45633,-10.9756,0.16883,-8.37925,-11.3209,-0.00624996,-12.3102,1.61146,7.43408,-11.5748,0.984259,8.06043,-12.1708,-1.80896,6.09695,-12.8475,-1.25382,5.78085,-4.70986,7.25173,5.6923,-12.9375,6.5803,7.48312,-13.3768,7.61284,8.86828,-12.6174,5.84656,8.52755,-13.755,-1.56885,0.619635,-8.2452,-5.24738,0.4416,-7.2148,-5.40076,0.473478,-6.72237,-4.40957,0.78608,-9.31689,-3.95862,0.511265,-6.73187,-6.52686,0.391133,-8.26486,-6.37007,0.258323,-14.3558,-2.74207,4.2743,-13.6584,-3.46124,4.5724,-15.1448,-1.87334,3.84535,-15.6968,-3.17979,3.43397,-10.0795,-4.76902,4.89827,-10.5541,-6.21699,4.19757,-8.82116,-4.92609,4.94955,-8.21748,-1.9201,5.97094,-9.21824,-6.5776,4.27256,-7.45452,-4.99595,4.65135,-7.59502,-6.64708,4.27955,-6.3444,-5.00179,3.75201,-13.3672,8.63375,4.77915,-6.90121,10.4286,0.654762,-13.3269,9.68751,8.86545,-13.2609,9.30059,10.597,-13.0653,7.12266,10.8575,-9.71649,5.95679,0.664088,-7.10654,9.19427,0.704788,-13.8147,-9.27559,1.02851,-13.7748,-8.8324,1.23321,-14.025,-8.411,1.75468,-12.8598,-10.585,0.921076,-14.4449,-9.06135,1.66163,-16.1212,-4.17572,3.10708,-14.9573,-9.13289,1.7138,-14.957,-9.57943,1.31878,-10.1346,-7.23499,3.70995,-10.9504,-7.17029,3.76384,-9.05161,-7.07237,0.150302,-7.10148,-10.4168,1.53784,-8.69687,-12.1409,0.0508812,-7.83206,-12.4143,0.526305,-7.53082,-11.6774,0.518927,-9.0245,-12.7841,0.231162,-7.61572,-12.5249,1.28363,-7.36525,-11.8789,1.3448,-8.12009,-12.3895,1.8822,-7.95577,-11.8297,1.97501,-13.4961,-4.1517,0.433747,-14.9328,-4.64312,0.494253,-15.0556,-5.20963,0.665563,-14.8614,-7.27222,1.15721,-14.4454,-7.34542,1.05749,-13.9375,-7.86505,1.7382,-9.88614,-12.5545,0.374068,-9.73184,-11.8432,0.204084,-9.85745,-13.0015,0.508666,-12.9872,6.90234,14.2939,-12.0212,11.577,10.5987,-12.3018,11.8182,8.26458,-15.2469,-7.64878,2.08297,-15.1887,-7.41971,1.56511,-11.436,-11.8022,0.579073,-11.9468,-11.6261,0.440355,-15.2022,-7.58622,0.64598,-15.1736,-7.30957,0.785762,-12.9773,-9.57747,2.34101,-13.0602,-10.2621,1.85435,-16.5756,-6.56937,0.912237,-11.0473,-11.505,1.16235,-12.6414,-11.1286,1.20564,-12.3975,-10.9853,0.736174,-11.8417,-11.0211,0.509932,-11.2729,-11.2382,0.666474,-10.8994,-10.9187,1.34412,-12.5607,-10.4865,1.53775,-12.2949,-10.3615,0.945655,-11.7261,-10.4275,0.652013,-11.1431,-10.6547,0.793555,-10.9881,-10.2979,2.27871,-10.7405,-10.2419,1.53037,-10.9969,-10.0708,0.926716,-11.5721,-9.88233,0.782051,-12.1547,-9.78188,1.0945,-15.5472,-6.73702,0.665564,-16.0118,-6.78082,0.539102,-15.21,-6.92872,0.962379,-16.3634,-7.06327,0.66072,-15.297,-6.53632,1.05707,-15.6881,-6.34607,0.743265,-16.2037,-6.35574,0.679057,-7.34186,-10.8446,0.579038,-7.20354,-11.175,1.41305,-7.82707,-11.2453,2.11456,-8.98538,-0.913718,0.710996,-5.86456,-4.8899,2.37691,-12.8538,6.92511,12.5966,-13.1985,8.8159,12.4706,-13.3397,8.72918,14.2464,-12.9207,10.5852,8.58643,-10.7744,13.3632,14.2787,-9.0229,14.1699,14.2488,-74.7413,5.00894,137.831,-75.0836,3.94878,137.595,-74.1585,3.18527,137.844,-73.3111,4.2439,138.159,-73.7424,5.89247,138.549,-74.9192,6.23367,138.226,-75.3545,7.25654,139.023,-76.3333,7.42467,138.667,-75.9558,6.48426,137.88,-76.0252,7.645,140.048,-76.8924,7.79194,139.605,-74.7771,7.50823,140.486,-74.2074,6.98165,139.333,-75.849,5.38271,137.513,-75.4807,7.34012,141.717,-76.113,6.22442,142.483,-75.8543,2.84928,142.717,-76.2363,4.6184,142.857,-77.6945,2.58326,141.89,-78.1222,4.52989,141.997,-78.0266,6.15234,141.518,-74.9026,1.41536,141.962,-76.5711,0.96732,141.234,-77.152,7.32477,140.86,-77.4581,7.67625,140.163,-78.2946,7.71705,139.9,-77.7387,7.90613,139.224,-75.9591,4.42167,137.379,-73.5315,0.833111,140.469,-75.1602,0.349121,140.191,-78.7586,7.26114,140.321,-79.3203,6.6829,140.544,-74.8998,2.32105,137.397,-75.7012,3.07977,137.254,-72.7202,1.45454,139.104,-72.7345,2.59169,138.414,-89.5005,9.1958,136.403,-89.0675,9.28564,136.358,-89.1116,9.16208,136.773,-89.4187,9.14909,136.727,-89.7643,8.93725,136.458,-89.5471,8.91558,136.857,-91.7193,3.96308,136.229,-92.4536,4.1601,136.135,-92.3293,4.27286,136.478,-91.8011,4.19957,136.626,-92.5415,4.57031,136.561,-92.905,4.5228,136.096,-86.7373,-2.20027,137.617,-86.2039,-2.03827,137.872,-86.2168,-2.46215,137.277,-86.6678,-2.44596,137.396,-85.4742,-1.77129,138.238,-85.2703,-2.17645,137.66,-86.9085,-1.82118,137.756,-86.4289,-1.5033,138.045,-85.7144,-1.09157,138.383,-87.0683,-1.52912,137.688,-86.7646,-1.08373,137.603,-87.3429,-1.67096,137.512,-87.3043,-2.00362,137.481,-87.1452,-2.35207,137.377,-85.8571,-0.502017,137.934,-84.9833,-0.0213928,138.278,-84.8567,-0.652656,138.755,-84.6358,-1.39485,138.631,-85.8289,-0.236688,137.215,-86.7359,-0.676383,136.961,-85.0012,0.141286,137.452,-84.359,0.463202,137.678,-84.0178,0.439823,138.655,-84.8592,-0.00943632,136.692,-85.6653,-0.295761,136.49,-84.2318,0.38617,136.861,-87.7655,-2.13149,137.177,-87.5736,-2.56082,137.08,-87.6521,-1.52761,137.158,-88.1893,-2.83578,136.742,-88.4073,-2.36432,136.836,-88.5416,-1.85253,136.663,-88.8367,-3.05657,136.409,-89.025,-2.6325,136.479,-89.3524,-2.24596,136.214,-86.8303,-2.86888,136.203,-87.6853,-3.22256,135.806,-87.9244,-3.16971,136.386,-87.0914,-2.79147,136.856,-88.8285,-3.43995,136.022,-88.5777,-3.47919,135.482,-89.3823,-3.73458,135.251,-89.5805,-3.64635,135.729,-90.1608,-3.84418,135.571,-90.0821,-4.00016,135.125,-89.5111,-3.50533,135.971,-89.2707,-3.44275,136.079,-90.3619,-3.50962,135.828,-89.9528,-3.37906,135.893,-89.6834,-3.30026,136.046,-90.7642,-4.11054,135.102,-90.6447,-3.96804,135.508,-90.7064,-4.01066,134.662,-90.1039,-3.84039,134.634,-89.3346,-3.52205,134.765,-90.9292,-3.71463,135.669,-91.1302,-3.26724,135.66,-90.5458,-3.07434,135.834,-90.1143,-2.9767,135.93,-91.1157,-2.90811,135.485,-90.6613,-2.68241,135.604,-90.057,-2.4993,135.853,-90.263,-3.42231,134.371,-91.0044,-3.73818,134.514,-89.4364,-3.06173,134.495,-90.4679,-2.9372,134.385,-89.6454,-2.54469,134.544,-91.1964,-3.29348,134.519,-88.4927,-3.19961,134.978,-88.5834,-2.67822,134.711,-88.8223,-2.14255,134.828,-89.3379,-3.20385,136.213,-89.4855,-2.84806,136.265,-89.8253,-2.95024,136.096,-89.6248,-2.58589,136.199,-89.8538,-2.66008,136.082,-91.1927,-2.90307,134.675,-90.6578,-2.55579,134.693,-89.8855,-2.20069,134.908,-89.095,-1.85188,135.247,-89.2945,-1.87089,135.764,-90.0504,-2.1649,135.415,-88.0084,-1.71255,135.138,-88.3136,-1.42913,135.624,-88.5137,-1.47987,136.197,-90.7559,-2.46598,135.184,-91.3046,-2.8956,135.09,-87.7161,-2.29441,134.967,-86.8519,-1.9508,135.324,-87.1585,-1.34483,135.498,-87.4705,-1.02845,136.004,-86.2562,-1.03792,135.8,-85.959,-1.67029,135.695,-86.5697,-0.657804,136.298,-85.024,-1.42741,136.017,-85.8627,-2.25174,136.012,-84.9583,-1.98842,136.409,-85.3219,-0.751336,136.006,-86.7291,-2.56667,135.609,-87.6485,-1.08958,136.622,-85.0924,-2.22195,136.998,-84.2102,-1.95879,137.411,-84.0768,-1.71628,136.813,-83.1664,-1.38049,137.179,-83.2828,-1.58535,137.827,-84.4065,-1.85933,138.076,-83.4854,-1.41962,138.482,-83.8776,4.07137,136.427,-83.7173,4.9658,136.385,-84.7155,4.94449,136.516,-84.8709,4.10838,136.591,-85.0349,3.47075,137.102,-84.2351,3.1692,136.708,-85.4971,4.93801,136.345,-85.5732,4.14015,136.518,-85.6476,3.59588,137.043,-86.3844,3.65751,136.867,-86.3178,4.14883,136.304,-86.3152,4.94597,136.073,-86.4459,3.55418,137.556,-85.6463,3.48343,137.792,-87.3475,3.69213,137.293,-87.2589,3.75264,136.668,-87.2095,4.19601,136.129,-85.0605,3.50501,137.932,-84.8578,3.37912,137.972,-84.9561,3.25906,137.318,-85.1511,3.09536,137.929,-85.0893,2.90846,137.081,-85.8277,2.79636,137.724,-85.7916,2.63426,136.958,-85.6215,2.0816,136.477,-84.904,2.21729,136.612,-83.8981,2.40139,136.598,-86.7012,2.52536,137.413,-86.5886,2.46643,136.671,-86.3571,1.96774,136.165,-87.733,2.29078,137.04,-87.5553,2.27046,136.327,-87.7939,2.00717,137.782,-86.6405,2.30066,138.132,-85.6679,2.60414,138.497,-87.2909,1.78221,135.85,-88.8405,2.0568,136.616,-88.6192,2.05666,135.952,-88.3207,1.5864,135.478,-86.4446,1.89346,138.65,-85.4789,2.15261,139.012,-87.3735,1.64891,138.349,-88.1362,0.86598,135.561,-87.1204,1.08028,135.941,-89.4,1.40617,135.105,-89.7143,1.86294,135.597,-89.1992,0.658594,135.15,-87.4504,3.98473,137.872,-86.4751,3.89127,138.165,-87.2291,4.47047,138.166,-86.4613,4.48493,138.427,-85.6051,3.87993,138.476,-85.6044,4.54392,138.737,-87.2818,4.95962,138.069,-86.4965,5.06095,138.281,-87.8184,4.48819,138.045,-87.8486,4.19834,137.969,-87.8698,4.88788,137.988,-85.5954,5.17135,138.563,-88.1773,4.1976,137.876,-88.3111,4.48301,137.915,-88.3654,4.89201,137.874,-88.451,4.00411,137.589,-88.8412,4.46193,137.72,-88.8947,4.96028,137.657,-88.2984,5.18568,137.758,-88.5949,5.40233,137.387,-89.5707,5.00598,137.427,-89.5318,5.46025,137.068,-89.5259,4.47182,137.52,-88.186,3.79955,136.441,-89.0984,3.8101,136.206,-89.2388,3.69083,136.807,-88.2997,3.73297,137.042,-89.9472,3.88305,136.005,-90.1186,3.72142,136.585,-89.4035,3.97566,137.309,-90.3256,4.04126,137.137,-88.1376,4.23838,135.937,-89.0347,4.28144,135.732,-87.2448,4.94283,135.893,-88.1796,4.95058,135.704,-89.0781,4.97121,135.513,-89.9226,4.99269,135.447,-89.871,4.37058,135.61,-89.2472,5.57871,135.855,-90.0953,5.52913,135.745,-88.3364,5.59073,136.055,-87.397,5.5918,136.276,-86.4481,5.62941,136.483,-90.7597,3.97574,135.841,-90.9284,3.8222,136.388,-90.6885,4.44541,135.493,-91.1148,4.11939,136.896,-91.6346,4.05828,135.725,-88.0605,1.43714,138.112,-88.2282,1.72469,137.936,-88.6285,1.31372,137.82,-88.6083,1.63579,137.744,-88.9559,1.75249,137.264,-89.2576,1.24371,137.436,-90.1111,1.1111,137.061,-90.0856,1.56349,136.738,-89.9539,1.85405,136.219,-90.9206,0.935146,136.781,-91.1423,1.32114,136.452,-90.9668,1.61567,135.953,-90.7444,1.60183,135.392,-91.9037,1.10496,136.252,-91.8119,1.40386,135.8,-91.6583,1.39013,135.265,-91.4449,1.00953,134.832,-90.4716,1.19305,134.945,-91.2696,0.380561,134.736,-90.2798,0.518501,134.911,-91.2204,-0.222036,135.03,-90.2719,-0.0673419,135.288,-89.2126,0.0851205,135.636,-88.1341,0.346113,136.071,-89.4024,-0.102259,136.282,-90.456,-0.285109,135.897,-88.2747,0.189703,136.729,-92.4564,0.948802,136.109,-92.5229,1.19144,135.721,-92.9057,0.796847,136.066,-93.1209,0.883501,135.724,-92.4845,1.16862,135.212,-93.0695,0.910935,135.289,-92.9734,0.451449,136.212,-93.4349,0.433995,135.737,-93.1792,0.543496,135.093,-92.9009,-0.0340552,136.214,-93.3922,-0.100715,135.698,-93.0951,0.0429323,135.018,-92.3991,0.549233,136.316,-92.0359,0.630332,136.367,-91.9414,0.184326,136.354,-92.298,0.0839204,136.309,-91.4675,0.770633,136.634,-91.5423,1.04432,136.536,-91.7844,0.97357,136.469,-91.8182,0.673615,136.52,-91.3779,0.359098,136.632,-91.7374,0.274276,136.506,-90.8026,0.433473,136.801,-91.5758,-0.00565638,136.434,-91.3213,0.0509974,136.521,-91.5995,-0.223745,136.191,-90.8011,-0.0687765,136.462,-91.3374,-0.458501,135.637,-89.9712,0.573822,137.108,-89.6926,0.116531,136.834,-88.4765,0.920132,137.82,-88.2563,0.667081,137.772,-88.5285,0.420492,137.347,-89.1023,0.764751,137.46,-87.9072,1.03107,138.121,-87.8696,0.730307,137.972,-87.323,0.624443,137.894,-87.1887,1.13948,138.385,-86.2421,1.33827,138.714,-86.1213,0.804994,138.299,-86.0563,0.522387,137.539,-87.1423,0.421975,137.169,-86.1008,0.728855,136.753,-87.0828,0.592477,136.467,-85.1361,0.705517,137.789,-85.1312,0.994927,138.604,-85.2919,0.873224,136.961,-85.281,1.54556,139.062,-84.4051,1.71942,139.389,-84.2298,1.12008,138.772,-84.572,2.43215,139.431,-86.1917,1.25192,136.214,-92.2359,0.220938,134.721,-92.8387,-0.344966,135.097,-92.1382,-0.322051,134.971,-92.9101,-0.503345,135.588,-92.1383,-0.553274,135.532,-92.7014,-0.388938,136.027,-92.1744,-0.338642,136.045,-90.1918,4.52256,137.359,-90.2233,5.00282,137.257,-90.7045,4.29888,137.225,-90.6779,4.59286,137.26,-90.7027,4.98034,137.187,-90.7645,5.24691,137.046,-90.4264,5.4258,136.89,-91.0242,5.25675,136.988,-91.23,5.43339,136.709,-91.0809,4.99439,137.088,-90.2851,5.6747,136.312,-89.4217,5.71233,136.487,-91.111,5.66642,136.171,-90.9269,5.51674,135.645,-88.493,5.70382,136.724,-91.9549,5.39314,136.499,-91.9285,5.57909,136.072,-91.823,5.46828,135.593,-92.4817,5.27762,136.398,-92.625,5.34718,136.065,-91.9889,5.03113,136.755,-92.6131,4.98354,136.551,-91.4483,5.0315,136.901,-91.7063,5.02285,135.326,-90.7521,5.01964,135.375,-92.5045,5.32719,135.685,-92.6206,4.98898,135.56,-91.9311,4.59763,136.793,-91.4064,4.59587,136.963,-91.0502,4.61316,137.144,-90.9578,4.31868,137.138,-83.4592,1.02424,138.976,-83.212,0.754226,139.203,-83.84,0.829475,138.527,-83.4383,1.37499,139.318,-82.5914,1.28107,139.694,-84.1456,0.74765,137.807,-84.4787,0.854895,137.871,-92.557,4.53262,135.565,-91.631,4.48977,135.395,-92.9737,4.97589,136.09,-92.3452,4.17768,135.731,-91.2896,-3.88582,135.106,-91.4925,-3.41553,135.098,-88.2864,8.73235,137.371,-88.6449,8.73737,137.283,-88.5855,8.9589,137.137,-88.2358,9.06721,136.991,-88.8546,8.75751,137.183,-88.7394,8.9673,137.082,-88.7443,9.11139,136.868,-88.7456,8.38771,137.362,-88.9486,8.43543,137.245,-88.8228,8.09936,137.295,-88.9661,8.15392,137.217,-88.4222,8.26791,137.486,-88.567,7.80721,137.203,-89.3755,7.93517,136.537,-89.3169,7.99234,136.078,-89.6748,8.20661,136.18,-89.7229,8.22309,136.553,-89.6957,8.50996,136.034,-89.8493,8.60356,136.521,-89.6177,8.5891,136.91,-89.602,8.29328,136.852,-89.5978,8.85847,135.989,-89.4491,9.11397,136.057,-89.05,9.14248,135.931,-89.1092,8.76299,135.714,-89.2159,8.32566,135.768,-88.4707,9.08981,135.894,-88.4883,8.63667,135.64,-88.5667,9.25883,136.378,-84.4608,-0.52716,136.295,-83.6745,-0.18873,136.548,-84.1451,-1.18186,136.393,-83.2781,-0.86267,136.698,-84.2292,0.718811,137.17,-87.8539,8.47305,135.717,-87.8424,8.96101,135.959,-87.9832,9.17743,136.459,-75.5113,1.72952,136.792,-75.304,0.608882,136.874,-74.5139,1.35661,137.634,-75.8816,2.37868,136.828,-85.9859,-2.50016,136.602,-86.9465,-2.54454,137.254,-78.0508,0.909151,141.01,-78.6191,1.78444,141.229,-79.1993,2.27367,141.182,-79.1358,2.89675,141.43,-79.3707,3.86958,141.443,-79.465,1.38612,140.805,-79.875,2.09422,140.872,-80.1357,2.82087,141.032,-80.3378,1.03569,140.443,-80.7151,1.81994,140.523,-81.0601,2.64455,140.679,-79.0136,0.636284,140.639,-79.9607,0.331627,140.281,-77.8639,0.312249,140.598,-78.4916,-0.000135303,140.223,-79.4029,-0.481852,139.704,-79.5083,4.95701,141.258,-79.4919,5.75841,140.95,-79.8049,4.40045,141.22,-80.5611,4.34124,140.863,-80.5584,5.00675,140.734,-80.3693,3.64347,141.004,-80.5484,5.69296,140.455,-80.0346,7.91244,138.229,-78.9012,7.95549,138.687,-79.4127,7.79051,139.381,-80.4992,7.79906,138.902,-78.4919,7.59414,137.879,-77.2992,7.53882,138.305,-79.6617,7.57703,137.493,-81.6483,7.83616,137.22,-80.7105,7.67337,137.28,-81.067,7.93618,137.962,-82.0282,7.98887,137.828,-81.5238,7.82888,138.559,-82.4515,7.87188,138.346,-79.9146,7.36317,139.753,-80.9631,7.43356,139.31,-81.9709,7.51,138.98,-82.8155,7.57606,138.796,-80.3853,6.89228,139.958,-81.3517,6.9694,139.584,-82.2703,7.01317,139.303,-83.0616,7.04459,139.114,-80.5882,6.32531,140.17,-81.4997,6.35299,139.802,-81.5095,5.67883,140.067,-82.3764,6.34634,139.507,-83.2339,6.29333,139.226,-82.3603,5.62958,139.799,-83.1093,5.54239,139.605,-79.8066,6.27565,140.549,-83.2971,7.9518,138.199,-82.9533,8.04697,137.698,-82.6226,7.94104,137.156,-82.5235,7.47048,136.64,-81.5693,7.24121,136.573,-83.555,7.59513,136.594,-83.5857,8.07386,136.987,-84.3318,8.20264,136.784,-84.3939,7.67623,136.423,-83.7998,8.21371,137.534,-84.4444,8.36987,137.375,-80.6369,6.93667,136.61,-84.0523,8.10791,138.072,-84.6266,8.23302,137.949,-85.0508,8.51298,137.203,-85.0077,8.32795,136.597,-85.1211,7.78603,136.279,-85.1641,8.35602,137.804,-85.8623,8.50954,137.66,-85.7407,8.66452,137.018,-85.3116,7.98562,138.289,-85.8009,8.0917,138.146,-84.8381,7.88294,138.435,-84.2951,7.78733,138.556,-84.4922,7.15799,138.783,-85.0626,7.24535,138.625,-78.1974,6.79761,137.161,-76.9759,6.66521,137.531,-79.4681,6.82262,136.817,-79.5258,5.73912,136.485,-78.1439,5.72,136.802,-76.8975,5.59393,137.172,-78.2102,4.71041,136.778,-76.9665,4.63555,137.09,-76.5978,2.37545,136.488,-77.7545,2.26935,136.253,-77.2754,1.37454,135.925,-76.2685,1.56158,136.248,-79.1475,1.94217,136.339,-78.0338,3.05911,136.653,-79.4392,2.85402,136.622,-79.5831,4.67565,136.512,-82.5031,4.2825,136.383,-82.4842,5.15626,136.331,-81.9547,6.35615,136.286,-81.0921,5.73412,136.297,-78.5539,1.00649,135.925,-80.8421,1.51159,136.622,-79.8994,0.587484,136.306,-77.7399,-0.0607409,135.644,-76.6415,0.48615,135.955,-76.0161,0.86185,136.266,-74.6534,0.163314,139.096,-75.4081,-0.581522,138.718,-76.1087,-0.331297,139.667,-75.6719,-1.05326,137.39,-76.0903,-1.18254,138.396,-75.0603,-0.337668,137.71,-76.8121,-0.907194,139.205,-76.2977,-1.60421,137.02,-76.7146,-1.69622,137.975,-77.444,-1.45126,138.704,-76.8576,-2.02716,136.629,-77.284,-2.40087,136.216,-77.5582,-2.5464,136.975,-77.219,-2.14397,137.483,-78.1954,-2.44288,137.566,-77.9213,-1.97424,138.142,-77.6284,-2.80025,135.811,-77.8115,-2.97077,136.494,-78.4087,-2.8658,137.05,-78.0596,-3.24013,135.45,-78.2276,-3.47611,136.061,-78.7241,-3.34843,136.589,-78.6567,-3.97633,135.608,-78.4956,-3.66303,135.036,-79.1001,-3.88382,136.116,-78.1914,-2.8027,134.916,-78.6499,-3.17438,134.597,-79.1351,-3.49182,134.153,-78.9282,-4.03916,134.503,-78.6573,-2.26957,134.65,-79.0859,-2.69344,134.446,-79.5733,-3.05105,134.149,-79.0802,-4.49126,135.088,-78.3121,-1.82016,134.891,-77.7855,-2.39377,135.201,-79.3309,-1.90722,134.998,-79.0736,-1.44284,135.265,-77.4489,-1.96506,135.514,-78.0843,-1.37362,135.181,-78.9643,-1.06051,135.537,-79.6486,-2.40738,134.757,-79.6277,-3.75989,133.617,-79.3839,-4.35477,133.912,-79.5319,-4.84074,134.463,-79.57,-4.88405,134.898,-79.4163,-4.77569,135.124,-80.0774,-4.97667,134.738,-79.95,-5.03659,133.978,-80.3318,-5.09675,134.423,-79.8835,-4.65775,133.461,-79.8979,-4.87598,135.083,-79.0457,-2.53207,137.358,-78.9457,-2.14797,137.867,-79.5457,-1.7567,137.724,-79.7729,-1.44673,138.07,-78.9166,-1.60428,138.569,-79.4793,-2.0669,137.333,-78.3433,-1.02863,139.239,-79.5484,-1.10113,138.995,-81.4811,-0.708107,139.139,-80.5743,-0.552233,139.434,-80.2196,-1.08297,138.461,-80.9918,-1.04567,138.009,-77.0965,-1.48551,135.806,-77.9392,-0.866969,135.426,-76.5901,-0.928593,136.074,-79.0555,-0.656361,135.781,-79.6518,-1.15051,136.477,-80.0253,-0.840284,136.788,-79.5772,-1.47763,136.162,-79.2686,-0.109296,135.966,-80.0958,-0.33773,136.53,-81.3032,3.49207,140.626,-81.4512,4.25646,140.479,-82.2863,4.0963,140.15,-82.1703,3.29968,140.338,-82.9829,3.06759,140.12,-83.1476,3.87724,139.799,-81.9397,2.41111,140.379,-82.7763,2.19537,140.113,-83.0968,4.76999,139.82,-82.3465,4.88187,140.055,-81.5099,4.98257,140.341,-83.8241,4.07171,139.39,-83.8399,4.72248,139.519,-83.8219,5.40269,139.321,-84.7023,4.63702,139.074,-84.6557,5.28162,138.901,-84.6894,3.93309,138.773,-83.8949,6.5352,138.873,-83.8152,5.93095,138.941,-83.9529,6.24305,138.715,-84.2752,6.22737,138.315,-84.5389,6.48666,138.433,-84.5547,5.82601,138.407,-85.1604,6.65415,138.223,-84.6418,6.3196,137.649,-85.1129,6.48401,137.542,-85.5809,5.61718,138.085,-83.9199,3.65484,139.226,-84.4024,3.52039,138.718,-83.8136,3.33992,139.497,-84.6972,3.03321,138.892,-81.5973,1.53289,140.157,-83.5583,1.97351,139.795,-83.7248,2.73812,139.845,-82.1399,0.47644,139.839,-81.2498,0.75183,140.113,-82.9741,0.14026,139.516,-81.8481,-0.158533,139.77,-82.7405,-0.52167,139.441,-83.8914,-0.224319,139.128,-83.7031,-0.941996,139.012,-82.4536,-0.998154,138.884,-82.2026,-1.19543,138.145,-82.295,-0.407451,136.844,-82.7201,0.616643,136.653,-80.1043,-3.31431,133.719,-80.0597,-2.84623,134.478,-80.5907,-3.17857,134.122,-80.4555,-2.90915,135.014,-80.0508,-2.43219,135.382,-80.9704,-3.34245,134.659,-80.6072,-3.25616,135.535,-81.0947,-3.7669,135.132,-80.1561,-2.71904,135.951,-79.9678,-3.12693,136.255,-80.4244,-3.81222,135.845,-80.8745,-4.35051,135.348,-79.755,-1.92337,135.779,-79.8126,-2.18569,136.44,-79.6581,-1.72233,136.942,-80.6936,-3.72442,133.346,-81.1517,-3.63811,133.781,-80.1962,-4.11627,133.201,-81.5523,-4.2757,133.554,-81.1673,-4.34059,133.192,-81.4615,-3.83585,134.311,-81.7887,-4.3832,134.01,-80.7248,-4.58837,133.057,-81.7082,-4.88789,133.51,-81.3759,-4.93605,133.249,-81.0356,-4.96606,133.117,-81.5096,-4.22405,134.735,-81.7988,-4.62629,134.392,-81.6538,-5.30476,133.703,-81.2861,-5.33868,133.489,-80.8678,-5.24206,133.308,-81.0042,-5.41158,133.885,-80.7222,-5.34982,133.64,-80.3642,-5.22782,133.743,-80.4009,-4.97336,133.269,-81.9182,-4.87759,133.845,-81.868,-5.18205,133.886,-81.924,-4.90715,134.149,-81.7754,-5.15894,134.207,-81.5457,-4.94537,134.562,-81.414,-5.38298,134.126,-81.0982,-5.18521,134.472,-80.6457,-5.26599,134.176,-81.2494,-4.66055,134.889,-80.8114,-4.98853,134.753,-80.5496,-4.83248,135.057,-80.5631,-4.48988,135.536,-80.3081,-4.72296,135.352,-80.4146,-4.31204,135.719,-80.0984,-4.48776,135.647,-79.6851,-4.69362,135.412,-79.4199,-4.35593,135.709,-79.8954,-4.07205,135.94,-79.5829,-3.52365,136.317,-84.5879,5.77238,136.977,-83.5854,5.91926,136.624,-84.3356,6.14827,137.179,-82.8393,6.71004,136.451,-83.8179,6.94196,136.564,-84.3028,6.39801,136.96,-84.6333,7.05522,136.484,-84.9253,6.63828,136.92,-85.3394,7.19883,136.381,-85.5464,6.8437,136.825,-85.8103,7.93658,136.157,-86.0,7.38269,136.253,-86.1839,7.05341,136.671,-86.4897,8.11679,135.955,-86.6696,7.56104,136.052,-86.8646,7.23288,136.474,-87.0208,7.16435,137.026,-86.3064,6.97013,137.229,-85.6756,6.72127,137.406,-85.7059,8.46117,136.437,-86.4197,8.64335,136.241,-86.4997,8.87486,136.806,-84.4508,6.21591,137.713,-84.766,5.97888,137.657,-85.5853,5.80608,137.433,-85.5208,5.64239,136.75,-86.5654,5.47755,137.814,-86.5592,5.71161,137.18,-87.5924,5.36772,137.623,-87.531,5.66953,136.958,-84.7035,1.50537,136.564,-83.6888,1.65183,136.604,-84.5224,0.916319,137.02,-83.6927,0.868424,136.733,-85.5462,7.39849,138.433,-85.7033,6.88211,138.031,-86.3374,7.17885,137.86,-86.0006,7.58465,138.251,-87.1294,7.41392,137.637,-86.8444,7.56786,137.933,-86.5661,7.47865,138.018,-86.4156,7.77231,138.138,-87.8992,7.57546,137.381,-87.7422,7.33642,136.826,-87.9322,8.12048,137.689,-87.3462,7.98835,137.88,-86.8497,7.90837,138.014,-87.5509,7.42235,136.294,-88.388,7.53304,136.664,-88.1905,7.61727,136.158,-87.7635,8.67384,137.555,-87.1729,8.51287,137.763,-86.7023,8.3191,137.927,-86.6981,8.76332,137.432,-86.507,8.52954,137.77,-87.5058,8.98756,137.146,-86.261,8.17775,138.05,-87.3523,7.76252,135.899,-87.9949,7.96219,135.802,-87.1912,8.29959,135.805,-88.6137,8.13621,135.72,-88.7792,7.79408,136.074,-88.9258,7.72751,136.565,-87.1541,8.81428,136.07,-87.2786,9.06297,136.6,-89.0289,7.99238,137.029,-89.3506,8.13707,136.916,-89.3081,8.50076,137.075,-89.0874,8.44005,137.157,-88.99,8.81635,137.1,-89.222,8.86815,137.02,-86.2169,8.43628,137.85,-85.4524,1.39325,136.46,-87.5973,-2.89586,135.245,-87.9661,5.17171,137.827,-92.3739,0.790294,134.813,-77.0726,0.0754102,140.374,-77.6885,-0.478043,139.792,-83.5892,7.67074,138.666,-83.7985,7.117,138.939,-79.2531,-2.96425,136.827,-79.633,-2.54078,136.781,-79.8151,-1.39764,137.316,-80.1553,-1.18255,137.567,-80.9461,0.103549,140.004,-76.77,3.10795,136.87,-82.1208,-1.02758,137.415,-80.9934,-0.0951064,136.795,-80.9851,-0.884279,137.341,-75.9208,-0.292872,136.446,-74.4095,0.504872,138.192,-82.5678,5.75448,136.349,-80.9378,2.63688,136.629,-81.0459,4.54807,136.388,-81.6518,0.713818,136.681,-82.4653,2.54214,136.599,-82.5416,3.38368,136.494,-81.026,3.57897,136.514,-79.5685,3.74509,136.624,-78.2029,3.85251,136.812,-76.9584,3.83842,137.058,-82.4283,1.68516,136.663,-76.1335,3.77632,137.286,-73.6942,2.11598,138.152,-73.8418,0.703694,139.387,-73.629,1.19484,138.693,-2.92124,-11.6999,167.706,-2.56612,-12.0745,168.13,-2.48619,-12.1114,167.646,-2.78681,-11.7495,167.292,-7.65993,-3.52041,173.467,-7.69939,-3.44332,174.222,-7.5777,-3.92304,174.435,-7.54068,-4.10155,173.398,-8.28593,-2.24781,174.316,-8.73744,-1.80892,174.889,-8.73501,-2.04548,175.298,-8.24661,-2.70178,174.421,-8.31325,-2.29117,175.394,-7.99879,-3.10086,174.394,-8.14599,-0.905697,171.759,-7.92791,-1.29681,171.238,-8.05258,-0.90633,171.066,-8.37584,-0.449731,171.714,-8.51416,-0.656909,172.681,-8.84021,-0.127584,172.732,-8.74796,-0.583304,173.783,-9.10379,-0.0458178,173.949,-8.7679,0.329985,172.852,-9.11595,0.398018,174.2,-9.08336,-1.10726,175.093,-9.12195,-1.05101,175.582,-8.64197,-1.07962,175.722,-8.32049,0.377439,172.927,-8.66394,0.421203,174.242,-8.27752,-0.0641382,171.706,-7.84713,0.00733085,171.802,-7.93512,-0.615621,170.863,-7.52847,-0.569455,170.927,-7.48025,-1.36582,170.177,-7.48402,-2.06496,169.676,-7.25403,-2.2575,169.806,-7.21618,-1.40107,170.384,-7.54028,-0.398122,171.887,-7.9106,-0.155953,172.79,-8.1638,-0.14355,173.813,-8.04781,-1.33443,175.169,-7.78764,-2.68165,174.926,-7.28495,-0.818579,171.106,-7.10746,-0.816289,171.218,-7.19908,-0.534748,171.896,-7.09996,-2.13844,169.847,-7.05153,-0.838928,170.548,-7.22682,-2.8065,169.838,-7.44566,-2.72325,169.763,-7.77993,-2.24804,169.698,-7.72652,-1.63316,174.713,-7.62693,-2.8481,174.728,-7.65271,-2.84066,170.225,-7.37447,-3.11923,170.378,-7.98695,-2.36263,170.248,-7.89206,-1.4555,170.151,-8.05355,-1.6802,170.567,-7.97093,-1.78873,170.952,-7.92736,-2.29426,170.936,-7.5466,-3.07492,171.388,-7.67312,-3.26762,171.993,-7.48708,-3.71872,171.719,-7.38668,-3.43078,171.027,-7.55397,-3.96502,172.511,-7.7314,-3.4237,172.707,-7.79065,-2.95244,172.875,-7.82234,-3.05451,173.645,-8.85004,-0.817068,174.523,-9.17061,-0.41862,174.785,-8.8891,-1.13804,174.806,-9.23234,-0.12403,175.179,-8.76817,-0.0809926,175.267,-8.24575,-0.472616,174.67,-7.62982,-0.45237,173.503,-7.7235,-0.778476,174.24,-7.43645,-0.375984,172.699,-7.94177,-2.73336,173.728,-7.64932,-2.52697,172.845,-7.86014,-2.19389,173.245,-8.05124,-2.30499,173.756,-7.74915,-2.94545,172.187,-7.66969,-2.67038,171.678,-7.53395,-2.98686,170.928,-7.71506,-2.74499,170.931,-6.78883,-1.05298,169.245,-6.52675,-1.39221,167.791,-6.48044,-0.0301589,167.917,-6.6259,0.121573,169.316,-7.78101,-1.32589,175.4,-7.69877,-2.55981,175.587,-7.18085,-0.0206119,171.842,-6.84731,0.442516,170.65,-7.07585,0.852803,171.978,-7.68409,-0.405793,174.796,-7.54416,0.0812248,173.907,-7.37579,0.219449,172.913,-4.88244,4.55219,167.752,-5.61294,3.32721,167.793,-5.95836,3.62489,166.29,-5.16245,5.10334,166.269,-6.06371,2.17978,167.853,-6.3288,1.08681,167.917,-6.43017,1.19036,166.418,-6.30683,2.33277,166.344,-3.77821,5.68879,167.743,-3.92526,6.4555,166.313,-2.4888,6.36026,167.732,-2.50442,7.16558,166.299,-6.50053,-1.0036,166.245,-6.45701,0.0985892,166.438,-1.24393,7.30572,166.283,-1.25495,6.57629,167.736,-7.40444,-5.01412,173.37,-7.3751,-4.71151,172.269,-7.30161,-4.32843,171.331,-7.22247,-3.90999,170.544,-7.14385,-3.44786,169.901,-7.03701,-2.92038,169.445,-6.90718,-2.14809,169.245,-3.46986,-8.76335,183.461,-3.35513,-9.99123,182.258,-4.51496,-9.02547,181.907,-4.66627,-7.87075,182.949,-5.53929,-7.93673,181.467,-5.6679,-7.00333,182.328,-3.2912,-10.8582,181.066,-4.44696,-9.85568,180.824,-5.49484,-8.65141,180.46,-1.02822,-11.9647,181.204,-1.04545,-11.1928,182.516,-1.03613,-10.2614,183.701,-4.37576e-005,-10.4491,183.676,-3.27825,-11.3996,180.013,-4.43699,-10.4226,179.818,-5.48016,-9.21737,179.446,-6.34342,-7.85832,178.892,-6.3593,-7.33072,180.033,-1.02054,-12.4198,180.081,-4.51377e-005,-12.518,180.077,-2.12905,-11.5681,181.185,-2.11488,-12.062,180.084,-2.16821,-10.734,182.46,-2.19322,-9.5877,183.743,-6.3254,-6.81067,181.077,-6.2388,-6.40097,181.814,-7.14473,-6.13183,173.22,-6.7429,-7.446,172.866,-6.85573,-6.6391,171.392,-7.15203,-5.64556,171.916,-6.85741,-6.00419,170.244,-7.11299,-5.12147,170.835,-6.81146,-5.366,169.278,-7.05733,-4.57863,169.955,-6.73501,-4.67365,168.497,-6.97366,-3.97571,169.272,-6.60359,-3.90922,167.925,-6.83695,-3.29398,168.763,-6.27349,-8.43457,177.8,-5.46217,-9.69487,178.515,-6.13599,-9.07683,176.968,-5.42791,-10.1257,177.68,-4.45565,-10.8255,178.928,-4.48204,-11.1479,178.088,-3.30448,-11.7523,179.116,-3.34415,-12.0165,178.272,-2.12623,-12.3807,179.164,-2.13933,-12.6012,178.318,-1.02191,-12.7076,179.153,-1.01636,-12.8846,178.315,-6.5951,-8.17903,175.912,-6.95937,-6.94263,176.623,-7.00687,-6.35632,178.288,-6.99939,-5.88589,179.638,-6.90206,-5.51545,180.869,-7.13142,-6.50415,174.743,-6.77103,-7.67141,174.539,-6.31098,-2.42952,166.824,-6.65868,-2.46848,168.373,-6.41671,-3.09199,167.491,-6.38788,-2.04872,165.645,-5.40952,-10.5245,176.862,-6.01309,-9.63054,176.246,-4.52979,-11.4462,177.23,-3.41245,-12.2469,177.404,-5.33493,-10.8286,176.093,-5.86133,-10.0503,175.579,-1.03891,-12.9939,177.508,-2.18723,-12.7662,177.474,-1.05242,-13.0257,176.712,-2.22029,-12.8058,176.647,-3.42937,-12.3486,176.556,-4.50906,-11.6413,176.409,-6.1125,-9.46807,174.937,-6.34442,-8.92745,175.394,-6.44863,-8.55846,174.389,-6.37692,-8.55221,173.369,-6.16157,-9.20748,174.256,-6.0726,-9.23913,173.579,-5.84869,-9.51851,172.977,-6.11641,-8.94337,172.524,-6.35297,-8.25229,171.781,-6.47904,-7.56202,170.724,-6.4728,-6.90619,169.624,-6.41189,-6.22025,168.599,-6.33135,-5.50585,167.718,-6.2435,-4.78263,167.044,-6.13566,-4.05657,166.53,-6.05657,-3.46537,165.857,-6.12748,-3.07346,164.719,-2.24691,-12.5835,170.579,-1.95865,-13.0005,170.87,-1.81042,-13.1437,170.281,-2.00236,-12.7499,170.01,-2.97184,-10.7738,164.874,-3.37526,-10.1551,164.379,-3.63623,-10.079,165.4,-3.23722,-10.6719,165.561,-2.70436,-12.0103,168.697,-2.2091,-12.4305,169.084,-2.10071,-12.497,168.497,-0.863958,-12.1058,164.368,-0.990541,-12.0518,163.68,-1.21259,-11.4382,162.322,-1.17888,-10.7328,161.841,1.76429e-006,-12.125,162.836,-1.11749,-11.9308,163.047,-4.16938,-9.26454,165.329,-4.30996,-9.69583,166.545,-3.8191,-10.301,166.364,-3.41757,-10.7438,166.284,-3.0956,-11.0617,166.27,-2.92847,-11.0718,165.76,-2.68596,-11.1986,165.261,-2.28914,-11.4531,164.735,-2.5593,-11.0715,164.235,-2.45211,-11.4552,165.609,-2.08164,-11.6825,165.172,-2.94523,-10.4974,163.578,-4.77471,-8.2861,165.647,-4.85884,-8.92163,166.889,-4.7305,-7.90023,164.439,-3.92843,-9.29066,163.653,-2.43136,-12.3227,169.681,-2.9295,-11.9066,169.294,-3.23763,-11.7463,169.925,-2.69536,-12.1859,170.286,-2.93116,-12.0505,170.938,-3.54732,-11.5716,170.652,-3.75773,-11.2382,169.403,-4.35647,-10.7744,170.249,-4.72098,-10.1561,169.15,-4.12107,-10.7346,168.63,-3.36281,-11.4899,168.795,-3.68049,-11.0728,168.137,-3.09975,-11.6251,168.229,-3.37033,-11.2619,167.66,-3.13199,-11.3843,167.247,-3.06901,-9.89319,162.855,-4.85701,-9.59432,168.085,-4.30211,-10.2404,167.661,-3.84769,-10.6654,167.304,-3.47995,-10.9534,167.0,-3.17919,-11.1677,166.771,-1.57249,-12.9882,169.437,-1.38655,-13.4108,169.946,-1.50329,-12.9769,168.763,-0.785655,-13.4381,169.367,-0.786339,-13.3459,168.875,-4.35289e-005,-13.4849,168.913,-0.755847,-13.7491,169.832,-2.42425,-12.4202,171.19,-2.05749,-12.7409,171.444,-1.7816,-12.9982,171.715,-1.79259,-13.1966,171.313,-2.85131,-11.2738,166.291,-2.68545,-11.32,165.955,-2.94894,-11.3264,166.626,-2.93897,-11.4815,166.955,-2.05978,-12.5306,167.983,-1.48595,-13.0006,168.247,-0.793894,-13.3666,168.412,-4.41366e-005,-13.5037,168.456,-1.73982,-11.741,164.174,-1.55997,-11.9112,164.734,-1.95982,-11.4919,163.592,-2.19725,-10.9515,162.883,-2.22801,-10.2972,162.294,-5.85945,-9.02732,171.118,-5.98187,-8.4516,170.124,-5.9866,-7.82696,169.049,-5.92668,-7.14216,167.972,-5.85366,-6.44593,166.992,-5.80431,-5.79272,166.191,-5.23275,-9.83796,170.641,-5.38797,-9.33893,169.625,-5.44389,-8.75307,168.546,-5.40526,-8.06772,167.405,-5.33708,-7.38111,166.304,-5.30591,-6.80033,165.357,-2.17689,-9.76147,161.787,-3.14517,-9.30763,162.352,-3.12177,-8.59784,161.522,-4.01946,-7.84018,162.199,-4.07162,-8.50744,162.961,-4.70035,-6.77508,162.925,-4.77674,-7.43668,163.657,-5.24089,-5.67532,163.875,-5.29873,-6.27377,164.622,-5.71032,-4.60101,164.831,-5.76315,-5.17921,165.548,-1.10251,-10.1724,161.431,-0.00348068,-10.5328,161.353,-0.0396078,-9.86795,160.704,-1.04548,-9.59628,160.741,-2.09853,-9.15006,160.991,-5.7533,-4.09315,163.74,-2.983,-7.91091,160.783,-3.81303,-7.17076,161.435,-4.54297,-6.07153,162.096,-5.22569,-5.06681,162.857,-1.77764,-13.472,170.431,-1.84711,-13.3804,170.815,-1.74072,-13.7093,170.891,-1.71286,-13.8057,170.541,-1.48048,-14.0521,171.021,-1.48053,-14.1507,170.661,-1.11578,-14.4002,171.148,-1.12753,-14.5097,170.761,-1.67774,-13.5936,171.235,-1.39828,-13.905,171.398,-0.67062,-14.929,171.293,-0.677271,-15.0048,170.757,-4.91934e-005,-15.3153,170.734,-1.29198,-13.7165,171.757,-1.01483,-14.0283,171.941,-1.06483,-14.2326,171.55,-0.637751,-14.5086,172.172,-0.64847,-14.7362,171.751,-4.76477e-005,-14.8031,172.311,-1.57306,-13.4357,171.558,-1.80699,-13.3672,171.111,-4.54258e-005,-14.579,172.749,-0.637147,-14.2918,172.599,-1.00913,-13.8327,172.353,-1.25258,-13.5175,172.153,-1.51496,-13.2495,171.949,-1.57677,-13.6035,170.157,-1.57879,-13.8799,170.281,-4.25608e-005,-15.1134,170.229,-0.648513,-14.8514,170.333,-4.33155e-005,-14.914,170.028,-0.478322,-14.7703,170.144,-1.39168,-14.2007,170.403,-1.08454,-14.5373,170.482,-4.5537e-005,-14.5785,169.939,-0.491841,-14.1716,169.989,-0.430944,-14.4897,170.074,-0.614378,-14.6504,170.228,-0.771626,-14.6928,170.327,-1.01666,-14.4959,170.376,-1.38932,-13.9051,170.159,-1.37126,-13.6942,170.057,-0.646675,-14.1205,170.088,-0.864797,-13.8192,170.016,-1.17485,-13.6437,169.999,-1.24963,-14.1959,170.284,-0.575551,-14.4241,170.167,-0.805525,-14.1098,170.168,-0.710518,-14.4056,170.242,-0.67855,-14.5835,170.271,-0.769011,-14.6086,170.325,-0.899281,-14.4456,170.324,-1.06378,-14.1624,170.233,-1.19089,-13.8859,170.122,-1.24337,-13.7318,170.048,-1.13514,-13.7116,170.03,-0.976817,-13.845,170.087,-5.2688,-10.5644,174.847,-5.58674,-10.3591,175.101,-5.12232,-10.9668,175.521,-4.87791,-11.001,175.192,-4.35765,-11.627,175.791,-4.17321,-11.5175,175.448,-5.29977,-10.2943,173.584,-4.98788,-10.5651,173.322,-5.23475,-10.3133,172.948,-5.5757,-9.96622,173.299,-4.93639e-005,-13.4191,174.89,-0.687746,-13.1521,174.732,-0.760462,-13.011,175.197,-4.18998,-11.1369,172.556,-3.56474,-11.5017,172.545,-3.68393,-11.4991,172.042,-4.33514,-11.0318,172.033,-5.46718,-9.97284,172.506,-3.34601,-12.2114,175.891,-3.21771,-11.9409,175.507,-1.01893,-12.9332,175.82,-4.5343e-005,-13.1028,176.061,-2.97835,-11.7715,172.656,-3.395,-11.495,172.981,-2.83014,-11.6733,173.085,-3.07889,-11.8629,172.173,-2.57605,-12.1281,172.346,-2.51212,-11.9689,172.81,-4.01284,-11.2227,172.994,-2.0948,-11.9331,173.366,-2.39892,-11.8039,173.224,-2.33214,-11.6503,173.59,-2.0686,-11.7281,173.698,-4.7637,-10.7242,172.694,-4.95169,-10.5026,172.187,-4.55673,-10.8948,173.118,-2.22355,-12.6284,175.925,-2.27407,-12.2282,175.433,-2.27089,-11.808,175.169,-3.10126,-11.7091,175.32,-4.03844,-11.4236,175.269,-4.6978,-10.9774,175.004,-5.01466,-10.6485,174.734,-5.04297,-10.5103,173.844,-4.76868,-10.7407,173.648,-4.37798,-11.0328,173.484,-3.86478,-11.3121,173.382,-3.27145,-11.5027,173.382,-2.72524,-11.5941,173.475,-1.53742,-12.4399,175.242,-1.73993,-11.9507,174.923,-5.67772,-9.54241,171.92,-5.09943,-10.2161,171.523,-4.40256,-10.9043,171.341,-3.6936,-11.5033,171.411,-2.54367,-12.2725,171.801,-3.06675,-11.9454,171.594,-1.56032,-12.7926,172.869,-1.2953,-13.0634,173.041,-1.27631,-13.3093,172.6,-1.53383,-13.042,172.413,-0.636773,-14.0793,173.043,-0.622584,-13.8519,173.486,-4.40199e-005,-14.1162,173.632,-5.8055,-9.91846,174.646,-5.47385,-10.2529,174.526,-5.18981,-10.437,174.499,-1.30178,-12.7675,173.448,-1.56288,-12.4999,173.289,-1.32171,-12.4631,173.831,-1.57,-12.2146,173.672,-1.42042,-12.1366,174.23,-1.63425,-11.9436,173.978,-2.17981,-12.3522,172.519,-2.15634,-12.141,172.961,-1.49794,-12.0632,174.626,-1.23382,-12.5285,174.843,-1.12201,-12.6283,174.434,-1.04875,-13.1126,173.649,-1.04212,-13.3928,173.233,-1.03394,-13.63,172.794,-1.06911,-12.838,174.044,-4.28675e-005,-13.6279,174.475,-0.641893,-13.3563,174.321,-5.01409e-005,-13.8659,174.061,-0.621911,-13.5997,173.912,-1.81989,-12.7942,172.215,-2.13727,-12.5469,172.008,-1.85587,-12.5655,172.696,-1.85154,-12.3079,173.13,-1.82906,-12.0606,173.529,-1.84495,-11.8225,173.827,-5.85856,-9.71954,174.186,-5.77868,-9.75147,173.724,-5.55075,-10.1057,174.203,-5.48934,-10.1298,173.883,-5.26149,-10.3462,174.27,-5.21002,-10.3754,174.052,-3.04469,-11.5183,173.992,-2.48117,-11.4563,174.108,-2.59066,-11.5373,173.823,-3.1527,-11.5302,173.725,-2.13944,-11.3065,174.214,-2.23228,-11.4964,173.924,-1.95094,-11.2697,174.256,-2.01735,-11.5039,173.996,-1.83594,-11.2854,174.278,-1.8459,-11.5488,174.074,-1.74603,-11.3085,174.326,-1.702,-11.6123,174.185,-1.69503,-11.3178,174.415,-1.61406,-11.6653,174.356,-1.7228,-11.3015,174.524,-1.65752,-11.6412,174.572,-1.88379,-11.2974,174.652,-1.83125,-11.5637,174.782,-2.28827,-11.4037,174.831,-2.23512,-11.5051,175.016,-3.01698,-11.5902,175.005,-3.02864,-11.5785,175.197,-3.94055,-11.3927,175.146,-3.86465,-11.449,174.974,-4.45962,-10.9818,174.771,-4.56084,-10.9478,174.884,-4.68934,-10.686,174.625,-4.82642,-10.6655,174.673,-4.77604,-10.565,174.522,-4.95701,-10.5207,174.505,-4.79809,-10.5432,174.431,-5.00479,-10.4734,174.351,-4.75881,-10.6006,174.355,-4.95924,-10.5167,174.213,-4.65792,-10.7285,174.277,-4.4829,-10.929,174.175,-4.60352,-10.8651,173.938,-4.82724,-10.6479,174.081,-4.17695,-11.1909,174.056,-4.25348,-11.1415,173.8,-3.67202,-11.4244,173.972,-3.75283,-11.3941,173.713,-4.52239,-10.752,174.386,-4.38615,-10.9286,174.301,-4.37764,-11.0023,174.717,-4.58088,-10.7174,174.618,-3.81275,-11.4335,174.867,-1.98734,-11.2072,174.552,-2.34127,-11.3449,174.712,-1.8638,-11.1968,174.465,-1.83643,-11.2134,174.417,-1.85759,-11.2154,174.379,-2.17552,-11.1796,174.332,-2.00574,-11.1703,174.362,-2.45704,-11.3693,174.238,-1.88324,-11.1754,174.394,-1.87113,-11.1703,174.411,-1.9041,-11.1485,174.436,-3.00717,-11.552,174.873,-2.95435,-11.4372,174.132,-3.61299,-11.3735,174.108,-4.6039,-10.6353,174.446,-2.02609,-11.1444,174.501,-2.36472,-11.1813,174.66,-3.0146,-11.3878,174.86,-3.79126,-11.2687,174.875,-4.32234,-10.9151,174.738,-4.50701,-10.6833,174.646,-4.5004,-10.6099,174.479,-4.41358,-10.7051,174.403,-4.28821,-10.8472,174.302,-2.9624,-11.2679,174.126,-3.59563,-11.2306,174.102,-2.50874,-11.1694,174.241,-2.24817,-11.0807,174.427,-2.03306,-11.1383,174.427,-4.12687,-11.1636,174.195,-4.06349,-11.0435,174.188,-4.64035,-10.5978,174.555,-4.55645,-10.5839,174.59,-1.91216,-11.1974,174.364,-1.92379,-11.1591,174.4,-4.6439,-10.5787,174.496,-4.55059,-10.5649,174.535,-2.61442,-10.8983,174.169,-2.41393,-10.8581,174.398,-2.54923,-10.9031,174.69,-3.0399,-10.9504,174.877,-3.72119,-10.8082,174.918,-4.21752,-10.6376,174.795,-4.42835,-10.532,174.675,-4.50556,-10.4857,174.603,-4.51304,-10.4757,174.545,-4.44287,-10.4917,174.474,-4.31239,-10.537,174.368,-4.16687,-10.6232,174.242,-3.96241,-10.7522,174.111,-3.59751,-10.8963,174.015,-3.06693,-10.9454,174.033,-2.67923,-10.5039,174.239,-2.71026,-10.4787,174.561,-3.0447,-10.381,174.63,-3.54796,-10.3028,174.663,-3.99316,-10.2992,174.631,-4.26007,-10.3251,174.56,-4.40131,-10.347,174.527,-4.46801,-10.3763,174.523,-4.41326,-10.3722,174.465,-4.28342,-10.3467,174.384,-4.11048,-10.3442,174.3,-3.86874,-10.3437,174.214,-3.5283,-10.3551,174.141,-3.0944,-10.3858,174.137,-6.35098,3.89689,179.957,-6.48209,2.2531,181.797,-7.1255,1.44529,180.424,-7.01455,2.81302,178.796,-5.31554,5.00898,181.069,-5.48247,2.98781,183.065,-7.14832,-0.233871,181.542,-6.49895,0.222815,182.998,-5.5142,0.507095,184.29,-3.89901,5.96387,182.065,-4.09472,3.64071,184.223,-4.1593,0.746736,185.395,-4.34658,6.08546,173.357,-4.75697,6.28834,175.884,-5.77147,5.21481,175.326,-5.36886,5.05898,173.025,-6.49496,4.02426,174.773,-6.10886,3.91935,172.744,-2.99822,6.93309,173.549,-3.37651,7.20863,176.295,-7.10626,-2.02085,182.06,-6.46012,-1.87152,183.466,-5.45585,-1.94537,184.706,-4.10251,-2.08928,185.709,-2.28449,0.965927,186.276,-2.29296,-2.22235,186.507,-2.19737,4.12386,185.142,-2.07768,6.57196,182.899,-1.53227,7.4392,173.695,-1.7288,7.80744,176.555,-7.28802,-3.99217,180.748,-7.4269,-4.3338,179.336,-7.66935,-2.81641,179.029,-7.49234,-2.38024,180.541,-7.74755,-1.41397,178.518,-7.54379,-0.8174,180.01,-7.69327,-0.110152,177.71,-7.49685,0.634715,179.032,-7.56076,0.958047,176.582,-7.38047,1.82664,177.653,-7.15044,1.90653,173.73,-6.85629,1.80147,172.222,-6.56614,2.81887,172.483,-6.91516,2.90582,174.236,-7.30715,1.02156,173.281,-7.7805,-0.768411,176.491,-7.65627,0.210861,175.631,-7.79327,-2.00132,177.037,-7.705,-3.30174,177.49,-7.45785,-4.76517,177.861,-6.06177,2.2845,169.349,-6.38896,1.21767,169.358,-5.57145,3.37343,169.318,-4.8426,4.49139,169.288,-3.80542,5.51349,169.285,-2.56217,6.2197,169.319,-6.92509,-3.80116,182.111,-6.27667,-3.89833,183.356,-5.22309,-4.25461,184.463,-3.87696,-4.76464,185.331,-2.16794,-5.27553,186.005,0.000937175,6.62565,167.717,2.67639e-005,6.6567,169.303,-1.27625,6.56389,169.321,-2.45543e-005,0.982338,186.601,-1.92358,7.71804,179.749,-1.36357e-005,6.76628,183.242,-1.00739e-005,8.00295,176.669,-3.62839,7.10298,179.224,-5.04063,6.11587,178.544,-6.10812,4.8949,177.719,-6.80554,3.68276,176.849,-7.19088,2.59578,176.004,-7.38534,1.64177,175.218,-7.4989,0.81191,174.522,-6.58206,1.49231,170.761,-6.24999,2.52763,170.847,-5.76266,3.60177,170.907,-5.02037,4.70969,170.981,-3.98211,5.72994,171.102,-2.72433,6.50226,171.216,-1.37863,6.93882,171.274,-7.6504,-3.77154,175.857,-7.44864,-5.15401,176.247,-7.42725,-5.18472,174.672,-6.57998,-5.36354,181.966,-5.95429,-5.66518,182.942,-4.90929,-6.28457,183.833,-3.61844,-7.0489,184.53,-1.90927,-7.96589,185.005,-4.26102e-005,-7.8162,185.459,-0.78833,-12.2471,165.04,-2.67521,-11.4048,166.324,-2.5101,-11.4698,166.097,-2.28179,-11.6163,165.828,-1.93614,-11.838,165.532,-1.44299,-12.0693,165.269,-3.94582e-005,-12.3154,165.889,-4.17128e-005,-12.4588,165.746,-0.690774,-12.3399,165.799,-0.654027,-12.2036,165.936,-1.28876,-12.1412,165.916,-1.22433,-11.9835,166.033,-1.75709,-11.9083,166.034,-1.68929,-11.7742,166.1,-2.11092,-11.6726,166.146,-2.05453,-11.579,166.154,-2.3063,-11.5306,166.251,-2.26437,-11.4718,166.256,-2.45005,-11.457,166.375,-2.40779,-11.4041,166.375,-2.36131,-11.2914,166.365,-2.20953,-11.3501,166.245,-1.98609,-11.418,166.13,-1.62749,-11.5366,166.046,-1.17511,-11.7229,165.991,-0.622392,-11.9596,165.956,-2.39273,-11.5372,166.198,-2.5451,-11.4645,166.354,-2.19162,-11.6881,166.04,-1.8496,-11.9314,165.803,-1.37516,-12.1808,165.605,-0.744729,-12.385,165.461,-4.12935e-005,-12.4811,165.399,-2.32082,-10.8493,166.304,-2.18437,-10.8649,166.108,-1.97353,-10.9121,165.904,-1.64188,-11.0361,165.731,-1.17974,-11.2363,165.646,-0.61711,-11.5067,165.679,-2.42162,-12.1161,167.283,-2.67156,-11.7803,167.016,-2.78729,-11.5517,166.778,-2.78093,-11.4299,166.549,-2.03194,-12.5265,167.569,-1.46753,-12.996,167.81,-0.792209,-13.3841,167.964,-4.40661e-005,-13.5809,167.948,-2.34784,-12.0805,167.057,-1.9846,-12.4684,167.279,-1.91882,-12.3612,167.126,-2.27435,-12.0089,166.942,-1.4155,-12.9125,167.463,-0.753574,-13.2853,167.601,-0.698936,-13.0653,167.436,-1.33919,-12.7305,167.3,-1.87969,-12.2815,167.098,-2.22682,-11.9307,166.918,-0.677182,-12.9056,167.425,-1.30095,-12.5893,167.292,-0.670815,-12.7338,167.485,-1.26967,-12.4185,167.353,-1.82237,-12.1479,167.137,-2.19622,-11.8507,166.932,-4.196e-005,-13.2305,167.496,-2.57283,-11.7794,166.855,-2.67246,-11.5782,166.682,-2.49544,-11.7382,166.776,-2.5885,-11.5556,166.636,-2.45025,-11.6743,166.76,-2.54442,-11.5004,166.625,-2.42533,-11.6037,166.764,-2.51492,-11.43,166.622,-2.65328,-11.4753,166.516,-2.55896,-11.4632,166.504,-2.51366,-11.4127,166.499,-2.4769,-11.3276,166.492,-4.13186e-005,-12.304,167.756,-0.68741,-12.314,167.82,-1.26107,-12.0009,167.694,-1.75383,-11.7068,167.442,-2.15931,-11.532,167.105,-2.40143,-11.3087,166.845,-2.47306,-11.1041,166.647,-2.42151,-10.9219,166.483,-0.952577,-9.3369,184.489,-1.14785e-005,7.07098,171.281,-6.3285,4.08448,165.059,-5.45369,5.72426,165.082,-6.59277,1.41151,165.005,-6.63345,2.64812,165.035,-1.3002,8.2148,164.823,0.00357347,7.32681,166.257,-4.16945,7.15887,165.097,-2.68817,7.95498,164.988,-6.59486,-0.824123,164.732,-6.52761,0.262255,164.954,-6.50221,-1.85999,164.196,-6.2157,-2.84157,163.402,-5.75695,-3.77057,162.59,-2.85384,-7.25132,160.119,-3.6431,-6.50542,160.602,-4.43787,-5.58927,161.212,-5.16024,-4.67747,161.863,-6.75709,4.38749,164.038,-7.43782,4.50603,163.047,-6.45905,6.39537,163.15,-5.82645,6.11978,164.098,-7.00781,2.81283,163.904,-6.76403,1.50417,163.693,-7.08281,1.39452,162.362,-7.55322,2.75767,162.748,-1.55582,9.28389,162.694,0.00118758,8.88117,163.564,-1.42683,8.77777,163.686,-5.00379,8.068,163.219,-4.50469,7.64204,164.138,-3.28017,9.0261,163.063,-2.95915,8.50827,163.984,-6.6219,-0.774986,163.231,-6.634,-0.798847,161.818,-6.77381,0.230082,162.091,-6.61445,0.288251,163.502,-6.49283,-1.78724,162.764,-6.45229,-1.78825,161.4,-6.1934,-2.73632,162.14,-6.12565,-2.70384,160.889,-5.69357,-3.64759,161.494,-5.67711,-3.55742,160.351,-2.88235,-6.79156,159.393,-2.88409,-6.46878,158.218,-3.82224,-5.80259,158.658,-3.6774,-6.08178,159.773,-4.51687,-5.1074,159.226,-4.4118,-5.2879,160.278,-5.1318,-4.36013,159.786,-5.0736,-4.48828,160.862,-8.42473,4.60188,161.843,-9.56014,4.88492,160.444,-8.42796,7.26118,160.901,-7.35749,6.71968,162.092,-8.43652,2.69369,161.308,-7.92345,1.23564,160.852,-9.11174,1.28934,159.249,-9.60594,2.8629,159.754,0.00130613,10.6917,160.189,-1.73303,9.90977,161.639,-1.98114,10.6921,160.419,-6.44594,9.25968,160.988,-5.65113,8.55131,162.177,-4.16892,10.4219,160.822,-3.66899,9.62132,162.025,-7.29419,0.102021,160.589,-6.80581,-0.870738,160.343,-7.5629,-1.09545,158.817,-8.28376,0.00670987,158.982,-6.4882,-1.79319,159.976,-7.06213,-1.98814,158.524,-6.20106,-2.64966,159.527,-6.65952,-2.74402,158.105,-5.84489,-3.45388,159.033,-6.23612,-3.50379,157.628,-2.73001,-6.45498,156.914,-2.54892,-6.45381,155.589,-3.82106,-5.7877,155.972,-3.86354,-5.7535,157.377,-4.89146,-5.04704,156.504,-4.72229,-5.01296,157.944,-5.66973,-4.27259,157.087,-5.35696,-4.24451,158.508,-1.38423,-7.01724,156.62,-1.511,-7.1572,158.01,-0.0137294,-7.14181,155.327,-1.23956,-6.94706,155.383,-10.7522,5.36651,159.217,-9.63643,8.01109,159.752,-10.0474,1.58465,157.771,-10.7508,3.21129,158.444,-7.36593,10.1962,159.58,-4.71356,11.4009,159.281,-8.09949,-1.05363,157.259,-8.99307,0.18553,157.423,-2.23927,11.5913,158.882,-7.46747,-2.04687,157.026,-6.94345,-2.85263,156.693,-6.38753,-3.63655,156.284,-3.59288,-5.79412,154.719,-2.3068,-6.36862,154.403,-4.7505,-5.11003,155.199,-5.6782,-4.40038,155.764,-1.07909,-6.74475,154.262,-2.03047,-8.51914,160.339,-1.97771,-7.86003,159.823,-1.99212,-7.38509,159.201,-7.7871,-1.99861,171.356,-7.74141,-1.68935,172.011,-8.01484,-1.48411,172.86,-8.27488,-1.44968,173.717,-8.46086,-1.50898,174.354,-8.6862,-1.49219,174.706,-1.02189,-8.94848,160.161,-1.04723,-7.79952,159.119,-1.02436,-8.27115,159.688,-0.0514942,-8.47067,159.686,-0.0691713,-7.69225,158.372,-0.910082,-7.60243,158.529,-0.0157595,-6.897,154.232,-2.55075,-10.6025,166.75,-2.45083,-10.4103,166.518,-3.96693e-005,-11.6438,168.108,-0.692296,-11.7045,168.277,-1.33904,-11.4923,168.163,-1.84846,-11.2484,167.826,-2.36399,-11.1359,167.437,-2.58852,-10.8966,167.025,-2.10774,-10.3302,165.679,-1.74275,-10.4177,165.411,-0.607709,-10.881,165.275,-1.21624,-10.608,165.254,-2.29099,-10.3183,165.986,-2.36811,-10.3246,166.268,-2.61661,-9.94445,166.867,-2.50927,-9.79304,166.587,-0.729342,-10.8203,168.717,-1.39975,-10.6152,168.477,-1.98273,-10.4694,168.197,-2.56794,-10.3242,167.869,-2.77435,-10.1126,167.209,-2.18968,-9.57028,165.661,-1.78243,-9.57154,165.367,-0.58538,-9.82501,165.088,-1.21649,-9.64234,165.137,-0.000333463,-10.0097,165.118,-2.40606,-9.61576,165.983,-2.45723,-9.68761,166.297,-2.60935,-9.30131,166.941,-2.53982,-9.18817,166.665,-1.4252,-9.53683,168.511,-2.04756,-9.47485,168.203,-2.55667,-9.41041,167.781,-2.6789,-9.36009,167.264,-2.31446,-8.81105,165.77,-1.87988,-8.69163,165.432,-0.578578,-8.72217,165.255,-1.22575,-8.67246,165.28,-0.000984312,-8.78631,165.268,-2.46994,-8.96767,166.12,-2.50773,-9.09424,166.392,-2.57056,-8.74095,166.734,-2.54812,-8.72761,166.501,-1.35142,-8.43816,168.09,-1.98167,-8.47123,167.849,-2.48004,-8.59818,167.494,-2.6491,-8.74935,167.138,-1.91074,-7.86997,165.958,-2.42224,-8.20044,166.129,-1.22,-7.78146,165.922,-0.582984,-7.77889,165.936,-2.54821,-8.52398,166.376,-2.00939,-7.70972,167.196,-1.26376,-7.63253,167.287,-2.5079,-8.13414,166.944,-2.58608,-8.46181,166.808,-2.61824,-8.86746,166.945,-0.678625,-8.42583,168.276,1.86949e-005,-7.63242,167.365,-0.62046,-7.64059,167.34,-0.731284,-9.61904,168.787,-7.21199,13.5859,14.2419,-5.87479,12.0083,14.1697,-8.88026,13.9999,12.7143,-10.6683,13.2162,12.7969,-7.08799,13.4834,12.6352,-5.79974,11.8671,12.4117,-12.6988,10.3141,12.4874,-12.8689,10.4549,14.2374,-12.0346,11.9571,14.2899,-11.9728,11.6248,12.7479,-12.672,10.497,10.5533,-11.7236,5.07546,12.5624,-11.0638,4.12196,12.0664,-10.3154,3.84525,13.2845,-10.1084,3.54531,12.4288,-8.53033,3.56329,13.4261,-8.57344,3.38632,12.5039,-7.00505,4.29328,12.0715,-7.52578,7.58208,0.877011,-8.04957,5.29954,1.04972,-8.66655,1.81278,0.811143,-11.8677,-2.9752,0.503073,-12.8815,-1.58078,50.8189,-7.92728,-1.48357,50.9199,-13.068,-3.32435,0.483038,-13.7017,-2.88724,0.53347,-10.5546,-4.62245,0.409765,-11.3595,-4.27667,0.414798] }, -{ "name": "morph_female", "vertices": [3.13364,-9.72623,176.129,3.90474,-9.64007,175.921,4.46922,-9.57699,175.353,4.67584,-9.55391,174.577,4.46922,-9.57699,173.802,3.90474,-9.64007,173.234,3.13364,-9.72623,173.026,2.36255,-9.81239,173.234,1.79806,-9.87547,173.802,1.59145,-9.89855,174.577,1.79806,-9.87547,175.353,2.36254,-9.81239,175.921,3.2198,-10.4973,175.921,3.88759,-10.4227,175.741,4.37645,-10.3681,175.249,4.55538,-10.3481,174.577,4.37645,-10.3681,173.905,3.88759,-10.4227,173.414,3.2198,-10.4973,173.234,2.55201,-10.5719,173.414,2.06316,-10.6266,173.905,1.88422,-10.6466,174.577,2.06316,-10.6266,175.249,2.55201,-10.5719,175.741,3.28288,-11.0618,175.353,3.66843,-11.0187,175.249,3.95067,-10.9872,174.965,4.05398,-10.9757,174.577,3.95067,-10.9872,174.189,3.66843,-11.0187,173.905,3.28288,-11.0618,173.802,2.89733,-11.1049,173.905,2.61509,-11.1364,174.189,2.51178,-11.148,174.577,2.61509,-11.1364,174.965,2.89733,-11.1049,175.249,3.30597,-11.2684,174.577,3.07294,-9.09432,175.847,3.70368,-9.02384,175.677,4.16542,-8.97225,175.212,4.33443,-8.95336,174.577,4.16542,-8.97225,173.943,3.70369,-9.02384,173.478,3.07294,-9.09432,173.308,2.4422,-9.1648,173.478,1.98047,-9.21639,173.943,1.81146,-9.23528,174.577,1.98046,-9.21639,175.212,2.4422,-9.1648,175.677,0.667976,-10.3791,165.157,1.13994,-9.90453,165.279,1.00633,-7.07055,165.035,1.55048,-7.07055,165.035,0.799233,-10.3898,166.092,1.20976,-9.9223,166.208,1.00633,-7.07055,166.414,1.55048,-7.08208,166.349,0.799233,-10.7678,165.473,1.57552,-9.99298,165.473,2.03531,-7.07055,165.473,0.799233,-10.7678,165.771,1.57552,-9.99298,165.911,2.03531,-7.07055,165.911,1.00633,-9.08034,165.252,1.55048,-9.08034,165.252,2.03529,-9.2854,165.69,2.03529,-9.2854,166.127,1.55048,-9.09186,166.565,1.00633,-9.08034,166.63,1.55048,-8.07842,166.567,1.00633,-8.06689,166.632,1.00633,-8.06689,165.254,1.55048,-8.06689,165.254,2.0353,-8.15642,165.692,2.0353,-8.15642,166.129,0.0568168,-10.3791,165.15,-0.554342,-10.3791,165.157,-0.892694,-9.08034,165.252,-1.43684,-9.08034,165.252,-1.02631,-9.90453,165.279,0.0568164,-10.5684,166.075,-0.6856,-10.3898,166.092,-0.892695,-9.08034,166.63,0.0568162,-9.08034,166.415,-1.09612,-9.9223,166.208,-1.43685,-9.09186,166.565,-1.46189,-9.99298,165.473,-0.6856,-10.7678,165.473,0.0568167,-10.9632,165.466,-0.6856,-10.7678,165.771,0.0568166,-10.9632,165.761,-1.46189,-9.99298,165.911,-1.92166,-9.2854,165.69,-1.92166,-9.2854,166.127,0.0568168,-9.08034,165.244,0.0568167,-8.06689,165.246,-0.892694,-8.06689,165.254,-1.43684,-8.06689,165.254,-0.892695,-8.06689,166.632,0.0568162,-8.06689,166.417,-1.43685,-8.07842,166.567,-1.92167,-8.15642,165.692,-1.92167,-8.15642,166.129,0.0568168,-7.07055,165.028,-0.892694,-7.07055,165.035,-1.43684,-7.07055,165.035,-0.892695,-7.07055,166.414,0.0568163,-7.07055,166.199,-1.43685,-7.08208,166.349,-1.92168,-7.07055,165.473,-1.92168,-7.07055,165.911,0.0568168,-10.3791,165.15,0.0568168,-10.3837,165.17,1.3532,-12.0965,167.213,2.3729,-11.3342,167.148,2.96403,-10.2243,167.054,3.01525,-8.9758,166.949,1.35319,-12.0422,168.129,2.3729,-11.2799,168.064,2.96403,-10.17,167.97,3.01525,-8.92152,167.865,1.26917,-12.0202,167.152,2.01746,-11.1142,167.106,2.17921,-10.0228,167.037,2.21641,-9.11606,166.961,1.00931,-11.6075,167.794,2.01746,-10.6168,167.747,2.44678,-9.81073,167.679,2.21641,-8.61868,167.602,0.0568158,-12.3676,167.236,-1.23956,-12.0965,167.213,-1.23956,-12.0422,168.129,0.0568153,-12.3133,168.152,-2.25927,-11.3342,167.148,-2.25927,-11.2799,168.064,-2.8504,-10.2243,167.054,-2.8504,-10.17,167.97,-2.90162,-8.9758,166.949,-2.90162,-8.92152,167.865,0.0568158,-12.3017,167.169,0.0568155,-11.8044,167.811,-0.895681,-11.6075,167.794,-1.15554,-12.0202,167.152,-1.90383,-10.6168,167.747,-1.90383,-11.1142,167.106,-2.33315,-9.81073,167.679,-2.06558,-10.0228,167.037,-2.10278,-8.61868,167.602,-2.10278,-9.11606,166.961,-3.12398,-9.72623,176.129,-3.89507,-9.64007,175.921,-4.45956,-9.57699,175.353,-4.66617,-9.55391,174.577,-4.45956,-9.57699,173.802,-3.89507,-9.64007,173.234,-3.12398,-9.72623,173.026,-2.35288,-9.81239,173.234,-1.7884,-9.87547,173.802,-1.58178,-9.89855,174.577,-1.78839,-9.87547,175.353,-2.35288,-9.81239,175.921,-3.21014,-10.4973,175.921,-3.87793,-10.4227,175.741,-4.36678,-10.3681,175.249,-4.54572,-10.3481,174.577,-4.36678,-10.3681,173.905,-3.87793,-10.4227,173.414,-3.21014,-10.4973,173.234,-2.54235,-10.5719,173.414,-2.05349,-10.6266,173.905,-1.87456,-10.6466,174.577,-2.05349,-10.6266,175.249,-2.54235,-10.5719,175.741,-3.27321,-11.0618,175.353,-3.65876,-11.0187,175.249,-3.941,-10.9872,174.965,-4.04431,-10.9756,174.577,-3.941,-10.9872,174.189,-3.65876,-11.0187,173.905,-3.27321,-11.0618,173.802,-2.88766,-11.1049,173.905,-2.60542,-11.1364,174.189,-2.50211,-11.148,174.577,-2.60542,-11.1364,174.965,-2.88766,-11.1049,175.249,-3.2963,-11.2684,174.577,-3.06328,-9.09432,175.847,-3.69402,-9.02384,175.677,-4.15575,-8.97225,175.212,-4.32476,-8.95336,174.577,-4.15575,-8.97225,173.943,-3.69402,-9.02384,173.478,-3.06328,-9.09432,173.308,-2.43253,-9.1648,173.478,-1.9708,-9.21639,173.943,-1.80179,-9.23528,174.577,-1.9708,-9.21639,175.212,-2.43253,-9.1648,175.677,1.3532,-11.1899,165.956,2.3729,-10.4287,166.031,2.96403,-9.32023,166.141,3.01525,-8.07337,166.342,1.3532,-11.1264,165.315,2.3729,-10.3652,165.391,2.96403,-9.25674,165.5,3.01525,-8.00988,165.624,1.25443,-10.9459,166.027,1.92182,-10.1482,166.081,2.17921,-9.11899,166.161,2.21641,-8.21344,166.328,1.25443,-9.94623,164.91,1.92182,-9.1486,164.965,2.17921,-9.0555,164.944,2.21641,-8.14995,165.034,0.0568162,-11.4607,165.929,0.0568165,-11.3972,165.288,-1.23956,-11.1264,165.315,-1.23956,-11.1899,165.956,-2.25927,-10.3652,165.391,-2.25927,-10.4287,166.031,-2.85039,-9.25674,165.5,-2.8504,-9.32023,166.141,-2.90162,-8.00988,165.624,-2.90162,-8.07337,166.342,0.0568162,-11.2432,166.007,-1.1408,-10.9459,166.027,-1.14079,-9.94623,164.91,0.0568166,-10.2436,164.89,-1.80819,-10.1482,166.081,-1.80819,-9.1486,164.965,-2.06558,-9.11899,166.161,-2.06557,-9.0555,164.944,-2.10278,-8.21344,166.328,-2.10278,-8.14995,165.034,-1.01493e-005,15.0864,147.178,0.00112827,-13.2733,119.121,0.00237086,13.7028,151.981,-0.000379284,5.78048,107.818,-0.00196859,5.42901,92.6761,-4.44305e-005,-12.0592,181.203,-4.28566e-005,-12.8669,167.532,-4.5204e-005,-13.9425,169.654,0.0035922,-13.798,115.081,-0.00175712,-12.7703,131.936,2.55865e-006,8.46978,127.53,-0.0155857,-4.82965,152.854,-4.40873e-005,-11.3157,182.526,-3.78215e-005,-12.2165,163.52,-0.000614673,-11.6546,162.164,-1.27108e-005,7.94434,179.982,-4.02081e-005,-11.6089,165.641,-4.19858e-005,-9.34631,184.582,0.0112024,8.23925,160.642,-4.92653e-005,-15.2255,171.369,-4.31909e-005,-13.0884,167.471,-0.00952969,-5.73736,161.164,0.01358,10.4833,157.529,-3.17489e-005,-8.41545,168.336,0.00183728,5.13056,114.208,-0.000585692,-14.3449,112.56,0.000234733,5.31486,118.302,0.00690903,12.6605,154.156,0.0117527,11.5319,155.947,-0.0152572,-15.265,99.3499,-0.00233086,-0.524892,89.7533,0.00467972,7.14805,100.39,-3.98051e-005,-12.2216,164.276,-0.00338769,-10.862,161.742,-4.72682e-005,-15.0166,171.863,-4.59723e-005,-13.2378,175.381,-3.84884e-005,-5.46363,186.326,-4.00616e-005,-12.3367,164.962,-4.43966e-005,-13.4633,167.621,-9.93626e-006,7.60174,173.748,-0.00101235,6.62744,164.463,-3.74526e-005,-10.7799,168.601,-9.93814e-005,-10.9293,165.298,-0.000414475,-7.78152,165.965,21.7065,4.02168,142.154,23.1795,3.83801,142.254,22.9327,6.18928,141.672,21.4222,6.37845,141.665,48.2169,7.66356,139.945,51.6153,7.44678,139.853,51.5939,9.39264,140.71,47.973,9.5736,140.793,45.1131,9.86566,141.172,45.437,8.07475,140.221,41.3891,5.09495,148.173,41.6423,3.71898,146.972,38.9389,3.48223,147.077,38.6932,5.06035,148.318,35.7106,3.38301,147.238,32.5887,3.21906,147.363,32.6271,4.97824,148.774,35.6098,5.08268,148.555,40.7212,6.95292,148.706,37.8835,7.07064,148.896,32.1901,7.17226,149.483,34.9299,7.20198,149.2,35.3003,2.37411,145.398,32.1037,2.22626,145.422,43.1348,3.81102,146.95,44.1967,3.80827,146.86,44.3574,3.38812,145.62,43.1213,3.16654,145.465,38.6914,2.51489,145.367,38.104,2.52229,143.33,34.549,2.48024,143.242,37.3581,3.7272,141.547,33.6871,3.77596,141.509,36.5494,5.68405,140.46,32.8739,5.7774,140.49,48.7623,5.55538,140.262,51.8177,5.42828,140.076,32.0868,7.97598,139.854,35.7049,7.73305,139.876,34.7964,9.83749,140.169,31.3843,10.2255,140.076,54.8653,10.3526,142.562,54.7082,9.17478,140.858,57.6408,8.99249,141.132,57.78,9.95546,142.815,57.5947,7.3278,140.196,54.6909,7.33356,139.96,60.9247,7.33944,140.566,61.0643,8.76819,141.575,61.2185,9.40634,143.246,54.8291,5.39934,140.069,57.6633,5.51805,140.223,60.8534,5.68078,140.46,60.8412,4.11218,141.175,57.7845,3.88622,141.203,60.8519,2.98642,142.464,57.8719,2.82618,142.861,55.0531,3.71575,141.277,55.2401,2.7604,143.227,64.1552,4.29472,141.078,64.2816,5.76777,140.703,64.0973,3.11092,141.993,64.4779,7.2315,140.991,64.7157,8.39462,142.037,68.1622,7.01234,141.263,68.4824,7.94409,142.342,67.8817,5.717,140.794,57.928,9.77188,144.74,61.313,8.93108,144.868,64.9039,8.7104,143.598,64.9697,8.00751,144.906,55.059,10.3555,144.652,64.9322,6.82374,145.833,61.3502,7.81117,146.123,68.7573,7.06401,144.786,68.6642,5.81691,145.372,68.7042,7.96149,143.766,49.3464,3.13021,144.022,52.3726,2.8484,143.686,52.1125,3.72861,141.506,49.1497,3.91948,141.714,47.2548,3.55497,146.049,49.5588,3.2477,146.163,47.122,3.40845,143.913,52.5454,2.85291,145.903,55.3462,2.71947,145.325,49.3947,4.50335,148.179,52.6007,4.02695,147.806,55.42,3.76513,147.109,58.0443,8.73072,146.304,55.2179,9.39462,146.482,55.3482,7.74475,147.684,58.0915,7.12476,147.218,61.2772,6.30599,146.705,52.3473,8.27839,148.127,52.1521,9.96178,146.715,48.7722,8.64857,148.299,49.1231,6.57272,148.84,46.3584,6.7,148.71,45.9271,8.67842,148.213,52.5317,6.14537,148.569,46.9214,4.66155,147.916,55.4254,5.71927,147.967,58.0651,5.25312,147.303,57.9914,3.54159,146.4,61.1289,4.65087,146.546,60.9708,3.24238,145.577,37.3085,11.3784,145.532,37.097,11.4951,143.549,40.55,11.1493,143.456,40.6795,11.0989,145.384,34.0587,11.8096,145.609,33.7189,11.9884,143.529,41.2719,10.2319,147.03,38.228,10.4892,147.233,45.0377,10.9908,142.946,43.066,11.0144,143.24,43.3124,10.0542,141.487,45.2053,11.1663,145.035,45.5395,10.2783,146.905,43.5041,10.1652,146.917,43.1614,11.045,145.214,35.1044,10.872,147.457,48.443,10.3059,146.852,41.2831,2.76388,143.595,42.9484,3.06115,143.751,42.6133,3.69315,142.176,40.7449,3.76081,141.876,42.4622,4.98834,140.979,40.1026,5.51959,140.705,43.8515,3.58883,142.487,44.2376,3.27058,143.899,45.4497,3.49154,143.795,44.571,4.27598,141.592,64.5101,3.97686,145.757,64.7577,5.41248,146.119,68.4368,4.46233,145.455,68.1496,3.19925,144.979,60.8801,2.64245,144.047,57.9248,2.67152,144.737,67.699,4.3448,140.853,37.5637,10.7791,141.702,34.0511,11.3664,141.56,38.4681,9.28132,140.415,30.8778,11.9183,141.471,41.5795,2.87657,145.392,36.5645,9.16709,148.632,33.7051,9.40187,148.959,32.273,11.2659,147.722,64.1231,2.558,143.32,67.6483,2.3482,142.576,67.6078,3.11133,141.462,64.2708,2.87723,144.739,67.8621,2.37272,143.919,43.1511,4.99406,148.076,42.8368,6.86497,148.63,39.5985,8.91865,148.367,42.1192,8.74499,148.2,43.9794,8.65664,148.145,44.4905,6.75793,148.602,41.7324,8.75823,140.483,43.7553,8.39416,140.396,40.9632,10.3058,141.696,39.4194,7.33619,140.135,42.3058,6.79603,140.251,30.6899,12.549,143.522,31.1375,12.3144,145.709,28.6901,12.646,145.921,28.2575,12.9749,143.689,29.8095,11.4858,147.944,24.1164,1.8542,145.199,22.5916,1.54833,144.756,22.9767,1.87678,147.212,24.7392,2.56376,147.174,23.3354,2.32976,143.257,21.7936,2.38937,142.953,26.6954,2.84896,147.063,26.0201,2.02957,145.206,29.7592,4.72396,148.703,29.6179,6.97884,149.583,31.3389,2.39723,143.291,28.2726,2.29524,143.367,28.9578,2.06787,145.278,25.4944,2.31572,143.505,25.2704,3.74527,142.381,19.2716,12.8625,143.953,21.0243,12.9242,144.009,21.6024,12.5999,146.056,19.4778,12.7756,145.918,22.0291,8.78162,141.152,20.4443,8.95633,141.244,20.0527,10.9769,141.561,21.7687,10.877,141.396,21.3396,12.3068,142.359,19.636,12.2759,142.503,28.3736,12.3101,141.634,25.9967,12.5018,141.892,26.2988,10.7558,140.78,28.6639,10.493,140.32,26.6677,8.4008,140.67,29.138,8.14796,140.13,27.2056,5.81508,141.162,29.8016,5.79277,140.712,27.6568,3.63909,141.974,30.5008,3.73006,141.654,25.2686,4.30849,149.071,27.1557,4.54816,148.714,31.1743,9.50561,149.219,28.7435,9.51222,149.351,27.3241,11.5661,148.057,26.1833,12.7717,146.112,25.7967,13.1731,143.892,48.1776,11.1349,144.806,47.9626,10.8608,142.613,51.7398,10.6975,142.485,51.9706,10.8403,144.681,44.9531,4.60528,147.696,46.1616,5.84271,140.419,23.7194,3.99527,149.695,23.5958,6.63186,150.924,25.236,6.7478,150.19,22.563,9.46662,150.511,24.3267,9.38097,149.889,21.1301,11.5631,148.583,22.893,11.4156,148.286,23.6339,12.6639,146.109,24.8958,11.447,148.181,29.5187,2.9832,147.194,27.1344,6.86003,149.728,24.1234,10.8243,141.392,23.4666,12.3683,142.249,24.577,8.64085,141.333,25.0893,6.03401,141.775,26.2952,9.4084,149.516,23.1179,13.0375,143.978,45.5702,3.60431,145.871,46.7034,4.09231,141.77,44.2344,6.23698,140.395,70.8158,1.91758,143.282,72.64,1.57267,142.793,72.216,2.02691,141.501,70.5189,2.15414,141.976,70.4604,3.08795,141.05,72.1591,3.07802,140.741,71.1675,2.62137,144.426,73.1675,2.2,144.049,70.7626,5.69718,140.763,71.0537,6.84829,141.328,71.4052,7.61766,142.375,73.2823,5.80224,140.585,73.6443,6.81738,141.216,72.8561,6.79487,141.288,72.556,5.74259,140.67,70.5614,4.37471,140.63,72.3025,4.42161,140.457,71.6871,7.56403,143.721,71.7787,6.56381,144.596,73.7015,7.38089,143.601,73.8966,6.32019,144.405,74.8828,6.23705,144.242,74.8655,4.80432,144.566,73.8182,4.94045,144.73,71.6913,5.24989,144.992,71.4624,3.86151,144.976,73.5531,3.47383,144.67,74.5622,3.26998,144.492,74.0208,1.99005,143.848,72.6673,3.08769,140.61,72.9309,4.46562,140.361,73.2721,7.45044,142.311,72.7157,1.98998,141.304,73.258,1.4529,142.577,74.5416,7.30035,143.482,74.0724,7.41075,142.239,17.1458,-1.25156,147.323,15.8664,-2.76353,146.112,15.0121,-2.53193,147.772,16.2341,-1.05605,148.867,14.097,-1.89931,149.719,15.4141,-0.503561,150.557,18.1049,0.154989,148.833,17.1414,0.377695,150.114,16.2995,0.88514,151.451,17.6841,1.99159,151.401,18.7871,1.67639,150.402,17.8917,3.97883,152.45,19.1509,3.54018,151.711,18.8465,6.21976,152.47,17.5876,6.36882,152.925,16.7902,4.37241,153.089,16.5233,6.5611,153.434,18.1202,8.82726,152.174,17.074,8.54292,152.691,16.3838,10.4573,152.116,17.3073,10.9611,151.173,16.157,8.31147,153.301,15.6316,9.94586,153.046,16.2875,12.4295,150.188,15.4852,11.9522,151.572,14.8275,11.3136,152.833,15.577,1.60354,152.694,14.7209,0.365707,152.241,14.1531,1.47856,153.758,14.9796,2.52265,153.703,13.6736,3.04827,154.822,14.5228,3.88985,154.422,15.9541,2.91126,153.137,15.4531,3.25053,153.698,15.2165,4.44404,154.054,16.7478,2.45548,152.345,14.8556,6.17124,154.324,15.62,6.47938,153.886,15.9399,4.53839,153.618,15.3266,7.96798,153.864,14.6166,7.5752,154.445,14.2644,8.91154,154.459,14.9168,9.37278,153.816,13.903,9.8859,154.34,14.2769,10.5313,153.805,13.1427,10.1009,154.633,13.2425,11.2759,153.86,13.5931,12.2636,152.661,11.7201,11.758,153.794,11.8964,12.8178,152.327,13.4853,8.709,155.072,14.1056,12.9591,151.131,14.7322,13.376,149.477,12.6925,13.96,148.884,12.2529,13.5811,150.598,14.2213,5.64148,154.893,13.4138,4.9631,155.407,13.9056,7.18069,155.124,9.76614,12.149,153.551,9.88547,13.2143,151.774,13.3848,-0.890931,151.719,12.8693,0.241136,153.577,12.0708,2.04502,154.932,12.3515,4.34685,155.809,11.9764,6.28146,156.381,13.0394,6.74358,155.81,18.5039,1.67347,140.874,17.403,-0.191516,141.241,19.4165,0.842922,142.724,20.0193,2.34562,142.238,20.4697,4.19327,141.997,20.0016,3.7851,141.18,10.4613,14.4009,148.086,10.8222,14.5494,146.551,13.1622,14.0772,147.223,11.7256,14.394,143.57,14.328,13.7566,144.029,13.7057,14.0156,145.567,11.241,14.5589,145.033,17.313,11.4536,141.525,15.4055,11.9339,140.365,18.1474,10.0684,140.528,18.797,9.36971,141.385,19.4312,7.99275,140.923,20.1858,6.48241,141.662,20.1204,5.84699,141.142,19.1376,-0.194043,143.559,17.1504,-1.58763,142.118,21.1305,0.684915,145.208,18.8518,-0.846576,144.722,20.4421,0.311135,146.604,16.6419,-2.74086,144.626,18.1323,-1.1872,145.987,17.1052,-2.41089,143.289,14.8519,13.2542,142.784,12.3391,13.942,142.217,13.4612,13.158,141.039,15.7124,12.524,141.894,10.1356,14.037,149.766,12.4321,8.57227,155.753,11.8621,10.3111,154.991,17.205,12.7545,148.754,18.4274,11.5053,150.134,19.4449,9.25943,151.678,15.4178,13.5438,147.811,20.9111,2.49114,142.723,21.0612,4.23988,142.179,20.9819,1.2793,143.755,19.5287,9.17396,141.453,18.6777,11.1303,141.777,20.6785,6.49335,141.742,20.5904,3.55995,151.051,20.2996,6.30537,152.117,21.9814,6.49095,151.613,22.1706,3.74443,150.44,17.8513,12.2423,142.421,17.2588,12.86,143.387,16.1549,13.4973,146.191,18.269,12.8342,147.381,19.7113,11.6647,149.248,20.9962,9.49439,151.115,21.5552,1.72334,148.623,20.0899,1.6286,149.532,16.8866,13.247,144.678,19.2698,0.130164,147.738,7.89924,5.38648,119.022,9.96328,3.89099,119.09,9.81153,4.52269,121.341,7.72372,6.01894,121.373,1.44089,-12.2763,136.898,1.59594,-12.5303,135.133,0.00323935,-12.5293,135.295,7.91022,14.4279,149.516,7.72097,13.6467,151.61,8.14308,14.8255,147.678,5.60432,15.2676,147.446,5.44418,14.8235,149.525,8.41172,15.0341,146.038,5.78537,15.4893,145.616,9.20923,14.9471,142.874,9.86441,14.5503,141.256,12.5099,12.7146,138.453,10.9024,13.8492,139.667,13.7904,-7.22327,142.212,15.0531,-4.70986,143.488,15.4493,-4.54087,142.005,14.5882,-7.29371,140.408,7.98855,-8.07859,145.77,6.46904,-8.36955,145.723,6.12558,-6.7987,148.325,7.44191,-6.29329,148.385,4.89703,-8.38991,145.74,4.6771,-7.13049,148.306,1.56858,-8.37774,145.814,1.50454,-7.31858,148.373,3.13992,-7.28277,148.329,3.28782,-8.34474,145.775,1.49894,-9.68966,143.361,3.05495,-9.84921,143.342,2.76497,-11.232,141.03,1.3412,-10.9446,141.042,11.3509,-0.919479,153.254,9.94978,-1.92845,152.962,8.98332,-0.896848,154.125,10.3488,0.297835,154.419,11.9523,-1.87981,151.307,10.5692,-2.82793,151.026,5.23694,-4.85322,152.387,6.46138,-4.14309,152.522,6.89082,-4.91832,150.671,5.59051,-5.57099,150.563,4.75305,-4.16535,153.559,5.81672,-3.43835,153.687,11.3374,-4.06311,148.91,12.74,-2.97862,149.266,13.6418,-3.87498,147.162,12.1767,-5.26453,146.684,3.95424,-5.39303,152.243,4.22846,-6.09866,150.509,3.62919,-4.68109,153.38,2.82864,-6.39003,150.49,2.6455,-5.68518,152.021,1.2486,-5.68642,151.714,1.47103,-4.98362,152.861,2.48411,-4.94071,153.106,1.40633,-6.43234,150.423,3.47826,-12.5468,134.596,3.67038,-12.5401,133.105,1.74363,-12.6495,133.582,4.98508,-13.67,113.276,3.25814,-14.0438,112.974,2.86305,-13.7224,115.631,4.62993,-13.3926,115.904,6.73538,-13.0886,113.548,6.44462,-12.8024,116.032,6.90381,-13.2685,111.04,5.19028,-13.8824,110.596,3.464,-14.335,110.182,8.48654,-12.8349,133.727,8.17795,-11.634,132.879,5.71006,-12.4022,133.68,5.75681,-13.0395,134.896,11.4286,-11.2363,133.457,10.5953,-9.97068,132.46,13.8758,-1.54251,127.87,13.5876,-1.84307,125.441,12.8246,-4.74513,125.864,13.0599,-4.48254,128.275,13.1624,-2.20002,123.185,12.4606,-5.06859,123.616,13.6694,1.21131,125.492,14.2171,1.53662,127.82,13.051,0.769843,123.225,7.60419,12.3702,153.826,5.12907,12.7948,154.044,5.29283,14.0367,151.786,2.53888,12.8088,154.142,2.65167,13.9401,151.927,2.74014,14.7837,149.486,2.82511,15.2836,147.229,2.9215,15.5129,145.266,14.7914,10.771,138.055,17.1242,8.3262,138.299,18.4991,5.73345,138.799,12.9006,11.2011,135.702,15.1561,8.5472,135.717,17.8196,3.1708,138.678,16.3579,5.57239,135.915,16.1341,2.58019,135.844,16.3847,0.604013,138.529,15.5272,-0.460887,135.807,4.34885,-13.0297,137.305,3.43833,-12.5116,136.589,2.7216,-12.033,138.915,4.1418,-12.7082,138.868,15.0942,-4.31518,136.248,15.8021,-1.87403,139.345,13.9866,-4.2164,133.036,14.8903,-1.01198,133.116,14.2796,-1.28277,130.467,13.3384,-4.28403,130.708,15.1881,-6.49285,138.654,15.6142,-3.67764,140.682,13.0318,-3.38477,118.961,12.4024,-6.25336,119.373,12.2878,-5.6002,121.448,12.8722,-2.72594,121.009,13.3277,-3.97552,117.191,12.5766,-6.71612,117.482,11.1844,-8.85723,117.79,11.0626,-8.53923,119.95,11.0313,-8.01346,122.196,13.1912,-8.34113,111.04,11.7694,-10.1477,110.449,11.7688,-9.75995,112.246,13.2132,-7.86642,112.589,10.0374,-10.9339,113.887,11.6218,-9.41315,113.996,10.1886,-11.2173,111.886,14.2076,-6.05878,111.513,14.1629,-5.47522,112.876,9.53938,-10.3404,118.132,9.38319,-10.1061,120.504,12.829,-7.07308,115.759,11.4035,-9.11064,115.838,9.80494,-10.6379,115.961,12.7552,-0.422284,118.743,13.1654,-1.04571,116.901,13.6802,-4.47128,115.674,13.6063,-1.60148,115.511,11.582,1.91864,118.958,12.0766,1.45414,117.026,12.6019,1.0141,115.487,12.614,0.175445,120.948,11.4817,2.55988,121.205,8.26389,5.13623,116.909,10.4315,3.56791,117.089,2.67533,5.89427,118.455,2.77856,5.61566,116.066,5.6065,5.84222,116.537,5.381,6.11053,118.797,5.91237,5.77713,114.71,2.88397,5.60381,114.378,8.72886,4.98354,115.106,10.9558,3.26972,115.389,15.4135,2.15137,133.16,13.9009,4.61908,128.154,14.8103,1.84017,130.407,14.7002,5.07865,130.628,12.4097,7.43485,128.493,13.373,8.13086,130.863,4.25403,13.5957,135.678,9.21293,13.2296,136.218,7.75794,14.3149,138.442,3.92503,14.4276,137.787,6.37459,15.3312,142.267,6.90264,14.9345,140.43,8.75539,15.0843,144.454,6.03112,15.5204,143.938,3.24371,15.4261,141.862,3.05435,15.5634,143.547,3.86504,-12.5006,131.472,1.89619,-12.7307,131.809,5.79457,-12.0376,132.464,5.89528,-11.8478,130.993,7.8586,-10.755,128.353,7.73186,-10.9998,125.957,5.88751,-12.142,126.405,5.96286,-11.9365,128.99,7.57465,-11.2025,123.436,5.72694,-12.227,123.733,3.97816,-12.6097,129.358,3.91665,-12.7538,126.709,1.9411,-12.9673,126.814,1.97915,-12.8709,129.517,3.81091,-12.8457,123.985,1.88426,-13.0625,124.142,10.2039,5.55471,123.746,7.89399,7.12417,123.909,5.27557,7.91533,124.163,5.23464,6.77147,121.389,2.68007,7.66634,124.376,2.63045,6.54285,121.332,2.88951,9.108,127.236,5.85816,9.30177,126.849,12.9924,4.11824,125.92,12.0514,3.42171,123.575,11.2706,6.60426,126.218,8.79109,8.41986,126.51,9.81041,9.50064,128.756,6.57895,10.5868,129.118,10.7586,10.3794,131.021,11.6824,10.9901,133.369,8.11947,12.4602,133.538,7.32009,11.6183,131.311,3.20053,10.542,129.67,3.99903,12.6889,133.67,12.5343,1.95672,111.125,13.908,-0.64521,111.467,13.5233,0.0177245,112.787,12.0181,2.52878,112.505,11.524,2.96001,113.889,9.28252,4.83699,113.558,9.84495,4.55418,112.188,3.52374,15.0406,139.908,3.41169,5.92366,109.948,3.38887,5.8367,111.541,7.4686,5.60333,110.469,6.88099,5.72033,111.823,0.0012451,5.09259,115.848,8.42449,-12.1645,113.752,8.57644,-12.3757,111.481,8.16789,-11.8691,116.048,7.83042,-11.4739,118.393,13.9825,-4.95455,114.233,13.9971,-2.13867,114.224,14.285,-2.73458,112.958,6.33522,5.79522,113.176,8.03619,-11.0238,131.824,7.96033,-10.7306,130.348,14.4968,-3.40894,111.679,6.06658,-12.4002,118.539,5.79511,-12.2099,121.111,7.6036,-11.2628,120.874,4.1966,-13.0774,118.577,3.93038,-12.9249,121.286,2.02245,-13.4067,118.435,1.9583,-13.2242,121.45,1.10009,-13.4902,117.017,4.25424,-11.8687,140.993,4.62038,-10.2694,143.303,11.16,-7.51729,124.386,9.36452,-9.82368,122.949,9.49296,-9.45079,125.252,10.9028,-12.3274,140.28,12.7488,-10.07,141.007,13.8303,-10.4027,138.701,11.8104,-12.9749,137.643,8.29311,-13.0804,140.354,8.68271,-13.9893,137.723,6.02466,-12.6519,140.768,5.96374,-13.5747,138.438,10.063,-9.95952,143.097,11.6288,-8.37972,143.564,12.0752,-12.5035,135.246,14.3314,-9.69118,136.361,13.6669,-8.32669,134.229,8.19629,-10.6933,143.022,8.7548,-13.8362,135.38,6.3236,-10.7154,143.164,5.91175,-13.6587,136.396,12.9647,-6.45147,144.381,1.61601,-14.2787,112.684,1.38552,-13.8262,115.223,-1.28771e-005,14.7631,139.797,3.57105,-14.7968,106.988,1.80076,-15.2015,106.545,1.73741,-14.6739,109.833,11.4521,-7.22889,126.606,11.7383,-7.08496,128.886,9.98659,-9.16833,129.62,10.2494,-9.38547,131.294,12.0192,-7.08112,130.964,9.71286,-9.1991,127.496,12.6147,-7.38328,132.587,1.2998,-11.8062,138.901,0.000287947,-12.6549,133.75,14.3996,-4.45427,145.241,15.364,5.3615,133.284,14.1736,8.47669,133.336,3.5842,11.7077,131.748,0.618152,-5.24063,152.201,0.684974,-4.87386,152.848,-0.0130253,-9.66604,143.367,-7.77358e-006,12.1814,133.871,-0.00135846,-13.1636,121.645,-0.00252171,-14.7997,109.693,6.82265,-2.63199,153.797,7.83948,-1.82133,153.932,8.72067,-2.73885,152.756,7.59694,-3.44681,152.62,9.33019,-3.63187,150.86,8.13474,-4.2999,150.753,10.0271,-4.92976,148.654,8.75092,-5.64907,148.482,9.45328,-7.44078,145.901,10.7965,-6.483,146.213,-5.15556e-006,11.1308,132.051,13.0705,-7.44798,114.121,13.1136,0.561355,114.108,3.08018,5.72586,112.923,8.64135,-12.6297,109.028,6.9876,-13.5134,108.266,5.29485,-14.2108,107.58,10.2281,-11.5353,109.782,10.4698,4.16205,110.82,11.0434,8.39179,156.434,10.0794,10.4807,155.367,10.8694,4.08995,156.322,10.6067,5.83701,156.94,9.5394,7.96863,157.103,7.7555,10.3444,156.173,10.309,2.52047,155.631,3.2391,-4.09265,154.187,4.17518,-3.59702,154.347,5.06532,-2.87052,154.478,7.76879,-0.17631,154.922,9.03192,1.06632,155.17,4.88703,11.3033,156.056,2.38056,11.5469,156.012,2.29343,-4.37606,153.989,1.43682,-4.50461,153.813,0.687619,-4.50573,153.713,5.92503,-2.03366,154.631,6.78317,-1.18565,154.775,-0.015966,-4.4878,153.691,1.80142,-15.1936,99.5392,3.56414,-14.9168,100.14,3.36134,-14.1927,97.1115,1.68915,-14.3681,96.5786,14.0643,-8.27582,107.055,12.7359,-10.1491,105.977,12.7887,-9.47959,107.679,14.0112,-7.4659,108.609,8.09239,-13.3312,101.295,6.47867,-13.61,99.6703,6.86564,-14.011,102.406,8.43929,-13.3081,103.76,9.73343,-12.7241,102.972,9.97892,-12.3558,105.153,4.94697,-13.8985,98.1671,5.24416,-14.505,101.157,5.3548,-14.6208,104.321,7.01095,-13.8871,105.284,3.62155,-15.1553,103.514,1.823,-15.4689,102.954,8.61605,-12.9899,106.338,12.9896,-8.88976,109.367,14.1131,-6.73633,110.073,10.1493,-11.9161,107.437,11.1113,3.80882,109.334,7.96122,5.61892,108.991,8.47067,5.83108,107.4,11.7703,3.68462,107.743,15.162,-5.87857,107.482,14.8581,-4.99267,108.991,1.8867,6.72086,104.801,5.1349,7.09564,105.226,4.77222,6.52759,106.974,1.73418,6.21786,106.536,1.36679,5.78491,108.973,1.54397,5.93621,107.962,4.37918,6.16935,108.481,14.902,-2.10132,108.767,13.8797,0.908428,108.208,14.6598,0.664869,106.641,15.5552,-2.81142,107.236,13.169,1.34085,109.676,14.3599,-1.38953,110.106,12.4328,3.8597,106.077,11.2964,-11.651,104.554,11.4295,-11.0989,106.477,11.6106,-10.5961,108.458,14.6673,-4.17681,110.341,8.99875,6.26831,105.663,-0.0110945,-15.5674,102.75,6.98667e-005,5.96281,106.36,18.386,-5.62379,93.4883,19.0112,-5.08568,88.9399,17.4932,-8.45152,88.4467,16.8121,-8.8918,92.719,17.6463,-6.11241,96.7321,15.9961,-9.17476,96.3268,18.7778,-1.5022,93.691,19.1635,-0.89491,89.1772,18.4019,-2.09077,96.3348,15.2013,-10.7425,87.7801,14.6571,-11.0872,91.8021,17.7651,-7.88551,84.2064,19.2156,-4.5519,84.5277,15.415,-10.2344,83.8221,13.5294,-11.4636,98.2561,15.2692,-9.42298,99.5084,14.0297,-11.2797,95.2731,11.512,-12.629,96.4542,11.8222,-12.4658,93.7765,12.1894,-12.3196,90.5753,9.2447,-12.911,98.6146,11.1791,-12.487,100.493,11.2893,-12.64,98.5026,9.20302,-12.8623,96.5839,9.30614,-12.7763,94.5605,9.4679,-12.6422,92.1454,12.8481,-10.8023,104.128,11.2031,-12.1504,102.548,15.5445,-6.53949,105.689,14.3201,-9.01295,105.284,16.108,-3.25718,105.419,16.6417,-3.40188,103.496,17.2116,-3.27132,101.548,16.3241,-6.7418,101.811,15.9456,-6.76453,103.719,16.8088,-6.59361,99.7879,17.8002,-2.94302,99.3562,16.895,0.913917,100.755,17.3668,1.33139,98.3273,17.4158,1.95026,95.483,17.2639,2.32937,93.1155,1.1857,-10.1747,88.8308,2.29479,-10.4549,89.3186,1.49909,-8.2925,88.2324,0.826154,-8.61685,88.6425,0.492914,-6.96438,88.7464,0.616403,-5.02106,88.5796,2.73603,-9.13004,86.344,4.65216,-10.9952,86.9198,4.32422,-10.1413,84.1744,2.64151,-7.79014,83.8512,7.00771,-12.079,87.9348,6.74218,-11.7078,84.8584,4.08182,-9.15112,81.3745,2.55032,-6.48032,81.2645,6.4391,-11.0948,81.8087,3.08608,-10.2539,88.4652,5.03342,-11.5355,89.3436,7.18083,-12.2605,90.6177,1.58418,-4.89434,84.0175,1.50386,-6.56564,86.3358,1.21811,-1.54643,84.7232,1.00373,-3.4695,86.7558,3.02289,-12.9276,94.5576,1.51523,-13.0562,93.8293,4.54359,-12.8805,95.6754,4.22354,-12.0536,93.5572,2.8222,-12.1332,92.3152,1.44661,-12.2912,91.2879,2.68462,-11.5143,90.5656,1.40171,-11.4165,89.5459,1.10175,-0.591651,87.6215,0.661375,-0.430563,89.2667,1.94602,2.12273,87.0941,1.83051,3.68601,90.2494,5.36335,5.18869,87.629,5.47736,6.09458,90.2787,9.44555,6.01137,87.9048,9.78112,6.71517,90.8426,13.9967,5.27599,91.9301,13.5481,5.22813,88.4699,17.124,2.88484,89.013,14.4904,5.38266,94.1222,10.2958,7.44352,92.799,5.8789,7.65651,91.854,2.06665,6.32806,92.0319,5.75689,8.83919,98.0907,5.82723,8.77768,94.8303,10.5735,7.90253,95.7324,10.4667,7.83245,98.7183,1.64732,7.84539,94.6553,5.71872,8.31443,100.813,1.78328,7.90572,100.585,1.52518,8.20087,97.843,10.1316,7.43116,101.342,9.59657,6.85257,103.653,5.50268,7.75735,103.169,1.96204,7.32211,102.807,14.8316,5.26669,96.955,14.5902,4.95351,99.6617,15.4564,0.548463,104.828,13.2148,4.16904,104.171,16.2319,0.599742,102.859,13.9988,4.54437,102.033,7.40832,-12.6767,96.7196,7.24721,-12.4689,94.7432,7.71009,-13.0546,98.9225,6.06959,-12.9191,97.1922,5.74356,-12.2524,94.9933,5.53191,-11.9348,93.1168,4.00771,-11.6012,91.7506,5.34565,-11.7916,91.349,3.66944,-11.1165,90.1629,7.22043,-12.3674,92.8251,9.56836,-12.5384,89.2165,8.75849,1.62976,38.258,11.3165,1.20212,38.4369,11.4047,1.96517,34.4865,9.00517,2.30039,34.3249,8.84038,0.810315,42.6459,11.382,0.446844,42.6756,13.825,2.62895,39.0277,13.6151,3.23927,34.9067,13.9051,1.87689,43.2052,6.53804,9.01444,22.8323,6.82374,6.80097,22.8631,6.5593,6.96078,19.0976,6.35576,9.0722,19.0523,7.58304,4.88709,22.9622,7.36765,5.03061,19.1571,8.82273,3.61272,19.189,8.97886,3.4095,23.0041,14.2157,12.8497,36.0576,15.4402,10.7326,35.8823,15.8857,10.7144,40.0355,14.5274,12.8843,40.3095,13.7028,12.3441,32.0353,14.8567,10.5832,31.9653,12.3537,14.1216,40.1362,12.298,14.1204,36.0407,11.8274,12.7513,27.4782,12.1333,13.4646,31.9927,10.0823,13.8966,31.8775,10.1246,13.2955,27.4478,13.253,9.91523,22.6211,14.1282,10.355,27.5986,13.0726,11.7985,27.5512,12.3623,11.2547,22.5906,9.91115,12.9505,22.6241,11.3108,12.2588,22.5814,9.88268,14.4523,35.8697,12.7558,9.70731,19.0266,13.1938,8.05294,19.0763,13.7106,8.06334,22.7026,17.6257,-7.20974,79.8744,15.3065,-9.54902,79.4857,12.5257,-11.6389,83.1904,12.4729,-12.0625,86.8556,12.3859,-10.9484,78.9274,19.0104,-4.0019,80.1604,14.9412,-8.71046,75.3158,12.104,-10.0013,74.8178,9.20711,-11.1398,78.3433,9.40081,-11.9212,82.4577,9.00613,-10.0659,74.3783,6.2802,-10.0673,77.8531,6.1989,-8.85636,74.0382,4.04826,-7.91776,77.5468,4.1463,-6.59151,73.8474,6.08555,-7.54626,70.4007,4.2317,-5.2096,70.2765,2.6541,-5.13011,77.4703,2.93065,-3.77681,73.8141,3.23585,-2.42599,70.2682,5.91136,-6.30045,66.8793,4.24289,-3.90346,66.7655,8.74559,-8.84583,70.6635,8.45711,-7.66267,67.1479,11.663,-8.84842,71.0479,11.1673,-7.66901,67.5607,14.3324,-7.73345,71.4785,13.6029,-6.70245,67.9772,10.7101,-6.63624,64.3809,8.18144,-6.62715,63.8942,12.8897,-5.7781,64.8136,10.3349,-5.81352,61.5191,8.04079,-5.65231,60.9798,12.2887,-5.10284,61.9177,14.7262,-4.31982,65.0816,13.9059,-3.81173,62.09,11.8432,-4.70993,59.0584,9.84822,-5.1498,58.8307,13.4172,-3.34777,59.2115,5.75115,-5.18026,63.5304,5.87885,-4.05247,60.5116,4.25961,-2.70645,63.3828,4.58519,-1.53029,60.3061,15.6315,-4.99162,68.2964,16.932,-2.44077,68.5658,15.9934,-2.09677,65.2747,15.0876,-1.82202,62.1447,3.47881,-1.14894,66.778,3.66231,0.00792047,63.4091,3.34311,1.72358,66.9539,2.84433,0.554801,70.4039,3.70581,2.74664,63.6317,4.20123,4.52582,67.3189,3.4002,3.52169,70.7161,2.61628,2.45136,74.247,2.30552,-0.69552,73.9289,1.9664,1.2714,77.9093,1.85145,-2.01275,77.5706,1.51428,-0.0485676,82.1125,1.62278,-3.40785,81.601,4.01978,1.10023,60.2173,4.07317,3.59401,60.4087,5.32954,5.76028,60.9106,4.84909,5.27342,64.064,5.06782,5.75946,71.0615,4.12643,4.97801,74.6436,3.34981,4.09001,78.3909,6.20101,-2.74891,58.2174,7.8397,-4.46441,58.4965,7.67989,-3.57189,56.325,6.38862,-1.7642,56.2137,6.41296,-1.02765,54.254,7.54751,-2.88085,54.3525,5.5971,1.12971,54.1039,5.39237,0.391532,55.9875,5.10033,-0.396722,57.8946,9.47883,-4.61722,56.382,11.4976,-4.37167,56.4292,13.1841,-3.06216,56.5423,14.4962,-1.42444,59.3263,14.2264,-1.04738,56.7494,15.2496,0.722432,59.4452,15.0008,1.18134,56.938,15.2925,3.12634,59.7291,14.9941,3.64449,57.1851,14.9894,1.66278,54.6346,14.1292,-0.680808,54.3989,14.9162,4.2976,54.9955,12.9515,-2.6532,54.2806,14.9776,2.08793,52.252,13.9194,-0.250778,52.1229,15.0546,4.75488,52.6214,15.0471,2.6427,49.8479,15.4085,5.44868,50.2233,13.4405,-0.000284582,49.6671,11.2345,-3.78398,54.2537,9.31217,-3.9191,54.294,11.0993,-3.14266,52.2722,9.24756,-3.18878,52.3365,12.6937,-2.08043,52.2716,9.17394,-1.00626,48.9196,9.27773,-2.14643,50.6841,11.0902,-2.24702,50.5693,11.3331,-1.14222,48.8147,8.96397,-0.0372095,46.416,11.3487,-0.317377,46.2739,13.7433,1.03416,46.7234,7.69495,-2.14316,52.4418,5.24458,3.35345,54.0362,4.83161,2.72484,55.6932,4.48777,2.24925,57.3759,4.98847,4.84372,55.7092,5.51568,5.3583,54.1852,4.55957,4.46877,57.4216,5.79609,4.23308,52.2131,6.05022,6.25119,52.4897,5.94109,6.18673,56.0805,6.38999,6.67324,54.4194,6.87246,7.76831,52.5978,6.03949,1.96548,52.137,6.43272,2.88827,49.9145,6.07087,5.3263,50.0606,6.72712,-0.296263,52.2182,7.40788,0.24376,49.8454,7.36181,1.62598,46.9683,6.35203,4.00314,47.3471,5.86106,6.58021,47.4841,7.19024,2.60709,43.0341,5.92387,4.96378,43.4462,5.32932,7.74594,43.6751,6.21582,7.56288,50.3336,7.05715,9.37979,50.316,6.01617,9.05969,47.4632,7.10594,11.0895,47.3283,8.68929,10.5271,50.2355,8.38998,8.92503,52.6841,9.08226,12.1413,47.2095,10.2998,9.21298,52.767,10.7682,10.6993,50.1683,9.89893,7.89528,54.9464,8.0359,7.58469,54.6905,9.69237,7.12084,57.133,7.75968,6.82558,56.6639,9.6295,6.64463,59.5104,7.57848,6.55042,58.854,2.67679,3.12973,82.9223,5.71248,5.52133,83.5381,6.28672,6.21162,78.9664,7.39107,6.57484,61.5098,9.5876,6.56608,62.163,11.7644,6.29426,59.8635,11.8773,6.19258,62.5467,11.718,6.79991,57.4189,13.6399,5.62815,57.4449,13.8159,5.16378,59.9033,12.2533,8.56214,52.8668,13.8983,7.04639,52.9211,13.6297,6.2622,55.198,11.835,7.46556,55.136,14.4894,8.08058,50.5517,12.8219,9.85633,50.333,15.1905,8.97478,47.6653,15.8976,6.32982,47.6004,15.3975,3.50044,47.2494,13.5574,10.9594,47.4367,15.6647,4.28865,43.7794,16.3132,7.13916,44.1007,14.2115,12.0638,44.0905,15.759,9.90441,44.1664,16.2931,7.8892,39.8226,7.11973,12.6364,43.6748,9.44833,13.5697,43.681,5.65158,10.4993,43.72,7.25161,13.6519,39.6105,5.58211,11.5446,39.413,5.91354,11.6787,35.3809,7.44855,13.7235,35.6554,7.95415,13.3925,31.7442,6.46591,11.6338,31.6109,5.16689,8.68276,39.1037,5.58445,8.99135,35.0466,6.04582,9.07135,31.4492,6.45342,8.96871,27.5755,6.92861,11.4851,27.5487,9.7664,14.4316,39.8095,11.9706,13.3197,43.8571,5.71789,5.76863,38.8082,7.03972,3.39706,38.4839,7.66652,4.64119,27.4264,9.08282,3.11499,27.3826,6.84782,6.62843,27.5103,10.7881,3.30628,23.0275,11.0447,2.87854,27.4542,7.50126,4.40994,31.0674,9.10073,2.74971,30.9824,11.295,2.4702,31.1029,12.8533,3.98638,27.606,12.3253,4.39435,22.979,6.08187,6.32389,34.7238,6.51078,6.56498,31.2478,8.30004,13.0138,27.4879,7.03352,11.3111,22.7869,8.25925,12.785,22.7096,6.94671,11.0986,19.0164,8.05419,12.517,18.9844,15.5922,5.01221,39.5521,15.1846,5.41081,35.3165,14.1481,5.93048,27.6936,13.3008,3.66594,31.3873,14.7444,5.74428,31.6567,15.8181,8.0931,35.632,15.2667,8.21225,31.8487,13.3525,6.11423,22.8211,12.8455,6.32936,19.1098,11.9268,4.7238,19.137,14.5819,8.20909,27.6825,9.63855,6.30374,84.096,10.1474,6.98835,79.5776,14.0993,6.13146,80.0346,13.662,5.63343,84.4761,14.3831,6.2934,76.0061,10.7492,7.3645,75.6133,17.183,3.81563,76.1815,17.308,3.69081,80.2742,17.1723,3.36596,84.7247,16.8686,3.72474,72.348,14.4903,6.16471,72.2187,11.2927,7.36775,71.8926,16.475,3.53449,68.8183,14.458,5.84065,68.7218,17.2459,0.550656,68.7601,17.9923,0.480607,72.3078,18.6596,0.307313,76.1637,7.02563,6.81095,75.1059,7.85819,7.17522,71.466,11.6794,7.01735,68.4641,8.6812,7.16747,68.1119,6.11008,6.47758,67.7157,11.8702,6.53011,65.3536,9.27275,6.83738,64.9902,6.90858,6.63877,64.5067,16.5087,0.584638,65.4862,16.0584,3.35234,65.5806,14.3089,5.477,65.5302,18.5184,-3.42993,76.0242,17.8043,-2.91747,72.139,17.1888,-6.50508,75.7334,16.4957,-5.76123,71.8487,19.1087,-0.0835191,80.2946,19.2429,-0.448343,84.7469,15.6166,3.21081,62.5657,15.8036,0.623054,62.3745,14.043,5.2021,62.5989,9.56264,-12.3277,85.8219,5.65583,6.01617,57.9609,11.3898,12.0558,47.2222,7.26028,4.03863,34.4617,10.5338,3.61945,19.1956,9.45271,-12.9035,100.769,13.2443,-11.4398,100.268,14.6688,-9.36364,103.316,-0.00388892,-4.58458,89.0639,6.31365,7.03746,16.1508,6.17715,9.12702,16.0681,7.20461,5.03047,16.2967,8.71715,3.69434,16.3851,12.4304,9.6594,16.2638,12.8635,8.12686,16.2869,6.85395,10.9784,16.075,12.5388,6.50206,16.2779,11.6754,4.93408,16.2594,10.3799,3.80396,16.3438,9.55592,12.8546,18.9512,10.9223,12.1428,18.9378,11.9274,11.0325,18.975,7.89963,12.3513,16.1119,9.31169,12.8019,16.1382,10.6621,12.1116,16.1635,11.6617,10.9684,16.2117,-0.00284958,-11.2538,88.9952,-0.0013783,3.20714,90.9304,0.00404179,7.29747,97.7212,14.9376,-9.4576,101.471,13.0382,-11.2361,102.154,-0.00990935,-12.3725,90.8157,6.13337,6.85366,14.0112,7.16747,4.88128,14.3145,7.14828,4.62144,12.9287,5.80393,6.47554,12.068,5.94118,9.08729,13.8859,5.18088,9.64729,9.52839,4.90958,7.16589,9.52817,5.01343,7.17176,7.29544,4.94505,9.6419,7.37656,5.51606,9.04563,11.8009,6.32854,5.12911,11.3156,6.12613,4.94628,10.0534,6.05929,4.28787,8.06786,8.35295,0.600096,7.99116,7.17414,1.07126,6.95002,7.52915,2.66648,9.53681,6.38556,1.37253,5.48745,5.50057,4.38226,5.84029,7.33748,3.62219,10.9156,6.12988,11.5207,9.72527,5.62764,12.0034,7.53119,6.95148,13.5622,7.85784,7.29033,12.9157,10.0156,9.10569,14.2461,7.90158,9.01028,13.4674,10.2216,5.20067,12.2335,5.70841,6.65908,14.0296,5.87019,4.62273,9.81612,5.62097,8.73783,2.91735,11.3849,8.98236,2.03767,10.0892,10.0555,2.98542,11.3021,10.2149,2.06984,10.0229,10.6543,0.320082,8.29844,11.3953,-2.31751,6.22298,10.4559,-2.39041,6.32468,9.58326,0.292833,8.35156,9.32128,-2.21986,6.28621,11.5507,4.99817,14.269,10.2862,3.85899,14.445,8.6775,3.6788,14.5129,12.0766,5.0847,10.1776,12.055,3.35083,8.67086,11.2537,2.56574,9.55216,11.1471,3.64776,10.8622,12.5927,12.1997,6.23884,12.6945,12.6814,4.26716,13.374,10.4573,4.5635,13.1796,10.0099,6.63546,11.1895,13.9938,6.04382,10.9747,14.3178,4.11087,12.2608,12.916,2.42734,13.1604,10.9208,2.65246,10.5647,14.2918,2.34251,12.0536,10.9573,1.34824,11.0876,12.4321,1.24312,10.1536,13.4741,1.30577,13.156,5.64721,6.24543,13.495,6.34421,4.53754,13.9228,3.96031,4.05447,13.5232,3.08988,5.39616,14.8321,1.1642,3.34365,14.2667,0.243699,4.51384,12.9726,2.16413,6.47053,13.5464,-0.664155,5.25284,12.6563,4.19518,7.49289,13.2666,9.36848,7.58233,13.2154,8.03925,6.22119,13.199,7.88312,7.3244,13.1498,-10.8558,1.24245,13.6648,-10.7657,1.36879,13.7223,-11.1106,0.93328,13.411,-11.2256,0.725625,13.7605,-11.1484,0.484668,14.0033,-10.9004,0.730221,14.3526,2.00144,0.863999,15.0925,1.87923,1.99215,14.2114,4.61347,2.53901,13.475,4.70091,1.03612,13.7312,6.99842,2.80799,12.8785,7.09566,1.20207,9.49309,11.8638,0.77536,10.309,10.4759,0.734733,13.3977,9.31163,2.77618,12.4447,9.32698,1.30916,11.3906,6.64214,0.648751,10.8887,8.91821,0.70007,8.72449,13.172,1.10297,7.96135,11.1291,0.621858,7.10696,12.3042,1.00897,8.62178,9.80179,0.568368,8.36651,14.4073,2.30139,8.94046,14.696,5.95215,8.60787,14.7468,4.04625,6.35616,13.9238,3.99383,11.1122,13.4248,8.01844,4.45712,9.71512,3.93604,4.72708,9.36964,2.40479,4.98424,11.6039,2.31839,4.92296,12.0657,3.95822,6.28859,13.4204,2.2725,5.99951,10.932,1.0465,5.79879,9.11334,1.19181,4.73105,7.19192,3.97787,5.14661,7.06828,2.5283,6.14835,7.18294,1.43873,10.6987,12.7153,10.4826,9.18661,8.27337,0.594249,13.8789,-10.1978,0.430099,13.8649,-9.7709,0.685006,13.4245,-9.84366,0.582598,13.5591,-10.3723,0.340125,13.008,-10.1593,0.666857,13.2031,-10.5318,0.409734,13.6948,-10.8489,0.314683,14.0449,-10.5081,0.502042,13.2001,-10.9257,0.475668,14.3924,-9.03155,0.642916,14.6372,-8.98195,0.57838,14.5375,-8.57689,0.740107,14.2447,-8.74443,0.835425,14.9032,-8.23611,1.01264,14.4856,-8.17834,0.974751,14.9044,-8.64817,0.755738,15.2128,-8.94261,0.88518,14.8877,-8.95502,0.601461,15.0796,-9.25962,0.650591,15.2544,-8.52079,1.21055,14.1651,-8.37123,1.11626,14.1233,-8.73433,1.40529,14.2076,-9.12301,1.02828,14.1492,-8.0053,1.29654,14.4671,-7.80623,1.1134,14.1089,-8.30994,1.6919,14.4338,-9.38451,0.708573,14.4785,-9.48887,1.24782,14.5785,-9.69125,0.903927,14.7838,-9.42061,0.589973,14.9331,-9.75863,0.867689,5.76027,4.64032,2.68079,6.67903,4.86856,1.6336,6.18099,-1.50285,2.41643,6.98286,-1.26165,1.06534,7.0414,1.84065,1.39221,6.18978,1.86813,2.60015,5.38951,4.50787,4.10019,6.04511,1.67666,3.98079,7.20463,-1.87312,5.06318,6.42621,-1.68133,3.83038,12.8244,-8.62706,1.28685,12.88,-9.12866,1.25167,13.3144,-8.89837,1.06744,13.2417,-8.40048,1.07105,12.9025,-9.62861,1.02544,13.3437,-9.3326,0.887013,12.6435,-8.85666,1.8731,12.6973,-9.40515,1.76704,12.7447,-10.0118,1.42365,12.5837,-8.02221,1.12509,13.042,-7.72108,0.930424,12.5475,-8.46163,1.8587,14.0953,-9.25014,2.20707,14.0933,-8.97312,1.67489,14.1147,-9.49935,1.37336,14.0916,-9.87739,1.76598,13.6211,-9.51283,2.51758,13.6596,-10.2015,1.99532,14.1212,-10.0258,0.919211,14.0461,-10.4275,1.19874,14.2244,-4.87624,3.91971,14.9842,-4.32668,3.6584,15.0287,-5.52295,3.34896,14.5812,-5.84289,3.46559,13.584,-5.58704,3.88752,14.1636,-6.2574,3.34181,15.13,-6.23706,2.91354,14.7702,-6.58124,3.00861,14.3655,-6.85667,2.88987,15.5611,-4.90619,3.20055,15.3105,-5.44306,3.14204,15.7396,-5.48613,2.77178,15.3715,-5.87337,2.78161,13.6539,-6.61569,3.39429,13.966,-6.63655,3.17148,14.0623,-7.07516,2.82145,14.348,-7.46595,2.38754,14.0912,-7.50315,2.3328,14.8473,-7.2305,2.58488,13.0937,-6.77325,3.5269,12.709,-5.83325,4.05476,12.5046,-7.04798,3.42572,11.8153,-6.29726,4.00428,12.1586,-4.52984,4.80059,11.2263,-4.79032,4.86969,12.9756,-4.15548,4.71161,13.3043,-7.50534,3.12674,12.7326,-7.68792,3.06337,12.1832,-7.37701,3.32717,12.2814,-7.8267,3.05371,11.7562,-7.27238,3.60325,13.4136,-8.14522,2.84481,12.7478,-8.33248,2.63829,12.374,-8.27795,2.5803,13.7867,-7.29287,2.97348,13.9306,-7.88679,2.47308,15.3188,-8.89656,1.51044,15.2865,-9.32387,1.1347,15.3191,-8.34442,1.88183,15.2387,-8.02361,1.48295,14.8842,-7.8091,1.18676,8.92768,-11.5386,2.20935,9.8299,-11.1317,1.85092,9.98527,-11.8093,1.74214,9.05954,-12.1046,2.06632,10.3186,-11.7042,0.933853,10.1092,-10.8814,0.978428,8.83316,-10.9442,2.4063,9.70191,-10.4193,2.06851,9.83229,-10.0612,1.1726,12.8351,0.989929,0.622038,12.1067,3.66496,0.535062,10.473,2.44124,0.550592,11.0494,-0.16894,0.601914,15.1992,-9.55429,0.844263,6.2917,-7.66027,1.13211,6.04559,-6.54078,1.12749,5.86209,-6.68736,2.33089,6.20093,-7.86399,2.14279,6.71412,-8.48759,1.04335,6.63054,-8.79412,1.91175,6.41545,-6.74907,3.52601,6.75036,-7.92831,3.16742,7.17099,-8.90588,2.8391,7.07668,-9.24441,0.933371,6.94813,-9.62367,1.70749,7.72358,-8.86585,0.53297,7.28337,-8.17269,0.473903,6.87906,-7.44518,0.414234,7.49944,-9.78275,2.58705,7.26185,-10.0161,0.765791,7.99511,-9.59355,0.417621,8.7605,-8.61548,0.682866,8.10763,-7.96024,0.254094,8.92595,-9.33109,0.63829,7.79308,-7.31114,0.085052,8.51825,-7.38014,0.0393865,8.89626,-7.84728,0.25042,9.42219,-8.37144,0.821625,8.20492,-8.68327,3.40905,8.55686,-9.49824,3.06657,7.83459,-7.79499,3.81226,9.21977,-8.27081,3.45892,9.53376,-8.88516,2.73037,9.59001,-9.68267,2.35883,8.74564,-10.2717,2.73251,7.69258,-10.5709,2.34578,9.01159,-7.6031,3.89935,9.69903,-7.54689,3.65566,9.88069,-7.93003,3.30173,9.97783,-8.3924,2.6436,10.4315,-7.63023,0.352004,9.64261,-7.75952,0.30797,10.2006,-8.57267,0.856589,10.9641,-8.46226,0.688354,11.7834,-8.37109,1.00811,11.2154,-7.50228,0.488713,10.7456,-9.38569,0.996989,11.3414,-9.23919,0.799832,11.9937,-9.14815,1.11668,11.8008,-7.36269,0.595531,12.1752,-8.04154,1.11478,12.2326,-7.14503,0.61653,11.6938,-6.36726,0.318195,11.4409,-6.77258,0.324119,10.7979,-6.67154,0.214189,12.6953,-6.88065,0.610294,13.5543,-7.55529,1.10613,13.1616,-6.67477,0.655632,13.701,-8.31498,1.24895,9.84983,-6.76913,0.121309,10.8568,-5.68872,0.305237,9.56725,-5.71115,0.287925,13.8108,-6.18595,0.6413,13.4486,-5.42594,0.396776,13.2756,-5.8851,0.443244,13.5127,-6.47024,0.680406,12.8498,-5.81336,0.391686,12.6968,-4.70917,0.404621,12.2342,-5.97875,0.341716,11.7926,-5.12541,0.358721,14.1986,-5.83312,0.589821,13.9074,-4.95175,0.383267,14.3746,-6.67041,0.878402,14.0174,-7.05323,1.11114,14.6549,-5.52136,0.616511,14.4965,-4.67464,0.42757,14.8577,-6.42603,0.988322,16.0301,-4.4523,0.717026,15.8243,-3.56549,0.611777,15.2144,-4.14279,0.510176,15.4644,-4.84113,0.681522,16.6195,-4.22982,0.926624,16.5246,-3.20543,0.923743,16.116,-2.03698,0.899068,15.0709,-2.70622,0.640714,14.3984,-3.69523,0.501728,15.9782,-5.27122,0.760607,15.444,-5.6655,0.951745,15.4052,-6.13212,1.04043,15.8437,-5.89505,0.746681,16.3833,-5.83255,0.766104,16.5321,-5.12026,0.866478,12.3804,-8.39349,1.83557,12.0522,-8.52997,2.77392,11.8489,-7.92525,3.27442,12.263,-8.64002,1.85458,14.0073,-8.58199,2.37652,13.5187,-8.79253,2.73303,12.8878,-8.91075,2.52646,15.2077,-6.84378,2.2929,15.3617,-6.26968,2.20028,15.6558,-6.08379,2.20418,15.3446,-6.15655,1.5359,15.2581,-6.28191,1.53533,15.1718,-6.75763,1.55928,11.3144,-8.55884,3.11502,11.1827,-7.9026,3.41953,12.1178,-9.2327,2.6608,11.452,-9.33736,2.94678,12.3338,-9.17104,1.86238,10.4842,-7.84805,3.3251,10.5459,-8.55564,2.75368,10.8069,-9.41715,2.51461,10.239,-8.82338,1.74349,9.82454,-8.58664,1.69202,10.5412,-9.4775,1.68522,9.55204,-8.81036,1.59529,16.2793,-2.48308,2.70027,16.5214,-2.02945,1.73836,16.8057,-3.21321,1.64741,16.6053,-3.59522,2.48524,16.9011,-4.27147,1.51535,16.7451,-4.58122,2.22022,15.7803,-1.13367,2.93076,16.0272,-0.548525,1.78971,15.3071,-0.405849,0.821913,16.8371,-5.18707,1.33118,16.7274,-5.95438,1.12687,16.7345,-5.43631,1.91977,16.6782,-6.20087,1.63888,16.3163,-5.05466,2.72048,16.3014,-5.78284,2.3121,16.248,-6.44955,2.00505,15.6607,-6.54619,1.97736,9.9809,-13.0951,1.31378,10.0641,-12.5396,1.58919,10.3408,-12.476,0.935584,10.0627,-13.0988,0.862995,9.39033,-13.4324,0.838866,9.37822,-13.3406,1.36074,8.22995,-13.0074,0.567708,8.01545,-13.0896,1.16763,8.60906,-13.4407,0.978975,8.63832,-13.3231,0.61901,8.72748,-13.3784,1.37267,8.39589,-12.9822,1.68716,9.27526,-13.2158,0.468092,9.23257,-12.7747,1.83894,11.6624,-12.4926,1.14218,11.4547,-12.154,1.41544,12.0109,-12.0866,1.53703,12.1295,-12.4851,1.12155,12.1287,-12.4541,0.717988,11.5847,-12.4164,0.816346,11.2341,-12.0431,0.991659,12.529,-11.9079,1.32609,12.5378,-12.2977,1.06322,12.7162,-11.729,0.936731,12.5962,-12.2155,0.751928,14.419,-7.98844,2.23602,14.1132,-7.87585,1.79735,14.0707,-7.54935,1.7669,13.9746,-7.54763,1.72569,14.1353,-7.59502,1.29966,13.77,-7.15349,1.13277,15.315,-6.41634,1.54284,15.1564,-5.8824,0.995695,12.4469,-12.0207,0.546334,12.0486,-12.1223,0.497154,11.6342,-12.173,0.568043,12.4655,-11.5984,0.5847,15.4631,-7.97302,0.54172,15.2167,-7.92078,0.763713,15.3899,-8.21919,0.930986,15.6679,-8.3048,0.773731,15.9074,-8.12634,0.598735,15.7851,-7.82587,0.421417,16.1622,-7.88619,0.75196,16.0983,-7.49667,0.466749,15.4038,-7.53963,0.479026,15.6619,-7.50858,0.376703,15.8177,-7.19338,0.409117,15.4482,-7.14185,0.546003,11.6192,-10.2266,2.71777,12.2667,-10.0135,2.50185,12.4558,-9.82435,1.78462,16.1854,-7.11555,1.7292,15.6176,-7.09991,1.80043,16.574,-6.88593,1.34609,11.3165,-11.6272,1.65115,11.8843,-11.5681,1.85993,11.1662,-11.0574,1.96131,11.7741,-11.0095,2.29876,12.366,-10.759,2.10949,12.422,-11.3589,1.65491,15.1522,-7.66371,1.04708,15.1884,-7.27843,1.31292,15.545,-7.59966,1.50915,15.4524,-8.02284,1.21874,15.2482,-6.84408,1.49594,16.0635,-7.67028,1.39407,15.9172,-8.12621,1.10503,14.9105,-7.89924,2.3602,14.4373,-8.55786,2.0449,14.9643,-8.58211,2.13226,16.3846,-7.4359,1.01552,9.60351,-9.35176,1.41361,9.16174,-10.0914,0.382425,8.15502,-10.4134,0.147846,9.45698,-10.9754,0.171825,8.38043,-11.3193,-0.00443739,12.3352,1.38194,7.36048,12.8836,-1.42683,5.74469,12.2056,-1.99737,6.05921,11.5978,0.726261,7.97449,4.78513,7.22152,5.64054,12.9124,6.49526,7.40663,13.2184,7.52224,8.80097,12.5924,5.72385,8.44635,13.7613,-1.57092,0.616842,8.22526,-5.25359,0.43581,9.31369,-3.95945,0.510353,6.7284,-4.41958,0.802863,7.21112,-5.41022,0.469715,6.74909,-6.52021,0.39845,8.259,-6.36768,0.254676,14.3745,-2.85293,4.2572,13.6756,-3.58019,4.55097,15.1555,-1.96759,3.82195,15.7098,-3.25728,3.41553,10.0966,-4.87304,4.88619,10.5678,-6.29332,4.18444,8.83627,-5.01177,4.9292,8.24187,-2.08399,5.92374,9.23032,-6.64242,4.25819,7.47186,-5.0572,4.6303,7.60828,-6.70136,4.26055,6.35693,-5.02668,3.73737,13.3659,8.66055,4.7308,6.92068,10.4124,0.659088,13.1915,9.55046,8.80592,12.8078,6.94085,10.7431,12.9558,9.02069,10.5348,9.72077,5.93969,0.659999,7.11549,9.20071,0.70786,13.8152,-9.27686,1.02807,13.7756,-8.83206,1.2328,14.0252,-8.41293,1.75584,12.8629,-10.5847,0.921291,14.4452,-9.06193,1.66267,16.1264,-4.22419,3.0919,14.9582,-9.13367,1.71587,14.9573,-9.5796,1.31417,10.1411,-7.27754,3.70859,10.9567,-7.21199,3.75297,9.04961,-7.07196,0.145347,7.10414,-10.4168,1.53841,8.69723,-12.1405,0.0514911,7.53143,-11.6765,0.518121,7.83275,-12.4148,0.526318,9.02386,-12.7849,0.230931,7.36664,-11.8782,1.34215,7.61722,-12.5239,1.28235,7.95431,-11.8292,1.97614,8.12026,-12.3907,1.88127,13.4942,-4.14872,0.433905,15.0563,-5.21069,0.663581,14.9329,-4.64433,0.494346,14.8617,-7.27219,1.15822,14.4453,-7.34508,1.05894,13.9387,-7.86843,1.73871,9.8873,-12.5552,0.372413,9.73262,-11.8424,0.20538,9.85834,-13.0035,0.506832,12.3943,6.57658,14.2205,12.2523,11.6935,8.17698,11.8512,11.1488,10.4793,15.2464,-7.65547,2.08119,15.1897,-7.42222,1.56536,11.436,-11.8025,0.579865,11.9469,-11.6264,0.43985,15.2018,-7.58659,0.646199,15.1735,-7.30965,0.786153,12.9804,-9.57832,2.33694,13.0599,-10.2613,1.85391,16.575,-6.56973,0.911711,11.0484,-11.5043,1.16135,12.642,-11.128,1.2059,12.3977,-10.9852,0.736343,11.8412,-11.0219,0.510239,11.2735,-11.2388,0.667588,10.9009,-10.9177,1.34389,12.5609,-10.4872,1.53745,12.2948,-10.3624,0.945495,11.7255,-10.429,0.651959,11.1438,-10.6556,0.795092,10.7421,-10.241,1.53168,10.9898,-10.298,2.27845,10.9967,-10.0699,0.928259,12.156,-9.78115,1.0949,11.572,-9.88136,0.780527,16.0121,-6.7818,0.538893,15.5477,-6.73769,0.665154,15.2107,-6.92991,0.962408,16.3628,-7.0638,0.661475,15.2979,-6.53826,1.05701,15.6884,-6.34654,0.742437,16.2041,-6.35591,0.678158,7.34458,-10.8441,0.581745,7.20615,-11.1745,1.41093,7.82652,-11.2441,2.11546,8.98337,-0.928535,0.705747,5.88159,-4.87501,2.36791,12.4786,6.63975,12.4982,12.6834,8.17918,14.1949,12.749,8.39709,12.3973,12.8229,10.4749,8.51046,9.1675,12.8117,14.2101,10.5593,12.1557,14.2616,75.0826,5.10787,139.686,73.6826,4.46106,140.127,74.5288,3.40321,139.766,75.4372,4.07735,139.457,75.2274,6.25984,140.027,74.0572,5.95653,140.401,75.6201,7.21458,140.728,76.2735,6.49206,139.661,76.6123,7.39427,140.392,76.2378,7.59219,141.657,77.1279,7.75773,141.272,74.9843,7.43509,142.04,74.4723,6.94319,141.044,76.1872,5.43031,139.325,75.6285,7.25426,143.14,76.2176,6.19871,143.849,76.3324,4.66021,144.199,75.9732,2.9801,144.101,77.8455,2.63625,143.459,78.2638,4.5446,143.557,78.182,6.15261,143.103,76.7696,1.09306,142.842,75.0903,1.67459,143.465,77.3299,7.29505,142.444,77.6682,7.65935,141.818,77.9952,7.88361,140.952,78.5164,7.71034,141.618,76.3102,4.49461,139.201,75.4354,0.574585,141.901,73.8459,1.24649,142.21,78.961,7.26196,142.045,79.5171,6.68689,142.295,75.2812,2.50072,139.299,76.0668,3.19553,139.111,73.1021,1.93148,141.076,73.1249,2.98465,140.448,89.7547,9.0947,138.615,89.6738,9.04956,138.874,89.4053,9.05782,138.896,89.3796,9.17508,138.56,89.9552,8.86881,138.673,89.7624,8.84943,138.973,92.0112,4.14243,138.48,92.0662,4.32937,138.788,92.5881,4.37474,138.68,92.7187,4.28248,138.415,92.7902,4.60476,138.765,93.1353,4.55901,138.399,87.0028,-2.127,139.64,86.959,-2.36217,139.442,86.5377,-2.36795,139.325,86.4704,-1.94294,139.835,85.6025,-2.01514,139.646,85.7272,-1.63922,140.13,87.1447,-1.79125,139.775,86.6436,-1.4846,140.002,85.8968,-1.08588,140.287,87.0055,-1.12197,139.662,87.3005,-1.53759,139.733,87.5792,-1.67461,139.573,87.5448,-1.96927,139.52,87.4072,-2.28062,139.411,86.0519,-0.586129,139.955,85.1517,-0.139226,140.279,85.0343,-0.667648,140.659,84.8855,-1.27831,140.518,86.0945,-0.320021,139.338,87.0272,-0.724569,139.099,85.2481,0.0387498,139.557,84.2122,0.371252,140.657,84.5984,0.413553,139.758,85.1763,-0.0775301,138.857,85.9849,-0.377252,138.681,84.5405,0.370845,138.982,88.0111,-2.10048,139.208,87.8452,-2.48184,139.105,87.909,-1.55384,139.243,88.6714,-2.34544,138.876,88.4847,-2.76488,138.782,88.8105,-1.89157,138.759,89.3236,-2.62361,138.57,89.1549,-3.02021,138.502,89.6588,-2.27464,138.353,87.2225,-2.7675,138.336,87.415,-2.69053,138.922,88.2761,-3.06849,138.478,88.0974,-3.11116,137.972,89.1834,-3.38959,138.157,88.9751,-3.41198,137.666,89.9399,-3.58057,137.87,89.7803,-3.66352,137.447,90.5225,-3.74366,137.708,90.4777,-3.88333,137.344,89.6092,-3.40421,138.215,89.8506,-3.45682,138.104,90.2781,-3.33518,137.997,90.6839,-3.45736,137.917,90.0052,-3.26388,138.165,90.9746,-3.8508,137.658,91.0994,-3.97677,137.341,91.0656,-3.90422,136.988,90.5153,-3.75486,136.948,89.7522,-3.47265,137.031,91.2077,-3.64251,137.793,90.8441,-3.0867,137.931,91.3826,-3.27033,137.795,90.4212,-2.97725,138.036,90.9582,-2.75066,137.761,91.3804,-2.96973,137.662,90.3677,-2.54187,138.003,90.6613,-3.39672,136.734,91.3303,-3.67969,136.874,89.8516,-3.05533,136.803,90.8429,-2.97183,136.745,90.0401,-2.58801,136.846,91.5039,-3.29542,136.877,88.912,-3.15499,137.218,89.0008,-2.68089,136.986,89.2133,-2.19143,137.091,89.661,-3.17669,138.338,89.7944,-2.83991,138.388,90.1307,-2.94191,138.214,89.9304,-2.59844,138.335,90.1569,-2.67624,138.217,91.4945,-2.95668,137.006,91.0012,-2.63597,137.005,90.2521,-2.26906,137.17,89.4557,-1.9093,137.473,90.3873,-2.23452,137.626,89.6265,-1.9218,137.953,88.6566,-1.50083,137.833,88.3938,-1.77937,137.395,88.8183,-1.54463,138.359,91.5697,-2.95645,137.35,91.0654,-2.56044,137.423,87.5401,-1.41019,137.738,87.276,-1.96356,137.583,88.1454,-2.30253,137.246,87.8091,-1.08967,138.194,86.6307,-1.09691,138.04,86.3675,-1.67787,137.931,86.8994,-0.718254,138.485,85.4277,-1.4192,138.236,85.3499,-1.9237,138.547,86.2606,-2.20584,138.184,85.6955,-0.810284,138.255,87.1579,-2.50402,137.822,87.9507,-1.1387,138.769,85.4594,-2.11157,139.069,84.4588,-1.63561,138.914,84.5789,-1.808,139.451,83.5158,-1.3253,139.233,83.6172,-1.49083,139.842,84.7357,-1.67856,140.031,83.791,-1.3275,140.458,84.2242,4.12928,138.535,85.2127,4.20787,138.777,85.0583,4.99912,138.69,84.0596,5.00427,138.477,84.572,3.23815,138.834,85.3416,3.62616,139.271,85.8775,5.00225,138.593,85.9376,4.27163,138.76,85.9775,3.81153,139.241,86.706,3.84585,139.079,86.6841,4.28304,138.567,86.7027,5.00925,138.357,85.9292,3.78497,139.884,86.7186,3.80279,139.688,87.6297,3.8514,139.465,87.5816,3.88821,138.893,87.5716,4.31432,138.4,85.318,3.72751,140.009,85.2131,3.3335,139.462,85.0781,3.44519,140.067,85.3981,2.95812,139.243,85.3963,3.10244,140.057,86.1194,2.68677,139.149,86.1062,2.82809,139.887,85.2487,2.27184,138.78,85.9835,2.13477,138.694,84.2375,2.44347,138.704,87.0014,2.57902,139.598,86.9268,2.51682,138.882,86.7348,2.01198,138.419,88.0454,2.33093,139.237,87.9011,2.30311,138.555,88.0586,2.01702,139.93,86.9113,2.33564,140.287,85.9261,2.63873,140.633,87.6701,1.81756,138.121,89.1612,2.05707,138.824,88.9737,2.03774,138.207,88.7145,1.58421,137.794,86.6953,1.933,140.759,85.7321,2.19334,141.126,87.607,1.68406,140.423,88.5395,0.924309,137.855,87.5045,1.15138,138.195,89.7993,1.36469,137.472,90.0705,1.79239,137.883,89.6194,0.710915,137.501,86.7138,4.10004,140.208,87.7086,4.11831,139.998,87.4908,4.55859,140.27,86.6973,4.59079,140.454,85.8421,4.11103,140.463,85.8307,4.64248,140.725,86.755,5.09999,140.353,87.5591,5.01575,140.193,88.0872,4.55971,140.184,88.1136,4.28689,140.107,88.1477,4.94267,140.131,85.8417,5.19001,140.602,88.5743,4.5544,140.037,88.4414,4.2887,140.006,88.6361,4.9373,139.999,89.0975,4.5453,139.804,88.7151,4.1342,139.712,89.1633,4.98945,139.759,88.5812,5.21479,139.896,88.8899,5.40468,139.535,89.8396,5.43175,139.229,89.8534,5.02103,139.526,89.7926,4.56589,139.573,88.528,3.93977,138.7,88.6004,3.88603,139.229,89.5527,3.90436,138.994,89.4496,3.99368,138.497,90.4241,3.96242,138.787,90.2922,4.07767,138.324,89.6797,4.15318,139.395,90.591,4.22144,139.207,88.5113,4.35945,138.247,89.4118,4.4082,138.075,87.6249,5.00519,138.185,88.5672,5.0026,138.032,89.4666,5.0082,137.871,90.2407,4.48084,137.964,90.3032,5.01924,137.797,89.613,5.53508,138.144,90.4611,5.49552,138.039,88.7001,5.56642,138.315,87.7517,5.59888,138.498,86.8018,5.6385,138.684,91.1012,4.14667,138.183,91.2244,4.03968,138.615,91.0571,4.53043,137.869,91.3684,4.27309,139.012,91.9631,4.20467,138.088,88.2772,1.47866,140.174,88.4585,1.72715,140.039,88.8468,1.35182,139.898,88.8396,1.63864,139.858,89.2265,1.74465,139.421,89.4933,1.26015,139.523,90.3786,1.52419,138.908,90.3671,1.1041,139.141,90.2805,1.8085,138.444,91.4525,1.27399,138.654,91.2046,0.924657,138.89,91.3026,1.56445,138.203,91.1005,1.53523,137.693,92.1439,1.32428,138.067,92.2133,1.04683,138.466,92.0089,1.29984,137.597,90.8552,1.14962,137.315,91.8179,0.952122,137.238,90.6859,0.558092,137.29,91.6675,0.412589,137.174,90.682,0.0650208,137.612,91.6362,-0.0739038,137.427,89.6196,0.213571,137.91,88.515,0.445288,138.303,89.7683,0.0627995,138.461,90.8396,-0.110764,138.11,88.6129,0.319646,138.897,92.8329,1.08309,138.005,92.7634,0.873844,138.326,93.1834,0.721905,138.293,93.3807,0.791328,138.021,92.8053,1.05498,137.583,93.3399,0.814672,137.67,93.6316,0.405496,138.044,93.2331,0.42592,138.406,93.4315,0.502191,137.528,93.166,0.0205226,138.393,93.5806,-0.0344645,138.01,93.3517,0.083602,137.475,92.7075,0.526375,138.476,92.3387,0.617053,138.529,92.2561,0.236393,138.491,92.6235,0.133842,138.448,91.7612,0.762514,138.78,91.8409,1.00421,138.725,92.078,0.931413,138.662,92.1048,0.664118,138.678,91.6765,0.403907,138.742,92.029,0.319711,138.637,91.0907,0.495359,138.864,91.8835,0.090825,138.562,91.6346,0.143932,138.633,91.9433,-0.0842769,138.345,91.1348,0.0665539,138.573,91.7361,-0.258569,137.897,89.9993,0.265502,138.922,90.2287,0.65276,139.146,88.7007,1.00889,139.884,89.3393,0.84823,139.523,88.8024,0.553737,139.451,88.4988,0.790671,139.849,88.1135,0.865126,140.037,88.1307,1.12765,140.169,87.5979,0.788251,139.981,87.4283,1.24125,140.436,86.4088,0.993308,140.361,86.4955,1.4266,140.789,86.399,0.769433,139.667,87.4694,0.581369,139.324,87.4446,0.696344,138.675,86.4702,0.881261,138.952,85.4909,0.949243,139.892,85.4227,1.16825,140.649,85.6532,1.0233,139.134,85.5362,1.61676,141.135,84.499,1.25186,140.814,84.6527,1.77611,141.449,84.8155,2.46242,141.514,86.576,1.33574,138.458,92.5885,0.251209,137.212,92.5095,-0.17794,137.417,93.1316,-0.220766,137.534,93.1845,-0.344632,137.908,92.5076,-0.354436,137.837,93.0038,-0.255668,138.234,92.5281,-0.198664,138.229,90.4621,4.60255,139.413,90.5149,5.01124,139.376,90.954,4.41017,139.282,90.9415,4.6463,139.34,90.9878,4.98013,139.325,90.742,5.39866,139.084,91.0652,5.22299,139.225,91.5402,5.3869,138.919,91.3202,5.22519,139.171,91.3583,4.98546,139.236,90.6257,5.63666,138.551,89.7567,5.66452,138.703,91.293,5.47395,137.956,91.4524,5.61355,138.43,88.823,5.68139,138.914,92.2627,5.33244,138.729,92.2592,5.5117,138.354,92.1717,5.41074,137.931,92.7768,5.22537,138.653,92.9271,5.2951,138.364,92.8788,4.95816,138.776,92.2677,5.00445,138.93,91.7267,5.01514,139.061,92.0626,5.011,137.718,91.1304,5.02838,137.738,92.8212,5.27886,138.028,92.9248,4.97036,137.933,92.1918,4.63986,138.936,91.6629,4.64614,139.084,91.3058,4.65848,139.249,91.2008,4.42101,139.222,83.6961,1.06204,140.996,84.0838,0.903469,140.554,83.4403,0.740011,141.212,82.8309,1.28549,141.697,83.6863,1.42114,141.346,84.4138,0.836277,139.877,84.7937,1.03891,139.954,91.9815,4.55041,137.806,92.8472,4.56995,137.959,93.226,4.95305,138.392,92.6354,4.29125,138.1,91.725,-3.39743,137.358,91.5432,-3.79261,137.363,88.5502,8.62941,139.279,88.5537,8.92813,139.038,88.8651,8.84122,139.156,88.8924,8.65914,139.241,89.0133,8.86114,139.122,89.0972,8.69296,139.183,89.0499,8.99866,138.958,89.1459,8.44868,139.214,88.9444,8.40201,139.276,89.1343,8.25362,139.196,88.9915,8.21423,139.234,88.627,8.30159,139.332,88.757,8.01106,139.159,89.5743,8.11526,138.717,89.8811,8.31953,138.736,89.8563,8.30227,138.464,89.5489,8.14073,138.377,89.9998,8.59031,138.718,89.894,8.5218,138.348,89.7737,8.37134,138.951,89.7984,8.58161,139.001,89.835,8.81201,138.296,89.7186,9.03139,138.333,89.3683,9.05871,138.208,89.4118,8.73545,138.046,89.4861,8.37833,138.119,88.8276,9.01333,138.154,88.8393,8.62714,137.959,88.9078,9.14845,138.556,84.8286,-0.562267,138.489,84.0226,-0.189363,138.659,83.6314,-0.845134,138.778,84.5284,-1.16454,138.549,84.5218,0.778923,139.267,88.2156,8.89378,138.197,88.2231,8.47685,138.008,88.3363,9.06274,138.611,75.9045,1.84925,138.697,74.9043,1.5903,139.554,75.6983,0.746973,138.768,76.2621,2.47042,138.715,86.3473,-2.43022,138.706,87.2346,-2.45822,139.303,78.2482,0.954406,142.696,78.8024,1.80933,142.924,79.3052,2.91787,143.129,79.3813,2.28972,142.914,79.5384,3.88086,143.151,79.6633,1.39964,142.587,80.0686,2.10283,142.671,80.3209,2.83148,142.83,80.5508,1.04454,142.302,80.9242,1.82389,142.397,81.2602,2.6485,142.56,79.22,0.658627,142.411,80.1774,0.340233,142.129,78.0788,0.357487,142.315,78.7163,0.0266913,141.999,79.6449,-0.471637,141.548,79.6776,5.76555,142.688,79.6803,4.96645,142.979,79.9781,4.41037,142.973,80.753,5.01222,142.566,80.7511,4.34703,142.695,80.5554,3.64932,142.817,80.7562,5.69801,142.298,80.3246,7.89424,140.139,80.763,7.79691,140.796,79.6533,7.78608,141.193,79.1683,7.93715,140.511,78.7938,7.56744,139.736,77.5897,7.51839,140.074,79.9883,7.53524,139.452,81.98,7.80267,139.232,82.3325,7.9709,139.816,81.37,7.9157,139.926,81.0454,7.62756,139.289,82.7346,7.85145,140.329,81.8021,7.8228,140.513,81.2149,7.43627,141.219,80.1458,7.36644,141.584,83.0787,7.55051,140.765,82.2307,7.50528,140.945,81.5917,6.96932,141.508,80.6063,6.8926,141.813,83.3065,7.0415,141.069,82.5191,7.01138,141.272,80.8046,6.32873,142.027,81.7338,6.35546,141.73,81.7337,5.68159,141.989,83.4649,6.30794,141.207,82.6197,6.34998,141.485,83.3488,5.55254,141.614,82.5965,5.6341,141.777,80.0062,6.28047,142.333,83.2597,8.00851,139.698,83.5826,7.88001,140.17,82.9503,7.9159,139.174,81.9209,7.19821,138.643,82.8671,7.45009,138.687,83.8998,7.58495,138.687,84.7597,7.67081,138.595,84.6975,8.11526,138.9,83.924,8.01513,139.047,84.7872,8.22842,139.402,84.1202,8.10901,139.545,80.9998,6.8803,138.698,84.9304,8.06114,139.87,84.3443,7.96218,140.01,85.4016,8.383,139.258,85.3815,8.24939,138.751,85.493,7.79016,138.485,85.4793,8.20191,139.748,86.1692,8.38156,139.647,86.087,8.55998,139.103,86.0507,8.00863,140.0,85.555,7.87405,140.093,85.0693,7.75142,140.219,84.5341,7.66505,140.379,85.1916,7.32723,140.327,84.6572,7.20944,140.525,78.5415,6.76253,139.068,77.3019,6.6594,139.338,79.8363,6.76436,138.852,78.5073,5.70349,138.739,79.9068,5.7056,138.55,77.242,5.60964,139.002,77.3147,4.66914,138.924,78.5646,4.71549,138.69,76.9762,2.40839,138.388,76.6637,1.61034,138.164,77.6539,1.37066,137.862,78.1139,2.2485,138.187,79.4837,1.9199,138.298,79.7778,2.84296,138.562,78.3807,3.05675,138.549,79.9499,4.66957,138.518,82.8526,4.29871,138.424,82.8331,5.16555,138.379,81.4535,5.71015,138.397,82.307,6.33831,138.37,78.8973,0.991518,137.884,80.2264,0.583406,138.264,81.1757,1.50856,138.595,77.0302,0.521577,137.857,78.103,-0.0620019,137.599,76.4126,0.935399,138.164,74.9877,0.430318,140.912,76.3866,-0.200854,141.407,75.7388,-0.409,140.521,76.0401,-0.944595,139.229,75.4404,-0.153431,139.578,76.4083,-1.08932,140.198,77.0925,-0.839967,140.979,77.0332,-1.64914,139.792,76.6625,-1.54606,138.854,77.7312,-1.4169,140.517,77.226,-1.99887,138.476,77.5465,-2.12031,139.319,77.8995,-2.53462,138.823,77.6677,-2.387,138.083,78.2225,-1.95689,139.986,78.5117,-2.4338,139.427,78.1733,-2.96471,138.35,78.0355,-2.79222,137.698,78.7396,-2.86251,138.919,78.5948,-3.47166,137.928,78.4689,-3.24407,137.344,79.0671,-3.3473,138.464,79.0331,-3.97465,137.486,78.9025,-3.67483,136.932,79.4554,-3.88198,138.003,78.6568,-2.83853,136.91,79.09,-3.22269,136.562,79.3483,-4.04471,136.416,79.5695,-3.53437,136.123,79.0847,-2.39123,136.778,79.4943,-2.80682,136.498,79.9754,-3.1506,136.16,79.4738,-4.48944,136.978,78.7469,-1.94668,137.042,78.2574,-2.41415,137.202,79.579,-2.0866,137.082,79.3246,-1.6281,137.36,78.4921,-1.48373,137.287,77.8923,-1.97901,137.484,79.2286,-1.19043,137.605,79.9409,-2.54994,136.78,79.8443,-4.34794,135.865,80.0963,-3.81169,135.64,79.9513,-4.82529,136.372,79.9664,-4.88043,136.802,79.8059,-4.77454,137.022,80.4796,-4.96781,136.657,80.7496,-5.08237,136.351,80.3988,-5.00286,135.907,80.3688,-4.63465,135.45,80.2873,-4.87371,136.997,79.2478,-2.13948,139.744,79.362,-2.52772,139.242,79.8366,-1.74024,139.623,79.1999,-1.59264,140.43,80.0593,-1.42757,139.973,79.7822,-2.06115,139.225,78.6055,-1.00714,141.061,79.8128,-1.09044,140.861,81.7403,-0.699146,141.092,81.2801,-0.998672,139.979,80.4964,-1.06428,140.391,80.8218,-0.545821,141.337,77.504,-1.48204,137.724,78.3133,-0.920109,137.462,76.9807,-0.895887,137.954,79.3305,-0.702771,137.799,79.8623,-1.17435,138.435,80.2824,-0.790288,138.771,79.7775,-1.56126,138.095,80.397,-0.316617,138.492,79.5777,-0.118397,137.933,81.6598,4.2591,142.387,81.5063,3.49409,142.523,82.5115,4.10249,142.124,83.3871,3.89356,141.826,83.2062,3.07371,142.133,82.3868,3.30257,142.301,83.0025,2.20313,142.112,82.1537,2.41496,142.328,83.3329,4.78417,141.833,82.5726,4.88689,142.027,81.722,4.98436,142.252,84.0692,4.11488,141.425,84.0827,4.75287,141.549,84.0616,5.4173,141.351,84.8949,5.29404,140.939,84.9394,4.70104,141.092,84.9209,4.07218,140.788,84.0667,6.60793,140.776,84.101,6.27674,140.672,84.0173,5.93244,140.943,84.3954,6.27708,140.287,84.6665,6.70281,140.305,84.7402,5.79353,140.435,85.2692,6.94606,140.079,84.8177,6.56094,139.694,85.3021,6.78422,139.593,85.8468,5.60248,140.163,84.6274,3.57812,140.771,84.1621,3.69282,141.273,84.934,3.05508,140.978,84.0552,3.36237,141.551,81.8231,1.5369,142.1,83.7988,1.99872,141.829,83.9602,2.75471,141.893,82.3742,0.478309,141.815,81.4759,0.756414,142.041,83.2092,0.130902,141.504,82.0833,-0.158974,141.73,82.9884,-0.514771,141.424,84.1046,-0.24976,141.082,83.9608,-0.895233,140.961,82.7273,-0.978169,140.868,82.4998,-1.16345,140.129,82.6303,-0.39283,138.87,83.0616,0.61938,138.696,80.5122,-3.4388,135.76,80.9329,-3.30531,136.107,80.3998,-2.95894,136.457,80.7739,-2.97406,136.94,80.3027,-2.51232,137.313,81.2993,-3.40876,136.589,81.4471,-3.77992,137.055,80.9458,-3.27046,137.448,80.4538,-2.7326,137.85,80.7852,-3.81186,137.767,80.309,-3.12423,138.165,81.2495,-4.34712,137.283,79.9524,-2.02259,137.71,80.0791,-2.19968,138.328,79.9193,-1.71662,138.839,81.0761,-3.83657,135.424,81.4709,-3.7425,135.789,80.6631,-4.16139,135.273,81.5418,-4.37946,135.245,81.8918,-4.30756,135.562,81.7829,-3.88121,136.259,82.1372,-4.38867,135.976,81.1635,-4.59738,135.11,81.776,-4.92576,135.253,82.0946,-4.87669,135.497,81.4618,-4.94901,135.131,81.8659,-4.22892,136.674,82.1724,-4.62016,136.348,81.7092,-5.31892,135.464,82.0646,-5.29079,135.677,81.3125,-5.2129,135.289,81.1652,-5.32487,135.592,81.4324,-5.39714,135.837,80.8703,-4.94452,135.265,80.8157,-5.19528,135.687,82.3047,-4.8587,135.817,82.2731,-5.16725,135.858,82.3143,-4.89237,136.115,82.1772,-5.14927,136.173,81.9369,-4.9399,136.517,81.8273,-5.37222,136.084,81.5054,-5.18,136.419,81.0724,-5.25128,136.114,81.6315,-4.6572,136.834,81.2096,-4.98209,136.692,80.9387,-4.82784,136.989,80.9372,-4.48791,137.467,80.6888,-4.72127,137.278,80.4706,-4.48792,137.566,80.7839,-4.31183,137.646,80.0646,-4.69314,137.317,79.7894,-4.3555,137.606,80.2576,-4.07195,137.853,79.9324,-3.52351,138.221,84.8794,5.79258,139.101,84.5675,6.19696,139.279,83.9144,5.95346,138.697,84.5826,6.51641,139.074,84.1518,6.98634,138.67,83.1839,6.71429,138.512,84.9754,7.13815,138.655,85.2139,6.81759,139.06,85.6828,7.29046,138.573,85.8368,7.0197,138.973,86.1868,7.94626,138.368,86.3493,7.47247,138.449,86.483,7.2197,138.825,86.8696,8.12411,138.188,87.0214,7.65248,138.268,87.1702,7.41213,138.643,86.5283,7.21009,139.3,87.2614,7.41396,139.101,85.8757,6.99378,139.467,86.0798,8.40082,138.606,86.7986,8.58087,138.432,86.8503,8.76485,138.912,84.9808,5.94311,139.736,84.6135,6.27038,139.764,85.8841,5.79595,139.548,85.8649,5.65618,138.92,86.8555,5.50272,139.934,86.8775,5.73432,139.328,87.8545,5.69331,139.129,87.8896,5.41056,139.778,85.0511,1.56692,138.725,84.0328,1.68418,138.699,84.8528,1.01694,139.15,84.0411,0.900342,138.826,85.6848,7.47825,140.175,85.8219,7.15077,139.919,86.4865,7.40812,139.775,86.1693,7.65559,140.057,87.2944,7.63429,139.546,86.9877,7.71795,139.797,86.7105,7.63885,139.883,86.5891,7.82281,139.977,88.09,7.80696,139.294,87.9917,7.60935,138.919,87.5132,8.03486,139.669,88.1165,8.16538,139.477,87.0146,7.94356,139.844,87.856,7.62057,138.499,88.6312,7.79708,138.797,88.4878,7.81585,138.408,87.4036,8.39337,139.617,88.013,8.54357,139.414,86.9212,8.2299,139.806,86.7683,8.4038,139.718,86.9958,8.6197,139.427,87.821,8.82712,139.157,86.493,8.10675,139.934,88.3358,8.05779,138.099,87.6997,7.8581,138.154,87.5659,8.30525,138.068,89.0562,7.9762,138.357,88.9349,8.21984,138.053,89.1536,7.9569,138.73,87.5327,8.74801,138.287,87.6342,8.94114,138.727,89.2178,8.1531,139.059,89.5442,8.26227,138.985,89.3029,8.46794,139.151,89.5224,8.51929,139.103,89.2496,8.75422,139.125,89.4751,8.80734,139.077,86.4862,8.32044,139.798,85.8191,1.47134,138.67,88.0384,-2.82652,137.485,88.2532,5.21417,139.977,92.7081,0.72738,137.27,77.3064,0.152364,142.078,77.9371,-0.436128,141.559,83.8441,7.59655,140.577,84.012,7.12382,140.801,79.5872,-2.96554,138.72,79.9527,-2.53909,138.679,80.0704,-1.36803,139.23,80.4309,-1.13334,139.51,81.1719,0.104376,141.918,77.1329,3.15383,138.729,82.4413,-0.991864,139.422,81.2917,-0.809494,139.324,81.3203,-0.0705317,138.77,76.3089,-0.220165,138.317,74.7892,0.774211,140.084,82.9173,5.76336,138.403,81.2761,2.63712,138.605,81.3998,4.54602,138.424,81.9754,0.715872,138.679,82.8887,3.40362,138.533,82.8081,2.55818,138.633,81.3707,3.58218,138.506,79.9178,3.74411,138.571,78.5463,3.86287,138.692,77.3081,3.88517,138.891,82.7715,1.69324,138.693,76.4928,3.85981,139.11,74.0644,2.42726,140.104,74.1813,1.06025,141.229,73.9896,1.55572,140.617,2.92078,-11.6996,167.707,2.78639,-11.7497,167.293,2.48645,-12.111,167.646,2.56648,-12.0741,168.13,7.66398,-3.52233,173.467,7.54255,-4.10451,173.397,7.57772,-3.92547,174.438,7.70265,-3.43935,174.225,8.29205,-2.24312,174.321,8.24614,-2.70031,174.428,8.73027,-2.04786,175.294,8.73812,-1.80794,174.891,7.99822,-3.09191,174.401,8.30884,-2.29478,175.384,8.14395,-0.90945,171.762,8.37602,-0.443439,171.715,8.0567,-0.909015,171.061,7.93259,-1.30383,171.236,8.50973,-0.659097,172.684,8.83731,-0.121361,172.733,8.74687,-0.589051,173.779,9.10651,-0.0439672,173.948,8.76488,0.332714,172.855,9.11533,0.397238,174.198,9.08501,-1.10581,175.096,9.12038,-1.05123,175.583,8.64389,-1.08411,175.715,8.67264,0.406667,174.233,8.32239,0.371431,172.927,7.85084,0.0020245,171.804,8.27462,-0.0602313,171.708,7.93424,-0.6185,170.863,7.53303,-0.575532,170.926,7.48105,-1.36973,170.173,7.21674,-1.40235,170.381,7.2567,-2.25104,169.808,7.48361,-2.0642,169.684,7.91224,-0.159119,172.789,7.53737,-0.397452,171.887,8.18094,-0.156219,173.806,7.83233,-2.66562,174.893,8.0946,-1.35754,175.135,7.28383,-0.817035,171.104,7.20567,-0.52991,171.894,7.11134,-0.810047,171.219,7.09899,-2.13564,169.842,7.0485,-0.8415,170.547,7.22659,-2.80617,169.835,7.44684,-2.72012,169.766,7.77584,-2.2508,169.705,7.72766,-1.63179,174.714,7.62919,-2.84074,174.737,7.37485,-3.12008,170.377,7.653,-2.83966,170.229,7.98182,-2.36338,170.25,8.05228,-1.67553,170.565,7.88791,-1.4561,170.152,7.97389,-1.7859,170.946,7.92474,-2.29131,170.928,7.54849,-3.07589,171.387,7.38794,-3.43135,171.026,7.48768,-3.71842,171.718,7.6714,-3.26598,171.994,7.72847,-3.42184,172.707,7.55468,-3.96538,172.511,7.78576,-2.9572,172.873,7.82357,-3.06338,173.642,8.84966,-0.819848,174.521,9.17651,-0.418135,174.788,8.88916,-1.13823,174.807,9.23476,-0.122816,175.181,8.78382,-0.0973819,175.249,8.2389,-0.475445,174.672,7.73227,-0.776553,174.249,7.63822,-0.441888,173.511,7.44311,-0.368372,172.701,7.93853,-2.73708,173.727,8.04807,-2.30063,173.756,7.85584,-2.18856,173.236,7.65626,-2.52334,172.835,7.74509,-2.94667,172.19,7.66965,-2.67042,171.682,7.5351,-2.98803,170.926,7.71437,-2.74521,170.928,6.76461,-1.06466,169.235,6.60663,0.113067,169.306,6.35159,-0.104946,167.848,6.34521,-1.47589,167.716,7.69869,-2.55719,175.593,7.76782,-1.3293,175.392,7.17842,-0.0244601,171.842,7.07674,0.851706,171.978,6.84553,0.442032,170.65,7.68202,-0.409793,174.79,7.54401,0.0776795,173.904,7.37405,0.214611,172.911,4.81507,4.44699,167.697,4.85595,4.5457,166.015,5.58406,3.28252,166.061,5.54472,3.26872,167.751,5.9984,2.14148,167.815,5.95264,2.11115,166.136,6.0817,0.989898,166.21,6.24439,1.03894,167.868,3.72431,5.53131,167.667,3.70995,5.69455,166.02,2.46756,6.18724,167.661,2.42059,6.30492,166.027,6.02538,-0.143145,166.2,5.87197,-1.26648,165.994,1.24691,6.42953,167.686,1.22092,6.45952,166.062,7.3754,-4.71182,172.269,7.40422,-5.01474,173.369,7.30255,-4.32905,171.331,7.22287,-3.91051,170.544,7.14447,-3.45016,169.901,7.0351,-2.92165,169.444,6.89725,-2.15136,169.241,3.4683,-8.76096,183.459,4.6652,-7.86861,182.947,4.51408,-9.02456,181.906,3.35449,-9.99023,182.257,5.538,-7.93681,181.466,5.66551,-7.00289,182.327,4.44636,-9.85473,180.824,3.29079,-10.8565,181.066,5.49425,-8.65116,180.46,1.02827,-11.9617,181.205,1.04523,-11.1927,182.514,1.03687,-10.2574,183.699,4.43642,-10.4222,179.818,3.27827,-11.399,180.013,5.47949,-9.21716,179.446,6.35805,-7.33013,180.032,6.34268,-7.85826,178.892,1.02063,-12.4202,180.082,2.1286,-11.566,181.185,2.11489,-12.0624,180.084,2.16795,-10.7335,182.459,2.192,-9.58636,183.739,6.32423,-6.81031,181.077,6.23911,-6.40157,181.813,7.14533,-6.13169,173.22,7.15183,-5.64523,171.916,6.85452,-6.63949,171.393,6.74228,-7.44537,172.866,7.11355,-5.12132,170.835,6.85665,-6.00361,170.245,7.05724,-4.57781,169.955,6.81057,-5.36519,169.278,6.97248,-3.97534,169.271,6.72893,-4.67325,168.496,6.82688,-3.29535,168.758,6.56196,-3.91795,167.912,6.27318,-8.43408,177.801,5.46129,-9.69464,178.515,6.13633,-9.07725,176.968,5.42826,-10.1264,177.679,4.45488,-10.8254,178.928,4.48223,-11.1491,178.087,3.30403,-11.7521,179.115,3.34444,-12.0171,178.271,2.12586,-12.3805,179.164,2.1404,-12.6013,178.318,1.02163,-12.7073,179.153,1.01743,-12.8847,178.315,-4.64161e-005,-12.7961,179.151,-4.56576e-005,-12.9572,178.317,6.59501,-8.17862,175.911,6.95877,-6.94209,176.623,7.00638,-6.3562,178.288,6.99883,-5.88505,179.638,6.89948,-5.51409,180.869,7.1306,-6.50255,174.743,6.77107,-7.67057,174.538,5.88824,-2.56137,166.714,6.25826,-3.14327,167.44,6.60685,-2.48743,168.352,5.48252,-2.2768,165.455,5.40962,-10.5247,176.861,6.01309,-9.63046,176.245,4.52925,-11.447,177.23,3.41176,-12.2464,177.403,5.85985,-10.0505,175.58,5.33379,-10.8274,176.093,1.0393,-12.9943,177.508,-4.55482e-005,-13.045,177.522,2.18788,-12.7655,177.474,1.0516,-13.0259,176.711,2.21978,-12.8049,176.647,3.4282,-12.3465,176.558,4.50799,-11.6403,176.409,6.34463,-8.92809,175.394,6.11147,-9.46997,174.939,-4.54569e-005,-13.0836,176.761,6.44899,-8.55853,174.389,6.37627,-8.55177,173.368,6.16153,-9.20783,174.256,6.0725,-9.23896,173.579,6.11461,-8.94322,172.524,5.84783,-9.51843,172.977,6.35022,-8.25138,171.782,6.47607,-7.56179,170.724,6.47205,-6.90571,169.624,6.41195,-6.22065,168.599,6.32013,-5.50751,167.715,6.14866,-4.79567,167.021,5.81129,-4.12042,166.472,5.35331,-3.60064,165.804,4.88543,-3.22396,164.719,2.24781,-12.5835,170.58,2.00313,-12.7499,170.009,1.80935,-13.1434,170.281,1.9584,-13.0004,170.871,2.97147,-10.7707,164.873,3.23838,-10.6702,165.562,3.62791,-10.072,165.397,3.32993,-10.1244,164.382,2.70406,-12.0098,168.697,2.1004,-12.4976,168.497,2.20883,-12.4315,169.084,0.863656,-12.108,164.371,0.987989,-12.0506,163.682,1.2118,-11.3901,162.347,1.16927,-10.515,161.969,1.11411,-11.9155,163.041,3.8187,-10.2994,166.366,4.30481,-9.69164,166.546,4.1071,-9.24442,165.325,3.41747,-10.7434,166.285,2.92861,-11.0707,165.761,3.0956,-11.0612,166.27,2.56017,-11.0627,164.23,2.28964,-11.45,164.734,2.68492,-11.1977,165.262,2.08142,-11.6813,165.172,2.45117,-11.4556,165.606,2.89507,-10.4453,163.593,4.84897,-8.91854,166.889,4.66653,-8.28329,165.645,4.3155,-7.81612,164.518,3.65572,-9.09231,163.751,2.43171,-12.3223,169.681,2.69506,-12.1856,170.286,3.23646,-11.7453,169.925,2.92863,-11.9059,169.294,2.93011,-12.0503,170.939,3.54654,-11.5698,170.652,4.3546,-10.7732,170.25,3.75692,-11.2362,169.404,4.71791,-10.1543,169.151,4.11997,-10.7329,168.63,3.36221,-11.4889,168.795,3.67979,-11.0716,168.136,3.09929,-11.6243,168.228,3.36928,-11.2616,167.66,3.13112,-11.3846,167.248,2.88653,-9.64427,162.983,4.85621,-9.59003,168.084,4.30141,-10.2369,167.662,3.84593,-10.6647,167.304,3.47855,-10.9536,167.0,3.17889,-11.1677,166.771,1.57317,-12.9888,169.438,1.38721,-13.4107,169.946,1.50296,-12.9759,168.763,0.786368,-13.3458,168.876,0.785384,-13.4399,169.367,-4.42674e-005,-13.6322,169.325,0.752574,-13.7505,169.828,2.05809,-12.7407,171.445,2.42464,-12.4204,171.191,1.7921,-13.197,171.313,1.78182,-12.9982,171.715,2.68554,-11.3196,165.955,2.85135,-11.2736,166.291,2.94888,-11.3262,166.626,2.93872,-11.4818,166.955,2.0595,-12.5313,167.983,1.48616,-13.0001,168.247,0.793345,-13.3666,168.411,1.56014,-11.9108,164.734,1.73969,-11.7407,164.172,1.9578,-11.4814,163.588,2.1742,-10.9014,162.913,2.14097,-10.0454,162.449,5.85741,-9.02583,171.118,5.97898,-8.45074,170.124,5.98589,-7.82658,169.049,5.92697,-7.14136,167.973,5.65534,-5.79576,166.175,5.83342,-6.4441,166.989,5.22986,-9.83713,170.641,5.38456,-9.33756,169.625,5.40295,-8.06407,167.404,5.44243,-8.75097,168.545,5.28486,-7.37462,166.301,5.04477,-6.78228,165.37,1.87216,-9.0616,162.327,2.65215,-8.6951,162.806,2.23023,-7.64711,162.69,3.36351,-8.02917,163.366,2.90429,-7.128,163.142,3.97371,-7.17444,163.967,3.52905,-6.39544,163.611,4.69781,-6.21306,164.732,4.21895,-5.57444,164.203,5.3092,-5.20256,165.542,4.8129,-4.65222,164.928,0.967985,-9.44259,161.932,0.73986,-8.32383,162.004,1.507,-7.99075,162.287,4.29706,-4.09099,164.021,2.45771,-6.18968,162.755,1.85933,-6.61129,162.385,3.06823,-5.50798,163.068,3.70306,-4.83208,163.462,1.77725,-13.4722,170.431,1.71173,-13.8054,170.542,1.73962,-13.7091,170.891,1.84766,-13.3807,170.815,1.48052,-14.1498,170.662,1.48028,-14.0501,171.02,1.1286,-14.5129,170.76,1.11721,-14.4043,171.149,1.67612,-13.5935,171.234,1.39862,-13.9027,171.397,0.67508,-15.0039,170.757,0.669153,-14.9295,171.292,1.29381,-13.7151,171.756,1.06582,-14.2358,171.552,1.01564,-14.0317,171.942,0.646975,-14.7363,171.752,0.635441,-14.5096,172.173,1.57278,-13.4355,171.558,1.80641,-13.3683,171.111,0.634958,-14.2929,172.599,1.00923,-13.8351,172.354,1.25405,-13.5168,172.153,1.51551,-13.2492,171.949,1.5762,-13.6031,170.158,1.57796,-13.8795,170.281,0.647868,-14.8551,170.334,0.474493,-14.7707,170.142,1.39204,-14.2003,170.404,1.0851,-14.537,170.48,0.427772,-14.4924,170.071,0.488361,-14.173,169.986,-4.40482e-005,-14.2727,169.847,0.772654,-14.6916,170.325,0.616157,-14.6502,170.228,1.01696,-14.496,170.374,1.3712,-13.6941,170.058,1.38909,-13.9049,170.159,0.648992,-14.1203,170.089,0.867045,-13.819,170.016,1.17543,-13.6436,169.999,1.24962,-14.1962,170.285,0.57698,-14.4243,170.167,0.710655,-14.4056,170.243,0.807511,-14.1109,170.168,0.679247,-14.5834,170.272,0.769792,-14.6082,170.325,0.897772,-14.4453,170.323,1.06163,-14.1617,170.233,1.18983,-13.8859,170.122,1.24264,-13.7323,170.048,1.1345,-13.7119,170.03,0.977696,-13.8457,170.087,5.27007,-10.5633,174.848,4.87786,-11.0017,175.191,5.1223,-10.967,175.521,5.5864,-10.3593,175.102,4.17309,-11.5178,175.446,4.35773,-11.6276,175.791,5.29964,-10.294,173.584,5.57518,-9.96598,173.3,5.23413,-10.3129,172.948,4.98793,-10.5649,173.321,0.757042,-13.0116,175.198,0.685238,-13.1522,174.732,4.18943,-11.1369,172.556,4.33448,-11.0312,172.033,3.6834,-11.4988,172.042,3.56415,-11.5011,172.546,5.46651,-9.97219,172.506,3.34544,-12.2111,175.893,3.21857,-11.9416,175.507,1.02466,-12.9317,175.822,2.97841,-11.7712,172.656,2.83155,-11.6735,173.085,3.39608,-11.4948,172.982,3.07848,-11.8622,172.173,2.57565,-12.1281,172.346,2.51182,-11.969,172.81,4.0125,-11.2231,172.994,2.09522,-11.933,173.366,2.06748,-11.7278,173.699,2.33134,-11.6509,173.59,2.40056,-11.8044,173.224,4.76328,-10.7239,172.694,4.95091,-10.5018,172.187,4.55666,-10.8949,173.118,2.2222,-12.6272,175.925,2.27305,-12.2289,175.434,3.10286,-11.7079,175.32,2.2712,-11.8106,175.17,4.03666,-11.4225,175.267,4.69618,-10.979,175.005,5.01603,-10.6478,174.734,5.04307,-10.5105,173.844,4.76896,-10.7412,173.648,4.37813,-11.0331,173.483,3.86436,-11.3121,173.382,3.27087,-11.5029,173.382,2.72462,-11.5948,173.475,1.73966,-11.9505,174.924,1.53806,-12.4388,175.24,5.67647,-9.54123,171.921,5.09798,-10.2147,171.523,4.40127,-10.9032,171.34,3.69294,-11.5027,171.411,2.54351,-12.2726,171.8,3.06614,-11.9452,171.594,1.55993,-12.7922,172.869,1.53352,-13.0415,172.413,1.2768,-13.3084,172.6,1.29613,-13.0619,173.04,0.635091,-14.0803,173.043,-4.26939e-005,-14.3486,173.188,0.622266,-13.8523,173.487,5.80554,-9.91881,174.647,5.47458,-10.2522,174.526,5.18994,-10.4367,174.498,1.30269,-12.7664,173.448,1.56282,-12.5004,173.289,1.32334,-12.463,173.832,1.57069,-12.2156,173.672,1.42146,-12.1361,174.23,1.63359,-11.9425,173.978,2.17946,-12.3521,172.518,2.15564,-12.1411,172.962,1.49756,-12.062,174.626,1.23283,-12.5302,174.845,1.12186,-12.6316,174.435,1.04139,-13.3946,173.234,1.04771,-13.115,173.65,1.03295,-13.6318,172.795,1.06828,-12.8411,174.045,0.641201,-13.3561,174.321,0.621648,-13.5998,173.912,1.81944,-12.7942,172.215,1.85512,-12.5652,172.696,2.13744,-12.5469,172.007,1.85083,-12.3081,173.13,1.82942,-12.0607,173.527,1.84432,-11.8219,173.827,5.85853,-9.71963,174.186,5.7787,-9.75121,173.725,5.5503,-10.1055,174.202,5.48899,-10.1295,173.883,5.26084,-10.3461,174.27,5.2097,-10.3752,174.052,3.04334,-11.5181,173.992,3.1518,-11.5297,173.725,2.59174,-11.5367,173.823,2.48266,-11.4555,174.107,2.23164,-11.4958,173.924,2.14128,-11.309,174.211,2.01548,-11.5028,173.997,1.95286,-11.2711,174.254,1.84495,-11.5478,174.075,1.8373,-11.2872,174.278,1.74777,-11.3107,174.326,1.70114,-11.6112,174.186,1.61298,-11.6635,174.356,1.69718,-11.32,174.414,1.65475,-11.6391,174.57,1.72494,-11.3035,174.523,1.82947,-11.5625,174.782,1.88518,-11.2996,174.652,2.2392,-11.5106,175.015,2.28881,-11.4053,174.833,3.01632,-11.5857,175.006,3.02978,-11.5777,175.194,3.93827,-11.3909,175.143,4.55942,-10.9518,174.886,4.45781,-10.9852,174.773,3.8637,-11.4443,174.975,4.8277,-10.6655,174.673,4.68975,-10.6868,174.625,4.95724,-10.5203,174.505,4.77603,-10.5649,174.522,5.00449,-10.4734,174.352,4.79781,-10.5433,174.431,4.9593,-10.5168,174.214,4.75857,-10.6005,174.355,4.65799,-10.7285,174.277,4.82738,-10.6481,174.081,4.60353,-10.8652,173.938,4.48311,-10.9295,174.174,4.25354,-11.1414,173.8,4.17664,-11.191,174.056,3.75246,-11.3937,173.714,3.67126,-11.4241,173.972,4.38652,-10.9294,174.3,4.52265,-10.7523,174.386,4.58175,-10.7176,174.618,4.37685,-11.0053,174.718,3.81295,-11.432,174.869,2.34174,-11.3461,174.713,1.98669,-11.2072,174.553,1.86136,-11.1953,174.465,1.83433,-11.2119,174.417,1.85598,-11.2141,174.38,2.00452,-11.1696,174.363,2.17407,-11.1832,174.333,2.45746,-11.3651,174.237,1.87192,-11.1704,174.411,1.88352,-11.1754,174.394,1.90474,-11.149,174.435,3.00776,-11.5508,174.875,2.95651,-11.4381,174.132,3.61231,-11.3742,174.109,4.60395,-10.6355,174.446,2.36458,-11.1836,174.659,2.02703,-11.1454,174.501,3.01633,-11.3841,174.86,3.78976,-11.2658,174.874,4.32072,-10.9165,174.74,4.50813,-10.6832,174.647,4.41296,-10.7042,174.403,4.5003,-10.6094,174.479,4.28777,-10.847,174.301,2.96614,-11.2684,174.125,3.59461,-11.23,174.101,2.50893,-11.1708,174.241,2.24701,-11.0822,174.426,2.0327,-11.1371,174.427,4.12529,-11.1645,174.194,4.0615,-11.0438,174.187,4.64059,-10.5977,174.554,4.55722,-10.5836,174.59,1.91054,-11.1963,174.364,1.92399,-11.1587,174.401,4.64387,-10.579,174.496,4.55103,-10.5648,174.535,2.41618,-10.8557,174.397,2.61382,-10.895,174.169,2.55031,-10.8987,174.688,3.04056,-10.9448,174.876,3.71806,-10.8079,174.915,4.21456,-10.6363,174.795,4.42778,-10.5305,174.674,4.50515,-10.4849,174.602,4.51244,-10.4755,174.545,4.4421,-10.4914,174.474,4.31276,-10.5364,174.367,4.16717,-10.6222,174.242,3.96124,-10.7505,174.111,3.59424,-10.8913,174.015,3.0658,-10.9388,174.033,2.7087,-10.4833,174.558,2.67662,-10.5106,174.243,3.04627,-10.3837,174.627,3.55119,-10.3073,174.659,3.99368,-10.3008,174.626,4.25934,-10.325,174.559,4.40071,-10.347,174.527,4.4669,-10.3766,174.522,4.41242,-10.3733,174.465,4.28587,-10.3479,174.386,4.11335,-10.3454,174.302,3.87218,-10.3459,174.218,3.52902,-10.3583,174.146,3.09173,-10.3903,174.142,6.35562,3.90053,179.959,7.01966,2.81515,178.797,7.12405,1.44509,180.423,6.47839,2.25143,181.795,5.32596,5.01475,181.073,5.48336,2.98909,183.066,7.14743,-0.234334,181.54,6.49643,0.221584,182.995,5.51139,0.509105,184.285,3.91417,5.97733,182.077,4.09575,3.64438,184.226,4.15249,0.749703,185.389,4.34496,6.08565,173.354,5.36959,5.05726,173.026,5.7726,5.2133,175.327,4.75356,6.29288,175.883,6.10876,3.91927,172.743,6.4962,4.02533,174.773,3.37306,7.21244,176.293,3.00114,6.93091,173.55,7.10402,-2.0222,182.058,6.45467,-1.87335,183.463,5.44941,-1.94515,184.697,4.0944,-2.08987,185.698,2.28413,-2.2262,186.49,2.27845,0.962197,186.26,2.20014,4.12474,185.141,2.0891,6.59545,182.912,1.72982,7.80978,176.557,1.53252,7.43864,173.695,7.28604,-3.9912,180.749,7.49101,-2.37973,180.542,7.66927,-2.81728,179.029,7.4269,-4.33435,179.337,7.54466,-0.816107,180.011,7.74898,-1.41285,178.518,7.50121,0.636019,179.033,7.69929,-0.108842,177.711,7.38809,1.82804,177.654,7.56976,0.959363,176.583,7.1578,1.90885,173.729,6.92108,2.90799,174.235,6.56867,2.81958,172.482,6.86004,1.80266,172.221,7.31073,1.02125,173.28,7.66181,0.211148,175.63,7.78361,-0.769133,176.488,7.79431,-2.00145,177.035,7.70494,-3.30448,177.485,7.45801,-4.76672,177.859,6.37904,1.21387,169.352,6.05745,2.28304,169.346,5.56836,3.3722,169.314,4.83719,4.48813,169.284,3.79964,5.50671,169.281,2.55964,6.21315,169.314,6.92212,-3.801,182.11,6.26972,-3.89768,183.355,5.21914,-4.25404,184.457,3.87331,-4.76278,185.325,2.16003,-5.26806,185.996,1.27639,6.56117,169.32,-3.20326e-005,-2.32504,186.829,1.92549,7.72991,179.755,3.6356,7.10848,179.227,5.047,6.11597,178.544,6.11131,4.89772,177.719,6.81014,3.68617,176.849,7.1991,2.59828,176.004,7.39523,1.64413,175.218,7.50442,0.812471,174.52,6.58292,1.49358,170.761,6.25077,2.52877,170.847,5.76275,3.60361,170.908,5.02031,4.71109,170.983,3.98317,5.73013,171.104,2.72485,6.50201,171.216,1.37822,6.93859,171.275,-2.35756e-005,4.28495,185.458,7.64764,-3.77132,175.86,7.4471,-5.15356,176.245,7.4267,-5.18517,174.672,6.57923,-5.36335,181.966,5.9499,-5.66379,182.941,4.90868,-6.28213,183.829,3.61657,-7.04607,184.526,1.90214,-7.96585,184.999,0.788021,-12.2478,165.037,2.5103,-11.4695,166.097,2.67509,-11.4048,166.324,2.28215,-11.6163,165.829,1.93638,-11.838,165.533,1.44316,-12.0689,165.266,0.653522,-12.2047,165.938,0.690941,-12.342,165.798,1.28905,-12.1414,165.914,1.22406,-11.9854,166.033,1.75822,-11.9074,166.033,1.68936,-11.7746,166.101,2.11014,-11.6734,166.145,2.05253,-11.5821,166.157,2.2639,-11.4733,166.257,2.30741,-11.5304,166.251,2.40765,-11.4063,166.375,2.45094,-11.4572,166.375,2.20908,-11.3445,166.244,2.361,-11.2886,166.364,1.98514,-11.4139,166.128,1.62844,-11.5343,166.043,1.17527,-11.7225,165.989,0.62249,-11.9575,165.953,-3.90448e-005,-12.0478,165.918,2.54508,-11.4642,166.354,2.39294,-11.5368,166.198,2.19014,-11.6885,166.037,1.84916,-11.9305,165.806,1.374,-12.1795,165.608,0.743901,-12.3831,165.462,2.18607,-10.8677,166.108,2.32151,-10.8524,166.304,1.97563,-10.9157,165.904,1.64271,-11.0384,165.731,1.17971,-11.2405,165.648,0.616684,-11.5075,165.675,2.67151,-11.7805,167.016,2.42165,-12.1157,167.284,2.78053,-11.4298,166.549,2.78727,-11.5517,166.778,2.03121,-12.5273,167.569,1.46804,-12.9959,167.809,0.791046,-13.3848,167.962,2.34812,-12.0802,167.057,2.27532,-12.0091,166.942,1.91758,-12.3617,167.126,1.98299,-12.4684,167.279,1.41607,-12.911,167.464,1.34123,-12.7323,167.301,0.699177,-13.0675,167.436,0.752795,-13.2846,167.601,1.87699,-12.2805,167.097,2.22812,-11.9336,166.916,0.676831,-12.9082,167.423,1.30221,-12.5918,167.29,0.670508,-12.7312,167.487,1.27062,-12.418,167.355,2.1946,-11.8483,166.933,1.81947,-12.1419,167.141,2.57282,-11.7791,166.855,2.67214,-11.578,166.682,2.49556,-11.7378,166.777,2.58834,-11.5554,166.636,2.45043,-11.6759,166.759,2.54404,-11.5023,166.625,2.42388,-11.6018,166.764,2.51317,-11.4274,166.622,2.65283,-11.4751,166.516,2.55918,-11.4631,166.504,2.51355,-11.4148,166.498,2.47559,-11.3236,166.492,0.685325,-12.31,167.816,1.26214,-12.006,167.694,1.75643,-11.7141,167.439,2.16261,-11.5343,167.106,2.40434,-11.3119,166.845,2.47403,-11.1041,166.647,2.42226,-10.9248,166.483,0.952978,-9.33636,184.488,4.87613,4.72484,164.57,5.54153,3.42108,164.506,5.81425,2.21115,164.493,5.83316,1.06899,164.514,1.22445,6.62665,164.518,3.80132,5.87055,164.638,2.50767,6.48199,164.615,5.69671,-0.0624024,164.485,5.52706,-1.14318,164.31,5.15395,-2.08584,163.925,4.57848,-2.88907,163.405,3.95448,-3.55666,162.94,2.13994,-5.16486,162.062,1.61256,-5.60351,161.843,2.72888,-4.66013,162.312,3.34555,-4.13138,162.581,5.59435,3.64024,163.121,4.99565,4.97195,163.291,5.392,5.32011,162.033,6.00441,3.9374,161.789,5.76861,2.39452,162.988,6.10007,2.63179,161.533,5.80848,1.44931,161.321,5.64863,1.23404,162.896,1.4648,7.4176,161.975,1.33129,6.92269,163.228,0.00824434,7.48649,161.876,3.99201,6.12055,163.412,4.33445,6.50598,162.185,2.69375,6.76582,163.38,2.94462,7.19988,162.146,5.33149,-0.963513,162.673,5.4754,0.10174,162.818,5.48438,0.330015,161.213,5.24362,-0.722784,161.105,4.98873,-1.87273,162.393,4.91108,-1.64034,160.88,4.45893,-2.5879,162.041,4.43589,-2.35534,160.593,3.81713,-3.12657,161.729,3.82961,-2.88508,160.336,1.52495,-4.82273,160.968,2.01676,-4.39806,161.072,1.98528,-3.84665,159.679,1.42812,-4.17998,159.521,2.54895,-3.97549,161.264,2.53095,-3.55825,159.9,3.15649,-3.56022,161.479,3.15688,-3.26187,160.116,6.88683,4.3403,160.404,6.13339,5.81362,160.747,7.13171,6.49478,159.435,8.06914,4.84964,159.018,7.01297,2.95662,159.993,8.32822,3.3816,158.459,7.8621,2.1259,157.92,6.58017,1.73773,159.64,1.86879,9.17869,159.329,1.62595,8.15809,160.718,4.88856,7.10418,160.931,5.66639,7.98775,159.594,3.28932,7.87502,160.881,3.79973,8.8702,159.5,5.92199,0.597884,159.514,6.86196,0.901419,157.684,5.93943,-0.286113,157.628,5.3891,-0.480566,159.448,4.98117,-1.42166,159.24,5.33078,-1.25296,157.455,4.54905,-2.1996,158.956,4.82674,-2.07456,157.209,3.9828,-2.82215,158.695,4.24375,-2.82642,156.978,1.29592,-3.80881,157.762,1.96434,-3.6389,158.012,2.03589,-3.82333,156.32,1.2983,-3.90997,156.099,2.62574,-3.49654,158.271,2.79374,-3.69956,156.572,3.31067,-3.25208,158.483,3.54127,-3.3837,156.778,0.627047,-3.97229,157.576,-0.0014688,-4.03984,157.454,-0.00473222,-4.5599,159.122,0.731049,-4.58871,159.576,0.618011,-3.99166,155.965,8.26373,7.28034,158.162,9.3246,5.3764,157.804,9.63821,3.80145,157.179,9.11184,2.49257,156.539,6.58282,9.04676,158.047,4.39604,10.0487,157.817,7.85487,1.16499,156.217,6.6683,-0.126228,156.106,2.15684,10.3939,157.652,5.88747,-1.14197,155.942,5.23993,-1.97378,155.742,4.56006,-2.79514,155.554,2.15035,-4.07301,154.998,1.36676,-4.17511,154.828,2.97751,-3.8778,155.203,3.79609,-3.47082,155.386,0.651454,-4.21084,154.72,1.2607,-6.9733,162.085,1.0989,-6.02678,161.721,1.02765,-5.24937,161.019,7.78576,-1.99717,171.363,7.74923,-1.69041,172.021,8.01661,-1.48474,172.863,8.27522,-1.45122,173.715,8.46353,-1.50992,174.353,8.68705,-1.49337,174.706,0.624216,-7.30443,161.925,-0.0167758,-7.47681,161.86,0.557482,-6.36719,161.658,0.520914,-5.60057,161.14,0.427308,-5.14298,160.448,2.45104,-10.4105,166.517,2.55071,-10.6033,166.749,0.693437,-11.6998,168.273,1.33607,-11.4903,168.159,2.36149,-11.1288,167.44,1.85171,-11.2496,167.829,2.58743,-10.8914,167.027,1.73794,-10.4172,165.413,2.10374,-10.3292,165.68,0.606955,-10.8746,165.275,1.21271,-10.6078,165.258,2.28981,-10.3157,165.986,2.36883,-10.3239,166.268,2.50893,-9.7928,166.587,2.6187,-9.94453,166.866,0.72877,-10.8144,168.709,1.39913,-10.6189,168.482,2.56283,-10.3248,167.853,1.98692,-10.4694,168.198,2.76671,-10.1168,167.214,1.76774,-9.57451,165.354,2.18049,-9.57173,165.654,0.57929,-9.83283,165.085,1.20263,-9.65081,165.13,2.40006,-9.61677,165.981,2.45592,-9.68782,166.297,2.53902,-9.18851,166.665,2.61109,-9.3001,166.94,2.04712,-9.47379,168.204,1.42385,-9.5375,168.513,2.5541,-9.41099,167.782,2.68271,-9.35962,167.267,1.83922,-8.68815,165.419,2.2831,-8.80924,165.754,0.567135,-8.72409,165.247,1.20217,-8.67187,165.269,2.4579,-8.967,166.111,2.50423,-9.09398,166.391,2.54183,-8.72808,166.498,2.56933,-8.74166,166.733,1.98596,-8.46768,167.852,1.35127,-8.4339,168.095,2.48177,-8.59815,167.494,2.64737,-8.74987,167.138,1.87815,-7.87319,165.958,2.38825,-8.20024,166.121,0.574373,-7.78216,165.94,1.20109,-7.78376,165.924,2.53291,-8.52261,166.367,1.99792,-7.7184,167.178,1.26278,-7.63485,167.276,2.49508,-8.12882,166.937,2.58503,-8.45991,166.805,2.61773,-8.86864,166.945,0.678589,-8.42469,168.279,0.617989,-7.64147,167.331,0.730651,-9.61979,168.783,-3.86333e-005,-9.64899,168.826,7.7638,12.3301,14.1339,6.6984,10.96,14.0101,9.09633,12.9722,12.5743,10.571,12.289,12.6935,7.62614,12.5139,12.4389,6.49345,11.0799,12.1771,12.2686,9.63818,14.205,12.2854,9.71746,12.4099,11.5738,10.9291,14.268,11.6343,10.8594,12.6441,12.444,10.1483,10.4619,11.4911,4.86929,12.4489,10.9481,3.90284,11.9433,10.0609,3.34872,12.3049,10.2093,3.73522,13.1613,8.65954,3.24405,12.3706,8.66593,3.51694,13.2895,7.23961,4.13914,11.9359,7.52831,7.59088,0.877767,8.05417,5.28072,1.03597,8.66179,1.83204,0.81271,11.8684,-2.97681,0.505236,12.4475,-1.60254,50.8177,8.02178,-1.46021,51.0223,13.0756,-3.32667,0.486515,13.6979,-2.89626,0.535377,10.5636,-4.62243,0.410752,11.3534,-4.28557,0.417211,-21.5626,4.02101,142.074,-21.2807,6.38014,141.599,-22.7651,6.19104,141.567,-23.0144,3.83895,142.138,-47.9359,7.66317,139.036,-47.7185,9.57244,139.891,-51.335,9.39194,139.695,-51.3295,7.44596,138.838,-45.1661,8.07553,139.399,-44.8717,9.86453,140.36,-41.3686,5.09272,147.474,-38.6791,5.05869,147.704,-38.8844,3.47927,146.456,-41.5827,3.71592,146.267,-35.6647,3.37933,146.718,-35.6055,5.08151,148.037,-32.6308,4.97615,148.349,-32.5478,3.21711,146.94,-40.7199,6.95559,148.028,-37.8905,7.07496,148.306,-34.9473,7.20541,148.704,-32.2172,7.17471,149.073,-35.1959,2.3735,144.892,-32.0027,2.22706,145.015,-43.0749,3.81035,146.198,-43.0161,3.1681,144.718,-44.2558,3.38827,144.831,-44.1334,3.80759,146.074,-34.3788,2.48246,142.759,-37.9348,2.5246,142.737,-38.5839,2.51467,144.756,-33.4627,3.77814,141.055,-37.1336,3.72927,140.978,-32.6178,5.77951,140.062,-36.2909,5.6857,139.917,-51.5393,5.42884,139.054,-48.4912,5.55813,139.335,-31.8114,7.97824,139.451,-31.1161,10.2262,139.696,-34.5289,9.83676,139.682,-35.4282,7.73418,139.36,-54.6631,10.3529,141.444,-57.5846,9.95601,141.605,-57.3921,8.99239,139.927,-54.4521,9.1742,139.745,-57.3167,7.3274,138.993,-54.4068,7.33273,138.848,-60.8281,8.76826,140.263,-60.6569,7.33948,139.258,-61.0348,9.40668,141.928,-57.3868,5.51797,139.018,-54.5491,5.39941,138.952,-60.5825,5.68103,139.155,-60.5931,4.11284,139.869,-57.5393,3.88674,139.993,-60.6444,2.98741,141.157,-57.6787,2.82721,141.647,-54.8118,3.71702,140.153,-55.06,2.76211,142.096,-63.902,4.29488,139.669,-64.0165,5.76784,139.29,-63.8729,3.11113,140.585,-64.2217,7.23153,139.572,-64.4922,8.39462,140.61,-68.2666,7.94409,140.796,-67.9127,7.01233,139.727,-67.6177,5.71699,139.268,-57.7942,9.77339,143.524,-61.1806,8.932,143.546,-64.8362,8.00768,143.469,-64.7293,8.71045,142.164,-54.9231,10.3573,143.525,-61.2574,7.81246,144.798,-64.8278,6.82397,144.397,-68.5434,5.81689,143.819,-68.6181,7.064,143.231,-68.533,7.96148,142.212,-49.1935,3.1326,143.075,-48.9243,3.92237,140.773,-51.8796,3.73079,140.474,-52.2081,2.85077,142.645,-47.1657,3.55501,145.167,-46.9667,3.41081,143.036,-49.4724,3.24819,145.209,-52.4492,2.85416,144.855,-55.231,2.72048,144.19,-52.5621,4.02691,146.756,-49.3709,4.5035,147.23,-55.3586,3.7655,145.971,-55.1403,9.39771,145.349,-57.9601,8.73279,145.082,-55.3086,7.7479,146.547,-58.0358,7.12697,145.995,-61.2027,6.30749,145.383,-52.0828,9.96557,145.678,-52.3225,8.28263,147.084,-48.7539,8.65275,147.368,-45.9078,8.6827,147.371,-46.3532,6.70202,147.855,-49.1211,6.57538,147.898,-52.5196,6.14806,147.52,-46.8902,4.66063,147.043,-55.3932,5.72093,146.828,-58.0104,5.25446,146.082,-57.9057,3.54241,145.182,-60.8597,3.24331,144.265,-61.0489,4.65197,145.229,-37.2096,11.382,144.963,-40.5737,11.1012,144.709,-40.3828,11.1496,142.786,-36.9349,11.4967,142.988,-33.9635,11.8141,145.143,-33.5575,11.9914,143.073,-38.1828,10.4953,146.633,-41.218,10.2368,146.335,-44.8521,10.9902,142.136,-43.0815,10.0531,140.731,-42.8906,11.014,142.491,-45.0862,11.1676,144.218,-43.0487,11.0468,144.461,-43.4454,10.1698,146.151,-45.4805,10.2822,146.076,-35.0683,10.8797,146.955,-48.3797,10.3093,145.932,-41.1213,2.76602,142.903,-40.5293,3.76301,141.2,-42.4061,3.69625,141.441,-42.7904,3.0636,143.007,-39.8503,5.52146,140.05,-42.2174,4.99139,140.249,-43.6535,3.59218,141.713,-44.3446,4.27943,140.795,-45.2916,3.49401,142.97,-44.0833,3.27338,143.113,-64.4035,3.97708,144.334,-68.0168,3.19924,143.443,-68.3188,4.46231,143.909,-64.6624,5.41276,144.688,-57.7892,2.6724,143.521,-60.7218,2.64352,142.739,-67.4369,4.34479,139.333,-37.343,10.7793,141.126,-38.2063,9.28045,139.812,-33.8279,11.3668,141.095,-30.6544,11.9204,141.108,-41.472,2.87772,144.694,-32.2453,11.2735,147.308,-33.716,9.40807,148.501,-36.5659,9.17753,148.081,-67.3649,3.11132,139.944,-67.4403,2.3482,141.056,-63.9402,2.55825,141.911,-67.6961,2.3727,142.392,-64.1323,2.87744,143.324,-43.1263,4.99237,147.322,-42.8312,6.86677,147.886,-42.1016,8.7502,147.477,-39.5883,8.92565,147.723,-44.4826,6.75869,147.806,-43.9587,8.66122,147.364,-41.4709,8.75709,139.778,-40.7401,10.3049,141.014,-43.4899,8.39309,139.626,-39.149,7.33671,139.502,-42.0373,6.79675,139.527,-30.5305,12.5519,143.163,-28.1046,12.9766,143.406,-28.6067,12.6497,145.621,-31.0466,12.3193,145.333,-29.7892,11.4922,147.608,-24.0133,1.85647,145.038,-24.6984,2.56313,146.992,-22.9369,1.87387,147.085,-22.4876,1.54907,144.642,-21.6643,2.38973,142.862,-23.1915,2.3323,143.124,-25.9184,2.03246,144.987,-26.6514,2.8486,146.822,-29.6492,6.98094,149.253,-29.7629,4.72167,148.369,-31.1709,2.40069,142.907,-28.8575,2.07055,144.97,-28.1098,2.29943,143.081,-25.0781,3.74667,142.2,-25.3352,2.31933,143.305,-19.1924,12.8629,143.926,-19.4366,12.7771,145.894,-21.5499,12.6016,145.977,-20.9276,12.9245,143.944,-20.3145,8.95782,141.188,-21.8668,8.78624,141.061,-19.9162,10.977,141.509,-19.5183,12.2759,142.463,-21.1886,12.3068,142.281,-21.5964,10.8781,141.306,-28.156,12.3113,141.348,-28.4048,10.4945,140.025,-26.055,10.7595,140.559,-25.7881,12.5026,141.68,-28.8722,8.15099,139.818,-26.4195,8.4065,140.434,-29.5538,5.79606,140.381,-26.976,5.81979,140.916,-27.4499,3.6425,141.712,-30.2819,3.73309,141.298,-25.2829,4.3024,148.871,-27.1605,4.54584,148.459,-31.1938,9.50998,148.84,-28.768,9.516,149.049,-27.3084,11.571,147.799,-26.1075,12.7744,145.892,-25.6517,13.1741,143.685,-48.0496,11.1364,143.896,-47.7652,10.8602,141.711,-51.5368,10.6979,141.464,-51.8371,10.8425,143.652,-44.9154,4.6036,146.885,-45.8974,5.85111,139.57,-23.754,3.98438,149.539,-25.2844,6.74817,149.995,-23.6691,6.62753,150.777,-24.3694,9.38471,149.726,-22.6269,9.46897,150.405,-22.8925,11.4192,148.17,-21.1441,11.5659,148.524,-24.8862,11.4513,148.001,-23.5695,12.6661,145.969,-29.4763,2.98111,146.866,-27.1698,6.86268,149.476,-23.2797,12.3683,142.114,-23.9016,10.8258,141.24,-24.353,8.64617,141.168,-24.8831,6.03474,141.599,-26.3256,9.41226,149.291,-22.9937,13.0381,143.854,-45.4759,3.60403,145.042,-46.4813,4.0967,140.906,-43.9693,6.23888,139.609,-70.6284,1.91757,141.663,-70.2906,2.15413,140.366,-71.972,2.02689,139.839,-72.4363,1.57265,141.116,-70.2031,3.08794,139.443,-71.8912,3.07801,139.081,-73.003,2.19997,142.356,-71.0158,2.62137,142.794,-70.8048,6.84828,139.702,-70.4961,5.69717,139.146,-71.189,7.61767,140.738,-73.009,5.80221,138.89,-72.2857,5.74257,138.997,-72.605,6.79485,139.605,-73.3906,6.81736,139.509,-72.0257,4.42159,138.792,-70.2909,4.3747,139.02,-71.5131,7.56402,142.073,-71.6321,6.56379,142.946,-73.7429,6.32016,142.689,-73.5226,7.38087,141.891,-74.7234,6.23703,142.494,-73.6748,4.94043,143.016,-74.7163,4.80429,142.819,-71.5571,5.24988,143.344,-71.3278,3.8615,143.335,-73.4078,3.47381,142.964,-73.8495,1.99003,142.128,-74.4109,3.26996,142.754,-72.3951,3.08767,138.934,-72.6508,4.4656,138.677,-73.053,7.45043,140.615,-72.4652,1.98996,139.625,-73.0473,1.4529,140.882,-74.3586,7.30032,141.746,-73.8506,7.41073,140.518,-17.1277,-1.26019,147.345,-16.2282,-1.0661,148.898,-15.0065,-2.5369,147.796,-15.856,-2.76664,146.129,-15.4158,-0.512655,150.588,-14.0974,-1.90554,149.739,-18.1127,0.146513,148.848,-17.1601,0.366609,150.148,-16.3255,0.87472,151.495,-18.8378,1.66898,150.406,-17.7398,1.98227,151.435,-19.2409,3.53299,151.71,-17.9756,3.97256,152.487,-18.9552,6.21507,152.485,-17.6849,6.3651,152.973,-16.8537,4.36865,153.142,-16.5954,6.55996,153.495,-18.2304,8.82671,152.206,-17.1648,8.54255,152.75,-17.3768,10.962,151.223,-16.4463,10.4581,152.181,-16.2257,8.31101,153.366,-15.683,9.94596,153.109,-16.3104,12.4301,150.237,-15.5151,11.9526,151.627,-14.8533,11.3139,152.883,-15.6017,1.59484,152.735,-14.9999,2.51333,153.738,-14.1688,1.47293,153.778,-14.73,0.359153,152.264,-14.5409,3.88396,154.456,-13.6711,3.0443,154.825,-16.0002,2.90358,153.19,-15.4785,3.23949,153.738,-15.2365,4.43662,154.094,-16.8011,2.44701,152.394,-15.9837,4.5361,153.671,-15.6727,6.48028,153.947,-14.8844,6.16876,154.372,-15.3793,7.96731,153.928,-14.6433,7.57354,154.491,-14.2807,8.91026,154.496,-14.9579,9.37208,153.874,-13.9135,9.88523,154.372,-14.2942,10.5311,153.844,-13.1416,10.1001,154.651,-13.2414,11.2756,153.877,-13.5966,12.2637,152.685,-11.8921,12.8176,152.331,-11.7122,11.7577,153.796,-13.4835,8.70752,155.087,-14.7317,13.3762,149.51,-14.1103,12.9592,151.162,-12.6892,13.96,148.895,-12.2516,13.581,150.606,-14.2388,5.63855,154.927,-13.4131,4.96031,155.418,-13.9129,7.17884,155.148,-9.8804,13.2139,151.771,-9.75565,12.1483,153.547,-12.8736,0.234717,153.579,-13.3882,-0.897717,151.728,-12.0669,2.04241,154.927,-12.3443,4.34441,155.806,-11.9651,6.27981,156.378,-13.0333,6.74177,155.815,-18.4113,1.67049,140.841,-19.8971,2.34443,142.184,-19.3245,0.841756,142.684,-17.3481,-0.19081,141.226,-19.8623,3.78056,141.123,-20.3292,4.19299,141.936,-13.1554,14.0772,147.232,-10.8221,14.5494,146.551,-10.4612,14.4009,148.086,-11.7233,14.394,143.571,-11.2399,14.5588,145.034,-13.6891,14.0156,145.579,-14.2995,13.7566,144.04,-17.2203,11.454,141.513,-18.684,9.37261,141.352,-18.0382,10.0689,140.499,-15.3586,11.9341,140.36,-19.3059,7.99279,140.879,-19.9812,5.84509,141.086,-20.054,6.48722,141.61,-19.0714,-0.196047,143.531,-17.1169,-1.58345,142.111,-21.058,0.682968,145.14,-20.4007,0.306145,146.555,-18.8029,-0.849696,144.707,-16.6261,-2.73883,144.633,-17.0792,-2.40538,143.287,-18.0982,-1.19317,145.99,-14.815,13.2542,142.79,-15.6598,12.5241,141.895,-13.446,13.158,141.04,-12.3356,13.942,142.218,-10.1348,14.0369,149.765,-12.4219,8.5708,155.755,-11.8535,10.3102,154.996,-17.2135,12.7547,148.788,-18.4794,11.506,150.154,-19.5458,9.25927,151.671,-15.4055,13.5438,147.84,-20.7854,2.4905,142.653,-20.9178,4.23912,142.111,-20.8823,1.27914,143.685,-18.5624,11.1303,141.751,-19.4081,9.17487,141.413,-20.543,6.49584,141.688,-20.6705,3.55441,151.001,-22.2306,3.7379,150.335,-22.078,6.48701,151.518,-20.4128,6.30132,152.079,-17.761,12.2422,142.409,-17.1919,12.8601,143.386,-16.1265,13.4974,146.211,-18.2571,12.8346,147.391,-21.0806,9.49524,151.059,-19.7444,11.6656,149.233,-21.5617,1.71919,148.539,-20.1246,1.62228,149.494,-16.8372,13.2473,144.687,-19.2566,0.122692,147.722,-7.88824,5.38345,119.021,-7.71425,6.01719,121.37,-9.79876,4.52039,121.338,-9.94877,3.8874,119.089,-1.43326,-12.277,136.896,0.00693737,-12.2849,136.971,-1.59216,-12.5335,135.126,-7.9092,14.4278,149.515,-7.71555,13.6462,151.608,-8.14305,14.8255,147.678,-5.60426,15.2676,147.446,-5.44313,14.8234,149.525,-8.41175,15.0341,146.038,-5.7854,15.4893,145.616,-9.86443,14.5503,141.256,-9.20926,14.9471,142.874,-12.5085,12.7146,138.453,-10.9023,13.8492,139.667,-13.8142,-7.18773,142.224,-14.6022,-7.25745,140.42,-15.4552,-4.5215,142.01,-15.0648,-4.69463,143.494,-8.00081,-8.06803,145.778,-7.44644,-6.29058,148.391,-6.1023,-6.80251,148.332,-6.46973,-8.36467,145.731,-4.67968,-7.12523,148.316,-4.90771,-8.3836,145.752,-1.6383,-8.36163,145.819,-3.30865,-8.33402,145.787,-3.1562,-7.27182,148.338,-1.56743,-7.30783,148.373,-1.51482,-9.68277,143.373,-1.34941,-10.9396,141.071,-2.79801,-11.2262,141.104,-3.07384,-9.839,143.379,-11.3573,-0.924624,153.252,-10.3522,0.297466,154.413,-8.99238,-0.89578,154.122,-9.96263,-1.9299,152.962,-11.9583,-1.88488,151.313,-10.5845,-2.82591,151.033,-5.25918,-4.84635,152.391,-5.60107,-5.56959,150.567,-6.90723,-4.91648,150.673,-6.48322,-4.14009,152.522,-4.77503,-4.15472,153.562,-5.8407,-3.43256,153.682,-11.35,-4.06189,148.917,-12.191,-5.25615,146.69,-13.6475,-3.87049,147.176,-12.7466,-2.98264,149.276,-3.97677,-5.38323,152.249,-4.24638,-6.09133,150.516,-3.65177,-4.6683,153.385,-2.66541,-5.67306,152.026,-2.84645,-6.37841,150.495,-2.50555,-4.92722,153.111,-1.49291,-4.97152,152.867,-1.26684,-5.67542,151.714,-1.44116,-6.42316,150.422,-3.4765,-12.55,134.579,-1.74207,-12.6504,133.575,-3.66945,-12.541,133.095,-4.98638,-13.6768,113.279,-4.63369,-13.3984,115.905,-2.86616,-13.7251,115.632,-3.25964,-14.0478,112.977,-6.73769,-13.0967,113.552,-6.4501,-12.8099,116.035,-5.19013,-13.8906,110.597,-6.90483,-13.2763,111.043,-3.46517,-14.3402,110.185,-8.49282,-12.8141,133.707,-5.76849,-13.0364,134.873,-5.70574,-12.4118,133.654,-8.16945,-11.6299,132.848,-10.5973,-9.96796,132.418,-11.4311,-11.2099,133.437,-13.8704,-1.5464,127.864,-13.059,-4.48441,128.268,-12.8225,-4.74723,125.858,-13.5801,-1.84756,125.434,-12.4579,-5.07104,123.612,-13.1532,-2.205,123.18,-13.6588,1.20633,125.486,-14.2094,1.53234,127.814,-13.0381,0.764733,123.219,-7.59207,12.3693,153.821,-5.28756,14.0367,151.784,-5.11575,12.7953,154.038,-2.64686,13.94,151.925,-2.52582,12.8085,154.138,-2.8251,15.2836,147.229,-2.73933,14.7837,149.485,-2.92153,15.5129,145.266,-14.7783,10.7712,138.052,-18.4105,5.73078,138.761,-17.0691,8.32658,138.278,-15.1486,8.54773,135.714,-12.9001,11.2013,135.701,-17.7569,3.16596,138.65,-16.1314,2.57673,135.838,-16.3391,5.5712,135.906,-16.3687,0.602195,138.519,-15.5467,-0.462851,135.801,-4.39347,-13.0598,137.278,-4.19726,-12.7499,138.848,-2.77809,-12.0717,138.944,-3.4582,-12.524,136.574,-15.7997,-1.8684,139.344,-15.1183,-4.30735,136.24,-14.0052,-4.21978,133.017,-13.3414,-4.28709,130.696,-14.2788,-1.28606,130.459,-14.904,-1.01515,133.106,-15.615,-3.66263,140.685,-15.1945,-6.4663,138.661,-13.0221,-3.38878,118.963,-12.8624,-2.73083,121.008,-12.2853,-5.6025,121.448,-12.4,-6.25495,119.376,-13.3181,-3.97726,117.2,-12.5732,-6.71714,117.49,-11.1876,-8.85967,117.794,-11.067,-8.54132,119.952,-11.0355,-8.01556,122.195,-13.1895,-8.3509,111.048,-13.2096,-7.87232,112.6,-11.7706,-9.76768,112.253,-11.7726,-10.1579,110.452,-10.04,-10.9399,113.891,-10.1915,-11.2224,111.89,-11.6231,-9.41833,114.003,-14.2006,-6.05786,111.524,-14.1548,-5.47141,112.889,-9.39008,-10.1103,120.506,-9.54483,-10.3457,118.134,-11.4055,-9.11374,115.844,-12.8247,-7.07392,115.768,-9.80945,-10.6434,115.964,-13.1526,-1.04944,116.906,-12.741,-0.427907,118.743,-13.671,-4.471,115.685,-13.5955,-1.60282,115.518,-12.0622,1.44905,117.028,-11.5669,1.91517,118.958,-12.5899,1.01141,115.492,-11.4675,2.55609,121.201,-12.5998,0.170217,120.944,-8.25356,5.13239,116.911,-10.4172,3.56262,117.091,-2.67356,5.89349,118.454,-5.37475,6.10933,118.796,-5.60108,5.84067,116.537,-2.77685,5.61529,116.065,-5.90789,5.7741,114.711,-2.88287,5.60329,114.378,-8.71801,4.97956,115.109,-10.9424,3.26561,115.393,-15.4213,2.14821,133.154,-13.8951,4.61597,128.151,-14.6978,5.0774,130.626,-14.808,1.83695,130.401,-12.4074,7.43347,128.491,-13.3723,8.13052,130.862,-4.25405,13.5957,135.678,-3.92505,14.4276,137.787,-7.75796,14.3149,138.442,-9.21294,13.2296,136.218,-6.90266,14.9345,140.43,-6.37462,15.3313,142.267,-6.03115,15.5204,143.938,-8.75542,15.0843,144.454,-3.24374,15.4261,141.862,-3.05438,15.5634,143.547,-1.89766,-12.7331,131.803,-3.86716,-12.5036,131.465,-5.79333,-12.041,132.453,-5.89808,-11.8504,130.988,-7.86515,-10.7575,128.35,-5.96775,-11.9392,128.987,-5.89339,-12.1456,126.403,-7.73933,-11.0032,125.955,-5.73332,-12.232,123.732,-7.582,-11.2074,123.435,-3.98212,-12.6119,129.354,-1.98095,-12.8719,129.515,-1.94347,-12.9678,126.814,-3.92111,-12.7562,126.708,-1.88832,-13.0635,124.141,-3.81621,-12.849,123.984,-10.1945,5.55287,123.742,-7.88861,7.1236,123.908,-5.2297,6.77073,121.388,-5.27323,7.91503,124.163,-2.62936,6.54261,121.331,-2.67965,7.66629,124.376,-2.88945,9.10799,127.236,-5.85762,9.3017,126.849,-12.0394,3.41748,123.57,-12.9835,4.11418,125.916,-11.265,6.60243,126.215,-8.78886,8.41952,126.509,-9.80991,9.50042,128.756,-6.57891,10.5868,129.118,-10.7585,10.3793,131.021,-7.3201,11.6183,131.311,-8.11948,12.4602,133.538,-11.6824,10.9901,133.369,-3.20053,10.542,129.67,-3.99905,12.6889,133.67,-12.5287,1.96179,111.131,-12.0107,2.5272,112.507,-13.5155,0.0221077,112.795,-13.8995,-0.633569,111.48,-11.5136,2.95666,113.893,-9.83794,4.55095,112.186,-9.27283,4.83309,113.56,-3.52377,15.0406,139.908,0.00050374,5.59973,110.265,0.00107689,5.48804,111.501,-3.38891,5.83531,111.541,-3.41254,5.92434,109.948,-6.87867,5.71619,111.822,-7.46718,5.60115,110.466,-8.4276,-12.1717,113.756,-8.57911,-12.3814,111.485,-8.17495,-11.8752,116.053,-7.83669,-11.4808,118.394,-13.9736,-4.95138,114.247,-14.2752,-2.72523,112.97,-13.9877,-2.13641,114.232,-6.33127,5.79155,113.176,-7.96495,-10.7325,130.344,-8.03695,-11.0229,131.812,-14.4865,-3.39634,111.692,-6.07251,-12.4071,118.54,-7.61065,-11.2683,120.875,-5.80162,-12.2153,121.111,-3.93617,-12.9287,121.286,-4.20171,-13.0822,118.577,-1.9632,-13.2258,121.451,-2.02556,-13.4084,118.435,0.00442796,-13.3663,117.182,-1.09864,-13.4891,117.019,-4.27934,-11.8876,141.0,-4.63589,-10.267,143.316,-11.1635,-7.51939,124.383,-9.49984,-9.45393,125.25,-9.37176,-9.82773,122.948,-10.9424,-12.2923,140.285,-11.8564,-12.9408,137.64,-13.8533,-10.3541,138.711,-12.7757,-10.0195,141.022,-8.31208,-13.0722,140.336,-8.71988,-13.985,137.697,-6.02261,-12.6723,140.733,-5.99417,-13.5975,138.397,-11.6504,-8.35347,143.574,-10.0857,-9.93129,143.109,-13.6774,-8.30539,134.21,-14.3454,-9.6533,136.362,-12.1049,-12.4709,135.233,-8.21167,-10.6786,143.024,-8.78639,-13.8229,135.355,-6.32507,-10.7175,143.155,-5.94429,-13.6667,136.367,-12.9856,-6.42943,144.388,-1.61824,-14.2794,112.689,-1.38518,-13.8263,115.225,-1.37381e-005,15.201,141.721,-1.34971e-005,15.3478,143.425,-1.54367e-005,15.305,145.228,0.000311435,14.581,149.433,-3.57638,-14.7996,106.992,-1.74139,-14.6747,109.839,-1.81029,-15.2008,106.549,-11.7419,-7.08498,128.88,-11.4555,-7.22993,126.602,-9.99312,-9.16809,129.615,-12.0255,-7.08081,130.945,-10.2543,-9.38606,131.275,-9.72009,-9.19994,127.493,-12.6305,-7.3829,132.547,-1.30133,-11.8121,138.915,7.25899e-006,7.0056,124.562,0.00361368,-11.7822,138.921,1.77329e-005,5.89866,121.323,-14.4091,-4.44608,145.25,-15.3638,5.36106,133.282,-14.1725,8.47682,133.335,-3.58421,11.7077,131.748,-0.636194,-5.23192,152.199,-0.708173,-4.86403,152.848,-0.0102014,-10.8715,141.055,0.000469291,-12.9259,129.563,0.000261199,-12.9834,126.837,-9.38511e-006,13.1757,135.741,-2.01553e-006,9.93303,130.039,-1.1309e-005,14.0719,137.742,-0.00656409,-5.80953,151.347,-0.0469877,-6.40846,150.361,-0.0963697,-7.31675,148.395,-0.0981717,-8.42542,145.844,-0.000993852,-13.0248,124.242,-6.83929,-2.62617,153.794,-7.61502,-3.44467,152.621,-8.73661,-2.73811,152.757,-7.85212,-1.81667,153.93,-8.14978,-4.29727,150.756,-9.3456,-3.62953,150.864,-8.764,-5.64439,148.487,-10.0412,-4.92334,148.66,-10.8113,-6.47209,146.22,-9.46789,-7.42829,145.909,-13.066,-7.45,114.132,-13.1047,0.562016,114.114,-3.07948,5.7242,112.923,0.00178336,5.30881,112.801,-8.64474,-12.6345,109.027,-6.98998,-13.52,108.266,-5.29685,-14.2184,107.582,-10.2318,-11.5411,109.782,-10.4651,4.16246,110.818,-0.00563689,-15.3371,106.377,-0.00774451,-5.25218,152.123,-10.0648,10.4796,155.361,-11.028,8.39037,156.428,-10.8595,4.08781,156.316,-10.5928,5.83528,156.933,-9.52232,7.96702,157.096,-7.73774,10.3425,156.166,-10.3028,2.51975,155.626,-4.19737,-3.58764,154.353,-3.26275,-4.08147,154.194,-5.08621,-2.86338,154.482,-9.0324,1.06716,155.166,-7.77557,-0.173247,154.921,-4.86788,11.3021,156.049,-2.35928,11.546,156.007,-2.31541,-4.36433,153.994,-1.45978,-4.49375,153.82,-0.710876,-4.49648,153.715,-6.79479,-1.1813,154.775,-5.941,-2.0282,154.633,-1.83339,-15.1851,99.5149,-1.70906,-14.3615,96.5682,-3.38479,-14.1817,97.1016,-3.5959,-14.904,100.115,-14.0677,-8.27983,107.058,-14.0101,-7.47203,108.612,-12.7965,-9.48501,107.682,-12.7469,-10.1482,105.98,-8.0956,-13.3369,101.302,-8.44313,-13.3121,103.765,-6.87232,-14.0095,102.408,-6.48387,-13.6135,99.6751,-9.7394,-12.7236,102.976,-9.98598,-12.3577,105.157,-5.2612,-14.4966,101.15,-4.96029,-13.8922,98.1664,-5.36506,-14.6208,104.323,-7.01635,-13.8889,105.286,-3.64057,-15.151,103.508,-1.84496,-15.465,102.947,-8.6197,-12.9939,106.338,-12.9922,-8.90018,109.37,-14.1084,-6.74054,110.078,-10.1546,-11.921,107.436,-11.1081,3.81004,109.336,-11.7676,3.68299,107.759,-8.47035,5.83132,107.406,-7.96087,5.61872,108.991,-15.1566,-5.87915,107.496,-14.8499,-4.99119,109.0,-1.88681,6.72121,104.801,-1.73499,6.21909,106.537,-4.773,6.52877,106.976,-5.13509,7.09593,105.228,-4.38039,6.16964,108.482,-1.54541,5.937,107.963,-1.36818,5.78609,108.974,-14.8891,-2.08721,108.788,-15.5422,-2.7966,107.265,-14.6408,0.681613,106.667,-13.8666,0.920827,108.23,-13.161,1.35089,109.688,-14.3486,-1.37545,110.123,-12.4208,3.86361,106.097,-11.4407,-11.1007,106.479,-11.3077,-11.6473,104.557,-11.6177,-10.6046,108.458,-14.6576,-4.16885,110.352,-8.99494,6.26877,105.672,0.00121672,6.29637,104.607,-0.00912487,-14.3661,96.4089,-18.4075,-5.60835,93.4978,-16.8269,-8.87588,92.7215,-17.5079,-8.43657,88.4474,-19.0335,-5.06651,88.9405,-17.6636,-6.10797,96.7434,-16.01,-9.16334,96.3303,-18.7862,-1.47469,93.703,-19.1721,-0.868253,89.1762,-18.4102,-2.07031,96.3511,-14.672,-11.0702,91.7979,-15.2131,-10.7273,87.7786,-17.7799,-7.87269,84.203,-19.2415,-4.53354,84.5205,-15.4243,-10.2228,83.8206,-13.5478,-11.4578,98.2528,-14.0466,-11.266,95.268,-15.2809,-9.42397,99.513,-11.5324,-12.6218,96.4489,-11.843,-12.4591,93.7699,-12.21,-12.3115,90.5704,-9.25196,-12.9034,98.616,-9.21487,-12.8557,96.5835,-11.3062,-12.6309,98.5006,-11.1919,-12.4773,100.494,-9.32262,-12.7726,94.5574,-9.48611,-12.6415,92.141,-11.2137,-12.1428,102.55,-12.8605,-10.7979,104.13,-15.5446,-6.55007,105.7,-14.3261,-9.019,105.284,-16.1011,-3.2525,105.443,-16.6399,-3.40438,103.517,-15.9507,-6.77956,103.729,-16.3328,-6.75444,101.823,-17.2142,-3.2712,101.567,-17.8075,-2.93407,99.3738,-16.8214,-6.59961,99.8003,-16.8756,0.941867,100.782,-17.3509,1.3671,98.3476,-17.2477,2.37023,93.1239,-17.4004,1.99111,95.4969,-1.1882,-10.1898,88.8255,-0.827396,-8.626,88.6427,-1.50664,-8.30185,88.2322,-2.30391,-10.465,89.3091,-0.497265,-6.96674,88.7471,-0.625723,-5.02272,88.58,-2.74658,-9.14012,86.3456,-2.65293,-7.79601,83.8526,-4.33843,-10.153,84.1764,-4.66494,-11.0083,86.9229,-6.75811,-11.7194,84.8606,-7.02255,-12.0887,87.9366,-2.56067,-6.48304,81.2664,-4.09612,-9.15946,81.376,-6.45462,-11.1048,81.8105,-3.09665,-10.2633,88.4679,-5.04566,-11.5418,89.3465,-7.1933,-12.2621,90.6173,-1.51312,-6.5701,86.3363,-1.59109,-4.89558,84.0181,-1.01268,-3.47058,86.7558,-1.22276,-1.54668,84.7234,-3.05073,-12.922,94.559,-1.53345,-13.0548,93.8299,-4.55784,-12.881,95.6776,-4.23824,-12.0611,93.551,-2.85388,-12.1366,92.3119,-1.47437,-12.2945,91.2868,-1.41332,-11.4307,89.5436,-2.69868,-11.5292,90.5577,-0.666587,-0.431047,89.2667,-1.10837,-0.592404,87.6216,-1.95141,2.12233,87.0945,-1.83463,3.68521,90.2492,-5.4781,6.09301,90.2778,-5.37435,5.19083,87.6307,-9.45405,6.01952,87.9039,-9.77402,6.72112,90.836,-13.9782,5.30031,91.9283,-17.1111,2.92257,89.0163,-13.535,5.2482,88.4717,-14.4717,5.41327,94.1268,-10.2875,7.4538,92.798,-2.06941,6.32736,92.032,-5.87887,7.65802,91.8537,-5.75692,8.84387,98.0933,-10.4541,7.84208,98.7322,-10.5616,7.91448,95.7401,-5.82715,8.78181,94.8308,-1.65033,7.84764,94.6547,-1.52577,8.20401,97.8426,-1.78291,7.90809,100.584,-5.71863,8.31849,100.816,-5.50269,7.75971,103.173,-9.58878,6.85541,103.667,-10.1207,7.43739,101.359,-1.9613,7.32314,102.807,-14.5631,4.98123,99.6879,-14.8074,5.3001,96.9716,-15.4337,0.568693,104.86,-13.1938,4.18046,104.2,-16.2093,0.622782,102.891,-13.9727,4.56425,102.065,-7.41478,-12.6727,96.7189,-7.25852,-12.4632,94.7406,-7.71347,-13.056,98.9251,-6.07454,-12.9235,97.1946,-5.75041,-12.2535,94.9889,-5.54309,-11.9297,93.1086,-4.01975,-11.6058,91.7391,-5.35855,-11.7869,91.3456,-3.68103,-11.1175,90.1579,-7.23491,-12.3641,92.8226,-9.58803,-12.5409,89.2147,-8.75846,1.62975,38.258,-9.00514,2.30038,34.3249,-11.4047,1.96516,34.4865,-11.3165,1.20211,38.4369,-11.382,0.446843,42.6756,-8.84036,0.810309,42.6459,-13.6151,3.23926,34.9067,-13.825,2.62894,39.0277,-13.9051,1.87688,43.2052,-6.53895,9.01316,22.8323,-6.35711,9.07052,19.0523,-6.55995,6.96069,19.0976,-6.82421,6.80083,22.863,-7.3677,5.03067,19.1571,-7.58306,4.8871,22.9622,-8.82269,3.61269,19.189,-8.97884,3.4095,23.0041,-14.2158,12.8496,36.0576,-14.5274,12.8843,40.3095,-15.8857,10.7144,40.0355,-15.4402,10.7326,35.8823,-14.8566,10.5832,31.9653,-13.7028,12.344,32.0353,-12.298,14.1202,36.0407,-12.3535,14.1219,40.1362,-11.8265,12.7513,27.4785,-10.1225,13.2953,27.448,-10.0811,13.8965,31.8774,-12.1332,13.4643,31.9928,-13.2527,9.91575,22.6211,-12.3611,11.255,22.5908,-13.0721,11.7989,27.5513,-14.1281,10.3552,27.5986,-11.3081,12.2585,22.5818,-9.906,12.9492,22.6245,-9.88123,14.4527,35.8696,-13.7106,8.06345,22.7026,-13.1937,8.05307,19.0762,-12.7554,9.70793,19.0266,-17.6407,-7.20001,79.8664,-15.3156,-9.54123,79.4815,-12.4911,-12.0563,86.8541,-12.5416,-11.636,83.1895,-12.4007,-10.9488,78.9248,-19.0387,-3.98818,80.1491,-12.1193,-10.0027,74.814,-14.9522,-8.70567,75.3099,-9.41942,-11.9272,82.4582,-9.2243,-11.1457,78.3427,-9.02331,-10.0702,74.3766,-6.29447,-10.0746,77.8541,-6.213,-8.86156,74.0389,-4.06129,-7.92352,77.5482,-4.15612,-6.59596,73.8492,-4.23608,-5.21216,70.2778,-6.09607,-7.54987,70.4016,-2.66271,-5.12903,77.4716,-2.9347,-3.77724,73.8152,-3.23693,-2.42637,70.2686,-4.24395,-3.90407,66.7658,-5.91639,-6.3023,66.8795,-8.4675,-7.66495,67.1463,-8.76156,-8.84877,70.6616,-11.1791,-7.66983,67.5573,-11.6779,-8.84967,71.044,-13.6135,-6.70098,67.973,-14.3444,-7.73049,71.4728,-10.7168,-6.63718,64.3786,-8.18648,-6.62919,63.8933,-12.8968,-5.77736,64.8113,-8.04269,-5.65387,60.9795,-10.3377,-5.81482,61.518,-12.2921,-5.10299,61.9163,-13.9093,-3.81039,62.0887,-14.7325,-4.31951,65.078,-9.84897,-5.15053,58.8307,-11.844,-4.71041,59.0579,-13.4181,-3.34787,59.211,-5.75287,-5.18098,63.5304,-5.8792,-4.05282,60.5116,-4.25979,-2.70651,63.3828,-4.58517,-1.53028,60.3061,-15.6414,-4.99194,68.2891,-16.0004,-2.09768,65.2677,-16.9439,-2.44357,68.5546,-15.0916,-1.82136,62.142,-3.47891,-1.14896,66.778,-3.66228,0.00793277,63.4091,-2.84441,0.55481,70.4039,-3.3431,1.72359,66.9539,-3.70582,2.7467,63.6317,-3.40416,3.52616,70.717,-4.2022,4.52738,67.3192,-2.30609,-0.695461,73.9291,-2.61984,2.45583,74.2459,-1.96703,1.2724,77.9089,-1.85322,-2.01224,77.5709,-1.51529,-0.0484732,82.1126,-1.62623,-3.40774,81.6017,-4.07315,3.59403,60.4087,-4.01977,1.10024,60.2173,-5.32965,5.76048,60.9105,-4.84934,5.2741,64.0639,-5.08432,5.7737,71.0647,-4.14149,4.99181,74.639,-3.35429,4.09324,78.3898,-6.20101,-2.74901,58.2175,-6.38859,-1.7642,56.2138,-7.67989,-3.57193,56.3251,-7.84008,-4.46491,58.4966,-6.41294,-1.02765,54.254,-7.54747,-2.88085,54.3525,-5.39235,0.391534,55.9875,-5.59709,1.12971,54.1039,-5.1003,-0.396712,57.8946,-9.47892,-4.61738,56.3821,-11.4976,-4.37163,56.4293,-13.1841,-3.06256,56.5426,-14.2268,-1.04734,56.7492,-14.4978,-1.42404,59.3254,-15.0015,1.18212,56.9373,-15.2516,0.723621,59.4434,-14.9945,3.64557,57.1836,-15.2936,3.12794,59.7257,-14.1292,-0.680848,54.3989,-14.9894,1.66291,54.6344,-14.9162,4.2978,54.9952,-12.9514,-2.65327,54.2807,-13.9194,-0.250797,52.1228,-14.9776,2.08792,52.252,-15.0546,4.75487,52.6214,-15.0471,2.64269,49.8479,-15.4085,5.44867,50.2233,-13.4404,-0.000292137,49.6671,-11.2344,-3.78393,54.2538,-9.31216,-3.9191,54.294,-9.24753,-3.18878,52.3364,-11.0993,-3.14265,52.2722,-12.6937,-2.08043,52.2716,-9.17392,-1.00626,48.9196,-11.3331,-1.14222,48.8147,-11.0902,-2.24702,50.5693,-9.27771,-2.14643,50.6841,-8.96395,-0.0372122,46.416,-11.3487,-0.317386,46.2739,-13.7432,1.03415,46.7233,-7.69493,-2.14317,52.4418,-4.8316,2.72484,55.6932,-5.24456,3.35345,54.0362,-4.48775,2.24925,57.3759,-4.98845,4.84372,55.7092,-5.51566,5.3583,54.1852,-4.55955,4.46877,57.4216,-5.79608,4.23308,52.2131,-6.0502,6.25119,52.4897,-5.94109,6.18673,56.0805,-6.38998,6.67324,54.4194,-6.87244,7.76834,52.5977,-6.03947,1.96548,52.137,-6.07086,5.32631,50.0606,-6.4327,2.88826,49.9145,-7.40786,0.243757,49.8454,-6.7271,-0.296259,52.2182,-6.35201,4.00314,47.3471,-7.36179,1.62597,46.9683,-5.86106,6.58016,47.4841,-7.19022,2.60708,43.0341,-5.92385,4.96377,43.4462,-5.32941,7.74568,43.675,-6.21581,7.56282,50.3336,-7.05705,9.37963,50.3157,-6.01627,9.05922,47.4629,-7.10578,11.0883,47.3273,-8.38996,8.92513,52.684,-8.68899,10.5273,50.2349,-9.08117,12.1405,47.209,-10.2998,9.21287,52.7672,-10.7682,10.6987,50.1693,-8.03588,7.5847,54.6905,-9.89892,7.8953,54.9464,-7.7597,6.82556,56.6639,-9.69213,7.12071,57.133,-7.57859,6.55029,58.854,-9.62839,6.64372,59.5104,-2.68591,3.13337,82.9244,-5.757,5.53198,83.5438,-6.29592,6.20997,78.9672,-7.39123,6.57517,61.5096,-9.58634,6.56623,62.1629,-11.8764,6.19645,62.5447,-11.7633,6.29508,59.8621,-11.7176,6.80024,57.4184,-13.8153,5.16494,59.899,-13.6396,5.6289,57.4433,-12.2532,8.56208,52.8668,-11.835,7.46564,55.136,-13.6297,6.2624,55.1978,-13.8983,7.04639,52.9211,-14.4894,8.08052,50.5517,-12.822,9.85596,50.3334,-15.8976,6.32982,47.6004,-15.1907,8.97463,47.6653,-15.3975,3.50043,47.2494,-13.5581,10.9587,47.4371,-15.6647,4.28864,43.7794,-16.3132,7.13915,44.1007,-15.759,9.90436,44.1664,-14.2117,12.0638,44.0906,-16.293,7.88919,39.8226,-7.11965,12.6355,43.6733,-9.44769,13.5686,43.6809,-5.65193,10.4981,43.7192,-7.24938,13.6501,39.6104,-7.44647,13.7232,35.6553,-5.91357,11.6774,35.3809,-5.58193,11.543,39.4125,-7.9516,13.3914,31.744,-6.46577,11.6326,31.6109,-5.16707,8.68242,39.1036,-5.58497,8.9907,35.0467,-6.04658,9.07063,31.4493,-6.9284,11.4837,27.5484,-6.45427,8.96848,27.5754,-9.76504,14.431,39.8094,-11.9704,13.3197,43.8576,-5.71789,5.76861,38.8082,-7.03969,3.39705,38.4839,-9.08278,3.11497,27.3826,-7.66652,4.64121,27.4264,-6.84809,6.62852,27.5103,-10.7881,3.30628,23.0275,-11.0447,2.87853,27.4542,-9.1007,2.74971,30.9824,-7.50124,4.40994,31.0674,-11.295,2.47018,31.1029,-12.3253,4.39434,22.9789,-12.8532,3.98637,27.606,-6.08196,6.32379,34.7238,-6.51096,6.56486,31.2478,-8.29756,13.0121,27.4878,-8.25431,12.782,22.7099,-7.03166,11.3086,22.7871,-8.04938,12.5144,18.9848,-6.9454,11.0958,19.0167,-15.1845,5.4108,35.3165,-15.5922,5.01221,39.5521,-14.1481,5.93047,27.6935,-14.7443,5.74428,31.6567,-13.3008,3.66592,31.3873,-15.8181,8.09309,35.632,-15.2666,8.21224,31.8487,-11.9268,4.72378,19.137,-12.8455,6.32935,19.1098,-13.3525,6.11422,22.8211,-14.5819,8.2091,27.6825,-9.68563,6.31064,84.0992,-10.1523,6.99263,79.579,-14.093,6.15323,80.0359,-13.6605,5.65236,84.4787,-14.3774,6.31513,76.0039,-10.7415,7.37077,75.6128,-17.1844,3.8335,76.1744,-17.3075,3.71514,80.2707,-17.1673,3.39727,84.7254,-16.8704,3.73542,72.3375,-14.4866,6.17749,72.2124,-11.2872,7.37526,71.8903,-16.4769,3.54024,68.8063,-14.4558,5.849,68.7142,-17.2543,0.550947,68.7468,-18.0053,0.483349,72.2935,-18.6779,0.317727,76.1504,-7.86096,7.17576,71.4666,-7.02749,6.80845,75.1042,-11.6766,7.02557,68.4606,-8.68086,7.1714,68.1118,-6.11405,6.48354,67.7164,-11.8687,6.53717,65.3504,-9.27169,6.84073,64.9898,-6.90906,6.64087,64.5065,-16.5146,0.585408,65.4759,-16.0607,3.35627,65.5707,-14.3079,5.48343,65.524,-18.5442,-3.42121,76.0086,-17.8235,-2.91523,72.1235,-17.2039,-6.4993,75.7218,-16.5093,-5.759,71.8373,-19.1279,-0.0662668,80.285,-19.2579,-0.424174,84.7408,-15.8079,0.623657,62.3689,-15.6189,3.21263,62.5592,-14.0429,5.20657,62.5942,-9.582,-12.3326,85.822,-5.6559,6.01623,57.9609,-11.3895,12.0547,47.224,-7.26025,4.03862,34.4617,-10.5337,3.61944,19.1956,-9.45769,-12.899,100.771,-13.2618,-11.434,100.266,-14.6781,-9.36835,103.318,-6.31447,7.03745,16.1508,-6.1794,9.12586,16.0682,-7.20463,5.03052,16.2967,-8.71711,3.69432,16.3851,-12.8634,8.12697,16.2869,-12.4298,9.66005,16.2638,-6.85431,10.9763,16.0753,-11.6754,4.93407,16.2594,-12.5388,6.50204,16.2779,-10.3798,3.80396,16.3438,-10.9194,12.1424,18.9379,-9.55078,12.8533,18.9516,-11.926,11.0327,18.975,-7.89636,12.3496,16.1123,-10.6597,12.1114,16.1636,-9.30748,12.8014,16.1386,-11.6604,10.9686,16.2117,-0.00510419,-13.1142,93.5444,0.000955116,-10.0434,88.5908,0.00253095,-8.74356,88.6939,-0.000654113,-6.84704,88.8627,-0.000538599,6.95486,94.8747,0.00387204,6.74602,102.608,-14.9485,-9.46174,101.475,-13.0534,-11.2298,102.155,-0.000256329,5.64975,109.075,-6.13414,6.85353,14.0112,-5.80434,6.47539,12.068,-7.14825,4.62142,12.9287,-7.16747,4.88127,14.3145,-5.94423,9.08642,13.8859,-5.1824,9.64748,9.52902,-4.94534,9.64191,7.37669,-5.01344,7.17178,7.29544,-4.90987,7.16605,9.5283,-5.51861,9.04465,11.8013,-6.12609,4.94627,10.0534,-6.3285,5.1291,11.3156,-6.05925,4.28787,8.06786,-8.35291,0.600086,7.99117,-7.5291,2.66647,9.53679,-7.17409,1.07125,6.94999,-5.50053,4.38225,5.84028,-6.3855,1.37252,5.48742,-7.33745,3.62217,10.9156,-6.13147,11.5204,9.7265,-7.29117,12.916,10.0172,-6.95183,13.5622,7.85841,-5.62814,12.0031,7.53156,-9.01003,13.4679,10.2223,-9.10524,14.2465,7.90111,-6.65909,14.0295,5.8704,-5.20078,12.2334,5.70875,-4.62273,9.81608,5.62103,-8.73779,2.91733,11.3849,-8.98232,2.03767,10.0892,-10.0555,2.98541,11.3021,-10.2148,2.06984,10.0229,-10.6543,0.320072,8.29843,-9.58322,0.292822,8.35156,-10.4559,-2.39042,6.32467,-11.3953,-2.31752,6.22294,-9.32123,-2.21988,6.28618,-10.2861,3.85899,14.445,-11.5507,4.99816,14.269,-8.67746,3.6788,14.5129,-12.0766,5.08469,10.1776,-11.1471,3.64775,10.8622,-11.2537,2.56573,9.55214,-12.055,3.35082,8.67085,-12.5927,12.1998,6.23881,-13.1796,10.0099,6.63544,-13.374,10.4573,4.56347,-12.6944,12.6814,4.26709,-11.1895,13.9939,6.04368,-10.9746,14.3178,4.11059,-13.1604,10.9208,2.65244,-12.2607,12.916,2.4273,-10.5647,14.2918,2.34242,-12.0535,10.9573,1.34823,-11.0876,12.432,1.2431,-10.1536,13.4741,1.30578,-13.156,5.6472,6.2454,-13.5232,3.08986,5.39616,-13.9227,3.9603,4.05446,-13.495,6.3442,4.53752,-14.832,1.16419,3.34362,-14.2666,0.243682,4.51382,-12.9725,2.16412,6.47052,-13.5464,-0.664163,5.25283,-12.6563,4.19517,7.49287,-13.2666,9.3685,7.58233,-13.199,7.88311,7.32438,-13.2154,8.03924,6.22119,-13.1497,-10.8559,1.24243,-13.411,-11.2256,0.7256,-13.7222,-11.1106,0.93326,-13.6647,-10.7657,1.36877,-13.7604,-11.1483,0.484613,-14.0033,-10.9004,0.730189,-14.3526,2.00142,0.864001,-13.4749,4.70089,1.03609,-14.2114,4.61346,2.53895,-15.0925,1.87921,1.99213,-13.7311,6.9984,2.80797,-12.8784,7.09565,1.20206,-10.309,10.4759,0.734717,-9.49305,11.8637,0.775321,-12.4446,9.32697,1.30913,-13.3977,9.31161,2.77615,-11.3906,6.64213,0.648725,-10.8886,8.9182,0.700015,-8.72445,13.172,1.10295,-7.96131,11.129,0.621808,-7.10691,12.3042,1.00896,-8.62175,9.80178,0.568347,-8.36646,14.4073,2.30135,-8.94021,14.6961,5.95187,-8.6078,14.7468,4.04615,-6.35613,13.9237,3.99384,-11.1121,13.4251,8.01829,-4.45709,9.71512,3.93601,-4.92293,12.0657,3.9583,-4.98419,11.6039,2.31836,-4.72704,9.36963,2.40479,-6.28855,13.4204,2.27247,-5.99946,10.932,1.04648,-5.79875,9.11333,1.19178,-4.73101,7.19192,3.97786,-5.14657,7.06827,2.52829,-6.1483,7.18293,1.43872,-10.6987,12.7154,10.4826,-9.18657,8.27336,0.594217,-13.8788,-10.1979,0.43005,-13.5591,-10.3723,0.340087,-13.4244,-9.84369,0.582588,-13.8648,-9.77093,0.68499,-13.2031,-10.5318,0.409725,-13.008,-10.1593,0.666837,-14.0449,-10.5081,0.502037,-13.6947,-10.8489,0.314662,-13.2001,-10.9257,0.475665,-14.3923,-9.03157,0.642844,-14.2446,-8.74446,0.835414,-14.5374,-8.57692,0.740079,-14.6371,-8.98198,0.578357,-14.9031,-8.23614,1.01262,-14.9043,-8.64819,0.755748,-14.4855,-8.17836,0.974712,-15.2127,-8.94263,0.885162,-15.0795,-9.25964,0.650562,-14.8877,-8.95504,0.601455,-15.2544,-8.52081,1.2105,-14.2075,-9.12303,1.02826,-14.1233,-8.73437,1.40527,-14.165,-8.37124,1.11624,-14.1492,-8.00532,1.29652,-14.467,-7.80625,1.11337,-14.1089,-8.30998,1.69188,-14.4338,-9.38455,0.708562,-14.5785,-9.6912,0.903905,-14.4785,-9.48889,1.24781,-14.7838,-9.42062,0.589951,-14.9331,-9.75865,0.86766,-6.67898,4.86855,1.63358,-5.76022,4.64031,2.68079,-6.18095,-1.50286,2.41641,-6.18973,1.86812,2.60016,-7.04135,1.84064,1.39219,-6.98282,-1.26166,1.06532,-5.38947,4.50786,4.10017,-6.04507,1.67665,3.98074,-6.42616,-1.68134,3.83037,-7.2046,-1.87313,5.06315,-12.8243,-8.62708,1.28684,-13.2416,-8.40051,1.07102,-13.3144,-8.89838,1.06742,-12.8799,-9.12868,1.25165,-13.3437,-9.33262,0.886993,-12.9024,-9.62863,1.02541,-12.6434,-8.85668,1.87308,-12.6972,-9.40517,1.76702,-12.7447,-10.0119,1.42364,-12.5837,-8.02224,1.12507,-13.0419,-7.7211,0.930404,-12.5474,-8.46165,1.85866,-14.0953,-9.25016,2.20704,-14.0915,-9.87741,1.76595,-14.1146,-9.49936,1.37334,-14.0932,-8.97313,1.67487,-13.621,-9.51284,2.51762,-13.6595,-10.2015,1.99532,-14.0461,-10.4275,1.19872,-14.1211,-10.0258,0.919195,-14.2244,-4.87626,3.9197,-14.5812,-5.8429,3.46554,-15.0286,-5.52297,3.34895,-14.9841,-4.32669,3.65838,-13.584,-5.58705,3.8875,-14.1636,-6.25742,3.3418,-14.7701,-6.58126,3.00859,-15.1299,-6.23709,2.91354,-14.3654,-6.85669,2.88985,-15.3104,-5.44307,3.14199,-15.5611,-4.90621,3.20053,-15.3714,-5.87339,2.78159,-15.7395,-5.48614,2.77177,-13.6538,-6.61572,3.39428,-13.966,-6.63656,3.17145,-14.0623,-7.07518,2.82143,-14.0912,-7.50317,2.3328,-14.348,-7.46597,2.38752,-14.8472,-7.23052,2.58486,-13.0936,-6.77326,3.5269,-12.7089,-5.83326,4.05471,-12.5045,-7.04799,3.42569,-11.8153,-6.29727,4.00427,-12.1586,-4.52986,4.80059,-11.2263,-4.79033,4.86968,-12.9755,-4.1555,4.7116,-12.7325,-7.68793,3.06336,-13.3043,-7.50536,3.12672,-12.1831,-7.37702,3.32715,-12.2813,-7.82672,3.05371,-11.7562,-7.27239,3.60322,-13.4136,-8.14524,2.84479,-12.7477,-8.3325,2.63827,-12.3739,-8.27797,2.58027,-13.7867,-7.29288,2.97347,-13.9306,-7.8868,2.47307,-15.3188,-8.89659,1.51041,-15.2865,-9.32391,1.13465,-15.319,-8.34444,1.88181,-15.2386,-8.02363,1.48293,-14.8841,-7.80912,1.18673,-8.92762,-11.5386,2.20938,-9.0595,-12.1046,2.0663,-9.98522,-11.8093,1.74213,-9.82985,-11.1317,1.8509,-10.3186,-11.7042,0.933837,-10.1091,-10.8814,0.978395,-8.83312,-10.9442,2.40629,-9.70187,-10.4193,2.06849,-9.83225,-10.0612,1.17259,-12.8351,0.989921,0.622029,-11.0494,-0.168959,0.601878,-10.4729,2.44123,0.55056,-12.1067,3.66495,0.535058,-15.1992,-9.55435,0.84429,-6.29166,-7.66028,1.13209,-6.20088,-7.864,2.14278,-5.86204,-6.68737,2.33089,-6.04554,-6.54079,1.12748,-6.71408,-8.48761,1.04333,-6.63049,-8.79413,1.91173,-6.75033,-7.92832,3.16741,-6.4154,-6.74907,3.526,-7.17094,-8.9059,2.83909,-7.07663,-9.24443,0.933341,-6.94809,-9.62368,1.70746,-7.28331,-8.17271,0.473905,-7.72352,-8.86587,0.53295,-6.879,-7.44519,0.414202,-7.49939,-9.78277,2.58705,-7.99506,-9.59359,0.417596,-7.26179,-10.0161,0.765772,-8.10758,-7.96025,0.2541,-8.76045,-8.61549,0.682884,-8.9259,-9.3311,0.638281,-7.79304,-7.31117,0.0850243,-8.51822,-7.38013,0.0393695,-8.89621,-7.8473,0.250392,-9.42214,-8.37145,0.821586,-8.55681,-9.49825,3.06657,-8.20487,-8.68328,3.40904,-7.83455,-7.795,3.81224,-9.21972,-8.27082,3.4589,-9.53372,-8.88518,2.73036,-8.74558,-10.2718,2.7325,-9.58998,-9.68269,2.35883,-7.69252,-10.5709,2.34577,-9.01154,-7.60311,3.89933,-9.88065,-7.93004,3.30171,-9.69899,-7.54689,3.65565,-9.97778,-8.39241,2.64357,-10.4315,-7.63024,0.351981,-10.9641,-8.46228,0.68833,-10.2006,-8.57269,0.856572,-9.64256,-7.75953,0.307969,-11.2154,-7.5023,0.488695,-11.7833,-8.37111,1.00809,-11.3413,-9.2392,0.799836,-10.7455,-9.38572,0.996972,-11.9936,-9.14817,1.11665,-11.8008,-7.3627,0.595518,-12.1751,-8.04156,1.11474,-12.2325,-7.14505,0.616505,-11.4409,-6.77259,0.324095,-11.6938,-6.36727,0.318176,-10.7978,-6.67156,0.214177,-12.6953,-6.88067,0.610286,-13.1615,-6.67479,0.655612,-13.5543,-7.55531,1.10611,-13.7009,-8.315,1.24892,-9.84979,-6.76913,0.121291,-10.8568,-5.68874,0.305225,-9.56719,-5.71117,0.287913,-13.8107,-6.18597,0.641279,-13.5127,-6.47026,0.68038,-13.2755,-5.8851,0.443235,-13.4486,-5.42596,0.396751,-12.8497,-5.81338,0.391684,-12.6967,-4.70919,0.404602,-12.2341,-5.97876,0.341697,-11.7925,-5.12542,0.358697,-14.1986,-5.83313,0.5898,-13.9074,-4.95177,0.383248,-14.3746,-6.67044,0.878385,-14.0174,-7.05325,1.11112,-14.4965,-4.67467,0.427544,-14.6548,-5.52138,0.616489,-14.8576,-6.42605,0.98831,-16.0301,-4.45232,0.717003,-15.4643,-4.84115,0.681489,-15.2143,-4.14281,0.510156,-15.8243,-3.56551,0.61175,-16.6195,-4.22984,0.926612,-16.5245,-3.20545,0.923727,-15.0709,-2.70624,0.640694,-16.1159,-2.037,0.899042,-14.3983,-3.69524,0.501725,-15.9782,-5.27124,0.760582,-15.4439,-5.66552,0.951721,-15.8436,-5.89507,0.746656,-15.4052,-6.13213,1.04041,-16.5321,-5.12027,0.866464,-16.3833,-5.83257,0.766073,-12.3803,-8.39352,1.83555,-12.0522,-8.52999,2.77391,-11.8489,-7.92527,3.2744,-12.263,-8.64004,1.85456,-13.5187,-8.79255,2.73301,-14.0073,-8.582,2.3765,-12.8878,-8.91077,2.52646,-15.2077,-6.8438,2.29285,-15.3617,-6.2697,2.20026,-15.6558,-6.08381,2.20413,-15.2581,-6.28192,1.53531,-15.3446,-6.15657,1.53588,-15.1718,-6.75766,1.55929,-11.1826,-7.90263,3.4195,-11.3144,-8.55885,3.115,-11.452,-9.33739,2.94676,-12.1178,-9.23273,2.66077,-12.3338,-9.17106,1.86236,-10.4842,-7.84807,3.32508,-10.5458,-8.55566,2.75367,-10.8069,-9.41718,2.51458,-9.82449,-8.58666,1.692,-10.2389,-8.8234,1.74347,-10.5412,-9.47752,1.6852,-9.55199,-8.81038,1.59527,-16.2793,-2.48309,2.70025,-16.6053,-3.59524,2.48521,-16.8057,-3.21322,1.64739,-16.5213,-2.02947,1.73834,-16.7451,-4.58124,2.22019,-16.9011,-4.27149,1.51534,-15.7803,-1.13369,2.93075,-16.0271,-0.548539,1.78969,-15.3071,-0.405857,0.821865,-16.8371,-5.18709,1.33114,-16.7274,-5.9544,1.12684,-16.7345,-5.43633,1.91975,-16.6782,-6.20089,1.63883,-16.3163,-5.05468,2.72045,-16.3014,-5.78286,2.31207,-16.2479,-6.44958,2.00503,-15.6607,-6.54621,1.97734,-9.98084,-13.0951,1.31378,-10.0626,-13.0988,0.862968,-10.3408,-12.476,0.935563,-10.0641,-12.5396,1.58917,-9.37816,-13.3406,1.36074,-9.39028,-13.4325,0.838863,-8.22992,-13.0074,0.567701,-8.63823,-13.3232,0.619002,-8.60901,-13.4408,0.978956,-8.0154,-13.0896,1.16763,-8.72744,-13.3785,1.37265,-8.39583,-12.9822,1.68714,-9.27522,-13.2159,0.468067,-9.23252,-12.7747,1.83892,-11.6623,-12.4926,1.14217,-12.1294,-12.4851,1.12154,-12.0109,-12.0867,1.53701,-11.4547,-12.154,1.4154,-11.5847,-12.4165,0.816318,-12.1287,-12.4542,0.717987,-11.2341,-12.0431,0.991643,-12.5377,-12.2977,1.06315,-12.529,-11.9079,1.32608,-12.5962,-12.2155,0.751926,-12.7161,-11.729,0.936689,-14.419,-7.98846,2.236,-14.0706,-7.54936,1.76688,-14.1131,-7.87586,1.79733,-13.9746,-7.54765,1.72566,-14.1353,-7.59504,1.29964,-13.77,-7.15351,1.13275,-15.315,-6.41637,1.54281,-15.1564,-5.88242,0.995666,-12.4468,-12.0208,0.546338,-12.0485,-12.1223,0.497124,-11.6341,-12.1731,0.568059,-12.4654,-11.5984,0.584704,-15.4631,-7.97303,0.541696,-15.6678,-8.30476,0.773695,-15.3899,-8.21917,0.930967,-15.2166,-7.9208,0.763695,-15.9074,-8.12649,0.598694,-15.7851,-7.82588,0.421426,-16.0983,-7.49668,0.466719,-16.1622,-7.88623,0.751896,-15.4037,-7.53965,0.478991,-15.6619,-7.50864,0.376667,-15.8176,-7.1934,0.409092,-15.4482,-7.14187,0.545989,-11.6191,-10.2267,2.71774,-12.2667,-10.0135,2.50183,-12.4557,-9.82438,1.7846,-15.6175,-7.09991,1.8004,-16.1853,-7.11558,1.72917,-16.5739,-6.88594,1.34608,-11.8842,-11.5681,1.85991,-11.3164,-11.6273,1.65113,-11.774,-11.0095,2.29873,-11.1661,-11.0575,1.96129,-12.422,-11.3589,1.65488,-12.366,-10.759,2.10948,-15.1521,-7.66374,1.04706,-15.4524,-8.02287,1.21874,-15.545,-7.59968,1.50912,-15.1883,-7.27845,1.3129,-15.2482,-6.8441,1.49593,-16.0635,-7.6703,1.39407,-15.9171,-8.12621,1.10501,-14.9104,-7.89926,2.36017,-14.4372,-8.55788,2.04487,-14.9642,-8.58211,2.13224,-16.3845,-7.43591,1.01549,-9.1617,-10.0914,0.382415,-9.60344,-9.35179,1.4136,-8.15496,-10.4134,0.147837,-9.45692,-10.9754,0.171798,-8.38038,-11.3193,-0.00445139,-12.3351,1.38193,7.36046,-11.5978,0.726253,7.97448,-12.2056,-1.99739,6.05921,-12.8835,-1.42685,5.74467,-4.78509,7.22151,5.64053,-12.9124,6.49525,7.40661,-13.2183,7.52222,8.80095,-12.5923,5.72384,8.44634,-13.7613,-1.57093,0.616834,-8.22522,-5.2536,0.435797,-7.21107,-5.41024,0.469698,-6.72835,-4.41959,0.80284,-9.31364,-3.95946,0.510307,-6.74905,-6.52022,0.398417,-8.25896,-6.3677,0.254659,-14.3745,-2.85294,4.25713,-13.6755,-3.5802,4.55098,-15.1554,-1.9676,3.82192,-15.7097,-3.25729,3.41551,-10.0965,-4.87306,4.88618,-10.5677,-6.29333,4.18441,-8.83622,-5.01178,4.92915,-8.24182,-2.084,5.92373,-9.23027,-6.64243,4.25818,-7.47181,-5.0572,4.6303,-7.60824,-6.70138,4.26052,-6.35688,-5.0267,3.73734,-13.3659,8.66054,4.73078,-6.92064,10.4124,0.659089,-13.1915,9.55041,8.80589,-12.9558,9.02058,10.5347,-12.8078,6.94079,10.7431,-9.72073,5.93968,0.660001,-7.11544,9.2007,0.707839,-13.8152,-9.27689,1.02802,-13.7756,-8.83208,1.23278,-14.0252,-8.41295,1.75582,-12.8628,-10.5847,0.92126,-14.4452,-9.06195,1.66265,-16.1263,-4.22421,3.09189,-14.9581,-9.13368,1.71585,-14.9573,-9.57961,1.31416,-10.1411,-7.27756,3.70858,-10.9567,-7.21201,3.75294,-9.04957,-7.07198,0.14533,-7.1041,-10.4168,1.5384,-8.69717,-12.1406,0.0514882,-7.83271,-12.4148,0.5263,-7.53139,-11.6765,0.518109,-9.02381,-12.7849,0.2309,-7.61716,-12.5239,1.28236,-7.36656,-11.8782,1.34214,-8.12021,-12.3907,1.88125,-7.95426,-11.8292,1.97614,-13.4942,-4.14873,0.43388,-14.9328,-4.64434,0.494336,-15.0563,-5.21071,0.663558,-14.8617,-7.27222,1.15819,-14.4453,-7.3451,1.0589,-13.9387,-7.86845,1.73869,-9.88725,-12.5552,0.372437,-9.73257,-11.8424,0.205342,-9.85827,-13.0035,0.506823,-12.3942,6.57656,14.2205,-11.8513,11.1486,10.4793,-12.2523,11.6937,8.17702,-15.2463,-7.6555,2.08114,-15.1896,-7.42224,1.56532,-11.4359,-11.8025,0.579842,-11.9469,-11.6264,0.439832,-15.2017,-7.58661,0.646203,-15.1734,-7.30967,0.786096,-12.9804,-9.57835,2.33688,-13.0599,-10.2614,1.8539,-16.5749,-6.56974,0.911674,-11.0484,-11.5043,1.16137,-12.6419,-11.128,1.2059,-12.3976,-10.9852,0.736324,-11.8412,-11.0219,0.510221,-11.2735,-11.2388,0.667554,-10.9008,-10.9177,1.34388,-12.5609,-10.4872,1.53744,-12.2948,-10.3624,0.945471,-11.7254,-10.429,0.651935,-11.1437,-10.6556,0.795086,-10.9897,-10.2981,2.27843,-10.7421,-10.241,1.53165,-10.9966,-10.0699,0.92823,-11.572,-9.88138,0.780503,-12.156,-9.78116,1.09487,-15.5477,-6.73772,0.66513,-16.012,-6.78183,0.538862,-15.2107,-6.92993,0.962384,-16.3628,-7.06382,0.661444,-15.2978,-6.53828,1.057,-15.6884,-6.34656,0.742402,-16.204,-6.35594,0.678132,-7.34454,-10.8441,0.581733,-7.20611,-11.1745,1.41091,-7.82647,-11.2441,2.11547,-8.98333,-0.928546,0.705745,-5.88153,-4.87503,2.36791,-12.4785,6.63972,12.4982,-12.7489,8.39717,12.3973,-12.6833,8.17931,14.1948,-12.8229,10.4749,8.51045,-10.5575,12.1559,14.2617,-9.16459,12.8118,14.2105,-74.7802,5.10786,137.934,-75.1274,4.07733,137.694,-74.2291,3.40318,138.031,-73.3947,4.46104,138.419,-73.7777,5.9565,138.682,-74.9357,6.25982,138.271,-75.3502,7.21455,138.959,-76.3313,7.39424,138.592,-75.9698,6.49203,137.872,-75.9967,7.59216,139.869,-76.8742,7.7577,139.456,-74.7558,7.43506,140.29,-74.2128,6.94316,139.311,-75.8729,5.43029,137.539,-75.4342,7.25422,141.37,-76.0453,6.19868,142.059,-75.8089,2.98007,142.32,-76.171,4.66018,142.406,-77.6602,2.63623,141.619,-78.0813,4.54458,141.703,-77.9854,6.15259,141.253,-74.9066,1.67455,141.712,-76.5654,1.09303,141.036,-77.1129,7.29503,140.62,-77.4314,7.65932,139.984,-78.2729,7.71032,139.757,-77.731,7.8836,139.108,-75.992,4.49459,137.411,-73.6233,1.24647,140.496,-75.2023,0.574557,140.137,-78.7307,7.26195,140.17,-79.2944,6.68687,140.403,-74.9666,2.50069,137.541,-75.7459,3.1955,137.329,-72.8443,1.93145,139.385,-72.8474,2.98462,138.758,-89.4115,9.09467,136.404,-89.0348,9.17506,136.36,-89.071,9.05779,136.695,-89.3387,9.04951,136.664,-89.6137,8.86878,136.455,-89.4304,8.8494,136.761,-91.6626,4.14239,136.198,-92.3678,4.28244,136.111,-92.2455,4.37468,136.379,-91.7273,4.32933,136.504,-92.4501,4.60473,136.458,-92.7836,4.55899,136.081,-86.6931,-2.12703,137.514,-86.1671,-1.94298,137.726,-86.2183,-2.36799,137.214,-86.6431,-2.36222,137.318,-85.4335,-1.63925,138.044,-85.2937,-2.01518,137.564,-86.8391,-1.79129,137.644,-86.3455,-1.48465,137.887,-85.608,-1.08591,138.195,-86.9935,-1.53763,137.598,-86.6965,-1.12201,137.536,-87.2672,-1.67467,137.429,-87.231,-1.96931,137.378,-87.0902,-2.28065,137.273,-85.7526,-0.586171,137.859,-84.8629,-0.139255,138.211,-84.7576,-0.667686,138.595,-84.6044,-1.27835,138.458,-85.7758,-0.320054,137.241,-86.7005,-0.724606,136.972,-84.9366,0.0387147,137.486,-84.2936,0.413519,137.708,-83.9359,0.371215,138.618,-84.8429,-0.0775698,136.789,-85.6456,-0.377285,136.588,-84.2114,0.370811,136.934,-87.6874,-2.10052,137.051,-87.5182,-2.48187,136.953,-87.5864,-1.55388,137.089,-88.1473,-2.76492,136.61,-88.3369,-2.34549,136.698,-88.4722,-1.89159,136.577,-88.8085,-3.02025,136.309,-88.9792,-2.62365,136.372,-89.3074,-2.27469,136.144,-86.8718,-2.76753,136.204,-87.7348,-3.1112,135.813,-87.9293,-3.06853,136.313,-87.0826,-2.69056,136.784,-88.8261,-3.38962,135.964,-88.6025,-3.41202,135.479,-89.4005,-3.66355,135.235,-89.5733,-3.58061,135.653,-90.1505,-3.74369,135.472,-90.0943,-3.88337,135.11,-89.4913,-3.45688,135.889,-89.2535,-3.40426,136.008,-90.3184,-3.4574,135.677,-89.9153,-3.33522,135.769,-89.6478,-3.26392,135.946,-90.7156,-3.97681,135.088,-90.6008,-3.85084,135.408,-90.6707,-3.90427,134.736,-90.1194,-3.7549,134.714,-89.3593,-3.47269,134.821,-90.838,-3.64253,135.537,-91.0128,-3.27037,135.533,-90.4789,-3.08673,135.686,-90.0596,-2.97729,135.804,-91.0065,-2.96975,135.4,-90.5876,-2.75071,135.512,-90.005,-2.54192,135.773,-90.2586,-3.39676,134.495,-90.9317,-3.67972,134.614,-89.4515,-3.05538,134.589,-90.4405,-2.97187,134.5,-89.6413,-2.58804,134.627,-91.1053,-3.29545,134.611,-88.5254,-3.15503,135.033,-88.6069,-2.68092,134.799,-88.8225,-2.19146,134.898,-89.3092,-3.17672,136.13,-89.4441,-2.83996,136.176,-89.7748,-2.94196,135.991,-89.5783,-2.5985,136.119,-89.8011,-2.67629,135.993,-91.0999,-2.95673,134.74,-90.6069,-2.63601,134.755,-89.8633,-2.2691,134.943,-89.0768,-1.90934,135.271,-89.2626,-1.92183,135.746,-90.0127,-2.23455,135.395,-88.013,-1.77942,135.227,-88.2894,-1.50087,135.656,-88.4675,-1.54466,136.177,-90.6841,-2.56048,135.171,-91.1859,-2.9565,135.083,-87.76,-2.30257,135.086,-86.9017,-1.96359,135.45,-87.1704,-1.41023,135.596,-87.4536,-1.0897,136.044,-86.2709,-1.09694,135.927,-86.0045,-1.67791,135.826,-86.5535,-0.718296,136.363,-85.0748,-1.41923,136.16,-85.9055,-2.20588,136.082,-85.0067,-1.92372,136.474,-85.343,-0.810318,136.171,-86.7911,-2.50405,135.692,-87.6132,-1.13874,136.614,-85.1326,-2.11161,136.992,-84.2645,-1.80803,137.401,-84.1276,-1.63565,136.869,-83.195,-1.32533,137.217,-83.3155,-1.49086,137.823,-84.4394,-1.6786,137.976,-83.5085,-1.32753,138.433,-83.8811,4.12926,136.497,-83.7149,5.00424,136.444,-84.7197,4.99909,136.626,-84.8768,4.20784,136.708,-85.0212,3.62612,137.197,-84.2381,3.23812,136.785,-85.5355,5.00222,136.503,-85.6008,4.2716,136.668,-85.6557,3.8115,137.148,-86.3788,3.84582,136.963,-86.3409,4.283,136.452,-86.3529,5.00921,136.242,-86.4105,3.80277,137.571,-85.6277,3.78493,137.792,-87.3142,3.85136,137.32,-87.2482,3.88818,136.75,-87.2227,4.31429,136.257,-85.0207,3.72748,137.936,-84.7828,3.44516,138.002,-84.8987,3.33347,137.393,-85.1004,3.10241,137.981,-85.0768,2.95809,137.168,-85.8046,2.82805,137.789,-85.7947,2.68673,137.051,-85.6446,2.13473,136.601,-84.9129,2.27181,136.71,-83.8998,2.44344,136.665,-86.6904,2.57899,137.472,-86.5933,2.51679,136.759,-86.3869,2.01194,136.302,-87.7225,2.33089,137.079,-87.5569,2.30309,136.401,-87.7575,2.01699,137.771,-86.6219,2.3356,138.164,-85.648,2.63869,138.54,-87.3124,1.81753,135.976,-88.8248,2.05705,136.631,-88.6181,2.03771,136.02,-88.346,1.58417,135.616,-86.4209,1.93295,138.643,-85.4696,2.19329,139.04,-87.3216,1.68403,138.278,-88.173,0.924276,135.682,-87.1492,1.15135,136.055,-89.4202,1.36465,135.26,-89.7042,1.79236,135.662,-89.2413,0.71088,135.295,-87.4098,4.11829,137.85,-86.4221,4.10002,138.091,-87.2006,4.55855,138.129,-86.4133,4.59074,138.337,-85.5587,4.111,138.373,-85.5556,4.64246,138.636,-87.2665,5.01572,138.05,-86.4678,5.09996,138.234,-87.794,4.55967,138.024,-87.818,4.28688,137.947,-87.8528,4.94265,137.969,-85.5628,5.18998,138.513,-88.1425,4.28865,137.835,-88.2763,4.55436,137.861,-88.3369,4.93726,137.822,-88.4068,4.13417,137.532,-88.7919,4.54527,137.612,-88.8562,4.98942,137.565,-88.2788,5.21478,137.721,-88.576,5.40465,137.351,-89.5387,5.021,137.31,-89.5156,5.43172,137.015,-89.4794,4.56586,137.36,-88.1881,3.93974,136.527,-89.1029,3.99364,136.295,-89.2215,3.90433,136.789,-88.277,3.886,137.053,-89.9395,4.07764,136.095,-90.086,3.96238,136.555,-89.361,4.15315,137.186,-90.266,4.2214,136.969,-88.1572,4.3594,136.074,-89.0518,4.40816,135.875,-87.2692,5.00515,136.04,-88.2063,5.00254,135.858,-89.1002,5.00817,135.669,-89.934,5.0192,135.569,-89.8768,4.48079,135.738,-89.255,5.53504,135.937,-90.0995,5.49548,135.806,-88.348,5.56638,136.137,-87.4058,5.59886,136.349,-86.4622,5.63848,136.566,-90.7437,4.14664,135.929,-90.8804,4.03963,136.358,-90.6898,4.53039,135.617,-91.0368,4.27305,136.75,-91.6022,4.20463,135.807,-87.9836,1.47863,138.008,-88.1606,1.72712,137.867,-88.5442,1.35179,137.714,-88.5359,1.63858,137.675,-88.9088,1.74462,137.226,-89.1787,1.26011,137.319,-90.0401,1.10407,136.91,-90.0443,1.52415,136.677,-89.9317,1.80846,136.216,-90.8693,0.924619,136.633,-91.1097,1.27395,136.389,-90.9457,1.56442,135.943,-90.7277,1.5352,135.44,-91.8642,1.04679,136.177,-91.7823,1.32425,135.781,-91.6326,1.29982,135.315,-91.4305,0.952093,134.963,-90.4706,1.14959,135.069,-91.2781,0.41256,134.903,-90.3006,0.558061,135.05,-91.2548,-0.0739277,135.157,-90.3068,0.0649979,135.371,-89.2544,0.213538,135.703,-88.1626,0.445259,136.13,-89.4202,0.0627749,136.249,-90.4799,-0.110785,135.865,-88.2791,0.319615,136.722,-92.4096,0.87382,136.02,-92.469,1.08307,135.697,-92.8283,0.721852,135.974,-93.0171,0.791285,135.696,-92.4281,1.05495,135.276,-92.9652,0.814618,135.346,-92.8816,0.425904,136.085,-93.2686,0.40546,135.711,-93.0523,0.502166,135.201,-92.8141,0.0204808,136.075,-93.2165,-0.0344961,135.679,-92.9709,0.0835787,135.151,-92.3585,0.526351,136.172,-91.9915,0.617019,136.237,-91.9078,0.236364,136.201,-92.2736,0.133816,136.147,-91.4221,0.762484,136.505,-91.5001,1.00417,136.448,-91.7351,0.931381,136.377,-91.7624,0.664086,136.393,-91.3363,0.403873,136.47,-91.6853,0.31967,136.354,-90.7547,0.495323,136.611,-91.5376,0.0908047,136.284,-91.291,0.143872,136.362,-91.5905,-0.0843031,136.065,-90.7896,0.0665217,136.318,-91.3693,-0.258601,135.624,-89.9019,0.652735,136.919,-89.6656,0.265472,136.703,-88.3978,1.00886,137.705,-88.1949,0.790671,137.676,-88.4858,0.553698,137.269,-89.0248,0.848202,137.324,-87.837,1.12761,138.007,-87.8157,0.865092,137.876,-87.2986,0.788209,137.836,-87.1434,1.24122,138.297,-86.2221,1.42656,138.679,-86.122,0.993268,138.253,-86.0904,0.769396,137.56,-87.1495,0.581334,137.184,-86.1391,0.881232,136.843,-87.1044,0.696308,136.536,-85.1899,0.949209,137.813,-85.1454,1.16821,138.572,-85.3283,1.02326,137.051,-85.2741,1.61673,139.055,-84.4009,1.77608,139.396,-84.2273,1.25183,138.766,-84.5657,2.46239,139.456,-86.2294,1.3357,136.346,-92.1998,0.25118,134.912,-92.7527,-0.220774,135.217,-92.1273,-0.177979,135.119,-92.8174,-0.34464,135.589,-92.1386,-0.354475,135.54,-92.6469,-0.255669,135.921,-92.1713,-0.198694,135.93,-90.1436,4.60251,137.179,-90.1952,5.01121,137.14,-90.6311,4.41015,137.032,-90.6205,4.64625,137.091,-90.6662,4.98009,137.074,-90.7405,5.22293,136.972,-90.413,5.39862,136.842,-90.9936,5.22515,136.91,-91.2056,5.38687,136.652,-91.0338,4.98542,136.974,-90.2801,5.63663,136.312,-89.4162,5.66448,136.491,-91.1025,5.61351,136.165,-90.9283,5.47392,135.696,-88.4896,5.68136,136.731,-91.9218,5.3324,136.439,-91.9066,5.51166,136.064,-91.8058,5.41069,135.644,-92.4333,5.22541,136.346,-92.5744,5.29507,136.053,-91.9331,5.00442,136.639,-92.5391,4.95813,136.467,-91.3965,5.01511,136.787,-91.6901,5.01099,135.435,-90.759,5.02835,135.483,-92.458,5.27885,135.721,-92.5585,4.97034,135.622,-91.8574,4.63982,136.648,-91.3335,4.64611,136.812,-90.9818,4.65844,136.989,-90.8759,4.42098,136.964,-83.4306,1.06198,138.973,-83.1817,0.739964,139.197,-83.8042,0.90343,138.52,-83.4317,1.42111,139.323,-82.5878,1.28546,139.701,-84.1128,0.836236,137.833,-84.4949,1.03888,137.898,-92.4818,4.56992,135.65,-91.6117,4.55037,135.525,-92.8741,4.95298,136.072,-92.2746,4.29122,135.798,-91.1598,-3.79265,135.096,-91.3414,-3.39746,135.085,-88.2284,8.62939,137.105,-88.5692,8.65913,137.056,-88.5393,8.84122,136.972,-88.2243,8.92811,136.864,-88.7721,8.69293,136.992,-88.6863,8.86109,136.933,-88.7177,8.99864,136.769,-88.6223,8.40198,137.09,-88.8218,8.44866,137.021,-88.6681,8.2142,137.046,-88.8095,8.25359,137.003,-88.3068,8.30156,137.156,-88.4314,8.01104,136.979,-89.2343,8.11524,136.511,-89.1983,8.14071,136.172,-89.5082,8.30226,136.249,-89.5416,8.31953,136.521,-89.5423,8.52178,136.132,-89.6597,8.59029,136.499,-89.4673,8.58161,136.788,-89.441,8.37132,136.739,-89.4816,8.81199,136.082,-89.3665,9.03133,136.123,-89.0125,9.0587,136.009,-89.0508,8.73544,135.845,-89.1274,8.37831,135.916,-88.4704,9.01331,135.972,-88.4759,8.62712,135.776,-88.5631,9.14843,136.371,-84.4839,-0.562304,136.432,-83.6836,-0.189398,136.627,-84.1857,-1.16457,136.502,-83.2963,-0.845175,136.759,-84.2016,0.778888,137.219,-87.8615,8.47681,135.845,-87.86,8.89376,136.034,-87.9936,9.06272,136.444,-75.5706,1.84922,136.92,-75.3668,0.746942,136.998,-74.5978,1.59026,137.808,-75.9287,2.47039,136.927,-86.0086,-2.43025,136.601,-86.9143,-2.45825,137.17,-78.0387,0.954389,140.844,-78.5998,1.80931,141.054,-79.1781,2.2897,141.026,-79.1088,2.91785,141.243,-79.3425,3.88084,141.258,-79.4497,1.39963,140.691,-79.8574,2.10281,140.761,-80.1146,2.83146,140.913,-80.3278,1.04452,140.378,-80.704,1.82387,140.46,-81.045,2.64848,140.613,-79.001,0.658606,140.528,-79.9491,0.340219,140.216,-77.8574,0.357468,140.468,-78.4847,0.0266751,140.132,-79.3987,-0.471653,139.652,-79.479,4.96643,141.082,-79.4671,5.76553,140.791,-79.7764,4.41035,141.066,-80.5404,4.34701,140.764,-80.5382,5.01221,140.635,-80.3485,3.64931,140.892,-80.5329,5.69799,140.367,-80.0338,7.89424,138.222,-78.8898,7.93713,138.631,-79.3959,7.78605,139.297,-80.4926,7.79689,138.866,-78.4911,7.56743,137.868,-77.2982,7.51837,138.243,-79.6762,7.53524,137.547,-81.6599,7.80266,137.264,-80.7276,7.62756,137.351,-81.0721,7.91569,137.977,-82.0306,7.97088,137.837,-81.5223,7.82279,138.55,-82.4486,7.85143,138.337,-79.9004,7.36643,139.672,-80.9575,7.43626,139.274,-81.9642,7.50527,138.968,-82.8062,7.55049,138.761,-80.3679,6.89258,139.887,-81.3433,6.9693,139.551,-82.2628,7.01136,139.286,-83.0435,7.04148,139.058,-80.5728,6.32871,140.094,-81.4923,6.35545,139.768,-81.5003,5.68158,140.028,-82.37,6.34996,139.496,-83.2061,6.30791,139.191,-82.356,5.63409,139.788,-83.1028,5.55251,139.602,-79.7845,6.28046,140.426,-83.2912,7.87998,138.152,-82.9537,8.00848,137.69,-82.628,7.91588,137.176,-82.5295,7.45008,136.692,-81.5823,7.1982,136.677,-83.5617,7.58492,136.659,-83.5972,8.01511,137.019,-84.3657,8.11524,136.847,-84.4183,7.67079,136.541,-83.8089,8.10898,137.51,-84.4711,8.22839,137.345,-80.6635,6.88029,136.761,-84.0474,7.96215,137.967,-84.629,8.0611,137.81,-85.0806,8.38297,137.183,-85.0447,8.24936,136.677,-85.1478,7.79014,136.407,-85.1737,8.20188,137.67,-85.8602,8.38154,137.548,-85.7609,8.55995,137.006,-85.2602,7.87403,138.013,-85.7527,8.00859,137.904,-84.7787,7.75139,138.154,-84.2488,7.66502,138.331,-84.3764,7.20941,138.473,-84.9043,7.3272,138.257,-78.218,6.76252,137.208,-76.9875,6.65938,137.517,-79.5054,6.76435,136.952,-79.5663,5.70559,136.648,-78.1735,5.70348,136.88,-76.9171,5.60962,137.183,-78.2292,4.71547,136.83,-76.9873,4.66912,137.103,-76.6321,2.40837,136.578,-77.763,2.24847,136.341,-77.293,1.37063,136.031,-76.3128,1.61031,136.364,-79.1356,1.91988,136.409,-78.041,3.05673,136.694,-79.4378,2.84295,136.663,-79.6084,4.66955,136.614,-82.5067,4.2987,136.429,-82.4859,5.16554,136.385,-81.9598,6.33829,136.393,-81.1075,5.71014,136.446,-78.5365,0.991497,136.013,-80.836,1.50855,136.652,-79.8769,0.58339,136.352,-77.7337,-0.0620251,135.754,-76.6695,0.52155,136.046,-76.0618,0.935393,136.371,-74.7239,0.430292,139.162,-75.4623,-0.409027,138.749,-76.1376,-0.200884,139.614,-75.723,-0.944614,137.448,-76.1213,-1.08933,138.404,-75.1345,-0.15346,137.816,-76.8297,-0.840001,139.164,-76.3333,-1.54609,137.054,-76.7332,-1.64916,137.979,-77.4536,-1.41692,138.682,-76.8846,-1.99889,136.657,-77.3138,-2.38703,136.251,-77.5686,-2.53463,136.983,-77.2314,-2.12034,137.49,-78.1995,-2.43383,137.567,-77.928,-1.95692,138.136,-77.6693,-2.79226,135.854,-77.8276,-2.96474,136.502,-78.4114,-2.86253,137.053,-78.0913,-3.2441,135.487,-78.2356,-3.47169,136.067,-78.7244,-3.34732,136.587,-78.6597,-3.97466,135.611,-78.5118,-3.67485,135.062,-79.0981,-3.882,136.115,-78.2655,-2.83855,135.047,-78.6876,-3.2227,134.686,-79.1531,-3.53439,134.232,-78.9412,-4.04473,134.532,-78.6892,-2.39125,134.903,-79.0897,-2.80684,134.609,-79.56,-3.15062,134.257,-79.0843,-4.48945,135.09,-78.3597,-1.9467,135.177,-77.8755,-2.41419,135.352,-79.1927,-2.08662,135.19,-78.9472,-1.62812,135.477,-77.5195,-1.97903,135.645,-78.1128,-1.48376,135.43,-78.8588,-1.19045,135.724,-79.5449,-2.54996,134.878,-79.6645,-3.81171,133.733,-79.4197,-4.34795,133.965,-79.5425,-4.8253,134.469,-79.5712,-4.88045,134.899,-79.4176,-4.77457,135.124,-80.0796,-4.96781,134.738,-79.9752,-5.00288,133.991,-80.3398,-5.08238,134.423,-79.931,-4.63469,133.535,-79.898,-4.87372,135.083,-79.0436,-2.52774,137.356,-78.9452,-2.1395,137.862,-79.5299,-1.74027,137.722,-79.7635,-1.42759,138.065,-78.9188,-1.59267,138.548,-79.463,-2.06117,137.327,-78.3446,-1.00716,139.198,-79.545,-1.09046,138.96,-81.4787,-0.699175,139.13,-80.5684,-0.54584,139.404,-80.2135,-1.0643,138.469,-80.9839,-0.998703,138.033,-77.1389,-1.48207,135.897,-77.9395,-0.920142,135.61,-76.623,-0.895907,136.143,-78.9668,-0.702798,135.915,-79.5183,-1.17438,136.534,-79.9487,-0.790307,136.856,-79.4229,-1.56128,136.197,-79.2181,-0.11842,136.042,-80.0545,-0.316635,136.575,-81.2898,3.49407,140.568,-81.4389,4.25908,140.428,-82.282,4.10246,140.138,-82.1628,3.30254,140.319,-82.9766,3.07367,140.125,-83.1478,3.89353,139.813,-81.9307,2.41493,140.353,-82.7724,2.20309,140.111,-83.0938,4.78414,139.822,-82.34,4.88687,140.039,-81.4968,4.98435,140.291,-83.8169,4.11485,139.39,-83.8344,4.75284,139.514,-83.807,5.41728,139.316,-84.6762,4.70101,139.03,-84.6269,5.29401,138.879,-84.6482,4.07215,138.727,-83.794,6.6079,138.742,-83.75,5.93241,138.911,-83.8251,6.2767,138.637,-84.1073,6.27705,138.243,-84.3787,6.70278,138.252,-84.4566,5.79351,138.38,-84.9741,6.94601,138.008,-84.5107,6.56091,137.637,-84.9917,6.78418,137.521,-85.554,5.60246,138.074,-83.905,3.6928,139.235,-84.3544,3.57808,138.72,-83.8069,3.36233,139.517,-84.6673,3.05504,138.917,-81.5931,1.53687,140.135,-83.5593,1.99867,139.803,-83.7226,2.75467,139.862,-82.135,0.478275,139.833,-81.2443,0.756387,140.087,-82.9598,0.130867,139.497,-81.8416,-0.159013,139.758,-82.7367,-0.514808,139.423,-83.8416,-0.249794,139.047,-83.6941,-0.895267,138.93,-82.4583,-0.978212,138.876,-82.2076,-1.16349,138.144,-82.2986,-0.39286,136.882,-82.7242,0.619352,136.695,-80.084,-3.4388,133.84,-79.9935,-2.95895,134.54,-80.5153,-3.30533,134.173,-80.3825,-2.97408,135.011,-79.9233,-2.51235,135.399,-80.8966,-3.40878,134.643,-80.5703,-3.27047,135.514,-81.059,-3.77994,135.105,-80.0912,-2.73262,135.93,-79.9563,-3.12425,136.25,-80.4198,-3.81187,135.838,-80.8687,-4.34713,135.339,-79.5857,-2.02261,135.807,-79.7317,-2.1997,136.42,-79.588,-1.71665,136.936,-80.637,-3.83659,133.487,-81.0431,-3.74252,133.839,-80.2195,-4.16139,133.348,-81.4566,-4.30757,133.598,-81.0969,-4.37947,133.293,-81.3697,-3.88122,134.299,-81.715,-4.38868,134.005,-80.7145,-4.59739,133.17,-81.6573,-4.8767,133.528,-81.3312,-4.92577,133.294,-81.0133,-4.94903,133.181,-81.4657,-4.22892,134.711,-81.7618,-4.62017,134.376,-81.6329,-5.29078,133.708,-81.2711,-5.31894,133.507,-80.8691,-5.21291,133.344,-81.0061,-5.39716,133.888,-80.7314,-5.32488,133.651,-80.3851,-5.1953,133.757,-80.4263,-4.94453,133.334,-81.8773,-4.8587,133.841,-81.847,-5.16726,133.883,-81.8963,-4.89239,134.139,-81.7611,-5.14929,134.201,-81.5316,-4.93991,134.552,-81.4085,-5.37222,134.122,-81.0973,-5.18001,134.467,-80.655,-5.2513,134.176,-81.2365,-4.65721,134.879,-80.8103,-4.9821,134.749,-80.5488,-4.82786,135.055,-80.5623,-4.48792,135.533,-80.3081,-4.72128,135.351,-80.4147,-4.31185,135.716,-80.0991,-4.48793,135.646,-79.6855,-4.69315,135.411,-79.4195,-4.35552,135.708,-79.8952,-4.07197,135.94,-79.5816,-3.52353,136.318,-84.5538,5.79255,137.042,-83.5766,5.95344,136.669,-84.2476,6.19694,137.23,-82.8407,6.71427,136.507,-83.8131,6.98632,136.634,-84.2563,6.51638,137.024,-84.6358,7.13814,136.593,-84.8869,6.81757,136.991,-85.3402,7.29043,136.489,-85.5067,7.01967,136.885,-85.8375,7.94623,136.269,-86.0025,7.47244,136.344,-86.1479,7.21967,136.716,-86.5143,8.12408,136.067,-86.6686,7.65244,136.143,-86.8291,7.4121,136.512,-86.9346,7.41393,136.967,-86.2082,7.21007,137.189,-85.5611,6.99375,137.377,-85.7381,8.4008,136.51,-86.4511,8.58085,136.313,-86.5178,8.76483,136.791,-84.3089,6.27036,137.714,-84.6751,5.94309,137.674,-85.5721,5.79592,137.458,-85.5332,5.65616,136.831,-86.555,5.5027,137.813,-86.5581,5.7343,137.206,-87.5838,5.41053,137.625,-87.5283,5.69328,136.977,-84.7137,1.56688,136.661,-83.695,1.68414,136.667,-84.5288,1.01691,137.092,-83.7073,0.900308,136.794,-85.3925,7.47822,138.091,-85.5215,7.15074,137.83,-86.1812,7.40809,137.666,-85.8731,7.65556,137.957,-86.9816,7.63426,137.411,-86.6829,7.71792,137.671,-86.4085,7.63884,137.766,-86.2901,7.82277,137.864,-87.7689,7.80693,137.134,-87.6589,7.60933,136.763,-87.8011,8.16535,137.316,-87.2041,8.03484,137.528,-86.7113,7.94352,137.718,-87.51,7.62054,136.347,-88.2942,7.79705,136.62,-88.1386,7.81582,136.236,-87.6957,8.54354,137.257,-87.093,8.39334,137.479,-86.6167,8.22987,137.682,-86.6794,8.61967,137.301,-86.4612,8.40376,137.599,-87.4957,8.82708,137.006,-86.1927,8.10673,137.824,-87.3429,7.85808,136.007,-87.977,8.05776,135.932,-87.2065,8.30522,135.925,-88.5744,8.21982,135.867,-88.7051,7.97617,136.167,-88.8142,7.95688,136.537,-87.1802,8.74799,136.146,-87.2955,8.94112,136.582,-88.8888,8.15308,136.864,-89.2127,8.26225,136.78,-89.1945,8.51928,136.898,-88.9767,8.46792,136.953,-88.9226,8.7542,136.929,-89.1465,8.80733,136.874,-86.1816,8.32043,137.689,-85.4795,1.4713,136.582,-87.6606,-2.82656,135.328,-87.9534,5.21414,137.812,-92.3212,0.727353,134.967,-77.078,0.152335,140.256,-77.6921,-0.436152,139.717,-83.5653,7.59651,138.55,-83.7401,7.12379,138.769,-79.2523,-2.96556,136.827,-79.6163,-2.53911,136.775,-79.7513,-1.36804,137.322,-80.1204,-1.13336,137.59,-80.9366,0.104346,139.974,-76.7994,3.1538,136.913,-82.127,-0.991897,137.44,-80.9861,-0.070552,136.823,-80.975,-0.809518,137.378,-75.963,-0.220206,136.528,-74.4995,0.774173,138.342,-82.5708,5.76337,136.406,-80.9367,2.63711,136.659,-81.0547,4.54601,136.475,-81.638,0.715856,136.711,-82.4688,2.55817,136.639,-82.5462,3.4036,136.537,-81.0281,3.58217,136.557,-79.578,3.7441,136.669,-78.211,3.86285,136.832,-76.9797,3.88515,137.07,-82.4342,1.69322,136.7,-76.1716,3.85978,137.314,-73.7756,2.42724,138.384,-73.9277,1.06024,139.505,-73.717,1.55569,138.899,-2.92086,-11.6996,167.707,-2.56657,-12.0741,168.13,-2.48654,-12.111,167.646,-2.78646,-11.7497,167.293,-7.66403,-3.5223,173.467,-7.7027,-3.43933,174.225,-7.57778,-3.92545,174.438,-7.54261,-4.10449,173.397,-8.2921,-2.2431,174.321,-8.73818,-1.80791,174.891,-8.73033,-2.04782,175.294,-8.24619,-2.70029,174.428,-8.30888,-2.29476,175.384,-7.99827,-3.09188,174.401,-8.144,-0.909413,171.762,-7.93264,-1.30381,171.236,-8.05674,-0.909003,171.061,-8.37605,-0.443412,171.715,-8.50978,-0.659065,172.684,-8.83736,-0.121331,172.733,-8.74693,-0.589029,173.779,-9.10654,-0.0439439,173.948,-8.76493,0.332743,172.855,-9.11537,0.397271,174.198,-9.08506,-1.10577,175.096,-9.12043,-1.05122,175.583,-8.64398,-1.08408,175.715,-8.32243,0.37145,172.927,-8.67268,0.406691,174.233,-8.27466,-0.0602069,171.708,-7.85089,0.00205697,171.804,-7.93427,-0.618473,170.863,-7.53307,-0.57551,170.926,-7.4811,-1.36971,170.173,-7.48359,-2.06418,169.684,-7.25676,-2.25102,169.808,-7.21678,-1.40231,170.381,-7.53742,-0.397432,171.887,-7.91228,-0.159092,172.789,-8.18099,-0.15619,173.806,-8.09464,-1.35751,175.135,-7.8324,-2.6656,174.893,-7.28388,-0.817012,171.104,-7.11141,-0.809994,171.219,-7.20572,-0.529866,171.894,-7.09903,-2.13562,169.842,-7.04855,-0.841476,170.547,-7.22664,-2.80614,169.835,-7.4469,-2.72009,169.766,-7.77591,-2.25079,169.705,-7.72773,-1.63176,174.714,-7.62925,-2.84072,174.737,-7.65306,-2.83966,170.229,-7.37491,-3.12005,170.377,-7.98185,-2.36333,170.25,-7.88797,-1.45606,170.152,-8.05233,-1.67551,170.565,-7.97393,-1.78587,170.946,-7.92479,-2.29128,170.928,-7.54854,-3.07586,171.387,-7.67146,-3.26596,171.994,-7.48774,-3.7184,171.718,-7.38799,-3.43133,171.026,-7.55474,-3.96536,172.511,-7.72852,-3.42182,172.707,-7.78581,-2.95718,172.873,-7.82363,-3.06336,173.642,-8.84972,-0.819827,174.521,-9.17655,-0.418109,174.788,-8.88922,-1.13818,174.807,-9.23482,-0.122772,175.181,-8.78386,-0.0973554,175.249,-8.23895,-0.475429,174.672,-7.63826,-0.441865,173.511,-7.73231,-0.776525,174.249,-7.44315,-0.368351,172.701,-7.93858,-2.73706,173.727,-7.65631,-2.52332,172.835,-7.85593,-2.18848,173.236,-8.04811,-2.30063,173.756,-7.74513,-2.94665,172.19,-7.66971,-2.67039,171.682,-7.53516,-2.988,170.926,-7.71443,-2.74518,170.928,-6.76488,-1.06457,169.235,-6.34752,-1.47531,167.716,-6.35275,-0.104825,167.847,-6.6068,0.113109,169.306,-7.76787,-1.32927,175.392,-7.69875,-2.55717,175.593,-7.17846,-0.0244365,171.842,-6.84557,0.442055,170.65,-7.07678,0.851735,171.978,-7.68207,-0.409768,174.79,-7.54406,0.0777096,173.904,-7.3741,0.214635,172.911,-4.81521,4.4465,167.696,-5.54465,3.26854,167.75,-5.58299,3.28156,166.058,-4.85507,4.54359,166.01,-5.9984,2.14143,167.815,-6.24473,1.03893,167.867,-6.08296,0.989748,166.209,-5.95233,2.11076,166.134,-3.72344,5.53117,167.667,-3.70468,5.69393,166.017,-2.46635,6.18719,167.661,-2.4136,6.30463,166.025,-5.87925,-1.2651,165.993,-6.02922,-0.143049,166.199,-1.21701,6.45926,166.061,-1.24638,6.42949,167.686,-7.40428,-5.01471,173.369,-7.37546,-4.71179,172.269,-7.3026,-4.32903,171.331,-7.22293,-3.91049,170.544,-7.14452,-3.45014,169.901,-7.03516,-2.92162,169.444,-6.89739,-2.15131,169.241,-3.46839,-8.76095,183.459,-3.35458,-9.99022,182.257,-4.51416,-9.02455,181.906,-4.66528,-7.86859,182.947,-5.53808,-7.93679,181.466,-5.66557,-7.00287,182.327,-3.29088,-10.8565,181.066,-4.44644,-9.85472,180.824,-5.49433,-8.65114,180.46,-1.02836,-11.9617,181.205,-1.04532,-11.1927,182.514,-1.03696,-10.2574,183.699,-4.46727e-005,-10.4464,183.674,-3.27836,-11.399,180.013,-4.43651,-10.4222,179.818,-5.47957,-9.21714,179.446,-6.34275,-7.85824,178.892,-6.35813,-7.33011,180.032,-1.02072,-12.4202,180.082,-4.49893e-005,-12.5189,180.077,-2.12869,-11.566,181.185,-2.11498,-12.0624,180.084,-2.16805,-10.7335,182.459,-2.19208,-9.58634,183.739,-6.32431,-6.81029,181.077,-6.23919,-6.40155,181.813,-7.14538,-6.13166,173.22,-6.74235,-7.44535,172.866,-6.85459,-6.63947,171.393,-7.15189,-5.6452,171.916,-6.8567,-6.00358,170.245,-7.11361,-5.12129,170.835,-6.81063,-5.36516,169.278,-7.05729,-4.57779,169.955,-6.72904,-4.67321,168.496,-6.97255,-3.97532,169.271,-6.56257,-3.91784,167.912,-6.82705,-3.2953,168.758,-6.27326,-8.43406,177.801,-5.46137,-9.69463,178.515,-6.13641,-9.07723,176.968,-5.42834,-10.1264,177.679,-4.45496,-10.8254,178.928,-4.48231,-11.1491,178.087,-3.30412,-11.7521,179.115,-3.34453,-12.0171,178.271,-2.12595,-12.3805,179.164,-2.14049,-12.6013,178.318,-1.02172,-12.7073,179.153,-1.01752,-12.8847,178.315,-6.59508,-8.17859,175.911,-6.95884,-6.94207,176.623,-7.00645,-6.35617,178.288,-6.9989,-5.88503,179.638,-6.89955,-5.51407,180.869,-7.13067,-6.50253,174.743,-6.77114,-7.67055,174.538,-5.89388,-2.5603,166.714,-6.6076,-2.48723,168.352,-6.26064,-3.1428,167.44,-5.49347,-2.27481,165.454,-5.4097,-10.5247,176.861,-6.01317,-9.63044,176.245,-4.52934,-11.447,177.23,-3.41185,-12.2463,177.403,-5.33387,-10.8274,176.093,-5.85994,-10.0504,175.58,-1.03939,-12.9943,177.508,-2.18797,-12.7655,177.474,-1.05169,-13.0259,176.711,-2.21987,-12.8049,176.647,-3.42828,-12.3465,176.558,-4.50808,-11.6402,176.409,-6.11156,-9.46995,174.939,-6.34471,-8.92807,175.394,-6.44906,-8.5585,174.389,-6.37634,-8.55174,173.368,-6.1616,-9.20781,174.256,-6.07257,-9.23894,173.579,-5.84791,-9.51842,172.977,-6.11469,-8.9432,172.524,-6.35029,-8.25136,171.782,-6.47614,-7.56176,170.724,-6.47212,-6.90569,169.624,-6.41201,-6.22063,168.599,-6.32035,-5.50748,167.715,-6.15013,-4.79547,167.021,-5.81609,-4.1196,166.473,-5.36269,-3.599,165.805,-4.90063,-3.22187,164.719,-2.2479,-12.5835,170.58,-1.95849,-13.0004,170.871,-1.80944,-13.1434,170.281,-2.00322,-12.7499,170.009,-2.97166,-10.7707,164.873,-3.33146,-10.1245,164.382,-3.62834,-10.072,165.397,-3.23848,-10.6702,165.562,-2.70414,-12.0098,168.697,-2.20891,-12.4315,169.084,-2.10049,-12.4976,168.497,-0.86373,-12.108,164.371,-0.988074,-12.0506,163.682,-1.2137,-11.3901,162.348,-1.17724,-10.5149,161.97,-9.34755e-005,-12.1086,162.828,-1.11436,-11.9156,163.041,-4.10875,-9.24445,165.326,-4.305,-9.69161,166.546,-3.81879,-10.2994,166.366,-3.41755,-10.7434,166.285,-3.09568,-11.0612,166.27,-2.92869,-11.0707,165.761,-2.685,-11.1977,165.262,-2.28972,-11.45,164.734,-2.56044,-11.0627,164.23,-2.45125,-11.4556,165.606,-2.0815,-11.6813,165.172,-2.89716,-10.4456,163.593,-4.66873,-8.28322,165.646,-4.84921,-8.91852,166.889,-4.3244,-7.81648,164.521,-3.66314,-9.0928,163.753,-2.4318,-12.3223,169.681,-2.92871,-11.9059,169.294,-3.23654,-11.7453,169.925,-2.69514,-12.1856,170.286,-2.9302,-12.0503,170.939,-3.54662,-11.5698,170.652,-3.757,-11.2362,169.404,-4.35467,-10.7732,170.25,-4.71798,-10.1543,169.151,-4.12005,-10.7328,168.63,-3.36229,-11.4889,168.795,-3.67988,-11.0716,168.136,-3.09938,-11.6243,168.228,-3.36936,-11.2615,167.66,-3.1312,-11.3846,167.248,-2.89445,-9.64487,162.985,-4.85628,-9.59001,168.084,-4.30149,-10.2369,167.662,-3.846,-10.6647,167.304,-3.47863,-10.9536,167.0,-3.17897,-11.1676,166.771,-1.57326,-12.9888,169.438,-1.3873,-13.4107,169.946,-1.50306,-12.9759,168.763,-0.785472,-13.4399,169.367,-0.786455,-13.3458,168.876,-4.35304e-005,-13.4859,168.912,-0.752664,-13.7505,169.828,-2.42473,-12.4204,171.191,-2.05818,-12.7407,171.445,-1.7819,-12.9982,171.715,-1.79219,-13.197,171.313,-2.85143,-11.2736,166.291,-2.68561,-11.3196,165.955,-2.94896,-11.3262,166.626,-2.9388,-11.4818,166.955,-2.05959,-12.5313,167.983,-1.48625,-13.0001,168.247,-0.793431,-13.3666,168.411,-4.41388e-005,-13.5053,168.454,-1.73976,-11.7407,164.172,-1.56022,-11.9108,164.734,-1.95807,-11.4815,163.588,-2.17637,-10.9017,162.914,-2.14905,-10.0459,162.451,-5.85748,-9.02581,171.118,-5.97905,-8.45072,170.124,-5.98596,-7.82656,169.049,-5.92704,-7.14133,167.973,-5.83377,-6.44403,166.989,-5.6576,-5.79544,166.176,-5.22993,-9.8371,170.641,-5.38463,-9.33755,169.625,-5.4425,-8.75095,168.545,-5.40306,-8.06404,167.404,-5.28577,-7.37445,166.301,-5.04924,-6.7818,165.372,-1.88987,-9.06182,162.332,-2.66892,-8.69483,162.81,-2.25604,-7.64239,162.694,-2.92959,-7.12706,163.148,-3.38103,-8.03008,163.371,-3.55135,-6.39493,163.617,-3.99073,-7.17611,163.974,-4.23485,-5.57345,164.207,-4.70807,-6.21296,164.735,-4.8253,-4.65058,164.93,-5.31595,-5.20175,165.544,-0.986794,-9.44186,161.935,-0.00970322,-9.78042,161.704,-0.0100374,-8.54181,161.876,-0.766013,-8.32221,162.008,-1.53457,-7.98893,162.293,-4.31573,-4.08866,164.021,-1.88941,-6.60897,162.391,-2.48654,-6.18787,162.76,-3.0935,-5.50594,163.072,-3.72465,-4.83025,163.464,-1.77735,-13.4722,170.431,-1.84776,-13.3807,170.815,-1.73972,-13.7091,170.891,-1.71182,-13.8054,170.542,-1.48036,-14.0501,171.02,-1.4806,-14.1498,170.662,-1.1173,-14.4043,171.149,-1.12869,-14.5129,170.76,-1.67621,-13.5935,171.234,-1.39872,-13.9027,171.397,-0.669238,-14.9294,171.292,-0.675171,-15.0039,170.757,-4.91798e-005,-15.307,170.736,-1.2939,-13.7151,171.756,-1.01573,-14.0317,171.942,-1.06592,-14.2358,171.552,-0.635536,-14.5096,172.173,-0.647065,-14.7363,171.752,-4.76389e-005,-14.7982,172.309,-1.57286,-13.4355,171.558,-1.80647,-13.3683,171.111,-4.54174e-005,-14.5745,172.746,-0.635051,-14.2929,172.599,-1.00932,-13.8351,172.354,-1.25414,-13.5168,172.153,-1.5156,-13.2492,171.949,-1.57629,-13.6031,170.158,-1.57804,-13.8795,170.281,-4.31791e-005,-15.1113,170.234,-0.647967,-14.8551,170.334,-4.34567e-005,-14.9083,170.03,-0.474591,-14.7707,170.142,-1.39212,-14.2003,170.404,-1.0852,-14.537,170.48,-4.55383e-005,-14.5784,169.942,-0.488455,-14.173,169.986,-0.427866,-14.4924,170.071,-0.616238,-14.6502,170.228,-0.772743,-14.6916,170.325,-1.01705,-14.496,170.374,-1.38919,-13.9049,170.159,-1.37129,-13.6941,170.058,-0.64908,-14.1203,170.089,-0.867124,-13.819,170.016,-1.17551,-13.6436,169.999,-1.2497,-14.1962,170.285,-0.577072,-14.4243,170.167,-0.807599,-14.1109,170.168,-0.710748,-14.4056,170.243,-0.679373,-14.5834,170.272,-0.769791,-14.6081,170.325,-0.897863,-14.4453,170.323,-1.06172,-14.1617,170.233,-1.18992,-13.8859,170.122,-1.24269,-13.7323,170.048,-1.13462,-13.7119,170.03,-0.977787,-13.8456,170.087,-5.27015,-10.5633,174.848,-5.58647,-10.3592,175.102,-5.12239,-10.967,175.521,-4.87794,-11.0017,175.191,-4.35781,-11.6276,175.791,-4.17317,-11.5178,175.446,-5.29972,-10.294,173.584,-4.98801,-10.5649,173.321,-5.23421,-10.3128,172.948,-5.57526,-9.96596,173.3,-4.87372e-005,-13.4155,174.888,-0.685321,-13.1522,174.732,-0.757132,-13.0116,175.198,-4.18951,-11.1369,172.556,-3.56424,-11.5011,172.546,-3.68348,-11.4988,172.042,-4.33456,-11.0312,172.033,-5.46658,-9.97218,172.506,-3.34553,-12.2111,175.893,-3.21866,-11.9416,175.507,-1.02475,-12.9317,175.822,-4.53446e-005,-13.1052,176.053,-2.9785,-11.7712,172.656,-3.39617,-11.4948,172.982,-2.83163,-11.6735,173.085,-3.07856,-11.8622,172.173,-2.57574,-12.1281,172.346,-2.5119,-11.969,172.81,-4.01258,-11.2231,172.994,-2.09531,-11.933,173.366,-2.40064,-11.8044,173.224,-2.33143,-11.6509,173.59,-2.06756,-11.7278,173.699,-4.76335,-10.7239,172.694,-4.95099,-10.5018,172.187,-4.55674,-10.8949,173.118,-2.22229,-12.6272,175.925,-2.27313,-12.2289,175.434,-2.27128,-11.8106,175.17,-3.10296,-11.7079,175.32,-4.03674,-11.4225,175.267,-4.69626,-10.979,175.005,-5.01611,-10.6477,174.734,-5.04314,-10.5105,173.844,-4.76904,-10.7412,173.648,-4.37821,-11.033,173.483,-3.86444,-11.312,173.382,-3.27096,-11.5029,173.382,-2.72471,-11.5948,173.475,-1.53815,-12.4388,175.24,-1.73974,-11.9505,174.924,-5.67655,-9.54121,171.921,-5.09806,-10.2146,171.523,-4.40135,-10.9032,171.34,-3.69302,-11.5027,171.411,-2.5436,-12.2726,171.8,-3.06622,-11.9452,171.594,-1.56002,-12.7922,172.869,-1.29621,-13.0619,173.04,-1.27689,-13.3084,172.6,-1.53361,-13.0415,172.413,-0.635182,-14.0803,173.043,-0.622364,-13.8523,173.486,-4.44837e-005,-14.1128,173.63,-5.80562,-9.9188,174.647,-5.47466,-10.2522,174.526,-5.19002,-10.4367,174.498,-1.30277,-12.7664,173.448,-1.5629,-12.5004,173.289,-1.32342,-12.463,173.832,-1.57077,-12.2156,173.672,-1.42155,-12.1361,174.23,-1.63368,-11.9425,173.978,-2.17954,-12.3521,172.518,-2.15573,-12.1411,172.962,-1.49765,-12.062,174.626,-1.23291,-12.5302,174.845,-1.12194,-12.6316,174.435,-1.0478,-13.115,173.65,-1.04148,-13.3946,173.234,-1.03305,-13.6318,172.795,-1.06838,-12.8411,174.045,-4.25513e-005,-13.6247,174.473,-0.641286,-13.3561,174.321,-4.96753e-005,-13.863,174.059,-0.621731,-13.5998,173.912,-1.81953,-12.7942,172.215,-2.13753,-12.5469,172.007,-1.85521,-12.5652,172.696,-1.85092,-12.3081,173.13,-1.82951,-12.0607,173.527,-1.84441,-11.8219,173.827,-5.85861,-9.71961,174.186,-5.77878,-9.75119,173.725,-5.55038,-10.1055,174.202,-5.48908,-10.1295,173.883,-5.26092,-10.3461,174.27,-5.20977,-10.3751,174.052,-3.04342,-11.5181,173.992,-2.48273,-11.4555,174.107,-2.59183,-11.5367,173.823,-3.15189,-11.5297,173.725,-2.14137,-11.309,174.211,-2.23172,-11.4958,173.924,-1.95295,-11.2711,174.254,-2.01556,-11.5028,173.997,-1.83738,-11.2872,174.278,-1.84504,-11.5478,174.075,-1.74785,-11.3107,174.326,-1.70123,-11.6112,174.186,-1.69726,-11.32,174.414,-1.61307,-11.6634,174.356,-1.72503,-11.3035,174.523,-1.65483,-11.6391,174.571,-1.88527,-11.2996,174.652,-1.82955,-11.5625,174.782,-2.28889,-11.4053,174.833,-2.23928,-11.5106,175.015,-3.0164,-11.5857,175.006,-3.02986,-11.5777,175.194,-3.93835,-11.3909,175.143,-3.86379,-11.4443,174.975,-4.45789,-10.9852,174.773,-4.5595,-10.9518,174.886,-4.68984,-10.6868,174.625,-4.82778,-10.6655,174.673,-4.77612,-10.5648,174.522,-4.95731,-10.5203,174.505,-4.79789,-10.5432,174.431,-5.00458,-10.4734,174.352,-4.75865,-10.6005,174.355,-4.95939,-10.5168,174.214,-4.65807,-10.7285,174.277,-4.48319,-10.9295,174.174,-4.60362,-10.8652,173.938,-4.82746,-10.648,174.081,-4.17672,-11.191,174.056,-4.25362,-11.1414,173.8,-3.67134,-11.4241,173.972,-3.75255,-11.3937,173.714,-4.52274,-10.7523,174.386,-4.38661,-10.9294,174.3,-4.37694,-11.0053,174.718,-4.58183,-10.7176,174.618,-3.81304,-11.4319,174.869,-1.98678,-11.2072,174.553,-2.34182,-11.3461,174.713,-1.86145,-11.1953,174.465,-1.83441,-11.2119,174.417,-1.85607,-11.2141,174.38,-2.17415,-11.1832,174.333,-2.0046,-11.1696,174.363,-2.45756,-11.3651,174.237,-1.8836,-11.1754,174.394,-1.872,-11.1704,174.411,-1.90483,-11.149,174.435,-3.00785,-11.5508,174.875,-2.95659,-11.4381,174.132,-3.61239,-11.3742,174.109,-4.60404,-10.6355,174.446,-2.02713,-11.1454,174.501,-2.36467,-11.1836,174.66,-3.01641,-11.3841,174.86,-3.78984,-11.2658,174.874,-4.32081,-10.9165,174.74,-4.50821,-10.6832,174.647,-4.50039,-10.6094,174.479,-4.41304,-10.7042,174.403,-4.28785,-10.8469,174.301,-2.96622,-11.2684,174.125,-3.5947,-11.23,174.102,-2.50901,-11.1708,174.241,-2.24709,-11.0822,174.426,-2.03278,-11.1371,174.427,-4.12537,-11.1645,174.194,-4.06158,-11.0438,174.187,-4.64067,-10.5977,174.554,-4.5573,-10.5836,174.59,-1.91062,-11.1963,174.364,-1.92407,-11.1587,174.401,-4.64394,-10.579,174.496,-4.55112,-10.5648,174.535,-2.61391,-10.895,174.169,-2.41627,-10.8557,174.397,-2.5504,-10.8987,174.688,-3.04066,-10.9449,174.876,-3.71814,-10.8079,174.915,-4.21465,-10.6363,174.795,-4.42787,-10.5305,174.674,-4.50521,-10.4849,174.602,-4.51251,-10.4755,174.545,-4.44218,-10.4913,174.474,-4.31284,-10.5364,174.367,-4.16725,-10.6222,174.242,-3.96132,-10.7505,174.111,-3.59432,-10.8913,174.015,-3.06589,-10.9387,174.033,-2.67668,-10.5106,174.243,-2.70877,-10.4833,174.558,-3.04635,-10.3836,174.627,-3.55127,-10.3073,174.659,-3.99378,-10.3008,174.626,-4.25942,-10.325,174.559,-4.4008,-10.3469,174.527,-4.46699,-10.3765,174.522,-4.41249,-10.3733,174.465,-4.28596,-10.3479,174.386,-4.11345,-10.3454,174.302,-3.87226,-10.3459,174.218,-3.52911,-10.3583,174.146,-3.0918,-10.3903,174.142,-6.35566,3.90056,179.959,-6.47844,2.25145,181.795,-7.1241,1.44512,180.423,-7.0197,2.81517,178.797,-5.32599,5.01476,181.073,-5.4834,2.98912,183.066,-7.14749,-0.234309,181.54,-6.49648,0.221611,182.995,-5.51144,0.509131,184.285,-3.91421,5.97735,182.077,-4.0958,3.64439,184.226,-4.15254,0.749722,185.389,-4.34498,6.08566,173.354,-4.75359,6.29289,175.883,-5.77264,5.21332,175.327,-5.36962,5.05728,173.026,-6.49623,4.02535,174.773,-6.10879,3.91929,172.743,-3.00116,6.93092,173.55,-3.37309,7.21246,176.293,-7.10408,-2.02218,182.058,-6.45473,-1.87333,183.463,-5.44947,-1.94513,184.697,-4.09446,-2.08986,185.698,-2.27849,0.96221,186.26,-2.28418,-2.22619,186.49,-2.20018,4.12473,185.141,-2.08912,6.59544,182.912,-1.53254,7.43865,173.695,-1.72984,7.80978,176.557,-7.2861,-3.99118,180.749,-7.42697,-4.33433,179.337,-7.66933,-2.81726,179.029,-7.49105,-2.3797,180.542,-7.74904,-1.41282,178.518,-7.54472,-0.816085,180.011,-7.69933,-0.108818,177.711,-7.50126,0.636053,179.033,-7.5698,0.959389,176.583,-7.38813,1.82806,177.654,-7.15784,1.90889,173.729,-6.86008,1.80268,172.221,-6.5687,2.81961,172.482,-6.92112,2.90802,174.235,-7.31076,1.02127,173.28,-7.78366,-0.769108,176.488,-7.66185,0.211173,175.63,-7.79436,-2.00142,177.035,-7.705,-3.30446,177.485,-7.45808,-4.76669,177.859,-6.05749,2.28306,169.346,-6.37911,1.21389,169.352,-5.5684,3.37221,169.314,-4.8372,4.48813,169.284,-3.79964,5.50671,169.281,-2.55963,6.21315,169.314,-6.92219,-3.80098,182.11,-6.26979,-3.89765,183.355,-5.2192,-4.25403,184.457,-3.87338,-4.76276,185.325,-2.1601,-5.26806,185.996,-0.000556367,6.48697,167.676,-2.2907e-005,6.65593,169.304,-1.2764,6.56117,169.32,-2.39252e-005,0.983623,186.58,-1.92551,7.72993,179.755,-1.29723e-005,6.79395,183.252,-1.00689e-005,8.00602,176.67,-3.63562,7.1085,179.227,-5.04703,6.11599,178.544,-6.11134,4.89774,177.719,-6.81018,3.68619,176.849,-7.19914,2.5983,176.004,-7.39527,1.64415,175.218,-7.50446,0.812496,174.52,-6.58296,1.4936,170.761,-6.25081,2.52879,170.847,-5.76278,3.60362,170.908,-5.02034,4.71111,170.983,-3.9832,5.73014,171.104,-2.72488,6.50202,171.216,-1.37824,6.93859,171.275,-7.6477,-3.77129,175.86,-7.44716,-5.15354,176.245,-7.42676,-5.18515,174.672,-6.5793,-5.36333,181.966,-5.94997,-5.66377,182.941,-4.90876,-6.28211,183.829,-3.61663,-7.04605,184.526,-1.90222,-7.96585,184.999,-4.27517e-005,-7.81313,185.449,-0.788101,-12.2478,165.037,-2.67517,-11.4048,166.324,-2.51037,-11.4695,166.097,-2.28223,-11.6163,165.829,-1.93646,-11.838,165.533,-1.44324,-12.0689,165.266,-3.85276e-005,-12.3145,165.892,-4.09397e-005,-12.4572,165.745,-0.691018,-12.342,165.798,-0.653593,-12.2047,165.938,-1.28914,-12.1414,165.914,-1.22415,-11.9854,166.033,-1.75828,-11.9074,166.033,-1.68944,-11.7746,166.101,-2.11022,-11.6733,166.145,-2.05261,-11.5821,166.157,-2.30749,-11.5304,166.251,-2.26398,-11.4733,166.257,-2.45102,-11.4572,166.375,-2.40772,-11.4063,166.375,-2.36109,-11.2886,166.364,-2.20915,-11.3445,166.244,-1.98522,-11.4139,166.128,-1.62852,-11.5343,166.043,-1.17536,-11.7225,165.989,-0.622558,-11.9575,165.953,-2.39302,-11.5368,166.198,-2.54515,-11.4642,166.354,-2.19022,-11.6885,166.037,-1.84924,-11.9305,165.806,-1.37408,-12.1795,165.608,-0.743981,-12.3831,165.462,-4.11295e-005,-12.4783,165.401,-2.32159,-10.8524,166.304,-2.18615,-10.8677,166.108,-1.97571,-10.9157,165.904,-1.64279,-11.0384,165.731,-1.17979,-11.2405,165.648,-0.616767,-11.5075,165.675,-2.42174,-12.1157,167.284,-2.67159,-11.7804,167.016,-2.78736,-11.5516,166.778,-2.78061,-11.4298,166.549,-2.03129,-12.5273,167.569,-1.46812,-12.9959,167.809,-0.791134,-13.3848,167.962,-4.40602e-005,-13.5763,167.954,-2.3482,-12.0802,167.057,-1.98307,-12.4684,167.279,-1.91766,-12.3617,167.126,-2.2754,-12.0091,166.942,-1.41616,-12.911,167.464,-0.752878,-13.2846,167.601,-0.699263,-13.0675,167.436,-1.34131,-12.7323,167.301,-1.87706,-12.2805,167.097,-2.22821,-11.9335,166.916,-0.67692,-12.9082,167.423,-1.3023,-12.5918,167.29,-0.670592,-12.7312,167.487,-1.27071,-12.418,167.355,-1.81955,-12.1419,167.141,-2.19468,-11.8483,166.933,-4.21208e-005,-13.2314,167.493,-2.5729,-11.7791,166.855,-2.67221,-11.5779,166.682,-2.49564,-11.7378,166.777,-2.58842,-11.5553,166.636,-2.45051,-11.6759,166.759,-2.54411,-11.5023,166.625,-2.42397,-11.6018,166.764,-2.51325,-11.4274,166.622,-2.65291,-11.475,166.516,-2.55926,-11.4631,166.504,-2.51361,-11.4148,166.498,-2.47567,-11.3236,166.492,-4.13348e-005,-12.3128,167.76,-0.685412,-12.31,167.816,-1.26222,-12.006,167.694,-1.75651,-11.7141,167.439,-2.1627,-11.5343,167.106,-2.40441,-11.3119,166.845,-2.47411,-11.1041,166.647,-2.42234,-10.9248,166.483,-0.953058,-9.33634,184.488,-1.16389e-005,7.07101,171.282,-5.53718,3.41976,164.501,-4.86827,4.72347,164.564,-5.8352,1.06835,164.511,-5.81284,2.21004,164.489,-1.21306,6.62605,164.515,-0.00239993,6.47929,166.048,-3.78881,5.86993,164.632,-2.49251,6.48138,164.61,-5.53827,-1.14209,164.309,-5.70305,-0.0628162,164.482,-5.16925,-2.08394,163.924,-4.59776,-2.88726,163.405,-3.97602,-3.55539,162.942,-1.64098,-5.60184,161.848,-2.16786,-5.162,162.065,-2.7554,-4.65771,162.314,-3.36966,-4.1302,162.583,-5.58634,3.63841,163.114,-5.99369,3.93526,161.782,-5.37597,5.31808,162.025,-4.98275,4.9703,163.284,-5.76521,2.39259,162.983,-5.65041,1.23258,162.893,-5.80883,1.44717,161.318,-6.0947,2.62992,161.528,-1.44179,7.41655,161.97,0.00402096,6.92341,163.136,-1.31258,6.92183,163.223,-4.31335,6.50425,162.177,-3.97396,6.11957,163.405,-2.92058,7.19831,162.139,-2.67248,6.76485,163.373,-5.34386,-0.96331,162.672,-5.25612,-0.724151,161.104,-5.4909,0.327759,161.212,-5.48252,0.101108,162.816,-5.00523,-1.87182,162.392,-4.92787,-1.64084,160.879,-4.47863,-2.58779,162.041,-4.45605,-2.3552,160.59,-3.83686,-3.12949,161.734,-3.85156,-2.88416,160.329,-1.55297,-4.81916,160.972,-1.45517,-4.17385,159.525,-2.01187,-3.84056,159.682,-2.04379,-4.39447,161.075,-2.55686,-3.55415,159.902,-2.57456,-3.97417,161.267,-3.18054,-3.25992,160.116,-3.17828,-3.56327,161.487,-6.87321,4.33846,160.398,-8.05317,4.84834,159.011,-7.11217,6.493,159.427,-6.115,5.81148,160.739,-7.00494,2.95565,159.988,-6.57811,1.73559,159.637,-7.85747,2.12396,157.916,-8.31797,3.38083,158.454,0.0130296,9.26513,159.232,-1.60024,8.15672,160.713,-1.84206,9.17725,159.324,-5.64482,7.98542,159.586,-4.86608,7.1018,160.923,-3.77591,8.86789,159.493,-3.26533,7.87255,160.874,-5.9271,0.596096,159.513,-5.4008,-0.482317,159.449,-5.94998,-0.285752,157.627,-6.86525,0.901287,157.683,-4.99735,-1.42326,159.24,-5.34539,-1.25354,157.455,-4.56889,-2.19868,158.955,-4.84505,-2.07259,157.209,-4.0055,-2.81918,158.692,-4.26585,-2.82224,156.979,-1.32188,-3.80023,157.767,-1.32226,-3.89978,156.107,-2.06099,-3.81397,156.326,-1.99075,-3.6304,158.017,-2.81961,-3.69101,156.576,-2.65187,-3.48983,158.272,-3.56493,-3.37773,156.78,-3.33497,-3.24777,158.483,-0.644731,-3.96635,157.579,-0.754597,-4.5851,159.578,-0.00599005,-4.02885,155.92,-0.634512,-3.98468,155.969,-9.30919,5.37493,157.798,-8.24475,7.27845,158.155,-9.10627,2.49114,156.534,-9.62805,3.80032,157.174,-6.56227,9.04449,158.04,-4.37346,10.0467,157.81,-6.6764,-0.125674,156.105,-7.85556,1.16448,156.214,-2.13136,10.3927,157.647,-5.90065,-1.14111,155.942,-5.25736,-1.97012,155.744,-4.58153,-2.78913,155.557,-2.17361,-4.06296,155.004,-1.3898,-4.16508,154.835,-3.00265,-3.86774,155.208,-3.81943,-3.46298,155.39,-0.67229,-4.20365,154.724,-1.29277,-6.97037,162.091,-1.12922,-6.02449,161.726,-1.05647,-5.24607,161.023,-7.78581,-1.99713,171.363,-7.74927,-1.69038,172.021,-8.01665,-1.48471,172.863,-8.27527,-1.4512,173.715,-8.46359,-1.5099,174.353,-8.68709,-1.49334,174.706,-0.656518,-7.30218,161.929,-0.54723,-5.59792,161.143,-0.587373,-6.36488,161.662,-0.0143878,-6.54186,161.652,-0.00727186,-5.16138,160.358,-0.450197,-5.14083,160.45,-0.0128263,-4.21806,154.689,-2.55078,-10.6033,166.749,-2.45111,-10.4105,166.517,-3.98364e-005,-11.6512,168.121,-0.693518,-11.6998,168.273,-1.33615,-11.4903,168.159,-1.85179,-11.2496,167.829,-2.36156,-11.1288,167.44,-2.5875,-10.8914,167.027,-2.10388,-10.3292,165.68,-1.73815,-10.4172,165.413,-0.607225,-10.8746,165.275,-1.21301,-10.6078,165.258,-2.2899,-10.3157,165.986,-2.3689,-10.3239,166.268,-2.61878,-9.94452,166.866,-2.50901,-9.79279,166.587,-0.728853,-10.8144,168.709,-1.39922,-10.6189,168.482,-1.987,-10.4694,168.198,-2.56291,-10.3248,167.853,-2.76679,-10.1168,167.214,-2.18112,-9.57169,165.654,-1.76876,-9.57447,165.354,-0.580717,-9.83273,165.085,-1.2039,-9.65074,165.131,-0.00043403,-10.0025,165.114,-2.4003,-9.61676,165.981,-2.45601,-9.68781,166.297,-2.61117,-9.3001,166.94,-2.5391,-9.1885,166.665,-1.42393,-9.53751,168.513,-2.04719,-9.47377,168.204,-2.55418,-9.41098,167.782,-2.68278,-9.35961,167.267,-2.28466,-8.80925,165.754,-1.84147,-8.68807,165.42,-0.569425,-8.72398,165.247,-1.20398,-8.67179,165.269,-0.000631839,-8.78608,165.262,-2.45853,-8.96698,166.111,-2.50443,-9.09397,166.391,-2.56947,-8.74166,166.733,-2.54214,-8.72808,166.498,-1.35133,-8.4339,168.095,-1.98604,-8.46767,167.852,-2.48185,-8.59814,167.494,-2.64746,-8.74986,167.138,-1.88103,-7.87316,165.959,-2.39013,-8.20032,166.121,-1.20327,-7.78379,165.924,-0.576065,-7.78213,165.941,-2.53366,-8.52262,166.368,-1.99854,-7.71852,167.178,-1.26324,-7.6349,167.276,-2.49555,-8.12891,166.937,-2.58529,-8.45993,166.805,-2.6178,-8.86866,166.944,-0.678657,-8.42467,168.279,-9.21156e-005,-7.63426,167.357,-0.618319,-7.64147,167.331,-0.730731,-9.6198,168.783,-7.76221,12.3292,14.1344,-6.70041,10.9588,14.0105,-9.09466,12.9726,12.5749,-10.5701,12.2892,12.6936,-7.62575,12.5136,12.4399,-6.49578,11.0791,12.1781,-12.2851,9.71789,12.41,-12.2681,9.63878,14.205,-11.573,10.9294,14.268,-11.634,10.8595,12.6442,-12.4439,10.1485,10.4619,-11.4911,4.86928,12.4489,-10.9481,3.90285,11.9432,-10.2093,3.73521,13.1613,-10.0609,3.3487,12.3049,-8.66589,3.51694,13.2894,-8.6595,3.24404,12.3706,-7.23957,4.13913,11.9359,-7.52826,7.59087,0.877735,-8.05412,5.28071,1.03594,-8.66175,1.83203,0.812691,-11.8683,-2.97682,0.505228,-12.4475,-1.60254,50.8177,-8.02174,-1.46021,51.0223,-13.0756,-3.32668,0.486496,-13.6979,-2.89627,0.535341,-10.5636,-4.62245,0.410745,-11.3534,-4.28558,0.417143] }, -{ "name": "morph_muscle", "vertices": [3.13364,-9.72623,176.129,3.90474,-9.64007,175.921,4.46922,-9.57699,175.353,4.67584,-9.55391,174.577,4.46922,-9.57699,173.802,3.90474,-9.64007,173.234,3.13364,-9.72623,173.026,2.36255,-9.81239,173.234,1.79806,-9.87547,173.802,1.59145,-9.89855,174.577,1.79806,-9.87547,175.353,2.36254,-9.81239,175.921,3.2198,-10.4973,175.921,3.88759,-10.4227,175.741,4.37645,-10.3681,175.249,4.55538,-10.3481,174.577,4.37645,-10.3681,173.905,3.88759,-10.4227,173.414,3.2198,-10.4973,173.234,2.55201,-10.5719,173.414,2.06316,-10.6266,173.905,1.88422,-10.6466,174.577,2.06316,-10.6266,175.249,2.55201,-10.5719,175.741,3.28288,-11.0618,175.353,3.66843,-11.0187,175.249,3.95067,-10.9872,174.965,4.05398,-10.9757,174.577,3.95067,-10.9872,174.189,3.66843,-11.0187,173.905,3.28288,-11.0618,173.802,2.89733,-11.1049,173.905,2.61509,-11.1364,174.189,2.51178,-11.148,174.577,2.61509,-11.1364,174.965,2.89733,-11.1049,175.249,3.30597,-11.2684,174.577,3.07294,-9.09432,175.847,3.70368,-9.02384,175.677,4.16542,-8.97225,175.212,4.33443,-8.95336,174.577,4.16542,-8.97225,173.943,3.70369,-9.02384,173.478,3.07294,-9.09432,173.308,2.4422,-9.1648,173.478,1.98047,-9.21639,173.943,1.81146,-9.23528,174.577,1.98046,-9.21639,175.212,2.4422,-9.1648,175.677,0.667976,-10.3791,165.157,1.13994,-9.90453,165.279,1.00633,-7.07055,165.035,1.55048,-7.07055,165.035,0.799233,-10.3898,166.092,1.20976,-9.9223,166.208,1.00633,-7.07055,166.414,1.55048,-7.08208,166.349,0.799233,-10.7678,165.473,1.57552,-9.99298,165.473,2.03531,-7.07055,165.473,0.799233,-10.7678,165.771,1.57552,-9.99298,165.911,2.03531,-7.07055,165.911,1.00633,-9.08034,165.252,1.55048,-9.08034,165.252,2.03529,-9.2854,165.69,2.03529,-9.2854,166.127,1.55048,-9.09186,166.565,1.00633,-9.08034,166.63,1.55048,-8.07842,166.567,1.00633,-8.06689,166.632,1.00633,-8.06689,165.254,1.55048,-8.06689,165.254,2.0353,-8.15642,165.692,2.0353,-8.15642,166.129,0.0568168,-10.3791,165.15,-0.554342,-10.3791,165.157,-0.892694,-9.08034,165.252,-1.43684,-9.08034,165.252,-1.02631,-9.90453,165.279,0.0568164,-10.5684,166.075,-0.6856,-10.3898,166.092,-0.892695,-9.08034,166.63,0.0568162,-9.08034,166.415,-1.09612,-9.9223,166.208,-1.43685,-9.09186,166.565,-1.46189,-9.99298,165.473,-0.6856,-10.7678,165.473,0.0568167,-10.9632,165.466,-0.6856,-10.7678,165.771,0.0568166,-10.9632,165.761,-1.46189,-9.99298,165.911,-1.92166,-9.2854,165.69,-1.92166,-9.2854,166.127,0.0568168,-9.08034,165.244,0.0568167,-8.06689,165.246,-0.892694,-8.06689,165.254,-1.43684,-8.06689,165.254,-0.892695,-8.06689,166.632,0.0568162,-8.06689,166.417,-1.43685,-8.07842,166.567,-1.92167,-8.15642,165.692,-1.92167,-8.15642,166.129,0.0568168,-7.07055,165.028,-0.892694,-7.07055,165.035,-1.43684,-7.07055,165.035,-0.892695,-7.07055,166.414,0.0568163,-7.07055,166.199,-1.43685,-7.08208,166.349,-1.92168,-7.07055,165.473,-1.92168,-7.07055,165.911,0.0568168,-10.3791,165.15,0.0568168,-10.3837,165.17,1.3532,-12.0965,167.213,2.3729,-11.3342,167.148,2.96403,-10.2243,167.054,3.01525,-8.9758,166.949,1.35319,-12.0422,168.129,2.3729,-11.2799,168.064,2.96403,-10.17,167.97,3.01525,-8.92152,167.865,1.26917,-12.0202,167.152,2.01746,-11.1142,167.106,2.17921,-10.0228,167.037,2.21641,-9.11606,166.961,1.00931,-11.6075,167.794,2.01746,-10.6168,167.747,2.44678,-9.81073,167.679,2.21641,-8.61868,167.602,0.0568158,-12.3676,167.236,-1.23956,-12.0965,167.213,-1.23956,-12.0422,168.129,0.0568153,-12.3133,168.152,-2.25927,-11.3342,167.148,-2.25927,-11.2799,168.064,-2.8504,-10.2243,167.054,-2.8504,-10.17,167.97,-2.90162,-8.9758,166.949,-2.90162,-8.92152,167.865,0.0568158,-12.3017,167.169,0.0568155,-11.8044,167.811,-0.895681,-11.6075,167.794,-1.15554,-12.0202,167.152,-1.90383,-10.6168,167.747,-1.90383,-11.1142,167.106,-2.33315,-9.81073,167.679,-2.06558,-10.0228,167.037,-2.10278,-8.61868,167.602,-2.10278,-9.11606,166.961,-3.12398,-9.72623,176.129,-3.89507,-9.64007,175.921,-4.45956,-9.57699,175.353,-4.66617,-9.55391,174.577,-4.45956,-9.57699,173.802,-3.89507,-9.64007,173.234,-3.12398,-9.72623,173.026,-2.35288,-9.81239,173.234,-1.7884,-9.87547,173.802,-1.58178,-9.89855,174.577,-1.78839,-9.87547,175.353,-2.35288,-9.81239,175.921,-3.21014,-10.4973,175.921,-3.87793,-10.4227,175.741,-4.36678,-10.3681,175.249,-4.54572,-10.3481,174.577,-4.36678,-10.3681,173.905,-3.87793,-10.4227,173.414,-3.21014,-10.4973,173.234,-2.54235,-10.5719,173.414,-2.05349,-10.6266,173.905,-1.87456,-10.6466,174.577,-2.05349,-10.6266,175.249,-2.54235,-10.5719,175.741,-3.27321,-11.0618,175.353,-3.65876,-11.0187,175.249,-3.941,-10.9872,174.965,-4.04431,-10.9756,174.577,-3.941,-10.9872,174.189,-3.65876,-11.0187,173.905,-3.27321,-11.0618,173.802,-2.88766,-11.1049,173.905,-2.60542,-11.1364,174.189,-2.50211,-11.148,174.577,-2.60542,-11.1364,174.965,-2.88766,-11.1049,175.249,-3.2963,-11.2684,174.577,-3.06328,-9.09432,175.847,-3.69402,-9.02384,175.677,-4.15575,-8.97225,175.212,-4.32476,-8.95336,174.577,-4.15575,-8.97225,173.943,-3.69402,-9.02384,173.478,-3.06328,-9.09432,173.308,-2.43253,-9.1648,173.478,-1.9708,-9.21639,173.943,-1.80179,-9.23528,174.577,-1.9708,-9.21639,175.212,-2.43253,-9.1648,175.677,1.3532,-11.1899,165.956,2.3729,-10.4287,166.031,2.96403,-9.32023,166.141,3.01525,-8.07337,166.342,1.3532,-11.1264,165.315,2.3729,-10.3652,165.391,2.96403,-9.25674,165.5,3.01525,-8.00988,165.624,1.25443,-10.9459,166.027,1.92182,-10.1482,166.081,2.17921,-9.11899,166.161,2.21641,-8.21344,166.328,1.25443,-9.94623,164.91,1.92182,-9.1486,164.965,2.17921,-9.0555,164.944,2.21641,-8.14995,165.034,0.0568162,-11.4607,165.929,0.0568165,-11.3972,165.288,-1.23956,-11.1264,165.315,-1.23956,-11.1899,165.956,-2.25927,-10.3652,165.391,-2.25927,-10.4287,166.031,-2.85039,-9.25674,165.5,-2.8504,-9.32023,166.141,-2.90162,-8.00988,165.624,-2.90162,-8.07337,166.342,0.0568162,-11.2432,166.007,-1.1408,-10.9459,166.027,-1.14079,-9.94623,164.91,0.0568166,-10.2436,164.89,-1.80819,-10.1482,166.081,-1.80819,-9.1486,164.965,-2.06558,-9.11899,166.161,-2.06557,-9.0555,164.944,-2.10278,-8.21344,166.328,-2.10278,-8.14995,165.034,-0.0174956,15.2219,147.196,-0.0268111,-14.502,118.999,-0.0286257,13.7997,152.04,-0.00111076,5.67418,107.749,-0.000694005,5.52096,92.5726,-4.49004e-005,-12.0596,181.201,-4.27062e-005,-12.8724,167.533,-4.52127e-005,-13.9486,169.649,-0.023575,-15.3427,115.025,-0.0134592,-13.9103,132.141,0.0092063,8.23176,127.641,-0.00230828,-5.11022,152.817,-4.34632e-005,-11.3125,182.529,-2.73595e-005,-12.2211,163.521,0.000443223,-11.6781,162.179,-1.28812e-005,7.93159,179.979,-2.75867e-005,-11.6088,165.638,-4.12255e-005,-9.34605,184.583,0.0663247,8.37313,160.802,-4.98916e-005,-15.2283,171.373,-4.25867e-005,-13.0916,167.472,0.00152116,-5.9389,161.251,-0.017246,10.6825,157.787,-1.91264e-005,-8.41473,168.333,0.00949202,5.15254,114.195,-0.00874243,-15.94,112.444,0.0101573,5.10533,118.311,-0.0314084,12.8461,154.29,-0.0356092,11.7154,156.15,-0.00154425,-14.051,99.3693,0.000302797,-0.495415,89.6358,0.00167462,6.69198,100.354,-4.04164e-005,-12.222,164.278,0.000685861,-10.8808,161.758,-4.74227e-005,-15.0192,171.863,-4.61274e-005,-13.2407,175.381,-3.85153e-005,-5.47657,186.341,-4.02136e-005,-12.3372,164.966,-4.44005e-005,-13.4661,167.619,-9.93674e-006,7.6017,173.749,0.126165,6.40397,164.524,-3.69702e-005,-10.7748,168.59,3.13069e-005,-10.9243,165.299,0.000143233,-7.77755,165.962,21.7191,3.71668,142.389,23.1149,3.41644,142.39,22.8563,5.90042,141.637,21.3322,6.1248,141.573,48.0936,7.55167,139.342,51.5692,7.4088,138.947,51.584,9.59242,140.232,47.9102,9.55633,140.576,45.0465,9.77423,141.11,45.3209,7.9314,140.026,41.0456,4.30852,148.271,41.2996,2.70907,147.052,38.5727,2.17626,147.32,38.2616,4.31667,148.075,35.3264,1.75204,147.693,32.1965,1.3979,148.017,32.1725,3.94446,148.937,35.148,4.14339,148.523,40.4696,6.37267,148.767,37.5612,6.43691,148.93,31.8047,6.50291,149.405,34.574,6.52005,149.305,34.9349,0.215612,145.523,31.7117,0.0477848,145.592,42.7849,2.86197,147.024,43.917,2.77192,147.004,44.145,2.35856,145.638,42.9478,1.76728,145.535,38.4196,0.548423,145.503,37.8964,0.251538,142.74,34.1851,0.121203,142.59,37.1342,2.43487,140.808,33.3615,2.48314,140.795,36.3281,5.17538,140.568,32.6646,5.23778,140.522,48.5892,4.984,139.545,51.7101,4.85086,139.21,31.9512,7.64799,139.788,35.5562,7.40614,139.909,34.7346,9.72438,139.996,31.3203,10.1594,139.786,54.8688,10.4765,142.46,54.7343,9.38562,140.434,57.6732,9.16246,140.85,57.7858,10.0758,142.755,57.6682,7.41569,139.549,54.7339,7.38567,139.063,60.9791,7.39654,140.288,61.0843,8.80985,141.499,61.239,9.50514,143.242,54.8474,4.96544,139.27,57.7317,5.24807,139.562,60.9073,5.58391,140.117,60.8661,3.91312,140.975,57.7972,3.48049,140.901,60.8605,2.74623,142.368,57.8433,2.52683,142.797,55.0196,3.10822,140.932,55.1743,2.38509,143.177,64.1537,4.26219,141.041,64.2852,5.75645,140.64,64.0932,3.06069,141.968,64.4834,7.24649,140.931,64.7167,8.42667,142.009,68.1686,7.03938,141.212,68.4962,8.0347,142.302,67.884,5.71943,140.763,57.9252,9.82618,144.788,61.3199,8.93445,144.903,64.9142,8.80247,143.621,64.9817,8.07328,144.991,55.0412,10.3496,144.677,64.9705,6.91313,146.046,61.3873,7.87647,146.3,68.7839,7.15098,144.935,68.6999,5.87383,145.568,68.7129,8.00341,143.804,49.1981,2.57766,144.008,52.2657,2.38432,143.654,51.9894,3.08634,141.227,49.028,3.50692,141.602,47.0369,2.41756,146.111,49.3462,2.11709,146.256,46.9953,2.78846,143.897,52.4184,1.75093,146.004,55.314,1.7685,145.414,49.1726,3.56202,148.648,52.556,3.05894,148.365,55.4643,3.01786,147.506,58.0353,8.70928,146.409,55.1794,9.25738,146.528,55.295,7.51676,147.75,58.0959,7.05415,147.455,61.3196,6.30803,146.964,52.2754,7.97192,148.195,52.1188,9.83028,146.801,48.6608,8.34705,148.42,48.9817,6.09048,149.073,46.1549,6.1869,148.967,45.794,8.3673,148.321,52.4639,5.68817,148.765,46.6278,3.61732,148.357,55.3611,5.38167,147.968,58.0036,5.09852,147.204,58.0074,3.09735,146.589,61.1208,4.59295,146.566,60.9763,3.05636,145.617,37.2661,11.393,145.585,37.0778,11.6054,143.522,40.5014,11.122,143.431,40.6255,11.1083,145.436,34.0764,11.5614,145.592,33.7667,11.7933,143.545,41.1736,10.0079,147.06,38.1163,10.247,147.26,44.9935,11.0066,142.891,43.0236,11.0552,143.191,43.27,9.94139,141.461,45.1628,11.3075,145.091,45.4584,10.0952,146.946,43.4162,9.98495,146.97,43.1052,11.1796,145.292,35.0557,10.6734,147.534,48.3776,10.1619,146.93,41.3104,0.707251,143.166,43.0213,1.29152,143.463,42.5667,2.53598,141.628,40.7011,2.51005,141.157,42.2952,4.58263,140.98,39.9394,5.03485,140.629,43.8833,2.56623,142.118,44.3172,1.86328,143.758,45.4267,2.40205,143.681,44.4369,3.89355,141.567,64.5151,3.8836,145.938,64.7916,5.42273,146.372,68.4779,4.42498,145.758,68.1602,3.06841,145.18,60.8953,2.27513,144.045,57.9288,1.97365,144.795,67.6994,4.33707,140.821,37.5244,10.7869,141.601,34.0633,11.3565,141.506,38.3988,9.17793,140.224,30.922,12.1423,141.285,41.4602,1.08884,145.576,36.3712,8.76728,148.757,33.5495,9.06991,149.368,32.3116,11.3365,148.046,64.1162,2.47591,143.309,67.6437,2.30079,142.56,67.6039,3.07696,141.419,64.2613,2.83593,144.747,67.8599,2.31753,143.945,42.8345,4.15893,148.325,42.6297,6.32385,148.828,39.4277,8.53766,148.44,41.9788,8.41329,148.302,43.8427,8.33682,148.24,44.286,6.22333,148.895,41.673,8.59921,140.421,43.6858,8.23431,140.331,40.9069,10.1578,141.695,39.2969,7.03809,140.067,42.1955,6.50785,140.068,30.7129,12.3255,143.541,31.2234,12.3681,145.773,28.7763,12.8,146.036,28.3049,12.8613,143.706,29.8463,11.6447,148.389,24.0134,0.469726,145.672,22.6948,0.549773,145.159,23.0985,0.963395,147.872,24.5945,1.63037,147.757,23.2349,1.62233,143.478,21.8001,1.90765,143.239,26.3753,1.46013,147.74,25.7147,0.357144,145.618,29.3114,3.73071,148.965,29.2302,6.37078,149.508,30.9349,0.372747,142.817,27.9142,0.762928,143.183,28.5646,0.0233412,145.54,25.2297,1.24466,143.563,25.0949,3.16606,142.393,19.3806,13.0672,143.932,21.1134,12.9319,144.042,21.7882,12.923,146.165,19.7733,13.5096,145.984,21.9109,8.61376,140.979,20.3544,8.83002,141.111,20.0362,10.9451,141.487,21.7413,10.8212,141.331,21.3752,12.2682,142.366,19.6869,12.3107,142.463,28.4083,12.5758,141.388,25.9662,12.737,141.65,26.2034,10.7217,140.468,28.5833,10.4592,139.95,26.547,8.15749,140.495,29.017,7.85111,139.983,27.0852,5.39819,141.158,29.6336,5.30185,140.705,27.3896,2.78637,141.739,30.1716,2.61067,141.125,25.0512,3.53631,149.79,26.7157,3.77524,149.069,31.0103,9.194,149.729,28.5945,9.21831,149.689,27.3285,11.7407,148.478,26.2258,12.9823,146.252,25.8294,13.328,143.894,48.1501,11.0871,144.805,47.924,10.7383,142.577,51.7391,10.7975,142.375,51.9622,10.7779,144.693,44.7163,3.59764,148.061,45.9936,5.39125,139.917,23.7069,3.21912,150.436,23.6733,6.40585,151.797,25.0357,6.40348,150.879,22.6301,9.57374,150.928,24.3142,9.3719,150.321,21.5141,12.281,149.053,23.136,11.7889,148.618,23.7193,12.8161,146.195,24.9582,11.5133,148.37,29.106,1.23801,147.887,26.7087,6.35023,150.112,24.0547,10.7641,141.261,23.4153,12.4672,142.128,24.4555,8.44254,141.162,24.9914,5.69602,141.768,26.0998,9.08278,149.548,23.1387,13.276,143.978,45.3917,2.5292,145.94,46.57,3.68437,141.728,44.0987,5.89419,140.072,70.808,1.84015,143.309,72.645,1.52871,142.796,72.2182,2.02184,141.489,70.5138,2.13731,141.967,70.4571,3.07664,141.031,72.1668,3.07489,140.734,71.1703,2.50932,144.584,73.1835,2.16604,144.1,70.761,5.6998,140.754,71.0511,6.85955,141.308,71.4032,7.69085,142.347,73.2766,5.80665,140.577,73.6365,6.82668,141.208,72.859,6.80701,141.275,72.5629,5.74941,140.658,70.5592,4.37344,140.608,72.3087,4.42235,140.443,71.689,7.71474,143.802,71.7914,6.66018,144.771,73.7243,7.60517,143.71,73.9243,6.39209,144.525,74.8823,6.28385,144.308,74.857,4.81095,144.613,73.842,4.95595,144.829,71.7115,5.29347,145.183,71.4885,3.81026,145.26,73.5766,3.44516,144.798,74.5544,3.26042,144.547,74.0167,1.97486,143.875,72.6621,3.08406,140.606,72.9255,4.4653,140.351,73.2785,7.50212,142.305,72.708,1.98368,141.293,73.2524,1.42502,142.58,74.5497,7.46655,143.566,74.0638,7.45758,142.243,17.4776,-2.22533,148.087,16.1017,-3.40281,146.708,15.2618,-3.42077,148.411,16.6382,-2.2546,149.735,14.3814,-3.08505,150.444,15.8398,-1.87368,151.569,18.396,-0.859122,149.711,17.4265,-0.636422,151.007,16.5913,-0.181236,152.47,17.7064,1.42945,152.033,18.7959,1.12303,150.998,17.8487,3.662,153.032,19.0256,3.24229,152.034,18.957,6.09526,153.251,17.6265,6.24532,153.699,16.7858,3.99903,153.95,16.519,6.39866,154.382,18.2935,9.08241,152.944,17.2091,8.72302,153.483,16.5475,10.7335,152.605,17.4536,11.2099,151.457,16.2351,8.3788,154.174,15.7625,10.1051,153.649,16.5708,13.1162,150.48,15.6638,12.2941,151.782,14.9505,11.3898,153.03,15.7807,0.70349,153.621,15.0684,-0.848236,153.216,14.3878,0.655168,154.424,15.1243,1.85807,154.386,13.9685,2.42947,155.551,14.7158,3.39463,155.16,15.9656,2.36005,153.847,15.5033,2.73013,154.303,15.2794,4.05707,154.652,16.786,1.85293,153.108,14.9549,5.94417,154.969,15.6237,6.25123,154.797,15.9181,4.15199,154.393,15.3827,7.89221,154.722,14.7403,7.41261,155.038,14.384,8.81881,154.818,15.0312,9.37444,154.399,13.9768,9.79007,154.489,14.3627,10.471,153.98,13.2941,10.1441,154.897,13.3941,11.3934,154.104,13.7993,12.6486,152.983,12.0166,12.3983,154.445,12.0349,13.2972,152.667,13.7626,8.734,155.586,14.3556,13.7324,151.451,14.9998,14.3579,149.658,12.8107,14.4959,148.981,12.3645,14.1197,150.796,14.465,5.36089,155.656,13.8327,4.56643,156.285,14.2041,7.07779,155.818,10.1517,13.1243,154.297,10.0093,13.643,152.089,13.662,-2.07661,152.421,13.1239,-0.70369,154.122,12.4178,1.33843,155.478,12.8724,3.87026,156.651,12.5182,6.14534,157.145,13.4979,6.63877,156.601,18.7155,1.44307,141.229,17.6589,-0.401453,141.66,19.5113,0.577278,143.305,20.0592,2.11167,142.691,20.5326,3.99136,142.256,20.0558,3.61556,141.472,10.5032,14.8263,148.156,10.9246,15.2066,146.612,13.2667,14.5362,147.239,11.9044,14.9876,143.492,14.4227,14.0807,143.984,13.7869,14.4051,145.548,11.3936,15.2543,145.032,17.2967,11.4299,141.548,15.5389,12.035,140.335,18.3013,10.0907,140.586,18.9241,9.36554,141.376,19.7357,7.98202,141.063,20.4103,6.34124,141.648,20.2527,5.72078,141.322,19.2868,-0.487971,144.137,17.4029,-1.73899,142.52,21.3225,0.102397,145.772,19.0152,-1.27212,145.304,20.6404,-0.386158,147.284,16.8184,-3.1126,145.143,18.3182,-1.82283,146.639,17.3062,-2.61938,143.72,14.916,13.3862,142.75,12.497,14.2919,142.123,13.5634,13.3093,140.991,15.7128,12.5096,141.903,10.1669,14.1975,149.808,12.9533,8.76071,156.531,12.2984,10.7401,155.697,17.6056,13.7689,149.096,18.6096,11.8858,150.401,19.5904,9.48542,152.278,15.7011,14.482,147.86,20.9892,2.14481,143.058,21.1032,4.00401,142.437,21.1662,0.735591,144.17,19.4949,9.09052,141.372,18.6834,11.1231,141.707,20.6424,6.27381,141.65,20.4749,3.21117,151.391,20.4756,6.16294,152.999,22.2227,6.31862,152.579,22.1087,3.20946,150.971,17.9061,12.2632,142.4,17.2956,12.8882,143.385,16.3839,14.3106,146.142,18.6741,13.8136,147.575,20.0488,12.36,149.713,21.0936,9.62887,151.511,21.7655,0.92324,149.391,20.1745,0.986855,150.214,17.0158,13.6877,144.601,19.5688,-0.846659,148.57,8.09386,5.52542,119.038,10.3944,4.08576,119.143,10.3125,4.81252,121.268,7.94349,6.22187,121.327,1.47809,-12.3756,137.286,1.64783,-13.0421,135.545,-0.0069986,-12.9149,135.574,7.97989,14.8314,149.663,8.0051,14.6234,152.132,8.14783,15.0625,147.733,5.71433,16.255,147.641,5.52622,15.7951,149.833,8.46051,15.4191,146.086,5.83029,16.1349,145.675,9.25275,15.1766,142.853,9.90885,14.6909,141.226,12.6145,12.9006,138.391,10.9291,13.9246,139.646,13.5831,-6.55901,142.98,15.2446,-4.78093,144.0,15.4801,-4.31487,142.294,13.9376,-6.2637,140.997,7.61605,-8.71449,146.999,5.9703,-9.18011,146.833,5.80998,-8.10947,149.2,7.27712,-7.6014,149.341,4.38313,-9.49711,146.68,4.32794,-8.47746,149.052,1.22739,-9.84566,146.569,1.22862,-8.6814,149.053,2.79069,-8.68752,149.016,2.81286,-9.73921,146.609,1.17541,-10.8327,144.078,2.63818,-10.7401,144.147,2.55574,-11.66,141.776,1.16885,-11.7005,141.678,11.5725,-1.95308,153.689,10.1392,-3.06019,153.353,9.25855,-1.87042,154.393,10.6678,-0.608175,154.833,12.1749,-3.08554,151.899,10.7824,-4.15992,151.63,5.2458,-5.71917,152.466,6.48885,-5.10009,152.641,6.91737,-6.27387,151.176,5.54777,-6.84409,150.986,4.83863,-4.86109,153.465,5.90869,-4.22893,153.604,11.5418,-5.30854,149.705,12.9923,-4.1928,149.987,13.8937,-4.71325,147.838,12.3574,-5.97112,147.495,3.97804,-6.23077,152.352,4.13999,-7.29286,150.88,3.73864,-5.29402,153.316,2.68026,-7.46691,150.853,2.65063,-6.44216,152.163,1.25368,-6.2768,151.828,1.55727,-5.49024,152.907,2.58576,-5.58417,153.166,1.28401,-7.31138,150.785,3.62938,-12.8313,135.24,3.84484,-13.0569,133.579,1.81201,-13.484,133.923,5.27087,-14.9582,113.15,3.55485,-15.9216,112.875,3.11234,-15.4482,115.55,4.96263,-14.744,115.744,6.76045,-13.5754,113.436,6.56617,-13.383,115.808,6.99321,-13.8151,111.034,5.4131,-15.0335,110.479,3.66016,-15.7624,110.004,8.06421,-11.2733,135.564,8.26093,-11.1389,134.172,5.83314,-12.1849,134.678,5.82568,-12.3008,136.221,10.4911,-9.60096,135.319,10.4984,-9.34716,133.695,14.6138,-1.56809,127.882,14.1308,-1.81733,125.492,13.9414,-4.897,125.906,13.8207,-4.56565,128.364,13.3336,-2.16009,123.278,13.2718,-5.08703,123.625,14.0053,1.24916,125.517,14.6463,1.58784,127.764,13.2758,0.771391,123.313,8.01707,13.5242,154.751,5.25535,13.9215,154.868,5.38087,15.1455,152.32,2.46151,13.6677,154.672,2.50547,14.8732,152.341,2.56393,15.8602,149.83,2.67246,16.5221,147.444,2.79802,16.8161,145.306,15.094,10.9817,137.995,17.7562,8.45566,138.309,19.1017,5.66482,138.955,13.1323,11.4579,135.611,16.0158,8.90917,135.514,18.1626,2.99448,138.869,17.3672,5.61915,135.819,16.7002,2.42684,135.859,16.9829,0.35495,138.661,16.031,-0.659054,135.854,4.50974,-12.5192,138.288,3.58377,-12.565,137.341,2.71741,-12.268,139.578,4.23394,-12.1952,139.783,14.95,-4.10859,136.544,16.1636,-1.94222,139.476,14.5477,-4.36084,133.277,15.613,-1.21421,133.101,15.2435,-1.44595,130.401,14.0967,-4.43661,130.841,14.2489,-5.50607,139.112,15.5356,-3.40179,140.841,14.3962,-3.30074,119.198,13.8942,-6.49831,119.66,13.3202,-5.6785,121.484,13.7086,-2.66752,121.039,14.4883,-3.87734,117.424,14.0236,-7.03658,117.866,12.6362,-9.66505,118.199,12.4559,-9.13436,120.217,12.1919,-8.31581,122.257,14.5657,-8.74855,111.256,12.935,-10.8407,110.771,12.9466,-10.3544,112.738,14.6244,-8.1859,113.033,11.038,-11.8716,114.279,12.8197,-10.0064,114.507,11.083,-12.0715,112.256,15.5873,-6.1083,111.568,15.4726,-5.42324,113.138,10.7086,-11.3166,118.411,10.4029,-10.7127,120.627,14.1573,-7.33756,116.18,12.7055,-9.81078,116.309,10.9351,-11.6488,116.318,13.9507,-0.0839777,118.917,14.3204,-0.698196,117.064,14.678,-4.34243,115.902,14.5685,-1.27857,115.64,12.4035,2.27961,119.057,13.1582,1.99478,117.194,13.6704,1.56017,115.613,13.1877,0.275181,120.986,12.0095,2.72767,121.192,8.56155,5.49155,116.938,11.08,4.03197,117.182,2.58993,6.49855,118.317,2.72328,6.09705,116.007,5.6952,6.12006,116.512,5.48486,6.54602,118.711,6.03535,6.1764,114.676,2.83397,6.06427,114.357,9.19459,5.70207,115.134,11.8171,3.98906,115.485,16.0983,2.06971,133.046,14.7589,4.86728,127.807,15.3841,1.84407,130.29,15.7996,5.29276,130.291,12.8063,7.70699,128.266,13.8507,8.49074,130.623,4.21445,14.7873,135.145,9.28118,13.4789,136.138,7.79328,14.4982,138.385,3.90031,15.7539,137.261,6.38861,15.674,142.192,6.92462,15.14,140.36,8.80793,15.4323,144.459,6.0624,16.0767,143.905,3.18532,16.7289,141.57,2.95524,16.8925,143.414,4.11582,-13.31,131.798,2.00099,-13.9062,132.062,6.05072,-12.2411,133.118,6.26182,-12.2902,131.388,8.62237,-11.3484,128.584,8.41185,-11.4761,126.034,6.36058,-12.85,126.482,6.33962,-12.4075,129.198,8.29056,-11.7973,123.448,6.25452,-13.1659,123.723,4.23378,-13.4252,129.535,4.26643,-13.9291,126.791,2.05355,-14.3335,126.875,2.08265,-13.9945,129.649,4.21585,-14.289,123.972,2.00924,-14.5827,124.121,10.671,5.89599,123.521,8.08886,7.43334,123.749,5.37038,8.72083,123.785,5.36597,7.4381,121.156,2.52805,8.29535,124.096,2.49263,7.23938,121.102,2.73639,9.74089,126.875,5.95107,10.0652,126.41,13.7264,4.39462,125.624,12.6371,3.65801,123.407,11.678,6.87948,126.0,8.93263,8.63429,126.382,9.91744,9.65973,128.642,6.66881,11.2518,128.696,10.8399,10.499,130.952,11.7929,11.1347,133.32,8.20796,12.8414,133.378,7.42952,12.1922,131.004,2.9939,11.3784,129.17,3.8794,13.7762,133.161,13.3129,2.56604,111.002,15.0492,-0.096224,111.366,14.6254,0.597165,112.81,12.9002,3.26812,112.457,12.4437,3.74195,113.922,9.80418,5.63793,113.519,10.3308,5.22876,112.089,3.4804,16.3645,139.49,3.46013,5.82891,109.906,3.38984,6.02799,111.484,7.59478,5.85881,110.398,7.02049,6.11355,111.727,0.00928182,5.02999,115.832,8.97878,-13.1336,113.889,9.08626,-13.2826,111.629,8.85348,-12.8765,116.138,8.5633,-12.3485,118.424,15.0565,-4.83209,114.487,14.9426,-1.80842,114.353,15.3992,-2.40777,113.071,6.467,6.23757,113.111,8.48611,-11.2044,132.566,8.66467,-11.3218,130.739,15.7309,-3.14067,111.646,6.54899,-13.4342,118.42,6.37603,-13.2749,121.06,8.29074,-11.9082,120.875,4.70516,-14.7861,118.494,4.35345,-14.3062,121.216,2.1698,-15.2618,118.376,2.13025,-14.5688,121.366,1.18883,-14.8287,116.905,4.10321,-11.5145,141.892,4.19843,-10.5666,144.214,12.4567,-7.86007,124.42,10.4256,-10.3277,122.996,10.5488,-9.91967,125.317,9.96288,-9.95139,141.911,11.9397,-8.389,142.261,12.4879,-8.40917,140.028,10.4907,-10.3198,139.551,7.73214,-10.8591,141.903,8.05917,-11.4917,139.575,5.79859,-11.2772,141.964,5.93649,-12.0351,139.797,9.57477,-9.00593,144.485,11.3608,-7.80181,144.718,10.6606,-10.1774,137.283,12.7013,-7.86153,137.743,12.7017,-7.26286,135.503,7.68766,-9.79822,144.36,8.15967,-11.7212,137.38,5.86158,-10.3151,144.28,5.95241,-12.4192,137.845,13.0484,-6.42968,145.217,1.71523,-16.0989,112.586,1.41913,-15.6527,115.206,0.000176454,14.9423,139.709,3.58455,-15.451,106.868,1.8028,-15.7239,106.412,1.81425,-16.0085,109.642,12.5942,-7.5624,126.688,12.6391,-7.34747,129.072,10.8828,-9.68722,129.914,10.8818,-9.59857,131.948,12.5108,-7.11781,131.362,10.7842,-9.79885,127.651,12.4509,-6.98073,133.42,1.27566,-12.1922,139.382,-0.00894248,-13.462,134.023,14.66,-4.89131,145.887,16.6187,5.53309,133.029,14.9153,8.92987,133.086,3.37779,12.7643,131.194,0.661402,-5.66517,152.223,0.769322,-5.19198,152.824,-0.00540918,-10.8369,144.024,0.0111346,12.0829,133.937,-0.0165048,-13.987,121.523,-0.00374688,-16.0431,109.5,6.96501,-3.51325,153.802,8.0514,-2.77283,154.064,8.86147,-3.88826,153.081,7.6806,-4.52905,152.845,9.49106,-5.02205,151.46,8.2239,-5.70016,151.321,10.1309,-6.21167,149.537,8.7252,-6.96483,149.434,9.24902,-8.02682,147.11,10.7997,-7.09808,147.241,0.0114996,10.9711,132.144,14.4097,-7.70448,114.591,14.1468,1.10744,114.189,3.0469,6.07278,112.887,9.15199,-13.5879,109.061,7.1393,-14.2043,108.218,5.32581,-14.865,107.493,11.048,-12.3925,110.009,10.837,4.5832,110.721,11.6591,8.69346,157.339,10.6429,11.2854,156.356,11.4592,3.63212,157.069,11.246,5.70204,157.702,10.2031,8.30484,157.966,8.34313,11.2521,157.216,10.7107,1.99025,156.031,3.40794,-4.69253,154.238,4.34855,-4.27409,154.407,5.2849,-3.65884,154.582,8.01848,-0.849183,154.984,9.36902,0.421336,155.391,5.1467,12.3219,156.955,2.38674,12.4021,156.662,2.44642,-5.01268,154.09,1.56805,-4.90626,153.845,0.785824,-4.74373,153.7,6.10723,-2.75096,154.666,6.97667,-1.86958,154.792,-0.00554764,-4.68991,153.676,1.69186,-14.081,99.5676,3.36553,-13.9367,100.182,3.31709,-13.4709,96.8137,1.69167,-13.5562,96.2701,13.9512,-8.25089,106.818,12.7166,-10.0185,105.84,12.7292,-9.27303,107.496,13.9976,-7.39664,108.306,7.89151,-12.7045,101.227,6.29225,-12.9785,99.5918,6.61637,-13.501,102.387,8.16884,-12.8295,103.718,9.56095,-12.145,102.868,9.7877,-11.9419,105.088,4.83554,-13.2716,97.9733,4.97702,-13.7139,101.183,5.10117,-14.2669,104.331,6.92883,-14.0139,105.223,3.43579,-14.7109,103.549,1.7365,-14.9417,102.989,8.79216,-13.3855,106.27,13.8166,-9.14596,109.21,14.822,-6.78547,109.809,10.5899,-12.3815,107.429,11.323,4.0226,109.283,8.02164,5.7579,108.978,8.49488,5.9643,107.415,11.8427,3.77085,107.644,14.7827,-5.90461,107.06,14.7444,-4.96534,108.617,1.87947,6.59478,104.759,5.07578,7.33992,105.3,4.73864,6.71026,107.044,1.73914,6.12471,106.483,1.37637,5.65793,108.94,1.57315,5.78601,107.877,4.40579,6.12929,108.439,14.735,-2.09269,108.408,13.8057,0.913405,107.95,14.2936,0.496235,106.127,14.9909,-2.94488,106.674,13.6322,1.65211,109.52,15.0258,-1.13995,109.815,12.3907,3.82862,105.793,11.2117,-11.2974,104.437,11.3515,-10.8193,106.377,12.3661,-11.0721,108.423,15.368,-4.08972,110.01,8.99793,6.37662,105.607,0.000580854,-14.9579,102.787,-0.00174442,5.82445,106.293,16.9039,-5.48553,93.3687,17.4933,-4.91906,88.9902,16.5875,-7.91749,88.5651,15.9926,-8.33923,92.7348,16.5398,-6.07573,96.3928,15.5568,-8.80688,96.2175,16.7057,-2.1023,93.3953,17.0574,-1.47597,89.052,16.5556,-2.66795,95.7478,14.7393,-10.1239,87.9,14.2539,-10.3609,91.8678,17.1206,-7.54058,84.3943,18.0077,-4.40797,84.7177,15.0547,-9.83158,83.9748,13.39,-10.8329,98.1553,15.0935,-9.24427,99.2877,13.8198,-10.6242,95.2516,11.448,-11.6647,96.3998,11.7453,-11.6109,93.7724,12.0821,-11.6436,90.636,9.19594,-12.0519,98.5129,11.1185,-11.7257,100.351,11.2347,-11.7138,98.3822,9.19252,-12.0714,96.5036,9.31732,-12.0631,94.5249,9.49351,-12.0384,92.1551,12.8464,-10.6341,103.986,11.1368,-11.6353,102.415,15.1057,-6.64341,105.143,14.2188,-9.01223,105.012,15.2622,-3.54278,104.607,15.5459,-3.83815,102.55,15.8479,-3.80418,100.605,15.8589,-6.91233,101.199,15.5546,-6.93283,103.102,16.1091,-6.69734,99.2989,16.2025,-3.52359,98.5756,15.2461,-0.0266154,99.744,15.507,0.238208,97.5089,15.5045,0.803906,94.9054,15.2771,1.10092,92.8006,1.25524,-9.85303,88.8307,2.37198,-10.0686,89.3333,1.43422,-8.15408,88.2522,0.863869,-8.43738,88.8461,0.502756,-6.86307,88.8249,0.54947,-4.99,88.5904,2.74108,-8.96824,86.3994,4.70256,-10.7471,86.979,4.41117,-9.89168,84.1988,2.64925,-7.67514,83.855,7.0744,-11.6949,88.0033,6.91423,-11.1235,84.9328,4.19675,-8.90336,81.4233,2.58096,-6.376,81.2896,6.68203,-10.4647,81.9354,3.09378,-9.95619,88.5501,5.04226,-11.1947,89.4121,7.17819,-11.9478,90.6546,1.38781,-4.89752,83.9837,1.38525,-6.52348,86.3649,0.901156,-1.51887,84.6806,0.801576,-3.45904,86.7485,3.21262,-12.7392,93.9998,1.70051,-12.9104,93.2735,4.61624,-12.555,95.2316,4.35059,-11.776,93.1604,3.10651,-12.0392,91.8513,1.68402,-12.3189,90.7903,2.92582,-11.227,90.2846,1.61755,-11.2064,89.1823,0.984282,-0.57384,87.5581,0.596002,-0.401534,89.2572,1.76712,2.19753,87.0911,1.78446,3.64795,90.2339,5.20623,5.23939,87.6461,5.26122,6.13962,90.1651,9.13031,5.6725,87.8872,9.43788,6.30472,90.7865,12.9313,4.17194,91.7898,12.5883,4.25242,88.3526,15.3209,1.75143,88.7982,13.429,4.31086,93.7528,9.95719,7.02826,92.5725,5.68187,7.74241,91.5959,1.91935,6.46856,91.802,5.58443,8.86508,98.0191,5.63279,8.7926,94.7279,10.216,7.42717,95.5057,10.1467,7.41354,98.4285,1.50452,7.88692,94.6151,5.58139,8.43048,100.764,1.709,7.81906,100.567,1.42903,8.11712,97.8351,9.90892,7.17036,101.054,9.50024,6.80099,103.464,5.40875,7.96315,103.186,1.9294,7.19476,102.779,13.7566,4.19934,96.4184,13.6958,4.08041,98.9674,14.6938,0.130548,104.014,12.9541,3.9064,103.649,14.9858,-0.106637,101.857,13.4158,3.96327,101.339,7.33923,-11.9976,96.5779,7.16307,-11.9324,94.6531,7.56974,-12.2688,98.8262,6.00028,-12.3796,96.9446,5.69049,-11.7328,94.7325,5.46472,-11.396,93.0049,4.05056,-11.1408,91.5934,5.30716,-11.326,91.3573,3.70711,-10.5989,90.1972,7.15448,-11.9886,92.8016,9.59007,-12.0533,89.2747,8.85034,1.73959,38.2533,11.3933,0.971512,38.3478,11.4974,1.75004,34.4028,9.05953,2.29359,34.3055,8.79605,0.732985,42.5964,11.4623,0.157521,42.5779,13.7371,2.69864,38.9447,13.4738,3.37495,34.8441,13.9273,1.83189,43.094,6.5465,8.96923,22.8124,6.87396,6.80498,22.8333,6.61137,6.95704,19.1,6.39182,9.02117,19.0587,7.59143,4.91101,22.939,7.39416,5.0532,19.1573,8.79753,3.55179,19.1868,8.93722,3.32557,22.9786,14.8842,13.5283,35.9107,16.2828,11.0436,35.7328,16.8331,11.0931,40.0164,14.9766,13.3942,40.3948,14.0981,12.7087,31.9073,15.3712,10.7922,31.8511,12.4122,14.2221,40.173,12.4008,14.4183,36.0103,11.9193,12.8386,27.4361,12.1923,13.5151,31.9667,10.1174,13.8771,31.8728,10.1715,13.2948,27.4279,13.3869,9.9683,22.571,14.4045,10.4802,27.5287,13.2678,11.9707,27.4819,12.4425,11.2853,22.5541,9.94698,12.7805,22.6144,11.3176,12.1673,22.5681,9.89511,14.314,35.8939,12.791,9.70891,19.0314,13.2165,8.0485,19.0824,13.8171,8.06018,22.6619,17.2852,-7.04762,80.0288,14.9675,-9.16453,79.6145,12.5205,-11.5394,83.2669,12.3874,-11.6734,86.9365,12.4581,-11.032,78.9321,18.0889,-3.90643,80.3564,14.6881,-8.36593,75.4371,12.2009,-10.1878,74.7634,9.24031,-10.871,78.404,9.42663,-11.6512,82.5309,8.99948,-9.92233,74.4361,6.45389,-9.66998,77.9479,6.18834,-8.80046,74.0909,4.22477,-7.66477,77.6059,4.31453,-6.41129,73.9323,5.82388,-7.84762,70.3727,4.24567,-5.17346,70.3212,2.79489,-5.00518,77.5004,3.00478,-3.71452,73.8564,3.21066,-2.41646,70.2866,5.42248,-6.84116,66.7716,4.03459,-3.99391,66.7537,8.63701,-9.27027,70.5867,8.29454,-8.36388,66.9756,11.6394,-8.78753,71.0641,11.1521,-7.7682,67.532,14.2139,-7.53999,71.5568,13.6153,-6.70139,67.979,10.7042,-6.77996,64.3434,7.99515,-7.38836,63.6704,12.9318,-5.82808,64.7882,10.3229,-5.86276,61.5217,7.88724,-6.20085,60.727,12.2615,-5.0364,61.9444,14.9911,-4.54057,64.9595,14.0006,-3.89143,62.0535,11.9164,-4.83641,59.0482,9.83088,-5.32548,58.8084,13.5568,-3.44238,59.1865,5.11478,-5.81002,63.3239,5.37461,-4.50457,60.1902,3.97484,-2.81417,63.3337,4.35402,-1.61014,60.2257,15.9736,-5.27033,68.1656,16.8619,-2.51438,68.5724,16.0194,-2.1783,65.2529,15.1612,-1.89848,62.1112,3.3395,-1.16868,66.7711,3.48988,-0.0114875,63.3927,3.21173,1.73189,66.948,2.68167,0.555095,70.3877,3.54476,2.7728,63.6305,4.07078,4.61739,67.3283,3.08891,3.65405,70.6977,2.17355,2.59342,74.2122,2.09538,-0.703032,73.904,1.47734,1.38637,77.8591,1.62992,-2.02449,77.525,1.0287,0.016935,82.1189,1.34686,-3.42975,81.611,3.88474,1.07512,60.1981,3.86073,3.62742,60.4088,5.16783,5.95606,60.9231,4.63736,5.46917,64.0689,4.77357,6.08842,71.0789,3.6892,5.35811,74.6605,2.69216,4.59656,78.3795,6.08606,-2.81979,58.132,7.76152,-4.54234,58.4397,7.60242,-3.6278,56.3103,6.35783,-1.77479,56.2033,6.33349,-1.06497,54.2335,7.41423,-3.00104,54.3149,5.48584,1.09481,54.0688,5.31164,0.35491,55.9718,5.03411,-0.424592,57.8702,9.42946,-4.81801,56.3375,11.5807,-4.56254,56.3776,13.3979,-3.21989,56.5001,14.5601,-1.46374,59.316,14.2442,-1.05542,56.7504,15.3164,0.662216,59.4406,15.0703,1.16385,56.9443,15.5531,3.14424,59.747,15.2659,3.70666,57.1927,15.1692,1.62458,54.6392,14.2043,-0.715791,54.3919,15.1362,4.36223,55.0136,13.1152,-2.79896,54.2284,15.346,1.98308,52.2188,14.0793,-0.34196,52.0843,15.2029,4.76741,52.6161,15.3302,2.52954,49.7885,15.5851,5.4653,50.238,13.5877,-0.120252,49.6017,11.2738,-3.89819,54.2167,9.28892,-4.02683,54.2599,11.1742,-3.36648,52.1794,9.17653,-3.41074,52.2283,12.8408,-2.21725,52.2094,9.0865,-1.18609,48.8041,9.20132,-2.31095,50.5625,11.1447,-2.45529,50.4366,11.4107,-1.36775,48.692,8.91195,-0.117641,46.3595,11.3996,-0.525399,46.1906,13.8769,0.893344,46.6253,7.59546,-2.2282,52.3886,5.11048,3.349,53.9934,4.68523,2.69959,55.664,4.37557,2.2491,57.3248,4.88698,4.87917,55.6929,5.44274,5.39206,54.1698,4.4216,4.51894,57.3872,5.72475,4.23826,52.1873,6.00279,6.26922,52.4897,5.89332,6.24764,56.0854,6.36423,6.69189,54.4227,6.84783,7.78534,52.6032,5.98694,1.95489,52.1072,6.47929,2.90502,49.8915,5.98101,5.3237,50.0387,6.65426,-0.32812,52.179,7.32321,0.194663,49.7711,7.39609,1.65476,46.9375,6.2707,3.9925,47.3309,5.53227,6.54984,47.5187,7.34849,2.7363,43.0154,5.60325,4.82826,43.4188,4.66597,7.66572,43.7134,6.12184,7.58394,50.352,6.90428,9.50594,50.3967,5.64985,9.15332,47.5505,6.73284,11.4691,47.5251,8.61495,10.7192,50.3403,8.34851,9.02219,52.74,9.01289,12.4191,47.3338,10.3087,9.31612,52.8343,10.7898,10.8804,50.2561,9.89636,7.88978,54.9442,8.01461,7.64422,54.7177,9.68383,7.12315,57.1359,7.74679,6.88522,56.6818,9.59903,6.62059,59.5199,7.5738,6.55918,58.8601,2.07573,3.52914,82.9491,5.34004,6.18711,83.63,5.85419,7.06535,79.041,7.36254,6.68992,61.5036,9.50557,6.40403,62.1837,11.6744,6.16013,59.8702,11.7066,5.95146,62.5805,11.7307,6.87835,57.4505,13.6322,5.59027,57.4509,13.726,5.03344,59.9194,12.3075,8.64547,52.922,14.0055,7.12203,52.9723,13.7069,6.3292,55.2284,11.8493,7.50749,55.1574,14.7841,8.2742,50.7233,12.9554,10.0699,50.456,15.8922,9.34382,47.9462,16.3168,6.34813,47.6718,15.4738,3.46905,47.1853,13.8568,11.3536,47.647,15.6974,4.26726,43.6882,16.8413,7.12016,44.1084,14.579,12.4939,44.261,16.6746,10.3035,44.3602,16.8058,7.87724,39.7444,6.74671,13.087,43.8215,9.43212,13.6087,43.7052,5.02395,10.6959,43.8251,6.98459,14.0329,39.6421,5.01681,11.7499,39.4068,5.45636,11.8092,35.3006,7.23959,13.9964,35.6057,8.02322,13.2465,31.7367,6.32612,11.6486,31.5474,4.58139,8.62961,39.0469,5.06509,8.93953,34.9466,5.97584,9.04636,31.4034,6.51011,8.92815,27.5592,6.94768,11.4374,27.5009,9.78507,14.3091,39.8157,12.0058,13.3338,43.8729,5.34653,5.60735,38.744,7.12269,3.47509,38.4763,7.7682,4.75349,27.3578,9.03755,3.02766,27.309,6.91607,6.66099,27.4599,10.8258,3.20654,22.9926,11.1011,2.67419,27.3576,7.60945,4.54109,31.0096,9.1098,2.70796,30.9199,11.3674,2.26621,30.9984,12.8344,4.00305,27.5494,12.3453,4.38068,22.9529,5.79537,6.22507,34.644,6.52085,6.59744,31.1853,8.34923,12.9546,27.4447,7.08554,11.2275,22.764,8.3367,12.6501,22.6894,6.99362,11.0083,19.0223,8.11094,12.4063,18.9898,15.6917,4.96498,39.456,15.2253,5.39138,35.2392,14.1684,5.92696,27.6721,13.2069,3.75744,31.3171,14.7738,5.73996,31.5992,16.206,8.08358,35.5457,15.5447,8.21477,31.7879,13.368,6.1065,22.7913,12.8529,6.32705,19.1146,11.9428,4.71309,19.1356,14.7625,8.21179,27.6584,9.43318,6.52296,84.1814,9.93448,7.23463,79.6368,13.3955,5.47242,80.0417,12.9274,4.96035,84.4485,13.7549,5.69931,76.0686,10.4736,7.32843,75.673,16.1426,3.1527,76.2871,15.9655,2.84955,80.3045,15.6253,2.40267,84.6591,16.0938,3.20637,72.4704,14.0105,5.70154,72.3074,10.9675,7.03353,71.9421,15.9188,3.14246,68.9346,14.1591,5.57724,68.8136,16.595,0.317901,68.8677,16.9072,0.155765,72.4567,17.1258,-0.112605,76.3221,6.65614,7.61262,75.1932,7.62664,7.83318,71.4991,11.358,6.57514,68.5234,8.59432,7.60224,68.1021,5.80422,7.01029,67.7192,11.6372,6.25685,65.4003,9.20773,7.04203,64.9763,6.7454,7.12086,64.4693,16.2595,0.428764,65.5443,15.7901,3.11956,65.6622,14.1306,5.36909,65.5887,17.9094,-3.39934,76.1809,17.4977,-2.95302,72.2185,17.1209,-6.50861,75.8161,16.6618,-5.91953,71.8262,17.2225,-0.602232,80.4004,17.2415,-0.990894,84.7829,15.7387,3.17699,62.6064,15.8551,0.519636,62.386,13.9152,5.11146,62.6327,9.58431,-11.9498,85.8784,5.59192,6.11756,57.9434,11.4257,12.1967,47.2943,7.3185,4.12131,34.4465,10.5614,3.55575,19.1914,9.33312,-12.1404,100.663,13.168,-10.9054,100.086,14.6079,-9.34356,102.986,-4.71545e-006,-4.58068,89.1395,6.31994,7.02901,16.1489,6.18638,9.08682,16.0651,7.22081,5.04401,16.2958,8.70359,3.65055,16.3859,12.439,9.64861,16.2631,12.8546,8.12385,16.2889,6.88033,10.9051,16.0677,12.5369,6.50432,16.2777,11.6832,4.92906,16.2538,10.3969,3.77469,16.3405,9.61006,12.7323,18.96,10.93,12.0265,18.9509,11.9674,11.0079,18.9816,7.93714,12.2702,16.1021,9.38457,12.7748,16.1289,10.7248,12.0457,16.157,11.7037,10.939,16.2065,0.00163789,-11.0105,88.6416,0.000443313,3.23785,90.8163,0.00193799,6.84285,97.7255,14.8655,-9.37919,101.147,13.008,-10.865,101.96,-0.000202375,-12.4195,90.293,6.11362,6.8344,14.0135,7.16361,4.87535,14.3142,7.13109,4.6131,12.9293,5.79485,6.45975,12.0903,5.9362,9.06048,13.8893,5.16731,9.66797,9.53377,4.80245,7.15437,9.52432,5.0179,7.16523,7.26887,4.93363,9.62016,7.38317,5.50627,9.00798,11.7915,6.32791,5.12484,11.3103,6.13549,4.92393,10.0559,6.04707,4.29697,8.0781,8.35087,0.600758,8.00134,7.16406,1.06627,6.95018,7.51002,2.65611,9.54533,6.37736,1.36863,5.48329,5.49071,4.3722,5.84937,7.32222,3.60663,10.9268,6.16192,11.4777,9.71002,5.61752,12.0031,7.52658,6.92248,13.5705,7.87892,7.29261,12.8752,10.0041,9.12123,14.2831,7.90407,9.03409,13.4603,10.2155,5.17958,12.2423,5.71226,6.63846,14.0575,5.87587,4.60521,9.81663,5.62922,8.73455,2.90062,11.3931,8.98416,2.03533,10.091,10.0572,2.98229,11.3029,10.2112,2.07372,10.0186,10.6513,0.326868,8.30502,11.3945,-2.32219,6.21381,10.4592,-2.39376,6.31714,9.58268,0.301258,8.35613,9.31851,-2.21224,6.2855,11.5573,4.99377,14.2697,10.301,3.83418,14.4446,8.66391,3.63445,14.5165,12.0695,5.10209,10.1666,12.0509,3.34676,8.66589,11.2525,2.56261,9.55413,11.1529,3.64691,10.8588,12.6147,12.2082,6.24544,12.7198,12.6967,4.26764,13.3892,10.4409,4.56622,13.194,9.999,6.639,11.2157,14.0234,6.05197,10.9885,14.344,4.1138,12.2817,12.9379,2.41476,13.1796,10.9084,2.64595,10.5727,14.3268,2.33507,12.07,10.9599,1.34145,11.0875,12.4292,1.2285,10.1548,13.4728,1.28403,13.169,5.64398,6.24383,13.4881,6.33333,4.53839,13.9123,3.96923,4.05854,13.5264,3.10012,5.39938,14.8276,1.16057,3.33867,14.2666,0.237702,4.51643,12.9731,2.17829,6.47342,13.5394,-0.672408,5.25067,12.663,4.19032,7.48887,13.2774,9.39153,7.58345,13.2134,8.03399,6.22193,13.205,7.87837,7.30879,13.1483,-10.8555,1.243,13.6645,-10.764,1.368,13.7228,-11.1112,0.934723,13.4075,-11.2297,0.726661,13.7623,-11.1504,0.483381,14.0069,-10.8987,0.731368,14.3544,2.01178,0.853163,15.0971,1.87702,1.98719,14.2181,4.6179,2.55224,13.4726,4.71944,1.02367,13.7486,6.99161,2.81484,12.8807,7.0878,1.18661,9.49052,11.8646,0.76899,10.3079,10.4729,0.728046,13.4065,9.33443,2.76691,12.4442,9.33253,1.29625,11.3854,6.64864,0.650383,10.8898,8.9209,0.695404,8.72428,13.1713,1.08676,7.96314,11.1318,0.617765,7.11167,12.3064,0.991635,8.62189,9.79852,0.563501,8.35704,14.4372,2.29416,8.94301,14.7264,5.95768,8.60601,14.7724,4.04695,6.34015,13.9452,3.99238,11.1583,13.4446,8.01801,4.44475,9.71711,3.93574,4.71307,9.36555,2.40449,4.95887,11.6093,2.31649,4.90749,12.0711,3.95981,6.26611,13.4408,2.26435,5.99851,10.9373,1.03193,5.79874,9.10822,1.18023,4.72168,7.19305,3.97388,5.14232,7.06222,2.52406,6.14751,7.18086,1.43163,10.7408,12.7047,10.4917,9.18992,8.27627,0.585913,13.8787,-10.1981,0.429865,13.8651,-9.77021,0.684577,13.4244,-9.84297,0.582559,13.5594,-10.3729,0.340982,13.0084,-10.1593,0.666718,13.2039,-10.5322,0.410775,13.696,-10.8484,0.314054,14.047,-10.5074,0.501229,13.1979,-10.9258,0.474337,14.3928,-9.03123,0.642722,14.6376,-8.98178,0.579605,14.5379,-8.57707,0.739761,14.2442,-8.7441,0.834974,14.9029,-8.23512,1.01266,14.4857,-8.17707,0.974634,14.904,-8.6489,0.755348,15.2122,-8.94203,0.883782,14.8871,-8.95519,0.602029,15.0791,-9.25869,0.649856,15.2546,-8.52036,1.20946,14.1647,-8.3703,1.11565,14.1227,-8.73405,1.40551,14.2067,-9.12257,1.02814,14.1491,-8.00514,1.29529,14.4675,-7.80619,1.1142,14.1075,-8.30969,1.69246,14.4334,-9.38405,0.707348,14.4769,-9.48828,1.24868,14.5773,-9.69402,0.903765,14.7836,-9.4191,0.588403,14.9348,-9.76362,0.867917,5.75884,4.63679,2.68093,6.68005,4.87561,1.63803,6.18211,-1.49654,2.41905,6.97007,-1.25624,1.04869,7.04091,1.83905,1.38556,6.1917,1.8794,2.60447,5.38393,4.5011,4.10082,6.04416,1.6832,3.97766,7.2123,-1.86116,5.06441,6.43466,-1.67046,3.8277,12.8252,-8.62785,1.28489,12.8806,-9.12869,1.25045,13.315,-8.89897,1.06745,13.2422,-8.40134,1.06932,12.9022,-9.6276,1.02485,13.3436,-9.33077,0.886913,12.6416,-8.85642,1.871,12.6963,-9.40444,1.76649,12.7442,-10.0117,1.4236,12.5842,-8.02227,1.12536,13.0421,-7.72119,0.931198,12.5468,-8.46288,1.85717,14.0989,-9.25043,2.2084,14.0923,-8.97308,1.67505,14.1137,-9.49897,1.37377,14.0929,-9.87805,1.76526,13.6228,-9.51418,2.52093,13.6614,-10.2026,1.99526,14.1213,-10.0262,0.919367,14.0437,-10.4262,1.19738,14.2236,-4.87134,3.92359,14.9812,-4.32268,3.6577,15.0299,-5.52365,3.35058,14.5821,-5.84392,3.46877,13.5829,-5.58276,3.89009,14.1636,-6.25686,3.34081,15.1316,-6.23764,2.91448,14.7712,-6.58247,3.01036,14.3658,-6.85623,2.88841,15.5599,-4.90631,3.19842,15.3095,-5.44352,3.14072,15.7387,-5.48501,2.76992,15.3698,-5.87291,2.78056,13.6547,-6.61641,3.39551,13.9642,-6.63567,3.16906,14.0607,-7.07431,2.81957,14.3477,-7.46638,2.38671,14.0908,-7.50371,2.33218,14.8476,-7.23063,2.58503,13.0946,-6.77389,3.52946,12.7076,-5.82771,4.0595,12.5045,-7.04553,3.42208,11.8146,-6.29254,4.0078,12.1595,-4.53479,4.79646,11.2284,-4.80093,4.86833,12.9791,-4.16037,4.70929,13.3053,-7.50655,3.12777,12.7327,-7.6878,3.06238,12.1808,-7.37595,3.32273,12.2795,-7.82575,3.05166,11.7586,-7.27493,3.60635,13.4143,-8.14548,2.84602,12.7459,-8.33344,2.63933,12.3733,-8.27753,2.58014,13.788,-7.29379,2.97399,13.9319,-7.88676,2.47212,15.32,-8.89679,1.50862,15.2875,-9.32226,1.1351,15.3225,-8.34536,1.88346,15.2384,-8.02328,1.48379,14.8834,-7.8087,1.188,8.92655,-11.5404,2.20911,9.8284,-11.1334,1.85219,9.98505,-11.8075,1.74488,9.05812,-12.1027,2.06487,10.3232,-11.7044,0.933084,10.1135,-10.8812,0.977609,8.83132,-10.9454,2.40475,9.70372,-10.4191,2.07173,9.83365,-10.0591,1.17155,12.8299,0.988983,0.628971,12.1084,3.6536,0.530535,10.4812,2.4069,0.545708,11.0486,-0.160784,0.604242,15.2022,-9.55528,0.844486,6.29554,-7.65778,1.13236,6.04048,-6.54581,1.13192,5.86089,-6.6818,2.33259,6.2014,-7.86165,2.14188,6.7146,-8.48685,1.04275,6.63061,-8.79441,1.91056,6.41173,-6.73952,3.52855,6.74945,-7.92674,3.16682,7.17018,-8.90732,2.83858,7.07783,-9.24411,0.933215,6.9475,-9.62334,1.70538,7.72363,-8.86582,0.533622,7.28454,-8.17128,0.473825,6.88021,-7.44433,0.41351,7.49717,-9.78493,2.58774,7.26256,-10.0153,0.764716,7.99701,-9.59324,0.419603,8.76066,-8.61625,0.682755,8.10829,-7.95996,0.253537,8.92566,-9.33152,0.638118,7.78822,-7.31079,0.0800126,8.51622,-7.37925,0.0333782,8.89697,-7.84745,0.249719,9.42247,-8.37154,0.822248,8.206,-8.68392,3.40811,8.55902,-9.50037,3.0714,7.83361,-7.7939,3.81208,9.22202,-8.27228,3.46065,9.53658,-8.8849,2.73097,9.59513,-9.67943,2.3618,8.74649,-10.2747,2.7359,7.69043,-10.5731,2.34636,9.01259,-7.60478,3.90271,9.69836,-7.54657,3.65242,9.87961,-7.92781,3.29992,9.9765,-8.39016,2.64297,10.4337,-7.63067,0.352567,9.6435,-7.75906,0.306516,10.2011,-8.57296,0.857457,10.9645,-8.4619,0.690102,11.7826,-8.37127,1.0087,11.2172,-7.5022,0.4903,10.7448,-9.38706,0.995469,11.3413,-9.23996,0.798306,11.9948,-9.1483,1.11368,11.8021,-7.3633,0.596728,12.1754,-8.04182,1.11459,12.2335,-7.14564,0.617382,11.6923,-6.36476,0.315104,11.4425,-6.77262,0.323646,10.7956,-6.67,0.210085,12.6963,-6.88153,0.611686,13.554,-7.55531,1.10657,13.162,-6.67527,0.656578,13.7013,-8.31584,1.24723,9.84072,-6.76947,0.112233,10.8578,-5.69254,0.306139,9.56798,-5.70876,0.288187,13.8112,-6.18645,0.641589,13.4489,-5.42542,0.393947,13.2764,-5.88658,0.44252,13.5128,-6.47026,0.681224,12.8498,-5.81313,0.388863,12.696,-4.70851,0.405445,12.2316,-5.97451,0.337456,11.7944,-5.1295,0.358432,14.1989,-5.83416,0.590639,13.9069,-4.94737,0.378924,14.3748,-6.67052,0.878196,14.0177,-7.05339,1.11091,14.655,-5.52214,0.617084,14.497,-4.67258,0.424045,14.8578,-6.4261,0.988327,16.0288,-4.45273,0.720545,15.8269,-3.56251,0.60877,15.2158,-4.1406,0.507008,15.4637,-4.84177,0.683404,16.6198,-4.23006,0.924642,16.527,-3.20463,0.920697,16.1256,-2.03433,0.894012,15.0609,-2.71065,0.643982,14.3993,-3.69799,0.501639,15.9774,-5.27158,0.761475,15.4442,-5.66625,0.950926,15.4045,-6.13247,1.03895,15.8432,-5.89582,0.744804,16.3839,-5.8335,0.763938,16.5321,-5.1205,0.865075,12.3815,-8.39504,1.83439,12.0528,-8.53032,2.77415,11.85,-7.92805,3.27656,12.2655,-8.64093,1.85252,14.01,-8.58107,2.37663,13.5194,-8.79205,2.73545,12.8838,-8.91042,2.52869,15.2084,-6.84329,2.29249,15.361,-6.26955,2.19959,15.6556,-6.08463,2.20382,15.3438,-6.15797,1.53433,15.2583,-6.28196,1.53444,15.1719,-6.75743,1.55803,11.3132,-8.55864,3.11664,11.1824,-7.9049,3.42115,12.1193,-9.23099,2.66244,11.4505,-9.33667,2.94992,12.3355,-9.17024,1.86025,10.4853,-7.8471,3.32394,10.5453,-8.55505,2.75482,10.8053,-9.41591,2.51515,10.2386,-8.82518,1.74329,9.8238,-8.58829,1.69149,10.5399,-9.47781,1.68421,9.55303,-8.81199,1.59273,16.2749,-2.47625,2.70114,16.5193,-2.0257,1.7413,16.805,-3.21147,1.64721,16.6043,-3.59454,2.48513,16.9026,-4.27164,1.51562,16.7441,-4.58157,2.21978,15.7837,-1.14078,2.93208,16.0382,-0.56274,1.79181,15.3113,-0.398796,0.811133,16.8372,-5.18719,1.33116,16.7283,-5.9547,1.12654,16.7334,-5.4354,1.91916,16.6788,-6.20016,1.63915,16.32,-5.05712,2.72454,16.3026,-5.78357,2.31308,16.2481,-6.44867,2.00518,15.6592,-6.54582,1.97887,9.98272,-13.0976,1.31459,10.0646,-12.5369,1.59299,10.343,-12.4758,0.935618,10.0632,-13.0998,0.861781,9.39061,-13.4333,0.835797,9.37862,-13.3452,1.35828,8.22794,-13.0077,0.567346,8.01446,-13.0898,1.16858,8.60906,-13.4409,0.978746,8.63784,-13.3236,0.619689,8.72693,-13.3796,1.37165,8.39482,-12.9807,1.68943,9.27675,-13.2144,0.468716,9.23137,-12.773,1.84045,11.6611,-12.4958,1.14257,11.4526,-12.1532,1.4187,12.0107,-12.0841,1.54034,12.1306,-12.4871,1.12087,12.1288,-12.4545,0.716073,11.5838,-12.4171,0.815455,11.2327,-12.0433,0.992261,12.529,-11.9062,1.32669,12.5403,-12.2991,1.06367,12.718,-11.729,0.937126,12.5983,-12.2164,0.750798,14.4178,-7.98775,2.23681,14.1123,-7.87578,1.79834,14.0702,-7.55097,1.76724,13.9738,-7.54823,1.7255,14.1347,-7.5959,1.29822,13.7699,-7.15311,1.13297,15.3132,-6.41574,1.54236,15.1569,-5.88207,0.995417,12.4468,-12.0205,0.547514,12.0481,-12.1213,0.498902,11.6341,-12.1724,0.568327,12.4651,-11.5988,0.584811,15.4621,-7.97168,0.540673,15.2159,-7.91984,0.762476,15.3885,-8.22136,0.931292,15.6684,-8.30932,0.773775,15.9078,-8.12833,0.598267,15.7841,-7.82544,0.421445,16.1629,-7.88507,0.751397,16.0987,-7.49602,0.465196,15.4042,-7.53944,0.479466,15.662,-7.50837,0.377054,15.8178,-7.19314,0.408783,15.4484,-7.14243,0.546158,11.6182,-10.2286,2.72152,12.2702,-10.0131,2.50577,12.4557,-9.82326,1.78395,16.1867,-7.11756,1.7305,15.6172,-7.10187,1.80322,16.5754,-6.88724,1.34661,11.3178,-11.6258,1.64965,11.884,-11.5667,1.85816,11.1663,-11.0592,1.96073,11.7746,-11.0132,2.29979,12.3681,-10.7604,2.11015,12.4197,-11.358,1.65192,15.1513,-7.66275,1.04662,15.1877,-7.27803,1.31316,15.5448,-7.59938,1.5077,15.4518,-8.02246,1.22052,15.2468,-6.84377,1.49688,16.0632,-7.66987,1.39287,15.9212,-8.12623,1.10898,14.9106,-7.89861,2.36094,14.4363,-8.55913,2.04664,14.9656,-8.58499,2.13543,16.3833,-7.4356,1.01402,9.60322,-9.3509,1.41089,9.16075,-10.0908,0.382258,8.15504,-10.4127,0.145412,9.45665,-10.9755,0.168311,8.37921,-11.3209,-0.00671482,12.336,1.39725,7.3698,12.8786,-1.43598,5.73922,12.2035,-2.00542,6.05218,11.6033,0.735268,7.98654,4.77273,7.22172,5.64529,12.9046,6.50525,7.41602,13.273,7.5044,8.79812,12.5625,5.71214,8.44714,13.7561,-1.5743,0.617934,8.24522,-5.24739,0.441005,9.31711,-3.95962,0.510348,6.72291,-4.41208,0.78549,7.21486,-5.40083,0.472956,6.73178,-6.52685,0.390771,8.26488,-6.36997,0.257822,14.3764,-2.85753,4.25078,13.6802,-3.58443,4.54775,15.1623,-1.97259,3.82473,15.7089,-3.25185,3.41979,10.0989,-4.8831,4.87439,10.5657,-6.28574,4.18379,8.83867,-5.0289,4.92643,8.24841,-2.08014,5.9306,9.22868,-6.6368,4.26046,7.46957,-5.07471,4.63197,7.60447,-6.695,4.26834,6.35444,-5.04475,3.74088,13.3588,8.67098,4.74628,6.91932,10.4115,0.656899,13.1955,9.58225,8.80825,12.8387,6.9087,10.7711,12.9958,9.04295,10.5315,9.71545,5.96174,0.661146,7.11489,9.19337,0.70565,13.815,-9.27528,1.02818,13.7752,-8.83227,1.23272,14.0258,-8.41286,1.75417,12.8601,-10.5849,0.921151,14.4453,-9.06147,1.66118,16.129,-4.22515,3.09696,14.9573,-9.13318,1.7135,14.957,-9.57926,1.31864,10.1414,-7.27392,3.70286,10.9577,-7.21322,3.75464,9.0517,-7.07232,0.149802,7.10205,-10.4167,1.53775,8.69688,-12.141,0.0504109,7.53079,-11.6774,0.518879,7.83199,-12.4144,0.526218,9.02454,-12.7842,0.230747,7.36579,-11.8787,1.34468,7.61615,-12.5247,1.28353,7.95608,-11.8295,1.97447,8.12035,-12.3893,1.88173,13.4963,-4.15259,0.433232,15.0562,-5.21155,0.664644,14.9333,-4.64468,0.493416,14.8619,-7.27319,1.15645,14.4455,-7.34601,1.05691,13.9387,-7.8685,1.73736,9.8865,-12.5545,0.373482,9.73219,-11.8432,0.203559,9.8578,-13.0019,0.508224,12.3974,6.5767,14.2204,12.2663,11.6782,8.1684,11.8871,11.1238,10.4804,15.2481,-7.65474,2.08172,15.1896,-7.42231,1.56436,11.4359,-11.8022,0.578846,11.9469,-11.626,0.439822,15.2021,-7.58621,0.645898,15.1738,-7.30967,0.785841,12.9781,-9.57936,2.34004,13.0605,-10.262,1.85392,16.5762,-6.56998,0.911806,11.0476,-11.5049,1.16235,12.6419,-11.1285,1.20565,12.398,-10.9851,0.735747,11.8418,-11.021,0.509415,11.2728,-11.2382,0.666335,10.8998,-10.9186,1.34415,12.5612,-10.4864,1.53773,12.2953,-10.3613,0.945289,11.7262,-10.4274,0.651508,11.143,-10.6547,0.793399,10.7409,-10.2419,1.53041,10.9889,-10.2984,2.27813,10.9968,-10.0708,0.926583,12.1552,-9.78171,1.09412,11.5722,-9.8822,0.781512,16.0119,-6.78067,0.538609,15.5471,-6.73701,0.665349,15.2102,-6.92933,0.962347,16.3639,-7.06332,0.660306,15.2974,-6.53778,1.05684,15.6881,-6.34638,0.742927,16.2039,-6.35583,0.678486,7.34187,-10.8446,0.579034,7.2041,-11.1749,1.41295,7.82741,-11.2451,2.11404,8.9866,-0.920757,0.708141,5.86973,-4.90422,2.37371,12.4797,6.63235,12.5026,12.7027,8.17605,14.1944,12.7816,8.39593,12.3992,12.8213,10.4725,8.51088,9.2378,12.8172,14.1986,10.6349,12.1112,14.2503,75.0822,5.10841,139.679,73.6692,4.46368,140.12,74.5289,3.40549,139.766,75.4399,4.07787,139.45,75.229,6.26446,140.015,74.052,5.96022,140.394,75.6204,7.23142,140.721,76.2681,6.49717,139.647,76.6085,7.40877,140.383,76.2438,7.6115,141.662,77.1273,7.76853,141.274,74.9773,7.46925,142.047,74.4646,6.95383,141.036,76.1852,5.43075,139.315,75.6418,7.3813,143.206,76.2284,6.22868,143.886,76.3419,4.66162,144.225,75.9833,2.96907,144.126,77.8507,2.63317,143.466,78.2641,4.54956,143.566,78.1854,6.15646,143.113,76.7735,1.08128,142.855,75.0925,1.64983,143.486,77.3369,7.31668,142.455,77.669,7.66103,141.819,77.9872,7.89427,140.956,78.5154,7.71226,141.623,76.3083,4.49544,139.195,75.4351,0.568719,141.904,73.8172,1.22019,142.223,78.9641,7.26226,142.048,79.5191,6.68772,142.294,75.2782,2.50222,139.295,76.0657,3.19531,139.108,73.0868,1.92548,141.064,73.1156,2.98462,140.445,89.7557,9.09511,138.615,89.6735,9.05011,138.874,89.4043,9.0573,138.895,89.3791,9.1755,138.56,89.9571,8.86868,138.673,89.7619,8.84861,138.974,92.0101,4.14269,138.481,92.0649,4.33083,138.787,92.587,4.3758,138.679,92.7198,4.28263,138.416,92.7889,4.60463,138.766,93.1383,4.55794,138.399,87.0027,-2.12668,139.639,86.9591,-2.36194,139.442,86.5372,-2.36879,139.324,86.4701,-1.94352,139.835,85.6018,-2.0149,139.645,85.7264,-1.6403,140.13,87.1445,-1.79193,139.774,86.6448,-1.48451,140.005,85.897,-1.08562,140.288,87.0043,-1.1223,139.66,87.301,-1.5365,139.735,87.5805,-1.67481,139.574,87.5444,-1.96991,139.519,87.4074,-2.28029,139.411,86.0518,-0.585008,139.955,85.1526,-0.136814,140.279,85.0356,-0.667252,140.66,84.8853,-1.27979,140.518,86.0936,-0.320271,139.338,87.0276,-0.724284,139.1,85.2474,0.037853,139.556,84.211,0.370878,140.66,84.5972,0.410247,139.758,85.178,-0.0758239,138.856,85.9855,-0.375166,138.68,84.5484,0.37094,138.979,88.01,-2.10029,139.207,87.8451,-2.48087,139.104,87.9083,-1.55458,139.243,88.6713,-2.34563,138.876,88.4848,-2.76474,138.783,88.8113,-1.89165,138.76,89.3231,-2.62364,138.57,89.1547,-3.01962,138.501,89.6588,-2.27484,138.352,87.2225,-2.76793,138.337,87.4152,-2.68978,138.922,88.2758,-3.06955,138.479,88.0971,-3.11213,137.972,89.1832,-3.39022,138.158,88.9756,-3.41225,137.666,89.9409,-3.58002,137.869,89.781,-3.66339,137.447,90.5213,-3.74257,137.707,90.4765,-3.88389,137.344,89.6092,-3.40514,138.216,89.8518,-3.45765,138.103,90.2783,-3.33475,137.995,90.6819,-3.45667,137.918,90.006,-3.26416,138.165,90.9736,-3.84968,137.658,91.1002,-3.97775,137.342,91.0666,-3.90425,136.986,90.5143,-3.75483,136.948,89.7525,-3.47285,137.031,91.2069,-3.64203,137.797,90.8417,-3.08596,137.931,91.3825,-3.26946,137.799,90.4208,-2.97759,138.034,90.9562,-2.75111,137.759,91.3789,-2.96999,137.661,90.3679,-2.54253,138.003,90.6597,-3.39511,136.736,91.3306,-3.67813,136.87,89.8519,-3.05568,136.804,90.8407,-2.97174,136.745,90.0398,-2.58796,136.846,91.5031,-3.29639,136.874,88.9122,-3.15517,137.218,89.0006,-2.68111,136.986,89.213,-2.19135,137.092,89.6608,-3.1767,138.339,89.7942,-2.83986,138.389,90.1317,-2.94232,138.214,89.9307,-2.59784,138.336,90.1582,-2.67606,138.217,91.4951,-2.95756,137.004,91.0005,-2.6352,137.005,90.2518,-2.26878,137.169,89.4551,-1.91079,137.473,90.3886,-2.23293,137.627,89.6269,-1.92194,137.953,88.6568,-1.50123,137.833,88.3942,-1.77813,137.394,88.8189,-1.54445,138.359,91.5707,-2.95711,137.351,91.0659,-2.55874,137.424,87.5405,-1.4097,137.738,87.2759,-1.96302,137.583,88.1449,-2.30218,137.244,87.8097,-1.08905,138.194,86.6313,-1.09759,138.041,86.3678,-1.67786,137.932,86.9,-0.718152,138.485,85.4265,-1.41912,138.235,85.3486,-1.92516,138.547,86.2602,-2.2073,138.183,85.6948,-0.808759,138.253,87.1578,-2.50493,137.821,87.9517,-1.13795,138.77,85.4599,-2.11023,139.07,84.4586,-1.63559,138.914,84.5801,-1.80756,139.45,83.5161,-1.32551,139.233,83.6196,-1.49155,139.841,84.736,-1.67824,140.03,83.7929,-1.32707,140.454,84.226,4.12685,138.531,85.2141,4.20882,138.78,85.0605,4.99926,138.692,84.0636,5.00359,138.473,84.5687,3.23505,138.83,85.3444,3.62543,139.271,85.8764,5.00134,138.591,85.9369,4.27142,138.761,85.9772,3.81112,139.241,86.7055,3.84522,139.079,86.6828,4.281,138.567,86.7007,5.00875,138.353,85.9286,3.78325,139.885,86.7185,3.80196,139.688,87.6296,3.85296,139.465,87.5816,3.88779,138.894,87.5718,4.31342,138.401,85.3179,3.73043,140.008,85.2179,3.33559,139.469,85.0733,3.44479,140.065,85.4002,2.96031,139.243,85.3965,3.10085,140.057,86.1192,2.68839,139.148,86.1065,2.82847,139.887,85.2505,2.27052,138.781,85.9822,2.13424,138.696,84.2424,2.44428,138.704,87.0013,2.57771,139.599,86.9268,2.51953,138.882,86.7323,2.01359,138.416,88.0457,2.33085,139.238,87.9019,2.30556,138.555,88.0581,2.01652,139.929,86.9107,2.33445,140.286,85.9262,2.63847,140.632,87.6698,1.81784,138.12,89.1612,2.05586,138.824,88.9743,2.03822,138.209,88.7141,1.58445,137.794,86.6958,1.93377,140.76,85.7322,2.19478,141.126,87.6078,1.68447,140.424,88.5392,0.923232,137.856,87.5048,1.15015,138.196,89.7988,1.36616,137.469,90.0713,1.79422,137.883,89.6185,0.709082,137.499,86.7136,4.09981,140.209,87.7083,4.11813,139.998,87.4906,4.55887,140.27,86.6968,4.59123,140.454,85.8424,4.10982,140.464,85.831,4.6424,140.725,86.7549,5.10059,140.353,87.559,5.0161,140.193,88.0872,4.55986,140.184,88.1136,4.28605,140.108,88.1477,4.94246,140.131,85.8427,5.19086,140.602,88.5743,4.55428,140.036,88.4418,4.28805,140.005,88.6364,4.93708,140.0,89.0973,4.54535,139.803,88.7149,4.13438,139.711,89.1634,4.98955,139.759,88.5819,5.21604,139.896,88.8895,5.40424,139.535,89.8397,5.43158,139.229,89.8537,5.02113,139.526,89.7927,4.56622,139.573,88.5282,3.93948,138.701,88.6002,3.88734,139.229,89.5533,3.90302,138.995,89.4503,3.99307,138.496,90.425,3.9608,138.787,90.2927,4.07848,138.323,89.6801,4.15363,139.396,90.5911,4.22184,139.207,88.5118,4.35938,138.249,89.4123,4.40744,138.076,87.6245,5.00449,138.183,88.5669,5.00167,138.031,89.4664,5.00753,137.867,90.2414,4.48158,137.966,90.3038,5.01834,137.796,89.6137,5.53715,138.143,90.4618,5.49556,138.04,88.7002,5.5685,138.315,87.752,5.60136,138.499,86.8024,5.64326,138.683,91.1001,4.14701,138.182,91.2246,4.03807,138.616,91.0557,4.53132,137.872,91.369,4.27279,139.012,91.9618,4.20365,138.088,88.2768,1.47812,140.173,88.4592,1.72854,140.04,88.8469,1.35126,139.898,88.8412,1.6397,139.859,89.2258,1.74425,139.42,89.4931,1.2601,139.523,90.3784,1.52339,138.907,90.3673,1.10419,139.14,90.281,1.80791,138.445,91.4526,1.27438,138.654,91.2047,0.924922,138.89,91.3035,1.56445,138.204,91.1014,1.53496,137.694,92.1445,1.32435,138.068,92.2138,1.04607,138.466,92.0089,1.30012,137.597,90.8558,1.14964,137.315,91.8175,0.952733,137.239,90.6863,0.558033,137.291,91.6669,0.413113,137.174,90.6826,0.0654597,137.612,91.6356,-0.0750323,137.426,89.6197,0.212242,137.91,88.5152,0.444925,138.304,89.7687,0.0613841,138.461,90.8406,-0.110526,138.11,88.6128,0.319153,138.898,92.8319,1.08336,138.005,92.7615,0.872209,138.323,93.1818,0.72102,138.291,93.3817,0.790764,138.021,92.8044,1.05607,137.583,93.3412,0.813645,137.669,93.6351,0.405135,138.044,93.2313,0.425964,138.408,93.4315,0.500354,137.525,93.1644,0.0212049,138.396,93.5863,-0.0351804,138.011,93.3519,0.0852944,137.472,92.705,0.525992,138.475,92.3379,0.615998,138.527,92.2562,0.237221,138.489,92.621,0.134655,138.448,91.7607,0.762662,138.78,91.8407,1.00475,138.725,92.0793,0.931744,138.662,92.1059,0.663527,138.679,91.676,0.404059,138.742,92.0303,0.319261,138.639,91.0908,0.495535,138.864,91.8846,0.0895913,138.563,91.6343,0.143571,138.632,91.9443,-0.0841913,138.345,91.1349,0.0667911,138.573,91.7362,-0.25979,137.898,89.9995,0.265251,138.923,90.229,0.652648,139.146,88.7003,1.00898,139.883,89.3387,0.848402,139.523,88.802,0.555234,139.45,88.4994,0.790019,139.849,88.1138,0.864434,140.037,88.1306,1.12806,140.168,87.5976,0.788107,139.98,87.4285,1.24077,140.436,86.4082,0.993691,140.361,86.4953,1.42655,140.789,86.3985,0.767806,139.667,87.4697,0.58296,139.324,87.4454,0.697392,138.676,86.47,0.880703,138.952,85.4892,0.948667,139.893,85.421,1.16827,140.651,85.6542,1.02295,139.134,85.5354,1.61674,141.137,84.5014,1.25127,140.812,84.6541,1.77153,141.449,84.8168,2.46409,141.516,86.5744,1.33414,138.456,92.5859,0.252211,137.213,92.5082,-0.17734,137.417,93.1322,-0.219474,137.532,93.1861,-0.346945,137.908,92.5061,-0.354509,137.838,93.0022,-0.256057,138.235,92.5265,-0.19686,138.227,90.462,4.60295,139.413,90.5147,5.01093,139.375,90.9539,4.41009,139.282,90.9412,4.64635,139.339,90.9874,4.97994,139.325,90.742,5.39807,139.084,91.065,5.22314,139.225,91.5409,5.38703,138.919,91.3212,5.22571,139.171,91.3594,4.98531,139.237,90.6264,5.63662,138.552,89.7574,5.66447,138.704,91.2921,5.4745,137.956,91.4527,5.61527,138.431,88.823,5.68146,138.915,92.2614,5.332,138.728,92.2585,5.51231,138.355,92.1708,5.4122,137.93,92.7755,5.22423,138.651,92.9277,5.29452,138.365,92.8784,4.95788,138.779,92.2659,5.00453,138.93,91.7264,5.01444,139.059,92.0597,5.0101,137.717,91.1289,5.02743,137.738,92.8233,5.27826,138.028,92.9256,4.96936,137.931,92.1901,4.6403,138.936,91.6627,4.64673,139.083,91.3065,4.65847,139.25,91.2017,4.42047,139.222,83.6963,1.06512,140.991,84.0804,0.901167,140.552,83.4397,0.741043,141.209,82.8304,1.28637,141.692,83.687,1.42288,141.344,84.408,0.840092,139.876,84.7941,1.04387,139.956,91.9784,4.55056,137.807,92.849,4.57198,137.956,93.2298,4.95303,138.393,92.6383,4.29101,138.099,91.7285,-3.39923,137.358,91.547,-3.79447,137.363,88.5501,8.62934,139.279,88.5538,8.92746,139.038,88.8649,8.8414,139.156,88.8921,8.65902,139.242,89.014,8.86116,139.121,89.0974,8.69255,139.182,89.0503,8.99797,138.958,89.1461,8.44903,139.214,88.9438,8.40225,139.277,89.1351,8.25336,139.196,88.9911,8.21387,139.235,88.6271,8.30199,139.332,88.7569,8.0108,139.159,89.574,8.11486,138.717,89.882,8.31952,138.737,89.8571,8.30247,138.463,89.5485,8.14015,138.377,90.0016,8.59138,138.719,89.8941,8.52286,138.347,89.7729,8.37155,138.952,89.7975,8.58196,139.002,89.8349,8.81085,138.295,89.719,9.03036,138.333,89.3678,9.05908,138.208,89.411,8.73499,138.045,89.4853,8.37817,138.119,88.8272,9.01477,138.153,88.8386,8.627,137.957,88.908,9.149,138.557,84.8269,-0.562203,138.489,84.0227,-0.195044,138.659,83.6301,-0.847542,138.778,84.527,-1.16387,138.551,84.5285,0.778968,139.273,88.2155,8.89413,138.197,88.223,8.47616,138.009,88.337,9.06309,138.612,75.8987,1.85014,138.69,74.9008,1.58931,139.549,75.6919,0.747817,138.762,76.2601,2.47223,138.711,86.3481,-2.42919,138.706,87.2351,-2.45772,139.303,78.2473,0.949763,142.705,78.8021,1.81146,142.924,79.3051,2.91487,143.133,79.3816,2.29074,142.91,79.5377,3.8822,143.153,79.6629,1.40065,142.588,80.0692,2.10422,142.668,80.321,2.82941,142.835,80.5493,1.04194,142.303,80.9238,1.82445,142.395,81.2613,2.64848,142.564,79.2197,0.65612,142.415,80.1784,0.34012,142.132,78.079,0.354218,142.318,78.7174,0.0251207,141.997,79.644,-0.471286,141.55,79.6761,5.76539,142.689,79.6806,4.96604,142.982,79.9806,4.40908,142.974,80.7534,5.01178,142.569,80.7526,4.34641,142.695,80.5554,3.6499,142.818,80.7543,5.69745,142.297,80.3248,7.89697,140.136,80.7625,7.79803,140.799,79.6547,7.79042,141.196,79.1689,7.94509,140.508,78.7957,7.57263,139.733,77.5854,7.52879,140.068,79.9892,7.53459,139.451,81.9778,7.80662,139.234,82.333,7.97175,139.817,81.3698,7.91767,139.925,81.0455,7.6295,139.289,82.7348,7.85137,140.328,81.8018,7.82313,140.514,81.2125,7.43479,141.22,80.1445,7.3661,141.584,83.0782,7.55195,140.765,82.2331,7.50637,140.943,81.5925,6.97081,141.51,80.6093,6.89548,141.811,83.3064,7.04208,141.072,82.5212,7.01297,141.274,80.8049,6.32891,142.027,81.7332,6.35505,141.73,81.7332,5.68143,141.988,83.4642,6.30731,141.205,82.6203,6.34965,141.482,83.3487,5.55382,141.616,82.5964,5.63403,141.776,80.0068,6.2812,142.333,83.2602,8.00606,139.698,83.5819,7.87844,140.169,82.9491,7.91653,139.176,81.9185,7.20102,138.639,82.8636,7.45227,138.687,83.9012,7.58513,138.687,84.7594,7.67014,138.594,84.6966,8.11641,138.9,83.9264,8.01621,139.047,84.787,8.22844,139.403,84.1225,8.10905,139.545,81.0006,6.87964,138.695,84.9303,8.05981,139.87,84.3456,7.96197,140.009,85.4011,8.38387,139.259,85.3803,8.25145,138.75,85.4928,7.78982,138.484,85.4789,8.20076,139.747,86.1689,8.38062,139.647,86.0871,8.56025,139.103,86.0502,8.0091,140.001,85.5542,7.8746,140.093,85.0688,7.75215,140.219,84.5351,7.66649,140.379,85.1915,7.32714,140.328,84.6589,7.2094,140.526,78.5397,6.76805,139.062,77.295,6.66428,139.326,79.8362,6.76497,138.85,78.5062,5.70358,138.734,79.9081,5.70441,138.549,77.2373,5.60935,138.994,77.3137,4.66907,138.919,78.5653,4.71512,138.688,76.9755,2.41115,138.383,76.6606,1.61085,138.157,77.6536,1.37241,137.855,78.1153,2.25234,138.182,79.4839,1.91866,138.299,79.7779,2.84221,138.566,78.3808,3.05747,138.549,79.9501,4.66908,138.517,82.8515,4.30033,138.426,82.833,5.16656,138.382,81.4547,5.70955,138.397,82.3065,6.3366,138.367,78.8987,0.9911,137.879,80.227,0.583247,138.265,81.1745,1.50726,138.6,77.0305,0.52198,137.856,78.1024,-0.0606793,137.593,76.4105,0.933827,138.162,74.987,0.421416,140.911,76.3837,-0.208226,141.412,75.7321,-0.419389,140.524,76.0288,-0.955333,139.23,75.4256,-0.166384,139.571,76.4065,-1.09233,140.203,77.0906,-0.841873,140.983,77.0334,-1.65098,139.795,76.6544,-1.55521,138.855,77.7314,-1.4181,140.518,77.2218,-2.00348,138.476,77.5474,-2.12135,139.321,77.8993,-2.53469,138.824,77.6673,-2.3878,138.083,78.2227,-1.9578,139.986,78.5125,-2.43495,139.426,78.1672,-2.96385,138.35,78.035,-2.7913,137.696,78.7398,-2.86233,138.918,78.5941,-3.47365,137.928,78.4706,-3.24364,137.344,79.0678,-3.3472,138.465,79.0331,-3.97668,137.486,78.9027,-3.6745,136.933,79.4576,-3.88332,138.004,78.6566,-2.8391,136.911,79.0896,-3.22279,136.563,79.3474,-4.04481,136.415,79.5701,-3.5338,136.123,79.0848,-2.39058,136.777,79.4946,-2.80687,136.497,79.9765,-3.15177,136.162,79.4719,-4.48969,136.979,78.7471,-1.94575,137.041,78.2576,-2.41496,137.202,79.5799,-2.0858,137.081,79.325,-1.62713,137.358,78.4919,-1.48296,137.288,77.8917,-1.98009,137.483,79.2267,-1.19009,137.6,79.9406,-2.55033,136.78,79.8432,-4.34862,135.864,80.0963,-3.81051,135.639,79.9514,-4.82613,136.372,79.9672,-4.87952,136.801,79.8052,-4.77434,137.022,80.4806,-4.96727,136.657,80.7502,-5.08022,136.351,80.3982,-5.00495,135.908,80.3678,-4.63514,135.449,80.2879,-4.87297,136.996,79.2486,-2.14216,139.744,79.3637,-2.52925,139.242,79.8386,-1.74105,139.621,79.1977,-1.59532,140.434,80.0605,-1.42949,139.972,79.7814,-2.05759,139.228,78.606,-1.00782,141.06,79.8131,-1.09402,140.871,81.7394,-0.699921,141.095,81.2804,-0.997243,139.969,80.499,-1.06796,140.373,80.823,-0.547412,141.344,77.5028,-1.48128,137.721,78.3139,-0.918263,137.461,76.9767,-0.894881,137.945,79.3319,-0.701826,137.795,79.8645,-1.17536,138.435,80.2828,-0.790217,138.775,79.7781,-1.56175,138.095,80.3985,-0.315566,138.494,79.5791,-0.118759,137.929,81.6603,4.25962,142.386,81.5068,3.49521,142.523,82.5109,4.10168,142.12,83.3856,3.89235,141.822,83.2092,3.07666,142.135,82.3875,3.30324,142.3,83.0033,2.20261,142.117,82.1548,2.41395,142.331,83.3337,4.78309,141.836,82.5738,4.88698,142.029,81.7232,4.98552,142.254,84.0674,4.11487,141.426,84.0836,4.7523,141.554,84.062,5.41913,141.353,84.8963,5.29504,140.938,84.9416,4.7005,141.092,84.9224,4.07417,140.786,84.0673,6.608,140.776,84.0977,6.27744,140.67,84.0139,5.92982,140.941,84.3897,6.2784,140.284,84.6688,6.70207,140.304,84.7383,5.79072,140.434,85.2692,6.94457,140.079,84.8183,6.56165,139.693,85.3015,6.78467,139.593,85.8484,5.60284,140.163,84.6226,3.5772,140.768,84.1583,3.69241,141.272,84.9356,3.05492,140.979,84.0547,3.36219,141.549,81.8218,1.53507,142.095,83.7973,1.99588,141.833,83.9606,2.75617,141.897,82.3739,0.476791,141.815,81.4752,0.754269,142.038,83.2089,0.131152,141.507,82.0846,-0.157289,141.735,82.9878,-0.51663,141.427,84.1054,-0.248652,141.084,83.9614,-0.896708,140.959,82.7251,-0.978508,140.868,82.4984,-1.16256,140.135,82.6316,-0.393461,138.865,83.062,0.624684,138.695,80.5125,-3.43793,135.761,80.9316,-3.30534,136.107,80.3986,-2.96124,136.457,80.7734,-2.97376,136.939,80.3025,-2.51227,137.313,81.2993,-3.40783,136.588,81.4487,-3.78004,137.056,80.9471,-3.26968,137.449,80.4544,-2.7331,137.85,80.7855,-3.81131,137.769,80.3082,-3.12532,138.163,81.2505,-4.34776,137.283,79.9532,-2.02272,137.711,80.0783,-2.20119,138.327,79.9159,-1.71585,138.842,81.0765,-3.8356,135.425,81.4702,-3.74189,135.789,80.6638,-4.16023,135.272,81.5421,-4.37964,135.246,81.8915,-4.30766,135.562,81.7831,-3.88094,136.259,82.1369,-4.38851,135.977,81.164,-4.59625,135.11,81.7766,-4.9257,135.254,82.0936,-4.87602,135.496,81.4628,-4.94881,135.131,81.8669,-4.22971,136.675,82.1727,-4.61993,136.349,81.7104,-5.32029,135.463,82.0652,-5.2921,135.675,81.3126,-5.21419,135.288,81.1656,-5.32357,135.594,81.4323,-5.39625,135.839,80.8694,-4.94435,135.263,80.8148,-5.19595,135.688,82.304,-4.85782,135.816,82.2737,-5.1674,135.857,82.3143,-4.89165,136.115,82.1772,-5.14913,136.174,81.9368,-4.93977,136.518,81.8267,-5.37524,136.086,81.5041,-5.17873,136.419,81.0714,-5.24907,136.114,81.631,-4.65776,136.833,81.2092,-4.98287,136.691,80.9388,-4.82874,136.988,80.9377,-4.48827,137.467,80.6886,-4.72169,137.277,80.4699,-4.48739,137.566,80.7834,-4.31118,137.647,80.0644,-4.69322,137.318,79.7898,-4.35578,137.607,80.2576,-4.0717,137.853,79.933,-3.52286,138.219,84.879,5.79437,139.104,84.5738,6.2003,139.286,83.9105,5.95164,138.695,84.5865,6.51663,139.074,84.1529,6.98642,138.671,83.1808,6.71406,138.511,84.9759,7.13597,138.653,85.2151,6.81674,139.061,85.6832,7.28879,138.572,85.8371,7.01985,138.975,86.1874,7.94598,138.37,86.3493,7.47216,138.449,86.4829,7.22035,138.825,86.869,8.12419,138.187,87.0213,7.65071,138.266,87.1705,7.41203,138.643,86.5277,7.21085,139.3,87.2612,7.41429,139.101,85.8748,6.99461,139.467,86.0798,8.40146,138.606,86.7981,8.58187,138.431,86.85,8.7656,138.913,84.9783,5.94097,139.737,84.6089,6.27119,139.763,85.886,5.79504,139.549,85.8653,5.65977,138.918,86.8558,5.50197,139.933,86.8787,5.73279,139.329,87.8544,5.69207,139.131,87.8889,5.40938,139.777,85.0541,1.56474,138.722,84.0334,1.68652,138.699,84.8569,1.01384,139.15,84.0274,0.899251,138.822,85.6848,7.47803,140.177,85.8216,7.14982,139.919,86.4858,7.40813,139.774,86.1692,7.65523,140.058,87.2941,7.63425,139.545,86.9877,7.71826,139.796,86.7104,7.63873,139.883,86.5891,7.82292,139.978,88.0907,7.80575,139.294,87.9919,7.6096,138.919,87.5138,8.03457,139.671,88.1175,8.16534,139.478,87.0149,7.94374,139.844,87.8561,7.62113,138.499,88.6315,7.79725,138.797,88.4877,7.81665,138.409,87.4037,8.39402,139.617,88.0133,8.54427,139.414,86.9216,8.22974,139.805,86.7686,8.40359,139.717,86.9956,8.6193,139.426,87.8215,8.82709,139.157,86.493,8.10664,139.933,88.3358,8.05793,138.1,87.7003,7.85713,138.153,87.5661,8.30499,138.068,89.0561,7.976,138.357,88.9346,8.21906,138.052,89.1538,7.95685,138.73,87.5326,8.74848,138.287,87.6346,8.94184,138.728,89.2182,8.15306,139.058,89.5433,8.2624,138.985,89.3029,8.46818,139.151,89.5214,8.51903,139.103,89.2498,8.754,139.125,89.4742,8.80685,139.077,86.486,8.32001,139.798,85.8192,1.47074,138.67,88.0382,-2.82698,137.485,88.2529,5.21504,139.977,92.7056,0.727445,137.27,77.3051,0.148856,142.083,77.9367,-0.436797,141.56,83.843,7.59767,140.577,84.0122,7.12387,140.802,79.5871,-2.96341,138.719,79.9522,-2.53875,138.678,80.0731,-1.36602,139.236,80.4296,-1.1315,139.511,81.1746,0.106676,141.92,77.1289,3.15521,138.727,82.4409,-0.991562,139.424,81.2859,-0.814668,139.33,81.3192,-0.07274,138.772,76.304,-0.217101,138.312,74.7831,0.768691,140.079,82.9155,5.76068,138.405,81.2748,2.63562,138.605,81.3997,4.54728,138.425,81.9882,0.718792,138.676,82.8873,3.40392,138.531,82.8074,2.55838,138.632,81.3707,3.5825,138.504,79.918,3.74434,138.57,78.5483,3.8638,138.692,77.3076,3.88596,138.889,82.768,1.69694,138.696,76.4881,3.85836,139.108,74.074,2.42934,140.11,74.1813,1.05839,141.229,73.9995,1.55847,140.617,2.92115,-11.6999,167.706,2.78672,-11.7495,167.292,2.4861,-12.1114,167.646,2.56603,-12.0745,168.13,7.66018,-3.52052,173.467,7.54104,-4.10163,173.398,7.57812,-3.92311,174.435,7.69972,-3.44358,174.223,8.28594,-2.24784,174.316,8.24669,-2.70186,174.421,8.73512,-2.04564,175.298,8.73747,-1.80896,174.889,7.99896,-3.1011,174.394,8.31315,-2.29173,175.395,8.14595,-0.905738,171.759,8.3758,-0.449759,171.714,8.05253,-0.906337,171.066,7.92787,-1.29683,171.238,8.5141,-0.656944,172.681,8.8402,-0.12762,172.732,8.74804,-0.583423,173.783,9.10406,-0.0459322,173.949,8.76791,0.330031,172.852,9.11618,0.398194,174.2,9.08348,-1.10735,175.093,9.12221,-1.05108,175.583,8.64203,-1.07973,175.722,8.66449,0.42042,174.242,8.32045,0.377422,172.927,7.84708,0.00729097,171.802,8.27748,-0.0641564,171.706,7.93509,-0.615648,170.863,7.52843,-0.569476,170.927,7.4802,-1.36584,170.177,7.21614,-1.40112,170.384,7.25397,-2.25752,169.806,7.48407,-2.06496,169.676,7.91114,-0.15645,172.79,7.54042,-0.398287,171.887,8.16564,-0.144958,173.812,7.79374,-2.68062,174.922,8.0536,-1.33595,175.166,7.28491,-0.818599,171.106,7.19905,-0.534766,171.896,7.10738,-0.816356,171.218,7.09993,-2.13845,169.847,7.05149,-0.83895,170.548,7.22677,-2.80654,169.838,7.44559,-2.7233,169.764,7.77985,-2.24804,169.698,7.72605,-1.6333,174.712,7.62744,-2.84817,174.729,7.37441,-3.11926,170.378,7.65265,-2.84065,170.225,7.98693,-2.36269,170.248,8.0535,-1.68023,170.567,7.89199,-1.45553,170.151,7.97089,-1.78876,170.952,7.9273,-2.29428,170.936,7.54656,-3.07494,171.388,7.38668,-3.43081,171.027,7.48713,-3.71878,171.719,7.67308,-3.26766,171.993,7.7315,-3.42377,172.707,7.5542,-3.96512,172.511,7.79068,-2.95246,172.875,7.82245,-3.0546,173.645,8.85004,-0.817117,174.523,9.17097,-0.418768,174.785,8.8891,-1.13812,174.805,9.23263,-0.123952,175.179,8.76926,-0.0823697,175.266,8.24569,-0.472613,174.67,7.72349,-0.778429,174.24,7.62995,-0.452025,173.503,7.43654,-0.375818,172.698,7.94181,-2.73342,173.728,8.05123,-2.30498,173.756,7.86003,-2.194,173.245,7.64928,-2.52698,172.845,7.74911,-2.94548,172.187,7.66964,-2.67041,171.678,7.53389,-2.98689,170.928,7.71501,-2.74503,170.931,6.78324,-1.06134,169.242,6.62265,0.114681,169.314,6.43851,-0.0959665,167.891,6.44589,-1.4684,167.765,7.69939,-2.55987,175.586,7.78124,-1.32593,175.4,7.1809,-0.0206338,171.842,7.076,0.852815,171.978,6.84732,0.442503,170.65,7.68473,-0.405772,174.796,7.545,0.0812751,173.907,7.37616,0.219454,172.913,4.8653,4.45581,167.735,5.07143,4.60147,166.15,5.75885,3.30169,166.169,5.58212,3.27273,167.779,6.03597,2.14616,167.839,6.10285,2.12773,166.225,6.26323,1.01035,166.305,6.30016,1.04535,167.898,3.77161,5.56692,167.718,3.88987,5.85668,166.195,2.48063,6.22825,167.707,2.4627,6.48393,166.193,6.26969,-0.1209,166.317,6.16304,-1.24636,166.135,1.24294,6.4428,167.718,1.19432,6.50188,166.17,7.37539,-4.71161,172.269,7.40483,-5.01423,173.37,7.30175,-4.3285,171.331,7.22252,-3.91003,170.544,7.14382,-3.44788,169.901,7.03674,-2.92059,169.444,6.90504,-2.15058,169.244,3.46952,-8.76311,183.461,4.66589,-7.87055,182.949,4.51462,-9.02527,181.907,3.35486,-9.99103,182.257,5.539,-7.93661,181.467,5.66757,-7.0032,182.328,4.44669,-9.85552,180.824,3.29099,-10.8581,181.066,5.49457,-8.6513,180.46,1.02812,-11.9646,181.204,1.04533,-11.1927,182.516,1.03599,-10.2612,183.701,4.43677,-10.4225,179.818,3.27809,-11.3995,180.013,5.47994,-9.21732,179.446,6.35908,-7.33068,180.033,6.34325,-7.8583,178.892,1.02045,-12.4198,180.081,2.1289,-11.5679,181.185,2.11476,-12.0619,180.084,2.16801,-10.7338,182.46,2.19299,-9.5875,183.743,6.32518,-6.81062,181.077,6.23851,-6.40089,181.814,7.1449,-6.13191,173.22,7.15201,-5.64558,171.916,6.85524,-6.63901,171.392,6.74265,-7.44595,172.866,7.113,-5.12151,170.835,6.85692,-6.00412,170.244,7.05725,-4.57864,169.955,6.81112,-5.36596,169.278,6.97342,-3.97581,169.272,6.73296,-4.67423,168.496,6.83342,-3.29611,168.762,6.58151,-3.91741,167.919,6.27335,-8.43456,177.8,5.46199,-9.69483,178.515,6.13588,-9.07684,176.968,5.42776,-10.1257,177.68,4.45548,-10.8254,178.928,4.4819,-11.1479,178.088,3.30435,-11.7523,179.116,3.34406,-12.0165,178.272,2.12612,-12.3806,179.164,2.13924,-12.6012,178.318,1.02182,-12.7076,179.153,1.01627,-12.8846,178.315,-4.64157e-005,-12.7957,179.152,-4.56568e-005,-12.9566,178.317,6.59509,-8.17907,175.912,6.95938,-6.94268,176.623,7.00682,-6.35636,178.288,6.99935,-5.88593,179.638,6.90199,-5.51546,180.869,7.13163,-6.50425,174.743,6.77111,-7.67148,174.539,6.05038,-2.54697,166.797,6.32198,-3.13469,167.473,6.63649,-2.48595,168.366,5.80154,-2.26465,165.609,5.40942,-10.5245,176.862,6.013,-9.63056,176.246,4.52971,-11.4462,177.23,3.41236,-12.2469,177.404,5.86124,-10.0503,175.579,5.33484,-10.8286,176.093,1.03882,-12.9939,177.508,-4.55456e-005,-13.0436,177.521,2.18714,-12.7662,177.474,1.05233,-13.0257,176.712,2.2202,-12.8058,176.647,3.42928,-12.3486,176.556,4.50896,-11.6413,176.409,6.34437,-8.92748,175.394,6.11242,-9.46809,174.937,-4.54537e-005,-13.0819,176.76,6.4486,-8.5585,174.389,6.37668,-8.55216,173.369,6.1615,-9.2075,174.256,6.07244,-9.2391,173.579,6.1159,-8.94317,172.524,5.84843,-9.51842,172.977,6.35213,-8.25199,171.781,6.47796,-7.56168,170.724,6.47185,-6.90591,169.624,6.41147,-6.22016,168.599,6.32411,-5.50706,167.717,6.17754,-4.79598,167.033,5.90044,-4.11554,166.516,5.54163,-3.59134,165.903,5.20687,-3.22828,164.873,2.24683,-12.5835,170.579,2.00228,-12.7499,170.01,1.81033,-13.1437,170.281,1.95856,-13.0006,170.87,2.97003,-10.773,164.875,3.23677,-10.6717,165.561,3.62678,-10.0748,165.402,3.34581,-10.1308,164.395,2.70428,-12.0103,168.697,2.10062,-12.497,168.497,2.20902,-12.4306,169.084,0.863888,-12.1058,164.368,0.990493,-12.0518,163.68,1.21108,-11.3867,162.34,1.15769,-10.4787,161.965,1.11771,-11.9274,163.048,3.8181,-10.3008,166.364,4.30479,-9.69551,166.544,4.11872,-9.24622,165.34,3.41744,-10.7437,166.284,2.92839,-11.0718,165.76,3.0955,-11.0617,166.27,2.55768,-11.0696,164.237,2.2891,-11.4532,164.735,2.6859,-11.1986,165.261,2.08158,-11.6825,165.172,2.45203,-11.4553,165.609,2.91911,-10.4552,163.606,4.85078,-8.92151,166.888,4.68947,-8.27107,165.661,4.3933,-7.78599,164.571,3.72111,-9.11354,163.76,2.43129,-12.3227,169.681,2.69528,-12.1859,170.286,3.23752,-11.7462,169.925,2.92941,-11.9066,169.294,2.93108,-12.0505,170.938,3.5472,-11.5715,170.652,4.35594,-10.7739,170.249,3.75742,-11.238,169.403,4.71972,-10.1552,169.15,4.12036,-10.734,168.63,3.36263,-11.4898,168.795,3.68013,-11.0725,168.137,3.09963,-11.625,168.229,3.37015,-11.2618,167.66,3.13189,-11.3843,167.247,2.92691,-9.65782,162.998,4.85596,-9.59371,168.085,4.3014,-10.2399,167.662,3.84731,-10.6651,167.304,3.47976,-10.9533,167.0,3.17907,-11.1677,166.771,1.5724,-12.9882,169.437,1.38646,-13.4108,169.946,1.50319,-12.9769,168.763,0.786253,-13.3459,168.875,0.785567,-13.4381,169.367,-4.42706e-005,-13.6343,169.324,0.755757,-13.7491,169.832,2.05741,-12.7409,171.444,2.42417,-12.4203,171.19,1.7925,-13.1966,171.313,1.78152,-12.9982,171.715,2.68538,-11.32,165.955,2.85123,-11.2738,166.291,2.94886,-11.3264,166.626,2.93889,-11.4816,166.955,2.0597,-12.5306,167.983,1.48587,-13.0006,168.246,0.793807,-13.3666,168.412,1.55991,-11.9113,164.734,1.7398,-11.741,164.174,1.95918,-11.4886,163.595,2.18402,-10.8995,162.913,2.14779,-10.0314,162.455,5.85813,-9.0266,171.118,5.98011,-8.4508,170.124,5.98538,-7.82651,169.049,5.92618,-7.14206,167.972,5.69123,-5.80038,166.192,5.83931,-6.447,166.991,5.23153,-9.83713,170.641,5.38619,-9.33788,169.625,5.40279,-8.0677,167.404,5.44264,-8.7525,168.546,5.29699,-7.37922,166.308,5.09497,-6.78233,165.401,1.90781,-9.08415,162.371,2.73264,-8.74286,162.865,2.34515,-7.71888,162.792,3.47154,-8.05933,163.439,3.05566,-7.20133,163.258,4.09628,-7.17947,164.049,3.7008,-6.43869,163.728,4.80355,-6.22368,164.791,4.39788,-5.59937,164.312,5.40698,-5.20694,165.591,5.00046,-4.65978,165.032,0.977894,-9.45061,161.969,0.78544,-8.38051,162.085,1.5885,-8.05685,162.378,4.59757,-4.11928,164.173,2.64785,-6.28833,162.906,2.00555,-6.71215,162.52,3.29707,-5.57633,163.216,3.96833,-4.88291,163.611,1.77754,-13.472,170.431,1.71277,-13.8057,170.541,1.74062,-13.7093,170.891,1.847,-13.3805,170.815,1.48044,-14.1507,170.661,1.4804,-14.0521,171.021,1.12743,-14.5097,170.761,1.11568,-14.4002,171.148,1.67764,-13.5936,171.235,1.39819,-13.905,171.398,0.677179,-15.0047,170.757,0.670537,-14.9291,171.293,1.29189,-13.7165,171.757,1.06473,-14.2326,171.55,1.01474,-14.0283,171.941,0.64838,-14.7362,171.751,0.637657,-14.5086,172.172,1.57297,-13.4358,171.558,1.80695,-13.3672,171.111,0.637054,-14.2918,172.599,1.00904,-13.8327,172.353,1.25249,-13.5175,172.153,1.51487,-13.2495,171.949,1.57669,-13.6035,170.157,1.5787,-13.8799,170.281,0.648411,-14.8514,170.333,0.478223,-14.7703,170.144,1.3916,-14.2007,170.403,1.08444,-14.5373,170.482,0.430851,-14.4897,170.074,0.491747,-14.1716,169.989,-4.40526e-005,-14.2761,169.843,0.771535,-14.6928,170.327,0.6143,-14.6504,170.228,1.01656,-14.4959,170.376,1.37118,-13.6942,170.057,1.38921,-13.9051,170.159,0.646586,-14.1205,170.088,0.864721,-13.8192,170.016,1.17478,-13.6437,169.999,1.24955,-14.1959,170.284,0.575459,-14.4241,170.167,0.710426,-14.4056,170.242,0.805438,-14.1098,170.168,0.678406,-14.5834,170.271,0.769041,-14.6086,170.325,0.899183,-14.4456,170.324,1.06369,-14.1624,170.233,1.1908,-13.8859,170.122,1.24333,-13.7318,170.048,1.13501,-13.7116,170.03,0.976727,-13.8451,170.087,5.26872,-10.5644,174.847,4.87783,-11.0011,175.192,5.12223,-10.9668,175.521,5.58666,-10.3591,175.101,4.17313,-11.5175,175.448,4.35757,-11.627,175.791,5.29968,-10.2943,173.584,5.57557,-9.9662,173.299,5.2346,-10.3132,172.948,4.98779,-10.5651,173.322,0.760371,-13.011,175.197,0.687665,-13.1521,174.732,4.18989,-11.1369,172.556,4.33501,-11.0317,172.033,3.68384,-11.4991,172.042,3.56465,-11.5017,172.545,5.46691,-9.9727,172.506,3.34592,-12.2114,175.891,3.21763,-11.9409,175.507,1.01884,-12.9332,175.82,2.97827,-11.7715,172.656,2.83006,-11.6733,173.085,3.39492,-11.4951,172.981,3.0788,-11.8629,172.173,2.57597,-12.1281,172.346,2.51204,-11.9689,172.81,4.01275,-11.2227,172.994,2.09471,-11.9331,173.366,2.06852,-11.7281,173.698,2.33204,-11.6503,173.59,2.39884,-11.8039,173.224,4.76358,-10.7242,172.694,4.95148,-10.5025,172.187,4.55664,-10.8948,173.118,2.22346,-12.6284,175.925,2.27398,-12.2282,175.433,3.10116,-11.7091,175.32,2.27082,-11.808,175.169,4.03836,-11.4236,175.269,4.69771,-10.9775,175.004,5.01459,-10.6486,174.734,5.0429,-10.5103,173.844,4.7686,-10.7407,173.648,4.3779,-11.0329,173.484,3.8647,-11.3121,173.382,3.27136,-11.5027,173.382,2.72515,-11.5941,173.475,1.73984,-11.9507,174.923,1.53733,-12.4399,175.242,5.67707,-9.54206,171.921,5.0989,-10.2157,171.523,4.40231,-10.9041,171.341,3.69349,-11.5033,171.411,2.54359,-12.2725,171.801,3.06667,-11.9454,171.594,1.56023,-12.7927,172.87,1.53374,-13.042,172.413,1.27622,-13.3093,172.6,1.29521,-13.0634,173.041,0.636684,-14.0793,173.043,-4.25409e-005,-14.3524,173.19,0.622482,-13.8519,173.486,5.80542,-9.91848,174.646,5.47377,-10.2529,174.526,5.18973,-10.4371,174.499,1.30169,-12.7675,173.448,1.5628,-12.4999,173.289,1.32162,-12.4631,173.831,1.56991,-12.2146,173.672,1.42033,-12.1366,174.23,1.63415,-11.9436,173.978,2.17973,-12.3522,172.519,2.15626,-12.141,172.961,1.49785,-12.0632,174.626,1.23373,-12.5285,174.843,1.12193,-12.6283,174.434,1.04203,-13.3928,173.233,1.04866,-13.1126,173.649,1.03384,-13.63,172.794,1.06901,-12.838,174.044,0.641807,-13.3563,174.322,0.621832,-13.5997,173.912,1.8198,-12.7942,172.215,1.85578,-12.5655,172.696,2.13718,-12.5469,172.008,1.85146,-12.3079,173.13,1.82897,-12.0606,173.529,1.84486,-11.8226,173.827,5.85846,-9.71956,174.186,5.77857,-9.75147,173.724,5.55066,-10.1058,174.203,5.48924,-10.1298,173.883,5.26141,-10.3463,174.27,5.20995,-10.3754,174.052,3.0446,-11.5183,173.992,3.15261,-11.5303,173.725,2.59057,-11.5373,173.823,2.48111,-11.4563,174.108,2.23219,-11.4964,173.923,2.13933,-11.3065,174.214,2.01728,-11.5039,173.996,1.95084,-11.2697,174.256,1.84581,-11.5488,174.074,1.83587,-11.2854,174.278,1.74595,-11.3085,174.326,1.70191,-11.6123,174.185,1.61398,-11.6653,174.356,1.69495,-11.3178,174.415,1.65743,-11.6412,174.572,1.72271,-11.3015,174.524,1.83118,-11.5637,174.782,1.8837,-11.2974,174.652,2.23504,-11.5051,175.016,2.28818,-11.4037,174.831,3.0169,-11.5902,175.005,3.02856,-11.5785,175.197,3.94047,-11.3927,175.146,4.56075,-10.9478,174.884,4.45954,-10.9818,174.771,3.86456,-11.449,174.974,4.82633,-10.6656,174.673,4.68926,-10.686,174.625,4.95694,-10.5207,174.505,4.77595,-10.565,174.522,5.00471,-10.4734,174.351,4.79801,-10.5432,174.431,4.95915,-10.5167,174.213,4.75872,-10.6006,174.355,4.65785,-10.7285,174.277,4.82717,-10.6479,174.081,4.60344,-10.8651,173.938,4.48282,-10.9291,174.175,4.2534,-11.1416,173.8,4.17688,-11.1909,174.056,3.75275,-11.3941,173.713,3.67194,-11.4244,173.972,4.38606,-10.9286,174.301,4.5223,-10.752,174.386,4.58081,-10.7174,174.618,4.37754,-11.0023,174.717,3.81265,-11.4336,174.867,2.34119,-11.3449,174.712,1.98725,-11.2072,174.552,1.86371,-11.1968,174.465,1.83635,-11.2134,174.417,1.8575,-11.2154,174.379,2.00565,-11.1703,174.362,2.17545,-11.1797,174.332,2.45694,-11.3693,174.238,1.87105,-11.1703,174.411,1.88317,-11.1755,174.394,1.90401,-11.1484,174.436,3.00709,-11.552,174.873,2.95426,-11.4372,174.132,3.61292,-11.3735,174.108,4.60382,-10.6354,174.446,2.36462,-11.1813,174.66,2.026,-11.1444,174.501,3.01452,-11.3879,174.86,3.79118,-11.2688,174.875,4.32227,-10.9151,174.738,4.50693,-10.6833,174.646,4.4135,-10.7052,174.403,4.50032,-10.6099,174.479,4.28812,-10.8473,174.302,2.96232,-11.2679,174.126,3.59554,-11.2306,174.102,2.50867,-11.1694,174.241,2.24808,-11.0807,174.427,2.03298,-11.1383,174.427,4.12678,-11.1636,174.195,4.06341,-11.0436,174.188,4.64027,-10.5979,174.555,4.55635,-10.584,174.59,1.91208,-11.1974,174.364,1.9237,-11.1591,174.4,4.64383,-10.5788,174.496,4.5505,-10.5649,174.535,2.41385,-10.8581,174.398,2.61432,-10.8983,174.169,2.54915,-10.9031,174.69,3.0398,-10.9504,174.877,3.72111,-10.8083,174.918,4.21743,-10.6376,174.795,4.42825,-10.532,174.675,4.50551,-10.4857,174.603,4.51297,-10.4757,174.545,4.44278,-10.4917,174.474,4.31231,-10.537,174.368,4.16678,-10.6233,174.242,3.96233,-10.7523,174.111,3.59743,-10.8963,174.015,3.06685,-10.9455,174.033,2.71018,-10.4787,174.561,2.67917,-10.504,174.239,3.04463,-10.3811,174.63,3.54788,-10.3028,174.663,3.99307,-10.2992,174.631,4.25999,-10.3251,174.56,4.40122,-10.347,174.527,4.46793,-10.3764,174.523,4.41319,-10.3722,174.465,4.28333,-10.3468,174.384,4.11037,-10.3442,174.3,3.86866,-10.3437,174.214,3.5282,-10.3551,174.141,3.09433,-10.3858,174.137,6.35298,3.89789,179.958,7.01761,2.81405,178.796,7.12801,1.44586,180.424,6.48317,2.2535,181.797,5.31666,5.00981,181.07,5.48249,2.98781,183.065,7.14951,-0.233733,181.542,6.49939,0.222883,182.999,5.51389,0.506994,184.29,3.89936,5.9643,182.065,4.09411,3.64031,184.222,4.15846,0.746434,185.394,4.34656,6.08545,173.357,5.3688,5.05893,173.025,5.77143,5.21478,175.326,4.75694,6.28834,175.884,6.10852,3.91915,172.744,6.49503,4.02429,174.773,3.37648,7.20862,176.295,2.9982,6.93308,173.549,7.10673,-2.02087,182.06,6.46012,-1.87154,183.466,5.45538,-1.94537,184.705,4.1017,-2.08922,185.708,2.29234,-2.22226,186.505,2.28371,0.965436,186.274,2.1964,4.12254,185.139,2.0773,6.57108,182.899,1.72878,7.80746,176.555,1.53225,7.43919,173.695,7.28825,-3.99224,180.748,7.49307,-2.3803,180.541,7.67009,-2.81651,179.029,7.42714,-4.33389,179.336,7.54538,-0.817287,180.01,7.7491,-1.41395,178.518,7.49958,0.635119,179.032,7.69568,-0.109891,177.71,7.38374,1.82735,177.653,7.56368,0.958494,176.582,7.15113,1.9067,173.73,6.91549,2.90593,174.236,6.56573,2.8187,172.483,6.85631,1.80146,172.222,7.30783,1.0217,173.281,7.65807,0.211088,175.631,7.78214,-0.768336,176.491,7.79445,-2.00138,177.037,7.7056,-3.30185,177.49,7.45807,-4.76525,177.861,6.3874,1.21457,169.357,6.06118,2.28383,169.349,5.57063,3.37243,169.318,4.84164,4.48824,169.288,3.80503,5.50815,169.285,2.56189,6.21473,169.317,6.9251,-3.80119,182.111,6.27638,-3.8983,183.356,5.22251,-4.25444,184.462,3.87634,-4.76439,185.33,2.16751,-5.27522,186.004,1.27592,6.5612,169.321,-3.21877e-005,-2.32391,186.85,1.92361,7.71822,179.749,3.62861,7.10338,179.224,5.04098,6.11622,178.545,6.10878,4.89533,177.719,6.8074,3.6836,176.849,7.19369,2.5966,176.004,7.38776,1.64228,175.217,7.50045,0.812158,174.522,6.58204,1.49229,170.761,6.24984,2.52757,170.847,5.76249,3.60168,170.907,5.02032,4.70965,170.981,3.98207,5.72993,171.102,2.72429,6.50225,171.216,1.3786,6.93882,171.274,-2.38842e-005,4.28472,185.453,7.65073,-3.7716,175.857,7.44887,-5.15409,176.247,7.4276,-5.18481,174.672,6.5798,-5.36353,181.966,5.95394,-5.66507,182.942,4.90882,-6.28435,183.833,3.61803,-7.04865,184.53,1.90899,-7.96563,185.005,0.788249,-12.2471,165.04,2.51004,-11.4698,166.097,2.67513,-11.4049,166.324,2.28172,-11.6163,165.828,1.93608,-11.8381,165.532,1.44293,-12.0693,165.269,0.653958,-12.2036,165.936,0.690699,-12.3399,165.799,1.28867,-12.1412,165.916,1.22424,-11.9835,166.033,1.75704,-11.9084,166.034,1.68921,-11.7742,166.1,2.11083,-11.6726,166.146,2.05445,-11.579,166.154,2.2643,-11.4718,166.256,2.30622,-11.5306,166.251,2.40771,-11.4041,166.375,2.44997,-11.457,166.375,2.20945,-11.3501,166.245,2.36122,-11.2914,166.365,1.986,-11.418,166.13,1.62742,-11.5366,166.046,1.17502,-11.7229,165.991,0.622328,-11.9597,165.956,-3.96547e-005,-12.0475,165.919,2.54503,-11.4645,166.354,2.39266,-11.5372,166.198,2.19153,-11.6882,166.04,1.84952,-11.9314,165.803,1.37507,-12.1808,165.605,0.744642,-12.385,165.461,2.1843,-10.8649,166.108,2.32074,-10.8493,166.304,1.97346,-10.9121,165.904,1.64183,-11.0361,165.731,1.1797,-11.2363,165.646,0.617055,-11.5067,165.679,2.67149,-11.7803,167.016,2.42154,-12.1161,167.283,2.78085,-11.43,166.549,2.78721,-11.5517,166.778,2.03185,-12.5266,167.569,1.46745,-12.996,167.81,0.792121,-13.3841,167.964,2.34776,-12.0806,167.057,2.27427,-12.0089,166.942,1.91874,-12.3612,167.126,1.98452,-12.4684,167.279,1.41541,-12.9125,167.463,1.33911,-12.7306,167.3,0.698852,-13.0653,167.436,0.753492,-13.2853,167.601,1.87962,-12.2815,167.098,2.22673,-11.9307,166.918,0.677089,-12.9056,167.425,1.30087,-12.5893,167.292,0.670731,-12.7338,167.485,1.26959,-12.4185,167.353,2.19614,-11.8507,166.932,1.82229,-12.1479,167.137,2.57275,-11.7794,166.855,2.67239,-11.5782,166.682,2.49535,-11.7382,166.776,2.58842,-11.5556,166.636,2.45017,-11.6743,166.76,2.54436,-11.5004,166.625,2.42525,-11.6037,166.764,2.51484,-11.43,166.622,2.6532,-11.4753,166.516,2.55888,-11.4632,166.504,2.5136,-11.4127,166.499,2.47683,-11.3276,166.492,0.687323,-12.314,167.82,1.26099,-12.001,167.694,1.75375,-11.7068,167.442,2.15923,-11.532,167.105,2.40137,-11.3087,166.845,2.47297,-11.1042,166.647,2.42143,-10.9219,166.483,0.952428,-9.33673,184.488,5.25427,4.86661,164.848,5.91379,3.48319,164.749,6.15398,2.25959,164.687,6.23438,1.10271,164.693,1.24656,6.69187,164.692,4.08335,6.11979,164.942,2.619,6.77018,164.917,6.17166,-0.0442574,164.675,6.02668,-1.14507,164.519,5.65108,-2.1287,164.13,5.05436,-2.97845,163.592,4.38824,-3.68042,163.101,2.39121,-5.32125,162.183,1.79776,-5.75742,161.964,3.04623,-4.81762,162.438,3.72399,-4.27747,162.72,6.24727,3.763,163.518,5.56398,5.2082,163.731,6.12353,5.56948,162.599,6.84608,4.02259,162.337,6.3561,2.46324,163.296,6.82679,2.63064,161.943,6.57652,1.34446,161.676,6.32789,1.23438,163.152,1.53939,7.84578,162.404,1.4114,7.14708,163.546,0.0961726,7.48608,161.964,4.37411,6.42883,163.875,4.84705,6.92126,162.75,2.89387,7.16705,163.872,3.21758,7.77749,162.76,6.029,-1.05242,162.907,6.21309,0.0614127,163.055,6.33234,0.148578,161.521,6.04888,-0.956914,161.362,5.63286,-2.04305,162.613,5.62795,-1.95933,161.111,5.05067,-2.84497,162.237,5.07365,-2.77354,160.805,4.35295,-3.4654,161.885,4.40418,-3.42806,160.528,1.78028,-5.12454,161.058,2.3738,-4.74096,161.154,2.40941,-4.45758,159.755,1.74171,-4.71231,159.578,2.9847,-4.35017,161.348,3.00165,-4.2109,160.023,3.64306,-3.93939,161.59,3.66842,-3.89734,160.284,7.6624,4.3229,160.963,6.87997,6.00588,161.334,7.79722,6.66922,160.0,8.71587,4.75173,159.546,7.61915,2.88016,160.379,8.74618,3.23604,158.78,8.0931,2.09175,158.091,7.10051,1.61785,159.942,1.93852,9.87814,159.971,1.67715,8.74825,161.263,5.49085,7.57283,161.544,6.26343,8.46851,160.234,3.61542,8.56705,161.58,4.15013,9.58705,160.236,6.57711,0.295112,159.854,7.17776,0.667454,157.904,6.39756,-0.739073,157.903,6.12378,-0.884955,159.766,5.67447,-1.8855,159.507,5.83121,-1.80647,157.716,5.17217,-2.73729,159.188,5.31549,-2.69451,157.44,4.558,-3.48058,158.906,4.73723,-3.5387,157.193,1.55423,-4.53008,157.874,2.28326,-4.43119,158.171,2.26998,-4.50026,156.477,1.45817,-4.51664,156.246,3.01519,-4.29427,158.457,3.11972,-4.45762,156.754,3.81278,-4.01508,158.687,3.96276,-4.12351,156.972,0.765099,-4.58662,157.668,0.005056,-4.6058,157.549,0.00247968,-4.99719,159.194,0.878805,-5.01916,159.645,0.706356,-4.53233,156.092,8.91702,7.52999,158.837,9.98264,5.25458,158.449,10.155,3.49864,157.673,9.38296,2.28274,156.766,7.19549,9.69068,158.858,4.73905,10.9108,158.636,8.05012,0.865458,156.351,6.92623,-0.63594,156.299,2.21482,11.2081,158.341,6.1751,-1.7469,156.14,5.54226,-2.6497,155.935,4.89325,-3.53868,155.746,2.3499,-4.68931,155.135,1.51254,-4.61429,154.923,3.22663,-4.53617,155.352,4.05444,-4.12133,155.548,0.727311,-4.59839,154.8,1.36489,-7.07246,162.205,1.22034,-6.17152,161.84,1.18636,-5.50802,161.115,7.78704,-1.99865,171.356,7.74137,-1.68938,172.011,8.01481,-1.48414,172.86,8.27483,-1.44971,173.717,8.4608,-1.50901,174.354,8.68619,-1.49223,174.706,0.679398,-7.38349,162.031,-0.00153165,-7.55901,161.96,0.618634,-6.48457,161.766,0.599419,-5.81649,161.229,0.504905,-5.4538,160.535,2.45076,-10.4103,166.518,2.55068,-10.6025,166.75,0.692216,-11.7045,168.277,1.33897,-11.4923,168.163,2.36392,-11.1359,167.437,1.84838,-11.2484,167.826,2.58844,-10.8967,167.025,1.74102,-10.418,165.41,2.10686,-10.3304,165.678,0.607079,-10.8812,165.275,1.21452,-10.6085,165.254,2.29078,-10.3183,165.986,2.36803,-10.3246,166.268,2.50916,-9.79305,166.587,2.61654,-9.94446,166.867,0.729256,-10.8203,168.717,1.39966,-10.6152,168.478,2.56786,-10.3242,167.869,1.98264,-10.4694,168.197,2.77426,-10.1126,167.209,1.76934,-9.57277,165.362,2.18152,-9.57059,165.657,0.580502,-9.82645,165.088,1.20587,-9.64479,165.134,2.40335,-9.61564,165.981,2.45674,-9.68762,166.296,2.53948,-9.18818,166.665,2.60927,-9.30132,166.941,2.04749,-9.47487,168.203,1.42512,-9.53682,168.511,2.5566,-9.41042,167.781,2.67883,-9.36009,167.264,1.84821,-8.69043,165.424,2.28912,-8.80977,165.76,0.570925,-8.72375,165.254,1.20863,-8.67451,165.276,2.45907,-8.96712,166.115,2.50508,-9.09418,166.391,2.543,-8.72729,166.499,2.56924,-8.74088,166.733,1.98165,-8.47126,167.849,1.35142,-8.43817,168.09,2.47984,-8.59816,167.494,2.64885,-8.74935,167.138,1.88098,-7.86869,165.953,2.39425,-8.19872,166.117,0.577979,-7.78016,165.935,1.20482,-7.78308,165.919,2.53457,-8.52277,166.37,2.0045,-7.7087,167.194,1.2613,-7.63266,167.287,2.50213,-8.13259,166.941,2.58246,-8.46115,166.806,2.61808,-8.86741,166.945,0.678606,-8.42585,168.276,0.619844,-7.64078,167.34,0.731207,-9.61904,168.787,-3.94179e-005,-9.65118,168.829,7.80562,12.246,14.1211,6.73126,10.8918,14.0044,9.15418,12.9374,12.5791,10.625,12.2415,12.695,7.67549,12.4333,12.4429,6.54318,11.0118,12.1873,12.302,9.63985,14.2016,12.3264,9.7238,12.4105,11.6269,10.9095,14.2606,11.6923,10.8356,12.6549,12.4546,10.1547,10.4645,11.4982,4.8659,12.4489,10.9454,3.90189,11.95,10.0611,3.34899,12.3048,10.2287,3.71398,13.165,8.65578,3.22522,12.3754,8.65677,3.48043,13.2988,7.21957,4.13304,11.9378,7.52662,7.58936,0.87481,8.04907,5.29996,1.04587,8.66808,1.80271,0.807487,11.8682,-2.97787,0.501934,12.5871,-1.75022,50.7295,7.95437,-1.51552,50.9622,13.0684,-3.32606,0.482305,13.7022,-2.88937,0.532554,10.5547,-4.6229,0.409065,11.3597,-4.27751,0.414132,-21.5593,3.69406,142.246,-21.1457,6.10518,141.403,-22.6405,5.87989,141.427,-22.9267,3.3842,142.195,-47.7899,7.55777,138.373,-47.6494,9.58896,139.638,-51.3126,9.61749,139.186,-51.254,7.42099,137.857,-45.0356,7.94726,139.139,-44.8001,9.81429,140.257,-41.0231,4.33238,147.528,-38.2355,4.33793,147.41,-38.5229,2.21166,146.672,-41.2377,2.74588,146.316,-35.2952,1.7911,147.152,-35.1355,4.16421,147.963,-32.1721,3.97165,148.469,-32.1738,1.44077,147.583,-40.4622,6.37523,148.025,-37.5568,6.44231,148.273,-34.5787,6.52106,148.743,-31.8177,6.5032,148.933,-34.8364,0.233453,145.037,-31.6194,0.0599672,145.215,-42.7267,2.89729,146.253,-42.8427,1.79622,144.795,-44.0395,2.38258,144.849,-43.8552,2.79951,146.211,-33.9974,0.09231,142.13,-37.7106,0.229748,142.163,-38.3102,0.571589,144.899,-33.1121,2.44542,140.31,-36.8881,2.39945,140.212,-32.4031,5.21272,140.037,-36.0723,5.15232,139.972,-51.3991,4.8146,138.122,-48.2853,4.95826,138.563,-31.6677,7.63943,139.32,-31.0424,10.1815,139.348,-34.4673,9.74948,139.459,-35.2815,7.40166,139.33,-54.6644,10.4824,141.342,-57.5868,10.0738,141.547,-57.4175,9.18733,139.622,-54.4679,9.40939,139.293,-57.3735,7.43726,138.273,-54.4238,7.40097,137.88,-60.8485,8.83245,140.166,-60.7096,7.42263,138.91,-61.0544,9.50485,141.923,-57.44,5.22173,138.275,-54.5428,4.93858,138.093,-60.6331,5.56596,138.721,-60.6123,3.87745,139.621,-57.5448,3.44469,139.656,-60.6477,2.71062,141.045,-57.6467,2.51357,141.581,-54.7674,3.07576,139.784,-54.9917,2.3876,142.048,-63.8966,4.23259,139.57,-64.0212,5.75256,139.152,-63.8632,3.01894,140.528,-64.2317,7.27452,139.451,-64.498,8.46091,140.559,-68.2861,8.09008,140.732,-67.9211,7.07914,139.613,-67.6174,5.73007,139.162,-57.7851,9.80181,143.565,-61.1764,8.89039,143.556,-64.8386,8.03222,143.518,-64.7388,8.79409,142.184,-54.9013,10.3195,143.546,-61.2852,7.84219,144.928,-64.8562,6.8829,144.549,-68.5707,5.85728,143.947,-68.6401,7.12095,143.339,-68.5389,7.9779,142.239,-49.0415,2.55631,143.061,-48.7943,3.47813,140.643,-51.7451,3.0525,140.175,-52.0995,2.37346,142.61,-46.9491,2.41522,145.245,-46.8383,2.76907,143.025,-49.26,2.11379,145.314,-52.3247,1.76268,144.957,-55.1988,1.78497,144.28,-52.525,3.08971,147.265,-49.1657,3.59815,147.661,-55.3998,3.0579,146.32,-55.0893,9.21167,145.358,-57.9382,8.66638,145.146,-55.2356,7.48735,146.541,-58.0274,7.03697,146.159,-61.2364,6.30546,145.564,-52.042,9.78438,145.73,-52.2382,7.93811,147.086,-48.6416,8.31712,147.433,-45.7777,8.34158,147.429,-46.1615,6.19136,148.051,-48.9835,6.09001,148.062,-52.4432,5.68558,147.644,-46.6162,3.64974,147.458,-55.3018,5.38479,146.752,-57.9228,5.11079,145.903,-57.9168,3.14194,145.323,-60.8584,3.10478,144.268,-61.0267,4.62012,145.174,-37.1633,11.3537,145.012,-40.5188,11.0824,144.755,-40.3342,11.1353,142.759,-36.9172,11.6144,142.96,-33.9718,11.5206,145.132,-33.6117,11.7871,143.089,-38.0616,10.2032,146.632,-41.1134,9.96735,146.333,-44.8067,11.0335,142.073,-43.0364,9.98236,140.669,-42.8464,11.082,142.436,-45.0437,11.2963,144.274,-42.9941,11.1622,144.536,-43.3548,9.94918,146.174,-45.3976,10.0601,146.089,-35.0064,10.6243,147.005,-48.3114,10.1222,145.981,-41.1397,0.691138,142.491,-40.47,2.47429,140.459,-42.3483,2.49855,140.879,-42.8589,1.28163,142.735,-39.6876,5.01005,139.921,-42.0528,4.55513,140.21,-43.6853,2.53401,141.339,-44.2277,3.85478,140.745,-45.2696,2.39659,142.867,-44.1585,1.85952,142.983,-64.4071,3.91777,144.459,-68.0312,3.10457,143.6,-68.358,4.44059,144.137,-64.6897,5.43128,144.86,-57.7917,1.9909,143.58,-60.7364,2.2742,142.741,-67.4291,4.31992,139.23,-37.3037,10.8039,141.016,-38.1361,9.20164,139.575,-33.844,11.3719,141.03,-30.6967,12.157,140.902,-41.355,1.11702,144.884,-32.2803,11.2865,147.6,-33.5593,9.04297,148.856,-36.3597,8.74252,148.148,-67.3511,3.03714,139.854,-67.4318,2.27318,141.033,-63.9325,2.46382,141.9,-67.6968,2.33554,142.416,-64.122,2.87487,143.312,-42.8187,4.18042,147.535,-42.6262,6.32568,148.022,-41.9561,8.38349,147.524,-39.4079,8.50871,147.739,-44.2878,6.22686,148.036,-43.8215,8.30933,147.408,-41.4113,8.62011,139.667,-40.6853,10.1867,140.992,-43.4144,8.25365,139.498,-39.0263,7.03224,139.367,-41.9206,6.49465,139.272,-30.5531,12.3086,143.179,-28.1528,12.8502,143.424,-28.6904,12.7696,145.734,-31.1291,12.3363,145.394,-29.8301,11.6022,148.021,-23.9237,0.477921,145.539,-24.549,1.69989,147.576,-23.0396,1.00526,147.824,-22.5962,0.542697,145.075,-21.6746,1.86471,143.114,-23.0922,1.57611,143.324,-25.6263,0.364828,145.432,-26.3482,1.5055,147.494,-29.2501,6.37334,149.12,-29.3182,3.75579,148.601,-30.7566,0.340525,142.453,-28.4742,0.0304946,145.265,-27.7479,0.730845,142.904,-24.8836,3.1301,142.143,-25.0696,1.208,143.359,-19.3038,13.0686,143.906,-19.7366,13.4855,145.945,-21.7408,12.8957,146.075,-21.0231,12.9431,143.978,-20.1743,8.81412,140.965,-21.6983,8.59899,140.796,-19.8636,10.9636,141.36,-19.5559,12.3492,142.393,-21.2105,12.3113,142.252,-21.5308,10.8386,141.151,-28.1856,12.6086,141.074,-28.3023,10.4834,139.58,-25.9305,10.7408,140.177,-25.7452,12.7743,141.408,-28.7319,7.83981,139.598,-26.2646,8.14578,140.181,-29.3753,5.27638,140.314,-26.8351,5.37241,140.842,-27.1639,2.74554,141.421,-29.9326,2.57001,140.73,-25.0572,3.59952,149.546,-26.7221,3.8095,148.775,-31.0369,9.16875,149.297,-28.6215,9.19447,149.325,-27.3172,11.7052,148.19,-26.1445,12.9549,146.03,-25.6819,13.3279,143.687,-48.0203,11.0724,143.893,-47.7274,10.7637,141.667,-51.534,10.8082,141.351,-51.8261,10.7529,143.659,-44.6914,3.62463,147.223,-45.698,5.38878,139.004,-23.7211,3.33968,150.253,-25.067,6.41589,150.601,-23.7254,6.42102,151.562,-24.3447,9.34213,150.088,-22.6731,9.54148,150.761,-23.1315,11.7454,148.464,-21.5223,12.2381,148.955,-24.9452,11.4751,148.151,-23.6551,12.7922,146.047,-29.0839,1.27788,147.555,-26.7391,6.36381,149.791,-23.2091,12.5191,141.951,-23.8006,10.7788,141.029,-24.188,8.43065,140.916,-24.7516,5.67191,141.508,-26.122,9.06478,149.265,-23.0164,13.2856,143.853,-45.3028,2.53632,145.119,-46.3441,3.66257,140.845,-43.8196,5.87823,139.225,-70.6224,1.84533,141.69,-70.2794,2.10926,140.344,-71.9697,2.00928,139.818,-72.4418,1.52858,141.12,-70.192,3.05523,139.388,-71.8948,3.06823,139.057,-73.021,2.17642,142.394,-71.0234,2.53705,142.922,-70.8017,6.88222,139.653,-70.4914,5.71216,139.095,-71.1882,7.71269,140.703,-73.0003,5.81095,138.872,-72.29,5.75651,138.966,-72.6066,6.81763,139.58,-73.3809,6.83215,139.496,-72.0286,4.4222,138.758,-70.2822,4.36909,138.95,-71.5154,7.68868,142.144,-71.6443,6.63855,143.079,-73.7748,6.38684,142.794,-73.5501,7.58995,141.997,-74.7285,6.2845,142.563,-73.6967,4.95407,143.076,-74.7074,4.8114,142.849,-71.5729,5.2853,143.47,-71.3554,3.82568,143.555,-73.4329,3.45281,143.059,-73.8469,1.97992,142.149,-74.4037,3.26459,142.793,-72.3866,3.08135,138.921,-72.6424,4.46571,138.657,-73.0599,7.5067,140.607,-72.4541,1.97747,139.611,-73.0418,1.42493,140.884,-74.3705,7.46458,141.834,-73.8419,7.46026,140.523,-17.4407,-2.17805,148.09,-16.6195,-2.20923,149.743,-15.2302,-3.37256,148.415,-16.0507,-3.34806,146.71,-15.8375,-1.83728,151.576,-14.3673,-3.04882,150.443,-18.4043,-0.809303,149.705,-17.4436,-0.590646,151.015,-16.6222,-0.143358,152.481,-18.8376,1.1695,150.971,-17.7569,1.46643,152.03,-19.0981,3.27331,151.992,-17.9336,3.6777,153.026,-19.06,6.0917,153.2,-17.7317,6.23965,153.7,-16.8647,4.01163,153.977,-16.6104,6.40556,154.424,-18.4075,9.05169,152.922,-17.305,8.69711,153.494,-17.5185,11.1857,151.48,-16.6106,10.7129,152.645,-16.3179,8.369,154.213,-15.8202,10.0884,153.684,-16.5894,13.0828,150.506,-15.6921,12.2611,151.818,-14.9761,11.3739,153.06,-15.8175,0.723402,153.639,-15.1512,1.87273,154.391,-14.4018,0.669815,154.425,-15.081,-0.830313,153.227,-14.7361,3.40127,155.164,-13.9686,2.43708,155.536,-16.0322,2.37545,153.88,-15.5504,2.74578,154.314,-15.3067,4.06164,154.669,-16.8466,1.87754,153.123,-15.9771,4.1731,154.434,-15.6907,6.27951,154.854,-14.9875,5.94284,155.002,-15.4508,7.89662,154.772,-14.7729,7.4082,155.063,-14.3985,8.80708,154.829,-15.0825,9.3668,154.435,-13.989,9.77559,154.503,-14.3824,10.4614,154.005,-13.2967,10.1212,154.897,-13.4016,11.379,154.113,-13.806,12.6275,152.993,-12.0336,13.2897,152.669,-12.0224,12.3867,154.448,-13.7597,8.71845,155.579,-15.0041,14.3357,149.686,-14.3662,13.7019,151.47,-12.805,14.4764,148.98,-12.3632,14.1096,150.795,-14.4923,5.35946,155.677,-13.8414,4.57022,156.283,-14.2138,7.07222,155.814,-10.0063,13.6457,152.09,-10.1395,13.1252,154.302,-13.1196,-0.688162,154.107,-13.6601,-2.06314,152.422,-12.4149,1.34373,155.464,-12.8684,3.87738,156.632,-12.5133,6.14606,157.124,-13.5001,6.63835,156.594,-18.5339,1.45848,141.198,-19.9365,2.11748,142.654,-19.4079,0.590342,143.288,-17.5139,-0.383732,141.667,-19.8319,3.61776,141.397,-20.3943,3.98859,142.187,-13.2534,14.5096,147.241,-10.9227,15.1897,146.609,-10.501,14.8252,148.155,-11.8984,14.9607,143.494,-11.3904,15.2322,145.031,-13.7649,14.3775,145.557,-14.3852,14.0419,143.999,-17.1508,11.3927,141.557,-18.7843,9.35945,141.299,-18.1175,10.0501,140.544,-15.436,11.983,140.342,-19.541,7.95787,140.998,-20.0311,5.70749,141.237,-20.2156,6.32764,141.545,-19.1943,-0.459932,144.129,-17.288,-1.70616,142.534,-21.2459,0.130856,145.728,-20.5937,-0.349064,147.234,-18.9329,-1.2301,145.294,-16.7443,-3.05481,145.143,-17.2081,-2.56694,143.722,-18.2534,-1.77396,146.633,-14.8578,13.3382,142.772,-15.622,12.4579,141.93,-13.5183,13.2583,141.006,-12.4799,14.2521,142.132,-10.167,14.1997,149.807,-12.952,8.74801,156.517,-12.3045,10.7176,155.695,-17.5986,13.7527,149.085,-18.6491,11.856,150.38,-19.6911,9.45779,152.219,-15.6856,14.4739,147.876,-20.8821,2.12077,142.955,-20.9582,3.98466,142.304,-21.0883,0.723512,144.102,-18.5567,11.1424,141.623,-19.3373,9.07969,141.258,-20.4748,6.2595,141.508,-20.5293,3.24938,151.301,-22.1461,3.2695,150.827,-22.3052,6.32078,152.401,-20.5822,6.16057,152.885,-17.82,12.2871,142.366,-17.2339,12.8961,143.38,-16.3526,14.2929,146.155,-18.6592,13.7946,147.558,-21.1613,9.60319,151.397,-20.0681,12.3277,149.648,-21.7575,0.975809,149.298,-20.2004,1.03336,150.148,-16.9663,13.6708,144.611,-19.5504,-0.792739,148.535,-8.07558,5.48596,119.044,-7.92605,6.18925,121.338,-10.2696,4.76502,121.283,-10.3535,4.03898,119.147,-1.47827,-12.3847,137.292,-0.00421909,-12.2768,137.222,-1.65675,-13.0411,135.544,-7.97673,14.7996,149.655,-8.00671,14.6007,152.124,-8.14239,15.0349,147.728,-5.71468,16.2462,147.641,-5.52994,15.7838,149.831,-8.45498,15.3979,146.083,-5.83096,16.1197,145.674,-9.90454,14.6711,141.23,-9.25236,15.1636,142.855,-12.5896,12.8639,138.405,-10.919,13.8956,139.654,-13.5622,-6.51937,142.969,-13.9196,-6.24126,140.994,-15.4263,-4.27533,142.293,-15.1868,-4.72304,143.99,-7.60961,-8.68595,146.987,-7.27163,-7.57633,149.328,-5.80131,-8.09398,149.189,-5.9671,-9.16114,146.825,-4.32513,-8.46514,149.046,-4.37975,-9.48518,146.676,-1.23681,-9.85442,146.576,-2.80877,-9.73592,146.608,-2.78128,-8.6839,149.017,-1.22128,-8.69604,149.058,-1.18169,-10.8409,144.083,-1.18235,-11.7042,141.692,-2.56024,-11.6499,141.82,-2.6406,-10.7369,144.161,-11.5612,-1.92877,153.662,-10.6661,-0.602725,154.821,-9.25701,-1.86591,154.383,-10.1294,-3.03711,153.332,-12.1641,-3.05852,151.887,-10.7683,-4.12368,151.614,-5.23875,-5.69525,152.455,-5.5453,-6.82512,150.977,-6.91325,-6.25266,151.166,-6.48142,-5.08123,152.631,-4.83074,-4.84147,153.448,-5.90066,-4.21018,153.586,-11.5245,-5.26982,149.686,-12.3337,-5.92302,147.477,-13.8653,-4.66163,147.83,-12.976,-4.15652,149.975,-3.97644,-6.21401,152.344,-4.1392,-7.27567,150.874,-3.73809,-5.28216,153.306,-2.649,-6.45396,152.17,-2.67679,-7.46955,150.854,-2.58528,-5.59291,153.173,-1.55297,-5.51149,152.921,-1.24429,-6.30091,151.844,-1.27357,-7.33279,150.794,-3.6315,-12.8125,135.233,-1.81914,-13.4737,133.918,-3.84451,-13.0335,133.575,-5.26017,-14.9231,113.148,-4.95665,-14.7042,115.74,-3.11906,-15.4282,115.546,-3.55573,-15.8977,112.873,-6.73716,-13.5491,113.44,-6.55512,-13.3552,115.812,-5.39511,-15.0085,110.473,-6.95302,-13.8082,111.013,-3.65534,-15.7411,110.005,-8.04768,-11.2316,135.562,-5.82579,-12.2751,136.216,-5.82438,-12.157,134.668,-8.23281,-11.0911,134.16,-10.4545,-9.29538,133.679,-10.444,-9.53814,135.321,-14.509,-1.55292,127.89,-13.7374,-4.53146,128.364,-13.8539,-4.858,125.908,-14.0459,-1.80987,125.498,-13.1877,-5.05281,123.625,-13.2293,-2.1563,123.294,-13.9171,1.22777,125.538,-14.5495,1.57856,127.784,-13.1795,0.742681,123.341,-8.01363,13.5051,154.737,-5.38812,15.1358,152.322,-5.2635,13.914,154.86,-2.52183,14.8782,152.357,-2.47684,13.6728,154.681,-2.6795,16.5249,147.449,-2.57721,15.8642,149.835,-2.80797,16.8169,145.309,-15.0193,10.9323,138.01,-18.905,5.65168,138.904,-17.6215,8.42931,138.294,-15.9295,8.87259,135.537,-13.0955,11.4147,135.63,-18.0059,2.99996,138.837,-16.5977,2.43346,135.871,-17.2576,5.60344,135.827,-16.8794,0.372233,138.659,-15.9311,-0.633309,135.871,-4.51288,-12.5189,138.285,-4.23139,-12.2032,139.779,-2.72515,-12.2863,139.595,-3.58621,-12.5629,137.338,-16.037,-1.91216,139.494,-14.8762,-4.07162,136.558,-14.4537,-4.31889,133.285,-14.007,-4.4014,130.842,-15.1433,-1.42445,130.412,-15.5245,-1.19037,133.112,-15.4488,-3.36637,140.856,-14.1747,-5.46003,139.126,-14.2998,-3.30138,119.187,-13.5966,-2.66877,121.042,-13.2296,-5.64822,121.48,-13.812,-6.46833,119.647,-14.4004,-3.87377,117.411,-13.9472,-7.0012,117.855,-12.5829,-9.60923,118.195,-12.3946,-9.07872,120.206,-12.1264,-8.26686,122.246,-14.4959,-8.70371,111.249,-14.5456,-8.13723,113.026,-12.8916,-10.2969,112.729,-12.8869,-10.7868,110.754,-11.0039,-11.8178,114.275,-11.0507,-12.0167,112.254,-12.7662,-9.94994,114.499,-15.5109,-6.0829,111.567,-15.3882,-5.39689,113.137,-10.36,-10.6553,120.62,-10.6712,-11.26,118.407,-12.6553,-9.75349,116.302,-14.082,-7.29459,116.171,-10.9009,-11.5939,116.312,-14.2345,-0.723289,117.051,-13.8559,-0.115882,118.911,-14.5937,-4.33182,115.893,-14.4875,-1.2973,115.628,-13.103,1.95489,117.189,-12.3401,2.23662,119.061,-13.6092,1.51845,115.603,-11.9353,2.67479,121.21,-13.077,0.238321,120.994,-8.55173,5.4552,116.944,-11.0524,3.99416,117.184,-2.58659,6.52014,118.309,-5.48703,6.53178,118.713,-5.69937,6.10995,116.514,-2.72072,6.11456,116.002,-6.0411,6.17013,114.679,-2.83126,6.07869,114.356,-9.18894,5.67152,115.138,-11.791,3.95037,115.481,-15.9966,2.07454,133.068,-14.6897,4.83395,127.835,-15.7123,5.27357,130.314,-15.2891,1.84535,130.306,-12.7641,7.66238,128.303,-13.794,8.4466,130.654,-4.21541,14.7956,135.147,-3.90601,15.7576,137.267,-7.79153,14.4732,138.396,-9.27476,13.4555,136.149,-6.92635,15.1115,140.369,-6.39153,15.6454,142.198,-6.06411,16.0554,143.906,-8.80554,15.4165,144.459,-3.19556,16.7284,141.574,-2.96439,16.8938,143.417,-2.01277,-13.8936,132.058,-4.11383,-13.2856,131.793,-6.03888,-12.2047,133.113,-6.24545,-12.2535,131.382,-8.58793,-11.3017,128.575,-6.32309,-12.3727,129.191,-6.34836,-12.8179,126.478,-8.37965,-11.4391,126.027,-6.24196,-13.1368,123.721,-8.25827,-11.7583,123.446,-4.23445,-13.3976,129.532,-2.09854,-13.9818,129.648,-2.07117,-14.3215,126.875,-4.26732,-13.9003,126.789,-2.02476,-14.5742,124.119,-4.21554,-14.2645,123.968,-10.6355,5.85233,123.546,-8.0792,7.40503,123.765,-5.36908,7.42571,121.16,-5.37824,8.71598,123.788,-2.48578,7.26308,121.094,-2.51964,8.32118,124.084,-2.72997,9.77098,126.861,-5.96469,10.0629,126.424,-12.5789,3.61294,123.434,-13.6666,4.35348,125.654,-11.6413,6.83545,126.034,-8.92415,8.60603,126.406,-9.90373,9.62988,128.666,-6.67645,11.2412,128.709,-10.8189,10.4642,130.974,-7.43189,12.1746,131.014,-8.2068,12.8205,133.389,-11.7674,11.0956,133.339,-2.99229,11.402,129.159,-3.88093,13.7848,133.16,-13.2638,2.52251,110.993,-12.863,3.21868,112.451,-14.5636,0.561867,112.805,-14.9812,-0.11987,111.355,-12.4112,3.69515,113.917,-10.3175,5.18751,112.082,-9.79679,5.60431,113.518,-3.49187,16.3669,139.497,0.00173089,5.43742,110.262,0.00602174,5.37838,111.482,-3.38936,6.03501,111.484,-3.46129,5.83674,109.907,-7.02538,6.09989,111.722,-7.59382,5.83575,110.39,-8.95289,-13.0904,113.889,-9.06126,-13.2412,111.626,-8.8258,-12.8347,116.132,-8.53464,-12.3038,118.418,-14.9728,-4.81275,114.484,-15.3143,-2.40647,113.068,-14.862,-1.81984,114.344,-6.47287,6.23066,113.11,-8.63504,-11.2685,130.736,-8.46096,-11.1532,132.562,-15.644,-3.13273,111.641,-6.53736,-13.3973,118.415,-8.26185,-11.8633,120.874,-6.36436,-13.2414,121.058,-4.35562,-14.2826,121.213,-4.70744,-14.7558,118.488,-2.14827,-14.5617,121.367,-2.18685,-15.2622,118.375,-0.0333436,-14.5107,117.04,-1.20944,-14.8434,116.905,-4.09811,-11.5115,141.897,-4.19676,-10.556,144.213,-12.3841,-7.80981,124.412,-10.4997,-9.86945,125.307,-10.378,-10.2774,122.988,-9.96299,-9.92724,141.905,-10.5029,-10.3124,139.55,-12.4861,-8.39439,140.028,-11.9278,-8.35259,142.254,-7.72943,-10.8428,141.897,-8.06757,-11.4888,139.572,-5.78905,-11.2703,141.955,-5.93655,-12.0348,139.79,-11.3366,-7.75376,144.7,-9.55811,-8.96141,144.471,-12.6303,-7.20339,135.511,-12.6646,-7.82408,137.751,-10.6602,-10.1615,137.283,-7.67968,-9.76864,144.351,-8.16758,-11.7145,137.375,-5.85578,-10.2983,144.271,-5.95883,-12.4132,137.844,-13.0188,-6.37712,145.199,-1.72289,-16.0911,112.587,-1.43299,-15.6493,115.206,-0.00432361,15.4471,141.618,-0.00985274,15.6356,143.355,-0.0152858,15.5345,145.22,-0.0251027,14.6764,149.461,-3.57835,-15.4308,106.872,-1.81687,-16.0011,109.645,-1.8027,-15.716,106.417,-12.5669,-7.2938,129.072,-12.5212,-7.50619,126.687,-10.8418,-9.62752,129.914,-12.4436,-7.07412,131.357,-10.8379,-9.54391,131.941,-10.7363,-9.73883,127.645,-12.3912,-6.93721,133.415,-1.27738,-12.2046,139.39,0.00923553,6.71494,124.669,-0.0156709,-12.0486,139.294,0.0115904,5.58869,121.379,-14.6196,-4.83605,145.876,-16.5328,5.51535,133.045,-14.8415,8.88563,133.112,-3.38092,12.7804,131.19,-0.654996,-5.68412,152.234,-0.763501,-5.2132,152.834,-0.0250554,-11.6265,141.612,-0.0162237,-13.7901,129.647,-0.0196992,-14.0957,126.869,0.00936211,13.1577,135.782,0.0127925,9.72547,130.153,0.00615841,14.1815,137.712,0.00603798,-6.33636,151.454,-0.0103277,-7.15805,150.679,-0.0297154,-8.55561,149.01,-0.0392256,-9.80352,146.515,-0.0168169,-14.0743,124.21,-6.95953,-3.50191,153.79,-7.6741,-4.51291,152.834,-8.85417,-3.869,153.065,-8.04923,-2.76683,154.055,-8.21408,-5.67354,151.309,-9.47822,-4.99095,151.444,-8.7144,-6.93344,149.419,-10.1163,-6.17262,149.519,-10.7797,-7.05365,147.222,-9.23437,-7.98959,147.094,-14.3328,-7.65692,114.581,-14.0857,1.0678,114.182,-3.04598,6.08194,112.886,0.00839995,5.28237,112.782,-9.13749,-13.5461,109.055,-7.11749,-14.1704,108.209,-5.3118,-14.8358,107.493,-11.0205,-12.3418,109.997,-10.8092,4.53658,110.709,-0.000431022,-15.7551,106.246,0.00174,-5.65754,152.137,-10.6353,11.2689,156.348,-11.6531,8.67876,157.315,-11.4457,3.64225,157.043,-11.2275,5.70144,157.666,-10.1886,8.28747,157.935,-8.33293,11.2325,157.199,-10.7048,1.99788,156.019,-4.33314,-4.24135,154.391,-3.40477,-4.673,154.229,-5.26085,-3.62022,154.557,-9.36574,0.42601,155.383,-8.01025,-0.837126,154.967,-5.1517,12.3129,156.947,-2.40461,12.4063,156.666,-2.44794,-5.01304,154.09,-1.56751,-4.92292,153.854,-0.782582,-4.76427,153.708,-6.9592,-1.84499,154.765,-6.08681,-2.71789,154.638,-1.69576,-14.0645,99.5607,-1.68507,-13.5451,96.2717,-3.31298,-13.4533,96.8168,-3.37183,-13.9104,100.173,-13.8814,-8.20463,106.789,-13.9114,-7.36687,108.298,-12.6569,-9.22605,107.49,-12.6728,-9.96576,105.823,-7.87371,-12.6693,101.24,-8.14851,-12.793,103.72,-6.60905,-13.4742,102.387,-6.2799,-12.9477,99.6026,-9.54031,-12.1042,102.87,-9.75055,-11.8934,105.087,-4.97179,-13.6876,101.185,-4.82751,-13.2468,97.9813,-5.09245,-14.2331,104.336,-6.91902,-13.982,105.219,-3.43585,-14.6839,103.553,-1.73727,-14.9289,102.991,-8.77796,-13.3458,106.262,-13.7485,-9.10666,109.193,-14.7485,-6.76574,109.796,-10.5609,-12.334,107.411,-11.2848,3.97201,109.258,-11.7973,3.71587,107.631,-8.48474,5.93303,107.406,-8.01604,5.73317,108.969,-14.6853,-5.88636,107.034,-14.6533,-4.95542,108.607,-1.86833,6.63673,104.771,-1.73526,6.15598,106.489,-4.73936,6.71717,107.044,-5.07655,7.3421,105.3,-4.40655,6.1331,108.44,-1.57232,5.80612,107.879,-1.37712,5.67462,108.941,-14.6319,-2.10348,108.401,-14.8868,-2.95014,106.664,-14.1992,0.46488,106.117,-13.7185,0.875406,107.938,-13.5596,1.60876,109.494,-14.9375,-1.15668,109.802,-12.3357,3.77656,105.778,-11.3013,-10.7642,106.372,-11.1865,-11.2544,104.429,-12.3198,-11.0201,108.398,-15.2848,-4.08321,109.999,-8.98213,6.33777,105.595,0.000766171,6.04399,104.538,0.00128108,-13.4942,96.1059,-16.8038,-5.47802,93.3595,-15.9097,-8.29573,92.7282,-16.4995,-7.87727,88.563,-17.3887,-4.91237,88.9822,-16.4395,-6.06627,96.3819,-15.4781,-8.7611,96.2123,-16.6118,-2.1286,93.3853,-16.9587,-1.50549,89.0368,-16.459,-2.68929,95.7383,-14.21,-10.3078,91.8634,-14.6933,-10.0719,87.9016,-17.0311,-7.50005,84.3954,-17.9075,-4.39884,84.7112,-15.0117,-9.78157,83.9794,-13.3593,-10.7913,98.1536,-13.7823,-10.5759,95.2486,-15.0177,-9.20295,99.2835,-11.4423,-11.6377,96.3993,-11.7389,-11.5833,93.7707,-12.0742,-11.6102,90.634,-9.19433,-12.0408,98.5142,-9.19271,-12.0664,96.5045,-11.2299,-11.6874,98.3812,-11.1121,-11.6982,100.35,-9.31808,-12.0578,94.5249,-9.49374,-12.0349,92.1539,-11.1247,-11.6017,102.411,-12.819,-10.5855,103.971,-15.0088,-6.63376,105.117,-14.1543,-8.96753,104.982,-15.161,-3.55425,104.595,-15.4479,-3.8553,102.533,-15.4548,-6.92572,103.083,-15.7578,-6.90181,101.186,-15.7519,-3.82148,100.585,-16.1068,-3.5404,98.5608,-16.0088,-6.68453,99.2869,-15.1477,-0.053673,99.7302,-15.4112,0.209429,97.5012,-15.195,1.0604,92.7952,-15.4126,0.768784,94.9047,-1.24056,-9.85279,88.8684,-0.858191,-8.44079,88.8169,-1.37708,-8.19292,88.2042,-2.36409,-10.0552,89.3529,-0.476024,-6.8644,88.7575,-0.440641,-4.99372,88.5267,-2.68736,-9.0168,86.3811,-2.58037,-7.71802,83.8359,-4.37778,-9.94165,84.1883,-4.6842,-10.7898,86.9735,-6.90352,-11.152,84.9312,-7.06816,-11.7221,88.0031,-2.5014,-6.41511,81.2769,-4.14407,-8.95876,81.4101,-6.66165,-10.5039,81.9309,-3.06117,-10.0043,88.5401,-5.0298,-11.2324,89.4101,-7.17157,-11.9663,90.6535,-1.29592,-6.55265,86.3423,-1.2921,-4.9206,83.9652,-0.699375,-3.45956,86.7346,-0.795544,-1.51398,84.6728,-3.20514,-12.7055,94.0129,-1.69142,-12.8926,93.28,-4.59852,-12.5121,95.2524,-4.32462,-11.7229,93.1808,-3.09007,-11.9908,91.8676,-1.67774,-12.2887,90.8008,-1.59715,-11.1829,89.2162,-2.8863,-11.1806,90.3218,-0.51046,-0.386203,89.2155,-0.876446,-0.558311,87.5374,-1.68303,2.24177,87.0799,-1.74987,3.68063,90.1977,-5.2562,6.15538,90.1567,-5.18973,5.27635,87.6465,-9.12691,5.65431,87.8881,-9.42499,6.26737,90.7948,-12.8725,4.11467,91.7945,-15.2464,1.70662,88.7888,-12.5514,4.20361,88.3509,-13.361,4.2588,93.7637,-9.93892,6.98687,92.5849,-1.90667,6.50052,91.7767,-5.68221,7.7494,91.5918,-5.58633,8.86418,98.0179,-10.1202,7.36444,98.4256,-10.1918,7.38123,95.5104,-5.63432,8.79475,94.7263,-1.49263,7.92862,94.6035,-1.41408,8.16788,97.8342,-1.69475,7.86951,100.571,-5.58303,8.42823,100.763,-5.41002,7.96207,103.185,-9.48006,6.75832,103.454,-9.88453,7.12368,101.046,-1.91569,7.24305,102.788,-13.6183,4.03259,98.9614,-13.6797,4.15056,96.4201,-14.5926,0.104607,104.008,-12.887,3.85569,103.638,-14.8841,-0.131005,101.847,-13.3408,3.91516,101.332,-7.33836,-11.9964,96.5778,-7.15986,-11.9504,94.6516,-7.55914,-12.2383,98.8351,-5.98468,-12.3391,96.9626,-5.68561,-11.7085,94.7387,-5.45869,-11.42,93.001,-4.03645,-11.0846,91.6081,-5.29623,-11.3621,91.3558,-3.70201,-10.6223,90.1904,-7.15152,-12.0066,92.8004,-9.59069,-12.0527,89.2744,-8.83978,1.69688,38.2424,-9.04278,2.25623,34.2976,-11.4943,1.78423,34.4075,-11.395,0.998908,38.352,-11.4606,0.182509,42.5815,-8.7758,0.687302,42.5861,-13.4195,3.42071,34.8532,-13.6857,2.7428,38.9533,-13.8806,1.88076,43.1022,-6.44088,8.97424,22.8147,-6.29493,9.03225,19.0646,-6.51933,6.93446,19.1067,-6.77671,6.77924,22.8363,-7.32149,5.00739,19.1604,-7.50893,4.86326,22.9391,-8.78037,3.51363,19.1853,-8.91182,3.27917,22.976,-14.8395,13.477,35.9182,-14.9396,13.3382,40.3868,-16.7466,11.0525,40.0171,-16.2068,11.0123,35.7432,-15.2869,10.7584,31.8635,-14.0523,12.6611,31.918,-12.3993,14.3938,36.0097,-12.4095,14.1963,40.1687,-11.8997,12.8025,27.4429,-10.1707,13.288,27.4277,-10.1201,13.879,31.8704,-12.1809,13.4872,31.9712,-13.3051,9.93058,22.5869,-12.3885,11.2388,22.5656,-13.2184,11.922,27.4947,-14.3229,10.4432,27.5449,-11.2879,12.1262,22.5743,-9.94042,12.7526,22.6163,-9.91153,14.3186,35.8876,-13.7193,8.05749,22.6781,-13.1201,8.04555,19.0943,-12.7133,9.67263,19.0419,-17.1963,-7.00594,80.0349,-14.9238,-9.11224,79.6225,-12.3759,-11.6339,86.9389,-12.5082,-11.4972,83.2722,-12.4489,-10.9942,78.9392,-18.0002,-3.89607,80.358,-12.1955,-10.1564,74.7708,-14.6451,-8.31094,75.4508,-9.4264,-11.6567,82.5308,-9.24001,-10.88,78.4022,-8.99942,-9.93546,74.4312,-6.42713,-9.71593,77.939,-6.16063,-8.84682,74.0769,-4.15631,-7.72134,77.59,-4.24043,-6.45974,73.9152,-4.16551,-5.21327,70.3058,-5.7974,-7.89351,70.3585,-2.70849,-5.03905,77.4848,-2.9102,-3.74407,73.8377,-3.11227,-2.43866,70.2696,-3.95227,-4.02633,66.7427,-5.39565,-6.88668,66.7591,-8.30694,-8.37542,66.9704,-8.6437,-9.28137,70.5806,-11.1466,-7.73761,67.5406,-11.6352,-8.75682,71.072,-13.5875,-6.65808,67.9949,-14.181,-7.49151,71.5731,-10.6962,-6.74695,64.3513,-8.00832,-7.4019,63.6661,-12.9056,-5.7865,64.8031,-7.89243,-6.22122,60.7176,-10.3118,-5.8322,61.5243,-12.236,-4.9952,61.9542,-13.9426,-3.84422,62.0755,-14.9333,-4.49745,64.9826,-9.8281,-5.32055,58.8075,-11.8931,-4.79397,59.054,-13.4892,-3.39254,59.2001,-5.08194,-5.8582,63.3097,-5.33217,-4.55273,60.1631,-3.89311,-2.84138,63.3205,-4.27284,-1.63687,60.2002,-15.9087,-5.22646,68.1878,-15.9297,-2.15988,65.2753,-16.7764,-2.50546,68.5887,-15.0729,-1.86761,62.1358,-3.23643,-1.18369,66.7596,-3.38672,-0.021799,63.3812,-2.57839,0.556598,70.3719,-3.10799,1.74353,66.9383,-3.44259,2.79397,63.6249,-3.00043,3.69973,70.6898,-3.98746,4.66389,67.3231,-1.99281,-0.709791,73.8867,-2.08081,2.63981,74.2033,-1.37513,1.41263,77.8517,-1.52741,-2.03806,77.5113,-0.922965,0.029866,82.1141,-1.24597,-3.4478,81.601,-3.76026,3.65343,60.4024,-3.78455,1.06328,60.1793,-5.12994,6.00198,60.9222,-4.57876,5.52042,64.0667,-4.76133,6.16576,71.0845,-3.67946,5.45404,74.6612,-2.63233,4.65981,78.3798,-6.03424,-2.85994,58.0992,-6.28519,-1.81703,56.1851,-7.54543,-3.68589,56.2952,-7.73775,-4.58391,58.4184,-6.25113,-1.10404,54.2144,-7.35747,-3.05473,54.2967,-5.22527,0.320758,55.9501,-5.39711,1.06785,54.0435,-4.95601,-0.45573,57.8389,-9.42669,-4.82957,56.3343,-11.5682,-4.5341,56.3845,-13.3255,-3.16587,56.5131,-14.154,-1.01863,56.7608,-14.4718,-1.42696,59.335,-14.974,1.18701,56.9518,-15.219,0.685105,59.4555,-15.1793,3.67666,57.1871,-15.4673,3.11337,59.7485,-14.1165,-0.674257,54.4039,-15.0685,1.64397,54.6412,-15.0443,4.33056,55.0023,-13.0575,-2.74817,54.2475,-14.0023,-0.297548,52.1012,-15.2485,2.00639,52.2236,-15.1112,4.74566,52.6037,-15.2388,2.55802,49.7924,-15.4806,5.44999,50.2154,-13.5292,-0.071563,49.619,-11.2646,-3.87175,54.2256,-9.285,-4.04272,54.2546,-9.16814,-3.43624,52.216,-11.1644,-3.33642,52.1919,-12.7895,-2.16892,52.2318,-9.06832,-1.22295,48.7875,-11.3998,-1.33984,48.7043,-11.1386,-2.43293,50.4508,-9.18731,-2.34089,50.5416,-8.8876,-0.164295,46.3471,-11.3845,-0.500861,46.1939,-13.8251,0.937981,46.6323,-7.5406,-2.27473,52.3591,-4.58776,2.68838,55.6395,-5.01522,3.348,53.9647,-4.27905,2.23406,57.3013,-4.79764,4.90829,55.673,-5.35526,5.42349,54.1513,-4.32728,4.5476,57.375,-5.6252,4.24224,52.1653,-5.90703,6.29826,52.4867,-5.86054,6.29558,56.0862,-6.31797,6.7435,54.432,-6.79155,7.83336,52.6262,-5.90458,1.9377,52.081,-5.87584,5.3215,50.034,-6.37498,2.88693,49.8725,-7.24999,0.153671,49.7427,-6.57383,-0.361244,52.1502,-6.15811,3.96536,47.3334,-7.33332,1.61821,46.9288,-5.43943,6.54603,47.5316,-7.27053,2.68787,43.0094,-5.50148,4.79395,43.4227,-4.55761,7.66413,43.7276,-6.02393,7.60602,50.3651,-6.85861,9.54835,50.4238,-5.56726,9.17639,47.5697,-6.69042,11.5211,47.5514,-8.33597,9.05178,52.7595,-8.61788,10.7394,50.3574,-9.02268,12.4336,47.347,-10.3112,9.30966,52.8301,-10.806,10.8654,50.2472,-8.00097,7.67638,54.7334,-9.89649,7.8891,54.944,-7.74028,6.90844,56.6867,-9.68357,7.12932,57.1377,-7.57308,6.57314,58.8605,-9.59872,6.61492,59.5198,-2.00204,3.58014,82.9512,-5.34077,6.22155,83.6342,-5.84818,7.08978,79.0439,-7.36333,6.69713,61.502,-9.50356,6.38643,62.1839,-11.6961,5.91876,62.5816,-11.6634,6.12563,59.865,-11.7218,6.85203,57.4434,-13.6952,4.99228,59.9145,-13.5925,5.54062,57.4378,-12.2921,8.61208,52.8999,-11.8392,7.4819,55.1463,-13.6577,6.27494,55.2082,-13.9497,7.07799,52.9445,-14.723,8.22628,50.6883,-12.9465,10.0267,50.4292,-16.2115,6.34156,47.6492,-15.8213,9.29099,47.9133,-15.3826,3.50515,47.1847,-13.8456,11.3061,47.6224,-15.608,4.30982,43.6922,-16.7413,7.12247,44.1007,-16.5912,10.2549,44.3374,-14.5548,12.4459,44.2399,-16.717,7.88105,39.752,-6.70809,13.1272,43.8365,-9.43003,13.6152,43.7106,-4.92932,10.7299,43.8462,-6.95106,14.0729,39.6478,-7.20802,14.0632,35.5973,-5.35675,11.857,35.284,-4.91478,11.7947,39.4092,-7.99972,13.2917,31.7277,-6.2439,11.6939,31.5325,-4.47095,8.63168,39.0423,-4.97491,8.94324,34.9342,-5.89491,9.04956,31.3955,-6.85705,11.4803,27.4936,-6.4118,8.92985,27.5545,-9.7852,14.312,39.8149,-12.0068,13.3101,43.8643,-5.24271,5.57453,38.7359,-7.04435,3.42008,38.4652,-9.00286,2.98045,27.306,-7.68082,4.70464,27.3545,-6.82412,6.62992,27.4577,-10.8181,3.23134,22.9941,-11.0995,2.68609,27.3574,-9.08399,2.66363,30.914,-7.52496,4.49101,31.0007,-11.3664,2.28884,31.0005,-12.292,4.42745,22.9624,-12.7803,4.05242,27.5583,-5.68757,6.19262,34.6284,-6.4296,6.56459,31.1759,-8.3252,12.9996,27.4419,-8.31488,12.6882,22.6882,-6.99738,11.2676,22.7628,-8.07833,12.4527,18.9884,-6.90964,11.0513,19.0225,-15.1404,5.42777,35.2498,-15.6041,5.00489,39.4649,-14.086,5.96161,27.6846,-14.6913,5.77472,31.6109,-13.1501,3.80744,31.3274,-16.1163,8.08775,35.5572,-15.4549,8.21715,31.8004,-11.8883,4.75738,19.1442,-12.771,6.35956,19.1263,-13.2848,6.14012,22.8054,-14.6732,8.2111,27.6732,-9.44491,6.50397,84.1764,-9.93207,7.20936,79.633,-13.3597,5.42131,80.0347,-12.8949,4.91206,84.4399,-13.7141,5.64514,76.0649,-10.4688,7.2982,75.6703,-16.0708,3.10608,76.2834,-15.8934,2.80325,80.2957,-15.5535,2.35501,84.6475,-16.0311,3.16602,72.4685,-13.9657,5.64693,72.3048,-10.9596,7.00246,71.9422,-15.8437,3.09912,68.9346,-14.1173,5.52453,68.8123,-16.4934,0.295641,68.8774,-16.8164,0.122858,72.4622,-17.0395,-0.142813,76.3212,-7.6426,7.84552,71.5006,-6.66964,7.639,75.1962,-11.347,6.53879,68.5249,-8.60376,7.59556,68.1021,-5.79238,7.05286,67.7181,-11.6263,6.22125,65.4026,-9.21126,7.0261,64.9766,-6.7439,7.14448,64.4668,-16.1534,0.423168,65.5572,-15.7048,3.08035,65.6675,-14.0958,5.32186,65.5922,-17.8381,-3.39154,76.1833,-17.4323,-2.94547,72.2252,-17.0361,-6.46479,75.8267,-16.5932,-5.87741,71.8421,-17.1268,-0.623655,80.3942,-17.1432,-1.01513,84.7693,-15.7489,0.52907,62.4012,-15.6499,3.14186,62.6121,-13.8845,5.07142,62.6358,-9.58421,-11.9525,85.8785,-5.56486,6.16043,57.9425,-11.4468,12.1743,47.2825,-7.23566,4.06949,34.4332,-10.549,3.58635,19.194,-9.32421,-12.1129,100.666,-13.1415,-10.8624,100.082,-14.5404,-9.29941,102.971,-6.25287,7.01296,16.1544,-6.11705,9.09943,16.0699,-7.17075,5.01007,16.2988,-8.69439,3.62631,16.3858,-12.7829,8.12055,16.2969,-12.3793,9.62107,16.2697,-6.82178,10.9386,16.0698,-11.6381,4.96326,16.2591,-12.4747,6.52845,16.285,-10.3831,3.80379,16.3427,-10.8985,11.9885,18.9546,-9.60567,12.7079,18.9609,-11.915,10.9679,18.9887,-7.90883,12.3055,16.1023,-10.6953,12.0108,16.1594,-9.38269,12.762,16.1291,-11.6566,10.9056,16.2105,0.00326573,-12.9431,93.0039,0.00124224,-9.72552,88.5792,0.00169748,-8.58291,88.8521,0.000675994,-6.7486,88.9756,-0.000171017,6.87893,94.888,0.00164789,6.34551,102.538,-14.7933,-9.33651,101.14,-12.983,-10.8196,101.953,-0.000174446,5.46885,109.059,-6.06445,6.82062,14.0212,-5.7629,6.44793,12.1001,-7.10607,4.59261,12.9355,-7.12824,4.84851,14.3179,-5.88463,9.07033,13.8977,-5.14191,9.67723,9.53822,-4.91314,9.62292,7.3861,-4.99993,7.16158,7.26895,-4.7758,7.14893,9.52664,-5.46875,9.01645,11.8007,-6.11894,4.9129,10.0594,-6.30698,5.11066,11.3161,-6.03534,4.29194,8.08103,-8.34822,0.597847,8.00427,-7.50265,2.64957,9.54939,-7.15907,1.06345,6.9531,-5.48239,4.36979,5.85071,-6.37234,1.36692,5.48477,-7.31061,3.59571,10.9317,-6.13985,11.4907,9.7176,-7.27972,12.892,10.0109,-6.91486,13.5812,7.88381,-5.60028,12.0106,7.53244,-9.03409,13.4595,10.2153,-9.12093,14.282,7.90325,-6.63354,14.0646,5.8773,-5.16753,12.2476,5.71483,-4.59205,9.81753,5.63146,-8.73349,2.89688,11.3947,-8.98368,2.03384,10.0921,-10.0538,2.99004,11.2989,-10.2095,2.07714,10.0153,-10.6507,0.328228,8.30325,-9.58249,0.300635,8.35679,-10.4591,-2.39373,6.31705,-11.3941,-2.32144,6.21254,-9.31828,-2.2127,6.28619,-10.2883,3.85881,14.4449,-11.5217,5.02027,14.2715,-8.65866,3.61832,14.5174,-12.0497,5.1108,10.162,-11.1389,3.65669,10.8527,-11.2445,2.5674,9.54807,-12.0393,3.34957,8.66062,-12.6029,12.2024,6.24239,-13.1795,9.9968,6.63779,-13.3805,10.4399,4.56555,-12.7125,12.6924,4.26708,-11.2105,14.016,6.05047,-10.9864,14.3398,4.11351,-13.175,10.9074,2.64753,-12.2781,12.9355,2.4168,-10.5719,14.3248,2.33595,-12.0691,10.9596,1.34297,-11.087,12.4288,1.22974,-10.1546,13.4724,1.28477,-13.1605,5.64404,6.24161,-13.5218,3.0998,5.39739,-13.9091,3.96872,4.0573,-13.4829,6.33294,4.53709,-14.8259,1.16012,3.33774,-14.2646,0.237506,4.51489,-12.9677,2.17872,6.47045,-13.5373,-0.672101,5.24864,-12.6533,4.19107,7.48509,-13.26,9.39019,7.58428,-13.1904,7.88035,7.30972,-13.2025,8.03441,6.22125,-13.1482,-10.8557,1.24304,-13.4075,-11.2298,0.726636,-13.7227,-11.1111,0.934608,-13.6644,-10.7639,1.36787,-13.7621,-11.1501,0.483411,-14.0066,-10.8986,0.731297,-14.3542,2.01165,0.853683,-13.472,4.7192,1.02439,-14.2159,4.6173,2.55219,-15.0957,1.87651,1.98716,-13.7453,6.99108,2.8151,-12.88,7.08758,1.18748,-10.3078,10.4728,0.728313,-9.49046,11.8645,0.769141,-12.4433,9.33231,1.2975,-13.4023,9.33395,2.76771,-11.3854,6.64864,0.650278,-10.8897,8.92088,0.695482,-8.72422,13.1714,1.08652,-7.96307,11.1319,0.616307,-7.11132,12.3068,0.990589,-8.62185,9.79852,0.562221,-8.3568,14.4382,2.29362,-8.94289,14.7262,5.95752,-8.60591,14.7731,4.04693,-6.33669,13.9499,3.99215,-11.1484,13.4336,8.01312,-4.43627,9.71726,3.93574,-4.89946,12.0745,3.96011,-4.95451,11.6108,2.31432,-4.70881,9.36516,2.40256,-6.26415,13.4431,2.26265,-5.99694,10.9378,1.02937,-5.79732,9.10787,1.17815,-4.71479,7.19163,3.9733,-5.13917,7.0613,2.52237,-6.14678,7.18053,1.43049,-10.7274,12.6892,10.4859,-9.18983,8.27621,0.584934,-13.8785,-10.1982,0.429944,-13.5593,-10.373,0.340928,-13.4243,-9.84297,0.58251,-13.8649,-9.77037,0.684729,-13.2038,-10.5322,0.410638,-13.0082,-10.1592,0.666525,-14.0466,-10.5074,0.501402,-13.6959,-10.8484,0.314117,-13.1977,-10.9258,0.474206,-14.3927,-9.03124,0.642516,-14.2439,-8.74408,0.834807,-14.5379,-8.57709,0.739706,-14.6376,-8.9818,0.579555,-14.9028,-8.23525,1.01279,-14.9039,-8.649,0.755509,-14.4857,-8.17707,0.974573,-15.2119,-8.94212,0.883931,-15.0789,-9.25871,0.650044,-14.8871,-8.95524,0.60214,-15.2543,-8.52047,1.20955,-14.2063,-9.12271,1.02809,-14.1223,-8.73417,1.40555,-14.1643,-8.37024,1.11546,-14.1488,-8.00512,1.29511,-14.4674,-7.80621,1.11417,-14.1071,-8.30978,1.69254,-14.4332,-9.38421,0.707181,-14.5772,-9.69414,0.903699,-14.4767,-9.48843,1.24878,-14.7835,-9.41911,0.588419,-14.9347,-9.76353,0.867917,-6.6795,4.87551,1.63721,-5.75629,4.63618,2.67956,-6.18029,-1.49643,2.41885,-6.18944,1.87927,2.60372,-7.04036,1.83909,1.38481,-6.96961,-1.25617,1.04798,-5.37864,4.49972,4.1003,-6.04034,1.68247,3.97779,-6.43243,-1.67057,3.82861,-7.21017,-1.86173,5.06611,-12.825,-8.62792,1.28467,-13.2422,-8.40136,1.06932,-13.315,-8.89898,1.06744,-12.8804,-9.12867,1.25023,-13.3435,-9.33078,0.886854,-12.9019,-9.62754,1.02464,-12.6412,-8.85649,1.87097,-12.6959,-9.40449,1.76648,-12.7437,-10.0118,1.42362,-12.5841,-8.02236,1.12524,-13.042,-7.7212,0.931222,-12.5464,-8.46311,1.85711,-14.0984,-9.2504,2.2082,-14.0925,-9.87795,1.76513,-14.1133,-9.49907,1.37383,-14.092,-8.97316,1.67514,-13.6228,-9.51414,2.52088,-13.6613,-10.2026,1.99515,-14.0433,-10.426,1.19724,-14.1208,-10.0263,0.919423,-14.2233,-4.87121,3.92305,-14.582,-5.84383,3.46848,-15.0296,-5.52355,3.3502,-14.981,-4.32261,3.65727,-13.5827,-5.5826,3.88969,-14.1635,-6.25679,3.34067,-14.7711,-6.58239,3.01017,-15.1312,-6.23751,2.91423,-14.3658,-6.85625,2.88839,-15.3092,-5.44341,3.1404,-15.5598,-4.90626,3.19824,-15.3695,-5.87276,2.78037,-15.7386,-5.48495,2.76981,-13.6545,-6.61631,3.39519,-13.964,-6.63551,3.16877,-14.0605,-7.07418,2.81934,-14.0905,-7.50354,2.3321,-14.3476,-7.46651,2.38683,-14.8475,-7.23059,2.58488,-13.0945,-6.77384,3.52933,-12.7075,-5.82756,4.05913,-12.5044,-7.04546,3.42193,-11.8145,-6.29246,4.0076,-12.1593,-4.53447,4.79575,-11.2283,-4.80079,4.86802,-12.9787,-4.16002,4.70842,-12.7326,-7.68781,3.06237,-13.3052,-7.50652,3.12764,-12.1806,-7.37583,3.32243,-12.2794,-7.82567,3.0515,-11.7585,-7.27485,3.60611,-13.4143,-8.14547,2.84588,-12.7458,-8.3336,2.63947,-12.3732,-8.27751,2.58009,-13.7878,-7.29369,2.97375,-13.9315,-7.88671,2.47195,-15.3196,-8.89672,1.50852,-15.2871,-9.32221,1.13501,-15.3221,-8.34535,1.88333,-15.238,-8.02337,1.48394,-14.8833,-7.80875,1.18815,-8.92649,-11.5404,2.2091,-9.05807,-12.1027,2.0648,-9.98484,-11.8075,1.74469,-9.82816,-11.1334,1.85197,-10.3228,-11.7045,0.93313,-10.1131,-10.8813,0.977643,-8.83127,-10.9453,2.40468,-9.70343,-10.4191,2.07152,-9.83329,-10.0592,1.17162,-12.8299,0.988996,0.629864,-11.0486,-0.1608,0.60474,-10.4811,2.40689,0.545632,-12.1084,3.65359,0.53111,-15.2019,-9.55522,0.844658,-6.29534,-7.65785,1.13226,-6.20125,-7.86171,2.14188,-5.86061,-6.68183,2.33262,-6.04026,-6.54583,1.13186,-6.71435,-8.48696,1.04259,-6.63028,-8.79456,1.91057,-6.74944,-7.92674,3.1668,-6.41159,-6.73955,3.52862,-7.17005,-8.9074,2.83867,-7.07755,-9.24419,0.932985,-6.94709,-9.62346,1.70539,-7.28444,-8.17134,0.473726,-7.72356,-8.86583,0.533529,-6.88009,-7.44437,0.413367,-7.49699,-9.78504,2.58789,-7.99694,-9.59326,0.419478,-7.26224,-10.0153,0.764492,-8.10823,-7.95996,0.253549,-8.76052,-8.61622,0.682945,-8.92555,-9.33158,0.638247,-7.78817,-7.31083,0.0799181,-8.5162,-7.37923,0.0333724,-8.89692,-7.84745,0.24973,-9.42241,-8.37154,0.822215,-8.55896,-9.50036,3.07134,-8.20597,-8.68389,3.40801,-7.8336,-7.79385,3.81193,-9.22188,-8.27218,3.46046,-9.53621,-8.88478,2.73078,-8.74641,-10.2747,2.73582,-9.59479,-9.67943,2.36163,-7.69025,-10.5732,2.34652,-9.01248,-7.60468,3.90248,-9.8795,-7.92771,3.29975,-9.6982,-7.54644,3.6522,-9.97641,-8.39005,2.64288,-10.4336,-7.63067,0.352599,-10.9645,-8.46191,0.690123,-10.201,-8.5731,0.857324,-9.64344,-7.75906,0.306566,-11.2171,-7.50219,0.490371,-11.7824,-8.37126,1.00887,-11.3412,-9.23997,0.79836,-10.7445,-9.38717,0.995257,-11.9946,-9.14837,1.11385,-11.802,-7.36327,0.596832,-12.1753,-8.04173,1.11466,-12.2335,-7.14562,0.617441,-11.4424,-6.77261,0.323694,-11.6923,-6.36476,0.315175,-10.7955,-6.67002,0.210128,-12.6962,-6.88152,0.611756,-13.1619,-6.67526,0.656648,-13.5537,-7.55528,1.10676,-13.7011,-8.31588,1.24743,-9.84069,-6.76947,0.112248,-10.8577,-5.69256,0.306177,-9.56792,-5.70877,0.288197,-13.8111,-6.18645,0.641635,-13.5128,-6.47024,0.681293,-13.2764,-5.88656,0.442589,-13.4489,-5.42543,0.393983,-12.8498,-5.81314,0.388911,-12.696,-4.70852,0.405393,-12.2316,-5.97452,0.337504,-11.7944,-5.12952,0.35843,-14.1988,-5.83415,0.590696,-13.9068,-4.94739,0.378943,-14.3748,-6.67054,0.878224,-14.0176,-7.05354,1.11072,-14.4969,-4.6726,0.424091,-14.6549,-5.52213,0.617191,-14.8576,-6.42605,0.988538,-16.0288,-4.45274,0.720606,-15.4636,-4.84176,0.683454,-15.2158,-4.14062,0.507132,-15.8268,-3.56254,0.608899,-16.6195,-4.23008,0.924836,-16.5267,-3.20469,0.920909,-15.0608,-2.71067,0.644029,-16.1255,-2.03436,0.89407,-14.3993,-3.698,0.50163,-15.9773,-5.2716,0.761429,-15.4441,-5.66635,0.950707,-15.8431,-5.89583,0.74469,-15.4042,-6.13244,1.03878,-16.5319,-5.12051,0.865267,-16.3837,-5.83352,0.76408,-12.3864,-8.40455,1.83236,-12.0525,-8.53024,2.77395,-11.8499,-7.92798,3.27637,-12.2651,-8.64092,1.85257,-13.5193,-8.79206,2.73534,-14.0096,-8.58112,2.37642,-12.8836,-8.91049,2.5289,-15.208,-6.84324,2.29234,-15.3606,-6.2694,2.19955,-15.6556,-6.08472,2.20383,-15.2579,-6.28184,1.53453,-15.3431,-6.15849,1.53427,-15.1715,-6.75744,1.55816,-11.1823,-7.90494,3.42115,-11.3131,-8.55865,3.11661,-11.4505,-9.3367,2.94993,-12.119,-9.23103,2.6622,-12.335,-9.17035,1.86027,-10.4852,-7.84718,3.324,-10.5451,-8.55522,2.75498,-10.805,-9.41605,2.51531,-9.82374,-8.58835,1.69148,-10.2383,-8.82543,1.74332,-10.5395,-9.47795,1.68421,-9.55261,-8.81195,1.59284,-16.2745,-2.47635,2.70088,-16.6039,-3.59459,2.4849,-16.8046,-3.21156,1.64717,-16.519,-2.0258,1.74126,-16.7437,-4.58156,2.2196,-16.9021,-4.27166,1.51565,-15.7831,-1.14096,2.9317,-16.0378,-0.562883,1.79179,-15.3113,-0.398762,0.810879,-16.8368,-5.18718,1.33119,-16.7279,-5.95471,1.12665,-16.733,-5.43534,1.919,-16.6784,-6.2001,1.63898,-16.3198,-5.05706,2.72433,-16.3025,-5.7835,2.31289,-16.248,-6.44862,2.00501,-15.6591,-6.54588,1.97897,-9.98252,-13.0974,1.31449,-10.063,-13.0996,0.861805,-10.3425,-12.4758,0.935652,-10.0644,-12.5369,1.59281,-9.37854,-13.3452,1.35825,-9.39054,-13.4332,0.835822,-8.22783,-13.0078,0.567227,-8.63773,-13.3237,0.619642,-8.60899,-13.441,0.978717,-8.01424,-13.09,1.16861,-8.72689,-13.3796,1.37163,-8.39476,-12.9807,1.68945,-9.2767,-13.2144,0.468718,-9.23132,-12.773,1.84038,-11.6611,-12.4958,1.14256,-12.1305,-12.4871,1.12082,-12.0106,-12.0841,1.54023,-11.4524,-12.1533,1.41873,-11.5837,-12.4172,0.815355,-12.1288,-12.4545,0.716116,-11.2323,-12.0435,0.992194,-12.5401,-12.299,1.06347,-12.5287,-11.9062,1.3265,-12.598,-12.2162,0.75093,-12.7176,-11.7291,0.937102,-14.4176,-7.98781,2.23694,-14.0698,-7.55113,1.76726,-14.1118,-7.87581,1.79842,-13.9782,-7.55059,1.72358,-14.1343,-7.59597,1.29801,-13.7698,-7.15305,1.13307,-15.3128,-6.41572,1.54244,-15.1567,-5.88199,0.995555,-12.4467,-12.0206,0.54768,-12.0481,-12.1213,0.498895,-11.6339,-12.1725,0.568287,-12.4649,-11.5988,0.585004,-15.462,-7.97175,0.540538,-15.6683,-8.30924,0.77374,-15.3883,-8.22152,0.931313,-15.2156,-7.92,0.762358,-15.9077,-8.12839,0.598376,-15.7841,-7.82541,0.42152,-16.0985,-7.496,0.465355,-16.1625,-7.88495,0.751411,-15.404,-7.53946,0.479258,-15.662,-7.50846,0.376957,-15.8178,-7.19314,0.408758,-15.4483,-7.1424,0.546001,-11.6182,-10.2286,2.72153,-12.2699,-10.0131,2.50553,-12.4553,-9.82336,1.78396,-15.6171,-7.10189,1.80328,-16.1865,-7.1175,1.7303,-16.575,-6.88713,1.34654,-11.884,-11.5666,1.85809,-11.3177,-11.6259,1.64976,-11.7746,-11.0132,2.29972,-11.1661,-11.0593,1.96086,-12.4194,-11.358,1.65171,-12.3678,-10.7604,2.10995,-15.1509,-7.66284,1.04669,-15.4517,-8.02256,1.22062,-15.5447,-7.59945,1.50774,-15.1873,-7.27809,1.31328,-15.2464,-6.84378,1.49702,-16.063,-7.66976,1.39273,-15.921,-8.12608,1.10883,-14.9105,-7.8986,2.36082,-14.4362,-8.55923,2.04678,-14.9655,-8.58493,2.13531,-16.3829,-7.43546,1.01399,-9.16062,-10.0909,0.382393,-9.60281,-9.35106,1.41099,-8.15497,-10.4127,0.145343,-9.45652,-10.9755,0.168435,-8.37915,-11.3209,-0.00676227,-12.3298,1.3987,7.36569,-11.5994,0.737631,7.98242,-12.2021,-2.00434,6.04994,-12.8762,-1.43525,5.73675,-4.76147,7.2198,5.6469,-12.892,6.50763,7.41361,-13.2539,7.50848,8.79734,-12.5469,5.7165,8.4453,-13.7561,-1.57432,0.617975,-8.24518,-5.2474,0.440965,-7.21479,-5.40084,0.472821,-6.72265,-4.41202,0.785128,-9.31707,-3.95963,0.510318,-6.73169,-6.52684,0.390604,-8.26483,-6.36997,0.257755,-14.3758,-2.85739,4.24977,-13.6794,-3.58412,4.54654,-15.1616,-1.97264,3.82388,-15.7086,-3.25186,3.41934,-10.0988,-4.883,4.87416,-10.5656,-6.28564,4.18349,-8.83863,-5.02888,4.92627,-8.24722,-2.08104,5.93239,-9.22859,-6.6367,4.26019,-7.4692,-5.07485,4.63269,-7.60441,-6.69504,4.2684,-6.35341,-5.04478,3.74158,-13.3518,8.67106,4.7455,-6.9186,10.4115,0.652551,-13.1734,9.577,8.80507,-12.9677,9.03709,10.5255,-12.8136,6.91575,10.767,-9.71522,5.96171,0.659494,-7.11425,9.19293,0.701842,-13.8148,-9.27543,1.0283,-13.775,-8.83236,1.23291,-14.0253,-8.41294,1.75425,-12.8597,-10.585,0.921059,-14.4452,-9.06159,1.66127,-16.1289,-4.22516,3.09678,-14.9573,-9.13312,1.71338,-14.9569,-9.57917,1.31855,-10.1413,-7.27386,3.70273,-10.9577,-7.21319,3.75454,-9.05165,-7.07235,0.149723,-7.10157,-10.4167,1.53783,-8.69682,-12.141,0.0503912,-7.8318,-12.4145,0.526038,-7.53054,-11.6775,0.518688,-9.02449,-12.7842,0.230711,-7.61578,-12.5249,1.28361,-7.36536,-11.8789,1.34477,-8.12027,-12.3893,1.88179,-7.95597,-11.8296,1.9746,-13.4963,-4.15258,0.432939,-14.9332,-4.64468,0.493512,-15.0561,-5.21153,0.66475,-14.8617,-7.27319,1.15664,-14.4454,-7.34602,1.0569,-13.9382,-7.86855,1.73746,-9.88636,-12.5545,0.373678,-9.73205,-11.8432,0.203672,-9.85764,-13.0018,0.508338,-12.3498,6.59431,14.2217,-11.8623,11.109,10.474,-12.2482,11.6685,8.16244,-15.2476,-7.65478,2.08153,-15.1892,-7.42236,1.56446,-11.4357,-11.8023,0.578672,-11.9468,-11.6261,0.439837,-15.2019,-7.58622,0.645735,-15.1734,-7.3096,0.785651,-12.9779,-9.5795,2.34015,-13.0604,-10.2622,1.85402,-16.5759,-6.56997,0.911941,-11.0472,-11.505,1.16235,-12.6414,-11.1286,1.20564,-12.3978,-10.9852,0.735923,-11.8417,-11.021,0.50943,-11.2726,-11.2382,0.666112,-10.8993,-10.9187,1.34412,-12.5608,-10.4865,1.53774,-12.2951,-10.3614,0.945449,-11.7261,-10.4274,0.651534,-11.1428,-10.6547,0.793209,-10.9885,-10.2986,2.27831,-10.7405,-10.242,1.53036,-10.9966,-10.0708,0.926359,-11.5721,-9.88224,0.78155,-12.155,-9.78181,1.09428,-15.547,-6.73698,0.665191,-16.0119,-6.78071,0.538634,-15.2099,-6.92927,0.962211,-16.3636,-7.06334,0.660486,-15.297,-6.5377,1.05668,-15.688,-6.34635,0.742775,-16.2038,-6.35588,0.67855,-7.34157,-10.8446,0.578815,-7.20368,-11.175,1.41302,-7.82727,-11.2452,2.11419,-8.98656,-0.920773,0.708278,-5.8682,-4.90414,2.37368,-12.4433,6.64563,12.4992,-12.7388,8.39118,12.3943,-12.6473,8.17268,14.1958,-12.8019,10.4612,8.50655,-10.61,12.0816,14.2495,-9.2371,12.8132,14.1984,-74.7741,5.11077,137.914,-75.1262,4.0786,137.678,-74.2232,3.40563,138.02,-73.3745,4.46513,138.397,-73.7658,5.96772,138.66,-74.9305,6.2716,138.247,-75.346,7.24003,138.946,-76.3249,7.41463,138.58,-75.9598,6.5021,137.85,-76.0012,7.61173,139.87,-76.8731,7.76809,139.457,-74.7487,7.47358,140.298,-74.2006,6.96371,139.296,-75.867,5.43229,137.52,-75.4505,7.3792,141.438,-76.0546,6.22597,142.09,-75.8152,2.97436,142.328,-76.1758,4.66113,142.415,-77.6623,2.63647,141.615,-78.0776,4.54857,141.701,-77.9851,6.15146,141.253,-74.9088,1.65729,141.726,-76.5696,1.08571,141.043,-77.119,7.31132,140.627,-77.4317,7.65704,139.983,-78.2713,7.70842,139.76,-77.7228,7.89329,139.112,-75.9875,4.49572,137.398,-73.5946,1.21894,140.51,-75.2024,0.569727,140.139,-78.732,7.25761,140.168,-79.2939,6.68373,140.396,-74.958,2.50374,137.529,-75.7423,3.19697,137.321,-72.8207,1.91454,139.366,-72.8306,2.98067,138.739,-89.4123,9.09508,136.404,-89.0342,9.17546,136.36,-89.0697,9.05705,136.695,-89.3382,9.04984,136.666,-89.6155,8.86863,136.455,-89.4296,8.84836,136.762,-91.6616,4.14265,136.199,-92.3689,4.28258,136.111,-92.2443,4.37574,136.378,-91.726,4.3308,136.503,-92.4489,4.60461,136.459,-92.7866,4.55793,136.082,-86.693,-2.12671,137.513,-86.1668,-1.94357,137.726,-86.2179,-2.36883,137.213,-86.6432,-2.36199,137.318,-85.4327,-1.64034,138.044,-85.293,-2.01494,137.563,-86.8389,-1.79198,137.644,-86.3467,-1.48455,137.89,-85.6082,-1.08564,138.197,-86.9941,-1.53654,137.6,-86.6952,-1.12234,137.534,-87.2684,-1.67487,137.43,-87.2306,-1.96995,137.377,-87.0904,-2.28032,137.273,-85.7525,-0.585058,137.859,-84.864,-0.136836,138.211,-84.7589,-0.667295,138.596,-84.6042,-1.2798,138.458,-85.7749,-0.320308,137.241,-86.7009,-0.72432,136.974,-84.936,0.03781,137.486,-84.2924,0.410197,137.708,-83.9347,0.370786,138.622,-84.8446,-0.0758831,136.788,-85.6462,-0.375204,136.587,-84.2191,0.370885,136.931,-87.6863,-2.10033,137.05,-87.5181,-2.4809,136.952,-87.5857,-1.55462,137.089,-88.1475,-2.76478,136.611,-88.3368,-2.34568,136.699,-88.4731,-1.89167,136.578,-88.8082,-3.01966,136.309,-88.9787,-2.62368,136.372,-89.3074,-2.27489,136.144,-86.8718,-2.76796,136.205,-87.7346,-3.11216,135.813,-87.9291,-3.0696,136.314,-87.0828,-2.68981,136.784,-88.826,-3.39026,135.964,-88.603,-3.4123,135.479,-89.4012,-3.66342,135.236,-89.5742,-3.58006,135.652,-90.1492,-3.7426,135.472,-90.093,-3.88394,135.111,-89.4925,-3.45771,135.889,-89.2535,-3.40518,136.009,-90.3163,-3.45671,135.677,-89.9154,-3.33479,135.768,-89.6485,-3.2642,135.946,-90.7164,-3.97779,135.089,-90.5998,-3.84972,135.408,-90.6716,-3.90428,134.734,-90.1184,-3.75487,134.714,-89.3596,-3.47289,134.821,-90.8373,-3.64203,135.54,-91.0128,-3.2695,135.536,-90.4765,-3.08599,135.686,-90.0591,-2.97764,135.802,-91.005,-2.97001,135.399,-90.5855,-2.75115,135.511,-90.0052,-2.54257,135.772,-90.2571,-3.39516,134.497,-90.9319,-3.67816,134.61,-89.4518,-3.05572,134.59,-90.4383,-2.9718,134.501,-89.641,-2.588,134.626,-91.1044,-3.29642,134.608,-88.5256,-3.1552,135.034,-88.6066,-2.68114,134.799,-88.8223,-2.19137,134.898,-89.309,-3.17673,136.131,-89.4439,-2.8399,136.176,-89.7757,-2.94237,135.991,-89.5786,-2.5979,136.119,-89.8023,-2.67612,135.993,-91.1005,-2.9576,134.739,-90.6062,-2.63524,134.755,-89.8629,-2.26883,134.943,-89.0762,-1.91083,135.272,-89.263,-1.92197,135.746,-90.0141,-2.23296,135.396,-88.0134,-1.77819,135.226,-88.2896,-1.50128,135.656,-88.4681,-1.54449,136.177,-90.6847,-2.55879,135.172,-91.187,-2.95715,135.083,-87.7595,-2.30223,135.084,-86.9016,-1.96305,135.449,-87.1708,-1.40974,135.596,-87.4542,-1.08908,136.044,-86.2716,-1.09763,135.928,-86.0049,-1.6779,135.827,-86.5541,-0.718198,136.363,-85.0735,-1.41916,136.16,-85.9052,-2.20734,136.082,-85.0054,-1.92519,136.474,-85.3422,-0.80879,136.169,-86.7909,-2.50496,135.692,-87.6143,-1.13799,136.615,-85.1331,-2.11026,136.993,-84.2657,-1.80759,137.401,-84.1274,-1.63563,136.869,-83.1953,-1.32557,137.216,-83.3179,-1.49159,137.822,-84.4397,-1.67827,137.975,-83.5104,-1.32707,138.429,-83.8829,4.12683,136.493,-83.7187,5.00357,136.44,-84.7219,4.99923,136.627,-84.8783,4.20879,136.71,-85.0239,3.6254,137.198,-84.2348,3.23502,136.781,-85.5343,5.00132,136.501,-85.6001,4.27139,136.67,-85.6555,3.8111,137.148,-86.3783,3.84519,136.963,-86.3396,4.28096,136.452,-86.3507,5.0087,136.237,-86.4104,3.80193,137.571,-85.6271,3.7832,137.793,-87.3141,3.85292,137.32,-87.2481,3.88775,136.75,-87.2229,4.31338,136.258,-85.0205,3.73041,137.935,-84.7779,3.44475,138.0,-84.9037,3.33556,137.4,-85.1006,3.10079,137.981,-85.0788,2.96028,137.168,-85.805,2.82843,137.79,-85.7945,2.68835,137.051,-85.6434,2.13421,136.603,-84.9147,2.27048,136.711,-83.9047,2.44425,136.666,-86.6903,2.57768,137.473,-86.5933,2.5195,136.759,-86.3843,2.01355,136.299,-87.7229,2.33081,137.08,-87.5577,2.30554,136.402,-87.7569,2.01648,137.77,-86.6213,2.33441,138.163,-85.6481,2.6384,138.54,-87.3121,1.81781,135.974,-88.8248,2.05584,136.631,-88.6186,2.03818,136.022,-88.3456,1.5844,135.616,-86.4214,1.93373,138.643,-85.4697,2.19473,139.039,-87.3225,1.68443,138.279,-88.1728,0.9232,135.683,-87.1495,1.15011,136.056,-89.4196,1.36613,135.256,-89.705,1.7942,135.662,-89.2403,0.709043,135.293,-87.4094,4.1181,137.85,-86.4219,4.09978,138.092,-87.2004,4.55883,138.129,-86.4128,4.59118,138.337,-85.5591,4.1098,138.374,-85.5559,4.64239,138.636,-87.2664,5.01607,138.05,-86.4677,5.10057,138.235,-87.794,4.55982,138.024,-87.818,4.28606,137.947,-87.8528,4.94245,137.969,-85.5638,5.1908,138.513,-88.1429,4.288,137.835,-88.2763,4.55424,137.861,-88.3372,4.93703,137.823,-88.4066,4.13436,137.531,-88.7917,4.5453,137.612,-88.8563,4.98951,137.565,-88.2794,5.21605,137.721,-88.5756,5.40421,137.35,-89.539,5.0211,137.311,-89.5157,5.43155,137.015,-89.4796,4.56619,137.36,-88.1883,3.93944,136.528,-89.1035,3.99302,136.294,-89.2221,3.90299,136.789,-88.2768,3.88731,137.053,-89.9401,4.07845,136.095,-90.0869,3.96076,136.555,-89.3614,4.1536,137.186,-90.2661,4.2218,136.969,-88.1577,4.35934,136.077,-89.0523,4.40741,135.875,-87.2688,5.00446,136.038,-88.2059,5.0016,135.857,-89.0998,5.0075,135.665,-89.9345,5.0183,135.568,-89.8775,4.48153,135.74,-89.2558,5.53711,135.936,-90.1002,5.49551,135.806,-88.3481,5.56846,136.137,-87.4061,5.60135,136.35,-86.4627,5.64323,136.564,-90.7426,4.14698,135.929,-90.8806,4.03802,136.358,-90.6885,4.53128,135.62,-91.0374,4.27275,136.75,-91.6009,4.2036,135.807,-87.9832,1.47808,138.007,-88.1613,1.72851,137.868,-88.5443,1.35122,137.714,-88.5374,1.63964,137.675,-88.9081,1.74422,137.225,-89.1785,1.26007,137.32,-90.0403,1.10416,136.909,-90.044,1.52336,136.676,-89.9321,1.80787,136.217,-90.8694,0.924878,136.633,-91.1097,1.2743,136.389,-90.9466,1.56439,135.944,-90.7286,1.53493,135.441,-91.8648,1.04583,136.177,-91.7829,1.32417,135.782,-91.6327,1.30007,135.316,-91.43,0.952702,134.963,-90.4712,1.14962,135.069,-91.2775,0.413086,134.904,-90.301,0.558009,135.051,-91.2541,-0.0750538,135.156,-90.3074,0.0654409,135.372,-89.2544,0.212207,135.703,-88.1628,0.444901,136.131,-89.4207,0.061361,136.25,-90.481,-0.110547,135.865,-88.279,0.319116,136.722,-92.4077,0.872142,136.018,-92.4681,1.0833,135.698,-92.8272,0.721296,135.973,-93.0182,0.790838,135.696,-92.4272,1.05604,135.277,-92.9663,0.813578,135.345,-92.8801,0.426041,136.088,-93.2722,0.405112,135.711,-93.0523,0.50033,135.198,-92.8127,0.021188,136.078,-93.2223,-0.0351537,135.68,-92.971,0.0852684,135.148,-92.3561,0.526302,136.172,-91.9907,0.616327,136.235,-91.9078,0.237292,136.199,-92.2711,0.134731,136.147,-91.4216,0.762614,136.505,-91.4999,1.0047,136.448,-91.7364,0.931663,136.378,-91.7635,0.66357,136.394,-91.3358,0.404028,136.47,-91.6867,0.319246,136.356,-90.7548,0.495492,136.61,-91.5387,0.0895675,136.285,-91.2906,0.143498,136.362,-91.5915,-0.0842133,136.065,-90.7897,0.0667621,136.318,-91.3695,-0.259823,135.625,-89.9023,0.652619,136.92,-89.6658,0.265222,136.703,-88.3974,1.00895,137.704,-88.1955,0.790025,137.676,-88.4854,0.555185,137.268,-89.0242,0.848371,137.324,-87.8369,1.12802,138.007,-87.8161,0.864409,137.877,-87.2983,0.788068,137.836,-87.1436,1.24074,138.297,-86.2218,1.42651,138.679,-86.1214,0.99366,138.254,-86.0899,0.767778,137.56,-87.1498,0.582922,137.183,-86.139,0.880676,136.843,-87.1052,0.697357,136.537,-85.1882,0.948652,137.814,-85.1438,1.16825,138.574,-85.3293,1.0229,137.051,-85.2734,1.61673,139.056,-84.4023,1.77152,139.396,-84.2297,1.25126,138.764,-84.567,2.46403,139.458,-86.2278,1.3341,136.345,-92.1972,0.252188,134.913,-92.7535,-0.219572,135.216,-92.1261,-0.177402,135.12,-92.8192,-0.347164,135.589,-92.1372,-0.354624,135.54,-92.6456,-0.256134,135.922,-92.1697,-0.196923,135.929,-90.1435,4.6029,137.179,-90.195,5.0109,137.14,-90.631,4.41006,137.032,-90.6201,4.6463,137.09,-90.6658,4.9799,137.074,-90.7403,5.22306,136.972,-90.413,5.39805,136.841,-90.9946,5.22566,136.91,-91.2063,5.387,136.652,-91.0348,4.98527,136.975,-90.2807,5.63659,136.313,-89.4169,5.66443,136.492,-91.1028,5.61523,136.166,-90.9273,5.47447,135.696,-88.4896,5.68144,136.733,-91.9205,5.33195,136.438,-91.9058,5.51227,136.065,-91.8049,5.41215,135.643,-92.4319,5.22429,136.345,-92.5751,5.29448,136.054,-91.9313,5.0045,136.639,-92.5388,4.95785,136.47,-91.3961,5.01441,136.786,-91.6871,5.01008,135.434,-90.7575,5.02739,135.484,-92.4601,5.27825,135.721,-92.5594,4.96933,135.62,-91.8557,4.64026,136.648,-91.3332,4.64671,136.811,-90.9824,4.65843,136.989,-90.8768,4.42044,136.965,-83.4303,1.06523,138.969,-83.1808,0.740929,139.194,-83.8006,0.901246,138.517,-83.4323,1.42301,139.322,-82.5867,1.28667,139.696,-84.1069,0.840101,137.832,-84.4954,1.04386,137.899,-92.4835,4.57195,135.648,-91.6087,4.55052,135.526,-92.8778,4.95296,136.072,-92.2774,4.29099,135.797,-91.1636,-3.79452,135.096,-91.3448,-3.39924,135.085,-88.2283,8.62932,137.105,-88.5689,8.65902,137.057,-88.5391,8.84148,136.972,-88.2244,8.92743,136.864,-88.7723,8.69261,136.991,-88.687,8.86117,136.933,-88.718,8.99784,136.768,-88.6217,8.40222,137.09,-88.822,8.44903,137.021,-88.6677,8.21388,137.047,-88.8104,8.25334,137.003,-88.3069,8.30197,137.156,-88.4312,8.0108,136.979,-89.2339,8.11491,136.511,-89.1979,8.14012,136.172,-89.509,8.30248,136.248,-89.5422,8.3195,136.521,-89.5423,8.52283,136.131,-89.6614,8.59134,136.499,-89.4659,8.58187,136.788,-89.4393,8.37154,136.739,-89.4815,8.81084,136.081,-89.3668,9.0303,136.123,-89.012,9.05907,136.009,-89.0501,8.73498,135.845,-89.1266,8.37816,135.916,-88.4699,9.01476,135.971,-88.4752,8.62699,135.775,-88.5633,9.14894,136.372,-84.4821,-0.562234,136.432,-83.6837,-0.195072,136.627,-84.1843,-1.16391,136.503,-83.295,-0.847613,136.759,-84.2084,0.778955,137.226,-87.8615,8.47612,135.846,-87.8598,8.89411,136.034,-87.9943,9.06307,136.444,-75.5607,1.85155,136.909,-75.355,0.747351,136.988,-74.5861,1.58827,137.795,-75.9241,2.47429,136.919,-86.0094,-2.42922,136.602,-86.9147,-2.45774,137.17,-78.0372,0.952606,140.847,-78.5974,1.81386,141.048,-79.1762,2.2928,141.016,-79.1065,2.91633,141.24,-79.3391,3.88231,141.252,-79.4481,1.40187,140.686,-79.8568,2.10553,140.754,-80.1134,2.83036,140.912,-80.3256,1.04259,140.375,-80.7028,1.82527,140.456,-81.0453,2.64905,140.613,-79.0003,0.657995,140.529,-79.95,0.34121,140.217,-77.8576,0.356862,140.468,-78.4856,0.0270993,140.128,-79.3978,-0.470103,139.653,-79.4763,4.96394,141.078,-79.4625,5.76244,140.784,-79.7761,4.40833,141.06,-80.5398,4.34576,140.759,-80.5367,5.01026,140.633,-80.3468,3.64976,140.888,-80.5292,5.6955,140.362,-80.0338,7.89668,138.219,-78.8899,7.94282,138.627,-79.3967,7.78689,139.299,-80.4919,7.79611,138.867,-78.4924,7.57435,137.863,-77.2925,7.5323,138.235,-79.6767,7.53592,137.544,-81.6577,7.80702,137.266,-80.7274,7.63038,137.35,-81.0718,7.91769,137.976,-82.0311,7.97165,137.838,-81.522,7.8223,138.551,-82.4487,7.85094,138.336,-79.8981,7.363,139.669,-80.9547,7.43294,139.273,-81.9665,7.50533,138.966,-82.8056,7.55132,138.762,-80.3694,6.89295,139.881,-81.3433,6.96923,139.55,-82.2645,7.01205,139.286,-83.0431,7.04154,139.061,-80.5715,6.32691,140.09,-81.4906,6.35388,139.765,-81.4988,5.68022,140.023,-82.37,6.34897,139.491,-83.2049,6.30687,139.189,-82.3554,5.63333,139.786,-83.1024,5.55346,139.603,-79.7825,6.27833,140.42,-83.2905,7.87818,138.151,-82.9541,8.00597,137.69,-82.6268,7.91672,137.178,-82.526,7.45243,136.691,-81.5797,7.20135,136.672,-83.563,7.58523,136.659,-83.5995,8.01633,137.018,-84.3648,8.11646,136.847,-84.4179,7.67015,136.539,-83.8113,8.10899,137.51,-84.4709,8.22841,137.347,-80.6638,6.88026,136.757,-84.0488,7.96181,137.966,-84.6288,8.05972,137.809,-85.0802,8.38384,137.184,-85.0434,8.25145,136.675,-85.1475,7.78982,136.406,-85.1733,8.2007,137.669,-85.8598,8.38059,137.547,-85.761,8.56021,137.007,-85.2594,7.87456,138.013,-85.7522,8.0091,137.905,-84.7782,7.75204,138.153,-84.2497,7.66631,138.33,-84.378,7.20937,138.473,-84.9043,7.32712,138.259,-78.2153,6.76983,137.199,-76.9783,6.66741,137.5,-79.5049,6.76598,136.948,-79.5674,5.70465,136.645,-78.1715,5.70407,136.872,-76.9103,5.61025,137.169,-78.2293,4.71505,136.825,-76.9848,4.6691,137.093,-76.6303,2.41258,136.57,-77.7643,2.25293,136.334,-77.2922,1.37294,136.022,-76.3077,1.61195,136.353,-79.136,1.91883,136.41,-78.041,3.05798,136.693,-79.438,2.84233,136.666,-79.6084,4.669,136.612,-82.5057,4.30029,136.43,-82.4859,5.16655,136.388,-81.9591,6.33664,136.389,-81.1086,5.70957,136.445,-78.5379,0.99126,136.007,-80.835,1.50727,136.657,-79.8775,0.583247,136.352,-77.7327,-0.0605121,135.746,-76.6687,0.5221,136.041,-76.0571,0.934161,136.366,-74.7204,0.418306,139.162,-75.4548,-0.42039,138.752,-76.1354,-0.206967,139.617,-75.7091,-0.957284,137.448,-76.1196,-1.09242,138.41,-75.1139,-0.16937,137.807,-76.8283,-0.840658,139.166,-76.3239,-1.55653,137.054,-76.7336,-1.65085,137.982,-77.4541,-1.4172,138.682,-76.8797,-2.00423,136.657,-77.3128,-2.38825,136.251,-77.5684,-2.53479,136.984,-77.2323,-2.12136,137.492,-78.2004,-2.43465,137.567,-77.9283,-1.95726,138.135,-77.6684,-2.79157,135.853,-77.8214,-2.96399,136.502,-78.4116,-2.8622,137.052,-78.0929,-3.24378,135.487,-78.2348,-3.47372,136.067,-78.7253,-3.34715,136.589,-78.6598,-3.97671,135.612,-78.512,-3.67457,135.063,-79.1003,-3.88333,136.116,-78.2652,-2.83913,135.048,-78.6872,-3.22279,134.687,-79.1537,-3.53381,134.232,-78.9403,-4.04484,134.532,-78.6892,-2.39053,134.901,-79.09,-2.80685,134.609,-79.5611,-3.15178,134.258,-79.0824,-4.48972,135.091,-78.3599,-1.94563,135.175,-77.8754,-2.41503,135.352,-79.1936,-2.0858,135.189,-78.9475,-1.62714,135.475,-77.5182,-1.98018,135.644,-78.1125,-1.48281,135.43,-78.8568,-1.19009,135.72,-79.5447,-2.55035,134.877,-79.6645,-3.81053,133.732,-79.4185,-4.34863,133.964,-79.5426,-4.82614,134.469,-79.5719,-4.87955,134.898,-79.4169,-4.77436,135.124,-80.0806,-4.96727,134.737,-79.9747,-5.00498,133.991,-80.3404,-5.08023,134.423,-79.9299,-4.63518,133.533,-79.8986,-4.87298,135.082,-79.0452,-2.52904,137.356,-78.9458,-2.14171,137.862,-79.5315,-1.74079,137.72,-79.7644,-1.42911,138.064,-78.9166,-1.59457,138.552,-79.4621,-2.0575,137.329,-78.345,-1.00669,139.196,-79.5452,-1.09322,138.969,-81.478,-0.699654,139.134,-80.5698,-0.546648,139.411,-80.2154,-1.06756,138.451,-80.9839,-0.997304,138.023,-77.1366,-1.48154,135.893,-77.94,-0.918136,135.609,-76.6173,-0.895372,136.133,-78.9681,-0.701848,135.91,-79.5204,-1.17536,136.534,-79.9492,-0.790202,136.861,-79.4233,-1.56181,136.197,-79.2195,-0.118778,136.037,-80.0561,-0.315646,136.576,-81.2892,3.49496,140.565,-81.4382,4.25919,140.423,-82.2805,4.1014,140.132,-82.1629,3.30298,140.316,-82.9793,3.07645,140.126,-83.1456,3.89217,139.807,-81.9315,2.41436,140.354,-82.7731,2.20289,140.115,-83.0943,4.78299,139.823,-82.3407,4.8866,140.039,-81.4971,4.98465,140.29,-83.8148,4.11497,139.391,-83.835,4.75231,139.519,-83.8072,5.41895,139.318,-84.6783,4.70051,139.03,-84.6283,5.2949,138.878,-84.6496,4.07425,138.725,-83.7944,6.60797,138.741,-83.7462,5.92955,138.908,-83.8214,6.2774,138.635,-84.1013,6.27842,138.24,-84.3809,6.70218,138.252,-84.4546,5.7906,138.379,-84.9741,6.94459,138.008,-84.5113,6.56165,137.636,-84.9911,6.78466,137.521,-85.5557,5.60277,138.074,-83.9009,3.69231,139.235,-84.3492,3.57712,138.716,-83.806,3.3619,139.515,-84.6688,3.05477,138.917,-81.5912,1.53562,140.129,-83.5579,1.99603,139.807,-83.7229,2.75603,139.865,-82.1344,0.476758,139.833,-81.243,0.754464,140.083,-82.9594,0.131072,139.499,-81.8431,-0.156963,139.762,-82.7361,-0.516419,139.426,-83.8423,-0.248708,139.049,-83.6946,-0.896625,138.928,-82.4561,-0.978431,138.876,-82.2064,-1.16263,138.15,-82.2997,-0.393547,136.876,-82.7246,0.624656,136.694,-80.0843,-3.43793,133.841,-79.9923,-2.96125,134.54,-80.514,-3.30536,134.173,-80.3819,-2.9738,135.01,-79.9231,-2.51232,135.399,-80.8967,-3.40785,134.643,-80.5716,-3.26971,135.514,-81.0607,-3.78006,135.106,-80.0917,-2.73315,135.93,-79.9554,-3.12534,136.248,-80.4202,-3.81132,135.839,-80.8697,-4.34777,135.339,-79.5864,-2.02279,135.807,-79.7308,-2.20126,136.419,-79.5845,-1.71587,136.939,-80.6375,-3.83562,133.487,-81.0424,-3.74191,133.839,-80.2202,-4.16023,133.347,-81.4563,-4.30767,133.598,-81.0972,-4.37965,133.294,-81.3699,-3.88095,134.299,-81.7146,-4.38852,134.005,-80.7151,-4.59626,133.17,-81.6563,-4.87602,133.527,-81.3319,-4.92572,133.295,-81.0144,-4.94884,133.181,-81.4667,-4.22971,134.712,-81.7621,-4.61995,134.376,-81.6336,-5.29208,133.706,-81.2723,-5.32032,133.506,-80.8692,-5.2142,133.343,-81.0061,-5.39627,133.89,-80.7318,-5.32358,133.653,-80.3842,-5.19596,133.758,-80.4254,-4.94437,133.332,-81.8766,-4.85782,133.839,-81.8476,-5.16741,133.881,-81.8964,-4.89167,134.138,-81.7612,-5.14915,134.202,-81.5316,-4.93978,134.553,-81.4081,-5.37525,134.125,-81.0961,-5.17875,134.468,-80.654,-5.24908,134.177,-81.2359,-4.65777,134.878,-80.8099,-4.98288,134.749,-80.5489,-4.82876,135.054,-80.5629,-4.48828,135.533,-80.3079,-4.7217,135.351,-80.4142,-4.3112,135.717,-80.0983,-4.4874,135.646,-79.6853,-4.69323,135.411,-79.4199,-4.35581,135.709,-79.8952,-4.07173,135.939,-79.5822,-3.52287,136.316,-84.5535,5.79433,137.046,-83.5726,5.9516,136.667,-84.2541,6.20025,137.237,-82.8375,6.71406,136.506,-83.8142,6.98642,136.635,-84.2602,6.51664,137.024,-84.6362,7.13597,136.592,-84.8881,6.81674,136.991,-85.3406,7.28876,136.488,-85.507,7.01983,136.886,-85.8382,7.94594,136.271,-86.0026,7.47213,136.344,-86.1479,7.22032,136.716,-86.5137,8.12415,136.066,-86.6685,7.65067,136.141,-86.8294,7.412,136.513,-86.9344,7.41426,136.967,-86.2076,7.21083,137.189,-85.5602,6.99458,137.377,-85.7381,8.40143,136.51,-86.4506,8.58184,136.313,-86.5175,8.76557,136.792,-84.3042,6.27117,137.712,-84.6726,5.94096,137.675,-85.5739,5.79501,137.458,-85.5335,5.65972,136.829,-86.5553,5.50192,137.812,-86.5592,5.73275,137.208,-87.583,5.40934,137.624,-87.5283,5.69204,136.979,-84.7166,1.56471,136.658,-83.6956,1.68648,136.667,-84.5329,1.01383,137.092,-83.6936,0.899223,136.791,-85.3926,7.47801,138.092,-85.5212,7.1498,137.83,-86.1805,7.40809,137.665,-85.873,7.65521,137.958,-86.9813,7.63423,137.41,-86.6829,7.71823,137.67,-86.4084,7.63871,137.766,-86.2901,7.82289,137.865,-87.7696,7.80573,137.134,-87.6591,7.60958,136.762,-87.8021,8.16532,137.318,-87.2048,8.03454,137.529,-86.7116,7.94372,137.718,-87.5101,7.62111,136.347,-88.2945,7.79723,136.62,-88.1386,7.81661,136.237,-87.696,8.54426,137.257,-87.093,8.394,137.479,-86.617,8.22973,137.682,-86.6792,8.61921,137.301,-86.4614,8.40356,137.599,-87.4962,8.82704,137.006,-86.1927,8.10665,137.823,-87.3435,7.85711,136.006,-87.9771,8.0579,135.933,-87.2068,8.30496,135.925,-88.5741,8.21904,135.867,-88.7051,7.97597,136.168,-88.8144,7.95687,136.538,-87.1802,8.74847,136.145,-87.296,8.94182,136.583,-88.8891,8.15317,136.863,-89.2113,8.26266,136.779,-89.1934,8.5191,136.898,-88.9767,8.46822,136.953,-88.9228,8.75419,136.929,-89.1455,8.8067,136.874,-86.1814,8.32007,137.688,-85.4797,1.4707,136.582,-87.6604,-2.82702,135.328,-87.9531,5.21498,137.812,-92.3187,0.727416,134.966,-77.0772,0.151234,140.258,-77.6918,-0.435234,139.717,-83.5641,7.5974,138.55,-83.7402,7.12369,138.769,-79.2521,-2.96336,136.826,-79.6157,-2.53875,136.774,-79.754,-1.36598,137.328,-80.119,-1.13145,137.592,-80.9392,0.107163,139.975,-76.7947,3.15623,136.909,-82.1267,-0.991654,137.441,-80.9851,-0.0728163,136.825,-80.9693,-0.814713,137.384,-75.9554,-0.217789,136.52,-74.4854,0.764496,138.334,-82.5691,5.7607,136.408,-80.9354,2.63558,136.66,-81.0546,4.54724,136.475,-81.6508,0.718762,136.708,-82.4682,2.55836,136.639,-82.5448,3.40389,136.535,-81.0281,3.58245,136.555,-79.5781,3.74428,136.667,-78.2128,3.86388,136.83,-76.9784,3.8863,137.065,-82.4308,1.69691,136.703,-76.1654,3.85884,137.309,-73.777,2.42637,138.378,-73.9223,1.05123,139.503,-73.7178,1.55082,138.892,-2.92123,-11.6998,167.706,-2.56611,-12.0745,168.13,-2.48619,-12.1114,167.646,-2.7868,-11.7495,167.292,-7.65998,-3.52043,173.467,-7.69946,-3.44336,174.222,-7.57775,-3.92305,174.435,-7.54075,-4.10156,173.398,-8.28594,-2.24781,174.316,-8.73744,-1.80892,174.889,-8.73502,-2.04548,175.298,-8.24662,-2.70179,174.421,-8.31325,-2.29118,175.394,-7.99882,-3.10089,174.394,-8.14599,-0.905697,171.759,-7.92791,-1.29681,171.238,-8.05258,-0.90633,171.066,-8.37584,-0.449731,171.714,-8.51416,-0.656909,172.681,-8.84021,-0.127579,172.732,-8.74796,-0.583315,173.783,-9.10381,-0.0458178,173.949,-8.76791,0.330001,172.852,-9.11598,0.398034,174.2,-9.08336,-1.10725,175.093,-9.12195,-1.05101,175.582,-8.64213,-1.07969,175.722,-8.32049,0.377439,172.927,-8.6644,0.420618,174.242,-8.27752,-0.0641327,171.706,-7.84713,0.00733085,171.802,-7.93512,-0.615621,170.863,-7.52847,-0.569455,170.927,-7.48025,-1.36582,170.177,-7.48402,-2.06496,169.676,-7.25403,-2.2575,169.806,-7.21618,-1.40107,170.384,-7.54035,-0.398178,171.887,-7.91061,-0.155969,172.79,-8.16381,-0.143556,173.812,-8.04802,-1.3345,175.169,-7.78786,-2.68162,174.926,-7.28495,-0.818579,171.106,-7.10746,-0.816289,171.218,-7.19908,-0.534737,171.896,-7.09996,-2.13844,169.847,-7.05152,-0.838933,170.548,-7.22682,-2.8065,169.838,-7.44566,-2.72325,169.763,-7.77993,-2.24804,169.698,-7.72645,-1.63317,174.713,-7.62709,-2.84812,174.728,-7.65271,-2.84066,170.225,-7.37447,-3.11923,170.378,-7.98695,-2.36263,170.248,-7.89206,-1.4555,170.151,-8.05355,-1.6802,170.567,-7.97093,-1.78873,170.952,-7.92736,-2.29426,170.936,-7.54661,-3.07492,171.388,-7.67309,-3.26762,171.993,-7.48703,-3.71871,171.719,-7.3867,-3.43078,171.027,-7.55393,-3.96502,172.511,-7.73137,-3.4237,172.707,-7.79063,-2.95246,172.875,-7.82236,-3.05452,173.645,-8.85004,-0.817068,174.523,-9.17061,-0.418626,174.785,-8.8891,-1.13804,174.806,-9.23232,-0.124041,175.179,-8.76829,-0.0811374,175.267,-8.24574,-0.47261,174.67,-7.6299,-0.452192,173.503,-7.72351,-0.778443,174.24,-7.4365,-0.375912,172.698,-7.94178,-2.73337,173.728,-7.64931,-2.52696,172.845,-7.86014,-2.19389,173.245,-8.05124,-2.30498,173.756,-7.74914,-2.94546,172.187,-7.66969,-2.67038,171.678,-7.53395,-2.98686,170.928,-7.71506,-2.74499,170.931,-6.78308,-1.06136,169.242,-6.44533,-1.46834,167.765,-6.43772,-0.0960658,167.891,-6.62252,0.114674,169.314,-7.78102,-1.3259,175.4,-7.69902,-2.55982,175.587,-7.18085,-0.0206119,171.842,-6.84731,0.44251,170.65,-7.07579,0.852792,171.978,-7.68393,-0.405804,174.796,-7.54436,0.081247,173.907,-7.37585,0.219449,172.913,-4.86261,4.45803,167.735,-5.58032,3.27252,167.78,-5.74897,3.29856,166.168,-5.05853,4.60737,166.146,-6.03457,2.14544,167.84,-6.29903,1.04513,167.899,-6.25418,1.00945,166.305,-6.09318,2.12343,166.224,-3.77111,5.56645,167.718,-3.88579,5.85234,166.193,-2.47944,6.22776,167.707,-2.45503,6.48036,166.193,-6.15865,-1.24528,166.135,-6.26315,-0.120853,166.318,-1.16081,6.50131,166.169,-1.23744,6.44314,167.718,-7.40442,-5.01412,173.37,-7.37492,-4.71149,172.269,-7.30148,-4.32842,171.331,-7.22247,-3.91,170.544,-7.14385,-3.44786,169.901,-7.03676,-2.92057,169.444,-6.90497,-2.15059,169.244,-3.46974,-8.76324,183.461,-3.35508,-9.99117,182.258,-4.5149,-9.02542,181.907,-4.66615,-7.87066,182.949,-5.53925,-7.9367,181.467,-5.66779,-7.00327,182.328,-3.29119,-10.8582,181.066,-4.44694,-9.85566,180.824,-5.49482,-8.6514,180.46,-1.02821,-11.9647,181.204,-1.04544,-11.1928,182.516,-1.0361,-10.2613,183.701,-4.37574e-005,-10.449,183.675,-3.27824,-11.3995,180.013,-4.43698,-10.4226,179.818,-5.48014,-9.21736,179.446,-6.3434,-7.85831,178.892,-6.35926,-7.33071,180.033,-1.02055,-12.4198,180.081,-4.51377e-005,-12.518,180.077,-2.12905,-11.568,181.185,-2.11488,-12.0619,180.084,-2.16818,-10.7339,182.46,-2.19313,-9.58757,183.743,-6.32535,-6.81064,181.077,-6.23871,-6.40093,181.814,-7.14445,-6.13176,173.221,-6.74229,-7.44579,172.866,-6.8546,-6.63879,171.392,-7.15137,-5.64541,171.916,-6.85648,-6.00397,170.245,-7.11256,-5.12141,170.835,-6.81101,-5.36591,169.278,-7.05715,-4.5786,169.955,-6.73288,-4.67422,168.496,-6.97343,-3.9758,169.272,-6.58128,-3.91744,167.919,-6.83332,-3.29612,168.762,-6.27348,-8.43457,177.8,-5.46215,-9.69486,178.515,-6.13599,-9.07683,176.968,-5.42791,-10.1257,177.68,-4.45564,-10.8255,178.928,-4.48203,-11.1479,178.088,-3.30448,-11.7523,179.116,-3.34415,-12.0165,178.272,-2.12623,-12.3807,179.164,-2.13933,-12.6012,178.318,-1.02192,-12.7076,179.153,-1.01636,-12.8846,178.315,-6.5951,-8.17903,175.912,-6.95937,-6.94262,176.623,-7.00685,-6.35631,178.288,-6.99936,-5.88588,179.638,-6.90199,-5.51542,180.869,-7.13144,-6.50415,174.743,-6.77099,-7.67139,174.539,-6.04968,-2.54688,166.797,-6.63621,-2.48598,168.366,-6.32165,-3.13473,167.473,-5.79772,-2.26291,165.61,-5.40952,-10.5245,176.862,-6.01309,-9.63054,176.246,-4.52979,-11.4462,177.23,-3.41245,-12.2469,177.404,-5.33493,-10.8286,176.093,-5.86132,-10.0503,175.579,-1.03891,-12.9939,177.508,-2.18723,-12.7662,177.474,-1.05242,-13.0257,176.712,-2.22029,-12.8058,176.647,-3.42937,-12.3486,176.556,-4.50906,-11.6413,176.409,-6.11249,-9.46806,174.937,-6.34442,-8.92745,175.394,-6.44858,-8.55844,174.389,-6.37658,-8.55207,173.369,-6.16153,-9.20747,174.256,-6.07244,-9.23905,173.579,-5.84843,-9.51835,172.977,-6.11577,-8.94305,172.524,-6.35177,-8.25179,171.781,-6.47747,-7.56146,170.724,-6.47157,-6.90578,169.624,-6.41139,-6.2201,168.599,-6.32398,-5.50707,167.717,-6.17726,-4.79603,167.033,-5.9003,-4.1155,166.516,-5.54101,-3.59112,165.903,-5.2029,-3.22634,164.875,-2.24691,-12.5835,170.579,-1.95865,-13.0005,170.87,-1.81042,-13.1437,170.281,-2.00236,-12.7499,170.01,-2.96988,-10.773,164.875,-3.3453,-10.1307,164.394,-3.62646,-10.0748,165.402,-3.23673,-10.6717,165.561,-2.70434,-12.0103,168.697,-2.2091,-12.4305,169.084,-2.10071,-12.497,168.497,-0.863958,-12.1058,164.368,-0.990541,-12.0518,163.68,-1.2105,-11.3867,162.34,-1.15711,-10.4787,161.965,6.30286e-005,-12.1224,162.836,-1.11755,-11.9274,163.048,-4.11824,-9.24615,165.339,-4.3046,-9.69545,166.544,-3.81802,-10.3008,166.364,-3.41744,-10.7436,166.284,-3.09554,-11.0616,166.27,-2.92842,-11.0717,165.76,-2.68592,-11.1986,165.261,-2.28913,-11.4531,164.735,-2.55748,-11.0695,164.237,-2.45209,-11.4552,165.609,-2.08164,-11.6825,165.172,-2.91857,-10.4552,163.606,-4.68912,-8.27101,165.661,-4.85056,-8.92147,166.888,-4.394,-7.78599,164.572,-3.7211,-9.11357,163.76,-2.43135,-12.3227,169.681,-2.92946,-11.9065,169.294,-3.23755,-11.7462,169.925,-2.69535,-12.1859,170.286,-2.93115,-12.0505,170.938,-3.54722,-11.5714,170.652,-3.75737,-11.2378,169.403,-4.35584,-10.7737,170.249,-4.71954,-10.155,169.15,-4.12025,-10.7338,168.63,-3.36263,-11.4897,168.795,-3.6801,-11.0724,168.137,-3.09968,-11.625,168.229,-3.37017,-11.2617,167.66,-3.13194,-11.3842,167.247,-2.92646,-9.65797,162.998,-4.85583,-9.59359,168.085,-4.30131,-10.2398,167.662,-3.84726,-10.665,167.304,-3.47977,-10.9533,167.0,-3.17913,-11.1677,166.771,-1.57249,-12.9882,169.437,-1.38655,-13.4108,169.946,-1.50329,-12.9769,168.763,-0.785655,-13.4381,169.367,-0.786339,-13.3459,168.875,-4.35289e-005,-13.4849,168.913,-0.755847,-13.7491,169.832,-2.42425,-12.4202,171.19,-2.0575,-12.7409,171.444,-1.7816,-12.9982,171.715,-1.79259,-13.1966,171.313,-2.8513,-11.2737,166.291,-2.68544,-11.32,165.955,-2.94893,-11.3264,166.626,-2.93896,-11.4815,166.955,-2.05978,-12.5306,167.983,-1.48595,-13.0006,168.247,-0.793894,-13.3666,168.412,-4.41366e-005,-13.5037,168.456,-1.73983,-11.741,164.174,-1.55998,-11.9112,164.734,-1.95897,-11.4886,163.595,-2.18346,-10.8995,162.913,-2.14728,-10.0316,162.455,-5.85784,-9.02637,171.118,-5.97978,-8.45059,170.124,-5.98522,-7.8264,169.049,-5.92612,-7.14202,167.972,-5.839,-6.44702,166.991,-5.69064,-5.80038,166.191,-5.23132,-9.83689,170.641,-5.38595,-9.33766,169.625,-5.44251,-8.75239,168.546,-5.40266,-8.06768,167.404,-5.29644,-7.37917,166.307,-5.09429,-6.78205,165.401,-1.90788,-9.0847,162.372,-2.73242,-8.7431,162.865,-2.34557,-7.71698,162.792,-3.05648,-7.20161,163.259,-3.47209,-8.05985,163.439,-3.70124,-6.43872,163.729,-4.0977,-7.18041,164.05,-4.39673,-5.59927,164.313,-4.80304,-6.22373,164.792,-4.99953,-4.65958,165.033,-5.40653,-5.20687,165.591,-0.978712,-9.4504,161.969,-0.000845838,-9.83456,161.744,0.00176064,-8.61455,161.956,-0.786113,-8.38024,162.086,-1.58971,-8.057,162.379,-4.5933,-4.11706,164.175,-2.00487,-6.71185,162.522,-2.64674,-6.28779,162.909,-3.29428,-5.57472,163.22,-3.96437,-4.88091,163.614,-1.77764,-13.472,170.431,-1.84711,-13.3804,170.815,-1.74072,-13.7093,170.891,-1.71286,-13.8057,170.541,-1.48048,-14.0521,171.021,-1.48053,-14.1507,170.661,-1.11578,-14.4002,171.148,-1.12753,-14.5097,170.761,-1.67774,-13.5936,171.235,-1.39828,-13.905,171.398,-0.67062,-14.929,171.293,-0.677271,-15.0048,170.757,-4.91934e-005,-15.3153,170.734,-1.29198,-13.7165,171.757,-1.01483,-14.0283,171.941,-1.06483,-14.2326,171.55,-0.637751,-14.5086,172.172,-0.64847,-14.7362,171.751,-4.76477e-005,-14.8031,172.311,-1.57306,-13.4357,171.558,-1.80699,-13.3672,171.111,-4.54258e-005,-14.579,172.749,-0.637147,-14.2918,172.599,-1.00913,-13.8327,172.353,-1.25258,-13.5175,172.153,-1.51496,-13.2495,171.949,-1.57677,-13.6035,170.157,-1.57879,-13.8799,170.281,-4.25608e-005,-15.1134,170.229,-0.648513,-14.8514,170.333,-4.33155e-005,-14.914,170.028,-0.478322,-14.7703,170.144,-1.39168,-14.2007,170.403,-1.08454,-14.5373,170.482,-4.5537e-005,-14.5785,169.939,-0.491841,-14.1716,169.989,-0.430944,-14.4897,170.074,-0.614378,-14.6504,170.228,-0.771626,-14.6928,170.327,-1.01666,-14.4959,170.376,-1.38932,-13.9051,170.159,-1.37126,-13.6942,170.057,-0.646675,-14.1205,170.088,-0.864797,-13.8192,170.016,-1.17485,-13.6437,169.999,-1.24963,-14.1959,170.284,-0.575551,-14.4241,170.167,-0.805525,-14.1098,170.168,-0.710518,-14.4056,170.242,-0.67855,-14.5835,170.271,-0.769011,-14.6086,170.325,-0.899281,-14.4456,170.324,-1.06378,-14.1624,170.233,-1.19089,-13.8859,170.122,-1.24337,-13.7318,170.048,-1.13514,-13.7116,170.03,-0.976817,-13.845,170.087,-5.2688,-10.5644,174.847,-5.58674,-10.3591,175.101,-5.12232,-10.9668,175.521,-4.87791,-11.001,175.192,-4.35765,-11.627,175.791,-4.17321,-11.5175,175.448,-5.29976,-10.2943,173.584,-4.98787,-10.5651,173.322,-5.23467,-10.3132,172.948,-5.57562,-9.96616,173.299,-4.93639e-005,-13.4191,174.89,-0.687746,-13.1521,174.732,-0.760462,-13.011,175.197,-4.18997,-11.1369,172.556,-3.56473,-11.5017,172.545,-3.68391,-11.4991,172.042,-4.33506,-11.0317,172.033,-5.4669,-9.97262,172.506,-3.34601,-12.2114,175.891,-3.21771,-11.9409,175.507,-1.01893,-12.9332,175.82,-4.5343e-005,-13.1028,176.061,-2.97835,-11.7715,172.656,-3.395,-11.495,172.981,-2.83014,-11.6733,173.085,-3.07888,-11.8628,172.173,-2.57605,-12.1281,172.346,-2.51212,-11.9689,172.81,-4.01283,-11.2227,172.994,-2.0948,-11.9331,173.366,-2.39892,-11.8039,173.224,-2.33214,-11.6503,173.59,-2.0686,-11.7281,173.698,-4.76364,-10.7241,172.694,-4.9515,-10.5025,172.187,-4.55672,-10.8948,173.118,-2.22355,-12.6284,175.925,-2.27407,-12.2282,175.433,-2.27089,-11.808,175.169,-3.10126,-11.7091,175.32,-4.03844,-11.4236,175.269,-4.6978,-10.9774,175.004,-5.01466,-10.6485,174.734,-5.04297,-10.5103,173.844,-4.76868,-10.7407,173.648,-4.37798,-11.0328,173.484,-3.86478,-11.3121,173.382,-3.27145,-11.5027,173.382,-2.72524,-11.5941,173.475,-1.53742,-12.4399,175.242,-1.73993,-11.9507,174.923,-5.67695,-9.54191,171.921,-5.09883,-10.2156,171.523,-4.4023,-10.904,171.341,-3.69354,-11.5032,171.411,-2.54367,-12.2725,171.801,-3.06674,-11.9454,171.594,-1.56032,-12.7926,172.869,-1.2953,-13.0634,173.041,-1.27631,-13.3093,172.6,-1.53383,-13.042,172.413,-0.636773,-14.0793,173.043,-0.622584,-13.8519,173.486,-4.40199e-005,-14.1162,173.632,-5.8055,-9.91846,174.646,-5.47385,-10.2529,174.526,-5.18981,-10.437,174.499,-1.30178,-12.7675,173.448,-1.56288,-12.4999,173.289,-1.32171,-12.4631,173.831,-1.57,-12.2146,173.672,-1.42042,-12.1366,174.23,-1.63425,-11.9436,173.978,-2.17981,-12.3522,172.519,-2.15634,-12.141,172.961,-1.49794,-12.0632,174.626,-1.23382,-12.5285,174.843,-1.12201,-12.6283,174.434,-1.04875,-13.1126,173.649,-1.04212,-13.3928,173.233,-1.03394,-13.63,172.794,-1.06911,-12.838,174.044,-4.28675e-005,-13.6279,174.475,-0.641893,-13.3563,174.321,-5.01409e-005,-13.8659,174.061,-0.621911,-13.5997,173.912,-1.81989,-12.7942,172.215,-2.13727,-12.5469,172.008,-1.85587,-12.5655,172.696,-1.85154,-12.3079,173.13,-1.82906,-12.0606,173.529,-1.84495,-11.8225,173.827,-5.85854,-9.71953,174.186,-5.77863,-9.75144,173.724,-5.55074,-10.1057,174.203,-5.48933,-10.1298,173.883,-5.26149,-10.3462,174.27,-5.21002,-10.3754,174.052,-3.04469,-11.5183,173.992,-2.48117,-11.4563,174.108,-2.59066,-11.5373,173.823,-3.1527,-11.5302,173.725,-2.13944,-11.3065,174.214,-2.23228,-11.4964,173.924,-1.95094,-11.2697,174.256,-2.01735,-11.5039,173.996,-1.83594,-11.2854,174.278,-1.8459,-11.5488,174.074,-1.74603,-11.3085,174.326,-1.702,-11.6123,174.185,-1.69503,-11.3178,174.415,-1.61406,-11.6653,174.356,-1.7228,-11.3015,174.524,-1.65752,-11.6412,174.572,-1.88379,-11.2974,174.652,-1.83125,-11.5637,174.782,-2.28827,-11.4037,174.831,-2.23512,-11.5051,175.016,-3.01698,-11.5902,175.005,-3.02864,-11.5785,175.197,-3.94055,-11.3927,175.146,-3.86465,-11.449,174.974,-4.45962,-10.9818,174.771,-4.56084,-10.9478,174.884,-4.68934,-10.686,174.625,-4.82642,-10.6655,174.673,-4.77604,-10.565,174.522,-4.95701,-10.5207,174.505,-4.79809,-10.5432,174.431,-5.00479,-10.4734,174.351,-4.75881,-10.6006,174.355,-4.95924,-10.5167,174.213,-4.65792,-10.7285,174.277,-4.4829,-10.929,174.175,-4.60352,-10.8651,173.938,-4.82724,-10.6479,174.081,-4.17695,-11.1909,174.056,-4.25348,-11.1415,173.8,-3.67202,-11.4244,173.972,-3.75283,-11.3941,173.713,-4.52239,-10.752,174.386,-4.38615,-10.9286,174.301,-4.37764,-11.0023,174.717,-4.58088,-10.7174,174.618,-3.81275,-11.4335,174.867,-1.98734,-11.2072,174.552,-2.34127,-11.3449,174.712,-1.8638,-11.1968,174.465,-1.83643,-11.2134,174.417,-1.85759,-11.2154,174.379,-2.17552,-11.1796,174.332,-2.00574,-11.1703,174.362,-2.45704,-11.3693,174.238,-1.88324,-11.1754,174.394,-1.87113,-11.1703,174.411,-1.9041,-11.1485,174.436,-3.00717,-11.552,174.873,-2.95435,-11.4372,174.132,-3.61299,-11.3735,174.108,-4.6039,-10.6353,174.446,-2.02609,-11.1444,174.501,-2.36472,-11.1813,174.66,-3.0146,-11.3878,174.86,-3.79126,-11.2687,174.875,-4.32234,-10.9151,174.738,-4.50701,-10.6833,174.646,-4.5004,-10.6099,174.479,-4.41358,-10.7051,174.403,-4.28821,-10.8472,174.302,-2.9624,-11.2679,174.126,-3.59563,-11.2306,174.102,-2.50874,-11.1694,174.241,-2.24817,-11.0807,174.427,-2.03306,-11.1383,174.427,-4.12687,-11.1636,174.195,-4.06349,-11.0435,174.188,-4.64035,-10.5978,174.555,-4.55645,-10.5839,174.59,-1.91216,-11.1974,174.364,-1.92379,-11.1591,174.4,-4.6439,-10.5787,174.496,-4.55059,-10.5649,174.535,-2.61442,-10.8983,174.169,-2.41393,-10.8581,174.398,-2.54923,-10.9031,174.69,-3.0399,-10.9504,174.877,-3.72119,-10.8082,174.918,-4.21752,-10.6376,174.795,-4.42835,-10.532,174.675,-4.50556,-10.4857,174.603,-4.51304,-10.4757,174.545,-4.44287,-10.4917,174.474,-4.31239,-10.537,174.368,-4.16687,-10.6232,174.242,-3.96241,-10.7522,174.111,-3.59751,-10.8963,174.015,-3.06693,-10.9454,174.033,-2.67923,-10.5039,174.239,-2.71026,-10.4787,174.561,-3.0447,-10.381,174.63,-3.54796,-10.3028,174.663,-3.99316,-10.2992,174.631,-4.26007,-10.3251,174.56,-4.40131,-10.347,174.527,-4.46801,-10.3763,174.523,-4.41326,-10.3722,174.465,-4.28342,-10.3467,174.384,-4.11048,-10.3442,174.3,-3.86874,-10.3437,174.214,-3.5283,-10.3551,174.141,-3.0944,-10.3858,174.137,-6.35066,3.89673,179.957,-6.48084,2.25265,181.796,-7.12535,1.44527,180.424,-7.01483,2.81311,178.796,-5.3145,5.00822,181.069,-5.48033,2.98674,183.063,-7.14771,-0.233955,181.541,-6.49772,0.222559,182.998,-5.51258,0.506639,184.288,-3.89761,5.96222,182.064,-4.09242,3.63906,184.22,-4.15763,0.74614,185.392,-4.34658,6.08546,173.357,-4.75696,6.28833,175.884,-5.77139,5.21475,175.326,-5.36882,5.05894,173.025,-6.49464,4.02408,174.773,-6.10843,3.9191,172.744,-2.99822,6.93309,173.549,-3.3765,7.20862,176.295,-7.10582,-2.02085,182.06,-6.45933,-1.87151,183.465,-5.45486,-1.94533,184.705,-4.1015,-2.08918,185.707,-2.28342,0.965231,186.273,-2.29229,-2.22222,186.505,-2.19582,4.12164,185.138,-2.07666,6.56946,182.897,-1.53227,7.4392,173.695,-1.7288,7.80744,176.555,-7.28791,-3.99215,180.748,-7.42686,-4.3338,179.336,-7.6693,-2.81641,179.029,-7.49216,-2.38023,180.541,-7.74755,-1.41397,178.518,-7.5436,-0.817411,180.01,-7.69332,-0.110141,177.71,-7.49683,0.634721,179.032,-7.56096,0.958075,176.582,-7.38057,1.82667,177.653,-7.14992,1.90638,173.73,-6.85592,1.80135,172.222,-6.56536,2.81855,172.483,-6.91434,2.90551,174.236,-7.3071,1.02155,173.281,-7.78049,-0.768417,176.491,-7.65636,0.210872,175.631,-7.79326,-2.00132,177.037,-7.70498,-3.30175,177.49,-7.45784,-4.76517,177.861,-6.06105,2.28381,169.349,-6.38729,1.21457,169.357,-5.57054,3.37241,169.318,-4.84165,4.48825,169.288,-3.80519,5.50811,169.285,-2.56198,6.21474,169.317,-6.92484,-3.80112,182.111,-6.27623,-3.89822,183.356,-5.22253,-4.25441,184.462,-3.87641,-4.76436,185.33,-2.16756,-5.27521,186.004,0.0121518,6.4812,167.698,0.000165973,6.65497,169.303,-1.27594,6.56122,169.321,-2.45543e-005,0.98157,186.597,-1.92351,7.71778,179.749,-1.36401e-005,6.76324,183.24,-1.00739e-005,8.00296,176.669,-3.62831,7.10283,179.224,-5.04056,6.1158,178.544,-6.10815,4.89491,177.719,-6.80606,3.683,176.849,-7.19124,2.59589,176.004,-7.38546,1.6418,175.218,-7.49908,0.811937,174.522,-6.58198,1.49228,170.761,-6.24975,2.52754,170.847,-5.76248,3.60167,170.907,-5.02035,4.70967,170.981,-3.98211,5.72994,171.102,-2.72433,6.50226,171.216,-1.37863,6.93882,171.274,-7.65052,-3.77155,175.857,-7.44866,-5.15401,176.247,-7.42731,-5.18473,174.672,-6.57985,-5.36351,181.966,-5.95408,-5.66508,182.942,-4.90902,-6.2844,183.833,-3.61817,-7.0487,184.53,-1.90909,-7.96566,185.005,-4.26096e-005,-7.81592,185.458,-0.78833,-12.2471,165.04,-2.67521,-11.4048,166.324,-2.51009,-11.4698,166.097,-2.28179,-11.6163,165.828,-1.93614,-11.838,165.532,-1.44299,-12.0693,165.269,-3.94582e-005,-12.3154,165.889,-4.17128e-005,-12.4588,165.746,-0.690774,-12.3399,165.799,-0.654027,-12.2036,165.936,-1.28876,-12.1412,165.916,-1.22433,-11.9835,166.033,-1.75709,-11.9083,166.034,-1.68929,-11.7742,166.1,-2.11092,-11.6726,166.146,-2.05453,-11.579,166.154,-2.3063,-11.5306,166.251,-2.26437,-11.4718,166.256,-2.45005,-11.457,166.375,-2.40779,-11.4041,166.375,-2.36131,-11.2914,166.365,-2.20953,-11.3501,166.245,-1.98609,-11.418,166.13,-1.62749,-11.5366,166.046,-1.17511,-11.7229,165.991,-0.622392,-11.9596,165.956,-2.39273,-11.5372,166.198,-2.5451,-11.4645,166.354,-2.19162,-11.6881,166.04,-1.8496,-11.9314,165.803,-1.37516,-12.1808,165.605,-0.744723,-12.385,165.461,-4.12934e-005,-12.4811,165.399,-2.32082,-10.8493,166.304,-2.18437,-10.8649,166.108,-1.97353,-10.9121,165.904,-1.64188,-11.0361,165.731,-1.17974,-11.2363,165.646,-0.61711,-11.5067,165.679,-2.42162,-12.1161,167.283,-2.67156,-11.7803,167.016,-2.78729,-11.5517,166.778,-2.78093,-11.4299,166.549,-2.03194,-12.5265,167.569,-1.46753,-12.996,167.81,-0.792209,-13.3841,167.964,-4.40661e-005,-13.5809,167.948,-2.34784,-12.0805,167.057,-1.9846,-12.4684,167.279,-1.91882,-12.3612,167.126,-2.27435,-12.0089,166.942,-1.4155,-12.9125,167.463,-0.753574,-13.2853,167.601,-0.698936,-13.0653,167.436,-1.33919,-12.7305,167.3,-1.87969,-12.2815,167.098,-2.22682,-11.9307,166.918,-0.677182,-12.9056,167.425,-1.30095,-12.5893,167.292,-0.670815,-12.7338,167.485,-1.26967,-12.4185,167.353,-1.82237,-12.1479,167.137,-2.19622,-11.8507,166.932,-4.196e-005,-13.2305,167.496,-2.57283,-11.7794,166.855,-2.67246,-11.5782,166.682,-2.49544,-11.7382,166.776,-2.5885,-11.5556,166.636,-2.45025,-11.6743,166.76,-2.54442,-11.5004,166.625,-2.42533,-11.6037,166.764,-2.51492,-11.43,166.622,-2.65328,-11.4753,166.516,-2.55896,-11.4632,166.504,-2.51366,-11.4127,166.499,-2.4769,-11.3276,166.492,-4.13186e-005,-12.304,167.756,-0.68741,-12.314,167.82,-1.26107,-12.0009,167.694,-1.75383,-11.7068,167.442,-2.15931,-11.532,167.105,-2.40143,-11.3087,166.845,-2.47306,-11.1041,166.647,-2.42151,-10.9219,166.483,-0.952521,-9.33673,184.488,-1.14785e-005,7.07098,171.281,-5.88832,3.46986,164.744,-5.23888,4.85342,164.842,-6.2024,1.1029,164.695,-6.12408,2.25137,164.685,-1.17763,6.67797,164.684,0.0683891,6.39719,166.11,-4.0791,6.10482,164.936,-2.60719,6.76249,164.913,-6.00337,-1.1401,164.521,-6.14319,-0.0422551,164.677,-5.63178,-2.11891,164.133,-5.0386,-2.96656,163.595,-4.37485,-3.66858,163.106,-1.79202,-5.7536,161.971,-2.38343,-5.3149,162.191,-3.037,-4.80876,162.446,-3.71294,-4.26678,162.727,-6.21009,3.74538,163.507,-6.80967,4.00952,162.316,-6.10448,5.54649,162.586,-5.54444,5.18656,163.723,-6.31263,2.45591,163.288,-6.28036,1.23785,163.153,-6.52701,1.35843,161.663,-6.78237,2.63333,161.925,-1.48922,7.82688,162.398,0.134248,6.77812,163.208,-1.34075,7.12309,163.537,-4.84222,6.89435,162.738,-4.3681,6.40727,163.868,-3.21122,7.76601,162.756,-2.88346,7.15699,163.868,-5.97762,-1.04134,162.911,-5.9858,-0.939749,161.363,-6.27515,0.16276,161.515,-6.16277,0.0671771,163.058,-5.58804,-2.01999,162.618,-5.56837,-1.93055,161.113,-5.01803,-2.81551,162.242,-5.02962,-2.73346,160.805,-4.33044,-3.43701,161.891,-4.37849,-3.38341,160.521,-1.77029,-5.11172,161.065,-1.73429,-4.69761,159.582,-2.39749,-4.43624,159.758,-2.3598,-4.72472,161.161,-2.99016,-4.18176,160.024,-2.9694,-4.32988,161.356,-3.65443,-3.8594,160.283,-3.62571,-3.91563,161.597,-7.62913,4.31519,160.936,-8.6801,4.74544,159.512,-7.77067,6.65013,159.965,-6.8597,5.98395,161.31,-7.57814,2.89162,160.348,-7.05752,1.64397,159.918,-8.0586,2.11871,158.071,-8.70892,3.24752,158.751,0.0276162,9.44805,159.469,-1.64226,8.7354,161.258,-1.92974,9.8704,159.966,-6.25257,8.44577,160.211,-5.48748,7.54458,161.524,-4.15323,9.57725,160.228,-3.61045,8.55674,161.572,-6.52242,0.325951,159.835,-6.06019,-0.855175,159.755,-6.34242,-0.697341,157.884,-7.13285,0.706649,157.883,-5.61061,-1.85342,159.5,-5.77219,-1.76481,157.701,-5.12353,-2.69652,159.181,-5.26564,-2.65006,157.43,-4.53119,-3.43307,158.898,-4.70381,-3.49286,157.184,-1.55103,-4.52124,157.875,-1.45776,-4.51368,156.249,-2.27124,-4.48713,156.478,-2.2789,-4.41014,158.171,-3.12031,-4.42587,156.751,-3.0135,-4.25981,158.456,-3.94887,-4.08339,156.965,-3.80211,-3.97163,158.681,-0.763111,-4.58472,157.668,-0.877217,-5.01046,159.649,0.00226341,-4.52696,156.038,-0.701599,-4.53636,156.094,-9.94982,5.24989,158.412,-8.88966,7.50885,158.799,-9.3629,2.30207,156.752,-10.1282,3.50975,157.649,-7.18356,9.66718,158.837,-4.74287,10.9006,158.628,-6.88209,-0.595652,156.27,-8.01771,0.898861,156.327,-2.22594,11.2058,158.339,-6.12766,-1.70236,156.115,-5.49859,-2.60298,155.919,-4.85476,-3.49226,155.734,-2.35182,-4.68261,155.134,-1.51353,-4.6224,154.927,-3.22464,-4.50783,155.349,-4.03761,-4.08325,155.54,-0.725341,-4.60704,154.802,-1.3656,-7.07178,162.207,-1.21821,-6.16906,161.845,-1.1825,-5.49904,161.121,-7.7871,-1.99861,171.356,-7.74141,-1.68935,172.011,-8.01484,-1.48411,172.86,-8.27488,-1.44969,173.717,-8.46086,-1.50899,174.354,-8.6862,-1.49219,174.706,-0.680765,-7.38304,162.032,-0.599082,-5.81225,161.232,-0.618524,-6.48334,161.769,-0.000154196,-6.6544,161.76,0.00151837,-5.46904,160.442,-0.504919,-5.44818,160.537,-0.00362039,-4.58693,154.762,-2.55075,-10.6025,166.75,-2.45083,-10.4103,166.518,-3.96693e-005,-11.6438,168.108,-0.692296,-11.7045,168.277,-1.33904,-11.4923,168.163,-1.84846,-11.2484,167.826,-2.36399,-11.1359,167.437,-2.58852,-10.8966,167.025,-2.10686,-10.3303,165.678,-1.74099,-10.418,165.41,-0.607013,-10.8812,165.275,-1.21449,-10.6085,165.254,-2.29081,-10.3183,165.986,-2.36809,-10.3246,166.268,-2.61661,-9.94445,166.867,-2.50923,-9.79304,166.587,-0.729342,-10.8203,168.717,-1.39975,-10.6152,168.477,-1.98273,-10.4694,168.197,-2.56794,-10.3242,167.869,-2.77435,-10.1126,167.209,-2.18153,-9.57057,165.657,-1.76938,-9.57277,165.362,-0.580736,-9.82642,165.088,-1.20599,-9.64478,165.134,3.40359e-005,-10.0102,165.118,-2.40334,-9.61564,165.981,-2.45677,-9.68761,166.296,-2.60934,-9.30131,166.941,-2.53953,-9.18817,166.665,-1.4252,-9.53683,168.511,-2.04756,-9.47485,168.203,-2.55667,-9.41041,167.781,-2.6789,-9.36009,167.264,-2.28932,-8.80977,165.76,-1.84855,-8.69037,165.424,-0.571411,-8.7237,165.254,-1.2086,-8.67449,165.276,0.000101507,-8.78692,165.268,-2.45912,-8.96709,166.115,-2.5051,-9.09417,166.391,-2.56927,-8.74087,166.733,-2.54304,-8.72732,166.499,-1.35142,-8.43816,168.09,-1.98164,-8.47123,167.849,-2.47985,-8.59814,167.494,-2.64891,-8.74932,167.138,-1.88179,-7.86862,165.953,-2.39464,-8.19869,166.118,-1.2052,-7.7831,165.92,-0.578223,-7.78013,165.935,-2.53465,-8.52273,166.37,-2.00437,-7.70875,167.194,-1.26114,-7.63267,167.287,-2.50205,-8.1326,166.941,-2.58245,-8.46114,166.806,-2.61812,-8.86746,166.945,-0.678625,-8.42583,168.276,6.32447e-005,-7.63253,167.365,-0.619736,-7.64076,167.34,-0.731284,-9.61904,168.787,-7.78412,12.2723,14.1239,-6.69005,10.9172,14.0091,-9.15383,12.9386,12.5793,-10.6038,12.2178,12.6912,-7.65851,12.4543,12.4484,-6.5125,11.0309,12.1945,-12.2907,9.70577,12.4064,-12.2543,9.6188,14.2034,-11.5863,10.883,14.2622,-11.6594,10.8158,12.6519,-12.4312,10.1397,10.4575,-11.472,4.88444,12.4451,-10.9286,3.91511,11.9437,-10.2178,3.73232,13.161,-10.0554,3.36103,12.3004,-8.65353,3.46996,13.3014,-8.65366,3.21842,12.3773,-7.20232,4.1179,11.9437,-7.52637,7.58916,0.873675,-8.04887,5.29992,1.04531,-8.66799,1.80271,0.807284,-11.8682,-2.97789,0.501959,-12.5452,-1.70412,50.7554,-7.90767,-1.55962,50.9272,-13.0684,-3.32607,0.482125,-13.7022,-2.88937,0.532479,-10.5547,-4.62292,0.409097,-11.3596,-4.27752,0.414069] }, -{ "name": "morph_aged", "vertices": [3.13364,-9.72623,176.129,3.90474,-9.64007,175.921,4.46922,-9.57699,175.353,4.67584,-9.55391,174.577,4.46922,-9.57699,173.802,3.90474,-9.64007,173.234,3.13364,-9.72623,173.026,2.36255,-9.81239,173.234,1.79806,-9.87547,173.802,1.59145,-9.89855,174.577,1.79806,-9.87547,175.353,2.36254,-9.81239,175.921,3.2198,-10.4973,175.921,3.88759,-10.4227,175.741,4.37645,-10.3681,175.249,4.55538,-10.3481,174.577,4.37645,-10.3681,173.905,3.88759,-10.4227,173.414,3.2198,-10.4973,173.234,2.55201,-10.5719,173.414,2.06316,-10.6266,173.905,1.88422,-10.6466,174.577,2.06316,-10.6266,175.249,2.55201,-10.5719,175.741,3.28288,-11.0618,175.353,3.66843,-11.0187,175.249,3.95067,-10.9872,174.965,4.05398,-10.9757,174.577,3.95067,-10.9872,174.189,3.66843,-11.0187,173.905,3.28288,-11.0618,173.802,2.89733,-11.1049,173.905,2.61509,-11.1364,174.189,2.51178,-11.148,174.577,2.61509,-11.1364,174.965,2.89733,-11.1049,175.249,3.30597,-11.2684,174.577,3.07294,-9.09432,175.847,3.70368,-9.02384,175.677,4.16542,-8.97225,175.212,4.33443,-8.95336,174.577,4.16542,-8.97225,173.943,3.70369,-9.02384,173.478,3.07294,-9.09432,173.308,2.4422,-9.1648,173.478,1.98047,-9.21639,173.943,1.81146,-9.23528,174.577,1.98046,-9.21639,175.212,2.4422,-9.1648,175.677,0.667976,-10.3791,165.157,1.13994,-9.90453,165.279,1.00633,-7.07055,165.035,1.55048,-7.07055,165.035,0.799233,-10.3898,166.092,1.20976,-9.9223,166.208,1.00633,-7.07055,166.414,1.55048,-7.08208,166.349,0.799233,-10.7678,165.473,1.57552,-9.99298,165.473,2.03531,-7.07055,165.473,0.799233,-10.7678,165.771,1.57552,-9.99298,165.911,2.03531,-7.07055,165.911,1.00633,-9.08034,165.252,1.55048,-9.08034,165.252,2.03529,-9.2854,165.69,2.03529,-9.2854,166.127,1.55048,-9.09186,166.565,1.00633,-9.08034,166.63,1.55048,-8.07842,166.567,1.00633,-8.06689,166.632,1.00633,-8.06689,165.254,1.55048,-8.06689,165.254,2.0353,-8.15642,165.692,2.0353,-8.15642,166.129,0.0568168,-10.3791,165.15,-0.554342,-10.3791,165.157,-0.892694,-9.08034,165.252,-1.43684,-9.08034,165.252,-1.02631,-9.90453,165.279,0.0568164,-10.5684,166.075,-0.6856,-10.3898,166.092,-0.892695,-9.08034,166.63,0.0568162,-9.08034,166.415,-1.09612,-9.9223,166.208,-1.43685,-9.09186,166.565,-1.46189,-9.99298,165.473,-0.6856,-10.7678,165.473,0.0568167,-10.9632,165.466,-0.6856,-10.7678,165.771,0.0568166,-10.9632,165.761,-1.46189,-9.99298,165.911,-1.92166,-9.2854,165.69,-1.92166,-9.2854,166.127,0.0568168,-9.08034,165.244,0.0568167,-8.06689,165.246,-0.892694,-8.06689,165.254,-1.43684,-8.06689,165.254,-0.892695,-8.06689,166.632,0.0568162,-8.06689,166.417,-1.43685,-8.07842,166.567,-1.92167,-8.15642,165.692,-1.92167,-8.15642,166.129,0.0568168,-7.07055,165.028,-0.892694,-7.07055,165.035,-1.43684,-7.07055,165.035,-0.892695,-7.07055,166.414,0.0568163,-7.07055,166.199,-1.43685,-7.08208,166.349,-1.92168,-7.07055,165.473,-1.92168,-7.07055,165.911,0.0568168,-10.3791,165.15,0.0568168,-10.3837,165.17,1.3532,-12.0965,167.213,2.3729,-11.3342,167.148,2.96403,-10.2243,167.054,3.01525,-8.9758,166.949,1.35319,-12.0422,168.129,2.3729,-11.2799,168.064,2.96403,-10.17,167.97,3.01525,-8.92152,167.865,1.26917,-12.0202,167.152,2.01746,-11.1142,167.106,2.17921,-10.0228,167.037,2.21641,-9.11606,166.961,1.00931,-11.6075,167.794,2.01746,-10.6168,167.747,2.44678,-9.81073,167.679,2.21641,-8.61868,167.602,0.0568158,-12.3676,167.236,-1.23956,-12.0965,167.213,-1.23956,-12.0422,168.129,0.0568153,-12.3133,168.152,-2.25927,-11.3342,167.148,-2.25927,-11.2799,168.064,-2.8504,-10.2243,167.054,-2.8504,-10.17,167.97,-2.90162,-8.9758,166.949,-2.90162,-8.92152,167.865,0.0568158,-12.3017,167.169,0.0568155,-11.8044,167.811,-0.895681,-11.6075,167.794,-1.15554,-12.0202,167.152,-1.90383,-10.6168,167.747,-1.90383,-11.1142,167.106,-2.33315,-9.81073,167.679,-2.06558,-10.0228,167.037,-2.10278,-8.61868,167.602,-2.10278,-9.11606,166.961,-3.12398,-9.72623,176.129,-3.89507,-9.64007,175.921,-4.45956,-9.57699,175.353,-4.66617,-9.55391,174.577,-4.45956,-9.57699,173.802,-3.89507,-9.64007,173.234,-3.12398,-9.72623,173.026,-2.35288,-9.81239,173.234,-1.7884,-9.87547,173.802,-1.58178,-9.89855,174.577,-1.78839,-9.87547,175.353,-2.35288,-9.81239,175.921,-3.21014,-10.4973,175.921,-3.87793,-10.4227,175.741,-4.36678,-10.3681,175.249,-4.54572,-10.3481,174.577,-4.36678,-10.3681,173.905,-3.87793,-10.4227,173.414,-3.21014,-10.4973,173.234,-2.54235,-10.5719,173.414,-2.05349,-10.6266,173.905,-1.87456,-10.6466,174.577,-2.05349,-10.6266,175.249,-2.54235,-10.5719,175.741,-3.27321,-11.0618,175.353,-3.65876,-11.0187,175.249,-3.941,-10.9872,174.965,-4.04431,-10.9756,174.577,-3.941,-10.9872,174.189,-3.65876,-11.0187,173.905,-3.27321,-11.0618,173.802,-2.88766,-11.1049,173.905,-2.60542,-11.1364,174.189,-2.50211,-11.148,174.577,-2.60542,-11.1364,174.965,-2.88766,-11.1049,175.249,-3.2963,-11.2684,174.577,-3.06328,-9.09432,175.847,-3.69402,-9.02384,175.677,-4.15575,-8.97225,175.212,-4.32476,-8.95336,174.577,-4.15575,-8.97225,173.943,-3.69402,-9.02384,173.478,-3.06328,-9.09432,173.308,-2.43253,-9.1648,173.478,-1.9708,-9.21639,173.943,-1.80179,-9.23528,174.577,-1.9708,-9.21639,175.212,-2.43253,-9.1648,175.677,1.3532,-11.1899,165.956,2.3729,-10.4287,166.031,2.96403,-9.32023,166.141,3.01525,-8.07337,166.342,1.3532,-11.1264,165.315,2.3729,-10.3652,165.391,2.96403,-9.25674,165.5,3.01525,-8.00988,165.624,1.25443,-10.9459,166.027,1.92182,-10.1482,166.081,2.17921,-9.11899,166.161,2.21641,-8.21344,166.328,1.25443,-9.94623,164.91,1.92182,-9.1486,164.965,2.17921,-9.0555,164.944,2.21641,-8.14995,165.034,0.0568162,-11.4607,165.929,0.0568165,-11.3972,165.288,-1.23956,-11.1264,165.315,-1.23956,-11.1899,165.956,-2.25927,-10.3652,165.391,-2.25927,-10.4287,166.031,-2.85039,-9.25674,165.5,-2.8504,-9.32023,166.141,-2.90162,-8.00988,165.624,-2.90162,-8.07337,166.342,0.0568162,-11.2432,166.007,-1.1408,-10.9459,166.027,-1.14079,-9.94623,164.91,0.0568166,-10.2436,164.89,-1.80819,-10.1482,166.081,-1.80819,-9.1486,164.965,-2.06558,-9.11899,166.161,-2.06557,-9.0555,164.944,-2.10278,-8.21344,166.328,-2.10278,-8.14995,165.034,-7.77307e-005,14.7528,147.126,0.0271462,-14.6596,116.706,-0.0004219,13.285,151.831,-9.77241e-005,5.4272,107.745,-0.00622887,5.37363,92.0334,-4.49002e-005,-12.0595,181.201,-4.27062e-005,-12.8724,167.533,-4.52127e-005,-13.9486,169.649,0.0457178,-15.4303,111.181,-0.000985215,-12.9102,131.676,-0.000231869,8.27881,127.343,-0.00205766,-4.81967,152.632,-4.34626e-005,-11.3122,182.529,-2.73597e-005,-12.2212,163.521,0.000242762,-11.6786,162.179,-1.28901e-005,7.92617,179.978,-2.75867e-005,-11.6088,165.638,-4.12229e-005,-9.34485,184.581,-0.00039528,7.56504,160.3,-4.98916e-005,-15.2283,171.373,-4.25867e-005,-13.0916,167.472,-0.0251842,-5.79288,160.408,0.000606137,10.008,157.264,-1.91264e-005,-8.41473,168.333,-0.000504322,4.65851,113.989,0.0210096,-16.028,107.712,-0.00399766,4.91686,118.054,7.51195e-005,12.2808,153.971,0.000796699,11.1657,155.76,0.00370132,-14.6644,97.6768,-0.000209428,-0.45936,89.3357,-0.00264638,6.48727,99.8685,-4.04164e-005,-12.222,164.278,0.00223384,-10.8907,161.754,-4.74227e-005,-15.0192,171.863,-4.61274e-005,-13.2407,175.381,-3.8508e-005,-5.4741,186.332,-4.02136e-005,-12.3372,164.966,-4.44005e-005,-13.4661,167.619,-9.93674e-006,7.6017,173.749,-0.00264765,5.93496,164.454,-3.69702e-005,-10.7748,168.59,3.13069e-005,-10.9243,165.299,8.19826e-005,-7.77756,165.962,21.4127,3.37974,141.549,22.966,3.10225,141.591,22.559,5.31771,140.359,20.9107,5.6562,140.548,48.1181,7.55905,139.237,51.583,7.39908,139.111,51.5904,9.62132,140.225,47.9196,9.7066,140.432,45.0412,9.96336,140.915,45.304,8.00813,139.61,41.0892,4.55767,147.816,41.32,3.03372,146.875,38.5476,2.69185,146.955,38.3208,4.4468,147.868,35.275,2.50766,147.077,32.1839,2.3814,147.144,32.2333,4.25828,148.311,35.1961,4.34903,148.144,40.4686,6.39588,148.148,37.5653,6.44052,148.33,31.8705,6.49193,148.921,34.5793,6.51064,148.673,34.9062,1.158,145.399,31.7922,1.07332,145.35,42.8352,3.19141,146.858,43.9496,3.05523,146.87,44.15,2.51174,145.632,42.8718,2.26589,145.485,38.3353,1.45304,145.385,37.8311,1.16033,143.073,34.2428,1.0277,142.926,37.2454,2.50314,140.774,33.5528,2.48737,140.688,36.7111,4.86603,139.677,33.1333,4.83996,139.592,48.6036,4.91794,139.394,51.7225,4.88551,139.277,32.8119,7.0986,138.257,36.2419,7.11986,138.707,35.5023,9.73987,138.938,32.2484,9.94642,138.371,54.8495,10.3766,142.513,54.7192,9.35953,140.498,57.6544,9.17086,140.882,57.7579,9.92688,142.803,57.6215,7.40909,139.629,54.7013,7.36063,139.253,60.978,7.46967,140.124,61.0971,8.93334,141.427,61.1952,9.26814,143.255,54.8265,4.9672,139.249,57.6969,5.24674,139.549,60.901,5.54387,139.894,60.8557,3.77602,140.767,57.7916,3.35947,140.756,60.8437,2.62404,142.295,57.8399,2.32946,142.72,55.0121,3.01202,140.831,55.1696,2.13705,143.103,64.1333,4.07032,140.62,64.3002,5.74173,140.199,64.0564,2.77304,141.729,64.5149,7.39071,140.636,64.737,8.5473,141.94,68.1891,7.17893,140.99,68.503,8.05527,142.294,67.8875,5.77517,140.373,57.8478,9.43882,144.64,61.2412,8.60728,144.694,64.8601,8.51357,143.573,64.8875,7.72148,144.651,54.9843,10.0083,144.587,64.8195,6.60796,145.375,61.2416,7.48448,145.711,68.6897,6.80773,144.426,68.5808,5.69928,144.903,68.6651,7.69816,143.673,49.1507,2.32633,143.934,52.2421,2.10901,143.572,51.9908,2.96512,141.143,48.9962,3.10649,141.372,47.0243,2.54868,146.105,49.3534,2.38718,146.201,46.9266,2.54455,143.827,52.4124,2.16052,145.912,55.2674,2.2011,145.33,49.2264,4.03559,148.068,52.4521,3.66892,147.615,55.2846,3.53439,146.935,57.9138,8.30403,145.95,55.0665,8.82648,146.138,55.1441,7.25913,147.125,57.9045,6.79187,146.586,61.1398,6.16842,146.044,52.1814,7.7123,147.64,52.0378,9.42124,146.475,48.64,8.0668,147.844,48.9713,6.10599,148.342,46.2143,6.23767,148.278,45.8252,8.08676,147.729,52.3486,5.7456,148.053,46.7099,3.95293,148.004,55.227,5.45874,147.473,57.9026,5.16512,146.822,57.8939,3.46355,146.252,61.0293,4.74124,146.087,60.9298,3.29765,145.457,37.2268,10.9755,145.451,37.1901,11.4891,143.382,40.5305,11.0616,143.409,40.6054,10.7064,145.317,33.9981,11.4343,145.518,33.8741,11.7249,143.302,41.1287,9.59731,146.708,38.052,9.89429,146.983,44.9848,10.9315,142.913,43.0248,11.0175,143.195,43.2715,10.1155,141.291,45.1442,10.904,145.006,45.465,9.73074,146.63,43.4149,9.55052,146.577,43.1081,10.766,145.178,34.9243,10.3217,147.263,48.3405,9.84183,146.676,41.127,1.55479,143.412,42.8041,1.9223,143.607,42.4378,2.60544,141.699,40.6701,2.64345,141.203,42.2949,4.24339,140.373,40.0904,4.82395,140.062,43.7384,2.58439,142.193,44.1139,2.24714,143.807,45.2938,2.51661,143.684,44.4607,3.3774,141.106,64.4527,4.19245,145.338,64.6571,5.43426,145.551,68.3751,4.53617,144.977,68.1362,3.40465,144.689,60.869,2.41749,144.047,57.8774,2.31958,144.747,67.6646,4.21856,140.323,37.8175,10.792,141.29,34.5395,11.368,140.907,38.8112,9.28434,139.564,31.4656,11.8517,140.537,41.3142,1.91708,145.425,36.3046,8.51101,148.181,33.452,8.76866,148.596,32.128,10.8467,147.608,64.1024,2.35563,143.302,67.6174,2.08852,142.498,67.5495,2.77666,141.058,64.2566,3.02349,144.644,67.8699,2.45355,143.888,42.8807,4.43344,147.864,42.6226,6.3503,148.16,39.3823,8.28749,147.891,41.9329,8.12206,147.714,43.8412,8.05643,147.675,44.3084,6.27583,148.234,41.7736,8.74119,140.022,43.6879,8.3605,139.894,40.9851,10.2839,141.53,39.5993,6.90859,139.334,42.2834,6.4113,139.468,30.9008,12.3794,143.177,31.1203,12.129,145.625,28.7054,12.5333,145.827,28.4735,12.7891,143.261,29.7103,11.1348,147.836,24.4554,1.36125,145.179,22.887,1.08286,144.737,22.9168,1.68527,147.336,24.8734,2.29396,147.174,23.4848,1.60922,142.994,21.9076,1.71858,142.688,26.8074,2.40675,146.98,26.2762,1.37773,145.133,29.458,4.17813,148.26,29.2904,6.45192,148.979,31.1521,0.974078,142.893,28.1966,1.0835,142.958,28.8172,1.16471,145.158,25.6257,1.40476,143.162,25.1548,2.79498,141.56,19.2504,12.8702,143.818,21.0167,12.8688,143.8,21.6533,12.3701,145.925,19.4535,12.6091,145.864,21.5773,7.93683,139.448,19.8528,8.32942,139.96,19.6855,10.7368,140.586,21.5566,10.424,140.054,21.2591,12.2025,141.682,19.5135,12.3287,142.056,28.9156,12.1528,140.522,26.3508,12.2531,140.691,26.7921,10.1411,138.668,29.4351,10.0223,138.309,27.0936,7.25054,138.467,29.8297,7.08502,138.23,27.3871,4.71965,139.87,30.1082,4.81578,139.745,27.5877,2.48225,141.124,30.4403,2.50123,140.838,25.0707,4.12318,148.808,27.0539,4.19671,148.406,30.9707,8.92293,148.877,28.5373,8.9806,148.938,27.2639,11.233,147.901,26.1851,12.6233,145.989,25.9323,13.0046,143.43,48.1172,10.9904,144.797,47.9122,10.9276,142.518,51.7248,10.7731,142.398,51.9193,10.5403,144.646,44.7395,3.87264,147.774,45.995,5.24697,139.51,23.2741,3.95741,149.438,23.0589,6.38966,150.263,24.8638,6.43708,149.616,22.3352,8.91615,149.938,24.127,8.88507,149.393,21.1781,11.1143,148.377,22.9485,11.0066,148.063,23.6753,12.454,145.974,24.936,11.0583,147.951,29.2668,2.31597,146.992,26.8774,6.46282,149.164,24.2487,10.2091,139.587,23.5212,12.1315,141.277,24.5919,7.5892,139.157,25.0037,4.99772,140.289,26.1421,8.9077,149.035,23.1384,12.9451,143.64,45.3727,2.58381,145.929,46.5408,3.17216,141.363,44.1327,5.74883,139.494,70.814,1.89752,143.29,72.646,1.5434,142.791,72.1952,1.94797,141.436,70.4718,1.92445,141.856,70.4067,2.89899,140.726,72.1437,3.02991,140.623,71.1633,2.76348,144.263,73.1797,2.26162,143.983,70.7511,5.77975,140.479,71.0573,6.97837,141.156,71.411,7.70594,142.34,73.2633,5.83035,140.523,73.6329,6.8433,141.191,72.8584,6.8548,141.222,72.5527,5.79243,140.543,70.5283,4.34174,140.256,72.2942,4.42148,140.315,71.6527,7.30756,143.601,71.7143,6.35115,144.166,73.6981,7.27046,143.546,73.8736,6.22392,144.18,74.8542,6.19849,144.157,74.829,4.79796,144.447,73.7925,4.91911,144.468,71.6216,5.19218,144.523,71.4184,3.94204,144.607,73.5408,3.52193,144.464,74.5326,3.30141,144.391,74.0159,2.03054,143.816,72.6432,3.06683,140.551,72.9112,4.46801,140.289,73.2808,7.47524,142.296,72.6919,1.94973,141.267,73.2546,1.43727,142.578,74.5252,7.26294,143.467,74.0656,7.41425,142.234,17.3084,-1.90183,147.824,16.066,-3.34935,146.244,15.1871,-3.3156,148.2,16.3835,-1.83074,149.484,14.2741,-2.88367,150.306,15.5759,-1.42936,151.239,18.1133,-0.349725,149.358,17.1436,-0.199079,150.666,16.3011,0.237101,151.994,17.5465,1.64418,151.725,18.5941,1.45158,150.69,17.6548,3.78583,152.455,18.7435,3.60028,151.649,18.4984,6.09065,152.09,17.3595,6.14184,152.713,16.6161,4.10613,153.089,16.3592,6.29968,153.238,17.9121,8.5736,151.854,16.912,8.33075,152.518,16.2794,10.2573,151.981,17.197,10.6987,150.992,16.0171,8.06626,153.103,15.51,9.71036,152.84,16.2038,12.1772,150.066,15.3862,11.6822,151.414,14.6977,10.9848,152.563,15.5226,1.09379,152.993,14.7812,-0.351413,152.685,14.191,0.932761,153.915,14.9537,2.08473,153.816,13.7849,2.62015,154.851,14.5351,3.52082,154.433,15.8142,2.55593,153.229,15.3606,2.89542,153.701,15.1321,4.11865,153.94,16.6258,2.05531,152.642,14.7164,5.90499,154.052,15.4709,6.2179,153.561,15.7892,4.24983,153.479,15.1954,7.69639,153.533,14.4581,7.30565,154.08,14.0984,8.63133,154.031,14.7693,9.10267,153.466,13.7512,9.55042,153.833,14.1152,10.165,153.371,13.0653,9.73988,154.164,13.1754,10.777,153.385,13.5287,11.8671,152.418,11.7574,11.2822,153.436,11.9111,12.5137,152.184,13.3422,8.41476,154.659,14.053,12.7015,151.029,14.6856,13.1678,149.419,12.6703,13.8024,148.858,12.2401,13.3765,150.535,14.1586,5.37766,154.778,13.4508,4.70661,155.338,13.7634,6.92216,154.833,9.79695,11.7543,153.296,9.89401,12.9488,151.667,13.4609,-1.67048,152.111,12.946,-0.378566,153.68,12.2941,1.5615,154.878,12.4774,4.12058,155.675,11.9895,6.10777,156.019,12.9508,6.51569,155.517,18.7637,1.33508,140.707,17.8357,-0.524686,140.852,19.9644,0.316023,142.629,20.4753,1.84278,142.016,21.1209,3.6611,141.235,19.9721,3.47137,140.989,10.4226,14.1037,148.03,10.7821,14.3195,146.527,13.1309,13.9076,147.21,11.6952,14.2912,143.581,14.3075,13.7021,144.036,13.6713,13.8714,145.568,11.1987,14.3665,145.027,17.4111,11.4484,141.164,15.3468,11.8312,140.129,17.9199,9.69311,139.984,25.6682,11.6676,137.755,19.119,7.55262,140.198,23.3828,6.16847,138.726,19.868,5.483,140.647,19.6229,-0.723801,143.575,17.5434,-1.87099,141.543,21.3627,0.207705,145.452,19.209,-1.38062,144.873,20.5283,-0.09249,146.959,16.896,-3.18582,144.371,18.3708,-1.76026,146.312,17.4138,-2.72354,142.754,14.839,13.2401,142.767,12.3351,13.9346,142.219,13.4487,13.1456,140.992,15.6734,12.4818,141.797,10.1166,13.7812,149.668,12.3338,8.23538,155.32,11.8633,9.88739,154.574,17.1312,12.4939,148.669,18.3304,11.0452,149.968,19.1707,8.80193,151.2,15.3756,13.3653,147.782,21.1018,1.82996,142.403,20.8366,3.61124,141.471,21.3801,0.70972,143.726,19.2407,8.76842,140.777,18.4105,11.0947,140.974,20.4214,6.04593,141.159,20.0384,3.66396,150.917,19.7648,6.18684,151.549,21.3444,6.3052,150.952,21.5694,3.79511,150.221,17.8262,12.3283,142.13,17.2505,12.8756,143.328,16.1182,13.3704,146.184,18.1974,12.6095,147.345,19.6607,11.1671,149.081,20.6867,8.91542,150.562,21.2761,1.60078,148.798,19.8388,1.47393,149.757,16.8485,13.2041,144.671,19.2997,-0.306452,148.181,8.58567,5.41302,117.454,10.8514,4.01577,117.68,10.8639,4.82502,119.67,8.53133,6.28652,119.551,1.71711,-11.8867,136.526,1.86235,-12.1875,134.739,0.00168849,-12.1957,134.994,7.8672,14.1512,149.436,7.70514,13.4151,151.513,8.08682,14.4963,147.619,5.58793,15.0601,147.412,5.43381,14.6282,149.476,8.35526,14.7284,146.006,5.77262,15.3394,145.605,9.17649,14.7882,142.889,9.85394,14.5168,141.262,12.525,12.7909,138.221,10.8976,13.8606,139.638,13.657,-6.68356,139.937,15.1848,-4.82319,142.222,15.4764,-4.43209,140.222,14.0784,-6.37296,137.614,7.83049,-8.79987,145.467,6.25219,-9.27364,145.469,5.94535,-7.97718,148.541,7.36627,-7.46494,148.734,4.64379,-9.50731,145.557,4.45836,-8.32272,148.385,1.3704,-9.54424,145.794,1.35576,-8.29966,148.449,2.91348,-8.42096,148.356,3.01882,-9.57281,145.648,1.3523,-10.4283,143.172,2.90456,-10.4578,142.995,2.84674,-11.1244,140.594,1.37476,-11.0668,140.737,11.4172,-1.63553,153.355,9.97649,-2.70858,153.039,9.15204,-1.59226,153.845,10.5775,-0.356636,154.27,12.0,-2.70652,151.663,10.603,-3.79744,151.404,5.1311,-5.33038,152.217,6.33303,-4.70509,152.377,6.83943,-5.87577,150.884,5.522,-6.50938,150.684,4.71539,-4.55805,153.069,5.74829,-3.93081,153.165,11.4424,-5.12517,149.357,12.8824,-3.97192,149.776,13.7911,-4.5832,147.316,12.2721,-5.87739,146.526,3.94481,-5.83565,152.095,4.16812,-7.01757,150.572,3.71137,-5.01396,153.004,2.76084,-7.21299,150.54,2.73198,-6.08751,151.904,1.36294,-5.96524,151.583,1.64101,-5.18386,152.682,2.64182,-5.24887,152.865,1.38122,-7.00433,150.46,3.88415,-11.9791,133.837,4.07154,-12.2176,132.257,1.99611,-12.4801,133.17,7.67762,-14.1112,108.713,4.93025,-15.5557,107.924,3.96149,-15.2414,111.555,6.51054,-14.3563,111.998,9.9526,-12.5774,109.885,8.73533,-13.1016,112.686,10.4451,-12.9283,107.568,8.17938,-14.7068,105.899,5.44544,-16.0423,104.735,8.68257,-11.2631,132.253,8.79132,-10.9435,131.135,6.21799,-11.728,132.34,6.20278,-11.8152,133.733,11.2985,-9.79262,131.675,11.1951,-9.33897,130.486,14.8282,-1.55476,127.204,14.3156,-1.7756,125.045,13.9224,-4.75097,124.979,14.3157,-4.58962,126.966,14.028,-2.14572,122.929,13.6418,-5.1161,123.079,14.1378,1.22536,125.136,14.7409,1.55636,127.464,13.7684,0.8048,122.772,7.61987,12.0282,153.644,5.17196,12.5505,153.915,5.29908,13.8404,151.708,2.59373,12.5399,154.008,2.68513,13.709,151.841,2.76315,14.5469,149.42,2.8426,15.0544,147.19,2.93193,15.3593,145.25,14.6589,10.5634,137.489,16.676,7.8229,137.513,18.1561,5.29949,138.21,13.0045,11.3012,135.284,15.0228,8.25443,135.09,17.8089,2.83095,138.301,16.262,5.25497,135.395,16.3684,2.29414,135.269,16.6544,0.293108,137.746,15.8311,-0.700415,134.595,4.84046,-11.7789,136.454,3.89894,-11.8593,135.967,3.05238,-11.5266,138.44,4.50097,-11.5036,138.066,14.9533,-4.09717,134.11,15.9604,-2.02743,137.956,14.6903,-4.28832,131.071,15.613,-1.21965,131.85,15.3141,-1.42559,129.441,14.568,-4.46501,128.971,14.5471,-5.69259,135.968,15.5092,-3.55038,138.883,13.8769,-3.37239,118.959,13.2648,-6.27912,119.361,13.3296,-5.62151,121.285,13.8326,-2.68881,120.901,14.0297,-3.96926,117.24,13.3711,-6.76675,117.547,12.0409,-8.99817,117.519,11.907,-8.64522,119.673,12.1695,-8.21579,121.732,13.8649,-8.06746,110.828,13.2609,-9.46348,110.03,13.0909,-9.40486,111.707,13.8696,-7.76227,112.453,11.9102,-10.5596,112.368,12.8169,-9.33567,113.449,12.4191,-10.4967,110.582,14.4618,-6.00248,111.368,14.4576,-5.43947,112.829,10.6533,-10.6856,117.193,10.3269,-10.3901,119.862,13.5915,-7.11754,115.796,12.4377,-9.19822,115.439,11.2486,-10.7492,114.683,13.5871,-0.379967,118.402,13.7957,-1.06214,116.65,14.2317,-4.45471,115.727,14.0576,-1.62678,115.335,12.4649,2.01407,118.08,12.6577,1.36522,116.327,12.9678,0.83638,114.921,13.4911,0.242333,120.498,12.4317,2.70527,120.116,8.79654,4.93938,115.581,11.0397,3.44755,115.93,2.85588,5.91672,117.787,2.95124,5.45808,115.516,5.9867,5.63849,115.492,5.83473,6.12821,117.547,6.20832,5.33216,113.839,3.04902,5.24149,113.924,9.10679,4.60429,114.014,11.3408,2.97905,114.45,15.9076,1.99296,132.591,14.2606,4.61096,127.665,15.4149,1.79708,129.965,14.9197,5.05948,130.338,12.8277,7.49845,127.729,13.6278,8.18039,130.436,4.232,14.0558,135.473,9.2347,13.3444,136.119,7.74874,14.2687,138.453,3.91217,14.7336,137.676,6.3678,15.2682,142.277,6.89093,14.8468,140.45,8.70692,14.8328,144.449,6.02305,15.4332,143.942,3.24274,15.4514,141.863,3.05822,15.4928,143.546,4.29304,-12.4578,130.602,2.14997,-12.808,131.386,6.35352,-11.6973,130.975,6.55401,-11.8399,129.558,8.96604,-11.1314,126.855,8.79817,-11.4122,124.845,6.67853,-12.4948,125.479,6.70512,-12.1493,127.822,8.57565,-11.6457,122.46,6.62425,-12.7947,122.644,4.464,-12.8081,128.585,4.46096,-13.0513,125.967,2.24686,-13.4759,126.271,2.25085,-13.2152,129.097,4.50752,-13.5699,122.895,2.24671,-13.8484,123.172,11.2313,5.94192,121.978,8.61233,7.40895,122.093,5.69106,8.14925,122.772,5.70989,6.93105,119.976,2.82759,7.85748,123.58,2.80495,6.68491,120.545,2.95422,9.41922,126.532,6.20183,9.6439,125.675,13.4254,4.07522,125.2,12.9663,3.56994,122.461,11.918,6.73401,124.97,9.3615,8.668,125.107,10.2111,9.69742,127.855,6.82595,10.8985,128.32,10.9767,10.489,130.559,11.7884,11.0742,133.121,8.18033,12.5907,133.383,7.46383,11.8263,130.906,3.20053,10.9096,129.156,3.97494,13.0016,133.485,12.6681,1.76052,110.683,14.0785,-0.676899,111.219,13.7252,-0.10485,112.45,12.1943,2.20857,111.894,11.7588,2.58989,113.118,9.53522,4.3348,112.638,10.0314,4.07587,111.43,3.51738,15.2135,139.866,3.51847,5.48673,109.681,3.51598,5.31532,111.184,7.62218,5.10486,109.938,7.06461,5.13462,111.169,-0.00188339,4.70117,115.607,11.1155,-11.5102,111.142,11.6381,-11.5262,109.221,10.0907,-11.9538,113.701,9.22565,-12.0808,116.623,14.3862,-4.92979,114.269,14.3064,-2.15522,114.101,14.5012,-2.73202,112.838,6.56146,5.21071,112.419,8.86197,-10.8339,129.866,8.94114,-10.8892,128.481,14.6056,-3.38511,111.534,7.5843,-13.3216,116.052,6.96137,-13.1514,119.465,8.74977,-11.9081,119.704,5.44644,-14.3572,115.752,4.81781,-13.9206,119.437,2.59717,-14.82,115.59,2.41464,-14.2449,119.691,1.39934,-15.1458,113.774,4.37147,-11.1038,140.182,4.51686,-10.5106,142.698,12.5485,-7.82047,123.45,10.5034,-10.2243,122.22,10.786,-9.88342,124.094,10.2922,-10.1286,137.727,12.176,-8.54667,138.282,12.7893,-8.51917,135.764,10.7896,-10.3337,135.182,8.04888,-10.9003,138.25,8.28727,-11.2552,135.782,6.06294,-11.0865,139.274,6.13402,-11.5012,137.014,9.82436,-9.1769,141.329,11.4604,-7.88491,141.866,11.1933,-10.2344,133.218,13.3232,-8.10333,133.812,13.3955,-7.40349,132.089,8.02287,-10.0114,141.534,8.50159,-11.4212,133.778,6.20954,-10.417,142.097,6.2289,-11.7743,135.143,12.9916,-6.42867,143.137,2.3999,-16.0476,107.64,1.89143,-15.4915,111.165,-1.28792e-005,14.6972,139.814,5.41093,-16.4221,102.029,2.76342,-16.6798,101.714,2.72085,-16.5521,104.384,12.7692,-7.43872,125.185,13.0146,-7.2332,127.036,11.0895,-9.2488,127.592,11.1905,-9.21449,129.138,13.0566,-7.06911,128.848,11.0102,-9.56258,125.843,13.2034,-7.07536,130.479,1.5059,-11.5338,138.544,0.000646875,-12.5237,133.473,14.5439,-4.80992,144.728,15.6566,5.27639,132.938,14.3386,8.45121,132.944,3.56308,12.0456,131.445,0.743813,-5.35201,151.981,0.825957,-4.94972,152.66,-0.0204212,-10.4043,143.258,-0.000135697,12.1375,133.87,0.0110587,-14.0983,120.074,0.000651471,-16.5301,104.497,6.81072,-3.20896,153.323,7.92473,-2.46513,153.548,8.71285,-3.51585,152.776,7.52875,-4.14205,152.552,9.35048,-4.66839,151.225,8.12892,-5.33494,151.067,10.0738,-6.06659,149.086,8.74636,-6.82449,148.899,9.35822,-8.04996,145.558,10.7902,-7.06769,145.913,-4.90809e-005,11.05,132.029,13.77,-7.46072,114.089,13.3512,0.37377,113.668,3.22515,5.19699,112.524,11.6896,-11.8614,107.228,10.151,-13.7389,105.178,7.87969,-15.3844,103.288,12.6211,-10.5197,108.861,10.599,3.77735,110.235,11.0575,8.05337,155.979,10.1239,10.0399,155.009,10.9556,3.95694,156.146,10.6096,5.6858,156.547,9.57709,7.64983,156.692,7.81662,9.92517,155.882,10.5065,2.24739,155.517,3.3497,-4.61775,154.041,4.21742,-4.15115,154.131,5.0732,-3.45478,154.223,7.82076,-0.584559,154.53,9.18439,0.710466,154.888,4.98384,10.9894,155.885,2.46093,11.1947,155.826,2.42026,-4.84714,153.901,1.55183,-4.90384,153.766,0.773919,-4.79392,153.66,5.92995,-2.57318,154.334,6.78448,-1.65639,154.41,0.000956199,-4.54314,153.571,2.23068,-14.6625,97.7512,4.32768,-14.5225,98.2339,3.8659,-13.7504,96.142,1.97898,-13.8676,95.6127,14.3843,-8.00533,106.896,13.7187,-9.51642,106.112,13.8748,-8.96418,107.691,14.2708,-7.27597,108.411,9.10606,-12.9156,100.662,7.40025,-13.4667,98.7472,8.15517,-13.8863,100.811,10.1234,-12.9193,102.758,10.8702,-11.8319,102.746,11.8272,-11.4826,104.834,5.6445,-13.6118,97.2125,6.2046,-14.2271,99.334,7.08119,-15.167,101.05,9.15704,-14.0446,102.865,4.9195,-15.6944,99.9111,2.55249,-15.7892,99.5639,11.0991,-12.4364,104.99,13.8491,-8.46334,109.224,14.3654,-6.62296,109.876,12.5408,-10.971,106.911,11.1918,3.60491,108.944,8.0469,5.29338,108.628,8.48698,5.63557,107.15,11.7494,3.54807,107.448,14.8467,-5.87961,107.031,14.6123,-4.96703,108.675,1.92329,6.4012,104.601,5.10068,7.07937,104.989,4.78972,6.40766,106.847,1.76978,5.90645,106.431,1.40606,5.36499,108.839,1.58026,5.57913,107.855,4.4481,5.82938,108.269,14.5906,-2.13677,108.436,13.6457,0.799906,107.876,14.0663,0.397904,106.067,14.8148,-2.98071,106.622,13.2193,1.28021,109.373,14.4024,-1.36602,109.884,12.2299,3.63298,105.637,12.5171,-10.6462,104.645,13.0695,-10.2036,106.51,13.352,-9.78506,108.296,14.6305,-4.13728,110.133,8.93907,6.11056,105.311,0.00371535,-15.6924,99.6538,-0.000346955,5.61087,106.284,16.7336,-5.44967,93.5038,17.1611,-4.88159,89.0477,16.3248,-7.78295,88.7341,15.9363,-8.25274,93.1539,16.3759,-6.00726,96.6561,15.5438,-8.65731,96.8829,16.4992,-2.16045,93.3693,16.8618,-1.53559,89.082,16.3419,-2.71364,95.7443,14.6255,-9.99355,88.1479,14.2449,-10.2667,92.5016,16.501,-7.23841,84.4836,17.3738,-4.33177,84.7584,14.765,-9.5458,84.078,13.5285,-10.6228,99.0901,15.2036,-9.07537,99.9983,13.8231,-10.4207,96.1913,11.6334,-11.5217,97.2747,11.7751,-11.4167,94.6859,12.0505,-11.4824,91.269,9.79968,-12.1212,98.7917,11.7367,-11.5805,100.78,11.61,-11.5895,99.0406,9.58555,-11.9925,97.0446,9.53164,-11.9067,95.2394,9.56308,-11.9208,92.8667,13.5222,-9.99479,104.303,12.0634,-11.224,102.687,15.0298,-6.58012,105.139,14.4366,-8.61125,105.142,15.112,-3.57596,104.571,15.3726,-3.87504,102.547,15.6316,-3.83749,100.627,15.8287,-6.82952,101.491,15.5286,-6.86193,103.265,16.0276,-6.59905,99.6346,15.9494,-3.55153,98.6093,15.0631,-0.112067,99.5519,15.309,0.135388,97.2839,15.3708,0.68554,94.6516,15.1871,1.00557,92.5716,1.3639,-9.88173,88.6112,2.48603,-10.1943,89.2277,1.2707,-8.26925,88.1316,0.815825,-8.4574,88.5065,0.387658,-6.87237,88.5291,0.362596,-4.99851,88.4854,2.6382,-9.06671,86.391,4.69703,-10.7675,87.0921,4.38504,-9.93469,84.2359,2.50072,-7.77556,83.8254,7.07877,-11.7128,88.2763,6.83454,-11.3722,84.9928,4.1673,-8.94785,81.4424,2.40499,-6.47472,81.2745,6.52661,-10.7992,81.9003,3.02424,-10.0692,88.6368,5.12656,-11.0216,89.6989,7.25951,-11.8005,91.1492,1.26396,-4.93232,83.965,1.23599,-6.57468,86.3338,0.841224,-1.52229,84.6763,0.698723,-3.46427,86.7367,3.502,-12.804,93.9209,1.83904,-12.9964,93.1405,5.08599,-12.6521,95.1491,4.62399,-11.8069,93.3607,3.28994,-12.087,91.9484,1.78742,-12.4079,90.7879,3.07295,-11.2926,90.3751,1.75365,-11.3265,89.0897,0.863221,-0.578773,87.5396,0.425165,-0.398572,89.1509,1.69354,2.15591,87.0195,1.64882,3.59571,89.7925,5.26532,4.83739,87.2599,5.20041,6.08335,89.0182,9.10823,5.00308,87.3352,9.5769,6.15165,89.5089,13.0071,4.02382,91.0491,12.5654,3.97359,88.0086,15.166,1.57977,88.7251,13.4902,4.08873,92.861,10.0845,6.67753,90.9374,5.665,7.40348,90.0016,1.81049,6.2625,90.8774,5.61354,8.24216,96.2524,5.66639,8.19896,92.8742,10.2333,6.8943,93.6905,10.0924,6.86482,96.755,1.51773,7.53082,93.4989,5.59188,7.95827,99.5052,1.73455,7.58093,99.7985,1.45583,7.77949,96.741,9.81381,6.74197,99.8849,9.41814,6.54293,102.859,5.41516,7.69754,102.518,1.965,7.00821,102.389,13.7224,3.96416,95.521,13.5165,3.79598,98.1795,14.5084,0.0655769,103.953,12.7823,3.73971,103.389,14.8016,-0.176141,101.737,13.1806,3.71105,100.814,7.85596,-12.0853,96.8245,7.49489,-11.8465,95.1398,8.4324,-12.6079,98.6467,6.69829,-12.6223,96.7715,6.06592,-11.7674,95.0069,5.66422,-11.3423,93.4276,4.19367,-11.2162,91.8521,5.41815,-11.243,91.7666,3.73341,-10.6871,90.4005,7.37643,-11.7093,93.3798,9.59819,-11.9934,89.7449,8.56094,1.32121,38.1914,11.3557,1.00965,38.3978,11.458,1.77944,34.4467,8.78997,1.90537,34.2454,8.66563,0.526818,42.5948,11.4427,0.205699,42.6257,13.9418,2.51578,39.0083,13.6473,3.21096,34.8919,14.0684,1.7179,43.1754,6.46306,8.97302,22.8205,6.74348,6.76572,22.8495,6.4825,6.92484,19.1091,6.32572,9.02882,19.0627,7.45372,4.81901,22.9561,7.26113,4.96835,19.1633,8.73115,3.40455,19.1825,8.86183,3.17855,22.9872,14.3801,13.0023,36.015,15.689,10.8161,35.8363,15.9774,10.7568,40.0258,14.4767,12.8243,40.3177,13.848,12.4774,32.0003,15.1056,10.6838,31.9238,12.316,13.9295,40.1177,12.3011,14.0983,36.0359,11.811,12.6398,27.5041,12.1512,13.4553,31.9948,10.1091,13.7603,31.8982,10.1441,13.082,27.4786,13.1994,9.88301,22.6115,14.2422,10.4122,27.5901,13.1279,11.8411,27.5515,12.2695,11.1364,22.5956,9.90283,12.5657,22.634,11.183,11.9788,22.6003,9.90607,14.3545,35.8736,12.6172,9.62732,19.0539,13.0772,8.0442,19.0988,13.6772,8.05641,22.6866,16.5199,-6.65687,80.1261,14.7201,-8.94569,79.6864,12.3355,-11.1643,83.3669,12.2972,-11.4666,87.1866,12.231,-10.5744,79.0289,17.4339,-3.81041,80.4157,14.5154,-8.2338,75.4748,12.0043,-9.70421,74.8836,9.18954,-10.993,78.3637,9.39588,-11.7014,82.5586,8.97898,-10.0232,74.3548,6.32031,-9.87323,77.8756,6.13495,-8.83479,74.0164,4.0972,-7.7768,77.5639,4.08249,-6.55638,73.8406,5.88301,-7.701,70.3388,4.03887,-5.26096,70.2457,2.52448,-5.13449,77.4443,2.79201,-3.79509,73.7909,3.07898,-2.451,70.2437,5.57677,-6.60153,66.7938,3.91839,-4.01716,66.7237,8.68883,-8.98071,70.5952,8.36761,-7.96028,67.0527,11.639,-8.72305,71.0599,11.2024,-7.72835,67.5207,14.1363,-7.48218,71.5648,13.5985,-6.68576,67.9765,10.7628,-6.79652,64.3246,8.06433,-7.02931,63.7836,12.9594,-5.86344,64.7769,10.3641,-5.99467,61.4613,7.88961,-6.07894,60.8099,12.344,-5.17196,61.8952,14.8403,-4.44711,65.0312,14.0373,-3.93369,62.0453,11.9188,-4.83979,59.0378,9.82751,-5.39613,58.7776,13.5339,-3.42912,59.1876,5.35435,-5.52728,63.4209,5.49009,-4.37411,60.3135,3.89265,-2.82421,63.3233,4.24507,-1.63913,60.1967,15.5618,-5.00366,68.3115,16.5553,-2.47297,68.6412,15.8995,-2.16737,65.2877,15.1096,-1.89488,62.1232,3.23649,-1.18286,66.7505,3.38994,-0.0204136,63.3796,3.12995,1.74085,66.9323,2.56869,0.557751,70.3633,3.48446,2.7839,63.621,3.9563,4.65225,67.305,3.02881,3.67167,70.6787,2.11572,2.61015,74.2017,1.96819,-0.712248,73.8761,1.41252,1.40231,77.8537,1.49936,-2.04545,77.5077,0.971181,0.021139,82.1138,1.22815,-3.45711,81.6055,3.77092,1.06199,60.1761,3.80134,3.64379,60.4017,5.22363,5.88956,60.9224,4.65667,5.4234,64.0657,4.80459,5.98489,71.0618,3.66558,5.37086,74.6523,2.71646,4.57806,78.3843,5.94406,-2.92889,58.0807,7.64538,-4.76527,58.3675,7.52401,-3.73818,56.274,6.21381,-1.86296,56.165,6.20459,-1.12566,54.2015,7.36344,-3.06111,54.2768,5.34612,1.0541,54.0313,5.17565,0.300329,55.9379,4.88524,-0.485137,57.8163,9.42923,-4.83028,56.3287,11.5953,-4.57226,56.3818,13.2849,-3.13379,56.5241,14.5073,-1.44912,59.3209,14.1747,-1.02992,56.755,15.1369,0.67005,59.4556,14.9204,1.17362,56.9452,15.0528,2.96522,59.7624,14.7822,3.55665,57.1812,14.9884,1.65495,54.6373,14.1307,-0.683078,54.399,14.7554,4.25832,54.9906,13.0754,-2.76038,54.2407,15.102,2.04917,52.2415,14.0408,-0.319419,52.0954,15.0238,4.74411,52.6123,15.1837,2.5865,49.8385,15.4391,5.44606,50.2203,13.5699,-0.127045,49.6146,11.3002,-3.9492,54.1955,9.25092,-4.13377,54.2114,11.1922,-3.42224,52.1533,9.144,-3.50523,52.1766,12.8462,-2.22148,52.2057,9.02371,-1.31205,48.7483,9.14707,-2.43125,50.4754,11.1656,-2.50844,50.399,11.3925,-1.41068,48.6666,8.81884,-0.30246,46.3093,11.4201,-0.554483,46.1706,13.8916,0.891473,46.6651,7.48726,-2.32197,52.3203,4.99411,3.34753,53.9601,4.56245,2.68554,55.6333,4.2498,2.22913,57.294,4.85121,4.89085,55.6851,5.4139,5.40142,54.1651,4.3775,4.5329,57.3807,5.62187,4.23767,52.1691,5.97548,6.27619,52.4924,5.94066,6.17373,56.0836,6.41611,6.62859,54.4136,6.88233,7.75238,52.5932,5.8149,1.91863,52.0645,6.2146,2.83606,49.8648,5.90383,5.31651,50.0408,6.51149,-0.385674,52.1381,7.18197,0.110776,49.7476,7.11373,1.4889,46.9303,6.16155,3.94778,47.3595,5.67145,6.56351,47.5132,6.94468,2.44953,43.0172,5.73728,4.88748,43.4546,5.12911,7.72576,43.698,6.08833,7.58959,50.3574,6.99901,9.42378,50.3439,5.85422,9.09411,47.4982,7.03726,11.146,47.3563,8.68157,10.5357,50.243,8.40926,8.89375,52.6626,9.0879,12.1084,47.1981,10.294,9.09919,52.6966,10.764,10.6783,50.1513,9.9023,7.69797,54.8505,8.07143,7.50847,54.6532,9.69621,6.93992,57.0869,7.7898,6.73152,56.6498,9.59849,6.43198,59.4934,7.58834,6.45202,58.8567,2.05707,3.51293,82.9283,5.44239,5.78978,83.5142,5.9685,6.61829,78.9997,7.39292,6.49566,61.5126,9.52067,6.34744,62.1817,11.609,5.972,59.8403,11.6773,5.82481,62.5856,11.6561,6.67131,57.3946,13.4749,5.45749,57.4208,13.5262,4.83882,59.9104,12.2053,8.46593,52.8045,13.844,7.00855,52.8994,13.5327,6.16667,55.1706,11.7678,7.30535,55.0692,14.4436,8.0632,50.5415,12.7935,9.81399,50.3014,15.1921,8.97213,47.6659,15.9242,6.33332,47.6105,15.5228,3.45438,47.2569,13.5522,10.9404,47.428,15.844,4.20654,43.7746,16.3936,7.13225,44.111,14.151,11.981,44.0573,15.785,9.90924,44.1729,16.5002,7.88712,39.8026,7.10745,12.6218,43.674,9.47342,13.4133,43.6349,5.51303,10.5289,43.7442,7.2631,13.6235,39.6042,5.50621,11.5601,39.4094,5.8299,11.673,35.369,7.42326,13.7372,35.6512,8.01705,13.294,31.7582,6.44393,11.6166,31.6071,4.98487,8.67585,39.084,5.44267,8.97001,35.0232,6.01918,9.05388,31.4459,6.4239,8.93046,27.5927,6.96612,11.4339,27.5674,9.79866,14.2816,39.7878,11.9285,13.1177,43.7871,5.48929,5.68081,38.7831,6.75762,3.20417,38.4441,7.52435,4.5616,27.4334,8.92818,2.84039,27.3733,6.83087,6.60937,27.5262,10.8462,3.14631,23.0031,11.0999,2.66243,27.4398,7.29165,4.28673,31.0438,8.90998,2.40381,30.9408,11.3514,2.259,31.0735,12.8823,3.95498,27.6159,12.3399,4.38353,22.9671,5.85879,6.24807,34.6829,6.45112,6.54276,31.2393,8.4031,12.8352,27.515,7.09043,11.2261,22.7767,8.39233,12.5437,22.7073,6.99506,11.0076,19.0223,8.1632,12.3296,18.9919,15.8071,4.91878,39.5298,15.272,5.36572,35.2925,14.1275,5.9404,27.7182,13.3295,3.63938,31.3817,14.7659,5.73833,31.6532,16.0498,8.08113,35.5916,15.4208,8.2105,31.8256,13.3102,6.12835,22.8072,12.7963,6.34931,19.1222,11.9305,4.72269,19.1368,14.6368,8.21002,27.6943,9.35461,5.80523,83.9572,9.8531,6.7327,79.5889,13.2213,5.1489,80.0292,12.7488,4.54422,84.3377,13.5176,5.31602,76.0547,10.418,6.94293,75.6507,15.7456,2.84707,76.2966,15.6718,2.59746,80.3441,15.3782,2.16401,84.6885,15.747,2.94617,72.4709,13.715,5.26717,72.2924,10.9391,6.77854,71.9322,15.7185,2.97665,68.9348,13.8589,5.1401,68.8125,16.5165,0.278866,68.8772,16.8504,0.123596,72.469,17.0884,-0.121559,76.3603,6.78237,7.02668,75.1483,7.70282,7.14533,71.4847,11.3523,6.44329,68.5208,8.58188,7.00815,68.1367,6.02746,6.5355,67.7255,11.6126,6.08909,65.4106,9.19176,6.66419,65.0121,6.87932,6.64553,64.5102,16.1228,0.39928,65.5619,15.61,2.99238,65.6751,13.8895,4.99247,65.6141,17.3292,-3.31034,76.2433,17.0314,-2.88396,72.2915,16.3759,-6.09686,75.9379,16.0616,-5.55388,71.9733,17.1917,-0.584965,80.4856,17.0719,-1.02365,84.8668,15.3445,2.99349,62.6301,15.6425,0.51247,62.4117,13.7173,4.8352,62.6555,9.57271,-11.9673,86.0484,5.64465,6.03477,57.9438,11.3807,11.9851,47.1932,6.95902,3.841,34.4054,10.5827,3.50451,19.1855,10.2723,-12.2104,100.677,13.4736,-10.702,100.828,14.8772,-9.10669,103.39,-0.00055593,-4.54442,88.8219,6.22299,7.00545,16.1568,6.14517,9.09427,16.0679,7.12192,4.97667,16.3016,8.65848,3.53121,16.3852,12.3119,9.5896,16.2766,12.7493,8.11907,16.3003,6.88197,10.9042,16.0677,12.4836,6.52498,16.2837,11.6696,4.93932,16.2553,10.431,3.70311,16.3349,9.58285,12.5546,18.9641,10.8175,11.8897,18.9608,11.8189,10.8947,18.9989,7.98181,12.2132,16.1014,9.37003,12.6307,16.1302,10.6267,11.9297,16.1618,11.5846,10.8543,16.2148,0.00177157,-11.2005,88.384,-0.00216816,3.19481,90.4627,-0.00257229,6.57295,97.0179,15.0557,-9.20723,101.738,13.5164,-10.5548,102.501,0.00374001,-12.5696,90.222,6.03544,6.81222,14.0258,7.0864,4.81647,14.3224,7.04716,4.54406,12.9502,5.73312,6.43672,12.1095,5.90514,9.06635,13.8944,5.15921,9.67082,9.53515,4.76951,7.14748,9.52723,4.9966,7.1609,7.26905,4.91864,9.62218,7.38542,5.48123,9.0138,11.7976,6.24829,5.07057,11.3325,6.04588,4.86405,10.0751,5.90392,4.23539,8.11409,8.22492,0.460931,8.14189,6.99248,0.968218,7.05337,7.33557,2.50035,9.64263,6.33229,1.35319,5.49703,5.47809,4.36854,5.85144,7.16602,3.45965,10.993,6.15484,11.4818,9.71237,5.60579,12.0083,7.53068,6.92758,13.5633,7.87566,7.29702,12.8696,10.0019,9.12108,14.2484,7.89228,9.03428,13.4151,10.2017,5.17467,12.2445,5.71328,6.6461,14.0463,5.87364,4.59161,9.81757,5.63159,8.67167,2.67094,11.4933,8.93771,1.87939,10.2098,10.1427,2.78316,11.404,10.2415,2.01288,10.0777,10.7033,0.21524,8.44856,11.4341,-2.40484,6.34795,10.4594,-2.49919,6.47546,9.54924,0.155485,8.51251,9.27476,-2.32628,6.46511,11.5095,5.02935,14.2721,10.3172,3.80264,14.4441,8.62704,3.52007,14.5233,11.9051,5.17463,10.1282,12.0245,3.35323,8.65384,11.3243,2.5192,9.60873,11.1802,3.62769,10.8709,12.5954,12.1988,6.24046,12.7039,12.6874,4.26645,13.3782,10.4397,4.56539,13.1752,9.99618,6.63748,11.1981,13.9981,6.04682,10.9783,14.3233,4.11296,12.2698,12.9301,2.42154,13.1696,10.9062,2.64942,10.5667,14.3116,2.34197,12.0658,10.9584,1.34866,11.0836,12.4266,1.23779,10.1524,13.4668,1.29476,13.1437,5.64423,6.23725,13.4828,6.33294,4.53707,13.9027,3.9677,4.05481,13.5204,3.09972,5.39678,14.8213,1.15892,3.33524,14.2664,0.237685,4.5163,12.9521,2.18002,6.46178,13.5548,-0.674752,5.26584,12.6673,4.18998,7.49051,13.2468,9.38908,7.58488,13.1787,8.03534,6.21974,13.1355,7.88788,7.31333,13.148,-10.8561,1.24344,13.6647,-10.7643,1.36824,13.7229,-11.1114,0.934817,13.4075,-11.2298,0.726661,13.7619,-11.1498,0.483804,14.0064,-10.8985,0.731301,14.3533,2.01125,0.855586,15.0947,1.87616,1.98716,14.2149,4.61705,2.55228,13.4703,4.71854,1.02668,13.7441,6.99089,2.81522,12.8775,7.0869,1.1906,9.48979,11.8636,0.775739,10.3071,10.4724,0.733079,13.3996,9.33368,2.7683,12.4405,9.33163,1.30158,11.3852,6.64846,0.653412,10.8891,8.92065,0.699335,8.72507,13.1668,1.09603,7.96326,11.1313,0.623055,7.11393,12.3033,0.999163,8.6219,9.79851,0.56721,8.35974,14.4238,2.30111,8.94295,14.6979,5.95408,8.60774,14.7519,4.04739,6.34719,13.9357,3.99276,11.1335,13.4168,8.00587,4.43872,9.71721,3.93578,4.71254,9.3655,2.40425,4.96175,11.6083,2.3179,4.90696,12.0713,3.95983,6.27205,13.4335,2.26954,6.0014,10.9365,1.03671,5.80046,9.10862,1.18277,4.71524,7.19172,3.97335,5.14165,7.06201,2.52369,6.14866,7.18139,1.43354,10.7054,12.6644,10.477,9.19002,8.27642,0.588608,13.8783,-10.1984,0.430733,13.8646,-9.77073,0.685273,13.4246,-9.84334,0.583261,13.5594,-10.3732,0.341823,13.0087,-10.1594,0.667041,13.2042,-10.5323,0.41136,13.6958,-10.8482,0.314939,14.0461,-10.5074,0.501758,13.1982,-10.9255,0.474722,14.3932,-9.03127,0.643373,14.6377,-8.98194,0.580451,14.538,-8.57746,0.74053,14.2446,-8.7442,0.835286,14.9025,-8.2356,1.01344,14.4859,-8.17748,0.975391,14.9036,-8.64937,0.756144,15.2114,-8.94226,0.884289,14.8868,-8.95548,0.602953,15.0785,-9.2587,0.650691,15.2538,-8.52063,1.20987,14.1649,-8.37037,1.11579,14.1221,-8.7342,1.40562,14.2063,-9.1227,1.02811,14.1494,-8.00518,1.29546,14.4676,-7.80628,1.11508,14.1069,-8.30977,1.69264,14.4337,-9.38389,0.707598,14.4763,-9.48886,1.24909,14.5773,-9.6941,0.903748,14.7836,-9.41885,0.58921,14.9347,-9.76302,0.868089,5.75881,4.63678,2.68091,6.68141,4.87584,1.64008,6.18111,-1.49647,2.41894,6.97081,-1.25638,1.04991,7.04211,1.83892,1.38726,6.19109,1.87937,2.60426,5.37894,4.4998,4.10034,6.0397,1.68236,3.97788,7.12026,-1.88572,5.14034,6.4311,-1.67063,3.82919,12.8254,-8.6278,1.28507,12.8809,-9.12874,1.25067,13.3151,-8.89915,1.06834,13.2422,-8.40125,1.07016,12.9025,-9.62769,1.02503,13.3437,-9.33116,0.887609,12.6412,-8.85647,1.87099,12.6959,-9.40447,1.7665,12.7437,-10.0117,1.42362,12.5843,-8.02201,1.12569,13.042,-7.72097,0.931989,12.5464,-8.46315,1.85714,14.0984,-9.25038,2.20821,14.0915,-8.97322,1.67529,14.1129,-9.49913,1.37394,14.0925,-9.87792,1.76515,13.623,-9.51443,2.52145,13.6615,-10.2029,1.99554,14.1205,-10.0263,0.9195,14.0434,-10.4261,1.19729,14.2412,-4.883,3.96489,14.9922,-4.3269,3.67904,15.0302,-5.52379,3.35102,14.5825,-5.8444,3.46989,13.5879,-5.58879,3.90405,14.1639,-6.25766,3.34207,15.1316,-6.23762,2.91444,14.7714,-6.58283,3.01092,14.3659,-6.85693,2.88935,15.5605,-4.90669,3.19938,15.31,-5.44376,3.14118,15.739,-5.48546,2.77052,15.3701,-5.87307,2.78075,13.6552,-6.61681,3.39636,13.9647,-6.63612,3.16979,14.0611,-7.07468,2.82009,14.3472,-7.46702,2.38752,14.0939,-7.50639,2.33326,14.8478,-7.23086,2.58551,13.0949,-6.77463,3.53097,12.7086,-5.8296,4.06364,12.5046,-7.04636,3.42345,11.815,-6.29346,4.00965,12.191,-4.59017,4.91058,11.2393,-4.85326,4.9659,13.0271,-4.21003,4.82691,13.3055,-7.50699,3.1287,12.7327,-7.6884,3.06347,12.1812,-7.37636,3.32354,12.2798,-7.82614,3.05234,11.7591,-7.27537,3.60748,13.4145,-8.14565,2.84671,12.7454,-8.33404,2.6401,12.3737,-8.27849,2.58069,13.7883,-7.29393,2.97426,13.9315,-7.88671,2.47196,15.3195,-8.89665,1.50849,15.2869,-9.3221,1.13503,15.3219,-8.34531,1.88327,15.2375,-8.02348,1.48422,14.8829,-7.80887,1.18889,8.92665,-11.5405,2.20983,9.82856,-11.1334,1.85236,9.98525,-11.8075,1.74512,9.05821,-12.1028,2.06561,10.3225,-11.7045,0.933201,10.1128,-10.8814,0.977737,8.83143,-10.9456,2.40539,9.7038,-10.4191,2.07179,9.83298,-10.0593,1.17172,12.8299,0.989006,0.630636,12.1083,3.65356,0.532768,10.4813,2.40692,0.547451,11.0487,-0.160773,0.605851,15.2014,-9.5549,0.844853,6.29552,-7.65778,1.13235,6.04051,-6.54581,1.13193,5.8599,-6.68193,2.3327,6.20074,-7.86195,2.14197,6.71469,-8.4868,1.04282,6.63011,-8.79466,1.91061,6.41026,-6.74003,3.52985,6.7486,-7.92738,3.16768,7.16955,-8.9078,2.83928,7.07807,-9.24406,0.93341,6.94703,-9.62348,1.70544,7.72375,-8.86576,0.534351,7.28472,-8.17111,0.474304,6.88047,-7.4442,0.413973,7.49661,-9.78529,2.5884,7.26283,-10.0154,0.764928,7.99715,-9.59343,0.42035,8.76025,-8.61605,0.683568,8.10829,-7.95967,0.254094,8.92524,-9.33187,0.638925,7.78836,-7.3108,0.0807755,8.51612,-7.37924,0.0342023,8.8969,-7.84712,0.250259,9.42245,-8.3714,0.822343,8.2059,-8.6844,3.40908,8.55908,-9.50068,3.0722,7.83332,-7.79462,3.81343,9.22222,-8.27254,3.46105,9.53653,-8.88488,2.73094,9.59509,-9.67943,2.36179,8.74661,-10.275,2.73655,7.68994,-10.5734,2.34705,9.01285,-7.60529,3.90384,9.6987,-7.54701,3.65316,9.87986,-7.92825,3.30044,9.97661,-8.39055,2.64314,10.4336,-7.63044,0.353285,9.64342,-7.75881,0.307168,10.2012,-8.57275,0.857647,10.9644,-8.46173,0.690882,11.782,-8.37113,1.00939,11.217,-7.50196,0.491035,10.745,-9.38695,0.995747,11.3412,-9.23995,0.799219,11.9941,-9.14847,1.11436,11.8019,-7.36301,0.597436,12.1751,-8.04142,1.11505,12.2334,-7.14537,0.618095,11.6922,-6.36468,0.315956,11.4423,-6.77247,0.324442,10.7954,-6.66996,0.210937,12.6962,-6.88131,0.612426,13.5534,-7.55517,1.1073,13.1618,-6.67504,0.657302,13.7007,-8.3159,1.24798,9.84072,-6.76945,0.113101,10.8577,-5.69265,0.307053,9.56802,-5.70893,0.289128,13.8111,-6.18619,0.64228,13.4489,-5.42533,0.394777,13.2763,-5.88642,0.443294,13.5127,-6.46999,0.681893,12.8497,-5.81305,0.389659,12.696,-4.70856,0.406297,12.2315,-5.97445,0.338291,11.7944,-5.12957,0.359328,14.1987,-5.83394,0.591397,13.9068,-4.94733,0.379759,14.3748,-6.67029,0.878964,14.0178,-7.05319,1.11119,14.6548,-5.52193,0.617858,14.4969,-4.67254,0.424891,14.8573,-6.42588,0.98904,16.0287,-4.45264,0.721419,15.8267,-3.56257,0.609744,15.2157,-4.14059,0.507932,15.4635,-4.84157,0.684195,16.6191,-4.23006,0.925433,16.5263,-3.20478,0.921482,16.125,-2.03455,0.894975,15.0608,-2.71074,0.645024,14.3993,-3.69809,0.502558,15.9774,-5.27159,0.762333,15.4443,-5.66607,0.951355,15.4047,-6.13251,1.03905,15.8434,-5.89589,0.745523,16.3835,-5.83352,0.764896,16.5315,-5.12051,0.86596,12.3868,-8.40536,1.8322,12.0528,-8.53034,2.7742,11.8503,-7.92834,3.27711,12.2649,-8.64088,1.85261,14.0096,-8.5811,2.37646,13.5195,-8.79213,2.73609,12.8832,-8.91062,2.52937,15.2079,-6.8432,2.29238,15.3637,-6.27096,2.19984,15.6555,-6.08541,2.20452,15.3428,-6.15869,1.53426,15.2577,-6.28173,1.53461,15.1711,-6.75738,1.55825,11.3132,-8.55885,3.11725,11.1824,-7.90549,3.42227,12.1193,-9.23099,2.66239,11.4504,-9.33684,2.95075,12.3348,-9.17037,1.8603,10.4851,-7.84771,3.32478,10.5448,-8.55554,2.75536,10.8046,-9.41618,2.51564,10.2381,-8.82558,1.74338,9.82381,-8.58873,1.69148,10.5394,-9.47797,1.68423,9.5523,-8.81188,1.59302,16.2747,-2.47629,2.70102,16.5186,-2.02589,1.74126,16.8043,-3.21158,1.64719,16.6041,-3.59457,2.485,16.9019,-4.27165,1.51568,16.7438,-4.58155,2.21967,15.7835,-1.14085,2.93193,16.0372,-0.563102,1.79181,15.3107,-0.39903,0.812475,16.8364,-5.18714,1.33132,16.7275,-5.95464,1.12686,16.7331,-5.43535,1.91905,16.6785,-6.20009,1.63904,16.3201,-5.05718,2.72467,16.3028,-5.78372,2.31334,16.2483,-6.44883,2.00555,15.6588,-6.54605,1.97977,9.98285,-13.0978,1.3147,10.0649,-12.537,1.59327,10.3423,-12.4757,0.935729,10.0628,-13.0994,0.861909,9.39053,-13.4329,0.835886,9.37874,-13.3457,1.35861,8.22815,-13.0075,0.567641,8.01422,-13.09,1.16863,8.60907,-13.4409,0.978746,8.63796,-13.3232,0.619973,8.72685,-13.3801,1.37197,8.39458,-12.9812,1.69008,9.27668,-13.214,0.469228,9.23148,-12.7733,1.84113,11.661,-12.4962,1.14273,11.4521,-12.1537,1.41931,12.0108,-12.0845,1.54089,12.1307,-12.4875,1.12105,12.1288,-12.4539,0.716474,11.584,-12.4168,0.815611,11.2326,-12.0434,0.992244,12.5291,-11.9063,1.3268,12.5402,-12.299,1.06362,12.7172,-11.7291,0.937187,12.5976,-12.2159,0.751204,14.4172,-7.98796,2.23763,14.1116,-7.8758,1.79851,14.0696,-7.55124,1.7673,13.977,-7.54992,1.72414,14.1348,-7.59588,1.29828,13.7696,-7.1528,1.13346,15.3126,-6.41564,1.54257,15.1565,-5.88176,0.995929,12.4465,-12.0204,0.548378,12.0481,-12.1211,0.499682,11.6343,-12.1721,0.568895,12.4646,-11.599,0.585636,15.4623,-7.97148,0.541085,15.2159,-7.91985,0.762465,15.3882,-8.22179,0.931375,15.6684,-8.30895,0.773892,15.9075,-8.12785,0.598819,15.7841,-7.8252,0.422241,16.1623,-7.88477,0.751559,16.0981,-7.49589,0.466031,15.4045,-7.53946,0.479956,15.6621,-7.50838,0.377861,15.8178,-7.19335,0.409663,15.4487,-7.14262,0.546643,11.6182,-10.2289,2.72232,12.2701,-10.0131,2.5057,12.4551,-9.82337,1.78399,16.1868,-7.11771,1.73075,15.6174,-7.10162,1.8026,16.575,-6.88709,1.34652,11.3173,-11.6262,1.65027,11.8841,-11.567,1.8587,11.1657,-11.0596,1.96123,11.7747,-11.0136,2.30035,12.3681,-10.7604,2.11013,12.4198,-11.3581,1.652,15.1507,-7.66288,1.04678,15.1869,-7.27812,1.31349,15.5445,-7.59984,1.50849,15.4514,-8.02299,1.22124,15.2461,-6.84375,1.49719,16.0633,-7.66997,1.39301,15.9212,-8.12632,1.10905,14.9107,-7.89874,2.36155,14.4358,-8.55954,2.04739,14.9657,-8.58524,2.13592,16.3828,-7.4354,1.01401,9.60256,-9.35115,1.41112,9.16035,-10.0912,0.383065,8.15521,-10.4129,0.146186,9.45623,-10.9757,0.169163,8.37936,-11.3209,-0.00591302,12.3307,1.3985,7.36631,12.8999,-1.44291,5.76183,12.2452,-2.03933,6.12152,11.6898,0.681745,8.07915,4.75775,7.21916,5.64748,12.833,6.5189,7.40228,13.2929,7.5001,8.79893,12.4347,5.74788,8.43221,13.7561,-1.57434,0.619109,8.24529,-5.24752,0.442029,9.31716,-3.95972,0.511634,6.7235,-4.41227,0.786409,7.21494,-5.40096,0.473963,6.73205,-6.52691,0.391461,8.26491,-6.37014,0.258719,14.4313,-2.87246,4.33875,13.7353,-3.60896,4.63936,15.2034,-1.97054,3.87455,15.7146,-3.2519,3.42804,10.1054,-4.92319,4.95773,10.566,-6.28676,4.18616,8.83793,-5.0459,4.97275,8.12607,-2.1758,6.12315,9.229,-6.63755,4.26224,7.46769,-5.07549,4.63604,7.60389,-6.69583,4.27069,6.35203,-5.04479,3.74272,13.3521,8.67107,4.74555,6.92004,10.4114,0.661399,13.1511,9.57173,8.80192,12.8943,6.893,10.7802,12.9497,9.03347,10.5217,9.71569,5.96176,0.66314,7.11538,9.19374,0.708907,13.8145,-9.27576,1.02884,13.7746,-8.83251,1.23349,14.025,-8.41299,1.75438,12.8599,-10.585,0.921124,14.4448,-9.06201,1.66177,16.1292,-4.22519,3.09723,14.9575,-9.13348,1.71385,14.9571,-9.57964,1.31897,10.1415,-7.27474,3.70404,10.9577,-7.21395,3.75624,9.05164,-7.07237,0.150659,7.10156,-10.4167,1.53783,8.69696,-12.1408,0.0511571,7.53102,-11.6773,0.519074,7.83222,-12.4143,0.526452,9.02455,-12.7839,0.231427,7.36528,-11.8789,1.34482,7.61574,-12.5249,1.28362,7.9557,-11.8298,1.97527,8.12001,-12.3896,1.88251,13.4963,-4.15267,0.434089,15.0559,-5.21132,0.66539,14.9331,-4.64457,0.494252,14.8614,-7.27309,1.15723,14.4455,-7.34583,1.05767,13.9379,-7.86854,1.73757,9.88606,-12.5544,0.374251,9.73174,-11.8432,0.204394,9.85742,-13.0015,0.508848,12.3511,6.59385,14.2216,12.2387,11.6634,8.15926,11.8404,11.0963,10.4684,15.2475,-7.65475,2.08153,15.1888,-7.42238,1.56468,11.4362,-11.8022,0.579319,11.9468,-11.6261,0.440702,15.2024,-7.58622,0.646087,15.1739,-7.3097,0.785903,12.9776,-9.57974,2.34068,13.0601,-10.2626,1.85446,16.5754,-6.56992,0.912329,11.0473,-11.5049,1.16233,12.6413,-11.1286,1.20564,12.3974,-10.9854,0.736437,11.8417,-11.0212,0.510306,11.2731,-11.2382,0.666731,10.8994,-10.9186,1.34413,12.5606,-10.4865,1.53774,12.2946,-10.3616,0.945902,11.7261,-10.4276,0.652399,11.1434,-10.6547,0.793784,10.7405,-10.242,1.53039,10.9882,-10.2987,2.2786,10.9971,-10.0708,0.92695,12.1545,-9.78197,1.09475,11.5721,-9.88235,0.782425,16.0118,-6.78096,0.539539,15.5474,-6.73726,0.665873,15.2103,-6.92935,0.962369,16.3631,-7.06328,0.66099,15.2975,-6.53782,1.0569,15.6883,-6.34653,0.743546,16.2037,-6.35598,0.679433,7.34211,-10.8446,0.579212,7.20355,-11.175,1.4131,7.82699,-11.2454,2.1148,8.98677,-0.920858,0.710753,5.86849,-4.90413,2.37368,12.4434,6.64567,12.4992,12.6278,8.17155,14.1962,12.7278,8.39,12.3931,12.7883,10.4532,8.50351,9.23109,12.7064,14.1936,10.5565,12.018,14.2469,75.0565,5.12049,139.612,73.6347,4.47206,140.027,74.498,3.40641,139.697,75.4208,4.08207,139.395,75.206,6.29214,139.968,74.024,5.99524,140.326,75.618,7.23584,140.717,76.2534,6.5162,139.616,76.6068,7.41358,140.38,76.2495,7.55438,141.655,77.1341,7.7273,141.272,74.9812,7.41421,142.041,74.4572,6.972,141.021,76.1663,5.43961,139.264,75.6086,7.20387,143.118,76.1899,6.16033,143.767,76.305,4.65346,144.101,75.9549,3.00493,144.017,77.8336,2.65329,143.402,78.2384,4.54295,143.489,78.1588,6.11737,143.042,76.7741,1.11295,142.815,75.0898,1.70795,143.434,77.3238,7.2469,142.409,77.6687,7.61246,141.795,77.9903,7.86596,140.956,78.5113,7.67326,141.601,76.2955,4.49726,139.153,75.4422,0.588848,141.892,73.8219,1.23193,142.221,78.9522,7.2266,142.008,79.5042,6.66093,142.251,75.2571,2.50857,139.26,76.0541,3.20413,139.078,73.0451,1.86612,141.018,73.0722,2.95998,140.348,89.7557,9.09513,138.615,89.6736,9.05016,138.875,89.4042,9.05755,138.895,89.3791,9.1756,138.56,89.9571,8.86867,138.673,89.762,8.84854,138.974,92.0101,4.14269,138.481,92.0649,4.33083,138.787,92.587,4.3758,138.679,92.7198,4.28263,138.416,92.7889,4.60463,138.766,93.1383,4.55794,138.399,87.0028,-2.12667,139.639,86.9591,-2.36194,139.442,86.5372,-2.36876,139.324,86.4701,-1.94345,139.835,85.6018,-2.01483,139.645,85.7263,-1.64015,140.13,87.1445,-1.79193,139.774,86.6447,-1.48451,140.005,85.8969,-1.08563,140.288,87.0043,-1.12233,139.66,87.301,-1.5365,139.735,87.5805,-1.67481,139.574,87.5444,-1.96991,139.519,87.4074,-2.28029,139.411,86.0517,-0.585147,139.955,85.1524,-0.137165,140.279,85.0353,-0.667307,140.66,84.8852,-1.27946,140.517,86.0936,-0.320349,139.338,87.0276,-0.7243,139.1,85.2473,0.0376804,139.556,84.2105,0.370433,140.66,84.597,0.410063,139.758,85.178,-0.0758351,138.856,85.9855,-0.375172,138.68,84.5483,0.370901,138.98,88.01,-2.10029,139.207,87.8451,-2.48087,139.104,87.9083,-1.55458,139.243,88.6713,-2.34563,138.876,88.4848,-2.76474,138.783,88.8113,-1.89165,138.76,89.3231,-2.62364,138.57,89.1547,-3.01962,138.501,89.6588,-2.27484,138.352,87.2225,-2.76793,138.337,87.4152,-2.68978,138.922,88.2758,-3.06955,138.479,88.0971,-3.11213,137.972,89.1832,-3.39022,138.158,88.9756,-3.41225,137.666,89.9409,-3.58002,137.869,89.781,-3.66339,137.447,90.5213,-3.74257,137.707,90.4765,-3.88389,137.344,89.6092,-3.40514,138.216,89.8518,-3.45765,138.103,90.2783,-3.33475,137.995,90.6819,-3.45667,137.918,90.006,-3.26416,138.165,90.9736,-3.84968,137.658,91.1002,-3.97775,137.342,91.0666,-3.90425,136.986,90.5143,-3.75483,136.948,89.7525,-3.47285,137.031,91.2069,-3.64203,137.797,90.8417,-3.08596,137.931,91.3825,-3.26946,137.799,90.4208,-2.97759,138.034,90.9562,-2.75111,137.759,91.3789,-2.96999,137.661,90.3679,-2.54253,138.003,90.6597,-3.39511,136.736,91.3306,-3.67813,136.87,89.8519,-3.05568,136.804,90.8407,-2.97174,136.745,90.0398,-2.58796,136.846,91.5031,-3.29639,136.874,88.9122,-3.15517,137.218,89.0006,-2.68111,136.986,89.213,-2.19135,137.092,89.6608,-3.1767,138.339,89.7942,-2.83986,138.389,90.1317,-2.94232,138.214,89.9307,-2.59784,138.336,90.1582,-2.67606,138.217,91.4951,-2.95755,137.004,91.0005,-2.6352,137.005,90.2518,-2.26878,137.169,89.4551,-1.91079,137.473,90.3886,-2.23293,137.627,89.6269,-1.92194,137.953,88.6568,-1.50123,137.833,88.3942,-1.77813,137.394,88.8189,-1.54445,138.359,91.5707,-2.95711,137.351,91.0659,-2.55874,137.424,87.5405,-1.4097,137.738,87.2759,-1.96302,137.583,88.1449,-2.30218,137.244,87.8097,-1.08905,138.194,86.6313,-1.09759,138.041,86.3678,-1.67786,137.932,86.9,-0.718152,138.485,85.4264,-1.41912,138.235,85.3486,-1.92516,138.547,86.2602,-2.2073,138.183,85.6948,-0.808748,138.253,87.1578,-2.50493,137.821,87.9517,-1.13795,138.77,85.4599,-2.11023,139.07,84.4586,-1.6356,138.914,84.5801,-1.80756,139.45,83.516,-1.32559,139.232,83.6196,-1.49153,139.841,84.736,-1.67817,140.03,83.7929,-1.32682,140.454,84.2261,4.12676,138.531,85.2141,4.20882,138.78,85.0605,4.99928,138.691,84.0637,5.00367,138.472,84.5688,3.23505,138.83,85.3444,3.62543,139.271,85.8764,5.00134,138.591,85.9369,4.27142,138.761,85.9772,3.81112,139.241,86.7055,3.84522,139.079,86.6828,4.281,138.567,86.7007,5.00875,138.353,85.9286,3.78326,139.885,86.7185,3.80196,139.688,87.6296,3.85296,139.465,87.5816,3.88779,138.894,87.5718,4.31341,138.401,85.3178,3.73046,140.008,85.2179,3.33559,139.469,85.0732,3.44477,140.065,85.4002,2.96031,139.243,85.3964,3.10077,140.057,86.1192,2.68839,139.148,86.1065,2.82845,139.887,85.2505,2.27054,138.781,85.9822,2.13424,138.696,84.2424,2.44429,138.704,87.0013,2.57771,139.599,86.9268,2.51953,138.882,86.7323,2.01359,138.416,88.0457,2.33086,139.238,87.9019,2.30556,138.555,88.0581,2.01652,139.929,86.9107,2.33445,140.286,85.9261,2.63838,140.632,87.6698,1.81784,138.12,89.1612,2.05586,138.824,88.9743,2.03822,138.209,88.7141,1.58445,137.794,86.6958,1.93378,140.76,85.7322,2.19478,141.126,87.6078,1.68447,140.424,88.5392,0.923232,137.856,87.5048,1.15015,138.196,89.7988,1.36617,137.469,90.0713,1.79422,137.883,89.6185,0.709082,137.499,86.7136,4.09981,140.209,87.7083,4.11813,139.998,87.4906,4.55887,140.27,86.6968,4.59123,140.454,85.8423,4.10991,140.464,85.8309,4.64244,140.725,86.7549,5.10058,140.353,87.559,5.0161,140.193,88.0872,4.55986,140.184,88.1136,4.28605,140.108,88.1477,4.94246,140.131,85.8426,5.19068,140.602,88.5743,4.55428,140.036,88.4418,4.28805,140.005,88.6364,4.93708,140.0,89.0973,4.54534,139.803,88.7149,4.13438,139.711,89.1634,4.98955,139.759,88.5819,5.21604,139.896,88.8895,5.40424,139.535,89.8397,5.43158,139.229,89.8537,5.02113,139.526,89.7927,4.56622,139.573,88.5282,3.93948,138.701,88.6002,3.88734,139.229,89.5533,3.90302,138.995,89.4503,3.99307,138.496,90.425,3.9608,138.787,90.2927,4.07848,138.323,89.6801,4.15363,139.396,90.5911,4.22184,139.207,88.5118,4.35938,138.249,89.4123,4.40744,138.076,87.6245,5.00449,138.183,88.5669,5.00167,138.031,89.4664,5.00753,137.867,90.2414,4.48158,137.966,90.3038,5.01834,137.796,89.6137,5.53715,138.143,90.4618,5.49556,138.04,88.7002,5.5685,138.315,87.752,5.60136,138.499,86.8024,5.64325,138.683,91.1001,4.14701,138.182,91.2246,4.03807,138.616,91.0557,4.53132,137.872,91.369,4.27279,139.012,91.9618,4.20365,138.088,88.2768,1.47812,140.173,88.4592,1.72854,140.04,88.8469,1.35126,139.898,88.8412,1.63971,139.859,89.2258,1.74425,139.42,89.4931,1.2601,139.523,90.3784,1.52339,138.907,90.3674,1.10419,139.14,90.281,1.80791,138.445,91.4526,1.27441,138.654,91.2048,0.924916,138.89,91.3035,1.56446,138.204,91.1014,1.53497,137.694,92.1445,1.32444,138.068,92.2139,1.04647,138.466,92.0089,1.30012,137.597,90.8558,1.14965,137.315,91.8175,0.952738,137.239,90.6863,0.558039,137.291,91.6669,0.413113,137.174,90.6826,0.0654597,137.612,91.6356,-0.0750323,137.426,89.6197,0.212242,137.91,88.5152,0.444925,138.304,89.7687,0.0613785,138.461,90.8406,-0.110526,138.11,88.6128,0.319131,138.898,92.832,1.08363,138.006,92.7618,0.873267,138.324,93.1825,0.72161,138.292,93.3819,0.790915,138.021,92.8044,1.05607,137.583,93.3412,0.813645,137.669,93.6352,0.405123,138.044,93.2316,0.42607,138.408,93.4315,0.500354,137.525,93.1644,0.0212272,138.396,93.5864,-0.0351192,138.011,93.3519,0.0852888,137.472,92.7052,0.526593,138.476,92.338,0.616671,138.527,92.2562,0.23736,138.489,92.621,0.134766,138.448,91.7607,0.762645,138.78,91.8407,1.00477,138.725,92.0793,0.931822,138.662,92.1059,0.663666,138.679,91.676,0.404059,138.742,92.0303,0.3193,138.639,91.0908,0.495529,138.864,91.8846,0.0895968,138.563,91.6343,0.143571,138.632,91.9443,-0.0841913,138.345,91.1349,0.0667911,138.573,91.7362,-0.25979,137.898,89.9995,0.265245,138.923,90.229,0.652637,139.147,88.7003,1.00898,139.883,89.3387,0.84839,139.523,88.802,0.555223,139.45,88.4994,0.790013,139.849,88.1138,0.864439,140.037,88.1306,1.12806,140.168,87.5976,0.788101,139.98,87.4285,1.24076,140.436,86.4082,0.993691,140.361,86.4953,1.42655,140.789,86.3985,0.767806,139.667,87.4697,0.582949,139.324,87.4454,0.697387,138.676,86.47,0.880703,138.952,85.4892,0.948667,139.893,85.421,1.16827,140.651,85.6542,1.02293,139.134,85.5354,1.61674,141.137,84.5014,1.25128,140.812,84.6541,1.77176,141.448,84.8165,2.46394,141.516,86.5744,1.33414,138.456,92.5859,0.252211,137.213,92.5082,-0.177351,137.417,93.1324,-0.219535,137.532,93.1864,-0.347185,137.908,92.5062,-0.354598,137.838,93.0024,-0.256168,138.235,92.5265,-0.196894,138.227,90.462,4.60295,139.413,90.5147,5.01093,139.375,90.9539,4.41009,139.282,90.9412,4.64635,139.339,90.9874,4.97994,139.325,90.742,5.39807,139.084,91.065,5.22314,139.225,91.5409,5.38703,138.919,91.3212,5.22571,139.171,91.3594,4.98531,139.237,90.6264,5.63662,138.552,89.7574,5.66447,138.704,91.2921,5.4745,137.956,91.4527,5.61527,138.431,88.823,5.68146,138.915,92.2614,5.332,138.728,92.2585,5.51231,138.355,92.1708,5.4122,137.93,92.7755,5.22423,138.651,92.9277,5.29452,138.365,92.8784,4.95788,138.779,92.2659,5.00453,138.93,91.7264,5.01444,139.059,92.0597,5.0101,137.717,91.1289,5.02743,137.738,92.8233,5.27826,138.028,92.9256,4.96936,137.931,92.1901,4.6403,138.936,91.6627,4.64673,139.083,91.3065,4.65847,139.25,91.2017,4.42047,139.222,83.6963,1.06512,140.991,84.0804,0.901184,140.552,83.4393,0.740937,141.208,82.8295,1.2871,141.69,83.6869,1.42311,141.344,84.408,0.840104,139.876,84.7941,1.04385,139.956,91.9784,4.55056,137.807,92.849,4.57198,137.956,93.2298,4.95303,138.393,92.6383,4.29101,138.099,91.7285,-3.39922,137.358,91.547,-3.79447,137.363,88.5501,8.62936,139.279,88.5538,8.9275,139.038,88.8649,8.84149,139.156,88.8921,8.65903,139.242,89.014,8.8613,139.121,89.0974,8.69265,139.182,89.0502,8.99816,138.958,89.1461,8.44904,139.214,88.9438,8.40225,139.277,89.1351,8.25335,139.196,88.9911,8.21388,139.235,88.6271,8.30199,139.332,88.7569,8.0108,139.159,89.574,8.11483,138.717,89.882,8.31952,138.737,89.8571,8.30247,138.463,89.5485,8.14015,138.377,90.0016,8.59138,138.719,89.8941,8.52286,138.347,89.7729,8.37153,138.952,89.7975,8.58197,139.002,89.8349,8.81085,138.295,89.719,9.03036,138.333,89.3678,9.05908,138.208,89.411,8.73499,138.045,89.4853,8.37817,138.119,88.8272,9.01477,138.153,88.8386,8.62701,137.957,88.908,9.14903,138.557,84.8268,-0.562125,138.489,84.0227,-0.19496,138.658,83.6299,-0.847748,138.777,84.5269,-1.16393,138.55,84.5283,0.779018,139.273,88.2155,8.89413,138.197,88.223,8.47616,138.009,88.337,9.0631,138.612,75.8828,1.85619,138.669,74.8744,1.58591,139.523,75.6727,0.746135,138.745,76.2494,2.482,138.691,86.3481,-2.42919,138.706,87.2351,-2.45772,139.303,78.243,0.968239,142.668,78.7913,1.8255,142.884,79.2919,2.92443,143.086,79.3711,2.303,142.876,79.5217,3.88306,143.105,79.6565,1.40772,142.56,80.0629,2.1125,142.641,80.3129,2.83552,142.804,80.5452,1.04604,142.284,80.9197,1.82972,142.377,81.2569,2.65207,142.544,79.2163,0.66876,142.391,80.1769,0.347804,142.117,78.0783,0.372388,142.297,78.7169,0.0378053,141.983,79.6435,-0.463368,141.541,79.6571,5.74617,142.642,79.6625,4.95262,142.935,79.9655,4.40475,142.933,80.7409,5.00124,142.534,80.7416,4.34272,142.664,80.5449,3.64916,142.786,80.7431,5.68454,142.266,80.3252,7.88957,140.137,80.7604,7.78008,140.791,79.6505,7.76267,141.182,79.1696,7.93229,140.51,78.7945,7.57979,139.728,77.5837,7.53499,140.064,79.9885,7.53882,139.448,81.9778,7.80624,139.234,82.3332,7.96765,139.817,81.3702,7.91148,139.925,81.0451,7.63096,139.288,82.7345,7.84568,140.326,81.8012,7.81251,140.51,81.2089,7.41864,141.204,80.1367,7.34181,141.558,83.0775,7.5466,140.76,82.2316,7.49619,140.934,81.5874,6.95891,141.489,80.5999,6.87647,141.78,83.3044,7.03914,141.065,82.5182,7.00626,141.26,80.7955,6.31703,141.999,81.7269,6.34706,141.708,81.7269,5.67272,141.966,83.4614,6.30552,141.2,82.6167,6.345,141.469,83.3465,5.55087,141.609,82.5931,5.62861,141.763,79.9925,6.26378,142.296,83.2603,8.00362,139.698,83.5819,7.8755,140.168,82.9492,7.91582,139.177,81.9179,7.20277,138.635,82.8635,7.4532,138.685,83.9011,7.58558,138.686,84.7593,7.67029,138.593,84.6967,8.11625,138.9,83.9265,8.01579,139.047,84.7871,8.22772,139.402,84.1227,8.10765,139.545,80.9991,6.88281,138.688,84.9303,8.05897,139.869,84.3457,7.9603,140.008,85.4012,8.38359,139.259,85.3803,8.25142,138.75,85.4927,7.78986,138.484,85.4789,8.20045,139.747,86.1688,8.38072,139.647,86.0871,8.5602,139.104,86.0502,8.0091,140.001,85.5542,7.87437,140.093,85.0687,7.75149,140.218,84.5348,7.66526,140.377,85.1912,7.32721,140.327,84.6582,7.20938,140.524,78.5368,6.7762,139.048,77.2872,6.67796,139.303,79.8345,6.77059,138.839,78.5022,5.70691,138.711,79.9065,5.70615,138.535,77.2279,5.61456,138.96,77.3066,4.6694,138.889,78.5622,4.7147,138.668,76.9713,2.41862,138.368,76.6535,1.61579,138.141,77.6527,1.37597,137.842,78.1159,2.25716,138.171,79.4856,1.92085,138.292,79.7784,2.84332,138.557,78.3807,3.06117,138.538,79.9489,4.66862,138.505,82.8515,4.30007,138.423,82.8331,5.16655,138.379,81.4541,5.70982,138.389,82.3065,6.33701,138.363,78.9006,0.992977,137.871,80.2287,0.583498,138.26,81.1751,1.50746,138.596,77.0252,0.522771,137.84,78.102,-0.0593374,137.583,76.4,0.935191,138.145,74.991,0.426099,140.91,76.3917,-0.190363,141.396,75.7415,-0.408765,140.519,76.026,-0.957404,139.229,75.4181,-0.170477,139.568,76.412,-1.08382,140.199,77.0945,-0.829333,140.971,77.0364,-1.64511,139.793,76.6531,-1.55652,138.854,77.7334,-1.40997,140.512,77.2206,-2.00466,138.475,77.5489,-2.11846,139.32,77.9003,-2.53324,138.823,77.666,-2.38872,138.082,78.2236,-1.95333,139.983,78.513,-2.43223,139.424,78.1677,-2.96327,138.35,78.0341,-2.79183,137.696,78.7401,-2.86125,138.917,78.5943,-3.47339,137.928,78.4703,-3.24387,137.344,79.0679,-3.34677,138.465,79.0333,-3.97651,137.486,78.9025,-3.67458,136.933,79.4577,-3.88304,138.004,78.656,-2.83917,136.91,79.0893,-3.22277,136.562,79.3473,-4.04485,136.415,79.57,-3.53375,136.123,79.0847,-2.39022,136.776,79.4945,-2.8067,136.497,79.9764,-3.1517,136.162,79.472,-4.48964,136.979,78.7467,-1.94503,137.039,78.2562,-2.4151,137.201,79.58,-2.0856,137.081,79.3252,-1.62684,137.358,78.4915,-1.48183,137.285,77.8889,-1.9804,137.48,79.2274,-1.18962,137.6,79.9407,-2.55026,136.78,79.8432,-4.34864,135.864,80.0963,-3.81049,135.639,79.9514,-4.82613,136.372,79.9672,-4.87951,136.801,79.8052,-4.77432,137.022,80.4806,-4.96727,136.657,80.7502,-5.08022,136.351,80.3982,-5.00495,135.908,80.3678,-4.63514,135.449,80.2879,-4.87297,136.996,79.2478,-2.14014,139.743,79.3632,-2.52824,139.241,79.8381,-1.74067,139.621,79.1968,-1.59131,140.431,80.0604,-1.42928,139.972,79.7809,-2.05738,139.228,78.6065,-0.999641,141.052,79.8111,-1.08881,140.867,81.7397,-0.697477,141.094,81.2804,-0.997945,139.969,80.4986,-1.06683,140.373,80.8226,-0.541187,141.34,77.4983,-1.48249,137.715,78.3135,-0.917116,137.455,76.9702,-0.89713,137.936,79.3335,-0.701665,137.792,79.8652,-1.17542,138.435,80.2837,-0.791069,138.774,79.7782,-1.56168,138.095,80.3998,-0.316747,138.492,79.581,-0.11872,137.925,81.6526,4.25693,142.363,81.5007,3.49389,142.502,82.5066,4.10003,142.107,83.3827,3.89147,141.816,83.207,3.07539,142.127,82.3843,3.3017,142.287,83.0021,2.20466,142.111,82.1526,2.41662,142.319,83.3314,4.78244,141.829,82.5701,4.88443,142.015,81.7161,4.97941,142.231,84.066,4.11546,141.424,84.0818,4.7523,141.551,84.0605,5.41754,141.35,84.8957,5.29417,140.937,84.9408,4.70067,141.09,84.922,4.07472,140.786,84.0663,6.60839,140.774,84.0972,6.2775,140.669,84.0129,5.92883,140.94,84.3898,6.27838,140.284,84.6683,6.70281,140.304,84.7382,5.79005,140.434,85.2689,6.94511,140.079,84.8183,6.56174,139.693,85.3014,6.78478,139.593,85.8483,5.60243,140.163,84.622,3.57712,140.768,84.1568,3.69214,141.271,84.9351,3.05428,140.978,84.0529,3.36087,141.547,81.8192,1.53831,142.085,83.7966,1.99718,141.831,83.959,2.75553,141.893,82.3722,0.476813,141.809,81.4727,0.755716,142.027,83.2075,0.130896,141.504,82.0844,-0.154471,141.73,82.9874,-0.514715,141.424,84.1046,-0.248819,141.083,83.9611,-0.895951,140.958,82.7252,-0.977428,140.868,82.4984,-1.16249,140.135,82.6314,-0.39384,138.864,83.062,0.624679,138.694,80.5125,-3.43792,135.761,80.9316,-3.30534,136.107,80.3986,-2.96123,136.457,80.7733,-2.9738,136.939,80.3025,-2.51233,137.313,81.2993,-3.40784,136.588,81.4487,-3.78005,137.056,80.947,-3.26973,137.449,80.4542,-2.73319,137.85,80.7855,-3.81131,137.768,80.308,-3.1253,138.162,81.2505,-4.34775,137.283,79.9531,-2.0228,137.711,80.0781,-2.20128,138.327,79.9159,-1.71584,138.842,81.0765,-3.8356,135.425,81.4702,-3.74189,135.789,80.6638,-4.16023,135.272,81.5421,-4.37964,135.246,81.8915,-4.30766,135.562,81.7831,-3.88094,136.259,82.1369,-4.38851,135.977,81.164,-4.59625,135.11,81.7766,-4.9257,135.254,82.0936,-4.87602,135.496,81.4628,-4.94881,135.131,81.8669,-4.22971,136.675,82.1727,-4.61993,136.349,81.7104,-5.32029,135.463,82.0652,-5.2921,135.675,81.3126,-5.21419,135.288,81.1656,-5.32357,135.594,81.4323,-5.39625,135.839,80.8694,-4.94435,135.263,80.8148,-5.19595,135.688,82.304,-4.85782,135.816,82.2737,-5.1674,135.857,82.3143,-4.89165,136.115,82.1772,-5.14913,136.174,81.9368,-4.93977,136.518,81.8267,-5.37524,136.086,81.5041,-5.17873,136.419,81.0714,-5.24907,136.114,81.631,-4.65776,136.833,81.2092,-4.98287,136.691,80.9388,-4.82874,136.988,80.9377,-4.48825,137.467,80.6886,-4.72168,137.277,80.4699,-4.48735,137.566,80.7834,-4.31116,137.647,80.0644,-4.69317,137.318,79.7899,-4.35565,137.607,80.2576,-4.07161,137.852,79.9329,-3.5227,138.219,84.879,5.79433,139.104,84.5736,6.20026,139.286,83.9109,5.95183,138.694,84.5867,6.51646,139.074,84.1531,6.98613,138.669,83.1812,6.71423,138.509,84.976,7.13569,138.653,85.2151,6.81661,139.061,85.6832,7.28867,138.572,85.8371,7.0198,138.975,86.1873,7.94598,138.37,86.3493,7.47211,138.449,86.4829,7.22034,138.825,86.869,8.12419,138.187,87.0213,7.65071,138.266,87.1705,7.41203,138.643,86.5277,7.21086,139.3,87.2612,7.41429,139.101,85.8748,6.99468,139.467,86.0799,8.40146,138.606,86.7981,8.58187,138.431,86.85,8.76563,138.913,84.9782,5.94064,139.737,84.6088,6.27116,139.763,85.886,5.7948,139.549,85.8653,5.65975,138.918,86.8557,5.5018,139.933,86.8786,5.73268,139.329,87.8544,5.69205,139.131,87.8889,5.40935,139.777,85.0541,1.56464,138.721,84.0334,1.68646,138.699,84.8569,1.01378,139.15,84.0277,0.899173,138.822,85.6847,7.47807,140.176,85.8215,7.15006,139.918,86.4858,7.40818,139.774,86.1692,7.65526,140.058,87.2941,7.63424,139.545,86.9877,7.71824,139.796,86.7104,7.63873,139.883,86.5891,7.82294,139.978,88.0907,7.80575,139.294,87.9919,7.6096,138.919,87.5138,8.03456,139.671,88.1175,8.16534,139.478,87.015,7.94374,139.844,87.8561,7.62113,138.499,88.6315,7.79725,138.797,88.4877,7.81665,138.409,87.4037,8.39403,139.617,88.0134,8.54428,139.414,86.9216,8.22976,139.805,86.7686,8.40367,139.717,86.9956,8.61936,139.426,87.8215,8.82711,139.157,86.4929,8.10668,139.933,88.3358,8.05793,138.1,87.7003,7.85713,138.153,87.5661,8.30499,138.068,89.0561,7.976,138.357,88.9346,8.21906,138.052,89.1538,7.95685,138.73,87.5326,8.74848,138.287,87.6346,8.94185,138.728,89.2182,8.15303,139.058,89.5433,8.26231,138.985,89.3029,8.46823,139.151,89.5214,8.51913,139.103,89.2498,8.7543,139.125,89.4742,8.80691,139.077,86.486,8.32015,139.798,85.8192,1.47072,138.67,88.0382,-2.82698,137.485,88.2529,5.21504,139.977,92.7056,0.727445,137.27,77.3081,0.166681,142.065,77.9376,-0.425175,141.548,83.8426,7.5957,140.575,84.0113,7.12327,140.8,79.5869,-2.96312,138.719,79.952,-2.53868,138.678,80.0734,-1.36622,139.236,80.43,-1.13218,139.511,81.174,0.110429,141.913,77.1255,3.16119,138.713,82.4408,-0.99189,139.423,81.286,-0.815152,139.33,81.3195,-0.0732856,138.771,76.2942,-0.219741,138.301,74.7657,0.759359,140.072,82.9158,5.76078,138.403,81.2748,2.63541,138.602,81.3995,4.547,138.42,81.9883,0.718681,138.675,82.8874,3.40377,138.53,82.8075,2.55829,138.632,81.3706,3.5822,138.501,79.9175,3.744,138.564,78.547,3.86459,138.68,77.3037,3.88826,138.872,82.768,1.6969,138.694,76.4801,3.86136,139.081,74.0397,2.41658,140.057,74.163,1.03435,141.223,73.9615,1.52581,140.586,2.92119,-11.6999,167.706,2.78673,-11.7495,167.292,2.4861,-12.1114,167.646,2.56604,-12.0745,168.13,7.66022,-3.52053,173.467,7.54091,-4.10161,173.398,7.57875,-3.92316,174.435,7.70025,-3.44393,174.223,8.28595,-2.24784,174.316,8.24674,-2.70188,174.421,8.73521,-2.0457,175.298,8.73748,-1.80897,174.889,7.99909,-3.10122,174.394,8.31301,-2.29281,175.397,8.14595,-0.905738,171.759,8.3758,-0.449759,171.714,8.05253,-0.906337,171.066,7.92787,-1.29683,171.238,8.5141,-0.656944,172.681,8.84022,-0.12762,172.732,8.74805,-0.583423,173.783,9.10406,-0.0459322,173.949,8.76794,0.330059,172.852,9.11584,0.397927,174.2,9.08267,-1.1071,175.093,9.12044,-1.05069,175.582,8.63382,-1.07628,175.74,8.66488,0.419919,174.242,8.32045,0.377422,172.927,7.84708,0.00729097,171.802,8.27748,-0.0641508,171.706,7.93509,-0.615648,170.863,7.52843,-0.569476,170.927,7.4802,-1.36584,170.177,7.21614,-1.40112,170.384,7.25397,-2.25752,169.806,7.48407,-2.06496,169.676,7.91114,-0.15645,172.79,7.54119,-0.398944,171.887,8.16596,-0.145197,173.812,7.79504,-2.6804,174.921,8.09847,-1.34736,175.141,7.28491,-0.818599,171.106,7.19908,-0.534744,171.896,7.10738,-0.816356,171.218,7.09993,-2.13845,169.847,7.05149,-0.83895,170.548,7.22677,-2.80654,169.838,7.44559,-2.7233,169.764,7.77985,-2.24804,169.698,7.72357,-1.63405,174.708,7.62808,-2.84824,174.729,7.37441,-3.11926,170.378,7.65265,-2.84065,170.225,7.98693,-2.36269,170.248,8.0535,-1.68023,170.567,7.89199,-1.45553,170.151,7.97089,-1.78876,170.952,7.9273,-2.29428,170.936,7.54655,-3.07494,171.388,7.38668,-3.43081,171.027,7.48671,-3.71868,171.719,7.6729,-3.26762,171.993,7.73154,-3.42378,172.707,7.55423,-3.96513,172.511,7.7907,-2.95245,172.875,7.82259,-3.05464,173.645,8.84982,-0.816989,174.524,9.1709,-0.418746,174.785,8.88883,-1.13801,174.806,9.23186,-0.124214,175.179,8.77152,-0.0850369,175.264,8.21005,-0.450729,174.686,7.72305,-0.779526,174.239,7.63001,-0.45188,173.503,7.4367,-0.375584,172.698,7.94185,-2.73342,173.728,8.05124,-2.30498,173.756,7.86003,-2.194,173.245,7.64926,-2.52698,172.845,7.74905,-2.94549,172.187,7.66964,-2.67041,171.678,7.53389,-2.98689,170.928,7.71501,-2.74503,170.931,6.78535,-1.05845,169.238,6.6234,0.115884,169.311,6.44855,-0.0847463,167.855,6.47475,-1.43587,167.69,7.70182,-2.56002,175.586,7.77274,-1.32568,175.401,7.18098,-0.0206282,171.842,7.0762,0.852865,171.978,6.84733,0.442503,170.65,7.68298,-0.405895,174.796,7.54507,0.0812806,173.907,7.37656,0.219487,172.913,4.83199,4.43652,167.724,4.85541,4.46051,166.075,5.63722,3.25842,166.135,5.56565,3.26684,167.776,6.02996,2.14478,167.837,6.05397,2.11721,166.205,6.25764,1.01676,166.246,6.30076,1.04729,167.889,3.73312,5.51401,167.693,3.66862,5.51944,166.062,2.47401,6.16443,167.682,2.41543,6.07219,166.064,6.30854,-0.0867046,166.144,6.27292,-1.15521,165.775,1.25436,6.40404,167.706,1.24498,6.21317,166.105,7.37533,-4.7116,172.269,7.40474,-5.01421,173.37,7.30153,-4.32847,171.331,7.22265,-3.91004,170.544,7.14385,-3.44788,169.901,7.03684,-2.92048,169.444,6.90588,-2.14951,169.243,3.46872,-8.76236,183.46,4.66508,-7.86996,182.948,4.51429,-9.025,181.907,3.35457,-9.9907,182.257,5.53864,-7.93639,181.466,5.66685,-7.00278,182.327,4.44655,-9.85541,180.824,3.29089,-10.8579,181.066,5.4944,-8.6512,180.46,1.02809,-11.9645,181.204,1.04523,-11.1924,182.515,1.03574,-10.2605,183.7,4.43672,-10.4224,179.818,3.27805,-11.3994,180.013,5.47985,-9.21726,179.446,6.35884,-7.33057,180.033,6.3431,-7.85823,178.892,1.02044,-12.4197,180.081,2.12883,-11.5678,181.185,2.11474,-12.0618,180.084,2.1678,-10.7335,182.46,2.19239,-9.58669,183.742,6.32476,-6.81041,181.077,6.23784,-6.40059,181.813,7.14483,-6.1319,173.22,7.15201,-5.64558,171.916,6.85549,-6.63908,171.392,6.7425,-7.4459,172.866,7.11306,-5.12152,170.835,6.85729,-6.00421,170.244,7.05749,-4.57867,169.955,6.81141,-5.36602,169.278,6.97356,-3.97574,169.272,6.73382,-4.67371,168.496,6.83491,-3.29458,168.76,6.59097,-3.90983,167.909,6.27325,-8.43452,177.8,5.46194,-9.6948,178.515,6.13583,-9.07681,176.968,5.42774,-10.1257,177.68,4.45546,-10.8254,178.928,4.4819,-11.1479,178.088,3.30435,-11.7523,179.116,3.34406,-12.0165,178.272,2.12612,-12.3806,179.164,2.13924,-12.6012,178.318,1.02182,-12.7076,179.153,1.01627,-12.8846,178.315,-4.64157e-005,-12.7957,179.152,-4.56568e-005,-12.9566,178.317,6.59502,-8.17905,175.912,6.95922,-6.94263,176.623,7.00658,-6.35628,178.288,6.99895,-5.8858,179.638,6.90131,-5.51525,180.869,7.13159,-6.50423,174.743,6.77109,-7.67147,174.539,6.14717,-2.44791,166.552,6.36007,-3.09517,167.41,6.64514,-2.47549,168.352,6.0085,-2.10755,164.975,5.40941,-10.5245,176.862,6.01298,-9.63055,176.246,4.52971,-11.4462,177.23,3.41236,-12.2469,177.404,5.86124,-10.0503,175.579,5.33484,-10.8286,176.093,1.03882,-12.9939,177.508,-4.55456e-005,-13.0436,177.521,2.18714,-12.7662,177.474,1.05233,-13.0257,176.712,2.2202,-12.8058,176.647,3.42928,-12.3486,176.556,4.50896,-11.6413,176.409,6.34436,-8.92747,175.394,6.11242,-9.46809,174.937,-4.54537e-005,-13.0819,176.76,6.44859,-8.5585,174.389,6.37663,-8.55214,173.369,6.1615,-9.2075,174.256,6.07243,-9.2391,173.579,6.11588,-8.94316,172.524,5.84842,-9.51842,172.977,6.35234,-8.25208,171.781,6.47852,-7.56188,170.724,6.47231,-6.90607,169.624,6.41171,-6.22023,168.599,6.32687,-5.50563,167.715,6.20471,-4.77884,167.003,5.99811,-4.03736,166.359,5.74628,-3.41893,165.423,5.5623,-3.00054,163.87,2.24684,-12.5835,170.579,2.00229,-12.7499,170.01,1.81033,-13.1437,170.281,1.95856,-13.0006,170.87,2.97039,-10.7731,164.874,3.23691,-10.6718,165.561,3.62875,-10.0754,165.4,3.35361,-10.1347,164.387,2.70431,-12.0103,168.697,2.10062,-12.497,168.497,2.20903,-12.4306,169.084,0.863888,-12.1058,164.368,0.990515,-12.0518,163.68,1.21092,-11.39,162.339,1.16123,-10.4999,161.948,1.11777,-11.9276,163.048,3.8183,-10.3009,166.364,4.30549,-9.69532,166.544,4.13077,-9.2474,165.328,3.41753,-10.7438,166.284,2.92845,-11.0718,165.76,3.09557,-11.0618,166.27,2.55811,-11.0697,164.237,2.28914,-11.4532,164.735,2.68597,-11.1987,165.261,2.0816,-11.6826,165.172,2.45207,-11.4553,165.609,2.92735,-10.4617,163.6,4.85204,-8.92092,166.887,4.71342,-8.26681,165.639,4.52395,-7.77761,164.438,3.7942,-9.14629,163.689,2.43131,-12.3227,169.681,2.69532,-12.1859,170.286,3.23764,-11.7464,169.925,2.92948,-11.9067,169.294,2.93111,-12.0505,170.938,3.54729,-11.5716,170.652,4.35623,-10.7742,170.249,3.75769,-11.2382,169.403,4.72018,-10.1556,169.15,4.12071,-10.7343,168.63,3.36279,-11.49,168.795,3.68033,-11.0727,168.137,3.0997,-11.6251,168.228,3.37025,-11.2619,167.66,3.13194,-11.3843,167.247,2.97971,-9.69509,162.947,4.85626,-9.5939,168.085,4.30165,-10.2401,167.661,3.84747,-10.6653,167.304,3.47986,-10.9534,167.0,3.17913,-11.1678,166.771,1.5724,-12.9882,169.437,1.38646,-13.4108,169.946,1.50319,-12.9769,168.763,0.786253,-13.3459,168.875,0.785567,-13.4381,169.367,-4.42706e-005,-13.6343,169.324,0.755757,-13.7491,169.832,2.05741,-12.7409,171.444,2.42418,-12.4203,171.19,1.7925,-13.1966,171.313,1.78152,-12.9982,171.715,2.68541,-11.3201,165.955,2.85126,-11.2738,166.291,2.94889,-11.3265,166.626,2.9389,-11.4816,166.955,2.0597,-12.5306,167.983,1.48587,-13.0006,168.246,0.793807,-13.3666,168.412,1.55991,-11.9113,164.734,1.73981,-11.7411,164.174,1.95944,-11.4889,163.595,2.18752,-10.9065,162.909,2.17242,-10.0693,162.417,5.85855,-9.02685,171.118,5.98075,-8.45111,170.124,5.98579,-7.82667,169.049,5.92636,-7.1421,167.972,5.7384,-5.77754,166.142,5.84465,-6.44468,166.987,5.23196,-9.83744,170.641,5.38675,-9.33823,169.625,5.40325,-8.06755,167.404,5.44298,-8.75267,168.546,5.31034,-7.37538,166.297,5.18249,-6.75572,165.317,2.01036,-9.13877,162.195,2.91288,-8.78806,162.643,2.74253,-7.63751,162.163,3.73553,-8.07894,163.116,3.54571,-7.07092,162.463,4.41144,-7.1159,163.64,4.21875,-6.22061,162.806,5.04139,-6.12398,164.476,4.82404,-5.37231,163.497,5.56665,-5.11234,165.352,5.31974,-4.44943,164.354,1.01153,-9.48849,161.859,0.88342,-8.34456,161.746,1.8435,-8.00155,161.877,5.10287,-3.84485,162.865,3.31588,-5.9989,161.571,2.58094,-6.46932,161.407,3.96801,-5.27022,161.745,4.5843,-4.58489,162.135,1.77754,-13.472,170.431,1.71277,-13.8057,170.541,1.74062,-13.7093,170.891,1.847,-13.3805,170.815,1.48044,-14.1507,170.661,1.4804,-14.0521,171.021,1.12743,-14.5097,170.761,1.11568,-14.4002,171.148,1.67764,-13.5936,171.235,1.39819,-13.905,171.398,0.677179,-15.0047,170.757,0.670537,-14.9291,171.293,1.29189,-13.7165,171.757,1.06473,-14.2326,171.55,1.01474,-14.0283,171.941,0.64838,-14.7362,171.751,0.637657,-14.5086,172.172,1.57297,-13.4358,171.558,1.80695,-13.3672,171.111,0.637054,-14.2918,172.599,1.00904,-13.8327,172.353,1.25249,-13.5175,172.153,1.51487,-13.2495,171.949,1.57669,-13.6035,170.157,1.5787,-13.8799,170.281,0.648411,-14.8514,170.333,0.478223,-14.7703,170.144,1.3916,-14.2007,170.403,1.08444,-14.5373,170.482,0.430851,-14.4897,170.074,0.491747,-14.1716,169.989,-4.40526e-005,-14.2761,169.843,0.771535,-14.6928,170.327,0.6143,-14.6504,170.228,1.01656,-14.4959,170.376,1.37118,-13.6942,170.057,1.38921,-13.9051,170.159,0.646586,-14.1205,170.088,0.864721,-13.8192,170.016,1.17478,-13.6437,169.999,1.24955,-14.1959,170.284,0.575459,-14.4241,170.167,0.710426,-14.4056,170.242,0.805438,-14.1098,170.168,0.678406,-14.5834,170.271,0.769041,-14.6086,170.325,0.899183,-14.4456,170.324,1.06369,-14.1624,170.233,1.1908,-13.8859,170.122,1.24333,-13.7318,170.048,1.13501,-13.7116,170.03,0.976727,-13.8451,170.087,5.26872,-10.5644,174.847,4.87783,-11.0011,175.192,5.12223,-10.9668,175.521,5.58666,-10.3591,175.101,4.17313,-11.5175,175.448,4.35757,-11.627,175.791,5.29968,-10.2943,173.584,5.57557,-9.9662,173.299,5.23461,-10.3132,172.948,4.98779,-10.5651,173.322,0.760371,-13.011,175.197,0.687665,-13.1521,174.732,4.18989,-11.1369,172.556,4.33503,-11.0317,172.033,3.68384,-11.4991,172.042,3.56465,-11.5017,172.545,5.46692,-9.97271,172.506,3.34592,-12.2114,175.891,3.21763,-11.9409,175.507,1.01884,-12.9332,175.82,2.97827,-11.7715,172.656,2.83006,-11.6733,173.085,3.39492,-11.4951,172.981,3.0788,-11.8628,172.173,2.57597,-12.1281,172.346,2.51204,-11.9689,172.81,4.01275,-11.2227,172.994,2.09471,-11.9331,173.366,2.06852,-11.7281,173.698,2.33204,-11.6503,173.59,2.39884,-11.8039,173.224,4.76359,-10.7242,172.694,4.95152,-10.5026,172.187,4.55664,-10.8948,173.118,2.22346,-12.6284,175.925,2.27398,-12.2282,175.433,3.10116,-11.7091,175.32,2.27082,-11.808,175.169,4.03836,-11.4236,175.269,4.69771,-10.9775,175.004,5.01459,-10.6486,174.734,5.0429,-10.5103,173.844,4.7686,-10.7407,173.648,4.3779,-11.0329,173.484,3.8647,-11.3121,173.382,3.27136,-11.5027,173.382,2.72515,-11.5941,173.475,1.73984,-11.9507,174.923,1.53733,-12.4399,175.242,5.67718,-9.54213,171.921,5.09906,-10.2158,171.523,4.40242,-10.9042,171.341,3.69352,-11.5033,171.411,2.54359,-12.2725,171.801,3.06667,-11.9454,171.594,1.56023,-12.7927,172.87,1.53374,-13.042,172.413,1.27622,-13.3093,172.6,1.29521,-13.0634,173.041,0.636684,-14.0793,173.043,-4.25409e-005,-14.3524,173.19,0.622482,-13.8519,173.486,5.80542,-9.91848,174.646,5.47377,-10.2529,174.526,5.18973,-10.4371,174.499,1.30169,-12.7675,173.448,1.5628,-12.4999,173.289,1.32162,-12.4631,173.831,1.56991,-12.2146,173.672,1.42033,-12.1366,174.23,1.63415,-11.9436,173.978,2.17973,-12.3522,172.519,2.15626,-12.141,172.961,1.49785,-12.0632,174.626,1.23373,-12.5285,174.843,1.12193,-12.6283,174.434,1.04203,-13.3928,173.233,1.04866,-13.1126,173.649,1.03384,-13.63,172.794,1.06901,-12.838,174.044,0.641807,-13.3563,174.322,0.621832,-13.5997,173.912,1.8198,-12.7942,172.215,1.85578,-12.5655,172.696,2.13718,-12.5469,172.008,1.85146,-12.3079,173.13,1.82897,-12.0606,173.529,1.84486,-11.8226,173.827,5.85846,-9.71955,174.186,5.77857,-9.75148,173.724,5.55066,-10.1058,174.203,5.48924,-10.1298,173.883,5.26141,-10.3463,174.27,5.20995,-10.3754,174.052,3.0446,-11.5183,173.992,3.15261,-11.5303,173.725,2.59057,-11.5373,173.823,2.48111,-11.4563,174.108,2.23219,-11.4964,173.923,2.13933,-11.3065,174.214,2.01728,-11.5039,173.996,1.95084,-11.2697,174.256,1.84581,-11.5488,174.074,1.83587,-11.2854,174.278,1.74595,-11.3085,174.326,1.70191,-11.6123,174.185,1.61398,-11.6653,174.356,1.69495,-11.3178,174.415,1.65743,-11.6412,174.572,1.72271,-11.3015,174.524,1.83118,-11.5637,174.782,1.8837,-11.2974,174.652,2.23504,-11.5051,175.016,2.28818,-11.4037,174.831,3.0169,-11.5902,175.005,3.02856,-11.5785,175.197,3.94047,-11.3927,175.146,4.56075,-10.9478,174.884,4.45954,-10.9818,174.771,3.86456,-11.449,174.974,4.82633,-10.6656,174.673,4.68926,-10.686,174.625,4.95694,-10.5207,174.505,4.77595,-10.565,174.522,5.00471,-10.4734,174.351,4.79801,-10.5432,174.431,4.95915,-10.5167,174.213,4.75872,-10.6006,174.355,4.65785,-10.7285,174.277,4.82717,-10.6479,174.081,4.60344,-10.8651,173.938,4.48282,-10.9291,174.175,4.2534,-11.1416,173.8,4.17688,-11.1909,174.056,3.75275,-11.3941,173.713,3.67194,-11.4244,173.972,4.38606,-10.9286,174.301,4.5223,-10.752,174.386,4.58081,-10.7174,174.618,4.37754,-11.0023,174.717,3.81265,-11.4336,174.867,2.34119,-11.3449,174.712,1.98725,-11.2072,174.552,1.86371,-11.1968,174.465,1.83635,-11.2134,174.417,1.8575,-11.2154,174.379,2.00565,-11.1703,174.362,2.17545,-11.1797,174.332,2.45694,-11.3693,174.238,1.87105,-11.1703,174.411,1.88317,-11.1755,174.394,1.90401,-11.1484,174.436,3.00709,-11.552,174.873,2.95426,-11.4372,174.132,3.61292,-11.3735,174.108,4.60382,-10.6354,174.446,2.36462,-11.1813,174.66,2.026,-11.1444,174.501,3.01452,-11.3879,174.86,3.79118,-11.2688,174.875,4.32227,-10.9151,174.738,4.50693,-10.6833,174.646,4.4135,-10.7052,174.403,4.50032,-10.6099,174.479,4.28812,-10.8473,174.302,2.96232,-11.2679,174.126,3.59554,-11.2306,174.102,2.50867,-11.1694,174.241,2.24808,-11.0807,174.427,2.03298,-11.1383,174.427,4.12678,-11.1636,174.195,4.06341,-11.0436,174.188,4.64027,-10.5979,174.555,4.55635,-10.584,174.59,1.91208,-11.1974,174.364,1.9237,-11.1591,174.4,4.64383,-10.5788,174.496,4.5505,-10.5649,174.535,2.41385,-10.8581,174.398,2.61432,-10.8983,174.169,2.54915,-10.9031,174.69,3.0398,-10.9504,174.877,3.72111,-10.8083,174.918,4.21743,-10.6376,174.795,4.42825,-10.532,174.675,4.50551,-10.4857,174.603,4.51297,-10.4757,174.545,4.44278,-10.4917,174.474,4.31231,-10.537,174.368,4.16678,-10.6233,174.242,3.96233,-10.7523,174.111,3.59743,-10.8963,174.015,3.06685,-10.9455,174.033,2.71018,-10.4787,174.561,2.67917,-10.504,174.239,3.04463,-10.3811,174.63,3.54788,-10.3028,174.663,3.99307,-10.2992,174.631,4.25999,-10.3251,174.56,4.40122,-10.347,174.527,4.46793,-10.3764,174.523,4.41319,-10.3722,174.465,4.28333,-10.3468,174.384,4.11037,-10.3442,174.3,3.86866,-10.3437,174.214,3.5282,-10.3551,174.141,3.09433,-10.3858,174.137,6.34467,3.89369,179.956,7.01259,2.81235,178.795,7.12031,1.44407,180.422,6.46852,2.24822,181.791,5.30404,5.00059,181.065,5.46401,2.97853,183.052,7.14242,-0.234668,181.54,6.4883,0.220606,182.993,5.50078,0.503257,184.278,3.88446,5.94687,182.054,4.075,3.62659,184.201,4.1457,0.741852,185.375,4.34656,6.08545,173.357,5.36881,5.05894,173.025,5.77141,5.21476,175.326,4.75693,6.28832,175.884,6.10863,3.91922,172.744,6.49538,4.02448,174.773,3.37646,7.20859,176.295,2.9982,6.93308,173.549,7.10222,-2.02083,182.058,6.4535,-1.87149,183.462,5.44775,-1.94508,184.697,4.0944,-2.08856,185.695,2.28755,-2.22136,186.49,2.27578,0.960258,186.248,2.18382,4.10453,185.108,2.06659,6.54494,182.882,1.72877,7.80738,176.555,1.53225,7.43919,173.695,7.28703,-3.99204,180.748,7.49072,-2.38021,180.541,7.6689,-2.81641,179.029,7.42645,-4.33375,179.336,7.54184,-0.817571,180.01,7.74732,-1.414,178.518,7.49625,0.634601,179.032,7.69361,-0.110125,177.71,7.38029,1.82659,177.653,7.5617,0.958177,176.582,7.15237,1.90705,173.73,6.91704,2.90651,174.236,6.56604,2.81882,172.483,6.85665,1.80158,172.222,7.30853,1.02185,173.281,7.65683,0.210921,175.631,7.78088,-0.768414,176.491,7.79375,-2.00136,177.037,7.70495,-3.30177,177.49,7.45768,-4.76517,177.861,6.38742,1.21475,169.357,6.06104,2.2838,169.349,5.57035,3.37228,169.318,4.84089,4.48761,169.288,3.80358,5.50643,169.284,2.56161,6.21271,169.316,6.92286,-3.80079,182.11,6.273,-3.89748,183.354,5.21848,-4.25298,184.458,3.87249,-4.76245,185.324,2.16481,-5.27291,185.997,1.27621,6.56042,169.32,-3.21804e-005,-2.32306,186.832,1.9224,7.71359,179.749,3.62696,7.10049,179.223,5.03945,6.11468,178.544,6.10731,4.89435,177.719,6.80531,3.68265,176.849,7.19237,2.59621,176.004,7.38798,1.64232,175.217,7.50054,0.812175,174.522,6.58207,1.4923,170.761,6.24989,2.52759,170.847,5.76251,3.60169,170.907,5.02032,4.70965,170.981,3.98207,5.72993,171.102,2.72429,6.50225,171.216,1.3786,6.93882,171.274,-2.39048e-005,4.2654,185.417,7.64969,-3.77151,175.857,7.44863,-5.15404,176.247,7.42761,-5.18482,174.672,6.57868,-5.36315,181.966,5.95237,-5.6644,182.941,4.90692,-6.28327,183.831,3.61617,-7.04724,184.527,1.90781,-7.96406,185.002,0.788249,-12.2471,165.04,2.51005,-11.4698,166.097,2.67513,-11.4049,166.324,2.28174,-11.6163,165.828,1.9361,-11.8381,165.532,1.44294,-12.0693,165.269,0.653958,-12.2036,165.936,0.690699,-12.3399,165.799,1.28867,-12.1412,165.916,1.22424,-11.9835,166.033,1.75704,-11.9084,166.034,1.68921,-11.7742,166.1,2.11083,-11.6726,166.146,2.05445,-11.579,166.154,2.2643,-11.4718,166.256,2.30622,-11.5306,166.251,2.40771,-11.4041,166.375,2.44997,-11.457,166.375,2.20945,-11.3501,166.245,2.36122,-11.2914,166.365,1.986,-11.418,166.13,1.62742,-11.5366,166.046,1.17502,-11.7229,165.991,0.622328,-11.9597,165.956,-3.96547e-005,-12.0475,165.919,2.54503,-11.4645,166.354,2.39266,-11.5372,166.198,2.19154,-11.6882,166.04,1.84953,-11.9315,165.803,1.37509,-12.1808,165.605,0.744659,-12.385,165.461,2.1843,-10.8649,166.108,2.32074,-10.8493,166.304,1.97346,-10.9121,165.904,1.64183,-11.0361,165.731,1.1797,-11.2363,165.646,0.617055,-11.5067,165.679,2.67149,-11.7803,167.016,2.42154,-12.1161,167.283,2.78085,-11.43,166.549,2.78721,-11.5517,166.778,2.03185,-12.5266,167.569,1.46745,-12.996,167.81,0.792121,-13.3841,167.964,2.34776,-12.0806,167.057,2.27427,-12.0089,166.942,1.91874,-12.3612,167.126,1.98452,-12.4684,167.279,1.41541,-12.9125,167.463,1.33911,-12.7306,167.3,0.698852,-13.0653,167.436,0.753492,-13.2853,167.601,1.87962,-12.2815,167.098,2.22673,-11.9307,166.918,0.677089,-12.9056,167.425,1.30087,-12.5893,167.292,0.670731,-12.7338,167.485,1.26959,-12.4185,167.353,2.19614,-11.8507,166.932,1.82229,-12.1479,167.137,2.57275,-11.7794,166.855,2.67239,-11.5782,166.682,2.49535,-11.7382,166.776,2.58842,-11.5556,166.636,2.45017,-11.6743,166.76,2.54436,-11.5004,166.625,2.42525,-11.6037,166.764,2.51484,-11.43,166.622,2.6532,-11.4753,166.516,2.55888,-11.4632,166.504,2.5136,-11.4127,166.499,2.47683,-11.3276,166.492,0.687323,-12.314,167.82,1.26099,-12.001,167.694,1.75375,-11.7068,167.442,2.15923,-11.532,167.105,2.40137,-11.3087,166.845,2.47297,-11.1042,166.647,2.42143,-10.9219,166.483,0.952049,-9.33558,184.487,4.7587,4.48701,164.638,5.57504,3.35342,164.638,6.00015,2.22723,164.627,6.18574,1.10744,164.56,1.28812,5.92066,164.502,3.62827,5.37468,164.623,2.48269,5.80497,164.587,6.21527,-0.00817455,164.335,6.18399,-1.04567,163.86,5.92638,-1.98218,163.116,5.48289,-2.79295,162.195,4.95213,-3.46139,161.424,3.10926,-5.05651,160.56,2.43656,-5.50416,160.578,3.75419,-4.56321,160.664,4.37819,-4.04073,160.906,5.66496,3.57304,163.252,4.86142,4.69385,163.306,5.33046,5.06879,161.934,6.09763,3.88671,161.818,6.06807,2.4268,163.171,6.44792,2.66605,161.71,6.4843,1.36142,161.521,6.23212,1.23716,162.985,1.572,6.66005,161.744,1.44715,6.08482,163.107,-0.000917039,6.75208,161.607,3.79042,5.50225,163.308,4.22047,5.93705,161.984,2.69847,5.91086,163.249,2.9973,6.40901,161.925,6.16166,-0.994078,162.197,6.22829,0.0795265,162.666,6.31453,0.152147,161.226,6.12372,-0.961976,160.837,5.89289,-1.96931,161.564,5.81044,-1.96797,160.297,5.43567,-2.76934,160.873,5.352,-2.80859,159.749,4.84112,-3.38923,160.293,4.71711,-3.45832,159.29,2.33687,-5.00791,159.682,2.97999,-4.62524,159.595,2.75963,-4.45461,158.561,2.04332,-4.71538,158.525,3.57229,-4.24623,159.653,3.36362,-4.22871,158.731,4.19199,-3.85151,159.897,4.01619,-3.93078,158.994,6.9312,4.26791,160.283,6.12888,5.57018,160.536,7.09051,6.21175,159.108,7.97837,4.7119,158.729,7.15035,3.02067,159.993,8.2839,3.43052,158.303,7.8885,2.25203,157.899,6.96331,1.69599,159.807,1.97915,8.56428,158.989,1.73188,7.49511,160.391,4.87863,6.61686,160.625,5.67815,7.50536,159.224,3.39301,7.22382,160.559,3.92169,8.2682,159.152,6.59748,0.277656,159.707,7.05313,0.764822,157.786,6.32216,-0.738828,157.738,6.13005,-0.907596,159.438,5.73124,-1.94631,159.01,5.79078,-1.88,157.45,5.25827,-2.82099,158.527,5.26489,-2.78452,157.061,4.63837,-3.54646,158.122,4.6444,-3.57743,156.716,1.66315,-4.67392,157.289,2.39504,-4.52834,157.465,2.24906,-4.64882,156.119,1.46353,-4.75771,155.995,3.11791,-4.3575,157.654,3.08145,-4.49238,156.276,3.89312,-4.05684,157.853,3.89031,-4.14912,156.46,0.819335,-4.73101,157.244,-0.00635901,-4.64879,157.23,-0.0168478,-4.98946,158.569,1.06468,-5.06877,158.769,0.713494,-4.57342,155.897,8.22909,6.96696,157.802,9.23668,5.20536,157.477,9.56747,3.76762,157.014,9.13945,2.49367,156.501,6.62204,8.58775,157.731,4.51751,9.57955,157.564,7.85993,1.05739,156.167,6.75162,-0.531233,156.108,2.25358,9.9035,157.385,6.02557,-1.71771,155.918,5.42211,-2.66771,155.695,4.73223,-3.51339,155.448,2.30554,-4.74691,154.925,1.47499,-4.85906,154.823,3.15981,-4.56073,155.076,3.97047,-4.1686,155.248,0.727874,-4.59245,154.69,1.75534,-6.88402,161.335,1.69174,-5.94164,160.726,1.61717,-5.38683,159.947,7.78704,-1.99865,171.356,7.74137,-1.68938,172.011,8.01481,-1.48414,172.86,8.27483,-1.44971,173.717,8.4608,-1.50901,174.354,8.68618,-1.49223,174.706,0.872564,-7.2377,161.401,0.0112814,-7.43752,161.465,0.862127,-6.29287,160.896,0.833194,-5.6892,160.252,0.671065,-5.43321,159.624,2.45076,-10.4103,166.518,2.55068,-10.6025,166.75,0.692216,-11.7045,168.277,1.33897,-11.4923,168.163,2.36392,-11.1359,167.437,1.84838,-11.2484,167.826,2.58844,-10.8967,167.025,1.74102,-10.418,165.41,2.10686,-10.3304,165.678,0.607079,-10.8812,165.275,1.21452,-10.6085,165.254,2.29078,-10.3183,165.986,2.36803,-10.3246,166.268,2.50916,-9.79305,166.587,2.61654,-9.94446,166.867,0.729256,-10.8203,168.717,1.39966,-10.6152,168.478,2.56786,-10.3242,167.869,1.98264,-10.4694,168.197,2.77426,-10.1126,167.209,1.76935,-9.57277,165.362,2.18152,-9.57059,165.657,0.580519,-9.82643,165.088,1.20589,-9.64478,165.134,2.40335,-9.61564,165.981,2.45674,-9.68762,166.296,2.53948,-9.18818,166.665,2.60927,-9.30132,166.941,2.04749,-9.47487,168.203,1.42512,-9.53682,168.511,2.5566,-9.41042,167.781,2.67883,-9.36009,167.264,1.84824,-8.69043,165.424,2.28912,-8.80978,165.76,0.570992,-8.72371,165.254,1.20868,-8.6745,165.276,2.45907,-8.96712,166.115,2.50508,-9.09418,166.391,2.543,-8.72729,166.499,2.56924,-8.74088,166.733,1.98165,-8.47126,167.849,1.35142,-8.43817,168.09,2.47984,-8.59816,167.494,2.64885,-8.74935,167.138,1.881,-7.86871,165.953,2.39425,-8.19871,166.117,0.578068,-7.78017,165.935,1.20487,-7.78308,165.919,2.53457,-8.52276,166.37,2.00451,-7.70868,167.194,1.26131,-7.63266,167.287,2.50213,-8.13259,166.941,2.58246,-8.46115,166.806,2.61808,-8.86741,166.945,0.678606,-8.42585,168.276,0.619855,-7.64078,167.34,0.731207,-9.61904,168.787,-3.94179e-005,-9.65118,168.829,7.83898,12.2045,14.1166,6.73346,10.8904,14.0041,9.15045,12.8567,12.5655,10.5636,12.1727,12.6839,7.6944,12.4096,12.4367,6.54313,11.0118,12.1873,12.2064,9.59731,14.205,12.2579,9.6889,12.4026,11.5306,10.8468,14.2639,11.6199,10.7922,12.6483,12.4095,10.1258,10.451,11.4714,4.88495,12.445,10.9941,3.86355,11.9681,10.0881,3.29147,12.3255,10.2556,3.66838,13.1748,8.5873,3.00245,12.4392,8.61886,3.35609,13.3289,7.1095,4.03619,11.9758,7.52708,7.58975,0.877154,8.04959,5.30004,1.04767,8.66854,1.80265,0.80977,11.8682,-2.97793,0.502947,12.5933,-1.76688,50.7275,7.83956,-1.62869,50.883,13.0684,-3.32612,0.483196,13.7021,-2.88944,0.533495,10.5547,-4.62298,0.410062,11.3597,-4.27759,0.41509,-21.2325,3.38612,141.422,-20.7461,5.69401,140.484,-22.3382,5.35323,140.237,-22.7575,3.10154,141.41,-47.8147,7.55878,138.329,-47.654,9.70632,139.533,-51.3166,9.62451,139.206,-51.274,7.40004,138.089,-45.0139,8.00791,138.793,-44.792,9.96313,140.106,-41.0585,4.55679,147.127,-38.2937,4.44372,147.271,-38.4915,2.68756,146.349,-41.2593,3.03185,146.18,-35.225,2.50316,146.574,-35.1786,4.34993,147.638,-32.2227,4.25684,147.901,-32.1369,2.37917,146.737,-40.4491,6.39575,147.481,-37.5531,6.44098,147.751,-34.5791,6.51092,148.189,-31.8794,6.49224,148.521,-34.803,1.15756,144.905,-31.69,1.07248,144.953,-42.773,3.20144,146.108,-42.7688,2.25979,144.744,-44.0516,2.49974,144.85,-43.8876,3.05695,146.09,-34.0641,1.02843,142.449,-37.6532,1.16121,142.486,-38.2298,1.44988,144.784,-33.2999,2.49509,140.227,-36.9951,2.50441,140.198,-32.8339,4.86018,139.154,-36.424,4.87521,139.12,-51.4167,4.8732,138.23,-48.3037,4.91361,138.463,-32.4657,7.11251,137.835,-31.9156,9.95871,137.968,-35.1865,9.74392,138.428,-35.9178,7.12556,138.157,-54.6466,10.3841,141.393,-57.5622,9.92931,141.593,-57.4013,9.19604,139.65,-54.4539,9.37568,139.365,-57.3296,7.42521,138.363,-54.3966,7.3692,138.101,-60.8616,8.96599,140.087,-60.704,7.49752,138.732,-61.0077,9.2451,141.938,-57.4032,5.22609,138.27,-54.5212,4.95156,138.088,-60.6186,5.52252,138.48,-60.5959,3.71977,139.384,-57.5349,3.31009,139.494,-60.6299,2.57527,140.963,-57.6426,2.29737,141.496,-54.7558,2.98896,139.688,-54.9846,2.11978,141.97,-63.8587,4.018,139.101,-64.022,5.73462,138.636,-63.8162,2.71373,140.275,-64.2575,7.44061,139.107,-64.5179,8.59328,140.483,-68.2906,8.09424,140.731,-67.9367,7.24246,139.352,-67.6072,5.79395,138.714,-57.7053,9.41674,143.419,-61.0902,8.55563,143.344,-64.7216,7.63843,143.144,-64.6731,8.45411,142.132,-54.844,9.99909,143.462,-61.1206,7.44799,144.338,-64.6724,6.55847,143.836,-68.4185,5.66967,143.23,-68.5116,6.72492,142.754,-68.4748,7.60898,142.088,-48.9938,2.32104,142.993,-48.7586,3.09866,140.433,-51.7443,2.95109,140.105,-52.0725,2.10057,142.533,-46.9369,2.54557,145.232,-46.7679,2.5421,142.956,-49.2679,2.38342,145.255,-52.3166,2.15903,144.869,-55.1525,2.19928,144.198,-52.4087,3.66826,146.57,-49.1998,4.03537,147.124,-55.2189,3.53405,145.801,-54.9749,8.82089,145.006,-57.8143,8.29598,144.725,-55.0855,7.25955,145.996,-57.8276,6.79203,145.371,-61.0404,6.16676,144.712,-51.9599,9.42212,145.443,-52.1402,7.71301,146.604,-48.6066,8.06714,146.918,-45.7896,8.08963,146.897,-46.1954,6.23746,147.434,-48.9536,6.10625,147.406,-52.3202,5.74592,147.011,-46.6823,3.95229,147.139,-55.1791,5.45862,146.34,-57.8326,5.16504,145.606,-57.8049,3.46346,145.037,-60.8154,3.29768,144.147,-60.9353,4.74036,144.776,-37.124,10.9824,144.886,-40.4966,10.7056,144.645,-40.3618,11.0589,142.741,-37.0188,11.4811,142.822,-33.8972,11.4339,145.054,-33.7025,11.7256,142.846,-37.9968,9.89384,146.389,-41.0637,9.59974,146.02,-44.7984,10.9258,142.107,-43.0349,10.1154,140.537,-42.8477,11.0172,142.448,-45.0237,10.8759,144.186,-42.9936,10.7659,144.428,-43.3444,9.55095,145.816,-45.396,9.73059,145.804,-34.8794,10.3218,146.767,-48.2707,9.84189,145.76,-40.9584,1.55489,142.723,-40.4316,2.6445,140.529,-42.2145,2.60569,140.97,-42.6409,1.92243,142.866,-39.8151,4.82666,139.405,-42.0295,4.24502,139.649,-43.5303,2.5846,141.424,-44.218,3.3776,140.314,-45.1318,2.51634,142.865,-43.9562,2.24754,143.026,-64.3328,4.19291,143.916,-67.9942,3.4053,143.152,-68.2385,4.53951,143.413,-64.5395,5.43529,144.101,-57.7423,2.31874,143.533,-60.7108,2.41654,142.739,-67.3811,4.2075,138.758,-37.582,10.7965,140.706,-38.5204,9.29031,138.944,-34.2903,11.3678,140.437,-31.2059,11.8571,140.186,-41.2086,1.91763,144.733,-32.0956,10.8476,147.2,-33.4497,8.76863,148.147,-36.2891,8.5135,147.641,-67.2912,2.76472,139.528,-67.4066,2.08669,140.978,-63.9186,2.35047,141.892,-67.7029,2.45351,142.36,-64.1152,3.0234,143.229,-42.8506,4.43317,147.118,-42.602,6.35042,147.419,-41.8994,8.12495,147.003,-39.3552,8.28828,147.256,-44.2892,6.27556,147.441,-43.805,8.05672,146.899,-41.4942,8.74287,139.315,-40.7575,10.2837,140.847,-43.406,8.35986,139.128,-39.2993,6.91114,138.68,-41.9864,6.41473,138.745,-30.7302,12.3717,142.817,-28.3113,12.7781,142.97,-28.6209,12.531,145.523,-31.0271,12.1289,145.248,-29.6864,11.136,147.504,-24.3457,1.35101,144.987,-24.8308,2.29027,146.985,-22.8809,1.6817,147.21,-22.7767,1.07315,144.597,-21.755,1.70725,142.554,-23.3185,1.59323,142.807,-26.1677,1.37004,144.889,-26.7589,2.40399,146.733,-29.3026,6.45228,148.66,-29.4481,4.17718,147.937,-30.9739,0.97188,142.508,-28.7129,1.16312,144.848,-28.0219,1.07623,142.647,-24.9108,2.78671,141.299,-25.4461,1.38677,142.907,-19.1746,12.8717,143.799,-19.4118,12.6093,145.841,-21.5991,12.3697,145.846,-20.9236,12.8708,143.747,-19.7519,8.36055,139.966,-21.4072,7.97631,139.422,-19.5746,10.7417,140.591,-19.4073,12.3396,142.046,-21.11,12.2133,141.643,-21.3889,10.4292,140.03,-28.6668,12.1514,140.231,-29.1066,10.0294,137.993,-26.479,10.1444,138.457,-26.1118,12.2548,140.492,-29.4785,7.10522,137.893,-26.7485,7.27943,138.225,-29.8036,4.84227,139.393,-27.0753,4.73685,139.568,-27.335,2.47212,140.797,-30.1879,2.51343,140.47,-25.0786,4.12024,148.618,-27.0497,4.19538,148.156,-30.9785,8.92267,148.506,-28.5485,8.98057,148.642,-27.2435,11.2339,147.646,-26.1081,12.6218,145.767,-25.7799,13.0002,143.23,-47.9885,10.9903,143.889,-47.7119,10.9272,141.617,-51.5192,10.7751,141.377,-51.7841,10.5412,143.619,-44.7058,3.87025,146.973,-45.7016,5.24967,138.668,-23.3035,3.95283,149.303,-24.8969,6.43773,149.436,-23.1142,6.38862,150.138,-24.1556,8.88589,149.237,-22.3828,8.91709,149.839,-22.9419,11.007,147.946,-21.1868,11.1148,148.316,-24.9196,11.059,147.77,-23.6091,12.4537,145.835,-29.2179,2.31398,146.673,-26.8964,6.46376,148.921,-23.3181,12.1409,141.186,-23.9852,10.2186,139.5,-24.2985,7.63454,139.04,-24.7127,5.02675,140.072,-26.1579,8.90797,148.815,-23.0137,12.9475,143.531,-45.2808,2.58329,145.107,-46.3051,3.17048,140.505,-43.838,5.74914,138.715,-70.6268,1.89751,141.67,-70.2397,1.92443,140.248,-71.9492,1.94793,139.774,-72.4422,1.54338,141.114,-70.1393,2.89901,139.121,-71.8722,3.0299,138.963,-73.0132,2.2611,142.29,-71.0065,2.76344,142.632,-70.803,6.99058,139.514,-70.4742,5.78646,138.839,-71.1942,7.71289,140.699,-72.9881,5.83033,138.828,-72.2785,5.79242,138.87,-72.6053,6.85477,139.539,-73.3784,6.84327,139.484,-72.0128,4.42146,138.65,-70.2454,4.34122,138.642,-71.4725,7.28963,141.946,-71.5496,6.33786,142.491,-73.7127,6.22376,142.463,-73.5175,7.27033,141.836,-74.6922,6.19838,142.41,-73.6409,4.9191,142.754,-74.6762,4.79794,142.701,-71.4686,5.1891,142.854,-71.2717,3.94281,142.964,-73.3895,3.52126,142.762,-73.8437,2.02963,142.097,-74.3783,3.30108,142.655,-72.3692,3.06681,138.876,-72.6288,4.46799,138.605,-73.0612,7.47523,140.6,-72.4403,1.9497,139.59,-73.0448,1.44315,140.882,-74.3417,7.26279,141.731,-73.8437,7.41423,140.513,-17.2995,-1.90278,147.848,-16.3888,-1.83211,149.517,-15.1791,-3.31677,148.219,-16.048,-3.35025,146.255,-15.5889,-1.43,151.274,-14.2751,-2.88417,150.325,-18.1394,-0.349781,149.382,-17.181,-0.200099,150.709,-16.3447,0.236364,152.047,-18.6591,1.45175,150.709,-17.6181,1.64356,151.771,-18.8366,3.59959,151.666,-17.7455,3.78558,152.504,-18.5997,6.09009,152.118,-17.4559,6.14149,152.771,-16.6876,4.1066,153.153,-16.4342,6.3001,153.306,-18.0139,8.57391,151.893,-17.0008,8.33108,152.583,-17.2617,10.699,151.045,-16.3402,10.2576,152.048,-16.087,8.0663,153.175,-15.5621,9.71042,152.907,-16.2244,12.1772,150.117,-15.415,11.6822,151.471,-14.7247,10.985,152.616,-15.5587,1.09361,153.043,-14.9825,2.08362,153.859,-14.2107,0.933431,153.941,-14.797,-0.350806,152.714,-14.5622,3.5208,154.473,-13.7889,2.62065,154.858,-15.871,2.55588,153.292,-15.3955,2.8932,153.749,-15.1612,4.11746,153.987,-16.694,2.05484,152.703,-15.8408,4.25118,153.54,-15.5279,6.21952,153.628,-14.7528,5.90511,154.106,-15.2513,7.69636,153.602,-14.4904,7.30484,154.128,-14.1186,8.6288,154.065,-14.8133,9.10257,153.529,-13.7628,9.54296,153.853,-14.1361,10.1643,153.413,-13.0731,9.73919,154.186,-13.1813,10.7781,153.408,-13.5356,11.8661,152.444,-11.9112,12.4968,152.181,-11.7569,11.2593,153.421,-13.349,8.41324,154.676,-14.6846,13.1678,149.453,-14.0585,12.7016,151.061,-12.6669,13.7996,148.868,-12.2404,13.3789,150.545,-14.1859,5.37788,154.818,-13.4602,4.7066,155.355,-13.7784,6.92129,154.858,-9.8944,12.9503,151.667,-9.797,11.7558,153.297,-12.9494,-0.379348,153.687,-13.464,-1.67076,152.123,-12.2939,1.56151,154.878,-12.4809,4.11961,155.682,-11.9914,6.10785,156.023,-12.9546,6.51534,155.525,-18.6474,1.33721,140.65,-20.3406,1.83997,141.925,-19.8673,0.314687,142.568,-17.7745,-0.519633,140.823,-19.8131,3.47364,140.914,-20.9745,3.65857,141.109,-13.1239,13.9072,147.219,-10.7822,14.3203,146.527,-10.4241,14.1143,148.032,-11.6929,14.2912,143.582,-11.1975,14.3665,145.028,-13.6547,13.8714,145.58,-14.2791,13.702,144.047,-17.3392,11.4564,141.182,-25.2894,11.6094,137.264,-17.8539,9.72023,140.015,-15.3304,11.8411,140.146,-19.001,7.57719,140.212,-19.7143,5.49353,140.608,-22.9933,6.15049,138.489,-19.5595,-0.723932,143.539,-17.5073,-1.8655,141.529,-21.2965,0.205132,145.379,-20.4989,-0.0933878,146.916,-19.1645,-1.38026,144.857,-16.869,-3.18337,144.374,-17.3815,-2.71973,142.751,-18.3424,-1.76041,146.317,-14.8043,13.2397,142.776,-15.632,12.4812,141.811,-13.4386,13.1439,140.999,-12.332,13.9345,142.22,-10.1181,13.7904,149.671,-12.3374,8.23619,155.331,-11.8715,9.90414,154.607,-17.1372,12.4938,148.704,-18.3774,11.0453,149.991,-19.2579,8.80237,151.202,-15.3627,13.3652,147.812,-20.9526,1.82287,142.294,-20.6598,3.61872,141.361,-21.2741,0.702681,143.634,-18.3232,11.0969,140.989,-19.1464,8.78662,140.775,-20.2808,6.06202,141.104,-20.1183,3.66403,150.892,-21.6262,3.79429,150.144,-21.4232,6.30491,150.883,-19.8631,6.18655,151.532,-17.7528,12.3363,142.134,-17.1882,12.8768,143.333,-16.0895,13.3703,146.205,-18.1839,12.6094,147.356,-20.7551,8.91612,150.516,-19.6888,11.167,149.066,-21.291,1.60067,148.731,-19.885,1.47367,149.737,-16.7995,13.204,144.681,-19.3024,-0.307063,148.174,-8.58298,5.41149,117.459,-8.52851,6.28487,119.557,-10.8747,4.83104,119.662,-10.8576,4.01758,117.672,-1.71159,-11.8891,136.523,0.0039444,-11.8724,136.651,-1.86082,-12.1962,134.73,-7.8676,14.1503,149.436,-7.70542,13.4147,151.513,-8.08608,14.4911,147.618,-5.58811,15.0602,147.412,-5.43437,14.6285,149.476,-8.354,14.7214,146.005,-5.77268,15.3395,145.605,-9.8513,14.5063,141.264,-9.1739,14.7753,142.89,-12.5354,12.7879,138.228,-10.899,13.8588,139.639,-13.6566,-6.67581,139.937,-14.0871,-6.37098,137.616,-15.4712,-4.42351,140.225,-15.1754,-4.81974,142.221,-7.83784,-8.80865,145.457,-7.36652,-7.46995,148.726,-5.92525,-7.98722,148.533,-6.25353,-9.27585,145.468,-4.45404,-8.32134,148.385,-4.6463,-9.50513,145.559,-1.38625,-9.54406,145.794,-3.01555,-9.57755,145.65,-2.90673,-8.41862,148.359,-1.35785,-8.30474,148.451,-1.35339,-10.4311,143.168,-1.36918,-11.0675,140.741,-2.85719,-11.1278,140.618,-2.90472,-10.453,142.998,-11.4177,-1.63667,153.355,-10.5776,-0.355908,154.269,-9.15212,-1.592,153.844,-9.9775,-2.70914,153.039,-12.0005,-2.70801,151.667,-10.607,-3.79888,151.407,-5.13291,-5.32943,152.219,-5.52283,-6.51459,150.681,-6.84647,-5.88943,150.886,-6.33461,-4.70536,152.377,-4.71561,-4.55509,153.071,-5.75069,-3.92987,153.162,-11.443,-5.12978,149.354,-12.2717,-5.8829,146.526,-13.7836,-4.58202,147.326,-12.8813,-3.97377,149.782,-3.94634,-5.8358,152.096,-4.16979,-7.0124,150.57,-3.7118,-5.01205,153.005,-2.73184,-6.08701,151.905,-2.75796,-7.21224,150.541,-2.64169,-5.24752,152.865,-1.64142,-5.18314,152.684,-1.3608,-5.96279,151.585,-1.37789,-7.00584,150.461,-3.88432,-11.9851,133.816,-1.99519,-12.4873,133.16,-4.07635,-12.2358,132.242,-7.68799,-14.0982,108.748,-6.51943,-14.4136,112.041,-3.92557,-15.2319,111.623,-4.92384,-15.5513,107.973,-9.93862,-12.5921,109.942,-8.71307,-13.1249,112.732,-8.20879,-14.7113,105.931,-10.4756,-12.9208,107.632,-5.44934,-16.0268,104.756,-8.67472,-11.249,132.248,-6.19947,-11.8073,133.721,-6.21474,-11.7325,132.326,-8.78065,-10.9369,131.129,-11.1919,-9.33959,130.473,-11.2914,-9.78701,131.667,-14.8301,-1.54662,127.196,-14.3206,-4.58056,126.955,-13.9271,-4.74415,124.97,-14.3153,-1.77066,125.033,-13.6446,-5.11107,123.072,-14.0344,-2.14507,122.915,-14.148,1.22123,125.126,-14.7431,1.55442,127.457,-13.7841,0.800331,122.759,-7.61962,12.028,153.644,-5.29969,13.8405,151.708,-5.17148,12.5512,153.914,-2.686,13.7083,151.84,-2.59389,12.5399,154.007,-2.8428,15.0539,147.19,-2.76379,14.5463,149.42,-2.93274,15.349,145.249,-14.7016,10.5849,137.503,-18.0543,5.3185,138.193,-16.6695,7.84987,137.533,-15.054,8.27314,135.105,-13.0183,11.3027,135.29,-17.698,2.83847,138.261,-16.3181,2.30215,135.266,-16.2261,5.26618,135.407,-16.6042,0.297417,137.721,-15.837,-0.69559,134.583,-4.85102,-11.7937,136.422,-4.52288,-11.5385,138.017,-3.07685,-11.5514,138.437,-3.90203,-11.8616,135.946,-15.9503,-2.01947,137.947,-14.9648,-4.08874,134.102,-14.7024,-4.28273,131.059,-14.5738,-4.45747,128.961,-15.3168,-1.41588,129.43,-15.6191,-1.21103,131.839,-15.515,-3.54156,138.882,-14.5474,-5.68217,135.966,-13.8797,-3.37416,118.949,-13.8344,-2.69032,120.891,-13.3328,-5.61936,121.281,-13.2653,-6.2773,119.358,-14.0298,-3.97095,117.235,-13.3675,-6.76349,117.547,-12.0385,-8.9917,117.528,-11.9083,-8.6415,119.678,-12.171,-8.21253,121.73,-13.8755,-8.05862,110.835,-13.8745,-7.75726,112.457,-13.0993,-9.40282,111.708,-13.2892,-9.46962,110.024,-11.9009,-10.5626,112.397,-12.4309,-10.4988,110.593,-12.8146,-9.33068,113.456,-14.4681,-5.99229,111.374,-14.4603,-5.43348,112.831,-10.3254,-10.3892,119.876,-10.6434,-10.6835,117.224,-12.438,-9.19303,115.448,-13.592,-7.11433,115.796,-11.2312,-10.7528,114.716,-13.8014,-1.06582,116.641,-13.5943,-0.384515,118.392,-14.2324,-4.456,115.724,-14.0626,-1.62998,115.327,-12.6665,1.36299,116.317,-12.4768,2.01432,118.071,-12.9742,0.834685,114.913,-12.4457,2.70239,120.105,-13.5018,0.236841,120.486,-8.79554,4.93723,115.582,-11.0452,3.44749,115.924,-2.85761,5.91383,117.792,-5.83192,6.12428,117.554,-5.98534,5.63056,115.496,-2.95185,5.45926,115.517,-6.20793,5.33191,113.841,-3.05047,5.23705,113.926,-9.10582,4.60335,114.014,-11.3443,2.97922,114.446,-15.904,1.99828,132.586,-14.2853,4.6135,127.657,-14.9146,5.05715,130.338,-15.4218,1.79869,129.956,-12.838,7.50202,127.728,-13.6348,8.18307,130.436,-4.23143,14.0674,135.468,-3.91248,14.7266,137.679,-7.7492,14.2699,138.452,-9.23757,13.345,136.12,-6.89104,14.8474,140.45,-6.36807,15.2702,142.277,-6.02305,15.4329,143.942,-8.70484,14.8218,144.449,-3.24305,15.4443,141.864,-3.05911,15.4787,143.547,-2.15082,-12.8153,131.377,-4.29486,-12.4652,130.583,-6.35252,-11.6939,130.968,-6.55023,-11.8355,129.548,-8.96206,-11.1319,126.851,-6.70213,-12.1511,127.815,-6.66846,-12.4886,125.487,-8.79601,-11.4157,124.846,-6.61438,-12.7945,122.676,-8.56949,-11.644,122.482,-4.46418,-12.8138,128.574,-2.25093,-13.2236,129.095,-2.24647,-13.4706,126.278,-4.46181,-13.0736,125.981,-2.24446,-13.8343,123.192,-4.49817,-13.554,122.922,-11.2405,5.94575,121.973,-8.60826,7.39745,122.099,-5.70673,6.92484,119.987,-5.68976,8.13401,122.785,-2.80728,6.68331,120.553,-2.82789,7.85954,123.586,-2.95493,9.41635,126.536,-6.20258,9.64274,125.678,-12.9828,3.56726,122.451,-13.4475,4.07544,125.192,-11.9289,6.73859,124.967,-9.36358,8.66973,125.108,-10.2119,9.69751,127.859,-6.82416,10.8688,128.337,-10.9785,10.4915,130.563,-7.46428,11.8311,130.906,-8.18073,12.5906,133.384,-11.7914,11.0747,133.124,-3.20353,10.8981,129.163,-3.97527,13.0019,133.484,-12.6734,1.75965,110.677,-12.1982,2.20695,111.889,-13.7312,-0.106686,112.442,-14.0834,-0.676326,111.213,-11.7624,2.58852,113.114,-10.0299,4.07366,111.43,-9.53459,4.33456,112.639,-3.51719,15.2199,139.864,-1.31746e-005,4.96444,110.118,-0.000427811,4.81125,111.305,-3.51601,5.31849,111.187,-3.51824,5.48925,109.684,-7.0634,5.1308,111.172,-7.62118,5.10469,109.94,-11.0814,-11.509,111.184,-11.6477,-11.5192,109.256,-10.0633,-11.9653,113.742,-9.2036,-12.0769,116.668,-14.3874,-4.92835,114.269,-14.5041,-2.73057,112.834,-14.3107,-2.15767,114.094,-6.56134,5.21135,112.42,-8.94214,-10.8959,128.481,-8.85174,-10.8161,129.869,-14.6065,-3.37995,111.533,-7.56404,-13.3143,116.097,-8.73386,-11.8967,119.737,-6.93841,-13.1263,119.504,-4.80251,-13.8972,119.48,-5.42601,-14.3352,115.8,-2.39955,-14.2207,119.734,-2.55595,-14.7863,115.659,0.0431536,-14.961,114.133,-1.31878,-15.1781,113.856,-4.37387,-11.1113,140.159,-4.52181,-10.5129,142.694,-12.5489,-7.81701,123.445,-10.7823,-9.88164,124.091,-10.5017,-10.2236,122.22,-10.3007,-10.1247,137.73,-10.7985,-10.3279,135.176,-12.7916,-8.51019,135.76,-12.1771,-8.53587,138.282,-8.04896,-10.9075,138.244,-8.29147,-11.2593,135.771,-6.04684,-11.103,139.25,-6.13735,-11.5158,136.988,-11.4603,-7.88689,141.864,-9.82817,-9.17806,141.335,-13.4011,-7.39959,132.077,-13.3256,-8.09584,133.799,-11.1952,-10.2288,133.202,-8.02898,-10.0189,141.536,-8.50098,-11.4122,133.765,-6.20926,-10.4266,142.09,-6.232,-11.7762,135.13,-12.9902,-6.42867,143.134,-2.36135,-16.0233,107.702,-1.81956,-15.4743,111.251,-1.37348e-005,15.0857,141.74,-1.3477e-005,15.1462,143.427,-1.73938e-005,15.0453,145.219,-0.000329019,14.2096,149.322,-5.42297,-16.4239,102.026,-2.71501,-16.5192,104.41,-2.77626,-16.6948,101.717,-13.0176,-7.23074,127.027,-12.7704,-7.43596,125.179,-11.1007,-9.26008,127.594,-13.0629,-7.06801,128.841,-11.1875,-9.21136,129.138,-11.0089,-9.56038,125.845,-13.2133,-7.07641,130.462,-1.49906,-11.537,138.545,-0.00285318,6.72013,124.306,0.00618514,-11.4855,138.598,-0.00478055,5.49747,121.063,-14.5311,-4.80627,144.728,-15.6395,5.27719,132.947,-14.3512,8.45766,132.949,-3.56897,12.0196,131.457,-0.742519,-5.35028,151.981,-0.825711,-4.94913,152.66,-0.00202444,-11.0143,140.805,0.0015289,-13.217,129.273,0.000565055,-13.4643,126.399,-3.16603e-005,13.1416,135.754,0.000675924,9.79403,129.967,-1.13178e-005,13.9968,137.771,0.00671738,-5.97033,151.179,-0.0206235,-6.79708,150.37,-0.0547728,-8.17235,148.504,-0.0722735,-9.48828,145.882,0.00189356,-13.7218,123.402,-6.81015,-3.20739,153.321,-7.52932,-4.1427,152.553,-8.71368,-3.51654,152.776,-7.92434,-2.46329,153.547,-8.12807,-5.33347,151.066,-9.35251,-4.67254,151.224,-8.74922,-6.82846,148.893,-10.0751,-6.07044,149.079,-10.791,-7.07491,145.909,-9.3619,-8.05793,145.554,-13.7715,-7.45672,114.091,-13.3581,0.371976,113.659,-3.22553,5.20154,112.525,-0.00039945,4.70518,112.59,-11.7529,-11.8976,107.217,-10.1938,-13.748,105.183,-7.92695,-15.4242,103.278,-12.6624,-10.5423,108.846,-10.6004,3.77831,110.234,-0.00723133,-16.6291,101.861,0.00201848,-5.29932,151.867,-10.1235,10.0397,155.009,-11.0574,8.05365,155.98,-10.9525,3.95888,156.14,-10.6074,5.68583,156.543,-9.57894,7.65204,156.697,-7.81613,9.92494,155.882,-10.5059,2.24724,155.517,-4.21679,-4.14876,154.132,-3.35023,-4.61642,154.042,-5.07237,-3.45121,154.224,-9.18377,0.711053,154.888,-7.82083,-0.582893,154.531,-4.98356,10.9894,155.885,-2.46031,11.1945,155.825,-2.41967,-4.84623,153.9,-1.55115,-4.91335,153.771,-0.7758,-4.76617,153.65,-6.78366,-1.65406,154.41,-5.92808,-2.57066,154.334,-2.22519,-14.6618,97.7455,-1.97009,-13.873,95.6124,-3.85924,-13.761,96.1313,-4.33477,-14.5378,98.2096,-14.4014,-8.00444,106.887,-14.2864,-7.2683,108.402,-13.8981,-8.96284,107.666,-13.7281,-9.526,106.08,-9.15613,-12.9768,100.555,-10.1661,-12.9699,102.665,-8.19824,-13.9187,100.732,-7.43377,-13.5017,98.6592,-10.902,-11.8877,102.64,-11.8667,-11.5297,104.749,-6.23989,-14.2632,99.2701,-5.65484,-13.6275,97.1691,-7.0856,-15.1397,101.029,-9.21026,-14.0789,102.815,-4.90992,-15.6534,99.9128,-2.54196,-15.7358,99.5881,-11.1458,-12.4746,104.929,-13.8696,-8.45232,109.212,-14.3735,-6.61069,109.872,-12.5749,-10.996,106.854,-11.192,3.60183,108.94,-11.7528,3.54541,107.449,-8.48824,5.63834,107.151,-8.04693,5.29384,108.629,-14.8366,-5.8741,107.025,-14.6131,-4.96324,108.669,-1.92439,6.40155,104.603,-1.77022,5.90792,106.431,-4.78937,6.4093,106.848,-5.10114,7.08002,104.99,-4.44766,5.83162,108.271,-1.58019,5.58044,107.856,-1.40595,5.36695,108.839,-14.5956,-2.13331,108.434,-14.8212,-2.97512,106.624,-14.0641,0.400343,106.066,-13.6457,0.800562,107.874,-13.2238,1.27995,109.367,-14.4051,-1.36409,109.881,-12.2304,3.63207,105.636,-13.0931,-10.221,106.455,-12.5248,-10.6731,104.572,-13.3797,-9.7892,108.259,-14.6348,-4.13194,110.13,-8.93931,6.10984,105.309,-0.000859822,5.83173,104.452,0.00387045,-13.8414,95.4563,-16.7377,-5.45045,93.5042,-15.9334,-8.25483,93.15,-16.3232,-7.78454,88.7331,-17.1641,-4.88169,89.047,-16.3798,-6.00905,96.6568,-15.5327,-8.6548,96.876,-16.5013,-2.15922,93.3712,-16.8623,-1.53546,89.0798,-16.3445,-2.71331,95.7454,-14.2254,-10.2554,92.4869,-14.6211,-9.99341,88.1452,-16.4999,-7.23907,84.4838,-17.3776,-4.33126,84.757,-14.7623,-9.54482,84.0785,-13.5196,-10.6253,99.034,-13.8017,-10.41,96.16,-15.1879,-9.07274,99.9842,-11.6454,-11.5462,97.183,-11.7712,-11.4269,94.6189,-12.0435,-11.4799,91.2363,-9.82579,-12.1659,98.6839,-9.60491,-12.0254,96.9478,-11.6301,-11.6165,98.9435,-11.758,-11.6184,100.684,-9.54461,-11.9352,95.1543,-9.56887,-11.9364,92.8012,-12.0782,-11.2665,102.6,-13.5227,-10.0018,104.26,-15.0272,-6.5768,105.136,-14.4445,-8.60749,105.13,-15.1158,-3.57421,104.571,-15.3771,-3.87575,102.547,-15.534,-6.86028,103.263,-15.8332,-6.82888,101.489,-15.6356,-3.8385,100.628,-15.9532,-3.55252,98.609,-16.0328,-6.59964,99.6352,-15.0607,-0.107485,99.551,-15.3133,0.142403,97.2822,-15.1836,1.01258,92.5723,-15.3655,0.689413,94.6497,-1.36595,-9.88692,88.6078,-0.815037,-8.45941,88.5064,-1.27003,-8.27062,88.132,-2.48708,-10.1971,89.2242,-0.387832,-6.87161,88.5295,-0.365635,-4.99787,88.4862,-2.64309,-9.06306,86.392,-2.50126,-7.77522,83.8253,-4.38553,-9.93589,84.2355,-4.69756,-10.7699,87.0889,-6.83459,-11.375,84.9909,-7.08142,-11.7158,88.2611,-2.40551,-6.47427,81.2748,-4.16793,-8.94847,81.4423,-6.5263,-10.8005,81.9006,-3.02277,-10.0726,88.6357,-5.1254,-11.0352,89.6866,-7.26602,-11.7956,91.1149,-1.23602,-6.5743,86.3334,-1.26376,-4.93139,83.965,-0.69991,-3.46351,86.7366,-0.840558,-1.52153,84.6765,-3.49581,-12.8141,93.9211,-1.82521,-12.9997,93.1516,-5.0913,-12.6585,95.1184,-4.63072,-11.8167,93.3357,-3.2919,-12.0938,91.9495,-1.78352,-12.4108,90.7969,-1.75471,-11.3344,89.0931,-3.07297,-11.2977,90.3771,-0.427263,-0.397774,89.151,-0.864786,-0.577956,87.5396,-1.69449,2.15795,87.0222,-1.65905,3.59454,89.7986,-5.2048,6.07987,89.0271,-5.27011,4.83868,87.2736,-9.10687,4.99724,87.3423,-9.57856,6.16316,89.5116,-13.0094,4.02951,91.0446,-15.1558,1.5827,88.7263,-12.5514,3.96303,88.0116,-13.4918,4.09081,92.8522,-10.0838,6.67485,90.937,-1.8228,6.25416,90.8903,-5.66949,7.39472,90.009,-5.61548,8.2456,96.2536,-10.0861,6.85844,96.7554,-10.2249,6.88197,93.6908,-5.66878,8.19242,92.8771,-1.52174,7.53191,93.5001,-1.45812,7.78512,96.7425,-1.7366,7.58581,99.8011,-5.59357,7.96505,99.5058,-5.41631,7.69935,102.518,-9.41724,6.54042,102.857,-9.81095,6.73978,99.8845,-1.96731,7.01068,102.392,-13.5026,3.79513,98.1778,-13.7089,3.96179,95.5161,-14.5048,0.0697552,103.955,-12.7796,3.74023,103.391,-14.797,-0.171782,101.739,-13.178,3.716,100.817,-7.87467,-12.1158,96.7397,-7.50876,-11.8568,95.0749,-8.46448,-12.6499,98.5422,-6.71797,-12.6415,96.701,-6.07973,-11.7904,94.9509,-5.6709,-11.3498,93.3923,-4.19767,-11.2242,91.8377,-5.42142,-11.2502,91.7427,-3.73382,-10.6856,90.3968,-7.38557,-11.7202,93.3281,-9.60155,-11.9997,89.711,-8.56058,1.32065,38.1913,-8.78777,1.90136,34.2446,-11.4584,1.77765,34.4464,-11.3557,1.00964,38.3977,-11.4425,0.206654,42.6259,-8.66537,0.52636,42.5947,-13.6478,3.21049,34.8918,-13.9421,2.51546,39.0082,-14.0684,1.71781,43.1753,-6.45884,8.97315,22.8206,-6.32391,9.02887,19.0628,-6.48244,6.92505,19.1091,-6.74182,6.76541,22.8494,-7.261,4.96838,19.1632,-7.45143,4.81775,22.9562,-8.73066,3.40354,19.1825,-8.85761,3.17039,22.9868,-14.3801,13.0022,36.015,-14.4767,12.8243,40.3177,-15.9774,10.7568,40.0258,-15.6903,10.8165,35.8361,-15.108,10.6848,31.9234,-13.8481,12.4774,32.0003,-12.3013,14.0981,36.0359,-12.3159,13.9294,40.1176,-11.8112,12.6399,27.5042,-10.144,13.0798,27.4789,-10.1093,13.7596,31.8982,-12.1515,13.4552,31.9948,-13.1994,9.88308,22.6115,-12.2695,11.1364,22.5956,-13.1279,11.8413,27.5515,-14.2437,10.4128,27.5898,-11.1829,11.9789,22.6003,-9.90028,12.5577,22.6346,-9.90594,14.3546,35.8735,-13.676,8.05634,22.6868,-13.0729,8.04402,19.0993,-12.6172,9.62747,19.0539,-16.5185,-6.65699,80.1259,-14.7179,-8.94481,79.6867,-12.2944,-11.4655,87.1824,-12.3355,-11.1647,83.3675,-12.2312,-10.5752,79.0287,-17.4384,-3.81029,80.4149,-12.0048,-9.7049,74.8834,-14.5141,-8.23312,75.4751,-9.39685,-11.7011,82.5594,-9.19006,-10.9954,78.3634,-8.9802,-10.0222,74.355,-6.32103,-9.87152,77.8763,-6.13554,-8.83511,74.0165,-4.09795,-7.77739,77.5638,-4.08302,-6.55701,73.841,-4.03811,-5.26117,70.246,-5.88474,-7.69942,70.3399,-2.52523,-5.13259,77.4444,-2.79146,-3.79472,73.791,-3.07829,-2.45073,70.2436,-3.91751,-4.01686,66.7236,-5.57616,-6.60158,66.7941,-8.3682,-7.96048,67.0526,-8.69049,-8.98084,70.595,-11.2011,-7.7219,67.5227,-11.6398,-8.72356,71.0597,-13.5981,-6.68437,67.9772,-14.1359,-7.48132,71.5652,-10.7575,-6.7773,64.3303,-8.06425,-7.02957,63.7837,-12.9613,-5.8663,64.7761,-7.88993,-6.07513,60.8115,-10.3579,-5.967,61.469,-12.3442,-5.1726,61.8951,-14.0369,-3.93287,62.0459,-14.8398,-4.44693,65.0317,-9.82702,-5.38294,58.7808,-11.918,-4.83763,59.0381,-13.5335,-3.42929,59.1877,-5.3537,-5.5271,63.421,-5.4897,-4.374,60.3135,-3.89224,-2.82403,63.3233,-4.24494,-1.63905,60.1967,-15.5613,-5.00411,68.3117,-15.8995,-2.1678,65.2877,-16.5558,-2.47482,68.6408,-15.1096,-1.89473,62.1238,-3.23616,-1.18269,66.7504,-3.38983,-0.0203847,63.3796,-2.56786,0.557149,70.3631,-3.12965,1.74055,66.9322,-3.48438,2.78382,63.621,-3.02812,3.67136,70.679,-3.95545,4.65143,67.3049,-1.96705,-0.712882,73.8761,-2.11481,2.61,74.2014,-1.41088,1.40151,77.8537,-1.49833,-2.04542,77.5076,-0.969238,0.020979,82.1139,-1.2271,-3.45649,81.6056,-3.80129,3.64375,60.4017,-3.77088,1.06199,60.1761,-5.2236,5.88951,60.9224,-4.65651,5.42317,64.0656,-4.8107,5.98983,71.0639,-3.67053,5.37624,74.6497,-2.71367,4.57755,78.3834,-5.94389,-2.9288,58.0807,-6.21374,-1.86296,56.165,-7.50986,-3.75364,56.2696,-7.63786,-4.77933,58.3621,-6.20456,-1.12567,54.2015,-7.35171,-3.07221,54.273,-5.17562,0.300333,55.9379,-5.34611,1.0541,54.0313,-4.88519,-0.485098,57.8163,-9.42571,-4.84028,56.3267,-11.5903,-4.55907,56.3858,-13.3287,-3.16974,56.5155,-14.1745,-1.03002,56.7551,-14.5071,-1.4492,59.3212,-14.9204,1.17371,56.9453,-15.137,0.670237,59.4562,-14.7821,3.5568,57.1813,-15.0528,2.96532,59.7624,-14.1307,-0.683122,54.399,-14.9883,1.65489,54.6374,-14.7554,4.25823,54.9908,-13.0826,-2.76792,54.238,-14.0407,-0.319432,52.0954,-15.102,2.04915,52.2415,-15.0238,4.74408,52.6124,-15.1836,2.58648,49.8385,-15.4391,5.44606,50.2203,-13.5625,-0.119378,49.6178,-11.312,-3.98185,54.1845,-9.25102,-4.14162,54.2087,-9.14878,-3.48684,52.1848,-11.1836,-3.39623,52.1644,-12.8459,-2.22121,52.2058,-9.02968,-1.29976,48.7541,-11.3879,-1.39739,48.6721,-11.1655,-2.50829,50.3991,-9.14704,-2.43124,50.4754,-8.81924,-0.302529,46.3093,-11.417,-0.549094,46.1719,-13.8847,0.898959,46.6666,-7.48719,-2.322,52.3203,-4.56243,2.68555,55.6333,-4.9941,3.34753,53.9601,-4.24976,2.22913,57.294,-4.85119,4.89085,55.6851,-5.41389,5.40142,54.1651,-4.37746,4.53289,57.3807,-5.62185,4.23767,52.1691,-5.97547,6.2762,52.4924,-5.94063,6.17374,56.0836,-6.41609,6.62858,54.4136,-6.88233,7.75241,52.5933,-5.81487,1.91863,52.0645,-5.90379,5.31654,50.0408,-6.21457,2.83606,49.8648,-7.18202,0.110973,49.7476,-6.51145,-0.385683,52.138,-6.16151,3.94779,47.3595,-7.11369,1.48889,46.9303,-5.67139,6.5636,47.5132,-6.94408,2.44916,43.0171,-5.73675,4.88732,43.4546,-5.12855,7.72581,43.6981,-6.08831,7.58966,50.3574,-6.99903,9.42383,50.3439,-5.85424,9.09418,47.4983,-7.03731,11.1456,47.3561,-8.40928,8.89383,52.6625,-8.68154,10.536,50.2426,-9.08745,12.1083,47.1978,-10.2945,9.10506,52.7004,-10.7641,10.6781,50.1517,-8.07142,7.50845,54.6533,-9.90233,7.69798,54.8505,-7.78985,6.73154,56.6498,-9.69627,6.93991,57.087,-7.58852,6.452,58.8567,-9.59817,6.43126,59.4937,-2.05407,3.51452,82.928,-5.45451,5.80111,83.5126,-5.96488,6.61527,78.998,-7.39311,6.49549,61.5126,-9.52032,6.34651,62.182,-11.6774,5.82529,62.5859,-11.6088,5.97181,59.8405,-11.6561,6.67128,57.3948,-13.5258,4.83842,59.9095,-13.4748,5.45753,57.4207,-12.2053,8.46595,52.8045,-11.7678,7.30529,55.0692,-13.5327,6.16662,55.1707,-13.8435,7.00821,52.8992,-14.4436,8.06323,50.5415,-12.7935,9.81397,50.3014,-15.9241,6.33333,47.6105,-15.1921,8.97214,47.6658,-15.5228,3.45437,47.2569,-13.5525,10.9402,47.4279,-15.8443,4.20639,43.7746,-16.3936,7.13224,44.111,-15.7849,9.90924,44.1729,-14.151,11.981,44.0572,-16.5014,7.88707,39.8025,-7.1077,12.622,43.6735,-9.47347,13.4128,43.6349,-5.5129,10.5288,43.7441,-7.26204,13.6234,39.6044,-7.42142,13.7398,35.6509,-5.82653,11.6742,35.3686,-5.50488,11.5603,39.4093,-8.01756,13.2918,31.7585,-6.44072,11.618,31.6066,-4.98195,8.67593,39.0839,-5.43736,8.96987,35.0224,-6.01698,9.05377,31.4457,-6.96561,11.4344,27.5671,-6.41988,8.93081,27.5924,-9.79854,14.2807,39.7877,-11.9284,13.1174,43.787,-5.4859,5.67966,38.7828,-6.75478,3.20223,38.4438,-8.91489,2.81636,27.3716,-7.51232,4.55466,27.4329,-6.82823,6.60878,27.5261,-10.8534,3.12477,23.0007,-11.1059,2.63897,27.4371,-8.89906,2.38388,30.9383,-7.27915,4.27901,31.0423,-11.3544,2.24682,31.0717,-12.343,4.3807,22.9664,-12.8857,3.9516,27.6152,-5.85176,6.24586,34.6818,-6.44695,6.54152,31.2388,-8.40773,12.8261,27.5157,-8.40246,12.5225,22.7083,-7.08929,11.2261,22.7767,-8.1702,12.3179,18.9923,-6.99027,11.0096,19.0223,-15.2746,5.36455,35.2921,-15.8095,4.91768,39.5295,-14.1245,5.94157,27.7187,-14.7671,5.73782,31.653,-13.3313,3.63763,31.3813,-16.056,8.08095,35.5907,-15.4288,8.21043,31.8244,-11.9313,4.72201,19.1366,-12.7865,6.35314,19.1236,-13.3043,6.13069,22.8082,-14.6403,8.20999,27.6937,-9.37362,5.80065,83.9586,-9.85021,6.73157,79.5891,-13.2168,5.15136,80.03,-12.7489,4.55174,84.3408,-13.5163,5.32028,76.0552,-10.4141,6.94209,75.651,-15.7442,2.84801,76.2967,-15.6696,2.59926,80.3444,-15.3726,2.16698,84.6901,-15.746,2.94661,72.4706,-13.7144,5.26785,72.2921,-10.9375,6.77876,71.9323,-15.718,2.97663,68.9337,-13.8583,5.14024,68.8121,-16.5166,0.277867,68.8763,-16.8512,0.121677,72.4682,-17.0905,-0.122382,76.3592,-7.70273,7.1421,71.4854,-6.78069,7.02239,75.1477,-11.3519,6.44423,68.5206,-8.5811,7.00747,68.1371,-6.02753,6.53614,67.7256,-11.6125,6.0901,65.4105,-9.19144,6.66406,65.0124,-6.87922,6.6454,64.51,-16.1231,0.399113,65.561,-15.6098,2.99253,65.6744,-13.8891,4.99284,65.6142,-17.3329,-3.30997,76.2416,-17.0336,-2.88438,72.29,-16.3751,-6.09724,75.9369,-16.0613,-5.55418,71.9724,-17.1942,-0.585535,80.4849,-17.0737,-1.02301,84.8658,-15.6429,0.512164,62.4115,-15.3447,2.99304,62.6297,-13.7172,4.83583,62.6555,-9.57378,-11.968,86.0438,-5.64465,6.03478,57.9437,-11.3806,11.9847,47.194,-6.95416,3.8378,34.4046,-10.5855,3.49758,19.1849,-10.3036,-12.2639,100.562,-13.4726,-10.7037,100.769,-14.8796,-9.10319,103.372,-6.22287,7.00566,16.1568,-6.145,9.09438,16.068,-7.12177,4.97669,16.3016,-8.65844,3.53119,16.3852,-12.7481,8.11893,16.3004,-12.3119,9.58975,16.2766,-6.87972,10.9054,16.0677,-11.6696,4.93931,16.2552,-12.4817,6.52566,16.2839,-10.431,3.70308,16.3349,-10.8175,11.8897,18.9607,-9.58113,12.5473,18.9644,-11.8189,10.8947,18.9989,-7.98156,12.2128,16.1014,-10.6267,11.9297,16.1618,-9.36944,12.6304,16.1302,-11.5845,10.8543,16.2148,0.00542628,-13.0452,92.8405,6.18045e-005,-9.70202,88.27,0.0012298,-8.54916,88.5293,0.00051457,-6.73916,88.6507,-0.00239831,6.55587,94.1904,-0.00288475,6.14434,102.299,-15.048,-9.20406,101.718,-13.5181,-10.5591,102.448,3.0879e-005,5.14802,108.971,-6.03521,6.81232,14.0258,-5.73291,6.43673,12.1094,-7.04426,4.54177,12.9509,-7.08624,4.81648,14.3224,-5.90584,9.06632,13.8942,-5.1594,9.67108,9.53522,-4.91848,9.6222,7.3853,-4.99647,7.16088,7.26899,-4.76934,7.14758,9.52721,-5.48165,9.01346,11.7976,-6.04485,4.8634,10.0753,-6.24781,5.07033,11.3326,-5.90386,4.23537,8.11409,-8.22487,0.460921,8.14189,-7.33585,2.50064,9.64242,-6.99242,0.968224,7.05333,-5.47806,4.36853,5.85143,-6.33224,1.35318,5.497,-7.15991,3.45392,10.9956,-6.15504,11.4818,9.71257,-7.29728,12.8697,10.0024,-6.9276,13.5633,7.8757,-5.6057,12.0082,7.53054,-9.03428,13.4153,10.2018,-9.12079,14.2485,7.89187,-6.64605,14.0463,5.87364,-5.17461,12.2445,5.71336,-4.59153,9.81757,5.63154,-8.67196,2.67214,11.4927,-8.93771,1.87953,10.2097,-10.1427,2.78308,11.404,-10.2389,2.01806,10.0727,-10.7033,0.215219,8.44856,-9.54919,0.155474,8.5125,-10.4594,-2.49921,6.47543,-11.4341,-2.40486,6.34792,-9.27471,-2.3263,6.46509,-10.3152,3.80631,14.4441,-11.506,5.03192,14.2723,-8.62745,3.52151,14.5232,-11.9001,5.17683,10.1271,-11.1841,3.62491,10.8726,-11.3242,2.51921,9.60869,-12.042,3.34891,8.66185,-12.5954,12.1988,6.24049,-13.1751,9.99616,6.63745,-13.3782,10.4396,4.56537,-12.7038,12.6873,4.26642,-11.1981,13.9981,6.04683,-10.9782,14.3233,4.11284,-13.1695,10.9062,2.64941,-12.2698,12.9301,2.42153,-10.5667,14.3116,2.34195,-12.0658,10.9584,1.34865,-11.0836,12.4266,1.23777,-10.1523,13.4668,1.29479,-13.1436,5.64421,6.23721,-13.5203,3.09971,5.39677,-13.9027,3.9677,4.05481,-13.4828,6.33293,4.53705,-14.8212,1.1589,3.33518,-14.2664,0.237667,4.51629,-12.952,2.18001,6.46175,-13.5547,-0.674751,5.26582,-12.6672,4.18997,7.49047,-13.2463,9.38908,7.58492,-13.1354,7.88787,7.31331,-13.1787,8.03533,6.21974,-13.1479,-10.8562,1.24342,-13.4075,-11.2298,0.726636,-13.7229,-11.1114,0.934808,-13.6646,-10.7643,1.36823,-13.7618,-11.1497,0.483728,-14.0064,-10.8985,0.731274,-14.3532,2.01123,0.855598,-13.4703,4.71853,1.02665,-14.2149,4.61703,2.5522,-15.0945,1.87608,1.98713,-13.7441,6.99088,2.8152,-12.8774,7.08688,1.19059,-10.307,10.4724,0.733063,-9.48975,11.8636,0.775689,-12.4404,9.33162,1.30156,-13.3995,9.33365,2.76827,-11.3851,6.64845,0.653363,-10.8891,8.92064,0.699207,-8.72503,13.1668,1.09601,-7.96321,11.1313,0.622616,-7.11386,12.3033,0.999058,-8.62187,9.79851,0.566787,-8.35971,14.4238,2.3011,-8.94283,14.6979,5.95395,-8.60771,14.7519,4.04738,-6.34716,13.9357,3.99272,-11.1336,13.4169,8.00585,-4.43868,9.71721,3.93572,-4.90691,12.0713,3.95981,-4.96169,11.6083,2.31785,-4.7125,9.3655,2.40423,-6.27202,13.4335,2.26951,-6.00106,10.9365,1.03619,-5.80021,9.10855,1.18242,-4.7152,7.19171,3.97333,-5.14161,7.062,2.52369,-6.14859,7.18138,1.4335,-10.7055,12.6642,10.4768,-9.18997,8.2764,0.58827,-13.8782,-10.1985,0.430656,-13.5594,-10.3732,0.34178,-13.4245,-9.84337,0.583262,-13.8646,-9.77077,0.685263,-13.2042,-10.5323,0.411356,-13.0087,-10.1594,0.667021,-14.0461,-10.5074,0.501753,-13.6958,-10.8483,0.314924,-13.1982,-10.9255,0.474724,-14.3932,-9.03128,0.64329,-14.2445,-8.74423,0.835286,-14.538,-8.57749,0.740496,-14.6377,-8.98197,0.580429,-14.9024,-8.23563,1.01342,-14.9036,-8.64938,0.75616,-14.4859,-8.1775,0.975352,-15.2113,-8.94228,0.884271,-15.0784,-9.25871,0.650657,-14.8868,-8.95549,0.602942,-15.2537,-8.52065,1.2098,-14.2063,-9.12272,1.02808,-14.1221,-8.73423,1.4056,-14.1649,-8.37038,1.11576,-14.1494,-8.0052,1.29544,-14.4676,-7.8063,1.11506,-14.1068,-8.30981,1.69262,-14.4336,-9.38395,0.707593,-14.5772,-9.69401,0.903721,-14.4763,-9.48888,1.24909,-14.7835,-9.41887,0.589193,-14.9346,-9.76303,0.868061,-6.68137,4.87585,1.64006,-5.75876,4.63677,2.68091,-6.18107,-1.49648,2.41892,-6.19105,1.87936,2.60427,-7.04207,1.83891,1.38724,-6.97077,-1.25639,1.04989,-5.37889,4.49979,4.10032,-6.03966,1.68234,3.97782,-6.43106,-1.67063,3.82919,-7.12022,-1.88573,5.14032,-12.8253,-8.62781,1.28505,-13.2422,-8.40128,1.07012,-13.315,-8.89916,1.06831,-12.8809,-9.12876,1.25064,-13.3437,-9.33119,0.887589,-12.9024,-9.62771,1.025,-12.6411,-8.8565,1.87097,-12.6959,-9.40449,1.76648,-12.7436,-10.0118,1.42362,-12.5843,-8.02203,1.12567,-13.0419,-7.72099,0.931968,-12.5463,-8.46316,1.85711,-14.0984,-9.25039,2.20818,-14.0924,-9.87794,1.76512,-14.1129,-9.49915,1.37392,-14.0915,-8.97324,1.67528,-13.6229,-9.51444,2.52151,-13.6615,-10.2029,1.99554,-14.0434,-10.4261,1.19727,-14.1205,-10.0264,0.91949,-14.241,-4.88293,3.96457,-14.5824,-5.84441,3.46983,-15.0301,-5.52381,3.35101,-14.9922,-4.32692,3.67903,-13.5876,-5.58848,3.90327,-14.1638,-6.25767,3.34206,-14.7714,-6.58285,3.01091,-15.1315,-6.23764,2.91444,-14.3658,-6.85696,2.88933,-15.3099,-5.44376,3.14113,-15.5605,-4.90677,3.19949,-15.3701,-5.87309,2.78073,-15.739,-5.48552,2.77055,-13.6552,-6.61683,3.39632,-13.9646,-6.63612,3.16975,-14.0611,-7.07469,2.82005,-14.0938,-7.50637,2.33325,-14.3472,-7.46704,2.3875,-14.8478,-7.23088,2.5855,-13.0948,-6.77465,3.53096,-12.7086,-5.82954,4.06346,-12.5046,-7.04637,3.42343,-11.8149,-6.29347,4.00964,-12.1909,-4.59018,4.91057,-11.2392,-4.85328,4.96589,-13.0271,-4.21004,4.82689,-12.7326,-7.68841,3.06346,-13.3055,-7.507,3.12864,-12.1811,-7.37638,3.32352,-12.2798,-7.82616,3.05235,-11.7591,-7.27544,3.6076,-13.4145,-8.14567,2.84667,-12.7454,-8.33407,2.64007,-12.3736,-8.2785,2.58066,-13.7882,-7.29392,2.9742,-13.9315,-7.88672,2.47197,-15.3194,-8.89668,1.50848,-15.2869,-9.32214,1.13497,-15.3219,-8.34534,1.88324,-15.2375,-8.0235,1.48422,-14.8829,-7.80888,1.18888,-8.9266,-11.5406,2.20989,-9.05817,-12.1028,2.0656,-9.98521,-11.8075,1.74513,-9.82853,-11.1334,1.85234,-10.3224,-11.7045,0.933186,-10.1128,-10.8815,0.977704,-8.8314,-10.9456,2.40541,-9.70377,-10.4192,2.07177,-9.83296,-10.0593,1.17171,-12.8298,0.989007,0.631017,-11.0486,-0.160789,0.605982,-10.4813,2.40691,0.547309,-12.1082,3.65356,0.532686,-15.2014,-9.55499,0.844886,-6.29562,-7.65774,1.1324,-6.20109,-7.86179,2.1419,-5.86051,-6.68185,2.33263,-6.04071,-6.54582,1.13205,-6.71468,-8.48681,1.04281,-6.63016,-8.79462,1.91059,-6.74903,-7.92704,3.1672,-6.41092,-6.73978,3.52921,-7.16966,-8.90769,2.83909,-7.07801,-9.24408,0.933375,-6.94701,-9.62348,1.7054,-7.28466,-8.17113,0.4743,-7.7237,-8.86577,0.534342,-6.88043,-7.4442,0.413962,-7.49661,-9.78529,2.58836,-7.9971,-9.59346,0.420319,-7.26278,-10.0154,0.764904,-8.10823,-7.95968,0.254106,-8.7602,-8.61607,0.683585,-8.9252,-9.33187,0.638921,-7.78832,-7.31084,0.0807366,-8.51609,-7.37923,0.0341908,-8.89685,-7.84714,0.250236,-9.4224,-8.37141,0.822299,-8.55902,-9.50066,3.07211,-8.20589,-8.68426,3.40876,-7.83342,-7.79432,3.81282,-9.22207,-8.27242,3.46083,-9.53646,-8.88489,2.73092,-8.74654,-10.2751,2.73655,-9.59507,-9.67945,2.36178,-7.68988,-10.5735,2.34705,-9.01271,-7.60515,3.90347,-9.87978,-7.92821,3.30035,-9.69863,-7.54698,3.6531,-9.97647,-8.39025,2.64297,-10.4335,-7.63045,0.353262,-10.9644,-8.46175,0.690864,-10.2012,-8.57276,0.85763,-9.64338,-7.75882,0.307189,-11.2169,-7.50197,0.491023,-11.782,-8.37115,1.00938,-11.3411,-9.23997,0.799235,-10.745,-9.38697,0.99573,-11.9941,-9.14849,1.11433,-11.8018,-7.36303,0.597434,-12.1751,-8.04144,1.11502,-12.2333,-7.14539,0.61807,-11.4422,-6.77247,0.324418,-11.6922,-6.3647,0.315949,-10.7954,-6.66998,0.210919,-12.6961,-6.88133,0.612424,-13.1617,-6.67506,0.657277,-13.5533,-7.55518,1.10728,-13.7007,-8.31592,1.24796,-9.84068,-6.76945,0.113084,-10.8577,-5.69267,0.307046,-9.56796,-5.70894,0.289116,-13.811,-6.18621,0.642254,-13.5126,-6.47001,0.681872,-13.2763,-5.88642,0.443291,-13.4488,-5.42535,0.394746,-12.8497,-5.81307,0.389657,-12.696,-4.70857,0.406256,-12.2315,-5.97446,0.338272,-11.7944,-5.12958,0.359293,-14.1987,-5.83395,0.591376,-13.9068,-4.94734,0.37974,-14.3747,-6.67032,0.878953,-14.0177,-7.05322,1.11116,-14.4968,-4.67257,0.424865,-14.6547,-5.52195,0.617842,-14.8572,-6.4259,0.989028,-16.0287,-4.45265,0.721402,-15.4635,-4.84159,0.684161,-15.2156,-4.14061,0.507912,-15.8267,-3.56259,0.609712,-16.619,-4.23009,0.925426,-16.5262,-3.20479,0.921483,-15.0608,-2.71075,0.644976,-16.125,-2.03456,0.894922,-14.3992,-3.6981,0.502516,-15.9774,-5.27161,0.762308,-15.4443,-5.66608,0.951337,-15.8434,-5.89591,0.745503,-15.4046,-6.13252,1.03904,-16.5315,-5.12052,0.865952,-16.3834,-5.83355,0.764865,-12.3868,-8.40539,1.83218,-12.0528,-8.53035,2.7742,-11.8503,-7.9284,3.27715,-12.2649,-8.6409,1.85259,-13.5195,-8.79214,2.73606,-14.0096,-8.58112,2.37643,-12.8831,-8.91063,2.52939,-15.2079,-6.84322,2.29232,-15.3637,-6.27099,2.19983,-15.6555,-6.08543,2.20447,-15.2577,-6.28175,1.5346,-15.3428,-6.15871,1.53425,-15.1711,-6.75741,1.55827,-11.1823,-7.90563,3.42246,-11.3131,-8.55885,3.11718,-11.4504,-9.33687,2.95074,-12.1192,-9.23102,2.66235,-12.3348,-9.17039,1.86028,-10.485,-7.84783,3.32491,-10.5448,-8.55558,2.75538,-10.8046,-9.41621,2.51562,-9.82376,-8.58875,1.69147,-10.238,-8.8256,1.74336,-10.5393,-9.47799,1.68422,-9.55226,-8.8119,1.59298,-16.2748,-2.47628,2.70108,-16.6041,-3.59457,2.48499,-16.8042,-3.21161,1.64717,-16.5185,-2.02592,1.74124,-16.7438,-4.58157,2.21964,-16.9018,-4.27167,1.51568,-15.7836,-1.14081,2.93204,-16.037,-0.563178,1.79179,-15.3107,-0.399023,0.812371,-16.8364,-5.18716,1.33127,-16.7274,-5.95467,1.12682,-16.733,-5.43536,1.91903,-16.6785,-6.20011,1.63899,-16.3202,-5.05727,2.72479,-16.3027,-5.78375,2.31334,-16.2482,-6.44885,2.00553,-15.6587,-6.54607,1.97973,-9.98277,-13.0977,1.3147,-10.0628,-13.0994,0.861871,-10.3422,-12.4757,0.935702,-10.0648,-12.537,1.59325,-9.37867,-13.3457,1.35861,-9.39048,-13.4329,0.835889,-8.22812,-13.0075,0.567634,-8.63786,-13.3233,0.619965,-8.60902,-13.4409,0.978722,-8.01418,-13.0901,1.16862,-8.72681,-13.3801,1.37194,-8.39453,-12.9812,1.69006,-9.27664,-13.2141,0.469203,-9.23144,-12.7734,1.84109,-11.6609,-12.4962,1.14271,-12.1306,-12.4875,1.12103,-12.0108,-12.0845,1.54085,-11.4521,-12.1538,1.41925,-11.5839,-12.4169,0.815577,-12.1287,-12.454,0.716472,-11.2325,-12.0434,0.992233,-12.5402,-12.299,1.06353,-12.529,-11.9063,1.32679,-12.5976,-12.2159,0.751208,-12.7171,-11.7291,0.937135,-14.4172,-7.98798,2.23762,-14.0695,-7.55125,1.76729,-14.1116,-7.87582,1.79849,-13.9771,-7.54998,1.72408,-14.1347,-7.5959,1.29825,-13.7696,-7.15282,1.13344,-15.3125,-6.41567,1.54253,-15.1564,-5.88178,0.9959,-12.4464,-12.0205,0.548376,-12.048,-12.121,0.49963,-11.6342,-12.1722,0.568922,-12.4645,-11.599,0.585639,-15.4622,-7.9715,0.541061,-15.6683,-8.30888,0.773851,-15.3882,-8.22173,0.931363,-15.2158,-7.91988,0.762453,-15.9074,-8.12804,0.598777,-15.784,-7.8252,0.422244,-16.0981,-7.4959,0.465995,-16.1622,-7.88481,0.751484,-15.4044,-7.53949,0.47991,-15.6621,-7.50847,0.377815,-15.8178,-7.19336,0.409643,-15.4487,-7.14264,0.546635,-11.6181,-10.2289,2.72229,-12.27,-10.0131,2.50569,-12.455,-9.8234,1.78397,-15.6168,-7.10221,1.80406,-16.1868,-7.11775,1.73072,-16.5749,-6.8871,1.34652,-11.8841,-11.567,1.85869,-11.3172,-11.6263,1.65025,-11.7746,-11.0136,2.30032,-11.1657,-11.0596,1.9612,-12.4197,-11.3581,1.65197,-12.368,-10.7604,2.11012,-15.1506,-7.6629,1.04677,-15.4514,-8.02302,1.22125,-15.5445,-7.59986,1.50846,-15.1869,-7.27814,1.31346,-15.2461,-6.84377,1.49718,-16.0633,-7.66999,1.39302,-15.9212,-8.12632,1.10902,-14.9107,-7.89876,2.36153,-14.4357,-8.55955,2.04737,-14.9656,-8.58524,2.13591,-16.3828,-7.4354,1.01398,-9.1603,-10.0913,0.383056,-9.60248,-9.35118,1.41111,-8.15515,-10.4129,0.146183,-9.45618,-10.9757,0.169137,-8.37931,-11.3209,-0.00592697,-12.3307,1.39848,7.36628,-11.6897,0.681742,8.07912,-12.2452,-2.03935,6.12151,-12.8999,-1.44293,5.7618,-4.75769,7.21915,5.64745,-12.833,6.5189,7.40227,-13.293,7.50008,8.79892,-12.433,5.74834,8.43201,-13.756,-1.57435,0.619133,-8.24524,-5.24753,0.442017,-7.21489,-5.40098,0.473957,-6.72347,-4.41228,0.786408,-9.31711,-3.95973,0.511593,-6.73202,-6.52691,0.391439,-8.26487,-6.37015,0.258685,-14.4313,-2.87247,4.33871,-13.7353,-3.60897,4.63936,-15.2034,-1.97055,3.87459,-15.7147,-3.25191,3.42819,-10.1054,-4.9232,4.95774,-10.566,-6.28683,4.18627,-8.83788,-5.04593,4.9727,-8.12603,-2.17581,6.12314,-9.22896,-6.63758,4.26227,-7.46766,-5.07549,4.63603,-7.60392,-6.69574,4.27035,-6.35211,-5.0448,3.74257,-13.3521,8.67106,4.74553,-6.91986,10.4114,0.660575,-13.1483,9.57107,8.8015,-12.9492,9.03329,10.5215,-12.8944,6.89293,10.7802,-9.71564,5.96175,0.663002,-7.11521,9.19364,0.708129,-13.8144,-9.27579,1.02879,-13.7746,-8.83254,1.23347,-14.0249,-8.41301,1.75436,-12.8598,-10.585,0.921082,-14.4448,-9.06202,1.66175,-16.1295,-4.22526,3.09765,-14.9574,-9.1335,1.71383,-14.9571,-9.57965,1.31896,-10.1415,-7.27515,3.7046,-10.9577,-7.21431,3.75698,-9.05159,-7.07239,0.150614,-7.10146,-10.4168,1.53784,-8.6969,-12.1408,0.0511596,-7.83218,-12.4143,0.526428,-7.53098,-11.6774,0.519061,-9.0245,-12.784,0.231385,-7.61567,-12.525,1.28364,-7.3652,-11.8789,1.34481,-8.11997,-12.3896,1.88249,-7.95564,-11.8298,1.97528,-13.4963,-4.15267,0.433914,-14.933,-4.64458,0.494253,-15.0558,-5.21133,0.665396,-14.8613,-7.27312,1.15722,-14.4455,-7.34585,1.05764,-13.9378,-7.86857,1.73757,-9.88601,-12.5544,0.374291,-9.73169,-11.8432,0.204351,-9.85734,-13.0014,0.508839,-12.3513,6.59375,14.2215,-11.8397,11.0956,10.4681,-12.2375,11.6627,8.15889,-15.2475,-7.65478,2.08146,-15.1887,-7.4224,1.56466,-11.4361,-11.8022,0.579296,-11.9468,-11.6261,0.440684,-15.2024,-7.58623,0.646102,-15.1738,-7.30971,0.78584,-12.9775,-9.57979,2.34064,-13.06,-10.2626,1.85447,-16.5753,-6.56993,0.912292,-11.0473,-11.505,1.16235,-12.6412,-11.1286,1.20563,-12.3973,-10.9854,0.736419,-11.8417,-11.0212,0.510288,-11.273,-11.2382,0.666691,-10.8994,-10.9187,1.34412,-12.5605,-10.4865,1.53774,-12.2946,-10.3616,0.945877,-11.7261,-10.4276,0.652381,-11.1433,-10.6547,0.793777,-10.9881,-10.2988,2.27861,-10.7405,-10.242,1.53036,-10.997,-10.0708,0.926916,-11.572,-9.88239,0.782407,-12.1545,-9.78198,1.09471,-15.5474,-6.73729,0.665848,-16.0118,-6.78099,0.539508,-15.2103,-6.92939,0.962345,-16.3631,-7.06331,0.660959,-15.2975,-6.53784,1.05687,-15.6883,-6.34655,0.743515,-16.2037,-6.35601,0.679419,-7.34207,-10.8446,0.579199,-7.20349,-11.175,1.41307,-7.82693,-11.2455,2.11481,-8.98673,-0.920868,0.710829,-5.86853,-4.90416,2.37369,-12.4433,6.64565,12.4992,-12.7276,8.38995,12.3931,-12.628,8.1715,14.1962,-12.7871,10.4525,8.50323,-10.5565,12.0181,14.2468,-9.23067,12.7066,14.1936,-74.7518,5.12048,137.861,-75.1091,4.08205,137.633,-74.196,3.40638,137.963,-73.3436,4.47207,138.32,-73.7427,5.99459,138.608,-74.9123,6.29213,138.212,-75.3477,7.23581,138.948,-76.3254,7.41357,138.58,-75.9482,6.51617,137.827,-76.0083,7.55435,139.866,-76.8805,7.72728,139.455,-74.7527,7.41419,140.291,-74.197,6.97197,139.288,-75.8507,5.43935,137.48,-75.4136,7.20381,141.348,-76.015,6.16028,141.978,-75.7878,3.00504,142.235,-76.1404,4.6534,142.309,-77.6466,2.65308,141.562,-78.0538,4.54293,141.637,-77.9602,6.11735,141.192,-74.905,1.7077,141.68,-76.569,1.11292,141.009,-77.1057,7.2469,140.585,-77.4312,7.61244,139.961,-78.2673,7.67323,139.741,-77.7263,7.86595,139.113,-75.9757,4.49724,137.364,-73.6,1.23272,140.508,-75.2088,0.588637,140.128,-78.7208,7.22661,140.133,-79.2801,6.66093,140.36,-74.9412,2.50854,137.503,-75.7321,3.20411,137.296,-72.7855,1.86607,139.329,-72.7916,2.95994,138.66,-89.4124,9.09512,136.404,-89.0343,9.17558,136.36,-89.0699,9.05753,136.695,-89.3386,9.05008,136.666,-89.6156,8.86863,136.455,-89.43,8.84852,136.762,-91.6616,4.14265,136.199,-92.3689,4.28258,136.111,-92.2443,4.37574,136.378,-91.726,4.3308,136.503,-92.4489,4.6046,136.459,-92.7866,4.55793,136.082,-86.693,-2.12671,137.513,-86.1668,-1.94357,137.726,-86.2179,-2.36883,137.213,-86.6432,-2.36199,137.318,-85.4327,-1.64034,138.044,-85.293,-2.01494,137.563,-86.8389,-1.79198,137.644,-86.3467,-1.48455,137.89,-85.6082,-1.08564,138.197,-86.9941,-1.53654,137.599,-86.6952,-1.12234,137.534,-87.2685,-1.67487,137.43,-87.2306,-1.96995,137.377,-87.0904,-2.28032,137.273,-85.7525,-0.585058,137.859,-84.8639,-0.136852,138.211,-84.7588,-0.667306,138.596,-84.6042,-1.27971,138.458,-85.7749,-0.320308,137.241,-86.7009,-0.72432,136.974,-84.9359,0.03781,137.486,-84.2923,0.410174,137.708,-83.9344,0.370558,138.621,-84.8446,-0.0758831,136.788,-85.6462,-0.375204,136.587,-84.2191,0.370874,136.931,-87.6863,-2.10033,137.05,-87.5181,-2.4809,136.952,-87.5857,-1.55462,137.089,-88.1475,-2.76478,136.611,-88.3368,-2.34568,136.699,-88.4731,-1.89167,136.578,-88.8082,-3.01966,136.309,-88.9787,-2.62368,136.372,-89.3074,-2.27489,136.144,-86.8718,-2.76796,136.205,-87.7346,-3.11216,135.813,-87.9291,-3.0696,136.314,-87.0828,-2.68981,136.784,-88.826,-3.39026,135.964,-88.603,-3.4123,135.479,-89.4012,-3.66342,135.236,-89.5742,-3.58006,135.652,-90.1492,-3.7426,135.472,-90.093,-3.88394,135.111,-89.4925,-3.45771,135.889,-89.2535,-3.40518,136.009,-90.3163,-3.45671,135.677,-89.9154,-3.33479,135.768,-89.6485,-3.2642,135.946,-90.7164,-3.97779,135.089,-90.5998,-3.84972,135.408,-90.6716,-3.90428,134.734,-90.1184,-3.75487,134.714,-89.3596,-3.47289,134.821,-90.8373,-3.64203,135.54,-91.0128,-3.2695,135.536,-90.4765,-3.08599,135.686,-90.0591,-2.97764,135.802,-91.005,-2.97,135.399,-90.5855,-2.75115,135.511,-90.0052,-2.54257,135.772,-90.2571,-3.39516,134.497,-90.9319,-3.67816,134.61,-89.4518,-3.05572,134.59,-90.4383,-2.9718,134.501,-89.641,-2.588,134.626,-91.1044,-3.29642,134.608,-88.5256,-3.1552,135.034,-88.6066,-2.68114,134.799,-88.8223,-2.19137,134.898,-89.309,-3.17673,136.131,-89.4439,-2.8399,136.176,-89.7757,-2.94237,135.991,-89.5786,-2.5979,136.119,-89.8023,-2.67612,135.993,-91.1005,-2.9576,134.739,-90.6062,-2.63524,134.755,-89.8629,-2.26883,134.943,-89.0762,-1.91083,135.272,-89.263,-1.92197,135.746,-90.0141,-2.23296,135.396,-88.0134,-1.77819,135.226,-88.2896,-1.50128,135.656,-88.4681,-1.54449,136.177,-90.6847,-2.55879,135.172,-91.1869,-2.95716,135.083,-87.7595,-2.30223,135.084,-86.9016,-1.96305,135.449,-87.1708,-1.40974,135.596,-87.4542,-1.08908,136.044,-86.2716,-1.09763,135.928,-86.0049,-1.6779,135.827,-86.5541,-0.718198,136.363,-85.0735,-1.41916,136.16,-85.9052,-2.20734,136.082,-85.0054,-1.92519,136.474,-85.3422,-0.808785,136.169,-86.7909,-2.50496,135.692,-87.6143,-1.13799,136.615,-85.1331,-2.11026,136.993,-84.2657,-1.80759,137.401,-84.1274,-1.63564,136.869,-83.1953,-1.32563,137.216,-83.3179,-1.49156,137.822,-84.4397,-1.67826,137.975,-83.5104,-1.32686,138.429,-83.883,4.12674,136.493,-83.7188,5.00363,136.439,-84.7219,4.99923,136.627,-84.8783,4.20879,136.71,-85.0239,3.6254,137.198,-84.2348,3.23502,136.781,-85.5343,5.00132,136.501,-85.6001,4.27139,136.67,-85.6555,3.8111,137.148,-86.3783,3.84519,136.963,-86.3396,4.28096,136.452,-86.3507,5.0087,136.237,-86.4104,3.80193,137.571,-85.6271,3.78321,137.793,-87.3141,3.85292,137.32,-87.2481,3.88775,136.75,-87.2229,4.31338,136.258,-85.0205,3.73044,137.935,-84.7778,3.44474,138.0,-84.9037,3.33556,137.4,-85.1006,3.10074,137.981,-85.0788,2.96028,137.168,-85.805,2.82842,137.79,-85.7945,2.68835,137.051,-85.6434,2.13421,136.603,-84.9147,2.27049,136.711,-83.9047,2.44426,136.666,-86.6903,2.57768,137.473,-86.5933,2.5195,136.759,-86.3843,2.01355,136.299,-87.7229,2.33081,137.08,-87.5577,2.30554,136.402,-87.7569,2.01649,137.77,-86.6213,2.33441,138.163,-85.6481,2.63831,138.54,-87.3121,1.81781,135.974,-88.8248,2.05585,136.631,-88.6186,2.03818,136.022,-88.3456,1.5844,135.616,-86.4214,1.93371,138.643,-85.4696,2.19464,139.039,-87.3225,1.68444,138.279,-88.1728,0.9232,135.683,-87.1495,1.15011,136.056,-89.4196,1.36613,135.256,-89.705,1.7942,135.662,-89.2403,0.709043,135.293,-87.4094,4.1181,137.85,-86.4219,4.09978,138.092,-87.2004,4.55883,138.129,-86.4128,4.59118,138.337,-85.5591,4.10988,138.374,-85.5558,4.64242,138.636,-87.2664,5.01607,138.05,-86.4677,5.10057,138.235,-87.794,4.55982,138.024,-87.818,4.28606,137.947,-87.8528,4.94245,137.969,-85.5637,5.19066,138.512,-88.1429,4.288,137.835,-88.2763,4.55424,137.861,-88.3372,4.93703,137.823,-88.4066,4.13436,137.531,-88.7917,4.5453,137.612,-88.8563,4.98951,137.565,-88.2794,5.21605,137.721,-88.5756,5.40421,137.35,-89.539,5.0211,137.311,-89.5157,5.43155,137.015,-89.4796,4.56619,137.36,-88.1883,3.93944,136.528,-89.1035,3.99302,136.294,-89.2221,3.90299,136.789,-88.2768,3.88731,137.053,-89.9401,4.07845,136.095,-90.0869,3.96076,136.555,-89.3614,4.1536,137.186,-90.2661,4.2218,136.969,-88.1577,4.35934,136.077,-89.0523,4.40741,135.875,-87.2688,5.00446,136.038,-88.2059,5.0016,135.857,-89.0998,5.0075,135.665,-89.9345,5.0183,135.568,-89.8775,4.48153,135.74,-89.2558,5.53711,135.936,-90.1002,5.49551,135.806,-88.3481,5.56846,136.137,-87.4061,5.60135,136.35,-86.4627,5.64323,136.564,-90.7426,4.14698,135.929,-90.8806,4.03802,136.358,-90.6885,4.53128,135.62,-91.0374,4.27275,136.75,-91.6009,4.2036,135.807,-87.9832,1.47808,138.007,-88.1613,1.72851,137.868,-88.5443,1.35122,137.714,-88.5374,1.63964,137.675,-88.9081,1.74423,137.225,-89.1785,1.26007,137.32,-90.0403,1.10416,136.909,-90.044,1.52336,136.676,-89.9321,1.80787,136.217,-90.8694,0.924878,136.633,-91.1097,1.27437,136.389,-90.9466,1.56443,135.944,-90.7286,1.53494,135.441,-91.8648,1.04642,136.177,-91.7829,1.32441,135.782,-91.6327,1.30009,135.316,-91.43,0.952707,134.963,-90.4712,1.14963,135.069,-91.2775,0.413086,134.904,-90.301,0.558009,135.051,-91.2541,-0.0750538,135.156,-90.3074,0.0654409,135.372,-89.2544,0.212207,135.703,-88.1628,0.444895,136.131,-89.4207,0.0613555,136.25,-90.481,-0.110547,135.865,-88.279,0.3191,136.722,-92.4079,0.873245,136.019,-92.4681,1.08361,135.698,-92.8274,0.721558,135.974,-93.0183,0.790871,135.696,-92.4272,1.05605,135.277,-92.9663,0.813578,135.345,-92.8802,0.426057,136.088,-93.2722,0.405089,135.711,-93.0523,0.50033,135.198,-92.8127,0.0211824,136.078,-93.2224,-0.0351537,135.68,-92.971,0.0852684,135.148,-92.3562,0.52657,136.172,-91.9907,0.616633,136.235,-91.9078,0.237331,136.199,-92.2711,0.134742,136.147,-91.4216,0.762614,136.505,-91.4999,1.00473,136.448,-91.7364,0.931791,136.378,-91.7635,0.663642,136.394,-91.3358,0.404028,136.47,-91.6867,0.319257,136.356,-90.7548,0.495492,136.61,-91.5387,0.0895731,136.285,-91.2906,0.143498,136.362,-91.5915,-0.0842133,136.065,-90.7897,0.0667621,136.318,-91.3695,-0.259823,135.625,-89.9023,0.652614,136.92,-89.6658,0.265217,136.703,-88.3974,1.00895,137.704,-88.1955,0.790025,137.676,-88.4854,0.555179,137.268,-89.0242,0.848365,137.324,-87.8369,1.12802,138.007,-87.8161,0.864409,137.877,-87.2983,0.788091,137.836,-87.1436,1.24076,138.296,-86.2218,1.42661,138.679,-86.1214,0.993755,138.254,-86.0899,0.767772,137.56,-87.1498,0.582911,137.183,-86.139,0.880642,136.843,-87.1052,0.697351,136.537,-85.1882,0.94863,137.814,-85.1438,1.16846,138.574,-85.3293,1.02284,137.051,-85.2733,1.617,139.056,-84.402,1.77225,139.395,-84.2297,1.25157,138.764,-84.5663,2.46373,139.457,-86.2278,1.33409,136.344,-92.1972,0.252183,134.913,-92.7534,-0.219544,135.216,-92.1261,-0.177397,135.12,-92.8193,-0.347186,135.589,-92.1372,-0.354641,135.54,-92.6456,-0.256167,135.922,-92.1698,-0.196928,135.929,-90.1435,4.6029,137.179,-90.195,5.0109,137.14,-90.631,4.41006,137.032,-90.6201,4.6463,137.09,-90.6658,4.9799,137.074,-90.7403,5.22306,136.972,-90.413,5.39805,136.841,-90.9946,5.22566,136.91,-91.2063,5.387,136.652,-91.0348,4.98527,136.975,-90.2807,5.63659,136.313,-89.4169,5.66443,136.492,-91.1028,5.61523,136.166,-90.9273,5.47447,135.696,-88.4896,5.68144,136.733,-91.9205,5.33195,136.438,-91.9058,5.51227,136.065,-91.8049,5.41215,135.643,-92.4319,5.22429,136.345,-92.5751,5.29448,136.054,-91.9313,5.0045,136.639,-92.5388,4.95785,136.47,-91.3961,5.01441,136.786,-91.6871,5.01008,135.434,-90.7575,5.02739,135.484,-92.4601,5.27825,135.721,-92.5594,4.96933,135.62,-91.8557,4.64026,136.648,-91.3332,4.64671,136.811,-90.9824,4.65843,136.989,-90.8768,4.42044,136.965,-83.4296,1.06563,138.968,-83.1793,0.74059,139.192,-83.8003,0.90139,138.517,-83.4319,1.42404,139.321,-82.5849,1.28803,139.692,-84.1068,0.840134,137.832,-84.4954,1.04379,137.899,-92.4835,4.57195,135.648,-91.6087,4.55052,135.526,-92.8778,4.95296,136.072,-92.2774,4.29099,135.797,-91.1636,-3.79452,135.096,-91.3448,-3.39924,135.085,-88.2283,8.62934,137.105,-88.5689,8.65902,137.057,-88.5391,8.84151,136.972,-88.2244,8.92748,136.864,-88.7723,8.69262,136.991,-88.687,8.86125,136.933,-88.718,8.99815,136.768,-88.6217,8.40221,137.09,-88.822,8.44903,137.021,-88.6677,8.21385,137.047,-88.8104,8.25332,137.003,-88.3069,8.30196,137.156,-88.4312,8.01077,136.979,-89.234,8.1148,136.511,-89.1979,8.14012,136.172,-89.509,8.30248,136.248,-89.5424,8.31951,136.521,-89.5423,8.52283,136.131,-89.6615,8.59136,136.499,-89.4664,8.58197,136.789,-89.4402,8.37152,136.74,-89.4815,8.81083,136.081,-89.3668,9.03028,136.123,-89.012,9.05907,136.009,-89.0501,8.73498,135.845,-89.1266,8.37816,135.916,-88.4699,9.01476,135.971,-88.4752,8.62699,135.775,-88.5633,9.14901,136.372,-84.4821,-0.562178,136.432,-83.6837,-0.195006,136.627,-84.1842,-1.16397,136.503,-83.2948,-0.847791,136.758,-84.2084,0.778977,137.226,-87.8615,8.47612,135.846,-87.8598,8.89411,136.034,-87.9943,9.06308,136.444,-75.548,1.85615,136.893,-75.3405,0.746109,136.975,-74.567,1.58588,137.778,-75.9152,2.48195,136.904,-86.0094,-2.42922,136.602,-86.9147,-2.45774,137.17,-78.0326,0.968247,140.816,-78.5874,1.82547,141.014,-79.1663,2.30334,140.987,-79.0942,2.92435,141.201,-79.3244,3.88304,141.212,-79.4418,1.40797,140.663,-79.8506,2.11262,140.731,-80.1059,2.83546,140.887,-80.3217,1.04601,140.36,-80.6989,1.8297,140.441,-81.0411,2.65208,140.597,-78.9968,0.668708,140.508,-79.9484,0.347196,140.206,-77.8564,0.37198,140.45,-78.4848,0.0378518,140.116,-79.3971,-0.463249,139.645,-79.4601,4.95285,141.039,-79.4452,5.74617,140.745,-79.7625,4.40471,141.026,-80.5305,4.34289,140.735,-80.525,5.00114,140.603,-80.3369,3.64914,140.861,-80.5189,5.68453,140.335,-80.0343,7.88957,138.22,-78.891,7.93227,138.63,-79.3928,7.76264,139.287,-80.4899,7.78006,138.861,-78.4916,7.57978,137.86,-77.2919,7.53497,138.234,-79.6763,7.53853,137.543,-81.6578,7.80623,137.266,-80.7273,7.63095,137.349,-81.0722,7.91147,137.976,-82.0313,7.96763,137.838,-81.5213,7.8125,138.547,-82.4484,7.84566,138.334,-79.8906,7.3418,139.647,-80.9511,7.41863,139.26,-81.9649,7.49618,138.957,-82.8048,7.5465,138.757,-80.3605,6.87636,139.854,-81.3384,6.9589,139.532,-82.2616,7.00624,139.274,-83.0412,7.03908,139.055,-80.5628,6.31693,140.067,-81.4847,6.34708,139.747,-81.4929,5.67271,140.005,-82.3665,6.34498,139.48,-83.2024,6.30549,139.184,-82.3522,5.62859,139.774,-83.1003,5.55077,139.597,-79.7694,6.26356,140.388,-83.2904,7.87547,138.149,-82.9543,8.0036,137.69,-82.627,7.91579,137.178,-82.5259,7.4531,136.69,-81.5791,7.20274,136.67,-83.563,7.5855,136.658,-83.5997,8.01576,137.018,-84.3649,8.11623,136.847,-84.4178,7.67024,136.539,-83.8114,8.10762,137.509,-84.471,8.2277,137.346,-80.6625,6.8828,136.752,-84.0488,7.96027,137.965,-84.6288,8.05894,137.809,-85.0803,8.38356,137.184,-85.0434,8.25138,136.675,-85.1475,7.78984,136.406,-85.1733,8.20044,137.669,-85.8597,8.3807,137.547,-85.761,8.56018,137.007,-85.2594,7.87438,138.012,-85.7522,8.00908,137.905,-84.778,7.75146,138.152,-84.2494,7.66522,138.329,-84.3774,7.20935,138.472,-84.904,7.32718,138.258,-78.2125,6.77658,137.187,-76.9717,6.67794,137.482,-79.5031,6.77068,136.939,-79.5656,5.70615,136.632,-78.1675,5.70689,136.852,-76.9015,5.6146,137.141,-78.2261,4.71469,136.807,-76.978,4.66938,137.068,-76.6266,2.41861,136.558,-77.7644,2.25713,136.325,-77.2911,1.37594,136.01,-76.3017,1.61585,136.341,-79.1373,1.92083,136.403,-78.0406,3.06125,136.683,-79.4382,2.84326,136.659,-79.607,4.66861,136.602,-82.5056,4.30006,136.428,-82.4859,5.16654,136.385,-81.959,6.33697,136.386,-81.1078,5.70981,136.438,-78.5393,0.99297,136.0,-80.8355,1.50744,136.653,-79.879,0.583481,136.348,-77.7322,-0.0593595,135.738,-76.6639,0.522746,136.028,-76.0485,0.935213,136.353,-74.7271,0.426079,139.161,-75.4649,-0.408791,138.746,-76.1423,-0.190396,139.603,-75.7089,-0.957424,137.448,-76.1251,-1.08383,138.405,-75.1118,-0.170506,137.806,-76.8314,-0.829488,139.156,-76.3238,-1.55655,137.054,-76.7364,-1.64513,137.98,-77.4556,-1.40996,138.676,-76.8792,-2.0047,136.657,-77.3121,-2.38871,136.25,-77.5695,-2.53325,136.984,-77.2338,-2.11849,137.491,-78.2008,-2.43217,137.565,-77.929,-1.95336,138.132,-77.6679,-2.79188,135.853,-77.8219,-2.96331,136.502,-78.4118,-2.86126,137.051,-78.0928,-3.24389,135.487,-78.2351,-3.47341,136.067,-78.7253,-3.34681,136.589,-78.6599,-3.97652,135.612,-78.5119,-3.67461,135.062,-79.1004,-3.88311,136.116,-78.2647,-2.83918,135.047,-78.687,-3.22277,134.687,-79.1536,-3.53378,134.232,-78.9402,-4.04486,134.531,-78.689,-2.39024,134.9,-79.0899,-2.80671,134.608,-79.5611,-3.15172,134.258,-79.0825,-4.48966,135.091,-78.3595,-1.94505,135.174,-77.8743,-2.41514,135.351,-79.1937,-2.08561,135.189,-78.9477,-1.62687,135.474,-77.516,-1.98042,135.642,-78.1121,-1.48186,135.428,-78.8575,-1.18967,135.719,-79.5447,-2.55028,134.877,-79.6644,-3.81051,133.732,-79.4185,-4.34864,133.964,-79.5426,-4.82614,134.469,-79.5719,-4.87955,134.898,-79.4169,-4.77435,135.124,-80.0806,-4.96727,134.737,-79.9747,-5.00498,133.991,-80.3404,-5.08023,134.423,-79.9299,-4.63518,133.533,-79.8986,-4.87298,135.082,-79.0447,-2.52822,137.356,-78.9452,-2.14016,137.86,-79.5314,-1.7407,137.72,-79.7646,-1.4293,138.064,-78.9158,-1.59134,138.549,-79.4619,-2.05741,137.329,-78.3453,-0.999601,139.189,-79.5435,-1.08884,138.966,-81.4782,-0.69751,139.132,-80.5693,-0.541119,139.408,-80.2151,-1.06685,138.451,-80.9839,-0.997989,138.023,-77.1328,-1.48251,135.889,-77.9396,-0.91715,135.603,-76.6119,-0.897148,136.126,-78.9696,-0.701692,135.908,-79.5212,-1.17545,136.534,-79.9501,-0.791088,136.86,-79.4236,-1.56169,136.197,-79.2212,-0.118739,136.033,-80.0574,-0.316765,136.574,-81.2835,3.49386,140.548,-81.431,4.25691,140.404,-82.2764,4.09999,140.121,-82.1599,3.30168,140.305,-82.9772,3.07535,140.12,-83.143,3.89144,139.803,-81.9293,2.41662,140.344,-82.7718,2.20486,140.109,-83.0921,4.7824,139.817,-82.3371,4.88442,140.028,-81.4902,4.97937,140.27,-83.8137,4.11546,139.389,-83.8335,4.75227,139.516,-83.8059,5.41745,139.316,-84.6776,4.70064,139.029,-84.6277,5.29414,138.877,-84.6493,4.07468,138.725,-83.7936,6.60837,138.74,-83.7455,5.92881,138.908,-83.8212,6.27745,138.634,-84.1017,6.27836,138.24,-84.3806,6.70277,138.251,-84.4545,5.79008,138.379,-84.9738,6.94504,138.007,-84.5113,6.56168,137.636,-84.9911,6.78472,137.521,-85.5556,5.60248,138.074,-83.8996,3.69212,139.234,-84.3489,3.57707,138.716,-83.8045,3.36085,139.513,-84.6683,3.05415,138.917,-81.5886,1.53847,140.12,-83.557,1.99748,139.804,-83.7214,2.75546,139.862,-82.1326,0.476786,139.827,-81.2407,0.755706,140.074,-82.958,0.130833,139.496,-81.8427,-0.154513,139.758,-82.7357,-0.514793,139.424,-83.8417,-0.248836,139.047,-83.6944,-0.896029,138.927,-82.4562,-0.977473,138.876,-82.2065,-1.16252,138.15,-82.2995,-0.39387,136.876,-82.7246,0.62465,136.693,-80.0843,-3.43792,133.841,-79.9923,-2.96124,134.54,-80.514,-3.30536,134.173,-80.3819,-2.97383,135.01,-79.9231,-2.51236,135.399,-80.8966,-3.40786,134.643,-80.5715,-3.26974,135.514,-81.0607,-3.78007,135.106,-80.0916,-2.73321,135.93,-79.9553,-3.12532,136.248,-80.4201,-3.81131,135.839,-80.8697,-4.34777,135.339,-79.5864,-2.02282,135.807,-79.7306,-2.20131,136.419,-79.5847,-1.71587,136.939,-80.6375,-3.83562,133.487,-81.0424,-3.74191,133.839,-80.2202,-4.16023,133.347,-81.4563,-4.30767,133.598,-81.0972,-4.37966,133.294,-81.3699,-3.88095,134.299,-81.7146,-4.38852,134.005,-80.7151,-4.59626,133.17,-81.6563,-4.87602,133.527,-81.3319,-4.92572,133.295,-81.0144,-4.94884,133.181,-81.4667,-4.2297,134.712,-81.7621,-4.61995,134.376,-81.6336,-5.29208,133.706,-81.2723,-5.32032,133.506,-80.8692,-5.2142,133.343,-81.0061,-5.39627,133.89,-80.7318,-5.32358,133.653,-80.3842,-5.19596,133.758,-80.4254,-4.94437,133.332,-81.8766,-4.85782,133.839,-81.8476,-5.16742,133.881,-81.8964,-4.89167,134.138,-81.7612,-5.14915,134.202,-81.5316,-4.93978,134.553,-81.4081,-5.37525,134.125,-81.0961,-5.17875,134.468,-80.654,-5.24908,134.177,-81.2359,-4.65777,134.878,-80.8099,-4.98288,134.749,-80.5489,-4.82876,135.054,-80.5629,-4.48828,135.533,-80.3079,-4.7217,135.351,-80.4142,-4.3112,135.717,-80.0983,-4.4874,135.646,-79.6853,-4.69323,135.411,-79.4199,-4.35577,135.709,-79.8952,-4.07171,135.939,-79.5821,-3.52281,136.316,-84.5535,5.79434,137.046,-83.5727,5.95165,136.666,-84.2541,6.20027,137.237,-82.8377,6.71413,136.505,-83.8142,6.9863,136.635,-84.2603,6.5166,137.024,-84.6362,7.13591,136.592,-84.8881,6.81671,136.991,-85.3406,7.28875,136.488,-85.507,7.01983,136.886,-85.8382,7.94595,136.271,-86.0026,7.47213,136.344,-86.1479,7.22032,136.716,-86.5137,8.12415,136.066,-86.6684,7.65067,136.141,-86.8294,7.412,136.513,-86.9344,7.41426,136.967,-86.2076,7.21083,137.189,-85.5602,6.99459,137.377,-85.7381,8.40143,136.51,-86.4506,8.58185,136.313,-86.5175,8.76561,136.792,-84.3044,6.27118,137.712,-84.6727,5.94096,137.675,-85.574,5.79497,137.458,-85.5335,5.65973,136.829,-86.5553,5.50189,137.812,-86.5592,5.73276,137.208,-87.583,5.40935,137.624,-87.5283,5.69204,136.979,-84.7166,1.56471,136.658,-83.6956,1.68646,136.667,-84.5329,1.01379,137.092,-83.6936,0.8992,136.79,-85.3925,7.47802,138.092,-85.5212,7.14986,137.83,-86.1805,7.40808,137.665,-85.873,7.65521,137.958,-86.9813,7.63422,137.41,-86.6829,7.71821,137.671,-86.4084,7.63871,137.766,-86.2901,7.82289,137.865,-87.7696,7.80572,137.134,-87.6591,7.60958,136.762,-87.8022,8.16531,137.318,-87.2048,8.03453,137.529,-86.7116,7.94371,137.718,-87.5101,7.62111,136.347,-88.2945,7.79723,136.62,-88.1386,7.81661,136.237,-87.696,8.54426,137.257,-87.093,8.394,137.479,-86.617,8.22974,137.682,-86.6791,8.61933,137.301,-86.4614,8.40363,137.599,-87.4962,8.82707,137.006,-86.1927,8.10666,137.823,-87.3435,7.85711,136.006,-87.9771,8.0579,135.933,-87.2068,8.30496,135.925,-88.5741,8.21904,135.867,-88.7051,7.97597,136.168,-88.8144,7.95682,136.538,-87.1802,8.74847,136.145,-87.296,8.94183,136.583,-88.8891,8.15301,136.863,-89.2118,8.26229,136.78,-89.1936,8.51913,136.898,-88.9767,8.46821,136.953,-88.9228,8.75427,136.929,-89.1456,8.80689,136.874,-86.1814,8.32015,137.688,-85.4797,1.4707,136.582,-87.6604,-2.82702,135.328,-87.9531,5.215,137.812,-92.3187,0.727416,134.966,-77.0793,0.166642,140.243,-77.6923,-0.425155,139.706,-83.5638,7.59567,138.548,-83.7394,7.12325,138.768,-79.252,-2.96316,136.826,-79.6156,-2.5387,136.774,-79.7545,-1.36623,137.327,-80.1195,-1.1322,137.591,-80.9385,0.110632,139.968,-76.7915,3.16126,136.897,-82.1266,-0.991921,137.441,-80.9853,-0.0733063,136.824,-80.9694,-0.81517,137.384,-75.9477,-0.219793,136.512,-74.4756,0.759317,138.33,-82.5693,5.76077,136.407,-80.9354,2.6354,136.657,-81.0543,4.54699,136.471,-81.6508,0.718668,136.707,-82.4681,2.55828,136.638,-82.5449,3.40374,136.534,-81.0279,3.58219,136.553,-79.5775,3.74399,136.661,-78.2113,3.86456,136.82,-76.9746,3.88824,137.051,-82.4307,1.69689,136.702,-76.1581,3.86135,137.286,-73.7495,2.41659,138.339,-73.9093,1.03436,139.499,-73.6869,1.52493,138.868,-2.92128,-11.6999,167.706,-2.56614,-12.0745,168.13,-2.48619,-12.1114,167.646,-2.78681,-11.7495,167.292,-7.66022,-3.5205,173.467,-7.70033,-3.44395,174.223,-7.57888,-3.92315,174.435,-7.54093,-4.10159,173.398,-8.28598,-2.24781,174.316,-8.7375,-1.80894,174.889,-8.73522,-2.04562,175.298,-8.24675,-2.70184,174.421,-8.31304,-2.29288,175.397,-7.99911,-3.10114,174.394,-8.14599,-0.905697,171.759,-7.92791,-1.29681,171.238,-8.05258,-0.90633,171.066,-8.37584,-0.449731,171.714,-8.51416,-0.656909,172.681,-8.84024,-0.127584,172.732,-8.74798,-0.583327,173.783,-9.10389,-0.0458456,173.949,-8.76795,0.33004,172.852,-9.11564,0.397767,174.2,-9.0824,-1.10695,175.093,-9.12006,-1.0506,175.581,-8.63268,-1.07572,175.743,-8.32049,0.377439,172.927,-8.66443,0.420574,174.242,-8.27752,-0.0641271,171.706,-7.84713,0.00733085,171.802,-7.93512,-0.615621,170.863,-7.52847,-0.569455,170.927,-7.48025,-1.36582,170.177,-7.48402,-2.06496,169.676,-7.25403,-2.2575,169.806,-7.21618,-1.40107,170.384,-7.54125,-0.398941,171.887,-7.91063,-0.155981,172.79,-8.16422,-0.143857,173.812,-8.09848,-1.34732,175.141,-7.78955,-2.68133,174.925,-7.28495,-0.818579,171.106,-7.10746,-0.816289,171.218,-7.19913,-0.534698,171.896,-7.09996,-2.13844,169.847,-7.05152,-0.838933,170.548,-7.22682,-2.8065,169.838,-7.44566,-2.72325,169.763,-7.77993,-2.24804,169.698,-7.72384,-1.63395,174.708,-7.62836,-2.84825,174.729,-7.65271,-2.84066,170.225,-7.37447,-3.11923,170.378,-7.98695,-2.36263,170.248,-7.89206,-1.4555,170.151,-8.05355,-1.6802,170.567,-7.97093,-1.78873,170.952,-7.92736,-2.29426,170.936,-7.5466,-3.07492,171.388,-7.67294,-3.26758,171.993,-7.48675,-3.71865,171.719,-7.38674,-3.43079,171.027,-7.55426,-3.9651,172.511,-7.73154,-3.42375,172.707,-7.79071,-2.95244,172.875,-7.82262,-3.0546,173.645,-8.84967,-0.816857,174.524,-9.17063,-0.418631,174.785,-8.88868,-1.13788,174.806,-9.23151,-0.124314,175.179,-8.7706,-0.0838714,175.265,-8.20672,-0.448655,174.687,-7.63005,-0.45188,173.503,-7.72309,-0.77949,174.239,-7.43674,-0.375572,172.698,-7.94188,-2.7334,173.728,-7.64931,-2.52696,172.845,-7.86015,-2.19389,173.245,-8.05127,-2.30499,173.756,-7.74908,-2.94547,172.187,-7.66969,-2.67038,171.678,-7.53395,-2.98686,170.928,-7.71506,-2.74499,170.931,-6.78527,-1.05824,169.238,-6.47527,-1.43355,167.69,-6.4488,-0.0834758,167.854,-6.62333,0.116016,169.311,-7.77265,-1.32565,175.401,-7.70249,-2.56003,175.586,-7.18102,-0.0206119,171.842,-6.84735,0.442521,170.65,-7.07621,0.852892,171.978,-7.6829,-0.405876,174.796,-7.54504,0.0813083,173.907,-7.37657,0.219505,172.913,-4.83243,4.43651,167.724,-5.56582,3.26696,167.776,-5.63901,3.2588,166.135,-4.85764,4.46022,166.074,-6.03008,2.14493,167.837,-6.30081,1.04774,167.888,-6.25913,1.01857,166.242,-6.05558,2.11773,166.203,-3.73356,5.51408,167.693,-3.66884,5.51963,166.062,-2.47457,6.16449,167.683,-2.41516,6.07233,166.064,-6.27715,-1.14684,165.771,-6.31092,-0.0824152,166.138,-1.24479,6.21334,166.105,-1.25462,6.40414,167.706,-7.40478,-5.01418,173.37,-7.37538,-4.71157,172.269,-7.30158,-4.32844,171.331,-7.22271,-3.91002,170.544,-7.1439,-3.44786,169.901,-7.03686,-2.92046,169.444,-6.90583,-2.14946,169.243,-3.46892,-8.76246,183.46,-3.35477,-9.99082,182.257,-4.51454,-9.02514,181.907,-4.66532,-7.87006,182.948,-5.53889,-7.93648,181.467,-5.66707,-7.00286,182.327,-3.29107,-10.858,181.066,-4.44678,-9.85552,180.824,-5.49465,-8.65129,180.46,-1.02818,-11.9646,181.204,-1.04534,-11.1924,182.515,-1.03584,-10.2605,183.7,-4.3756e-005,-10.4483,183.675,-3.2782,-11.3995,180.013,-4.43691,-10.4225,179.818,-5.48006,-9.21731,179.446,-6.3433,-7.85827,178.892,-6.35909,-7.33063,180.033,-1.02054,-12.4198,180.081,-4.51376e-005,-12.518,180.077,-2.12897,-11.5679,181.185,-2.11486,-12.0619,180.084,-2.16796,-10.7336,182.46,-2.19253,-9.58675,183.742,-6.32499,-6.81047,181.077,-6.23808,-6.40064,181.813,-7.1449,-6.13188,173.22,-6.7426,-7.44589,172.866,-6.85558,-6.63906,171.392,-7.15207,-5.64556,171.916,-6.85735,-6.00418,170.244,-7.11313,-5.12149,170.835,-6.81147,-5.366,169.278,-7.05754,-4.57865,169.955,-6.73378,-4.67373,168.496,-6.97359,-3.97572,169.272,-6.59081,-3.91004,167.91,-6.83483,-3.29459,168.76,-6.27342,-8.43455,177.8,-5.46211,-9.69484,178.515,-6.13597,-9.07683,176.968,-5.42789,-10.1257,177.68,-4.4556,-10.8254,178.928,-4.48202,-11.1479,178.088,-3.30447,-11.7523,179.116,-3.34415,-12.0165,178.272,-2.12623,-12.3807,179.164,-2.13933,-12.6012,178.318,-1.02192,-12.7076,179.153,-1.01636,-12.8846,178.315,-6.59515,-8.17904,175.912,-6.95938,-6.94263,176.623,-7.00677,-6.35629,178.288,-6.99915,-5.88582,179.638,-6.9015,-5.51527,180.869,-7.1317,-6.50422,174.743,-6.77121,-7.67147,174.539,-6.14927,-2.44387,166.555,-6.64506,-2.47516,168.353,-6.36047,-3.09477,167.413,-6.01487,-2.09751,164.976,-5.40951,-10.5245,176.862,-6.01309,-9.63055,176.246,-4.52979,-11.4462,177.23,-3.41245,-12.2469,177.404,-5.33493,-10.8286,176.093,-5.86134,-10.0503,175.579,-1.03891,-12.9939,177.508,-2.18723,-12.7662,177.474,-1.05242,-13.0257,176.712,-2.22029,-12.8058,176.647,-3.42937,-12.3486,176.556,-4.50906,-11.6413,176.409,-6.11252,-9.46807,174.937,-6.34447,-8.92747,175.394,-6.44871,-8.55849,174.389,-6.37673,-8.55213,173.369,-6.16158,-9.20749,174.256,-6.07252,-9.23909,173.579,-5.84852,-9.51841,172.977,-6.11599,-8.94316,172.524,-6.35245,-8.25208,171.781,-6.47861,-7.56187,170.724,-6.47239,-6.90605,169.624,-6.41174,-6.22021,168.599,-6.32675,-5.50581,167.715,-6.20456,-4.77991,167.006,-5.99954,-4.03827,166.368,-5.75123,-3.415,165.432,-5.57313,-2.99017,163.873,-2.24693,-12.5835,170.579,-1.95865,-13.0005,170.87,-1.81042,-13.1437,170.281,-2.00237,-12.7499,170.01,-2.97024,-10.7731,164.874,-3.35241,-10.1355,164.388,-3.62831,-10.0756,165.401,-3.23691,-10.6718,165.561,-2.7044,-12.0103,168.697,-2.20912,-12.4306,169.084,-2.10071,-12.497,168.497,-0.863958,-12.1058,164.368,-0.990568,-12.0518,163.68,-1.21025,-11.3897,162.339,-1.15864,-10.499,161.949,5.74584e-005,-12.1225,162.836,-1.1176,-11.9275,163.048,-4.12957,-9.24846,165.329,-4.30532,-9.69537,166.544,-3.81828,-10.3009,166.364,-3.41759,-10.7438,166.284,-3.09564,-11.0617,166.27,-2.92852,-11.0718,165.76,-2.68603,-11.1987,165.261,-2.28921,-11.4532,164.735,-2.55787,-11.0698,164.237,-2.45216,-11.4553,165.609,-2.08168,-11.6826,165.172,-2.9258,-10.4623,163.601,-4.71208,-8.2683,165.641,-4.85182,-8.92101,166.887,-4.52045,-7.78887,164.455,-3.78991,-9.15132,163.696,-2.43139,-12.3227,169.681,-2.92958,-11.9067,169.294,-3.23773,-11.7464,169.925,-2.6954,-12.1859,170.286,-2.93119,-12.0505,170.938,-3.54739,-11.5716,170.652,-3.75777,-11.2382,169.403,-4.35631,-10.7742,170.249,-4.72027,-10.1556,169.15,-4.12079,-10.7343,168.63,-3.36286,-11.49,168.795,-3.68042,-11.0727,168.137,-3.0998,-11.6251,168.228,-3.37034,-11.2619,167.66,-3.13202,-11.3843,167.247,-2.97433,-9.69795,162.952,-4.85631,-9.59388,168.085,-4.30171,-10.2401,167.661,-3.84755,-10.6653,167.304,-3.47995,-10.9534,167.0,-3.17922,-11.1678,166.771,-1.57249,-12.9882,169.437,-1.38655,-13.4108,169.946,-1.50329,-12.9769,168.763,-0.785655,-13.4381,169.367,-0.786339,-13.3459,168.875,-4.35289e-005,-13.4849,168.913,-0.755847,-13.7491,169.832,-2.42427,-12.4202,171.19,-2.0575,-12.7409,171.444,-1.7816,-12.9982,171.715,-1.79259,-13.1966,171.313,-2.85134,-11.2738,166.291,-2.68549,-11.3201,165.955,-2.94896,-11.3264,166.626,-2.93898,-11.4816,166.955,-2.05978,-12.5306,167.983,-1.48595,-13.0006,168.247,-0.793894,-13.3666,168.412,-4.41366e-005,-13.5037,168.456,-1.73986,-11.7411,164.174,-1.55999,-11.9113,164.734,-1.95919,-11.4889,163.594,-2.18622,-10.9065,162.909,-2.16768,-10.0704,162.42,-5.85865,-9.02685,171.118,-5.98084,-8.4511,170.124,-5.98586,-7.82665,169.049,-5.92636,-7.14209,167.972,-5.84423,-6.44467,166.987,-5.73742,-5.77826,166.146,-5.23205,-9.83743,170.641,-5.38684,-9.33822,169.625,-5.44304,-8.75265,168.546,-5.40314,-8.06755,167.404,-5.30925,-7.37488,166.297,-5.17935,-6.75644,165.323,-1.99716,-9.14544,162.203,-2.8988,-8.79684,162.653,-2.71634,-7.6448,162.167,-3.52985,-7.09258,162.486,-3.72457,-8.09891,163.138,-4.21405,-6.23921,162.836,-4.40607,-7.14911,163.683,-4.82644,-5.37747,163.521,-5.03957,-6.1354,164.501,-5.32521,-4.44844,164.367,-5.56756,-5.11529,165.364,-1.00856,-9.48891,161.864,-0.0014027,-9.86523,161.688,-0.0375573,-8.59589,161.72,-0.894851,-8.34886,161.752,-1.82182,-8.01412,161.889,-5.11413,-3.83786,162.869,-2.55931,-6.48143,161.412,-3.30454,-6.01054,161.581,-3.96772,-5.27338,161.753,-4.59248,-4.58126,162.146,-1.77764,-13.472,170.431,-1.84711,-13.3804,170.815,-1.74072,-13.7093,170.891,-1.71286,-13.8057,170.541,-1.48048,-14.0521,171.021,-1.48053,-14.1507,170.661,-1.11578,-14.4002,171.148,-1.12753,-14.5097,170.761,-1.67774,-13.5936,171.235,-1.39828,-13.905,171.398,-0.67062,-14.929,171.293,-0.677271,-15.0048,170.757,-4.91934e-005,-15.3153,170.734,-1.29198,-13.7165,171.757,-1.01483,-14.0283,171.941,-1.06483,-14.2326,171.55,-0.637751,-14.5086,172.172,-0.64847,-14.7362,171.751,-4.76477e-005,-14.8031,172.311,-1.57306,-13.4357,171.558,-1.80699,-13.3672,171.111,-4.54258e-005,-14.579,172.749,-0.637147,-14.2918,172.599,-1.00913,-13.8327,172.353,-1.25258,-13.5175,172.153,-1.51496,-13.2495,171.949,-1.57677,-13.6035,170.157,-1.57879,-13.8799,170.281,-4.25608e-005,-15.1134,170.229,-0.648513,-14.8514,170.333,-4.33155e-005,-14.914,170.028,-0.478322,-14.7703,170.144,-1.39168,-14.2007,170.403,-1.08454,-14.5373,170.482,-4.5537e-005,-14.5785,169.939,-0.491841,-14.1716,169.989,-0.430944,-14.4897,170.074,-0.614378,-14.6504,170.228,-0.771626,-14.6928,170.327,-1.01666,-14.4959,170.376,-1.38932,-13.9051,170.159,-1.37126,-13.6942,170.057,-0.646675,-14.1205,170.088,-0.864797,-13.8192,170.016,-1.17485,-13.6437,169.999,-1.24963,-14.1959,170.284,-0.575551,-14.4241,170.167,-0.805525,-14.1098,170.168,-0.710518,-14.4056,170.242,-0.67855,-14.5835,170.271,-0.769011,-14.6086,170.325,-0.899281,-14.4456,170.324,-1.06378,-14.1624,170.233,-1.19089,-13.8859,170.122,-1.24337,-13.7318,170.048,-1.13514,-13.7116,170.03,-0.976817,-13.845,170.087,-5.2688,-10.5644,174.847,-5.58674,-10.3591,175.101,-5.12232,-10.9668,175.521,-4.87791,-11.001,175.192,-4.35765,-11.627,175.791,-4.17321,-11.5175,175.448,-5.29976,-10.2943,173.584,-4.98788,-10.5651,173.322,-5.23471,-10.3132,172.948,-5.57565,-9.96619,173.299,-4.93639e-005,-13.4191,174.89,-0.687746,-13.1521,174.732,-0.760462,-13.011,175.197,-4.18998,-11.1369,172.556,-3.56473,-11.5017,172.545,-3.68393,-11.4991,172.042,-4.33512,-11.0317,172.033,-5.467,-9.9727,172.506,-3.34601,-12.2114,175.891,-3.21771,-11.9409,175.507,-1.01893,-12.9332,175.82,-4.5343e-005,-13.1028,176.061,-2.97835,-11.7715,172.656,-3.395,-11.495,172.981,-2.83014,-11.6733,173.085,-3.07888,-11.8628,172.173,-2.57605,-12.1281,172.346,-2.51212,-11.9689,172.81,-4.01283,-11.2227,172.994,-2.0948,-11.9331,173.366,-2.39892,-11.8039,173.224,-2.33214,-11.6503,173.59,-2.0686,-11.7281,173.698,-4.76367,-10.7242,172.694,-4.9516,-10.5026,172.187,-4.55672,-10.8948,173.118,-2.22355,-12.6284,175.925,-2.27407,-12.2282,175.433,-2.27089,-11.808,175.169,-3.10126,-11.7091,175.32,-4.03844,-11.4236,175.269,-4.6978,-10.9774,175.004,-5.01466,-10.6485,174.734,-5.04297,-10.5103,173.844,-4.76868,-10.7407,173.648,-4.37798,-11.0328,173.484,-3.86478,-11.3121,173.382,-3.27145,-11.5027,173.382,-2.72524,-11.5941,173.475,-1.53742,-12.4399,175.242,-1.73993,-11.9507,174.923,-5.67728,-9.54213,171.921,-5.09915,-10.2158,171.523,-4.4025,-10.9042,171.341,-3.69361,-11.5033,171.411,-2.54367,-12.2725,171.801,-3.06676,-11.9454,171.594,-1.56032,-12.7926,172.869,-1.2953,-13.0634,173.041,-1.27631,-13.3093,172.6,-1.53383,-13.042,172.413,-0.636773,-14.0793,173.043,-0.622584,-13.8519,173.486,-4.40199e-005,-14.1162,173.632,-5.8055,-9.91847,174.646,-5.47385,-10.2529,174.526,-5.18981,-10.437,174.499,-1.30178,-12.7675,173.448,-1.56288,-12.4999,173.289,-1.32171,-12.4631,173.831,-1.57,-12.2146,173.672,-1.42042,-12.1366,174.23,-1.63425,-11.9436,173.978,-2.17981,-12.3522,172.519,-2.15634,-12.141,172.961,-1.49794,-12.0632,174.626,-1.23382,-12.5285,174.843,-1.12201,-12.6283,174.434,-1.04875,-13.1126,173.649,-1.04212,-13.3928,173.233,-1.03394,-13.63,172.794,-1.06911,-12.838,174.044,-4.28675e-005,-13.6279,174.475,-0.641893,-13.3563,174.321,-5.01409e-005,-13.8659,174.061,-0.621911,-13.5997,173.912,-1.81989,-12.7942,172.215,-2.13727,-12.5469,172.008,-1.85587,-12.5655,172.696,-1.85154,-12.3079,173.13,-1.82906,-12.0606,173.529,-1.84495,-11.8225,173.827,-5.85856,-9.71954,174.186,-5.77867,-9.75146,173.724,-5.55075,-10.1057,174.203,-5.48934,-10.1298,173.883,-5.26149,-10.3462,174.27,-5.21002,-10.3754,174.052,-3.04469,-11.5183,173.992,-2.48117,-11.4563,174.108,-2.59066,-11.5373,173.823,-3.1527,-11.5302,173.725,-2.13944,-11.3065,174.214,-2.23228,-11.4964,173.924,-1.95094,-11.2697,174.256,-2.01735,-11.5039,173.996,-1.83594,-11.2854,174.278,-1.8459,-11.5488,174.074,-1.74603,-11.3085,174.326,-1.702,-11.6123,174.185,-1.69503,-11.3178,174.415,-1.61406,-11.6653,174.356,-1.7228,-11.3015,174.524,-1.65752,-11.6412,174.572,-1.88379,-11.2974,174.652,-1.83125,-11.5637,174.782,-2.28827,-11.4037,174.831,-2.23512,-11.5051,175.016,-3.01698,-11.5902,175.005,-3.02864,-11.5785,175.197,-3.94055,-11.3927,175.146,-3.86465,-11.449,174.974,-4.45962,-10.9818,174.771,-4.56084,-10.9478,174.884,-4.68934,-10.686,174.625,-4.82642,-10.6655,174.673,-4.77604,-10.565,174.522,-4.95701,-10.5207,174.505,-4.79809,-10.5432,174.431,-5.00479,-10.4734,174.351,-4.75881,-10.6006,174.355,-4.95924,-10.5167,174.213,-4.65792,-10.7285,174.277,-4.4829,-10.929,174.175,-4.60352,-10.8651,173.938,-4.82724,-10.6479,174.081,-4.17695,-11.1909,174.056,-4.25348,-11.1415,173.8,-3.67202,-11.4244,173.972,-3.75283,-11.3941,173.713,-4.52239,-10.752,174.386,-4.38615,-10.9286,174.301,-4.37764,-11.0023,174.717,-4.58088,-10.7174,174.618,-3.81275,-11.4335,174.867,-1.98734,-11.2072,174.552,-2.34127,-11.3449,174.712,-1.8638,-11.1968,174.465,-1.83643,-11.2134,174.417,-1.85759,-11.2154,174.379,-2.17552,-11.1796,174.332,-2.00574,-11.1703,174.362,-2.45704,-11.3693,174.238,-1.88324,-11.1754,174.394,-1.87113,-11.1703,174.411,-1.9041,-11.1485,174.436,-3.00717,-11.552,174.873,-2.95435,-11.4372,174.132,-3.61299,-11.3735,174.108,-4.6039,-10.6353,174.446,-2.02609,-11.1444,174.501,-2.36472,-11.1813,174.66,-3.0146,-11.3878,174.86,-3.79126,-11.2687,174.875,-4.32234,-10.9151,174.738,-4.50701,-10.6833,174.646,-4.5004,-10.6099,174.479,-4.41358,-10.7051,174.403,-4.28821,-10.8472,174.302,-2.9624,-11.2679,174.126,-3.59563,-11.2306,174.102,-2.50874,-11.1694,174.241,-2.24817,-11.0807,174.427,-2.03306,-11.1383,174.427,-4.12687,-11.1636,174.195,-4.06349,-11.0435,174.188,-4.64035,-10.5978,174.555,-4.55645,-10.5839,174.59,-1.91216,-11.1974,174.364,-1.92379,-11.1591,174.4,-4.6439,-10.5787,174.496,-4.55059,-10.5649,174.535,-2.61442,-10.8983,174.169,-2.41393,-10.8581,174.398,-2.54923,-10.9031,174.69,-3.0399,-10.9504,174.877,-3.72119,-10.8082,174.918,-4.21752,-10.6376,174.795,-4.42835,-10.532,174.675,-4.50556,-10.4857,174.603,-4.51304,-10.4757,174.545,-4.44287,-10.4917,174.474,-4.31239,-10.537,174.368,-4.16687,-10.6232,174.242,-3.96241,-10.7522,174.111,-3.59751,-10.8963,174.015,-3.06693,-10.9454,174.033,-2.67923,-10.5039,174.239,-2.71026,-10.4787,174.561,-3.0447,-10.381,174.63,-3.54796,-10.3028,174.663,-3.99316,-10.2992,174.631,-4.26007,-10.3251,174.56,-4.40131,-10.347,174.527,-4.46801,-10.3763,174.523,-4.41326,-10.3722,174.465,-4.28342,-10.3467,174.384,-4.11048,-10.3442,174.3,-3.86874,-10.3437,174.214,-3.5283,-10.3551,174.141,-3.0944,-10.3858,174.137,-6.34436,3.89354,179.956,-6.46814,2.24807,181.791,-7.12017,1.44406,180.422,-7.01235,2.81228,178.795,-5.30357,5.00023,181.064,-5.46348,2.97827,183.052,-7.14219,-0.234678,181.54,-6.48794,0.220549,182.993,-5.50047,0.503186,184.277,-3.88405,5.94636,182.054,-4.0746,3.62628,184.201,-4.14554,0.741791,185.374,-4.34658,6.08546,173.357,-4.75695,6.28832,175.884,-5.77142,5.21477,175.326,-5.36884,5.05896,173.025,-6.49536,4.02448,174.773,-6.10864,3.91922,172.744,-2.99822,6.93309,173.549,-3.37649,7.2086,176.295,-7.10213,-2.02081,182.058,-6.45338,-1.87147,183.462,-5.4477,-1.94506,184.697,-4.09444,-2.08854,185.695,-2.27577,0.960236,186.248,-2.2876,-2.22134,186.49,-2.18371,4.10431,185.107,-2.06644,6.54449,182.882,-1.53227,7.4392,173.695,-1.72879,7.80736,176.555,-7.28714,-3.99202,180.748,-7.42657,-4.33374,179.336,-7.66892,-2.81638,179.029,-7.4907,-2.38018,180.541,-7.74717,-1.41398,178.518,-7.54168,-0.817567,180.01,-7.69331,-0.110141,177.71,-7.49602,0.634593,179.032,-7.5614,0.958148,176.582,-7.38,1.82654,177.653,-7.15229,1.90705,173.73,-6.85664,1.80159,172.222,-6.56603,2.81883,172.483,-6.91697,2.90649,174.236,-7.30848,1.02185,173.281,-7.78063,-0.768406,176.491,-7.65663,0.210906,175.631,-7.79364,-2.00133,177.037,-7.70499,-3.30175,177.49,-7.45781,-4.76516,177.861,-6.06106,2.28383,169.349,-6.38741,1.2148,169.357,-5.57039,3.37232,169.318,-4.84091,4.48767,169.288,-3.80373,5.50646,169.284,-2.56181,6.21272,169.316,-6.92298,-3.80079,182.11,-6.27314,-3.89747,183.354,-5.21863,-4.253,184.458,-3.87262,-4.76246,185.324,-2.1649,-5.27293,185.997,-0.000226608,6.46137,167.693,2.11926e-005,6.65475,169.303,-1.2763,6.56042,169.32,-2.45541e-005,0.975935,186.568,-1.92239,7.71347,179.749,-1.36833e-005,6.73392,183.221,-1.00741e-005,8.00285,176.669,-3.6269,7.10037,179.223,-5.03937,6.11459,178.544,-6.10723,4.8943,177.719,-6.80518,3.68261,176.849,-7.19219,2.59616,176.004,-7.3878,1.6423,175.217,-7.50042,0.812171,174.522,-6.5821,1.49232,170.761,-6.24991,2.52761,170.847,-5.76254,3.6017,170.907,-5.02035,4.70967,170.981,-3.98211,5.72994,171.102,-2.72433,6.50226,171.216,-1.37863,6.93882,171.274,-7.64983,-3.77149,175.857,-7.44874,-5.15402,176.247,-7.42769,-5.1848,174.672,-6.57887,-5.36318,181.966,-5.95259,-5.66444,182.941,-4.90715,-6.28334,183.831,-3.61632,-7.04729,184.527,-1.90792,-7.9641,185.002,-4.2605e-005,-7.81403,185.454,-0.78833,-12.2471,165.04,-2.67521,-11.4049,166.324,-2.51012,-11.4698,166.097,-2.28182,-11.6163,165.828,-1.93618,-11.8381,165.532,-1.44301,-12.0693,165.269,-3.94582e-005,-12.3154,165.889,-4.17128e-005,-12.4588,165.746,-0.690774,-12.3399,165.799,-0.654027,-12.2036,165.936,-1.28876,-12.1412,165.916,-1.22433,-11.9835,166.033,-1.75709,-11.9083,166.034,-1.68929,-11.7742,166.1,-2.11092,-11.6726,166.146,-2.05453,-11.579,166.154,-2.3063,-11.5306,166.251,-2.26437,-11.4718,166.256,-2.45005,-11.457,166.375,-2.40779,-11.4041,166.375,-2.36131,-11.2914,166.365,-2.20953,-11.3501,166.245,-1.98609,-11.418,166.13,-1.62749,-11.5366,166.046,-1.17511,-11.7229,165.991,-0.622392,-11.9596,165.956,-2.39273,-11.5372,166.198,-2.5451,-11.4645,166.354,-2.19163,-11.6881,166.04,-1.84961,-11.9315,165.803,-1.37517,-12.1808,165.605,-0.74474,-12.385,165.461,-4.12936e-005,-12.4812,165.399,-2.32082,-10.8493,166.304,-2.18437,-10.8649,166.108,-1.97353,-10.9121,165.904,-1.64188,-11.0361,165.731,-1.17974,-11.2363,165.646,-0.61711,-11.5067,165.679,-2.42162,-12.1161,167.283,-2.67156,-11.7803,167.016,-2.78729,-11.5517,166.778,-2.78093,-11.4299,166.549,-2.03194,-12.5265,167.569,-1.46753,-12.996,167.81,-0.792209,-13.3841,167.964,-4.40661e-005,-13.5809,167.948,-2.34784,-12.0805,167.057,-1.9846,-12.4684,167.279,-1.91882,-12.3612,167.126,-2.27435,-12.0089,166.942,-1.4155,-12.9125,167.463,-0.753574,-13.2853,167.601,-0.698936,-13.0653,167.436,-1.33919,-12.7305,167.3,-1.87969,-12.2815,167.098,-2.22682,-11.9307,166.918,-0.677182,-12.9056,167.425,-1.30095,-12.5893,167.292,-0.670815,-12.7338,167.485,-1.26967,-12.4185,167.353,-1.82237,-12.1479,167.137,-2.19622,-11.8507,166.932,-4.196e-005,-13.2305,167.496,-2.57283,-11.7794,166.855,-2.67246,-11.5782,166.682,-2.49544,-11.7382,166.776,-2.5885,-11.5556,166.636,-2.45025,-11.6743,166.76,-2.54442,-11.5004,166.625,-2.42533,-11.6037,166.764,-2.51492,-11.43,166.622,-2.65328,-11.4753,166.516,-2.55896,-11.4632,166.504,-2.51366,-11.4127,166.499,-2.4769,-11.3276,166.492,-4.13186e-005,-12.304,167.756,-0.68741,-12.314,167.82,-1.26107,-12.0009,167.694,-1.75383,-11.7068,167.442,-2.15931,-11.532,167.105,-2.40143,-11.3087,166.845,-2.47306,-11.1041,166.647,-2.42151,-10.9219,166.483,-0.952143,-9.33558,184.487,-1.14785e-005,7.07098,171.281,-5.5793,3.3543,164.637,-4.76233,4.48948,164.639,-6.19234,1.10972,164.551,-6.00826,2.22813,164.623,-1.28669,5.92073,164.502,-0.001939,6.23424,166.089,-3.62874,5.37642,164.624,-2.48152,5.80556,164.587,-6.19119,-1.03315,163.847,-6.2207,-0.00170642,164.322,-5.9364,-1.96656,163.11,-5.4973,-2.77638,162.188,-4.96669,-3.44672,161.412,-2.42458,-5.50534,160.573,-3.10424,-5.05512,160.556,-3.75746,-4.5566,160.657,-4.38927,-4.0278,160.899,-5.67892,3.57706,163.255,-6.08958,3.88491,161.813,-5.33766,5.07319,161.939,-4.86875,4.69874,163.309,-6.07479,2.42647,163.168,-6.24534,1.23704,162.976,-6.49559,1.35814,161.518,-6.4696,2.66223,161.717,-1.57081,6.65969,161.743,-0.00161894,6.14414,163.0,-1.44526,6.08815,163.107,-4.22212,5.94012,161.986,-3.79188,5.50537,163.309,-2.99634,6.40921,161.925,-2.69748,5.91306,163.25,-6.1671,-0.982479,162.179,-6.12667,-0.953135,160.819,-6.32492,0.153016,161.215,-6.23678,0.085742,162.652,-5.9009,-1.95287,161.551,-5.81406,-1.95415,160.283,-5.44693,-2.74816,160.857,-5.3552,-2.7981,159.743,-4.85634,-3.36657,160.26,-4.70913,-3.47081,159.308,-2.32698,-5.00031,159.67,-2.0397,-4.70717,158.516,-2.75668,-4.44474,158.55,-2.97559,-4.61576,159.581,-3.36574,-4.21727,158.726,-3.57598,-4.23256,159.641,-4.01039,-3.92819,158.99,-4.20485,-3.82824,159.864,-6.95321,4.27098,160.301,-7.98238,4.71266,158.733,-7.09421,6.21442,159.112,-6.13712,5.57524,160.544,-7.1606,3.01782,160.0,-6.96587,1.6943,159.806,-7.89328,2.24703,157.902,-8.2968,3.42589,158.314,7.49897e-005,8.65666,158.89,-1.73082,7.49501,160.391,-1.97823,8.56433,158.989,-5.67803,7.50517,159.224,-4.87968,6.61922,160.627,-3.9217,8.26807,159.152,-3.39291,7.22308,160.558,-6.60896,0.271604,159.707,-6.13179,-0.905418,159.428,-6.31852,-0.737127,157.739,-7.05318,0.763335,157.787,-5.7301,-1.93959,158.997,-5.78236,-1.87327,157.445,-5.25646,-2.813,158.522,-5.25938,-2.77848,157.059,-4.63152,-3.53566,158.119,-4.64064,-3.56965,156.713,-1.66378,-4.67883,157.284,-1.46418,-4.75089,155.99,-2.24903,-4.64797,156.115,-2.39396,-4.52283,157.459,-3.08065,-4.48792,156.275,-3.11728,-4.35324,157.654,-3.88725,-4.14307,156.458,-3.88885,-4.04988,157.85,-0.82237,-4.71272,157.237,-1.0768,-5.05825,158.755,-0.00140047,-4.46545,155.882,-0.712568,-4.54955,155.891,-9.23955,5.2057,157.481,-8.22839,6.96682,157.801,-9.1432,2.48932,156.505,-9.57336,3.76521,157.019,-6.62178,8.5875,157.731,-4.51732,9.57935,157.563,-6.75159,-0.531493,156.109,-7.86383,1.05185,156.172,-2.25289,9.90334,157.385,-6.0149,-1.70785,155.912,-5.41767,-2.66325,155.695,-4.73001,-3.50914,155.449,-2.30518,-4.74713,154.922,-1.47533,-4.86049,154.82,-3.15974,-4.55767,155.076,-3.96808,-4.1645,155.248,-0.729016,-4.55797,154.679,-1.73885,-6.89567,161.343,-1.68121,-5.94513,160.721,-1.61281,-5.38255,159.934,-7.7871,-1.99861,171.356,-7.74141,-1.68935,172.011,-8.01484,-1.48411,172.86,-8.27488,-1.44969,173.717,-8.46086,-1.50899,174.354,-8.68621,-1.49219,174.706,-0.859024,-7.24106,161.405,-0.847568,-5.68195,160.245,-0.85976,-6.29161,160.895,-0.00116728,-6.4725,161.047,-0.0277708,-5.42836,159.628,-0.694782,-5.4208,159.612,0.00028864,-4.41373,154.644,-2.55075,-10.6025,166.75,-2.45083,-10.4103,166.518,-3.96693e-005,-11.6438,168.108,-0.692296,-11.7045,168.277,-1.33904,-11.4923,168.163,-1.84846,-11.2484,167.826,-2.36399,-11.1359,167.437,-2.58852,-10.8966,167.025,-2.10686,-10.3303,165.678,-1.74099,-10.418,165.41,-0.607018,-10.8812,165.275,-1.21449,-10.6085,165.254,-2.29081,-10.3183,165.986,-2.36809,-10.3246,166.268,-2.61661,-9.94445,166.867,-2.50923,-9.79304,166.587,-0.729342,-10.8203,168.717,-1.39975,-10.6152,168.477,-1.98273,-10.4694,168.197,-2.56794,-10.3242,167.869,-2.77435,-10.1126,167.209,-2.18153,-9.57057,165.657,-1.76939,-9.57277,165.362,-0.580758,-9.82639,165.088,-1.20602,-9.64476,165.134,3.4036e-005,-10.0101,165.118,-2.40334,-9.61564,165.981,-2.45677,-9.68761,166.296,-2.60934,-9.30131,166.941,-2.53953,-9.18817,166.665,-1.4252,-9.53683,168.511,-2.04756,-9.47485,168.203,-2.55667,-9.41041,167.781,-2.6789,-9.36009,167.264,-2.28932,-8.80979,165.76,-1.84858,-8.69039,165.424,-0.571501,-8.72367,165.254,-1.20867,-8.67449,165.276,5.13972e-005,-8.78688,165.268,-2.45911,-8.9671,166.115,-2.5051,-9.09417,166.391,-2.56927,-8.74087,166.733,-2.54304,-8.72733,166.499,-1.35142,-8.43816,168.09,-1.98164,-8.47123,167.849,-2.47985,-8.59814,167.494,-2.64891,-8.74932,167.138,-1.88178,-7.86866,165.953,-2.39463,-8.19872,166.118,-1.20523,-7.7831,165.92,-0.57834,-7.78016,165.935,-2.53465,-8.52274,166.37,-2.00437,-7.70875,167.194,-1.26114,-7.63267,167.287,-2.50204,-8.13261,166.94,-2.58245,-8.46115,166.806,-2.61812,-8.86746,166.945,-0.678625,-8.42583,168.276,5.21047e-005,-7.63253,167.365,-0.619753,-7.64077,167.34,-0.731284,-9.61904,168.787,-7.83866,12.2044,14.1165,-6.73404,10.8904,14.0041,-9.15006,12.8568,12.5655,-10.5635,12.1726,12.6838,-7.69415,12.4095,12.4368,-6.54364,11.0117,12.1874,-12.2577,9.68898,12.4026,-12.2063,9.59746,14.205,-11.5306,10.8468,14.2639,-11.6197,10.792,12.6482,-12.4089,10.1254,10.4508,-11.465,4.88945,12.444,-10.9881,3.86833,11.9659,-10.2563,3.66712,13.1751,-10.0855,3.29697,12.3235,-8.62005,3.36009,13.3279,-8.58612,2.9988,12.4402,-7.11468,4.04079,11.9739,-7.52701,7.58972,0.876966,-8.04959,5.30003,1.04782,-8.6685,1.80264,0.809745,-11.8682,-2.97795,0.502984,-12.5929,-1.76646,50.7277,-7.83953,-1.62869,50.883,-13.0684,-3.32613,0.483094,-13.7021,-2.88945,0.533437,-10.5547,-4.623,0.410066,-11.3596,-4.2776,0.41501] }, -{ "name": "morph_body_skinny", "vertices": [3.13364,-9.72623,176.129,3.90474,-9.64007,175.921,4.46922,-9.57699,175.353,4.67584,-9.55391,174.577,4.46922,-9.57699,173.802,3.90474,-9.64007,173.234,3.13364,-9.72623,173.026,2.36255,-9.81239,173.234,1.79806,-9.87547,173.802,1.59145,-9.89855,174.577,1.79806,-9.87547,175.353,2.36254,-9.81239,175.921,3.2198,-10.4973,175.921,3.88759,-10.4227,175.741,4.37645,-10.3681,175.249,4.55538,-10.3481,174.577,4.37645,-10.3681,173.905,3.88759,-10.4227,173.414,3.2198,-10.4973,173.234,2.55201,-10.5719,173.414,2.06316,-10.6266,173.905,1.88422,-10.6466,174.577,2.06316,-10.6266,175.249,2.55201,-10.5719,175.741,3.28288,-11.0618,175.353,3.66843,-11.0187,175.249,3.95067,-10.9872,174.965,4.05398,-10.9757,174.577,3.95067,-10.9872,174.189,3.66843,-11.0187,173.905,3.28288,-11.0618,173.802,2.89733,-11.1049,173.905,2.61509,-11.1364,174.189,2.51178,-11.148,174.577,2.61509,-11.1364,174.965,2.89733,-11.1049,175.249,3.30597,-11.2684,174.577,3.07294,-9.09432,175.847,3.70368,-9.02384,175.677,4.16542,-8.97225,175.212,4.33443,-8.95336,174.577,4.16542,-8.97225,173.943,3.70369,-9.02384,173.478,3.07294,-9.09432,173.308,2.4422,-9.1648,173.478,1.98047,-9.21639,173.943,1.81146,-9.23528,174.577,1.98046,-9.21639,175.212,2.4422,-9.1648,175.677,0.667976,-10.3791,165.157,1.13994,-9.90453,165.279,1.00633,-7.07055,165.035,1.55048,-7.07055,165.035,0.799233,-10.3898,166.092,1.20976,-9.9223,166.208,1.00633,-7.07055,166.414,1.55048,-7.08208,166.349,0.799233,-10.7678,165.473,1.57552,-9.99298,165.473,2.03531,-7.07055,165.473,0.799233,-10.7678,165.771,1.57552,-9.99298,165.911,2.03531,-7.07055,165.911,1.00633,-9.08034,165.252,1.55048,-9.08034,165.252,2.03529,-9.2854,165.69,2.03529,-9.2854,166.127,1.55048,-9.09186,166.565,1.00633,-9.08034,166.63,1.55048,-8.07842,166.567,1.00633,-8.06689,166.632,1.00633,-8.06689,165.254,1.55048,-8.06689,165.254,2.0353,-8.15642,165.692,2.0353,-8.15642,166.129,0.0568168,-10.3791,165.15,-0.554342,-10.3791,165.157,-0.892694,-9.08034,165.252,-1.43684,-9.08034,165.252,-1.02631,-9.90453,165.279,0.0568164,-10.5684,166.075,-0.6856,-10.3898,166.092,-0.892695,-9.08034,166.63,0.0568162,-9.08034,166.415,-1.09612,-9.9223,166.208,-1.43685,-9.09186,166.565,-1.46189,-9.99298,165.473,-0.6856,-10.7678,165.473,0.0568167,-10.9632,165.466,-0.6856,-10.7678,165.771,0.0568166,-10.9632,165.761,-1.46189,-9.99298,165.911,-1.92166,-9.2854,165.69,-1.92166,-9.2854,166.127,0.0568168,-9.08034,165.244,0.0568167,-8.06689,165.246,-0.892694,-8.06689,165.254,-1.43684,-8.06689,165.254,-0.892695,-8.06689,166.632,0.0568162,-8.06689,166.417,-1.43685,-8.07842,166.567,-1.92167,-8.15642,165.692,-1.92167,-8.15642,166.129,0.0568168,-7.07055,165.028,-0.892694,-7.07055,165.035,-1.43684,-7.07055,165.035,-0.892695,-7.07055,166.414,0.0568163,-7.07055,166.199,-1.43685,-7.08208,166.349,-1.92168,-7.07055,165.473,-1.92168,-7.07055,165.911,0.0568168,-10.3791,165.15,0.0568168,-10.3837,165.17,1.3532,-12.0965,167.213,2.3729,-11.3342,167.148,2.96403,-10.2243,167.054,3.01525,-8.9758,166.949,1.35319,-12.0422,168.129,2.3729,-11.2799,168.064,2.96403,-10.17,167.97,3.01525,-8.92152,167.865,1.26917,-12.0202,167.152,2.01746,-11.1142,167.106,2.17921,-10.0228,167.037,2.21641,-9.11606,166.961,1.00931,-11.6075,167.794,2.01746,-10.6168,167.747,2.44678,-9.81073,167.679,2.21641,-8.61868,167.602,0.0568158,-12.3676,167.236,-1.23956,-12.0965,167.213,-1.23956,-12.0422,168.129,0.0568153,-12.3133,168.152,-2.25927,-11.3342,167.148,-2.25927,-11.2799,168.064,-2.8504,-10.2243,167.054,-2.8504,-10.17,167.97,-2.90162,-8.9758,166.949,-2.90162,-8.92152,167.865,0.0568158,-12.3017,167.169,0.0568155,-11.8044,167.811,-0.895681,-11.6075,167.794,-1.15554,-12.0202,167.152,-1.90383,-10.6168,167.747,-1.90383,-11.1142,167.106,-2.33315,-9.81073,167.679,-2.06558,-10.0228,167.037,-2.10278,-8.61868,167.602,-2.10278,-9.11606,166.961,-3.12398,-9.72623,176.129,-3.89507,-9.64007,175.921,-4.45956,-9.57699,175.353,-4.66617,-9.55391,174.577,-4.45956,-9.57699,173.802,-3.89507,-9.64007,173.234,-3.12398,-9.72623,173.026,-2.35288,-9.81239,173.234,-1.7884,-9.87547,173.802,-1.58178,-9.89855,174.577,-1.78839,-9.87547,175.353,-2.35288,-9.81239,175.921,-3.21014,-10.4973,175.921,-3.87793,-10.4227,175.741,-4.36678,-10.3681,175.249,-4.54572,-10.3481,174.577,-4.36678,-10.3681,173.905,-3.87793,-10.4227,173.414,-3.21014,-10.4973,173.234,-2.54235,-10.5719,173.414,-2.05349,-10.6266,173.905,-1.87456,-10.6466,174.577,-2.05349,-10.6266,175.249,-2.54235,-10.5719,175.741,-3.27321,-11.0618,175.353,-3.65876,-11.0187,175.249,-3.941,-10.9872,174.965,-4.04431,-10.9756,174.577,-3.941,-10.9872,174.189,-3.65876,-11.0187,173.905,-3.27321,-11.0618,173.802,-2.88766,-11.1049,173.905,-2.60542,-11.1364,174.189,-2.50211,-11.148,174.577,-2.60542,-11.1364,174.965,-2.88766,-11.1049,175.249,-3.2963,-11.2684,174.577,-3.06328,-9.09432,175.847,-3.69402,-9.02384,175.677,-4.15575,-8.97225,175.212,-4.32476,-8.95336,174.577,-4.15575,-8.97225,173.943,-3.69402,-9.02384,173.478,-3.06328,-9.09432,173.308,-2.43253,-9.1648,173.478,-1.9708,-9.21639,173.943,-1.80179,-9.23528,174.577,-1.9708,-9.21639,175.212,-2.43253,-9.1648,175.677,1.3532,-11.1899,165.956,2.3729,-10.4287,166.031,2.96403,-9.32023,166.141,3.01525,-8.07337,166.342,1.3532,-11.1264,165.315,2.3729,-10.3652,165.391,2.96403,-9.25674,165.5,3.01525,-8.00988,165.624,1.25443,-10.9459,166.027,1.92182,-10.1482,166.081,2.17921,-9.11899,166.161,2.21641,-8.21344,166.328,1.25443,-9.94623,164.91,1.92182,-9.1486,164.965,2.17921,-9.0555,164.944,2.21641,-8.14995,165.034,0.0568162,-11.4607,165.929,0.0568165,-11.3972,165.288,-1.23956,-11.1264,165.315,-1.23956,-11.1899,165.956,-2.25927,-10.3652,165.391,-2.25927,-10.4287,166.031,-2.85039,-9.25674,165.5,-2.8504,-9.32023,166.141,-2.90162,-8.00988,165.624,-2.90162,-8.07337,166.342,0.0568162,-11.2432,166.007,-1.1408,-10.9459,166.027,-1.14079,-9.94623,164.91,0.0568166,-10.2436,164.89,-1.80819,-10.1482,166.081,-1.80819,-9.1486,164.965,-2.06558,-9.11899,166.161,-2.06557,-9.0555,164.944,-2.10278,-8.21344,166.328,-2.10278,-8.14995,165.034,-0.0248682,14.5237,147.144,0.0282748,-13.8935,119.205,-0.0189478,13.3771,151.818,-0.0911863,4.95115,107.491,-0.0405413,5.66873,92.7021,-4.53868e-005,-12.0583,181.197,-4.21675e-005,-12.8791,167.533,-4.47016e-005,-13.9554,169.642,-0.074526,-14.3472,114.42,-0.0594266,-12.6065,131.892,-0.158855,7.85424,127.26,-0.0855359,-5.3803,153.364,-4.45622e-005,-11.305,182.534,-3.97011e-005,-12.2218,163.522,-2.37015e-006,-11.6986,162.203,-1.11001e-005,7.9436,179.976,-3.93839e-005,-11.6156,165.625,-4.19265e-005,-9.34177,184.577,-0.213692,9.09431,160.348,-4.74393e-005,-15.2268,171.374,-4.25159e-005,-13.0978,167.468,-0.0704324,-5.61936,161.185,-0.0383781,9.89675,157.949,-3.48632e-005,-8.40935,168.32,-0.0702862,4.85343,114.121,-0.0510599,-14.8932,112.142,-0.151455,5.60292,117.957,-0.0167788,11.9441,155.155,-0.0363661,10.7681,156.99,0.00124704,-14.2361,98.9017,-0.463116,-0.267935,89.4474,-0.0801176,7.36784,100.317,-3.99599e-005,-12.2229,164.283,0.00627916,-10.9023,161.771,-4.72513e-005,-15.0187,171.862,-4.5431e-005,-13.2445,175.373,-3.59855e-005,-5.48479,186.33,-4.03844e-005,-12.337,164.969,-4.32027e-005,-13.4716,167.627,-9.63541e-006,7.60248,173.749,-0.179015,7.13308,164.574,-3.89205e-005,-10.7558,168.567,-3.80618e-005,-10.8992,165.302,-0.00231399,-7.77635,165.955,21.5656,3.88975,142.501,23.1768,3.55089,142.483,23.0346,6.00354,141.606,21.3935,6.207,141.674,48.1115,7.51658,140.158,51.6211,7.29234,140.039,51.7696,9.2004,140.777,47.97,9.28323,140.922,44.8965,9.52356,141.519,44.9231,8.05523,140.576,39.565,5.39024,146.864,39.2176,3.8558,146.117,36.6602,3.61535,146.202,36.9525,5.01654,147.15,34.1143,3.74785,146.328,31.631,3.6593,146.614,31.5169,5.48341,147.315,34.2556,5.37001,147.266,39.498,6.58457,147.486,36.8768,6.48999,147.363,31.3082,7.00253,147.332,34.1385,6.88477,147.298,33.8816,2.72658,144.854,31.5054,2.52822,145.132,40.8295,4.26178,146.058,42.3657,4.55057,145.949,42.4487,3.84193,145.083,40.6138,3.41896,144.952,36.3047,2.77328,144.74,36.1915,2.83552,143.324,33.8614,2.80029,143.297,36.436,3.78557,142.122,34.1706,3.95021,142.053,35.9594,5.12879,141.077,33.258,5.62431,141.155,48.6191,5.53525,140.471,51.7283,5.40133,140.283,31.9227,7.54252,140.854,34.7512,7.04886,140.678,34.5545,8.66422,140.923,31.3469,9.354,141.301,55.5782,9.31738,142.66,55.0012,8.97467,140.906,57.9467,8.74557,141.205,58.7879,8.88313,142.931,57.6212,7.26272,140.282,54.7318,7.24717,140.1,60.8224,7.27971,140.595,61.2551,8.43554,141.639,62.2153,8.45933,143.269,54.7931,5.37247,140.257,57.7405,5.54589,140.396,60.9136,5.78458,140.724,60.8603,4.33391,141.413,57.7517,4.03474,141.389,60.8636,3.28597,142.553,57.8209,2.98393,142.82,54.937,3.86256,141.496,55.0893,2.7723,143.21,64.0269,4.47955,141.303,64.0518,5.80718,140.737,64.0019,3.44961,142.176,64.0729,7.22049,140.825,64.6021,8.05596,142.025,67.7802,6.97417,141.201,68.3419,7.70785,142.383,67.591,5.7822,140.628,58.9001,8.74016,144.666,61.9779,8.26225,144.667,65.501,7.9309,143.453,65.1855,7.49583,144.554,56.1328,8.96617,144.543,64.8469,6.49111,145.306,61.621,7.10689,145.482,68.6882,6.95139,144.486,68.478,5.91237,145.034,68.9228,7.50829,143.591,49.2761,3.05471,144.147,52.1981,2.71456,143.69,51.985,3.86898,141.751,49.0773,4.13307,141.89,47.0175,3.5293,145.826,49.4315,3.08031,145.864,47.081,3.69323,144.04,52.2642,2.83892,145.489,55.1724,2.80015,144.83,48.9149,4.19022,147.229,52.0301,3.8669,146.68,55.0489,3.67082,145.937,58.6037,7.70339,145.595,55.8602,8.15737,145.759,55.3142,6.6346,146.418,58.1956,6.3099,146.051,61.3243,5.83382,145.728,52.0739,6.68834,146.719,52.6192,8.24743,145.763,48.3801,6.70618,147.224,48.4306,5.39657,147.605,45.6073,6.0775,147.599,45.4048,7.51072,147.208,51.7175,5.21271,147.049,46.5612,4.59745,146.947,54.8616,5.05211,146.611,57.8267,4.78218,146.152,57.8719,3.60636,145.318,61.0862,4.50574,145.683,60.9722,3.5569,144.833,37.6861,10.4558,145.048,37.9085,10.7371,143.301,40.6242,10.505,143.082,40.6257,10.244,144.688,34.9032,10.6571,145.215,34.7584,11.3052,143.284,40.9673,9.65838,146.263,38.6933,9.45743,146.553,44.872,10.2124,143.048,42.7929,10.1396,143.343,43.0838,9.68632,141.815,44.9345,9.73783,144.624,45.2132,8.90067,146.266,43.0126,9.47444,146.243,42.7979,9.82836,144.767,35.9918,9.36959,146.693,48.5344,8.16692,146.007,38.8633,2.96211,143.454,40.8003,3.31467,143.552,41.1221,3.93079,142.431,39.2752,3.86749,142.24,41.3904,4.91609,141.603,39.038,5.13841,141.31,42.5716,3.89637,142.615,42.6288,3.61382,143.766,44.638,3.99305,143.814,43.7869,4.56402,141.939,64.3852,4.10367,145.216,64.5998,5.29532,145.396,68.275,4.66387,145.035,67.9575,3.54458,144.659,60.9367,3.0636,143.806,57.9151,2.90856,144.267,67.4995,4.49303,140.92,38.1533,10.0152,141.827,34.6435,10.1937,141.902,37.7318,8.57288,141.082,31.3179,10.4945,142.392,38.836,2.96473,144.911,36.5921,7.85592,147.332,33.8477,8.13104,147.018,33.2166,9.42986,146.502,64.0638,3.01689,143.283,67.5651,2.70831,142.639,67.4426,3.38837,141.655,64.1901,3.29105,144.349,67.7449,2.78389,143.796,41.448,5.34873,146.885,41.6335,6.88152,147.442,39.1897,8.01834,147.412,41.3214,8.38488,147.181,43.2562,8.17481,147.179,43.431,6.70546,147.445,40.9357,8.56346,140.844,43.1292,8.3423,140.762,40.8476,9.89225,141.699,37.9401,6.86229,140.691,41.0247,6.77623,140.758,31.5253,11.1066,143.753,32.0946,10.7066,145.28,29.8228,10.7016,145.385,29.3577,11.1439,144.129,30.6801,9.56422,146.38,24.3611,2.08974,145.483,22.5976,1.88796,145.255,22.1011,2.76139,147.478,24.0482,2.97751,147.046,23.3522,2.27823,143.666,21.4892,2.42079,143.456,26.3013,3.06727,146.652,26.3204,2.10684,145.366,28.6849,5.0184,147.266,28.7214,6.8545,147.712,31.5897,2.60457,143.489,28.967,2.44083,143.668,28.9019,2.23124,145.133,25.9309,2.31678,143.863,25.8276,3.63593,142.557,20.0104,12.1349,143.205,22.1176,11.85,143.306,22.7326,11.355,145.082,20.3787,11.7326,145.126,21.9887,8.63688,141.154,20.3457,8.81396,141.216,19.9289,10.7951,141.542,21.8192,10.6556,141.456,21.9286,11.7109,142.258,20.0962,11.8065,142.348,28.839,10.798,142.764,26.7409,11.0904,142.733,26.4727,10.2697,141.697,28.7334,9.84799,141.542,26.7488,8.28524,141.326,29.2792,7.93733,141.045,28.1299,5.89879,141.416,30.718,5.89649,141.23,29.0715,3.94415,142.305,31.8145,4.03106,142.132,23.6186,4.31931,148.414,25.552,4.65725,147.853,31.148,8.23234,146.91,28.6645,8.39701,147.0,28.205,9.76846,146.342,27.6306,10.8861,145.272,27.2685,11.303,143.931,48.4643,9.52403,144.315,48.2354,10.1191,142.574,52.3087,9.87571,142.462,52.8344,9.2809,144.172,43.7262,5.10407,146.59,45.71,5.87686,140.721,21.5384,4.10565,148.991,21.402,5.8157,149.798,23.1069,6.0062,149.093,21.4078,7.68607,149.516,23.1936,7.77525,148.664,21.593,9.82111,148.06,23.4619,10.0321,147.408,25.0265,11.2317,144.911,25.7562,10.0243,146.247,28.9469,3.16897,146.479,25.0618,6.26135,148.499,24.3185,10.5107,141.672,24.0945,11.5367,142.433,24.5986,8.51404,141.449,25.5387,5.93043,141.699,25.5665,8.05459,147.759,24.4762,11.6249,143.514,44.6371,4.11287,145.57,46.4727,4.43674,141.984,43.3077,6.27093,140.83,70.6743,2.38799,143.263,72.5571,2.05336,142.74,72.1715,2.17535,141.523,70.4234,2.37201,142.053,70.1915,3.11782,141.257,72.0424,3.03637,140.857,70.9825,3.06474,144.203,73.0719,2.57814,143.801,70.5885,5.76966,140.564,70.8504,6.80417,141.356,71.2384,7.50202,142.362,73.1522,5.77487,140.503,73.5227,6.80005,141.212,72.7534,6.77519,141.286,72.476,5.77168,140.51,70.3869,4.49065,140.506,72.1842,4.54558,140.258,71.5932,7.37884,143.513,71.4976,6.62262,144.332,73.5619,7.2976,143.4,73.6308,6.32734,144.131,74.5862,6.20418,143.959,74.6018,4.89408,144.164,73.6331,5.08978,144.374,71.4561,5.46961,144.672,71.3416,4.1884,144.656,73.4894,3.72753,144.322,74.4091,3.49343,144.101,73.8717,2.31811,143.565,72.6422,3.13009,140.644,72.8067,4.61314,140.148,73.1449,7.47071,142.237,72.6932,2.14106,141.317,73.1504,1.85077,142.495,74.3461,7.21825,143.29,73.9364,7.43195,142.161,16.7509,-0.366302,148.004,15.5828,-2.64348,146.634,14.6368,-2.4741,148.018,16.0228,-0.350815,149.407,13.9746,-1.67113,149.49,15.5885,0.384905,150.604,17.6278,1.3419,149.433,16.9449,1.28841,150.564,16.4185,1.85781,151.377,17.3361,2.78697,151.341,18.0781,2.70354,150.56,17.3249,4.3861,152.03,18.2225,4.10124,151.147,17.9939,6.06614,151.729,17.2098,6.16856,152.448,16.3951,4.48689,152.967,16.2017,6.39077,153.349,17.6986,7.92357,151.385,16.8855,7.8926,152.066,16.6386,9.65498,151.601,17.4907,9.87796,150.655,16.0811,7.88705,153.052,15.9759,9.3736,152.793,16.9984,11.3375,149.84,16.3598,11.0217,151.276,15.8973,10.4288,152.601,15.5949,2.24009,152.586,15.0556,1.0671,152.239,14.3896,1.09976,154.226,15.0408,2.38444,154.02,13.3718,2.3499,155.038,14.1795,3.31982,154.838,15.6104,3.29969,153.129,15.1571,2.7774,153.997,14.8678,3.9074,154.476,16.5844,3.18428,152.16,14.6992,5.88796,154.636,15.3883,6.22079,154.144,15.4631,4.05738,153.871,15.3137,7.66704,153.995,14.6747,7.29047,154.668,14.6099,8.65601,154.491,15.2985,8.90859,153.836,14.6859,9.45988,154.265,15.2604,9.82965,153.739,14.03,9.78283,154.426,14.4145,10.4643,153.836,14.8043,11.2995,152.58,12.5629,10.836,154.098,12.5843,11.6633,152.883,13.8073,8.47285,155.083,15.0167,11.9281,151.049,15.2059,12.6101,149.117,13.4961,12.8387,149.58,12.9557,12.1857,151.418,13.8739,5.39115,155.105,12.8866,4.6802,155.331,13.9367,6.99431,155.286,9.69771,11.1104,154.558,9.62426,11.9705,153.065,13.5697,-0.686042,151.609,13.3467,-0.589221,154.143,11.9428,1.29892,154.929,11.7226,4.03035,155.385,11.8057,6.174,156.219,12.9682,6.59917,155.882,18.4836,1.73465,141.456,17.844,-0.121612,142.141,19.7414,0.843648,143.633,19.777,2.51956,142.992,20.3408,4.14962,142.343,19.8517,3.7798,141.612,9.73025,13.8866,148.564,10.6473,14.2433,146.882,13.5917,13.5767,147.733,11.4125,14.0761,144.843,13.7121,13.6468,144.881,13.3321,13.8477,146.144,11.0689,14.2547,145.907,16.9494,11.3821,142.014,14.7103,11.9421,141.591,17.764,9.97041,140.976,18.6308,9.29153,141.448,19.3725,7.85283,140.868,20.1814,6.27301,141.695,20.0779,5.67355,141.22,19.1663,0.268875,145.031,17.525,-1.48314,143.204,20.5354,1.65528,146.266,18.5126,-0.0203016,145.986,19.6101,1.7858,147.483,16.5199,-2.57561,145.329,17.7326,-0.314545,146.983,17.2604,-2.23693,144.204,14.4211,13.183,143.877,12.0716,13.6307,143.719,12.8877,13.1489,142.803,15.2599,12.4787,142.837,9.44436,13.1148,150.701,12.6795,8.41419,155.664,12.6706,9.65148,155.045,18.0727,11.3055,148.267,18.7514,9.97569,149.727,18.7551,8.05935,150.819,15.9706,12.7591,147.392,20.5971,2.60147,143.305,20.9491,4.18053,142.518,21.066,1.41904,144.43,19.3627,9.03478,141.421,18.5423,10.9441,141.804,20.6688,6.31675,141.786,19.2878,4.14945,150.385,18.9786,6.00788,151.111,20.0851,5.95617,150.431,20.3089,4.17489,149.763,17.9069,12.0117,142.562,17.1877,12.6097,143.33,16.2495,12.9686,145.819,19.345,11.4634,146.982,20.1441,9.78358,148.871,20.0272,7.94343,150.205,20.7907,2.95387,148.999,19.2967,3.0189,149.652,16.674,12.9536,144.349,18.6167,1.53516,148.447,7.92114,3.53294,119.492,8.97407,2.0384,119.116,8.66596,2.45987,121.49,7.73677,3.95101,122.002,1.41347,-11.5716,137.088,1.4106,-11.9953,135.401,-0.0494263,-11.9649,135.462,5.8618,13.7723,150.973,5.52046,12.5604,153.469,6.14932,14.3187,148.728,4.48311,14.5389,147.867,4.24856,14.1024,149.993,7.18372,14.5279,146.272,4.95861,14.6728,145.823,9.03469,14.2291,143.279,10.0269,13.7627,141.844,11.7798,12.5355,139.962,10.7197,13.3475,140.772,13.2935,-5.96757,142.939,15.0018,-4.33956,144.038,15.3731,-3.93181,142.539,13.7297,-5.86029,140.974,7.21796,-7.18873,145.888,5.77926,-7.59733,145.748,5.3669,-6.50597,148.237,6.97334,-6.09374,148.29,4.13225,-7.99837,145.702,3.89082,-6.97423,148.279,1.11856,-8.36969,145.997,1.1501,-7.53491,148.691,2.43494,-7.39452,148.467,2.61911,-8.2328,145.802,1.13569,-9.48102,143.551,2.49545,-9.47102,143.673,2.29904,-10.3807,141.226,1.08476,-10.46,141.053,11.6989,-1.95183,153.697,10.1263,-2.97197,153.21,9.10615,-1.71461,154.137,10.3543,-0.564587,154.457,12.0552,-2.33847,151.176,10.4517,-3.4984,150.762,5.13405,-5.49297,152.399,6.45173,-5.0577,152.685,6.55321,-5.38791,150.578,5.14214,-5.93837,150.669,4.59362,-4.38357,153.243,5.76868,-3.98612,153.597,11.1106,-4.58855,148.674,12.5412,-3.45497,148.951,13.2951,-4.12545,147.34,11.8607,-5.33045,146.937,3.8348,-5.83438,152.212,3.79846,-6.474,150.767,3.56068,-4.85367,153.165,2.577,-6.86602,150.663,2.53901,-6.08468,152.052,1.21728,-6.21711,151.919,1.47238,-5.34394,153.049,2.43671,-5.15158,153.087,1.2842,-6.89103,150.61,3.37101,-11.8616,135.11,3.59622,-12.0807,133.349,1.65437,-12.333,133.772,4.77986,-14.2901,112.365,3.08605,-14.7658,112.617,2.70418,-14.5251,115.382,4.49136,-14.1084,114.91,6.31686,-13.3536,112.652,6.05944,-13.2224,114.901,6.42053,-13.4429,110.447,4.94567,-14.3091,109.903,3.27864,-14.8768,109.768,7.73935,-10.0877,135.499,7.81599,-9.97252,134.067,5.6122,-11.2636,134.406,5.44085,-11.2041,135.999,9.85988,-8.6846,135.642,9.98955,-8.26008,133.811,12.3413,-1.56517,126.194,11.6336,-1.71044,123.806,11.4056,-4.09521,124.531,12.1135,-4.21876,127.165,10.7314,-1.88263,121.723,10.7098,-3.93313,122.365,11.5116,0.378021,124.334,12.5026,1.04807,126.577,10.2363,-0.110221,122.142,5.71446,11.1478,155.697,3.47081,11.5006,155.838,3.95257,13.1356,152.501,2.14527,11.7848,154.983,2.25206,13.2973,151.799,2.1139,14.1259,149.529,2.58532,14.3514,147.352,2.84491,14.3905,145.443,13.9671,10.6984,139.103,16.5459,8.1025,138.493,18.1922,5.47183,138.761,12.2227,10.6737,136.893,14.0728,8.24552,136.504,17.6398,3.02188,138.69,15.4156,5.39931,136.246,15.3982,2.6443,135.98,16.2905,0.675617,138.554,14.7215,-0.0720569,135.787,4.11931,-11.3222,137.562,3.35859,-11.4847,136.853,2.42881,-11.0396,138.98,3.74243,-10.8791,138.615,13.9798,-3.19052,136.626,15.7943,-1.6725,139.629,13.1631,-3.42772,132.876,13.8766,-0.393407,132.087,13.1393,-1.16783,128.935,12.7741,-3.98301,130.189,13.8857,-5.32292,139.048,15.6164,-3.17318,141.131,10.9526,-2.73259,118.138,10.553,-4.98788,118.967,10.3049,-4.26013,120.474,10.4381,-2.10863,119.649,11.5484,-3.19081,116.777,10.6224,-5.61044,117.411,9.56637,-8.12412,118.04,9.79168,-7.25858,119.99,9.86941,-6.46957,121.93,12.2653,-7.75308,111.228,10.9551,-9.57905,110.698,10.572,-9.21333,112.58,11.8298,-7.13618,112.787,9.01801,-10.672,113.937,10.1149,-8.86665,114.323,9.2887,-10.8978,111.993,13.207,-5.56319,111.632,12.8486,-4.89594,112.965,8.56407,-9.74189,118.069,8.56396,-9.01246,120.477,10.9373,-6.08689,115.809,9.81926,-8.49186,116.141,8.81847,-10.2439,115.952,10.808,-0.645916,117.891,11.7044,-1.0481,116.52,11.9662,-3.77143,115.521,12.2964,-1.52351,115.405,10.0287,0.808838,118.45,11.1073,0.581201,116.77,11.7686,0.368606,115.452,9.88898,-0.343486,119.823,9.4403,1.07074,120.736,8.15801,3.20699,117.356,9.71863,1.84377,117.126,3.48629,5.48232,118.402,3.3389,5.22449,116.131,5.95778,4.50306,117.063,6.05751,4.74181,119.326,6.01626,4.21346,115.061,3.33198,4.92459,114.434,8.36126,2.96152,115.421,10.4007,1.83327,115.49,14.149,2.45196,132.48,12.2352,3.65406,128.157,13.2446,1.65154,129.177,12.6478,4.58004,130.675,10.7941,5.95542,129.229,11.3143,7.13161,131.903,4.94818,11.7919,136.976,9.23286,12.2954,137.501,8.20472,13.4983,139.397,4.52433,12.6178,138.931,6.35617,14.4774,142.522,7.37809,14.1628,140.941,8.33126,14.4793,144.44,5.54713,14.5866,144.091,3.38905,13.9208,142.269,3.08644,14.187,143.813,3.83465,-12.329,131.625,1.84982,-12.5403,131.85,5.6967,-11.374,133.002,5.93835,-11.6063,131.269,7.96657,-10.3316,128.441,7.64158,-10.3517,125.777,5.83792,-11.8928,126.157,6.05232,-11.7983,129.058,7.21664,-10.519,123.112,5.39576,-11.9251,123.322,3.9922,-12.5554,129.38,3.80805,-12.5608,126.497,1.89946,-12.9395,126.632,1.99257,-12.8004,129.456,3.6768,-12.9213,123.632,1.85152,-13.3698,123.905,9.166,3.40859,124.277,7.90201,4.99319,124.819,6.10923,6.26446,124.906,6.03498,5.23136,121.937,3.80614,6.96293,124.202,3.67155,5.96769,121.076,3.80159,7.94736,127.093,6.49562,7.45139,127.447,11.426,2.72598,125.903,10.0764,1.7122,123.402,10.3243,4.83181,126.854,8.65424,6.49484,127.371,8.94865,7.67786,129.456,6.66692,8.53441,129.37,9.6447,8.94939,131.933,11.1361,10.0378,134.903,8.09935,10.8889,134.787,7.18647,9.67162,131.905,3.8229,8.76782,129.483,4.62596,10.5829,134.485,11.8596,1.60585,111.275,12.8498,-0.764617,111.536,12.6202,-0.248795,112.887,11.4402,1.81216,112.669,10.984,1.94742,114.021,8.88623,3.01863,113.714,9.42504,3.16467,112.315,3.88703,13.3339,140.566,3.83923,5.25914,109.459,3.86058,4.94908,111.244,7.40902,4.48564,110.17,6.86166,4.25935,111.705,-0.10754,5.23514,115.69,7.72167,-12.0993,113.356,7.91368,-12.2387,111.233,7.47981,-11.8577,115.63,7.14912,-11.2547,117.934,12.3541,-4.25293,114.267,12.8016,-1.97601,114.369,13.1639,-2.54334,113.063,6.33119,4.14413,113.28,7.94889,-10.1801,132.447,8.07626,-10.3827,130.589,13.4456,-3.17738,111.751,5.6623,-12.6991,117.837,5.41897,-12.2272,120.54,6.9669,-10.6963,120.491,4.0678,-13.744,117.859,3.78506,-13.4116,120.746,2.03357,-14.11,118.153,1.94936,-13.8029,121.239,1.11788,-14.222,116.472,3.76272,-10.17,141.201,3.93167,-9.29103,143.769,10.2256,-6.06719,123.889,9.01821,-8.39172,122.915,9.30123,-8.36272,125.24,9.38277,-8.47523,141.547,11.384,-7.3123,142.094,11.7359,-7.77018,139.828,9.48516,-9.28198,138.904,7.27204,-9.38644,141.136,7.35503,-10.1177,138.35,5.34392,-9.90487,141.023,5.2666,-10.7255,138.212,9.13963,-7.69408,144.084,10.9099,-6.73613,144.481,9.87007,-9.3479,137.41,12.1566,-7.46576,138.0,12.0825,-6.53988,135.788,7.2967,-8.41758,143.96,7.58868,-10.4313,137.369,5.50491,-8.96785,143.815,5.49019,-11.1098,137.345,12.6718,-5.72401,144.99,1.64302,-15.0539,112.318,1.38023,-14.6391,114.689,-0.0551937,13.8469,140.093,3.42885,-14.8694,106.733,1.66003,-15.1242,106.223,1.69052,-15.1473,109.559,10.8117,-6.37827,126.03,11.3999,-6.62216,128.523,10.0967,-8.71525,129.678,10.1609,-8.56893,131.827,11.7726,-6.4636,131.13,9.66092,-8.57235,127.412,11.8774,-6.06506,133.489,1.19832,-11.1842,138.922,-0.0488237,-12.3115,133.83,14.1683,-4.39537,145.746,13.6852,5.14196,133.643,12.7851,7.89138,134.618,4.1014,9.68973,131.909,0.575026,-5.78826,152.529,0.686792,-5.33493,153.227,-0.173674,-9.51882,143.435,-0.120469,11.3695,133.672,-0.0484866,-13.5496,121.471,-0.0593283,-15.1195,109.484,6.88964,-3.33789,153.876,7.93658,-2.58463,153.938,8.77596,-3.68715,152.865,7.59745,-4.3837,152.757,9.18769,-4.29602,150.6,7.95775,-4.82787,150.509,9.85811,-5.28026,148.554,8.44316,-5.74819,148.365,9.02053,-6.6449,146.219,10.4929,-6.05042,146.694,-0.13265,10.0922,131.471,11.2337,-6.56105,114.291,12.3076,0.15006,114.169,3.53518,4.91308,112.796,8.09403,-12.4502,108.951,6.6307,-13.5378,108.009,5.09089,-14.3546,107.281,9.52777,-11.1606,109.944,9.97565,3.22915,110.868,11.1219,8.43488,156.106,10.3829,9.86214,155.639,10.2894,3.90704,155.699,10.1684,5.91607,156.516,9.14012,8.24176,156.666,6.97813,10.3183,156.75,9.88543,2.0247,155.035,3.24626,-4.27093,154.293,4.12729,-3.715,154.427,5.02889,-3.15335,154.606,7.66549,-0.789728,154.965,8.78086,0.393641,155.183,3.48398,10.7352,156.885,1.99128,10.7821,156.653,2.30475,-4.59283,154.204,1.44546,-4.7526,154.174,0.72575,-4.85812,154.251,5.9477,-2.47361,154.751,6.77886,-1.70833,154.845,-0.0539869,-4.75689,154.483,1.7301,-14.1363,99.2845,3.3147,-13.977,100.066,3.11619,-13.054,97.1563,1.62269,-13.2556,96.5045,13.6392,-7.66202,106.435,12.6098,-9.56512,105.515,12.5973,-9.02892,107.557,13.5012,-6.9813,108.385,7.91362,-12.7992,101.395,6.2336,-12.988,99.7652,6.54435,-13.4656,102.572,8.20703,-12.9149,103.997,9.68306,-12.2842,102.982,9.82795,-11.9669,105.361,4.62484,-12.988,98.322,4.92336,-13.7766,101.202,5.06539,-14.2533,104.302,6.73436,-13.6124,105.354,3.39735,-14.6193,103.471,1.7629,-14.7896,102.828,8.31873,-12.6528,106.571,12.6763,-8.42785,109.418,13.4558,-6.26444,110.064,9.7907,-11.5081,107.728,10.2666,3.24481,109.61,7.69949,4.86336,108.694,8.02434,5.11171,107.137,10.2986,3.09023,108.095,14.1898,-5.43658,106.817,13.8819,-4.58256,108.633,1.45897,6.71815,104.55,5.17785,6.60321,104.795,4.95531,6.13848,106.462,1.49596,6.1227,106.191,1.59927,4.97023,108.534,1.71634,5.39083,107.561,4.69356,5.70569,107.917,13.5288,-2.10723,108.605,12.2952,0.685408,108.447,12.1289,0.403061,106.798,14.0252,-2.73866,106.831,12.0403,1.27191,109.823,13.2015,-1.48512,110.086,10.0566,3.22045,106.469,11.287,-11.1785,104.352,11.3266,-10.6718,106.49,11.3041,-10.1325,108.679,13.7008,-3.86397,110.166,8.07175,5.57033,105.487,0.0740232,-14.7757,102.533,-0.0816534,5.6635,106.161,16.4661,-5.19965,92.929,16.7798,-4.70003,88.6916,15.9791,-7.49939,88.2279,15.5538,-7.95569,92.1453,16.1367,-5.72121,95.9214,15.1444,-8.38807,95.6322,16.0048,-2.1078,93.1473,16.3909,-1.61526,88.814,15.6128,-2.45658,95.4112,14.3043,-9.67564,87.4962,14.0037,-10.1405,91.3544,16.204,-7.02067,84.2768,17.0108,-4.19095,84.5976,14.4131,-9.12114,83.8113,13.5114,-10.8188,97.7153,14.888,-8.8607,98.8199,13.7197,-10.536,94.6945,11.5065,-11.8546,96.1987,11.7265,-11.7915,93.3911,11.9154,-11.5354,90.2366,9.16891,-12.1029,98.5057,11.12,-11.747,100.294,11.2565,-11.8238,98.2827,9.16659,-11.9674,96.479,9.3213,-11.9057,94.4537,9.48761,-11.9187,92.0175,12.7644,-10.1823,103.643,11.1671,-11.541,102.317,14.6225,-6.11281,104.958,13.8975,-8.3726,104.601,14.1454,-3.05634,104.856,14.2237,-3.19919,102.804,14.5917,-3.13773,100.713,15.2507,-6.34733,100.855,14.8767,-6.31591,102.873,15.6197,-6.21324,98.8879,15.0862,-3.01965,98.5363,12.6314,0.48146,100.466,13.3435,0.542467,97.9818,14.1538,0.791692,95.0009,14.5043,0.880792,92.8773,1.1617,-9.85606,89.0608,2.3072,-10.0589,89.3787,1.64647,-7.59564,88.4187,0.880775,-8.2572,88.6868,0.588778,-6.61954,88.8306,0.908812,-4.73752,88.7277,3.38139,-7.62845,86.473,5.05285,-9.45951,87.0317,5.16701,-8.24014,84.1376,3.84431,-6.06709,83.7658,7.22919,-10.8939,87.9854,7.19595,-10.2294,84.795,5.28944,-7.31513,81.5514,4.16414,-4.88539,81.2923,7.13716,-9.4452,82.0463,3.17318,-9.28641,88.6404,5.0925,-10.5118,89.5107,7.27009,-11.3042,90.7185,3.06542,-3.70393,83.9416,2.36732,-5.4662,86.4707,2.91891,-1.15062,84.5944,1.94046,-2.92167,86.7934,2.92592,-12.1938,94.4738,1.50274,-12.3497,93.689,4.42949,-12.1435,95.6898,4.2141,-11.4441,93.5619,2.81049,-11.6136,92.3921,1.41622,-11.7522,91.3919,2.69542,-10.9428,90.7223,1.33592,-10.9627,89.8027,1.99523,-0.444384,87.3829,0.952057,-0.0863409,89.1506,3.04969,1.84866,87.1077,2.01148,3.61785,90.3959,5.78232,3.87768,87.3857,5.38801,5.51413,90.7379,8.79648,4.47701,87.4836,9.16999,5.69301,91.3604,12.2907,3.7,92.0901,12.0699,3.48189,88.1781,14.79,1.32128,88.6145,12.2811,3.87146,94.0231,9.35615,6.15311,93.0255,5.72637,6.67059,92.506,2.43369,5.98766,92.4933,5.58262,7.80633,98.042,5.61619,7.60752,95.2985,9.16935,6.62296,95.9754,8.73104,6.6662,98.7762,1.76404,7.3941,95.1012,5.50679,7.58327,100.648,1.4748,7.34369,100.404,1.41637,7.63021,97.7976,8.39404,6.40567,101.365,8.13449,6.0339,103.633,5.38727,7.14578,102.886,1.49395,7.16068,102.608,11.7645,3.91374,97.0152,10.5568,3.74755,99.76,12.0058,0.312867,104.831,9.85671,3.45328,104.57,12.1043,0.293858,102.697,9.98133,3.62763,102.303,7.32743,-11.916,96.6314,7.26524,-11.5972,94.718,7.60231,-12.414,98.8318,5.97369,-12.2858,97.1712,5.71324,-11.5908,94.8856,5.50961,-11.2254,93.1513,4.02802,-10.9932,91.8003,5.37245,-11.0084,91.4523,3.70281,-10.5054,90.2901,7.3142,-11.4687,92.8329,9.55961,-11.7421,89.0822,9.26112,2.17692,38.3411,11.2633,1.89238,38.4145,11.3705,2.46489,34.4764,9.38469,2.6586,34.3775,9.28395,1.50523,42.567,11.3069,1.34756,42.5762,13.4708,2.98749,38.8365,13.3848,3.46073,34.7738,13.4792,2.47838,42.9954,7.18164,8.91552,22.8307,7.20528,6.90082,23.147,6.83317,6.99782,19.7469,6.9128,8.86801,19.4997,7.65303,4.96425,23.3846,7.3511,5.0713,19.9863,8.85126,3.76283,20.2101,8.8353,3.47754,23.4946,12.7091,11.3296,36.1111,13.8186,9.67093,35.7401,14.4121,9.80483,39.7579,13.3054,11.5259,40.3238,12.315,10.9691,31.9674,13.2276,9.5905,31.6821,11.7813,12.3995,40.332,11.5891,12.3332,36.2727,11.2706,11.4399,27.2733,11.4077,11.9406,32.009,10.1971,12.4437,31.7974,10.3091,11.9395,27.0431,12.2626,9.6378,23.6618,12.5763,9.47868,27.5102,11.9412,10.7043,27.4441,11.6891,10.7231,23.4838,10.3011,11.8881,23.1983,11.0268,11.4864,23.2917,10.1246,12.5964,36.1461,12.0838,9.61242,20.7634,12.4375,8.15989,20.5643,12.6018,8.05231,23.613,16.2047,-6.45225,80.0126,14.3559,-8.48298,79.6389,12.032,-10.1631,83.227,12.0436,-10.931,86.5965,11.9296,-9.36017,79.3571,17.0563,-3.69035,80.3158,14.18,-7.9158,75.6184,11.7285,-8.79825,75.6544,9.45867,-9.19762,79.1915,9.49036,-10.1747,82.6639,9.33941,-8.47764,75.793,7.18695,-8.41297,78.7516,7.2279,-7.32416,75.7092,5.46838,-6.45852,78.3768,5.63328,-5.45476,75.4252,7.17791,-6.1398,72.5292,5.66453,-4.40327,72.2404,4.61118,-3.92203,78.2656,4.72832,-3.08413,75.2875,4.9471,-2.19635,72.1288,7.16798,-4.96854,69.0074,5.83216,-3.34503,68.7254,9.14038,-7.60165,72.3766,9.05631,-6.49353,68.9093,11.3986,-8.0121,71.9952,11.0755,-7.04903,68.4635,13.7801,-7.20469,71.8173,13.2538,-6.33829,68.2628,10.8626,-6.06495,65.1309,9.03614,-5.29071,65.4932,12.7152,-5.4881,64.9846,10.6645,-5.01654,62.1391,9.01854,-4.34213,62.1392,12.3533,-4.98958,62.0049,14.4012,-4.13015,65.1333,13.7226,-3.73855,62.1217,11.7733,-4.47783,59.1992,10.0435,-4.64778,59.1861,13.3719,-3.28387,59.3061,7.24483,-3.94177,65.3492,7.33372,-3.18238,61.7559,5.92166,-2.41361,65.0616,5.87541,-1.6356,61.5237,15.1447,-4.73832,68.4131,16.1121,-2.29003,68.7059,15.3982,-1.94337,65.3719,14.7544,-1.74136,62.1955,5.09041,-1.32104,68.7061,5.08314,-0.53114,65.1194,4.82658,0.985265,68.947,4.73862,0.208137,72.2482,4.90784,1.74339,65.4254,5.70411,3.35214,69.0672,5.46325,2.58138,72.4165,5.21531,1.76683,75.6466,4.54078,-0.593155,75.3922,4.68656,0.956444,78.5433,4.30606,-1.43667,78.2887,3.84614,0.0379808,82.2525,3.66231,-2.4374,81.6975,4.89628,0.258412,61.5472,4.86102,2.56802,61.5946,5.91654,4.88653,61.5722,5.87445,4.12398,65.4076,6.64854,4.27667,72.3772,6.39009,3.56538,75.6899,5.86593,2.83301,78.8682,6.91443,-2.44849,58.6822,8.37794,-3.84061,58.9588,7.66254,-3.19501,56.2279,6.67933,-1.58908,56.1362,6.84554,-0.92244,54.1986,7.67783,-2.65961,54.313,5.83895,1.03,54.2361,5.54873,0.123555,56.2472,5.54127,-0.85767,58.5694,9.51247,-4.30987,56.4814,11.4322,-4.22347,56.5161,13.0616,-2.94213,56.6914,14.3703,-1.38956,59.4756,14.2347,-1.04858,56.8933,14.7445,0.785889,59.659,14.6186,1.23994,57.1758,14.8199,3.44412,59.9368,14.9054,3.96272,57.3227,14.5865,1.59472,54.7269,14.0464,-0.669781,54.5282,14.7855,4.31499,55.0183,12.8126,-2.56241,54.3575,14.4984,2.01851,52.2231,13.6942,-0.231984,52.2006,14.8004,4.63137,52.483,14.5735,2.72458,49.7615,15.1676,5.40565,50.0228,13.0626,0.247904,49.6363,11.1654,-3.69949,54.2812,9.3326,-3.7814,54.2878,11.0459,-2.92836,52.3288,9.30554,-2.95509,52.352,12.5536,-1.93759,52.3641,9.37931,-0.632429,48.732,9.42103,-1.90685,50.6434,11.0295,-2.02956,50.6031,11.1907,-0.747111,48.7692,9.23385,0.54067,46.2883,11.1763,0.299331,46.1601,13.1741,1.60389,46.5777,7.86858,-2.02029,52.3479,5.14182,3.28211,54.1778,4.70099,2.305,56.1096,4.56276,1.51636,57.9926,4.76587,4.77589,55.8935,5.2472,5.48173,54.1518,4.6407,3.97871,57.7785,5.64806,4.273,52.0131,5.77945,6.41445,52.2716,5.87645,6.00497,56.0706,6.21831,6.77609,54.3375,6.77884,7.86129,52.4452,6.28184,1.98474,52.0534,6.58907,2.93127,49.5118,6.10448,5.34242,49.4968,7.16861,-0.168482,52.0511,7.74404,0.461972,49.5115,7.63826,1.92733,46.6237,6.70217,4.05056,46.7093,6.53587,6.53912,46.8006,7.61428,2.93243,42.7632,7.03781,5.08977,42.9058,6.85559,7.59039,43.1324,6.38616,7.5066,49.9255,7.33686,9.0681,50.0036,6.76222,8.68957,46.9002,7.75904,10.3258,47.0146,8.90063,10.1498,50.1685,8.55713,8.98003,52.7068,9.36658,11.3829,47.1534,10.4427,9.36198,53.0187,10.8367,10.5326,50.2955,10.1232,8.21167,55.2314,8.16142,7.81789,54.7739,9.86137,7.30383,57.2775,7.9424,6.8043,56.6663,9.63891,6.64148,59.4993,7.67524,6.21847,58.8739,4.7872,2.24332,82.9464,6.6497,4.39877,83.3667,7.40003,4.65627,79.1338,7.5053,5.93609,61.7336,9.43365,6.37042,62.2762,11.6974,6.26168,59.8729,11.4945,6.06084,62.5903,11.6876,6.63686,57.4974,13.6538,5.48605,57.4523,13.7967,5.32188,59.9293,12.2403,8.74637,53.0517,13.6629,6.94198,52.8129,13.5025,6.02532,55.176,11.8951,7.5819,55.3583,14.1823,8.06419,50.4474,12.6858,9.87879,50.4534,14.7166,8.76498,47.4199,15.4797,6.33634,47.3573,15.098,3.65147,47.109,13.1381,10.5774,47.3886,15.171,4.42684,43.5044,15.6546,7.00348,43.7069,13.384,11.1431,43.9449,14.8347,9.34092,43.8158,15.183,7.57364,39.3883,8.13125,11.2875,43.5763,9.70278,12.1653,43.7673,7.10095,9.75457,43.3513,8.40984,11.7441,39.8015,7.29001,10.4306,39.3665,7.39225,10.6409,35.1971,8.50911,11.8943,35.8151,8.70465,12.1697,31.3158,7.48837,11.0254,30.7567,7.03557,8.34262,38.8329,7.14818,8.64385,34.5636,7.09034,8.85228,30.4186,7.13177,8.82031,26.5233,7.68951,11.0285,26.3068,10.0064,12.4557,40.089,11.6088,12.1841,43.9125,7.26846,5.84992,38.6029,7.77184,3.72049,38.4682,7.88602,4.77712,27.043,9.06279,3.25942,27.1012,7.18896,6.65225,26.8683,10.5071,3.67268,23.5165,10.7168,3.3888,27.2167,7.90427,4.60039,30.6475,9.21012,3.00434,30.7168,11.082,2.97623,30.8279,12.3422,4.3665,27.4286,11.8646,4.74881,23.5308,7.47111,6.3371,34.4318,7.28828,6.56932,30.5295,9.02209,12.0437,26.5809,7.62419,10.6754,22.7438,8.75337,11.8594,22.9601,7.43185,10.412,19.9193,8.4092,11.5617,20.2696,14.9222,5.12441,39.2564,14.5557,5.45737,35.0397,13.2642,6.10589,27.5152,12.8832,3.96926,31.0513,13.9306,5.85078,31.2126,14.5301,7.64423,35.3156,13.9199,7.81043,31.4015,12.6091,6.37297,23.538,12.3738,6.56658,20.3922,11.6772,5.01421,20.2402,13.2694,7.9517,27.5401,9.25871,4.97203,83.8107,9.80001,5.1813,79.3447,12.7103,4.35169,79.7916,12.3015,3.98293,84.1004,12.964,4.60064,75.9857,10.2888,5.50487,75.6759,15.29,2.62495,76.2508,15.2862,2.32541,80.2016,15.0517,1.90166,84.5349,15.1247,2.80903,72.5043,13.0634,4.75634,72.3781,10.6923,5.74896,72.2013,14.8989,2.97936,68.9893,13.1137,4.89147,68.9344,15.9613,0.415259,68.9097,16.4232,0.167168,72.4875,16.7292,-0.132432,76.3256,7.98775,5.07716,75.6175,8.36943,5.46013,72.225,10.9737,5.85773,68.8288,8.7526,5.80102,68.8436,7.00707,5.05827,68.9038,11.1898,5.92279,65.5393,9.11305,6.08652,65.3955,7.29746,5.52813,65.2422,15.4851,0.615321,65.5859,14.7205,3.18165,65.6859,13.2135,5.01181,65.6474,16.9681,-3.21389,76.212,16.6905,-2.7727,72.3178,16.1015,-5.93745,75.9224,15.7614,-5.37926,72.0188,16.8535,-0.627853,80.3747,16.691,-1.07693,84.7328,14.663,3.37908,62.6451,15.0592,0.733143,62.494,13.4383,5.18073,62.6177,9.55974,-11.0431,85.6989,5.76946,5.46763,58.0181,11.2968,11.5301,47.2754,7.95531,4.23436,34.4065,10.4381,3.92144,20.2428,9.36953,-12.2532,100.664,13.2517,-10.8106,99.7991,14.3805,-8.82289,102.62,-0.0601431,-4.58973,89.0897,6.47576,7.03462,16.8052,6.59738,8.88256,16.7861,7.1174,5.04676,17.0823,8.86827,3.87119,17.4267,11.9755,9.66732,18.3101,12.3953,8.29501,17.8547,7.26596,10.248,17.1697,12.3168,6.74773,17.5748,11.62,5.1744,17.3192,10.4469,4.006,17.4454,9.90077,11.8418,20.5649,10.7129,11.4298,20.6298,11.3494,10.5776,20.8069,8.24344,11.547,17.7968,9.58371,11.9366,18.2161,10.4964,11.4197,18.3059,11.2292,10.6778,18.3608,-0.0531793,-10.7798,89.2308,-0.0684389,3.22387,90.9521,0.0243785,7.042,97.6421,14.728,-8.97287,100.74,13.0028,-10.625,101.721,-0.0536526,-11.8413,90.9335,6.1501,6.79441,14.4488,7.03922,4.89161,14.6722,7.056,4.73584,13.0012,5.68257,6.4153,12.2664,6.24094,8.899,14.489,5.3108,9.63847,9.59141,4.88643,7.22311,9.59198,5.03122,7.13969,7.27449,4.91751,9.51463,7.51866,5.63245,8.9046,11.7716,6.1524,5.23581,11.2565,5.96211,4.87051,10.104,6.08147,4.44772,7.94505,8.25879,1.30861,7.13654,7.1591,1.35216,6.34116,7.61654,3.24636,9.02995,6.51228,1.42233,5.31863,5.63431,4.39944,5.83621,7.45745,4.02298,10.7291,6.19853,11.1599,9.83411,5.71435,11.8524,7.48964,7.08075,13.0645,7.92685,7.54443,12.3307,10.2131,8.98753,13.5546,7.83169,8.99765,12.8319,10.5088,5.27395,12.0602,5.71311,6.82516,13.6615,5.82287,4.57247,9.84921,5.62838,8.97791,3.29707,11.3859,9.03531,2.64874,9.77393,10.2163,3.26891,11.3813,10.1866,2.62642,9.82078,10.3888,1.22,7.66507,11.314,-1.86353,5.75654,10.3079,-1.91271,5.81371,9.35012,1.18494,7.61524,9.05371,-1.82137,5.79281,11.6343,5.15563,14.8472,10.4419,3.91675,15.125,8.89225,3.82878,15.1338,12.14,5.41046,10.0506,12.0608,3.72213,8.4475,11.1675,3.11137,9.30431,11.2416,3.93686,10.8341,12.3477,12.149,6.26703,12.3588,12.571,4.33306,13.1035,10.3728,4.56479,12.9812,9.92288,6.66296,10.8081,13.6089,6.04476,10.6843,13.9853,4.14468,11.9467,12.7426,2.56557,13.1246,10.8673,2.63707,10.3121,13.9491,2.46416,12.0495,10.9777,1.36642,10.9123,12.2377,1.36321,10.0068,13.2516,1.40299,13.0098,5.68592,6.1467,13.5309,6.29507,4.59758,13.8283,4.0116,4.02972,13.4139,3.17245,5.2437,14.7262,1.16827,3.33631,14.2122,0.302874,4.38397,12.9778,2.40733,6.26291,13.5706,-0.548858,5.12853,12.622,4.38727,7.31281,13.0765,9.39376,7.67492,13.1618,8.0219,6.28492,13.0681,7.85334,7.34261,13.0963,-10.8343,1.24954,13.6264,-10.7445,1.36688,13.8135,-11.3434,0.931853,13.2629,-11.3782,0.688085,13.7893,-11.2276,0.474003,14.0731,-10.8604,0.688612,14.2148,1.95774,1.0384,14.8742,1.80287,2.06358,14.026,4.55509,2.64494,13.2786,4.70051,1.14959,13.6155,6.92833,2.89227,12.8239,7.08922,1.18484,9.42261,11.8918,0.786794,10.2417,10.4739,0.73808,13.3455,9.39066,2.74627,12.3717,9.34633,1.31638,11.3231,6.67119,0.700646,10.8445,8.94657,0.710391,8.65524,13.1682,1.10544,7.90687,11.1577,0.634587,7.06971,12.3103,1.00605,8.56865,9.81807,0.575926,8.23177,14.4146,2.29739,8.80822,14.1461,5.87179,8.58781,14.3701,3.96467,6.54536,13.6219,3.91104,10.7445,12.9582,8.02956,4.41364,9.74889,3.93708,4.66496,9.39938,2.42306,4.89959,11.6267,2.33614,4.87841,12.0671,3.94328,6.20678,13.4455,2.27083,5.95843,10.9658,1.04923,5.75644,9.12371,1.18541,4.83436,7.20039,3.98368,5.20202,7.08463,2.58665,6.09484,7.20473,1.43416,10.162,12.3245,10.727,9.14591,8.29014,0.589157,13.8506,-10.1869,0.39893,13.8174,-9.74538,0.68867,13.3725,-9.8253,0.599635,13.5001,-10.3485,0.417059,12.9578,-10.1415,0.682845,13.1533,-10.5122,0.435477,13.6424,-10.8286,0.335963,13.9954,-10.4907,0.523656,13.1447,-10.9068,0.487569,14.3399,-9.01283,0.653028,14.5773,-8.96621,0.591461,14.4858,-8.55772,0.749928,14.1911,-8.72506,0.845903,14.8453,-8.25016,1.03701,14.4486,-8.21646,1.00805,14.8452,-8.62607,0.765223,15.1613,-8.92112,0.887638,14.8343,-8.93387,0.574595,15.0288,-9.2414,0.655277,15.1455,-8.51171,1.24276,14.1766,-8.39251,1.12952,14.0701,-8.7254,1.41649,14.1541,-9.10354,1.03857,14.1457,-8.01933,1.32334,14.4217,-7.8485,1.10436,14.1427,-8.28645,1.69321,14.3803,-9.3643,0.717117,14.4228,-9.46848,1.25741,14.5279,-9.6731,0.913764,14.7241,-9.39734,0.596738,14.8827,-9.74834,0.877687,5.71168,4.65431,2.75005,6.59753,4.90014,1.63772,6.26941,-1.4184,2.49586,6.98896,-1.21812,1.18298,7.01711,1.81407,1.49829,6.18833,1.85658,2.7408,5.41809,4.52025,4.19957,6.09989,1.66573,4.06229,7.07879,-1.73387,4.84064,6.45651,-1.58536,3.78892,12.7946,-8.58541,1.35877,12.8528,-9.10904,1.29811,13.2628,-8.88009,1.07875,13.17,-8.36512,1.16766,12.8487,-9.60744,1.03471,13.2906,-9.30945,0.896745,12.6434,-8.82897,1.89617,12.6478,-9.38771,1.78328,12.6919,-9.99329,1.43376,12.5133,-7.97407,1.16082,12.9684,-7.69353,0.960734,12.4531,-8.39222,1.90237,13.9356,-9.21468,2.10458,13.9971,-8.96334,1.66638,14.029,-9.5156,1.36264,13.9603,-9.84612,1.71704,13.5028,-9.44842,2.33174,13.5575,-10.1315,1.93942,14.0772,-10.0061,0.920342,13.9856,-10.4063,1.20479,14.1237,-4.73083,3.85306,14.9388,-4.24814,3.67051,14.9503,-5.44393,3.26041,14.4752,-5.76355,3.33983,13.4705,-5.4813,3.84387,14.0775,-6.19712,3.26636,15.0237,-6.17322,2.86192,14.6726,-6.52789,2.92777,14.2736,-6.78644,2.85327,15.4781,-4.86516,3.143,15.2488,-5.38695,3.11015,15.674,-5.41972,2.73011,15.2855,-5.80874,2.75461,13.5294,-6.54833,3.3083,13.8827,-6.55504,3.10657,13.9718,-6.99513,2.80068,14.3093,-7.3877,2.3836,13.9828,-7.47781,2.39969,14.7532,-7.18439,2.52964,12.959,-6.71682,3.4746,12.5662,-5.70938,4.00686,12.3923,-6.97709,3.39046,11.6431,-6.15465,3.96318,12.0697,-4.37548,4.72721,11.0913,-4.56214,4.67259,12.8779,-4.00106,4.64722,13.1871,-7.4372,3.09099,12.6545,-7.57673,3.01471,12.0659,-7.24881,3.25508,12.1359,-7.67409,2.95533,11.5677,-7.14018,3.48146,13.3049,-8.08761,2.73343,12.7326,-8.19331,2.5064,12.2495,-8.16145,2.52778,13.6461,-7.22425,2.93367,13.8013,-7.87096,2.46503,15.18,-8.83745,1.51083,15.2358,-9.30061,1.14397,15.1687,-8.28453,1.8222,15.1457,-8.0177,1.4617,14.8183,-7.83931,1.16805,8.87543,-11.5244,2.22498,9.76995,-11.1161,1.85727,9.93543,-11.7882,1.75807,8.99958,-12.0868,2.07416,10.2675,-11.6856,0.973491,10.0657,-10.8792,1.01423,8.77135,-10.8988,2.29647,9.53621,-10.4924,1.97583,9.62705,-10.133,1.22777,12.7925,0.99825,0.7175,12.0467,3.63479,0.596807,10.44,2.37859,0.547736,11.0087,-0.108684,0.552363,15.2186,-9.67592,0.885144,6.36451,-7.59608,1.14742,6.17846,-6.47944,1.14244,6.01849,-6.54475,2.28594,6.27982,-7.7832,2.1451,6.66138,-8.47044,1.05416,6.64984,-8.73083,1.93931,6.52808,-6.61261,3.43642,6.82676,-7.87157,3.11773,7.19641,-8.79411,2.78722,7.02652,-9.22425,0.94472,6.97892,-9.57042,1.73543,7.66926,-8.84509,0.543361,7.23145,-8.15513,0.485041,6.84045,-7.40936,0.427371,7.53087,-9.64891,2.52398,7.21234,-9.99384,0.784429,7.94877,-9.57373,0.451375,8.70674,-8.59912,0.696073,8.0598,-7.93718,0.267313,8.86191,-9.30838,0.667692,7.72735,-7.29551,0.0841767,8.45393,-7.36286,0.0302641,8.84814,-7.8267,0.266981,9.36477,-8.34923,0.834733,8.12533,-8.5816,3.32551,8.40535,-9.36028,2.91804,7.84427,-7.74316,3.70462,9.05767,-8.26547,3.3836,9.2971,-8.92341,2.58496,9.3601,-9.80782,2.23235,8.61672,-10.1198,2.566,7.72711,-10.4387,2.2684,8.89889,-7.54894,3.76517,9.50675,-7.47574,3.50879,9.70776,-7.87099,3.0878,9.84072,-8.36449,2.53173,10.3887,-7.6101,0.371912,9.58723,-7.73961,0.308777,10.1501,-8.54945,0.874444,10.9099,-8.44242,0.700409,11.6891,-8.34153,1.05259,11.1671,-7.48317,0.502717,10.6928,-9.36876,1.00648,11.2888,-9.22048,0.807275,11.8805,-9.13192,1.19103,11.7477,-7.34357,0.607126,12.0906,-7.99659,1.15194,12.159,-7.13318,0.610479,11.6015,-6.34995,0.374585,11.3958,-6.75695,0.337755,10.7379,-6.64714,0.222396,12.6227,-6.86944,0.600327,13.4796,-7.5275,1.13801,13.0961,-6.65362,0.65078,13.5973,-8.29377,1.32283,9.7732,-6.75373,0.102574,10.7859,-5.71264,0.365211,9.50473,-5.69952,0.31794,13.7441,-6.17055,0.660105,13.3894,-5.41255,0.452527,13.2102,-5.86569,0.494515,13.4484,-6.44924,0.688545,12.7837,-5.79645,0.445262,12.6424,-4.69471,0.452407,12.1527,-5.9486,0.404482,11.7315,-5.14774,0.417013,14.1358,-5.82881,0.608369,13.8444,-4.92435,0.423724,14.3202,-6.64577,0.905218,13.9813,-7.01805,1.16658,14.5952,-5.5153,0.627358,14.4311,-4.65579,0.473107,14.7921,-6.40233,1.03639,15.9536,-4.4569,0.703274,15.7587,-3.56876,0.653486,15.1481,-4.13279,0.54871,15.3961,-4.84717,0.665181,16.4779,-4.23615,0.99528,16.3379,-3.23717,0.99521,15.9299,-2.09016,0.998345,14.9557,-2.71855,0.761266,14.3379,-3.6948,0.581943,15.9171,-5.26242,0.804224,15.4109,-5.62178,1.01879,15.4157,-6.10741,1.10102,15.8017,-5.86825,0.83824,16.2849,-5.8015,0.86785,16.4437,-5.11055,0.916496,12.3311,-8.3615,1.88819,11.9491,-8.45456,2.65351,11.7214,-7.80074,3.17479,12.3251,-8.57228,1.8291,13.865,-8.57761,2.3233,13.4086,-8.75368,2.62024,12.9313,-8.89901,2.40376,15.1132,-6.82347,2.2933,15.2978,-6.20457,2.21416,15.6038,-5.98432,2.17145,15.2983,-6.13072,1.60405,15.22,-6.25909,1.57413,15.1209,-6.75044,1.59495,11.2772,-8.5701,3.02509,11.1027,-7.8595,3.33965,11.9853,-9.25936,2.56548,11.4143,-9.32651,2.79913,12.1965,-9.18966,1.88959,10.3728,-7.84358,3.22448,10.523,-8.5844,2.65584,10.838,-9.43557,2.44516,10.2319,-8.79734,1.74133,9.73044,-8.52207,1.71121,10.5622,-9.44157,1.69544,9.38483,-8.7585,1.65045,16.1581,-2.47783,2.69366,16.2946,-2.05351,1.75855,16.6523,-3.2439,1.67187,16.4934,-3.60223,2.48065,16.7155,-4.28395,1.5428,16.6083,-4.58784,2.19903,15.6481,-1.15173,2.92323,15.7949,-0.664712,1.82152,15.0762,-0.447632,0.95079,16.7296,-5.17614,1.37287,16.5989,-5.92251,1.18391,16.6294,-5.42053,1.92173,16.5401,-6.17622,1.62672,16.1811,-5.00333,2.57477,16.2104,-5.74299,2.24891,16.1547,-6.42222,1.97675,15.6385,-6.50162,1.9127,10.0902,-13.229,1.37358,10.0789,-12.5684,1.58256,10.4876,-12.4845,0.923569,10.1322,-13.1459,0.831164,9.37494,-13.4934,0.79254,9.36438,-13.5674,1.29498,8.17307,-12.9884,0.577669,7.84966,-13.1572,1.2296,8.51417,-13.5006,0.990951,8.5837,-13.3041,0.632009,8.61203,-13.5129,1.421,8.22443,-12.957,1.81934,9.22644,-13.1948,0.480204,9.17963,-12.7616,1.88572,11.5152,-12.6311,1.17104,11.3993,-12.1867,1.4195,11.9861,-12.0996,1.54005,12.1443,-12.6461,1.12739,12.0763,-12.435,0.728085,11.4843,-12.4577,0.809055,11.194,-12.0256,1.02055,12.5849,-11.9282,1.36414,12.6216,-12.3707,1.09917,12.7793,-11.724,0.931431,12.5478,-12.1983,0.762396,14.4065,-7.93991,2.22838,14.0834,-7.85984,1.83328,14.0243,-7.45945,1.76474,13.9728,-7.50793,1.78655,14.1493,-7.55519,1.38759,13.7009,-7.12428,1.16187,15.2789,-6.39092,1.57559,15.1052,-5.86015,1.02503,12.3944,-12.0006,0.561695,11.9946,-12.1011,0.51051,11.5808,-12.1524,0.579852,12.4113,-11.5792,0.594821,15.4084,-7.94889,0.55049,15.1632,-7.89983,0.771831,15.3394,-8.2003,0.9391,15.6167,-8.3627,0.798584,15.8716,-8.28013,0.650274,15.7353,-7.80789,0.429522,16.0429,-7.83887,0.82512,16.0511,-7.47767,0.47016,15.35,-7.52459,0.486285,15.6132,-7.48704,0.350324,15.7626,-7.16555,0.417491,15.4109,-7.15074,0.578888,11.57,-10.1516,2.52259,12.1035,-9.99806,2.33463,12.3387,-9.82937,1.77475,16.0648,-7.02284,1.64129,15.5352,-6.98976,1.69038,16.417,-6.82748,1.33708,11.2672,-11.6052,1.65506,11.8311,-11.5471,1.86776,11.1559,-10.9748,1.91708,11.7166,-10.9243,2.21613,12.2321,-10.7352,2.02165,12.3718,-11.3565,1.65191,15.1564,-7.63442,1.02949,15.1519,-7.27833,1.336,15.5063,-7.50198,1.47705,15.4635,-7.94776,1.1605,15.203,-6.84485,1.55109,15.9925,-7.57896,1.40429,15.856,-8.17436,1.12783,14.8005,-7.86175,2.33097,14.4108,-8.49357,1.9426,14.8594,-8.59471,2.16745,16.2848,-7.38681,1.04941,9.38492,-9.43434,1.44377,9.07197,-10.1501,0.526894,8.16169,-10.4147,0.337584,9.35003,-11.0003,0.319914,8.32601,-11.2974,0.0115444,12.2532,1.90512,6.97198,12.874,-1.19472,5.48499,12.1427,-1.64927,5.68492,11.4032,1.49894,7.39552,4.84291,7.19139,5.66677,12.8963,6.63682,7.48157,13.1153,7.53546,8.80771,12.6611,5.7864,8.40285,13.707,-1.57818,0.718129,8.25318,-5.25065,0.482265,9.33465,-3.97865,0.581851,6.85417,-4.3282,0.896378,7.25875,-5.40251,0.550031,6.64911,-6.52536,0.388894,8.22143,-6.35484,0.278067,14.3723,-2.78717,4.29521,13.608,-3.44922,4.4877,15.0247,-1.93361,3.66491,15.5878,-3.20514,3.29718,10.0136,-4.74222,4.83524,10.4666,-6.18606,4.28905,8.81564,-4.81797,4.71417,8.0461,-1.81574,5.43944,9.17446,-6.52604,4.07601,7.49417,-4.89223,4.49072,7.67942,-6.58236,4.05437,6.4755,-4.88133,3.60948,13.2972,8.6645,4.8155,6.85241,10.4265,0.680663,13.0042,9.55477,8.84643,12.6568,7.00557,10.7829,12.6474,8.98257,10.4259,9.66849,5.9986,0.662171,7.05951,9.20932,0.724693,13.7627,-9.25416,1.03785,13.7098,-8.8223,1.24484,13.9173,-8.4042,1.78344,12.8052,-10.5689,0.931098,14.4032,-8.98368,1.62777,15.9942,-4.18414,2.93445,14.876,-9.04721,1.72259,14.9277,-9.62485,1.3149,10.0034,-7.26106,3.62992,10.8103,-7.12593,3.71722,9.00762,-7.0525,0.178898,7.04824,-10.3984,1.54778,8.632,-12.1266,0.0689086,7.34401,-11.6878,0.473319,7.64409,-12.4306,0.486516,8.97296,-12.7635,0.239478,7.28268,-11.8671,1.32553,7.38844,-12.5749,1.32883,7.90503,-11.8112,1.9802,8.03583,-12.4153,1.88382,13.4534,-4.155,0.502138,14.9956,-5.20381,0.672139,14.8621,-4.63987,0.539443,14.7845,-7.23629,1.23781,14.4043,-7.29359,1.14637,13.8817,-7.8481,1.75235,9.90676,-12.5151,0.340973,9.59947,-11.8364,0.330521,9.88454,-12.99,0.483196,12.4215,6.79235,14.8195,12.2004,11.6447,8.27795,11.5656,10.9552,10.6649,15.1353,-7.62676,2.04255,15.1303,-7.39623,1.58235,11.4378,-11.7739,0.650318,11.894,-11.6061,0.449487,15.1492,-7.56775,0.656492,15.1665,-7.31379,0.80732,12.9723,-9.52168,2.17239,13.0216,-10.1868,1.78702,16.449,-6.5601,0.945475,10.9949,-11.4826,1.17969,12.5903,-11.1104,1.21548,12.3451,-10.9653,0.74485,11.7894,-11.0012,0.519702,11.22,-11.2179,0.675296,10.8466,-10.8994,1.35528,12.4424,-10.5021,1.51934,12.2442,-10.341,0.954523,11.6744,-10.4068,0.660337,11.089,-10.6339,0.801655,10.7663,-10.1689,1.55752,11.0119,-10.2269,2.23614,10.9446,-10.0524,0.935418,12.1014,-9.76288,1.10406,11.5196,-9.86386,0.794674,15.9544,-6.8061,0.596859,15.5212,-6.77414,0.700493,15.2278,-6.96056,0.973537,16.2368,-7.05724,0.727512,15.3171,-6.5571,1.06808,15.651,-6.36754,0.770539,16.1285,-6.37119,0.717082,7.28957,-10.8352,0.601879,7.14895,-11.1778,1.4156,7.78344,-11.2624,2.11146,9.01427,-0.871987,0.794254,6.01212,-4.83968,2.36765,12.528,6.81355,12.6676,12.4925,8.27981,14.9121,12.5841,8.41934,12.6473,12.7142,10.432,8.58603,9.406,12.069,16.0536,10.2754,11.6295,15.9619,75.07,5.21171,139.584,73.5916,4.57673,139.885,74.5685,3.33763,139.627,75.4751,4.01697,139.368,75.2594,6.18624,140.041,73.9517,5.8908,140.414,75.5698,7.08223,140.702,76.3075,6.40735,139.744,76.5825,7.31523,140.393,76.2014,7.61458,141.628,77.0882,7.77997,141.244,74.8864,7.43457,141.979,74.3618,6.89418,141.031,76.165,5.46907,139.279,75.4615,7.18752,142.967,76.0135,6.15585,143.578,76.1715,4.67552,143.782,75.8728,3.10885,143.708,77.7929,2.66057,143.25,78.2307,4.56367,143.249,78.0955,6.12162,142.979,76.6545,1.17099,142.537,74.9676,1.8769,143.128,77.2269,7.28913,142.368,77.579,7.65064,141.754,77.9338,7.91062,140.928,78.4146,7.66813,141.552,76.2908,4.49747,139.148,75.2896,0.618966,141.748,73.7209,1.61156,142.105,78.8945,7.23815,142.048,79.4919,6.75731,142.341,75.3791,2.48808,139.246,76.1071,3.16686,139.069,73.0986,2.07336,141.075,73.1194,3.03659,140.496,89.6143,9.06533,138.587,89.5787,9.01865,138.801,89.3523,9.01569,138.837,89.3125,9.11498,138.554,89.8169,8.8583,138.642,89.6703,8.85054,138.889,91.965,4.16176,138.453,92.0453,4.36602,138.733,92.5436,4.39346,138.646,92.674,4.30288,138.387,92.7424,4.62698,138.736,93.0963,4.57872,138.369,86.9578,-2.10689,139.611,86.9132,-2.34205,139.414,86.4911,-2.35292,139.297,86.4245,-1.92399,139.804,85.5564,-1.99601,139.616,85.6809,-1.62202,140.102,87.0973,-1.77315,139.743,86.6023,-1.4648,139.984,85.8543,-1.06684,140.259,86.9571,-1.10374,139.627,87.258,-1.5145,139.712,87.5365,-1.65524,139.547,87.4987,-1.95115,139.491,87.3625,-2.26129,139.384,86.0075,-0.564108,139.927,85.1239,-0.152732,140.208,84.9881,-0.666172,140.546,84.8408,-1.23711,140.443,86.0471,-0.302183,139.31,86.9842,-0.702701,139.074,85.2008,0.0567662,139.526,84.1681,0.384611,140.589,84.5822,0.430246,139.742,85.1327,-0.0531087,138.827,85.9407,-0.354557,138.652,84.5166,0.393617,138.947,87.9595,-2.08457,139.174,87.7981,-2.45869,139.074,87.8563,-1.53521,139.211,88.6171,-2.33183,138.828,88.4407,-2.72604,138.734,88.7334,-1.88993,138.69,89.2507,-2.60725,138.521,89.101,-2.9575,138.443,89.5723,-2.28949,138.296,87.1757,-2.74952,138.308,87.3659,-2.66279,138.892,88.2385,-2.99557,138.419,88.0503,-3.08788,137.947,89.1453,-3.29604,138.111,88.9485,-3.31912,137.664,89.8854,-3.52214,137.857,89.7243,-3.58322,137.459,90.5125,-3.67715,137.654,90.4681,-3.79372,137.338,89.557,-3.33195,138.167,89.7795,-3.39297,138.085,90.236,-3.29702,137.953,90.6737,-3.43676,137.835,89.9393,-3.21308,138.125,90.8508,-3.75992,137.601,90.978,-3.87494,137.301,91.0274,-3.86764,136.968,90.4896,-3.68479,136.978,89.7085,-3.40813,137.063,91.112,-3.59883,137.708,90.821,-3.09865,137.853,91.2707,-3.24247,137.725,90.3755,-2.97703,137.996,90.8997,-2.79223,137.709,91.2255,-2.9607,137.609,90.2925,-2.55975,137.975,90.6244,-3.35425,136.773,91.1841,-3.60554,136.918,89.805,-3.0212,136.837,90.7881,-2.98413,136.803,89.9915,-2.59217,136.907,91.4496,-3.26439,136.841,88.8958,-3.08835,137.241,88.9508,-2.65996,136.966,89.163,-2.17636,137.072,89.5987,-3.1155,138.278,89.7191,-2.82008,138.321,90.066,-2.92051,138.174,89.8467,-2.60908,138.274,90.0633,-2.68055,138.187,91.4296,-2.96715,136.939,90.9289,-2.67429,137.04,90.1873,-2.29716,137.197,89.4058,-1.93347,137.467,90.2801,-2.29337,137.615,89.5334,-1.96703,137.917,88.61,-1.48551,137.804,88.3487,-1.75639,137.365,88.7381,-1.55517,138.314,91.3995,-2.93874,137.315,90.9783,-2.62387,137.405,87.4956,-1.39005,137.709,87.2305,-1.94343,137.552,88.0983,-2.28282,137.213,87.7632,-1.06779,138.163,86.5861,-1.07956,138.015,86.3233,-1.65783,137.905,86.8546,-0.699004,138.457,85.3803,-1.40008,138.206,85.3014,-1.90852,138.517,86.2137,-2.1901,138.153,85.6488,-0.787363,138.22,87.1121,-2.48611,137.792,87.9019,-1.11725,138.743,85.4149,-2.08957,139.041,84.4129,-1.61682,138.886,84.5352,-1.78865,139.422,83.4751,-1.30665,139.195,83.5096,-1.39908,139.814,84.6909,-1.65926,140.001,83.6639,-1.24753,140.431,84.1841,4.14445,138.499,85.1675,4.23085,138.754,85.017,5.01751,138.667,84.0258,5.02191,138.436,84.5161,3.24992,138.796,85.3012,3.644,139.242,85.8308,5.01912,138.559,85.891,4.2917,138.732,85.9171,3.88121,139.209,86.6867,3.93461,139.054,86.6355,4.30245,138.533,86.6532,5.02794,138.321,85.8964,3.84802,139.832,86.701,3.87594,139.647,87.6013,3.9473,139.428,87.5549,3.98546,138.871,87.5259,4.33647,138.37,85.2997,3.72463,139.975,85.1759,3.36263,139.501,85.109,3.4717,140.077,85.3571,2.98377,139.213,85.36,3.11408,140.02,86.0737,2.70951,139.119,86.061,2.85138,139.858,85.2038,2.2874,138.754,85.9368,2.15259,138.671,84.2044,2.46652,138.678,86.9552,2.59466,139.57,86.8822,2.54085,138.853,86.6853,2.03554,138.382,88.0013,2.35245,139.211,87.8564,2.32773,138.525,88.0122,2.03527,139.9,86.8657,2.35346,140.257,85.8968,2.63148,140.564,87.6237,1.83732,138.091,89.1113,2.07512,138.793,88.9287,2.05679,138.181,88.669,1.60388,137.765,86.6552,1.95594,140.733,85.7047,2.19027,141.012,87.5638,1.70535,140.398,88.4943,0.942202,137.828,87.4594,1.16928,138.169,89.7521,1.38728,137.435,90.0212,1.81271,137.852,89.5717,0.726742,137.468,86.6841,4.16329,140.141,87.678,4.1826,139.935,87.4379,4.5917,140.202,86.6668,4.61683,140.378,85.8208,4.16325,140.391,85.8032,4.66291,140.633,86.7135,5.10564,140.281,87.5012,5.01589,140.129,88.0408,4.60195,140.108,88.0735,4.3457,140.022,88.0914,4.9538,140.066,85.7754,5.19246,140.51,88.5249,4.58982,139.973,88.3936,4.35231,139.95,88.5794,4.94287,139.928,89.0463,4.58212,139.756,88.6814,4.19036,139.668,89.1012,4.99495,139.701,88.5072,5.19476,139.844,88.838,5.39437,139.486,89.7686,5.41103,139.182,89.7832,5.02568,139.468,89.7288,4.59419,139.522,88.4838,4.02282,138.671,88.5544,3.97641,139.192,89.4921,3.98137,138.962,89.3941,4.07169,138.475,90.3658,4.03919,138.757,90.2507,4.12403,138.298,89.6184,4.20391,139.354,90.5328,4.27272,139.171,88.4668,4.38052,138.222,89.3669,4.42777,138.046,87.5783,5.02342,138.153,88.5218,5.02017,138.002,89.4201,5.02703,137.832,90.1963,4.50214,137.939,90.2579,5.03792,137.765,89.5677,5.55527,138.112,90.416,5.5119,138.01,88.6536,5.58906,138.285,87.7061,5.62108,138.471,86.7566,5.66636,138.653,91.0542,4.16695,138.148,91.1798,4.11807,138.585,91.0097,4.55136,137.846,91.3218,4.32083,138.965,91.9161,4.22251,138.058,88.2298,1.49624,140.142,88.4161,1.75076,140.016,88.802,1.37015,139.871,88.7975,1.66021,139.831,89.1758,1.76338,139.392,89.4436,1.27735,139.498,90.2907,1.52132,138.884,90.287,1.12695,139.116,90.1916,1.78036,138.439,91.3513,1.23711,138.601,91.0977,0.920876,138.838,91.2027,1.50431,138.178,91.0234,1.4888,137.699,92.0419,1.2874,138.042,92.136,1.03005,138.417,91.9301,1.26297,137.599,90.8059,1.16305,137.291,91.7623,0.92186,137.284,90.6403,0.577244,137.264,91.6216,0.430644,137.155,90.6367,0.0870084,137.582,91.589,-0.0542964,137.396,89.5737,0.230788,137.881,88.4702,0.463862,138.275,89.7209,0.0787398,138.431,90.7795,-0.0202806,138.087,88.5666,0.335119,138.87,92.7634,1.02831,137.989,92.7249,0.833666,138.27,93.0411,0.715722,138.233,93.1826,0.799807,137.994,92.7416,1.00486,137.616,93.1289,0.824046,137.689,93.4608,0.425906,137.987,93.1252,0.454104,138.312,93.2445,0.523644,137.548,93.0796,0.0684376,138.28,93.5478,-0.000543892,137.984,93.2959,0.0869933,137.442,92.7133,0.526462,138.397,92.2979,0.610381,138.473,92.2257,0.271805,138.442,92.638,0.166773,138.373,91.6457,0.769697,138.708,91.753,0.97648,138.663,91.9767,0.926225,138.607,92.0247,0.674816,138.615,91.5659,0.449102,138.685,91.9541,0.359057,138.576,90.9988,0.533531,138.833,91.8311,0.124612,138.543,91.5818,0.227255,138.612,91.8819,-0.00992452,138.323,91.0626,0.147058,138.551,91.6717,-0.168676,137.901,89.9385,0.318099,138.885,90.1641,0.682517,139.115,88.6545,1.02887,139.854,89.29,0.86866,139.495,88.7518,0.579527,139.419,88.4552,0.806736,139.823,88.0687,0.882866,140.01,88.0852,1.14858,140.139,87.5514,0.805977,139.952,87.384,1.25898,140.408,86.3623,1.01028,140.33,86.4808,1.45555,140.669,86.3526,0.783701,139.639,87.4243,0.604411,139.295,87.4001,0.717417,138.648,86.4243,0.900099,138.923,85.4777,0.989479,139.845,85.4363,1.2219,140.573,85.6089,1.04353,139.104,85.5259,1.65995,141.011,84.4956,1.28264,140.721,84.6184,1.82372,141.348,84.7623,2.46963,141.425,86.5271,1.35141,138.425,92.5585,0.274251,137.275,92.4813,-0.114092,137.457,93.0858,-0.182392,137.496,93.0381,-0.241862,137.848,92.4829,-0.257304,137.837,92.8703,-0.134403,138.162,92.5113,-0.119055,138.186,90.4043,4.63462,139.367,90.4553,5.01421,139.321,90.9064,4.46313,139.241,90.8882,4.67995,139.283,90.9357,4.99029,139.267,90.6798,5.37365,139.037,91.009,5.21615,139.169,91.4814,5.37298,138.869,91.2445,5.20694,139.133,91.2985,4.99416,139.182,90.5647,5.5781,138.518,89.6852,5.62665,138.685,91.2477,5.49278,137.925,91.4101,5.6371,138.398,88.7717,5.69788,138.888,92.2372,5.32351,138.677,92.2127,5.53214,138.325,92.1241,5.43404,137.9,92.7295,5.24152,138.613,92.8818,5.31406,138.335,92.8338,4.9746,138.754,92.2521,5.01043,138.874,91.6816,5.01187,138.994,92.0129,5.02929,137.686,91.0832,5.04673,137.709,92.7803,5.29831,138.003,92.8796,4.98474,137.905,92.1753,4.65954,138.881,91.6262,4.68041,139.02,91.246,4.68716,139.195,91.1407,4.466,139.18,83.7783,1.04085,140.947,84.1195,0.862235,140.53,83.4822,0.713196,141.144,82.8609,1.24971,141.719,83.7471,1.4097,141.286,84.4504,0.812686,139.878,84.7713,1.0258,139.911,91.9313,4.56982,137.778,92.8057,4.5957,137.928,93.1886,4.96958,138.361,92.5958,4.30806,138.072,91.5843,-3.33815,137.311,91.3857,-3.70356,137.321,88.47,8.62733,139.239,88.4857,8.90407,139.005,88.802,8.82475,139.115,88.8219,8.66676,139.19,88.961,8.8485,139.074,89.0509,8.70239,139.124,88.9934,8.96805,138.919,89.0975,8.48105,139.16,88.8707,8.42702,139.225,89.0734,8.29833,139.15,88.9228,8.25974,139.19,88.5439,8.32569,139.291,88.6792,8.05262,139.121,89.4858,8.18152,138.697,89.7409,8.34903,138.688,89.7174,8.33413,138.458,89.4701,8.20771,138.39,89.8587,8.60047,138.687,89.7667,8.53657,138.355,89.6734,8.40017,138.878,89.7113,8.59909,138.923,89.7124,8.82262,138.305,89.5955,9.01522,138.341,89.3119,9.02527,138.245,89.3509,8.74293,138.101,89.4174,8.42868,138.159,88.7869,8.9765,138.192,88.8031,8.63026,138.024,88.8532,9.09184,138.554,84.7792,-0.541291,138.458,83.977,-0.185435,138.633,83.5815,-0.829873,138.75,84.4813,-1.14198,138.524,84.5026,0.787834,139.255,88.1843,8.8609,138.223,88.1938,8.49678,138.023,88.2808,9.00962,138.605,75.9865,1.87745,138.67,74.9999,1.67579,139.528,75.7029,0.764798,138.735,76.312,2.47142,138.68,86.3043,-2.40817,138.678,87.1898,-2.43909,139.274,78.209,1.07297,142.558,78.7896,1.80374,142.888,79.2662,2.91379,143.051,79.3165,2.27102,142.866,79.4364,3.77556,143.027,79.5881,1.41151,142.647,79.9408,2.0865,142.679,80.2205,2.81627,142.811,80.4499,1.06451,142.318,80.7923,1.82163,142.407,81.1317,2.63794,142.561,79.1471,0.740073,142.348,80.0989,0.408373,142.06,78.0001,0.484888,141.977,78.5755,0.15944,141.686,79.4887,-0.354155,141.235,79.6462,5.73077,142.627,79.5668,5.05563,142.885,79.89,4.35144,142.785,80.6806,5.03883,142.556,80.6116,4.33102,142.575,80.4478,3.60748,142.724,80.6565,5.66639,142.31,80.2772,7.9136,140.102,80.6747,7.77516,140.797,79.5614,7.72978,141.155,79.1256,7.96369,140.47,78.7551,7.58796,139.711,77.5587,7.53676,140.052,79.9437,7.54826,139.426,81.9286,7.82893,139.208,82.288,7.99184,139.787,81.3244,7.93623,139.892,81.0017,7.65025,139.263,82.6779,7.84121,140.292,81.7214,7.8141,140.487,81.0995,7.43846,141.263,80.0438,7.36281,141.621,83.0027,7.54348,140.714,82.1404,7.4988,140.912,81.4508,6.99415,141.564,80.5134,6.98107,141.94,83.2213,7.07009,141.005,82.3945,7.00376,141.248,80.6303,6.27609,142.002,81.5556,6.30694,141.712,81.602,5.64791,141.983,83.4009,6.3049,141.099,82.4872,6.32801,141.452,83.3507,5.55273,141.529,82.5094,5.62188,141.7,79.8965,6.23907,142.273,83.2206,8.01261,139.64,83.5248,7.8869,140.118,82.9004,7.93311,139.147,81.8719,7.22304,138.606,82.8133,7.47173,138.659,83.8586,7.60422,138.659,84.7132,7.68943,138.565,84.6503,8.13511,138.869,83.8813,8.03228,139.004,84.7617,8.22233,139.357,84.0012,8.07906,139.52,80.9567,6.89661,138.666,84.8995,8.07246,139.82,84.2129,7.95068,139.978,85.3567,8.40495,139.231,85.3341,8.2724,138.72,85.4466,7.80909,138.455,85.4343,8.22024,139.719,86.1224,8.40008,139.619,86.0415,8.57991,139.075,86.005,8.03008,139.973,85.5211,7.90234,140.032,85.0324,7.77728,140.139,84.3841,7.65641,140.315,85.1496,7.36634,140.254,84.5164,7.21978,140.478,78.501,6.78969,139.033,77.322,6.603,139.426,79.7892,6.78528,138.822,78.4623,5.72124,138.708,79.8656,5.72177,138.522,77.1953,5.62029,138.975,77.27,4.68812,138.893,78.5201,4.73442,138.663,76.9384,2.42772,138.356,76.6246,1.62796,138.128,77.6078,1.394,137.829,78.0716,2.27393,138.152,79.4405,1.93708,138.271,79.7341,2.86162,138.543,78.3368,3.0756,138.522,79.9048,4.68767,138.489,82.8046,4.32097,138.4,82.786,5.18768,138.359,81.4085,5.72814,138.367,82.2609,6.35595,138.334,78.8529,1.00841,137.847,80.1814,0.606056,138.239,81.1231,1.52424,138.578,76.9919,0.537369,137.833,78.0537,-0.0404858,137.564,76.37,0.946418,138.141,74.9685,0.4967,140.87,76.3443,-0.079648,141.189,75.7789,-0.308397,140.587,76.0379,-0.904055,139.187,75.5011,-0.0532612,139.536,76.4231,-0.93299,140.159,77.0698,-0.64087,140.686,77.097,-1.41821,139.684,76.6419,-1.43541,138.802,77.7276,-1.19702,140.189,77.2493,-1.9351,138.408,77.6465,-2.03502,139.162,77.9926,-2.46923,138.723,77.655,-2.36819,138.016,78.2303,-1.91473,139.62,78.5542,-2.41188,139.203,78.1302,-2.93779,138.293,77.9915,-2.77325,137.664,78.7622,-2.81877,138.825,78.5509,-3.45699,137.897,78.4279,-3.22351,137.318,79.0239,-3.32953,138.438,78.9867,-3.95985,137.457,78.857,-3.65533,136.904,79.4135,-3.86569,137.976,78.6104,-2.8204,136.883,79.0435,-3.20371,136.535,79.3009,-4.02748,136.386,79.5256,-3.51411,136.094,79.04,-2.37009,136.748,79.449,-2.7859,136.468,79.9324,-3.13352,136.135,79.4242,-4.47023,136.95,78.7035,-1.92487,137.011,78.2119,-2.39609,137.175,79.534,-2.0663,137.052,79.2797,-1.60729,137.33,78.4499,-1.46307,137.262,77.8454,-1.96268,137.453,79.175,-1.17064,137.569,79.895,-2.53031,136.751,79.7968,-4.33062,135.835,80.0506,-3.79114,135.609,79.9062,-4.80672,136.342,79.9239,-4.85839,136.77,79.7576,-4.7542,136.995,80.4355,-4.94909,136.63,80.7057,-5.05686,136.321,80.3516,-4.98832,135.88,80.3213,-4.61613,135.419,80.2432,-4.85358,136.968,79.1692,-2.1771,139.522,79.3464,-2.53016,139.131,79.7981,-1.73483,139.446,79.0277,-1.622,140.022,79.9969,-1.41899,139.879,79.7726,-2.05289,139.147,78.4433,-0.850387,140.592,79.6637,-0.994819,140.585,81.6877,-0.67688,141.035,81.2753,-0.974202,139.895,80.4312,-0.966782,140.278,80.7451,-0.410783,141.255,77.4597,-1.45778,137.694,78.2692,-0.896579,137.439,76.9345,-0.872631,137.915,79.2867,-0.680798,137.763,79.8217,-1.15945,138.404,80.2399,-0.769832,138.749,79.7333,-1.54162,138.066,80.3592,-0.289819,138.465,79.5311,-0.103197,137.895,81.5006,4.24583,142.258,81.354,3.45074,142.409,82.3921,4.10976,141.991,83.4148,3.88812,141.699,83.1855,3.05215,142.056,82.2667,3.28969,142.172,82.9798,2.21803,142.144,82.0504,2.43001,142.345,83.3885,4.82024,141.771,82.5092,4.91023,141.983,81.6136,5.004,142.245,84.1632,4.11215,141.327,84.2218,4.77783,141.524,84.1233,5.44005,141.274,84.8162,5.32382,140.939,84.9292,4.7241,141.098,84.8964,4.07065,140.74,83.9948,6.63377,140.687,84.0806,6.30354,140.575,84.0595,5.94884,140.851,84.4154,6.30654,140.267,84.5945,6.72693,140.268,84.8521,5.81497,140.419,85.2255,6.97837,140.025,84.7839,6.55354,139.645,85.254,6.80342,139.565,85.7407,5.60737,140.103,84.6618,3.59011,140.752,84.2631,3.66633,141.137,84.8887,3.04151,140.889,84.0995,3.30126,141.365,81.7346,1.55505,142.136,83.8285,2.00484,141.78,84.012,2.727,141.808,82.3802,0.470812,141.766,81.4087,0.78737,142.016,83.2542,0.128439,141.396,82.1027,-0.13036,141.691,83.0339,-0.472221,141.308,84.0152,-0.228104,140.971,83.8409,-0.816047,140.875,82.7246,-0.917636,140.754,82.5175,-1.07851,140.108,82.5901,-0.376461,138.828,83.0167,0.651179,138.669,80.4677,-3.41685,135.73,80.8863,-3.28493,136.077,80.3525,-2.94409,136.429,80.7283,-2.95361,136.909,80.2566,-2.49264,137.285,81.2543,-3.38778,136.559,81.4038,-3.7613,137.03,80.9033,-3.25015,137.421,80.4105,-2.71276,137.823,80.7418,-3.79159,137.742,80.2616,-3.10738,138.133,81.2062,-4.32839,137.256,79.9087,-2.00263,137.683,80.0348,-2.18442,138.297,79.8819,-1.70769,138.783,81.0318,-3.81476,135.395,81.4248,-3.72143,135.76,80.6188,-4.14091,135.244,81.4971,-4.36042,135.217,81.8476,-4.28839,135.532,81.7379,-3.86143,136.231,82.0923,-4.36917,135.949,81.1178,-4.57592,135.082,81.7321,-4.90718,135.228,82.0479,-4.85714,135.469,81.417,-4.93029,135.102,81.8235,-4.21051,136.648,82.1276,-4.60032,136.321,81.6679,-5.30273,135.433,82.0198,-5.27314,135.643,81.2672,-5.19631,135.258,81.1213,-5.30086,135.567,81.3887,-5.37491,135.811,80.8228,-4.92397,135.234,80.7675,-5.17711,135.66,82.2591,-4.83832,135.786,82.227,-5.14821,135.826,82.2704,-4.87141,136.086,82.129,-5.12869,136.147,81.8942,-4.92158,136.492,81.7821,-5.36137,136.061,81.4588,-5.15705,136.389,81.0244,-5.23044,136.086,81.5852,-4.63756,136.803,81.164,-4.9677,136.665,80.8936,-4.81037,136.96,80.8947,-4.46982,137.439,80.644,-4.70367,137.249,80.4242,-4.46814,137.538,80.7374,-4.29046,137.619,80.0188,-4.67485,137.291,79.7445,-4.33664,137.58,80.2126,-4.05366,137.825,79.8882,-3.50351,138.188,84.8245,5.81325,139.078,84.5421,6.22229,139.27,83.8586,5.96875,138.663,84.5451,6.53719,139.043,84.1087,7.00717,138.645,83.1357,6.73271,138.485,84.9308,7.15345,138.622,85.1699,6.83371,139.033,85.6374,7.3063,138.542,85.7918,7.03908,138.947,86.1433,7.96497,138.346,86.3041,7.49178,138.42,86.4376,7.23979,138.797,86.8233,8.1441,138.156,86.9759,7.6679,138.234,87.1253,7.43132,138.615,86.4824,7.22971,139.272,87.216,7.43295,139.073,85.829,7.01403,139.438,86.0344,8.42097,138.577,86.7524,8.60157,138.402,86.8013,8.78507,138.884,85.0465,5.99148,139.676,84.6324,6.3039,139.728,85.8434,5.81545,139.513,85.8224,5.68294,138.886,86.8036,5.49455,139.883,86.833,5.74982,139.3,87.8089,5.71134,139.101,87.8374,5.39715,139.72,85.011,1.5817,138.688,83.9943,1.70721,138.674,84.8177,1.02951,139.12,83.9609,0.914911,138.788,85.6524,7.51207,140.119,85.7779,7.16685,139.89,86.4396,7.42726,139.746,86.1248,7.67369,140.03,87.2481,7.65321,139.515,86.9427,7.73811,139.767,86.6649,7.65754,139.855,86.5434,7.84277,139.951,88.002,7.848,139.251,87.9452,7.63108,138.889,87.4616,8.05597,139.644,88.0285,8.18961,139.436,86.9698,7.96348,139.815,87.8109,7.64491,138.473,88.5582,7.84949,138.769,88.4347,7.86939,138.393,87.3526,8.40768,139.59,87.9304,8.54384,139.371,86.8765,8.24856,139.776,86.7239,8.42376,139.69,86.9455,8.62913,139.402,87.7466,8.79463,139.119,86.4475,8.12517,139.905,88.2953,8.10891,138.106,87.655,7.87875,138.126,87.5221,8.3249,138.043,88.99,8.04325,138.358,88.8837,8.27425,138.096,89.0783,8.02099,138.708,87.4856,8.76496,138.26,87.5802,8.89006,138.71,89.1516,8.2057,139.018,89.4791,8.31686,138.93,89.2567,8.507,139.094,89.468,8.55008,139.03,89.2076,8.7556,139.069,89.4201,8.80704,139.001,86.44,8.34,139.77,85.7734,1.49031,138.642,87.9917,-2.80657,137.457,88.1839,5.19803,139.921,92.6702,0.713141,137.348,77.2242,0.263231,141.687,77.8124,-0.288998,141.137,83.7682,7.60311,140.496,83.944,7.14536,140.732,79.5404,-2.94064,138.69,79.9068,-2.52534,138.649,80.0321,-1.3445,139.125,80.3876,-1.08268,139.473,81.1342,0.163243,141.88,77.0799,3.17496,138.7,82.3948,-0.964082,139.384,81.2328,-0.804955,139.314,81.2666,-0.0553045,138.746,76.262,-0.193146,138.284,74.827,0.909241,140.041,82.8705,5.77769,138.382,81.2295,2.65302,138.575,81.3534,4.56722,138.397,81.971,0.738715,138.638,82.8432,3.42421,138.503,82.7611,2.57589,138.603,81.3257,3.60224,138.473,79.8728,3.76424,138.54,78.505,3.88413,138.665,77.2681,3.90733,138.862,82.7174,1.71854,138.668,76.4582,3.84765,139.067,74.1153,2.5023,140.118,74.214,1.27209,141.094,74.0376,1.67373,140.558,2.92105,-11.6999,167.707,2.78718,-11.7492,167.292,2.48548,-12.1123,167.646,2.56525,-12.0748,168.13,7.65617,-3.52328,173.465,7.54015,-4.09876,173.4,7.58091,-3.91822,174.431,7.6998,-3.44589,174.228,8.274,-2.2529,174.311,8.23952,-2.69841,174.418,8.74055,-2.04251,175.299,8.73654,-1.80688,174.888,8.00331,-3.1196,174.382,8.30173,-2.26782,175.403,8.15059,-0.904966,171.756,8.3773,-0.45721,171.712,8.04556,-0.901113,171.073,7.92311,-1.2812,171.243,8.51302,-0.653136,172.681,8.84242,-0.131758,172.732,8.74733,-0.57783,173.788,9.10587,-0.0509636,173.95,8.76253,0.331052,172.851,9.10933,0.40547,174.204,9.08417,-1.11025,175.088,9.11139,-1.05575,175.591,8.64236,-1.08916,175.718,8.68009,0.41523,174.241,8.32132,0.379019,172.924,7.84246,0.0112108,171.799,8.27742,-0.066558,171.706,7.93157,-0.612386,170.862,7.5263,-0.564604,170.925,7.48226,-1.36179,170.186,7.21485,-1.39754,170.386,7.25227,-2.25883,169.799,7.48878,-2.07048,169.684,7.92568,-0.164729,172.788,7.54862,-0.397339,171.889,8.19312,-0.164666,173.809,7.83687,-2.69073,174.899,8.11047,-1.33127,175.147,7.2854,-0.815206,171.103,7.19222,-0.539022,171.901,7.10288,-0.829617,171.219,7.09996,-2.14149,169.856,7.05335,-0.835547,170.547,7.22768,-2.80908,169.841,7.44918,-2.71865,169.756,7.77911,-2.24356,169.701,7.71457,-1.64296,174.696,7.61994,-2.85051,174.722,7.37521,-3.11939,170.377,7.65035,-2.83913,170.222,7.98713,-2.35557,170.245,8.05207,-1.68763,170.565,7.89189,-1.46093,170.148,7.96773,-1.79722,170.95,7.93095,-2.29882,170.948,7.54343,-3.0737,171.389,7.38663,-3.43076,171.028,7.48643,-3.71884,171.718,7.67329,-3.26899,171.995,7.73298,-3.42739,172.705,7.55454,-3.96443,172.512,7.80392,-2.95308,172.872,7.81621,-3.03701,173.655,8.85008,-0.813701,174.527,9.17535,-0.421292,174.777,8.88784,-1.13828,174.806,9.2164,-0.112449,175.182,8.78815,-0.100394,175.253,8.25138,-0.473484,174.672,7.714,-0.777902,174.225,7.62643,-0.46263,173.491,7.43252,-0.384816,172.696,7.95198,-2.73413,173.728,8.05091,-2.31034,173.756,7.87583,-2.19867,173.248,7.63424,-2.52789,172.855,7.74936,-2.94608,172.184,7.67126,-2.66894,171.673,7.53372,-2.9878,170.93,7.71648,-2.74346,170.933,6.77471,-1.06019,169.238,6.613,0.112684,169.31,6.38597,-0.102852,167.864,6.39502,-1.48035,167.749,7.69313,-2.5628,175.578,7.78719,-1.31781,175.42,7.18572,-0.0160921,171.839,7.07653,0.852203,171.977,6.84671,0.441288,170.649,7.68843,-0.403994,174.803,7.55069,0.0875121,173.914,7.38165,0.227099,172.915,4.83701,4.44772,167.719,4.88248,4.57995,165.931,5.52862,3.2983,165.969,5.55952,3.27257,167.768,6.02102,2.1462,167.829,5.92378,2.12618,166.093,6.06282,1.01053,166.182,6.26935,1.0413,167.881,3.74941,5.54268,167.695,3.76539,5.91814,165.962,2.4714,6.20172,167.68,2.2823,6.53217,166.006,5.97818,-0.116817,166.224,5.90313,-1.28075,166.124,1.2552,6.43328,167.703,1.25203,6.61368,166.065,7.37617,-4.71202,172.268,7.40689,-5.01569,173.371,7.30118,-4.32756,171.33,7.22348,-3.91088,170.544,7.14228,-3.44512,169.9,7.03637,-2.91905,169.442,6.90121,-2.14952,169.238,3.46886,-8.76254,183.458,4.66376,-7.86963,182.947,4.51361,-9.02447,181.907,3.35403,-9.98945,182.256,5.53824,-7.93531,181.466,5.66792,-7.00236,182.327,4.44635,-9.85536,180.824,3.29078,-10.8587,181.066,5.4935,-8.65088,180.459,1.02849,-11.9692,181.202,1.04603,-11.1893,182.516,1.03559,-10.2658,183.699,4.43668,-10.4219,179.818,3.27735,-11.3996,180.012,5.47949,-9.21732,179.446,6.35926,-7.33063,180.034,6.34267,-7.85717,178.891,1.01989,-12.4182,180.082,2.129,-11.5684,181.185,2.11441,-12.0601,180.084,2.16735,-10.7311,182.458,2.1897,-9.58555,183.744,6.32458,-6.81044,181.077,6.23378,-6.39913,181.813,7.14228,-6.13034,173.22,7.15314,-5.6468,171.917,6.85415,-6.63741,171.391,6.74124,-7.44617,172.866,7.112,-5.12115,170.835,6.85772,-6.0048,170.245,7.05743,-4.57952,169.954,6.81158,-5.36617,169.278,6.97268,-3.97643,169.274,6.73199,-4.67473,168.494,6.82906,-3.29792,168.761,6.57769,-3.92129,167.914,6.27286,-8.43552,177.799,5.46267,-9.69493,178.515,6.13531,-9.0756,176.969,5.42723,-10.1255,177.681,4.45588,-10.8257,178.928,4.48138,-11.1471,178.088,3.30484,-11.7528,179.116,3.34365,-12.0159,178.272,2.12688,-12.3813,179.164,2.13851,-12.6008,178.319,1.02282,-12.7089,179.152,1.01546,-12.8846,178.314,-4.59452e-005,-12.7952,179.153,-4.59375e-005,-12.957,178.318,6.59518,-8.17956,175.912,6.9585,-6.94172,176.622,7.00691,-6.35673,178.288,6.99695,-5.88615,179.637,6.90414,-5.51614,180.869,7.13294,-6.50611,174.744,6.77024,-7.67098,174.539,6.00762,-2.58781,166.846,6.30931,-3.13878,167.485,6.62166,-2.49038,168.362,5.56119,-2.3625,165.713,5.40893,-10.5244,176.861,6.01286,-9.63162,176.246,4.52986,-11.4454,177.23,3.41287,-12.2468,177.403,5.86139,-10.0511,175.579,5.33538,-10.8301,176.093,1.03792,-12.9943,177.507,-4.5814e-005,-13.0424,177.523,2.18705,-12.7668,177.473,1.05755,-13.0253,176.716,2.21903,-12.8051,176.645,3.42978,-12.3499,176.556,4.50895,-11.6419,176.409,6.34344,-8.92719,175.396,6.11373,-9.46625,174.935,-4.56217e-005,-13.0823,176.752,6.44795,-8.55821,174.388,6.37641,-8.55232,173.371,6.1614,-9.20794,174.256,6.07179,-9.23887,173.578,6.11548,-8.94172,172.525,5.84831,-9.51812,172.977,6.3517,-8.25181,171.78,6.47885,-7.56127,170.725,6.47114,-6.90648,169.625,6.41136,-6.21955,168.599,6.3198,-5.50486,167.716,6.16868,-4.80607,167.04,5.89442,-4.17552,166.587,5.51153,-3.73979,166.085,4.98863,-3.44101,165.123,2.24558,-12.5833,170.578,2.00136,-12.7494,170.012,1.81316,-13.1442,170.279,1.95909,-13.0006,170.871,2.96728,-10.7735,164.869,3.23672,-10.6717,165.559,3.61982,-10.0762,165.398,3.33716,-10.1157,164.411,2.70401,-12.0106,168.697,2.10084,-12.4964,168.497,2.20965,-12.4288,169.084,0.862994,-12.1034,164.364,0.992124,-12.0453,163.67,1.20259,-11.3836,162.353,1.16701,-10.4206,162.012,1.11733,-11.9404,163.064,3.8186,-10.2996,166.363,4.30513,-9.69934,166.536,4.09984,-9.24014,165.361,3.41731,-10.7429,166.285,2.92761,-11.0721,165.76,3.09527,-11.0614,166.271,2.54586,-11.0697,164.236,2.29109,-11.4548,164.734,2.6879,-11.197,165.259,2.08083,-11.6824,165.169,2.45312,-11.4535,165.617,2.92594,-10.4533,163.626,4.84855,-8.92353,166.885,4.68343,-8.27193,165.655,4.40685,-7.7745,164.706,3.72903,-9.14445,163.781,2.43042,-12.3235,169.681,2.69524,-12.1855,170.286,3.23775,-11.7446,169.925,2.92954,-11.9059,169.294,2.93215,-12.0494,170.938,3.54565,-11.5725,170.653,4.35407,-10.7715,170.249,3.75557,-11.2383,169.402,4.72034,-10.1537,169.148,4.11894,-10.7321,168.631,3.36193,-11.4884,168.796,3.67861,-11.0722,168.138,3.0991,-11.6248,168.229,3.36982,-11.2613,167.66,3.1321,-11.3836,167.246,2.97553,-9.67682,163.073,4.85428,-9.5949,168.088,4.30036,-10.2396,167.663,3.84805,-10.6633,167.305,3.47976,-10.9525,167.0,3.17837,-11.1676,166.771,1.57188,-12.9884,169.436,1.38428,-13.4113,169.946,1.50393,-12.9787,168.765,0.78608,-13.3469,168.872,0.784342,-13.4347,169.367,-4.40565e-005,-13.6372,169.327,0.75993,-13.7467,169.836,2.05692,-12.7413,171.444,2.4237,-12.42,171.191,1.79266,-13.197,171.313,1.78117,-12.998,171.714,2.68448,-11.3202,165.953,2.85126,-11.2732,166.291,2.94868,-11.3267,166.627,2.93888,-11.4813,166.955,2.06024,-12.5297,167.983,1.48488,-13.0007,168.245,0.794726,-13.3685,168.412,1.55947,-11.9129,164.733,1.73961,-11.7372,164.176,1.95565,-11.4892,163.596,2.18603,-10.8964,162.936,2.17862,-10.0491,162.543,5.85528,-9.02631,171.119,5.97977,-8.45024,170.124,5.98444,-7.82594,169.049,5.92585,-7.1412,167.972,5.6843,-5.80975,166.206,5.83465,-6.4458,166.989,5.2308,-9.83484,170.641,5.38538,-9.33755,169.625,5.40049,-8.06796,167.404,5.44333,-8.75206,168.546,5.28935,-7.38786,166.303,5.09133,-6.81534,165.434,1.93885,-9.10676,162.675,2.86358,-8.82723,163.087,2.60174,-7.92775,163.322,3.50436,-8.08297,163.707,3.23357,-7.55461,163.839,4.14931,-7.38735,164.356,3.79203,-6.85378,164.276,4.82141,-6.347,164.953,4.44683,-5.84511,164.651,5.41002,-5.2974,165.709,4.99419,-4.86388,165.293,1.0788,-9.3096,162.333,0.868188,-8.37333,162.726,1.71333,-8.19999,162.977,4.44489,-4.34052,164.499,2.76991,-6.7115,163.463,2.13308,-6.94981,162.941,3.33594,-5.90891,163.678,3.94833,-5.16529,164.018,1.77671,-13.4714,170.431,1.71313,-13.8056,170.542,1.74083,-13.7087,170.891,1.84511,-13.3813,170.816,1.48081,-14.1516,170.66,1.48116,-14.0545,171.021,1.12652,-14.5059,170.763,1.11458,-14.3963,171.146,1.67859,-13.593,171.234,1.39847,-13.908,171.4,0.675772,-15.0069,170.757,0.668993,-14.9298,171.293,1.2897,-13.7188,171.758,1.06438,-14.2297,171.549,1.0151,-14.0251,171.94,0.647667,-14.7388,171.751,0.637424,-14.508,172.172,1.57364,-13.4349,171.558,1.80773,-13.3658,171.111,0.636334,-14.2909,172.598,1.00946,-13.8321,172.352,1.25152,-13.5185,172.153,1.51473,-13.2493,171.948,1.57784,-13.6044,170.158,1.57947,-13.8798,170.281,0.647217,-14.8467,170.332,0.481928,-14.7719,170.147,1.39099,-14.1995,170.402,1.08544,-14.5417,170.484,0.432373,-14.4864,170.076,0.496179,-14.171,169.992,-4.53151e-005,-14.2786,169.838,0.770337,-14.6963,170.33,0.610212,-14.6507,170.225,1.01571,-14.4942,170.375,1.37047,-13.6941,170.057,1.38916,-13.905,170.16,0.643401,-14.122,170.086,0.860859,-13.8207,170.015,1.17575,-13.644,169.997,1.24858,-14.1949,170.284,0.573847,-14.4252,170.167,0.711461,-14.4055,170.241,0.804099,-14.1074,170.167,0.680863,-14.5826,170.271,0.771204,-14.6071,170.321,0.900773,-14.4464,170.325,1.06613,-14.1641,170.233,1.19077,-13.8867,170.123,1.24338,-13.7303,170.048,1.13659,-13.7121,170.031,0.977265,-13.8451,170.088,5.26816,-10.5656,174.845,4.87763,-11.0004,175.193,5.1219,-10.9664,175.522,5.58725,-10.3586,175.101,4.17316,-11.5176,175.449,4.35738,-11.626,175.792,5.29955,-10.2944,173.584,5.5756,-9.96598,173.299,5.23483,-10.3131,172.948,4.9875,-10.5651,173.322,0.766684,-13.0087,175.2,0.686345,-13.1527,174.733,4.1896,-11.1365,172.556,4.33452,-11.0312,172.033,3.68331,-11.4984,172.042,3.56592,-11.5021,172.545,5.466,-9.97239,172.506,3.34522,-12.2123,175.889,3.21648,-11.9402,175.507,1.00978,-12.9359,175.812,2.97816,-11.7714,172.655,2.82924,-11.6735,173.086,3.39306,-11.4956,172.98,3.07877,-11.8635,172.173,2.57586,-12.1279,172.347,2.5132,-11.969,172.811,4.01344,-11.2219,172.994,2.09447,-11.9335,173.366,2.06856,-11.7278,173.698,2.33237,-11.6495,173.591,2.3965,-11.8034,173.225,4.7633,-10.7239,172.694,4.95122,-10.5021,172.187,4.55644,-10.8949,173.118,2.22862,-12.6281,175.93,2.27444,-12.2271,175.43,3.09854,-11.7099,175.32,2.27505,-11.8069,175.167,4.03933,-11.4248,175.268,4.6996,-10.9765,175.002,5.01361,-10.6496,174.735,5.04282,-10.5101,173.844,4.76847,-10.7403,173.648,4.37766,-11.0327,173.484,3.86486,-11.3126,173.382,3.27217,-11.5022,173.383,2.72688,-11.5935,173.475,1.7371,-11.9496,174.919,1.53927,-12.442,175.251,5.67588,-9.54177,171.921,5.09763,-10.2154,171.523,4.40174,-10.9035,171.343,3.69301,-11.5021,171.41,2.54379,-12.2722,171.801,3.06636,-11.9451,171.594,1.56073,-12.7923,172.869,1.53444,-13.0418,172.413,1.27573,-13.3102,172.601,1.29377,-13.0651,173.042,0.635859,-14.0781,173.042,-4.65746e-005,-14.3544,173.191,0.620082,-13.8515,173.486,5.80514,-9.91867,174.646,5.47314,-10.2533,174.527,5.19042,-10.4363,174.499,1.30078,-12.7696,173.449,1.56355,-12.499,173.289,1.3197,-12.4643,173.831,1.56954,-12.2127,173.672,1.41839,-12.1368,174.231,1.63528,-11.9445,173.978,2.17939,-12.3523,172.519,2.1569,-12.1408,172.959,1.49667,-12.0646,174.627,1.23347,-12.5268,174.839,1.12206,-12.626,174.433,1.0432,-13.3918,173.232,1.05036,-13.1106,173.648,1.03531,-13.6291,172.794,1.07146,-12.8361,174.044,0.639519,-13.3568,174.321,0.619882,-13.5993,173.911,1.82022,-12.794,172.216,1.85579,-12.566,172.696,2.13694,-12.5468,172.008,1.85199,-12.3081,173.129,1.8282,-12.0609,173.531,1.84434,-11.8221,173.826,5.85838,-9.71938,174.187,5.77809,-9.75173,173.724,5.55115,-10.1058,174.202,5.48933,-10.1298,173.883,5.26169,-10.3463,174.269,5.21013,-10.3757,174.052,3.04747,-11.5187,173.991,3.15336,-11.5302,173.725,2.58815,-11.5387,173.823,2.48128,-11.4536,174.109,2.23418,-11.4969,173.922,2.13691,-11.3066,174.217,2.02003,-11.5054,173.994,1.94944,-11.269,174.258,1.84662,-11.5501,174.073,1.83388,-11.2838,174.279,1.74355,-11.3063,174.326,1.70339,-11.6132,174.185,1.61605,-11.6672,174.355,1.692,-11.3156,174.416,1.66114,-11.6431,174.572,1.71907,-11.2982,174.525,1.83797,-11.5664,174.784,1.87979,-11.2941,174.651,2.2247,-11.4971,175.02,2.29088,-11.4083,174.831,3.02052,-11.5929,175.0,3.03214,-11.5854,175.198,3.94042,-11.3966,175.145,4.56177,-10.944,174.884,4.46123,-10.9816,174.769,3.86049,-11.452,174.974,4.82474,-10.6666,174.674,4.69018,-10.6846,174.625,4.95694,-10.5208,174.505,4.776,-10.5652,174.523,5.00477,-10.4733,174.351,4.79805,-10.5432,174.431,4.95866,-10.5162,174.213,4.75908,-10.6011,174.355,4.65799,-10.7289,174.278,4.82704,-10.6478,174.081,4.60368,-10.8654,173.937,4.48279,-10.9289,174.175,4.25333,-11.1417,173.8,4.17621,-11.1912,174.056,3.75218,-11.3943,173.713,3.67148,-11.425,173.972,4.38511,-10.9284,174.301,4.52174,-10.7514,174.386,4.58082,-10.7188,174.618,4.37778,-11.0006,174.717,3.81059,-11.4319,174.874,2.34002,-11.3454,174.712,1.98803,-11.2082,174.552,1.86664,-11.1988,174.465,1.83803,-11.2155,174.418,1.85918,-11.2166,174.379,2.00655,-11.1704,174.36,2.17494,-11.1748,174.332,2.45725,-11.383,174.235,1.87078,-11.1685,174.411,1.88189,-11.1746,174.394,1.90346,-11.146,174.435,3.00792,-11.5486,174.878,2.95145,-11.4309,174.132,3.61396,-11.3738,174.107,4.60368,-10.635,174.446,2.36594,-11.1776,174.661,2.02368,-11.1437,174.501,3.0139,-11.3902,174.862,3.78892,-11.2699,174.879,4.3242,-10.9141,174.739,4.50664,-10.6839,174.646,4.41433,-10.7061,174.403,4.49987,-10.6105,174.479,4.28816,-10.8477,174.301,2.95738,-11.2667,174.126,3.59612,-11.2281,174.099,2.5101,-11.1639,174.24,2.2487,-11.08,174.426,2.03395,-11.141,174.427,4.12806,-11.1632,174.197,4.06451,-11.0441,174.186,4.64081,-10.5978,174.555,4.55572,-10.5839,174.591,1.91395,-11.1977,174.363,1.92282,-11.1592,174.401,4.64421,-10.5784,174.495,4.55007,-10.5651,174.535,2.41064,-10.8619,174.4,2.61542,-10.9025,174.169,2.54902,-10.9084,174.691,3.03963,-10.9517,174.875,3.72361,-10.8033,174.917,4.21784,-10.6384,174.795,4.4278,-10.5319,174.675,4.50579,-10.4852,174.604,4.51271,-10.4745,174.544,4.44286,-10.4919,174.474,4.31319,-10.5371,174.368,4.16683,-10.6236,174.244,3.96124,-10.7524,174.113,3.59982,-10.899,174.015,3.06867,-10.9511,174.034,2.71806,-10.4768,174.562,2.6873,-10.4996,174.239,3.04238,-10.3833,174.628,3.54557,-10.3029,174.664,3.99025,-10.302,174.636,4.25954,-10.3273,174.562,4.40134,-10.3496,174.527,4.46949,-10.3764,174.522,4.41443,-10.3738,174.467,4.28078,-10.3464,174.383,4.10957,-10.3447,174.299,3.86413,-10.3444,174.21,3.52627,-10.3528,174.139,3.09499,-10.3794,174.139,6.35587,3.89791,179.957,7.02019,2.81575,178.796,7.12347,1.44453,180.423,6.48058,2.25305,181.796,5.32534,5.01425,181.075,5.48101,2.98858,183.062,7.14537,-0.234715,181.542,6.49513,0.222527,182.998,5.50711,0.503237,184.287,3.91541,5.98498,182.073,4.098,3.6427,184.225,4.15293,0.737371,185.383,4.35079,6.0853,173.367,5.36661,5.06109,173.022,5.76852,5.22041,175.324,4.76195,6.28003,175.883,6.11066,3.92013,172.746,6.49899,4.02376,174.774,3.38458,7.20374,176.3,2.98898,6.93851,173.541,7.10237,-2.01983,182.061,6.45671,-1.86933,183.462,5.45144,-1.94551,184.703,4.09643,-2.08722,185.697,2.28879,-2.2135,186.491,2.2798,0.967316,186.261,2.19467,4.12471,185.146,2.08634,6.60296,182.921,1.72387,7.80959,176.553,1.53558,7.43849,173.698,7.28696,-3.99298,180.747,7.49189,-2.38087,180.54,7.66953,-2.81553,179.028,7.42551,-4.3332,179.335,7.54455,-0.818198,180.009,7.75018,-1.41536,178.518,7.50051,0.635116,179.032,7.69875,-0.109751,177.71,7.38818,1.82886,177.654,7.56816,0.959838,176.582,7.15774,1.90828,173.729,6.92201,2.90913,174.234,6.56784,2.82058,172.483,6.85821,1.80224,172.222,7.31091,1.02014,173.28,7.65927,0.209532,175.627,7.78215,-0.769197,176.487,7.79601,-2.00136,177.038,7.70424,-3.29897,177.496,7.4565,-4.76419,177.859,6.38184,1.21426,169.354,6.05819,2.28409,169.347,5.56822,3.3728,169.315,4.83892,4.48876,169.285,3.80337,5.50566,169.278,2.56022,6.21175,169.315,6.92161,-3.8004,182.111,6.2754,-3.89864,183.351,5.21637,-4.25056,184.457,3.86829,-4.76022,185.322,2.16345,-5.27909,185.991,1.27223,6.55989,169.317,-3.07884e-005,-2.31533,186.836,1.93205,7.72373,179.748,3.62799,7.11345,179.224,5.03996,6.12731,178.547,6.11317,4.89345,177.72,6.8102,3.68473,176.849,7.19891,2.59851,176.004,7.3944,1.64391,175.217,7.50383,0.810569,174.52,6.58124,1.49142,170.761,6.25073,2.52752,170.846,5.76244,3.60022,170.905,5.02124,4.70786,170.98,3.97841,5.73027,171.098,2.72668,6.50122,171.218,1.37969,6.93951,171.275,-1.91174e-005,4.29806,185.441,7.65172,-3.77159,175.857,7.44912,-5.15569,176.25,7.42601,-5.18479,174.673,6.57525,-5.36199,181.965,5.95437,-5.66452,182.94,4.90309,-6.28282,183.831,3.61251,-7.04935,184.526,1.91398,-7.95838,185.001,0.78825,-12.2446,165.042,2.51014,-11.4696,166.1,2.67493,-11.4047,166.323,2.2799,-11.6169,165.82,1.93598,-11.8371,165.533,1.44181,-12.0691,165.277,0.653835,-12.2019,165.933,0.689743,-12.3356,165.801,1.28931,-12.1433,165.919,1.22521,-11.9798,166.032,1.75444,-11.9097,166.037,1.68799,-11.7742,166.098,2.11303,-11.6752,166.145,2.05634,-11.5723,166.151,2.26485,-11.4697,166.255,2.30421,-11.532,166.252,2.40865,-11.4008,166.374,2.44902,-11.4585,166.376,2.20816,-11.3582,166.248,2.36013,-11.2931,166.365,1.98764,-11.4239,166.134,1.62647,-11.5388,166.048,1.17512,-11.7253,165.994,0.621565,-11.9643,165.959,-4.02078e-005,-12.0426,165.923,2.5456,-11.4642,166.354,2.39241,-11.5377,166.195,2.19344,-11.6861,166.047,1.84885,-11.9319,165.798,1.37683,-12.1809,165.6,0.744784,-12.3877,165.458,2.18366,-10.8586,166.107,2.32166,-10.8462,166.303,1.96923,-10.9052,165.904,1.64009,-11.0342,165.732,1.17934,-11.2294,165.641,0.617,-11.5015,165.685,2.67158,-11.7798,167.016,2.42155,-12.1169,167.283,2.78129,-11.43,166.549,2.7868,-11.5519,166.779,2.03227,-12.5253,167.569,1.46608,-12.9966,167.808,0.79243,-13.3799,167.972,2.34709,-12.0804,167.057,2.27431,-12.011,166.942,1.92012,-12.3605,167.125,1.98636,-12.468,167.281,1.41474,-12.915,167.462,1.33711,-12.7311,167.299,0.699549,-13.0654,167.434,0.754004,-13.2847,167.602,1.88229,-12.2823,167.097,2.22299,-11.925,166.92,0.677658,-12.9008,167.428,1.29881,-12.5864,167.296,0.668869,-12.7356,167.48,1.2685,-12.4184,167.352,2.19707,-11.8539,166.931,1.82456,-12.1572,167.13,2.57272,-11.7792,166.856,2.67267,-11.5782,166.682,2.49582,-11.7393,166.776,2.58838,-11.5561,166.636,2.44992,-11.6724,166.76,2.54462,-11.4983,166.625,2.42618,-11.6083,166.762,2.51585,-11.4324,166.621,2.65363,-11.475,166.516,2.55768,-11.4641,166.505,2.51353,-11.409,166.498,2.47767,-11.3351,166.493,0.693362,-12.3275,167.83,1.25653,-11.9898,167.687,1.75377,-11.6976,167.452,2.15414,-11.5298,167.103,2.39854,-11.2995,166.845,2.4713,-11.1071,166.645,2.42056,-10.915,166.483,0.947164,-9.33232,184.48,4.58435,5.06011,163.982,5.14267,3.50646,163.867,5.4943,2.27977,164.042,5.59642,1.12412,164.219,1.32325,7.02112,164.317,3.62323,6.46655,164.118,2.04248,7.02236,164.346,5.47327,-0.0130374,164.286,5.29042,-1.11551,164.277,4.93912,-2.07205,164.079,4.40215,-2.86758,163.621,3.83225,-3.66424,163.336,2.33516,-5.41991,162.398,1.86828,-5.64863,162.011,2.88685,-4.92365,162.788,3.39007,-4.37937,163.082,4.737,3.94294,161.96,4.279,5.5264,162.24,4.3937,5.93257,160.925,4.96159,4.27864,160.603,5.01918,2.56705,161.984,5.09356,2.81065,160.256,5.0476,1.496,160.279,5.13646,1.28538,162.17,1.17526,7.7248,161.595,1.22407,7.31222,162.925,-0.248283,8.29998,161.779,3.39725,6.88837,162.598,3.46047,7.30703,161.277,1.86553,7.48637,162.845,1.97306,7.83119,161.449,4.969,-0.86882,162.397,5.07511,0.176695,162.307,4.9363,0.319397,160.482,4.83443,-0.739527,160.573,4.64814,-1.70727,162.313,4.54266,-1.59324,160.588,4.09756,-2.32791,162.122,4.04517,-2.1307,160.475,3.40518,-3.00364,162.019,3.25121,-2.65328,160.406,1.68811,-4.87376,161.104,2.06073,-4.43016,161.296,1.7283,-3.54949,159.856,1.31662,-4.01922,159.644,2.46111,-4.04105,161.626,2.34041,-3.14663,160.25,2.90772,-3.53121,161.803,2.84353,-2.95892,160.364,5.69816,4.53832,159.198,4.97035,6.31069,159.733,6.19534,6.95829,158.602,7.00624,4.93412,157.988,5.79359,3.16949,158.566,6.94307,3.50981,157.029,6.49335,2.52003,156.664,5.55538,1.89514,158.425,1.34819,9.05136,159.196,1.16902,8.3125,160.335,3.76301,7.85416,159.981,4.32663,8.63079,158.77,2.16048,8.34315,160.092,2.49924,9.11349,159.027,5.37692,0.576803,158.609,6.20136,1.15312,156.985,5.78596,-0.355634,157.136,5.01399,-0.609874,158.778,4.67959,-1.47489,158.817,5.16831,-1.3043,157.184,4.27449,-2.10548,158.675,4.66275,-2.08781,157.162,3.70124,-2.57356,158.567,4.12861,-2.78813,157.096,1.0867,-3.6577,157.903,1.74624,-3.36342,158.167,1.89488,-3.74953,156.548,1.11509,-3.82221,156.38,2.47642,-3.02683,158.363,2.69836,-3.52398,156.834,3.12599,-2.87148,158.479,3.47616,-3.2874,157.014,0.425815,-3.98892,157.696,0.0334618,-4.179,157.554,0.028156,-4.6882,159.057,0.697926,-4.54511,159.653,0.411911,-3.98067,156.24,7.55367,7.71466,157.54,8.57734,5.52361,157.116,8.5814,3.90737,156.243,8.07007,2.65465,155.792,5.61245,9.48418,157.768,3.08007,9.97249,157.958,7.11316,1.1941,156.027,6.40456,-0.481977,156.154,1.71299,9.95062,157.882,5.71577,-1.4167,156.048,5.17093,-2.18436,155.865,4.58453,-2.99895,155.817,2.09381,-4.08194,155.298,1.27518,-4.19492,155.225,2.92393,-3.90066,155.492,3.76694,-3.55489,155.661,0.485515,-4.13894,155.237,1.45865,-7.10542,162.654,1.32164,-5.94001,161.896,1.31238,-5.19881,161.08,7.78849,-2.00213,171.345,7.73753,-1.68954,172.004,8.01382,-1.48361,172.858,8.27536,-1.44805,173.716,8.46296,-1.50817,174.355,8.6876,-1.48953,174.707,0.698295,-7.23347,162.525,-0.0554362,-7.35194,162.479,0.654425,-6.17527,161.879,0.653111,-5.50559,161.151,0.500623,-5.2013,160.451,2.45064,-10.4136,166.517,2.55344,-10.598,166.751,0.694026,-11.7054,168.282,1.34216,-11.5015,168.171,2.3743,-11.1416,167.427,1.84267,-11.2471,167.821,2.58718,-10.9063,167.034,1.74456,-10.4232,165.405,2.11139,-10.3325,165.675,0.607719,-10.9023,165.274,1.21488,-10.609,165.251,2.28972,-10.3245,165.987,2.36675,-10.3258,166.268,2.51205,-9.79262,166.585,2.6091,-9.94662,166.874,0.737161,-10.8357,168.736,1.39205,-10.602,168.464,2.56529,-10.3188,167.894,1.98491,-10.4726,168.191,2.78567,-10.1059,167.194,1.76073,-9.57138,165.371,2.17688,-9.56967,165.657,0.576769,-9.80518,165.086,1.20172,-9.64087,165.133,2.4078,-9.61273,165.978,2.45519,-9.6868,166.297,2.53848,-9.18707,166.665,2.61257,-9.30345,166.941,2.05189,-9.47608,168.21,1.42666,-9.53862,168.515,2.56214,-9.41641,167.771,2.66602,-9.36341,167.267,1.84752,-8.6805,165.425,2.28607,-8.80726,165.767,0.564957,-8.72242,165.262,1.20213,-8.67348,165.285,2.45473,-8.96756,166.117,2.50553,-9.0958,166.39,2.54376,-8.72374,166.498,2.57346,-8.74195,166.732,1.97307,-8.47543,167.832,1.35214,-8.43917,168.08,2.47632,-8.59181,167.495,2.65918,-8.74826,167.135,1.86644,-7.87386,165.946,2.38634,-8.18964,166.111,0.572828,-7.77865,165.926,1.20162,-7.78263,165.914,2.53547,-8.5237,166.373,2.00912,-7.69446,167.216,1.26437,-7.63424,167.294,2.50116,-8.14271,166.94,2.57216,-8.45949,166.809,2.61332,-8.86448,166.947,0.67592,-8.42575,168.269,0.620737,-7.64237,167.349,0.728191,-9.61516,168.788,-3.71578e-005,-9.66057,168.841,8.17617,11.7634,15.6964,7.02921,10.2316,14.7325,9.12638,12.5108,13.8839,10.194,12.0259,13.6587,8.15197,12.0082,13.5286,6.83786,10.4898,12.6248,11.7889,9.69056,15.3133,11.7251,9.75633,12.8564,11.0104,10.8149,15.7568,10.8954,10.8686,13.3345,12.1059,10.0246,10.5555,11.6049,5.00869,12.6445,11.064,4.08498,12.1253,10.2597,3.50306,12.5503,10.4281,3.81214,13.5415,8.90919,3.49167,12.562,8.92114,3.66738,13.674,7.26961,4.3872,11.9007,7.47142,7.59795,0.885577,7.96484,5.33027,0.967597,8.608,1.7596,0.784109,11.8293,-2.97635,0.505331,12.2871,-1.40788,50.8704,8.21994,-1.27517,50.8405,12.9922,-3.31096,0.539968,13.6973,-2.84969,0.612789,10.4944,-4.63156,0.440264,11.3441,-4.24311,0.428345,-21.5039,3.90063,142.476,-21.3294,6.20497,141.648,-22.9178,5.99983,141.542,-23.0705,3.57243,142.411,-47.9258,7.51591,139.319,-47.8073,9.28097,140.088,-51.5925,9.2121,139.822,-51.4208,7.29301,139.092,-44.76,8.04416,139.831,-44.75,9.50843,140.76,-39.5734,5.36561,146.277,-36.9609,4.99652,146.676,-36.6406,3.58764,145.72,-39.2083,3.8395,145.574,-34.0889,3.72705,145.918,-34.2666,5.37032,146.866,-31.5401,5.4834,147.002,-31.6056,3.66553,146.286,-39.4988,6.59846,146.89,-36.8772,6.47822,146.88,-34.1482,6.89158,146.902,-31.3261,7.00831,147.013,-33.8016,2.71675,144.446,-31.4229,2.5368,144.816,-40.835,4.28332,145.417,-40.5805,3.40219,144.342,-42.4531,3.85282,144.412,-42.3833,4.58568,145.253,-33.6983,2.79925,142.889,-36.0589,2.85037,142.803,-36.2418,2.76136,144.261,-34.0174,3.95935,141.677,-36.2818,3.81734,141.658,-33.0805,5.63977,140.781,-35.7967,5.15287,140.626,-51.5352,5.40013,139.329,-48.4445,5.52986,139.614,-31.7357,7.54697,140.478,-31.1931,9.37236,140.913,-34.3971,8.72054,140.458,-34.5651,7.06622,140.227,-55.4591,9.29737,141.579,-58.6814,8.86018,141.747,-57.7802,8.74731,140.053,-54.8255,8.97274,139.848,-57.4246,7.27049,139.143,-54.5323,7.24723,139.051,-61.1099,8.43104,140.376,-60.638,7.28716,139.35,-62.1141,8.4611,141.991,-57.5476,5.54488,139.25,-54.5978,5.37043,139.206,-60.7263,5.79763,139.474,-60.6841,4.33846,140.184,-57.583,4.04295,140.244,-60.7329,3.29889,141.317,-57.7075,2.98809,141.671,-54.7772,3.87185,140.435,-54.9872,2.77767,142.147,-63.8563,4.48947,139.973,-63.8708,5.83005,139.397,-63.8606,3.46555,140.838,-63.8955,7.22781,139.482,-64.4762,8.03945,140.667,-68.2119,7.69873,140.892,-67.6088,6.96838,139.742,-67.4078,5.79395,139.179,-58.7974,8.76734,143.451,-61.8908,8.2638,143.389,-65.0951,7.51452,143.182,-65.3679,7.95602,142.061,-56.0774,8.97808,143.435,-61.5665,7.10473,144.217,-64.7878,6.49484,143.943,-68.4183,5.91461,143.557,-68.6003,6.9707,143.002,-68.801,7.52722,142.104,-49.2,3.05812,143.262,-48.9438,4.13706,141.008,-51.8337,3.87799,140.78,-52.1092,2.71932,142.72,-47.0178,3.55816,145.012,-47.0096,3.6811,143.207,-49.4144,3.10306,144.971,-52.229,2.85455,144.502,-55.1246,2.81045,143.742,-52.0111,3.83673,145.683,-48.9336,4.20772,146.34,-55.0276,3.66899,144.855,-55.8015,8.16859,144.666,-58.5501,7.70162,144.416,-55.2891,6.62731,145.341,-58.1608,6.30369,144.887,-61.2795,5.83014,144.464,-52.5713,8.25542,144.771,-52.0631,6.69713,145.736,-48.3901,6.71571,146.347,-45.4396,7.50501,146.443,-45.6575,6.08202,146.815,-48.4643,5.41068,146.731,-51.732,5.22297,146.077,-46.5971,4.59731,146.13,-54.8617,5.05648,145.543,-57.8066,4.78991,144.995,-57.8344,3.61135,144.154,-60.9098,3.56059,143.56,-61.0486,4.51679,144.422,-37.6812,10.4837,144.475,-40.5415,10.2309,144.083,-40.5012,10.497,142.487,-37.736,10.7411,142.776,-34.8767,10.656,144.763,-34.565,11.3258,142.691,-38.6626,9.47413,145.99,-40.957,9.68304,145.628,-44.7808,10.2223,142.288,-42.9297,9.66321,141.122,-42.693,10.1212,142.658,-44.8824,9.72837,143.856,-42.7486,9.81165,144.076,-42.9834,9.5095,145.532,-45.2733,8.90182,145.492,-35.9725,9.39444,146.199,-48.5106,8.16299,145.135,-38.7184,2.94923,142.901,-39.1147,3.89555,141.665,-40.9833,3.94449,141.799,-40.6946,3.30755,142.944,-38.8658,5.1521,140.751,-41.2383,4.92935,140.964,-42.4616,3.90899,141.957,-43.6494,4.56774,141.224,-44.5986,3.98335,143.066,-42.5768,3.60694,143.099,-64.3333,4.11122,143.852,-67.8947,3.55048,143.187,-68.2173,4.67208,143.56,-64.546,5.29853,144.034,-57.8457,2.91696,143.091,-60.8484,3.07966,142.539,-67.3242,4.51157,139.478,-38.0071,10.052,141.281,-37.5794,8.5972,140.532,-34.5162,10.2536,141.449,-31.2035,10.5594,142.047,-38.7701,2.92236,144.311,-33.1983,9.45873,146.101,-33.8388,8.13524,146.622,-36.5566,7.89337,146.836,-67.2836,3.39832,140.216,-67.4412,2.71729,141.188,-63.9581,3.03194,141.928,-67.6487,2.78962,142.314,-64.1121,3.29622,142.978,-41.4662,5.3783,146.236,-41.6552,6.90538,146.786,-41.3296,8.39546,146.536,-39.1809,8.09543,146.816,-43.467,6.703,146.727,-43.2804,8.17245,146.484,-40.801,8.57738,140.206,-40.7128,9.90149,141.094,-42.9782,8.335,140.069,-37.7504,6.88642,140.154,-40.8506,6.80653,140.132,-31.4272,11.1348,143.399,-29.2558,11.1644,143.879,-29.7732,10.7014,145.096,-32.0499,10.7151,144.91,-30.6676,9.57815,146.062,-24.3383,2.10502,145.356,-24.0304,2.95669,146.977,-22.0934,2.76347,147.52,-22.5978,1.89263,145.178,-21.4705,2.43988,143.462,-23.3133,2.29169,143.605,-26.2885,2.12029,145.162,-26.2778,3.08788,146.516,-28.7694,6.87414,147.453,-28.7294,5.01288,147.016,-31.4119,2.59104,143.187,-28.8249,2.24109,144.885,-28.8141,2.41801,143.463,-25.6585,3.63147,142.422,-25.8312,2.32162,143.725,-20.0172,12.1133,143.221,-20.4207,11.7511,145.045,-22.7242,11.361,144.992,-22.1021,11.8326,143.291,-20.2677,8.81639,141.228,-21.8811,8.63529,141.125,-19.8351,10.7973,141.56,-20.0576,11.7708,142.305,-21.8602,11.6845,142.186,-21.6917,10.6552,141.443,-28.722,10.8172,142.496,-28.5693,9.85967,141.259,-26.306,10.2686,141.51,-26.6403,11.099,142.526,-29.1055,7.92673,140.754,-26.5688,8.27568,141.133,-30.5331,5.90541,140.923,-27.9414,5.91112,141.192,-28.9166,3.94967,142.081,-31.6501,4.05107,141.832,-23.6286,4.28104,148.346,-25.6032,4.64774,147.697,-31.1613,8.24041,146.593,-28.6878,8.41078,146.746,-28.1891,9.77624,146.114,-27.625,10.8987,145.024,-27.1735,11.3255,143.795,-48.4021,9.49475,143.44,-48.1066,10.0971,141.731,-52.17,9.8702,141.49,-52.7565,9.28652,143.142,-43.7605,5.10198,145.866,-45.5569,5.94505,139.925,-21.6538,4.27311,149.027,-23.1549,6.00944,149.045,-21.5017,5.90485,149.797,-23.2144,7.80854,148.591,-21.4919,7.69378,149.511,-23.502,10.0472,147.277,-21.6444,9.80787,148.018,-25.7514,10.0548,146.078,-24.9814,11.2389,144.756,-28.9365,3.17605,146.237,-25.1114,6.20053,148.362,-23.986,11.5066,142.327,-24.1351,10.4688,141.582,-24.4649,8.509,141.328,-25.3322,5.91416,141.567,-25.5447,8.15202,147.586,-24.4133,11.6238,143.445,-44.6518,4.12214,144.814,-46.3607,4.42163,141.177,-43.1592,6.27987,140.133,-70.5652,2.3916,141.701,-70.2907,2.37068,140.509,-72.009,2.20031,139.896,-72.4004,2.03857,141.085,-70.0206,3.11452,139.731,-71.8686,3.05217,139.257,-72.9782,2.57936,142.169,-70.9057,3.06606,142.641,-70.6837,6.79766,139.805,-70.3989,5.7601,139.012,-71.1127,7.50638,140.793,-72.9416,5.75268,138.879,-72.2661,5.75166,138.907,-72.5804,6.78055,139.676,-73.3476,6.80571,139.576,-71.9809,4.5575,138.667,-70.1973,4.50756,138.969,-71.4837,7.36531,141.935,-71.4143,6.62922,142.759,-73.5478,6.32906,142.49,-73.4489,7.28227,141.754,-74.4976,6.20473,142.286,-73.5593,5.08422,142.727,-74.5203,4.89476,142.488,-71.3887,5.47279,143.099,-71.2748,4.19326,143.085,-73.4144,3.73113,142.677,-73.7747,2.3302,141.902,-74.322,3.49451,142.427,-72.466,3.14534,139.004,-72.6062,4.61163,138.537,-73.0024,7.47899,140.614,-72.5186,2.16227,139.672,-72.996,1.82414,140.842,-74.2292,7.20236,141.622,-73.791,7.43667,140.515,-16.8301,-0.326402,148.074,-16.1024,-0.325276,149.48,-14.7151,-2.43567,148.064,-15.6663,-2.61041,146.691,-15.6823,0.413703,150.661,-14.0486,-1.61735,149.524,-17.7491,1.34882,149.494,-17.0579,1.28424,150.649,-16.5353,1.86243,151.448,-18.2255,2.69009,150.628,-17.4729,2.78107,151.432,-18.3824,4.09447,151.215,-17.4986,4.38848,152.095,-18.1662,6.05256,151.809,-17.3938,6.16365,152.536,-16.5781,4.51364,153.018,-16.3802,6.39391,153.428,-17.8606,7.93272,151.471,-17.0514,7.90033,152.166,-17.6225,9.8628,150.739,-16.7781,9.65783,151.676,-16.2475,7.88179,153.131,-16.1282,9.3659,152.845,-17.111,11.3293,149.885,-16.4923,11.0306,151.302,-16.011,10.4054,152.654,-15.7219,2.24433,152.649,-15.1789,2.2899,154.076,-14.5751,1.09695,154.246,-15.1717,1.10538,152.275,-14.3351,3.33228,154.9,-13.4898,2.33627,155.058,-15.7637,3.28082,153.2,-15.2824,2.6637,154.058,-15.0059,3.85844,154.541,-16.7307,3.18379,152.209,-15.6121,4.14014,153.956,-15.5149,6.24696,154.223,-14.8287,5.87574,154.722,-15.4731,7.64987,154.061,-14.7968,7.2822,154.741,-14.7072,8.64213,154.555,-15.4309,8.88652,153.899,-14.8047,9.44877,154.306,-15.3877,9.80623,153.784,-14.0889,9.77667,154.462,-14.5596,10.4837,153.8,-14.9065,11.2734,152.612,-12.6258,11.6731,152.921,-12.7593,10.7848,154.136,-13.906,8.46455,155.117,-15.3239,12.5917,149.156,-15.1598,11.9119,151.066,-13.5193,12.8404,149.619,-12.9926,12.202,151.417,-14.0184,5.38306,155.164,-12.9995,4.63972,155.352,-14.0636,6.99229,155.322,-9.83953,11.9526,153.056,-9.90891,11.0781,154.57,-13.4798,-0.555294,154.12,-13.6675,-0.644644,151.612,-12.0555,1.2996,154.938,-11.8237,3.96492,155.364,-11.8665,6.16766,156.196,-13.0629,6.59364,155.889,-18.4944,1.73658,141.472,-19.7168,2.53185,143.049,-19.7075,0.835686,143.643,-17.8879,-0.116409,142.132,-19.8115,3.78393,141.617,-20.2937,4.15288,142.351,-13.6397,13.5354,147.876,-10.7735,14.2387,146.915,-9.95798,13.8726,148.549,-11.5015,14.0812,144.837,-11.1482,14.2581,145.929,-13.392,13.8476,146.143,-13.7727,13.6448,144.867,-16.9435,11.3816,142.061,-18.5315,9.2794,141.477,-17.728,9.97619,141.008,-14.7503,11.9319,141.597,-19.3455,7.85841,140.851,-20.0326,5.68876,141.218,-20.1392,6.28301,141.703,-19.1767,0.272514,145.078,-17.5765,-1.50324,143.213,-20.5744,1.63099,146.272,-19.6828,1.76945,147.522,-18.5545,0.0105966,146.048,-16.5931,-2.53787,145.394,-17.3278,-2.19121,144.267,-17.8022,-0.281218,147.053,-14.4668,13.1934,143.894,-15.3072,12.4714,142.852,-12.9655,13.1507,142.79,-12.1923,13.6397,143.734,-9.6727,13.073,150.677,-12.7856,8.41687,155.665,-12.8241,9.60296,155.088,-18.1693,11.2214,148.394,-18.8483,9.96335,149.783,-18.8906,8.05967,150.895,-16.02,12.7726,147.332,-20.5678,2.61969,143.346,-20.9038,4.18592,142.507,-21.0616,1.41819,144.41,-18.4503,10.9203,141.844,-19.2847,9.0351,141.457,-20.6175,6.31522,141.774,-19.4062,4.13538,150.447,-20.4026,4.15752,149.796,-20.2154,5.95038,150.472,-19.1364,5.99354,151.179,-17.8871,11.9606,142.538,-17.1901,12.5687,143.313,-16.2785,12.9763,145.828,-19.4273,11.4401,146.988,-20.1417,7.93687,150.242,-20.1765,9.78774,148.895,-20.9131,2.90911,148.984,-19.4132,2.9841,149.707,-16.7069,12.9412,144.401,-18.7162,1.52765,148.503,-7.91481,3.52113,119.47,-7.76722,3.94872,122.035,-8.74534,2.43375,121.476,-9.06348,2.01099,119.06,-1.51685,-11.6057,137.05,-0.0544389,-11.6038,137.12,-1.50491,-11.993,135.415,-5.82052,13.8594,150.858,-5.4913,12.6091,153.396,-6.13409,14.3999,148.594,-4.52924,14.5644,147.874,-4.30355,14.1197,150.036,-7.32008,14.5431,146.251,-5.04088,14.6968,145.8,-10.0972,13.7424,141.771,-9.17463,14.2197,143.292,-11.8098,12.5375,139.879,-10.7349,13.3586,140.683,-13.4067,-5.99417,142.922,-13.8424,-5.86848,140.978,-15.465,-3.94604,142.521,-15.1169,-4.35983,144.017,-7.3209,-7.18238,145.878,-7.07059,-6.09122,148.284,-5.57607,-6.49316,148.214,-5.86775,-7.60412,145.754,-3.99417,-6.9781,148.282,-4.22171,-7.99173,145.718,-1.22711,-8.35684,145.996,-2.71437,-8.22281,145.817,-2.53665,-7.39224,148.468,-1.25713,-7.52632,148.687,-1.23598,-9.47603,143.557,-1.18788,-10.4538,141.054,-2.41263,-10.375,141.204,-2.59802,-9.46859,143.673,-11.8168,-1.95166,153.683,-10.4724,-0.570471,154.474,-9.21181,-1.71838,154.159,-10.2329,-2.97431,153.192,-12.1082,-2.38468,151.218,-10.5852,-3.49214,150.796,-5.23765,-5.50739,152.416,-5.25643,-5.94402,150.667,-6.66406,-5.39585,150.582,-6.53887,-5.04164,152.683,-4.69694,-4.40274,153.238,-5.83996,-3.968,153.646,-11.2196,-4.57944,148.683,-11.9674,-5.32068,146.956,-13.4026,-4.13344,147.377,-12.6369,-3.43072,148.994,-3.93508,-5.84043,152.22,-3.91156,-6.48042,150.766,-3.66136,-4.84727,153.156,-2.63422,-6.06559,152.042,-2.68684,-6.86757,150.667,-2.5276,-5.13957,153.085,-1.56664,-5.32112,153.033,-1.27842,-6.22093,151.864,-1.3825,-6.87335,150.597,-3.40181,-11.8619,135.102,-1.73981,-12.3355,133.78,-3.70518,-12.0801,133.355,-4.84309,-14.3278,112.364,-4.57001,-14.1303,114.907,-2.82056,-14.5352,115.254,-3.23707,-14.7676,112.569,-6.42535,-13.3724,112.682,-6.17541,-13.2293,114.968,-5.01589,-14.3409,109.907,-6.54208,-13.4459,110.457,-3.40512,-14.883,109.754,-8.0875,-10.1808,135.439,-5.55358,-11.2011,136.006,-5.77709,-11.224,134.383,-7.94172,-9.95471,134.057,-10.0855,-8.27143,133.836,-10.0849,-8.9419,135.636,-12.5134,-1.54829,126.221,-12.1939,-4.2265,127.171,-11.4431,-4.20834,124.482,-11.7148,-1.79908,123.771,-10.7718,-4.00334,122.344,-10.7918,-1.9589,121.706,-11.5913,0.418866,124.306,-12.7013,1.128,126.601,-10.3003,-0.116084,122.152,-5.84826,11.1873,155.624,-4.00567,13.121,152.536,-3.53927,11.5046,155.822,-2.32018,13.2726,151.771,-2.12259,11.8322,154.895,-2.67514,14.3343,147.344,-2.19892,14.0957,149.528,-2.96442,14.3647,145.467,-14.0339,10.715,139.114,-18.2596,5.52183,138.753,-16.6025,8.14168,138.469,-14.2167,8.23977,136.465,-12.2865,10.6882,136.87,-17.755,3.03518,138.707,-15.7061,2.57584,135.98,-15.6669,5.38436,136.226,-16.4346,0.724468,138.57,-14.9978,-0.152836,135.825,-4.36313,-11.2282,137.186,-3.92576,-10.8961,138.531,-2.54339,-11.025,139.009,-3.27801,-11.4619,136.83,-15.8888,-1.67826,139.644,-14.1436,-3.21604,136.621,-13.3615,-3.47931,132.957,-12.9242,-3.97176,130.211,-13.3648,-1.2203,129.05,-14.2113,-0.552417,132.272,-15.7125,-3.16421,141.16,-14.0007,-5.30768,139.036,-10.994,-2.7373,118.141,-10.4913,-2.16255,119.665,-10.3716,-4.28969,120.496,-10.6186,-5.02032,118.968,-11.5899,-3.21181,116.775,-10.6861,-5.65031,117.417,-9.66186,-8.14188,117.975,-9.87078,-7.24588,119.993,-9.91593,-6.44261,121.931,-12.356,-7.74884,111.257,-11.9053,-7.14818,112.812,-10.6508,-9.23221,112.587,-11.026,-9.60194,110.722,-9.09739,-10.6615,113.952,-9.36227,-10.8963,112.005,-10.1913,-8.87198,114.325,-13.2888,-5.55781,111.658,-12.9133,-4.89694,112.991,-8.65522,-9.00919,120.484,-8.64581,-9.741,118.075,-9.9085,-8.50017,116.109,-11.0007,-6.11468,115.81,-8.89849,-10.2365,115.97,-11.7645,-1.07109,116.516,-10.8538,-0.661154,117.912,-12.0153,-3.78772,115.518,-12.3587,-1.54433,115.409,-11.1294,0.562365,116.773,-10.0867,0.79856,118.445,-11.8097,0.346963,115.438,-9.52414,1.06375,120.727,-9.94522,-0.338193,119.813,-8.16746,3.20101,117.309,-9.76732,1.85611,117.097,-3.5839,5.44336,118.422,-6.05784,4.73344,119.329,-5.96151,4.4889,117.06,-3.43137,5.19324,116.152,-6.06917,4.1933,115.06,-3.42575,4.89923,114.446,-8.39327,2.95667,115.392,-10.4233,1.84221,115.468,-14.5621,2.31231,132.659,-12.47,3.67868,128.213,-12.9382,4.57004,130.768,-13.5505,1.66957,129.315,-10.9689,5.95619,129.248,-11.5413,7.08341,131.904,-4.99403,11.8145,137.011,-4.60338,12.6292,138.937,-8.2841,13.5057,139.383,-9.30891,12.2942,137.501,-7.4921,14.1678,140.916,-6.47658,14.4812,142.445,-5.62802,14.6027,144.053,-8.44891,14.4794,144.449,-3.50299,13.9029,142.261,-3.20939,14.1562,143.824,-1.95558,-12.532,131.846,-3.94028,-12.3181,131.629,-5.80201,-11.3659,133.001,-6.0459,-11.6146,131.272,-8.07061,-10.3466,128.435,-6.15863,-11.7956,129.064,-5.94373,-11.8864,126.15,-7.744,-10.3614,125.771,-5.50176,-11.9086,123.337,-7.32699,-10.5084,123.124,-4.09973,-12.5432,129.38,-2.09629,-12.8075,129.458,-2.00218,-12.9265,126.629,-3.90776,-12.5383,126.499,-1.94868,-13.3614,123.89,-3.78373,-12.9186,123.638,-9.23945,3.38904,124.259,-7.9427,4.98935,124.876,-6.06959,5.2289,121.981,-6.16676,6.25967,124.972,-3.77313,5.93185,121.108,-3.91981,6.92645,124.224,-3.90354,7.88851,127.092,-6.57484,7.41059,127.469,-10.164,1.6925,123.369,-11.5645,2.72825,125.875,-10.455,4.81794,126.854,-8.74616,6.49287,127.421,-9.06878,7.66068,129.486,-6.74677,8.51649,129.393,-9.77471,8.93101,131.946,-7.2726,9.6661,131.926,-8.18266,10.8917,134.813,-11.2238,10.0732,134.923,-3.89611,8.71497,129.488,-4.70474,10.5701,134.506,-11.9538,1.59649,111.269,-11.5181,1.80439,112.664,-12.6986,-0.271162,112.885,-12.9484,-0.764836,111.546,-11.0493,1.93099,114.016,-9.4943,3.16511,112.31,-8.93439,3.01878,113.715,-3.97172,13.342,140.573,-0.0676395,4.68532,110.003,-0.068202,4.50201,111.313,-3.96851,4.94752,111.236,-3.97586,5.25359,109.462,-6.94438,4.24623,111.715,-7.49359,4.47693,110.185,-7.81749,-12.1049,113.382,-8.00546,-12.2393,111.257,-7.60059,-11.842,115.674,-7.24828,-11.2577,117.961,-12.4072,-4.27402,114.272,-13.2435,-2.54044,113.073,-12.8698,-1.99703,114.354,-6.40112,4.116,113.285,-8.18418,-10.3916,130.588,-8.05141,-10.1829,132.451,-13.5331,-3.15718,111.767,-5.76802,-12.6957,117.856,-7.07777,-10.6857,120.516,-5.52755,-12.2207,120.555,-3.88756,-13.4071,120.754,-4.16516,-13.7508,117.859,-2.03218,-13.793,121.232,-2.11161,-14.1175,118.1,-0.0116446,-13.9804,116.696,-1.15458,-14.21,116.48,-3.8645,-10.1719,141.191,-4.03727,-9.29025,143.768,-10.2599,-6.04455,123.886,-9.35979,-8.3446,125.265,-9.09325,-8.37549,122.931,-9.48245,-8.48247,141.54,-9.5981,-9.27826,138.923,-11.8175,-7.7977,139.831,-11.5062,-7.32642,142.081,-7.37866,-9.38152,141.138,-7.49972,-10.1048,138.348,-5.4763,-9.89497,140.992,-5.38387,-10.7255,138.226,-11.0322,-6.73969,144.464,-9.24832,-7.69557,144.081,-12.2043,-6.51163,135.78,-12.2687,-7.46435,137.994,-9.97521,-9.34789,137.41,-7.40169,-8.41419,143.96,-7.70621,-10.423,137.36,-5.60798,-8.96535,143.813,-5.59928,-11.1102,137.344,-12.7838,-5.74708,144.991,-1.7357,-15.0519,112.3,-1.42758,-14.6238,114.717,-0.0451747,13.9664,141.9,-0.0412435,14.1106,143.503,-0.0270974,14.3143,145.274,-0.021535,14.1984,149.29,-3.50331,-14.8773,106.735,-1.78115,-15.1454,109.554,-1.77601,-15.1193,106.234,-11.4393,-6.6283,128.521,-10.8561,-6.3826,126.007,-10.2054,-8.72918,129.681,-11.8914,-6.46982,131.136,-10.2568,-8.57619,131.826,-9.75656,-8.58781,127.405,-11.9906,-6.08513,133.534,-1.28334,-11.1758,138.917,-0.183834,6.75519,123.97,-0.0490766,-11.1734,138.975,-0.18459,6.04798,120.614,-14.2761,-4.39868,145.766,-14.0476,5.06956,133.685,-12.9763,7.86651,134.604,-4.1877,9.66281,131.929,-0.672443,-5.76475,152.503,-0.780164,-5.31077,153.206,-0.0188447,-10.4876,140.971,-0.056667,-12.7989,129.437,-0.056445,-12.9346,126.632,-0.10749,12.5293,136.096,-0.166543,8.96947,129.633,-0.0728303,13.3941,138.042,-0.0351887,-6.36918,151.543,-0.0894682,-6.85519,150.576,-0.210277,-7.61068,148.827,-0.3393,-8.50283,146.165,-0.0578615,-13.219,124.027,-6.99158,-3.33048,153.862,-7.70356,-4.3732,152.722,-8.88678,-3.68126,152.843,-8.04022,-2.58033,153.935,-8.06243,-4.84468,150.524,-9.29536,-4.30552,150.612,-8.53873,-5.74415,148.361,-9.95166,-5.28209,148.557,-10.5943,-6.05655,146.691,-9.11465,-6.65391,146.213,-11.2973,-6.58348,114.298,-12.367,0.125062,114.181,-3.63073,4.88417,112.804,-0.0677558,4.29871,112.703,-8.23106,-12.418,108.976,-6.74111,-13.5333,108.022,-5.19496,-14.3544,107.284,-9.62766,-11.1523,109.946,-10.0532,3.23643,110.861,-0.0864157,-15.0473,105.963,-0.0491012,-5.84097,152.495,-10.5585,9.83522,155.654,-11.1954,8.44741,156.075,-10.362,3.88541,155.677,-10.2162,5.90753,156.492,-9.21558,8.2457,156.629,-7.02445,10.3759,156.756,-9.9943,2.02976,155.006,-4.22066,-3.7167,154.422,-3.35034,-4.26624,154.289,-5.15571,-3.17926,154.62,-8.9119,0.381876,155.178,-7.79563,-0.805813,154.966,-3.50479,10.8192,156.773,-1.97322,10.8995,156.489,-2.40873,-4.5848,154.201,-1.53803,-4.73298,154.162,-0.810827,-4.83543,154.225,-6.93332,-1.71777,154.857,-6.1119,-2.48104,154.766,-1.76992,-14.1364,99.2766,-1.68308,-13.2593,96.5036,-3.21696,-13.0509,97.1666,-3.45291,-13.9696,100.08,-13.7372,-7.67384,106.429,-13.6113,-6.98387,108.381,-12.7071,-9.02258,107.538,-12.708,-9.56658,105.5,-8.01325,-12.8039,101.378,-8.30566,-12.9294,103.991,-6.64926,-13.468,102.578,-6.33627,-12.9918,99.7613,-9.78746,-12.2789,102.971,-9.94355,-11.9699,105.348,-5.03669,-13.7768,101.213,-4.73078,-12.9848,98.3268,-5.18023,-14.245,104.32,-6.77858,-13.6339,105.376,-3.5857,-14.5987,103.487,-1.88267,-14.7801,102.833,-8.37407,-12.6882,106.578,-12.7923,-8.42645,109.419,-13.5617,-6.26042,110.074,-9.92933,-11.4867,107.734,-10.3298,3.31654,109.508,-10.4693,3.01308,108.114,-8.11592,5.09857,107.151,-7.76107,4.85559,108.694,-14.2745,-5.4191,106.816,-13.9787,-4.57251,108.635,-1.61018,6.70269,104.542,-1.60511,6.1343,106.166,-5.03098,6.13,106.443,-5.26679,6.59283,104.787,-4.76693,5.69173,107.893,-1.84781,5.38822,107.548,-1.71926,4.97056,108.528,-13.6031,-2.06307,108.595,-14.0816,-2.68847,106.813,-12.2001,0.450475,106.752,-12.3903,0.702486,108.411,-12.1883,1.27905,109.888,-13.2876,-1.42026,110.09,-10.1369,3.29351,106.443,-11.4423,-10.6656,106.464,-11.3951,-11.168,104.336,-11.4602,-10.1175,108.665,-13.8014,-3.84562,110.172,-8.18357,5.55808,105.49,-0.0295441,6.37049,104.562,-0.0542785,-13.4177,96.1395,-16.5655,-5.20427,92.922,-15.6481,-7.96865,92.1348,-16.0751,-7.50644,88.2194,-16.8771,-4.70456,88.689,-16.2205,-5.69785,95.9228,-15.2438,-8.38938,95.6231,-16.0924,-2.09198,93.1534,-16.4945,-1.62042,88.8096,-15.6802,-2.41669,95.4314,-14.1085,-10.1338,91.3413,-14.4067,-9.67264,87.4857,-16.306,-7.02528,84.2742,-17.1158,-4.19059,84.5964,-14.5049,-9.12493,83.8052,-13.6058,-10.8032,97.713,-13.8212,-10.5342,94.6749,-14.9881,-8.87051,98.8028,-11.6068,-11.8462,96.1884,-11.827,-11.7875,93.3767,-12.0215,-11.5281,90.2217,-9.27372,-12.099,98.5016,-9.27133,-11.9683,96.4722,-11.3627,-11.8201,98.2702,-11.2277,-11.7418,100.287,-9.42311,-11.9073,94.444,-9.58912,-11.9061,92.0077,-11.2736,-11.5333,102.31,-12.862,-10.1836,103.638,-14.6994,-6.09212,104.948,-13.9904,-8.37779,104.587,-14.193,-3.00449,104.847,-14.2647,-3.15393,102.813,-14.9506,-6.29596,102.877,-15.3271,-6.32228,100.868,-14.6338,-3.09544,100.727,-15.1423,-2.98634,98.5386,-15.6946,-6.18267,98.8994,-12.7009,0.516927,100.48,-13.42,0.580352,97.9954,-14.5961,0.884761,92.8798,-14.244,0.800664,95.0119,-1.26014,-9.86684,89.0396,-0.971092,-8.23038,88.7033,-1.73094,-7.57965,88.4582,-2.43268,-10.0123,89.3412,-0.691032,-6.59099,88.8623,-1.0071,-4.7312,88.7597,-3.4778,-7.612,86.4824,-3.93737,-6.04659,83.7722,-5.27566,-8.23417,84.1475,-5.15722,-9.45987,87.0368,-7.31691,-10.2329,84.8052,-7.34122,-10.8885,87.9889,-4.25558,-4.86639,81.2955,-5.40371,-7.29627,81.5662,-7.26001,-9.44519,82.0588,-3.26494,-9.2655,88.6655,-5.19273,-10.5071,89.5195,-7.40707,-11.3131,90.7131,-2.46069,-5.42961,86.491,-3.15595,-3.67579,83.9479,-2.03012,-2.90474,86.8041,-2.99362,-1.13408,84.6,-3.06877,-12.1795,94.4544,-1.6037,-12.3543,93.681,-4.53998,-12.1511,95.6864,-4.32613,-11.4514,93.5465,-2.90368,-11.6217,92.3755,-1.51651,-11.7588,91.386,-1.4535,-10.9709,89.7946,-2.79571,-10.9706,90.7097,-0.996605,-0.133336,89.2014,-2.08611,-0.430518,87.4094,-3.11744,1.87945,87.1362,-2.11195,3.61052,90.3964,-5.48223,5.50554,90.7375,-5.86953,3.86274,87.2482,-8.88299,4.49172,87.4919,-9.26571,5.6821,91.3206,-12.3973,3.70386,92.0977,-14.8914,1.32233,88.6081,-12.1695,3.48666,88.1664,-12.3874,3.87816,94.0382,-9.46384,6.1554,93.0265,-2.52535,5.98498,92.5095,-5.82372,6.66663,92.5043,-5.68919,7.80267,98.0375,-8.85806,6.66954,98.7992,-9.28807,6.61687,95.9768,-5.71757,7.60549,95.2971,-1.86355,7.38143,95.1125,-1.53017,7.61843,97.7967,-1.61749,7.33989,100.399,-5.60486,7.58548,100.641,-5.48439,7.14488,102.881,-8.25361,6.03125,103.64,-8.50785,6.41358,101.387,-1.65636,7.14469,102.609,-10.6521,3.79936,99.7554,-11.8687,3.92264,97.029,-12.075,0.358899,104.807,-9.94647,3.49833,104.531,-12.1683,0.34951,102.697,-10.0776,3.66987,102.279,-7.42963,-11.9093,96.6279,-7.36473,-11.5986,94.71,-7.70709,-12.4118,98.8269,-6.08036,-12.2929,97.1652,-5.8208,-11.5886,94.8706,-5.6067,-11.2059,93.149,-4.13934,-10.9982,91.7872,-5.47129,-10.9937,91.4523,-3.79561,-10.4858,90.2928,-7.41311,-11.4752,92.8255,-9.66913,-11.7389,89.0757,-9.34412,2.21548,38.348,-9.49019,2.67966,34.3758,-11.4798,2.44048,34.4674,-11.3694,1.86408,38.404,-11.4077,1.32832,42.5669,-9.39699,1.53358,42.5751,-13.4791,3.47549,34.7683,-13.5558,3.00775,38.8314,-13.5559,2.48052,42.9903,-7.27256,8.89689,22.8251,-7.00559,8.92666,19.4888,-6.94166,6.99178,19.7336,-7.3065,6.90398,23.1401,-7.46493,5.05879,19.9744,-7.76709,4.96156,23.3733,-8.94391,3.7692,20.2058,-8.93906,3.48441,23.4852,-12.7887,11.333,36.105,-13.3914,11.5379,40.3037,-14.4936,9.82075,39.7467,-13.9002,9.68865,35.7304,-13.3099,9.6102,31.6823,-12.3912,10.9757,31.9627,-11.6496,12.3328,36.2785,-11.851,12.4184,40.3197,-11.347,11.4316,27.2956,-10.4032,11.9393,27.0802,-10.2571,12.4528,31.8232,-11.4713,11.9362,32.0147,-12.3385,9.66881,23.6644,-11.7712,10.7473,23.5042,-12.0251,10.7057,27.4543,-12.6579,9.50938,27.5101,-11.094,11.5045,23.3202,-10.3644,11.9045,23.2402,-10.1405,12.6,36.164,-12.6854,8.06436,23.6213,-12.5286,8.10744,20.5879,-12.1492,9.65637,20.766,-16.3035,-6.4576,80.0102,-14.4407,-8.49419,79.6386,-12.1479,-10.9261,86.5896,-12.1235,-10.1695,83.223,-12.0048,-9.36928,79.353,-17.1611,-3.69038,80.3149,-11.8045,-8.7995,75.6498,-14.2727,-7.91832,75.6228,-9.59069,-10.1616,82.6742,-9.54389,-9.16579,79.2056,-9.42191,-8.45016,75.8065,-7.29094,-8.40557,78.766,-7.318,-7.29769,75.7337,-5.5897,-6.4377,78.3943,-5.75484,-5.44261,75.4307,-5.78978,-4.37201,72.2515,-7.26257,-6.09167,72.551,-4.70914,-3.90131,78.2679,-4.83593,-3.05345,75.2734,-5.05783,-2.16702,72.1187,-5.95409,-3.30452,68.7382,-7.25499,-4.91239,69.0294,-9.12018,-6.48353,68.9023,-9.21233,-7.57623,72.3808,-11.1544,-7.06123,68.4531,-11.4771,-8.01954,71.997,-13.3546,-6.34002,68.2643,-13.88,-7.20534,71.8232,-10.9328,-6.08814,65.1091,-9.10988,-5.28815,65.4936,-12.8098,-5.49448,64.986,-9.10626,-4.3326,62.1389,-10.7536,-5.04767,62.1416,-12.437,-5.02003,61.9872,-13.8255,-3.72636,62.1241,-14.5056,-4.13041,65.1358,-10.1377,-4.64323,59.1874,-11.8911,-4.45781,59.2132,-13.4777,-3.28308,59.3128,-7.33975,-3.89288,65.3686,-7.43156,-3.13685,61.7544,-6.03588,-2.36041,65.064,-5.97053,-1.57962,61.5025,-15.2493,-4.73919,68.4132,-15.5066,-1.93359,65.3745,-16.2199,-2.28711,68.7032,-14.8611,-1.7252,62.2022,-5.20123,-1.27052,68.6965,-5.18741,-0.475955,65.0972,-4.82421,0.240766,72.2003,-4.91502,1.02508,68.9032,-4.99523,1.7957,65.3758,-5.52013,2.64661,72.3358,-5.75811,3.42543,68.9808,-4.62625,-0.5559,75.3577,-5.27575,1.8135,75.5888,-4.7495,0.992206,78.4922,-4.39078,-1.40711,78.2725,-3.91232,0.068826,82.2327,-3.74674,-2.4126,81.6879,-4.9441,2.62744,61.5288,-4.99105,0.323691,61.5155,-5.96699,4.98939,61.4999,-5.92072,4.21811,65.3174,-6.64665,4.34298,72.2572,-6.43703,3.64082,75.6008,-5.91049,2.89006,78.7962,-7.00932,-2.39959,58.6447,-6.79312,-1.5895,56.1337,-7.77743,-3.16565,56.2386,-8.47458,-3.82038,58.9415,-6.96413,-0.92573,54.1988,-7.78772,-2.63803,54.3274,-5.63639,0.145261,56.2553,-5.94158,1.03927,54.2369,-5.60606,-0.820918,58.5225,-9.6199,-4.312,56.4804,-11.5341,-4.21298,56.523,-13.1632,-2.95076,56.7029,-14.3372,-1.04878,56.8964,-14.4763,-1.37245,59.4832,-14.7364,1.26638,57.1856,-14.8581,0.806473,59.6678,-15.0187,3.93595,57.313,-14.9409,3.43342,59.9423,-14.1482,-0.683446,54.5212,-14.6981,1.61262,54.7317,-14.8856,4.28938,55.0063,-12.916,-2.55322,54.3557,-13.7958,-0.237213,52.189,-14.5946,2.02528,52.2327,-14.8958,4.6189,52.4738,-14.6706,2.73097,49.7421,-15.27,5.40982,50.0152,-13.1713,0.242386,49.6192,-11.2709,-3.70136,54.2763,-9.43715,-3.78976,54.2896,-9.40798,-2.95429,52.3533,-11.1466,-2.9309,52.3282,-12.656,-1.94451,52.3651,-9.47707,-0.614352,48.7326,-11.3028,-0.744392,48.7766,-11.1354,-2.03307,50.6059,-9.52605,-1.89846,50.6476,-9.33571,0.562719,46.3043,-11.2646,0.289952,46.1497,-13.2844,1.62059,46.5789,-7.98582,-1.99464,52.3524,-4.82189,2.33504,56.1189,-5.25977,3.30853,54.1845,-4.67453,1.55987,57.9728,-4.85366,4.83146,55.8806,-5.34049,5.5158,54.1524,-4.73399,4.04378,57.7401,-5.76004,4.28504,52.0199,-5.87723,6.41559,52.2903,-5.95036,6.05507,56.0512,-6.30455,6.79707,54.3365,-6.87267,7.84957,52.4647,-6.38407,1.99496,52.0439,-6.21138,5.33527,49.5175,-6.69358,2.93645,49.5211,-7.84908,0.475131,49.515,-7.28373,-0.147082,52.043,-6.81384,4.0337,46.7222,-7.73866,1.94944,46.6306,-6.63295,6.54065,46.825,-7.72609,2.93392,42.7676,-7.15909,5.08222,42.9091,-6.94339,7.59931,43.1467,-6.48368,7.50856,49.9521,-7.43516,9.05755,50.0235,-6.8469,8.69518,46.9323,-7.84897,10.3212,47.0335,-8.66226,8.97434,52.7188,-9.00588,10.1545,50.1784,-9.42556,11.384,47.1594,-10.549,9.35346,53.0136,-10.8848,10.5306,50.3023,-8.2739,7.81224,54.7698,-10.2278,8.19634,55.2302,-8.03947,6.81367,56.6637,-9.96227,7.27717,57.2725,-7.74246,6.25034,58.8502,-9.73963,6.63698,59.5033,-4.83867,2.27975,82.9216,-6.53746,4.32833,83.2771,-7.42565,4.70846,79.0597,-7.56773,6.00511,61.6986,-9.51688,6.40468,62.256,-11.5912,6.06412,62.5891,-11.8,6.25588,59.8646,-11.7884,6.62809,57.4955,-13.8823,5.30293,59.9428,-13.7427,5.48836,57.4456,-12.353,8.7318,53.0366,-12.0025,7.56978,55.3574,-13.6085,6.00814,55.1609,-13.7718,6.9526,52.814,-14.2909,8.07757,50.4457,-12.7626,9.91372,50.4215,-15.5804,6.33937,47.3482,-14.8168,8.781,47.4059,-15.1943,3.6499,47.0981,-13.2327,10.5923,47.3573,-15.2632,4.42951,43.4956,-15.7454,7.01105,43.6915,-14.925,9.35238,43.8011,-13.4762,11.1537,43.9246,-15.2636,7.57562,39.3809,-8.18968,11.2822,43.6101,-9.76935,12.1815,43.7605,-7.17603,9.77191,43.3653,-8.45213,11.7371,39.814,-8.56874,11.8894,35.8106,-7.46475,10.6536,35.221,-7.35964,10.4505,39.3658,-8.76977,12.1608,31.3282,-7.55617,11.0253,30.7535,-7.12079,8.36195,38.8304,-7.23992,8.6569,34.5646,-7.18433,8.8631,30.4108,-7.72869,10.9593,26.2974,-7.22888,8.81815,26.5231,-10.0615,12.4773,40.0832,-11.6906,12.1936,43.8959,-7.38941,5.84221,38.6,-7.87919,3.74102,38.4638,-9.12821,3.29441,27.1079,-8.00885,4.75919,27.0364,-7.30187,6.63882,26.8728,-10.6176,3.6646,23.5188,-10.822,3.3726,27.2137,-9.31717,3.02684,30.7146,-8.02502,4.6056,30.6431,-11.1895,2.95832,30.8198,-11.9638,4.76092,23.5382,-12.4457,4.39011,27.4273,-7.58756,6.33088,34.4292,-7.40298,6.5563,30.5128,-9.0181,11.9869,26.5809,-8.85937,11.8581,22.9585,-7.71005,10.6597,22.7377,-8.49573,11.583,20.2743,-7.50901,10.3798,19.912,-14.6418,5.45683,35.0297,-15.0129,5.13291,39.2463,-13.3489,6.12595,27.5116,-14.0177,5.86486,31.2024,-12.9811,3.98707,31.0394,-14.6078,7.65815,35.3036,-13.9994,7.81807,31.3989,-11.7954,5.04737,20.2607,-12.4682,6.60364,20.4155,-12.6936,6.38949,23.5547,-13.351,7.94902,27.5369,-9.27355,4.98334,83.7811,-9.85685,5.20388,79.3209,-12.8006,4.35798,79.7891,-12.3967,3.97939,84.1001,-13.0469,4.6175,75.9831,-10.3396,5.541,75.6449,-15.3893,2.63535,76.2497,-15.3878,2.33526,80.1998,-15.1555,1.90987,84.5359,-15.2247,2.81819,72.5017,-13.1479,4.76987,72.371,-10.7529,5.79506,72.1674,-15.0011,2.99017,68.9878,-13.2024,4.89356,68.9311,-16.0679,0.42419,68.9081,-16.5281,0.17038,72.4864,-16.8337,-0.129974,76.3242,-8.39817,5.54327,72.1301,-8.00397,5.15065,75.5323,-11.0486,5.89894,68.8025,-8.80094,5.87418,68.7698,-7.03731,5.15431,68.8013,-11.2759,5.94077,65.5301,-9.17686,6.14323,65.3424,-7.34288,5.62251,65.1658,-15.5938,0.627903,65.5854,-14.8282,3.18804,65.6879,-13.3016,5.00731,65.6552,-17.0728,-3.21474,76.2107,-16.7963,-2.77297,72.3165,-16.2009,-5.94177,75.9232,-15.8639,-5.38073,72.0201,-16.9585,-0.627641,80.3737,-16.7958,-1.07815,84.7318,-15.17,0.745681,62.4962,-14.7718,3.3677,62.6547,-13.5273,5.17184,62.6278,-9.66977,-11.0375,85.7016,-5.83625,5.54839,57.991,-11.3338,11.541,47.2686,-8.06723,4.22308,34.4052,-10.5511,3.92722,20.252,-9.47382,-12.2484,100.659,-13.3468,-10.7966,99.794,-14.4731,-8.81072,102.62,-6.58973,7.02302,16.7917,-6.69348,8.94714,16.7768,-7.22442,5.03246,17.0805,-8.95871,3.88256,17.4256,-12.489,8.20621,17.874,-12.0248,9.75218,18.3227,-7.36271,10.241,17.1774,-11.7503,5.20975,17.3518,-12.4162,6.75945,17.6097,-10.5611,4.0224,17.4688,-10.7776,11.4519,20.6579,-9.93552,11.8461,20.6295,-11.4332,10.6278,20.8195,-8.32657,11.559,17.7909,-10.5709,11.4471,18.3481,-9.61806,11.8839,18.2538,-11.2976,10.7639,18.3813,-0.058745,-12.523,93.3339,-0.0451322,-9.7001,88.8869,-0.0241941,-8.44288,88.8981,-0.140663,-6.67318,88.9127,-0.0525352,6.76502,95.0973,-0.0790698,7.00359,102.624,-14.8208,-8.96568,100.733,-13.1011,-10.6213,101.717,-0.0662664,4.66203,108.743,-6.26609,6.79483,14.4255,-5.80007,6.40125,12.2643,-7.1548,4.75304,13.0333,-7.14382,4.9094,14.6886,-6.34219,8.93456,14.4763,-5.4092,9.62452,9.59041,-5.02115,9.51061,7.52235,-5.13291,7.14909,7.2698,-4.99419,7.22525,9.59249,-5.7295,8.90162,11.7702,-6.04869,4.89105,10.1087,-6.24939,5.25505,11.2372,-6.16188,4.46171,7.92769,-8.32879,1.29923,7.14164,-7.68747,3.26124,9.03339,-7.21172,1.35065,6.31094,-5.73504,4.40262,5.83891,-6.60811,1.40475,5.3212,-7.58537,3.99738,10.7794,-6.30379,11.1644,9.81806,-7.65214,12.3283,10.2234,-7.17903,13.0586,7.92906,-5.81807,11.849,7.4905,-9.08113,12.8249,10.5133,-9.08772,13.5625,7.84261,-6.91848,13.6689,5.80356,-5.38185,12.0495,5.72866,-4.67748,9.85388,5.6283,-9.05661,3.27852,11.3954,-9.1054,2.62461,9.7958,-10.2957,3.27124,11.3809,-10.2493,2.6154,9.80214,-10.4218,1.20862,7.64857,-9.40763,1.1785,7.64478,-10.3954,-1.91154,5.81297,-11.3949,-1.86534,5.75887,-9.14082,-1.82541,5.80789,-10.5611,3.94022,15.1419,-11.7551,5.16886,14.8607,-9.00948,3.82102,15.1369,-12.2403,5.40379,10.0489,-11.334,3.93703,10.8242,-11.2428,3.10319,9.27694,-12.1411,3.69941,8.44542,-12.451,12.1487,6.26258,-13.0843,9.9376,6.66169,-13.2074,10.3878,4.56423,-12.4677,12.5701,4.30274,-10.9015,13.6177,6.04307,-10.779,13.9908,4.15872,-13.2295,10.867,2.63657,-12.0546,12.7536,2.57262,-10.4261,13.9518,2.48182,-12.1515,10.9809,1.36499,-11.0101,12.2488,1.3592,-10.1006,13.2494,1.40928,-13.112,5.67792,6.1601,-13.5154,3.18186,5.24666,-13.9281,3.99648,4.0485,-13.6356,6.29661,4.58532,-14.8302,1.16355,3.33053,-14.3137,0.300389,4.38287,-13.0696,2.41441,6.24717,-13.6676,-0.537188,5.11211,-12.7177,4.39806,7.29384,-13.182,9.38981,7.67251,-13.1712,7.86462,7.35398,-13.2645,8.02674,6.29614,-13.2316,-10.8951,1.22652,-13.505,-11.2724,0.719547,-13.922,-11.2807,0.925566,-13.7332,-10.7418,1.36853,-13.9155,-11.2368,0.44055,-14.1825,-10.8347,0.671381,-14.3189,1.95521,1.03852,-13.3804,4.69901,1.15564,-14.13,4.54914,2.63486,-14.9763,1.80125,2.05875,-13.7201,6.92212,2.88371,-12.9287,7.08733,1.18443,-10.3467,10.4742,0.737936,-9.53268,11.8927,0.787359,-12.4763,9.34674,1.31622,-13.4505,9.39031,2.74595,-11.4283,6.67038,0.701015,-10.9496,8.94671,0.71038,-8.73565,13.1487,1.10059,-8.01271,11.1577,0.634477,-7.17562,12.311,1.00648,-8.674,9.81797,0.575745,-8.32991,14.3986,2.30261,-8.902,14.148,5.88115,-8.66598,14.3522,4.06124,-6.64548,13.6253,3.90742,-10.8331,12.9831,8.03007,-4.51861,9.75412,3.93494,-4.98474,12.0693,3.94568,-5.00466,11.6267,2.33609,-4.76834,9.38974,2.42243,-6.31089,13.4441,2.26982,-6.06353,10.9659,1.04922,-5.8604,9.12237,1.18735,-4.93153,7.19764,3.95858,-5.20064,7.08063,2.53258,-6.19806,7.20499,1.43603,-10.2433,12.3633,10.728,-9.25103,8.29011,0.589216,-13.9253,-10.1819,0.439264,-13.5997,-10.3537,0.403863,-13.4767,-9.82336,0.593423,-13.9174,-9.75077,0.694425,-13.2417,-10.5307,0.396035,-13.0599,-10.1385,0.689204,-14.0895,-10.4962,0.501836,-13.7857,-10.8505,0.225727,-13.2564,-10.9336,0.448536,-14.4449,-9.01292,0.652751,-14.2957,-8.72473,0.84553,-14.5907,-8.55737,0.749464,-14.6845,-8.96456,0.576077,-14.9527,-8.25081,1.04475,-14.9606,-8.62379,0.769648,-14.5462,-8.20822,1.00746,-15.2697,-8.92767,0.89643,-15.1366,-9.2432,0.663738,-14.9524,-8.93682,0.579646,-15.2463,-8.50518,1.25117,-14.2592,-9.10381,1.03854,-14.1726,-8.74682,1.41525,-14.2723,-8.39834,1.12688,-14.245,-8.01702,1.31836,-14.5231,-7.85218,1.10353,-14.248,-8.2802,1.69116,-14.4856,-9.36429,0.717068,-14.6334,-9.67319,0.913744,-14.5282,-9.46838,1.25785,-14.8369,-9.40111,0.59905,-14.9864,-9.76333,0.878614,-6.7052,4.89632,1.62614,-5.81639,4.65738,2.74353,-6.37181,-1.41437,2.49789,-6.29241,1.85647,2.73399,-7.1214,1.8157,1.49905,-7.09077,-1.21852,1.18326,-5.52194,4.52546,4.19343,-6.20122,1.6637,4.04807,-6.55949,-1.58179,3.7961,-7.17697,-1.7399,4.85285,-12.895,-8.59064,1.35572,-13.2694,-8.37006,1.16672,-13.3679,-8.88006,1.07876,-12.9555,-9.11118,1.28853,-13.3956,-9.30954,0.896726,-12.9538,-9.60742,1.03475,-12.7581,-8.8309,1.89286,-12.752,-9.39734,1.78672,-12.7969,-9.99339,1.43361,-12.62,-7.97411,1.16177,-13.0741,-7.69336,0.962501,-12.5843,-8.38129,1.90031,-14.0395,-9.22109,2.11761,-14.0645,-9.84994,1.72993,-14.1329,-9.51407,1.36518,-14.1561,-8.92536,1.66997,-13.5981,-9.44873,2.34453,-13.6569,-10.1336,1.94622,-14.0908,-10.4064,1.20466,-14.1753,-10.0082,0.929059,-14.231,-4.73855,3.85334,-14.5805,-5.76022,3.33873,-15.0621,-5.45688,3.28294,-15.0399,-4.24919,3.65531,-13.5651,-5.48416,3.83973,-14.1675,-6.19967,3.25489,-14.775,-6.52026,2.92911,-15.1399,-6.18029,2.87389,-14.3744,-6.78401,2.83315,-15.3571,-5.38758,3.1068,-15.5748,-4.85485,3.12333,-15.4156,-5.79832,2.7452,-15.7509,-5.44048,2.7063,-13.6482,-6.55094,3.32557,-13.9734,-6.56239,3.11466,-14.0799,-6.99891,2.79949,-14.1405,-7.42981,2.33426,-14.4062,-7.40808,2.37746,-14.8543,-7.18791,2.53077,-13.0677,-6.70958,3.46314,-12.6734,-5.70517,4.00339,-12.4878,-6.98804,3.37984,-11.7687,-6.16946,3.95594,-12.1679,-4.36636,4.72228,-11.2213,-4.56006,4.6848,-12.9786,-4.00324,4.6395,-12.7602,-7.57833,2.99288,-13.2845,-7.43608,3.0792,-12.1916,-7.26187,3.26526,-12.3283,-7.67386,2.95817,-11.7278,-7.15269,3.49784,-13.4047,-8.09353,2.74049,-12.9097,-8.18713,2.50055,-12.4458,-8.13844,2.47639,-13.7636,-7.2273,2.95235,-13.9064,-7.87351,2.4785,-15.2845,-8.82855,1.52238,-15.3409,-9.30055,1.14398,-15.2727,-8.29295,1.8279,-15.3649,-7.93886,1.44437,-14.9316,-7.8395,1.17055,-8.98074,-11.5239,2.2251,-9.10673,-12.0865,2.07113,-10.0405,-11.7882,1.75801,-9.87667,-11.1154,1.85846,-10.3807,-11.6849,0.941159,-10.1659,-10.863,0.997134,-8.87712,-10.8953,2.3029,-9.64299,-10.4667,1.99558,-9.73343,-10.1286,1.2275,-12.8853,0.992103,0.721611,-11.115,-0.108599,0.558659,-10.5451,2.37953,0.550915,-12.1523,3.63362,0.601234,-15.3428,-9.69507,0.894963,-6.46533,-7.60773,1.13684,-6.386,-7.78807,2.14571,-6.12257,-6.54266,2.28664,-6.27898,-6.485,1.12941,-6.7664,-8.47058,1.05405,-6.75408,-8.72912,1.93024,-6.9204,-7.85826,3.11114,-6.6175,-6.64861,3.40869,-7.30179,-8.78545,2.78913,-7.13154,-9.22426,0.944729,-7.08347,-9.56898,1.7239,-7.33638,-8.1551,0.484897,-7.77432,-8.84516,0.543457,-6.94545,-7.40936,0.427352,-7.61969,-9.6369,2.51367,-8.04767,-9.5815,0.454163,-7.31556,-9.98441,0.795398,-8.16486,-7.93717,0.267179,-8.80258,-8.59714,0.696459,-8.95081,-9.3187,0.661531,-7.83235,-7.29551,0.0841052,-8.55898,-7.36292,0.0303361,-8.95325,-7.82669,0.2669,-9.473,-8.35006,0.832954,-8.49691,-9.41161,2.89898,-8.21008,-8.57622,3.32419,-7.94029,-7.74157,3.70275,-9.15714,-8.28987,3.39028,-9.41057,-8.92751,2.60026,-8.71519,-10.157,2.56014,-9.47189,-9.79401,2.24496,-7.84217,-10.4566,2.26306,-9.01001,-7.55333,3.78048,-9.83712,-7.87512,3.11046,-9.6644,-7.46983,3.51986,-9.97747,-8.36277,2.52347,-10.4938,-7.6101,0.371832,-11.0173,-8.44276,0.702651,-10.2552,-8.55028,0.873705,-9.69237,-7.73957,0.308642,-11.2721,-7.48316,0.502664,-11.7909,-8.34108,1.0572,-11.3951,-9.22201,0.817649,-10.7982,-9.36862,1.00667,-11.9766,-9.12988,1.20174,-11.8509,-7.34442,0.606419,-12.1947,-7.99597,1.15239,-12.2587,-7.12953,0.607124,-11.5009,-6.75689,0.337657,-11.7047,-6.34585,0.377445,-10.8429,-6.64717,0.222371,-12.7317,-6.86708,0.596588,-13.2028,-6.65249,0.650415,-13.5784,-7.52675,1.13536,-13.697,-8.28547,1.32077,-9.87827,-6.75376,0.102553,-10.8996,-5.69762,0.37148,-9.60952,-5.70123,0.320189,-13.8508,-6.17287,0.659806,-13.557,-6.45329,0.691875,-13.3153,-5.86587,0.49196,-13.4945,-5.41275,0.44799,-12.8889,-5.79498,0.443278,-12.7475,-4.69448,0.453784,-12.2581,-5.94695,0.399794,-11.8383,-5.14511,0.417396,-14.2424,-5.83072,0.60957,-13.9452,-4.92665,0.420625,-14.4258,-6.6474,0.911266,-14.0845,-7.01422,1.16824,-14.537,-4.65523,0.470374,-14.7017,-5.51615,0.628882,-14.8966,-6.40486,1.03868,-16.0621,-4.45577,0.712492,-15.5042,-4.84938,0.669863,-15.2479,-4.13347,0.540742,-15.8446,-3.56448,0.652919,-16.5783,-4.23589,1.01398,-16.4365,-3.2375,1.00062,-15.0743,-2.73878,0.764269,-16.0312,-2.08826,0.999912,-14.4498,-3.69419,0.581387,-16.0187,-5.26149,0.808132,-15.5129,-5.62256,1.02004,-15.8948,-5.85976,0.83951,-15.5142,-6.11698,1.09679,-16.5398,-5.11053,0.915618,-16.3796,-5.80119,0.865036,-12.4497,-8.32861,1.86715,-12.0909,-8.45904,2.68668,-11.8537,-7.80759,3.18925,-12.4533,-8.59203,1.87258,-13.5063,-8.76168,2.62213,-13.9684,-8.57785,2.33045,-13.0445,-8.91181,2.37672,-15.2185,-6.81964,2.29618,-15.4172,-6.19393,2.18261,-15.7305,-6.00177,2.1458,-15.3074,-6.22719,1.56812,-15.366,-6.09784,1.56386,-15.2036,-6.74639,1.60736,-11.2018,-7.84554,3.34001,-11.3575,-8.54475,3.02168,-11.4914,-9.30781,2.79801,-12.0902,-9.2574,2.57296,-12.2983,-9.18538,1.88965,-10.4892,-7.82905,3.20503,-10.6254,-8.57572,2.63666,-10.9426,-9.43571,2.44089,-9.84791,-8.53293,1.71778,-10.3371,-8.7974,1.73358,-10.6664,-9.43545,1.68645,-9.48772,-8.7852,1.64804,-16.2624,-2.47311,2.68763,-16.5978,-3.60619,2.47473,-16.7561,-3.24125,1.66192,-16.3981,-2.05014,1.75098,-16.7124,-4.5774,2.19544,-16.818,-4.27688,1.53935,-15.7518,-1.1485,2.91524,-15.8976,-0.662376,1.81327,-15.168,-0.452993,0.95104,-16.8336,-5.1798,1.37183,-16.6987,-5.92099,1.17495,-16.7343,-5.42406,1.92026,-16.6454,-6.17635,1.62793,-16.2803,-5.00645,2.59231,-16.3094,-5.74902,2.25472,-16.2566,-6.4231,1.97152,-15.7504,-6.48072,1.91062,-10.2297,-13.2035,1.39021,-10.2414,-13.1496,0.822776,-10.6001,-12.4724,0.924053,-10.1855,-12.5449,1.59732,-9.50039,-13.5567,1.31859,-9.49715,-13.4943,0.768544,-8.28514,-12.9933,0.544997,-8.69911,-13.3145,0.606833,-8.63052,-13.5054,0.982899,-7.95952,-13.1642,1.2348,-8.7381,-13.5271,1.40236,-8.33893,-12.9597,1.81473,-9.38476,-13.2314,0.416903,-9.2937,-12.7696,1.89643,-11.6507,-12.6389,1.16244,-12.2675,-12.6311,1.08627,-12.0739,-12.0978,1.54203,-11.4931,-12.1995,1.41797,-11.5905,-12.4739,0.784545,-12.2022,-12.4945,0.679423,-11.2828,-12.0424,0.988385,-12.7488,-12.3661,1.03815,-12.6323,-11.9003,1.32138,-12.7589,-12.24,0.713698,-12.9016,-11.7263,0.911808,-14.5132,-7.97415,2.22167,-14.1277,-7.44225,1.77875,-14.1875,-7.8682,1.84429,-14.0387,-7.45866,1.72863,-14.2463,-7.57768,1.35992,-13.8253,-7.12009,1.17637,-15.3699,-6.3586,1.61464,-15.22,-5.84855,1.0367,-12.5453,-12.0248,0.515733,-12.1114,-12.1115,0.464886,-11.6586,-12.1783,0.526828,-12.5571,-11.5814,0.534858,-15.5135,-7.9552,0.551668,-15.7352,-8.44272,0.808261,-15.4451,-8.20095,0.939241,-15.2686,-7.90002,0.772279,-15.9703,-8.24264,0.671163,-15.8437,-7.81375,0.445797,-16.1545,-7.46859,0.479888,-16.1397,-7.85367,0.836683,-15.4587,-7.51982,0.475246,-15.7249,-7.4892,0.358462,-15.8771,-7.166,0.42752,-15.5135,-7.14694,0.573265,-11.6497,-10.1644,2.51642,-12.2053,-9.99817,2.35561,-12.43,-9.8337,1.7843,-15.6692,-7.02439,1.6756,-16.1626,-7.02063,1.65412,-16.5218,-6.82917,1.33701,-11.9363,-11.547,1.86777,-11.3724,-11.6052,1.65516,-11.802,-10.9303,2.21572,-11.2757,-10.9884,1.91161,-12.4696,-11.3376,1.65747,-12.3341,-10.7282,2.03598,-15.2591,-7.64229,1.00981,-15.588,-7.94523,1.18741,-15.614,-7.50716,1.4797,-15.2556,-7.29113,1.34719,-15.3061,-6.8466,1.57115,-16.0916,-7.57557,1.41277,-15.9574,-8.10715,1.14698,-14.9028,-7.86452,2.32093,-14.565,-8.50641,1.96168,-14.9607,-8.57084,2.1436,-16.3883,-7.37167,1.05973,-9.15156,-10.1594,0.509645,-9.50274,-9.46048,1.45245,-8.25782,-10.4181,0.333707,-9.46874,-10.9852,0.325017,-8.429,-11.3047,0.0222905,-12.3228,1.89426,6.97507,-11.4601,1.47971,7.39222,-12.2249,-1.64169,5.67938,-12.9621,-1.1938,5.48716,-4.94719,7.18909,5.66986,-12.9962,6.62903,7.45193,-13.2132,7.541,8.83156,-12.7609,5.77761,8.37028,-13.81,-1.58083,0.722916,-8.35853,-5.25134,0.482607,-7.35748,-5.40979,0.543246,-6.95426,-4.3295,0.892543,-9.43497,-3.98156,0.576582,-6.75412,-6.52543,0.388925,-8.32631,-6.35483,0.27795,-14.4733,-2.78195,4.27525,-13.7145,-3.45485,4.4916,-15.1263,-1.93625,3.67305,-15.6878,-3.20695,3.30079,-10.0983,-4.72891,4.82747,-10.5452,-6.18011,4.28086,-8.91107,-4.82778,4.7401,-8.12992,-1.81076,5.44886,-9.28718,-6.5226,4.10827,-7.5809,-4.90413,4.47995,-7.77746,-6.58508,4.05933,-6.57851,-4.87812,3.6087,-13.4015,8.67954,4.81547,-6.95737,10.4265,0.680496,-13.1071,9.54869,8.85637,-12.7433,8.97873,10.4296,-12.7521,7.02818,10.7798,-9.77365,5.99855,0.662183,-7.16456,9.20935,0.724624,-13.8702,-9.25709,1.04125,-13.8142,-8.82161,1.24795,-14.0199,-8.39442,1.7791,-12.9089,-10.5852,0.907848,-14.5233,-8.99138,1.63155,-16.093,-4.19149,2.94584,-14.9661,-9.04292,1.72482,-15.0287,-9.60254,1.33434,-10.095,-7.25755,3.63039,-10.9065,-7.12059,3.69988,-9.11265,-7.0525,0.178876,-7.1533,-10.3986,1.54771,-8.75173,-12.1266,0.0598426,-7.75861,-12.4212,0.494689,-7.45642,-11.6867,0.480948,-9.10056,-12.7785,0.136796,-7.49617,-12.577,1.32487,-7.38613,-11.8683,1.30805,-8.16734,-12.3998,1.90784,-8.01031,-11.8111,1.98035,-13.5619,-4.15119,0.503389,-14.9687,-4.63995,0.531481,-15.1035,-5.20689,0.67634,-14.8861,-7.23722,1.2371,-14.5013,-7.29884,1.14649,-14.0211,-7.84729,1.76701,-10.0383,-12.5145,0.324727,-9.77894,-11.8083,0.211747,-10.0166,-12.9963,0.477247,-12.5221,6.79203,14.8492,-11.6603,10.9705,10.6927,-12.3018,11.6362,8.27514,-15.2395,-7.636,2.05118,-15.2446,-7.37741,1.54618,-11.4828,-11.7806,0.58256,-12.0017,-11.608,0.440289,-15.2542,-7.56783,0.656494,-15.2662,-7.32097,0.804119,-13.0693,-9.51679,2.1404,-13.1432,-10.1904,1.78775,-16.5436,-6.56001,0.941982,-11.098,-11.4872,1.17378,-12.6975,-11.1045,1.21501,-12.4534,-10.9584,0.743422,-11.8945,-11.0013,0.519721,-11.3251,-11.2178,0.675367,-10.9515,-10.8996,1.35518,-12.5462,-10.4984,1.5316,-12.3493,-10.3411,0.954504,-11.7795,-10.4068,0.660337,-11.1941,-10.6339,0.801652,-11.1154,-10.2286,2.23206,-10.8694,-10.1692,1.54414,-11.0497,-10.0524,0.935267,-11.6212,-9.86348,0.804309,-12.1353,-9.76009,1.1747,-15.6216,-6.77221,0.705273,-16.0491,-6.80334,0.60752,-15.3263,-6.96493,0.975464,-16.3292,-7.05415,0.73566,-15.4167,-6.55213,1.07023,-15.7504,-6.36438,0.771769,-16.229,-6.3671,0.717675,-7.39288,-10.8483,0.609982,-7.25206,-11.1979,1.40653,-7.87403,-11.2614,2.10231,-9.11723,-0.870829,0.780849,-6.11513,-4.84306,2.37629,-12.6295,6.8273,12.6687,-12.6702,8.4217,12.6543,-12.5763,8.25877,14.9506,-12.8181,10.4272,8.59135,-10.3433,11.6829,15.9899,-9.45533,12.0224,16.0823,-74.8349,5.21235,137.9,-75.2375,4.02174,137.668,-74.3464,3.36638,137.948,-73.3798,4.56948,138.249,-73.752,5.87244,138.757,-75.0477,6.16592,138.351,-75.3761,7.07763,139.0,-76.3829,7.33244,138.661,-76.0786,6.40344,138.042,-76.0316,7.61485,139.907,-76.907,7.77985,139.497,-74.7344,7.4374,140.304,-74.1805,6.89383,139.369,-75.8943,5.46431,137.642,-75.3351,7.17026,141.265,-75.9063,6.15133,141.866,-75.7681,3.1112,142.001,-76.0744,4.68259,142.064,-77.6695,2.66342,141.485,-78.1029,4.55919,141.474,-77.9615,6.12217,141.199,-74.8513,1.88731,141.439,-76.5212,1.17433,140.792,-77.0872,7.28437,140.615,-77.4153,7.64219,139.99,-78.2534,7.6642,139.778,-77.7459,7.91042,139.157,-76.0461,4.49616,137.427,-73.5495,1.57204,140.442,-75.1388,0.616174,140.048,-78.7417,7.24935,140.245,-79.3473,6.72092,140.516,-75.1377,2.48701,137.558,-75.8593,3.17112,137.356,-72.9085,2.09513,139.415,-72.918,3.06119,138.872,-89.3407,9.06727,136.441,-89.0268,9.11627,136.413,-89.091,9.02263,136.687,-89.3285,9.02525,136.649,-89.5357,8.85223,136.492,-89.4218,8.85301,136.736,-91.7154,4.20068,136.236,-92.4024,4.30527,136.153,-92.2794,4.3951,136.417,-91.7846,4.36951,136.522,-92.4806,4.62686,136.499,-92.8225,4.57844,136.122,-86.7265,-2.10692,137.555,-86.1995,-1.92389,137.766,-86.2502,-2.35288,137.256,-86.6759,-2.34183,137.36,-85.4656,-1.62201,138.086,-85.3259,-1.99603,137.605,-86.8702,-1.77311,137.684,-86.3829,-1.4651,137.939,-85.6438,-1.06724,138.238,-87.0298,-1.51485,137.647,-86.7263,-1.10381,137.572,-87.3028,-1.65528,137.474,-87.2633,-1.95136,137.418,-87.1239,-2.26129,137.316,-85.7866,-0.563987,137.902,-84.9104,-0.152141,138.21,-84.7779,-0.665287,138.559,-84.6356,-1.23355,138.458,-85.8068,-0.302127,137.284,-86.736,-0.702719,137.018,-84.9674,0.0567849,137.526,-84.3573,0.424585,137.761,-83.9687,0.37684,138.619,-84.8776,-0.0531816,136.83,-85.6799,-0.354506,136.629,-84.2653,0.393448,136.969,-87.7172,-2.07783,137.084,-87.5508,-2.46141,136.99,-87.6146,-1.53829,137.124,-88.1794,-2.7322,136.633,-88.362,-2.32478,136.719,-88.4716,-1.88825,136.575,-88.8311,-2.96222,136.32,-88.9885,-2.60627,136.39,-89.2972,-2.2866,136.161,-86.9004,-2.7401,136.244,-87.7613,-3.08108,135.852,-87.972,-2.99401,136.33,-87.1156,-2.66337,136.824,-88.8601,-3.29895,135.981,-88.6536,-3.32363,135.54,-89.4302,-3.58606,135.302,-89.6012,-3.52866,135.7,-90.2036,-3.68596,135.474,-90.135,-3.78208,135.168,-89.4937,-3.39511,135.942,-89.2724,-3.32925,136.034,-90.3813,-3.4419,135.661,-89.9639,-3.30559,135.786,-89.656,-3.21775,135.98,-90.6442,-3.85758,135.12,-90.5574,-3.77564,135.408,-90.6814,-3.88042,134.795,-90.1784,-3.69233,134.804,-89.3972,-3.40486,134.922,-90.8214,-3.60157,135.519,-90.9815,-3.23761,135.53,-90.5304,-3.09787,135.675,-90.1046,-2.97817,135.824,-90.928,-2.94058,135.402,-90.6039,-2.78056,135.52,-90.0156,-2.55672,135.807,-90.2902,-3.351,134.609,-90.8444,-3.59075,134.747,-89.4832,-3.02903,134.696,-90.4707,-2.97301,134.622,-89.6704,-2.59684,134.754,-91.0279,-3.22249,134.725,-88.5899,-3.08708,135.127,-88.6284,-2.65936,134.857,-88.8467,-2.18192,134.949,-89.318,-3.11867,136.144,-89.44,-2.81939,136.185,-89.781,-2.92351,136.028,-89.5556,-2.60643,136.141,-89.7793,-2.67614,136.041,-91.1282,-2.92852,134.785,-90.6161,-2.67017,134.852,-89.874,-2.30341,135.033,-89.0972,-1.94092,135.332,-89.2451,-1.96501,135.777,-89.9859,-2.2921,135.448,-88.0451,-1.76237,135.269,-88.3158,-1.4903,135.697,-88.4628,-1.55804,136.2,-90.6597,-2.61411,135.215,-91.0587,-2.90551,135.094,-87.7909,-2.28304,135.123,-86.9344,-1.94345,135.489,-87.2042,-1.39008,135.638,-87.483,-1.07044,136.082,-86.3049,-1.07953,135.972,-86.0387,-1.65785,135.871,-86.587,-0.698889,136.405,-85.1056,-1.39995,136.201,-85.9369,-2.19019,136.122,-85.0367,-1.9086,136.515,-85.3744,-0.787505,136.207,-86.8236,-2.48607,135.733,-87.6434,-1.11948,136.656,-85.1666,-2.08969,137.035,-84.2992,-1.78868,137.443,-84.1601,-1.61687,136.911,-83.2282,-1.30742,137.257,-83.2819,-1.39575,137.863,-84.4731,-1.65933,138.017,-83.4583,-1.25562,138.465,-83.9193,4.14433,136.532,-83.7623,5.0189,136.468,-84.7569,5.01824,136.672,-84.9101,4.23073,136.755,-85.0559,3.65165,137.237,-84.2603,3.24982,136.818,-85.5671,5.01895,136.54,-85.6326,4.29165,136.711,-85.6748,3.89031,137.185,-86.4397,3.94204,137.009,-86.3699,4.31026,136.483,-86.3814,5.02774,136.276,-86.4696,3.87361,137.596,-85.6771,3.84728,137.81,-87.3631,3.94316,137.349,-87.3022,3.99183,136.801,-87.2545,4.34423,136.293,-85.0841,3.73306,137.969,-84.9052,3.45317,138.063,-84.9445,3.37135,137.5,-85.1419,3.11321,138.015,-85.1142,2.98377,137.208,-85.8383,2.85109,137.832,-85.8273,2.70946,137.092,-85.6767,2.15254,136.648,-84.9465,2.28746,136.754,-83.9455,2.46635,136.71,-86.7227,2.59459,137.515,-86.6272,2.54083,136.801,-86.4156,2.03554,136.336,-87.7568,2.35236,137.123,-87.5905,2.32774,136.443,-87.7895,2.03521,137.812,-86.6547,2.35346,138.205,-85.6947,2.63115,138.541,-87.3444,1.83735,136.016,-88.8525,2.07324,136.674,-88.6511,2.05673,136.065,-88.3789,1.60383,135.657,-86.4597,1.95607,138.686,-85.5111,2.1922,138.999,-87.3569,1.70512,138.324,-88.2064,0.942198,135.726,-87.1826,1.16931,136.099,-89.4505,1.38722,135.293,-89.7267,1.8031,135.707,-89.2719,0.726746,135.332,-87.4534,4.17833,137.851,-86.4676,4.16181,138.093,-87.227,4.59396,138.129,-86.4574,4.61878,138.333,-85.6146,4.16184,138.369,-85.604,4.66287,138.614,-87.2847,5.02093,138.055,-86.5023,5.1064,138.232,-87.822,4.60001,138.02,-87.842,4.35548,137.949,-87.875,4.9579,137.973,-85.5784,5.19261,138.49,-88.1668,4.34557,137.853,-88.3017,4.5935,137.871,-88.3546,4.94718,137.824,-88.4491,4.18467,137.555,-88.8176,4.58075,137.634,-88.8711,4.99786,137.578,-88.276,5.19923,137.741,-88.6012,5.39195,137.372,-89.546,5.02857,137.323,-89.5248,5.41624,137.035,-89.4931,4.59397,137.38,-88.2197,4.03335,136.566,-89.1272,4.0777,136.343,-89.2368,3.98157,136.825,-88.3081,3.9724,137.086,-89.9772,4.12735,136.136,-90.1064,4.04483,136.593,-89.3773,4.1987,137.213,-90.2878,4.26987,137.0,-88.1895,4.38697,136.117,-89.0852,4.43072,135.915,-87.3009,5.02333,136.079,-88.2392,5.02015,135.899,-89.1316,5.02706,135.701,-89.9669,5.03792,135.607,-89.9106,4.50195,135.783,-89.2852,5.55054,135.974,-90.1306,5.50408,135.841,-88.3765,5.58297,136.174,-87.4385,5.62119,136.393,-86.4953,5.66645,136.605,-90.775,4.16668,135.965,-90.9176,4.12057,136.396,-90.7209,4.55124,135.664,-91.0729,4.32333,136.772,-91.6328,4.22329,135.846,-88.0144,1.49626,138.047,-88.1966,1.75046,137.914,-88.5778,1.37,137.757,-88.5721,1.66021,137.718,-88.9364,1.76257,137.267,-89.2072,1.2814,137.364,-90.0417,1.12727,136.953,-90.0364,1.52279,136.719,-89.9202,1.78117,136.278,-90.8427,0.924591,136.651,-91.0879,1.24286,136.406,-90.9205,1.50645,135.985,-90.7257,1.487,135.51,-91.8741,1.03,136.195,-91.7635,1.285,135.82,-91.6305,1.26013,135.385,-91.4535,0.922208,135.079,-90.4914,1.15145,135.121,-91.306,0.42203,134.963,-90.333,0.5772,135.094,-91.2825,-0.049051,135.202,-90.3363,0.0955025,135.404,-89.2866,0.230767,135.744,-88.1961,0.463745,136.173,-89.4459,0.0904659,136.289,-90.4958,-0.0170886,135.92,-88.3077,0.338967,136.764,-92.4406,0.840286,136.026,-92.466,1.03251,135.742,-92.7588,0.729761,135.975,-92.8911,0.807992,135.722,-92.422,1.01069,135.373,-92.8059,0.830317,135.425,-92.8515,0.461205,136.058,-93.159,0.445727,135.738,-92.9225,0.530964,135.289,-92.7861,0.0657676,136.046,-93.2465,0.00370461,135.729,-92.8442,0.117229,135.252,-92.4374,0.528273,136.155,-92.0474,0.610043,136.242,-91.9746,0.267714,136.213,-92.3609,0.1632,136.131,-91.3838,0.767906,136.507,-91.4719,0.982273,136.463,-91.7022,0.93138,136.404,-91.7506,0.669848,136.413,-91.3076,0.445166,136.482,-91.6775,0.358161,136.377,-90.744,0.534008,136.647,-91.5723,0.114105,136.322,-91.2896,0.209174,136.39,-91.615,-0.0187264,136.106,-90.7941,0.144062,136.362,-91.3913,-0.170235,135.692,-89.9143,0.681551,136.96,-89.6802,0.312759,136.736,-88.43,1.02886,137.746,-88.2296,0.806677,137.72,-88.5158,0.579275,137.308,-89.0543,0.868537,137.366,-87.8699,1.14855,138.048,-87.8495,0.882888,137.92,-87.3304,0.806007,137.878,-87.1774,1.25915,138.339,-86.2805,1.46644,138.643,-86.1557,1.01087,138.294,-86.1223,0.783661,137.602,-87.1827,0.60444,137.225,-86.1717,0.900045,136.885,-87.1384,0.717302,136.58,-85.2551,0.988894,137.838,-85.231,1.21606,138.558,-85.3622,1.04346,137.091,-85.3358,1.65724,138.996,-84.4452,1.82456,139.368,-84.3058,1.29322,138.738,-84.5976,2.47245,139.444,-86.2587,1.3514,136.384,-92.231,0.26879,135.048,-92.7673,-0.210937,135.28,-92.1815,-0.122979,135.223,-92.7152,-0.237967,135.614,-92.1651,-0.246221,135.598,-92.591,-0.148505,135.906,-92.2269,-0.12051,135.94,-90.1657,4.63645,137.202,-90.2152,5.01922,137.154,-90.6488,4.4598,137.066,-90.642,4.67951,137.105,-90.6893,4.99301,137.087,-90.7492,5.21697,136.994,-90.4282,5.38076,136.859,-90.9957,5.21508,136.938,-91.2259,5.36892,136.674,-91.0535,4.99439,136.989,-90.299,5.58036,136.351,-89.422,5.62148,136.542,-91.1419,5.63378,136.2,-90.9615,5.49304,135.736,-88.5166,5.69626,136.773,-91.9717,5.31941,136.461,-91.9389,5.53189,136.105,-91.8365,5.43393,135.684,-92.4631,5.23862,136.38,-92.6079,5.314,136.095,-91.99,5.01142,136.656,-92.5727,4.97455,136.515,-91.4316,5.01678,136.79,-91.7189,5.02921,135.473,-90.7897,5.04685,135.524,-92.4955,5.29803,135.766,-92.5921,4.98465,135.664,-91.9144,4.65924,136.665,-91.3732,4.67526,136.818,-91.0022,4.6876,137.004,-90.8966,4.46351,136.989,-83.5908,1.05595,138.982,-83.3,0.700193,139.196,-83.9152,0.882699,138.556,-83.5673,1.43109,139.326,-82.7091,1.25127,139.778,-84.2246,0.81423,137.881,-84.5522,1.03112,137.922,-92.5189,4.59569,135.69,-91.64,4.56995,135.568,-92.9148,4.96933,136.112,-92.3136,4.30817,135.84,-91.0795,-3.69956,135.124,-91.2415,-3.3144,135.16,-88.2287,8.63488,137.131,-88.5772,8.66987,137.076,-88.5398,8.82889,137.003,-88.2361,8.91072,136.894,-88.8051,8.7061,137.005,-88.7111,8.85834,136.955,-88.7468,8.97537,136.785,-88.6277,8.42916,137.111,-88.8531,8.48422,137.039,-88.6618,8.26216,137.079,-88.8239,8.29351,137.032,-88.3067,8.32871,137.184,-88.4364,8.05047,137.008,-89.2135,8.17343,136.547,-89.1807,8.20246,136.249,-89.4359,8.32852,136.314,-89.4791,8.34588,136.532,-89.4899,8.5235,136.216,-89.5898,8.5966,136.527,-89.4649,8.59222,136.767,-89.4293,8.39773,136.718,-89.4354,8.81936,136.164,-89.3169,9.01946,136.202,-89.0187,9.02682,136.108,-89.0578,8.74523,135.962,-89.1261,8.42014,136.022,-88.5092,8.97541,136.078,-88.5173,8.63312,135.908,-88.5828,9.08853,136.431,-84.513,-0.541287,136.472,-83.7166,-0.185278,136.672,-84.2172,-1.14196,136.547,-83.3248,-0.82987,136.801,-84.2664,0.791505,137.277,-87.9047,8.49559,135.935,-87.9038,8.85952,136.132,-88.0111,9.01053,136.501,-75.7352,1.87184,136.952,-75.4527,0.749306,137.028,-74.7665,1.67129,137.853,-76.0555,2.46829,136.956,-86.044,-2.40819,136.644,-86.948,-2.43899,137.212,-78.0789,1.06788,140.768,-78.6577,1.80339,141.086,-79.1822,2.28671,141.048,-79.1454,2.91928,141.226,-79.2988,3.78912,141.213,-79.4532,1.40468,140.819,-79.8121,2.09775,140.832,-80.0883,2.81506,140.966,-80.3058,1.05825,140.465,-80.6473,1.82498,140.545,-80.9925,2.64048,140.684,-78.9979,0.72855,140.533,-79.9461,0.409431,140.223,-77.8332,0.491361,140.209,-78.4033,0.159959,139.896,-79.3079,-0.355656,139.411,-79.4286,5.04975,141.073,-79.5063,5.73349,140.804,-79.7612,4.36565,140.953,-80.4775,4.33183,140.719,-80.5314,5.01933,140.705,-80.3167,3.61992,140.873,-80.5069,5.67189,140.452,-80.0659,7.9135,138.257,-78.9246,7.96375,138.661,-79.3824,7.73828,139.335,-80.4767,7.7845,138.94,-78.5299,7.58782,137.914,-77.3431,7.53684,138.293,-79.7099,7.54817,137.591,-81.6872,7.82884,137.311,-80.7625,7.65016,137.394,-81.1051,7.93607,138.015,-82.0638,7.98946,137.873,-81.5465,7.83936,138.595,-82.4704,7.84315,138.37,-79.8761,7.37456,139.785,-80.917,7.44808,139.387,-81.9486,7.49822,139.003,-82.8048,7.53944,138.776,-80.3608,6.94691,140.075,-81.2835,6.98363,139.682,-82.2193,7.01128,139.335,-83.0381,7.06409,139.069,-80.4791,6.29135,140.15,-81.3994,6.3136,139.828,-81.4498,5.65028,140.087,-82.3268,6.33269,139.535,-83.2166,6.31242,139.157,-82.3503,5.6164,139.778,-83.1861,5.55541,139.579,-79.7511,6.25001,140.448,-83.3052,7.89071,138.167,-82.9768,8.00529,137.707,-82.6587,7.93382,137.22,-82.5543,7.47176,136.735,-81.6115,7.22302,136.711,-83.599,7.60417,136.702,-83.6277,8.03189,137.051,-84.397,8.13575,136.888,-84.4503,7.68936,136.58,-83.7707,8.07885,137.548,-84.5254,8.22244,137.372,-80.6986,6.89663,136.799,-84.0013,7.95834,138.002,-84.6715,8.0792,137.826,-85.1142,8.405,137.226,-85.0756,8.27235,136.716,-85.1797,7.809,136.448,-85.2068,8.22017,137.711,-85.8917,8.40011,137.589,-85.794,8.57996,137.049,-85.3002,7.89965,138.024,-85.7856,8.02987,137.948,-84.8167,7.77762,138.142,-84.1845,7.66058,138.333,-84.3208,7.22838,138.497,-84.9376,7.3694,138.255,-78.2571,6.79121,137.243,-77.0981,6.60665,137.672,-79.5365,6.7854,136.992,-79.6036,5.7218,136.689,-78.2077,5.7205,136.921,-76.929,5.64096,137.325,-78.2634,4.73431,136.873,-77.0218,4.68111,137.142,-76.6719,2.42806,136.616,-77.7987,2.27377,136.377,-77.3252,1.39396,136.068,-76.3506,1.63004,136.399,-79.1708,1.93697,136.453,-78.0754,3.07562,136.738,-79.4728,2.86173,136.715,-79.6418,4.68769,136.656,-82.5375,4.32107,136.476,-82.5176,5.18752,136.435,-81.9918,6.35598,136.427,-81.1409,5.72822,136.487,-78.5702,1.00836,136.048,-80.8622,1.52399,136.707,-79.9103,0.605974,136.397,-77.7625,-0.0401915,135.789,-76.7097,0.537376,136.091,-76.0979,0.94689,136.419,-74.7812,0.492583,139.187,-75.5795,-0.302188,138.883,-76.1687,-0.0834453,139.449,-75.8021,-0.90313,137.476,-76.2119,-0.93396,138.411,-75.2733,-0.0382309,137.829,-76.8764,-0.656804,138.938,-76.3927,-1.41738,137.069,-76.8582,-1.43205,137.922,-77.4962,-1.21421,138.434,-76.995,-1.92681,136.645,-77.39,-2.37252,136.236,-77.7295,-2.46423,136.942,-77.3845,-2.04454,137.379,-78.285,-2.42313,137.409,-77.9621,-1.92443,137.847,-77.7035,-2.77364,135.891,-77.8691,-2.93338,136.506,-78.4951,-2.82805,137.022,-78.1288,-3.22339,135.531,-78.2705,-3.45699,136.106,-78.7597,-3.32973,136.633,-78.6921,-3.95923,135.653,-78.5458,-3.65441,135.105,-79.1346,-3.86563,136.159,-78.2975,-2.82041,135.091,-78.7194,-3.20387,134.729,-79.1878,-3.51412,134.274,-78.9742,-4.02699,134.573,-78.7228,-2.37005,134.942,-79.1232,-2.78618,134.65,-79.5955,-3.13366,134.302,-79.1131,-4.47024,135.133,-78.3948,-1.92476,135.217,-77.9085,-2.39601,135.395,-79.2261,-2.06634,135.231,-78.9806,-1.60736,135.517,-77.5503,-1.96304,135.686,-78.1492,-1.46305,135.475,-78.8835,-1.17071,135.759,-79.5773,-2.53031,134.919,-79.6969,-3.79072,133.772,-79.4503,-4.33061,134.006,-79.5757,-4.8068,134.509,-79.6068,-4.85842,134.937,-79.4478,-4.75419,135.167,-80.1138,-4.94913,134.781,-80.0064,-4.98829,134.034,-80.3743,-5.05688,134.464,-79.9617,-4.61614,133.574,-79.9322,-4.85349,135.124,-79.0855,-2.53151,137.322,-78.9128,-2.17552,137.717,-79.544,-1.75733,137.617,-79.7784,-1.41259,138.071,-78.7951,-1.5952,138.235,-79.5266,-2.05066,137.32,-78.222,-0.856888,138.794,-79.4503,-0.979279,138.768,-81.5002,-0.677356,139.136,-80.5692,-0.421057,139.379,-80.2171,-0.968984,138.415,-81.053,-0.97017,138.009,-77.1723,-1.45832,135.938,-77.974,-0.896557,135.657,-76.6549,-0.872919,136.176,-79.0011,-0.680844,135.949,-79.5557,-1.16057,136.573,-79.9848,-0.769881,136.906,-79.457,-1.54168,136.239,-79.2496,-0.103235,136.074,-80.0951,-0.28985,136.617,-81.2182,3.46502,140.527,-81.3564,4.2475,140.377,-82.2402,4.10663,140.082,-82.117,3.29483,140.271,-83.0422,3.07072,140.11,-83.2528,3.86871,139.747,-81.9084,2.43977,140.439,-82.8374,2.22481,140.198,-83.2287,4.81188,139.823,-82.3607,4.90237,140.066,-81.4707,4.98728,140.355,-83.9877,4.11084,139.359,-84.0512,4.78794,139.554,-83.9398,5.45165,139.305,-84.7613,4.72288,139.107,-84.6344,5.33439,138.938,-84.7079,4.07895,138.746,-83.7883,6.63056,138.728,-83.8546,5.95843,138.889,-83.8661,6.31238,138.607,-84.2001,6.32322,138.278,-84.3836,6.7361,138.287,-84.6371,5.82711,138.4,-85.0057,6.97988,138.026,-84.5568,6.55907,137.674,-85.0228,6.80369,137.563,-85.5204,5.60127,138.087,-84.0723,3.64967,139.168,-84.4639,3.59368,138.768,-83.9132,3.28056,139.4,-84.6994,3.03703,138.895,-81.5831,1.54506,140.241,-83.6664,2.01552,139.816,-83.855,2.74511,139.84,-82.2303,0.467537,139.845,-81.2584,0.784589,140.134,-83.0839,0.122099,139.457,-81.9498,-0.132624,139.776,-82.8567,-0.472358,139.374,-83.8278,-0.233033,139.011,-83.6563,-0.819697,138.914,-82.5212,-0.922,138.819,-82.3108,-1.07161,138.197,-82.3363,-0.376518,136.91,-82.7578,0.65108,136.738,-80.1179,-3.41691,133.881,-80.0246,-2.94409,134.582,-80.5469,-3.28513,134.214,-80.4154,-2.9536,135.051,-79.9556,-2.49263,135.441,-80.93,-3.38762,134.685,-80.6063,-3.25026,135.557,-81.0942,-3.76115,135.15,-80.1263,-2.71282,135.974,-79.9873,-3.10744,136.288,-80.455,-3.79151,135.883,-80.9038,-4.32838,135.382,-79.6204,-2.0027,135.85,-79.7655,-2.18475,136.46,-79.6326,-1.70246,136.94,-80.6711,-3.81478,133.528,-81.0754,-3.72137,133.881,-80.2536,-4.14044,133.389,-81.491,-4.28844,133.639,-81.1309,-4.36048,133.335,-81.4035,-3.86088,134.341,-81.7485,-4.36927,134.049,-80.7472,-4.57587,133.213,-81.6891,-4.85707,133.569,-81.366,-4.90729,133.339,-81.047,-4.93048,133.223,-81.5017,-4.21047,134.755,-81.7954,-4.60017,134.419,-81.6661,-5.27318,133.744,-81.3082,-5.3027,133.546,-80.9023,-5.19637,133.383,-81.0411,-5.37493,133.933,-80.7659,-5.30097,133.696,-80.4153,-5.17729,133.801,-80.457,-4.92387,133.373,-81.9101,-4.83837,133.88,-81.8796,-5.1487,133.921,-81.9308,-4.87122,134.18,-81.7913,-5.1288,134.245,-81.5675,-4.92166,134.597,-81.4418,-5.3613,134.169,-81.1292,-5.1569,134.508,-80.6855,-5.23047,134.219,-81.2684,-4.63761,134.918,-80.8434,-4.9677,134.793,-80.5824,-4.81042,135.097,-80.5983,-4.46971,135.575,-80.3417,-4.70388,135.393,-80.4467,-4.29035,135.76,-80.131,-4.46849,135.689,-79.7181,-4.6747,135.455,-79.4532,-4.33662,135.752,-79.9286,-4.05353,135.983,-79.6157,-3.50346,136.356,-84.6255,5.7476,136.987,-83.605,5.96025,136.688,-84.2982,6.19273,137.286,-82.8709,6.7326,136.55,-83.8485,7.00714,136.68,-84.2967,6.53567,137.064,-84.6693,7.15341,136.631,-84.9214,6.83385,137.034,-85.3732,7.30625,136.528,-85.5402,7.03909,136.929,-85.8727,7.96486,136.317,-86.0357,7.49175,136.386,-86.181,7.23978,136.758,-86.5463,8.14398,136.106,-86.7011,7.66769,136.179,-86.8626,7.4313,136.555,-86.9676,7.43275,137.01,-86.2407,7.22967,137.232,-85.5928,7.01399,137.419,-85.771,8.42095,136.551,-86.483,8.60142,136.354,-86.5491,8.78623,136.835,-84.4182,6.32019,137.717,-84.8199,5.99583,137.681,-85.6091,5.81092,137.5,-85.569,5.67856,136.862,-86.5806,5.48966,137.832,-86.591,5.74738,137.245,-87.6062,5.39266,137.638,-87.5605,5.70879,137.016,-84.7515,1.58163,136.695,-83.7353,1.70716,136.712,-84.5738,1.03097,137.131,-83.7053,0.914736,136.828,-85.4293,7.51572,138.112,-85.5561,7.16659,137.871,-86.2127,7.42722,137.707,-85.907,7.67369,138.001,-87.0076,7.66101,137.452,-86.7161,7.73786,137.712,-86.4415,7.65772,137.809,-86.3231,7.84246,137.908,-87.7561,7.84699,137.162,-87.6883,7.63545,136.806,-87.7914,8.18742,137.348,-87.2312,8.05652,137.57,-86.7448,7.96345,137.76,-87.5411,7.64674,136.391,-88.297,7.84943,136.66,-88.1591,7.87083,136.289,-87.6898,8.54779,137.286,-87.1196,8.41116,137.519,-86.6504,8.24848,137.724,-86.706,8.63234,137.341,-86.495,8.42383,137.642,-87.496,8.80474,137.032,-86.2256,8.12525,137.865,-87.3752,7.88096,136.052,-88.0106,8.10947,136.012,-87.2388,8.3266,135.974,-88.6008,8.27467,135.977,-88.7159,8.04442,136.236,-88.8143,8.02096,136.581,-87.2074,8.7542,136.194,-87.3132,8.94634,136.622,-88.9103,8.20405,136.884,-89.225,8.30811,136.782,-89.2226,8.54822,136.888,-89.0129,8.50542,136.96,-88.9605,8.76607,136.935,-89.1714,8.81693,136.858,-86.2142,8.33967,137.731,-85.5121,1.49018,136.624,-87.6905,-2.79015,135.37,-87.9639,5.20516,137.819,-92.3389,0.710865,135.108,-77.0456,0.258172,139.931,-77.613,-0.298132,139.361,-83.56,7.5992,138.542,-83.7451,7.15048,138.779,-79.2838,-2.9404,136.868,-79.6488,-2.52557,136.815,-79.7739,-1.36526,137.277,-80.1457,-1.08689,137.642,-80.9791,0.155772,140.005,-76.8247,3.17502,136.955,-82.1611,-0.967732,137.477,-81.0109,-0.0553302,136.87,-80.995,-0.805043,137.438,-75.9943,-0.193179,136.565,-74.5982,0.896163,138.374,-82.6028,5.77748,136.456,-80.9683,2.6532,136.7,-81.0868,4.56726,136.518,-81.7115,0.738678,136.74,-82.5001,2.57585,136.68,-82.5791,3.42414,136.578,-81.0614,3.60218,136.595,-79.6114,3.76421,136.708,-78.248,3.88415,136.876,-77.018,3.90737,137.111,-82.4585,1.71852,136.747,-76.2106,3.8496,137.342,-73.9063,2.49478,138.468,-74.0187,1.28455,139.426,-73.8338,1.6775,138.899,-2.92114,-11.6999,167.707,-2.56533,-12.0747,168.13,-2.48556,-12.1123,167.646,-2.78726,-11.7491,167.292,-7.65623,-3.52326,173.465,-7.69985,-3.44587,174.228,-7.58097,-3.9182,174.431,-7.54021,-4.09874,173.4,-8.27405,-2.25287,174.311,-8.73659,-1.80685,174.888,-8.7406,-2.04248,175.299,-8.23958,-2.69838,174.418,-8.30178,-2.26779,175.403,-8.00337,-3.11958,174.382,-8.15063,-0.904938,171.756,-7.92316,-1.28118,171.243,-8.0456,-0.901085,171.073,-8.37735,-0.457182,171.712,-8.51307,-0.653108,172.681,-8.84246,-0.131728,172.732,-8.74738,-0.5778,173.788,-9.10591,-0.0509327,173.95,-8.76257,0.331082,172.851,-9.10938,0.405501,174.204,-9.08422,-1.11021,175.088,-9.11144,-1.05572,175.591,-8.64241,-1.08914,175.718,-8.32137,0.379047,172.924,-8.68013,0.41526,174.241,-8.27746,-0.06653,171.706,-7.84251,0.0112373,171.799,-7.93162,-0.612359,170.862,-7.52635,-0.564578,170.925,-7.48231,-1.36177,170.186,-7.48883,-2.07045,169.684,-7.25232,-2.2588,169.799,-7.21489,-1.39751,170.386,-7.54867,-0.397313,171.889,-7.92573,-0.164703,172.788,-8.19317,-0.164638,173.809,-8.11052,-1.33124,175.147,-7.83693,-2.6907,174.899,-7.28544,-0.815181,171.103,-7.10292,-0.829593,171.219,-7.19227,-0.538998,171.901,-7.10001,-2.14147,169.856,-7.05339,-0.835523,170.547,-7.22773,-2.80906,169.841,-7.44923,-2.71863,169.756,-7.77916,-2.24354,169.701,-7.71462,-1.64293,174.696,-7.61999,-2.85048,174.722,-7.65041,-2.83911,170.222,-7.37526,-3.11936,170.377,-7.98718,-2.35554,170.245,-7.89194,-1.4609,170.148,-8.05212,-1.6876,170.565,-7.96778,-1.7972,170.95,-7.931,-2.2988,170.948,-7.54348,-3.07368,171.389,-7.67335,-3.26896,171.995,-7.48649,-3.71881,171.718,-7.38669,-3.43074,171.028,-7.55459,-3.96441,172.512,-7.73304,-3.42736,172.705,-7.80398,-2.95306,172.872,-7.81626,-3.03698,173.655,-8.85013,-0.813671,174.527,-9.1754,-0.421261,174.777,-8.88789,-1.13825,174.806,-9.21645,-0.112418,175.182,-8.7882,-0.100364,175.253,-8.25143,-0.473456,174.672,-7.62648,-0.462604,173.491,-7.71404,-0.777876,174.225,-7.43256,-0.38479,172.696,-7.95204,-2.7341,173.728,-7.63429,-2.52787,172.855,-7.87589,-2.19865,173.248,-8.05097,-2.31032,173.756,-7.74941,-2.94605,172.184,-7.67131,-2.66891,171.673,-7.53377,-2.98777,170.93,-7.71654,-2.74343,170.933,-6.77476,-1.06017,169.238,-6.41748,-1.47908,167.75,-6.40147,-0.102173,167.862,-6.61304,0.112705,169.31,-7.78724,-1.31779,175.42,-7.69319,-2.56277,175.578,-7.18576,-0.0160678,171.839,-6.84675,0.441311,170.649,-7.07657,0.852227,171.977,-7.68847,-0.403968,174.803,-7.55074,0.0875377,173.914,-7.38169,0.227124,172.915,-4.83871,4.44764,167.719,-5.55972,3.2728,167.768,-5.5626,3.29929,165.965,-4.90966,4.59401,165.911,-6.02106,2.14621,167.829,-6.2747,1.04133,167.881,-6.10555,1.01343,166.18,-5.95582,2.12756,166.092,-3.75181,5.54238,167.695,-3.79585,5.91168,165.943,-2.47325,6.20209,167.681,-2.31962,6.53666,165.996,-5.99762,-1.27822,166.12,-6.05666,-0.117813,166.223,-1.28863,6.60698,166.061,-1.25623,6.43321,167.703,-7.40695,-5.01567,173.371,-7.37623,-4.712,172.268,-7.30124,-4.32754,171.33,-7.22354,-3.91085,170.544,-7.14233,-3.44509,169.9,-7.03642,-2.91902,169.442,-6.90126,-2.14949,169.238,-3.46895,-8.76253,183.458,-3.35411,-9.98944,182.256,-4.51369,-9.02445,181.907,-4.66384,-7.86962,182.947,-5.53832,-7.93529,181.466,-5.66799,-7.00235,182.327,-3.29087,-10.8587,181.066,-4.44643,-9.85534,180.824,-5.49358,-8.65086,180.459,-1.02859,-11.9692,181.202,-1.04612,-11.1893,182.516,-1.03568,-10.2658,183.699,-4.34991e-005,-10.4505,183.673,-3.27744,-11.3995,180.012,-4.43676,-10.4219,179.818,-5.47957,-9.2173,179.446,-6.34274,-7.85715,178.891,-6.35934,-7.33061,180.034,-1.01998,-12.4182,180.082,-4.57871e-005,-12.5174,180.079,-2.12909,-11.5684,181.185,-2.1145,-12.0601,180.084,-2.16744,-10.7311,182.458,-2.18979,-9.58554,183.744,-6.32465,-6.81042,181.077,-6.23385,-6.39911,181.813,-7.14234,-6.13032,173.22,-6.74131,-7.44615,172.866,-6.85422,-6.63739,171.391,-7.1532,-5.64678,171.917,-6.85778,-6.00478,170.245,-7.11206,-5.12113,170.835,-6.81164,-5.36614,169.278,-7.05749,-4.5795,169.954,-6.73204,-4.67471,168.494,-6.97273,-3.9764,169.274,-6.57898,-3.92108,167.914,-6.82912,-3.2979,168.761,-6.27293,-8.4355,177.799,-5.46275,-9.69491,178.515,-6.13539,-9.07558,176.969,-5.42731,-10.1255,177.681,-4.45597,-10.8257,178.928,-4.48146,-11.1471,178.088,-3.30493,-11.7528,179.116,-3.34374,-12.0159,178.272,-2.12697,-12.3813,179.164,-2.1386,-12.6007,178.319,-1.02291,-12.7089,179.152,-1.01555,-12.8846,178.314,-6.59526,-8.17953,175.912,-6.95857,-6.94169,176.622,-7.00697,-6.35671,178.288,-6.99702,-5.88612,179.637,-6.90421,-5.51612,180.869,-7.133,-6.50609,174.744,-6.77031,-7.67096,174.539,-6.05455,-2.59262,166.859,-6.62512,-2.49034,168.362,-6.32365,-3.14067,167.488,-5.66166,-2.35185,165.715,-5.40901,-10.5244,176.861,-6.01294,-9.6316,176.246,-4.52995,-11.4454,177.23,-3.41296,-12.2468,177.403,-5.33546,-10.8301,176.093,-5.86147,-10.0511,175.579,-1.03801,-12.9943,177.507,-2.18714,-12.7668,177.473,-1.05764,-13.0253,176.716,-2.21912,-12.8051,176.645,-3.42987,-12.3498,176.556,-4.50904,-11.6419,176.409,-6.11381,-9.46623,174.935,-6.34352,-8.92717,175.396,-6.44803,-8.55819,174.388,-6.37648,-8.5523,173.371,-6.16148,-9.20792,174.256,-6.07186,-9.23885,173.578,-5.84839,-9.5181,172.977,-6.11556,-8.9417,172.525,-6.35177,-8.25179,171.78,-6.47892,-7.56124,170.725,-6.4712,-6.90646,169.625,-6.41142,-6.21952,168.599,-6.31986,-5.50484,167.716,-6.17308,-4.80446,167.038,-5.91952,-4.17457,166.586,-5.5704,-3.74121,166.09,-5.09198,-3.42211,165.111,-2.24566,-12.5833,170.578,-1.95918,-13.0006,170.871,-1.81324,-13.1442,170.279,-2.00144,-12.7494,170.012,-2.96736,-10.7735,164.869,-3.34037,-10.1157,164.411,-3.61989,-10.0762,165.398,-3.23679,-10.6717,165.559,-2.70409,-12.0106,168.697,-2.20974,-12.4288,169.084,-2.10092,-12.4964,168.497,-0.863074,-12.1034,164.364,-0.992202,-12.0453,163.67,-1.2069,-11.3831,162.353,-1.19659,-10.4078,162.019,-3.92928e-005,-12.1181,162.832,-1.11741,-11.9404,163.064,-4.10347,-9.24028,165.361,-4.3052,-9.69932,166.536,-3.81867,-10.2996,166.363,-3.41739,-10.7429,166.285,-3.09535,-11.0614,166.271,-2.92769,-11.0721,165.76,-2.68798,-11.197,165.259,-2.29117,-11.4548,164.734,-2.54594,-11.0697,164.236,-2.4532,-11.4535,165.617,-2.08091,-11.6824,165.169,-2.93124,-10.4536,163.626,-4.68945,-8.27238,165.655,-4.84862,-8.92351,166.885,-4.44153,-7.76851,164.706,-3.74792,-9.14237,163.776,-2.4305,-12.3235,169.681,-2.92962,-11.9059,169.294,-3.23783,-11.7446,169.925,-2.69532,-12.1855,170.286,-2.93223,-12.0494,170.938,-3.54573,-11.5725,170.653,-3.75565,-11.2383,169.402,-4.35415,-10.7715,170.249,-4.72042,-10.1537,169.148,-4.11902,-10.7321,168.631,-3.36201,-11.4884,168.796,-3.67869,-11.0722,168.138,-3.09918,-11.6248,168.229,-3.3699,-11.2613,167.66,-3.13218,-11.3836,167.246,-2.99331,-9.6627,163.074,-4.85436,-9.59489,168.088,-4.30043,-10.2396,167.663,-3.84813,-10.6633,167.305,-3.47984,-10.9525,167.0,-3.17845,-11.1676,166.771,-1.57197,-12.9884,169.436,-1.38437,-13.4113,169.946,-1.50402,-12.9787,168.765,-0.78443,-13.4347,169.367,-0.786166,-13.3469,168.872,-4.3657e-005,-13.4834,168.915,-0.760018,-13.7467,169.836,-2.42379,-12.42,171.191,-2.05701,-12.7413,171.444,-1.78126,-12.998,171.714,-1.79275,-13.197,171.313,-2.85134,-11.2731,166.291,-2.68456,-11.3202,165.953,-2.94876,-11.3267,166.627,-2.93896,-11.4813,166.955,-2.06033,-12.5297,167.983,-1.48497,-13.0007,168.245,-0.794812,-13.3685,168.412,-4.35303e-005,-13.4993,168.459,-1.73969,-11.7372,164.176,-1.55955,-11.9129,164.733,-1.95573,-11.4892,163.596,-2.19155,-10.8952,162.936,-2.20093,-10.0306,162.549,-5.85535,-9.02629,171.119,-5.97984,-8.45022,170.124,-5.98451,-7.82592,169.049,-5.92591,-7.14118,167.972,-5.83472,-6.44578,166.989,-5.69008,-5.809,166.205,-5.23087,-9.83482,170.641,-5.38545,-9.33753,169.625,-5.4434,-8.75204,168.546,-5.40056,-8.06794,167.404,-5.2899,-7.38799,166.303,-5.10939,-6.82096,165.438,-1.98026,-9.04972,162.691,-2.88632,-8.77937,163.094,-2.65535,-7.90295,163.374,-3.2908,-7.51715,163.824,-3.53854,-8.05763,163.688,-3.87709,-6.84764,164.27,-4.19266,-7.33715,164.327,-4.50536,-5.84962,164.657,-4.85517,-6.35032,164.956,-5.05457,-4.86286,165.296,-5.43781,-5.29659,165.708,-1.14855,-9.26957,162.365,-0.0227587,-9.7656,161.937,-0.0837369,-8.43713,162.557,-1.00792,-8.32356,162.796,-1.79428,-8.11405,163.033,-4.55053,-4.3139,164.473,-2.21376,-6.89169,163.012,-2.84684,-6.70593,163.472,-3.42928,-5.89837,163.666,-4.04496,-5.15168,164.014,-1.7768,-13.4714,170.431,-1.8452,-13.3813,170.816,-1.74092,-13.7086,170.891,-1.71322,-13.8056,170.542,-1.48125,-14.0545,171.021,-1.4809,-14.1516,170.66,-1.11467,-14.3963,171.146,-1.12661,-14.5059,170.763,-1.67868,-13.5929,171.234,-1.39856,-13.908,171.4,-0.669087,-14.9298,171.293,-0.675866,-15.0069,170.757,-4.73822e-005,-15.3202,170.736,-1.2898,-13.7188,171.758,-1.01519,-14.0251,171.94,-1.06448,-14.2297,171.549,-0.637516,-14.508,172.172,-0.647761,-14.7388,171.751,-4.70428e-005,-14.8055,172.314,-1.57373,-13.4349,171.558,-1.80781,-13.3658,171.111,-4.68102e-005,-14.5814,172.749,-0.636426,-14.2909,172.598,-1.00955,-13.8321,172.352,-1.25161,-13.5185,172.153,-1.51482,-13.2493,171.948,-1.57793,-13.6044,170.158,-1.57956,-13.8798,170.281,-4.68598e-005,-15.1136,170.225,-0.647309,-14.8467,170.332,-4.64713e-005,-14.9224,170.033,-0.48202,-14.7719,170.147,-1.39108,-14.1995,170.402,-1.08553,-14.5417,170.484,-4.58483e-005,-14.5744,169.933,-0.496269,-14.171,169.992,-0.432465,-14.4864,170.076,-0.610304,-14.6507,170.225,-0.770429,-14.6962,170.33,-1.0158,-14.4942,170.375,-1.38925,-13.905,170.16,-1.37056,-13.6941,170.057,-0.643491,-14.122,170.086,-0.860949,-13.8207,170.015,-1.17584,-13.644,169.997,-1.24868,-14.1949,170.284,-0.573939,-14.4252,170.167,-0.804189,-14.1074,170.167,-0.711553,-14.4055,170.241,-0.680955,-14.5826,170.271,-0.771296,-14.6071,170.321,-0.900865,-14.4464,170.325,-1.06623,-14.1641,170.233,-1.19086,-13.8867,170.123,-1.24347,-13.7303,170.048,-1.13668,-13.7121,170.031,-0.977355,-13.8451,170.088,-5.26824,-10.5655,174.845,-5.58733,-10.3585,175.101,-5.12198,-10.9664,175.522,-4.87771,-11.0003,175.193,-4.35746,-11.6259,175.792,-4.17325,-11.5176,175.449,-5.29963,-10.2944,173.584,-4.98758,-10.5651,173.322,-5.23491,-10.3131,172.948,-5.57568,-9.96596,173.299,-4.55666e-005,-13.4205,174.891,-0.686435,-13.1527,174.733,-0.766774,-13.0087,175.2,-4.18968,-11.1365,172.556,-3.566,-11.5021,172.545,-3.68339,-11.4984,172.042,-4.3346,-11.0312,172.033,-5.46608,-9.97237,172.506,-3.34531,-12.2123,175.889,-3.21656,-11.9402,175.507,-1.00987,-12.9359,175.812,-4.54219e-005,-13.0986,176.078,-2.97825,-11.7714,172.655,-3.39314,-11.4956,172.98,-2.82932,-11.6735,173.086,-3.07886,-11.8635,172.173,-2.57594,-12.1279,172.347,-2.51328,-11.969,172.811,-4.01353,-11.2219,172.994,-2.09455,-11.9334,173.366,-2.39659,-11.8034,173.225,-2.33245,-11.6495,173.591,-2.06865,-11.7278,173.698,-4.76338,-10.7239,172.694,-4.95129,-10.5021,172.187,-4.55652,-10.8949,173.118,-2.22871,-12.6281,175.93,-2.27452,-12.2271,175.43,-2.27513,-11.8069,175.167,-3.09862,-11.7099,175.32,-4.03942,-11.4247,175.268,-4.69968,-10.9765,175.002,-5.01369,-10.6495,174.735,-5.0429,-10.51,173.844,-4.76855,-10.7403,173.648,-4.37774,-11.0327,173.484,-3.86494,-11.3126,173.382,-3.27225,-11.5022,173.383,-2.72696,-11.5934,173.475,-1.53935,-12.442,175.251,-1.73718,-11.9496,174.919,-5.67595,-9.54175,171.921,-5.09771,-10.2154,171.523,-4.40182,-10.9034,171.343,-3.69309,-11.5021,171.41,-2.54388,-12.2722,171.801,-3.06644,-11.9451,171.594,-1.56082,-12.7923,172.869,-1.29385,-13.0651,173.042,-1.27582,-13.3102,172.601,-1.53453,-13.0418,172.413,-0.635951,-14.0781,173.042,-0.620174,-13.8515,173.486,-4.63238e-005,-14.1182,173.633,-5.80522,-9.91865,174.646,-5.47322,-10.2533,174.527,-5.1905,-10.4363,174.499,-1.30087,-12.7696,173.449,-1.56363,-12.499,173.289,-1.31979,-12.4643,173.831,-1.56963,-12.2127,173.672,-1.41848,-12.1368,174.231,-1.63536,-11.9445,173.978,-2.17947,-12.3523,172.519,-2.15698,-12.1408,172.959,-1.49676,-12.0646,174.627,-1.23356,-12.5268,174.839,-1.12215,-12.626,174.433,-1.05045,-13.1106,173.648,-1.04329,-13.3918,173.232,-1.03541,-13.6291,172.794,-1.07155,-12.8361,174.044,-4.5779e-005,-13.6286,174.476,-0.639609,-13.3568,174.321,-4.60436e-005,-13.8673,174.062,-0.619974,-13.5993,173.911,-1.8203,-12.794,172.216,-2.13702,-12.5467,172.008,-1.85588,-12.566,172.696,-1.85207,-12.3081,173.129,-1.82828,-12.0609,173.531,-1.84443,-11.8221,173.826,-5.85846,-9.71936,174.187,-5.77817,-9.75171,173.724,-5.55123,-10.1058,174.202,-5.48941,-10.1298,173.883,-5.26177,-10.3462,174.269,-5.21021,-10.3757,174.052,-3.04756,-11.5187,173.991,-2.48136,-11.4536,174.109,-2.58823,-11.5387,173.823,-3.15345,-11.5302,173.725,-2.137,-11.3066,174.217,-2.23426,-11.4969,173.922,-1.94953,-11.269,174.258,-2.02011,-11.5054,173.994,-1.83397,-11.2838,174.279,-1.84671,-11.5501,174.073,-1.74363,-11.3063,174.326,-1.70347,-11.6132,174.185,-1.69208,-11.3155,174.416,-1.61614,-11.6672,174.355,-1.71915,-11.2982,174.525,-1.66122,-11.6431,174.572,-1.87987,-11.2941,174.651,-1.83805,-11.5664,174.784,-2.29096,-11.4083,174.831,-2.22478,-11.4971,175.02,-3.0206,-11.5929,175.0,-3.03222,-11.5854,175.198,-3.94051,-11.3966,175.145,-3.86058,-11.452,174.974,-4.46131,-10.9816,174.769,-4.56185,-10.944,174.884,-4.69027,-10.6846,174.625,-4.82482,-10.6666,174.674,-4.77609,-10.5652,174.523,-4.95702,-10.5208,174.505,-4.79813,-10.5432,174.431,-5.00485,-10.4733,174.351,-4.75916,-10.6011,174.355,-4.95874,-10.5162,174.213,-4.65807,-10.7289,174.278,-4.48287,-10.9289,174.175,-4.60376,-10.8654,173.937,-4.82712,-10.6478,174.081,-4.17629,-11.1912,174.056,-4.25341,-11.1417,173.8,-3.67157,-11.425,173.972,-3.75226,-11.3943,173.713,-4.52182,-10.7513,174.386,-4.38519,-10.9283,174.301,-4.37787,-11.0006,174.717,-4.5809,-10.7188,174.618,-3.81067,-11.4319,174.874,-1.98811,-11.2082,174.552,-2.34011,-11.3454,174.712,-1.86672,-11.1988,174.465,-1.83811,-11.2155,174.418,-1.85927,-11.2166,174.379,-2.17502,-11.1748,174.332,-2.00664,-11.1704,174.36,-2.45733,-11.383,174.235,-1.88197,-11.1746,174.394,-1.87086,-11.1685,174.411,-1.90355,-11.146,174.435,-3.00801,-11.5486,174.878,-2.95154,-11.4309,174.132,-3.61404,-11.3738,174.107,-4.60376,-10.635,174.446,-2.02377,-11.1436,174.501,-2.36602,-11.1776,174.661,-3.01398,-11.3902,174.862,-3.78901,-11.2699,174.879,-4.32428,-10.9141,174.739,-4.50672,-10.6839,174.646,-4.49995,-10.6104,174.479,-4.41441,-10.7061,174.403,-4.28824,-10.8477,174.301,-2.95746,-11.2667,174.126,-3.5962,-11.2281,174.099,-2.51018,-11.1639,174.24,-2.24879,-11.08,174.426,-2.03403,-11.141,174.427,-4.12814,-11.1632,174.197,-4.06459,-11.0441,174.186,-4.64089,-10.5978,174.555,-4.5558,-10.5839,174.591,-1.91403,-11.1977,174.363,-1.9229,-11.1592,174.401,-4.64429,-10.5784,174.495,-4.55016,-10.5651,174.535,-2.61551,-10.9025,174.169,-2.41072,-10.8619,174.4,-2.5491,-10.9084,174.691,-3.03972,-10.9517,174.875,-3.7237,-10.8033,174.917,-4.21792,-10.6384,174.795,-4.42788,-10.5318,174.675,-4.50587,-10.4852,174.604,-4.51279,-10.4745,174.544,-4.44294,-10.4919,174.474,-4.31327,-10.5371,174.368,-4.16691,-10.6236,174.244,-3.96132,-10.7524,174.113,-3.5999,-10.899,174.015,-3.06875,-10.9511,174.034,-2.68738,-10.4995,174.239,-2.71814,-10.4768,174.562,-3.04246,-10.3833,174.628,-3.54565,-10.3029,174.664,-3.99033,-10.302,174.636,-4.25962,-10.3273,174.562,-4.40142,-10.3496,174.527,-4.46957,-10.3764,174.522,-4.41451,-10.3738,174.467,-4.28086,-10.3464,174.383,-4.10965,-10.3447,174.299,-3.86421,-10.3444,174.21,-3.52635,-10.3528,174.139,-3.09507,-10.3794,174.139,-6.35591,3.89794,179.957,-6.48062,2.25307,181.796,-7.12351,1.44456,180.423,-7.02023,2.81577,178.796,-5.32537,5.01427,181.075,-5.48105,2.9886,183.062,-7.14542,-0.234691,181.542,-6.49519,0.222549,182.998,-5.50716,0.503255,184.287,-3.91544,5.985,182.073,-4.09804,3.64272,184.225,-4.15298,0.737385,185.383,-4.35082,6.08532,173.367,-4.76198,6.28005,175.883,-5.76855,5.22043,175.324,-5.36664,5.06111,173.022,-6.49902,4.02379,174.774,-6.11069,3.92015,172.746,-2.989,6.93852,173.541,-3.3846,7.20375,176.3,-7.10243,-2.01981,182.061,-6.45677,-1.86931,183.462,-5.45149,-1.94549,184.703,-4.09649,-2.0872,185.697,-2.27985,0.967324,186.261,-2.28885,-2.21349,186.491,-2.19471,4.12472,185.146,-2.08637,6.60297,182.921,-1.5356,7.43849,173.698,-1.72389,7.8096,176.553,-7.28703,-3.99295,180.747,-7.42557,-4.33318,179.335,-7.66958,-2.81551,179.028,-7.49195,-2.38084,180.54,-7.75024,-1.41534,178.518,-7.5446,-0.818173,180.009,-7.6988,-0.109725,177.71,-7.50056,0.635141,179.032,-7.5682,0.959863,176.582,-7.38822,1.82888,177.654,-7.15778,1.9083,173.729,-6.85824,1.80226,172.222,-6.56788,2.8206,172.483,-6.92204,2.90915,174.234,-7.31096,1.02016,173.28,-7.7822,-0.76917,176.487,-7.65932,0.209558,175.627,-7.79607,-2.00133,177.038,-7.7043,-3.29894,177.496,-7.45656,-4.76416,177.859,-6.05823,2.28411,169.347,-6.38188,1.21428,169.354,-5.56826,3.37281,169.315,-4.83896,4.48877,169.285,-3.80341,5.50566,169.278,-2.56026,6.21176,169.315,-6.92168,-3.80038,182.111,-6.27547,-3.89862,183.351,-5.21643,-4.25054,184.457,-3.86836,-4.7602,185.322,-2.16352,-5.27908,185.991,-0.000145821,6.49294,167.687,-1.73372e-005,6.65255,169.298,-1.27226,6.55989,169.317,-2.51539e-005,0.9596,186.574,-1.93208,7.72373,179.748,-1.41642e-005,6.79171,183.277,-9.88687e-006,8.00169,176.672,-3.62802,7.11346,179.224,-5.03999,6.12733,178.547,-6.1132,4.89347,177.72,-6.81024,3.68475,176.849,-7.19895,2.59854,176.004,-7.39444,1.64394,175.217,-7.50387,0.810594,174.52,-6.58128,1.49144,170.761,-6.25076,2.52754,170.846,-5.76247,3.60024,170.905,-5.02127,4.70788,170.98,-3.97844,5.73028,171.098,-2.7267,6.50123,171.218,-1.37971,6.93952,171.275,-7.65178,-3.77156,175.857,-7.44918,-5.15567,176.25,-7.42608,-5.18477,174.673,-6.57532,-5.36197,181.965,-5.95444,-5.6645,182.94,-4.90317,-6.2828,183.831,-3.61259,-7.04934,184.526,-1.91405,-7.95838,185.001,-3.96293e-005,-7.80974,185.459,-0.78833,-12.2446,165.042,-2.67501,-11.4047,166.323,-2.51022,-11.4696,166.1,-2.27998,-11.6169,165.82,-1.93606,-11.8371,165.533,-1.44189,-12.0691,165.277,-4.06609e-005,-12.3175,165.886,-4.08595e-005,-12.4623,165.748,-0.689825,-12.3356,165.801,-0.653915,-12.2019,165.933,-1.2894,-12.1433,165.919,-1.22529,-11.9798,166.032,-1.75452,-11.9097,166.037,-1.68807,-11.7742,166.098,-2.1131,-11.6752,166.145,-2.05642,-11.5723,166.151,-2.30428,-11.532,166.252,-2.26493,-11.4697,166.255,-2.4491,-11.4585,166.376,-2.40873,-11.4008,166.374,-2.36021,-11.2931,166.365,-2.20824,-11.3582,166.248,-1.98772,-11.4239,166.134,-1.62655,-11.5388,166.048,-1.1752,-11.7253,165.994,-0.621645,-11.9643,165.959,-2.39249,-11.5377,166.195,-2.54568,-11.4642,166.354,-2.19352,-11.6861,166.047,-1.84893,-11.9319,165.798,-1.37691,-12.1809,165.6,-0.744866,-12.3877,165.458,-4.07733e-005,-12.4817,165.395,-2.32174,-10.8462,166.303,-2.18374,-10.8586,166.107,-1.96931,-10.9052,165.904,-1.64017,-11.0342,165.732,-1.17941,-11.2294,165.641,-0.617078,-11.5015,165.685,-2.42163,-12.1169,167.283,-2.67166,-11.7798,167.016,-2.78688,-11.5519,166.779,-2.78137,-11.43,166.549,-2.03235,-12.5253,167.569,-1.46617,-12.9966,167.808,-0.792516,-13.3799,167.972,-4.34996e-005,-13.5864,167.931,-2.34717,-12.0804,167.057,-1.98644,-12.468,167.281,-1.9202,-12.3605,167.125,-2.27439,-12.011,166.942,-1.41483,-12.915,167.462,-0.75409,-13.2847,167.602,-0.699633,-13.0654,167.434,-1.33719,-12.7311,167.299,-1.88238,-12.2823,167.097,-2.22307,-11.925,166.92,-0.677742,-12.9008,167.428,-1.29889,-12.5864,167.296,-0.668953,-12.7356,167.48,-1.26859,-12.4184,167.352,-1.82464,-12.1572,167.13,-2.19716,-11.8539,166.931,-4.27451e-005,-13.2271,167.499,-2.5728,-11.7792,166.856,-2.67275,-11.5782,166.682,-2.4959,-11.7393,166.776,-2.58846,-11.556,166.636,-2.44999,-11.6724,166.76,-2.5447,-11.4983,166.625,-2.42626,-11.6083,166.762,-2.51593,-11.4324,166.621,-2.65371,-11.475,166.516,-2.55776,-11.4641,166.505,-2.51361,-11.409,166.498,-2.47775,-11.3351,166.493,-4.12253e-005,-12.2796,167.75,-0.693444,-12.3275,167.83,-1.25661,-11.9898,167.687,-1.75385,-11.6976,167.452,-2.15421,-11.5298,167.103,-2.39862,-11.2995,166.845,-2.47138,-11.1071,166.645,-2.42063,-10.915,166.483,-0.947248,-9.33232,184.48,-1.18278e-005,7.07137,171.28,-5.18444,3.59003,163.868,-4.66018,5.0431,163.954,-5.68647,1.13395,164.225,-5.57915,2.28749,164.042,-1.41142,6.99218,164.294,-0.0437189,6.64335,166.093,-3.69018,6.44878,164.079,-2.12526,7.03511,164.34,-5.43436,-1.11374,164.298,-5.58756,-0.00744341,164.3,-5.08531,-2.06487,164.098,-4.55621,-2.86471,163.621,-3.97905,-3.62652,163.32,-1.97478,-5.65125,162.065,-2.43549,-5.40444,162.409,-3.01059,-4.91267,162.783,-3.51896,-4.35316,163.076,-4.81009,3.95214,161.938,-5.03329,4.26719,160.581,-4.45075,5.93473,160.906,-4.34147,5.53876,162.201,-5.11322,2.57935,161.971,-5.25586,1.31338,162.177,-5.14756,1.51767,160.284,-5.17093,2.82731,160.245,-1.26378,7.68521,161.587,-0.361187,7.60622,163.209,-1.33676,7.28489,162.892,-3.48985,7.32986,161.25,-3.43189,6.89258,162.588,-2.02752,7.8484,161.426,-1.93168,7.50847,162.824,-5.1041,-0.855223,162.424,-4.96666,-0.733169,160.585,-5.05579,0.335977,160.489,-5.20974,0.188206,162.332,-4.77891,-1.71964,162.339,-4.66954,-1.61849,160.585,-4.24673,-2.35256,162.147,-4.18878,-2.15713,160.501,-3.55514,-2.97709,162.036,-3.56183,-2.46193,160.422,-1.79494,-4.86445,161.102,-1.42132,-4.00175,159.633,-1.84014,-3.52197,159.849,-2.17801,-4.43018,161.299,-2.42635,-3.1766,160.232,-2.58227,-4.03399,161.612,-2.94301,-2.96585,160.393,-3.04125,-3.51283,161.805,-5.75076,4.50634,159.176,-7.04357,4.91837,157.954,-6.24809,6.93409,158.57,-5.04059,6.28756,159.726,-5.85703,3.18008,158.532,-5.63569,1.92174,158.409,-6.56467,2.54563,156.648,-6.99368,3.50332,156.99,-0.113118,9.43829,159.293,-1.24919,8.28383,160.323,-1.42744,9.10248,159.121,-4.39263,8.64683,158.78,-3.79827,7.85991,159.948,-2.57362,9.11905,158.995,-2.15052,8.35629,160.054,-5.49574,0.583814,158.624,-5.14913,-0.606228,158.791,-5.94558,-0.377327,157.183,-6.31202,1.15661,156.996,-4.80993,-1.49337,158.791,-5.33064,-1.32779,157.169,-4.39499,-2.14805,158.655,-4.81498,-2.11691,157.124,-3.83903,-2.57839,158.614,-4.27585,-2.76815,157.148,-1.18971,-3.66006,157.91,-1.23073,-3.81393,156.392,-1.9956,-3.73335,156.559,-1.85011,-3.35413,158.182,-2.81159,-3.52877,156.853,-2.59213,-3.03933,158.384,-3.59299,-3.28931,157.045,-3.2446,-2.87116,158.544,-0.527712,-3.97443,157.699,-0.822452,-4.53855,159.645,-0.0354959,-4.049,156.22,-0.506651,-3.98291,156.241,-8.6129,5.51603,157.095,-7.61011,7.70593,157.501,-8.18444,2.60543,155.79,-8.6556,3.88376,156.247,-5.62409,9.52678,157.777,-3.11004,10.0688,157.822,-6.55287,-0.5039,156.183,-7.19134,1.21295,156.046,-1.7742,10.031,157.777,-5.88268,-1.42864,156.079,-5.3458,-2.18096,155.89,-4.71278,-3.01147,155.834,-2.20198,-4.08711,155.301,-1.38896,-4.19565,155.219,-3.02206,-3.88584,155.503,-3.8712,-3.56462,155.671,-0.568399,-4.15121,155.22,-1.5445,-7.02319,162.685,-1.41264,-5.92986,161.918,-1.40845,-5.19932,161.079,-7.78854,-2.0021,171.345,-7.73758,-1.68951,172.004,-8.01387,-1.48358,172.858,-8.27541,-1.44802,173.716,-8.46301,-1.50814,174.355,-8.68766,-1.4895,174.707,-0.841432,-7.21184,162.58,-0.768429,-5.49136,161.152,-0.77131,-6.16703,161.901,-0.0659477,-6.34953,161.936,-0.0629974,-5.22193,160.321,-0.610216,-5.17793,160.447,-0.0543593,-4.19038,155.244,-2.55352,-10.598,166.751,-2.45072,-10.4136,166.517,-4.02595e-005,-11.6413,168.091,-0.694106,-11.7054,168.282,-1.34225,-11.5015,168.171,-1.84275,-11.2471,167.821,-2.37437,-11.1416,167.427,-2.58725,-10.9063,167.034,-2.11147,-10.3325,165.675,-1.74463,-10.4232,165.405,-0.607795,-10.9023,165.274,-1.21495,-10.609,165.251,-2.2898,-10.3245,165.987,-2.36682,-10.3258,166.268,-2.60917,-9.94661,166.874,-2.51212,-9.79261,166.585,-0.737239,-10.8357,168.736,-1.39213,-10.602,168.464,-1.98498,-10.4726,168.191,-2.56536,-10.3188,167.894,-2.78574,-10.1059,167.194,-2.17912,-9.56974,165.657,-1.76539,-9.57149,165.371,-0.583462,-9.80518,165.086,-1.20887,-9.64096,165.133,-0.00228154,-10.0388,165.119,-2.40794,-9.61263,165.978,-2.45527,-9.6868,166.297,-2.61264,-9.30344,166.941,-2.53855,-9.18707,166.665,-1.42673,-9.53861,168.515,-2.05197,-9.47608,168.21,-2.56221,-9.4164,167.771,-2.6661,-9.3634,167.267,-2.29492,-8.80813,165.767,-1.86511,-8.68192,165.425,-0.580141,-8.72246,165.262,-1.21773,-8.67357,165.285,-0.00690346,-8.77531,165.276,-2.4569,-8.96753,166.117,-2.50583,-9.09579,166.39,-2.57358,-8.74194,166.732,-2.54468,-8.72371,166.498,-1.35221,-8.43917,168.08,-1.97314,-8.47543,167.832,-2.47639,-8.5918,167.495,-2.65925,-8.74825,167.135,-1.88159,-7.87385,165.946,-2.39665,-8.19044,166.111,-1.21341,-7.78237,165.915,-0.580408,-7.77864,165.926,-2.53808,-8.52357,166.373,-2.0092,-7.69445,167.216,-1.26444,-7.63424,167.294,-2.50158,-8.14268,166.94,-2.57251,-8.45947,166.809,-2.61339,-8.86447,166.947,-0.67599,-8.42575,168.269,-3.32315e-005,-7.63431,167.374,-0.620803,-7.64237,167.349,-0.728265,-9.61516,168.788,-8.25181,11.7599,15.6832,-7.15836,10.2828,14.7608,-9.13499,12.4789,13.8626,-10.2709,12.0314,13.6997,-8.26871,12.012,13.5561,-6.95189,10.5204,12.6555,-11.8378,9.75875,12.8918,-11.8731,9.73729,15.3516,-11.0954,10.8743,15.7797,-11.0117,10.8719,13.397,-12.2,10.0244,10.5623,-11.7182,5.01642,12.6401,-11.1626,4.08771,12.1153,-10.5373,3.81865,13.5378,-10.355,3.50808,12.547,-9.02707,3.65702,13.6865,-9.00744,3.47851,12.5784,-7.36659,4.3949,11.931,-7.57639,7.59794,0.885658,-8.07223,5.32899,0.976153,-8.715,1.76161,0.782758,-11.934,-2.97523,0.51209,-12.3943,-1.41202,50.8646,-8.33816,-1.2579,50.8494,-13.0961,-3.30989,0.543713,-13.8,-2.84963,0.613586,-10.5987,-4.63248,0.433847,-11.4371,-4.24744,0.432963] }], -"normals": [0.276837,-0.221179,0.935116,0.276826,-0.221191,0.935116,0.70814,-0.172989,0.684553,0.708141,-0.172988,0.684552,0.957153,-0.145171,0.250565,0.957155,-0.145168,0.250562,0.957154,-0.145169,-0.250563,0.957155,-0.145171,-0.25056,0.70814,-0.172989,-0.684553,0.70814,-0.172989,-0.684553,0.276838,-0.221189,-0.935113,0.276826,-0.221179,-0.935119,-0.221171,-0.276842,-0.935116,-0.221177,-0.276837,-0.935116,-0.652501,-0.325026,-0.684544,-0.652489,-0.325036,-0.68455,-0.901505,-0.352855,-0.250564,-0.901506,-0.352853,-0.250562,-0.901504,-0.352858,0.250562,-0.901504,-0.352855,0.250565,-0.652493,-0.325024,0.684553,-0.6525,-0.32504,0.684538,-0.221188,-0.276838,0.935113,-0.221179,-0.276825,0.935119,0.262147,-0.669776,0.694751,0.262143,-0.669779,0.69475,0.582591,-0.633978,0.508586,0.582608,-0.633967,0.50858,0.7676,-0.613299,0.186156,0.767597,-0.613302,0.18616,0.767601,-0.613299,-0.186155,0.7676,-0.6133,-0.186153,0.582594,-0.633971,-0.508591,0.582593,-0.633971,-0.508592,0.262148,-0.669778,-0.694749,0.262144,-0.669776,-0.694752,-0.107848,-0.711119,-0.694751,-0.107843,-0.711121,-0.69475,-0.428294,-0.746927,-0.508591,-0.428294,-0.746926,-0.508591,-0.6133,-0.767599,-0.186156,-0.6133,-0.767599,-0.186156,-0.6133,-0.767599,0.186159,-0.6133,-0.767599,0.186159,-0.428303,-0.746927,0.508583,-0.428305,-0.74693,0.508577,-0.107847,-0.711121,0.694749,-0.107844,-0.711119,0.694752,0.175759,-0.949969,0.258199,0.294857,-0.936661,0.189011,0.363608,-0.928979,0.0691856,0.363609,-0.928979,-0.0691827,0.294851,-0.936663,-0.189014,0.17576,-0.949969,-0.258199,0.0382544,-0.965334,-0.258199,-0.0808379,-0.978641,-0.189014,-0.149594,-0.986324,-0.069185,-0.149594,-0.986324,0.0691847,-0.0808421,-0.978642,0.189011,0.0382544,-0.965334,0.258199,0.193151,0.415795,0.888711,0.193152,0.415795,0.888711,0.605265,0.456382,0.652204,0.605274,0.456374,0.652201,0.844129,0.479889,0.239065,0.844127,0.479891,0.239067,0.844131,0.479887,-0.239064,0.84413,0.47989,-0.239061,0.605268,0.456375,-0.652207,0.605265,0.456368,-0.652213,0.193151,0.415795,-0.888711,0.193152,0.415796,-0.888711,-0.280149,0.369192,-0.886123,-0.280166,0.369174,-0.886125,-0.687832,0.329001,-0.647028,-0.687815,0.329022,-0.647036,-0.922225,0.305907,-0.23648,-0.922227,0.305903,-0.236477,-0.922225,0.305909,0.236478,-0.922225,0.305907,0.23648,-0.687823,0.329008,0.647035,-0.687827,0.329015,0.647026,-0.280165,0.369174,0.886125,-0.280166,0.369175,0.886125,0.0,-0.0323262,-0.999477,0.242092,0.00786567,-0.970222,-0.207477,-0.343598,0.915911,0.0305847,-0.223034,0.974331,0.317057,-0.481241,0.817241,0.101445,-0.391844,0.914422,0.379177,-0.142817,-0.914236,0.460407,-0.461281,-0.758449,0.254557,-0.967058,0.0,0.254557,-0.967058,0.0,0.706436,-0.707777,3.84762e-007,0.706436,-0.707777,2.82621e-007,0.158179,-0.639457,0.752379,0.13005,-0.616843,0.776268,0.447904,-0.572621,0.68665,0.462827,-0.574073,0.675449,0.563651,-0.305579,-0.76741,0.409833,0.0129112,-0.912069,0.838529,-0.544858,4.56707e-007,0.838529,-0.544858,4.56707e-007,0.459859,-0.503089,0.731732,0.473981,-0.524501,0.707277,0.00792232,0.00180671,-0.999967,0.00792233,0.00180671,-0.999967,0.0,0.00180676,-0.999998,0.0,0.00180676,-0.999998,-0.220927,-0.00176213,0.975289,-0.220927,-0.00176215,0.975289,0.119097,-0.00179389,0.992881,0.119124,-0.00180883,0.992878,0.670285,0.00134089,-0.742102,0.670435,0.00119857,-0.741968,1.0,-7.18106e-006,5.44653e-007,1.0,-7.18106e-006,5.44653e-007,0.670042,-0.0013523,0.742322,0.669889,-0.00120899,0.74246,0.00773897,-0.214154,-0.976769,0.00773854,-0.214154,-0.976769,-7.50673e-007,-0.214161,-0.976798,0.0,-0.21416,-0.976799,-0.216043,0.209102,0.95373,-0.216044,0.209103,0.95373,0.120878,0.21259,0.969636,0.12085,0.212605,0.969636,0.661444,-0.160619,-0.732594,0.647089,-0.150367,-0.747439,1.0,-5.92826e-006,0.0,1.0,-6.03826e-006,5.44653e-007,0.660821,0.148018,0.735803,0.675629,0.157899,0.720134,0.00790242,0.0708677,-0.997454,0.0122253,0.0728892,-0.997265,-1.0,0.0,-3.77085e-007,0.127627,-0.450918,-0.883394,-0.0113908,-0.633179,-0.773921,0.00272263,-0.975021,-0.222096,-0.242092,0.00786564,-0.970221,0.0,-0.0323262,-0.999477,-0.0305847,-0.223034,0.974331,0.207477,-0.343598,0.915912,-0.101445,-0.391844,0.914422,-0.317057,-0.481241,0.81724,-0.460407,-0.461281,-0.758449,-0.379177,-0.142817,-0.914236,-0.254556,-0.967058,0.0,-0.254556,-0.967058,-2.03689e-007,-0.706437,-0.707776,-5.65272e-007,-0.706437,-0.707776,-3.84763e-007,-0.13005,-0.616843,0.776268,-0.158198,-0.639472,0.752362,-0.462843,-0.574083,0.67543,-0.4479,-0.572628,0.686645,-0.40983,0.0128938,-0.912071,-0.563639,-0.305574,-0.767422,-0.838528,-0.544858,-4.56707e-007,-0.838528,-0.544858,-4.56691e-007,-0.473982,-0.524502,0.707275,-0.459859,-0.503089,0.731731,-0.00792233,0.00180671,-0.999967,-0.00792232,0.00180671,-0.999967,0.0,0.00180676,-0.999998,0.0,0.00180676,-0.999998,0.220927,-0.00176212,0.975289,0.220927,-0.00176211,0.975289,-0.119124,-0.00180886,0.992878,-0.119097,-0.00179391,0.992881,-0.670424,0.00120875,-0.741977,-0.670285,0.00134073,-0.742102,-1.0,-6.9681e-006,-5.44634e-007,-1.0,-6.9681e-006,-5.44634e-007,-0.669887,-0.00121888,0.742462,-0.670029,-0.00135248,0.742333,-0.00773854,-0.214154,-0.976769,-0.00772325,-0.214168,-0.976766,0.0,-0.214175,-0.976795,7.50723e-007,-0.214175,-0.976795,0.216044,0.209103,0.95373,0.216043,0.209102,0.95373,-0.12085,0.212605,0.969636,-0.120878,0.21259,0.969636,-0.647089,-0.150367,-0.747439,-0.661455,-0.160628,-0.732581,-1.0,-6.14761e-006,-5.44634e-007,-1.0,-6.20261e-006,-2.72326e-007,-0.675617,0.157901,0.720145,-0.660821,0.148028,0.735801,-0.00790242,0.0708677,-0.997454,-0.0122253,0.0728892,-0.997265,1.0,0.0,3.77085e-007,-0.127627,-0.450918,-0.883394,0.0113908,-0.633178,-0.773922,-0.00272263,-0.975021,-0.222096,0.205335,-0.976977,0.0579008,0.205336,-0.976977,0.0578998,0.599982,-0.798612,0.0473293,0.599982,-0.798612,0.0473286,0.883254,-0.468074,0.02774,0.883254,-0.468074,0.0277404,0.999165,-0.0407908,0.00241795,0.999165,-0.0407908,0.00241795,-0.191185,0.788529,-0.584526,-0.17152,0.778667,-0.603539,-0.70543,0.560205,-0.434212,-0.577725,0.559836,-0.593985,-0.928819,0.158577,0.334887,-0.84518,0.422443,-0.327433,-0.998815,0.0384595,-0.0298101,-0.895058,-0.145856,0.421423,0.0998129,-0.547611,-0.830758,0.153798,-0.703225,-0.694133,0.0367767,-0.132983,-0.990436,0.338864,-0.325512,-0.88273,-1.79196e-006,-0.0842899,-0.996441,0.0743061,-0.0731543,-0.994549,-7.86512e-006,-0.0842968,-0.996441,-2.65963e-006,-0.0842933,-0.996441,-0.205336,-0.976977,0.0578997,-0.205335,-0.976978,0.0579006,-0.599982,-0.798612,0.0473288,-0.599982,-0.798612,0.0473288,-0.883254,-0.468074,0.02774,-0.883254,-0.468074,0.0277395,-0.999165,-0.0407909,0.00241687,-0.999165,-0.0407909,0.00241696,0.17152,0.778667,-0.603539,0.191185,0.788529,-0.584526,0.57772,0.55984,-0.593985,0.70544,0.560207,-0.434192,0.845188,0.422441,-0.327416,0.928819,0.158573,0.334888,0.895057,-0.145856,0.421424,0.998815,0.0384587,-0.029808,-0.153798,-0.703225,-0.694133,-0.0998128,-0.547611,-0.830758,-0.338856,-0.32552,-0.88273,-0.0367998,-0.133013,-0.990431,-0.0743529,-0.0731472,-0.994546,1.79196e-006,-0.0842899,-0.996441,6.94136e-006,-0.0843098,-0.99644,-1.14069e-005,-0.0842976,-0.996441,-0.276826,-0.221191,0.935116,-0.276837,-0.221179,0.935116,-0.708152,-0.172986,0.684542,-0.70814,-0.173001,0.68455,-0.957153,-0.145173,0.250567,-0.957154,-0.145171,0.250564,-0.957154,-0.145171,-0.250561,-0.957154,-0.145169,-0.250564,-0.70814,-0.172989,-0.684552,-0.70814,-0.172988,-0.684553,-0.276826,-0.221179,-0.935119,-0.276838,-0.221189,-0.935113,0.221177,-0.276837,-0.935116,0.221191,-0.276827,-0.935116,0.652494,-0.325024,-0.684552,0.652492,-0.325025,-0.684553,0.901506,-0.352854,-0.250562,0.901505,-0.352855,-0.250563,0.901506,-0.352855,0.250561,0.901506,-0.352854,0.250563,0.652493,-0.325025,0.684552,0.652493,-0.325024,0.684553,0.221179,-0.276825,0.935119,0.221188,-0.276837,0.935113,-0.262144,-0.669779,0.69475,-0.262147,-0.669776,0.69475,-0.582607,-0.633968,0.50858,-0.582602,-0.633971,0.508582,-0.767599,-0.613299,0.18616,-0.767599,-0.613299,0.18616,-0.7676,-0.6133,-0.186154,-0.767601,-0.613299,-0.186156,-0.582593,-0.633971,-0.508592,-0.582594,-0.633971,-0.508591,-0.262144,-0.669776,-0.694752,-0.262147,-0.669778,-0.694749,0.107844,-0.711121,-0.69475,0.107847,-0.711119,-0.69475,0.428292,-0.746927,-0.508592,0.428295,-0.746926,-0.508591,0.613302,-0.767599,-0.186154,0.613299,-0.7676,-0.186156,0.613299,-0.767599,0.186159,0.613298,-0.767601,0.186156,0.428299,-0.746936,0.508573,0.428294,-0.746927,0.50859,0.107844,-0.711119,0.694752,0.107847,-0.711121,0.694749,-0.175759,-0.949969,0.258199,-0.294857,-0.936661,0.189011,-0.363608,-0.928979,0.0691854,-0.363608,-0.928979,-0.0691831,-0.294851,-0.936662,-0.189015,-0.175759,-0.949969,-0.258199,-0.0382544,-0.965334,-0.258199,0.0808359,-0.978641,-0.189015,0.149594,-0.986324,-0.0691824,0.149594,-0.986324,0.0691848,0.0808421,-0.978642,0.189011,-0.0382544,-0.965334,0.258199,-0.193152,0.415795,0.888711,-0.193151,0.415795,0.888711,-0.605275,0.456374,0.6522,-0.605265,0.456382,0.652204,-0.844128,0.479891,0.239067,-0.844129,0.479889,0.239065,-0.84413,0.47989,-0.239061,-0.844131,0.479886,-0.239065,-0.605266,0.456367,-0.652214,-0.605268,0.456374,-0.652206,-0.193152,0.415796,-0.888711,-0.193151,0.415795,-0.888711,0.280166,0.369174,-0.886125,0.280165,0.369174,-0.886125,0.687818,0.329008,-0.64704,0.687824,0.329001,-0.647037,0.922227,0.305903,-0.236477,0.922225,0.305907,-0.23648,0.922224,0.305907,0.236481,0.922224,0.305909,0.236479,0.687827,0.329015,0.647027,0.687823,0.329008,0.647035,0.280166,0.369175,0.886125,0.280165,0.369174,0.886126,0.205397,-0.973911,-0.0964889,0.205397,-0.973911,-0.0964889,0.600104,-0.796025,-0.0788649,0.600104,-0.796024,-0.0788648,0.883316,-0.466494,-0.0462167,0.883316,-0.466495,-0.0462171,0.999174,-0.0404738,-0.00357771,0.999165,-0.0406507,-0.00402667,-0.192188,0.731219,0.65451,-0.19218,0.731216,0.654516,-0.686929,0.541486,0.484687,-0.686936,0.541484,0.484679,-0.211361,0.728275,0.651875,-0.970278,0.241663,0.0126063,-0.999164,0.0408383,0.00213016,-0.99917,0.0406813,0.00199502,0.0683481,-0.336793,0.939095,0.0353266,-0.264629,0.963703,0.171196,-0.20936,0.962736,0.0266094,-0.133795,0.990652,0.0539157,-0.0905423,0.994432,-1.09598e-005,-0.0985869,0.995128,-0.0213208,-0.180527,0.983339,0.0108028,-0.159471,0.987144,-0.205398,-0.97391,-0.0964891,-0.205397,-0.97391,-0.0964906,-0.600103,-0.796025,-0.0788668,-0.600103,-0.796025,-0.0788666,-0.883316,-0.466494,-0.0462183,-0.883316,-0.466494,-0.046218,-0.999165,-0.0406509,-0.00402818,-0.999174,-0.0404737,-0.00357845,0.19219,0.731223,0.654504,0.19218,0.73122,0.654511,0.686938,0.541486,0.484675,0.686938,0.541486,0.484674,0.970278,0.241663,0.0126069,0.211363,0.728279,0.65187,0.99917,0.0406812,0.00199575,0.999164,0.0408382,0.00213091,-0.0353376,-0.264681,0.963688,-0.0683361,-0.336793,0.939096,-0.0266524,-0.133832,0.990646,-0.171242,-0.209397,0.96272,1.41369e-005,-0.0985987,0.995127,-0.0539816,-0.0905437,0.994428,-0.0108197,-0.159459,0.987145,0.021321,-0.180527,0.983339,-0.0266219,-0.300917,-0.953279,-0.0957359,-0.26672,-0.959007,0.00218274,0.394243,-0.919004,-0.00104934,0.399459,-0.91675,-0.0693399,0.457645,-0.886427,-0.0280566,0.39663,-0.91755,0.115509,-0.627237,0.770215,0.0766896,-0.591807,0.802423,0.0728331,-0.602582,0.794727,0.0880086,-0.585472,0.805902,0.0655462,-0.241153,0.968271,0.0610396,-0.236884,0.969618,0.103571,-0.267686,0.957924,0.0843409,-0.250205,0.964512,0.0472368,-0.898925,0.435548,0.0768393,-0.880161,0.468415,0.0499523,-0.949474,0.309846,0.14496,-0.909298,0.390081,0.0807656,-0.993608,-0.0788643,0.0473634,-0.99105,-0.124808,0.0510522,-0.784603,-0.617893,0.0118214,-0.753513,-0.657327,0.0120273,-0.443264,-0.89631,-0.0144221,-0.413678,-0.910309,-0.0326751,-0.152816,-0.987714,-0.0706722,-0.0986637,-0.992608,0.0158696,0.137133,-0.990425,0.0424194,0.100894,-0.993992,0.0895777,0.813481,-0.574652,0.143647,0.851604,-0.504119,0.102733,0.483258,-0.869429,0.0651211,0.433788,-0.898658,0.0874544,0.484295,-0.870523,0.133881,0.56103,-0.816897,0.109422,0.856617,-0.504217,0.180682,0.913334,-0.364931,0.0828682,-0.0444025,-0.995571,0.0595691,-0.0123607,-0.998148,0.108719,0.0589728,-0.992322,0.0747078,-0.0118166,-0.997135,0.0956903,-0.411594,-0.90633,0.0455595,-0.500576,-0.864493,0.070836,-0.745136,-0.66314,0.00518627,-0.829732,-0.558138,0.0882118,-0.553955,-0.82786,0.0346689,-0.501358,-0.864545,0.0746598,-0.825954,-0.558772,0.00298681,-0.885855,-0.463952,0.0788935,-0.251894,-0.964534,0.00138838,-0.412766,-0.910836,-0.0564757,-0.746253,-0.663262,0.0173565,-0.609687,-0.792452,0.160212,0.636915,-0.754103,0.116172,0.56349,-0.817914,0.0932891,0.650317,-0.753913,0.140222,0.724285,-0.675092,0.124618,0.17645,-0.976389,0.0715113,0.0608535,-0.995582,0.0873039,0.321134,-0.943001,0.0272944,0.190416,-0.981324,0.130813,0.986605,0.097463,0.208883,0.936048,0.283165,0.148941,0.945543,0.289421,0.206453,0.860692,0.465389,0.139638,0.920868,-0.364011,0.199296,0.954204,-0.223105,0.115887,0.993213,0.00992535,0.171062,0.980777,0.0938851,0.220873,0.607241,0.763199,0.1744,0.737837,0.65206,0.177539,0.613521,0.769462,0.222239,0.403491,0.887584,0.152956,0.868141,0.47216,0.203806,0.732631,0.649396,-0.104361,-0.914025,-0.392004,-0.0743508,-0.928924,-0.36273,-0.119265,-0.992169,0.037114,-0.120685,-0.992053,0.0355865,-0.0677165,-0.636576,-0.768235,-0.078971,-0.625733,-0.77603,-0.101638,-0.994208,0.0349383,-0.064107,-0.997421,-0.032284,-0.00860321,-0.886225,-0.463175,-0.0523043,-0.915535,-0.398824,0.00275348,-0.998976,-0.0451553,-0.0022783,-0.999347,-0.036069,-0.0524783,-0.854309,0.51711,-0.0541495,-0.852811,0.519405,0.104371,-0.865691,0.489577,0.0894359,-0.852851,0.514438,0.1947,0.812557,0.549403,0.138026,0.868564,0.475967,0.161863,0.570437,0.805234,0.226138,0.473271,0.851397,0.165007,0.478171,0.862627,0.217952,0.333086,0.917361,0.201716,0.567967,0.79795,0.161896,0.619797,0.767881,-0.0248215,0.224835,0.974081,-0.0298568,0.230592,0.972592,0.0936901,0.19688,0.975941,0.0692988,0.237972,0.968797,0.0418542,-0.264015,0.96361,0.0785545,-0.327817,0.94147,-0.135845,-0.27846,0.950792,-0.0508459,-0.361918,0.930822,0.200333,-0.38974,0.898871,0.1541,-0.323189,0.933703,0.215668,-0.456969,0.862941,0.171769,-0.391711,0.903912,0.140524,-0.460551,0.876439,0.186683,-0.568776,0.801026,0.0948754,0.992773,0.0734926,0.0751336,0.996293,0.041891,0.14385,0.985597,0.0889186,0.131091,0.988917,0.0697077,0.0970914,0.874608,0.47501,0.0850035,0.882994,0.461624,-0.0631674,0.86846,-0.491719,-0.00714697,0.842017,-0.539403,-0.0517926,0.878848,0.474282,-0.0146123,0.865511,0.500677,0.126659,0.893444,0.430947,0.134935,0.888332,0.43893,0.0986131,0.621356,0.777298,0.0852256,0.63933,0.764195,0.22564,-0.860791,-0.456208,0.0772525,-0.822345,-0.563721,0.138158,-0.808726,-0.571729,0.0924088,-0.774447,-0.625853,0.113035,-0.631098,-0.767423,-0.0252791,-0.516116,-0.856146,0.105511,-0.483391,-0.869023,0.0575727,-0.42979,-0.901092,0.175759,-0.933417,-0.312798,0.308343,-0.83103,-0.462941,0.10698,-0.25743,0.960357,0.117727,-0.372389,0.92058,0.138766,-0.104058,0.984843,0.171734,-0.265643,0.948652,0.113004,-0.930575,0.348225,0.0754185,-0.888873,0.451904,0.129776,-0.884648,0.447835,0.105731,-0.865587,0.48947,-0.116985,-0.852422,0.509599,-0.0863933,-0.868829,0.487517,0.0239569,-0.0445495,-0.99872,-0.0588567,-0.241054,-0.968725,0.147712,0.694756,-0.703914,0.153586,0.687444,-0.709811,0.106491,0.688322,-0.717547,0.147275,0.640709,-0.753527,-0.0197533,0.630827,0.775672,0.0157907,0.598593,0.800897,0.150492,-0.868545,0.472209,0.137425,-0.880283,0.454111,0.113614,-0.989665,-0.087491,0.173571,-0.984792,0.00754383,0.167031,-0.876773,0.450965,0.0946835,-0.914895,0.392431,0.133645,0.597579,0.790593,0.165829,0.577233,0.799564,0.101891,0.166542,0.980756,0.123728,0.149752,0.980951,-0.133471,-0.914929,-0.380907,-0.0846143,-0.822941,-0.561791,-0.0820305,-0.970454,0.226916,-0.0518854,-0.998264,0.0278624,0.0172638,-0.64049,0.767773,0.076752,-0.677226,0.731761,0.0291777,-0.252419,0.967178,0.0458632,-0.264519,0.963289,0.0392536,0.434568,-0.899783,0.0685729,0.393572,-0.916733,0.0315316,-0.0906805,-0.995381,0.00362807,-0.0499754,-0.998744,0.130904,0.967214,-0.217627,0.197547,0.979666,-0.035083,0.199891,0.162034,0.966327,0.162625,0.339444,0.926462,0.168586,0.166925,0.97145,0.18466,0.02591,0.982461,0.078058,0.190514,0.978576,0.0366161,0.220418,0.974718,0.0460835,0.223368,0.973644,0.027568,0.234267,0.971781,0.171332,0.200215,0.964655,0.210915,0.137694,0.967758,0.164371,0.0420063,0.985504,0.216779,-0.109811,0.970025,0.047731,0.55892,-0.827847,-0.0135581,0.607047,-0.79455,0.0482722,0.137974,-0.989259,0.0431916,0.145681,-0.988388,0.0868264,-0.568931,0.817789,0.119339,-0.686444,0.717323,0.058559,-0.993092,-0.101686,0.0270363,-0.99857,-0.0461136,0.163088,0.981935,0.0959469,0.200072,0.971541,0.126802,0.0611991,-0.97271,-0.223806,0.0128433,-0.994812,-0.100916,0.00670618,-0.934608,0.355615,0.0395895,-0.975694,0.215532,-0.0325649,0.592066,0.805231,-0.0337877,0.592787,0.80465,0.0897483,0.614545,0.78376,0.0982291,0.608123,0.787742,0.0123634,-0.678764,0.734253,0.0293797,-0.793438,0.607942,-0.119656,-0.601187,-0.790099,-0.0515832,-0.435577,-0.898672,0.0937495,0.162252,0.982286,0.066888,0.185308,0.980401,0.136676,0.889547,0.43592,0.179355,0.872622,0.454271,0.137717,-0.984587,0.107807,0.331454,-0.919542,0.211141,0.227467,-0.913194,-0.338137,-0.00385519,-0.903261,-0.429073,0.0987787,-0.931678,0.349599,0.0297105,-0.948945,0.314039,-0.0112703,-0.284195,0.9587,0.0547719,-0.340831,0.938528,-0.0221244,-0.981333,-0.191039,0.00891036,-0.9876,-0.156739,0.0108071,-0.628254,-0.777933,-0.0316583,-0.592861,-0.804682,-0.0298512,0.984485,0.17291,0.0886551,0.995137,0.0429232,-0.0876286,-0.21884,-0.971818,-0.113525,-0.21243,-0.970559,-0.0475045,0.539533,-0.840623,-0.0755128,0.558038,-0.826372,-0.0896006,0.128785,-0.987616,-0.0701053,0.115659,-0.990812,0.171527,0.815368,0.552949,0.218446,0.731873,0.64548,0.218229,-0.975897,0.00125196,0.211888,-0.977284,-0.00435946,0.0074415,-0.619637,-0.784853,-0.0472665,-0.56669,-0.822574,0.185471,0.137648,0.972961,0.241577,0.0398034,0.969565,0.0919722,0.672658,-0.734216,0.116036,0.642939,-0.757077,0.0934676,0.165323,-0.9818,0.0921609,0.167407,-0.981571,-0.0570149,-0.973322,-0.222246,-0.00746606,-0.922323,-0.386347,0.125992,0.59427,0.794335,0.103908,0.61083,0.784914,-0.0617972,-0.481399,-0.87432,0.0886874,-0.582704,-0.807831,-0.0384027,0.522313,-0.851889,-0.0839319,0.564587,-0.821095,-0.184906,0.0453561,-0.981709,-0.189846,0.0501698,-0.980531,-0.218395,-0.217963,-0.951207,-0.162889,-0.261617,-0.951328,-0.118868,-0.402621,-0.907616,-0.159685,-0.368543,-0.915793,0.198623,-0.683968,0.701952,0.132146,-0.716926,0.684511,0.0313552,0.109152,0.99353,0.0572804,0.0940471,0.993919,0.0686954,0.522847,0.849654,0.0676223,0.523282,0.849472,0.107599,0.977817,0.179713,0.0751447,0.985466,0.15235,0.0752562,-0.586307,0.806586,0.0799063,-0.591403,0.802407,0.0929839,-0.247943,0.964302,0.076628,-0.231647,0.969777,0.0855881,-0.871275,0.483275,0.0746431,-0.880105,0.468874,0.0159694,-0.987154,-0.158971,0.0469727,-0.991084,-0.124686,-0.0299657,-0.732567,-0.680035,0.00339446,-0.755463,-0.655183,-0.0413725,-0.420736,-0.906239,-0.0712109,-0.393438,-0.916589,-0.0828509,0.0677609,-0.994256,-0.0839277,0.0688828,-0.994088,-0.00499132,0.622475,-0.782624,0.0421754,0.577487,-0.81531,0.113834,0.557254,0.822502,0.135239,0.547291,0.825944,0.100725,0.139494,0.985087,0.108101,0.134693,0.984973,0.192739,0.946038,-0.260505,0.190071,0.947578,-0.256844,0.18477,0.89239,0.411705,0.176678,0.89666,0.405937,0.0191504,0.997131,-0.0732305,0.0449292,0.992149,-0.116716,0.0768619,0.99606,-0.0442239,0.0308964,0.992836,-0.115423,0.0223984,0.803791,-0.594491,0.00880009,0.818605,-0.574289,0.005824,0.914865,0.403718,0.0596321,0.886342,0.459175,0.0972907,0.905003,0.41413,0.0840984,0.91487,0.394892,0.0771259,0.799315,-0.595942,0.0956093,0.812762,-0.574698,0.179938,0.864039,0.47017,0.131159,0.902421,0.410408,-0.0120641,0.841891,-0.539513,0.0134534,0.8186,-0.574206,0.173417,0.933107,-0.315021,0.141037,0.953324,-0.266987,-0.0680508,0.997642,0.008973,0.000912426,0.997413,-0.0718822,0.164218,0.943575,-0.287576,0.146423,0.952524,-0.266944,0.191563,0.978149,0.0808017,0.197632,0.976282,0.0884036,0.100975,0.993798,-0.0465829,0.140338,0.990074,0.00771195,-0.00140065,-0.269384,0.963032,0.127001,-0.353802,0.926658,-0.11733,-0.117075,-0.986168,-0.075087,-0.162647,-0.983823,0.0783589,0.936853,-0.340831,0.123626,0.903005,-0.411459,-0.0128426,-0.264927,-0.964183,-0.0125697,-0.26527,-0.964092,-0.0233643,-0.28946,-0.956905,0.0232127,-0.357991,-0.933436,0.0517806,-0.244108,-0.968365,0.0631233,-0.261537,-0.963127,-0.103409,-0.250657,-0.962537,-0.07176,-0.280224,-0.957249,0.310971,-0.737945,0.598944,0.375333,-0.703365,0.603658,0.410089,-0.324029,0.852544,0.433531,-0.334621,0.836707,0.352869,0.249151,0.901891,0.412241,0.225962,0.882609,0.200025,0.71942,0.66515,0.303635,0.69082,0.656181,0.0542054,0.919173,0.390106,0.170907,0.898442,0.404465,-0.0281327,0.864605,0.501664,0.0262409,0.856564,0.515374,0.0661318,0.948795,-0.308893,0.0553483,0.953349,-0.296753,-0.0229675,0.927227,-0.373795,-0.0407348,0.93216,-0.359749,-0.0607791,-0.914715,0.399502,-0.0393625,-0.906487,0.420395,0.238289,-0.360794,0.901691,0.234379,-0.358442,0.903651,-0.0108739,-0.975232,-0.220918,-0.0491771,-0.968038,-0.245934,-0.214274,-0.633671,-0.743336,-0.131439,-0.707074,-0.694817,0.0161179,0.486078,-0.873767,-0.0485871,0.539286,-0.84072,0.057743,0.0708249,-0.995816,0.00523195,0.123027,-0.99239,0.00181852,-0.156644,-0.987653,0.0395397,-0.179541,-0.982956,-0.00313499,-0.308194,-0.951318,-0.0144486,-0.299798,-0.953893,-0.0334086,-0.664841,0.746238,0.0170897,-0.628734,0.777432,0.260001,0.142566,0.955026,0.194026,0.171107,0.965959,0.173737,0.58453,0.792553,0.0387945,0.615614,0.787092,-0.0453179,0.979475,0.196404,-0.024405,0.984885,0.171483,-0.0262086,0.842452,0.538134,0.00207952,0.834542,0.550941,-0.0336053,0.926884,-0.373841,-0.0476134,0.931432,-0.360786,-0.0307488,-0.999467,0.0109748,-0.00679065,-0.999501,0.0308539,0.0425738,0.876044,-0.480347,0.00353943,0.899365,-0.437184,0.0493157,0.869371,0.491693,0.0469579,0.870583,0.489776,-0.00696111,-0.938659,-0.344776,-0.0521046,-0.927497,-0.370181,-0.0325089,0.221507,0.974617,-0.0424387,0.228417,0.972638,-0.0943103,0.53231,-0.84128,0.00308094,0.467399,-0.884041,-0.102041,-0.027088,-0.994411,-0.0107596,-0.0829724,-0.996494,0.0569313,0.60734,0.7924,0.0589283,0.606132,0.793178,0.0465062,0.99891,0.00393867,0.0185415,0.99879,0.0455478,-0.015996,-0.878945,0.476654,-0.0486612,-0.868265,0.493708,-0.0493927,-0.38547,0.921397,-0.0806096,-0.367953,0.926344,0.0502982,-0.36609,0.929219,0.0226994,-0.341602,0.93957,-0.0828848,-0.981731,-0.171276,-0.103479,-0.975603,-0.193623,-0.221733,0.489351,-0.843427,-0.152812,0.425674,-0.89188,-0.294715,0.0308698,-0.955087,-0.274827,0.0130619,-0.961405,-0.283348,-0.225858,-0.932042,-0.317099,-0.201723,-0.926691,-0.220019,-0.372999,-0.901368,-0.288286,-0.311945,-0.905307,0.0649135,0.0960167,0.993261,0.0683111,0.0939583,0.99323,0.0563143,0.518582,0.853172,0.0274031,0.528942,0.848215,-0.0383846,0.980075,0.194885,-0.0299796,0.978752,0.202846,-0.0992751,0.940649,-0.324537,-0.0569339,0.92437,-0.377225,-0.00824211,-0.910459,0.413517,0.0166853,-0.896863,0.441993,-0.0918332,-0.702329,-0.705905,-0.044726,-0.735551,-0.675991,-0.0107565,-0.626516,0.779334,0.013198,-0.602535,0.797983,0.0947335,0.854312,0.511054,0.0753428,0.86149,0.502154,0.0891647,0.00773967,-0.995987,-0.0350395,0.115689,-0.992667,0.070713,-0.473224,-0.8781,-0.0320033,-0.358789,-0.93287,0.0253029,-0.570637,-0.820812,-0.0891602,-0.490236,-0.867017,-0.0582678,-0.635805,-0.769648,-0.114083,-0.589848,-0.799415,-0.0833258,-0.928392,-0.36214,-0.0522517,-0.940138,-0.336763,-0.0139751,-0.640295,-0.768002,0.0843946,-0.789297,-0.608184,0.20241,-0.92648,-0.317278,0.0346044,-0.898635,-0.437331,0.197589,-0.980075,0.0202935,0.171087,-0.985255,-0.000851233,0.219391,-0.975452,0.019004,0.193111,-0.981175,0.00182487,0.118228,-0.941321,0.316129,0.290421,-0.795562,0.531731,0.0712549,-0.732018,0.677549,0.0248224,-0.67799,0.734652,-0.252832,-0.93233,-0.258529,-0.113154,-0.981879,-0.152021,-0.243975,-0.689403,-0.682055,-0.150757,-0.581014,-0.79981,-0.0195263,-0.845444,0.533707,-0.0947505,-0.871201,0.481697,-0.104051,-0.702474,-0.704063,-0.168524,-0.815445,-0.553759,-0.059886,-0.99778,0.0291435,-0.178852,-0.974485,-0.135612,-0.00638637,0.340539,-0.940209,0.0450914,0.427755,-0.902769,0.0952298,0.7829,-0.614816,0.057446,0.743169,-0.666634,-0.0934839,0.550828,-0.829367,-0.146072,0.532475,-0.833747,-0.100981,0.121872,-0.987396,-0.0586886,0.172773,-0.983212,0.12912,0.991606,0.00668888,0.114174,0.993215,-0.022086,0.0993106,0.652346,0.751387,0.140997,0.597741,0.789193,0.106744,0.741508,0.662398,0.152756,0.650628,0.743875,0.178429,0.218582,0.959367,0.179796,0.217503,0.959357,0.12432,0.416986,0.90037,0.170065,0.277001,0.9457,0.0744714,-0.365206,0.927943,0.0855727,-0.419155,0.903873,0.0633397,-0.464523,0.883293,0.0897274,-0.457556,0.884642,0.143939,-0.0751871,0.986726,0.160644,-0.0681162,0.984659,-0.0718303,-0.311961,-0.947376,-0.128766,-0.42785,-0.89463,-0.144082,-0.155391,-0.977289,-0.250565,-0.179684,-0.951279,-0.00841364,0.10873,-0.994036,-0.0786828,-0.0308631,-0.996422,0.13129,0.035451,0.99071,0.148467,-0.0349481,0.9883,-0.0349271,-0.784837,0.618717,-0.0166989,-0.845873,0.533124,0.00844117,0.80067,-0.599046,0.0573238,0.830083,-0.554686,0.0917978,0.995675,0.0143091,0.085802,0.996284,0.00745034,-0.200585,-0.939248,-0.278531,-0.283629,-0.91856,-0.275321,-0.357564,-0.554557,-0.751409,-0.213534,-0.522489,-0.825475,-0.020978,-0.888206,0.458965,-0.112406,-0.884395,0.453002,-0.00539913,0.509362,-0.860535,-0.0615654,0.449436,-0.891188,-0.165532,0.191478,-0.967438,-0.135444,0.20036,-0.970315,0.169045,0.598252,0.783274,0.182886,0.59176,0.785094,0.151107,0.220117,0.963699,0.119014,0.282144,0.951961,0.0550166,-0.414075,0.908578,0.070527,-0.453539,0.888442,0.11846,-0.0300265,0.992505,0.132884,-0.0632134,0.989114,-0.090882,-0.2004,-0.97549,-0.173563,-0.300638,-0.937813,-0.0731744,0.85347,-0.51598,-0.0105519,0.864644,-0.502273,0.0448816,0.998754,0.0218187,0.104804,0.993853,0.0356572,0.566386,-0.771132,0.290796,0.561353,-0.747069,0.356048,0.531181,-0.751387,0.39149,0.53404,-0.72377,0.436988,0.599594,-0.70613,0.376654,0.566357,-0.657184,0.497341,0.61056,-0.64778,0.455628,0.594022,-0.577247,0.560288,0.488704,-0.550678,0.676699,0.586332,-0.629998,0.509233,0.365341,-0.377656,0.850824,0.51774,-0.498656,0.695188,0.47317,-0.129253,0.871438,0.350457,-0.0761257,0.93348,0.45667,-0.0220059,0.889364,0.512149,-0.0470811,0.857605,0.363756,0.22582,0.903707,0.397463,0.214315,0.89224,0.531082,0.407951,0.742649,0.285288,0.488014,0.824896,0.543296,0.196115,0.816314,0.483248,0.226206,0.845755,0.463974,0.400765,0.79001,0.661062,0.316602,0.680265,0.320062,0.666261,0.673541,0.618741,0.558129,0.552858,0.501525,0.537088,0.67824,0.665723,0.472213,0.577779,0.599626,-0.48539,0.636274,0.631905,-0.319943,0.705927,0.557244,-0.268212,0.785838,0.607042,-0.156156,0.779176,0.654888,-0.297292,0.694794,0.652789,-0.284624,0.702037,0.508344,-0.205911,0.836174,0.596132,-0.0612274,0.800549,0.594668,-0.577216,0.559635,0.59457,-0.484304,0.641822,0.660227,-0.406185,0.631755,0.597516,-0.296501,0.745025,0.553322,0.0472472,0.831626,0.571611,0.0430589,0.819394,0.580209,0.00111518,0.814467,0.498015,0.0271863,0.866742,0.735143,-0.129223,0.665481,0.58347,-0.0653513,0.809501,0.550674,-0.163746,0.818502,0.640333,-0.214818,0.737446,0.47421,0.189721,0.859727,0.562722,0.147186,0.813438,0.517362,0.141431,0.843999,0.653318,0.0808901,0.75275,0.646511,0.233968,0.726142,0.61295,0.175187,0.770455,0.644698,0.233607,0.727868,0.498193,0.29313,0.816014,0.577037,0.322118,0.750512,0.580788,0.338568,0.740309,0.584143,0.325466,0.743538,0.596101,0.449676,0.665173,0.403668,0.499857,0.766286,0.450753,0.420958,0.787157,0.419209,0.6471,0.636808,0.45392,0.569117,0.685611,0.211774,0.729187,0.650721,0.147266,0.79979,0.581935,0.532267,0.398546,0.746896,0.437178,0.305511,0.845895,0.466637,0.798337,0.380669,0.299253,0.83404,0.463491,0.363706,0.742533,0.562461,0.500236,0.718595,0.483099,0.17936,0.934653,0.307007,0.241751,0.932929,0.266834,0.196319,0.869993,0.452296,0.181187,0.885968,0.426887,0.638003,-0.518121,0.569652,0.555161,-0.421464,0.717053,0.70194,0.0897459,0.70656,0.588767,-0.0503206,0.806735,0.571744,-0.112475,0.812686,0.627005,-0.0381843,0.778079,0.707218,0.0802357,0.702428,0.714104,0.0919394,0.693976,0.653387,0.236364,0.719178,0.611942,0.174966,0.771307,0.109396,0.855214,0.506599,-0.00104748,0.814906,0.579592,0.481229,-0.673084,0.561585,0.533833,-0.534709,0.655064,0.468638,-0.716629,0.516548,0.480713,-0.672888,0.562261,0.321137,-0.382954,0.866151,0.32784,-0.369075,0.869658,0.286268,-0.311457,0.906116,0.467778,-0.140235,0.87265,0.53288,-0.0253423,0.845811,0.456165,-0.118745,0.881937,0.694579,-0.492392,-0.52451,0.73101,-0.443193,-0.518849,0.857086,-0.27368,-0.436467,0.739793,-0.370928,-0.561355,0.145406,0.98062,0.131304,0.165624,0.979468,0.114942,0.248989,0.96669,-0.0592784,0.223032,0.974279,-0.032206,0.517151,0.662097,-0.542385,0.796968,0.579357,-0.170844,0.836527,0.465901,-0.288373,0.966127,0.0758083,-0.24668,0.849396,-0.0997459,-0.518245,0.687593,-0.538709,-0.486836,0.724152,-0.466046,-0.508335,0.578831,-0.761562,-0.29151,0.559329,-0.827684,0.0457186,0.629755,-0.773086,0.0758027,0.63635,-0.770015,-0.0462096,0.316171,0.89971,-0.300929,0.378818,0.857319,-0.34857,0.450852,0.803004,-0.389765,0.387491,0.835148,-0.390357,0.103048,0.965573,0.238849,0.122799,0.966546,0.225185,0.0684024,0.918991,0.3883,0.0325365,0.911836,0.409264,0.597481,-0.342582,0.72502,0.450313,-0.246914,0.858051,0.60459,-0.00229487,0.796534,0.645914,0.06271,0.76083,0.568337,0.244973,0.785482,0.546642,0.215513,0.809158,0.456625,0.504346,0.73289,0.321599,0.385807,0.864712,0.267261,0.943818,-0.194368,0.308748,0.919705,-0.242522,0.145195,0.79538,0.588464,0.530546,0.687329,0.496085,0.444274,0.504875,0.740082,0.0967325,0.593524,0.798982,0.417019,0.871034,0.259604,0.223997,0.910374,0.347916,0.275299,-0.337359,-0.900222,0.431618,-0.277231,-0.858399,0.416267,-0.44792,-0.791258,0.544015,-0.536982,-0.644746,0.157864,0.219369,-0.962786,0.199473,0.220272,-0.954825,0.283976,-0.187893,-0.940242,0.136294,-0.182614,-0.973692,0.608779,-0.711354,-0.351231,0.530427,-0.595438,-0.603407,0.380752,-0.841407,-0.383487,0.543123,-0.838959,0.0341391,0.0826917,-0.662137,-0.744806,0.45474,-0.712845,-0.533913,0.318415,-0.265041,0.910146,0.389008,-0.293939,0.873082,0.00759729,0.516849,-0.856043,-0.0664842,0.560263,-0.825642,0.258796,0.851312,-0.456391,0.222504,0.877324,-0.425201,0.219529,0.974952,0.0357126,0.190601,0.979898,0.0589176,0.347879,0.928261,0.131576,0.186149,0.960335,0.207617,0.392604,0.629961,0.670083,0.159617,0.692044,0.703986,0.388988,0.258536,0.884221,0.367032,0.265546,0.8915,0.153333,-0.46883,-0.869878,-0.22397,-0.31455,-0.92244,-0.205581,-0.275891,-0.938946,-0.206315,-0.275757,-0.938825,-0.147884,0.0911705,-0.984793,-0.204626,0.106575,-0.973021,0.273789,0.629454,-0.727205,0.272207,0.63038,-0.726997,0.182669,0.96786,0.172854,0.236425,0.96242,0.13361,0.545635,-0.687011,0.479895,0.407938,-0.623004,0.667423,0.456212,-0.556473,0.694413,0.393746,-0.515065,0.761362,0.131767,0.86803,-0.478708,-0.0109204,0.928423,-0.371364,0.246017,0.943562,-0.221735,0.229176,0.932034,-0.280697,0.323515,0.521185,0.789749,0.181807,0.648589,0.739106,0.0526473,-0.0964989,-0.99394,0.135382,-0.0757322,-0.987895,-0.292979,-0.244768,-0.924257,-0.201135,-0.24051,-0.949579,0.406776,-0.666735,0.624499,0.490477,-0.716884,0.495488,0.547463,-0.784275,0.291885,0.476207,-0.737152,0.47941,0.558103,-0.773234,0.301047,0.575724,-0.802327,0.157525,0.233883,0.223515,0.946224,0.281857,0.210226,0.936142,0.435137,-0.24015,0.867746,0.24998,-0.173671,0.952548,0.387951,-0.734184,0.557196,0.493213,-0.789397,0.365504,0.0690873,0.959047,-0.274694,0.162737,0.986065,0.034546,0.41455,0.828001,0.377575,0.192087,0.888356,0.417044,0.5504,0.814302,-0.184316,0.551275,0.813471,-0.185367,0.0154704,-0.968932,0.246842,0.00703941,-0.967182,0.253986,0.114431,0.913346,0.390774,0.162871,0.921385,0.352878,0.134723,0.965187,0.224196,0.136563,0.964169,0.227438,0.153164,0.962056,0.225805,0.161172,0.96273,0.217197,0.161246,0.974891,0.153582,0.152905,0.979259,0.132938,0.16212,0.974727,0.153703,0.152484,0.979225,0.133671,0.245871,0.959942,-0.134384,0.298289,0.937695,-0.178191,0.430551,0.851248,-0.300006,0.388125,0.875393,-0.288177,0.370505,0.895679,-0.245938,0.30919,0.926883,-0.212813,0.671856,-0.740676,-0.00279374,0.684326,-0.722136,0.101081,0.262059,-0.888161,0.377485,0.275967,-0.880238,0.386036,0.191196,-0.912194,0.362418,0.224089,-0.897324,0.380255,-0.0405607,-0.930842,0.363164,-0.0293331,-0.933537,0.357279,-0.0694273,-0.941934,0.328542,-0.0643963,-0.941495,0.330819,0.135385,-0.920531,0.366462,0.105759,-0.92995,0.352147,0.209851,-0.57434,0.791262,0.232071,-0.475521,0.848542,0.410157,-0.782426,0.468595,0.426813,-0.759104,0.49152,0.362526,-0.856563,0.367253,0.310527,-0.896339,0.316463,0.308231,-0.708813,0.63449,0.279785,-0.754924,0.593136,0.273372,-0.875028,0.399493,0.286632,-0.866267,0.409174,0.407373,-0.842018,0.353628,0.41317,-0.834928,0.363574,0.25779,-0.912537,0.317523,0.259817,-0.91135,0.319273,0.194948,-0.786501,0.586014,0.188591,-0.793567,0.578519,0.131333,-0.920399,0.368262,0.0773956,-0.943033,0.323572,0.222969,-0.894726,0.386975,0.245255,-0.882357,0.401616,0.133894,-0.9083,0.396313,0.129327,-0.910119,0.393647,-0.219195,-0.819772,0.529081,-0.158892,-0.793972,0.586823,-0.0768773,-0.874413,0.479054,-0.18914,-0.912351,0.3631,0.115128,-0.976429,0.182572,0.0846566,-0.971599,0.220972,0.228852,-0.964703,0.130291,0.20037,-0.974182,0.104027,0.34578,-0.931181,0.115493,0.340576,-0.933729,0.110266,0.361893,-0.931999,0.0203004,0.380342,-0.924075,0.0377413,0.287297,-0.955457,0.0675483,0.246767,-0.968478,0.0340037,0.391232,-0.915329,0.0954467,0.351692,-0.919746,0.174298,0.505345,-0.856615,0.104105,0.549352,-0.835438,0.0160046,0.972848,-0.230494,-0.0209452,0.969452,-0.245236,0.00481131,0.965869,-0.240435,-0.0963737,0.971467,-0.223502,-0.0793699,0.998032,0.0319916,-0.0539258,0.982923,-0.0696135,-0.170342,0.983871,0.0944767,-0.151897,0.9743,0.031463,-0.223046,0.132635,0.852306,0.505947,0.151697,0.858415,0.490012,0.194501,0.858851,0.473861,0.178707,0.854254,0.488173,0.0158065,0.892391,0.450987,-0.0102328,0.8798,0.475233,-0.018714,0.975974,0.21708,-0.00986753,0.978195,0.207452,-0.00282257,0.992769,0.120011,-0.00597349,0.993431,0.114275,0.532488,0.690412,-0.489681,0.513971,0.703307,-0.491113,0.743868,0.265005,-0.613541,0.818459,0.175698,-0.547042,0.597389,0.486526,-0.63751,0.729546,0.344796,-0.590659,0.686532,0.569343,-0.452241,0.674822,0.576361,-0.460894,0.794708,-0.181285,-0.579289,0.863702,-0.046352,-0.501868,0.793308,-0.357867,-0.492538,0.766154,-0.393896,-0.507794,0.825421,-0.381866,-0.415763,0.924225,-0.222922,-0.310021,0.0680163,-0.974453,0.214046,0.0575647,-0.978234,0.199361,-0.0263557,-0.82871,0.559058,0.0152074,-0.796467,0.60449,0.384493,-0.781579,0.491222,0.43734,-0.697857,0.567212,0.911554,-0.327998,-0.247964,0.902056,-0.348643,-0.254447,0.936263,-0.331101,-0.117402,0.948708,-0.30389,-0.0871977,0.880937,-0.449834,-0.146964,0.862918,-0.419372,-0.281958,0.981192,-0.162841,0.103662,0.982198,-0.143375,0.121368,0.972222,-0.211282,0.100721,0.974609,-0.153198,0.163301,0.876998,-0.470701,0.0965155,0.852219,-0.497745,0.161162,0.897395,-0.404703,0.17578,0.876912,-0.463673,0.12662,0.81775,-0.5734,0.0499777,0.823921,-0.562426,0.0695088,0.70237,-0.700609,0.125793,0.682254,-0.725996,0.0863683,0.942398,-0.334392,-0.00824636,0.947537,-0.319043,0.019604,0.692419,-0.711236,0.121243,0.70465,-0.702295,0.101244,0.853224,-0.499812,0.148984,0.840164,-0.531109,0.109766,0.702197,-0.700568,0.126977,0.707657,-0.693088,0.137297,0.979482,0.152143,0.132167,0.991079,0.105692,0.0811918,0.96149,-0.199451,0.189091,0.958582,-0.262988,0.109349,0.97498,0.117737,0.188554,0.991766,0.0606558,0.112785,0.86139,0.503747,0.0651601,0.887467,0.460812,0.00736233,0.883112,0.453492,0.120243,0.908159,0.415156,0.0537772,0.854596,0.512855,-0.0815273,0.863913,0.492705,-0.104382,0.978642,0.0938968,-0.182877,0.980818,0.134485,-0.141102,0.740632,0.653127,-0.157764,0.725083,0.675974,-0.131582,0.564476,0.82294,-0.0643057,0.554606,0.830466,-0.05233,-0.0353866,0.984945,-0.169206,-0.0453653,0.981871,-0.184044,-0.0383064,0.987502,-0.152879,-0.00798491,0.996346,-0.0850383,0.272851,0.950391,-0.149361,0.244432,0.962078,-0.121077,0.243126,0.96387,-0.108831,0.260763,0.956706,-0.129292,0.563675,0.824872,-0.0430859,0.572775,0.817826,-0.0555941,0.75646,0.653413,0.0286239,0.758488,0.651214,0.0248342,0.94491,-0.228083,-0.234782,0.970137,-0.167181,-0.175739,0.967576,0.159366,-0.195959,0.952182,0.0736609,-0.29652,0.807467,0.48889,-0.330127,0.808493,0.389547,-0.441125,0.116596,0.921918,-0.369423,0.100289,0.93092,-0.351183,0.35454,0.874382,-0.331298,0.245883,0.925839,-0.286991,0.164341,0.97238,-0.16574,0.167509,0.971325,-0.168727,0.14004,0.989276,-0.0414855,0.177196,0.980683,-0.082837,0.0529009,0.992558,-0.109678,0.0253316,0.997035,-0.0726552,0.147264,-0.979308,0.138812,0.114299,-0.977717,0.176083,0.316213,-0.943705,0.0971125,0.280912,-0.947893,0.15029,0.543803,-0.829047,0.130227,0.548396,-0.82695,0.124159,0.505319,-0.858661,0.0857556,0.536175,-0.842743,0.0479539,0.115354,-0.985834,0.121758,0.138579,-0.984881,0.103946,0.314014,-0.939534,0.136646,0.33464,-0.935031,0.117184,0.149134,-0.975958,0.158949,0.140051,-0.975979,0.166888,0.326133,-0.929105,0.174358,0.338425,-0.927212,0.160456,0.123187,-0.988595,0.0866292,0.115003,-0.988989,0.0931355,0.491791,0.791742,-0.362335,0.515802,0.760946,-0.393586,0.231933,0.898792,-0.371996,0.253508,0.883977,-0.392833,-0.108958,0.918246,-0.380726,-0.0618972,0.936328,-0.345628,-0.111125,0.890751,-0.440698,-0.101983,0.894571,-0.435135,0.862777,0.307125,-0.401609,0.865407,0.419178,-0.274516,0.459854,0.722736,-0.515932,0.450723,0.740311,-0.498787,0.930631,0.29921,-0.21071,0.910606,0.169519,-0.376908,0.504965,0.703991,-0.499406,0.448312,0.710867,-0.541927,0.226781,0.834443,-0.50227,0.18316,0.825948,-0.533163,0.338971,0.868518,-0.361628,0.274262,0.862865,-0.424553,-0.107632,0.861373,-0.496439,-0.0809049,0.875048,-0.477227,0.0479344,0.908063,-0.416081,0.112202,0.94164,-0.317373,0.871778,0.487866,-0.0446097,0.812064,0.576685,0.089369,0.587839,0.806641,0.0614549,0.637617,0.77011,-0.0193464,-0.0387665,0.972167,-0.23106,-0.0659823,0.96355,-0.259263,0.0715578,0.978433,-0.193773,0.0616259,0.981341,-0.18213,-0.0662026,0.993418,0.0934753,-0.0744565,0.990436,0.116155,0.0933648,0.995046,0.0341396,0.0577553,0.993492,0.0981763,-0.173693,0.980442,-0.0925406,-0.140975,0.989682,-0.0255875,0.275887,0.930907,-0.239369,0.268748,0.934698,-0.232625,0.627775,-0.772896,0.0923563,0.592827,-0.804234,0.0420108,0.584049,-0.786572,0.200475,0.629229,-0.762826,0.148889,0.997152,0.00640774,0.0751402,0.999143,-0.0413843,-2.61229e-005,0.274275,0.960823,0.0399039,0.34124,0.938003,-0.0608702,0.30937,-0.947646,0.0791038,0.325389,-0.943428,0.0637619,0.23716,-0.955761,0.174,0.207096,-0.951005,0.229567,0.423933,-0.89963,0.104626,0.46489,-0.885184,0.0180671,0.54073,-0.837564,0.0780815,0.490112,-0.856416,0.162304,-0.0199291,0.945817,0.324087,-0.0204005,0.945646,0.324557,0.154555,0.922862,0.352758,0.177939,0.927302,0.329316,0.206576,0.851267,-0.48236,0.195129,0.849968,-0.489367,0.577981,0.746036,-0.330709,0.394977,0.825927,-0.402291,0.982548,0.167861,-0.0801437,0.958176,0.277728,0.0690361,0.494592,-0.859759,0.127251,0.503789,-0.855666,0.118461,0.586045,-0.803481,0.104733,0.572972,-0.81071,0.120217,0.373514,-0.919802,0.120218,0.390401,-0.914444,0.106675,0.169739,-0.981248,0.0913304,0.16921,-0.981303,0.0917144,-0.0508075,-0.992809,0.108395,-0.141777,-0.988244,0.0572179,-0.0374128,-0.914217,0.403495,-0.0761306,-0.900684,0.427753,0.0369704,-0.944586,0.326175,0.0705419,-0.93723,0.341503,0.179912,0.981211,0.0696937,0.190998,0.979854,0.0583681,0.754281,-0.641262,0.140867,0.766519,-0.632618,0.110651,0.180563,0.958225,-0.221816,0.237911,0.935092,-0.262682,0.081115,0.962658,-0.258283,0.0860064,0.960836,-0.263432,0.465546,-0.868534,0.170044,0.499493,-0.833832,0.23501,0.351379,-0.905841,0.236613,0.373893,-0.88865,0.265527,0.255183,-0.927475,0.27326,0.256963,-0.926462,0.275023,0.155222,-0.947143,0.28076,0.162573,-0.944229,0.286359,0.613233,-0.76855,0.182418,0.583208,-0.80859,0.0777872,0.425663,-0.850102,0.310062,0.407865,-0.866505,0.287777,0.615593,-0.787931,-0.0145126,0.680784,-0.723426,-0.114836,0.333782,-0.886111,0.321554,0.324617,-0.892389,0.313472,0.43696,-0.896834,0.0689605,0.500847,-0.864895,-0.0333111,0.245421,-0.910305,0.333336,0.240206,-0.913,0.329745,0.338656,-0.938892,0.0616003,0.293227,-0.945611,0.140848,0.151786,-0.930148,0.334342,0.167128,-0.924652,0.342181,0.197113,-0.969535,0.145426,0.168435,-0.977917,0.123728,0.499498,-0.815557,0.292178,0.47311,-0.848198,0.238175,0.770415,-0.631654,-0.0864453,0.84006,-0.5086,-0.188746,0.021403,-0.975965,0.216875,-0.0591502,-0.984407,0.165664,-0.0697423,0.97152,-0.226463,-0.0862425,0.975579,-0.202008,-0.0769823,0.993318,-0.0859865,-0.0780699,0.993388,-0.0841769,-0.0801957,0.990507,0.111644,-0.0793129,0.99072,0.110379,-0.0815705,0.973092,0.215496,-0.0804685,0.973463,0.214232,-0.0867861,0.941376,0.326005,-0.0822774,0.943254,0.321719,0.161781,-0.972309,0.168647,0.191516,-0.969455,0.153225,-0.0501895,-0.992886,0.107975,0.0234418,-0.979302,0.20104,0.184214,-0.982781,-0.0143449,0.206139,-0.978523,0.000316714,0.514219,-0.849815,0.11573,0.520522,-0.844929,0.123094,0.876181,-0.480855,0.032949,0.887195,-0.461284,-0.0101292,0.764195,-0.64478,-0.0162698,0.750774,-0.660076,0.0252513,0.629133,-0.777263,0.00737895,0.600937,-0.7958,0.0746876,0.892201,-0.45151,0.0107945,0.890107,-0.455371,0.0186314,0.582998,-0.812409,-0.0102269,0.571729,-0.8202,0.0199274,0.764965,-0.643983,-0.0107201,0.742778,-0.667645,0.0502963,-0.0572473,-0.959281,0.276592,-0.023437,-0.953797,0.299538,0.776658,0.273496,-0.567453,0.765657,0.284394,-0.576965,0.566038,0.698764,-0.437412,0.51008,0.709038,-0.486913,0.66217,0.653995,-0.365815,0.669914,0.636576,-0.382083,0.665385,0.548818,-0.506026,0.643823,0.639221,-0.420581,0.716518,0.575872,-0.393666,0.720883,0.46223,-0.516402,0.0394154,-0.984406,0.171438,0.0251798,-0.98238,0.185192,-0.261094,0.869344,-0.419609,-0.271719,0.86244,-0.427043,0.00705399,-0.967617,0.252323,-0.018706,-0.963174,0.268228,-0.259924,0.938727,-0.226342,-0.218638,0.957617,-0.187532,0.134797,-0.974566,0.179028,0.0478138,-0.992722,0.110528,-0.0613079,-0.98018,0.188384,-0.117579,-0.968406,0.219919,0.53594,-0.826016,0.174543,0.553965,-0.793921,0.250624,0.955177,-0.29602,0.00287699,0.964949,-0.254443,-0.0642788,0.994114,-0.0677884,-0.084513,0.975997,-0.1427,-0.164518,0.979316,0.0681592,-0.190509,0.972792,0.0335071,-0.229244,0.881097,0.406708,-0.241365,0.883863,0.339471,-0.321784,0.269885,0.85503,-0.442815,0.235191,0.849601,-0.472084,-0.0148629,0.909333,-0.415803,-0.0806629,0.87587,-0.475757,0.678731,0.670801,-0.298916,0.574844,0.707389,-0.411284,0.841442,-0.524691,-0.129134,0.866971,-0.493073,-0.0723915,-0.213991,-0.838555,0.501032,-0.240895,-0.812964,0.530151,-0.0516182,-0.935146,0.350482,-0.100145,-0.938655,0.329995,0.0384253,-0.988392,0.146983,0.0281776,-0.987507,0.155034,0.0276043,-0.99591,0.0860335,0.00150063,-0.994514,0.104588,-0.253136,0.915427,-0.312915,-0.274942,0.903372,-0.329129,-0.1159,0.911105,-0.395544,-0.156825,0.871088,-0.465416,-0.259732,0.83565,-0.483971,-0.244035,0.847624,-0.471147,-0.0496055,-0.995307,0.0830863,-0.0568582,-0.994376,0.0893506,-0.0797493,0.943022,-0.323031,-0.102557,0.951626,-0.289637,-0.120006,-0.863956,0.489058,-0.132666,-0.870972,0.473084,-0.096647,-0.891762,0.442063,-0.11871,-0.896351,0.427157,-0.0997982,-0.924623,0.367577,-0.0900436,-0.927372,0.363144,-0.0973217,0.90665,-0.410505,-0.116255,0.917404,-0.380599,-0.219954,0.95998,-0.173376,-0.17184,0.978681,-0.112494,-0.0470428,-0.99302,0.108159,-0.0335667,-0.994641,0.0977867,0.0318263,-0.996094,0.0823643,0.0587296,-0.993379,0.0987418,-0.0547352,0.904062,0.423883,-0.0783475,0.891135,0.446922,-0.0905609,-0.93762,0.33566,-0.100341,-0.937947,0.331944,-0.0297091,-0.935871,0.351087,-0.0699186,-0.939415,0.335576,0.105446,-0.927159,0.359523,0.0702551,-0.935787,0.345495,0.190853,-0.911153,0.365207,0.166001,-0.920465,0.353819,0.262062,-0.88817,0.377463,0.23432,-0.902569,0.361196,0.830712,-0.381251,-0.405666,0.762733,-0.497894,-0.412722,0.798483,-0.47683,-0.367501,0.827057,-0.410286,-0.384241,0.768619,-0.596701,-0.23059,0.761269,-0.583223,-0.283409,0.569936,-0.800519,0.18532,0.566468,-0.809944,0.152004,0.503514,-0.818603,0.27634,0.498912,-0.82776,0.25671,0.369893,-0.779585,0.505397,0.373208,-0.774672,0.51049,0.196147,-0.496561,0.845549,0.209136,-0.428127,0.879187,0.446153,-0.817031,0.365252,0.445644,-0.817807,0.364133,0.278954,-0.595755,0.753167,0.236935,-0.681262,0.692635,0.358683,-0.815523,0.454168,0.326141,-0.845733,0.422335,0.323405,-0.842337,0.431136,0.299261,-0.861247,0.410728,0.453197,-0.852617,0.26011,0.473104,-0.825469,0.307853,0.360312,-0.808374,0.465518,0.391461,-0.767394,0.507803,0.32862,-0.629505,0.704083,0.27895,-0.723852,0.63105,0.213367,-0.633693,0.743577,0.243625,-0.554157,0.795963,0.365886,-0.828458,0.424011,0.305393,-0.878704,0.366898,0.369424,-0.810365,0.454791,0.380822,-0.797771,0.467478,0.381837,-0.845545,0.373168,0.345575,-0.876013,0.336422,0.333272,-0.863221,0.379183,0.312221,-0.878983,0.360425,0.370722,-0.852994,0.367377,0.357518,-0.865321,0.351283,0.331348,-0.838924,0.431758,0.365046,-0.805967,0.466003,0.294128,-0.863084,0.410579,0.291988,-0.864579,0.408957,0.298561,-0.876131,0.378493,0.307335,-0.870383,0.38468,0.309544,-0.874499,0.373409,0.311043,-0.87349,0.374523,0.430511,-0.834677,0.343474,0.39647,-0.869945,0.293269,0.753387,0.657534,0.00757023,0.756662,0.653802,0.00225037,0.831181,0.489239,-0.264163,0.843918,0.417181,-0.337287,0.9892,0.143822,0.0282679,0.989514,0.141998,0.0264205,0.974018,-0.220048,-0.0535487,0.986668,-0.162746,0.000190679,0.502596,-0.863749,0.0365456,0.492756,-0.868904,0.0468777,0.620847,-0.782489,0.0475339,0.572659,-0.812107,0.112001,0.124314,-0.985732,0.113479,0.168749,-0.982416,0.0798861,0.326894,-0.941103,0.0864003,0.388612,-0.920818,0.0327781,0.750495,-0.653776,0.0966137,0.707982,-0.683518,0.177663,-0.0336967,-0.994869,0.0953955,0.00151687,-0.99764,0.0686521,0.897596,-0.434937,0.0717671,0.89308,-0.441001,0.0890293,0.669572,-0.739772,0.066416,0.62748,-0.766074,0.139279,0.881513,-0.470983,-0.0333009,0.873342,-0.487068,0.00623083,0.671458,-0.736794,0.079236,0.65259,-0.748494,0.117827,0.745052,-0.666981,-0.00580839,0.738391,-0.674214,0.0146296,0.747594,-0.660979,0.0648939,0.756478,-0.652881,0.0385744,0.183191,0.981469,0.056209,0.209498,0.977274,0.0323474,0.573727,-0.818526,0.0292017,0.479605,-0.805363,0.34838,0.706494,-0.678147,-0.202442,0.692489,-0.638887,-0.335087,0.403483,-0.291075,0.867454,0.458241,-0.313965,0.831529,0.222176,0.972412,-0.0710886,0.212099,0.975263,-0.0622642,0.306172,0.951899,-0.0121027,0.142728,0.986742,0.0772541,0.342137,0.716149,0.608337,0.282337,0.732633,0.619302,0.282062,0.246494,0.92719,0.306759,0.238866,0.921326,0.441718,-0.61892,0.64948,0.356749,-0.565243,0.743795,0.542945,-0.839065,0.0343683,0.460504,-0.797559,0.389661,0.217083,0.929645,0.297716,0.379154,0.884296,0.272512,0.810337,-0.583439,-0.0543418,0.790422,-0.573676,-0.214774,0.0424923,-0.957452,0.285446,0.0410931,-0.957811,0.284447,0.154675,0.987105,0.0412314,0.164157,0.984198,0.0663809,0.0115053,0.999432,0.0316732,0.00646841,0.999785,0.0196943,0.22104,0.974709,-0.032918,0.208762,0.977746,-0.0207795,0.550538,-0.83477,0.00819905,0.593706,-0.7953,0.122521,0.391122,-0.906929,0.156537,0.434785,-0.894381,0.105093,0.26309,-0.946355,0.187607,0.293653,-0.943837,0.151456,0.164775,-0.960634,0.223676,0.205497,-0.96093,0.185428,0.699833,-0.704949,-0.115241,0.737987,-0.67232,0.0579795,-0.0799783,0.996568,0.0213537,-0.0818095,0.996352,0.0242969,-0.0160464,-0.968137,0.249908,0.0602931,-0.975565,0.211278,-0.0210227,-0.949496,0.313075,-0.0474617,-0.953364,0.298068,0.670474,-0.741926,-0.00331002,0.669165,-0.742683,-0.0253006,0.0149094,-0.973183,0.229549,0.0267057,-0.975729,0.217347,0.0851775,-0.970552,0.225331,0.0595261,-0.966318,0.250373,0.396287,-0.908048,0.135667,0.420685,-0.903405,0.0829623,0.555676,-0.826304,0.0919036,0.575485,-0.816586,0.0447616,0.9369,-0.318945,-0.143155,0.930942,-0.330834,-0.154586,0.979711,-0.142531,-0.140895,0.971678,-0.167431,-0.166757,0.334576,0.860473,-0.384247,0.424609,0.853835,-0.30112,0.050534,0.928084,-0.368926,-0.0196025,0.892181,-0.451253,0.240324,-0.951482,0.192162,0.277415,-0.952215,0.127778,0.733396,-0.674335,-0.0860363,0.679211,-0.733329,0.0300192,0.932821,-0.0506806,-0.356759,0.961366,0.0347076,-0.273076,0.86863,0.334288,-0.365696,0.873977,0.328727,-0.357913,0.651109,0.644728,-0.400477,0.730034,0.607011,-0.313985,0.870212,-0.492386,-0.0169487,0.884098,-0.461838,-0.0712429,-0.157578,0.892911,-0.421758,-0.203328,0.84755,-0.490221,0.836015,-0.527523,0.150994,0.826487,-0.550042,0.119887,0.708853,-0.694839,0.12135,0.69222,-0.706579,0.146891,0.950997,-0.258747,0.169276,0.946976,-0.303056,0.10674,0.982366,0.0646506,0.175433,0.995981,0.00660765,0.0893181,0.898745,0.413081,0.147041,0.933845,0.354427,0.0481058,-0.016489,0.999863,0.001533,0.0249306,0.997599,-0.064606,0.246346,0.96915,-0.0078748,0.2866,0.956045,-0.0619574,0.563392,0.824971,0.0448646,0.595364,0.803455,-0.00153919,0.753692,0.651454,0.0869194,0.779541,0.625153,0.0387127,-0.103457,0.994589,-0.00947162,-0.145955,0.986921,0.0684343,0.623641,-0.772228,0.121393,0.630673,-0.764821,0.131531,0.511658,-0.835537,0.20021,0.498769,-0.840504,0.21162,0.370187,-0.912733,0.172858,0.328456,-0.922639,0.202124,0.482134,-0.876031,0.0107845,0.500254,-0.865315,0.0312254,0.386087,-0.922364,0.01349,0.387502,-0.92175,0.0147926,0.299421,-0.954015,0.0142503,0.283698,-0.958912,0.00197614,0.819066,-0.565052,0.0992282,0.826141,-0.550012,0.122388,0.681201,-0.72635,0.0915457,0.663218,-0.74634,0.055851,0.94442,-0.323007,0.061136,0.948434,-0.302965,0.0931977,0.822331,0.568332,-0.0277756,0.77636,0.626371,0.0701805,0.617871,0.774412,0.136091,0.701991,0.712184,0.00158873,-0.074402,0.996775,0.0300573,-0.10735,0.989023,0.101536,0.0686626,0.996765,-0.0417693,0.017093,0.998594,0.050187,0.58743,-0.806435,0.0677342,0.558943,-0.828778,0.0266395,0.998906,-0.0419282,0.0206958,0.99254,-0.099004,-0.0711516,0.316558,0.938616,0.137083,0.404435,0.914551,0.005296,0.961637,0.27078,-0.0439707,0.931041,0.35538,0.0828704,0.155664,-0.985865,0.0619567,0.190734,-0.977793,0.0868374,0.0668811,-0.997631,-0.0160721,0.0675009,-0.997595,-0.0157121,0.502738,-0.864208,0.0199656,0.524798,-0.850036,0.0450046,-0.102412,-0.819591,0.563722,-0.170482,-0.78577,0.59456,-0.11342,-0.858818,0.499568,-0.0962008,-0.852786,0.513324,0.90701,0.420199,-0.0276614,0.884212,0.216922,-0.41366,-0.244037,0.833579,-0.495571,-0.203942,0.869714,-0.449449,0.337267,0.576767,0.744037,0.237543,0.481307,0.843751,0.222108,0.754842,0.617156,0.020281,0.646505,0.76264,0.43917,0.203355,0.875086,0.446167,0.212786,0.869286,0.441745,-0.190213,0.876744,0.348905,-0.149232,0.9252,0.381619,0.154504,0.911315,0.343495,0.161899,0.925094,0.218523,0.551887,0.804779,0.256042,0.542952,0.799779,0.360551,-0.422582,0.831521,0.239432,-0.311062,0.919735,0.200253,-0.741523,0.640345,0.1653,-0.736125,0.65635,0.341902,-0.641076,0.687113,0.254976,-0.641149,0.72382,0.230547,-0.429586,0.8731,0.181345,-0.431473,0.883711,0.218105,0.759843,0.612428,0.189344,0.784954,0.589912,0.167237,0.757669,0.630849,0.178272,0.763762,0.620393,0.0672817,0.830665,0.552692,0.020644,0.805608,0.592089,0.0315467,-0.790732,0.61135,-0.020407,-0.841529,0.539827,-0.135095,-0.879086,0.457119,-0.0633801,-0.843184,0.533876,-0.219928,-0.888976,0.401688,-0.155922,-0.876417,0.455612,-0.0502191,0.834759,0.54832,-0.0284333,0.848628,0.528226,0.19577,-0.415617,0.888221,0.192103,-0.415902,0.888888,0.334157,-0.541762,0.771254,0.238805,-0.553634,0.797785,0.34138,-0.578332,0.74094,0.285062,-0.583135,0.760719,0.175357,-0.485099,0.856697,0.327878,-0.46921,0.819962,-0.0916718,-0.908378,0.407977,-0.11741,-0.914126,0.388058,0.83241,-0.101869,-0.544717,0.79351,-0.181032,-0.581007,0.180535,-0.936306,-0.301226,0.20558,-0.9357,-0.286709,0.786429,-0.583636,0.202232,0.797544,-0.507767,0.325724,0.355256,-0.909578,-0.215547,0.433558,-0.893333,-0.118252,0.43123,-0.894483,-0.118069,0.491628,-0.870797,-0.00391333,0.263802,-0.924375,-0.275572,0.33403,-0.91775,-0.214845,0.361092,-0.929562,-0.0743386,0.282171,-0.94891,-0.14124,0.146245,-0.983048,-0.110589,0.197904,-0.977088,-0.0783142,0.461966,-0.886847,-0.00946664,0.404138,-0.91152,-0.0761816,0.910494,-0.396701,0.116747,0.897794,-0.439156,0.0332995,0.530278,-0.846881,0.0399758,0.497682,-0.86726,-0.013158,0.425728,0.854167,0.298587,0.521826,0.840362,0.146594,0.924184,-0.306882,0.227391,0.924934,-0.252689,0.283982,-0.112868,0.950455,0.289646,-0.118716,0.94747,0.296997,-0.0844235,0.977407,0.193772,-0.0800792,0.978575,0.189678,-0.114618,0.957999,0.262871,-0.0861206,0.970533,0.225054,0.943375,0.281523,0.175464,0.971402,0.214754,0.101289,0.931091,0.363839,-0.0262709,0.848095,0.50419,0.16287,0.758433,0.646714,0.0808675,0.667378,0.710673,0.222601,0.79076,0.570049,0.223031,0.854846,0.507953,0.105931,0.630122,-0.769732,0.102269,0.655266,-0.7114,0.254039,0.782742,-0.61202,0.112899,0.764205,-0.643905,0.0371145,0.502884,-0.864336,-0.00557994,0.544365,-0.829872,0.122389,0.62653,-0.774713,0.0853248,0.602063,-0.798019,0.0261818,0.977731,-0.179493,0.10874,0.971222,-0.236353,0.0294285,0.994961,0.0525641,-0.0853775,0.981297,0.179606,0.0692715,0.979328,-0.00406973,0.202235,0.984457,-0.0386499,0.171318,0.572714,0.80235,0.168026,0.49639,0.818643,0.288825,0.14006,0.932609,0.3326,0.208376,0.948493,0.238622,0.10063,0.944271,0.31341,0.156539,0.959812,0.232928,0.243388,-0.929991,-0.275463,0.205187,-0.931372,-0.300739,0.253355,-0.95704,-0.141015,0.189472,-0.964468,-0.184122,0.0752719,-0.99092,-0.111405,0.0621358,-0.991008,-0.118502,-0.252471,0.949728,0.185134,-0.159748,0.942902,0.292262,0.153597,-0.952014,-0.264722,0.106541,-0.951162,-0.289725,0.338934,-0.940344,-0.0296099,0.387814,-0.921633,0.0138979,0.167403,-0.968494,-0.184377,0.141274,-0.969639,-0.199605,0.451441,-0.89223,0.0112302,0.473303,-0.88016,0.0360965,0.933384,-0.354439,-0.056282,0.942742,-0.333205,-0.0145742,0.535166,-0.844223,0.0297455,0.550462,-0.833199,0.0526417,0.459125,0.882071,0.105614,0.369635,0.896351,0.244795,-0.100281,0.969644,0.223012,-0.150118,0.975954,0.158045,0.906221,0.384693,0.175429,0.964951,0.261413,0.0230839,0.728965,0.641699,0.238397,0.815639,0.571402,0.0907389,0.813833,-0.581065,0.00629424,0.821489,-0.56941,0.0304816,0.647831,-0.761029,0.0339083,0.661423,-0.747434,0.0621414,0.982189,-0.161974,-0.0952332,0.994625,-0.103406,-0.00534074,0.989981,0.0702362,0.122491,0.999594,-0.0219251,0.018222,0.124772,0.976004,0.178463,0.059354,0.959568,0.275148,0.227091,-0.970754,-0.0778863,0.293205,-0.955593,-0.0295317,0.0898296,-0.977435,-0.191184,0.0712582,-0.977074,-0.20062,0.968361,-0.247475,0.0321289,0.961546,-0.271036,0.0443633,0.959619,-0.274256,0.0625671,0.941213,-0.32382,0.0962183,0.989072,0.123658,0.0802827,0.989433,0.118671,0.0833009,0.990168,0.118751,0.0739334,0.988363,0.0671409,0.136493,0.804565,-0.593858,0.00275301,0.795394,-0.605961,-0.0126432,0.969766,-0.244036,0.000860806,0.966215,-0.257599,0.00844271,0.811193,-0.58273,-0.0489008,0.806266,-0.588854,-0.0564551,0.762156,-0.64735,0.00755122,0.770427,-0.636905,0.028181,0.454059,-0.890132,-0.0386635,0.464638,-0.885433,-0.0109754,0.769474,-0.637888,0.0317487,0.78067,-0.622401,0.0563194,0.462146,-0.88678,-0.00651032,0.475743,-0.879401,0.0179563,0.109728,-0.99336,0.0345843,0.104895,-0.993331,-0.047856,0.089879,-0.994356,-0.0563693,0.0940719,-0.994656,-0.0425395,0.502198,-0.817925,0.280706,0.474539,-0.873954,0.104962,0.896186,-0.318802,0.30857,0.89646,-0.306503,0.320025,0.98846,-0.0427407,0.145327,0.977243,0.0300938,0.209975,0.98292,0.0207018,0.182865,0.989546,0.041005,0.138265,0.987932,-0.00147141,0.154879,0.994325,0.0567739,0.0899734,0.95884,0.254741,0.125431,0.95319,0.231167,0.19491,0.931793,0.341992,0.12167,0.917954,0.396686,0.00115288,0.316753,-0.358997,-0.877946,-0.459532,-0.217057,-0.86123,-0.516785,-0.101247,-0.850107,-0.474573,-0.0558271,-0.878444,-0.589616,-0.793338,-0.151551,-0.706359,-0.641058,-0.300169,-0.341719,-0.937654,-0.0635077,-0.447854,-0.874061,-0.188266,-0.74754,-0.647781,-0.146847,-0.80182,-0.551259,-0.230648,-0.470172,-0.875308,-0.113019,-0.55409,-0.804223,-0.214965,-0.424391,-0.900511,-0.0947251,-0.549103,-0.788952,-0.275756,-0.2664,-0.963495,-0.0266259,-0.320766,-0.940222,-0.114422,-0.889539,-0.364544,-0.275369,-0.856098,-0.471336,-0.211986,-0.980907,-0.0875302,-0.173665,-0.977718,-0.158306,-0.137862,-0.809564,-0.448078,-0.379252,-0.702349,-0.68177,-0.204682,-0.941069,-0.255742,-0.221328,-0.943098,-0.130288,-0.305926,0.304563,-0.910526,-0.279613,0.226453,-0.914332,-0.335732,0.270635,-0.885552,-0.377564,0.321323,-0.886164,-0.333863,0.402429,-0.874051,-0.272188,0.343398,-0.868809,-0.356718,0.441847,-0.814126,-0.376789,0.394466,-0.793824,-0.462861,-0.949142,0.126123,-0.288483,-0.983621,0.0313,-0.177509,-0.964882,0.247015,-0.0893608,-0.996877,0.07155,-0.0334209,-0.557365,0.734154,-0.387766,-0.497287,0.828754,-0.256656,0.0123356,0.985101,-0.171537,-0.0755152,0.953402,-0.292101,0.70066,0.712464,-0.0383627,0.779946,0.619374,0.0897822,0.843307,0.536812,0.0258175,0.80961,0.566682,-0.152981,0.608779,0.782403,-0.131273,0.545543,0.771493,-0.327385,-0.204,0.855611,-0.475724,-0.346733,0.62558,-0.698874,0.161815,0.936276,-0.311773,0.0622619,0.846173,-0.529258,0.235722,0.969267,-0.070411,0.269977,0.962855,-0.00482053,-0.118636,0.940851,-0.317373,-0.209456,0.87705,-0.432334,-0.100213,0.993459,0.0547377,-0.110461,0.993135,0.0384867,0.269398,0.946455,0.1779,0.256454,0.946523,0.19577,-0.0975229,0.980818,0.168778,-0.108224,0.982689,0.150368,-0.109036,0.961835,0.250969,-0.104066,0.963935,0.244949,0.665592,0.746275,0.00773613,0.682375,0.728087,0.0652149,0.978968,0.187654,0.0800482,0.969711,0.21638,0.113318,0.896471,0.438447,0.0640628,0.841211,0.508312,0.184345,0.960931,0.206471,0.184338,0.96452,0.221188,0.144146,0.900239,0.404739,0.160489,0.894643,0.439327,0.0812816,0.881763,0.466737,0.0681966,0.904453,0.410946,0.114406,-0.0847982,-0.995273,-0.047339,-0.0866051,-0.990955,-0.102504,0.298124,-0.889812,-0.345479,0.371139,-0.899019,-0.232422,0.333655,-0.876742,-0.346406,0.304251,-0.874521,-0.377684,-0.153623,-0.98338,-0.0967701,-0.156757,-0.974173,-0.162521,0.142894,-0.971839,-0.187378,0.114213,-0.944266,-0.308735,-0.155421,-0.95773,-0.242071,-0.119705,-0.990976,-0.0603045,-0.24551,-0.968131,-0.0494667,-0.248714,-0.966779,-0.0589861,-0.133259,-0.989264,-0.0599893,-0.130083,-0.990321,-0.0484089,-0.153317,-0.988087,-0.013372,-0.163731,-0.985989,-0.0319132,-0.16017,-0.966771,-0.199246,-0.119435,-0.977984,-0.171124,-0.161973,-0.969967,-0.181465,-0.132456,-0.977391,-0.16481,0.525084,-0.837789,-0.149656,0.520681,-0.839801,-0.153706,0.519234,-0.839279,-0.161266,0.525645,-0.836415,-0.155266,-0.990294,-0.122296,0.0660426,-0.994637,-0.0911421,0.0488871,-0.931427,-0.361728,0.0399529,-0.922895,-0.381696,0.0507311,-0.703252,-0.710795,0.0143871,-0.733885,-0.679241,-0.00671173,0.860881,0.499132,-0.0987472,0.841285,0.535908,-0.0710082,0.849734,0.497808,-0.173605,0.820122,0.555859,-0.135724,0.483708,0.873996,-0.0464542,0.553297,0.832979,-0.0029419,0.201051,0.964839,-0.169302,0.2876,0.948808,-0.130574,0.781945,0.591784,-0.195842,0.818509,0.546403,-0.177442,0.431611,0.897572,-0.0898674,0.287493,0.948202,-0.135135,0.122179,0.978231,-0.167738,0.199805,0.97229,-0.121365,0.957081,0.252349,-0.142535,0.962147,0.237076,-0.134421,0.795429,-0.599485,-0.0889378,0.806831,-0.586117,-0.074097,0.529217,-0.842654,-0.0993204,0.533187,-0.840686,-0.0946498,0.508773,-0.849357,-0.140505,0.5322,-0.838228,-0.118898,0.966706,-0.255475,-0.0145329,0.960824,-0.275247,-0.0324868,0.511211,-0.84392,-0.162674,0.473317,-0.85873,-0.196353,0.124267,-0.976877,-0.173979,0.154903,-0.976432,-0.150284,0.129823,-0.970698,-0.202215,0.0775461,-0.96722,-0.241809,-0.283621,-0.936371,-0.206807,-0.215245,-0.963905,-0.156709,-0.281169,-0.934788,-0.217059,-0.323392,-0.9131,-0.248325,-0.624041,-0.75712,-0.193238,-0.670107,-0.704358,-0.23417,-0.678785,-0.708712,-0.192298,-0.729947,-0.640751,-0.237942,-0.852123,-0.496396,-0.165762,-0.882918,-0.420768,-0.208352,-0.89159,-0.42386,-0.159408,-0.918048,-0.341324,-0.201709,-0.744549,-0.648002,-0.160437,-0.789911,-0.578185,-0.204312,-0.361663,-0.902426,-0.234153,-0.395181,-0.881452,-0.258599,-0.323426,-0.913132,-0.248166,-0.35446,-0.895165,-0.270254,0.0577178,-0.954311,-0.293187,0.0646854,-0.95536,-0.288275,0.0819776,-0.959069,-0.271046,0.0570902,-0.955681,-0.288816,0.418484,-0.862504,-0.28453,0.384978,-0.869455,-0.309581,0.475728,-0.848488,-0.231843,0.418281,-0.864567,-0.278506,0.0726356,-0.957454,-0.279296,0.0642563,-0.956203,-0.285564,0.384721,-0.872004,-0.302653,0.380626,-0.872755,-0.305649,0.0681154,-0.964289,-0.255944,0.0327189,-0.957654,-0.286058,0.378444,-0.884511,-0.2728,0.377802,-0.884637,-0.273283,0.610555,-0.744017,-0.271406,0.589384,-0.755175,-0.286944,0.365245,-0.917728,-0.156116,0.223391,-0.941486,-0.252391,0.595051,-0.770734,-0.22778,0.658087,-0.73177,-0.177298,-0.445393,-0.859475,-0.250853,-0.403716,-0.888896,-0.216512,-0.511422,-0.803547,-0.304566,-0.448833,-0.861696,-0.236702,-0.827734,-0.51783,-0.216124,-0.8537,-0.449844,-0.262367,-0.800311,-0.582246,-0.143149,-0.834442,-0.519759,-0.183188,0.643763,-0.711655,-0.281275,0.606752,-0.731594,-0.31084,0.905844,-0.360696,-0.222138,0.864996,-0.417318,-0.278617,0.872379,-0.424814,-0.241843,0.833363,-0.473033,-0.285913,-0.951581,-0.261906,-0.160931,-0.930727,-0.345474,-0.119979,-0.959803,-0.264437,-0.0940845,-0.970418,-0.208226,-0.122188,-0.986518,-0.0418815,-0.158203,-0.984515,-0.131548,-0.115869,-0.996522,-0.047817,-0.0682456,-0.994757,0.0196633,-0.100358,-0.943037,0.305431,-0.131885,-0.978033,0.193574,-0.0773395,-0.967585,0.19982,-0.154437,-0.987726,0.109887,-0.111009,-0.97316,-0.126689,-0.192118,-0.966661,-0.204378,-0.154259,-0.993252,0.0457097,-0.106592,-0.983785,0.112439,-0.139732,-0.94992,-0.269507,-0.158173,-0.96022,-0.201478,-0.193349,-0.997848,-0.0231693,-0.0613386,-0.995038,0.0439486,-0.0892579,-0.94184,-0.313451,-0.121184,-0.952376,-0.270441,-0.140863,-0.993801,0.0203681,-0.109289,-0.994229,0.0142978,-0.10632,-0.903593,0.422113,-0.0730757,-0.869921,0.492424,0.0274815,-0.955933,0.29337,-0.0112148,-0.902624,0.422907,-0.0801225,-0.961775,-0.205981,-0.180443,-0.961891,-0.20497,-0.180977,-0.818082,-0.556139,-0.146463,-0.849524,-0.495504,-0.181067,-0.93363,-0.301553,-0.193395,-0.913607,-0.381247,-0.141326,-0.843304,0.525386,-0.113174,-0.794269,0.607539,0.0056864,-0.888589,0.452395,-0.0758202,-0.857849,0.513685,0.0149436,-0.684332,-0.690687,-0.233754,-0.755331,-0.555548,-0.347622,-0.790703,-0.572925,-0.215742,-0.851584,-0.513478,-0.105572,-0.902305,-0.363116,-0.232361,-0.885613,-0.434266,-0.164631,-0.848599,-0.436158,-0.299409,-0.849428,-0.431638,-0.303581,-0.488733,-0.819875,-0.298238,-0.295177,-0.945682,-0.136224,0.132203,-0.970029,-0.203879,0.216817,-0.965489,-0.144296,0.604178,-0.777925,-0.172632,0.660668,-0.741204,-0.118889,0.870255,-0.480029,-0.110578,0.893886,-0.420049,-0.156607,0.84787,-0.481991,-0.220911,0.854834,-0.462962,-0.234361,0.939181,-0.311143,-0.145359,0.937035,-0.320553,-0.138607,0.996829,-0.00757028,-0.0792083,0.995588,0.013575,-0.0928443,0.935992,-0.345864,-0.0655513,0.94145,-0.327331,-0.0807862,0.999452,0.0302262,-0.0135301,0.999968,0.00489934,0.00626121,0.863,-0.494382,-0.104011,0.89251,-0.417957,-0.16952,0.935905,-0.345549,-0.0683945,0.898052,-0.408204,-0.163924,0.999605,0.0280715,0.00123112,0.99792,-0.0362461,0.0533144,0.999408,-0.0310414,0.0148382,0.98408,-0.1454,0.102208,0.891001,-0.402295,-0.210417,0.851708,-0.515042,-0.0965711,0.0634662,-0.939082,-0.337783,0.131318,-0.949295,-0.285647,0.0227274,-0.954716,-0.296648,0.0636367,-0.940367,-0.334157,0.52112,-0.828814,-0.20372,0.591908,-0.752387,-0.289067,0.533136,-0.788795,-0.30589,0.511509,-0.812222,-0.280454,-0.0960372,-0.844115,-0.527491,-0.0700673,-0.832958,-0.548882,-0.067547,-0.931544,-0.357299,-0.132813,-0.945401,-0.297619,0.507918,-0.829862,-0.230971,0.545074,-0.797954,-0.257223,-0.478195,-0.834913,-0.272489,-0.548586,-0.762412,-0.343192,-0.943257,-0.158384,-0.291857,-0.945695,-0.259249,-0.196087,-0.931071,-0.262357,-0.253526,-0.931478,-0.266787,-0.247334,-0.975078,0.0764909,-0.208258,-0.948645,0.156366,-0.274995,-0.980523,0.0394572,-0.1924,-0.97016,0.0762008,-0.230179,-0.961866,0.154757,-0.22553,-0.961967,0.154406,-0.225341,-0.808797,0.582306,-0.0822647,-0.823193,0.563268,-0.0712848,-0.876324,0.479577,0.0454169,-0.833232,0.55243,0.0233508,-0.937986,-0.0875086,-0.335446,-0.944963,-0.158475,-0.286235,-0.97244,-0.0942565,-0.213253,-0.972512,-0.136458,-0.188679,-0.903253,-0.288653,-0.317513,-0.900954,-0.320653,-0.292342,-0.930122,-0.335075,-0.150322,-0.920501,-0.367295,-0.13331,-0.982521,-0.185701,-0.0129726,-0.988602,-0.146938,-0.0327993,-0.873129,-0.487118,-0.0190078,-0.923059,-0.379418,-0.0632757,-0.979817,-0.189215,0.0644693,-0.974448,-0.212159,0.0737521,-0.883374,0.409427,0.22808,-0.860562,0.460711,0.217204,-0.846217,0.470093,0.250858,-0.873621,0.406001,0.268235,-0.505697,0.750583,0.425318,-0.571048,0.686278,0.450473,-0.40732,0.831113,0.378605,-0.507869,0.753289,0.417881,-0.144621,0.839117,0.524374,-0.0547051,0.873126,0.484415,-0.145509,0.854114,0.499317,-0.204326,0.826127,0.525133,-0.588189,0.713423,0.38087,-0.500801,0.796686,0.338363,-0.230179,0.927389,0.294903,-0.193322,0.921667,0.336388,-0.212055,0.956384,0.200907,-0.0796202,0.989806,0.118086,-0.941136,0.337953,0.0070911,-0.893172,0.448028,-0.0389296,-0.613367,0.78636,0.0736205,-0.568045,0.821842,0.0436019,-0.931366,0.35482,-0.0816155,-0.981294,0.192391,-0.00685406,-0.644383,0.762155,0.0623714,-0.609399,0.792275,0.030551,-0.0395842,0.999139,-0.0124328,0.0168216,0.998589,0.0503691,0.17922,0.982389,0.0528396,0.209228,0.974457,0.0815956,0.130068,0.968017,0.214537,0.144644,0.962666,0.228805,0.524132,0.828188,0.198469,0.502528,0.846285,0.176827,0.650419,0.693757,0.309285,0.480599,0.746687,0.459873,0.874282,0.421847,0.240157,0.826117,0.545439,0.141518,0.872913,0.420097,0.248076,0.89762,0.257678,0.357604,0.604109,0.649944,0.461113,0.604072,0.650013,0.461064,0.92494,0.243849,0.291589,0.921762,0.279187,0.26909,0.975972,-0.184203,0.116396,0.985464,-0.144047,0.0900671,0.683613,0.607175,0.404984,0.648692,0.675326,0.350905,0.838214,-0.541046,-0.0683126,0.852177,-0.515965,-0.0870275,0.811242,-0.580862,-0.066973,0.838986,-0.535741,-0.0953142,0.970746,-0.2311,0.0651503,0.98391,-0.175335,0.0343284,0.821119,0.546874,0.163376,0.823835,0.541468,0.167653,0.76018,0.55902,0.331092,0.724479,0.627683,0.284857,0.960021,0.189216,0.206292,0.952283,0.25298,0.170761,0.801899,0.579981,0.143457,0.847117,0.49666,0.189001,0.97984,0.197417,0.0306531,0.988643,0.138348,0.0586994,-0.34603,0.885657,0.309636,-0.415567,0.842618,0.342489,-0.794249,0.564071,0.225813,-0.843415,0.469294,0.261562,-0.766175,0.640335,-0.0542852,-0.799516,0.600136,-0.0247332,-0.781144,0.604601,-0.155794,-0.746749,0.655559,-0.112286,-0.985804,0.134608,-0.100351,-0.984149,0.157148,-0.0821919,-0.973497,0.197359,-0.115554,-0.975107,0.183504,-0.124471,-0.299307,0.936677,0.181802,-0.355773,0.910386,0.211239,-0.290484,0.956875,0.00310744,-0.291373,0.956607,0.00242597,0.0651346,0.973439,0.219485,0.0680272,0.972727,0.221754,0.0999382,0.994977,0.00574154,0.112038,0.993607,0.0138809,-0.276253,0.950358,-0.143193,-0.22901,0.967269,-0.109296,-0.97816,-0.20758,0.0106699,-0.984389,-0.175987,-0.00261981,-0.983554,0.1141,0.140007,-0.985393,0.0632789,0.158101,-0.9915,0.11611,0.0586983,-0.988594,0.142685,0.0482042,-0.12987,-0.968728,-0.211426,-0.130652,-0.968516,-0.21191,-0.742557,-0.655186,-0.139072,-0.757384,-0.641674,-0.120931,-0.7571,-0.644824,-0.104888,-0.728012,-0.679829,-0.0884887,-0.733459,-0.679302,-0.0242489,-0.736702,-0.67571,-0.0262065,-0.926534,-0.376121,-0.00824205,-0.93119,-0.36453,-0.002032,-0.0430458,-0.997123,-0.0623954,-0.11626,-0.989072,-0.0906681,-0.727309,-0.681875,-0.0778913,-0.735833,-0.673541,-0.0699435,-0.115558,-0.98769,-0.105425,-0.114571,-0.987863,-0.104882,0.525546,-0.839934,-0.135326,0.574569,-0.810814,-0.111582,-0.9762,-0.172116,-0.131948,-0.980081,-0.158114,-0.120172,-0.984789,-0.172176,-0.0233651,-0.992385,-0.123169,0.00135994,-0.744776,0.655042,-0.127393,-0.729229,0.674708,-0.113988,-0.731696,0.679662,-0.0517685,-0.769868,0.637643,-0.0267284,-0.769832,0.637893,-0.0212693,-0.782342,0.622771,-0.00988323,-0.970729,0.234402,0.0523541,-0.950044,0.312107,0.00218291,0.808063,-0.574492,-0.130362,0.812586,-0.569299,-0.12491,0.824741,-0.546907,-0.143857,0.818968,-0.553993,-0.149612,0.96897,-0.216032,-0.120115,0.967792,-0.22364,-0.1156,0.972697,-0.191764,-0.130716,0.966079,-0.21203,-0.147428,0.843704,-0.516786,-0.145242,0.861768,-0.490485,-0.129535,0.970898,-0.192003,-0.143149,0.968644,-0.209034,-0.134287,0.966437,0.188972,-0.174039,0.953243,0.232412,-0.193165,0.968824,-0.182849,-0.167171,0.967689,-0.192555,-0.162791,-0.0862524,0.991806,0.0942416,-0.098702,0.99188,0.0802044,-0.085001,0.988669,0.123729,-0.0898212,0.988849,0.118782,0.354381,0.92511,0.136331,0.371727,0.915493,0.153919,0.36909,0.922151,0.115805,0.358638,0.927718,0.103528,0.383045,0.919518,0.0881057,0.41411,0.901445,0.126137,0.683821,0.725885,0.0740236,0.703485,0.703566,0.10052,0.658147,0.74257,0.124225,0.673435,0.72526,0.143118,0.711649,0.702301,0.0181371,0.741724,0.668147,0.0585249,0.426782,0.903464,0.0401229,0.452529,0.888869,0.0716229,0.745454,0.666555,-0.00161535,0.763866,0.64494,0.0236887,0.925013,0.372047,-0.0770227,0.95802,0.286595,-0.00784629,0.903448,0.427176,-0.0360874,0.92771,0.373208,0.00833486,-0.00133142,0.999978,0.00656419,0.0788347,0.991305,0.105355,-0.0760845,0.994972,0.0651249,-0.0202071,0.990757,0.134133,0.100649,0.993951,-0.0439444,0.162735,0.986137,0.0324099,-0.388912,0.915645,-0.1017,-0.191741,0.968152,0.160989,-0.488643,0.871875,-0.0325907,-0.412967,0.907539,0.0763635,0.175276,0.982426,-0.0641615,0.204646,0.978358,-0.0305792,-0.0315485,0.998811,0.0371688,-0.150265,0.983735,-0.0984183,0.207386,0.977033,-0.048964,0.228914,0.973119,-0.0252369,0.0345081,0.999393,-0.00467852,-0.0113651,0.998319,-0.0568316,0.95259,0.286978,-0.101079,0.981678,0.189004,-0.0242216,0.765075,0.643777,-0.0145603,0.773524,0.633759,-0.00311714,0.996123,0.0608195,-0.0635573,0.996105,0.0635855,-0.0610818,0.952963,-0.28815,-0.0939728,0.936715,-0.325307,-0.129388,0.998257,0.0586761,-0.006344,0.998153,0.0603083,-0.00736917,0.954389,-0.292182,-0.0614152,0.960714,-0.273955,-0.0444716,0.993154,0.0655034,-0.0967182,0.989686,0.0149383,-0.142475,0.932114,-0.318591,-0.172231,0.906948,-0.361968,-0.215462,0.996829,0.0588848,0.0535266,0.994438,0.101544,0.0279728,0.795564,-0.598175,-0.0962549,0.76092,-0.633819,-0.138832,0.760769,-0.629795,-0.156809,0.700323,-0.678808,-0.220833,0.991323,0.112203,-0.0684803,0.972976,0.192006,-0.128265,0.776929,0.628254,-0.0409754,0.773347,0.632353,-0.0454343,0.983262,0.117227,-0.139477,0.998882,-0.0125974,-0.045554,0.79524,0.606177,-0.01191,0.777096,0.628359,-0.0358746,0.79646,0.601159,0.0652605,0.823736,0.5581,0.099918,0.682751,-0.616057,0.392842,0.662887,-0.702518,0.258938,0.201669,0.937443,0.283779,0.254342,0.943435,0.212699,0.626362,0.766549,0.14168,0.558738,0.790124,0.252023,0.874732,0.471573,0.111637,0.876348,0.467777,0.114885,0.678844,0.721834,0.134636,0.660369,0.742937,0.109354,0.0808418,-0.996443,-0.0237919,0.0913586,-0.995804,-0.00520451,0.503779,-0.862532,-0.0473885,0.51591,-0.856045,-0.0319951,0.121058,-0.990843,-0.0597899,0.130156,-0.99027,-0.0492322,-0.155648,-0.986656,-0.0477835,-0.181962,-0.980153,-0.0786732,-0.171518,-0.979405,-0.106519,-0.215792,-0.96412,-0.15462,0.981968,0.154218,-0.109344,0.983227,0.148497,-0.105891,0.974426,-0.218353,-0.0530679,0.971896,-0.230676,-0.0469655,0.0167982,-0.974934,-0.221858,-0.228635,-0.885343,-0.404839,-0.600356,-0.647839,-0.46891,-0.498652,-0.797314,-0.340055,-0.815841,-0.431832,-0.38461,-0.814474,-0.439044,-0.379306,-0.861728,0.505089,-0.0480561,-0.82484,0.564375,0.0334766,-0.988992,0.0172777,-0.146958,-0.987172,0.0382817,-0.155,-0.549377,0.831205,0.0853381,-0.688412,0.712362,-0.136491,-0.369558,0.924341,0.0949742,-0.521204,0.848311,-0.0933528,-0.273559,0.9607,0.0471331,-0.341009,0.939457,-0.0336599,0.926222,-0.303597,-0.223477,0.961924,-0.227802,-0.151027,0.856227,-0.486262,-0.174424,0.793146,-0.546336,-0.26914,-0.820771,-0.50437,-0.268228,-0.831965,-0.467057,-0.299486,-0.807595,0.58595,-0.0667327,-0.810141,0.581364,-0.0754134,-0.294365,0.951088,0.0937054,-0.325764,0.944776,0.0357234,-0.355285,0.921398,0.157476,-0.503704,0.824685,0.257251,-0.997152,0.0685266,-0.0314953,-0.989432,0.133735,-0.0560345,0.173613,0.92671,0.333268,0.118399,0.953134,0.278419,0.132284,0.832284,0.538334,0.261085,0.845888,0.46509,0.529663,0.808095,0.25776,0.517926,0.819653,0.244791,0.511737,0.85651,0.0672073,0.452404,0.891741,0.011357,0.447008,0.863031,0.235289,0.448631,0.861821,0.23663,0.361976,0.818557,0.446025,0.318926,0.856825,0.405138,0.298637,0.822707,0.483704,0.251438,0.822666,0.509902,0.412985,0.828389,0.378437,0.38711,0.850738,0.355514,0.0301729,0.908946,0.41582,-0.0573051,0.888371,0.455536,0.453074,0.890772,-0.0353377,0.455092,0.88982,-0.0333482,-0.980137,-0.158194,-0.119612,-0.979539,-0.164368,-0.116129,-0.865065,-0.478962,-0.149192,-0.885537,-0.4487,-0.120384,0.573197,-0.80957,-0.126654,0.612036,-0.783711,-0.105873,0.886554,0.449455,0.109595,0.877013,0.471628,0.0917309,0.460744,0.887526,0.00351187,0.465855,0.884809,0.00963963,0.993151,0.0127901,-0.116133,0.97333,-0.0923431,-0.210002,0.889047,0.453035,0.0659925,0.893558,0.427547,0.136956,0.163269,-0.694443,-0.70078,0.348331,-0.883402,-0.313474,-0.480859,-0.840948,-0.248157,-0.495062,-0.828444,-0.261906,-0.930615,0.216802,-0.294879,-0.932617,0.29958,-0.201191,-0.991162,-0.0123383,-0.132083,-0.991635,-0.107621,-0.0712612,0.664504,0.736657,0.125583,0.616685,0.759259,0.207909,0.939223,-0.332795,0.0843045,0.943035,-0.323554,0.0774441,0.148041,-0.981329,-0.122789,0.155169,-0.981146,-0.115215,0.97578,0.171476,-0.135825,0.976748,0.157074,-0.145918,0.99223,0.0994932,0.0747047,0.990508,0.124012,0.0592922,-0.56645,-0.807432,-0.164888,-0.620528,-0.755837,-0.20894,0.699533,-0.675344,-0.233589,0.643501,-0.710803,-0.284015,-0.928043,-0.268467,-0.258191,-0.93155,-0.20093,-0.303055,-0.744475,-0.642298,-0.182237,-0.653597,-0.683403,-0.325225,-0.898627,-0.287617,-0.331279,-0.891954,-0.361911,-0.270997,-0.993003,0.0625127,0.100184,-0.99329,0.0481077,0.105172,0.519939,-0.836924,-0.170941,0.506264,-0.842046,-0.186159,-0.769161,0.626843,0.124337,-0.806886,0.570912,0.15164,0.031459,0.929999,0.366213,0.0521901,0.93296,0.356176,-0.175621,0.978103,-0.111682,-0.226517,0.964339,-0.136894,-0.874523,-0.482446,-0.0495541,-0.867799,-0.494954,-0.044103,-0.725928,-0.668175,-0.163002,-0.709505,-0.688583,-0.149853,-0.90708,-0.407828,-0.104316,-0.884206,-0.445833,-0.139333,0.525558,-0.840207,-0.133574,0.52689,-0.839514,-0.132676,0.813022,-0.571204,-0.112788,0.808048,-0.576789,-0.119887,0.82343,-0.545342,-0.156731,0.844258,-0.51676,-0.142084,0.0142211,-0.998442,-0.0539535,-0.0428062,-0.996097,-0.0771945,0.892598,0.448918,0.0417233,0.901558,0.428721,0.058241,-0.712825,0.700427,0.0358181,-0.780864,0.615128,-0.108941,-0.502609,0.858508,0.101726,-0.563656,0.825971,0.00800486,0.468227,0.883453,-0.016539,0.454969,0.889956,-0.0313332,0.946694,-0.212473,-0.242129,0.984812,-0.100156,-0.141822,0.409114,-0.905534,0.112401,0.366478,-0.928233,-0.0638557,0.3863,-0.920015,-0.0659149,0.321241,-0.918829,-0.229253,0.411571,-0.911216,0.0171792,0.411773,-0.911064,0.0201334,0.239032,-0.968065,0.0755875,0.216632,-0.972884,-0.0810371,0.0803865,-0.996559,-0.0202147,0.0793189,-0.995884,-0.0438551,0.981865,0.0258037,0.187815,0.987835,0.0431751,0.149393,0.919717,-0.323741,0.222065,0.920202,-0.317148,0.229446,0.989343,0.0126881,0.145052,0.985647,0.00188687,0.16881,0.944604,0.326054,0.0375915,0.954493,0.26,0.146092,0.550663,-0.496624,-0.670921,0.331681,-0.30632,-0.892276,0.410056,-0.828978,-0.380327,0.438603,-0.842608,-0.312472,0.302128,-0.912735,-0.275016,0.343905,-0.911328,-0.226296,0.161555,0.937357,-0.308645,0.243588,0.952967,-0.180331,-0.102451,0.992472,-0.0671097,-0.132121,0.985082,-0.110265,0.26372,0.962497,0.0636499,0.278399,0.955821,0.0943416,0.613513,0.76612,-0.191476,0.672183,0.738376,-0.0545148,0.973123,0.193866,0.124291,0.973371,0.195872,0.119092,0.901024,0.422861,0.0966723,0.903433,0.403915,0.143743,0.16178,-0.983795,-0.0772905,0.130825,-0.959182,-0.25071,0.196173,-0.946466,-0.256357,0.157215,-0.915136,-0.371226,0.304461,-0.874366,-0.377873,0.317761,-0.878505,-0.35673,-0.367189,-0.901222,-0.230155,-0.283146,-0.957548,-0.0541223,-0.24644,-0.966899,-0.066136,-0.244813,-0.968259,-0.0504096,-0.128748,-0.990048,-0.0568171,-0.129148,-0.989492,-0.0650042,0.856665,0.508369,-0.0876718,0.889626,0.45238,0.0625944,-0.527654,-0.575993,-0.62435,-0.142464,-0.936882,-0.319306,0.676288,0.728194,0.111216,0.669049,0.738353,0.084905,0.402216,0.896923,-0.183716,0.516799,0.855846,-0.0211554,-0.511831,0.132583,-0.848794,-0.483306,0.129336,-0.865845,-0.996948,-0.0542821,0.0561007,-0.992655,-0.0903463,0.0804561,-0.922266,-0.381084,0.0648089,-0.91731,-0.394466,0.0542206,-0.666866,-0.744076,0.0405047,-0.703246,-0.710918,0.00641901,0.952952,0.278331,-0.120058,0.961214,0.254549,-0.106169,-0.949898,0.31228,0.0132611,-0.923568,0.378874,0.0589586,0.862517,-0.490869,-0.122927,0.870994,-0.478078,-0.113187,0.970776,-0.209158,-0.117675,0.971481,-0.204184,-0.120558,0.01394,-0.999483,-0.0289698,0.0761466,-0.994717,-0.0688494,0.650588,-0.750894,-0.113548,0.614078,-0.784943,-0.0822962,-0.174855,0.983381,-0.0488691,-0.099896,0.991898,-0.0784785,0.433098,0.898941,-0.0658195,0.444432,0.892899,-0.0721859,0.822999,0.550088,-0.141688,0.836817,0.531328,-0.132015,-0.241114,0.970497,7.97399e-005,-0.0997441,0.992182,-0.0750005,-0.782211,0.623,0.00415988,-0.790896,0.611942,-0.00326752,0.445093,0.893859,-0.0539266,0.452368,0.889886,-0.0588713,0.857002,0.502822,-0.112772,0.839859,0.534862,-0.0925171,-0.319923,0.947425,0.00592101,-0.241799,0.969404,-0.0423059,0.156905,-0.9457,-0.284663,0.198481,-0.94535,-0.258687,-0.0702606,0.135266,-0.988315,0.203416,-0.0511703,-0.977754,-0.247432,0.0592191,-0.967094,-0.0488866,0.00171528,-0.998803,0.192932,-0.157223,-0.968534,0.314346,-0.311927,-0.896598,-0.496855,0.27538,-0.822983,-0.394012,0.312401,-0.864384,-0.29534,0.853166,-0.429979,-0.250835,0.880854,-0.40147,-0.313694,0.948732,0.0387739,-0.337279,0.941252,0.0169761,-0.330241,0.938702,-0.0988869,-0.321391,0.942496,-0.0916972,-0.255062,0.937763,0.235679,-0.29649,0.9358,0.190714,-0.404575,0.530241,-0.745093,-0.261836,0.632849,-0.728659,-0.294276,0.945339,0.140482,-0.317955,0.940906,0.116623,-0.553226,0.0485613,-0.831615,-0.276186,-0.0768025,-0.958031,0.943259,-0.322312,0.0798629,0.93846,-0.332294,0.0941964,0.415936,-0.891344,0.180286,0.399528,-0.913957,0.0711343,0.939048,-0.320808,0.123577,0.939192,-0.320536,0.12319,0.389184,-0.917208,0.085237,0.386409,-0.920889,0.0514971,0.74056,-0.668493,0.0684783,0.733656,-0.678942,0.0280373,0.703081,-0.702425,0.110798,0.700244,-0.707552,0.0950147,0.662689,-0.726362,0.182322,0.674383,-0.698967,0.238018,-0.0978232,0.976756,0.190731,-0.0761241,0.983207,0.165856,-0.0606621,0.98799,0.142113,-0.0814673,0.98921,0.121769,0.224864,-0.844431,-0.486182,0.132571,-0.804021,-0.579633,0.167575,-0.952286,-0.25509,0.193781,-0.952865,-0.233446,-0.886198,-0.453362,0.0954722,-0.836102,-0.497389,0.231381,-0.994344,-0.0524006,0.0923777,-0.99274,-0.0621928,0.102949,-0.979117,0.167556,-0.11513,-0.989582,-0.0577806,0.131869,-0.970932,0.162692,0.175564,-0.931685,-0.0768368,0.355048,-0.858373,-0.463706,0.219484,-0.855007,-0.478945,0.198935,-0.838047,-0.537333,-0.0946024,-0.947079,-0.281637,0.154018,-0.684323,-0.440868,0.580808,-0.822944,-0.518978,0.231138,-0.832611,-0.41507,0.36671,-0.929822,-0.295516,0.219318,-0.802063,-0.532697,0.270053,-0.820121,-0.530211,0.21512,-0.750385,0.569312,0.335866,-0.767781,0.557763,0.315299,-0.298063,0.893794,0.335097,-0.317064,0.89339,0.318316,-0.764534,0.592735,0.253284,-0.75858,0.596659,0.261829,-0.958281,0.266213,0.104062,-0.839883,0.437325,0.321471,-0.943171,0.258447,0.208886,-0.941623,0.216048,0.258203,-0.484612,-0.760509,0.432177,-0.5106,-0.735151,0.445915,0.0594752,-0.802317,0.593928,0.0856038,-0.811327,0.578291,0.140037,-0.590371,0.794891,0.0417276,-0.591484,0.805236,-0.125747,-0.622043,0.772819,-0.34941,-0.572025,0.742092,0.659589,-0.749291,-0.0592156,0.656343,-0.752469,-0.0548098,0.113954,-0.992956,-0.0324589,0.078282,-0.99693,0.00125935,0.824852,-0.365682,0.431156,0.860454,-0.360955,0.359625,0.944156,0.305503,0.123442,0.948299,0.275922,0.156832,0.679699,0.732707,0.0339235,0.76435,0.616538,0.188812,0.910899,0.380353,-0.159982,0.956837,0.28762,-0.041694,0.626135,0.768195,-0.133534,0.68345,0.727782,-0.0568306,0.747819,0.263971,-0.609168,0.575532,0.349094,-0.739525,0.461918,0.532761,-0.709083,0.55427,0.521551,-0.648667,0.966349,0.128406,0.222895,0.956939,0.0385991,0.287713,0.877285,0.0810125,0.473084,0.903915,0.199108,0.378541,0.861982,0.0680676,0.502349,0.771348,-0.115636,0.625819,0.926241,0.00498934,0.376898,0.909779,-0.0697686,0.409188,0.996769,0.0328078,-0.0733126,0.998903,-0.04644,0.00606518,-0.0189911,-0.786135,0.617763,-0.0520638,-0.813814,0.578788,0.304282,-0.946769,0.105073,0.637505,-0.761143,0.11937,0.805759,0.355376,-0.473772,0.862809,0.30972,-0.399541,0.926849,0.227129,0.298937,0.926738,0.225566,0.30046,0.860324,0.245012,-0.447004,0.88223,0.217738,-0.417446,0.957563,0.118889,0.262561,0.960472,0.161646,0.226636,0.224232,0.162237,-0.960937,0.294348,0.130789,-0.946707,0.878176,0.119048,-0.463287,0.808073,0.196929,-0.555192,0.286823,0.11469,-0.951093,0.348601,0.0863377,-0.933286,0.200236,0.226581,-0.953188,0.0753761,0.280946,-0.956759,-0.0123772,0.232469,-0.972525,-0.0760714,0.254509,-0.964074,0.0666979,0.0739553,-0.995029,0.0676612,0.0773002,-0.994709,-0.0377174,0.683593,-0.728888,0.0496597,0.760138,-0.647861,0.179719,0.983679,-0.00871328,0.284105,0.952254,0.111788,-0.340181,0.940263,-0.0135146,-0.272534,0.959867,0.0661796,0.278121,0.942294,0.18636,0.351665,0.894347,0.276542,-0.977629,0.0967474,-0.186768,-0.977615,0.200192,-0.0647417,-0.803096,0.571911,-0.167194,-0.785323,0.606394,-0.124713,-0.757337,0.054614,-0.650736,-0.746026,0.0327748,-0.66511,-0.566933,0.388082,-0.726622,-0.565213,0.446281,-0.693807,-0.948534,-0.189038,-0.254063,-0.984078,-0.108386,-0.140864,-0.756725,-0.171185,-0.630923,-0.711122,-0.211954,-0.670359,0.320185,0.890395,0.32354,0.339975,0.875944,0.342256,0.0780315,0.0512275,-0.995634,0.0649859,0.0169163,-0.997743,0.112595,0.506991,-0.854566,0.0266282,0.419959,-0.907152,-0.400634,0.2936,-0.867924,-0.349759,0.395444,-0.849289,0.344083,0.151849,-0.926579,0.297365,-0.0485122,-0.953531,-0.284708,-0.152316,-0.946436,-0.196492,-0.00331224,-0.9805,-0.286617,0.286223,-0.914291,-0.453344,0.32194,-0.831164,0.148408,0.513994,-0.844858,0.140749,0.520178,-0.84238,0.611852,0.329406,-0.719117,0.624127,0.276452,-0.73078,0.671579,0.39055,-0.629644,0.657702,0.417923,-0.626712,-0.977282,-0.0513134,-0.205638,-0.97836,-0.0119666,-0.206564,-0.497079,0.450272,-0.741733,-0.551405,0.366336,-0.7495,-0.546305,0.349277,-0.761286,-0.590201,0.265347,-0.7624,-0.995026,0.00628178,-0.0994198,-0.994207,0.033315,-0.102186,-0.867867,-0.187028,-0.460248,-0.877528,-0.148673,-0.455897,-0.787122,-0.614296,-0.0554923,-0.899535,-0.436671,-0.0124798,-0.306089,-0.610331,-0.73062,-0.211251,-0.664088,-0.717189,-0.70902,-0.221375,-0.66954,-0.698863,-0.227166,-0.678223,-0.882616,0.0791717,-0.46338,-0.821952,0.0307331,-0.568728,-0.930569,-0.251699,-0.265874,-0.938942,-0.240365,-0.246197,-0.980043,-0.151333,-0.128898,-0.941822,-0.20714,-0.264697,-0.830414,-0.281434,0.48084,-0.975156,-0.122645,0.184468,-0.394179,0.0208531,-0.918797,-0.432632,-0.0641478,-0.899285,-0.483315,0.343505,-0.80524,-0.500502,0.309664,-0.808459,-0.937226,-0.0317053,-0.347278,-0.941368,-0.0790254,-0.327996,-0.953282,0.0897006,-0.288457,-0.953457,0.0886742,-0.288196,-0.277965,-0.344408,-0.896727,-0.230926,-0.256716,-0.938493,-0.857659,-0.419556,-0.297311,-0.89927,-0.228933,-0.372697,0.99912,0.0418241,0.00330677,0.999393,-0.0258227,0.0233709,0.647009,-0.444953,0.61919,0.654854,-0.433928,0.618767,0.999265,-0.0124801,0.0362311,0.984173,-0.165662,0.0629215,0.675959,-0.56374,0.474632,0.701622,-0.529275,0.477068,0.455824,-0.199529,0.867417,0.413035,-0.25744,0.873571,0.295754,-0.314223,0.902105,0.222683,-0.492411,0.841394,0.491211,-0.403458,0.771967,0.53424,-0.343651,0.772329,0.204981,-0.478304,0.853937,0.134252,-0.568204,0.811862,0.482205,-0.194984,0.854084,0.629177,-0.36301,0.687285,0.598112,-0.351693,0.720121,0.547895,-0.492152,0.67646,0.752094,-0.263608,0.604041,0.620319,-0.452197,0.640876,0.364834,-0.377878,0.850943,0.477856,-0.565205,0.672456,0.274999,-0.518691,0.809528,0.229931,-0.572686,0.786869,0.270541,-0.615509,0.74024,-0.0266645,-0.748515,0.662581,0.10571,-0.537295,0.836743,-0.00963147,-0.633931,0.77333,0.280613,-0.378634,0.881982,0.316617,-0.388239,0.865462,0.201711,-0.484264,0.851352,0.0449323,-0.473381,0.879711,0.170171,-0.42827,0.887483,0.208244,-0.43146,0.877768,0.259402,-0.388391,0.88423,0.282513,-0.389324,0.876706,0.0451395,-0.47375,0.879502,0.0509937,-0.465977,0.883326,0.161741,-0.429199,0.88861,0.117974,-0.487629,0.865043,0.34162,-0.36745,0.86503,0.373087,-0.587459,0.718121,-0.101355,-0.546918,0.831028,0.0257382,-0.398668,0.916734,0.135144,-0.541795,0.829575,-0.218044,-0.724549,0.653824,0.430721,-0.413915,0.801968,0.316592,-0.38808,0.865542,0.673618,-0.361943,0.644388,0.548694,-0.360867,0.754128,0.659961,-0.388942,0.642787,0.403659,-0.309494,0.860972,0.863463,-0.190093,0.467221,0.705651,-0.506062,0.495942,0.984032,0.0353852,-0.174436,0.98105,0.0786635,-0.177069,0.985988,0.106465,-0.128421,0.98949,0.0784169,-0.121494,0.712587,0.297717,-0.635283,0.668132,0.378999,-0.640281,0.395053,-0.0418215,0.917706,0.362509,-0.1694,0.916455,0.904003,0.159994,0.39646,0.906357,0.210197,0.366516,0.44453,-0.202278,0.872627,0.446487,-0.194388,0.87342,0.934021,0.265332,0.239175,0.941623,0.0521041,0.332613,0.0236517,-0.0395783,-0.998937,0.0372088,-0.0165984,-0.99917,0.0781169,0.0829696,-0.993486,0.312909,0.0391389,-0.948976,0.910788,-0.0859944,-0.403818,0.916819,0.123933,-0.379584,0.328859,-0.497384,-0.802783,0.383558,-0.393948,-0.835278,-0.960278,-0.21782,-0.174416,-0.956629,-0.253467,-0.143583,-0.890256,-0.42121,-0.173282,-0.906525,-0.364439,-0.213064,-0.855493,-0.360274,0.371932,-0.844891,-0.311753,0.434707,-0.788139,-0.468129,0.399615,-0.792247,-0.463528,0.396844,-0.88901,-0.399516,-0.223715,-0.915334,-0.277138,-0.292161,-0.366928,-0.308189,-0.877715,-0.634348,-0.200669,-0.746548,-0.557867,-0.349817,-0.752603,-0.695667,-0.274172,-0.663986,-0.802833,-0.421409,0.421751,-0.808616,-0.413886,0.418136,-0.459111,0.0850376,-0.884299,-0.502743,-0.0615597,-0.862241,0.218918,-0.369124,-0.903229,-0.196978,-0.207094,-0.958286,0.194727,0.107791,-0.974917,0.0978039,0.184022,-0.978044,-0.323564,-0.23958,-0.915373,-0.152852,-0.343421,-0.92666,-0.0994641,-0.32015,-0.942131,0.0574351,-0.413958,-0.908482,0.0685475,-0.493155,-0.867237,0.351166,-0.502268,-0.790196,-0.338891,-0.473876,0.81277,-0.304371,-0.367039,0.879,-0.327831,-0.498739,0.802363,-0.414893,-0.441092,0.795802,0.553143,-0.507925,0.660337,0.0812906,-0.341541,0.936345,0.493322,-0.333627,0.803322,0.521575,-0.234069,0.82047,-0.241966,-0.336516,0.91006,-0.275121,-0.437627,0.856032,-0.0145953,-0.416083,0.90921,0.155991,-0.513774,0.843625,0.346624,-0.442264,0.827197,0.449073,-0.488689,0.748009,0.629817,-0.442601,0.638306,0.496834,-0.672775,0.548205,0.147148,-0.49138,-0.858425,-0.135095,-0.436202,-0.88965,0.377323,-0.283138,-0.881737,0.200081,-0.24919,-0.947561,-0.171911,-0.270963,-0.947114,-0.247871,-0.249454,-0.936126,0.431603,0.00384573,-0.902056,0.360345,0.0470278,-0.931633,0.250527,-0.371911,-0.893822,0.492475,-0.339239,-0.801489,0.0490611,-0.486594,-0.87225,0.280423,-0.479454,-0.831557,0.262596,-0.18822,-0.94637,0.200246,-0.307527,-0.930231,0.125847,-0.257372,-0.958082,0.236057,-0.285421,-0.928877,-0.0297883,-0.510595,-0.859305,0.15712,-0.292835,-0.943165,0.390855,-0.27469,-0.878509,0.209818,-0.269842,-0.939767,0.374057,-0.0948906,-0.922538,0.348819,-0.0851154,-0.933317,0.142818,-0.202702,-0.96877,0.196674,-0.220161,-0.955431,0.0143613,0.187618,-0.982137,0.112517,0.0940427,-0.98919,0.0769033,0.0971668,-0.992293,0.151805,-0.126032,-0.980342,0.235959,-0.203509,-0.950214,0.172115,-0.308134,-0.935644,0.0917273,-0.271146,-0.958158,0.227967,-0.283755,-0.931404,-0.00475743,0.0223358,-0.999739,0.113428,-0.160516,-0.980494,0.134585,-0.226514,-0.964665,0.19397,-0.232497,-0.953058,0.0759612,0.0337109,-0.996541,0.0291154,0.051082,-0.99827,0.16315,-0.182962,-0.969488,0.116138,-0.26282,-0.95783,0.143694,-0.292013,-0.945558,-0.0506579,-0.484023,-0.873588,0.175381,-0.178595,-0.968166,0.162106,-0.195269,-0.96726,0.266259,-0.314124,-0.911281,0.332042,-0.240899,-0.911984,0.237297,-0.0855064,-0.967667,0.199033,-0.179366,-0.963438,0.404265,0.035667,-0.913946,0.331022,-0.0627173,-0.941537,0.188202,0.0424407,-0.981213,0.262873,0.306504,-0.914851,0.0563813,0.113921,-0.991889,0.0563446,0.114258,-0.991852,0.109038,-0.0467168,-0.992939,-0.109903,-0.302696,-0.946729,-0.510929,-0.117206,-0.851595,-0.404868,0.115755,-0.907019,0.0320734,0.0230852,-0.999219,0.152853,0.110258,-0.982079,0.299252,0.0328172,-0.95361,0.196478,-0.0508363,-0.97919,-0.184468,-0.961205,0.205077,-0.389248,-0.910073,0.142313,0.507351,-0.449325,0.735325,0.693875,-0.443287,0.567481,0.689275,-0.682085,0.244253,0.907667,-0.412487,0.0774265,0.599617,-0.0415462,0.799208,0.59966,-0.041456,0.79918,-0.255776,-0.240314,0.936391,-0.235537,-0.203266,0.950371,0.769927,-0.284507,0.571198,0.64024,-0.510136,0.574329,0.931221,-0.197564,0.30626,0.848841,-0.441568,0.290667,0.627748,-0.573265,0.526592,0.450596,-0.740016,0.499339,0.521501,-0.840126,-0.14908,0.807863,-0.578308,-0.113648,0.960338,-0.267428,-0.0789575,0.972069,-0.183747,-0.146011,0.374815,-0.520643,0.767101,0.175847,-0.386015,0.905577,0.407884,-0.10578,0.906885,0.421177,-0.117341,0.899356,0.955638,0.124786,0.266805,0.973584,0.0572717,0.221028,-0.155135,-0.441711,0.883643,-0.339751,-0.60716,0.71828,-0.323077,-0.610013,0.723537,0.07573,-0.809388,0.582371,-0.398533,-0.358048,0.844378,-0.517716,-0.265715,0.813244,-0.32749,-0.88336,0.3353,-0.502577,-0.825779,0.255941,-0.861262,-0.361387,0.357249,-0.853511,-0.422273,0.305294,0.649003,-0.759825,-0.0382171,0.75243,-0.658383,0.019525,0.924506,0.20485,0.321443,0.924578,0.208838,0.318657,0.882855,0.272566,-0.382458,0.902801,0.25029,-0.349721,0.963761,0.0601999,0.259886,0.964222,0.0642927,0.257183,0.897068,0.137101,-0.420086,0.927749,0.0903345,-0.362107,0.898048,0.27162,0.346023,0.898055,0.271208,0.346329,0.778762,0.368207,-0.507891,0.87643,0.295338,-0.380323,0.902243,0.0190301,-0.430808,0.833481,-0.0473498,-0.550515,0.838991,0.0271466,-0.543468,0.71843,-0.0482727,-0.693922,0.976848,-0.110665,0.183086,0.986845,-0.0605801,0.149888,0.980629,-0.165731,0.104407,0.994635,-0.0884991,0.0535645,0.84121,-0.185063,0.508053,0.771041,-0.33427,0.541996,0.761607,-0.268045,0.590006,0.712468,-0.345729,0.610623,0.386301,-0.467704,0.795,0.199493,-0.681272,0.704323,0.046615,-0.42775,0.902694,0.0379279,-0.439124,0.897626,0.88684,-0.300856,0.350715,0.893378,-0.419072,0.162035,0.439592,-0.894317,0.0834033,0.386982,-0.908376,0.158425,-0.552946,-0.777858,-0.298643,-0.558311,-0.776479,-0.29218,-0.427015,-0.864297,0.265799,-0.444084,-0.757323,0.478802,-0.0492078,-0.948719,-0.312266,0.0230616,-0.855132,-0.517896,0.0495266,-0.985274,0.163655,0.0349112,-0.988694,0.145828,0.372343,-0.453699,0.809641,0.289764,-0.573363,0.766349,-0.0810601,-0.660943,0.746045,0.0492556,-0.719244,0.693009,-0.0831996,-0.99349,-0.0778145,0.00763967,-0.971304,-0.237719,-0.727494,-0.686087,0.00609885,-0.743647,-0.634066,0.212014,0.477026,-0.568301,0.670433,0.344744,-0.518036,0.782809,0.91113,-0.212094,0.353353,0.953748,-0.277243,0.116194,0.452411,-0.880415,-0.142105,0.406256,-0.910834,-0.0730583,-0.921472,-0.27149,0.277817,-0.923914,-0.210045,0.319788,0.0559151,-0.888737,-0.454994,-0.265822,-0.818239,-0.509729,-0.826698,-0.0548343,0.559967,-0.873393,-0.236634,0.425663,0.128054,-0.988514,0.0802624,-0.0872453,-0.992253,0.088439,-0.96394,-0.242703,-0.109158,-0.982241,-0.143431,-0.120958,0.220126,-0.76752,-0.602044,0.254471,-0.762219,-0.595204,-0.875941,-0.213736,0.432487,-0.761972,0.116273,0.637087,-0.99096,0.0645399,-0.117616,-0.986549,0.117066,-0.114087,0.452735,-0.716828,-0.530272,0.697847,-0.506881,-0.506045,0.230924,-0.490884,-0.840064,0.326212,-0.536904,-0.778023,-0.069727,-0.556564,-0.827874,-0.176404,-0.681778,-0.709972,0.811638,0.0134058,-0.584006,0.806744,0.0263983,-0.590312,0.702537,-0.410411,-0.581382,0.774004,-0.179369,-0.607243,-0.189586,-0.520178,-0.832749,-0.263075,-0.704515,-0.659129,-0.587197,-0.627906,-0.510817,-0.519849,-0.672071,-0.52733,-0.0758301,-0.526224,-0.846958,-0.111448,-0.603147,-0.789806,0.626976,-0.193301,-0.754676,0.550663,-0.438273,-0.710413,-0.270754,-0.171615,-0.947228,-0.330382,-0.259217,-0.907554,0.198187,-0.0660668,-0.977935,0.1966,0.00409282,-0.980475,-0.306809,0.247009,-0.91916,-0.384331,0.193966,-0.902589,0.411793,-0.154861,0.898023,0.341173,-0.117388,0.932642,0.954382,0.133368,0.267147,0.951206,0.13972,0.27511,0.0261281,-0.375847,0.926313,0.116045,-0.301392,0.946413,0.713082,-0.360888,0.601061,0.754777,-0.301987,0.582336,-0.145966,-0.416515,0.897335,-0.246388,-0.546397,0.800464,-0.253299,-0.524549,0.812827,-0.344278,-0.629575,0.696497,0.453848,-0.503203,0.735397,0.48163,-0.512239,0.711087,0.463549,-0.373735,0.803396,0.466268,-0.374951,0.801253,-0.674451,-0.378335,0.634018,-0.708792,-0.276006,0.64918,-0.704714,-0.190215,0.683518,-0.65251,-0.323327,0.68534,0.111497,-0.529602,0.840887,0.0948938,-0.539458,0.836648,0.0733295,-0.534745,0.841826,0.100442,-0.569283,0.815983,-0.177461,-0.293039,0.939487,-0.209763,-0.333829,0.918998,-0.829714,-0.12318,0.544427,-0.787328,-0.218215,0.576625,-0.178177,-0.314384,0.932424,-0.17319,-0.310178,0.93477,0.735514,-0.524585,0.428755,0.801707,-0.436896,0.407907,0.687775,0.427477,-0.586711,0.683406,0.408771,-0.604865,0.116673,0.341749,-0.932521,0.117674,0.344008,-0.931564,0.693608,0.383806,-0.609591,0.692954,0.381271,-0.611921,0.098436,0.185608,-0.977681,0.139748,0.282241,-0.94911,0.604743,-0.308052,0.734432,0.747341,-0.265161,0.609238,0.840809,-0.0643306,0.537496,0.733475,-0.229402,0.639835,-0.940223,-0.258039,0.222252,-0.957312,-0.234784,0.168609,-0.968196,-0.245951,0.0458728,-0.971809,-0.234511,0.0243369,-0.99366,-0.0543749,0.0984,-0.993985,-0.107162,0.0226012,-0.984133,-0.0529045,0.169361,-0.981693,-0.0613295,0.180326,0.460681,-0.468011,0.754148,0.342544,-0.487916,0.802871,0.974549,-0.0136752,0.223757,0.974038,-0.224867,-0.0261848,0.966294,-0.234819,-0.105527,0.926733,-0.375675,0.00586987,0.101915,0.047021,-0.993681,0.0769385,0.0514225,-0.995709,-0.121762,0.166157,-0.978553,-0.113087,0.18124,-0.976915,-0.45321,-0.0118354,-0.891325,-0.70074,0.3948,-0.594219,-0.0857827,0.143364,-0.985945,-0.112298,0.17494,-0.978154,-0.0637563,0.119091,-0.990834,-0.0547441,0.143789,-0.988093,0.812392,0.329366,-0.481183,0.783642,0.344968,-0.516627,0.575303,-0.219823,0.787848,0.655703,-0.0937856,0.749172,0.581396,-0.146184,0.80038,0.677192,0.0470994,0.734297,0.465851,-0.218345,0.857501,0.509891,-0.131734,0.850093,0.48941,-0.144169,0.860054,0.51252,-0.0574869,0.856749,0.79703,0.235865,0.555977,0.766951,0.115989,0.631136,0.883195,0.322249,0.340768,0.881984,0.305652,0.358723,-0.104465,-0.489718,0.8656,0.024592,-0.506324,0.861993,0.117959,-0.466586,0.876575,0.0185942,-0.432845,0.901277,-0.33215,-0.363051,0.870557,0.0980203,-0.442817,0.891238,0.0904689,-0.364362,0.926853,0.155388,-0.39059,0.907356,-0.655683,-0.151163,0.73975,-0.187685,-0.351083,0.917341,0.023564,-0.379949,0.924707,-0.200627,-0.222011,0.95418,-0.62741,-0.00707325,0.778657,-0.847877,-0.134867,0.512752,-0.525165,-0.114547,0.843256,-0.617371,-0.214317,0.756915,0.996666,-0.0145251,0.0802908,0.981045,0.0384829,0.189919,0.956375,-0.0900221,0.277926,0.95627,-0.0911743,0.277913,0.286517,0.115772,-0.951055,0.243909,0.127212,-0.961418,0.0510918,0.98272,-0.177905,0.180153,0.983244,-0.0278488,-0.415541,0.881712,-0.223404,-0.336096,0.935062,-0.112692,-0.218903,0.150927,-0.964003,-0.224746,0.268313,-0.936748,0.96768,0.042023,0.248657,0.992669,-0.0737235,0.0957748,0.917253,-0.15385,0.367393,0.963612,-0.179032,0.198494,0.870072,-0.180864,0.458545,0.904999,-0.0752403,0.418706,-0.037476,0.0383063,-0.998563,-0.00849535,0.0323391,-0.999441,-0.394362,-0.0251719,-0.91861,-0.327712,-0.0897637,-0.940504,0.109145,0.518724,-0.847946,0.172575,0.572505,-0.801534,0.794497,0.325493,-0.512669,0.795831,0.322706,-0.512361,0.808569,0.387858,-0.442473,0.803324,0.396791,-0.444104,0.982331,-0.183547,0.0365549,0.996434,-0.0807881,0.024341,0.829118,0.167733,-0.533318,0.846594,0.134537,-0.514955,0.992984,0.105428,0.0535457,0.991638,0.121079,0.0446444,0.811339,0.304036,-0.499291,0.819554,0.312158,-0.480508,-0.81981,-0.0779706,-0.567303,-0.823065,-0.0458263,-0.566095,-0.941342,0.0346582,-0.335669,-0.929609,0.12062,-0.348251,0.22096,0.392372,-0.892872,0.247633,0.425508,-0.870414,-0.786241,-0.51016,0.348657,-0.840827,-0.405034,0.359108,0.439191,-0.103066,0.892462,0.43708,-0.247965,0.864566,0.460305,-0.270286,0.845615,0.388243,-0.470629,0.792323,-0.236257,-0.634545,0.735891,-0.162986,-0.691488,0.703761,0.643089,-0.535317,0.547606,0.685028,-0.475337,0.552079,0.345814,-0.357302,0.867611,0.412082,-0.249875,0.876214,0.162275,0.361731,-0.918051,0.136727,0.385913,-0.912347,0.180152,-0.495527,0.849705,-0.0408057,-0.428653,0.902547,-0.155485,-0.474352,0.866496,-0.0280039,-0.549035,0.83533,0.125551,-0.367383,0.921557,0.137749,-0.377029,0.915901,0.134313,-0.400026,0.906609,0.170452,-0.427814,0.887649,0.359688,-0.156866,0.919792,0.334835,-0.212718,0.917952,0.922487,0.0150691,0.385734,0.919301,0.0218487,0.392947,-0.796672,-0.357199,0.487568,-0.778409,-0.393995,0.48872,-0.158534,-0.605607,0.779812,-0.166473,-0.609858,0.774829,-0.0955753,0.247145,-0.964253,-0.34554,-0.116255,-0.931175,0.110776,0.259871,-0.959268,-0.0511404,0.225642,-0.972867,0.0709391,-0.127225,-0.989334,0.345312,-0.176025,-0.921832,-0.121343,-0.619618,-0.775467,0.120308,-0.669599,-0.732914,0.3911,-0.766851,-0.508902,0.665328,-0.591554,-0.455414,0.757102,0.21637,-0.616425,0.729888,0.27038,-0.62782,-0.95323,-0.173511,-0.247482,-0.955099,-0.128348,-0.267045,-0.840518,-0.261273,0.474621,-0.788462,-0.347914,0.507231,-0.0179934,-0.39841,0.917031,0.0225918,-0.345298,0.938221,0.351095,-0.385892,0.853123,0.209755,-0.463394,0.86097,0.11262,-0.224163,-0.968023,-0.0194969,-0.201592,-0.979276,0.186013,-0.19958,-0.962064,0.14517,-0.271764,-0.951352,0.01085,0.0413052,-0.999088,0.0304092,0.0396244,-0.998752,0.638484,-0.485895,0.596862,0.696382,-0.407502,0.590757,-0.443253,-0.232736,-0.865656,-0.429829,-0.17967,-0.884854,-0.37991,-0.312495,-0.870641,-0.266471,-0.382534,-0.884681,-0.890884,-0.362719,-0.273424,-0.897088,-0.319677,-0.305025,-0.804853,-0.508251,-0.306419,-0.772568,-0.534306,-0.34301,-0.671149,-0.326135,0.665729,-0.695464,-0.301063,0.65245,-0.616036,-0.553827,0.560156,-0.610941,-0.487866,0.623488,-0.126269,-0.187237,0.974166,-0.150539,-0.296026,0.943243,-0.0156658,0.0740968,-0.997128,-0.0311467,-0.00527195,-0.999501,0.491742,-0.212467,-0.844421,0.312662,-0.438586,-0.842547,0.0283944,0.0915179,-0.995399,0.0316938,0.0979316,-0.994688,0.246058,-0.176493,-0.953051,0.183297,-0.241134,-0.953025,0.461911,-0.245867,-0.852166,0.378878,-0.362124,-0.851656,0.306646,-0.180134,-0.934623,0.260525,-0.219809,-0.940112,-0.305151,-0.27161,-0.912749,-0.365236,-0.369944,-0.854251,0.279536,-0.147744,-0.9487,0.249524,-0.223262,-0.94228,0.923128,-0.384492,-0.000659225,0.977024,-0.11042,-0.182296,0.815458,-0.0427966,0.577232,0.807901,-0.0743174,0.584614,0.736717,0.0858363,0.670731,0.738531,0.101649,0.666513,0.772799,0.0151002,-0.634472,0.772003,0.0161325,-0.635414,0.816357,-0.214225,-0.536347,0.76269,-0.275104,-0.585339,0.161494,-0.00587033,-0.986856,0.146838,0.00390222,-0.989153,0.211681,-0.183755,-0.959909,0.19375,-0.170504,-0.966121,0.23604,-0.296674,-0.925348,0.205298,-0.382154,-0.901006,-0.462112,-0.85693,-0.228304,-0.241633,-0.961623,-0.129981,-0.688559,-0.724705,0.026271,-0.836262,-0.54833,0.000135621,0.873429,-0.480012,-0.0819203,0.88425,-0.462619,-0.0639217,0.795388,0.527519,0.298464,0.772778,0.578342,0.261409,0.617048,-0.569592,-0.54297,0.808633,-0.401667,-0.429856,0.98721,0.158908,0.0128199,0.993082,0.104617,0.053327,0.766993,-0.381279,-0.51609,0.823285,-0.106686,-0.557512,0.712379,-0.143324,0.687003,0.694751,-0.17312,0.698105,0.998583,0.0253379,-0.0467971,0.994148,0.0700604,-0.0822255,0.814941,-0.174268,-0.552723,0.77954,-0.424683,-0.460393,0.997049,0.0729379,0.0239361,0.997286,0.0704978,0.021207,0.874052,0.187338,-0.448261,0.907482,0.107789,-0.406028,0.845713,-0.0972091,-0.52471,0.784246,0.0140856,-0.62029,-0.728274,-0.375662,-0.573145,-0.721044,-0.416169,-0.553984,-0.145306,-0.150065,-0.97794,-0.227732,-0.100572,-0.968516,0.148934,-0.0911136,-0.984641,0.266752,0.0649136,-0.961577,-0.674373,-0.269893,-0.687298,-0.596128,-0.191017,-0.779836,-0.799948,-0.524535,0.291454,-0.87488,-0.300612,0.379759,-0.991051,-0.0316033,-0.129689,-0.985669,-0.0932547,-0.14057,-0.816055,-0.563469,-0.128677,-0.873591,-0.376878,-0.307898,-0.921824,-0.221527,0.318067,-0.905448,-0.166814,0.390302,-0.22717,-0.29372,0.928506,-0.238488,-0.307496,0.921178,-0.881868,-0.340797,0.325831,-0.842559,-0.312898,0.438393,0.972184,-0.23353,-0.0179506,0.990205,-0.113172,-0.0817709,-0.709989,0.192271,-0.677456,-0.645984,0.292777,-0.704972,-0.832103,-0.409722,0.373809,-0.866693,-0.35933,0.346014,0.893048,0.196766,-0.404659,0.819768,0.318833,-0.475737,0.906825,-0.069231,0.415782,0.902074,-0.066896,0.426365,0.360572,0.170427,-0.917029,0.249011,0.256674,-0.933869,-0.285882,0.0630734,-0.956187,-0.282981,0.0683961,-0.956684,-0.858132,-0.171995,-0.483764,-0.855638,-0.139819,-0.498331,-0.851188,-0.336826,0.402526,-0.871534,-0.39858,0.285592,0.957173,-0.1253,0.260998,0.905756,-0.09786,0.412347,0.895957,0.288345,-0.337814,0.885507,0.269952,-0.378158,0.345156,0.278438,-0.896292,0.397783,0.348883,-0.848557,-0.308892,0.134008,-0.941609,-0.292303,0.165786,-0.941846,-0.891407,-0.105047,-0.440861,-0.889191,-0.0831642,-0.449915,-0.898991,-0.29877,0.320237,-0.904166,-0.322794,0.279798,-0.895309,-0.0913101,-0.435987,-0.899437,-0.127565,-0.41802,0.397942,-0.389802,0.83048,0.422464,-0.357746,0.832792,-0.418042,-0.42732,0.801647,-0.468701,-0.48492,0.738358,0.400885,0.320832,-0.858113,0.403649,0.326121,-0.854817,0.886518,0.280126,-0.36826,0.892122,0.305994,-0.332395,-0.285968,0.146221,-0.947017,-0.282378,0.153527,-0.946938,-0.522402,-0.322733,0.789265,-0.508072,-0.304282,0.805776,-0.911701,-0.29666,0.284243,-0.909313,-0.275246,0.312074,0.889629,0.229656,-0.394737,0.901872,0.206795,-0.379293,-0.218977,-0.0599414,-0.973887,-0.310225,-0.0186075,-0.950481,-0.155471,-0.603893,0.781755,-0.131886,-0.587331,0.798529,-0.810785,-0.467565,0.352152,-0.819417,-0.467299,0.331945,0.779789,-0.0113828,-0.625939,0.685844,0.147289,-0.712688,0.993343,0.0883741,-0.0738933,0.985141,0.136916,-0.103693,-0.481016,-0.0111574,-0.876641,-0.536374,-0.137187,-0.832756,-0.210594,0.379545,-0.900886,-0.287437,0.332368,-0.898283,-0.724763,0.349202,-0.59395,-0.728278,0.343455,-0.593001,-0.996102,0.0859629,0.0197645,-0.996626,0.0795587,0.0201676,0.883512,-0.180452,-0.432254,0.851062,-0.342761,-0.397753,0.373546,0.181776,-0.909627,0.394539,0.100561,-0.91336,-0.966784,0.253309,-0.034099,-0.988401,0.15167,-0.0077229,-0.660215,0.140524,-0.737814,-0.62256,0.212128,-0.753273,0.511037,-0.0418427,-0.85854,0.735205,0.0538887,-0.6757,-0.12342,0.0398204,-0.991555,0.017104,0.149845,-0.988562,-0.977381,0.208845,0.0333064,-0.992083,0.115496,0.0493179,0.476252,0.230317,-0.848609,0.542903,0.0345597,-0.839084,-0.109338,0.358472,-0.927115,-0.229828,0.272268,-0.934371,0.991582,0.122896,0.0407647,0.944285,0.236229,0.229177,-0.521903,0.143638,-0.840824,-0.501851,0.192533,-0.843253,-0.509773,-0.0622465,-0.858054,-0.479482,0.0271745,-0.877131,-0.97378,-0.0381885,-0.224263,-0.975267,-0.0999847,-0.197123,-0.810079,-0.199074,0.55149,-0.713728,-0.356471,0.602926,-0.157197,-0.35265,0.922457,-0.190273,-0.461942,0.86626,-0.949892,-0.206442,-0.234708,-0.950834,-0.191382,-0.24349,-0.736699,-0.229208,0.63619,-0.674812,-0.313254,0.668207,-0.976795,0.19886,0.0795332,-0.966453,0.227375,0.119451,0.760521,0.615426,0.20702,0.795757,0.527641,0.297264,-0.110959,0.092404,-0.98952,-0.154384,0.0537562,-0.986547,-0.987104,0.0102454,-0.159752,-0.892823,0.207889,-0.399561,-0.938381,-0.00610548,0.34555,-0.908116,-0.0739326,0.412139,-0.89303,0.0910176,-0.440697,-0.882181,0.103566,-0.459381,0.138305,-0.474749,0.869186,0.217976,-0.471968,0.854244,0.46996,-0.33734,0.815683,0.564478,-0.227102,0.793593,0.277246,-0.433373,0.857509,0.327231,-0.426949,0.842991,-0.271345,0.919955,0.28294,-0.307652,0.91948,0.244758,-0.628962,-0.777233,0.0177481,-0.666807,-0.742273,0.0663248,0.986714,0.142242,-0.0784989,0.999419,-0.0278146,0.0197132,-0.282546,0.61776,-0.733853,-0.284686,0.612829,-0.737153,-0.0957794,-0.00321204,-0.995397,-0.0149269,-0.0386699,-0.999141,-0.500021,0.381063,-0.77767,-0.478003,0.420785,-0.771008,0.347632,0.0740087,-0.934706,0.32916,0.0479132,-0.943058,-0.725737,-0.186962,-0.662081,-0.747648,-0.165985,-0.643017,-0.436242,-0.375346,0.817807,-0.468875,-0.430835,0.771063,-0.0331148,0.102411,-0.994191,-0.154772,0.145856,-0.977124,-0.0867596,-0.328961,0.94035,-0.0726246,-0.338699,0.938088,0.272961,-0.405613,-0.872336,0.131497,-0.511377,-0.849236,0.31404,-0.29675,-0.901842,0.170775,-0.414418,-0.89392,0.0452293,0.0931598,-0.994623,0.181206,-0.0927778,-0.979059,0.488002,-0.341295,0.80335,0.509877,-0.352896,0.784531,0.0271996,-0.52547,0.850377,0.290795,-0.578263,0.762267,0.136618,0.126986,-0.982451,0.114594,0.00275973,-0.993409,-0.235531,-0.454229,-0.859186,-0.107897,-0.532052,-0.839809,0.981295,-0.185882,0.050087,0.987667,-0.155083,0.0215058,0.905221,-0.410017,0.111632,0.916059,-0.388503,0.0995044,0.867298,0.0798004,-0.491351,0.846976,0.119722,-0.517976,0.32204,-0.766315,-0.555924,0.407787,-0.787769,-0.46166,0.699763,-0.521487,0.488245,0.712446,-0.501412,0.490924,0.615763,-0.111336,0.780026,0.594702,-0.149312,0.789959,0.970115,-0.00229911,0.242635,0.943227,0.0309867,0.330699,0.40772,0.163312,-0.898384,0.447209,0.134171,-0.884309,-0.935282,-0.185071,-0.301657,-0.855566,-0.272304,-0.440293,-0.0479826,-0.722574,0.689627,-0.0847439,-0.742475,0.664492,0.170486,-0.121922,-0.977788,0.238981,-0.0546226,-0.969487,-0.996305,0.0325819,-0.0794711,-0.997435,-0.0357668,-0.0620006,0.681729,-0.130257,0.719916,0.648773,-0.180947,0.739156,-0.775749,0.0525832,0.628847,-0.69808,-0.164968,0.696756,0.862024,-0.42498,0.276237,0.771029,-0.558265,0.306358,-0.684817,0.373911,-0.625473,-0.72304,0.310111,-0.617288,0.951086,-0.19111,-0.242721,0.933009,-0.291077,-0.211587,0.499446,-0.339769,0.796938,0.525977,-0.243872,0.814785,-0.160298,-0.268643,0.949808,-0.171497,-0.31541,0.93333,0.74601,0.209109,-0.632252,0.733206,0.222575,-0.642549,-0.79206,0.607664,0.0581867,-0.780728,0.62,0.0778745,0.92498,0.286019,0.25021,0.890411,0.452986,0.0443936,-0.937879,0.0120649,0.346753,-0.97967,0.093138,0.177687,0.739822,0.159856,0.653537,0.732001,0.0931405,0.674907,-0.235491,-0.864291,0.444461,-0.151444,-0.911792,0.381707,0.700627,-0.71313,-0.0238205,0.600683,-0.799248,-0.019559,0.0128218,-0.621,0.783705,0.0471047,-0.637809,0.768753,0.612085,-0.741073,0.275975,0.690095,-0.648758,0.320753,-0.0150736,-0.873583,0.486441,-0.0524878,-0.820857,0.568717,0.418966,0.907723,-0.0224929,0.452119,0.891948,0.00417839,-0.332042,-0.126056,-0.934804,-0.199959,-0.201191,-0.958926,0.117173,0.386052,-0.915005,0.0240521,0.448952,-0.893232,0.215256,-0.0212332,-0.976327,0.0806838,0.0102035,-0.996688,-0.324502,0.060709,-0.943935,-0.374278,0.0779491,-0.924035,-0.364539,0.305685,-0.879584,-0.396692,0.265937,-0.878585,-0.379857,0.639594,-0.668302,-0.342572,0.665206,-0.663434,-0.23903,0.946199,-0.218111,-0.272781,0.935159,-0.225984,-0.304045,0.908341,-0.287182,-0.202695,0.948496,-0.243454,-0.374075,0.305787,-0.875535,-0.37704,0.302326,-0.875465,-0.244144,0.597592,-0.763726,-0.284191,0.578602,-0.764497,0.0847115,0.991473,0.09902,0.00157308,0.997331,0.0729963,0.229812,0.622248,0.748327,0.270508,0.59859,0.754,0.226108,-0.106522,0.968261,0.244409,-0.0942117,0.965085,0.254108,0.235601,0.938041,0.277857,0.211287,0.937099,0.3022,-0.121447,0.945477,0.308431,-0.116311,0.944109,0.316495,0.2749,0.907888,0.348197,0.235503,0.907357,0.204532,-0.481468,0.852265,0.14041,-0.50706,0.850397,-0.0767234,0.979058,0.188571,0.0862184,0.963279,0.254284,-0.0551444,0.967605,0.246373,-0.00409364,0.964499,0.264057,-0.330192,0.0837782,-0.940189,-0.322521,0.100065,-0.941258,0.289388,0.632218,0.718718,0.28547,0.635021,0.717813,0.130016,-0.502218,0.854911,0.162777,-0.491129,0.855743,-0.0800928,-0.829918,0.552106,-0.233681,-0.82488,0.514749,-0.12174,-0.898666,0.421402,-0.0283361,-0.909479,0.414782,-0.281695,0.231382,-0.931188,-0.258355,0.239772,-0.935822,-0.0947064,0.912651,-0.397617,-0.214048,0.87938,-0.425293,0.245889,0.572518,0.782152,0.199554,0.598905,0.775558,-0.346074,0.639433,-0.686555,-0.382169,0.609902,-0.694238,-0.327292,0.125714,-0.936523,-0.406199,0.131014,-0.904344,-0.428209,-0.870374,-0.243076,-0.282804,-0.918691,-0.275732,-0.373446,-0.462277,-0.804262,-0.488163,-0.476079,-0.731468,-0.347031,-0.107774,-0.931641,-0.288264,-0.10166,-0.952139,0.031259,0.984576,0.172142,0.154006,0.934883,0.319806,0.691662,0.531075,0.489452,0.664301,0.676397,0.318106,0.17133,-0.850193,0.497813,0.214264,-0.885524,0.412236,0.473683,-0.690204,0.547031,0.555486,-0.661242,0.504177,-0.199926,-0.605864,0.770038,-0.0300284,-0.765841,0.642328,-0.0742311,-0.766933,0.637419,-0.0692815,-0.781456,0.620103,0.175849,-0.425786,0.887572,0.174197,-0.416481,0.8923,0.185359,-0.419391,0.888681,0.173599,-0.316924,0.932428,0.545796,0.254206,0.798427,-0.063964,0.158518,0.985282,0.446718,-0.221591,0.866799,0.43933,-0.167729,0.882528,0.316473,-0.461252,0.82891,0.31129,-0.428208,0.848373,0.459275,0.355042,0.814255,0.487216,0.372029,0.790073,0.475322,0.378466,0.79425,0.525076,0.416786,0.742014,0.265749,-0.278887,0.922821,0.272152,-0.338311,0.900821,0.442784,0.715443,0.540447,0.544124,0.758631,0.35834,0.442293,0.814556,0.375333,0.505987,0.822553,0.259582,0.536274,0.804563,0.255125,0.53337,0.805262,0.258979,0.321542,0.938543,-0.125489,0.345348,0.921108,-0.179705,0.475793,0.877826,-0.0551632,0.552087,0.813421,-0.183154,0.402325,-0.393582,0.826576,0.408376,-0.451863,0.793126,0.735941,-0.215712,0.641762,0.567451,0.0519359,0.821768,0.301827,-0.364746,0.880829,0.300218,-0.332437,0.894066,0.475971,0.0310934,0.878911,0.465958,0.0753443,0.881593,0.28604,-0.327563,0.900491,0.282338,-0.279378,0.917733,0.470025,0.0943105,0.8776,0.453934,0.0805259,0.887389,-0.296951,-0.927836,0.225701,-0.293834,-0.938892,0.179284,0.044343,-0.710232,0.70257,0.0323685,-0.714773,0.698607,0.0233473,-0.676612,0.73597,0.0263291,-0.712842,0.70083,-0.264783,-0.949224,0.169896,-0.277324,-0.947623,0.158436,-0.145833,-0.958446,0.245181,-0.256777,-0.954743,0.150104,-0.229196,-0.89498,0.382728,-0.191856,-0.946297,0.260219,-0.0841256,-0.920143,0.382438,0.0159699,-0.886869,0.461744,0.0842102,-0.541501,0.836472,-0.0309833,-0.589262,0.807348,0.249903,-0.689435,0.679874,0.573124,-0.619769,0.536111,-0.170157,-0.908849,0.380841,-0.136926,-0.9339,0.330275,-0.223811,-0.920308,-0.320846,-0.144889,-0.971645,-0.186852,-0.332176,-0.866705,-0.37213,-0.360523,-0.876318,-0.319515,-0.0445761,-0.583973,0.810548,0.00141142,-0.561192,0.827684,0.18958,-0.11207,0.975449,0.19386,-0.109117,0.974942,0.132917,-0.159439,0.978219,0.205152,-0.118628,0.971514,0.38066,0.319389,0.867807,0.344703,0.420088,0.839467,0.304279,0.353856,0.884421,0.4158,0.112628,0.902455,-0.0642829,-0.480079,-0.874867,-0.0131608,-0.448519,-0.893676,-0.247187,-0.408374,-0.878709,-0.245103,-0.417899,-0.874805,-0.0661444,0.110511,-0.991671,-0.0608581,0.0451799,-0.997123,0.162692,-0.0507801,-0.985369,0.16407,-0.0644782,-0.984339,-0.337965,-0.386591,-0.858095,-0.344222,-0.361758,-0.866396,-0.146699,0.141696,-0.97898,-0.154632,0.275056,-0.948912,0.266383,-0.50334,0.822003,0.290258,-0.488064,0.823131,-0.137106,-0.445288,0.884828,0.0230136,-0.67663,0.735963,0.367383,-0.282532,0.886118,0.374414,-0.278194,0.884546,0.229274,-0.229707,0.945869,0.23673,-0.263017,0.935297,0.415132,0.158439,0.895858,0.184571,0.108336,0.97683,0.52191,0.404607,0.750934,0.52516,0.395192,0.753678,0.441518,-0.0539195,0.895631,0.445066,-0.0512911,0.894028,0.315609,0.479136,-0.819036,0.340032,0.349555,-0.873035,0.165907,0.549621,-0.818774,0.157813,0.652853,-0.740863,0.103562,0.676712,-0.728928,0.10331,0.770591,-0.628901,0.342872,0.921935,-0.180206,0.335191,0.936505,-0.102979,0.146728,0.796499,-0.586566,0.145332,0.752524,-0.642329,0.40197,0.914301,-0.0497443,0.407368,0.904001,-0.129742,0.603256,0.786165,-0.134265,0.530728,0.814083,-0.235791,0.387122,0.893488,-0.22763,0.379493,0.905495,-0.189908,-0.212402,0.359472,-0.908661,-0.212631,0.361852,-0.907662,0.11528,0.809369,-0.575876,0.116237,0.777398,-0.618176,-0.26461,0.293857,-0.918493,-0.188194,0.350387,-0.917503,0.0793458,0.731214,-0.677518,0.0692826,0.794878,-0.602801,-0.445353,-0.416301,-0.792688,-0.367904,-0.329399,-0.869565,-0.266353,0.139669,-0.953703,-0.13589,0.243292,-0.960387,-0.439361,-0.303481,-0.845495,-0.4244,-0.287432,-0.858643,0.415223,0.909309,-0.0273405,0.418562,0.906491,-0.0554937,0.552169,0.629672,0.546464,0.561749,0.640893,0.523158,0.535654,0.604432,0.589692,0.555742,0.627842,0.544945,0.488278,0.672571,0.556087,0.601706,0.680686,0.417871,0.49029,0.671207,0.555965,0.476114,0.661705,0.579191,-0.38682,-0.89402,-0.22605,-0.392807,-0.897817,-0.199064,-0.373234,-0.908743,-0.18677,-0.367929,-0.906417,-0.207454,-0.232478,-0.949263,0.211789,-0.240433,-0.931568,0.272713,-0.202541,-0.942725,0.265042,-0.208155,-0.926819,0.312535,0.254806,-0.0589718,-0.965192,0.22516,-0.0290659,-0.973888,0.262306,-0.214658,-0.940807,0.59649,-0.425449,-0.680583,-0.12804,-0.134166,-0.982652,-0.00695049,-0.233791,-0.972262,0.0405009,-0.71649,-0.69642,0.145937,-0.609599,-0.779161,-0.159666,-0.756504,-0.634199,-0.1176,-0.718553,-0.685457,-0.264656,-0.267053,-0.926628,-0.245724,-0.24549,-0.937739,0.0159238,-0.998751,-0.0473682,0.0314159,-0.996839,-0.0729771,0.0340157,-0.997731,-0.0581027,0.0402935,-0.996508,-0.0731376,-0.100279,-0.76114,-0.640788,-0.0913003,-0.751296,-0.65362,0.284735,-0.958273,-0.0252774,0.102687,-0.982914,0.152758,0.94137,-0.326642,0.084424,0.740517,-0.591758,0.318524,0.8881,0.454019,-0.0717313,0.715101,0.69439,0.0803295,0.49818,0.61903,-0.607139,0.331956,0.927422,-0.172317,0.315866,0.936394,-0.152954,0.0947702,0.533286,-0.84061,0.0267237,0.623015,-0.781753,0.0946557,0.111267,-0.989272,0.505556,0.394447,-0.76735,0.216608,0.959449,-0.180384,0.174217,0.980387,-0.0921451,-0.155482,0.704561,-0.692401,-0.116099,0.640058,-0.759504,0.194256,0.976447,-0.0938876,0.188854,0.979093,-0.0755692,0.350651,0.868374,0.350672,0.333182,0.85846,0.389919,0.379696,0.868569,0.318462,0.361089,0.864133,0.350555,-0.087109,0.696479,-0.71227,-0.0818448,0.682289,-0.726487,0.212537,0.973841,-0.0803811,0.21506,0.972088,-0.0937769,-0.0677744,0.695227,-0.715588,-0.0638448,0.67849,-0.73183,0.419477,0.587382,0.692113,0.423269,0.590606,0.687042,0.384914,0.572444,0.723982,0.414274,0.596195,0.687699,-0.299745,-0.0111339,-0.953954,-0.318984,-0.0318503,-0.947225,-0.050766,0.714711,-0.697575,-0.0777016,0.697741,-0.712123,-0.285639,0.0307753,-0.957843,-0.317906,-0.0057839,-0.948105,0.119649,-0.860621,0.49499,0.154563,-0.895011,0.418409,0.193132,-0.44377,0.875082,0.186766,-0.433817,0.881431,0.141949,-0.852908,0.502392,0.147455,-0.857258,0.49332,0.249741,-0.417471,0.873698,0.254011,-0.425141,0.868754,0.22924,0.160778,0.96,0.206862,0.128814,0.969853,-0.151423,-0.271698,0.950395,0.12501,-0.474879,0.871127,0.139085,0.140665,0.980239,0.121105,0.119751,0.98539,0.304377,0.201181,0.931064,0.274125,0.153564,0.949354,0.280466,-0.243686,0.928416,0.296432,-0.223036,0.928646,0.2586,0.0486393,0.964759,0.29171,0.0881469,0.952437,0.344666,-0.499861,0.794572,0.579844,-0.36851,0.726623,0.175304,-0.804115,0.568039,0.192054,-0.786736,0.586653,0.412419,0.0276215,0.910575,0.406747,0.0195542,0.913332,0.406098,0.631064,0.66094,0.352674,0.375967,0.856896,0.231399,0.580611,0.780606,0.238095,0.573898,0.783551,0.316796,0.0543863,0.946933,0.312006,0.0463852,0.948947,-0.0099742,-0.995782,-0.0912063,0.0171645,-0.982767,-0.184048,0.0217291,-0.982508,-0.184948,0.0452416,-0.964178,-0.261371,0.175875,-0.856415,0.485408,0.116128,-0.896169,0.428246,0.164425,-0.862892,0.477892,0.173001,-0.856468,0.486346,-0.108242,-0.725106,-0.680077,-0.0992242,-0.712057,-0.695075,-0.0918664,-0.751262,-0.653579,-0.0730931,-0.726819,-0.682929,-0.13666,-0.291638,-0.946716,-0.150525,-0.309948,-0.938762,-0.17356,-0.316855,-0.932459,-0.166993,-0.307818,-0.936676,-0.0930324,-0.326858,-0.940483,-0.0731784,-0.299673,-0.951231,-0.0769579,0.482879,-0.872299,-0.0805159,0.479276,-0.873963,-0.144546,0.493858,-0.857445,-0.167178,0.470322,-0.866516,-0.152771,0.468706,-0.870044,-0.135803,0.486368,-0.863136,-0.14245,0.487023,-0.861694,-0.156552,0.473108,-0.866983,0.0351381,-0.965298,-0.258777,0.0376367,-0.965895,-0.256185,-0.0752068,-0.663255,-0.744605,-0.0518448,-0.62518,-0.778757,0.183469,-0.863108,0.470515,0.168647,-0.872967,0.457697,0.231766,-0.844282,0.483189,0.196322,-0.87254,0.44736,0.106856,-0.981162,-0.160946,0.0355019,-0.966123,-0.255631,0.443444,0.511274,0.736177,0.036237,0.422717,0.905537,0.445979,0.113791,0.88778,0.456012,0.126585,0.880925,0.412577,0.779872,0.470723,0.402671,0.749047,0.526103,0.495894,0.437555,0.75009,0.738909,0.101991,0.666041,0.435188,0.414541,0.799229,0.426428,0.432624,0.794352,0.34306,0.847459,0.405121,0.334012,0.832453,0.442106,0.294724,0.385527,0.874361,0.341523,0.451559,0.824292,0.304845,0.83837,0.451891,0.29934,0.844029,0.444983,0.197488,0.970553,-0.137934,0.227096,0.968229,-0.10469,0.310828,0.842408,0.440152,0.357958,0.79371,0.491824,0.25382,0.959293,-0.123827,0.231289,0.961121,-0.150841,0.0768675,0.67347,-0.735207,0.100508,0.688966,-0.717791,0.0398231,0.685528,-0.726956,0.0416306,0.686678,-0.725768,-0.110634,0.0704141,-0.991364,-0.0538693,0.132694,-0.989692,-0.187185,0.00261913,-0.982321,-0.123534,0.074038,-0.989574,-0.180261,-0.535687,-0.824952,-0.238911,-0.428069,-0.871595,-0.288689,-0.612985,-0.735464,-0.229898,-0.529785,-0.816379,-0.376427,-0.621906,-0.686684,-0.359028,-0.59773,-0.716811,-0.232862,-0.937441,-0.258805,-0.189933,-0.958486,-0.212673,-0.271459,-0.948934,-0.160732,-0.266849,-0.945183,-0.188203,0.326755,0.800694,0.502115,0.382638,0.726527,0.570743,0.314969,0.755254,0.574792,0.399116,0.773044,0.493061,0.287485,0.948512,-0.132957,0.323172,0.942833,-0.0813971,0.470489,0.882398,0.0037258,0.422651,0.902264,-0.085357,0.613623,0.439607,0.655906,0.707542,0.354203,0.611493,0.948288,0.304845,-0.0884319,0.821106,0.522317,-0.230151,0.657649,-0.134247,0.741267,0.653548,-0.124061,0.746648,0.913258,-0.128912,-0.386448,0.905799,-0.062063,-0.419137,0.204652,0.373428,0.904803,0.196501,0.388887,0.900086,0.312277,0.210076,0.926472,0.202835,0.373826,0.905048,0.0953737,-0.116821,0.988563,0.0764204,-0.0871424,0.99326,0.112841,-0.0947051,0.989089,0.0903102,-0.0466248,0.994822,0.292111,0.387403,0.874408,-0.0232521,0.222577,0.974638,0.290096,0.0947027,0.9523,0.277567,0.119052,0.953301,0.222264,-0.152656,0.962961,0.227891,-0.162706,0.959996,0.188568,-0.111872,0.975667,0.158883,-0.139217,0.977433,0.523721,-0.211688,0.825169,0.508474,-0.19018,0.839813,0.15553,-0.403102,0.901842,0.153,-0.404637,0.901587,0.39832,-0.660317,0.63665,0.363479,-0.498439,0.787046,0.0389367,-0.758309,0.650731,-0.00368156,-0.782051,0.623203,-0.0640563,-0.917944,0.391504,-0.0628946,-0.917643,0.392398,0.160358,-0.545421,0.82268,0.163505,-0.563651,0.809669,-0.0523768,-0.378622,0.924068,0.0883617,-0.555508,0.826803,-0.0105719,-0.912757,0.408365,-0.042712,-0.923902,0.380238,0.256819,-0.128901,0.957825,0.298862,-0.0759756,0.951267,-0.197347,-0.941931,-0.271698,-0.229655,-0.923195,-0.308171,0.245563,-0.642857,0.725557,0.496297,-0.541399,0.678658,0.32474,-0.428724,0.843054,0.334328,-0.419274,0.844058,0.0715717,-0.864091,0.498221,0.0769982,-0.840519,0.536282,-0.0373886,-0.434251,0.900016,0.172372,-0.665914,0.725842,0.110148,-0.684186,0.720942,0.119374,-0.713213,0.690707,-0.0652869,-0.94661,0.3157,-0.0619966,-0.950843,0.303405,-0.0482373,-0.95234,0.301199,-0.0581798,-0.906615,0.417928,-0.224898,-0.96126,-0.159373,-0.217665,-0.959723,-0.177636,-0.0861232,-0.958039,0.273393,-0.108109,-0.942875,0.315117,-0.227232,-0.96216,-0.150382,-0.208063,-0.961961,-0.177036,0.0936571,-0.741153,0.664771,0.0827131,-0.712218,0.697069,0.0484004,-0.738217,0.672824,0.0831613,-0.783972,0.615201,0.300815,-0.164207,0.93944,0.366349,-0.102463,0.924819,0.32537,-0.0879939,0.941484,0.332325,-0.0803261,0.939738,-0.041786,-0.906082,0.421034,-0.0417804,-0.909514,0.413568,-0.28059,-0.947255,-0.154843,-0.279677,-0.946847,-0.158941,-0.264697,0.00173377,-0.96433,-0.303692,-0.036183,-0.952083,-0.383072,-0.64756,-0.658728,-0.36443,-0.625502,-0.689883,-0.315676,-0.670192,-0.671708,-0.315086,-0.669663,-0.672512,0.13829,-0.442732,-0.885926,0.230971,-0.350122,-0.907781,0.742992,-0.591158,-0.313841,0.620607,-0.657463,-0.427305,0.0418648,-0.941501,-0.334401,0.0119852,-0.921742,-0.387619,0.411311,-0.715389,0.564838,0.588187,-0.629599,0.507584,-0.124158,-0.915416,0.382881,-0.0183131,-0.965022,0.261528,-0.0943224,-0.919018,0.382765,-0.0780669,-0.914035,0.398052,-0.108863,-0.934698,-0.338363,-0.140128,-0.912406,-0.384552,0.284239,-0.454841,0.843995,0.292848,-0.444612,0.846499,0.215506,-0.411147,0.885729,0.230955,-0.437399,0.869104,0.227371,0.0688973,0.971368,0.224088,0.0638246,0.972477,0.0553323,-0.464306,0.883945,0.172172,-0.219571,0.960284,0.149441,0.0747159,0.985944,0.107033,0.0242773,0.993959,0.123884,0.550133,0.825837,-0.163363,0.42003,0.892685,0.138165,0.764922,0.62913,0.119304,0.783627,0.609668,0.206691,0.316317,0.925863,0.192927,0.299729,0.934313,0.0985983,0.915724,0.389522,0.0962781,0.916955,0.3872,-0.0156686,0.96485,-0.262334,0.0234205,0.974496,-0.223181,-0.00409408,0.964008,-0.265843,-0.0193348,0.959342,-0.281582,0.0780088,0.915797,0.393993,0.0951563,0.907195,0.409808,0.0998176,0.911277,0.399513,0.105422,0.916617,0.385617,-0.00155195,0.98299,-0.183652,-0.0287213,0.977193,-0.210404,0.173935,0.902713,0.393517,0.157,0.890234,0.427592,0.057065,0.950683,-0.30487,0.103586,0.964246,-0.243924,0.25526,0.871893,0.417905,0.282412,0.881276,0.378941,0.23964,0.518787,0.82063,0.243647,0.512801,0.823208,0.262559,0.442883,0.857273,0.202327,0.517289,0.83155,0.00683182,0.467024,-0.884218,-0.0125833,0.441643,-0.897102,0.308151,0.941184,-0.13862,0.234153,0.935587,-0.264291,0.245486,0.359771,-0.900168,0.222225,0.408521,-0.885283,-0.0661069,0.476023,-0.876944,-0.0805117,0.460174,-0.884171,-0.0916377,-0.29727,-0.950386,-0.0642571,-0.257181,-0.964224,0.265425,0.0197572,0.963929,0.228107,-0.0296482,0.973184,0.275365,-0.0396284,0.960522,0.223732,-0.110429,0.968375,0.31658,-0.403369,0.858528,0.221405,-0.502862,0.835529,0.447781,-0.0166023,0.893989,0.426888,-0.0397308,0.903431,0.37381,-0.440269,0.816351,0.597454,-0.346782,0.723043,0.777422,0.320121,0.541421,0.593266,0.0644658,0.802421,0.394193,-0.318519,0.862066,0.832609,-0.383047,0.400046,0.295752,-0.766989,0.569437,0.29882,-0.675949,0.673647,0.875845,0.296185,0.381013,0.868741,0.308973,0.387072,0.466441,-0.811759,0.351398,0.393371,-0.886808,0.24255,0.170062,-0.223957,-0.959647,0.238234,-0.103043,-0.965726,0.885229,0.366701,-0.286182,0.684644,0.576746,-0.445676,0.607851,0.582437,0.539708,0.682227,0.528837,0.504873,0.806962,-0.202072,-0.554958,0.815917,-0.187923,-0.546776,0.731946,-0.160235,0.662254,0.688458,-0.217828,0.691792,0.746382,-0.636841,-0.193255,0.499156,-0.788053,-0.3603,0.0930003,-0.626786,-0.773622,0.157486,-0.529926,-0.833292,0.188333,-0.980148,-0.0619739,0.126888,-0.978435,-0.162986,0.704725,-0.311412,0.637484,0.676259,-0.33586,0.655646,0.812546,-0.36275,-0.456269,0.811306,-0.375096,-0.448425,0.301154,-0.797174,0.523278,0.405698,-0.776172,0.482665,0.583862,-0.782907,-0.214854,0.367488,-0.854356,-0.367461,-0.127052,0.62303,0.77181,0.053014,0.430551,0.901008,0.147081,0.438188,0.886769,0.207369,0.40421,0.890849,-0.0156846,0.795842,0.605301,0.0453271,0.767154,0.639859,0.260398,0.181908,0.94821,0.258047,0.178885,0.949427,0.320043,-0.0982985,0.94229,0.285617,-0.145408,0.947248,0.120715,0.155509,0.980431,0.0824379,0.183688,0.979522,0.121824,-0.467355,0.875636,0.218979,-0.165051,0.961669,0.553605,-0.832778,0.00166885,0.485318,-0.868446,-0.101334,0.91143,-0.407427,-0.0574316,0.9353,-0.273055,-0.225064,0.851071,-0.210173,0.481151,0.775011,-0.306338,0.552735,0.934625,0.135206,-0.328931,0.948846,0.103332,-0.298352,0.847262,0.48259,-0.221933,0.742714,0.579694,-0.335157,0.190213,0.930328,-0.313542,0.237669,0.939201,-0.247821,0.42369,0.365932,-0.828602,0.333582,0.456234,-0.824969,0.498954,-0.0511838,-0.865116,0.514672,-0.0682645,-0.854665,0.551367,-0.4587,-0.696842,0.487453,-0.578119,-0.654345,0.796278,0.289163,0.531344,0.804515,0.276297,0.525752,0.0569004,0.453573,-0.889401,0.0555562,0.45126,-0.890662,-0.0457709,0.951384,-0.304589,-0.0514941,0.948866,-0.31145,-0.038334,0.620272,-0.783449,0.0886598,0.670776,-0.736341,0.015185,0.467027,-0.884113,0.195639,0.497885,-0.844888,-0.25081,-0.0213795,-0.9678,-0.212545,-0.000106889,-0.977151,-0.31813,0.0556013,-0.946415,-0.229054,0.123611,-0.965533,-0.424692,-0.569586,-0.70371,-0.374783,-0.527012,-0.762756,0.995794,0.0775519,-0.0487925,0.913053,0.362917,0.18608,-0.151166,0.444135,-0.883115,-0.1801,0.393234,-0.901627,-0.169181,0.945577,-0.277959,-0.206185,0.926286,-0.315408,-0.106927,0.929962,0.351764,-0.0710712,0.924072,0.375553,-0.0537812,0.927234,0.370601,-0.0970348,0.93586,0.338749,-0.661644,0.0607351,-0.747355,-0.662763,0.0716109,-0.745397,-0.479353,0.303659,-0.823415,-0.475,0.326292,-0.817257,-0.387809,-0.873013,-0.295724,-0.406902,-0.88678,-0.219208,-0.280297,-0.93411,0.221072,-0.270933,-0.947951,0.167288,-0.421613,-0.827652,-0.370452,-0.449737,-0.849658,-0.275352,-0.274176,-0.936332,0.219339,-0.266675,-0.949361,0.166129,0.212719,-0.653708,0.726235,0.153602,-0.812463,0.562415,-0.0936315,-0.871486,0.481399,-0.098509,-0.897464,0.429946,0.0519717,-0.400471,0.914834,0.200291,-0.363548,0.909789,0.262666,-0.296665,0.918148,0.267572,-0.29853,0.916125,0.236514,-0.102292,0.966228,0.269817,-0.0793498,0.959637,0.237008,-0.260401,0.935959,0.257982,-0.252569,0.932553,0.243437,-0.303493,0.921211,0.241651,-0.30017,0.922769,0.213297,-0.228653,0.949854,0.229487,-0.220776,0.947942,0.215397,-0.282118,0.934887,0.203042,-0.289768,0.935312,0.165245,-0.344593,0.924094,0.197352,-0.332213,0.922327,0.169013,-0.317809,0.93297,0.171532,-0.316565,0.932932,0.0724449,-0.557166,0.827235,0.0872018,-0.602105,0.79364,0.036057,-0.603314,0.796688,0.0704562,-0.593997,0.801376,0.332986,0.325981,0.884792,0.295933,0.275837,0.914515,0.344194,0.172477,0.922921,0.345439,0.170794,0.922768,0.317235,0.0490471,0.947078,0.342567,0.0702213,0.936865,0.323671,0.327036,0.887854,0.337378,0.348678,0.874414,0.0379229,0.991802,0.122029,0.0899598,0.983974,0.153959,0.00927057,0.977825,0.209216,0.0431015,0.972695,0.228049,-0.179407,0.914962,-0.361465,-0.130364,0.933745,-0.333356,-0.0690862,0.908518,-0.412096,-0.102341,0.895609,-0.432909,-0.0805292,0.971365,-0.223531,-0.197488,0.92672,-0.319669,0.0141012,0.975234,0.220727,-0.0369089,0.982372,0.183259,0.139467,0.815406,0.561837,0.20739,0.776831,0.594578,0.0624534,0.846454,0.528786,0.0830344,0.837312,0.540383,0.180912,0.63127,0.754168,0.223383,0.599673,0.768435,0.183857,0.569148,0.801416,0.12741,0.609504,0.782478,0.254514,0.577935,0.77538,0.22325,0.599589,0.768539,0.176426,0.764667,0.619805,0.178404,0.763497,0.62068,0.233856,0.419282,0.877219,0.274794,0.375504,0.885147,0.279519,0.342696,0.896899,0.286915,0.353786,0.890233,0.311177,0.229701,0.922175,0.223607,0.316038,0.922019,0.299166,0.422907,0.855365,0.225569,0.363983,0.903679,0.290103,0.439108,0.850308,0.299287,0.430935,0.851306,0.335449,0.374141,0.864577,0.316014,0.348187,0.882554,0.343992,0.418713,0.840445,0.270923,0.417737,0.867235,-0.00234452,0.97247,0.233017,0.0172369,0.968509,0.248382,-0.117359,0.972523,-0.201064,-0.0506793,0.98905,-0.138608,-0.147018,0.703206,-0.69562,-0.120071,0.731873,-0.670779,-0.145646,0.545018,-0.825677,-0.223008,0.628148,-0.745452,-0.209574,0.961884,-0.175661,-0.150924,0.980799,-0.123513,-0.265184,0.607824,-0.748483,-0.176047,0.701199,-0.690889,-0.067639,0.930382,0.360298,-0.0941772,0.934638,0.342904,-0.277753,0.947214,-0.160122,-0.239346,0.942767,-0.232172,-0.282261,0.514608,-0.809634,-0.20359,0.447084,-0.871015,-0.150642,0.912856,0.379476,-0.146164,0.91714,0.370797,-0.183107,0.90929,0.373717,-0.162049,0.929206,0.332138,-0.0805891,0.703066,0.706543,-0.0681385,0.719655,0.69098,-0.0330942,0.724769,0.688197,-0.0170544,0.748562,0.662845,0.0706024,0.76387,0.641497,0.0171778,0.7864,0.617478,0.228627,0.306507,0.924004,0.253381,0.357793,0.898767,-0.223051,0.669939,-0.708117,-0.211208,0.678653,-0.703436,-0.120889,0.662718,-0.739047,-0.161099,0.631943,-0.758086,-0.15597,0.296119,-0.94233,-0.127326,0.261872,-0.956667,-0.21714,0.303142,-0.927877,-0.224813,0.29408,-0.928965,-0.20946,0.0665841,-0.975548,-0.182836,0.0346441,-0.982533,-0.198841,0.337943,-0.919922,-0.110691,0.391904,-0.913323,0.0551112,0.265347,-0.962577,0.168078,0.364572,-0.91588,-0.123911,0.0270944,-0.991923,-0.1318,0.0380278,-0.990547,0.0645306,-0.0598847,-0.996117,0.0569106,-0.0465655,-0.997293,-0.171057,0.181174,-0.96846,-0.146463,0.235843,-0.960691,-0.482265,0.305272,-0.821115,-0.358954,0.382029,-0.85159,0.104087,0.292437,-0.950603,0.159185,0.322326,-0.933149,0.332567,0.207016,-0.920078,0.209808,0.139685,-0.967713,-0.177845,0.124606,-0.976137,0.0771468,0.204193,-0.975886,-0.526629,0.182864,-0.830194,-0.652812,0.0691673,-0.754356,-0.491467,-0.798076,0.348619,-0.503403,-0.682923,0.529341,-0.77829,-0.622405,0.0829233,-0.65666,-0.737136,0.159459,-0.470389,-0.717803,0.513316,-0.352274,-0.759828,0.54641,-0.61094,-0.779946,0.135784,-0.622031,-0.762591,0.177574,-0.32556,-0.782786,0.530336,-0.326791,-0.767041,0.552138,-0.656462,-0.738625,0.153266,-0.628592,-0.776708,0.0399514,-0.317206,-0.795663,0.516044,-0.321232,-0.824884,0.465162,-0.78604,-0.605746,0.12334,-0.757045,-0.652652,-0.0304747,-0.358625,-0.78996,0.497344,-0.356853,-0.7813,0.51208,-0.769497,-0.638185,-0.0243567,-0.752454,-0.650593,-0.102672,-0.386549,-0.749757,0.537071,-0.389052,-0.761346,0.518643,-0.771722,-0.615707,-0.159219,-0.786732,-0.612094,-0.0799553,-0.411721,-0.775756,0.478215,-0.402958,-0.747857,0.527574,-0.789701,-0.249359,-0.560528,-0.726094,-0.232771,-0.646997,-0.800328,-0.148002,-0.581008,-0.704069,-0.095668,-0.703658,-0.489705,0.214087,-0.845196,-0.380054,0.227658,-0.89651,-0.494875,0.355625,-0.792862,-0.297497,0.411566,-0.861458,-0.811312,-0.57102,-0.125334,-0.783342,-0.55967,-0.270454,-0.455775,0.173737,-0.872974,-0.456106,0.173746,-0.8728,0.13668,0.567883,-0.811682,0.138477,0.581256,-0.801852,-0.45553,0.21861,-0.862961,-0.457945,0.176594,-0.871264,0.157253,0.502221,-0.850321,0.161623,0.538191,-0.827181,0.116541,0.603693,-0.788653,0.121921,0.632912,-0.764563,-0.75523,-0.0450102,-0.653913,-0.676547,0.00735698,-0.736363,-0.765414,-0.575934,-0.287126,-0.746561,-0.5569,-0.364018,-0.627612,-0.775598,-0.0674622,-0.635348,-0.763643,-0.114811,-0.287163,-0.954317,0.0825582,-0.300664,-0.950038,0.0838395,-0.672734,-0.596116,-0.438262,-0.680064,-0.601051,-0.419822,-0.202375,-0.973269,-0.108589,-0.114372,-0.971158,0.209217,0.040741,-0.783781,0.6197,0.0512221,-0.755443,0.65321,0.550637,-0.631064,0.546404,0.385308,-0.806743,0.447999,0.634601,-0.531108,0.561432,0.566088,-0.682156,0.462826,0.0376497,-0.71186,0.701311,0.0384818,-0.707629,0.705536,0.181266,-0.967469,0.176484,-0.018038,-0.886474,0.462426,0.370245,-0.834009,0.409082,0.356419,-0.840667,0.407732,-0.780452,-0.346745,-0.520252,-0.769537,-0.350177,-0.534031,-0.335074,0.0554998,-0.940556,-0.335139,0.0536469,-0.94064,-0.395439,0.156716,-0.905024,-0.397084,0.130415,-0.908469,0.226978,0.313306,-0.922128,0.237757,0.357892,-0.902987,0.705614,-0.139707,-0.694687,0.788287,0.0624232,-0.612133,0.740739,0.341145,-0.578727,0.741273,0.449679,-0.4983,0.390511,-0.539745,-0.745773,0.705627,-0.139618,-0.694692,0.321298,0.156302,-0.93399,0.220943,0.0934126,-0.970803,0.257203,0.204372,-0.944499,0.221494,0.128769,-0.966622,0.32847,0.101053,0.939093,0.308718,0.0817928,0.94763,0.371644,0.275711,0.88649,0.232935,0.181476,0.95541,0.226087,-0.0744464,0.971258,0.186784,-0.00860715,0.982363,0.324487,-0.00586908,0.945872,0.257744,0.0818122,0.962743,0.307981,0.140294,0.940992,0.331318,0.171723,0.927761,0.491586,0.0046639,0.870817,0.336922,-0.195464,0.92102,0.224317,0.314256,0.922456,0.272897,0.260189,0.92619,0.375052,0.248986,0.89294,0.346613,0.282552,0.894441,0.463526,0.270667,0.843732,0.47491,0.252739,0.842961,0.543225,-0.381008,0.748158,0.460565,-0.187662,0.867561,0.952661,-0.00781844,0.303933,0.517316,0.15701,0.841268,0.799797,-0.112576,0.589619,0.593316,-0.438534,0.675029,0.780375,0.243212,0.576075,0.535127,0.578514,0.615597,0.452577,-0.34574,0.821972,0.396564,-0.443423,0.803812,0.453787,-0.839273,0.299497,0.452216,-0.839418,0.301458,0.382861,0.193151,0.903388,0.346383,0.258363,0.901813,0.312021,-0.408379,0.857828,0.321,-0.423855,0.846939,0.277597,0.696733,0.66144,0.299302,0.725124,0.620172,0.494513,0.691868,0.526095,0.42853,0.598461,0.67691,0.624715,-0.407118,0.666322,0.586131,-0.168793,0.792439,0.572949,0.585771,0.573238,0.738077,0.28712,0.610577,0.157019,-0.316727,0.93543,0.235428,-0.451967,0.860406,0.369126,-0.642964,0.671076,0.196369,-0.449711,0.87132,0.273919,-0.0856922,0.957928,0.302803,-0.141995,0.942416,0.216899,-0.783068,0.582889,0.157215,-0.658816,0.735694,0.366385,-0.176589,0.913552,0.357543,-0.15215,0.921419,0.186814,-0.154896,0.970107,0.360011,-0.0546413,0.931347,0.331571,-0.0369388,0.942707,0.673599,0.10708,0.731299,0.25059,-0.232439,0.939775,0.24458,-0.201783,0.948401,0.340696,-0.252693,0.905579,0.337307,-0.229138,0.913083,-0.060549,-0.759855,0.647267,-0.0689988,-0.740556,0.668443,0.00125919,-0.762502,0.646985,0.00337435,-0.776103,0.630597,-0.179519,-0.933034,0.311801,-0.192069,-0.93373,0.302089,-0.187027,-0.935146,0.300869,-0.18845,-0.932377,0.308481,-0.00740643,-0.774448,0.632594,-0.0089649,-0.760807,0.648916,0.310038,-0.286064,0.906666,0.305342,-0.247545,0.919504,-0.124355,-0.102425,-0.986937,-0.124548,-0.101133,-0.987046,-0.413183,0.522778,-0.745642,-0.28196,0.568292,-0.773009,0.178426,0.827444,-0.532447,0.0170965,0.828448,-0.559805,0.158873,0.709966,-0.686081,0.033028,0.714832,-0.698516,0.47531,0.794497,-0.377961,0.476033,0.80393,-0.356497,0.524807,0.820208,-0.227675,0.379888,0.881736,-0.279691,0.775923,0.590259,0.222572,0.691873,0.701591,0.170532,0.770162,0.629616,0.102146,0.725973,0.683897,0.0724374,0.748942,0.157788,0.643575,0.746505,0.213696,0.63013,0.715505,0.185506,0.673528,0.731726,0.0147588,0.681439,0.81642,0.57745,0.00297125,0.816566,0.577251,0.00142518,0.91246,0.402784,-0.0719842,0.912292,0.403604,-0.0694771,0.315287,0.780325,-0.54008,0.220207,0.791989,-0.56944,-0.116514,0.538467,-0.834552,-0.216939,0.514245,-0.829753,0.459188,0.605228,-0.650265,0.459988,0.605011,-0.649902,0.710508,0.644259,-0.283034,0.704082,0.649446,-0.287207,0.527682,0.817592,-0.230424,0.6197,0.762081,-0.187626,0.103712,0.388519,-0.915586,0.0378559,0.383914,-0.922593,0.618083,0.251371,-0.74484,0.552755,0.282757,-0.783907,0.357444,0.135581,-0.924041,0.249483,0.157065,-0.955557,0.85368,0.471398,0.221394,0.849528,0.480521,0.217721,0.757845,0.606278,0.241036,0.80837,0.521648,0.272802,0.586204,-0.446162,-0.676242,0.499373,-0.363247,-0.786561,0.242808,-0.47756,-0.844382,0.331804,-0.607925,-0.721341,-0.089742,-0.929435,-0.357906,-0.058592,-0.971568,-0.229398,-0.442538,-0.764545,-0.468648,-0.40015,-0.764006,-0.506137,-0.37237,-0.0857778,-0.924112,-0.395277,-0.0918839,-0.913955,-0.532464,0.0189106,-0.846241,-0.631397,-0.0300321,-0.774878,0.837674,0.343227,-0.42485,0.734828,0.441401,-0.51497,0.826501,-0.156827,-0.540649,0.728407,-0.306005,-0.613013,0.99277,-0.109351,-0.049494,0.865787,-0.407678,0.29019,0.942142,0.335207,0.00202155,0.920592,0.364915,0.139093,0.725379,-0.247168,0.642443,0.731961,-0.182152,0.656547,0.388752,-0.904673,0.17447,0.531191,-0.83804,0.124601,0.313033,-0.704679,0.63674,0.226715,-0.711079,0.665557,-0.201212,-0.908276,0.366808,-0.0942642,-0.927715,0.361192,0.167293,-0.638672,0.751073,0.265852,-0.639142,0.721679,-0.156254,-0.88452,0.439556,-0.157183,-0.884295,0.439677,0.318842,-0.636718,0.70209,0.320007,-0.681617,0.658022,-0.111491,-0.915383,0.386839,0.0290604,-0.935082,0.353238,0.579051,-0.664568,0.472281,0.30525,-0.775985,0.551969,0.142291,-0.711555,0.688071,0.158213,-0.627341,0.762504,0.590124,-0.199306,0.782324,0.576134,-0.269606,0.77161,-0.322938,-0.944028,0.0672397,-0.3119,-0.94755,0.0697643,-0.200772,-0.407047,-0.891069,-0.211817,-0.232694,-0.949204,-0.550532,-0.546483,0.631088,-0.500253,-0.759734,0.415393,-0.164158,-0.907309,0.387094,-0.1746,-0.935891,0.305979,-0.459218,-0.792432,0.40146,-0.448893,-0.739137,0.502166,-0.0638453,-0.59018,0.804743,-0.0875624,-0.686161,0.72216,0.0341262,-0.538116,0.84218,-0.00682981,-0.647458,0.76207,0.391512,0.603187,-0.694899,0.572702,-0.151603,-0.805623,0.178485,-0.0597916,-0.982124,-0.00813721,-0.109082,-0.993999,-0.107396,-0.0210434,-0.993994,0.0844463,-0.596124,-0.798439,0.302428,-0.65836,-0.689275,-0.121963,-0.153821,-0.980543,-0.068754,-0.195202,-0.97835,0.178461,-0.788238,-0.588925,0.0909836,-0.759252,-0.644405,-0.106016,-0.208301,-0.972302,-0.123248,-0.195249,-0.972979,0.116611,-0.807585,-0.578108,0.117824,-0.80513,-0.581277,-0.20632,-0.220397,-0.95334,-0.205473,-0.221082,-0.953364,0.0759876,-0.815674,-0.5735,0.0680307,-0.835042,-0.545965,0.255488,-0.96578,-0.0446667,0.256416,-0.965396,-0.047556,0.28622,-0.956991,-0.0473894,0.296074,-0.952524,-0.0709774,-0.26641,0.427694,-0.863773,-0.228263,0.396095,-0.889384,-0.341446,0.401604,-0.849781,-0.306843,0.370847,-0.876539,-0.289205,0.930021,-0.226761,-0.25422,0.92264,-0.290014,-0.315839,0.905435,-0.283607,-0.302908,0.900968,-0.310649,0.724447,0.637884,-0.261306,0.648116,0.751179,-0.125199,0.223203,0.934828,0.276184,0.211073,0.930964,0.297918,0.10629,0.965683,-0.236979,0.0918555,0.974644,-0.204041,0.164513,0.94031,0.297914,0.137574,0.924985,0.354226,-0.0149685,0.992061,-0.124863,0.0177475,0.979105,-0.202581,0.116193,0.911961,0.39348,0.137678,0.92497,0.354225,0.013305,0.991664,-0.128159,0.01972,0.98953,-0.142973,0.199205,0.484527,-0.851793,0.413152,0.278723,-0.866959,0.0871554,0.0673637,-0.993915,0.0158053,0.00229637,-0.999872,-0.0618252,-0.601284,-0.79664,0.374476,-0.148704,-0.915235,0.401285,-0.458505,0.792934,0.384474,-0.448011,0.807134,0.409235,-0.859846,0.305272,0.387733,-0.857771,0.337479,0.405386,-0.849831,0.336824,0.376219,-0.842655,0.385217,0.359393,-0.469875,0.806259,0.370563,-0.475272,0.797997,0.343634,-0.850461,0.398285,0.348798,-0.853448,0.387255,0.370354,-0.64561,0.667852,0.393793,-0.680154,0.618318,0.020694,-0.446702,0.894444,0.346688,-0.483378,0.803837,0.32518,-0.872547,0.364581,0.309732,-0.860006,0.405532,0.35239,-0.45655,0.816935,0.358893,-0.445535,0.820179,0.361004,-0.45956,0.811468,0.576606,-0.236835,0.781943,0.233406,-0.966857,-0.103481,0.28179,-0.958033,-0.0526081,0.324306,-0.872735,0.364909,0.344622,-0.855395,0.386697,0.252209,-0.956977,-0.143474,0.277511,-0.953517,-0.117445,0.259019,0.221355,0.940165,0.250192,0.230118,0.940452,0.218111,0.21123,0.95279,0.208077,0.220634,0.952903,0.281075,0.219361,0.934279,0.283181,0.227517,0.931689,0.320187,0.628814,0.708571,0.0412102,0.69265,0.720096,0.0527677,0.703745,0.70849,0.0668874,0.696457,0.714474,0.218115,0.228052,0.948904,0.241599,0.208287,0.947759,0.353598,-0.233791,0.90571,0.356034,-0.236435,0.904068,0.136282,-0.745235,-0.652727,0.197538,-0.770248,-0.60638,-0.0176714,-0.187914,-0.982026,-0.0269554,-0.216134,-0.975991,-0.114608,-0.195324,-0.974019,-0.0967255,-0.209847,-0.972938,0.149371,-0.745317,-0.649763,0.143409,-0.742611,-0.654189,0.254257,-0.677978,-0.68971,0.284137,-0.693461,-0.662102,0.276367,-0.953322,-0.121647,0.254279,-0.956319,-0.14421,0.347575,-0.932772,-0.0955428,0.317949,-0.938909,-0.131753,-0.256933,0.424557,-0.86818,-0.264061,0.41072,-0.872686,-0.20252,0.391116,-0.897783,-0.185314,0.423559,-0.886711,-0.267858,0.909577,-0.317681,-0.279926,0.901302,-0.330598,-0.239735,0.908242,-0.342962,-0.211434,0.925707,-0.313628,0.3468,-0.651027,0.675199,0.348818,-0.648228,0.676851,0.313881,-0.860866,0.400485,0.349239,-0.832652,0.429794,0.329721,-0.837183,0.436358,0.376867,-0.791989,0.480338,0.316724,-0.342516,0.884516,0.278231,-0.384009,0.880412,0.658177,-0.367087,0.657306,0.382716,-0.0992524,0.918519,0.305566,-0.378634,0.873651,0.386564,-0.25404,0.886585,0.480743,-0.76509,0.428396,0.431397,-0.767955,0.473436,0.188282,0.118989,0.97488,0.184363,0.114361,0.976182,0.280465,0.129796,0.951048,0.34643,0.195089,0.917565,-0.0972568,0.839919,0.533927,-0.0976788,0.836971,0.538459,-0.0406361,0.698176,0.714772,-0.295554,0.500194,0.813913,-0.178087,0.92581,0.333407,-0.172778,0.932492,0.317186,0.320037,-0.763854,-0.56045,-0.126665,-0.69035,-0.712301,-0.00561594,-0.614711,-0.788732,-0.0994567,0.0680808,-0.99271,-0.0487388,0.104496,-0.99333,-0.316121,-0.669294,-0.672393,-0.27181,-0.641731,-0.717147,0.0140646,-0.99479,-0.100975,-0.145354,-0.988811,0.0335254,0.34051,0.937941,-0.0657218,0.361807,0.923035,-0.130773,0.548198,0.66407,0.508419,0.495527,0.624496,0.603703,0.385034,0.919833,-0.0752004,0.371975,0.92812,-0.0150684,-0.428866,-0.800369,-0.418908,-0.41852,-0.811875,-0.407062,0.488394,-0.28418,0.825053,0.448541,-0.307179,0.839316,-0.466667,-0.809765,-0.355672,-0.447075,-0.793584,-0.412733,-0.399119,-0.31802,-0.859981,-0.391053,-0.346349,-0.852713,0.194558,-0.85798,0.475413,0.163598,-0.848572,0.503151,0.712648,-0.455735,0.533328,0.671948,-0.489849,0.555458,0.453446,0.850744,0.265745,0.400147,0.858458,0.320831,0.463345,0.544413,0.699232,0.475866,0.553344,0.683638,0.0213716,-0.998142,-0.0570575,0.0345853,-0.994667,-0.0971716,0.216542,0.36742,0.904495,0.240818,0.399206,0.88467,0.162781,0.652513,0.740087,-0.179566,0.529903,0.82883,0.171475,0.64766,0.742383,0.210867,0.682108,0.700188,-0.0432186,-0.625046,-0.77939,-0.0430953,-0.624826,-0.779573,-0.21219,0.429002,-0.878028,-0.248419,0.475846,-0.843717,0.337957,-0.0826806,0.937523,0.316132,-0.108049,0.942542,0.338419,-0.117271,0.933659,0.317207,-0.139216,0.938082,0.410374,-0.177612,0.894454,0.381141,-0.208088,0.900795,0.359911,0.682678,0.635936,0.365554,0.673331,0.642648,0.192832,0.653075,-0.732331,0.185264,0.647708,-0.739021,0.0608439,0.0978933,-0.993335,0.0631656,0.100421,-0.992938,-0.0380308,-0.451358,-0.891532,-0.0529466,-0.418059,-0.906875,0.337613,0.0220877,-0.941026,0.328803,0.0548575,-0.942804,0.422776,0.475646,-0.771376,0.379412,0.575736,-0.724275,-0.0828853,-0.546163,0.833568,-0.012651,-0.496482,0.867955,0.38494,-0.102818,0.917197,0.358827,-0.138122,0.923128,0.587061,0.477113,0.654005,0.477044,0.378488,0.793206,0.128462,0.823239,0.552969,0.134228,0.833423,0.536086,0.100374,0.913237,0.394872,0.0979591,0.911373,0.399755,0.214252,-0.693468,0.687894,0.187974,-0.724532,0.663114,0.235898,-0.213195,0.948103,0.234028,-0.215342,0.948082,0.525414,0.413757,0.743469,0.527576,0.415484,0.74097,0.213865,-0.501209,0.838482,0.216197,-0.498631,0.83942,0.307553,0.701516,0.642874,0.159325,0.386958,0.908228,0.068868,0.60065,0.79654,0.230261,0.500323,0.83466,0.317348,0.140744,0.937806,0.314821,0.136605,0.939269,0.644172,0.350424,0.679886,0.493734,0.228868,0.838955,0.168424,-0.164359,-0.971915,0.187995,-0.182324,-0.965099,-0.0731048,0.938534,0.337357,-0.113105,0.946297,0.302867,-0.230482,-0.693577,0.682517,-0.229974,-0.689452,0.686854,0.0175961,-0.625663,0.779895,-0.117289,-0.518623,0.84692,-0.0382648,-0.685631,0.726943,0.00605084,-0.690397,0.723405,-0.00135013,-0.672246,0.740327,-0.0148187,-0.671388,0.740958,-0.116972,-0.726234,0.677423,-0.222412,-0.702306,0.676239,0.288021,0.342412,0.894314,0.296073,0.35381,0.88722,0.0723431,0.849257,0.523,0.0780458,0.846653,0.52639,0.266372,0.487124,0.831719,0.164428,0.564833,0.808658,-0.764503,-0.298947,-0.57111,-0.750539,-0.298484,-0.589575,0.642079,0.619058,-0.45222,0.641557,0.625308,-0.44429,0.0599729,-0.762761,0.643894,0.103843,-0.633617,0.766646,0.609213,-0.471745,0.637429,0.598535,-0.49897,0.626725,0.10704,-0.603293,0.790304,0.096822,-0.627899,0.772249,0.511706,-0.372604,0.77416,0.511948,-0.371996,0.774292,0.835148,0.108798,0.539157,0.881866,0.135847,0.451506,0.952967,-0.00800866,0.302969,0.943981,-0.0138734,0.329707,0.902277,-0.394077,0.174929,0.917101,-0.396994,-0.0363496,0.58953,-0.80532,-0.0625564,0.83334,-0.551744,-0.0335178,0.63592,-0.77174,-0.00480801,0.125758,-0.990281,0.0594089,0.583995,0.319481,0.746245,0.371856,0.610847,0.698992,0.454782,0.133546,0.880533,0.920189,0.0483436,0.388478,0.0949261,-0.675429,0.731289,-0.0805231,-0.736694,0.671415,0.389497,0.133862,-0.911248,0.0853884,0.13992,-0.986474,0.443781,-0.298543,0.844944,0.294175,-0.310007,0.904078,0.153527,-0.980776,-0.120453,0.104573,-0.988169,-0.112194,-0.563037,-0.660154,-0.497178,-0.582061,-0.663625,-0.469902,0.664243,-0.102384,0.740472,0.664617,-0.0877443,0.742014,0.696878,0.0406977,0.716034,0.70782,-0.144529,0.691449,0.0671664,-0.949504,0.306482,0.0660175,-0.915698,0.396408,0.427525,-0.899204,-0.0930254,0.399272,-0.909602,-0.114915,-0.113565,0.433756,-0.893845,-0.116913,0.43713,-0.891767,0.106693,0.194483,0.975086,0.109287,0.192644,0.975164,0.144269,0.252063,0.956896,0.125644,0.197654,0.972186,-0.163958,-0.275433,-0.947235,-0.173709,-0.287322,-0.941951,-0.0704111,-0.712507,-0.698124,-0.0375118,-0.661969,-0.748592,0.364177,0.848165,0.384697,0.359011,0.84281,0.400977,0.794357,0.167447,0.583916,0.80886,0.220257,0.54519,0.166353,-0.650571,0.741002,0.16358,-0.627537,0.761209,-0.0317879,-0.787659,0.615291,-0.0346669,-0.769892,0.637232,0.298711,-0.387126,0.872299,0.356808,-0.44578,0.820956,0.119664,-0.798226,-0.590352,0.15411,-0.810797,-0.564675,0.0990644,0.530883,0.841635,0.0934747,0.505239,0.857902,0.0532085,0.684986,-0.726611,0.122844,0.71409,-0.689192,0.548203,0.536702,0.641424,0.602929,0.352954,0.715472,-0.365704,-0.856171,-0.365009,-0.401661,-0.817522,-0.412706,0.669303,0.131545,0.731252,0.529325,-0.0596377,0.846321,-0.165279,0.344079,-0.924279,-0.161571,0.27765,-0.946998,-0.442124,-0.280595,-0.851934,-0.434461,-0.305082,-0.847449,0.517106,0.660718,0.544107,0.504961,0.648326,0.569814,-0.465816,-0.492669,-0.735046,-0.407777,-0.429984,-0.805501,0.669406,0.647722,0.363801,0.73006,0.588705,0.347041,0.189155,0.978166,-0.086089,0.185767,0.978513,-0.0894628,0.135171,-0.896466,0.421993,0.13462,-0.895771,0.42364,0.705661,0.285356,0.648548,0.57849,0.112093,0.807951,0.202869,-0.580241,0.788774,0.206242,-0.577548,0.789875,0.0928774,-0.471316,0.87706,-0.0740217,-0.548327,0.832982,0.474002,-0.181132,0.861692,0.432799,-0.229011,0.871917,-0.0515861,-0.975437,0.214154,-0.117391,-0.955716,0.269864,0.232692,0.00594351,0.972532,0.223036,-0.00419728,0.974801,0.155511,0.535021,0.830402,0.191033,0.578892,0.792711,-0.0207297,0.990421,-0.136512,-0.00188933,0.983002,-0.183586,0.46789,0.497437,0.730503,0.405837,0.311538,0.859209,-0.0266215,-0.19321,-0.980796,-0.0639559,-0.257228,-0.964232,0.972177,0.098939,-0.212328,0.886431,0.304811,-0.348325,0.0427758,0.594918,0.802648,0.0391848,0.596164,0.801906,0.0717932,0.697986,0.712504,0.0414759,0.626472,0.77834,0.272811,-0.0800522,0.958731,0.293849,-0.0629564,0.953776,-0.826069,-0.277612,-0.49045,-0.772409,-0.287817,-0.566168,0.557132,0.711896,-0.427561,0.557451,0.725039,-0.404433,-0.138066,-0.706291,0.694328,-0.0880814,-0.715416,0.693124,0.950434,-0.139721,-0.277766,0.981134,-0.0647548,-0.182161,0.4728,0.250923,0.844688,0.361822,-0.00523186,0.932233,0.251102,0.70222,0.666209,0.229837,0.676647,0.699516,0.507714,0.225743,0.831424,0.435358,0.394427,0.809253,0.261799,-0.234432,0.936217,0.087088,-0.536954,0.839104,0.00875372,-0.771911,0.635671,-0.00677106,-0.877433,0.479651,-0.399873,-0.907629,0.127716,-0.348653,-0.927316,0.136109,0.320927,-0.941345,-0.104284,0.303116,-0.950275,-0.0713981,0.915348,-0.240127,-0.32323,0.804479,-0.590956,0.0598672,-0.137184,0.940213,0.311738,-0.136644,0.941073,0.30937,-0.0237771,-0.215334,-0.976251,-0.0313161,-0.235471,-0.971377,0.195454,0.299494,0.933864,0.179688,0.261911,0.948217,-0.355112,0.0245333,-0.934502,-0.256341,0.105504,-0.960811,0.613184,-0.785059,0.0876767,0.402721,-0.891095,0.209201,-0.305253,0.39854,-0.864862,-0.34245,0.444612,-0.827676,-0.102519,0.430135,-0.896924,-0.0914689,0.440094,-0.893281,-0.167969,0.633223,-0.755523,-0.0930459,0.731569,-0.675388,-0.144113,0.981467,-0.126306,-0.11733,0.988176,-0.0986983,-0.0646987,0.951817,0.299764,-0.0389827,0.946542,0.320216,0.0223338,0.833072,0.552714,0.0897511,0.800942,0.591976,0.321954,0.367695,0.872437,0.198556,0.474938,0.857327,0.614493,-0.300885,0.729292,0.391139,-0.00136385,0.92033,-0.327232,-0.923935,-0.198151,-0.326886,-0.923865,-0.199043,-0.334004,-0.607153,-0.720976,-0.316939,-0.59734,-0.736705,0.401405,-0.539241,-0.740333,0.374252,-0.570304,-0.731224,-0.267022,-0.045515,-0.962615,-0.503253,-0.0304275,-0.863603,-0.825138,-0.564662,-0.0174481,-0.739099,-0.671087,0.0580979,-0.728028,-0.411812,-0.548076,-0.721423,-0.413189,-0.555719,-0.771526,-0.36347,-0.522147,-0.800525,-0.246559,-0.546231,-0.798156,-0.236241,-0.5542,-0.794849,-0.25285,-0.551618,-0.247763,0.174981,-0.952888,-0.371125,0.123869,-0.920284,-0.475498,-0.0666135,-0.877191,-0.638121,-0.0382928,-0.768983,0.00316427,-0.781361,0.624071,0.0147406,-0.756204,0.65417,-0.0693538,-0.733394,0.676257,-0.032995,-0.7414,0.670252,-0.294765,-0.794968,0.530226,-0.294912,-0.815363,0.498206,-0.586307,-0.79414,0.159954,-0.572232,-0.812659,0.110161,-0.710132,-0.423451,-0.562496,-0.71293,-0.422643,-0.559556,0.139192,0.0822225,-0.986846,-0.0276655,0.218409,-0.975465,-0.0232633,0.289883,-0.956779,0.0567437,0.252832,-0.965845,0.268157,0.0296533,-0.962919,0.140214,0.0678615,-0.987793,0.0208092,-0.00357151,-0.999777,0.223871,0.208742,-0.952002,-0.0977313,0.210676,-0.972658,-0.152383,0.259257,-0.953711,-0.161735,0.631957,-0.75794,-0.177848,0.616996,-0.766607,-0.0942612,0.923804,-0.371082,-0.150055,0.899077,-0.411272,0.0153592,0.989092,0.146493,0.00792168,0.989912,0.141461,0.086,0.838449,0.538151,0.134717,0.813719,0.565432,0.166684,0.620877,0.765982,0.163463,0.623352,0.764665,0.259809,0.3183,0.911693,0.213671,0.368708,0.904654,0.255902,0.36014,0.897114,0.243682,0.34604,0.906022,0.24471,0.312152,0.917975,0.275747,0.343859,0.897622,0.313285,0.0755067,0.946653,0.267199,0.145945,0.952525,0.324798,0.161868,0.931829,0.267722,0.116346,0.956446,0.240566,-0.0230183,0.97036,0.244542,-0.0204721,0.969423,0.221188,-0.284093,0.932935,0.157587,-0.316901,0.935275,0.192411,-0.262278,0.945615,0.135491,-0.300291,0.944176,0.011648,-0.652409,0.757777,0.0814609,-0.620925,0.779626,0.0643471,-0.707402,0.703876,0.315016,-0.880174,0.355049,-0.0991023,0.0281266,-0.99468,-0.0649232,-0.021647,-0.997655,0.210193,-0.212296,0.954332,0.258746,-0.185322,0.948001,0.292265,-0.0349736,0.955698,0.266361,-0.0549359,0.962307,-0.0283606,-0.109668,-0.993564,0.39061,-0.063591,-0.918357,0.730983,0.618259,0.288825,0.626963,0.690015,0.361657,0.794012,-0.523593,0.308861,0.77428,-0.542216,0.326331,0.244163,0.116961,0.962655,0.353256,0.0973713,0.930445,0.705374,-0.583282,-0.402777,0.775256,-0.543123,-0.322483,0.179766,0.0762684,-0.980748,0.0427304,-0.120394,-0.991806,0.0135091,-0.106688,-0.994201,0.0060374,-0.117004,-0.993113,0.0205684,-0.00529998,-0.999774,-0.056611,-0.0994821,-0.993428,0.0404665,0.167201,-0.985092,-0.0899919,0.0117437,-0.995873,-0.116867,0.243549,-0.962822,-0.149347,0.203754,-0.967564,0.273844,-0.00134496,-0.961773,0.0941828,0.246389,-0.964584,-0.0164075,-0.0240206,-0.999577,-0.00601918,-0.0479298,-0.998833,0.0997381,0.0247214,-0.994707,-0.0180957,-0.0283195,-0.999435,-0.0986657,-0.969115,-0.22601,-0.116111,-0.957645,-0.263505,0.220866,-0.868963,-0.442855,0.278498,-0.925321,-0.257333,-0.0466579,-0.68013,-0.731605,-0.0954982,-0.598128,-0.79569,0.0302006,0.00756898,-0.999515,0.0597171,-0.0149606,-0.998103,0.0034882,-0.0759753,-0.997104,0.0516973,-0.00766177,-0.998633,0.0150762,-0.0765542,-0.996951,0.0587743,-0.00715149,-0.998246,0.00414843,0.00026255,-0.999991,0.164693,-0.14845,-0.97511,0.683373,-0.429964,-0.590027,0.596133,-0.62523,-0.503698,0.633463,0.486271,-0.601884,0.0238454,-0.1552,-0.987595,0.0158475,-0.159545,-0.987063,0.331417,-0.168475,-0.928321,0.547498,-0.10102,-0.830687,0.102593,0.734525,0.670781,0.150086,0.82044,0.551681,-0.204129,0.941295,-0.268877,-0.243812,0.928075,-0.281483,-0.322748,0.6655,-0.673011,-0.300935,0.679756,-0.668857,-0.327824,0.304491,-0.894325,-0.33283,0.299005,-0.894327,-0.280626,0.0921335,-0.955385,-0.303096,0.0567272,-0.95127,-0.260581,0.272687,-0.926142,-0.332787,0.203178,-0.920854,-0.261455,0.0419362,-0.964304,-0.275945,0.0579401,-0.959426,-0.15541,0.0425446,-0.986933,-0.181734,0.00110198,-0.983347,-0.0953827,-0.0516484,-0.9941,-0.124856,4.74238e-005,-0.992175,-0.0542056,-0.0770069,-0.995556,-0.0674256,-0.052745,-0.996329,0.00638166,-0.114115,-0.993447,-0.0111858,-0.0783583,-0.996863,0.139727,-0.264678,-0.95416,0.0575759,-0.111744,-0.992068,-0.274414,0.16688,-0.947021,-0.301356,0.0502562,-0.952186,-0.219521,0.891936,0.395299,-0.00976165,0.927734,0.373116,0.121215,-0.233318,0.964816,0.171533,-0.199353,0.964798,-0.403761,-0.126999,-0.906007,-0.428314,-0.0386642,-0.902803,-0.49149,-0.798058,0.348627,-0.375121,-0.926293,0.0355766,-0.557377,-0.00517817,-0.830244,-0.556,-0.0310564,-0.830602,-0.649072,-0.74785,-0.139377,-0.768393,-0.593803,-0.238684,-0.518676,-0.737947,-0.431752,-0.608631,-0.789088,-0.0831165,-0.722671,-0.306426,-0.619557,-0.726632,-0.290784,-0.622456,-0.517422,-0.423059,-0.743838,-0.53369,-0.396336,-0.747056,0.690978,-0.709402,-0.13892,0.690578,-0.720941,-0.0578491,0.980362,-0.197162,-0.00422538,0.966278,-0.255828,-0.0293031,0.905017,-0.163568,-0.39267,0.825859,-0.485559,-0.286687,0.854917,-0.492982,0.161508,0.491434,-0.808968,0.32259,0.878202,-0.458082,-0.137558,0.921405,-0.361078,-0.143651,0.83431,-0.505852,-0.219182,0.863034,-0.457814,-0.213491,0.838106,-0.525487,-0.14643,0.842916,-0.518662,-0.143115,0.950181,0.220641,-0.220168,0.95822,0.133462,-0.252986,0.895782,-0.381698,-0.227773,0.937257,-0.348397,-0.012986,0.377653,-0.339941,0.861289,0.267714,-0.36469,0.891813,0.0174791,0.998082,-0.0593854,0.0990054,0.993605,-0.0542808,0.0932926,0.933922,-0.345089,0.044681,0.937649,-0.3447,0.861398,0.213075,-0.461077,0.851887,0.263463,-0.452632,0.0312601,0.833557,-0.551549,0.012247,0.83307,-0.553032,0.885012,0.00936562,-0.465473,0.849796,0.209759,-0.483578,-0.574851,0.444099,-0.687257,-0.649779,0.435551,-0.622963,-0.816661,0.552419,0.167027,-0.781415,0.599703,0.172474,-0.820002,0.532959,0.20869,-0.814613,0.539327,0.213384,-0.746334,0.0288981,0.664943,-0.738364,0.0328862,0.6736,-0.357064,0.869,-0.342557,-0.28945,0.893564,-0.343164,0.127839,0.5629,-0.816579,0.645111,0.37528,-0.66558,-0.337376,-0.0581341,-0.939573,-0.386689,-0.0544516,-0.920601,-0.160141,-0.360095,-0.919068,-0.182802,0.0120532,-0.983076,-0.786904,0.514477,-0.340728,-0.533179,0.590778,-0.605559,-0.0805218,0.996749,-0.00285812,0.85887,0.352763,-0.371349,-0.750784,0.653527,-0.0960472,-0.817434,0.570429,-0.0800799,0.00652393,-0.768591,0.639707,0.367151,-0.654374,0.661056,-0.763299,0.0359422,0.645045,-0.660088,0.0679685,0.748107,0.43247,-0.723465,-0.538116,0.240713,-0.909259,-0.339567,0.762397,-0.511459,-0.396434,0.709077,-0.544764,-0.447708,0.94286,0.0647028,-0.326847,0.936551,0.062051,-0.344994,0.942242,-0.176124,0.284888,0.978226,-0.0316675,0.205114,0.310712,0.437182,-0.843996,0.0639567,0.577457,-0.813912,0.947084,0.179605,-0.266033,0.947095,0.179573,-0.266016,-0.03358,0.680425,-0.732048,0.0835493,0.639348,-0.764365,0.978408,-0.0725847,0.193516,0.986192,-0.138982,0.090057,0.955313,-0.197038,-0.220346,0.936502,-0.221643,-0.271733,0.976058,-0.204972,0.0727866,0.951792,-0.305198,-0.0307455,0.981709,-0.174007,0.0772651,0.954115,-0.295781,-0.0466633,0.953619,-0.266607,-0.139754,0.942754,-0.28704,-0.169774,0.819518,-0.494261,-0.289993,0.832452,-0.483696,-0.270299,0.785481,-0.348301,-0.511571,0.794054,-0.334227,-0.507711,0.997076,0.0312323,-0.0697428,0.9944,0.00620673,-0.105503,0.991029,-0.12758,-0.0398146,0.991336,-0.131347,-0.000313147,0.0606591,0.884969,0.461682,0.0979123,0.8908,0.44372,0.214904,0.390092,0.895346,0.160334,0.377535,0.912009,-0.761829,0.540526,0.356999,-0.824039,0.513501,0.239326,-0.7474,0.411642,0.521482,-0.78909,0.353128,0.50263,-0.645004,0.704676,0.295636,-0.587939,0.715529,0.377288,-0.809158,0.280506,0.516313,-0.708772,0.427336,0.561271,-0.370551,0.926343,-0.0676732,-0.395371,0.915767,-0.0710793,-0.519823,0.843357,0.136134,-0.429643,0.882538,0.19114,-0.139491,-0.643684,0.752472,0.949992,-0.114035,0.290709,0.914705,-0.189753,-0.356803,0.901501,-0.210667,-0.37804,0.92207,-0.155749,-0.3543,0.909992,-0.187796,-0.369658,0.916078,-0.396942,-0.056907,0.903468,0.351037,-0.246006,0.901196,-0.338813,-0.27028,0.836045,-0.44154,-0.325685,0.765339,-0.5872,-0.263539,0.952316,-0.3042,-0.0235983,0.989568,-0.119953,-0.0797882,0.979743,-0.161454,-0.118474,0.972362,-0.107873,-0.207064,0.960293,-0.129435,-0.247152,0.940324,-0.33029,-0.0818487,0.920588,-0.345752,-0.181585,0.928831,-0.358671,0.0928866,0.794931,-0.593039,-0.128021,0.978111,0.144094,-0.15012,0.972433,0.0278873,-0.231511,0.995139,-0.0792533,-0.0584578,0.994582,-0.0830907,-0.0624726,0.964205,0.155367,-0.214871,0.962826,0.172437,-0.20792,0.962298,0.17254,-0.21027,0.962074,0.146791,-0.229925,0.99628,-0.0458178,-0.0729821,0.991658,-0.00274293,-0.12887,0.999308,0.0182912,0.0323872,0.993066,0.0307477,-0.113463,0.984482,0.169745,-0.0445176,0.984597,0.16341,-0.0621732,0.96497,0.155981,-0.210958,0.958165,-0.0214667,-0.285409,0.962671,0.15876,-0.219226,0.963656,0.233042,-0.130605,0.85576,0.50341,0.119388,0.845874,0.524174,0.0986902,0.988014,0.147399,0.0458531,0.973211,0.229268,-0.0172366,0.947234,0.302728,0.105369,0.924061,0.380097,0.040464,0.692755,0.712774,0.10975,0.698682,0.705494,0.118836,0.408947,0.909553,0.0740031,0.455173,0.882157,0.120901,0.994926,0.015852,-0.0993496,0.983584,-0.0606047,-0.169971,0.992077,0.124686,-0.0153709,0.995054,0.00501532,-0.0992043,0.192641,0.97795,0.0806458,0.116099,0.99299,0.0221702,0.973873,-0.226341,-0.0184622,0.987713,-0.141436,-0.0664772,0.97236,-0.186059,-0.141058,0.968237,-0.194497,-0.157122,0.964891,-0.161695,-0.20698,0.972429,-0.152202,-0.176679,0.970391,-0.210813,-0.117899,0.926861,-0.238617,-0.289812,0.925374,-0.156283,-0.345337,0.906839,-0.158005,-0.390739,0.948049,0.0854934,-0.306421,0.868127,0.175928,-0.464117,0.945714,0.109547,-0.305982,0.960208,0.156645,-0.231219,0.641912,-0.557634,0.526302,0.632948,-0.571231,0.522562,0.73307,-0.5054,0.455169,0.726277,-0.518138,0.451724,0.649558,-0.622211,0.436953,0.641634,-0.635358,0.429681,0.7536,-0.543325,0.369979,0.747566,-0.556555,0.362478,0.072784,-0.869,0.489429,0.103684,-0.855848,0.506728,0.0986647,-0.79591,0.597322,0.123921,-0.781772,0.611127,0.652461,-0.66289,0.367248,0.638127,-0.6882,0.345217,0.762146,-0.569546,0.307816,0.76397,-0.565266,0.311166,0.847172,-0.487092,0.212228,0.861,-0.448935,0.239032,0.0884844,-0.921424,0.378349,0.0782996,-0.925577,0.370373,0.509218,-0.768237,0.387955,0.478619,-0.804005,0.352844,0.521386,-0.702193,0.484852,0.495507,-0.732538,0.466756,0.528027,-0.619029,0.58137,0.503017,-0.649591,0.570092,0.290026,-0.88909,0.354123,0.321359,-0.866179,0.382705,0.306224,-0.820356,0.482952,0.347971,-0.788109,0.50774,0.332917,-0.74198,0.581921,0.384483,-0.692517,0.610404,0.830494,-0.486943,0.270494,0.840705,-0.458267,0.288454,0.813601,-0.459192,0.356645,0.818375,-0.447149,0.360998,0.965403,-0.247002,-0.0835929,0.959308,-0.272026,-0.0756963,0.975939,-0.201727,-0.0827556,0.972501,-0.22088,-0.0738427,0.965978,-0.216246,-0.141858,0.972307,-0.205874,-0.110613,0.972959,-0.175788,-0.149832,0.980071,-0.161436,-0.115752,0.971677,-0.169728,-0.164425,0.972999,-0.168539,-0.157694,0.977637,-0.129904,-0.165381,0.982887,-0.123476,-0.136702,0.968737,-0.112827,-0.220952,0.97343,-0.113318,-0.198978,0.979704,-0.0818636,-0.182972,0.97737,-0.0822488,-0.194892,0.958556,-0.012542,-0.284629,0.961784,-0.014941,-0.273402,0.969073,-0.0193378,-0.246015,0.958545,-0.0125707,-0.284664,0.872271,-0.441325,0.210654,0.862157,-0.468484,0.192894,0.869557,-0.452876,0.196909,0.871849,-0.446955,0.200278,0.765538,-0.579528,0.27946,0.766753,-0.576684,0.282003,0.758015,-0.601204,0.252918,0.766044,-0.583826,0.268929,0.627352,-0.717754,0.30209,0.640382,-0.694139,0.328759,0.612289,-0.746302,0.261029,0.628115,-0.720237,0.294499,0.458836,-0.836931,0.298354,0.481129,-0.810471,0.334144,0.431883,-0.871535,0.232173,0.460475,-0.84114,0.283631,0.269524,-0.918852,0.288215,0.294061,-0.901146,0.318535,0.239516,-0.950641,0.197263,0.273343,-0.930138,0.245206,0.080645,-0.954715,0.286385,0.0915316,-0.950325,0.297497,0.0703852,-0.979305,0.189756,0.0823621,-0.975529,0.203864,0.931616,-0.345679,0.11224,0.933834,-0.339224,0.113495,0.92493,-0.357221,0.129988,0.931209,-0.351517,0.0963579,0.924983,-0.350038,0.147919,0.919594,-0.368778,0.135462,0.908023,-0.377425,0.181783,0.915049,-0.347959,0.203984,0.954185,-0.299018,0.0108973,0.956005,-0.292603,0.0209275,0.959119,-0.277807,-0.0539808,0.955967,-0.286246,-0.0647315,0.936777,0.0314417,-0.348511,0.937513,-0.0305145,-0.34661,0.927986,0.110842,-0.355747,0.929836,0.0559803,-0.363691,0.935157,0.108293,-0.337275,0.971067,0.0419149,-0.235099,0.941342,0.0761305,-0.328754,0.941469,0.078688,-0.327786,0.965084,-0.18562,-0.184818,0.947194,-0.211912,-0.24066,0.869841,-0.450973,0.199997,0.869929,-0.450987,0.199585,0.758024,-0.601578,0.252,0.747987,-0.603239,0.2768,0.613065,-0.750066,0.248099,0.586824,-0.753944,0.295305,0.857633,-0.500139,0.119693,0.858101,-0.500028,0.116765,0.0479261,-0.989579,0.135781,0.0710093,-0.991762,0.10661,0.389333,-0.882051,0.265341,0.434134,-0.878923,0.19754,0.195252,-0.9798,0.0432216,0.189071,-0.980549,0.0526893,0.392659,-0.917876,0.05765,0.357163,-0.92633,0.119779,0.590577,-0.799583,0.109019,0.556508,-0.811091,0.180083,0.743426,-0.654468,0.137805,0.724254,-0.661713,0.193886,0.92054,-0.389026,0.0355779,0.919178,-0.393835,0.00251001,0.0470458,-0.997557,0.0516498,0.0552003,-0.997656,0.040449,0.242228,-0.960465,0.137233,0.195953,-0.960045,0.199792,0.924344,-0.371454,0.0872356,0.939933,-0.328344,0.0933642,0.947276,-0.320411,0.00209311,0.940998,-0.337416,-0.0259549,0.939152,-0.337911,-0.0617146,0.941379,-0.330397,-0.0681382,0.917915,-0.38795,-0.0832254,0.930367,-0.36475,-0.0370668,0.917855,-0.391248,-0.0668358,0.898125,-0.428415,-0.0991569,0.901489,-0.424872,-0.0824648,0.870616,-0.481737,-0.0997879,0.935286,-0.344816,-0.0796401,0.907698,-0.409541,-0.0914347,0.944074,-0.316282,-0.0932236,0.942581,-0.31797,-0.10216,0.942769,-0.283565,-0.175436,0.948997,-0.277268,-0.150092,0.938611,-0.25886,-0.228037,0.94243,-0.25663,-0.214398,0.938953,-0.213157,-0.270059,0.935026,-0.213238,-0.283294,0.932962,-0.0804273,-0.350874,0.928584,-0.138387,-0.344356,0.895369,0.0515123,-0.442336,0.897726,0.0254529,-0.439818,0.866757,0.0094807,-0.498641,0.923038,-0.0163252,-0.384363,0.885844,-0.260578,-0.383899,0.938764,-0.241162,-0.246096,0.824685,-0.528862,-0.2005,0.804737,-0.591078,-0.0549964,0.79066,-0.569474,-0.224846,0.786131,-0.585403,-0.198243,0.639695,-0.765432,-0.0700313,0.632657,-0.773918,-0.0282139,0.182049,-0.982096,-0.0484423,0.137337,-0.990523,-0.00142629,0.30449,-0.349027,-0.886265,0.22677,-0.491189,-0.841016,0.192405,-0.972866,-0.128502,0.184884,-0.971822,-0.146216,0.243126,-0.784,-0.571168,0.270396,-0.802651,-0.531636,0.782812,-0.551134,-0.288889,0.810619,-0.48552,-0.327364,0.739649,-0.626674,-0.245356,0.767062,-0.572043,-0.290486,0.705998,-0.666004,-0.240844,0.691819,-0.690088,-0.212523,0.716309,-0.679442,-0.158935,0.71428,-0.666783,-0.212614,0.630364,-0.770037,-0.0984063,0.630959,-0.764226,-0.1336,0.773011,-0.619652,-0.135962,0.767463,-0.59799,-0.231102,0.838035,-0.444644,-0.316212,0.849612,-0.412585,-0.328531,0.925283,-0.299953,-0.232121,0.828319,-0.37278,-0.418237,0.840085,-0.497067,-0.217212,0.841881,-0.490764,-0.22447,0.596606,-0.798634,-0.0790252,0.59799,-0.796615,-0.0883902,0.594439,-0.801753,-0.0619225,0.607415,-0.792463,-0.0552129,0.681063,-0.727827,-0.0801387,0.645769,-0.757719,-0.094047,0.732172,-0.674102,-0.0975237,0.72361,-0.676124,-0.138725,0.633192,-0.768235,-0.0942438,0.633441,-0.765395,-0.11368,0.6882,-0.715297,-0.121369,0.682661,-0.715575,-0.148077,0.627895,-0.771107,-0.105554,0.627796,-0.771689,-0.101821,0.6708,-0.727223,-0.145512,0.672399,-0.727459,-0.136685,0.65246,-0.749089,-0.11473,0.650605,-0.755822,-0.073793,0.678131,-0.712812,-0.178992,0.68597,-0.715749,-0.130953,0.725462,-0.563123,-0.395724,0.896225,-0.274583,-0.348404,0.602153,-0.793481,-0.0883132,0.601303,-0.794787,-0.0821467,0.653472,-0.748092,-0.115467,0.642213,-0.764714,-0.0526853,0.796436,-0.586088,-0.148962,0.767893,-0.601578,-0.220098,0.842724,-0.486839,-0.22979,0.811912,-0.508096,-0.287467,0.741538,-0.649577,-0.167841,0.72801,-0.656469,-0.197611,0.786648,-0.567283,-0.243671,0.764492,-0.582559,-0.276002,0.70276,-0.682129,-0.20206,0.708993,-0.679396,-0.189077,0.739351,-0.625908,-0.24819,0.722475,-0.637083,-0.268619,0.680284,-0.689992,-0.247234,0.702648,-0.682226,-0.202123,0.684974,-0.681117,-0.258633,0.683908,-0.68177,-0.259729,0.611461,-0.780146,-0.132241,0.655792,-0.746772,-0.110762,0.666224,-0.675703,-0.31555,0.751572,-0.575976,-0.321547,0.621467,-0.783038,-0.025091,0.633847,-0.769788,-0.0752641,0.448671,-0.891793,-0.0582961,0.497419,-0.854447,-0.149983,0.251393,-0.906777,-0.338463,0.159563,-0.972078,-0.17206,0.351271,-0.658629,-0.665445,0.23734,-0.814715,-0.529064,0.480526,-0.741721,-0.467914,0.469039,-0.756708,-0.455407,0.716109,-0.673693,0.182553,0.797797,-0.598556,-0.0724675,0.850257,-0.518699,0.0895232,0.789102,-0.540932,0.291052,0.618184,-0.760407,-0.199075,0.634214,-0.748839,-0.192388,0.612476,-0.733447,-0.294836,0.654819,-0.709764,-0.259708,0.663762,-0.684188,-0.30217,0.699517,-0.673814,-0.238014,0.693149,-0.682857,-0.23076,0.7101,-0.68846,-0.147585,0.67705,-0.733907,-0.0546197,0.670087,-0.742267,-0.00482981,0.633488,-0.773753,0.000108175,0.631106,-0.775636,0.00972577,0.473923,-0.880341,0.0199339,0.461776,-0.885578,0.0501502,0.165036,-0.985058,0.0492385,0.17277,-0.984366,0.0342658,0.730931,-0.655827,-0.188761,0.730514,-0.657188,-0.185615,0.643597,-0.75599,-0.119425,0.646302,-0.748524,-0.148343,0.346498,-0.920915,-0.178478,0.384399,-0.923149,-0.00580929,0.521943,-0.832926,-0.183874,0.528461,-0.843597,-0.0952504,0.480129,-0.856876,-0.187723,0.496568,-0.866706,-0.0473503,0.628736,-0.736941,-0.24821,0.639133,-0.763967,-0.0886797,0.615726,-0.685637,-0.388308,0.594359,-0.671107,-0.443117,0.712126,-0.666797,-0.219679,0.690824,-0.644811,-0.32708,0.540345,-0.365807,-0.757768,0.585256,-0.276291,-0.762325,0.631438,-0.473802,-0.613838,0.739,-0.278688,-0.613361,0.889262,-0.424398,-0.170585,0.899385,-0.417599,-0.1293,0.90652,-0.359916,-0.220638,0.91224,-0.355955,-0.202765,0.916423,-0.313342,-0.24897,0.910904,-0.316345,-0.264916,0.922782,-0.149891,-0.354974,0.916577,-0.208757,-0.341038,0.924615,-0.265252,-0.273367,0.911571,-0.268094,-0.311711,0.808262,-0.568053,-0.155013,0.749039,-0.652149,-0.1168,0.860333,-0.480357,-0.170538,0.822521,-0.550178,-0.144098,0.899243,-0.345417,-0.268419,0.88859,-0.378009,-0.259842,0.872944,-0.370943,-0.316811,0.8765,-0.369045,-0.309118,0.896083,-0.318959,-0.308707,0.904895,-0.315438,-0.285768,0.869398,-0.305602,-0.388271,0.866667,-0.305883,-0.394111,0.895287,-0.248939,-0.369446,0.899747,-0.249237,-0.35824,0.86259,-0.462625,-0.204737,0.889567,-0.396685,-0.226519,0.812346,-0.551935,-0.188313,0.851451,-0.478746,-0.214085,0.851106,-0.435646,-0.29297,0.875559,-0.42006,-0.238632,0.541343,0.048267,-0.839415,0.519293,-0.00903233,-0.854548,0.533393,0.135442,-0.834954,0.518524,0.0497856,-0.853613,0.665483,0.038721,-0.745408,0.648336,-0.0403696,-0.760283,0.599359,0.103883,-0.793711,0.606065,-0.0152423,-0.795269,0.774668,0.0221509,-0.63198,0.788273,-0.171368,-0.590981,0.686798,0.0593869,-0.724418,0.6998,-0.0862337,-0.709115,0.826211,-0.154455,-0.541773,0.805612,-0.145333,-0.574341,0.802334,-0.00692334,-0.596835,0.765942,0.00505134,-0.64289,0.857357,-0.107023,-0.503473,0.853867,-0.105571,-0.509673,0.871362,0.0223249,-0.490133,0.824103,0.0412228,-0.564938,0.887779,-0.0463271,-0.457933,0.883584,-0.0018815,-0.468268,0.42842,0.0934831,-0.898731,0.391803,0.00285221,-0.920045,0.144378,0.0513448,-0.98819,0.231349,-0.00788,-0.972839,0.146509,0.171048,-0.974309,0.111165,0.128692,-0.985434,0.335157,0.161272,-0.928257,0.307228,0.110526,-0.945196,0.466625,0.157076,-0.870395,0.438541,0.0951118,-0.893664,0.844931,-0.176319,-0.504978,0.916444,-0.171061,-0.361758,0.550353,-0.0635933,-0.832506,0.559995,-0.036828,-0.827677,0.585001,-0.193612,-0.787583,0.61109,-0.0217657,-0.791262,0.677744,-0.264494,-0.68608,0.702867,-0.0913231,-0.705435,0.851917,-0.160916,-0.49834,0.760755,-0.159749,-0.629073,0.980627,-0.19443,-0.0238155,0.942467,-0.321305,-0.092302,0.840162,-0.536068,0.0822126,0.816944,-0.55717,0.148873,0.721184,-0.669203,0.179057,0.704235,-0.676575,0.215171,0.812434,-0.491782,0.313212,0.782992,-0.503293,0.36554,0.950329,-0.259832,-0.171355,0.976222,-0.17075,-0.133545,0.738718,-0.665784,0.105012,0.778587,-0.596589,0.194639,0.415539,-0.899573,0.134524,0.413533,-0.900891,0.131856,0.709016,-0.511066,0.485909,0.791027,-0.495415,0.358943,0.792504,-0.526329,0.308083,0.812279,-0.468444,0.347509,0.773968,-0.570799,0.274157,0.791921,-0.523105,0.314997,0.458474,-0.774381,0.436045,0.420475,-0.82073,0.386786,0.421078,-0.834221,0.356046,0.41396,-0.833113,0.366824,0.767869,-0.43958,0.465991,0.76935,-0.439376,0.463735,0.696103,-0.605327,0.38603,0.726706,-0.598105,0.33789,0.940991,-0.222243,0.255232,0.943628,-0.301991,0.135528,0.891678,-0.354627,0.281336,0.952582,-0.272634,0.135122,0.839551,-0.328763,0.432514,0.885546,-0.32233,0.334532,0.457478,-0.791964,0.404359,0.459142,-0.789926,0.406455,0.812639,-0.52341,0.256241,0.817192,-0.512787,0.263149,0.791944,-0.510607,0.334821,0.83622,-0.492148,0.241924,0.774203,-0.518413,0.363122,0.788678,-0.514544,0.336498,0.829909,-0.489912,0.266903,0.787442,-0.502189,0.357408,0.895361,-0.177588,-0.408402,0.834417,-0.309491,-0.45603,0.40601,-0.845859,-0.345946,0.403755,-0.848299,-0.342595,0.36433,-0.70268,-0.611151,0.378364,-0.655591,-0.653484,0.815333,-0.549695,-0.181842,0.771246,-0.595112,-0.225878,0.687636,-0.718275,-0.106007,0.742933,-0.668952,-0.0235209,0.661844,-0.143826,-0.735715,0.834698,-0.305664,-0.458093,0.354466,-0.307809,-0.882954,0.340883,-0.289432,-0.894443,0.340367,-0.170743,-0.924661,0.299481,-0.262523,-0.917275,0.743334,-0.668503,-0.0236377,0.613317,-0.724653,-0.314198,0.436846,-0.36428,-0.822475,0.666734,-0.254599,-0.700461,0.567939,-0.554161,-0.608565,0.561251,-0.465001,-0.684668,0.522856,-0.333582,-0.784439,0.536752,-0.342212,-0.771225,0.595515,-0.565396,-0.570692,0.569557,-0.571023,-0.591218,0.391379,-0.750784,-0.532115,0.416604,-0.535738,-0.734456,0.187113,-0.369032,-0.910387,0.52315,-0.335292,-0.783514,0.500836,-0.596848,-0.626846,0.529899,-0.59661,-0.602714,0.499677,-0.548747,-0.670224,0.52797,-0.537868,-0.657226,0.604787,-0.317624,-0.730306,0.585404,-0.33045,-0.740341,0.583789,-0.0989563,-0.805853,0.571089,-0.118542,-0.812284,0.35386,-0.484981,-0.799735,0.341496,-0.503521,-0.793629,0.486827,-0.32635,-0.810243,0.443683,-0.345765,-0.826796,0.610251,-0.1052,-0.785192,0.489753,-0.224966,-0.842337,0.548009,-0.00609789,-0.83645,0.463556,-0.0958239,-0.880871,0.260079,-0.102067,-0.960178,0.310196,-0.228591,-0.922781,0.181239,-0.41385,-0.892121,0.215368,-0.415442,-0.883756,0.123221,-0.440976,-0.88902,0.176854,-0.429194,-0.885728,0.185378,-0.414981,-0.890745,0.119337,-0.462352,-0.878629,0.17931,-0.390465,-0.902987,0.060509,-0.470297,-0.880432,0.085352,-0.480766,-0.872685,0.315278,-0.632631,-0.707373,0.424707,-0.487795,-0.762679,0.390769,-0.489877,-0.779307,0.553579,-0.763427,-0.332761,0.666355,-0.695715,-0.268238,0.406642,-0.785194,-0.467026,0.547938,-0.769562,-0.327932,0.740076,-0.670224,-0.0555615,0.676966,-0.734495,-0.0472553,0.343986,-0.881967,0.322192,0.396671,-0.894177,0.207603,0.582855,-0.812573,-0.00202986,0.501069,-0.858302,0.110673,0.812778,-0.572527,-0.107723,0.758666,-0.643811,-0.0996667,0.745442,-0.655264,-0.122252,0.801501,-0.592841,-0.078333,0.682336,-0.726462,-0.0816754,0.608709,-0.775074,-0.169511,0.510525,-0.826981,-0.235514,0.485954,-0.862432,-0.14163,0.408905,-0.783594,-0.467736,0.286067,-0.732335,-0.617941,0.20658,-0.958147,0.19819,0.293393,-0.955988,-0.00278145,0.339243,-0.885091,0.318635,0.438151,-0.879202,0.187155,0.442165,-0.859471,0.256516,0.532078,-0.838424,0.118059,0.462217,-0.818003,0.342384,0.518516,-0.813405,0.263654,0.5049,-0.862472,0.0349097,0.394396,-0.903055,0.170127,0.427053,-0.75362,0.499683,0.514922,-0.754191,0.407494,0.384029,-0.814806,0.434295,0.46263,-0.816382,0.34568,0.660738,-0.746164,-0.0816389,0.584071,-0.811701,-0.00151783,0.746168,-0.655684,-0.115378,0.67644,-0.733152,-0.0701236,0.589406,-0.80695,-0.0378499,0.509256,-0.859812,0.037178,0.672076,-0.738566,-0.0532332,0.613218,-0.789679,-0.0192642,0.167335,-0.957561,-0.234684,0.253218,-0.961299,-0.108553,0.33215,-0.914515,-0.230952,0.328616,-0.917834,-0.222692,0.274807,-0.737019,-0.617482,0.263052,-0.763983,-0.58918,0.230349,-0.539562,-0.809822,0.215485,-0.519504,-0.826851,0.293078,-0.745545,-0.598554,0.132315,-0.583075,-0.801571,0.402909,-0.783281,-0.473429,0.27575,-0.757423,-0.591838,0.450821,-0.768359,-0.454295,0.406377,-0.779787,-0.476225,0.64982,-0.760004,0.0113259,0.636932,-0.770796,0.0138274,0.611686,-0.790978,-0.0139141,0.601076,-0.799159,-0.00728615,0.525303,-0.848582,-0.0629664,0.48206,-0.875905,-0.0202148,0.404133,-0.912813,-0.0587283,0.303964,-0.949686,0.0755127,0.313351,-0.946397,0.0783784,0.200182,-0.947905,0.247797,0.356918,-0.891953,0.277543,0.245779,-0.877343,0.412143,0.468562,-0.470272,-0.747859,0.352417,-0.61575,-0.704737,0.857345,-0.498356,-0.128847,0.817606,-0.562939,-0.120911,0.882815,-0.449504,-0.136325,0.857285,-0.498508,-0.128652,0.792346,-0.591163,-0.150713,0.74668,-0.654647,-0.117926,0.825097,-0.54093,-0.163124,0.790367,-0.596834,-0.138236,0.714227,-0.686049,-0.138626,0.66005,-0.747553,-0.0741462,0.748412,-0.653801,-0.11146,0.714773,-0.674895,-0.18335,0.638765,-0.765284,-0.0795041,0.582949,-0.812393,0.0137138,0.668627,-0.734226,-0.117683,0.641333,-0.765389,-0.0535823,0.507754,-0.839779,0.192242,0.55699,-0.823959,0.104188,0.780385,-0.566434,0.264862,0.768952,-0.571426,0.286679,0.442498,-0.790899,0.422699,0.440821,-0.792867,0.42076,0.830282,-0.54265,-0.127134,0.854598,-0.50447,-0.12318,0.663777,-0.701012,-0.260736,0.730056,-0.631515,-0.261165,0.438893,-0.805163,-0.398855,0.526614,-0.751006,-0.398332,0.0546634,-0.998212,0.0241637,0.13139,-0.985804,-0.104536,0.766787,-0.528448,0.36439,0.77013,-0.522676,0.365663,0.764833,-0.52201,0.377541,0.766143,-0.519761,0.377987,0.800812,-0.525058,0.288121,0.763801,-0.578912,0.285428,0.526745,-0.755479,0.389605,0.569993,-0.750739,0.333915,0.532207,-0.723559,0.439566,0.522022,-0.724548,0.450025,0.355833,-0.744435,-0.564977,0.257608,-0.833036,-0.489581,0.703845,-0.585537,-0.402179,0.736147,-0.555717,-0.386349,0.843402,-0.527386,-0.102652,0.840582,-0.537367,-0.0682531,0.83348,-0.464288,0.29958,0.843764,-0.441335,0.305428,0.833319,-0.492365,0.251308,0.839096,-0.489158,0.237997,0.860074,-0.487173,0.151447,0.872278,-0.461255,0.162404,0.844474,-0.460279,0.273874,0.864688,-0.412224,0.287029,0.756048,-0.652749,-0.0480624,0.744196,-0.663548,0.0766602,0.437308,-0.824533,0.359038,0.411927,-0.814572,0.408397,0.803601,-0.561008,0.198732,0.806519,-0.561049,0.186415,0.444336,-0.780142,0.440391,0.439331,-0.778158,0.448842,0.806235,-0.505541,0.307266,0.790178,-0.543289,0.283647,0.440694,-0.77223,0.457657,0.444289,-0.773493,0.452013,0.789194,-0.514978,0.334618,0.77838,-0.539977,0.320234,0.778421,-0.557912,0.287742,0.789128,-0.535152,0.301479,0.580588,-0.766991,-0.273207,0.591594,-0.79392,-0.140381,0.633251,-0.716194,0.293359,0.683414,-0.699361,0.209377,0.687549,-0.653012,0.317572,0.727007,-0.639511,0.249974,0.60338,-0.682795,0.411975,0.642825,-0.677229,0.357963,0.651899,-0.623485,0.431619,0.692751,-0.616911,0.37352,0.596404,-0.667738,0.445454,0.606425,-0.666622,0.433432,0.622744,-0.631733,0.461631,0.651482,-0.628651,0.424698,0.562712,-0.657208,0.501431,0.598355,-0.659605,0.454855,0.623405,-0.623974,0.471192,0.663936,-0.627271,0.407088,0.776393,-0.586464,0.230813,0.777496,-0.585887,0.228553,0.83545,-0.516227,0.188503,0.83242,-0.518296,0.196077,0.457308,-0.801673,0.384954,0.442434,-0.797523,0.410133,0.786106,-0.577732,0.219688,0.812564,-0.525219,0.252753,0.687515,-0.689765,0.227039,0.738511,-0.662776,0.123813,0.727648,-0.637337,0.253631,0.7579,-0.622762,0.194307,0.860822,-0.492766,-0.127151,0.854137,-0.505915,-0.120416,0.848431,-0.517517,-0.111087,0.862126,-0.498417,-0.091206,0.766618,-0.616763,-0.178608,0.726685,-0.674262,-0.131531,0.772872,-0.628113,-0.090233,0.776497,-0.621569,-0.103463,0.595873,-0.775448,-0.208845,0.547937,-0.822478,-0.152627,0.636888,-0.768171,-0.0654692,0.632151,-0.77353,-0.0451215,0.65938,-0.751796,-0.00459472,0.635562,-0.771947,-0.012647,0.781258,-0.621418,-0.0589526,0.725466,-0.68305,-0.0845047,0.855044,-0.512381,-0.0797806,0.815594,-0.569674,-0.101383,0.0242372,-0.998314,0.0527379,-0.0551452,-0.962535,0.26549,-0.0367346,-0.961575,0.272073,-0.212915,-0.851233,0.479656,0.224029,-0.783226,0.579972,-0.00346071,-0.746006,0.66593,0.455161,-0.600029,0.657871,0.218124,-0.591382,0.776331,0.490404,-0.519167,0.699978,0.667421,-0.381545,0.639509,0.890648,-0.256732,0.37528,0.835847,-0.315917,0.44895,0.967255,-0.177799,-0.18112,0.959918,-0.189333,-0.206666,0.786614,-0.211049,-0.580256,0.562159,-0.431453,-0.705567,0.341915,-0.890756,-0.299414,0.247542,-0.456127,-0.854793,-0.117143,-0.882117,-0.456231,-0.118266,-0.991972,0.0447667,0.525336,-0.8298,-0.188293,0.610145,-0.791768,-0.0287649,0.315365,-0.744255,-0.588753,0.651631,-0.672717,-0.35047,0.139676,-0.801271,-0.581769,0.31719,-0.737513,-0.596209,0.235895,-0.946821,-0.218824,0.218012,-0.9598,-0.176792,0.371032,-0.914672,0.160345,0.550189,-0.775479,0.309715,0.610256,-0.764124,0.209053,0.696921,-0.697107,0.168354,0.594929,-0.798812,0.0892156,0.639537,-0.76749,0.0441766,0.454588,-0.890011,-0.0350612,0.41715,-0.908566,0.0222347,0.220227,-0.974318,-0.0469555,0.150652,-0.98327,0.102388,0.532512,-0.80267,0.268611,0.662074,-0.694255,0.282255,0.160959,-0.986648,-0.0248478,0.0448377,-0.98396,0.172662,0.202939,-0.951649,0.230608,0.0115258,-0.907234,0.420468,0.423193,-0.769173,0.478832,0.232597,-0.758629,0.608589,0.570709,-0.608614,0.551253,0.455081,-0.600691,0.657321,0.682572,-0.482433,0.548957,0.657744,-0.50938,0.554892,0.818676,-0.441774,0.366885,0.866475,-0.379947,0.323823,0.926015,-0.358651,-0.117751,0.914684,-0.376029,-0.148175,0.783912,-0.370158,-0.498463,0.772766,-0.382232,-0.506686,0.468327,-0.401121,-0.787256,0.535303,-0.289393,-0.793538,0.155221,-0.402672,-0.902088,0.213748,-0.624018,-0.751607,0.096663,-0.670606,-0.735489,0.245509,-0.883071,-0.399889,0.298092,-0.772143,-0.561192,0.37413,-0.791951,-0.482535,0.261989,-0.749172,-0.608361,0.322416,-0.746181,-0.582462,0.277462,-0.806931,-0.521419,0.239967,-0.820065,-0.519528,0.36842,-0.898601,-0.23829,0.330076,-0.926011,-0.183175,0.488852,-0.872364,0.00225152,0.469521,-0.875366,0.11526,0.60271,-0.793095,0.0879794,0.674235,-0.735563,0.065989,0.600206,-0.799835,-0.00402081,0.624757,-0.780469,-0.0233916,0.492324,-0.864133,-0.104366,0.457788,-0.88683,-0.0629555,0.301852,-0.944425,-0.130181,0.221251,-0.975213,-0.00292205,0.536957,-0.836596,0.108557,0.631722,-0.763979,0.131391,0.586095,-0.6699,0.45577,0.509592,-0.702255,0.497146,0.226383,-0.561428,-0.795958,0.523931,-0.591414,-0.612964,0.455872,-0.773502,-0.440313,0.483457,-0.78029,-0.396757,-0.108959,-0.860243,-0.498107,0.0534946,-0.783409,-0.6192,0.257737,-0.851894,-0.455904,0.368728,-0.815933,-0.445301,0.548211,-0.835576,-0.0357571,0.565092,-0.824979,-0.00896569,0.547186,-0.804099,0.232406,0.498754,-0.815498,0.293611,0.00738093,-0.721219,0.692668,0.105576,-0.67078,0.734103,-0.189094,-0.613912,0.766391,-0.23125,-0.866628,0.44213,0.766695,-0.477066,0.429635,0.607087,-0.541751,0.581336,0.683404,-0.657814,-0.316606,0.77493,-0.574742,-0.262973,0.13291,-0.927627,-0.34906,0.151288,-0.952109,-0.265706,0.0182465,-0.870453,0.491913,0.0149005,-0.844485,0.535373,0.091289,-0.81657,0.569983,0.147478,-0.90269,0.404229,0.533275,-0.653472,0.537207,0.468985,-0.697923,0.541255,0.286847,-0.317957,-0.903672,0.254073,-0.678325,-0.689436,0.00904387,-0.0995814,-0.994988,0.0160244,0.0326338,-0.999339,-0.294209,0.0699333,-0.953179,-0.26283,-0.00569899,-0.964825,-0.38309,-0.0687824,-0.921147,-0.416438,-0.0174264,-0.908997,-0.102543,-0.558979,0.822817,0.138925,-0.530397,0.836289,-0.305663,-0.363044,0.88021,-0.0270705,-0.413387,0.910153,0.0389078,0.0614784,0.99735,0.0340264,0.03127,0.998932,0.228918,-0.079296,0.970211,0.206549,0.024365,0.978133,0.193303,-0.763491,0.61621,0.265388,-0.0878455,0.960132,0.0412429,-0.920249,0.389154,0.219965,-0.768694,0.600603,0.359566,-0.883799,0.299353,0.273948,-0.855164,0.440053,0.504936,-0.768255,0.393477,0.554531,-0.758973,0.341256,-0.179583,-0.00759954,0.983713,-0.184318,0.0332959,0.982302,-0.2347,-0.277452,0.931631,-0.311086,-0.0810741,0.946917,0.219526,-0.53544,-0.815544,-0.0270099,-0.638243,-0.769361,-0.447062,-0.257024,-0.856781,-0.411016,-0.254112,-0.875496,0.208712,-0.775018,0.596478,0.244083,-0.762111,0.599675,0.421543,-0.797298,0.431994,0.401619,-0.802762,0.440766,0.390208,-0.495903,0.775769,0.148725,-0.71175,0.686508,0.139189,-0.970241,-0.198138,0.15723,-0.941651,-0.297611,0.449291,-0.747667,0.489012,0.370487,-0.820059,0.436168,-0.260158,-0.913654,-0.312336,-0.269367,-0.920733,-0.282299,0.0120792,-0.781738,0.62349,0.180684,-0.716433,0.673852,0.358869,-0.68933,-0.629315,0.405508,-0.650313,-0.642384,0.230819,-0.709866,0.665441,0.0630787,-0.922371,0.38112,0.243653,-0.849174,0.468548,0.242652,-0.8553,0.457801,0.49852,-0.27183,0.823156,0.733438,-0.113476,0.670218,0.0365748,-0.998862,-0.0306205,0.0601887,-0.918478,0.390866,0.272219,-0.0788682,-0.958998,0.351811,0.00609562,-0.936051,0.0168147,0.0275636,-0.999479,0.042196,0.0873788,-0.995281,-0.266712,0.0898828,-0.959576,-0.276131,0.0399558,-0.960289,-0.465058,-0.0733755,-0.882234,-0.456857,0.00246182,-0.889537,-0.595311,-0.1989,-0.778488,-0.587462,-0.153522,-0.794556,-0.916791,-0.361095,-0.170601,-0.893821,-0.444474,-0.0593809,-0.626775,-0.329334,0.706182,-0.605071,-0.25848,0.753045,-0.579878,-0.184056,0.793641,-0.507185,-0.207818,0.836406,-0.574542,-0.17987,0.798466,-0.561198,-0.0936589,0.822366,-0.510848,-0.0573666,0.857755,-0.488365,0.0466841,0.87139,-0.306096,0.129305,0.943178,-0.267651,0.240483,0.933022,0.00979444,0.246542,0.969083,0.0245985,0.272996,0.961701,0.275751,0.146904,0.949937,0.298705,0.169729,0.939131,0.781835,-0.438518,-0.44321,0.787532,-0.615464,-0.0315937,0.290464,-0.381649,-0.877482,0.295907,-0.377849,-0.877308,0.1432,-0.404341,-0.903328,0.128359,-0.394844,-0.909738,-0.0549768,-0.464927,-0.883641,-0.064615,-0.460679,-0.885212,-0.269726,-0.55362,-0.787879,-0.16276,-0.577198,-0.80022,-0.278852,-0.630612,-0.724272,-0.285971,-0.629892,-0.722119,-0.293828,-0.632731,-0.716461,-0.885382,-0.428959,-0.179146,-0.707856,-0.129979,0.694295,-0.682685,-0.14502,0.716177,-0.546976,-0.156242,0.822439,-0.605773,-0.0998567,0.789346,-0.438335,-0.14278,0.887399,-0.528557,-0.267907,0.805514,-0.329473,-0.247897,0.91104,-0.372785,-0.298765,0.878505,-0.191181,-0.271054,0.943387,-0.160688,-0.238818,0.957677,0.0119007,-0.219624,0.975512,0.0522958,-0.181897,0.981926,0.259309,-0.20844,0.943033,0.285572,-0.185033,0.940325,0.704908,-0.240494,0.667284,0.287861,-0.957388,0.0233411,0.268692,-0.962298,0.0422738,0.151006,-0.984609,0.0879964,0.0616149,-0.998099,-0.00128289,0.00804651,-0.995292,0.0965888,0.00489663,-0.995522,0.0944012,-0.0414699,-0.992954,0.111008,-0.0647649,-0.992599,0.102729,-0.0584525,-0.993351,0.0991803,-0.132907,-0.987064,0.0896651,-0.334354,-0.896838,0.289636,-0.358851,-0.889937,0.281493,0.918594,0.328974,0.219002,0.914487,0.330441,0.233498,0.835352,0.4367,0.333888,0.811236,0.439987,0.385107,0.915644,0.20954,0.343059,0.926962,0.216308,0.306515,0.790743,0.27731,0.545732,0.825741,0.291594,0.482829,0.701901,0.525471,0.480848,0.679597,0.524419,0.512963,0.694091,0.324136,0.642786,0.631173,0.297339,0.716387,0.671297,0.722094,-0.167155,0.66998,0.723699,-0.165492,0.802731,0.567674,-0.182673,0.800905,0.571302,-0.179346,0.517379,0.841589,-0.15507,0.511222,0.846426,-0.149048,0.908719,0.0744403,0.410717,0.919592,0.0891221,0.382632,0.77116,0.0895243,0.630315,0.800338,0.115825,0.588255,0.584423,0.0781426,0.807678,0.636853,0.115005,0.76236,0.397266,0.0670998,0.915247,0.432095,0.091148,0.89721,0.476226,0.304259,0.825006,0.433265,0.340622,0.834421,0.4661,0.602254,0.648106,0.493754,0.608995,0.620751,0.319944,0.936607,-0.142837,0.309271,0.941368,-0.134825,0.983548,-0.106294,0.146066,0.982906,-0.132074,0.128267,0.993343,0.00560382,0.115057,0.990254,-0.00641881,0.139126,0.990528,0.0960441,0.0981304,0.990835,0.097155,0.093842,0.985492,0.159541,0.0578883,0.986581,0.159105,0.0366521,0.925131,0.320646,-0.203269,0.925752,0.316887,-0.206316,0.941322,0.268814,-0.204086,0.941585,0.26649,-0.205917,0.992414,0.12293,-0.00190103,0.992437,0.122747,0.00149562,0.998185,0.0335763,0.0499946,0.99882,0.0469816,0.012327,0.998081,-0.0404259,0.0469077,0.997597,-0.0563029,0.0403801,0.986449,-0.150759,0.0647323,0.987096,-0.144922,0.0681131,0.97011,0.224393,-0.0923822,0.956073,0.288891,-0.0496572,0.911801,0.409448,-0.0311714,0.925148,0.375341,-0.0567528,0.837187,0.546713,-0.0149242,0.851931,0.522264,-0.0381451,0.700586,0.713307,-0.0192655,0.705326,0.708763,-0.0130302,0.459729,0.887412,-0.0338984,0.493845,0.869548,-0.00162308,0.885369,-0.103852,0.453141,0.902067,-0.0795822,0.424194,0.737327,-0.145449,0.659692,0.775911,-0.103314,0.622325,0.575349,-0.161594,0.801786,0.595121,-0.144874,0.79047,0.403127,-0.163268,0.900462,0.406268,-0.16087,0.899482,0.0735876,0.994061,-0.0801774,0.0495601,0.993847,-0.0990541,0.189565,0.978596,-0.0800965,0.260812,0.965073,-0.0247115,0.145118,0.0786906,0.98628,0.135384,0.0716186,0.988201,0.14018,0.934819,0.326285,0.144721,0.935187,0.323236,0.115094,0.993201,0.0174608,0.112048,0.993513,0.0194024,0.403919,0.863725,0.301377,0.422409,0.860926,0.28351,0.342783,0.939414,0.000473249,0.339455,0.940617,0.00316013,0.632259,0.732874,0.251285,0.654145,0.723489,0.220583,0.554812,0.831913,-0.0102049,0.565473,0.824484,-0.0216195,0.797306,0.57882,0.171089,0.801004,0.575994,0.16317,0.722464,0.691342,-0.00957962,0.7409,0.670489,-0.0388751,0.891598,0.441457,0.10084,0.892021,0.440919,0.0994429,0.844705,0.533774,-0.0394873,0.84904,0.525922,-0.0503588,0.976671,0.214064,-0.0170471,0.97632,0.216041,-0.0112181,0.955379,0.276948,-0.102722,0.955149,0.278517,-0.100591,0.984604,0.168425,-0.0467754,0.98457,0.170372,-0.0399502,0.968056,0.223955,-0.11275,0.968129,0.222814,-0.114365,0.98126,0.123893,-0.147581,0.973902,0.208045,-0.0907294,0.932298,0.274751,-0.23523,0.934063,0.262011,-0.242644,0.953414,0.208891,-0.217639,0.947797,0.259385,-0.185472,0.934578,0.31211,-0.170741,0.940256,0.283137,-0.189083,0.893546,0.416089,-0.168657,0.898911,0.399303,-0.18032,0.815415,0.556433,-0.159623,0.826013,0.535002,-0.177416,0.68282,0.714208,-0.153833,0.691559,0.703159,-0.165267,0.504437,0.845996,-0.172726,0.484696,0.861211,-0.15292,0.256999,0.951841,-0.167185,0.295824,0.934622,-0.197409,0.917099,0.321844,-0.235258,0.918793,0.312811,-0.240768,0.151336,0.647852,0.746582,0.183785,0.661122,0.72742,0.151169,0.332858,0.930781,0.127811,0.318926,0.939122,0.99572,0.0874562,-0.0298722,0.995194,0.0889254,-0.0410036,0.995999,-0.0802525,-0.0393263,0.999941,0.0108621,-0.000862485,0.999023,-0.0390221,-0.0207622,0.995759,-0.083819,-0.0379378,0.986508,-0.162988,0.0153919,0.990183,-0.136786,0.028744,0.988063,0.131412,-0.0803938,0.988681,0.134984,-0.0654897,0.988904,-0.148087,-0.0117543,0.991108,-0.128086,-0.0360358,0.965201,0.154836,-0.210741,0.964583,0.176169,-0.196326,0.977606,0.153357,-0.14411,0.978102,0.167226,-0.1239,0.960781,-0.237207,0.143641,0.961671,-0.229726,0.149713,0.965414,-0.259039,0.0295852,0.976104,-0.217059,-0.0102943,0.964478,-0.24712,0.0933437,0.964294,-0.248085,0.0926867,0.965659,-0.252637,0.0606415,0.964744,-0.256711,0.0580423,0.848789,-0.26135,0.459622,0.869763,-0.233487,0.434738,0.713774,-0.304357,0.630788,0.736502,-0.277558,0.616869,0.590183,-0.323167,0.739761,0.594185,-0.319056,0.73834,0.420862,-0.348609,0.837465,0.431331,-0.338921,0.836114,0.191275,-0.355797,0.91478,0.177069,-0.345109,0.921708,0.989569,-0.143375,-0.0140076,0.991393,-0.127174,-0.0310776,0.974602,-0.218748,-0.0479711,0.973344,-0.225178,-0.0435404,0.998608,-0.0236455,-0.0471443,0.996406,-0.0499408,-0.0684189,0.600917,-0.798403,0.0381057,0.634995,-0.769333,-0.0700499,0.579935,-0.814548,0.01368,0.530994,-0.840582,0.107087,0.579429,-0.814949,0.0109838,0.600736,-0.79831,-0.0426239,0.554088,-0.827429,0.091362,0.591368,-0.80637,0.00717654,0.611324,-0.770844,0.179116,0.67571,-0.735779,0.0452223,0.557718,-0.790098,0.254353,0.609,-0.774925,0.169147,0.131604,-0.973335,-0.187882,0.150185,-0.975271,-0.162146,0.552979,-0.815258,-0.171954,0.569667,-0.804308,-0.169022,0.606865,-0.790454,-0.0830542,0.61094,-0.784013,-0.109894,0.603948,-0.788071,-0.119122,0.603053,-0.791861,-0.0963498,0.319515,-0.92689,-0.196937,0.336681,-0.928606,-0.156005,0.489195,-0.855709,-0.168673,0.495324,-0.857516,-0.138999,0.0709451,-0.691563,0.718824,0.0713949,-0.688419,0.721791,0.0794463,-0.68994,0.719493,0.0688299,-0.547507,0.833965,0.0639858,-0.548997,0.833371,0.0422479,-0.391571,0.919178,-0.00424146,-0.41098,0.911635,-0.0836672,-0.107263,0.990704,-0.330001,-0.251865,0.90976,-0.332877,-0.239767,0.911979,-0.492296,-0.349113,0.797349,-0.511044,-0.330561,0.793451,-0.551863,-0.231422,0.801181,-0.549828,-0.177315,0.81624,-0.417316,-0.157225,0.895057,-0.410943,-0.0853021,0.907662,-0.219921,0.148326,0.964175,-0.233131,0.00446825,0.972435,-0.188321,0.109076,0.976032,-0.18234,0.159437,0.970223,-0.121392,-0.125073,0.984693,-0.115069,0.124909,0.985473,-0.0428459,-0.115255,0.992411,-0.0471689,-0.133154,0.989972,0.0350981,-0.9193,0.391989,0.166639,-0.92119,0.351625,0.259878,-0.833674,0.48729,0.386372,-0.825039,0.412344,0.403107,-0.810709,0.424564,0.434569,-0.864662,0.25201,0.385028,-0.898309,0.211648,0.387562,-0.891149,0.235902,0.267331,-0.945346,0.186696,0.266897,-0.945835,0.184831,0.165086,-0.970783,0.174144,0.12048,-0.991227,0.0543457,0.471658,-0.880513,-0.0472842,0.409926,-0.911327,-0.0379953,0.604037,-0.796851,-0.0129495,0.516345,-0.855989,0.025876,0.590623,-0.801592,-0.0928108,0.590631,-0.806667,-0.0210527,0.497125,-0.845993,-0.192775,0.506748,-0.850968,-0.138056,0.339924,-0.899575,-0.274256,0.350473,-0.904622,-0.242543,0.144682,-0.940113,-0.308634,0.139564,-0.937627,-0.3184,-0.814967,0.120194,0.566906,-0.622232,0.0546564,0.780922,-0.697216,0.163024,0.698078,-0.510351,0.333503,0.792665,-0.534082,0.326899,0.779675,-0.348551,0.503545,0.79054,-0.367439,0.500071,0.784167,-0.320162,0.550798,0.77079,-0.212909,0.56741,0.795434,-0.263287,0.490498,0.830718,-0.118737,0.56889,0.813797,-0.17476,0.501298,0.847443,0.695363,-0.68587,-0.214599,0.705877,-0.698872,-0.115392,0.606939,-0.695699,-0.384224,0.666199,-0.68225,-0.301186,0.674735,-0.667776,-0.314338,0.704327,-0.675074,-0.219542,0.679662,-0.725164,-0.110441,0.677588,-0.733498,-0.0534384,0.626284,-0.777961,-0.0504452,0.623752,-0.780879,-0.0340827,0.488899,-0.871854,-0.0291304,0.473986,-0.880298,0.0202905,0.250997,-0.967697,0.0237135,0.169582,-0.97238,0.160373,0.350134,-0.688458,-0.635163,0.35418,-0.692893,-0.628057,0.159109,-0.616671,-0.770974,0.151635,-0.575124,-0.80389,-0.105147,-0.376834,-0.920293,-0.146977,-0.324492,-0.9344,-0.175239,-0.0647537,-0.982394,-0.175956,-0.0620017,-0.982444,-0.328212,0.271184,-0.90484,-0.324452,0.244224,-0.91383,-0.452048,-0.0296857,-0.8915,-0.470081,0.00931665,-0.882574,0.426916,-0.864038,-0.266797,0.426882,-0.86413,-0.266553,0.596479,-0.737849,-0.315897,0.608974,-0.753658,-0.247285,0.223704,-0.938087,-0.26448,0.253472,-0.904976,-0.341717,0.0263854,-0.464835,-0.885004,0.117621,-0.583378,-0.803639,-0.0454746,-0.048143,-0.997805,-0.0358223,-0.230341,-0.97245,-0.135469,0.282474,-0.949661,-0.141785,0.293987,-0.945235,0.603547,-0.703192,-0.375835,0.621462,-0.71492,-0.320429,0.556707,-0.683931,-0.471504,0.606755,-0.699367,-0.377802,0.333389,-0.673619,-0.659614,0.351272,-0.687658,-0.635401,0.219903,-0.66018,-0.718196,0.300249,-0.704516,-0.643045,-0.222518,-0.370891,-0.901624,-0.227534,-0.36455,-0.902957,-0.367332,-0.437216,-0.82092,-0.35971,-0.445269,-0.819966,-0.478268,-0.147737,-0.865698,-0.526598,-0.0635082,-0.847739,-0.591152,-0.298642,-0.749234,-0.647676,-0.214975,-0.730959,0.400237,-0.756632,-0.517028,0.520037,-0.749044,-0.410481,-0.0240218,-0.821399,-0.569848,0.0704913,-0.843163,-0.533017,-0.739082,-0.622397,-0.257641,-0.745963,-0.614733,-0.256208,-0.895876,-0.439292,-0.0665447,-0.913703,-0.402056,-0.0591346,0.547419,-0.79969,-0.246636,0.546966,-0.793136,-0.267886,0.279368,-0.731019,-0.622547,0.219649,-0.593826,-0.774032,-0.114633,-0.380486,-0.917654,-0.238371,-0.0782936,-0.968013,-0.39282,0.054053,-0.918026,-0.414802,0.217859,-0.883446,0.131579,0.640365,-0.756716,-0.145538,0.336473,-0.930379,-0.491899,0.527554,-0.69262,-0.455997,0.594636,-0.662175,-0.57524,0.408478,-0.708692,-0.516366,0.518329,-0.68169,-0.693976,0.264846,-0.669517,-0.652228,0.365378,-0.664152,-0.766325,0.101666,-0.634358,-0.730329,0.243378,-0.638268,-0.903479,-0.0931215,-0.418394,-0.8711,0.0530699,-0.488229,-0.979626,-0.129668,0.153357,-0.972991,-0.146296,0.178564,0.52433,-0.783369,-0.333782,0.59648,-0.74746,-0.29243,0.342444,-0.894539,-0.287284,0.382339,-0.881197,-0.278045,-0.0578693,-0.99831,0.0052574,-0.114309,-0.993397,0.00977847,-0.691715,-0.465224,0.552355,-0.679937,-0.481743,0.552819,-0.75111,-0.287052,0.594504,-0.736308,-0.312679,0.600069,-0.878453,-0.00942231,0.477736,-0.748316,-0.0866433,0.657659,0.837664,-0.338622,0.428548,0.810188,-0.3784,0.447671,0.717982,-0.410914,0.561829,0.711104,-0.42096,0.563137,0.615891,-0.452255,0.645092,0.614944,-0.45351,0.645114,0.469449,-0.494945,0.731196,0.476105,-0.485703,0.733087,0.346983,-0.535872,0.769704,0.319137,-0.590281,0.741431,0.0849574,-0.634737,0.768044,0.0926692,-0.629407,0.77153,0.886782,-0.348338,0.303775,0.887286,-0.338121,0.313685,0.970259,0.0457553,0.237706,0.970849,0.047105,0.235017,0.969587,0.144338,0.197657,0.972883,0.148692,0.177172,0.965297,0.226636,0.129765,0.967202,0.225639,0.116653,0.883482,0.427768,-0.190984,0.886744,0.416583,-0.200357,0.95946,-0.0898487,0.267139,0.959103,-0.0873904,0.269231,0.949548,0.311506,0.0363757,0.9495,0.311616,0.0366635,0.919427,0.385814,-0.076163,0.919073,0.386954,-0.0746397,0.875115,0.420921,-0.238745,0.877489,0.412952,-0.243895,0.797642,0.550416,-0.246596,0.788155,0.570092,-0.231963,0.654355,0.723294,-0.220603,0.666756,0.707207,-0.235149,0.49871,0.839823,-0.214443,0.497403,0.840902,-0.213246,0.297533,0.931127,-0.210893,0.294654,0.932503,-0.208848,0.0969642,0.973022,-0.209349,0.0922773,0.974079,-0.206532,0.930706,-0.232763,0.282149,0.928286,-0.20869,0.307787,0.864648,0.469609,0.178468,0.852383,0.502445,0.144888,0.998063,0.0354772,0.0511093,0.989555,0.142451,-0.0221051,0.964979,0.230284,0.125634,0.9508,0.301764,0.0701266,0.0147958,0.992131,0.12433,-0.0045717,0.994189,0.107552,0.681255,0.700597,0.212265,0.69548,0.692258,0.192582,0.402361,0.897408,0.181011,0.387525,0.90081,0.195869,0.99269,-0.0730921,-0.0960379,0.988831,-0.095442,-0.114477,0.995938,-0.082854,-0.0352444,0.995731,0.00514504,-0.092162,0.119299,0.980437,0.156558,0.0881192,0.988196,0.125313,0.953528,-0.274648,-0.12391,0.938417,-0.306287,-0.159879,0.887823,-0.428807,-0.167017,0.853369,-0.463147,-0.239281,0.880774,-0.41279,-0.232038,0.782514,-0.465892,-0.413058,0.564525,-0.351486,-0.74684,0.619116,-0.257628,-0.741838,0.654679,-0.29081,-0.697729,0.603857,-0.410776,-0.683096,0.609559,-0.406373,-0.68066,0.733042,-0.398465,-0.551249,0.831808,-0.393048,-0.391929,0.71084,-0.422669,-0.56219,0.832313,0.377887,0.405532,0.850185,0.363984,0.380395,0.94124,-0.258823,0.216974,0.988231,-0.0975042,0.117865,0.950972,0.140032,0.275759,0.93945,0.0384122,0.340526,-0.0375169,0.933846,0.355702,0.0182723,0.906976,0.420787,0.677019,0.614353,0.405236,0.669899,0.616891,0.413135,0.370857,0.846495,0.381982,0.370464,0.84651,0.382331,0.991115,-0.132383,0.0128979,0.972832,-0.221764,-0.0664712,0.955489,-0.279072,0.0957029,0.989192,-0.146161,0.0116515,0.0478,0.930046,0.36432,0.0710901,0.935701,0.345557,0.934338,-0.348375,-0.0751515,0.937332,-0.34161,-0.06864,0.815039,-0.573942,-0.079391,0.830401,-0.554177,-0.0576378,0.65339,-0.753839,-0.0693455,0.666274,-0.74365,-0.0553459,0.620267,-0.745416,-0.244182,0.508729,-0.797612,-0.324053,0.621884,-0.763031,-0.17619,0.509221,-0.818524,-0.265917,0.569643,-0.815334,-0.10362,0.455225,-0.868069,-0.198055,0.545541,-0.835612,-0.0643249,0.495581,-0.861591,-0.109819,0.706783,0.257891,0.658749,0.694342,0.263884,0.669518,0.729741,-0.440528,0.52289,0.765408,-0.390718,0.51136,0.775733,-0.0779174,0.626233,0.769074,-0.0696861,0.635349,0.00206783,0.8106,0.585597,0.00852253,0.814099,0.580663,0.558172,0.508967,0.655284,0.545698,0.510727,0.664358,0.288888,0.724364,0.625972,0.278527,0.722741,0.632509,0.738735,-0.584018,0.336443,0.861245,-0.442291,0.250272,0.681485,-0.600524,0.418268,0.790585,-0.488694,0.36899,0.0613738,0.804192,0.591192,0.055363,0.801758,0.59508,0.862293,-0.440073,0.250573,0.817837,-0.555551,0.15002,0.832336,-0.53288,0.152499,0.818981,-0.558656,0.131047,0.690861,-0.713376,0.117495,0.732205,-0.661215,0.163313,0.138147,-0.975338,0.172139,0.0124348,-0.994133,0.107446,0.0928093,-0.975622,0.198868,0.0436228,-0.984299,0.171035,0.243555,-0.952956,0.180431,0.286694,-0.935407,0.206932,0.473824,-0.867828,0.149547,0.529175,-0.82638,0.192533,0.123999,-0.956248,-0.264981,0.133721,-0.956195,-0.260402,0.0744692,-0.995868,0.0519806,0.0220404,-0.999393,0.0269717,0.668249,0.241744,0.703565,0.64286,0.250133,0.723992,0.682566,-0.477167,0.553548,0.712393,-0.443045,0.544249,0.721372,-0.0833531,0.687513,0.729685,-0.0903209,0.677792,0.467205,0.530293,0.707467,0.554219,0.520643,0.64944,0.245233,0.740276,0.625981,0.291153,0.746704,0.598049,0.672974,-0.633617,0.381622,0.741167,-0.585354,0.328682,0.624125,-0.649975,0.43359,0.691941,-0.603907,0.395617,0.0732926,0.816018,0.57336,0.0576597,0.810199,0.583312,0.724142,-0.609912,0.32191,0.779166,-0.558665,0.284241,0.733087,-0.648866,0.203855,0.768246,-0.574938,0.281503,0.710644,-0.678869,0.184721,0.720188,-0.663927,0.20132,-0.0157653,-0.97336,0.228739,-0.0221831,-0.974348,0.223952,0.0796925,-0.970131,0.229116,0.0356739,-0.980517,0.193168,0.322351,-0.92245,0.212547,0.293327,-0.937617,0.186637,0.576145,-0.79024,0.208751,0.538334,-0.826763,0.163274,0.768088,0.294128,0.568797,0.757032,0.300947,0.579943,0.814279,-0.386244,0.433318,0.880363,-0.274083,0.387091,0.835751,-0.00904969,0.549034,0.855784,-0.0401047,0.515776,0.623137,0.557409,0.54863,0.600101,0.562683,0.568566,0.323355,0.790748,0.519768,0.340017,0.792055,0.506989,0.87592,-0.44483,0.186792,0.970348,-0.234555,0.058388,0.805691,-0.49284,0.328591,0.934429,-0.284868,0.21376,0.0842584,0.874439,0.477762,0.0413026,0.8593,0.509801,0.913957,-0.405631,0.0120988,0.928858,-0.367443,0.0469912,0.857753,-0.510935,0.0566153,0.820385,-0.571807,0.00241558,0.696825,-0.710439,0.0985458,0.641216,-0.766078,0.0443461,0.254557,-0.952004,-0.169968,0.479939,-0.875207,-0.0605958,0.191993,-0.979488,-0.0611637,0.421923,-0.904472,0.0625435,0.283762,-0.95715,0.0578142,0.370751,-0.921871,0.112679,0.483926,-0.867168,0.117622,0.444675,-0.89134,0.08819,0.148089,-0.983393,0.104921,0.0397438,-0.997845,0.0522152,0.00846836,-0.973284,0.229447,-0.0582809,-0.98073,0.186473,0.874321,0.417605,0.247324,0.861348,0.466781,0.200486,0.993241,-0.0940169,0.0680689,0.999279,0.0343901,-0.0160657,0.974274,0.15536,0.163257,0.966986,0.231018,0.107554,0.707064,0.654991,0.266548,0.677123,0.668886,0.306752,0.374165,0.87827,0.297729,0.388749,0.876643,0.2835,0.989054,-0.11912,-0.0870792,0.992186,-0.101569,-0.0724563,0.989158,-0.14315,-0.032782,0.99407,-0.0823097,-0.0710586,0.0742865,0.966469,0.245801,0.0647568,0.965102,0.253743,0.934809,-0.338989,-0.105917,0.938437,-0.331193,-0.0982166,0.823111,-0.550151,-0.140793,0.838931,-0.531948,-0.115006,0.685033,-0.681461,-0.257569,0.763657,-0.628167,-0.14911,0.587175,-0.635479,-0.501391,0.642445,-0.564937,-0.517794,0.653846,-0.588242,-0.475875,0.621188,-0.632638,-0.462487,0.592542,-0.65397,-0.470338,0.67122,-0.629096,-0.392049,0.589192,-0.696861,-0.408947,0.730416,-0.635971,-0.249065,0.167157,-0.155438,0.9736,0.154138,-0.165101,0.974158,0.493768,-0.048973,-0.868214,0.479873,-0.0759912,-0.874041,0.530683,-0.208804,-0.821448,0.442088,-0.346745,-0.82724,0.552945,-0.554949,-0.621517,0.452513,-0.670485,-0.587947,0.393242,-0.854861,-0.338486,0.526291,-0.745368,-0.409201,0.422919,-0.889404,-0.173495,0.230366,-0.937649,-0.260279,0.146521,-0.384206,-0.911547,0.322255,-0.323813,-0.889549,0.0714535,-0.393931,-0.916359,0.150339,-0.371817,-0.916052,0.42767,-0.219976,-0.87676,0.343242,-0.255684,-0.903776,0.0656072,-0.45003,-0.8906,0.0557065,-0.452733,-0.889904,0.703976,-0.709458,-0.032962,0.80071,-0.599021,0.00612519,0.82059,-0.571517,0.000580899,0.894174,-0.434846,0.106593,0.926085,-0.122241,0.356964,0.921419,-0.0692334,0.382354,0.878744,-0.475541,-0.0408629,0.975304,-0.160588,0.151636,0.826158,-0.53453,-0.17816,0.852928,-0.498243,-0.155782,0.87388,-0.461247,-0.153574,0.813056,-0.536734,-0.225513,0.869919,-0.421722,-0.255719,0.850882,-0.437401,-0.290999,0.806269,-0.320138,-0.497435,0.806794,-0.328323,-0.49121,0.987768,-0.137153,0.0741792,0.745157,-0.377701,0.549621,0.99586,-0.0811886,0.0408836,0.985589,-0.110059,0.128457,0.902266,-0.327209,-0.280802,0.917717,-0.332998,-0.216582,0.910024,-0.319577,-0.264057,0.897115,-0.250306,-0.364049,0.930483,-0.218815,-0.293804,0.906792,-0.251634,-0.338243,0.83069,-0.179792,-0.526904,0.834818,-0.170096,-0.52359,0.963385,0.268116,-0.001818,0.927429,0.367412,-0.069888,0.795427,-0.3069,-0.522598,0.776364,-0.217836,-0.591444,0.111115,-0.896358,-0.42918,0.27339,-0.961897,0.00346584,0.764416,-0.471117,-0.440133,0.640311,-0.54058,-0.545688,0.166253,-0.985692,0.0277845,0.210609,-0.954734,0.210063,-0.161562,-0.933255,-0.320831,-0.13379,-0.852978,-0.504508,0.210253,-0.104886,-0.972004,0.187523,-0.311102,-0.931692,0.119235,-0.0118207,-0.992796,0.161108,-0.0348775,-0.98632,0.0181981,0.999832,-0.00206674,0.0483069,0.998585,0.0222414,0.100798,0.985737,-0.134771,0.100587,0.985775,-0.134644,0.0741169,0.975717,-0.206116,0.0925613,0.976549,-0.194383,0.16061,-0.534928,-0.829491,0.104017,-0.578562,-0.808979,-0.00343304,0.819848,0.572571,0.00270755,0.815775,0.578363,0.0138727,0.858675,0.512333,0.00924471,0.861833,0.507108,0.169727,-0.838033,-0.518549,0.130431,-0.83133,-0.540257,-0.0273534,0.975526,0.218177,-0.0110098,0.971445,0.237009,0.166033,-0.188017,-0.96803,0.0801442,-0.265927,-0.960656,0.0932934,-0.496654,0.86292,0.173928,-0.453643,0.874047,0.280353,-0.113027,-0.953219,0.351198,-0.0105247,-0.936242,0.278637,-0.289718,-0.915655,0.322647,-0.235922,-0.916646,0.378382,-0.532951,-0.756829,0.253466,-0.657276,-0.709749,0.114254,-0.884547,-0.452241,0.198687,-0.905093,-0.37594,0.248961,-0.882624,-0.398739,0.360348,-0.779079,-0.513016,0.619343,-0.137965,0.772904,0.611878,-0.134084,0.779504,0.519722,0.224354,0.824351,0.584957,0.210058,0.783391,0.434092,0.620248,0.653342,0.417259,0.487347,0.767065,0.602067,-0.43398,0.670207,0.529106,-0.485815,0.695723,0.216159,0.754931,0.619156,0.260182,0.764478,0.589812,0.0652512,0.813943,0.577269,0.0737893,0.817987,0.570484,-0.0286526,0.843528,0.536321,-0.00273985,0.82449,0.56587,0.310976,-0.916984,0.24987,0.333641,-0.898981,0.283754,0.0749372,-0.9665,0.245485,0.126052,-0.942735,0.308807,-0.0312277,-0.954717,0.295871,-0.0133537,-0.949449,0.313637,-0.0777949,-0.947439,0.310335,-0.132827,-0.955126,0.264747,0.519265,-0.79377,0.316691,0.547643,-0.781712,0.298351,0.490143,-0.572903,0.656918,0.479639,-0.575872,0.662056,0.463355,-0.601384,0.650876,0.571237,-0.565518,0.594877,0.533425,-0.623476,0.571608,0.621286,-0.576045,0.531203,0.535671,-0.68848,0.48893,0.631135,-0.635595,0.44462,0.547463,-0.727291,0.413923,0.652128,-0.671848,0.351211,0.0109484,-0.982193,0.187558,-0.0374095,-0.986438,0.159813,-0.0850902,-0.967429,0.238413,-0.0439616,-0.962481,0.267766,-0.907068,0.0257554,0.420195,-0.92437,0.0713304,0.37477,0.26705,0.566777,-0.77939,0.13319,0.467504,-0.873899,-0.526626,0.643418,-0.555589,-0.307961,0.559951,-0.769165,-0.623387,0.678009,-0.389477,-0.553137,0.59065,-0.587513,-0.774094,0.602058,-0.195716,-0.854558,0.491109,-0.168947,-0.545384,0.466415,0.696429,-0.603212,0.420263,0.677875,-0.224225,0.527497,0.819433,-0.204002,0.551193,0.809054,-0.838058,0.272754,0.472507,-0.672446,0.412239,0.614715,-0.873707,0.0192587,0.486072,-0.93097,0.103872,0.350007,-0.937305,0.0550089,0.344142,-0.914644,0.00137413,0.404258,0.245303,0.4388,-0.864454,0.275293,0.455379,-0.846666,-0.287393,0.454178,-0.843284,-0.455134,0.298141,-0.839026,-0.494878,0.513379,-0.701098,-0.590829,0.43374,-0.680287,-0.93795,0.274813,-0.211488,-0.893448,0.360046,-0.268548,-0.599616,0.0450462,0.799019,-0.566694,0.0689438,0.821039,-0.105893,0.120192,0.987087,-0.0445096,0.168262,0.984737,-0.0123487,0.169203,0.985504,0.0464533,0.209062,0.976799,-0.865629,0.0872593,0.493024,-0.796092,0.139469,0.588885,-0.940094,0.0561475,0.33626,-0.964161,0.122848,0.235165,-0.964997,0.00750739,0.262154,-0.951829,-0.0267181,0.305462,-0.442124,0.0461799,-0.895764,-0.427295,0.0573063,-0.902294,-0.465069,0.0475061,-0.883999,-0.640814,-0.105822,-0.760368,-0.948861,-0.0458604,-0.312346,-0.967625,-0.134961,-0.213278,-0.567795,0.0118948,0.823084,-0.624104,-0.019604,0.781095,-0.0235335,-0.153935,0.987801,-0.0323325,-0.159841,0.986613,0.0396776,-0.159317,0.98643,0.104976,-0.122552,0.986895,-0.81008,0.0361023,0.585206,-0.908195,-0.0223318,0.417951,-0.991549,0.0265133,0.126992,-0.976223,0.0501843,0.210879,-0.989508,0.0651613,0.128952,-0.988922,0.0573753,0.136899,-0.363963,-0.353613,-0.861678,-0.379435,-0.362734,-0.851148,-0.594285,-0.324345,-0.735953,-0.577224,-0.312467,-0.754438,-0.961114,-0.172242,-0.215852,-0.903937,-0.0987546,-0.416107,-0.477657,-0.366008,0.798675,-0.635858,-0.409133,0.654443,0.0109187,-0.575094,0.818015,0.0148953,-0.576866,0.816703,0.0734095,-0.573758,0.815729,0.0392382,-0.561191,0.826755,-0.908703,-0.0714953,0.411275,-0.914376,-0.0720836,0.398398,-0.142579,-0.977472,0.155629,-0.0685687,-0.991446,0.111054,-0.544561,-0.829831,0.121794,-0.60718,-0.774846,0.175914,-0.941349,-0.31408,0.123351,-0.951751,-0.271994,0.142089,-0.965986,-0.00157485,0.258591,-0.977243,0.0459995,0.207074,-0.891451,-0.331896,-0.308481,-0.970213,-0.237374,0.0483777,-0.559005,-0.497598,-0.663256,-0.725756,-0.518624,-0.452005,-0.130952,-0.610419,-0.781179,-0.304665,-0.682189,-0.664678,-0.0362237,-0.761987,-0.646579,-0.0666264,-0.771835,-0.632323,0.227174,0.0429124,-0.972908,-0.0852272,0.241169,-0.966734,-0.0430593,-0.383552,-0.922515,-0.0788666,-0.401311,-0.91254,-0.00885149,-0.994922,0.100256,-0.000127676,-0.995341,0.0964144,-0.60059,0.574372,-0.556227,-0.641592,0.593944,-0.485376,-0.396348,0.48535,0.779322,-0.369914,0.509238,0.777072,-0.452177,0.450945,-0.769535,-0.64031,0.269468,-0.719298,-0.397341,0.0453306,0.916551,-0.313159,0.112704,0.942989,-0.394481,0.0360247,-0.918198,-0.368577,0.0566255,-0.927871,-0.211761,-0.0350003,0.976695,-0.373974,-0.141148,0.916636,-0.29694,-0.392556,-0.870475,-0.257495,-0.37077,-0.892315,-0.185748,-0.529905,0.827465,-0.117192,-0.573195,0.810995,0.0208146,-0.995187,0.0957536,-0.00525551,-0.994058,0.108728,-0.191434,-0.752971,-0.629594,-0.0523559,-0.700559,-0.711671,-0.16206,0.405157,0.899769,0.0411532,0.565187,0.823936,-0.935192,0.243568,0.257081,-0.81573,0.108352,0.568194,-0.951725,0.161182,0.261227,-0.976402,0.12728,0.17447,-0.986988,0.0399449,0.155754,-0.977935,0.0516608,0.202419,-0.990923,0.0428637,0.127415,-0.995976,-0.0276161,0.0852539,-0.971455,-0.00129801,0.237219,-0.985715,0.0245598,0.166623,-0.89612,-0.18407,0.403839,-0.987018,-0.0113792,0.160209,-0.938188,0.172864,0.29987,-0.878237,-0.0157345,0.477967,-0.911058,0.407759,0.0608757,-0.966647,0.107718,0.23236,-0.979032,0.0437865,0.198943,-0.98094,0.0756283,0.178989,-0.976584,-0.060748,0.206382,-0.976919,0.0479951,0.20815,0.579564,0.800027,-0.155119,0.544454,0.820029,-0.176413,0.671956,0.724667,-0.152752,0.608324,0.774322,-0.174261,0.738599,0.667533,-0.0941827,0.674539,0.727512,-0.125393,0.739186,0.668552,-0.0815005,0.745026,0.661387,-0.0866249,-0.340914,0.939903,0.0189913,-0.320243,0.946717,0.0342221,-0.783547,0.618187,0.0624334,-0.790519,0.610074,0.0537546,-0.911617,0.399515,0.0966513,-0.922583,0.378361,0.0753886,-0.972172,0.233547,-0.0183666,-0.979244,0.199575,-0.0353708,-0.711113,-0.692364,-0.122272,-0.726088,-0.679268,-0.106733,-0.122219,-0.982737,-0.138893,-0.112697,-0.984794,-0.132216,-0.980747,-0.16928,-0.097362,-0.979325,-0.17516,-0.1012,0.811996,-0.564285,-0.149144,0.819573,-0.555656,-0.139808,0.970619,-0.183139,-0.156075,0.968985,-0.188744,-0.159508,0.967099,0.189295,-0.16996,0.97192,0.17203,-0.160551,-0.925442,-0.372677,-0.0683283,-0.907689,-0.408938,-0.094183,0.520265,-0.841264,-0.146965,0.527159,-0.837989,-0.140988,-0.979661,0.139444,-0.14429,-0.976914,0.182892,-0.110402,0.783654,0.593495,-0.183438,0.816087,0.554502,-0.162878,0.608938,0.775959,-0.164568,0.577706,0.796439,-0.178717,0.357453,0.915507,0.184594,0.372164,0.907216,0.196095,-0.31429,0.925232,0.212524,-0.299097,0.927893,0.222611,-0.778816,0.584422,0.227808,-0.781857,0.581622,0.224533,-0.861664,0.457504,0.219602,-0.876938,0.410333,0.250215,0.958299,0.276655,0.0715914,0.940034,0.340339,0.0224676,0.760021,0.645815,0.0727399,0.809582,0.586944,-0.00862239,-0.344538,-0.723898,0.597717,-0.493447,-0.642392,0.586381,0.0396697,-0.696337,0.716618,0.063666,-0.699985,0.711314,0.753388,-0.288084,0.591113,0.819243,-0.275953,0.502683,0.539987,-0.518194,0.663242,0.470322,-0.525228,0.709178,0.571285,-0.626162,0.530617,0.544764,-0.625159,0.558935,-0.636352,-0.42586,0.643195,-0.865806,-0.282182,0.413223,-0.73048,-0.0989288,-0.675731,-0.822838,-0.0482182,-0.566227,-0.981096,-0.121847,0.150345,-0.994203,0.00371029,-0.107453,-0.972267,-0.228992,0.0475336,-0.94626,-0.290502,0.142132,-0.331612,-0.387428,0.860194,-0.66445,-0.53879,0.517891,0.854148,0.452197,0.256807,0.930779,0.338064,0.139152,0.993314,-0.0749625,0.0877995,0.976845,-0.146705,0.155726,0.906494,-0.408566,0.106503,0.854514,-0.491439,0.168209,0.576609,-0.774116,0.261277,0.725614,-0.576316,0.375957,0.101835,-0.905911,0.411041,0.178751,-0.942835,0.281265,-0.582484,-0.744481,0.326283,-0.621807,-0.749524,0.227092,-0.79613,-0.564683,0.217509,-0.835165,-0.483132,0.262838,0.801919,0.579432,0.145551,0.788862,0.592629,0.16275,0.759694,0.172573,-0.626964,0.82306,0.0848829,-0.561575,0.293133,0.134791,-0.946522,0.344934,0.100226,-0.933261,0.982422,0.0393437,0.182481,0.984637,0.154957,0.0804933,0.995014,-0.0179217,0.0981169,0.996253,-0.000877942,0.086486,-0.000916048,0.0131379,-0.999913,0.078922,-0.0193281,-0.996693,-0.0515602,-0.112252,-0.992341,-0.148586,-0.0634354,-0.986863,-0.183728,-0.122137,-0.97536,-0.146266,-0.069043,-0.986833,-0.31861,-0.176963,-0.931221,-0.321859,-0.175121,-0.930451,-0.226069,-0.0154882,-0.973988,-0.155334,0.0450819,-0.986833,-0.123877,-0.0521424,-0.990927,-0.0704225,0.0153822,-0.997399,-0.342358,-0.167087,-0.924593,-0.329057,-0.152038,-0.93199,-0.334412,0.042173,-0.941483,-0.394519,-0.00236698,-0.918885,-0.329484,0.114729,-0.937165,-0.146215,0.00610525,-0.989234,-0.0702852,0.0150134,-0.997414,-0.0322207,0.0674126,-0.997205,0.00383822,0.0365511,-0.999324,0.0453784,0.0265809,-0.998616,-0.917525,-0.395477,0.0417848,-0.885489,-0.448928,0.119888,-0.968294,-0.101325,0.228343,-0.98409,-0.0590079,0.167588,0.671742,-0.74052,0.0198233,0.667119,-0.744363,0.0295883,0.166196,-0.983224,0.075163,0.119923,-0.982832,0.140211,0.868949,-0.494882,-0.00441711,0.886898,-0.460513,0.0365968,-0.618074,-0.772798,0.144112,-0.632495,-0.766122,0.11405,0.97556,-0.20522,-0.0785277,0.9779,-0.187629,-0.092238,0.386926,0.919429,0.070279,0.412998,0.905365,0.098723,-0.297207,0.943342,0.147563,-0.343583,0.933455,0.103021,-0.787724,0.601236,0.134189,-0.780222,0.608267,0.145823,-0.884499,0.431374,0.177704,-0.908779,0.396704,0.129409,0.956679,0.280005,-0.0797619,0.957498,0.277691,-0.0780047,0.746256,0.664626,-0.037086,0.762378,0.64685,-0.019123,0.860346,0.508117,-0.0402703,0.880498,0.468322,-0.0734654,0.884061,0.467367,0.00214271,0.869025,0.493959,0.0282664,0.863437,0.480184,0.154595,0.872145,0.461232,0.163185,0.836139,0.488332,0.249807,0.843622,0.470123,0.259396,0.862009,0.436452,0.257778,0.855886,0.452994,0.24951,0.925638,0.378215,0.012137,0.943507,0.319133,0.0891541,0.997551,-0.0314679,-0.0624597,0.996935,0.0453624,0.0637423,0.871873,-0.412942,0.263278,0.832728,-0.530696,0.157877,0.55649,-0.78804,0.263271,0.579142,-0.763678,0.285289,0.0769102,-0.943101,0.32349,0.0993306,-0.950429,0.294648,-0.50671,-0.785306,0.355724,-0.574245,-0.795557,0.193213,-0.795914,-0.566776,0.212804,-0.795494,-0.567568,0.212261,0.463333,-0.776754,-0.426586,0.565409,-0.683743,-0.461312,0.466616,-0.811126,-0.352624,0.51328,-0.758058,-0.402359,-0.0936763,-0.884576,-0.456892,0.0117171,-0.836331,-0.548099,-0.785486,-0.457861,-0.416383,-0.777006,-0.531931,-0.336617,-0.527283,-0.703873,-0.475958,-0.520749,-0.704205,-0.482614,0.757115,-0.619258,-0.208076,0.779967,-0.541563,-0.313626,-0.660037,-0.585585,-0.470576,-0.530363,-0.731504,-0.428505,-0.000658654,0.0515558,-0.99867,-0.000907142,0.0516178,-0.998667,0.0254164,0.0662186,-0.997481,0.0430819,0.0631545,-0.997073,0.0147921,0.0927042,-0.995584,-0.0221761,0.125197,-0.991884,-0.0260677,0.0794201,-0.9965,0.0154804,0.0646011,-0.997791,-0.0413081,0.0910157,-0.994992,-0.0254894,0.0781151,-0.996618,0.00689902,0.0781768,-0.996916,0.0213653,0.0722504,-0.997158,0.0129849,0.0634909,-0.997898,0.0231651,0.0631079,-0.997738,0.0873858,0.0708675,-0.993651,0.0844088,0.0958219,-0.991813,0.122581,-0.267588,-0.955704,0.0532286,-0.301439,-0.951998,0.0298212,0.399462,-0.916265,0.0266628,0.394248,-0.918617,0.0568291,0.396634,-0.916216,0.0971228,0.45766,-0.883807,-0.101831,-0.591807,0.799622,-0.139624,-0.627239,0.766209,-0.113255,-0.585469,0.802745,-0.0977442,-0.60257,0.792057,-0.0914377,-0.236883,0.967226,-0.0958974,-0.241149,0.965738,-0.114566,-0.250207,0.96139,-0.133582,-0.267689,0.9542,-0.0915055,-0.880163,0.465768,-0.0609164,-0.898909,0.433879,-0.157129,-0.909298,0.385341,-0.0596453,-0.949475,0.308123,-0.0434227,-0.99105,-0.126235,-0.0782509,-0.993608,-0.0813617,0.00880982,-0.753516,-0.657371,-0.0316329,-0.784601,-0.619194,0.0429844,-0.413683,-0.909406,0.0161028,-0.443276,-0.896241,0.101788,-0.098672,-0.989901,0.0636606,-0.152818,-0.986202,-0.0112006,0.100905,-0.994833,0.0152177,0.137136,-0.990435,-0.12776,0.851604,-0.508377,-0.071501,0.813479,-0.577182,-0.036888,0.433788,-0.900259,-0.0753997,0.483259,-0.872224,-0.108178,0.561025,-0.8207,-0.0600946,0.484296,-0.872838,-0.169139,0.913334,-0.370423,-0.0935441,0.856618,-0.507401,-0.0282076,-0.0123532,-0.999526,-0.0515849,-0.0444071,-0.997681,-0.0433856,-0.0118085,-0.998989,-0.0775271,0.0589718,-0.995245,-0.0184093,-0.500577,-0.865496,-0.067207,-0.411587,-0.908889,0.0123283,-0.82973,-0.558029,-0.049992,-0.745138,-0.665034,-0.00751436,-0.50136,-0.865206,-0.0621819,-0.553956,-0.830221,0.0115769,-0.885853,-0.463822,-0.0570831,-0.825952,-0.560842,0.0271939,-0.41276,-0.910434,-0.0485829,-0.251898,-0.966534,0.00751902,-0.609681,-0.792611,0.0772641,-0.746255,-0.661161,-0.0904426,0.563486,-0.82116,-0.136467,0.636917,-0.758758,-0.118964,0.724275,-0.679171,-0.0695878,0.650318,-0.756468,-0.0402299,0.060853,-0.997336,-0.0939099,0.176443,-0.979821,0.00351657,0.190408,-0.981699,-0.0576723,0.321139,-0.945275,-0.217665,0.936049,0.276469,-0.133807,0.986605,0.0933117,-0.220959,0.860689,0.458685,-0.157951,0.945544,0.284603,-0.192198,0.954204,-0.229247,-0.128145,0.920867,-0.368216,-0.173924,0.980777,0.0884723,-0.116142,0.993213,0.00628616,-0.19478,0.737831,0.646271,-0.244714,0.607245,0.755889,-0.249981,0.403508,0.880166,-0.201597,0.613525,0.763508,-0.224082,0.732626,0.642687,-0.167696,0.868139,0.467132,0.0857,-0.928922,-0.360221,0.116612,-0.914024,-0.388537,0.119508,-0.992053,0.0393563,0.118042,-0.992169,0.0408375,0.10329,-0.625731,-0.77317,0.091792,-0.636579,-0.76573,0.0650888,-0.997421,-0.0302572,0.100492,-0.994208,0.0381097,0.0647955,-0.915534,-0.396987,0.0231335,-0.886223,-0.462681,0.0034094,-0.999347,-0.0359808,-0.00133476,-0.998976,-0.0452206,0.0378228,-0.85281,0.520849,0.0362256,-0.854307,0.518505,-0.105535,-0.85285,0.511379,-0.119686,-0.865693,0.486056,-0.152896,0.868565,0.4714,-0.211847,0.812557,0.543022,-0.252741,0.473276,0.843879,-0.187054,0.570433,0.79976,-0.246636,0.333088,0.910067,-0.191999,0.478176,0.857021,-0.185913,0.619798,0.762422,-0.226659,0.567963,0.791229,-0.000675448,0.23059,0.973051,-0.00576032,0.224826,0.974382,-0.0996755,0.237964,0.966146,-0.124271,0.196884,0.972519,-0.108057,-0.32782,0.93854,-0.0720724,-0.264024,0.96182,0.0216092,-0.361925,0.931957,0.105939,-0.27847,0.954584,-0.183334,-0.323193,0.928405,-0.228442,-0.389731,0.892146,-0.200045,-0.391703,0.898082,-0.242641,-0.456967,0.855749,-0.21173,-0.568774,0.794774,-0.167962,-0.460549,0.871598,-0.0764117,0.996293,0.0395145,-0.0971347,0.992773,0.0704797,-0.133214,0.988917,0.0655598,-0.14657,0.985597,0.0843607,-0.0994488,0.882993,0.45873,-0.111949,0.874608,0.471728,0.0240665,0.842016,-0.538916,0.0785751,0.868464,-0.489486,-0.0011061,0.86551,0.500891,0.0368844,0.878847,0.475675,-0.148645,0.888332,0.434478,-0.140121,0.893445,0.426757,-0.109169,0.639335,0.761139,-0.122965,0.621356,0.773819,-0.059525,-0.822343,-0.56587,-0.211214,-0.860789,-0.463066,-0.0727185,-0.774445,-0.628448,-0.120145,-0.808726,-0.575785,0.0521186,-0.516118,-0.854931,-0.0888988,-0.631089,-0.7706,-0.029266,-0.429803,-0.902448,-0.0781818,-0.483398,-0.871902,-0.293666,-0.831028,-0.47239,-0.165857,-0.933416,-0.318159,-0.146561,-0.37239,0.916431,-0.137066,-0.25742,0.956529,-0.201421,-0.265634,0.942798,-0.169606,-0.104057,0.980003,-0.0895621,-0.888875,0.449309,-0.123875,-0.930575,0.344506,-0.121037,-0.865589,0.485907,-0.143764,-0.88465,0.443538,0.0710512,-0.868828,0.489989,0.100936,-0.85242,0.513022,0.0892362,-0.241058,-0.9664,0.00739828,-0.0445383,-0.99898,-0.131232,0.687443,-0.714283,-0.125544,0.694758,-0.708202,-0.123559,0.640701,-0.757783,-0.0839169,0.688324,-0.720533,-0.0409199,0.598593,0.800008,-0.00459542,0.630832,0.775906,-0.151609,-0.880284,0.449573,-0.165236,-0.868546,0.467252,-0.173722,-0.984793,0.00209297,-0.110811,-0.989665,-0.0910148,-0.106954,-0.914895,0.389267,-0.181099,-0.876774,0.4455,-0.190835,0.577231,0.793969,-0.158386,0.597577,0.786013,-0.154447,0.149749,0.976587,-0.132624,0.166532,0.977076,0.102204,-0.822933,-0.55887,0.145362,-0.914929,-0.376529,0.0509857,-0.998264,0.0294756,0.0748688,-0.970454,0.229377,-0.0996831,-0.677225,0.728992,-0.0413584,-0.640491,0.766851,-0.0760815,-0.264528,0.961372,-0.0595106,-0.252416,0.965787,-0.0397699,0.393577,-0.918431,-0.0110004,0.434568,-0.900572,0.0277157,-0.0499797,-0.998366,-0.000282267,-0.0906887,-0.995879,-0.196348,0.979666,-0.0412646,-0.124009,0.967215,-0.221625,-0.191618,0.339447,0.920901,-0.230118,0.162026,0.95958,-0.215393,0.0258884,0.976184,-0.198981,0.166918,0.965684,-0.0671817,0.220413,0.97309,-0.108733,0.190501,0.975647,-0.0580532,0.23427,0.970437,-0.0766251,0.223367,0.971718,-0.241191,0.13769,0.960661,-0.201524,0.20022,0.958802,-0.247115,-0.10981,0.962744,-0.195219,0.0420056,0.97986,0.0384886,0.607044,-0.793736,-0.0217228,0.558918,-0.828938,-0.0121574,0.145684,-0.989257,-0.0172096,0.137975,-0.990286,-0.141792,-0.686447,0.713222,-0.112446,-0.568929,0.814663,-0.0255755,-0.99857,-0.0469404,-0.0553386,-0.993091,-0.103474,-0.203951,0.971541,0.120463,-0.166018,0.981935,0.0907836,-0.00967006,-0.994812,-0.10127,-0.0541466,-0.97271,-0.225618,-0.0463336,-0.975694,0.214184,-0.0178627,-0.934609,0.355228,0.00852119,0.592786,0.805315,0.00728047,0.592065,0.805857,-0.1229,0.608129,0.784267,-0.114304,0.614548,0.780555,-0.048444,-0.793438,0.60672,-0.0354004,-0.678766,0.733501,0.0797667,-0.43559,-0.896604,0.144392,-0.601182,-0.785959,-0.0976218,0.185293,0.977822,-0.124527,0.162239,0.978862,-0.193521,0.872623,0.448417,-0.150286,0.889548,0.431414,-0.338209,-0.919463,0.200505,-0.142255,-0.98436,0.103919,0.0162824,-0.903485,-0.42831,-0.218219,-0.913538,-0.343261,-0.0394235,-0.948969,0.312895,-0.109666,-0.931674,0.346349,-0.084275,-0.340626,0.936414,-0.0190853,-0.284165,0.958585,-0.00392703,-0.987603,-0.156925,0.0282031,-0.981337,-0.190215,0.056851,-0.593617,-0.802737,0.0137885,-0.628388,-0.777778,-0.0903185,0.995071,0.040944,0.0263063,0.984463,0.173609,0.138459,-0.213416,-0.9671,0.114599,-0.219274,-0.96891,0.0961588,0.559113,-0.823497,0.0677468,0.540684,-0.838493,0.0946418,0.115535,-0.988784,0.114234,0.128337,-0.985129,-0.238595,0.731867,0.638313,-0.188793,0.815369,0.547294,-0.211645,-0.977285,-0.0110083,-0.218161,-0.975897,-0.00559719,0.0730545,-0.566691,-0.820686,0.0171923,-0.619635,-0.784702,-0.271876,0.0398029,0.961509,-0.215906,0.137644,0.966664,-0.0922238,0.642938,-0.760346,-0.0688882,0.672658,-0.73674,-0.061309,0.167406,-0.98398,-0.0626072,0.165324,-0.98425,0.0195878,-0.922324,-0.385921,0.0639614,-0.973322,-0.220349,-0.128488,0.610837,0.781262,-0.150863,0.594272,0.789988,-0.0666994,-0.583482,-0.809382,0.0869979,-0.482786,-0.871406,0.109654,0.564592,-0.818053,0.0651193,0.522324,-0.850257,0.220553,0.0501647,-0.974084,0.215624,0.0453238,-0.975424,0.192786,-0.261707,-0.945697,0.248184,-0.218157,-0.943828,0.188453,-0.36884,-0.910188,0.147505,-0.402776,-0.903335,-0.153499,-0.716855,0.680116,-0.220482,-0.683879,0.695483,-0.0884519,0.0941201,0.991624,-0.062604,0.109179,0.992049,-0.0943019,0.52327,0.846933,-0.095331,0.522855,0.847074,-0.0799248,0.985464,0.14991,-0.113236,0.977812,0.176241,-0.105051,-0.591402,0.799504,-0.100533,-0.586304,0.803829,-0.107026,-0.231645,0.966895,-0.123204,-0.247944,0.960908,-0.0893209,-0.880107,0.466297,-0.100714,-0.871276,0.480348,-0.0430329,-0.991084,-0.126101,-0.0109635,-0.987154,-0.159394,0.0172175,-0.755477,-0.654948,0.05138,-0.732562,-0.678758,0.0999873,-0.393551,-0.913849,0.0699078,-0.420771,-0.904469,0.115073,0.0688847,-0.990966,0.114012,0.0677738,-0.991165,-0.0165613,0.577491,-0.816229,0.0295434,0.622466,-0.782089,-0.161087,0.547294,0.821292,-0.13959,0.557255,0.818524,-0.138959,0.134692,0.981096,-0.13159,0.139493,0.981441,-0.181919,0.947578,-0.262682,-0.184469,0.946039,-0.266422,-0.189328,0.896661,0.400192,-0.197596,0.892391,0.405702,-0.0412439,0.992149,-0.118067,-0.0168424,0.997131,-0.073794,-0.0272591,0.992836,-0.116335,-0.0754374,0.99606,-0.0466121,0.00922878,0.818601,-0.574288,-0.00372842,0.803787,-0.594906,-0.0740164,0.886341,0.457079,-0.0184926,0.914865,0.403336,-0.0964493,0.91487,0.392058,-0.110241,0.905002,0.410876,-0.0775294,0.81276,-0.577417,-0.0583854,0.799312,-0.598074,-0.143976,0.902419,0.406092,-0.194604,0.864039,0.464291,0.00457467,0.818596,-0.574351,0.0289924,0.841889,-0.538871,-0.132589,0.953324,-0.271282,-0.163443,0.933109,-0.320305,0.00134488,0.997413,-0.071874,0.0677355,0.997642,0.0111047,-0.137971,0.952525,-0.271405,-0.155113,0.943574,-0.29259,-0.200309,0.976282,0.0821595,-0.194004,0.978149,0.0747503,-0.140512,0.990073,0.00330645,-0.0994643,0.993798,-0.0497265,-0.156008,-0.353803,0.922217,-0.0288227,-0.269394,0.962599,0.10592,-0.162646,-0.980983,0.148213,-0.117078,-0.982001,-0.110655,0.903005,-0.415135,-0.0676237,0.936855,-0.343118,0.0428207,-0.26526,-0.963226,0.043092,-0.264922,-0.963306,0.00607539,-0.357995,-0.933704,0.0533752,-0.28945,-0.955704,-0.0328676,-0.26153,-0.964636,-0.0213641,-0.244097,-0.969515,0.101816,-0.280233,-0.954517,0.133568,-0.250716,-0.958802,-0.39436,-0.703187,0.591615,-0.329893,-0.737793,0.588924,-0.459875,-0.33427,0.822666,-0.436812,-0.323622,0.839324,-0.439877,0.22578,0.869213,-0.382164,0.248593,0.890029,-0.32507,0.690278,0.64641,-0.222114,0.719,0.658563,-0.184423,0.898283,0.398844,-0.0649499,0.919605,0.387438,-0.042869,0.856578,0.514233,0.0132789,0.864855,0.501847,-0.0460097,0.953348,-0.298346,-0.0564047,0.948795,-0.310816,0.0497354,0.932725,-0.357142,0.0315367,0.927682,-0.372038,0.0260954,-0.906471,0.42146,0.0482614,-0.914741,0.401149,-0.262527,-0.358125,0.896006,-0.266467,-0.360534,0.893874,0.057469,-0.967908,-0.244646,0.0177135,-0.975246,-0.220411,0.152955,-0.707217,-0.690253,0.237306,-0.6338,-0.736195,0.0721486,0.539674,-0.838777,0.00689966,0.486533,-0.873635,0.0211974,0.123276,-0.992146,-0.0320752,0.0718343,-0.996901,-0.0136148,-0.180452,-0.98349,0.0272518,-0.1564,-0.987318,0.042964,-0.300537,-0.952802,0.0323342,-0.308242,-0.950758,-0.0416724,-0.628663,0.77656,0.00986566,-0.664834,0.746926,-0.224615,0.171021,0.959323,-0.289804,0.142657,0.946395,-0.0642003,0.615453,0.785554,-0.198847,0.584393,0.78673,0.0194153,0.984968,0.171641,0.0402256,0.979448,0.197647,-0.0195769,0.834578,0.550542,0.00916447,0.842501,0.538617,0.058525,0.931817,-0.358179,0.0442274,0.927134,-0.372112,0.00581917,-0.999501,0.0310511,0.0303897,-0.999467,0.0119335,0.0101762,0.899366,-0.437078,-0.0274787,0.876049,-0.481438,-0.0623057,0.870583,0.48806,-0.0647252,0.869371,0.489903,0.0637023,-0.927498,-0.368361,0.0177795,-0.938661,-0.344383,0.0118912,0.228416,0.973491,0.00190875,0.22151,0.975156,0.0246724,0.467412,-0.883695,0.120657,0.532311,-0.837906,0.0420272,-0.0829772,-0.995665,0.133212,-0.0270843,-0.990717,-0.083795,0.606135,0.790936,-0.0817789,0.60734,0.790222,-0.0199628,0.99879,0.0449455,-0.0466084,0.99891,0.00247855,0.0331426,-0.868265,0.494993,0.00102341,-0.878946,0.47692,0.0514862,-0.367958,0.928416,0.0204504,-0.385469,0.922494,-0.0524092,-0.341401,0.938455,-0.0795991,-0.365818,0.927276,0.109423,-0.975619,-0.190249,0.0882199,-0.981723,-0.168632,0.180554,0.425409,-0.886807,0.248268,0.489329,-0.836014,0.305089,0.0128234,-0.952238,0.324962,0.0307673,-0.945226,0.346472,-0.201769,-0.916104,0.312581,-0.226098,-0.92259,0.316671,-0.312017,-0.895748,0.247988,-0.373313,-0.893946,-0.0995848,0.0940862,0.990571,-0.0962139,0.0961296,0.990708,-0.0543556,0.528878,0.846955,-0.0831793,0.518597,0.850963,0.0236263,0.978752,0.203683,0.0325934,0.980112,0.195749,0.0689344,0.924536,-0.374809,0.109496,0.940657,-0.321209,-0.0307138,-0.89686,0.441246,-0.00491101,-0.910446,0.413598,0.0662145,-0.735584,-0.67419,0.114085,-0.702514,-0.702466,-0.0384611,-0.602529,0.79717,-0.0139766,-0.626461,0.779327,-0.0910987,0.861497,0.499524,-0.110809,0.854301,0.507829,0.0661809,0.115686,-0.991079,-0.0578509,0.0077424,-0.998295,0.0612791,-0.358793,-0.931403,-0.0431068,-0.473229,-0.879884,0.116326,-0.49024,-0.86379,0.00047925,-0.570633,-0.821205,0.13911,-0.589841,-0.795447,0.082379,-0.635806,-0.76744,0.0627883,-0.94014,-0.334955,0.094651,-0.92839,-0.359351,-0.0652607,-0.789292,-0.610541,0.038077,-0.640287,-0.767191,-0.0208568,-0.898635,-0.438202,-0.192352,-0.92648,-0.323473,-0.170975,-0.985256,-0.00622127,-0.198128,-0.980075,0.0140815,-0.193074,-0.981175,-0.00423665,-0.219879,-0.975452,0.0121084,-0.306968,-0.795563,0.522351,-0.128093,-0.941321,0.312261,-0.0478568,-0.677988,0.733513,-0.0924714,-0.732013,0.674985,0.117873,-0.981878,-0.148394,0.260823,-0.93233,-0.250464,0.175794,-0.581017,-0.79468,0.265266,-0.6894,-0.674063,0.079587,-0.871201,0.484433,0.00276902,-0.845445,0.534056,0.185818,-0.815438,-0.548208,0.126097,-0.702472,-0.700452,0.183021,-0.974485,-0.129932,0.0589433,-0.99778,0.0310073,-0.0167395,0.427761,-0.903737,0.0358889,0.340544,-0.939543,-0.0364976,0.743159,-0.668119,-0.0758956,0.782898,-0.617504,0.172162,0.532477,-0.828751,0.119486,0.550822,-0.826025,0.0895107,0.172775,-0.980886,0.131916,0.121872,-0.983741,-0.113427,0.993215,-0.0256579,-0.129268,0.991606,0.00263336,-0.165685,0.597736,0.784385,-0.12284,0.652334,0.747911,-0.176033,0.650615,0.738723,-0.127484,0.741503,0.658727,-0.209831,0.217511,0.953237,-0.208462,0.218593,0.95329,-0.199671,0.277019,0.939889,-0.152526,0.417001,0.896017,-0.113897,-0.419144,0.900747,-0.103559,-0.365207,0.925148,-0.117418,-0.45756,0.881392,-0.0910416,-0.464516,0.880872,-0.191477,-0.0681259,0.97913,-0.174843,-0.0751978,0.981721,0.156779,-0.427864,-0.890142,0.101521,-0.311962,-0.944655,0.280248,-0.179675,-0.942962,0.174695,-0.155396,-0.972283,0.109909,-0.0308522,-0.993463,0.0396047,0.108731,-0.993282,-0.179412,-0.0349584,0.983153,-0.162322,0.0354268,0.986102,-3.81529e-005,-0.845873,0.533384,0.0154952,-0.784837,0.619508,-0.0398921,0.830082,-0.556213,0.0103597,0.800668,-0.599018,-0.0859962,0.996284,0.00475223,-0.0922056,0.995674,0.0114208,0.292135,-0.91856,-0.266277,0.209236,-0.939247,-0.272093,0.239296,-0.522481,-0.818383,0.380978,-0.554561,-0.73981,0.0981507,-0.884392,0.456308,0.0065714,-0.888205,0.459401,0.0894974,0.449443,-0.888815,0.0324003,0.509364,-0.859941,0.165827,0.200369,-0.965585,0.195824,0.191482,-0.961763,-0.20745,0.591751,0.778971,-0.193548,0.598248,0.777585,-0.14882,0.282163,0.947754,-0.18127,0.220127,0.958481,-0.0983755,-0.453548,0.885786,-0.0834965,-0.414063,0.906411,-0.163849,-0.0632193,0.984458,-0.14954,-0.0300347,0.988299,0.202921,-0.300638,-0.931901,0.12145,-0.200386,-0.97216,0.0262985,0.864649,-0.501688,0.089341,0.85347,-0.513426,-0.105874,0.993853,0.032348,-0.0455484,0.998754,0.0203974,-0.561161,-0.750173,0.34977,-0.565894,-0.772929,0.286958,-0.53076,-0.728142,0.433708,-0.528026,-0.755023,0.388753,-0.567101,-0.664452,0.486724,-0.597923,-0.711458,0.36921,-0.588417,-0.589217,0.553704,-0.603914,-0.656826,0.451518,-0.589124,-0.635138,0.499533,-0.497154,-0.556682,0.66554,-0.52834,-0.501754,0.684909,-0.381927,-0.380361,0.842293,-0.368898,-0.0771547,0.926262,-0.48962,-0.131187,0.862011,-0.512989,-0.0511966,0.856867,-0.456712,-0.0248901,0.889266,-0.410682,0.215328,0.885988,-0.381361,0.225671,0.896458,-0.29849,0.49009,0.818972,-0.532371,0.414222,0.738242,-0.4829,0.225713,0.846086,-0.540005,0.196782,0.818335,-0.653703,0.32427,0.683755,-0.459611,0.405424,0.790183,-0.613183,0.569711,0.547208,-0.31971,0.672587,0.667392,-0.653856,0.484776,0.580917,-0.490835,0.54627,0.678727,-0.618466,-0.325996,0.715001,-0.58521,-0.496579,0.641044,-0.58007,-0.168902,0.796863,-0.53501,-0.268733,0.800966,-0.628354,-0.282011,0.725011,-0.633527,-0.311563,0.708218,-0.587169,-0.0609866,0.807163,-0.496191,-0.210053,0.84242,-0.580964,-0.495637,0.64562,-0.581341,-0.589488,0.560845,-0.586648,-0.310268,0.74805,-0.647683,-0.418159,0.636906,-0.546433,0.0333589,0.836838,-0.534098,0.0362228,0.844646,-0.490065,0.0213822,0.871424,-0.568777,-0.00406806,0.822482,-0.557472,-0.070564,0.827192,-0.708006,-0.13358,0.693458,-0.635253,-0.218617,0.740716,-0.540174,-0.163816,0.825455,-0.555982,0.146266,0.818224,-0.465984,0.189538,0.864254,-0.62862,0.0800292,0.773584,-0.495673,0.138398,0.857411,-0.585591,0.179392,0.790508,-0.619609,0.237588,0.748089,-0.488713,0.29871,0.819714,-0.634885,0.240747,0.734141,-0.554601,0.339898,0.759531,-0.553207,0.334072,0.763124,-0.579236,0.459955,0.672999,-0.567463,0.340874,0.749527,-0.434202,0.424925,0.794297,-0.385334,0.506734,0.771193,-0.436847,0.576518,0.690501,-0.403058,0.653365,0.640826,-0.139905,0.800857,0.582284,-0.204256,0.729905,0.652317,-0.419521,0.307545,0.85406,-0.511656,0.397219,0.761857,-0.295066,0.838307,0.45845,-0.457312,0.805155,0.377613,-0.487885,0.726733,0.483557,-0.351643,0.74873,0.561917,-0.23814,0.934053,0.266147,-0.176274,0.935636,0.305799,-0.175638,0.887188,0.426672,-0.190489,0.871345,0.452185,-0.5549,-0.430473,0.711884,-0.635422,-0.52751,0.563889,-0.581431,-0.0525654,0.811896,-0.69067,0.0803166,0.718696,-0.60463,-0.045343,0.795214,-0.543816,-0.124808,0.829872,-0.693445,0.0917095,0.714649,-0.688677,0.0838524,0.720204,-0.588655,0.180077,0.788072,-0.630039,0.239873,0.738587,0.00299669,0.814854,0.579659,-0.107821,0.85539,0.506639,-0.522979,-0.541934,0.657876,-0.471765,-0.677487,0.564313,-0.473268,-0.678055,0.562369,-0.461744,-0.720599,0.517233,-0.317438,-0.363154,0.875987,-0.305949,-0.387201,0.869753,-0.458173,-0.147006,0.876622,-0.281104,-0.312936,0.907222,-0.444587,-0.121974,0.887392,-0.525268,-0.0243483,0.850588,-0.734726,-0.435458,-0.520148,-0.697804,-0.486081,-0.526113,-0.74284,-0.363429,-0.562235,-0.856779,-0.26717,-0.441078,-0.165765,0.979492,0.114533,-0.145029,0.980688,0.131215,-0.224447,0.973965,-0.0318704,-0.251698,0.965948,-0.0599473,-0.799806,0.575166,-0.17174,-0.523923,0.662247,-0.535662,-0.838391,0.462824,-0.287912,-0.848213,-0.0981331,-0.520486,-0.964866,0.0758798,-0.251546,-0.726445,-0.460649,-0.509981,-0.691406,-0.531434,-0.489424,-0.564393,-0.824748,0.0353698,-0.577056,-0.761066,-0.296286,-0.639137,-0.767633,-0.0473708,-0.633575,-0.770495,0.0701443,-0.384014,0.855723,-0.346802,-0.320438,0.898714,-0.299388,-0.392663,0.83387,-0.387913,-0.458279,0.800185,-0.386891,-0.122003,0.966674,0.22507,-0.102088,0.965688,0.238799,-0.0308812,0.911855,0.409349,-0.0671388,0.91912,0.388216,-0.452331,-0.249151,0.856341,-0.599561,-0.348054,0.720684,-0.628085,0.0667271,0.775278,-0.580252,-0.00692648,0.814407,-0.535828,0.221064,0.814873,-0.55225,0.243102,0.797447,-0.312176,0.38346,0.869198,-0.448411,0.503023,0.738847,-0.312879,0.918574,-0.241513,-0.27033,0.943227,-0.192991,-0.528436,0.696148,0.485936,-0.155743,0.798068,0.582093,-0.119728,0.59457,0.79508,-0.458526,0.508552,0.728786,-0.224297,0.912354,0.342492,-0.412712,0.874568,0.254558,-0.418916,-0.276104,-0.86503,-0.257709,-0.338253,-0.905081,-0.537754,-0.534187,-0.652277,-0.404899,-0.446145,-0.79813,-0.192624,0.222905,-0.95562,-0.144584,0.221723,-0.964331,-0.116467,-0.183913,-0.976018,-0.265598,-0.189451,-0.945286,-0.524599,-0.593878,-0.610004,-0.608058,-0.707345,-0.360456,-0.548447,-0.835976,0.0186889,-0.374397,-0.841479,-0.389538,-0.445435,-0.712604,-0.542018,-0.0639193,-0.663945,-0.745045,-0.418338,-0.293084,0.859707,-0.348978,-0.264189,0.899121,0.0824763,0.56249,-0.82268,0.00585028,0.518125,-0.855285,-0.22392,0.877231,-0.424648,-0.260696,0.850975,-0.455938,-0.191746,0.979775,0.0572179,-0.220025,0.974879,0.0346398,-0.188503,0.960854,0.203044,-0.346614,0.929394,0.126828,-0.181724,0.692249,0.698403,-0.409638,0.631186,0.658635,-0.395801,0.264889,0.879304,-0.417431,0.257897,0.871344,0.248287,-0.316644,-0.915473,-0.132329,-0.470444,-0.872451,0.229785,-0.275997,-0.933287,0.229404,-0.276069,-0.933359,0.226466,0.105905,-0.968245,0.168473,0.0906563,-0.981529,-0.26878,0.631626,-0.72719,-0.274658,0.628181,-0.727977,-0.235023,0.962898,0.132635,-0.182199,0.968288,0.170942,-0.429539,-0.622612,0.654103,-0.561329,-0.686463,0.462254,-0.416196,-0.516541,0.748309,-0.475023,-0.557132,0.681144,0.0169914,0.92908,-0.369489,-0.126624,0.868276,-0.479649,-0.231159,0.931695,-0.280197,-0.248002,0.942825,-0.222658,-0.174018,0.650693,0.739132,-0.314927,0.524706,0.790888,-0.115271,-0.0774306,-0.990312,-0.0368202,-0.096641,-0.994638,0.224817,-0.240577,-0.944235,0.313929,-0.244144,-0.91752,-0.500805,-0.717972,0.483437,-0.422776,-0.668924,0.611393,-0.484815,-0.739986,0.466235,-0.55053,-0.785318,0.283183,-0.577666,-0.801389,0.155171,-0.561539,-0.774074,0.292377,-0.308238,0.211812,0.927429,-0.264867,0.224119,0.937879,-0.281071,-0.173503,0.943873,-0.461255,-0.239858,0.854232,-0.503519,-0.788597,0.352964,-0.405542,-0.734307,0.544362,-0.164219,0.985931,0.0311948,-0.0658776,0.959336,-0.274473,-0.202313,0.889143,0.410481,-0.417843,0.830868,0.367513,-0.551272,0.813473,-0.185367,-0.550396,0.814304,-0.184316,-0.00703941,-0.967182,0.253986,-0.0154738,-0.968933,0.246839,-0.162865,0.921384,0.352883,-0.114437,0.913348,0.390769,-0.136565,0.964165,0.227455,-0.134713,0.965189,0.224191,-0.161169,0.96273,0.217198,-0.153166,0.962057,0.225802,-0.152902,0.97926,0.13293,-0.161246,0.97489,0.153585,-0.152482,0.979225,0.133671,-0.16212,0.974727,0.153705,-0.298734,0.937554,-0.178186,-0.246109,0.959896,-0.134277,-0.389592,0.875281,-0.286534,-0.435548,0.849027,-0.299083,-0.30958,0.926812,-0.212555,-0.372857,0.894509,-0.246642,-0.685351,-0.721091,0.1016,-0.673029,-0.739614,-0.00148539,-0.275967,-0.880238,0.386036,-0.262059,-0.888161,0.377486,-0.224081,-0.897326,0.380255,-0.191194,-0.912193,0.362421,0.0293318,-0.933537,0.357279,0.040565,-0.930841,0.363167,0.0643993,-0.941494,0.330819,0.0694288,-0.941934,0.328543,-0.105759,-0.92995,0.352147,-0.135393,-0.920528,0.366465,-0.232066,-0.475517,0.848545,-0.209847,-0.574337,0.791266,-0.426351,-0.758799,0.492391,-0.409089,-0.783005,0.468561,-0.310527,-0.89634,0.316461,-0.362529,-0.856561,0.367254,-0.279784,-0.754912,0.593151,-0.308218,-0.70882,0.634488,-0.286632,-0.866268,0.409171,-0.273372,-0.875028,0.399491,-0.412822,-0.835164,0.363427,-0.406696,-0.842656,0.352888,-0.259815,-0.911352,0.319271,-0.257788,-0.912538,0.317521,-0.188585,-0.793569,0.578518,-0.194956,-0.786486,0.58603,-0.0773925,-0.943034,0.32357,-0.13133,-0.920401,0.368259,-0.245252,-0.882359,0.401614,-0.222962,-0.89473,0.386971,-0.129324,-0.910121,0.393643,-0.133902,-0.908297,0.396316,0.158875,-0.793973,0.586826,0.219193,-0.819779,0.529071,0.189138,-0.912352,0.363097,0.0768769,-0.874415,0.479049,-0.0846548,-0.971599,0.220972,-0.115129,-0.976429,0.182569,-0.200375,-0.974181,0.104028,-0.228856,-0.964701,0.130292,-0.34058,-0.933727,0.110265,-0.345786,-0.931179,0.115493,-0.380347,-0.924074,0.0377403,-0.361898,-0.931997,0.0203006,-0.246772,-0.968477,0.0340028,-0.287302,-0.955455,0.0675476,-0.351692,-0.919746,0.174297,-0.391232,-0.915329,0.0954447,-0.549353,-0.835437,0.016004,-0.505347,-0.856613,0.104103,-0.969452,-0.245233,0.00480877,-0.972849,-0.230492,-0.0209474,-0.971467,-0.223499,-0.079372,-0.965869,-0.240433,-0.0963771,-0.982922,-0.0696127,-0.170346,-0.998032,0.031994,-0.0539269,-0.9743,0.0314657,-0.223047,-0.98387,0.0944782,-0.151899,-0.1517,0.858416,0.490009,-0.132627,0.852303,0.505954,-0.178711,0.854255,0.48817,-0.194501,0.858851,0.473862,0.0102389,0.8798,0.475234,-0.0158012,0.892391,0.450987,0.00986699,0.978195,0.207454,0.0187121,0.975974,0.21708,0.00597283,0.993431,0.114275,0.0028219,0.992768,0.120011,-0.517776,0.704417,-0.485494,-0.539303,0.689458,-0.483528,-0.824082,0.17767,-0.537886,-0.75053,0.265747,-0.605048,-0.735234,0.349014,-0.58105,-0.604308,0.488174,-0.629681,-0.6803,0.573862,-0.455932,-0.687868,0.569286,-0.450278,-0.868482,-0.0448079,-0.493692,-0.801114,-0.177527,-0.571577,-0.773768,-0.389087,-0.499894,-0.799936,-0.353924,-0.484603,-0.926338,-0.221303,-0.304832,-0.831291,-0.37645,-0.40895,-0.0575643,-0.978233,0.199363,-0.0680114,-0.974454,0.214042,-0.0152007,-0.796468,0.60449,0.0263626,-0.82871,0.559056,-0.434229,-0.698391,0.568942,-0.3813,-0.782642,0.492019,-0.904765,-0.344505,-0.250432,-0.912445,-0.327671,-0.245105,-0.948708,-0.303889,-0.0872002,-0.936263,-0.3311,-0.117404,-0.86377,-0.416914,-0.282992,-0.882228,-0.447769,-0.145521,-0.982199,-0.143371,0.121368,-0.981192,-0.162837,0.103662,-0.97461,-0.153194,0.1633,-0.972223,-0.211278,0.10072,-0.852222,-0.49774,0.161162,-0.877,-0.470697,0.0965161,-0.876914,-0.463669,0.12662,-0.897396,-0.4047,0.175779,-0.823922,-0.562424,0.0695098,-0.817751,-0.573398,0.0499779,-0.682256,-0.725994,0.0863699,-0.702371,-0.700607,0.125793,-0.947539,-0.319039,0.019605,-0.942399,-0.334389,-0.008247,-0.704653,-0.702292,0.101244,-0.692422,-0.711233,0.121243,-0.840166,-0.531106,0.109764,-0.853227,-0.499807,0.148985,-0.70766,-0.693084,0.137298,-0.7022,-0.700566,0.126975,-0.991078,0.105697,0.0811906,-0.979481,0.152148,0.132166,-0.958584,-0.262983,0.109349,-0.961492,-0.199448,0.189088,-0.991766,0.0606596,0.112783,-0.974979,0.117742,0.188552,-0.887466,0.460815,0.00736191,-0.861388,0.503751,0.0651599,-0.908158,0.41516,0.0537765,-0.88311,0.453496,0.120243,-0.863912,0.492708,-0.104383,-0.854593,0.512858,-0.0815275,-0.980817,0.134489,-0.141102,-0.978641,0.0938981,-0.18288,-0.72508,0.675977,-0.131583,-0.74063,0.653129,-0.157764,-0.554603,0.830468,-0.0523298,-0.564473,0.822943,-0.0643054,0.0453682,0.981871,-0.184041,0.0353916,0.984945,-0.169206,0.00799,0.996346,-0.0850383,0.0383113,0.987502,-0.152879,-0.244428,0.962079,-0.121076,-0.272848,0.950392,-0.14936,-0.260757,0.956708,-0.129291,-0.243122,0.963871,-0.108831,-0.572771,0.817828,-0.0555935,-0.563671,0.824875,-0.0430853,-0.758485,0.651217,0.024834,-0.756457,0.653417,0.0286233,-0.970204,-0.166961,-0.17558,-0.945883,-0.22603,-0.232844,-0.952184,0.0736721,-0.296509,-0.967575,0.159366,-0.19596,-0.808498,0.389542,-0.441121,-0.807471,0.488891,-0.330116,-0.100288,0.93092,-0.351183,-0.116597,0.921917,-0.369425,-0.245892,0.925838,-0.286987,-0.354702,0.874296,-0.331351,-0.167509,0.971325,-0.168728,-0.164342,0.972379,-0.165742,-0.177196,0.980683,-0.0828364,-0.14004,0.989276,-0.0414854,-0.0253318,0.997035,-0.072654,-0.0529014,0.992559,-0.109677,-0.1143,-0.977717,0.176083,-0.147264,-0.979308,0.138814,-0.280912,-0.947893,0.150291,-0.316216,-0.943704,0.0971101,-0.548398,-0.826949,0.124158,-0.543807,-0.829045,0.130224,-0.536179,-0.842741,0.0479526,-0.505321,-0.85866,0.085756,-0.138579,-0.984881,0.103945,-0.115356,-0.985834,0.121756,-0.334644,-0.93503,0.117183,-0.314016,-0.939533,0.136646,-0.14005,-0.975979,0.166888,-0.149134,-0.975958,0.15895,-0.338429,-0.927211,0.160456,-0.326137,-0.929104,0.174358,-0.115006,-0.988989,0.0931349,-0.12319,-0.988595,0.0866283,-0.515799,0.760948,-0.393585,-0.491789,0.791743,-0.362335,-0.253504,0.883979,-0.392833,-0.231931,0.898791,-0.371997,0.0619001,0.936328,-0.345628,0.108963,0.918245,-0.380726,0.101982,0.894573,-0.435131,0.111129,0.890751,-0.440697,-0.865406,0.419182,-0.274515,-0.862776,0.307125,-0.401611,-0.450722,0.740312,-0.498787,-0.459852,0.722739,-0.51593,-0.910605,0.169519,-0.376912,-0.930631,0.299211,-0.210712,-0.448309,0.710868,-0.541928,-0.50496,0.703993,-0.499408,-0.183158,0.825947,-0.533164,-0.22678,0.834443,-0.50227,-0.274265,0.862866,-0.424548,-0.33897,0.868518,-0.361628,0.080906,0.875047,-0.477228,0.107631,0.861374,-0.496438,-0.112203,0.94164,-0.317371,-0.0479344,0.908063,-0.416081,-0.812063,0.576687,0.0893649,-0.871776,0.487869,-0.0446114,-0.637614,0.770113,-0.0193465,-0.587835,0.806644,0.0614548,0.0659854,0.963551,-0.259261,0.038769,0.972167,-0.231057,-0.0616266,0.981341,-0.182131,-0.0715585,0.978433,-0.193775,0.0744616,0.990436,0.116156,0.0662069,0.993418,0.0934733,-0.0577507,0.993492,0.0981747,-0.093361,0.995047,0.0341365,0.14098,0.989682,-0.0255871,0.173698,0.980441,-0.0925402,-0.268745,0.934699,-0.232624,-0.275884,0.930909,-0.239369,-0.59283,-0.804231,0.0420111,-0.627779,-0.772893,0.092358,-0.629231,-0.762824,0.148888,-0.584051,-0.786571,0.200476,-0.999143,-0.0413797,-2.63354e-005,-0.997153,0.00641129,0.0751378,-0.341235,0.938005,-0.0608697,-0.274271,0.960824,0.0399037,-0.325393,-0.943427,0.06376,-0.309373,-0.947645,0.0791032,-0.207094,-0.951005,0.229569,-0.23716,-0.955761,0.173999,-0.464891,-0.885184,0.0180641,-0.423933,-0.89963,0.104623,-0.490114,-0.856414,0.162305,-0.540732,-0.837563,0.0780812,0.0204046,0.945644,0.324561,0.0199265,0.945818,0.324084,-0.177941,0.927302,0.329314,-0.15455,0.922861,0.352763,-0.195128,0.849969,-0.489364,-0.206576,0.851268,-0.482357,-0.395044,0.825962,-0.402153,-0.579777,0.745089,-0.329698,-0.958175,0.277731,0.0690356,-0.982547,0.167864,-0.0801445,-0.503795,-0.855662,0.118459,-0.494597,-0.859757,0.12725,-0.572976,-0.810708,0.120215,-0.586047,-0.80348,0.104734,-0.390406,-0.914442,0.106674,-0.373518,-0.9198,0.120217,-0.169213,-0.981303,0.091714,-0.169743,-0.981247,0.0913289,0.141772,-0.988244,0.0572177,0.0508009,-0.992809,0.108396,0.0761303,-0.900684,0.427753,0.0374174,-0.914215,0.403499,-0.0705419,-0.93723,0.341503,-0.0369717,-0.944586,0.326176,-0.191085,0.979841,0.0582872,-0.179919,0.981209,0.0696933,-0.766521,-0.632615,0.110649,-0.754284,-0.641259,0.140863,-0.237924,0.935085,-0.262692,-0.180562,0.958225,-0.221816,-0.0860058,0.960837,-0.263431,-0.0811157,0.962658,-0.258284,-0.499493,-0.833833,0.23501,-0.465546,-0.868534,0.170044,-0.373893,-0.88865,0.265528,-0.351378,-0.905841,0.236612,-0.256963,-0.926463,0.27502,-0.255186,-0.927475,0.27326,-0.162574,-0.944229,0.286359,-0.155219,-0.947144,0.280758,-0.583291,-0.808505,0.0780418,-0.613235,-0.768549,0.182417,-0.407865,-0.866505,0.287777,-0.425663,-0.850102,0.310061,-0.680784,-0.723426,-0.114836,-0.615593,-0.78793,-0.0145144,-0.324617,-0.89239,0.313472,-0.333781,-0.886111,0.321554,-0.500848,-0.864894,-0.0333127,-0.436961,-0.896833,0.0689603,-0.240207,-0.913,0.329744,-0.245424,-0.910304,0.333337,-0.293226,-0.945611,0.14085,-0.338656,-0.938892,0.0615999,-0.167127,-0.924651,0.342183,-0.151782,-0.930149,0.334343,-0.168432,-0.977918,0.123725,-0.197116,-0.969534,0.145428,-0.473311,-0.848046,0.238318,-0.499632,-0.815474,0.292182,-0.840065,-0.508592,-0.188743,-0.770421,-0.631647,-0.0864439,0.0591449,-0.984407,0.165665,-0.0214076,-0.975965,0.216875,0.0862425,0.975579,-0.20201,0.0697434,0.97152,-0.226463,0.0780704,0.993388,-0.0841757,0.0769821,0.993318,-0.0859864,0.0793129,0.99072,0.110379,0.0801956,0.990507,0.111644,0.0804685,0.973463,0.214232,0.0815705,0.973092,0.215496,0.0822774,0.943252,0.321724,0.0867817,0.941376,0.326006,-0.191521,-0.969455,0.153224,-0.161785,-0.972309,0.168646,-0.0234489,-0.979302,0.20104,0.0501824,-0.992886,0.107975,-0.206143,-0.978522,0.000317874,-0.184217,-0.982781,-0.0143443,-0.520528,-0.844925,0.123094,-0.514224,-0.849812,0.115729,-0.887196,-0.461282,-0.0101317,-0.876182,-0.480853,0.0329454,-0.750775,-0.660075,0.0252484,-0.764196,-0.644779,-0.0162722,-0.600938,-0.795798,0.0746874,-0.629135,-0.777261,0.00737784,-0.890108,-0.455369,0.0186283,-0.892201,-0.451509,0.0107923,-0.57173,-0.8202,0.0199246,-0.582999,-0.812408,-0.0102301,-0.742779,-0.667645,0.0502954,-0.764965,-0.643983,-0.0107214,0.023437,-0.953796,0.299539,0.0572502,-0.959281,0.276591,-0.771488,0.284041,-0.569321,-0.78143,0.274194,-0.560522,-0.510075,0.709041,-0.486913,-0.566039,0.698766,-0.437408,-0.669912,0.636578,-0.382081,-0.662169,0.653997,-0.365815,-0.643822,0.639222,-0.420581,-0.665384,0.548818,-0.506027,-0.720881,0.462228,-0.516407,-0.716516,0.575873,-0.393668,-0.0251825,-0.98238,0.185192,-0.0394174,-0.984406,0.171439,0.271721,0.86244,-0.427042,0.261096,0.869344,-0.419608,0.018706,-0.963174,0.268228,-0.00705398,-0.967617,0.252323,0.218642,0.957616,-0.187531,0.259927,0.938727,-0.226339,-0.0478204,-0.992722,0.110529,-0.134803,-0.974565,0.179028,0.117574,-0.968407,0.219919,0.0613025,-0.98018,0.188384,-0.555145,-0.792998,0.250933,-0.537016,-0.82535,0.17439,-0.964949,-0.254441,-0.0642821,-0.955178,-0.296019,0.00287457,-0.975997,-0.142699,-0.164521,-0.994114,-0.0677878,-0.0845155,-0.972886,0.0336703,-0.228823,-0.979365,0.0681591,-0.190258,-0.883983,0.339363,-0.32157,-0.881199,0.406713,-0.240982,-0.23519,0.849599,-0.472088,-0.269888,0.855029,-0.442816,0.0806638,0.875871,-0.475756,0.0148671,0.909332,-0.415805,-0.574843,0.70739,-0.411285,-0.678851,0.670744,-0.29877,-0.866971,-0.493073,-0.0723933,-0.841447,-0.524684,-0.129123,0.240904,-0.812967,0.530141,0.214017,-0.838543,0.501041,0.100144,-0.938656,0.329996,0.0516166,-0.935146,0.350482,-0.0281795,-0.987507,0.155035,-0.0384273,-0.988392,0.146983,-0.00150309,-0.994515,0.104588,-0.0276062,-0.99591,0.0860335,0.274944,0.903372,-0.329127,0.253138,0.915427,-0.312914,0.156825,0.871088,-0.465416,0.1159,0.911105,-0.395543,0.244035,0.847625,-0.471145,0.259734,0.83565,-0.48397,0.0568521,-0.994376,0.0893498,0.0496003,-0.995307,0.0830862,0.102557,0.951626,-0.289638,0.0797493,0.943022,-0.323031,0.132664,-0.870974,0.473079,0.12,-0.863957,0.489059,0.118705,-0.896351,0.427157,0.0966422,-0.891762,0.442064,0.0900449,-0.927371,0.363146,0.0997943,-0.924623,0.367577,0.116255,0.917404,-0.380599,0.0973213,0.90665,-0.410505,0.171845,0.97868,-0.112494,0.219959,0.959979,-0.173376,0.033563,-0.994641,0.0977867,0.0470376,-0.99302,0.108158,-0.0587371,-0.993378,0.0987417,-0.0318311,-0.996094,0.0823627,0.0783417,0.891136,0.446922,0.0547296,0.904062,0.423883,0.10034,-0.937947,0.331944,0.0905623,-0.93762,0.335659,0.0699199,-0.939415,0.335575,0.0297078,-0.935871,0.351087,-0.0702551,-0.935787,0.345495,-0.105446,-0.927159,0.359523,-0.166,-0.920465,0.353819,-0.190852,-0.911153,0.365207,-0.23432,-0.90257,0.361196,-0.262062,-0.88817,0.377462,-0.770691,-0.489869,-0.407508,-0.83519,-0.377636,-0.399812,-0.832318,-0.401233,-0.382438,-0.802258,-0.472439,-0.364943,-0.764968,-0.579485,-0.281106,-0.772449,-0.59295,-0.227447,-0.568453,-0.808973,0.149745,-0.57219,-0.798865,0.185509,-0.499258,-0.828475,0.253715,-0.504345,-0.818386,0.275464,-0.369975,-0.775759,0.511191,-0.366221,-0.781341,0.505359,-0.207088,-0.426678,0.880375,-0.193649,-0.497978,0.845292,-0.44445,-0.818868,0.363207,-0.444421,-0.818912,0.363142,-0.236934,-0.681263,0.692635,-0.27895,-0.595764,0.753161,-0.326147,-0.845728,0.422342,-0.358682,-0.815524,0.454168,-0.299262,-0.861249,0.410723,-0.323413,-0.842334,0.431136,-0.473781,-0.825103,0.307793,-0.453528,-0.852726,0.259174,-0.39017,-0.767886,0.508054,-0.358949,-0.808988,0.465504,-0.278956,-0.723849,0.631051,-0.328627,-0.6295,0.704083,-0.243627,-0.55415,0.795967,-0.213364,-0.633701,0.743572,-0.305389,-0.878705,0.366899,-0.365888,-0.828454,0.424017,-0.380818,-0.797775,0.467475,-0.369423,-0.810366,0.454791,-0.345575,-0.876013,0.336422,-0.381837,-0.845545,0.373168,-0.312221,-0.878983,0.360425,-0.333272,-0.863221,0.379183,-0.357411,-0.865398,0.351202,-0.370674,-0.853018,0.367371,-0.364996,-0.805919,0.466125,-0.331177,-0.838999,0.431744,-0.291988,-0.86458,0.408954,-0.294125,-0.863087,0.410574,-0.307335,-0.870383,0.38468,-0.298561,-0.876131,0.378493,-0.311043,-0.87349,0.374522,-0.309544,-0.874499,0.373409,-0.396533,-0.869965,0.293125,-0.430681,-0.834585,0.343485,-0.75666,0.653805,0.00225083,-0.753384,0.657537,0.00757007,-0.843916,0.417185,-0.337288,-0.831179,0.489242,-0.264165,-0.989514,0.142002,0.0264197,-0.989199,0.143827,0.0282678,-0.986669,-0.162742,0.000189971,-0.974019,-0.220045,-0.0535503,-0.49276,-0.868902,0.0468755,-0.502599,-0.863747,0.0365449,-0.572663,-0.812105,0.111999,-0.620851,-0.782486,0.0475321,-0.168752,-0.982416,0.0798854,-0.124316,-0.985732,0.113478,-0.388616,-0.920816,0.0327772,-0.326898,-0.941102,0.0864001,-0.707985,-0.683515,0.177662,-0.750498,-0.653773,0.0966125,-0.00151947,-0.997639,0.0686521,0.0336931,-0.994869,0.0953946,-0.893082,-0.440998,0.0890273,-0.897598,-0.434934,0.0717658,-0.627485,-0.766071,0.139276,-0.669574,-0.73977,0.0664167,-0.873343,-0.487066,0.00622903,-0.881515,-0.470981,-0.0333037,-0.652592,-0.748493,0.117824,-0.671459,-0.736793,0.0792338,-0.738393,-0.674212,0.014626,-0.745053,-0.66698,-0.00580894,-0.75648,-0.652878,0.0385719,-0.747596,-0.660976,0.0648918,-0.210785,0.977022,0.0315888,-0.183488,0.981415,0.0561903,-0.489299,-0.80478,0.336029,-0.574981,-0.817848,0.0228389,-0.695294,-0.636646,-0.333537,-0.709637,-0.673735,-0.206144,-0.485057,-0.313367,0.816407,-0.431347,-0.290462,0.85415,-0.214067,0.97474,-0.0636968,-0.223671,0.971996,-0.0720727,-0.144634,0.986693,0.0742852,-0.306113,0.951857,-0.0162431,-0.302533,0.731951,0.61051,-0.359768,0.71599,0.598269,-0.335555,0.239193,0.911147,-0.313304,0.24614,0.9172,-0.381576,-0.565591,0.7311,-0.462483,-0.618514,0.635255,-0.474322,-0.796102,0.37582,-0.545389,-0.837871,0.0228525,-0.384343,0.884862,0.263248,-0.225699,0.929567,0.291489,-0.791388,-0.572778,-0.21361,-0.81116,-0.582341,-0.0538393,-0.0410945,-0.957811,0.284447,-0.0424925,-0.957453,0.285445,-0.164156,0.984198,0.0663789,-0.154675,0.987105,0.0412312,-0.00646906,0.999785,0.0196944,-0.0115053,0.999432,0.0316718,-0.208859,0.977726,-0.0207505,-0.221265,0.974655,-0.0330054,-0.593706,-0.7953,0.12252,-0.550538,-0.83477,0.00819758,-0.434786,-0.894381,0.105092,-0.391123,-0.906929,0.156536,-0.293652,-0.943838,0.151455,-0.263089,-0.946355,0.187606,-0.205501,-0.96093,0.185428,-0.164775,-0.960634,0.223679,-0.737992,-0.672314,0.0579797,-0.699835,-0.704945,-0.115255,0.0818087,0.996352,0.0242958,0.0799783,0.996568,0.0213538,-0.0602958,-0.975565,0.211277,0.0160464,-0.968137,0.249908,0.0474601,-0.953364,0.298069,0.0210227,-0.949496,0.313075,-0.672448,-0.739674,-0.0263698,-0.673969,-0.738759,-0.00113263,-0.0267087,-0.975729,0.217347,-0.0149127,-0.973183,0.229549,-0.0595292,-0.966318,0.25037,-0.0851759,-0.970552,0.225332,-0.420686,-0.903405,0.0829608,-0.396287,-0.908048,0.135665,-0.575486,-0.816586,0.0447603,-0.555678,-0.826303,0.0919021,-0.930944,-0.330832,-0.154573,-0.936978,-0.318788,-0.142992,-0.971755,-0.167211,-0.166532,-0.979711,-0.14253,-0.140897,-0.424646,0.85383,-0.301083,-0.334575,0.860474,-0.384246,0.0196065,0.892181,-0.451253,-0.0505343,0.928086,-0.368921,-0.277415,-0.952215,0.127776,-0.240324,-0.951483,0.192159,-0.679211,-0.733329,0.0300186,-0.733396,-0.674335,-0.0860385,-0.962005,0.0348152,-0.270802,-0.93444,-0.0485529,-0.352796,-0.876001,0.327307,-0.354249,-0.869254,0.334362,-0.364143,-0.731015,0.606412,-0.31286,-0.651199,0.644665,-0.400432,-0.884099,-0.461837,-0.0712457,-0.870212,-0.492386,-0.0169497,0.203328,0.84755,-0.490221,0.157578,0.892911,-0.421757,-0.82649,-0.550037,0.119888,-0.836017,-0.527521,0.150991,-0.692223,-0.706577,0.146891,-0.708857,-0.694836,0.121348,-0.946977,-0.303054,0.106737,-0.950999,-0.258741,0.169277,-0.995981,0.00661121,0.0893193,-0.982365,0.0646548,0.175436,-0.933843,0.354432,0.0481066,-0.898744,0.413084,0.147039,-0.0249259,0.9976,-0.0646053,0.016494,0.999863,0.00153432,-0.286595,0.956046,-0.0619574,-0.246341,0.969151,-0.00787431,-0.59536,0.803458,-0.00153886,-0.563388,0.824973,0.0448645,-0.779539,0.625156,0.038712,-0.753689,0.651458,0.0869207,0.145959,0.986921,0.0684345,0.103463,0.994588,-0.00947018,-0.630676,-0.764819,0.131529,-0.623645,-0.772224,0.121393,-0.498775,-0.8405,0.211621,-0.511664,-0.835533,0.200211,-0.328459,-0.922638,0.202125,-0.370191,-0.912731,0.172858,-0.500258,-0.865313,0.0312268,-0.482137,-0.876029,0.0107852,-0.387505,-0.921749,0.014793,-0.386091,-0.922362,0.0134912,-0.283703,-0.95891,0.001977,-0.299425,-0.954013,0.0142511,-0.826143,-0.550007,0.122392,-0.819068,-0.56505,0.099228,-0.663221,-0.746337,0.0558526,-0.681203,-0.726348,0.0915466,-0.948434,-0.302963,0.0931987,-0.944421,-0.323003,0.0611387,-0.776357,0.626373,0.0701821,-0.822329,0.568334,-0.027776,-0.701989,0.712186,0.00158482,-0.617866,0.774416,0.13609,0.107356,0.989022,0.101537,0.0744071,0.996775,0.0300569,-0.0170882,0.998594,0.0501866,-0.0686575,0.996766,-0.0417687,-0.558945,-0.828777,0.0266407,-0.587433,-0.806433,0.0677364,-0.99254,-0.0990007,-0.0711525,-0.998906,-0.0419235,0.020696,-0.404432,0.914553,0.0052928,-0.316554,0.938617,0.137082,-0.931039,0.355385,0.0828709,-0.961635,0.270783,-0.0439726,-0.190738,-0.977793,0.0868355,-0.15567,-0.985864,0.0619563,-0.0675053,-0.997595,-0.0157123,-0.0668875,-0.997631,-0.0160711,-0.524802,-0.850034,0.045005,-0.502742,-0.864206,0.0199657,0.170482,-0.78577,0.59456,0.102411,-0.819591,0.563722,0.0962001,-0.852786,0.513324,0.113408,-0.858814,0.499577,-0.909111,0.415394,-0.0310558,-0.884246,0.214657,-0.414767,0.203942,0.869715,-0.449448,0.244038,0.83358,-0.495571,-0.231803,0.479213,0.846536,-0.33319,0.576274,0.746253,-0.0185073,0.648077,0.76135,-0.217833,0.755153,0.618298,-0.441026,0.213581,0.87171,-0.432325,0.201897,0.878824,-0.346169,-0.149746,0.926144,-0.439257,-0.190847,0.877856,-0.340684,0.162165,0.926087,-0.381223,0.154318,0.911512,-0.256038,0.54295,0.799781,-0.218068,0.551987,0.804834,-0.238796,-0.312517,0.919407,-0.358018,-0.422299,0.832759,-0.165319,-0.736124,0.656347,-0.20025,-0.741518,0.640352,-0.254962,-0.641159,0.723816,-0.341899,-0.641086,0.687106,-0.18135,-0.431478,0.883708,-0.230553,-0.42959,0.873096,-0.189344,0.784949,0.589919,-0.2181,0.759842,0.612431,-0.17827,0.76376,0.620395,-0.167241,0.757671,0.630845,-0.0206373,0.805604,0.592095,-0.0672899,0.830669,0.552685,0.0204118,-0.841533,0.53982,-0.0315533,-0.790725,0.611358,0.0633782,-0.843188,0.53387,0.135082,-0.879084,0.457126,0.155938,-0.876411,0.455616,0.219949,-0.888972,0.401686,0.0284333,0.848628,0.528226,0.0502123,0.834764,0.548314,-0.192087,-0.415903,0.888891,-0.19578,-0.415616,0.888219,-0.238793,-0.553636,0.797788,-0.334181,-0.541759,0.771246,-0.285078,-0.583139,0.76071,-0.341373,-0.578338,0.740939,-0.327867,-0.469212,0.819965,-0.175367,-0.485098,0.856695,0.117401,-0.914127,0.388059,0.0916635,-0.908379,0.407976,-0.800562,-0.177419,-0.572383,-0.838581,-0.0994057,-0.535631,-0.20558,-0.9357,-0.28671,-0.180536,-0.936306,-0.301226,-0.797545,-0.507767,0.325722,-0.78643,-0.583635,0.202233,-0.433557,-0.893333,-0.118252,-0.355256,-0.909579,-0.215545,-0.491628,-0.870797,-0.00391226,-0.43123,-0.894484,-0.118068,-0.334028,-0.917751,-0.214843,-0.263798,-0.924376,-0.275571,-0.28217,-0.948911,-0.141239,-0.361093,-0.929562,-0.074338,-0.197907,-0.977087,-0.0783136,-0.146245,-0.983048,-0.110589,-0.404137,-0.91152,-0.0761812,-0.461967,-0.886847,-0.00946497,-0.897794,-0.439155,0.0332987,-0.910494,-0.396699,0.116749,-0.497682,-0.86726,-0.0131564,-0.530279,-0.84688,0.0399779,-0.521827,0.840363,0.146587,-0.425725,0.85417,0.298585,-0.924934,-0.252687,0.283983,-0.924185,-0.306883,0.227389,0.11872,0.947471,0.296993,0.11287,0.950458,0.289639,0.0800818,0.978576,0.189675,0.0844268,0.977407,0.19377,0.0861226,0.970534,0.225049,0.114622,0.957999,0.262867,-0.971401,0.214755,0.101289,-0.943375,0.281525,0.175463,-0.848094,0.504193,0.162869,-0.93109,0.363841,-0.0262726,-0.667376,0.710674,0.222601,-0.758433,0.646715,0.0808656,-0.854846,0.507954,0.105929,-0.79076,0.57005,0.223029,-0.655264,-0.711402,0.254042,-0.630121,-0.769732,0.102272,-0.764205,-0.643905,0.0371149,-0.782742,-0.61202,0.112901,-0.544364,-0.829872,0.122393,-0.502883,-0.864336,-0.00557881,-0.602063,-0.798019,0.0261835,-0.62653,-0.774713,0.0853264,-0.971222,-0.236351,0.0294282,-0.977731,-0.179491,0.108741,-0.981296,0.179609,0.0692722,-0.994961,0.0525659,-0.0853784,-0.984457,-0.0386506,0.171318,-0.979328,-0.00406879,0.202237,-0.496391,0.818644,0.288822,-0.572714,0.802351,0.168022,-0.208376,0.948494,0.238617,-0.140061,0.932611,0.332594,-0.15654,0.959814,0.232923,-0.100627,0.944271,0.31341,-0.205188,-0.931372,-0.300739,-0.243389,-0.92999,-0.275462,-0.189474,-0.964468,-0.184121,-0.253357,-0.95704,-0.141015,-0.0621396,-0.991007,-0.118503,-0.0752767,-0.99092,-0.111405,0.159746,0.942903,0.292258,0.252468,0.949729,0.185133,-0.10654,-0.951162,-0.289726,-0.153597,-0.952014,-0.264722,-0.387816,-0.921632,0.0139002,-0.338935,-0.940344,-0.0296089,-0.141275,-0.969639,-0.199604,-0.167403,-0.968494,-0.184376,-0.473305,-0.880158,0.0360994,-0.451442,-0.89223,0.0112317,-0.942743,-0.333202,-0.0145713,-0.933385,-0.354437,-0.0562799,-0.550464,-0.833198,0.0526448,-0.535167,-0.844222,0.0297478,-0.369632,0.896354,0.244791,-0.459122,0.882073,0.10561,0.150117,0.975955,0.158043,0.100284,0.969645,0.223006,-0.964951,0.261413,0.0230822,-0.90622,0.384695,0.175428,-0.815638,0.571403,0.090736,-0.728966,0.641699,0.238392,-0.821489,-0.569409,0.0304869,-0.813833,-0.581065,0.00629709,-0.661425,-0.747432,0.0621467,-0.647831,-0.761029,0.0339104,-0.994625,-0.103402,-0.00533941,-0.982189,-0.161971,-0.095233,-0.999594,-0.0219238,0.0182216,-0.989981,0.0702386,0.122492,-0.0593493,0.959569,0.275146,-0.12477,0.976005,0.178458,-0.29321,-0.955592,-0.0295303,-0.227094,-0.970753,-0.0778859,-0.0712621,-0.977074,-0.200618,-0.0898286,-0.977435,-0.191185,-0.961546,-0.271036,0.0443627,-0.968361,-0.247476,0.0321288,-0.941214,-0.32382,0.0962173,-0.959619,-0.274257,0.0625667,-0.989433,0.118671,0.0833008,-0.989072,0.123657,0.0802829,-0.988363,0.0671403,0.136492,-0.990168,0.118751,0.0739319,-0.795394,-0.605961,-0.012643,-0.804565,-0.593859,0.00275177,-0.966215,-0.257598,0.00844121,-0.969766,-0.244037,0.000860345,-0.806265,-0.588855,-0.0564554,-0.811193,-0.582731,-0.048901,-0.770428,-0.636904,0.0281816,-0.762156,-0.647349,0.00755141,-0.464637,-0.885433,-0.0109754,-0.454059,-0.890132,-0.0386628,-0.78067,-0.6224,0.0563185,-0.769475,-0.637887,0.031748,-0.475743,-0.879401,0.0179551,-0.462146,-0.88678,-0.00651045,-0.104895,-0.993331,-0.047856,-0.109727,-0.99336,0.0345854,-0.094072,-0.994656,-0.0425397,-0.0898793,-0.994356,-0.0563687,-0.47454,-0.873953,0.104963,-0.5022,-0.817924,0.280706,-0.896459,-0.306504,0.320025,-0.896186,-0.318802,0.308571,-0.977244,0.0300936,0.209975,-0.98846,-0.0427416,0.145326,-0.989546,0.0410059,0.138265,-0.98292,0.0207014,0.182868,-0.994325,0.0567736,0.0899731,-0.987933,-0.00147174,0.154878,-0.95319,0.231168,0.194909,-0.95884,0.254741,0.125433,-0.917954,0.396685,0.00115234,-0.931793,0.341992,0.121668,0.459523,-0.21706,-0.861234,-0.316753,-0.358996,-0.877946,0.47458,-0.0558228,-0.878441,0.516784,-0.101235,-0.850109,0.70636,-0.641058,-0.300167,0.589617,-0.793337,-0.15155,0.447855,-0.874061,-0.188265,0.341719,-0.937654,-0.063507,0.80182,-0.551258,-0.230648,0.747541,-0.64778,-0.146847,0.554091,-0.804222,-0.214966,0.470173,-0.875308,-0.113019,0.549103,-0.788951,-0.275757,0.424392,-0.90051,-0.0947251,0.320766,-0.940222,-0.114423,0.2664,-0.963495,-0.0266265,0.856099,-0.471336,-0.211985,0.889539,-0.364543,-0.275368,0.977719,-0.158306,-0.137861,0.980908,-0.0875292,-0.173664,0.70235,-0.68177,-0.204682,0.809564,-0.448078,-0.379252,0.943099,-0.130288,-0.305922,0.941069,-0.255741,-0.221326,-0.226453,-0.914332,-0.335732,-0.304563,-0.910526,-0.279613,-0.321322,-0.886165,-0.333863,-0.270635,-0.885552,-0.377564,-0.343397,-0.86881,-0.356718,-0.402427,-0.874051,-0.272189,-0.394468,-0.793822,-0.462862,-0.441849,-0.814125,-0.376789,0.983622,0.0312991,-0.177507,0.949142,0.126124,-0.288484,0.996877,0.0715505,-0.0334199,0.964883,0.247015,-0.0893592,0.497287,0.828754,-0.256656,0.557365,0.734155,-0.387765,0.0755145,0.953402,-0.2921,-0.0123361,0.985101,-0.171536,-0.779946,0.619373,0.0897812,-0.70066,0.712463,-0.0383629,-0.809611,0.566681,-0.152981,-0.843307,0.536812,0.0258172,-0.545543,0.771493,-0.327386,-0.608779,0.782403,-0.131273,0.346734,0.62558,-0.698874,0.204,0.855612,-0.475723,-0.062263,0.846174,-0.529257,-0.161815,0.936276,-0.311774,-0.269976,0.962855,-0.00482005,-0.235721,0.969267,-0.0704109,0.209456,0.87705,-0.432334,0.118636,0.940851,-0.317372,0.110461,0.993135,0.0384864,0.100213,0.993459,0.0547377,-0.256452,0.946523,0.19577,-0.269398,0.946455,0.177897,0.108224,0.982689,0.150368,0.0975223,0.980818,0.168779,0.104065,0.963935,0.244947,0.109038,0.961834,0.250971,-0.682375,0.728088,0.0652159,-0.665592,0.746276,0.00773652,-0.96971,0.216381,0.113318,-0.978968,0.187654,0.0800469,-0.841211,0.508313,0.184345,-0.896471,0.438448,0.064063,-0.964519,0.221189,0.144145,-0.960931,0.206472,0.18434,-0.894642,0.439327,0.0812813,-0.900238,0.40474,0.16049,-0.904453,0.410945,0.114406,-0.881763,0.466737,0.0681958,0.0866055,-0.990955,-0.102503,0.0847984,-0.995273,-0.0473389,-0.371141,-0.899018,-0.232423,-0.298126,-0.889811,-0.345481,-0.304253,-0.87452,-0.377683,-0.333654,-0.876742,-0.346409,0.156757,-0.974174,-0.16252,0.153624,-0.98338,-0.0967691,-0.114211,-0.944265,-0.308738,-0.142893,-0.971839,-0.187377,0.119708,-0.990976,-0.060305,0.155426,-0.95773,-0.242067,0.248713,-0.966779,-0.0589859,0.245509,-0.968131,-0.0494662,0.130084,-0.990321,-0.0484087,0.133259,-0.989264,-0.059989,0.163731,-0.985989,-0.0319141,0.153317,-0.988087,-0.0133729,0.119436,-0.977983,-0.171124,0.160171,-0.966771,-0.199246,0.132457,-0.977391,-0.16481,0.161974,-0.969967,-0.181464,-0.520681,-0.839801,-0.153706,-0.525084,-0.837789,-0.149656,-0.525644,-0.836415,-0.155266,-0.519233,-0.839279,-0.161266,0.994637,-0.0911414,0.0488878,0.990294,-0.122295,0.0660433,0.922895,-0.381695,0.0507316,0.931427,-0.361728,0.0399535,0.733885,-0.67924,-0.0067112,0.703253,-0.710794,0.0143876,-0.841286,0.535907,-0.0710086,-0.860882,0.499131,-0.0987476,-0.820122,0.555859,-0.135724,-0.849735,0.497807,-0.173605,-0.553297,0.832979,-0.00294254,-0.48371,0.873995,-0.0464545,-0.2876,0.948808,-0.130575,-0.201052,0.964839,-0.169302,-0.81851,0.546403,-0.177443,-0.781945,0.591783,-0.195842,-0.287493,0.948201,-0.135135,-0.431613,0.897571,-0.0898675,-0.199806,0.97229,-0.121365,-0.12218,0.978231,-0.167738,-0.962147,0.237075,-0.134421,-0.957081,0.252349,-0.142535,-0.806831,-0.586118,-0.0740973,-0.795428,-0.599486,-0.0889383,-0.533185,-0.840687,-0.0946496,-0.529215,-0.842654,-0.0993204,-0.532198,-0.838229,-0.118899,-0.508772,-0.849358,-0.140505,-0.960824,-0.275248,-0.0324872,-0.966707,-0.255475,-0.0145323,-0.473316,-0.85873,-0.196353,-0.511209,-0.843921,-0.162675,-0.154901,-0.976432,-0.150284,-0.124266,-0.976877,-0.173979,-0.0775453,-0.96722,-0.241809,-0.129822,-0.970698,-0.202215,0.215247,-0.963904,-0.156708,0.283623,-0.93637,-0.206806,0.323394,-0.9131,-0.248325,0.281171,-0.934788,-0.217059,0.670109,-0.704357,-0.234169,0.624042,-0.75712,-0.193238,0.729948,-0.64075,-0.237941,0.678786,-0.708711,-0.192297,0.882918,-0.420767,-0.208352,0.852124,-0.496395,-0.165761,0.918048,-0.341323,-0.201709,0.89159,-0.423859,-0.159407,0.789912,-0.578184,-0.204311,0.74455,-0.648001,-0.160437,0.395182,-0.881452,-0.258599,0.361664,-0.902425,-0.234153,0.354461,-0.895165,-0.270254,0.323428,-0.913131,-0.248167,-0.0646836,-0.95536,-0.288275,-0.0577157,-0.954311,-0.293188,-0.0570883,-0.955681,-0.288817,-0.081977,-0.959069,-0.271046,-0.384977,-0.869455,-0.309582,-0.418483,-0.862505,-0.284531,-0.418279,-0.864567,-0.278506,-0.475727,-0.848489,-0.231843,-0.0642545,-0.956203,-0.285564,-0.0726348,-0.957454,-0.279295,-0.380624,-0.872756,-0.30565,-0.38472,-0.872004,-0.302653,-0.0327177,-0.957654,-0.286058,-0.0681146,-0.964289,-0.255943,-0.3778,-0.884637,-0.273283,-0.378442,-0.884512,-0.2728,-0.589383,-0.755176,-0.286944,-0.610554,-0.744017,-0.271407,-0.22339,-0.941486,-0.252391,-0.365243,-0.917728,-0.156117,-0.658085,-0.731772,-0.177299,-0.59505,-0.770735,-0.22778,0.403717,-0.888895,-0.216512,0.445394,-0.859475,-0.250853,0.448835,-0.861696,-0.236702,0.511424,-0.803546,-0.304566,0.853701,-0.449842,-0.262367,0.827734,-0.517829,-0.216124,0.834442,-0.519758,-0.183187,0.800312,-0.582246,-0.143148,-0.606751,-0.731595,-0.31084,-0.643762,-0.711656,-0.281276,-0.864996,-0.417318,-0.278618,-0.905843,-0.360697,-0.222138,-0.833362,-0.473034,-0.285913,-0.872378,-0.424815,-0.241844,0.930727,-0.345473,-0.119978,0.951581,-0.261905,-0.160931,0.970419,-0.208225,-0.122187,0.959803,-0.264436,-0.0940839,0.984515,-0.131546,-0.115868,0.986518,-0.0418804,-0.158203,0.994757,0.0196645,-0.100357,0.996522,-0.0478159,-0.0682451,0.978032,0.193575,-0.0773389,0.943036,0.305432,-0.131884,0.987725,0.109888,-0.111009,0.967585,0.199821,-0.154437,0.966661,-0.204377,-0.154258,0.97316,-0.126688,-0.192117,0.983785,0.11244,-0.139731,0.993252,0.0457109,-0.106592,0.96022,-0.201477,-0.193349,0.94992,-0.269506,-0.158173,0.995038,0.0439499,-0.0892576,0.997848,-0.0231682,-0.0613382,0.952376,-0.27044,-0.140862,0.941841,-0.31345,-0.121183,0.994229,0.0142987,-0.10632,0.993801,0.0203693,-0.109289,0.869921,0.492425,0.0274818,0.903593,0.422114,-0.0730758,0.902624,0.422908,-0.0801219,0.955933,0.293372,-0.0112143,0.961891,-0.204969,-0.180976,0.961776,-0.20598,-0.180443,0.849524,-0.495503,-0.181066,0.818082,-0.556138,-0.146463,0.913608,-0.381246,-0.141325,0.93363,-0.301552,-0.193394,0.794269,0.60754,0.00568652,0.843303,0.525387,-0.113173,0.857848,0.513686,0.0149441,0.888588,0.452396,-0.0758199,0.755332,-0.555548,-0.347621,0.684333,-0.690687,-0.233753,0.851584,-0.513477,-0.105572,0.790704,-0.572924,-0.215743,0.885613,-0.434265,-0.164631,0.902306,-0.363115,-0.232361,0.849429,-0.431636,-0.30358,0.8486,-0.436157,-0.299408,0.295178,-0.945681,-0.136224,0.488734,-0.819874,-0.298237,-0.216817,-0.965489,-0.144296,-0.132202,-0.970029,-0.203878,-0.660666,-0.741206,-0.11889,-0.604177,-0.777926,-0.172632,-0.893886,-0.420051,-0.156607,-0.870255,-0.48003,-0.11058,-0.854834,-0.462963,-0.234361,-0.847869,-0.481991,-0.220911,-0.937034,-0.320554,-0.138608,-0.93918,-0.311144,-0.145359,-0.995588,0.0135736,-0.0928448,-0.996829,-0.00757155,-0.0792088,-0.94145,-0.327332,-0.0807859,-0.935992,-0.345866,-0.0655508,-0.999968,0.00489814,0.00626179,-0.999452,0.0302254,-0.0135299,-0.89251,-0.417959,-0.16952,-0.862999,-0.494383,-0.104011,-0.898052,-0.408205,-0.163925,-0.935904,-0.34555,-0.068395,-0.99792,-0.0362474,0.0533146,-0.999605,0.0280708,0.00123059,-0.984079,-0.145401,0.102207,-0.999408,-0.0310427,0.0148375,-0.851707,-0.515043,-0.0965715,-0.891001,-0.402296,-0.210417,-0.131317,-0.949295,-0.285647,-0.0634651,-0.939081,-0.337784,-0.0636356,-0.940367,-0.334157,-0.0227265,-0.954716,-0.296648,-0.591907,-0.752387,-0.289068,-0.521119,-0.828814,-0.20372,-0.511508,-0.812222,-0.280454,-0.533135,-0.788796,-0.30589,0.0700679,-0.832957,-0.548884,0.0960391,-0.844114,-0.527492,0.132815,-0.945401,-0.297619,0.0675477,-0.931544,-0.357299,-0.545073,-0.797955,-0.257223,-0.507918,-0.829862,-0.230972,0.548588,-0.762411,-0.343193,0.478195,-0.834913,-0.272489,0.945696,-0.259248,-0.196087,0.943257,-0.158384,-0.291856,0.931478,-0.266786,-0.247333,0.931072,-0.262355,-0.253527,0.948645,0.156367,-0.274994,0.975079,0.0764914,-0.208257,0.97016,0.0762013,-0.230178,0.980523,0.0394583,-0.1924,0.961967,0.154407,-0.22534,0.961866,0.154758,-0.225529,0.823193,0.563269,-0.0712851,0.808796,0.582306,-0.0822653,0.833231,0.552431,0.0233513,0.876323,0.479578,0.0454174,0.944963,-0.158474,-0.286236,0.937986,-0.0875097,-0.335445,0.972512,-0.136457,-0.188679,0.97244,-0.094257,-0.213252,0.900954,-0.320653,-0.292342,0.903253,-0.288651,-0.317513,0.920501,-0.367295,-0.13331,0.930123,-0.335075,-0.150322,0.988602,-0.146937,-0.0327987,0.982521,-0.1857,-0.0129721,0.92306,-0.379417,-0.0632752,0.87313,-0.487117,-0.0190073,0.974448,-0.212158,0.0737527,0.979817,-0.189214,0.0644697,0.860562,0.460712,0.217204,0.883374,0.409427,0.22808,0.87362,0.406002,0.268236,0.846216,0.470094,0.250858,0.571048,0.686279,0.450473,0.505696,0.750584,0.425317,0.507868,0.75329,0.417881,0.407319,0.831113,0.378605,0.054705,0.873126,0.484416,0.144619,0.839118,0.524373,0.204327,0.826126,0.525135,0.145506,0.854114,0.499316,0.5008,0.796686,0.338365,0.588187,0.713423,0.380872,0.193322,0.921667,0.336387,0.230178,0.927389,0.294904,0.0796187,0.989806,0.118086,0.212053,0.956384,0.200906,0.893171,0.448029,-0.0389292,0.941136,0.337954,0.00709155,0.568044,0.821842,0.0436021,0.613366,0.78636,0.0736207,0.981294,0.192392,-0.00685334,0.931365,0.354821,-0.0816147,0.609398,0.792276,0.0305516,0.644383,0.762155,0.0623727,-0.0168229,0.998589,0.050369,0.0395832,0.999139,-0.0124333,-0.209229,0.974456,0.0815956,-0.17922,0.982389,0.0528394,-0.144644,0.962666,0.228805,-0.130068,0.968017,0.214537,-0.50253,0.846284,0.176827,-0.524133,0.828188,0.198469,-0.4806,0.746687,0.459873,-0.650419,0.693756,0.309285,-0.826117,0.545438,0.141518,-0.874282,0.421848,0.240156,-0.89762,0.257678,0.357604,-0.872913,0.420097,0.248075,-0.604072,0.650013,0.461064,-0.604109,0.649943,0.461114,-0.921762,0.279187,0.26909,-0.92494,0.243849,0.291589,-0.985464,-0.144048,0.0900658,-0.975972,-0.184205,0.116395,-0.648693,0.675325,0.350904,-0.683614,0.607174,0.404984,-0.852177,-0.515966,-0.0870283,-0.838214,-0.541046,-0.0683138,-0.838985,-0.535742,-0.0953146,-0.811241,-0.580863,-0.066973,-0.98391,-0.175336,0.0343281,-0.970746,-0.2311,0.0651492,-0.823836,0.541467,0.167652,-0.82112,0.546873,0.163376,-0.72448,0.627682,0.284857,-0.760181,0.55902,0.331091,-0.952283,0.25298,0.170759,-0.960022,0.189214,0.206292,-0.847118,0.496659,0.189,-0.8019,0.57998,0.143457,-0.988643,0.138347,0.0586989,-0.979841,0.197416,0.0306528,0.415566,0.842618,0.342489,0.34603,0.885657,0.309637,0.843414,0.469295,0.261562,0.794249,0.564072,0.225813,0.799515,0.600136,-0.0247329,0.766175,0.640335,-0.0542847,0.746749,0.65556,-0.112285,0.781144,0.604601,-0.155794,0.984149,0.157149,-0.0821913,0.985804,0.134609,-0.100351,0.975107,0.183505,-0.12447,0.973497,0.19736,-0.115554,0.355773,0.910386,0.211239,0.299307,0.936677,0.181802,0.291372,0.956607,0.00242567,0.290482,0.956875,0.00310761,-0.068028,0.972727,0.221753,-0.0651364,0.973439,0.219485,-0.112039,0.993607,0.0138804,-0.099939,0.994977,0.00574101,0.229009,0.967269,-0.109296,0.276252,0.950358,-0.143193,0.984389,-0.175986,-0.00261917,0.97816,-0.20758,0.0106706,0.985393,0.0632791,0.158101,0.983554,0.114101,0.140007,0.988594,0.142686,0.0482048,0.9915,0.116111,0.0586988,0.130653,-0.968516,-0.21191,0.129871,-0.968727,-0.211426,0.757385,-0.641673,-0.12093,0.742557,-0.655185,-0.139072,0.728013,-0.679829,-0.0884882,0.7571,-0.644824,-0.104888,0.736703,-0.675709,-0.026206,0.733459,-0.679301,-0.0242483,0.93119,-0.364529,-0.00203139,0.926534,-0.37612,-0.00824149,0.116261,-0.989072,-0.090668,0.0430466,-0.997123,-0.0623954,0.735834,-0.67354,-0.0699428,0.72731,-0.681875,-0.0778909,0.114572,-0.987863,-0.104882,0.115558,-0.98769,-0.105425,-0.574569,-0.810815,-0.111583,-0.525545,-0.839934,-0.135326,0.980081,-0.158113,-0.120171,0.9762,-0.172116,-0.131948,0.992385,-0.123169,0.00136049,0.984789,-0.172176,-0.0233646,0.729229,0.674709,-0.113988,0.744776,0.655042,-0.127392,0.769868,0.637643,-0.026728,0.731696,0.679663,-0.0517682,0.782341,0.622772,-0.00988336,0.769831,0.637893,-0.0212692,0.950044,0.312108,0.00218329,0.970729,0.234403,0.0523546,-0.812586,-0.5693,-0.124911,-0.808062,-0.574492,-0.130362,-0.818967,-0.553994,-0.149612,-0.824741,-0.546908,-0.143857,-0.967792,-0.223641,-0.115601,-0.96897,-0.216033,-0.120116,-0.966079,-0.212031,-0.147428,-0.972697,-0.191765,-0.130717,-0.861768,-0.490485,-0.129535,-0.843704,-0.516787,-0.145243,-0.968644,-0.209036,-0.134288,-0.970898,-0.192004,-0.143149,-0.953243,0.232411,-0.193166,-0.966437,0.188971,-0.174039,-0.967689,-0.192556,-0.162792,-0.968824,-0.182849,-0.167171,0.0987013,0.99188,0.0802045,0.0862512,0.991806,0.0942421,0.0898198,0.98885,0.118782,0.0849992,0.988669,0.123729,-0.371729,0.915493,0.153919,-0.354382,0.925109,0.13633,-0.358639,0.927718,0.103528,-0.369091,0.92215,0.115805,-0.414111,0.901444,0.126137,-0.383046,0.919518,0.0881055,-0.703486,0.703565,0.10052,-0.683822,0.725885,0.0740232,-0.673436,0.725259,0.143118,-0.658148,0.742569,0.124224,-0.741725,0.668146,0.0585244,-0.71165,0.7023,0.0181368,-0.45253,0.888868,0.0716223,-0.426783,0.903464,0.0401226,-0.763867,0.644939,0.0236881,-0.745455,0.666554,-0.00161582,-0.95802,0.286594,-0.00784683,-0.925013,0.372046,-0.0770242,-0.92771,0.373208,0.00833458,-0.903448,0.427175,-0.0360875,-0.0788361,0.991305,0.105355,0.00133037,0.999978,0.00656383,0.0202058,0.990757,0.134133,0.0760829,0.994972,0.065125,-0.162736,0.986137,0.0324097,-0.10065,0.993951,-0.0439448,0.191739,0.968152,0.160989,0.38891,0.915645,-0.1017,0.412966,0.907539,0.0763638,0.488642,0.871875,-0.0325905,-0.204648,0.978358,-0.0305794,-0.175277,0.982426,-0.0641616,0.150264,0.983735,-0.0984183,0.0315473,0.998811,0.0371685,-0.228916,0.973119,-0.0252371,-0.207387,0.977033,-0.0489641,0.0113643,0.998319,-0.0568318,-0.0345094,0.999393,-0.00467847,-0.981678,0.189003,-0.0242219,-0.95259,0.286976,-0.101079,-0.773524,0.633759,-0.0031181,-0.765075,0.643776,-0.0145605,-0.996105,0.0635841,-0.0610814,-0.996123,0.0608176,-0.0635574,-0.936714,-0.325308,-0.129388,-0.952963,-0.28815,-0.0939724,-0.998153,0.060307,-0.00736977,-0.998257,0.0586743,-0.00634422,-0.960714,-0.273955,-0.0444721,-0.954389,-0.292182,-0.0614157,-0.989685,0.0149367,-0.142477,-0.993154,0.065502,-0.0967198,-0.906948,-0.361969,-0.215463,-0.932113,-0.318591,-0.172232,-0.994438,0.101541,0.0279729,-0.996829,0.0588838,0.0535258,-0.760919,-0.63382,-0.138832,-0.795563,-0.598176,-0.0962554,-0.700322,-0.678809,-0.220833,-0.760768,-0.629796,-0.156808,-0.972976,0.192006,-0.128267,-0.991323,0.112201,-0.0684813,-0.773347,0.632353,-0.045435,-0.77693,0.628253,-0.040975,-0.998882,-0.0125986,-0.0455549,-0.983262,0.117226,-0.139477,-0.777097,0.628358,-0.0358754,-0.795241,0.606176,-0.0119112,-0.823737,0.558099,0.0999179,-0.796461,0.601158,0.0652603,-0.662887,-0.702518,0.258939,-0.682752,-0.616055,0.392843,-0.254341,0.943435,0.2127,-0.201668,0.937443,0.283777,-0.558738,0.790124,0.252025,-0.626362,0.766549,0.14168,-0.876348,0.467777,0.114885,-0.874732,0.471573,0.111637,-0.66037,0.742936,0.109354,-0.678845,0.721833,0.134636,-0.0913579,-0.995804,-0.00520608,-0.0808418,-0.996443,-0.023792,-0.515909,-0.856045,-0.031996,-0.503779,-0.862532,-0.0473892,-0.130156,-0.990271,-0.0492312,-0.121056,-0.990843,-0.0597903,0.181963,-0.980153,-0.0786726,0.155649,-0.986656,-0.047782,0.215793,-0.964119,-0.154621,0.17152,-0.979405,-0.106519,-0.983227,0.148497,-0.105892,-0.981968,0.154217,-0.109344,-0.971896,-0.230677,-0.0469656,-0.974426,-0.218353,-0.0530684,0.228636,-0.885342,-0.404839,-0.0167972,-0.974934,-0.221858,0.498653,-0.797313,-0.340055,0.600358,-0.647838,-0.468909,0.814475,-0.439043,-0.379304,0.815842,-0.431831,-0.384608,0.824839,0.564376,0.0334767,0.861728,0.50509,-0.0480558,0.987172,0.0382828,-0.155,0.988992,0.0172786,-0.146957,0.688411,0.712363,-0.136491,0.549376,0.831206,0.0853383,0.521203,0.848312,-0.0933523,0.369557,0.924342,0.0949744,0.341008,0.939458,-0.0336603,0.273557,0.9607,0.0471328,-0.961923,-0.227803,-0.151027,-0.926221,-0.303598,-0.223477,-0.793146,-0.546337,-0.269139,-0.856226,-0.486264,-0.174425,0.831965,-0.467057,-0.299486,0.820771,-0.504369,-0.268228,0.810141,0.581365,-0.0754132,0.807594,0.585951,-0.0667326,0.325763,0.944776,0.035723,0.294364,0.951089,0.0937052,0.503703,0.824685,0.25725,0.355284,0.921399,0.157475,0.989432,0.133737,-0.0560344,0.997152,0.0685274,-0.0314949,-0.118399,0.953134,0.278418,-0.173614,0.926709,0.333268,-0.261086,0.845888,0.465089,-0.132286,0.832284,0.538334,-0.517926,0.819652,0.24479,-0.529663,0.808095,0.257759,-0.452405,0.89174,0.011356,-0.511738,0.856509,0.0672071,-0.448633,0.861821,0.23663,-0.447009,0.863031,0.235288,-0.318927,0.856825,0.405137,-0.361977,0.818557,0.446024,-0.251439,0.822665,0.509903,-0.298638,0.822706,0.483705,-0.387111,0.850738,0.355514,-0.412986,0.828389,0.378437,0.0573051,0.888371,0.455536,-0.0301737,0.908947,0.415819,-0.455093,0.889819,-0.0333478,-0.453075,0.890772,-0.0353379,0.97954,-0.164367,-0.116128,0.980137,-0.158193,-0.119611,0.885538,-0.448699,-0.120383,0.865065,-0.478961,-0.149191,-0.612035,-0.783712,-0.105873,-0.573197,-0.80957,-0.126654,-0.877014,0.471627,0.0917299,-0.886555,0.449454,0.109595,-0.465856,0.884808,0.00963899,-0.460745,0.887525,0.00351143,-0.97333,-0.0923462,-0.210002,-0.993151,0.0127883,-0.116133,-0.893558,0.427547,0.136958,-0.889046,0.453036,0.065994,-0.34833,-0.883404,-0.313471,-0.163267,-0.694447,-0.700776,0.495062,-0.828443,-0.261907,0.480859,-0.840948,-0.248157,0.932617,0.29958,-0.201191,0.930615,0.216801,-0.294879,0.991635,-0.10762,-0.0712605,0.991162,-0.0123375,-0.132082,-0.616686,0.759259,0.207906,-0.664503,0.736658,0.125584,-0.943035,-0.323553,0.0774438,-0.939223,-0.332795,0.0843042,-0.155169,-0.981147,-0.115214,-0.148039,-0.981329,-0.12279,-0.976748,0.157073,-0.145919,-0.975781,0.171474,-0.135826,-0.990508,0.124011,0.0592903,-0.99223,0.0994905,0.0747041,0.620529,-0.755836,-0.208939,0.566452,-0.807431,-0.164888,-0.6435,-0.710804,-0.284015,-0.699531,-0.675346,-0.23359,0.93155,-0.200929,-0.303054,0.928043,-0.268465,-0.25819,0.653598,-0.683402,-0.325224,0.744475,-0.642298,-0.182237,0.891954,-0.361909,-0.270997,0.898628,-0.287616,-0.331279,0.99329,0.0481087,0.105172,0.993003,0.062513,0.100185,-0.506264,-0.842046,-0.186159,-0.519938,-0.836925,-0.170942,0.806885,0.570913,0.15164,0.76916,0.626843,0.124337,-0.0521921,0.93296,0.356176,-0.0314598,0.929999,0.366214,0.226516,0.964339,-0.136895,0.175619,0.978103,-0.111681,0.8678,-0.494953,-0.0441025,0.874523,-0.482445,-0.0495536,0.709506,-0.688583,-0.149853,0.725929,-0.668175,-0.163002,0.884206,-0.445832,-0.139332,0.907081,-0.407827,-0.104315,-0.526889,-0.839514,-0.132677,-0.525557,-0.840207,-0.133574,-0.808047,-0.57679,-0.119887,-0.813021,-0.571205,-0.112788,-0.844257,-0.516761,-0.142084,-0.823429,-0.545343,-0.156732,0.042807,-0.996097,-0.0771943,-0.0142203,-0.998442,-0.0539533,-0.901558,0.42872,0.0582405,-0.892599,0.448917,0.0417232,0.780864,0.615129,-0.10894,0.712824,0.700428,0.0358185,0.563655,0.825972,0.00800478,0.502608,0.858508,0.101726,-0.45497,0.889956,-0.0313334,-0.468228,0.883453,-0.0165398,-0.984812,-0.100158,-0.141824,-0.946693,-0.212474,-0.242129,-0.366477,-0.928233,-0.0638554,-0.409113,-0.905534,0.112402,-0.321242,-0.918829,-0.229254,-0.3863,-0.920015,-0.0659146,-0.411774,-0.911063,0.0201323,-0.411573,-0.911215,0.017179,-0.216631,-0.972884,-0.0810361,-0.239031,-0.968066,0.0755862,-0.0793197,-0.995884,-0.0438551,-0.0803872,-0.996559,-0.0202155,-0.987835,0.0431758,0.149391,-0.981865,0.0258036,0.187815,-0.920202,-0.317148,0.229446,-0.919717,-0.323741,0.222065,-0.985647,0.00188641,0.168809,-0.989343,0.0126874,0.145052,-0.954493,0.26,0.146091,-0.944604,0.326053,0.0375904,-0.331681,-0.306321,-0.892275,-0.550664,-0.496626,-0.670918,-0.438603,-0.842607,-0.312476,-0.410058,-0.828978,-0.380327,-0.343907,-0.911328,-0.226296,-0.302128,-0.912734,-0.275017,-0.243587,0.952967,-0.180331,-0.161555,0.937357,-0.308644,0.132121,0.985081,-0.110266,0.10245,0.992472,-0.0671096,-0.278399,0.955821,0.0943427,-0.263719,0.962497,0.0636499,-0.672182,0.738376,-0.0545156,-0.613512,0.76612,-0.191476,-0.973371,0.195872,0.119091,-0.973123,0.193866,0.12429,-0.903433,0.403915,0.143743,-0.901023,0.422861,0.0966723,-0.130823,-0.959182,-0.25071,-0.161778,-0.983796,-0.0772894,-0.157215,-0.915137,-0.371224,-0.196172,-0.946466,-0.256356,-0.317761,-0.878506,-0.35673,-0.304462,-0.874366,-0.377871,0.283147,-0.957548,-0.0541219,0.36719,-0.901221,-0.230155,0.244812,-0.968259,-0.0504103,0.246439,-0.966899,-0.0661368,0.129147,-0.989492,-0.0650051,0.128747,-0.990048,-0.0568171,-0.889626,0.45238,0.0625932,-0.856665,0.508369,-0.0876725,0.142463,-0.936882,-0.319307,0.527654,-0.575993,-0.62435,-0.669048,0.738354,0.0849049,-0.676287,0.728194,0.111217,-0.516799,0.855845,-0.0211557,-0.402216,0.896923,-0.183716,0.483306,0.129336,-0.865845,0.51181,0.132581,-0.848807,0.992655,-0.0903456,0.0804566,0.996948,-0.0542813,0.0561011,0.91731,-0.394465,0.0542211,0.922266,-0.381084,0.0648095,0.703246,-0.710917,0.00641954,0.666866,-0.744076,0.040505,-0.961214,0.254549,-0.10617,-0.952953,0.27833,-0.120058,0.923568,0.378874,0.0589593,0.949897,0.312281,0.013262,-0.870993,-0.478079,-0.113188,-0.862517,-0.490869,-0.122927,-0.97148,-0.204185,-0.120559,-0.970775,-0.209159,-0.117675,-0.0761456,-0.994717,-0.0688494,-0.0139392,-0.999483,-0.0289698,-0.614077,-0.784944,-0.0822966,-0.650587,-0.750895,-0.113549,0.099895,0.991898,-0.0784781,0.174853,0.983381,-0.048869,-0.444434,0.892898,-0.0721863,-0.4331,0.89894,-0.0658199,-0.836818,0.531326,-0.132015,-0.822999,0.550087,-0.141689,0.0997431,0.992182,-0.0750014,0.241115,0.970497,7.99711e-005,0.790895,0.611943,-0.00326681,0.78221,0.623001,0.0041606,-0.452369,0.889886,-0.0588714,-0.445095,0.893858,-0.0539272,-0.83986,0.534861,-0.0925176,-0.857002,0.502822,-0.112772,0.2418,0.969403,-0.0423051,0.319923,0.947425,0.00592133,-0.198481,-0.94535,-0.258687,-0.156905,-0.9457,-0.284663,-0.203416,-0.0511758,-0.977754,0.0702691,0.135266,-0.988314,0.0488974,0.00172702,-0.998802,0.247405,0.0592195,-0.967101,-0.314346,-0.311928,-0.896598,-0.192932,-0.157223,-0.968534,0.394012,0.312401,-0.864384,0.496855,0.27538,-0.822983,0.250835,0.880854,-0.40147,0.29534,0.853166,-0.429979,0.337278,0.941252,0.0169761,0.313694,0.948732,0.0387736,0.321391,0.942496,-0.0916971,0.330242,0.938702,-0.0988876,0.296489,0.9358,0.190714,0.255058,0.937763,0.235682,0.261836,0.632849,-0.728659,0.404575,0.530241,-0.745093,0.317954,0.940906,0.116623,0.294276,0.945339,0.140482,0.276159,-0.0768012,-0.958038,0.553205,0.0485621,-0.831628,-0.938461,-0.332293,0.0941965,-0.943259,-0.322311,0.0798625,-0.39953,-0.913956,0.0711331,-0.415938,-0.891343,0.180287,-0.939192,-0.320535,0.12319,-0.939048,-0.320807,0.123577,-0.38641,-0.920888,0.0514984,-0.389184,-0.917208,0.0852369,-0.733657,-0.678941,0.0280371,-0.74056,-0.668492,0.0684774,-0.700245,-0.707552,0.0950144,-0.703081,-0.702424,0.110798,-0.674384,-0.698966,0.238018,-0.66269,-0.726361,0.182323,0.0761279,0.983207,0.165856,0.0978261,0.976756,0.190729,0.0814711,0.989209,0.121768,0.0606662,0.98799,0.142113,-0.132572,-0.804021,-0.579633,-0.224864,-0.84443,-0.486183,-0.193781,-0.952865,-0.233446,-0.167575,-0.952286,-0.25509,0.836103,-0.497388,0.231381,0.886199,-0.453362,0.0954726,0.99274,-0.062192,0.10295,0.994344,-0.0523998,0.0923781,0.989582,-0.0577804,0.13187,0.979117,0.167557,-0.11513,0.931685,-0.0768362,0.355048,0.970932,0.162693,0.175565,0.855007,-0.478945,0.198936,0.858373,-0.463705,0.219485,0.947079,-0.281637,0.154019,0.838048,-0.537333,-0.0946017,0.822944,-0.518978,0.231139,0.684323,-0.440868,0.580808,0.929823,-0.295516,0.219318,0.832611,-0.41507,0.366711,0.820122,-0.530211,0.215121,0.802064,-0.532696,0.270052,0.76778,0.557764,0.3153,0.750385,0.569312,0.335866,0.317064,0.89339,0.318316,0.298063,0.893794,0.335097,0.758579,0.59666,0.261829,0.764534,0.592736,0.253284,0.839883,0.437325,0.321471,0.95828,0.266214,0.104063,0.941623,0.216048,0.258203,0.943171,0.258448,0.208886,0.5106,-0.735152,0.445915,0.484612,-0.760509,0.432177,-0.0856038,-0.811328,0.57829,-0.0594751,-0.802317,0.593928,-0.0417273,-0.591484,0.805236,-0.140037,-0.590371,0.794891,0.349409,-0.572024,0.742092,0.125746,-0.622043,0.77282,-0.656342,-0.75247,-0.0548098,-0.659588,-0.749291,-0.0592155,-0.0782811,-0.996931,0.00125949,-0.113954,-0.992956,-0.0324588,-0.860455,-0.360955,0.359624,-0.824852,-0.365682,0.431156,-0.948299,0.275922,0.156832,-0.944156,0.305503,0.123442,-0.76435,0.616538,0.188811,-0.6797,0.732705,0.0339245,-0.956836,0.28762,-0.0416952,-0.910899,0.380353,-0.159982,-0.683452,0.72778,-0.0568307,-0.626136,0.768194,-0.133535,-0.575532,0.349093,-0.739525,-0.747819,0.263971,-0.609169,-0.55427,0.52155,-0.648668,-0.461918,0.53276,-0.709083,-0.956939,0.0385992,0.287713,-0.966349,0.128405,0.222895,-0.903915,0.199108,0.37854,-0.877285,0.081012,0.473084,-0.771348,-0.115637,0.625819,-0.861982,0.068067,0.502349,-0.909779,-0.0697692,0.409188,-0.926241,0.00498937,0.376898,-0.998903,-0.0464422,0.00606656,-0.996769,0.032808,-0.0733134,0.052066,-0.813812,0.578791,0.018994,-0.786134,0.617765,-0.637505,-0.761142,0.11937,-0.304281,-0.94677,0.105073,-0.862809,0.30972,-0.399542,-0.805759,0.355376,-0.473772,-0.926739,0.225566,0.300459,-0.926849,0.227129,0.298937,-0.88223,0.217737,-0.417446,-0.860324,0.245011,-0.447004,-0.960472,0.161645,0.226635,-0.957563,0.118889,0.26256,-0.294348,0.130788,-0.946707,-0.224232,0.162237,-0.960937,-0.808073,0.196928,-0.555192,-0.878176,0.119047,-0.463287,-0.348601,0.0863372,-0.933286,-0.286822,0.11469,-0.951094,-0.075376,0.280946,-0.956759,-0.200236,0.226581,-0.953188,0.0760717,0.254509,-0.964074,0.0123773,0.232469,-0.972525,-0.0676609,0.0772998,-0.994709,-0.0666977,0.0739551,-0.995029,-0.0496595,0.760137,-0.647862,0.0377173,0.683593,-0.728889,-0.284106,0.952254,0.11179,-0.179719,0.983679,-0.00871409,0.272535,0.959867,0.0661787,0.340181,0.940263,-0.0135146,-0.351666,0.894347,0.276542,-0.278122,0.942294,0.186361,0.977615,0.200192,-0.0647409,0.977629,0.0967472,-0.186768,0.785323,0.606395,-0.124713,0.803096,0.571913,-0.167193,0.746026,0.032775,-0.665109,0.757337,0.0546136,-0.650736,0.565212,0.446281,-0.693807,0.566932,0.388083,-0.726622,0.984078,-0.108386,-0.140865,0.948534,-0.189038,-0.254062,0.711123,-0.211953,-0.670358,0.756725,-0.171185,-0.630922,-0.339975,0.875944,0.342255,-0.320184,0.890396,0.323538,-0.0649857,0.0169161,-0.997743,-0.0780313,0.0512271,-0.995634,-0.0266292,0.419959,-0.907152,-0.112594,0.506989,-0.854567,0.34976,0.395445,-0.849289,0.400635,0.2936,-0.867923,-0.297363,-0.0485118,-0.953531,-0.34408,0.151848,-0.92658,0.196493,-0.00331262,-0.9805,0.28471,-0.152316,-0.946436,0.453346,0.321939,-0.831163,0.286619,0.286222,-0.91429,-0.140748,0.52018,-0.842379,-0.148409,0.513994,-0.844858,-0.624126,0.276452,-0.730781,-0.611852,0.329406,-0.719117,-0.657702,0.417923,-0.626713,-0.671577,0.390553,-0.629645,0.97836,-0.0119667,-0.206564,0.977282,-0.051311,-0.205638,0.551408,0.366334,-0.749499,0.497081,0.450272,-0.741731,0.590202,0.265351,-0.762398,0.546308,0.349277,-0.761284,0.994207,0.0333151,-0.102189,0.995025,0.00628348,-0.0994232,0.877528,-0.148673,-0.455896,0.867867,-0.187028,-0.460247,0.899535,-0.436671,-0.0124797,0.787122,-0.614296,-0.0554923,0.211252,-0.664089,-0.717188,0.30609,-0.610331,-0.730619,0.698863,-0.227166,-0.678223,0.70902,-0.221375,-0.66954,0.821952,0.0307334,-0.568727,0.882616,0.079172,-0.463379,0.938942,-0.240364,-0.246196,0.930569,-0.251699,-0.265873,0.941822,-0.20714,-0.264696,0.980043,-0.151333,-0.128897,0.975156,-0.122645,0.184468,0.830414,-0.281434,0.48084,0.432634,-0.0641489,-0.899285,0.39418,0.0208527,-0.918797,0.500503,0.309663,-0.808459,0.483315,0.343505,-0.80524,0.941368,-0.0790255,-0.327996,0.937227,-0.0317089,-0.347277,0.953458,0.0886769,-0.288193,0.953283,0.0897006,-0.288453,0.230928,-0.256716,-0.938493,0.277967,-0.344409,-0.896726,0.89927,-0.228933,-0.372698,0.857658,-0.419557,-0.297312,-0.999393,-0.0258226,0.0233686,-0.999119,0.0418257,0.00330402,-0.654854,-0.433927,0.618768,-0.647008,-0.444955,0.61919,-0.984173,-0.165664,0.0629208,-0.999266,-0.0124789,0.0362298,-0.701622,-0.529276,0.477067,-0.67596,-0.563741,0.474631,-0.413037,-0.25744,0.873571,-0.455825,-0.199529,0.867417,-0.222683,-0.492412,0.841394,-0.295753,-0.314223,0.902105,-0.534242,-0.343652,0.772327,-0.491213,-0.403458,0.771966,-0.134252,-0.568205,0.811862,-0.204981,-0.478306,0.853936,-0.629177,-0.363011,0.687284,-0.482205,-0.194985,0.854084,-0.547896,-0.492152,0.676459,-0.598113,-0.351695,0.720119,-0.620319,-0.452198,0.640876,-0.752094,-0.263609,0.60404,-0.477858,-0.565205,0.672455,-0.364835,-0.377878,0.850943,-0.229933,-0.572686,0.786868,-0.275,-0.518691,0.809527,0.0266641,-0.748514,0.662582,-0.270541,-0.615508,0.740241,0.00963023,-0.63393,0.77333,-0.105711,-0.537295,0.836743,-0.316617,-0.388238,0.865462,-0.280614,-0.378634,0.881982,-0.0449324,-0.473381,0.879711,-0.20171,-0.484265,0.851352,-0.208244,-0.431461,0.877768,-0.170171,-0.42827,0.887483,-0.282514,-0.389324,0.876706,-0.259403,-0.388391,0.88423,-0.0509946,-0.465977,0.883326,-0.0451397,-0.473751,0.879501,-0.117976,-0.487629,0.865043,-0.161743,-0.429198,0.88861,-0.373089,-0.587459,0.71812,-0.341621,-0.367448,0.86503,-0.0257388,-0.398666,0.916735,0.101356,-0.546917,0.831028,0.218044,-0.724548,0.653825,-0.135145,-0.541794,0.829575,-0.316592,-0.388081,0.865542,-0.430722,-0.413916,0.801967,-0.548696,-0.360868,0.754127,-0.673617,-0.361945,0.644388,-0.403659,-0.309493,0.860973,-0.659963,-0.388941,0.642786,-0.705649,-0.506063,0.495944,-0.863461,-0.190097,0.467224,-0.98105,0.0786634,-0.177069,-0.984033,0.0353827,-0.174436,-0.98949,0.0784148,-0.121494,-0.985988,0.106467,-0.128422,-0.66813,0.379001,-0.640282,-0.712588,0.297714,-0.635283,-0.362511,-0.1694,0.916455,-0.395054,-0.0418218,0.917705,-0.906357,0.210197,0.366516,-0.904003,0.159993,0.39646,-0.446488,-0.194389,0.87342,-0.44453,-0.202278,0.872626,-0.941623,0.052103,0.332612,-0.93402,0.265335,0.239173,-0.0372086,-0.0165986,-0.99917,-0.0236514,-0.0395786,-0.998937,-0.31291,0.0391385,-0.948976,-0.0781166,0.0829694,-0.993486,-0.916819,0.123932,-0.379584,-0.910788,-0.0859946,-0.403818,-0.383556,-0.393949,-0.835278,-0.328858,-0.497385,-0.802783,0.956629,-0.253467,-0.143582,0.960278,-0.217819,-0.174416,0.906526,-0.364438,-0.213063,0.890257,-0.421209,-0.17328,0.844891,-0.311752,0.434707,0.855493,-0.360273,0.371933,0.792248,-0.463527,0.396845,0.788139,-0.468128,0.399616,0.915334,-0.277138,-0.292161,0.88901,-0.399516,-0.223715,0.634348,-0.20067,-0.746548,0.366928,-0.30819,-0.877714,0.695668,-0.274172,-0.663985,0.557868,-0.349818,-0.752603,0.808616,-0.413885,0.418138,0.802833,-0.421408,0.421752,0.502744,-0.0615596,-0.862241,0.459113,0.0850369,-0.884299,0.196979,-0.207095,-0.958285,-0.218916,-0.369125,-0.903229,-0.0978035,0.184021,-0.978044,-0.194727,0.10779,-0.974917,0.152854,-0.343421,-0.926659,0.323565,-0.239581,-0.915373,-0.0574347,-0.413958,-0.908482,0.0994647,-0.32015,-0.942131,-0.351166,-0.502268,-0.790196,-0.0685473,-0.493155,-0.867237,0.304371,-0.367037,0.879001,0.338891,-0.473876,0.81277,0.414893,-0.441091,0.795803,0.327831,-0.498737,0.802364,-0.0812912,-0.341541,0.936345,-0.553143,-0.507925,0.660337,-0.521576,-0.234068,0.82047,-0.493322,-0.333627,0.803322,0.275121,-0.437625,0.856033,0.241966,-0.336515,0.910061,-0.155991,-0.513772,0.843626,0.0145947,-0.416081,0.90921,-0.449074,-0.488686,0.74801,-0.346625,-0.442261,0.827198,-0.496836,-0.672775,0.548205,-0.629819,-0.442599,0.638306,0.135096,-0.436201,-0.88965,-0.147146,-0.491379,-0.858425,-0.20008,-0.24919,-0.947561,-0.377323,-0.283138,-0.881737,0.247872,-0.249454,-0.936126,0.171911,-0.270963,-0.947114,-0.360345,0.0470274,-0.931633,-0.431603,0.00384524,-0.902056,-0.492474,-0.339238,-0.801491,-0.250527,-0.37191,-0.893823,-0.28042,-0.479454,-0.831558,-0.0490576,-0.486593,-0.87225,-0.200244,-0.307527,-0.930231,-0.262594,-0.18822,-0.946371,-0.236056,-0.285421,-0.928877,-0.125847,-0.257372,-0.958083,-0.157119,-0.292835,-0.943166,0.029789,-0.510593,-0.859306,-0.209817,-0.269841,-0.939767,-0.390853,-0.274689,-0.87851,-0.348817,-0.0851155,-0.933318,-0.374056,-0.094891,-0.922539,-0.196673,-0.220161,-0.955431,-0.142817,-0.202702,-0.96877,-0.112517,0.0940423,-0.98919,-0.0143613,0.187618,-0.982137,-0.151805,-0.126032,-0.980342,-0.0769027,0.0971665,-0.992293,-0.172114,-0.308134,-0.935644,-0.235958,-0.203508,-0.950215,-0.227966,-0.283755,-0.931405,-0.0917258,-0.271145,-0.958158,-0.113427,-0.160516,-0.980494,0.00475816,0.0223359,-0.999739,-0.19397,-0.232497,-0.953059,-0.134584,-0.226513,-0.964665,-0.029115,0.0510818,-0.99827,-0.0759604,0.0337109,-0.996541,-0.116136,-0.26282,-0.95783,-0.163148,-0.18296,-0.969489,0.0506599,-0.484021,-0.873589,-0.143692,-0.292013,-0.945559,-0.162104,-0.195268,-0.96726,-0.17538,-0.178593,-0.968166,-0.332039,-0.2409,-0.911985,-0.266258,-0.314122,-0.911282,-0.199032,-0.179364,-0.963439,-0.237296,-0.0855055,-0.967667,-0.331021,-0.0627165,-0.941537,-0.404263,0.0356668,-0.913947,-0.262872,0.306504,-0.914852,-0.188201,0.0424412,-0.981213,-0.0563438,0.114258,-0.991852,-0.0563804,0.113921,-0.991889,0.109906,-0.302695,-0.946729,-0.109036,-0.046714,-0.99294,0.404869,0.115757,-0.907018,0.510931,-0.117205,-0.851594,-0.152852,0.110259,-0.982079,-0.0320719,0.023086,-0.999219,-0.196477,-0.0508334,-0.97919,-0.299251,0.0328195,-0.95361,0.389257,-0.910069,0.142313,0.184468,-0.961204,0.205079,-0.693873,-0.443287,0.567483,-0.507352,-0.449325,0.735324,-0.907667,-0.412487,0.0774242,-0.689272,-0.682088,0.244254,-0.599661,-0.0414554,0.799179,-0.599618,-0.0415441,0.799207,0.235537,-0.203266,0.950371,0.255776,-0.240314,0.936391,-0.64024,-0.510135,0.57433,-0.769927,-0.284509,0.571198,-0.848841,-0.441568,0.290667,-0.931222,-0.197562,0.306259,-0.450596,-0.740016,0.499338,-0.627749,-0.573265,0.526592,-0.807861,-0.578311,-0.113648,-0.521501,-0.840126,-0.14908,-0.972069,-0.183747,-0.146011,-0.960338,-0.267426,-0.0789587,-0.175849,-0.386015,0.905577,-0.374816,-0.520643,0.767101,-0.421179,-0.117341,0.899355,-0.407885,-0.10578,0.906885,-0.973585,0.0572719,0.221027,-0.955638,0.124787,0.266805,0.339751,-0.607159,0.718281,0.155136,-0.441712,0.883642,-0.07573,-0.809387,0.582372,0.323075,-0.610012,0.723538,0.517716,-0.265715,0.813244,0.398532,-0.358047,0.844378,0.502576,-0.825779,0.255942,0.327489,-0.88336,0.3353,0.853511,-0.422273,0.305295,0.861261,-0.361388,0.357251,-0.752432,-0.658381,0.0195235,-0.649002,-0.759826,-0.03822,-0.924578,0.208836,0.318658,-0.924506,0.20485,0.321442,-0.902801,0.25029,-0.349721,-0.882855,0.272566,-0.382458,-0.964222,0.0642926,0.25718,-0.963761,0.0601959,0.259887,-0.927749,0.0903315,-0.362107,-0.897068,0.137098,-0.420086,-0.898055,0.271208,0.346328,-0.898048,0.27162,0.346024,-0.87643,0.295338,-0.380323,-0.778761,0.368207,-0.507892,-0.833478,-0.0473478,-0.55052,-0.902243,0.0190348,-0.430807,-0.71843,-0.048272,-0.693923,-0.838987,0.0271447,-0.543473,-0.986845,-0.0605812,0.14989,-0.976849,-0.110661,0.183086,-0.994635,-0.088498,0.0535614,-0.980628,-0.165736,0.104408,-0.771042,-0.334269,0.541994,-0.841211,-0.185063,0.50805,-0.712469,-0.34573,0.610622,-0.761609,-0.268044,0.590003,-0.199493,-0.681273,0.704322,-0.386301,-0.467704,0.794999,-0.0379284,-0.439123,0.897626,-0.0466154,-0.42775,0.902694,-0.893377,-0.419072,0.162039,-0.88684,-0.300859,0.350713,-0.386982,-0.908376,0.158424,-0.43959,-0.894318,0.0834048,0.558309,-0.776481,-0.292179,0.552946,-0.777859,-0.29864,0.444085,-0.757323,0.478802,0.427015,-0.864297,0.265798,-0.023061,-0.855133,-0.517896,0.0492082,-0.94872,-0.312266,-0.0349114,-0.988694,0.145828,-0.0495268,-0.985274,0.163655,-0.289765,-0.573365,0.766348,-0.372344,-0.4537,0.80964,-0.0492534,-0.719243,0.69301,0.0810594,-0.660943,0.746045,-0.00763583,-0.971305,-0.237713,0.0831971,-0.99349,-0.077819,0.743647,-0.634066,0.212016,0.727494,-0.686087,0.00610323,-0.344745,-0.518035,0.782809,-0.477027,-0.5683,0.670433,-0.953748,-0.277243,0.116191,-0.91113,-0.212094,0.353351,-0.406255,-0.910834,-0.0730636,-0.452408,-0.880416,-0.142107,0.923914,-0.210045,0.319789,0.921472,-0.271489,0.277819,0.265831,-0.818237,-0.509728,-0.0559103,-0.888738,-0.454994,0.873394,-0.236631,0.425663,0.826697,-0.0548289,0.559969,0.0872425,-0.992254,0.0884388,-0.128055,-0.988514,0.0802626,0.982242,-0.143424,-0.120955,0.96394,-0.242702,-0.109154,-0.254466,-0.76222,-0.595204,-0.220119,-0.767522,-0.602045,0.761971,0.116277,0.637087,0.875941,-0.213733,0.432488,0.986549,0.11707,-0.114085,0.99096,0.0645403,-0.117614,-0.697843,-0.506883,-0.506048,-0.452733,-0.716828,-0.530274,-0.326209,-0.536906,-0.778023,-0.230924,-0.490886,-0.840063,0.176403,-0.681777,-0.709974,0.0697299,-0.556566,-0.827872,-0.806743,0.0263969,-0.590313,-0.811637,0.0134056,-0.584008,-0.774002,-0.179371,-0.607245,-0.702536,-0.410412,-0.581383,0.263077,-0.704512,-0.65913,0.189588,-0.520179,-0.832749,0.519846,-0.672072,-0.527333,0.587199,-0.627903,-0.510818,0.111449,-0.603147,-0.789805,0.0758313,-0.526224,-0.846958,-0.550662,-0.438275,-0.710412,-0.626977,-0.193298,-0.754676,0.330382,-0.259217,-0.907554,0.270756,-0.171617,-0.947227,-0.196599,0.0040926,-0.980476,-0.198185,-0.0660673,-0.977935,0.384331,0.193965,-0.902589,0.306809,0.247009,-0.91916,-0.341174,-0.117388,0.932642,-0.411794,-0.154861,0.898022,-0.951207,0.139719,0.275108,-0.954383,0.133367,0.267146,-0.116047,-0.301391,0.946413,-0.0261286,-0.375846,0.926314,-0.754776,-0.301989,0.582336,-0.713082,-0.360887,0.601061,0.246388,-0.546398,0.800464,0.145965,-0.416515,0.897335,0.344276,-0.629575,0.696498,0.253299,-0.52455,0.812826,-0.481633,-0.512239,0.711084,-0.453847,-0.503202,0.735398,-0.466269,-0.37495,0.801252,-0.463552,-0.373735,0.803394,0.708791,-0.276002,0.649183,0.674449,-0.378334,0.634021,0.652508,-0.323328,0.685341,0.704713,-0.190216,0.683519,-0.0948954,-0.539458,0.836648,-0.111497,-0.529602,0.840887,-0.100442,-0.569282,0.815984,-0.0733303,-0.534745,0.841826,0.209761,-0.333829,0.918999,0.17746,-0.293038,0.939487,0.787328,-0.218212,0.576627,0.829714,-0.123177,0.544428,0.173189,-0.310177,0.93477,0.178175,-0.314383,0.932425,-0.801709,-0.436892,0.407906,-0.735512,-0.524587,0.428755,-0.683406,0.40877,-0.604867,-0.687775,0.427476,-0.586711,-0.117674,0.344007,-0.931564,-0.116673,0.341748,-0.932521,-0.692953,0.381272,-0.611921,-0.693606,0.383806,-0.609593,-0.139747,0.282241,-0.949111,-0.0984349,0.185608,-0.977681,-0.747341,-0.265161,0.609238,-0.604744,-0.308052,0.734431,-0.733476,-0.229402,0.639834,-0.840809,-0.0643305,0.537495,0.957312,-0.234784,0.16861,0.940223,-0.258039,0.222253,0.971809,-0.234511,0.0243373,0.968196,-0.24595,0.0458733,0.993985,-0.107161,0.0226015,0.99366,-0.0543743,0.0984005,0.981693,-0.0613292,0.180327,0.984133,-0.0529039,0.169361,-0.342544,-0.487916,0.802871,-0.460681,-0.468011,0.754148,-0.974037,-0.224868,-0.0261833,-0.974549,-0.0136767,0.223757,-0.926733,-0.375675,0.00586885,-0.966294,-0.23482,-0.105527,-0.0769384,0.0514222,-0.995709,-0.101915,0.0470207,-0.993681,0.113087,0.18124,-0.976915,0.121763,0.166157,-0.978553,0.700741,0.3948,-0.594219,0.45321,-0.0118358,-0.891325,0.112298,0.174939,-0.978154,0.0857832,0.143363,-0.985945,0.0547444,0.143789,-0.988093,0.0637565,0.119091,-0.990834,-0.783641,0.344967,-0.516628,-0.812393,0.329365,-0.481183,-0.655703,-0.0937851,0.749171,-0.575303,-0.219823,0.787848,-0.677192,0.0470992,0.734297,-0.581396,-0.146184,0.800381,-0.509891,-0.131734,0.850093,-0.465851,-0.218345,0.857501,-0.51252,-0.0574873,0.856749,-0.48941,-0.144169,0.860054,-0.766951,0.115989,0.631136,-0.797031,0.235864,0.555977,-0.881984,0.305651,0.358723,-0.883195,0.322248,0.340768,-0.0245918,-0.506323,0.861993,0.104465,-0.489718,0.8656,-0.018594,-0.432844,0.901277,-0.117961,-0.466586,0.876575,-0.0980205,-0.442817,0.891238,0.332151,-0.36305,0.870557,-0.155387,-0.390589,0.907356,-0.0904692,-0.364362,0.926853,0.187685,-0.351082,0.917342,0.655683,-0.151163,0.73975,0.200627,-0.22201,0.95418,-0.0235645,-0.379949,0.924707,0.847877,-0.134866,0.512752,0.62741,-0.00707285,0.778657,0.617371,-0.214317,0.756915,0.525165,-0.114546,0.843256,-0.981045,0.0384828,0.18992,-0.996666,-0.0145267,0.0802881,-0.95627,-0.0911752,0.277912,-0.956375,-0.0900221,0.277925,-0.24391,0.127211,-0.961418,-0.286517,0.115772,-0.951055,-0.180152,0.983244,-0.0278498,-0.0510917,0.98272,-0.177905,0.336096,0.935062,-0.112692,0.415541,0.881712,-0.223403,0.224746,0.268313,-0.936748,0.218903,0.150927,-0.964003,-0.992669,-0.0737239,0.0957745,-0.96768,0.0420218,0.248655,-0.963612,-0.179033,0.198494,-0.917253,-0.153851,0.367392,-0.905,-0.0752406,0.418706,-0.870072,-0.180863,0.458545,0.00849553,0.0323388,-0.999441,0.0374761,0.0383061,-0.998563,0.327712,-0.0897641,-0.940504,0.394362,-0.0251719,-0.91861,-0.172574,0.572505,-0.801534,-0.109144,0.518724,-0.847946,-0.795827,0.322709,-0.512366,-0.794494,0.325493,-0.512673,-0.803322,0.396793,-0.444106,-0.808567,0.387859,-0.442475,-0.996434,-0.0807881,0.024341,-0.982331,-0.183549,0.0365551,-0.846592,0.134538,-0.514958,-0.829118,0.167732,-0.53332,-0.991638,0.121081,0.0446419,-0.992984,0.105426,0.0535453,-0.819553,0.312159,-0.480509,-0.811337,0.304036,-0.499294,0.823066,-0.0458246,-0.566094,0.81981,-0.0779708,-0.567303,0.929608,0.120622,-0.348251,0.941342,0.034658,-0.335668,-0.247634,0.425507,-0.870414,-0.22096,0.39237,-0.892873,0.840826,-0.405033,0.359109,0.786242,-0.510159,0.348658,-0.437081,-0.247964,0.864566,-0.439193,-0.103067,0.892461,-0.388244,-0.470631,0.792321,-0.460307,-0.270286,0.845614,0.162986,-0.691488,0.703761,0.236256,-0.634545,0.735891,-0.685029,-0.475337,0.552078,-0.643091,-0.535316,0.547605,-0.412082,-0.249874,0.876214,-0.345814,-0.357302,0.867611,-0.136727,0.385911,-0.912348,-0.162274,0.361731,-0.918051,0.0408047,-0.428653,0.902547,-0.180151,-0.495526,0.849705,0.0280029,-0.549034,0.835331,0.155485,-0.474351,0.866496,-0.137749,-0.377027,0.915902,-0.125552,-0.367383,0.921556,-0.170454,-0.427814,0.887649,-0.134312,-0.400024,0.90661,-0.334836,-0.212718,0.917952,-0.359689,-0.156865,0.919792,-0.919302,0.0218489,0.392946,-0.922486,0.0150713,0.385735,0.778409,-0.393996,0.488719,0.796672,-0.357201,0.487567,0.16647,-0.609858,0.77483,0.158533,-0.605608,0.779812,0.345541,-0.116255,-0.931175,0.0955756,0.247144,-0.964254,0.0511409,0.225642,-0.972867,-0.110776,0.25987,-0.959269,-0.345313,-0.176025,-0.921832,-0.0709386,-0.127226,-0.989334,-0.120308,-0.669599,-0.732914,0.121345,-0.619617,-0.775468,-0.665327,-0.591556,-0.455414,-0.391101,-0.76685,-0.508901,-0.729888,0.270379,-0.62782,-0.757102,0.21637,-0.616426,0.955099,-0.128348,-0.267044,0.95323,-0.173511,-0.247482,0.788462,-0.347913,0.507232,0.840518,-0.261273,0.474622,-0.0225922,-0.345297,0.938222,0.0179928,-0.398408,0.917032,-0.209754,-0.463394,0.86097,-0.351096,-0.385891,0.853124,0.0194973,-0.201592,-0.979275,-0.112619,-0.224163,-0.968023,-0.145169,-0.271763,-0.951352,-0.186012,-0.19958,-0.962064,-0.0304088,0.0396244,-0.998752,-0.0108498,0.0413052,-0.999088,-0.696382,-0.407503,0.590757,-0.638485,-0.485894,0.596862,0.42983,-0.17967,-0.884853,0.443254,-0.232737,-0.865655,0.266473,-0.382534,-0.884681,0.379912,-0.312495,-0.87064,0.897089,-0.319677,-0.305023,0.890884,-0.36272,-0.273421,0.77257,-0.534306,-0.343007,0.804854,-0.508251,-0.306417,0.695464,-0.301063,0.65245,0.671149,-0.326135,0.665729,0.610941,-0.487866,0.623489,0.616037,-0.553826,0.560157,0.150538,-0.296026,0.943243,0.126267,-0.187237,0.974166,0.0311473,-0.00527157,-0.999501,0.0156663,0.0740968,-0.997128,-0.312661,-0.438584,-0.842548,-0.49174,-0.212467,-0.844422,-0.0316929,0.0979314,-0.994688,-0.0283938,0.0915183,-0.995399,-0.183293,-0.241133,-0.953026,-0.246056,-0.176492,-0.953052,-0.378876,-0.362123,-0.851657,-0.461909,-0.245866,-0.852168,-0.260523,-0.219808,-0.940113,-0.306643,-0.180135,-0.934624,0.365237,-0.369944,-0.85425,0.305152,-0.27161,-0.912749,-0.249523,-0.223261,-0.942281,-0.279536,-0.147743,-0.9487,-0.977023,-0.11042,-0.182299,-0.923126,-0.384497,-0.000658168,-0.807902,-0.0743163,0.584612,-0.815459,-0.0427977,0.577231,-0.738532,0.101648,0.666512,-0.736719,0.0858347,0.67073,-0.772001,0.0161315,-0.635416,-0.772797,0.0150998,-0.634474,-0.762689,-0.275103,-0.585341,-0.816354,-0.214226,-0.536351,-0.146837,0.00390186,-0.989153,-0.161492,-0.00587066,-0.986856,-0.193749,-0.170505,-0.966121,-0.21168,-0.183756,-0.959909,-0.205296,-0.382156,-0.901005,-0.236039,-0.296674,-0.925349,0.241635,-0.961623,-0.129979,0.462112,-0.856931,-0.228303,0.836265,-0.548326,0.000136364,0.688557,-0.724706,0.0262731,-0.88425,-0.462619,-0.0639217,-0.873429,-0.480012,-0.0819206,-0.772779,0.57834,0.261409,-0.795388,0.52752,0.298463,-0.808633,-0.401667,-0.429857,-0.617047,-0.569593,-0.54297,-0.993082,0.104619,0.0533276,-0.98721,0.15891,0.0128212,-0.823284,-0.106686,-0.557514,-0.766992,-0.381279,-0.516091,-0.694751,-0.17312,0.698105,-0.712379,-0.143325,0.687004,-0.994148,0.0700593,-0.0822259,-0.998583,0.0253379,-0.0467984,-0.779539,-0.424682,-0.460394,-0.81494,-0.174268,-0.552724,-0.997287,0.0704977,0.0212046,-0.997049,0.0729383,0.0239342,-0.907481,0.10779,-0.406029,-0.874052,0.187337,-0.448262,-0.784245,0.0140853,-0.620292,-0.845712,-0.0972095,-0.524711,0.721045,-0.416168,-0.553984,0.728275,-0.375662,-0.573143,0.227733,-0.100572,-0.968516,0.145308,-0.150065,-0.97794,-0.266752,0.0649131,-0.961577,-0.148933,-0.0911139,-0.984641,0.596134,-0.19102,-0.779831,0.674374,-0.269891,-0.687298,0.874881,-0.300612,0.379758,0.799949,-0.524535,0.291453,0.985669,-0.0932533,-0.140574,0.99105,-0.0316011,-0.129694,0.873591,-0.376879,-0.307897,0.816055,-0.563469,-0.128676,0.905448,-0.166817,0.390301,0.921823,-0.221529,0.318067,0.238487,-0.307496,0.921179,0.227171,-0.293721,0.928505,0.842558,-0.312896,0.438396,0.881868,-0.340795,0.325832,-0.990205,-0.11317,-0.0817741,-0.972184,-0.233529,-0.0179534,0.64599,0.292775,-0.704968,0.709994,0.19227,-0.677452,0.866692,-0.359331,0.346016,0.832102,-0.409722,0.37381,-0.819767,0.318833,-0.475739,-0.893048,0.196764,-0.40466,-0.902075,-0.0668951,0.426363,-0.906826,-0.0692301,0.415781,-0.249011,0.256674,-0.933869,-0.360571,0.170427,-0.91703,0.282982,0.0683959,-0.956683,0.285883,0.0630737,-0.956187,0.855639,-0.13982,-0.498329,0.858133,-0.171996,-0.483762,0.871534,-0.39858,0.285592,0.851188,-0.336825,0.402528,-0.905757,-0.0978603,0.412345,-0.957173,-0.125301,0.260996,-0.885507,0.269951,-0.378158,-0.895957,0.288344,-0.337815,-0.397783,0.348882,-0.848558,-0.345155,0.278438,-0.896293,0.292304,0.165786,-0.941846,0.308893,0.134007,-0.941609,0.889192,-0.0831637,-0.449912,0.891408,-0.105046,-0.440859,0.904166,-0.322793,0.279801,0.898991,-0.29877,0.320237,0.899437,-0.127564,-0.41802,0.89531,-0.0913107,-0.435985,-0.422463,-0.357747,0.832792,-0.397942,-0.389801,0.83048,0.468701,-0.48492,0.738358,0.418041,-0.427318,0.801649,-0.403648,0.326121,-0.854818,-0.400884,0.320832,-0.858114,-0.892122,0.305994,-0.332396,-0.886518,0.280125,-0.368261,0.28238,0.153527,-0.946938,0.285969,0.146222,-0.947017,0.508072,-0.30428,0.805777,0.522402,-0.322732,0.789265,0.909312,-0.275245,0.312076,0.9117,-0.296659,0.284246,-0.901871,0.206794,-0.379295,-0.889629,0.229655,-0.394739,0.310226,-0.0186076,-0.950481,0.218979,-0.0599412,-0.973887,0.131887,-0.587329,0.79853,0.155474,-0.603892,0.781756,0.819416,-0.4673,0.331946,0.810784,-0.467565,0.352154,-0.685845,0.147286,-0.712688,-0.779788,-0.0113828,-0.625941,-0.98514,0.136915,-0.103696,-0.993343,0.0883709,-0.0738947,0.536374,-0.137187,-0.832756,0.481017,-0.0111576,-0.87664,0.287437,0.332369,-0.898282,0.210596,0.379545,-0.900886,0.728282,0.343452,-0.592998,0.724764,0.349204,-0.593948,0.996626,0.079564,0.0201673,0.996103,0.0859603,0.0197647,-0.851063,-0.342762,-0.397752,-0.883512,-0.180456,-0.432253,-0.394537,0.100562,-0.913361,-0.373544,0.181776,-0.909627,0.988401,0.151671,-0.00771944,0.966783,0.253314,-0.0340963,0.622562,0.212129,-0.753271,0.660216,0.140527,-0.737812,-0.735204,0.0538887,-0.6757,-0.511037,-0.0418427,-0.85854,-0.0171025,0.149845,-0.988562,0.123421,0.0398207,-0.991555,0.992083,0.115495,0.0493197,0.977382,0.208844,0.0333081,-0.542902,0.0345574,-0.839085,-0.47625,0.230318,-0.84861,0.22983,0.272268,-0.93437,0.109339,0.358472,-0.927115,-0.944286,0.236229,0.229174,-0.991582,0.122897,0.0407629,0.501853,0.192532,-0.843253,0.521904,0.143638,-0.840824,0.479483,0.027174,-0.87713,0.509774,-0.0622459,-0.858054,0.975267,-0.099985,-0.197122,0.97378,-0.0381882,-0.224262,0.713729,-0.35647,0.602926,0.810079,-0.199074,0.551491,0.190272,-0.461942,0.86626,0.157196,-0.35265,0.922457,0.950835,-0.191382,-0.243487,0.949892,-0.20644,-0.234706,0.674812,-0.313254,0.668207,0.7367,-0.229207,0.63619,0.966453,0.227375,0.119451,0.976795,0.19886,0.0795337,-0.795757,0.527642,0.297263,-0.760522,0.615426,0.20702,0.154384,0.0537561,-0.986547,0.110959,0.0924038,-0.98952,0.892823,0.207889,-0.39956,0.987104,0.0102461,-0.159752,0.908116,-0.0739318,0.41214,0.93838,-0.00610436,0.34555,0.882181,0.103567,-0.459381,0.89303,0.0910177,-0.440697,-0.217976,-0.471967,0.854244,-0.138305,-0.474749,0.869187,-0.564478,-0.227102,0.793592,-0.469961,-0.33734,0.815683,-0.32723,-0.426949,0.842992,-0.277247,-0.433373,0.857509,0.307652,0.91948,0.244759,0.271346,0.919954,0.28294,0.666808,-0.742273,0.0663255,0.628963,-0.777233,0.0177482,-0.999419,-0.0278162,0.0197131,-0.986714,0.142242,-0.0784999,0.284686,0.612828,-0.737153,0.282546,0.617759,-0.733854,0.0149271,-0.0386702,-0.999141,0.0957796,-0.00321225,-0.995397,0.478004,0.420784,-0.771008,0.500021,0.381063,-0.777669,-0.329159,0.0479141,-0.943058,-0.34763,0.0740088,-0.934706,0.747649,-0.165984,-0.643017,0.725737,-0.186961,-0.662081,0.468875,-0.430834,0.771063,0.436242,-0.375344,0.817808,0.154772,0.145856,-0.977124,0.0331151,0.102411,-0.994191,0.0726236,-0.338699,0.938088,0.0867593,-0.32896,0.94035,-0.131493,-0.511376,-0.849237,-0.272957,-0.405612,-0.872338,-0.170772,-0.414417,-0.893921,-0.314038,-0.296748,-0.901843,-0.181203,-0.0927748,-0.97906,-0.0452284,0.0931601,-0.994623,-0.509879,-0.352895,0.784531,-0.488004,-0.341294,0.803349,-0.290794,-0.578262,0.762268,-0.0271998,-0.52547,0.850377,-0.114594,0.00275975,-0.993409,-0.136618,0.126986,-0.982451,0.107897,-0.532054,-0.839808,0.235532,-0.454231,-0.859185,-0.987667,-0.155085,0.0215056,-0.981295,-0.185882,0.0500858,-0.916059,-0.388503,0.0995037,-0.90522,-0.410019,0.111632,-0.846974,0.119723,-0.517979,-0.867297,0.079799,-0.491353,-0.407785,-0.787771,-0.461659,-0.322037,-0.766316,-0.555924,-0.712446,-0.501412,0.490925,-0.699762,-0.521487,0.488246,-0.594701,-0.149314,0.789959,-0.615764,-0.111334,0.780026,-0.943228,0.0309862,0.330697,-0.970115,-0.00229949,0.242633,-0.447208,0.13417,-0.884309,-0.40772,0.163311,-0.898384,0.855566,-0.272303,-0.440292,0.935282,-0.185071,-0.301655,0.0847452,-0.742476,0.66449,0.0479839,-0.722575,0.689625,-0.23898,-0.0546223,-0.969487,-0.170485,-0.121921,-0.977788,0.997435,-0.0357667,-0.0620006,0.996304,0.0325865,-0.0794723,-0.648773,-0.180947,0.739156,-0.681729,-0.130257,0.719915,0.698079,-0.164968,0.696757,0.775748,0.0525851,0.628848,-0.77103,-0.558265,0.306354,-0.862026,-0.424979,0.276231,0.723041,0.31011,-0.617288,0.684817,0.373911,-0.625473,-0.933009,-0.291075,-0.21159,-0.951085,-0.191112,-0.242722,-0.525978,-0.243872,0.814785,-0.499447,-0.339769,0.796938,0.171496,-0.315409,0.933331,0.160298,-0.268643,0.949808,-0.733205,0.222574,-0.642551,-0.746008,0.209108,-0.632254,0.780727,0.62,0.0778744,0.792059,0.607665,0.0581872,-0.890412,0.452986,0.0443925,-0.924981,0.286018,0.250209,0.97967,0.0931383,0.177688,0.937879,0.0120652,0.346754,-0.732001,0.0931403,0.674907,-0.739822,0.159856,0.653536,0.151444,-0.911792,0.381707,0.235491,-0.864291,0.444461,-0.600682,-0.799249,-0.0195601,-0.70063,-0.713127,-0.023822,-0.0471058,-0.63781,0.768752,-0.0128218,-0.621001,0.783705,-0.690095,-0.648758,0.320753,-0.612085,-0.741073,0.275975,0.0524856,-0.820854,0.568721,0.0150687,-0.873585,0.486438,-0.452121,0.891947,0.00417765,-0.418966,0.907723,-0.022494,0.199961,-0.201192,-0.958925,0.332044,-0.126056,-0.934803,-0.0240512,0.448952,-0.893232,-0.117171,0.386052,-0.915005,-0.0806826,0.0102031,-0.996688,-0.215255,-0.0212338,-0.976327,0.403104,0.0779479,-0.911829,0.353953,0.0607002,-0.933291,0.424066,0.265952,-0.865701,0.391976,0.305679,-0.867707,0.363228,0.665205,-0.652355,0.400636,0.639601,-0.65605,0.279737,0.935159,-0.217311,0.245762,0.946198,-0.210502,0.21024,0.948495,-0.236973,0.312909,0.908341,-0.277497,0.40432,0.302335,-0.863202,0.401372,0.305781,-0.863365,0.308032,0.57859,-0.755215,0.267964,0.597588,-0.755701,-0.00386728,0.997331,0.072909,-0.0877827,0.991473,0.0963106,-0.294049,0.598579,0.745143,-0.253192,0.622239,0.740751,-0.274566,-0.0942178,0.956941,-0.256382,-0.106523,0.960688,-0.307134,0.211299,0.927912,-0.28342,0.23562,0.9296,-0.337913,-0.116306,0.933964,-0.33172,-0.121448,0.935528,-0.376495,0.235522,0.89598,-0.344834,0.274908,0.897505,-0.167026,-0.507061,0.845572,-0.231176,-0.481469,0.845426,-0.0941527,0.963279,0.251452,0.0707676,0.979058,0.190888,-0.00419235,0.964499,0.264053,0.0473912,0.967606,0.247979,0.351916,0.100064,-0.930668,0.359543,0.0837895,-0.929359,-0.307854,0.63501,0.708511,-0.3118,0.632206,0.709293,-0.189563,-0.491121,0.850215,-0.156773,-0.502216,0.850412,0.217404,-0.824885,0.521824,0.0627312,-0.829922,0.554341,0.0153227,-0.909477,0.415471,0.108455,-0.898665,0.425016,0.287585,0.239787,-0.927252,0.310781,0.231393,-0.921885,0.227271,0.879386,-0.418364,0.107134,0.91265,-0.394451,-0.223803,0.598896,0.768918,-0.270297,0.572524,0.774051,0.403778,0.609903,-0.681895,0.367453,0.63944,-0.675348,0.4344,0.131027,-0.891139,0.356511,0.125726,-0.925793,0.291317,-0.918693,-0.266717,0.435623,-0.870377,-0.229513,0.510868,-0.476068,-0.715803,0.398534,-0.462274,-0.792133,0.318007,-0.101659,-0.942622,0.376129,-0.107776,-0.920278,-0.163992,0.934879,0.314815,-0.0366398,0.98458,0.171053,-0.673931,0.676445,0.297052,-0.706667,0.531086,0.467514,-0.227094,-0.885527,0.405303,-0.186872,-0.850204,0.492171,-0.571038,-0.661244,0.486489,-0.490635,-0.690202,0.531883,0.00984039,-0.765829,0.642969,0.175641,-0.605847,0.775951,0.0497774,-0.78147,0.621955,0.0541886,-0.766922,0.639449,-0.202096,-0.416478,0.886399,-0.203605,-0.42582,0.881602,-0.202797,-0.316913,0.92652,-0.213179,-0.419398,0.882417,0.0330365,0.158534,0.986801,-0.570574,0.254236,0.780903,-0.466806,-0.167698,0.868314,-0.473703,-0.22161,0.852346,-0.33775,-0.428227,0.838181,-0.342322,-0.461284,0.818556,-0.511783,0.372027,0.774387,-0.484617,0.355041,0.799433,-0.548106,0.416774,0.725176,-0.500027,0.378463,0.778934,-0.300305,-0.3383,0.891835,-0.294594,-0.278857,0.914031,-0.55511,0.758628,0.341081,-0.459526,0.715433,0.5263,-0.513889,0.822554,0.243561,-0.453854,0.814558,0.361265,-0.54125,0.805256,0.242098,-0.544016,0.804561,0.238179,-0.339544,0.921106,-0.190458,-0.31745,0.938541,-0.135519,-0.54607,0.813419,-0.200391,-0.473831,0.877824,-0.0700673,-0.433048,-0.451881,0.779918,-0.42805,-0.393599,0.813543,-0.59296,0.0519779,0.803553,-0.755745,-0.215726,0.618314,-0.328137,-0.332404,0.884214,-0.329331,-0.364772,0.870909,-0.493407,0.0753025,0.866533,-0.503313,0.0311375,0.863543,-0.310991,-0.279361,0.908428,-0.314149,-0.327524,0.891088,-0.481523,0.0805052,0.872728,-0.497315,0.0943035,0.86243,0.288066,-0.938892,0.188417,0.289724,-0.927834,0.234912,-0.0542707,-0.71477,0.697251,-0.0663521,-0.710233,0.700833,-0.0483014,-0.712838,0.699663,-0.0464247,-0.676624,0.734864,0.27222,-0.947623,0.167056,0.259321,-0.949224,0.17812,0.251945,-0.954743,0.158083,0.138071,-0.958446,0.249636,0.183602,-0.946295,0.266112,0.217078,-0.894987,0.389713,-0.0304414,-0.886883,0.460989,0.0721093,-0.920157,0.384852,0.00563998,-0.589242,0.807937,-0.110394,-0.541488,0.833429,-0.589662,-0.619783,0.517848,-0.271125,-0.689452,0.671675,0.126497,-0.933899,0.334411,0.15811,-0.90886,0.385972,0.150679,-0.971645,-0.182216,0.233761,-0.92031,-0.313663,0.370374,-0.876318,-0.308043,0.343687,-0.866702,-0.361534,-0.0274024,-0.561196,0.827229,0.0190839,-0.58397,0.811551,-0.224343,-0.109139,0.96838,-0.220113,-0.112069,0.969015,-0.235532,-0.118619,0.964601,-0.163534,-0.159433,0.97357,-0.370874,0.420113,0.828226,-0.407707,0.319403,0.855428,-0.443925,0.112616,0.888959,-0.331877,0.353872,0.874432,0.0412029,-0.448525,-0.89282,0.0916835,-0.48007,-0.872426,0.272428,-0.417965,-0.866654,0.274652,-0.408357,-0.870524,0.0920968,0.0451516,-0.994726,0.097216,0.110566,-0.989103,-0.133095,-0.0644843,-0.989003,-0.131687,-0.050799,-0.989989,0.371262,-0.361726,-0.855172,0.364722,-0.386657,-0.847038,0.184334,0.275021,-0.943602,0.177354,0.14176,-0.973884,-0.315919,-0.488059,0.81363,-0.292072,-0.503302,0.813253,-0.0460796,-0.676643,0.734868,0.109336,-0.445225,0.888719,-0.401955,-0.278201,0.872374,-0.395004,-0.282523,0.874158,-0.265942,-0.262995,0.92742,-0.258829,-0.229724,0.938208,-0.215163,0.108354,0.970549,-0.443013,0.158442,0.882403,-0.548517,0.395249,0.736822,-0.54521,0.404588,0.734203,-0.472854,-0.0512917,0.879647,-0.469405,-0.0538844,0.881337,-0.312476,0.349572,-0.883266,-0.289764,0.479124,-0.828539,-0.134477,0.652861,-0.745445,-0.140121,0.549621,-0.823579,-0.0835347,0.770605,-0.631814,-0.0806492,0.67671,-0.731819,-0.331797,0.936505,-0.113446,-0.33705,0.921937,-0.190867,-0.125116,0.752538,-0.646555,-0.128259,0.796492,-0.590889,-0.403098,0.904,-0.142462,-0.400213,0.914299,-0.0623411,-0.52307,0.814081,-0.25233,-0.598748,0.786163,-0.15313,-0.373341,0.905499,-0.201711,-0.379785,0.89349,-0.239663,0.241013,0.361882,-0.90053,0.240813,0.359465,-0.901551,-0.0967844,0.777398,-0.621518,-0.0971554,0.809365,-0.579214,0.216901,0.350382,-0.911146,0.293277,0.293878,-0.909739,-0.0503285,0.79488,-0.604676,-0.0580436,0.731201,-0.679688,0.395014,-0.32941,-0.857586,0.470025,-0.416326,-0.778299,0.165971,0.24333,-0.955638,0.296134,0.13973,-0.944871,0.451121,-0.287428,-0.844911,0.465675,-0.303491,-0.831288,-0.416612,0.906492,-0.0686071,-0.414158,0.90931,-0.0403532,-0.577881,0.640905,0.505266,-0.569034,0.629681,0.528869,-0.572562,0.627849,0.527237,-0.553886,0.604437,0.572596,-0.614523,0.68068,0.398794,-0.505482,0.672563,0.540506,-0.494061,0.661712,0.563951,-0.507484,0.671202,0.540322,0.39886,-0.897818,-0.186637,0.393724,-0.894022,-0.213788,0.374258,-0.906417,-0.195802,0.378911,-0.908743,-0.174964,0.231753,-0.931572,0.280116,0.225717,-0.949259,0.218995,0.198252,-0.926817,0.318914,0.194129,-0.942726,0.27126,-0.194475,-0.029043,-0.980477,-0.224421,-0.0589907,-0.972705,-0.574845,-0.425449,-0.698961,-0.232678,-0.214668,-0.948567,0.0375112,-0.233773,-0.971567,0.158817,-0.13419,-0.978146,-0.121432,-0.609593,-0.783359,-0.0185956,-0.716528,-0.69731,0.139057,-0.718585,-0.681394,0.179475,-0.756515,-0.628868,0.27502,-0.245471,-0.929574,0.293631,-0.267077,-0.917851,-0.0291098,-0.996839,-0.073927,-0.0144309,-0.99875,-0.0478472,-0.0379811,-0.996507,-0.0743661,-0.0321809,-0.99773,-0.0591469,0.111759,-0.751308,-0.65042,0.120328,-0.76115,-0.637316,-0.107418,-0.982915,0.149462,-0.2838,-0.958273,-0.0342052,-0.750161,-0.591727,0.295157,-0.943583,-0.326565,0.0548327,-0.717258,0.694401,0.0578657,-0.885427,0.453985,-0.0995863,-0.478891,0.61902,-0.622477,-0.310916,0.93639,-0.162802,-0.326381,0.927424,-0.182648,-0.00214405,0.623028,-0.782197,-0.0683373,0.533258,-0.843188,-0.481232,0.394415,-0.782849,-0.0635931,0.111244,-0.991756,-0.17124,0.980387,-0.0975665,-0.210841,0.959449,-0.187091,0.139878,0.640065,-0.755481,0.177129,0.704556,-0.687187,-0.186388,0.979093,-0.0814625,-0.191211,0.976448,-0.0999366,-0.345254,0.85846,0.379269,-0.361478,0.868372,0.339506,-0.371919,0.864126,0.339062,-0.38951,0.868563,0.306397,0.104607,0.682284,-0.723565,0.109423,0.696476,-0.709188,-0.21201,0.972088,-0.100482,-0.209909,0.973841,-0.087016,0.0867617,0.67848,-0.729478,0.0901848,0.69524,-0.713097,-0.444633,0.590615,0.673406,-0.441001,0.58739,0.678595,-0.435632,0.596222,0.674347,-0.407433,0.572478,0.711525,0.348535,-0.0318427,-0.936755,0.329528,-0.0111384,-0.94408,0.100005,0.697757,-0.70932,0.0726584,0.714706,-0.69564,0.347511,-0.00578372,-0.937658,0.315557,0.0307866,-0.948407,-0.167638,-0.895016,0.413332,-0.13512,-0.860597,0.491034,-0.214323,-0.433829,0.875133,-0.220479,-0.443769,0.868596,-0.162876,-0.857233,0.488491,-0.15766,-0.852884,0.497727,-0.281149,-0.42515,0.86035,-0.277047,-0.417501,0.865412,-0.237176,0.128803,0.96289,-0.259245,0.160782,0.952335,-0.152283,-0.47487,0.86678,0.121546,-0.271675,0.954683,-0.151942,0.119708,0.981113,-0.169776,0.140651,0.975394,-0.30379,0.153565,0.940282,-0.333462,0.201196,0.921045,-0.325405,-0.222996,0.918904,-0.309462,-0.243618,0.919176,-0.32145,0.0880997,0.942819,-0.288745,0.0485951,0.956172,-0.602394,-0.368471,0.708061,-0.369417,-0.499849,0.783379,-0.21034,-0.786758,0.580318,-0.193032,-0.804118,0.562256,-0.43519,0.0195188,0.900127,-0.440787,0.0276057,0.897187,-0.37938,0.375988,0.845402,-0.426631,0.631077,0.647864,-0.262568,0.573914,0.775681,-0.255781,0.580628,0.772947,-0.341652,0.0463671,0.938682,-0.346365,0.0543498,0.936524,-0.0113824,-0.982766,-0.184504,0.0128313,-0.995782,-0.0908507,-0.0370062,-0.964178,-0.262661,-0.0159071,-0.982507,-0.185545,-0.12951,-0.896171,0.424388,-0.19103,-0.856411,0.479654,-0.188174,-0.856464,0.480687,-0.179338,-0.862888,0.472507,0.120997,-0.712086,-0.691587,0.129515,-0.725095,-0.67636,0.0944797,-0.726807,-0.680312,0.112339,-0.751273,-0.650361,0.179908,-0.309976,-0.933568,0.166281,-0.291642,-0.941963,0.196325,-0.307842,-0.930962,0.202735,-0.316849,-0.926556,0.102992,-0.299709,-0.948455,0.122469,-0.326853,-0.937106,0.107911,0.479275,-0.871006,0.104291,0.482889,-0.869449,0.194287,0.470324,-0.860842,0.171372,0.493868,-0.852482,0.162818,0.486348,-0.858461,0.179976,0.468705,-0.864826,0.18365,0.473136,-0.861635,0.169435,0.487005,-0.856807,-0.0295804,-0.965894,-0.257242,-0.0270009,-0.965297,-0.259755,0.0762727,-0.625177,-0.776747,0.0985403,-0.663235,-0.741896,-0.182935,-0.872961,0.452187,-0.19815,-0.863103,0.464532,-0.210272,-0.872535,0.440986,-0.246798,-0.844296,0.475663,-0.0274634,-0.966122,-0.256621,-0.101753,-0.981161,-0.164222,-0.0645962,0.422747,0.903943,-0.46633,0.511299,0.72188,-0.483492,0.126639,0.86614,-0.47363,0.113779,0.873344,-0.418981,0.74903,0.513234,-0.427157,0.779903,0.45748,-0.759412,0.102056,0.642556,-0.519208,0.437532,0.734159,-0.451144,0.432638,0.780572,-0.460072,0.414517,0.785182,-0.347726,0.832443,0.431422,-0.355614,0.847459,0.394148,-0.367219,0.451571,0.813163,-0.322015,0.385539,0.864677,-0.313152,0.844029,0.435375,-0.318879,0.838361,0.442117,-0.2237,0.968229,-0.111766,-0.193057,0.970553,-0.14407,-0.373213,0.793717,0.480338,-0.324494,0.842406,0.430181,-0.226435,0.961121,-0.158031,-0.249812,0.959292,-0.131727,-0.0779312,0.688969,-0.720589,-0.0537571,0.673473,-0.737254,-0.0188382,0.68668,-0.726716,-0.0169793,0.68552,-0.727855,0.0848939,0.132725,-0.987511,0.141703,0.0704241,-0.987401,0.154538,0.0740469,-0.985208,0.217926,0.00263155,-0.975962,0.266149,-0.428095,-0.863655,0.206073,-0.535694,-0.818881,0.255409,-0.52979,-0.808757,0.31163,-0.612988,-0.726039,0.381351,-0.597733,-0.705186,0.397793,-0.621905,-0.674533,0.196513,-0.958488,-0.206601,0.240874,-0.937441,-0.251367,0.272623,-0.945184,-0.179731,0.276368,-0.948934,-0.152135,-0.40036,0.726532,0.558447,-0.342348,0.800701,0.491605,-0.414381,0.773043,0.480305,-0.332857,0.755257,0.564617,-0.32045,0.942836,-0.0915049,-0.28317,0.948513,-0.141908,-0.41976,0.902265,-0.0985872,-0.470376,0.882397,-0.0110396,-0.726368,0.354212,0.589002,-0.633891,0.43961,0.636338,-0.813473,0.522327,-0.255806,-0.945047,0.304843,-0.11814,-0.676634,-0.12407,0.725792,-0.68057,-0.134273,0.720274,-0.892201,-0.0620605,-0.447354,-0.900681,-0.1289,-0.414921,-0.224644,0.388885,0.893478,-0.232947,0.373412,0.897942,-0.231124,0.373813,0.898246,-0.341192,0.210047,0.916225,-0.107572,-0.087137,0.990371,-0.126349,-0.116785,0.985087,-0.121504,-0.0466601,0.991494,-0.143823,-0.0946947,0.985062,-0.00740478,0.222615,0.974878,-0.319419,0.387406,0.864805,-0.307306,0.119115,0.944126,-0.31984,0.0946808,0.942729,-0.257876,-0.162686,0.952383,-0.252374,-0.152689,0.955507,-0.18948,-0.139249,0.97196,-0.219128,-0.111874,0.969261,-0.534587,-0.19015,0.823444,-0.549384,-0.211682,0.808312,-0.181181,-0.404657,0.89634,-0.183775,-0.403087,0.89652,-0.387978,-0.498468,0.775244,-0.418083,-0.660329,0.623836,-0.0158911,-0.782053,0.623009,-0.0593476,-0.758313,0.649183,0.0505427,-0.917645,0.394175,0.0517268,-0.917944,0.393322,-0.188837,-0.563669,0.804126,-0.1861,-0.545434,0.817232,-0.11429,-0.555518,0.823613,0.0233459,-0.378608,0.925262,0.0307521,-0.923901,0.381395,-0.0022617,-0.912754,0.408504,-0.328585,-0.0759409,0.941416,-0.286748,-0.128894,0.949295,0.239223,-0.923189,-0.300824,0.205774,-0.941932,-0.265371,-0.517379,-0.54138,0.662742,-0.268207,-0.642859,0.717494,-0.360658,-0.419228,0.833171,-0.351013,-0.428708,0.832466,-0.0937719,-0.840538,0.533575,-0.0871625,-0.864081,0.495748,-0.19507,-0.665917,0.720071,0.00914158,-0.434229,0.900756,-0.140973,-0.713212,0.686626,-0.132702,-0.684194,0.717125,0.0524467,-0.950845,0.305194,0.0553518,-0.946609,0.317597,0.0450398,-0.906617,0.419544,0.0387637,-0.952342,0.302558,0.223133,-0.959723,-0.170716,0.229789,-0.96126,-0.152235,0.0981672,-0.942874,0.318357,0.0774968,-0.958042,0.275954,0.213512,-0.961962,-0.170418,0.231843,-0.962161,-0.143164,-0.104562,-0.712217,0.694128,-0.114483,-0.741145,0.661512,-0.10243,-0.783973,0.612286,-0.0694876,-0.738208,0.670985,-0.395174,-0.102502,0.91287,-0.330147,-0.164231,0.929533,-0.361663,-0.080357,0.928839,-0.354752,-0.0880401,0.930806,0.0287831,-0.909516,0.414671,0.0285538,-0.906075,0.422153,0.284524,-0.946847,-0.150087,0.285308,-0.947257,-0.145959,0.33342,-0.0361709,-0.942084,0.29484,0.00173398,-0.955545,0.385888,-0.625505,-0.678111,0.403548,-0.647569,-0.646377,0.336037,-0.669658,-0.662297,0.336609,-0.670195,-0.661463,-0.202373,-0.350083,-0.914596,-0.110415,-0.442705,-0.889843,-0.606894,-0.657461,-0.446569,-0.732795,-0.591146,-0.336983,0.000185987,-0.92174,-0.387808,-0.0313542,-0.941502,-0.335545,-0.603838,-0.629586,0.488877,-0.428817,-0.71539,0.551665,0.0100965,-0.965022,0.261973,0.112079,-0.915417,0.386587,0.0655367,-0.914035,0.400305,0.0822657,-0.919019,0.385534,0.15212,-0.912405,-0.37997,0.119427,-0.934693,-0.334792,-0.319286,-0.444608,0.836887,-0.310594,-0.454847,0.834653,-0.258094,-0.437389,0.86144,-0.243188,-0.411163,0.878524,-0.254504,0.063839,0.964962,-0.25772,0.0688642,0.963762,-0.202233,-0.219655,0.954386,-0.0830879,-0.464302,0.881771,-0.138177,0.0242883,0.99011,-0.180315,0.0747297,0.980766,0.135297,0.420011,0.897377,-0.149745,0.550125,0.821547,-0.138395,0.783618,0.605632,-0.157837,0.764934,0.624471,-0.222179,0.299724,0.927794,-0.235637,0.316271,0.918939,-0.108405,0.916945,0.384006,-0.110772,0.915727,0.386231,-0.0164055,0.974497,-0.223799,0.0239017,0.96485,-0.261712,0.0281494,0.959347,-0.280823,0.0124374,0.964007,-0.265584,-0.107971,0.907189,0.406632,-0.0903195,0.9158,0.391348,-0.117474,0.916607,0.382141,-0.112312,0.911271,0.396196,0.0353064,0.977194,-0.209393,0.00730893,0.982991,-0.183506,-0.170346,0.890224,0.422474,-0.186207,0.902708,0.387874,-0.0958768,0.964249,-0.247047,-0.0474738,0.950689,-0.306492,-0.294172,0.881275,0.369888,-0.268243,0.871885,0.409709,-0.269352,0.512786,0.815169,-0.265252,0.518792,0.812709,-0.228355,0.517269,0.824795,-0.289347,0.442885,0.848605,0.0407137,0.441642,-0.896267,0.0209094,0.467016,-0.884002,-0.225739,0.93559,-0.271501,-0.303644,0.941186,-0.148217,-0.194327,0.408514,-0.891826,-0.217129,0.359722,-0.907444,0.108225,0.460179,-0.881205,0.0936058,0.476023,-0.874437,0.0944954,-0.25721,-0.961724,0.121433,-0.297304,-0.947029,-0.258572,-0.0296265,0.965537,-0.295533,0.0197146,0.955129,-0.253988,-0.110404,0.960885,-0.305355,-0.0395954,0.951415,-0.247516,-0.502821,0.828195,-0.343345,-0.403345,0.84819,-0.455093,-0.0397039,0.889558,-0.475618,-0.0166421,0.879494,-0.619818,-0.346835,0.70394,-0.399296,-0.440292,0.80418,-0.618168,0.0644973,0.783396,-0.79403,0.320135,0.51675,-0.844764,-0.383033,0.373711,-0.421045,-0.318511,0.849277,-0.319808,-0.675963,0.663925,-0.313474,-0.766986,0.559882,-0.880451,0.308987,0.35963,-0.887362,0.296197,0.353349,-0.400785,-0.886809,0.230092,-0.477235,-0.811757,0.336598,-0.207827,-0.102993,-0.972728,-0.139854,-0.223956,-0.964513,-0.670331,0.576727,-0.46695,-0.875826,0.366674,-0.313815,-0.697755,0.528826,0.483199,-0.624468,0.582455,0.520371,-0.798351,-0.187896,-0.572128,-0.789157,-0.202027,-0.580015,-0.70985,-0.217815,0.669828,-0.752351,-0.160274,0.638968,-0.487589,-0.788061,-0.375789,-0.739958,-0.636834,-0.216573,-0.13125,-0.529941,-0.837816,-0.0686876,-0.626772,-0.776169,-0.121717,-0.978434,-0.166891,-0.186303,-0.980147,-0.0678513,-0.696508,-0.335869,0.634088,-0.724369,-0.311439,0.615057,-0.79683,-0.375093,-0.473674,-0.797821,-0.362778,-0.481533,-0.420652,-0.776173,0.469689,-0.317435,-0.797174,0.513565,-0.355775,-0.854354,-0.378818,-0.576848,-0.782896,-0.233067,-0.0813119,0.430562,0.898891,0.102717,0.623031,0.775424,-0.23522,0.404232,0.883894,-0.174854,0.438197,0.881708,-0.065403,0.767143,0.638133,-0.00334986,0.795827,0.605515,-0.287781,0.178932,0.940832,-0.290035,0.181881,0.939574,-0.315275,-0.145447,0.937788,-0.349539,-0.0983211,0.931749,-0.113195,0.183667,0.976449,-0.1514,0.155547,0.976157,-0.249059,-0.165114,0.95431,-0.149276,-0.467353,0.871377,-0.481897,-0.868446,-0.116519,-0.553392,-0.832773,-0.0156854,-0.927775,-0.273017,-0.254355,-0.909173,-0.407449,-0.08597,-0.791969,-0.306328,0.528156,-0.865754,-0.210151,0.45421,-0.938995,0.10337,-0.328028,-0.923864,0.135157,-0.358062,-0.731858,0.579679,-0.35827,-0.839843,0.482638,-0.248444,-0.229758,0.939199,-0.255178,-0.180279,0.930329,-0.319355,-0.307522,0.456251,-0.835024,-0.397457,0.365968,-0.841484,-0.487592,-0.068287,-0.870397,-0.471578,-0.0512331,-0.880335,-0.466705,-0.578068,-0.669346,-0.529235,-0.458676,-0.713812,-0.820604,0.276324,0.500254,-0.812556,0.289174,0.506094,-0.0275517,0.451277,-0.891958,-0.0289477,0.453613,-0.890729,0.061233,0.948866,-0.309683,0.0553131,0.951377,-0.303023,-0.0655198,0.670774,-0.738762,0.0629136,0.620259,-0.78187,-0.16902,0.497871,-0.850621,0.0125671,0.467013,-0.884161,0.243083,-8.04289e-005,-0.970006,0.281088,-0.0213827,-0.959444,0.25923,0.123674,-0.957865,0.347686,0.0556476,-0.935958,0.398557,-0.526996,-0.750618,0.446577,-0.569564,-0.690048,-0.918439,0.362939,0.157308,-0.993768,0.0775954,-0.0800234,0.208306,0.39324,-0.895528,0.178785,0.444176,-0.87792,0.21597,0.926285,-0.308793,0.177821,0.945571,-0.272533,0.0592343,0.924075,0.377593,0.0958412,0.929968,0.354928,0.0863698,0.935857,0.341631,0.042137,0.927232,0.37211,0.685819,0.0716199,-0.724239,0.684761,0.0607365,-0.726232,0.500414,0.326313,-0.801939,0.504967,0.303635,-0.807969,0.413586,-0.88678,-0.206318,0.396904,-0.873013,-0.283399,0.265548,-0.947953,0.175699,0.273223,-0.934105,0.229775,0.45815,-0.849663,-0.261096,0.433025,-0.827658,-0.357033,0.261327,-0.949363,0.174407,0.267156,-0.936332,0.227837,-0.171175,-0.812477,0.557298,-0.235421,-0.653684,0.719217,0.084957,-0.897457,0.432844,0.0784706,-0.871494,0.484088,-0.228722,-0.363567,0.903053,-0.0806693,-0.400481,0.912747,-0.296164,-0.298505,0.907293,-0.291357,-0.296653,0.909455,-0.299807,-0.0793452,0.950695,-0.266728,-0.102288,0.958329,-0.28713,-0.252587,0.923989,-0.266271,-0.26042,0.928052,-0.270504,-0.300177,0.914725,-0.272221,-0.303464,0.913129,-0.259112,-0.220769,0.940278,-0.242976,-0.228652,0.942699,-0.232281,-0.289768,0.928483,-0.244663,-0.282089,0.927667,-0.226222,-0.332206,0.915676,-0.194132,-0.344606,0.918455,-0.200694,-0.316578,0.927092,-0.198225,-0.317798,0.927206,-0.112051,-0.6021,0.790519,-0.0983521,-0.557152,0.824566,-0.0955811,-0.594005,0.798763,-0.0610455,-0.603323,0.795157,-0.32448,0.275845,0.904778,-0.36058,0.325986,0.873908,-0.374239,0.170761,0.911474,-0.372992,0.172453,0.911667,-0.371814,0.0702605,0.925645,-0.346788,0.0490637,0.936659,-0.36466,0.348691,0.863387,-0.351376,0.32704,0.877257,-0.0947441,0.983973,0.151062,-0.0417299,0.991802,0.12078,-0.0502353,0.972696,0.226582,-0.0158319,0.977826,0.208821,0.140758,0.933746,-0.329099,0.19067,0.914959,-0.355661,0.115878,0.895611,-0.429479,0.0819993,0.908515,-0.409728,0.207424,0.926721,-0.31331,0.0875055,0.971365,-0.220892,0.0311341,0.982372,0.184328,-0.0210253,0.975234,0.220176,-0.225938,0.776835,0.587775,-0.157022,0.81541,0.557181,-0.0999546,0.837307,0.537519,-0.0790222,0.846448,0.526575,-0.24738,0.599673,0.761049,-0.204475,0.631275,0.748119,-0.151896,0.609524,0.77808,-0.208936,0.569149,0.795245,-0.247258,0.599594,0.761151,-0.278713,0.577946,0.767006,-0.197803,0.763492,0.614779,-0.195783,0.764671,0.61396,-0.302421,0.375478,0.876104,-0.261261,0.419249,0.869467,-0.314695,0.353804,0.880789,-0.307506,0.342705,0.88769,-0.252454,0.316028,0.914545,-0.339977,0.229697,0.911951,-0.253858,0.363985,0.896143,-0.325878,0.422889,0.845558,-0.325881,0.430909,0.841498,-0.31665,0.4391,0.840788,-0.343573,0.348197,0.87219,-0.362424,0.374137,0.853622,-0.298016,0.417733,0.858304,-0.370189,0.418709,0.829243,-0.0250431,0.968509,0.247717,-0.00498245,0.972471,0.232969,0.0549929,0.98905,-0.13695,0.123602,0.972523,-0.197286,0.141055,0.731875,-0.666681,0.168772,0.703204,-0.690666,0.24629,0.628121,-0.738109,0.1715,0.545004,-0.820706,0.154727,0.980799,-0.118713,0.21499,0.961883,-0.168999,0.197642,0.701196,-0.685026,0.28855,0.607814,-0.739798,0.0833645,0.934637,0.345692,0.0563025,0.930383,0.36224,0.246515,0.942766,-0.22455,0.282641,0.947213,-0.151329,0.230855,0.447118,-0.864171,0.307516,0.514602,-0.800386,0.134451,0.91714,0.375203,0.138649,0.91286,0.384009,0.151549,0.929205,0.337064,0.17129,0.909289,0.379281,0.0464177,0.719671,0.692761,0.0583851,0.703068,0.708722,-0.00376684,0.748576,0.663039,0.0114666,0.724787,0.688878,-0.0365448,0.786401,0.616634,-0.0906802,0.763878,0.638958,-0.281498,0.357865,0.890332,-0.257501,0.306477,0.916387,0.233183,0.678651,-0.696461,0.245152,0.669948,-0.700764,0.184833,0.631934,-0.75266,0.144018,0.662729,-0.73488,0.157291,0.261878,-0.952197,0.185461,0.296114,-0.936974,0.253858,0.294075,-0.921453,0.246169,0.303121,-0.920608,0.213579,0.0346349,-0.976312,0.239989,0.0665966,-0.968489,0.139288,0.391915,-0.909396,0.227629,0.337937,-0.913227,-0.139245,0.364572,-0.920705,-0.024894,0.265368,-0.963826,0.162826,0.0380188,-0.985922,0.154993,0.0270981,-0.987544,-0.0255971,-0.0465989,-0.998586,-0.0332187,-0.0598636,-0.997654,0.176544,0.235823,-0.955625,0.201356,0.181185,-0.962615,0.3855,0.382017,-0.839912,0.507809,0.305251,-0.805575,-0.129811,0.322312,-0.937691,-0.0742308,0.292442,-0.953398,-0.179341,0.139679,-0.973821,-0.303521,0.207004,-0.930067,-0.0465097,0.204193,-0.977825,0.208389,0.1246,-0.970077,0.676166,0.0691794,-0.733494,0.552422,0.182883,-0.813255,0.486541,-0.682917,0.544887,0.480281,-0.798077,0.363871,0.651328,-0.737143,0.179978,0.775297,-0.622415,0.107298,0.334945,-0.759834,0.557193,0.454032,-0.717812,0.527826,0.616148,-0.762596,0.197002,0.606373,-0.779951,0.154881,0.309297,-0.767042,0.562122,0.308751,-0.782789,0.540291,0.627018,-0.776717,0.0596594,0.651317,-0.738639,0.173779,0.306464,-0.824891,0.47501,0.300841,-0.795666,0.525747,0.757624,-0.652657,-0.00670579,0.781776,-0.605753,0.147951,0.340599,-0.781315,0.52301,0.34283,-0.789967,0.50835,0.755305,-0.650593,-0.0790198,0.769886,-0.638182,-0.000196417,0.372592,-0.761341,0.530599,0.369513,-0.749753,0.548937,0.78886,-0.612086,-0.055235,0.77635,-0.615697,-0.1349,0.386203,-0.74786,0.539956,0.396511,-0.775763,0.490888,0.74604,-0.232757,-0.623897,0.80692,-0.249349,-0.535449,0.725804,-0.0956737,-0.681216,0.818157,-0.148001,-0.55562,0.408015,0.227652,-0.884137,0.515995,0.21408,-0.829409,0.324379,0.411557,-0.851704,0.519519,0.355613,-0.776942,0.791436,-0.559677,-0.245743,0.814842,-0.571027,-0.0998011,0.483285,0.173748,-0.858049,0.482945,0.173738,-0.858242,-0.113243,0.581268,-0.805794,-0.111138,0.567894,-0.815564,0.485065,0.176602,-0.85646,0.482393,0.21859,-0.848243,-0.135598,0.538184,-0.831848,-0.130508,0.502238,-0.854824,-0.0978726,0.632926,-0.768001,-0.0917385,0.603699,-0.791916,0.699322,0.00735169,-0.714769,0.77538,-0.0450147,-0.629889,0.757613,-0.556914,-0.340397,0.774039,-0.575942,-0.262971,0.638636,-0.763643,-0.0948364,0.629414,-0.775602,-0.047737,0.297882,-0.950038,0.0932363,0.284435,-0.954316,0.0915329,0.692912,-0.601057,-0.398251,0.686153,-0.596113,-0.416945,0.107744,-0.971162,0.212687,0.205692,-0.973267,-0.102187,-0.0717056,-0.755433,0.651291,-0.0601622,-0.783809,0.618081,-0.399169,-0.806747,0.435688,-0.56752,-0.631049,0.528865,-0.58034,-0.682153,0.444829,-0.651909,-0.531124,0.541223,-0.0606036,-0.70765,0.703959,-0.0596444,-0.711859,0.699785,0.00352905,-0.886476,0.462762,-0.186708,-0.967471,0.170703,-0.369026,-0.840673,0.396345,-0.382892,-0.834013,0.397261,0.785906,-0.350195,-0.509623,0.796398,-0.346759,-0.495488,0.364515,0.0536627,-0.92965,0.364448,0.0555114,-0.929568,0.42541,0.130404,-0.895556,0.423656,0.156712,-0.892164,-0.209327,0.3579,-0.909994,-0.197941,0.313268,-0.928807,-0.768684,0.0624146,-0.636576,-0.683494,-0.139651,-0.716473,-0.725258,0.449697,-0.521319,-0.722201,0.341168,-0.601689,-0.683499,-0.139621,-0.716474,-0.366946,-0.539744,-0.757646,-0.190349,0.0934467,-0.977259,-0.291834,0.156349,-0.943604,-0.191031,0.128774,-0.9731,-0.22743,0.204406,-0.9521,-0.338322,0.0818306,0.937466,-0.357752,0.101047,0.928333,-0.262772,0.181453,0.947642,-0.399305,0.275725,0.874375,-0.217497,-0.00858679,0.976023,-0.256444,-0.0744461,0.963688,-0.287809,0.0818592,0.954183,-0.354031,-0.00587761,0.935215,-0.360243,0.171692,0.916922,-0.337366,0.140309,0.930858,-0.365697,-0.195414,0.909988,-0.518664,0.00465689,0.854965,-0.301808,0.26024,0.917163,-0.253196,0.314238,0.914957,-0.374548,0.282503,0.883123,-0.402839,0.24904,0.880738,-0.50112,0.252755,0.827644,-0.489803,0.270623,0.828768,-0.48756,-0.18762,0.852692,-0.566439,-0.380977,0.730755,-0.543449,0.157018,0.824626,-0.961725,-0.00780197,0.273905,-0.61421,-0.438531,0.656077,-0.817916,-0.112553,0.56422,-0.554209,0.578491,0.598499,-0.798078,0.243204,0.551293,-0.421644,-0.443394,0.79096,-0.478173,-0.345754,0.807344,-0.461464,-0.839413,0.287118,-0.462973,-0.839267,0.285107,-0.374502,0.258378,0.890499,-0.41101,0.193168,0.89093,-0.34742,-0.423824,0.836464,-0.338819,-0.408405,0.847589,-0.318604,0.725134,0.610469,-0.298196,0.696732,0.652414,-0.44958,0.59847,0.663107,-0.510794,0.691872,0.510297,-0.610704,-0.168796,0.773659,-0.645311,-0.407095,0.646411,-0.756858,0.287127,0.587132,-0.590661,0.585743,0.554999,-0.262291,-0.45196,0.852605,-0.186282,-0.316734,0.930042,-0.223608,-0.449705,0.864734,-0.389997,-0.642961,0.659169,-0.332216,-0.142002,0.932453,-0.303828,-0.0856902,0.948865,-0.180232,-0.658814,0.730397,-0.235091,-0.783066,0.575795,-0.386279,-0.152158,0.909745,-0.394876,-0.176612,0.901599,-0.389044,-0.0546151,0.919599,-0.217189,-0.154851,0.963769,-0.696192,0.107062,0.709827,-0.361017,-0.0369405,0.931827,-0.274228,-0.201763,0.940261,-0.279972,-0.232462,0.931438,-0.36581,-0.22912,0.902046,-0.368959,-0.252651,0.894448,0.0479906,-0.740552,0.670284,0.0402136,-0.759841,0.648864,-0.0231712,-0.776093,0.630193,-0.0215741,-0.762513,0.646613,0.182502,-0.933728,0.30797,0.169658,-0.933032,0.31728,0.178668,-0.932379,0.31424,0.177485,-0.935148,0.306589,-0.0113909,-0.760814,0.64887,-0.0124356,-0.774441,0.632524,-0.334058,-0.247503,0.909477,-0.33835,-0.286034,0.896495,0.155448,-0.101099,-0.982657,0.155241,-0.102463,-0.982549,0.30607,0.568291,-0.763784,0.436381,0.522773,-0.732311,0.000485405,0.828439,-0.56008,-0.16163,0.827437,-0.537796,-0.0111083,0.714832,-0.699208,-0.137245,0.709967,-0.690732,-0.464606,0.803929,-0.371268,-0.46321,0.794499,-0.392692,-0.370922,0.881734,-0.291484,-0.517407,0.820204,-0.24404,-0.696887,0.701588,0.148735,-0.782529,0.590254,0.198112,-0.727885,0.683902,0.0496152,-0.772991,0.629614,0.0779251,-0.765934,0.21372,0.606358,-0.768794,0.157779,0.619727,-0.752756,0.0147448,0.658135,-0.736293,0.185516,0.650736,-0.816207,0.577254,-0.0241782,-0.816112,0.577449,-0.0226581,-0.909664,0.403605,-0.0980487,-0.909754,0.402779,-0.100577,-0.202217,0.791992,-0.576071,-0.298173,0.780329,-0.549709,0.242872,0.514257,-0.822528,0.142656,0.538477,-0.830477,-0.439365,0.605015,-0.664014,-0.438543,0.605236,-0.664357,-0.694709,0.649464,-0.309155,-0.701276,0.644266,-0.305177,-0.613512,0.762079,-0.206976,-0.520184,0.817596,-0.246869,-0.00888438,0.383919,-0.923324,-0.0749169,0.388523,-0.918388,-0.527893,0.282761,-0.800859,-0.594402,0.25138,-0.763868,-0.219377,0.15704,-0.962919,-0.328221,0.135568,-0.934822,-0.855948,0.480505,0.190964,-0.860191,0.471429,0.194487,-0.81652,0.521673,0.247289,-0.76504,0.606273,0.217135,-0.474431,-0.363233,-0.801859,-0.564707,-0.446164,-0.694293,-0.30897,-0.607895,-0.731437,-0.216185,-0.477571,-0.851581,0.0657669,-0.971564,-0.22746,0.10093,-0.929438,-0.354905,0.41583,-0.764017,-0.493319,0.457023,-0.764555,-0.454518,0.4238,-0.0918848,-0.901083,0.401184,-0.0857675,-0.911973,0.655402,-0.030039,-0.754682,0.558777,0.0188951,-0.829103,-0.718293,0.441404,-0.53779,-0.82393,0.343215,-0.450936,-0.708825,-0.305978,-0.635566,-0.809114,-0.156837,-0.566336,-0.874463,-0.40769,0.262876,-0.990726,-0.109357,-0.0806439,-0.924502,0.364914,0.110157,-0.941743,0.335201,-0.0275647,-0.752215,-0.182142,0.633243,-0.745187,-0.247208,0.619342,-0.534838,-0.838041,0.107867,-0.39403,-0.904675,0.162185,-0.24747,-0.711084,0.658117,-0.332897,-0.70468,0.626582,0.0828616,-0.927719,0.363966,0.189614,-0.908275,0.372939,-0.2884,-0.639144,0.712966,-0.190757,-0.638673,0.745458,0.143322,-0.884289,0.444401,0.142364,-0.884522,0.444245,-0.340508,-0.681603,0.647666,-0.340727,-0.636697,0.691753,-0.0401062,-0.935082,0.352155,0.0993016,-0.915383,0.390145,-0.322419,-0.775992,0.542109,-0.593627,-0.664551,0.45385,-0.182044,-0.62733,0.757177,-0.163792,-0.711562,0.683265,-0.600114,-0.269506,0.753146,-0.614415,-0.199289,0.763399,0.309566,-0.947547,0.079519,0.320664,-0.94403,0.0773447,0.241464,-0.232704,-0.942096,0.228604,-0.407037,-0.884342,0.486961,-0.759739,0.430889,0.530444,-0.54652,0.648031,0.164921,-0.935887,0.311314,0.151943,-0.907309,0.39205,0.432923,-0.739135,0.516001,0.446399,-0.792426,0.41568,0.0648414,-0.686158,0.724557,0.0385448,-0.590182,0.80635,-0.0171017,-0.647458,0.761909,-0.0605497,-0.538123,0.840689,-0.36951,0.60321,-0.706824,-0.147557,-0.0597747,-0.987246,-0.547129,-0.151592,-0.823207,0.138555,-0.0210533,-0.990131,0.0393634,-0.109076,-0.993254,-0.280667,-0.658376,-0.698404,-0.0593178,-0.596129,-0.800694,0.0994229,-0.195224,-0.975706,0.152709,-0.153816,-0.976228,-0.0707182,-0.759271,-0.646921,-0.159856,-0.788244,-0.594236,0.153735,-0.195253,-0.968629,0.136469,-0.208321,-0.968493,-0.0995121,-0.80513,-0.58469,-0.0984002,-0.807583,-0.581488,0.235298,-0.221058,-0.94645,0.236118,-0.220394,-0.946401,-0.0508693,-0.835044,-0.547826,-0.0579614,-0.815668,-0.575609,-0.2548,-0.965395,-0.0555741,-0.253966,-0.965778,-0.0526665,-0.293691,-0.952528,-0.0802191,-0.28459,-0.956992,-0.0563517,0.25606,0.396093,-0.881784,0.293424,0.427725,-0.854958,0.334185,0.370849,-0.866482,0.367932,0.401607,-0.838652,0.263208,0.922639,-0.281884,0.296184,0.930019,-0.217576,0.312502,0.900968,-0.300996,0.324584,0.905437,-0.273548,-0.643874,0.751172,-0.145487,-0.715877,0.637906,-0.283895,-0.220306,0.930968,0.291141,-0.231747,0.934832,0.269041,-0.0854091,0.974644,-0.20682,-0.0988038,0.965683,-0.240196,-0.148619,0.924979,0.349752,-0.173788,0.940311,0.292598,-0.0113834,0.979105,-0.203036,0.0188782,0.992061,-0.124332,-0.148725,0.924964,0.349747,-0.128487,0.911957,0.389649,-0.0152274,0.989531,-0.143515,-0.00928264,0.991664,-0.128513,-0.385741,0.278696,-0.879507,-0.17237,0.48451,-0.857636,0.0155853,0.00228991,-0.999876,-0.0559605,0.0673966,-0.996156,-0.345564,-0.148702,-0.926538,0.0868021,-0.601294,-0.794299,-0.409628,-0.447996,0.794672,-0.425998,-0.458498,0.77994,-0.39813,-0.857765,0.325163,-0.418623,-0.859842,0.292278,-0.388131,-0.842657,0.373207,-0.415745,-0.849829,0.323955,-0.39541,-0.475287,0.785973,-0.384501,-0.469889,0.794584,-0.360796,-0.853447,0.376105,-0.355971,-0.850454,0.387314,-0.413036,-0.680142,0.605647,-0.391159,-0.64559,0.655902,-0.371776,-0.48334,0.792569,-0.0487385,-0.446663,0.893374,-0.322308,-0.86,0.395624,-0.336466,-0.872545,0.354199,-0.384487,-0.44551,0.808511,-0.377844,-0.456593,0.805454,-0.60087,-0.236838,0.763454,-0.386272,-0.459598,0.799727,-0.280009,-0.95803,-0.0614209,-0.230045,-0.966857,-0.110756,-0.356588,-0.855392,0.375699,-0.335596,-0.872734,0.354557,-0.273686,-0.953517,-0.126097,-0.247589,-0.956977,-0.15131,-0.27962,0.230103,0.932129,-0.288377,0.221397,0.93157,-0.23785,0.220603,0.945918,-0.247885,0.211189,0.94549,-0.312277,0.227562,0.922333,-0.310238,0.219346,0.925008,-0.0638122,0.692629,0.718466,-0.342232,0.628806,0.698198,-0.0892602,0.696469,0.712014,-0.0750075,0.703732,0.706495,-0.271221,0.208278,0.939712,-0.247785,0.228043,0.941594,-0.384274,-0.236447,0.892427,-0.381838,-0.233744,0.894183,-0.178406,-0.770234,-0.612299,-0.115719,-0.745217,-0.656705,0.057551,-0.216154,-0.974662,0.0484686,-0.187958,-0.980981,0.127182,-0.209886,-0.969419,0.145158,-0.195307,-0.96994,-0.122802,-0.742591,-0.658391,-0.128912,-0.745302,-0.654146,-0.263226,-0.693447,-0.670704,-0.232463,-0.677947,-0.697388,-0.249638,-0.956317,-0.152112,-0.272416,-0.953321,-0.130261,-0.313659,-0.938908,-0.141666,-0.344406,-0.932771,-0.106406,0.291341,0.410723,-0.86396,0.284082,0.424548,-0.859684,0.21304,0.42357,-0.880456,0.230587,0.391123,-0.890984,0.290171,0.901301,-0.321647,0.277709,0.909572,-0.309121,0.221181,0.925703,-0.306843,0.250383,0.908242,-0.335268,-0.369951,-0.648153,0.665608,-0.367831,-0.651021,0.663982,-0.362565,-0.832644,0.418629,-0.326303,-0.860861,0.390443,-0.391736,-0.792016,0.468245,-0.343271,-0.837174,0.4258,-0.305757,-0.383969,0.871252,-0.344295,-0.342546,0.874141,-0.411261,-0.0992733,0.906095,-0.678423,-0.367115,0.636372,-0.414194,-0.254019,0.874024,-0.332845,-0.378597,0.863643,-0.446065,-0.767963,0.459629,-0.493938,-0.765098,0.413099,-0.214953,0.114328,0.969909,-0.21888,0.119016,0.968466,-0.374972,0.195047,0.906285,-0.310073,0.129742,0.941818,0.080726,0.836953,0.541288,0.0804439,0.839928,0.536703,0.269879,0.500163,0.822801,0.0181681,0.698174,0.715697,0.162737,0.932496,0.32244,0.16754,0.925808,0.338836,-0.302287,-0.763855,-0.570218,0.0303805,-0.614717,-0.788162,0.148949,-0.690342,-0.707984,0.0798763,0.104535,-0.991308,0.130605,0.0680795,-0.989094,0.294172,-0.641724,-0.708274,0.337064,-0.669291,-0.662146,0.144224,-0.988813,0.038063,-0.0108854,-0.99479,-0.101363,-0.357526,0.923035,-0.142062,-0.33828,0.937942,-0.0763701,-0.514238,0.624491,0.587852,-0.563883,0.66406,0.490979,-0.371318,0.928121,-0.0267307,-0.382484,0.919834,-0.0872406,0.431088,-0.811874,-0.393731,0.4418,-0.800367,-0.405247,-0.474682,-0.30718,0.824813,-0.514057,-0.284187,0.80931,0.459805,-0.793583,-0.398505,0.477601,-0.809767,-0.340844,0.417614,-0.346327,-0.840033,0.425887,-0.318055,-0.847031,-0.179292,-0.848554,0.497806,-0.209405,-0.857975,0.469071,-0.68907,-0.489836,0.534081,-0.729047,-0.455727,0.510689,-0.41001,0.858459,0.308123,-0.461558,0.850745,0.251392,-0.497075,0.553365,0.668359,-0.485054,0.544437,0.684332,-0.0315117,-0.994667,-0.0982108,-0.0195643,-0.998142,-0.0577043,-0.26845,0.399292,0.876642,-0.244757,0.36744,0.897264,0.153409,0.529953,0.834035,-0.185912,0.652532,0.734601,-0.232723,0.682123,0.693216,-0.194676,0.647677,0.736624,0.0675404,-0.624823,-0.77784,0.0676547,-0.625037,-0.777658,0.274797,0.475876,-0.835481,0.23963,0.428988,-0.870946,-0.345531,-0.108058,0.932165,-0.367183,-0.0826949,0.926465,-0.346471,-0.139256,0.927667,-0.367554,-0.117291,0.922576,-0.409236,-0.208085,0.888384,-0.43822,-0.177646,0.881138,-0.385509,0.67335,0.630859,-0.379689,0.682648,0.624362,-0.161974,0.647706,-0.744474,-0.169754,0.653078,-0.73802,-0.032009,0.100444,-0.994428,-0.0296356,0.0978721,-0.994758,0.0813807,-0.418028,-0.904781,0.0659643,-0.451385,-0.889888,-0.299048,0.054869,-0.952659,-0.307917,0.0220699,-0.951157,-0.356487,0.575738,-0.735828,-0.398362,0.47562,-0.784279,-0.0146201,-0.496471,0.86793,0.0566869,-0.546172,0.835753,-0.387634,-0.138075,0.911414,-0.41354,-0.102781,0.904666,-0.501705,0.378523,0.777826,-0.607292,0.477135,0.635246,-0.150977,0.833429,0.531604,-0.145728,0.823213,0.54871,-0.110454,0.911367,0.396497,-0.112716,0.913232,0.391538,-0.208636,-0.724581,0.656851,-0.235749,-0.693437,0.680857,-0.263634,-0.215396,0.940267,-0.265469,-0.213289,0.940231,-0.550566,0.415475,0.724056,-0.548474,0.413739,0.726634,-0.24242,-0.498618,0.832233,-0.240084,-0.50117,0.831377,-0.187629,0.386936,0.902816,-0.327508,0.701534,0.63292,-0.256338,0.500295,0.82704,-0.0938168,0.60063,0.794003,-0.344135,0.136612,0.928929,-0.346609,0.140743,0.927391,-0.519816,0.228837,0.823058,-0.665193,0.350401,0.659345,-0.157612,-0.182331,-0.970522,-0.137855,-0.164381,-0.976716,0.103548,0.946295,0.306273,0.0625045,0.938536,0.339475,0.208314,-0.689455,0.693727,0.208958,-0.693577,0.689411,0.0906401,-0.518616,0.850189,-0.0420773,-0.625657,0.778963,-0.0287189,-0.69041,0.722848,0.0154087,-0.68565,0.727768,-0.00839876,-0.67139,0.741056,-0.0218943,-0.672252,0.739999,0.201081,-0.702315,0.682876,0.0956261,-0.726248,0.680749,-0.323775,0.353822,0.877485,-0.315931,0.342397,0.884846,-0.0945485,0.846655,0.523675,-0.0887468,0.849257,0.520468,-0.189753,0.564836,0.80309,-0.292337,0.487152,0.822935,0.768673,-0.298495,-0.565724,0.782043,-0.298957,-0.546839,-0.627282,0.625324,-0.464206,-0.627554,0.619077,-0.472144,-0.127875,-0.633601,0.763019,-0.0801671,-0.762757,0.641696,-0.617904,-0.49898,0.607629,-0.628916,-0.471747,0.617996,-0.121025,-0.627875,0.768847,-0.131794,-0.603292,0.786555,-0.535973,-0.371977,0.75787,-0.535714,-0.372615,0.757739,-0.895596,0.135892,0.423605,-0.851657,0.108848,0.512672,-0.953871,-0.0138509,0.299897,-0.962016,-0.00798313,0.272878,-0.915526,-0.396951,-0.0651351,-0.90734,-0.39404,0.146514,-0.831904,-0.551704,-0.0596532,-0.587287,-0.805313,-0.0810259,-0.127554,-0.990282,0.0554294,-0.635457,-0.771739,-0.0247721,-0.393567,0.61087,0.68698,-0.607111,0.319473,0.727567,-0.931929,0.0483408,0.359403,-0.482185,0.133533,0.865833,0.0594165,-0.73669,0.673615,-0.117817,-0.675426,0.727956,-0.0543775,0.139926,-0.988668,-0.360686,0.133869,-0.92303,-0.322424,-0.310029,0.894385,-0.470056,-0.298569,0.830605,-0.101006,-0.988168,-0.115421,-0.149666,-0.980777,-0.125208,0.596533,-0.663624,-0.451388,0.578358,-0.66015,-0.479274,-0.687575,-0.0877198,0.720795,-0.687151,-0.102381,0.719264,-0.729161,-0.144518,0.668908,-0.718996,0.0406933,0.693822,-0.0784248,-0.915698,0.39414,-0.0767502,-0.949512,0.304198,-0.395457,-0.909606,-0.127401,-0.4244,-0.899202,-0.106397,0.144845,0.437114,-0.887666,0.141562,0.433737,-0.889849,-0.139842,0.192684,0.971245,-0.137295,0.194489,0.971249,-0.156102,0.197696,0.967754,-0.174216,0.252039,0.951906,0.203153,-0.287328,-0.93604,0.193592,-0.275462,-0.941617,0.0609666,-0.661948,-0.747066,0.0922991,-0.712536,-0.695538,-0.371411,0.842814,0.38951,-0.376063,0.848168,0.373079,-0.825572,0.220218,0.519553,-0.812288,0.167405,0.558716,-0.187395,-0.62751,0.755721,-0.189534,-0.650558,0.735425,0.0146425,-0.769889,0.63801,0.0124518,-0.787671,0.61597,-0.382369,-0.445762,0.809377,-0.325936,-0.387132,0.862493,-0.136327,-0.810797,-0.569231,-0.101065,-0.798215,-0.593834,-0.120375,0.505267,0.854526,-0.125439,0.530851,0.83813,-0.101125,0.714089,-0.692712,-0.0303673,0.684992,-0.727917,-0.625076,0.353044,0.696161,-0.568062,0.536725,0.623884,0.414407,-0.817523,-0.399904,0.376975,-0.856168,-0.353364,-0.555636,-0.0596407,0.829284,-0.691926,0.131541,0.709884,0.19119,0.277609,-0.941477,0.194187,0.344104,-0.918632,0.46084,-0.305108,-0.833388,0.468653,-0.280582,-0.837638,-0.522589,0.648339,0.553676,-0.53392,0.660728,0.527606,0.432877,-0.430008,-0.792282,0.48865,-0.492665,-0.720071,-0.740608,0.588684,0.323962,-0.680484,0.647726,0.342625,-0.182868,0.978513,-0.0952481,-0.186358,0.978166,-0.0919846,-0.147829,-0.895773,0.419209,-0.148333,-0.896474,0.417531,-0.603583,0.112083,0.789383,-0.725673,0.285328,0.626088,-0.230924,-0.577562,0.783005,-0.227522,-0.580252,0.782011,0.0478306,-0.548339,0.834887,-0.120341,-0.471343,0.873701,-0.459948,-0.229004,0.857908,-0.500836,-0.181093,0.846385,0.108851,-0.955719,0.273408,0.0448422,-0.975435,0.215673,-0.253506,-0.00415504,0.967325,-0.263066,0.00596558,0.964759,-0.215822,0.578906,0.786313,-0.181487,0.53502,0.825116,0.0076414,0.983003,-0.183429,0.0249966,0.990422,-0.135789,-0.432604,0.311527,0.846053,-0.49059,0.497433,0.715459,0.0941808,-0.257258,-0.961742,0.0573686,-0.193213,-0.979478,-0.875065,0.304821,-0.375959,-0.965032,0.0989641,-0.242732,-0.0644256,0.596162,0.800275,-0.067912,0.594958,0.800882,-0.0658464,0.626472,0.776657,-0.0940873,0.697993,0.709896,-0.323622,-0.0629497,0.94409,-0.302753,-0.0800432,0.949702,0.789796,-0.28782,-0.541647,0.841064,-0.277616,-0.464264,-0.544484,0.725035,-0.421737,-0.543439,0.711894,-0.444838,0.0663126,-0.71541,0.695551,0.116192,-0.706292,0.69832,-0.974937,-0.0647455,-0.212851,-0.941255,-0.139707,-0.307443,-0.3909,-0.00521375,0.920419,-0.499068,0.250918,0.829441,-0.251695,0.676654,0.691946,-0.271892,0.702212,0.658007,-0.460538,0.394465,0.795174,-0.533567,0.225758,0.81507,-0.113368,-0.536963,0.835953,-0.291056,-0.234416,0.927543,-0.00828923,-0.877434,0.479625,-0.0287064,-0.771904,0.635091,0.344205,-0.927319,0.146979,0.395672,-0.907628,0.140196,-0.300719,-0.950279,-0.0808606,-0.317503,-0.941341,-0.114317,-0.805964,-0.590954,0.0345736,-0.904752,-0.240155,-0.35178,0.126866,0.941077,0.313493,0.127335,0.940211,0.315895,0.0617739,-0.235479,-0.969914,0.0543971,-0.215357,-0.975019,-0.209385,0.261898,0.942108,-0.22469,0.29947,0.927271,0.286367,0.105491,-0.952295,0.384254,0.0245272,-0.922902,-0.40909,-0.891097,0.196446,-0.615605,-0.78508,0.0684016,0.36825,0.444617,-0.816522,0.332249,0.398562,-0.854844,0.119457,0.440091,-0.889972,0.130608,0.43014,-0.893264,0.114196,0.731571,-0.672133,0.191623,0.633193,-0.749899,0.120365,0.988177,-0.0949619,0.148005,0.981468,-0.121718,0.0289135,0.946541,0.321286,0.0552548,0.951815,0.301654,-0.108281,0.800944,0.588867,-0.0396712,0.83307,0.551743,-0.225351,0.474966,0.850661,-0.349135,0.367751,0.861896,-0.419802,-0.00134941,0.907615,-0.637077,-0.300898,0.709643,0.332977,-0.923864,-0.188685,0.333292,-0.923932,-0.187792,0.339923,-0.597367,-0.726364,0.356432,-0.607148,-0.71016,-0.35114,-0.570297,-0.742605,-0.377988,-0.539241,-0.752558,0.53009,-0.0304461,-0.847394,0.297102,-0.0455313,-0.953759,0.736915,-0.671083,0.0812628,0.825282,-0.564658,0.00845369,0.738489,-0.41319,-0.532831,0.744889,-0.411804,-0.524936,0.817274,-0.246569,-0.520833,0.787529,-0.363487,-0.49767,0.811772,-0.252856,-0.526393,0.815157,-0.236257,-0.528869,0.399801,0.123887,-0.908191,0.277559,0.174985,-0.944638,0.661941,-0.0382956,-0.748577,0.502785,-0.0666186,-0.86184,-0.0352401,-0.756217,0.653371,-0.0227387,-0.781348,0.623681,0.0119303,-0.741413,0.670942,0.0481094,-0.733402,0.678091,0.279123,-0.815363,0.507221,0.277971,-0.794972,0.539214,0.568489,-0.812663,0.128058,0.580996,-0.794143,0.17827,0.730119,-0.422645,-0.536933,0.727442,-0.423444,-0.539928,0.0582722,0.218402,-0.974117,-0.108143,0.0822174,-0.99073,-0.0263896,0.252822,-0.967153,0.0532767,0.289866,-0.955583,-0.109126,0.0678599,-0.991709,-0.237775,0.0296539,-0.970868,-0.193896,0.208765,-0.958552,0.010585,-0.0035701,-0.999938,0.182235,0.259264,-0.948458,0.128204,0.210683,-0.969111,0.201817,0.616986,-0.760657,0.18544,0.631946,-0.7525,0.162887,0.899079,-0.406356,0.105861,0.923805,-0.367937,-0.0123555,0.989912,0.141143,-0.0199521,0.989092,0.145942,-0.1524,0.813727,0.560912,-0.102864,0.83845,0.535183,-0.187398,0.623373,0.759136,-0.190656,0.620901,0.76035,-0.241983,0.368686,0.897505,-0.288308,0.31829,0.903089,-0.27201,0.346046,0.897921,-0.283943,0.360145,0.888635,-0.303795,0.343841,0.888528,-0.273414,0.312136,0.909844,-0.296974,0.145958,0.943664,-0.342833,0.0755524,0.936353,-0.297607,0.116333,0.947574,-0.353866,0.161841,0.921188,-0.274819,-0.020479,0.961278,-0.270905,-0.0230054,0.962331,-0.186834,-0.316905,0.929873,-0.250392,-0.284064,0.925533,-0.165039,-0.30031,0.939455,-0.221963,-0.262308,0.93911,-0.10587,-0.620925,0.776687,-0.0354146,-0.652406,0.757041,-0.325993,-0.880177,0.344989,-0.0863884,-0.707405,0.70151,0.0961801,-0.0216668,-0.995128,0.130265,0.0281306,-0.99108,-0.288407,-0.185283,0.93941,-0.240024,-0.212288,0.947271,-0.296455,-0.0549408,0.953465,-0.322124,-0.0349907,0.946051,-0.36161,-0.0636058,-0.930157,0.0595122,-0.109684,-0.992183,-0.638027,0.689991,0.341809,-0.7397,0.618239,0.265753,-0.784137,-0.542221,0.30187,-0.803317,-0.523591,0.283784,-0.382282,0.0973601,0.918902,-0.274277,0.116944,0.954514,-0.764788,-0.543082,-0.346644,-0.692411,-0.583249,-0.424721,-0.0115977,-0.12039,-0.992659,-0.148905,0.0762565,-0.985907,0.0251251,-0.117,-0.992814,0.0176946,-0.106689,-0.994135,0.0877655,-0.0994817,-0.991161,0.010826,-0.00530189,-0.999927,0.121191,0.011737,-0.99256,-0.00954766,0.167202,-0.985876,0.179638,0.20376,-0.962399,0.147023,0.243557,-0.958678,-0.0638796,0.246357,-0.967072,-0.243488,-0.00130345,-0.969903,0.0373732,-0.0479634,-0.99815,0.0477868,-0.024038,-0.998568,0.0494527,-0.0282936,-0.998376,-0.0684832,0.024753,-0.997345,0.124321,-0.957645,-0.259733,0.105711,-0.969114,-0.222808,-0.270291,-0.925316,-0.265957,-0.206871,-0.868957,-0.449575,0.120438,-0.598119,-0.792306,0.0695842,-0.680162,-0.729752,-0.0283653,-0.014994,-0.999485,0.0011648,0.00752327,-0.999971,-0.0203461,-0.0076728,-0.999764,0.0277749,-0.0759625,-0.996724,-0.0274144,-0.0071501,-0.999599,0.0162139,-0.07654,-0.996935,-0.133999,-0.148452,-0.979799,0.0272052,0.000220369,-0.99963,-0.664523,-0.42999,-0.611161,-0.58004,-0.625209,-0.522175,-0.614259,0.486296,-0.621451,0.0151154,-0.159514,-0.98708,0.00717489,-0.155188,-0.987859,-0.521192,-0.101006,-0.847441,-0.302146,-0.168467,-0.938257,-0.16733,0.820438,0.546701,-0.123596,0.734517,0.66724,0.252528,0.928075,-0.27369,0.21247,0.941295,-0.262335,0.321785,0.679754,-0.659082,0.343716,0.665499,-0.662548,0.36074,0.298987,-0.883444,0.355711,0.304501,-0.8836,0.332781,0.0567404,-0.941295,0.310449,0.0921498,-0.946113,0.361529,0.203208,-0.909947,0.289543,0.272698,-0.917497,0.30589,0.0579063,-0.950304,0.291615,0.041964,-0.955615,0.212505,0.00112899,-0.977159,0.186306,0.0425729,-0.981569,0.155945,7.61129e-005,-0.987766,0.126523,-0.0516587,-0.990618,0.0986388,-0.0527553,-0.993724,0.0854247,-0.0769738,-0.993367,0.0424643,-0.0783249,-0.996023,0.02479,-0.114098,-0.99316,-0.0263938,-0.111728,-0.993388,-0.109714,-0.264698,-0.95807,0.331087,0.0502144,-0.942263,0.303982,0.166896,-0.937945,-0.00195124,0.927734,0.373236,0.207021,0.891933,0.401993,-0.201727,-0.199372,0.958935,-0.151413,-0.233351,0.960532,0.456422,-0.0386718,-0.888923,0.431985,-0.126996,-0.892895,0.37382,-0.926292,0.0473387,0.480301,-0.798062,0.363879,0.581807,-0.0310385,-0.812734,0.583171,-0.00515973,-0.812333,0.77551,-0.593792,-0.214466,0.653122,-0.747853,-0.118944,0.610942,-0.789087,-0.0639625,0.531968,-0.737939,-0.415279,0.745819,-0.290794,-0.599327,0.741773,-0.30642,-0.596556,0.556864,-0.396343,-0.729942,0.540505,-0.423064,-0.727236,-0.690581,-0.720938,-0.0578469,-0.690981,-0.709399,-0.138921,-0.966279,-0.255825,-0.0293045,-0.980363,-0.197158,-0.00422689,-0.825861,-0.485555,-0.286689,-0.905017,-0.163565,-0.392671,-0.491436,-0.808966,0.32259,-0.854918,-0.492981,0.161509,-0.921407,-0.361074,-0.143651,-0.878202,-0.458082,-0.137558,-0.863035,-0.457813,-0.213491,-0.834312,-0.505849,-0.219181,-0.842918,-0.518659,-0.143117,-0.838108,-0.525484,-0.146432,-0.958219,0.133466,-0.252987,-0.95018,0.220642,-0.22017,-0.937259,-0.348393,-0.0129864,-0.895783,-0.381695,-0.227775,-0.267715,-0.364689,0.891813,-0.377654,-0.33994,0.861289,-0.099002,0.993606,-0.0542808,-0.0174759,0.998082,-0.0593854,-0.0446778,0.937649,-0.3447,-0.0932896,0.933922,-0.345089,-0.851887,0.263464,-0.452633,-0.861398,0.213079,-0.461077,-0.0122442,0.83307,-0.553032,-0.0312572,0.833557,-0.551549,-0.849795,0.209763,-0.483579,-0.885012,0.00936755,-0.465474,0.649782,0.435557,-0.622955,0.57485,0.444107,-0.687253,0.781416,0.599701,0.172474,0.816663,0.552417,0.167027,0.814614,0.539325,0.213385,0.820004,0.532956,0.20869,0.738364,0.0328834,0.6736,0.746334,0.0288954,0.664944,0.289428,0.893569,-0.343169,0.357067,0.868996,-0.342562,-0.645181,0.375268,-0.665519,-0.12801,0.562903,-0.81655,0.386537,-0.0544646,-0.920664,0.337375,-0.0581353,-0.939574,0.182802,0.0120525,-0.983076,0.16014,-0.360096,-0.919068,0.533184,0.590769,-0.605563,0.786914,0.514466,-0.34072,-0.858876,0.352756,-0.371343,0.0805254,0.996748,-0.00285838,0.817435,0.570427,-0.0800795,0.75079,0.653521,-0.0960461,-0.367154,-0.654373,0.661055,-0.0065262,-0.768591,0.639707,0.660089,0.0679665,0.748106,0.763299,0.0359398,0.645044,-0.240715,-0.909258,-0.339567,-0.432472,-0.723463,-0.538116,-0.709078,-0.544761,-0.447709,-0.762399,-0.511456,-0.396435,-0.936551,0.0620543,-0.344995,-0.94286,0.0647064,-0.326847,-0.978227,-0.0316621,0.20511,-0.942243,-0.176121,0.284886,-0.0639278,0.57747,-0.813905,-0.31071,0.437183,-0.843997,-0.947095,0.179576,-0.266016,-0.947084,0.179607,-0.266033,-0.0835188,0.639351,-0.764366,0.0335843,0.680418,-0.732055,-0.986192,-0.138977,0.0900566,-0.978409,-0.0725828,0.193512,-0.936503,-0.221638,-0.271733,-0.955314,-0.197035,-0.220347,-0.951793,-0.305196,-0.0307462,-0.976058,-0.204969,0.0727869,-0.954116,-0.295779,-0.046664,-0.981709,-0.174003,0.0772656,-0.942755,-0.287036,-0.169774,-0.95362,-0.266604,-0.139756,-0.832454,-0.483693,-0.270298,-0.819519,-0.494259,-0.289994,-0.794054,-0.334226,-0.507712,-0.785483,-0.348297,-0.511572,-0.9944,0.00621185,-0.105502,-0.997076,0.0312366,-0.0697432,-0.991337,-0.131343,-0.000311262,-0.991029,-0.127576,-0.039815,-0.0979092,0.890801,0.44372,-0.0606563,0.884969,0.461682,-0.160333,0.377536,0.912009,-0.214903,0.390093,0.895346,0.82404,0.513498,0.239326,0.761831,0.540523,0.356999,0.789092,0.353125,0.50263,0.747401,0.41164,0.521483,0.587941,0.715527,0.377288,0.645006,0.704674,0.295637,0.708773,0.427335,0.561271,0.80916,0.280502,0.516313,0.395374,0.915766,-0.0710789,0.370555,0.926342,-0.0676729,0.429646,0.882536,0.19114,0.519826,0.843355,0.136135,-0.949992,-0.114032,0.290709,0.139488,-0.643684,0.752472,-0.901501,-0.210665,-0.378042,-0.914705,-0.18975,-0.356804,-0.909992,-0.187794,-0.369659,-0.922071,-0.155745,-0.3543,-0.903466,0.35104,-0.246007,-0.916079,-0.39694,-0.0569076,-0.836046,-0.441539,-0.325686,-0.901197,-0.33881,-0.27028,-0.952317,-0.304197,-0.0235996,-0.765341,-0.587196,-0.263539,-0.979743,-0.16145,-0.118476,-0.989569,-0.119948,-0.0797895,-0.960293,-0.129433,-0.247152,-0.972362,-0.10787,-0.207064,-0.920589,-0.345749,-0.181585,-0.940325,-0.330287,-0.0818482,-0.794933,-0.593037,-0.12802,-0.928832,-0.358669,0.0928862,-0.972433,0.0278873,-0.231508,-0.978111,0.144095,-0.150119,-0.994582,-0.0830869,-0.062473,-0.995139,-0.0792502,-0.0584588,-0.962825,0.172441,-0.207921,-0.964204,0.15537,-0.214872,-0.962073,0.146791,-0.229931,-0.962296,0.172543,-0.210272,-0.991658,-0.00273948,-0.128871,-0.99628,-0.0458155,-0.072982,-0.993066,0.0307516,-0.113463,-0.999308,0.0182952,0.0323863,-0.984597,0.163414,-0.0621736,-0.984481,0.169748,-0.0445175,-0.958165,-0.0214633,-0.28541,-0.964969,0.155985,-0.210958,-0.963656,0.233045,-0.130605,-0.96267,0.158763,-0.219227,-0.845873,0.524174,0.0986916,-0.855759,0.503412,0.119387,-0.97321,0.229269,-0.0172365,-0.988014,0.147398,0.0458543,-0.924061,0.380098,0.0404642,-0.947235,0.302727,0.105371,-0.698683,0.705493,0.118835,-0.692755,0.712773,0.109749,-0.455171,0.882158,0.120899,-0.408947,0.909553,0.0740031,-0.983584,-0.060603,-0.16997,-0.994926,0.0158537,-0.0993497,-0.995054,0.005014,-0.0992043,-0.992077,0.124688,-0.0153704,-0.1161,0.99299,0.0221701,-0.192641,0.97795,0.0806455,-0.987713,-0.141432,-0.0664777,-0.973874,-0.226337,-0.0184626,-0.968238,-0.194493,-0.157123,-0.972361,-0.186055,-0.141058,-0.97243,-0.152198,-0.176679,-0.964891,-0.161691,-0.206981,-0.926862,-0.238613,-0.289812,-0.970391,-0.210809,-0.117899,-0.906834,-0.158002,-0.390754,-0.925375,-0.156279,-0.345338,-0.868125,0.175909,-0.464129,-0.948048,0.0854814,-0.306429,-0.960205,0.156657,-0.231226,-0.94571,0.109562,-0.305989,-0.63295,-0.57123,0.522561,-0.641914,-0.557633,0.526301,-0.72628,-0.518135,0.451723,-0.733072,-0.505398,0.455168,-0.641636,-0.635356,0.429681,-0.64956,-0.622209,0.436952,-0.747568,-0.556553,0.362478,-0.753602,-0.543322,0.369979,-0.103687,-0.855848,0.506728,-0.0727872,-0.869,0.489429,-0.123924,-0.781772,0.611127,-0.0986676,-0.795909,0.597321,-0.638129,-0.688198,0.345217,-0.652464,-0.662888,0.367247,-0.763972,-0.565264,0.311165,-0.762148,-0.569543,0.307815,-0.861002,-0.448932,0.239031,-0.847174,-0.487089,0.212228,-0.078303,-0.925577,0.370373,-0.0884878,-0.921424,0.378349,-0.478622,-0.804004,0.352844,-0.509221,-0.768235,0.387954,-0.49551,-0.732536,0.466756,-0.521389,-0.702191,0.484852,-0.503019,-0.64959,0.570092,-0.528029,-0.619028,0.581369,-0.321362,-0.866177,0.382705,-0.290029,-0.889089,0.354123,-0.347974,-0.788108,0.507739,-0.306227,-0.820355,0.482952,-0.384485,-0.692516,0.610404,-0.33292,-0.741979,0.58192,-0.840707,-0.458264,0.288454,-0.830496,-0.48694,0.270494,-0.818377,-0.447146,0.360998,-0.813603,-0.45919,0.356644,-0.959309,-0.272023,-0.0756971,-0.965403,-0.246999,-0.0835938,-0.972502,-0.220877,-0.0738435,-0.97594,-0.201724,-0.0827564,-0.972308,-0.205871,-0.110613,-0.965979,-0.216243,-0.141859,-0.980072,-0.161433,-0.115753,-0.972959,-0.175785,-0.149833,-0.973,-0.168536,-0.157694,-0.971678,-0.169725,-0.164425,-0.982887,-0.123473,-0.136702,-0.977637,-0.129901,-0.165382,-0.973431,-0.113315,-0.198979,-0.968737,-0.112823,-0.220953,-0.97737,-0.0822455,-0.194893,-0.979704,-0.0818603,-0.182972,-0.961782,-0.0149386,-0.27341,-0.958556,-0.012542,-0.284627,-0.958548,-0.0125644,-0.284654,-0.969072,-0.0193294,-0.24602,-0.862159,-0.468481,0.192893,-0.872273,-0.441322,0.210654,-0.87185,-0.446952,0.200278,-0.869559,-0.452874,0.196909,-0.766755,-0.576682,0.282002,-0.76554,-0.579526,0.27946,-0.766047,-0.583824,0.268929,-0.758017,-0.601201,0.252918,-0.640384,-0.694137,0.328759,-0.627355,-0.717752,0.30209,-0.628118,-0.720235,0.294499,-0.612291,-0.7463,0.261029,-0.481131,-0.810469,0.334144,-0.458839,-0.83693,0.298354,-0.460478,-0.841138,0.283631,-0.431886,-0.871533,0.232173,-0.294064,-0.901145,0.318535,-0.269527,-0.918851,0.288215,-0.273346,-0.930138,0.245206,-0.23952,-0.950641,0.197263,-0.0915351,-0.950325,0.297497,-0.0806486,-0.954714,0.286385,-0.0823658,-0.975528,0.203864,-0.0703889,-0.979305,0.189756,-0.933835,-0.339221,0.113494,-0.931617,-0.345676,0.11224,-0.931211,-0.351514,0.0963573,-0.924932,-0.357218,0.129987,-0.919595,-0.368775,0.135461,-0.924984,-0.350034,0.147919,-0.91505,-0.347956,0.203984,-0.908024,-0.377422,0.181782,-0.956006,-0.2926,0.0209269,-0.954186,-0.299015,0.0108966,-0.955968,-0.286243,-0.0647319,-0.95912,-0.277804,-0.0539815,-0.937513,-0.0305068,-0.346611,-0.936777,0.0314455,-0.348512,-0.929834,0.0559881,-0.363694,-0.927985,0.110836,-0.355752,-0.971067,0.0419222,-0.235099,-0.935151,0.10831,-0.337285,-0.94147,0.0786771,-0.327787,-0.941344,0.076144,-0.328746,-0.947194,-0.211911,-0.240661,-0.965085,-0.185618,-0.184817,-0.869931,-0.450984,0.199584,-0.869843,-0.450971,0.199997,-0.747989,-0.603236,0.2768,-0.758026,-0.601575,0.251999,-0.586827,-0.753943,0.295305,-0.613067,-0.750064,0.248099,-0.858103,-0.500025,0.116765,-0.857635,-0.500136,0.119693,-0.071013,-0.991762,0.10661,-0.0479297,-0.989579,0.135781,-0.434137,-0.878922,0.19754,-0.389336,-0.88205,0.26534,-0.189074,-0.980548,0.0526893,-0.195256,-0.9798,0.0432215,-0.357166,-0.926329,0.119779,-0.392662,-0.917874,0.0576498,-0.556511,-0.811089,0.180083,-0.59058,-0.799581,0.109019,-0.724256,-0.661711,0.193887,-0.743428,-0.654465,0.137804,-0.919179,-0.393832,0.0025095,-0.920541,-0.389023,0.0355779,-0.0552039,-0.997655,0.0404491,-0.0470494,-0.997556,0.0516498,-0.195956,-0.960044,0.199792,-0.242231,-0.960464,0.137233,-0.939934,-0.328341,0.0933634,-0.924346,-0.37145,0.087235,-0.940999,-0.337412,-0.0259553,-0.947277,-0.320408,0.00209248,-0.94138,-0.330394,-0.0681392,-0.939153,-0.337908,-0.0617153,-0.930368,-0.364747,-0.0370673,-0.917916,-0.387948,-0.0832269,-0.898126,-0.428412,-0.0991572,-0.917856,-0.391246,-0.0668367,-0.870618,-0.481733,-0.0997885,-0.901491,-0.424869,-0.0824655,-0.907699,-0.409538,-0.0914352,-0.935287,-0.344813,-0.0796407,-0.942582,-0.317967,-0.102161,-0.944075,-0.316279,-0.0932242,-0.948998,-0.277265,-0.150092,-0.94277,-0.283562,-0.175436,-0.942431,-0.256626,-0.214399,-0.938612,-0.258857,-0.228037,-0.935027,-0.213235,-0.283295,-0.938953,-0.213154,-0.27006,-0.928584,-0.138383,-0.344357,-0.932962,-0.0804182,-0.350876,-0.897723,0.0254692,-0.439824,-0.895367,0.0515045,-0.44234,-0.923035,-0.0163286,-0.384368,-0.866762,0.00947153,-0.498632,-0.938764,-0.24116,-0.246097,-0.885845,-0.260577,-0.3839,-0.80474,-0.591075,-0.0549978,-0.824687,-0.528858,-0.200501,-0.786133,-0.585401,-0.198244,-0.790661,-0.569473,-0.224846,-0.63266,-0.773916,-0.0282148,-0.639698,-0.76543,-0.0700323,-0.137342,-0.990523,-0.00142638,-0.182052,-0.982095,-0.0484418,-0.226771,-0.491188,-0.841017,-0.304498,-0.349013,-0.886268,-0.184887,-0.971822,-0.146216,-0.192408,-0.972865,-0.128501,-0.270399,-0.80265,-0.531636,-0.243129,-0.783999,-0.571168,-0.810621,-0.485517,-0.327364,-0.782814,-0.551131,-0.288889,-0.767064,-0.572041,-0.290486,-0.739651,-0.62667,-0.245358,-0.691822,-0.690085,-0.212524,-0.706001,-0.666001,-0.240845,-0.714282,-0.66678,-0.212614,-0.716311,-0.679439,-0.158937,-0.630962,-0.764224,-0.133602,-0.630367,-0.770035,-0.0984056,-0.767464,-0.597988,-0.231104,-0.773012,-0.61965,-0.135962,-0.849614,-0.412582,-0.328531,-0.838036,-0.444641,-0.316212,-0.82832,-0.372777,-0.418238,-0.925284,-0.29995,-0.232122,-0.841882,-0.490761,-0.224471,-0.840087,-0.497064,-0.217213,-0.597994,-0.796612,-0.0883895,-0.59661,-0.798631,-0.0790247,-0.607418,-0.792461,-0.0552142,-0.594441,-0.801751,-0.0619239,-0.645771,-0.757717,-0.0940483,-0.681065,-0.727824,-0.0801397,-0.723612,-0.676122,-0.138725,-0.732174,-0.674099,-0.0975232,-0.633444,-0.765392,-0.113679,-0.633196,-0.768233,-0.094244,-0.682663,-0.715573,-0.148076,-0.688202,-0.715295,-0.121371,-0.627799,-0.771687,-0.101823,-0.627897,-0.771105,-0.105556,-0.672401,-0.727457,-0.136687,-0.670803,-0.727221,-0.145511,-0.650608,-0.75582,-0.0737939,-0.652462,-0.749087,-0.114728,-0.685973,-0.715746,-0.130952,-0.678133,-0.712809,-0.178995,-0.896225,-0.274585,-0.348402,-0.725467,-0.563118,-0.395721,-0.601306,-0.794785,-0.0821479,-0.602156,-0.793479,-0.0883149,-0.642216,-0.764711,-0.0526865,-0.653474,-0.74809,-0.115466,-0.767896,-0.601575,-0.2201,-0.796439,-0.586085,-0.148964,-0.811914,-0.508093,-0.287467,-0.842725,-0.486837,-0.229791,-0.728011,-0.656467,-0.197614,-0.741541,-0.649574,-0.167841,-0.764494,-0.582556,-0.276003,-0.78665,-0.56728,-0.243671,-0.708995,-0.679394,-0.189077,-0.702762,-0.682127,-0.20206,-0.722477,-0.63708,-0.26862,-0.739354,-0.625905,-0.24819,-0.702649,-0.682224,-0.202125,-0.680285,-0.689991,-0.247234,-0.683909,-0.681769,-0.25973,-0.684977,-0.681114,-0.258632,-0.655793,-0.746771,-0.110763,-0.611464,-0.780144,-0.132241,-0.751574,-0.575972,-0.321547,-0.666227,-0.6757,-0.315551,-0.63385,-0.769786,-0.0752648,-0.62147,-0.783036,-0.0250917,-0.497423,-0.854445,-0.149983,-0.448676,-0.891791,-0.0582968,-0.159565,-0.972077,-0.17206,-0.251395,-0.906776,-0.338463,-0.237342,-0.814714,-0.529064,-0.351273,-0.658628,-0.665445,-0.469042,-0.756705,-0.455408,-0.480528,-0.74172,-0.467915,-0.797799,-0.598553,-0.072469,-0.71611,-0.673691,0.182555,-0.789104,-0.540928,0.291052,-0.850259,-0.518695,0.0895239,-0.634215,-0.748837,-0.192389,-0.618184,-0.760406,-0.199075,-0.654823,-0.70976,-0.259707,-0.612477,-0.733446,-0.294837,-0.69952,-0.673811,-0.238013,-0.663766,-0.684184,-0.30217,-0.710103,-0.688456,-0.147587,-0.693153,-0.682854,-0.230759,-0.67009,-0.742265,-0.00483083,-0.677053,-0.733905,-0.0546173,-0.631108,-0.775634,0.00972531,-0.63349,-0.773751,0.000107252,-0.46178,-0.885576,0.0501499,-0.473927,-0.880338,0.0199334,-0.172772,-0.984366,0.0342657,-0.165039,-0.985057,0.0492384,-0.730517,-0.657185,-0.185617,-0.730933,-0.655825,-0.18876,-0.646305,-0.748522,-0.148341,-0.643599,-0.755988,-0.119427,-0.384402,-0.923148,-0.00580918,-0.3465,-0.920914,-0.178478,-0.528464,-0.843596,-0.0952501,-0.521945,-0.832925,-0.183874,-0.49657,-0.866704,-0.0473503,-0.480131,-0.856875,-0.187723,-0.639136,-0.763964,-0.0886787,-0.628739,-0.736938,-0.248212,-0.594366,-0.671102,-0.443115,-0.615729,-0.685631,-0.388315,-0.690825,-0.644806,-0.327087,-0.712128,-0.666794,-0.219678,-0.585262,-0.276276,-0.762325,-0.540339,-0.365819,-0.757767,-0.738996,-0.278697,-0.613362,-0.631433,-0.473811,-0.613837,-0.899386,-0.417596,-0.1293,-0.889263,-0.424395,-0.170585,-0.912242,-0.355952,-0.202765,-0.906521,-0.359913,-0.220638,-0.910905,-0.316342,-0.264916,-0.916424,-0.313339,-0.248971,-0.916577,-0.208754,-0.341039,-0.922782,-0.149887,-0.354974,-0.911572,-0.268091,-0.311712,-0.924615,-0.265249,-0.273367,-0.749041,-0.652147,-0.116801,-0.808264,-0.568049,-0.155014,-0.822523,-0.550174,-0.144099,-0.860335,-0.480355,-0.170539,-0.888591,-0.378006,-0.259843,-0.899244,-0.345414,-0.26842,-0.876501,-0.369042,-0.309118,-0.872945,-0.37094,-0.316811,-0.904896,-0.315435,-0.285769,-0.896084,-0.318956,-0.308707,-0.866668,-0.30588,-0.394112,-0.869399,-0.305598,-0.388271,-0.899748,-0.249234,-0.358241,-0.895288,-0.248936,-0.369447,-0.889569,-0.396682,-0.226519,-0.862591,-0.462622,-0.204738,-0.851453,-0.478744,-0.214085,-0.812348,-0.551931,-0.188314,-0.875561,-0.420057,-0.238633,-0.851107,-0.435643,-0.292971,-0.519289,-0.00901639,-0.854551,-0.541332,0.048266,-0.839422,-0.518522,0.0497884,-0.853613,-0.533391,0.135446,-0.834954,-0.648336,-0.0403671,-0.760284,-0.665485,0.0387378,-0.745405,-0.606056,-0.0152294,-0.795276,-0.59935,0.103881,-0.793718,-0.788273,-0.171378,-0.590978,-0.774668,0.022154,-0.63198,-0.699799,-0.0862301,-0.709116,-0.686795,0.0594046,-0.72442,-0.805619,-0.145333,-0.574332,-0.826212,-0.154453,-0.541774,-0.76594,0.00505504,-0.642892,-0.802339,-0.00692178,-0.596828,-0.853869,-0.105564,-0.509671,-0.857355,-0.107015,-0.503478,-0.824106,0.0412202,-0.564934,-0.871369,0.0223211,-0.490121,-0.883581,-0.00186453,-0.468275,-0.887777,-0.0463185,-0.457937,-0.391814,0.00285731,-0.92004,-0.428419,0.0934573,-0.898734,-0.231335,-0.00787913,-0.972842,-0.144403,0.0513189,-0.988187,-0.11116,0.128706,-0.985433,-0.146493,0.171049,-0.974311,-0.307227,0.110528,-0.945196,-0.335164,0.161288,-0.928252,-0.43854,0.0951147,-0.893664,-0.466624,0.157079,-0.870395,-0.916444,-0.171058,-0.361759,-0.844931,-0.176317,-0.504979,-0.559998,-0.0368338,-0.827675,-0.550362,-0.0635823,-0.832501,-0.611088,-0.0217613,-0.791263,-0.585,-0.193609,-0.787585,-0.702866,-0.0913188,-0.705436,-0.677744,-0.264492,-0.686081,-0.760754,-0.159746,-0.629075,-0.851917,-0.160913,-0.498342,-0.942468,-0.321302,-0.0923028,-0.980628,-0.194426,-0.0238159,-0.816946,-0.557168,0.148873,-0.840163,-0.536066,0.0822125,-0.704239,-0.676572,0.215171,-0.721187,-0.669199,0.179057,-0.782995,-0.50329,0.365538,-0.812435,-0.49178,0.313212,-0.976223,-0.170746,-0.133546,-0.950329,-0.259829,-0.171356,-0.778589,-0.596587,0.194638,-0.73872,-0.665781,0.105011,-0.413535,-0.90089,0.131855,-0.415541,-0.899571,0.134524,-0.791029,-0.495413,0.358942,-0.709018,-0.511064,0.485909,-0.812281,-0.468441,0.347508,-0.792506,-0.526326,0.308082,-0.791923,-0.523102,0.314997,-0.77397,-0.570796,0.274157,-0.420478,-0.820729,0.386785,-0.458477,-0.77438,0.436045,-0.413963,-0.833112,0.366824,-0.421081,-0.83422,0.356046,-0.769352,-0.439373,0.463734,-0.767871,-0.439576,0.46599,-0.726707,-0.598103,0.33789,-0.696106,-0.605325,0.386027,-0.943629,-0.301988,0.135527,-0.940992,-0.22224,0.255231,-0.952583,-0.272631,0.135121,-0.891679,-0.354624,0.281336,-0.885547,-0.322328,0.334533,-0.839552,-0.328761,0.432514,-0.459145,-0.789924,0.406455,-0.457481,-0.791963,0.404359,-0.817194,-0.512784,0.263148,-0.812641,-0.523407,0.25624,-0.836221,-0.492146,0.241924,-0.791946,-0.510605,0.334821,-0.788681,-0.514541,0.336498,-0.774206,-0.518409,0.363121,-0.787444,-0.502187,0.357408,-0.82991,-0.48991,0.266903,-0.834418,-0.309488,-0.45603,-0.895361,-0.177585,-0.408403,-0.403758,-0.848297,-0.342595,-0.406012,-0.845858,-0.345946,-0.378366,-0.655589,-0.653485,-0.364332,-0.702677,-0.611153,-0.771247,-0.59511,-0.225879,-0.815337,-0.549691,-0.181841,-0.742934,-0.668951,-0.0235213,-0.68764,-0.718272,-0.106004,-0.834698,-0.305661,-0.458094,-0.661844,-0.143824,-0.735715,-0.340884,-0.289431,-0.894443,-0.354467,-0.307808,-0.882954,-0.299482,-0.262522,-0.917275,-0.340368,-0.170741,-0.924661,-0.61332,-0.724651,-0.314198,-0.743336,-0.6685,-0.0236384,-0.666734,-0.254596,-0.700461,-0.436846,-0.364279,-0.822476,-0.561254,-0.465002,-0.684666,-0.567941,-0.554157,-0.608566,-0.536755,-0.34221,-0.771224,-0.522858,-0.333579,-0.784438,-0.569557,-0.571021,-0.591218,-0.59552,-0.565394,-0.570689,-0.416606,-0.535738,-0.734455,-0.391381,-0.750786,-0.53211,-0.523152,-0.33529,-0.783513,-0.187113,-0.369031,-0.910387,-0.529899,-0.596608,-0.602715,-0.500836,-0.596846,-0.626848,-0.52797,-0.537867,-0.657227,-0.499682,-0.548744,-0.670223,-0.585404,-0.330448,-0.740342,-0.604788,-0.317622,-0.730307,-0.571089,-0.11854,-0.812285,-0.583789,-0.0989544,-0.805853,-0.341497,-0.503521,-0.793629,-0.353862,-0.484979,-0.799735,-0.443683,-0.345764,-0.826797,-0.486828,-0.326349,-0.810244,-0.489754,-0.224964,-0.842337,-0.610251,-0.105198,-0.785192,-0.463555,-0.0958227,-0.880871,-0.548009,-0.00609648,-0.83645,-0.310197,-0.228588,-0.922781,-0.26008,-0.102067,-0.960178,-0.215368,-0.415442,-0.883756,-0.181239,-0.413849,-0.892122,-0.176855,-0.429194,-0.885729,-0.123221,-0.440975,-0.88902,-0.119337,-0.462352,-0.878629,-0.185378,-0.41498,-0.890745,-0.060509,-0.470297,-0.880432,-0.179309,-0.390464,-0.902987,-0.315279,-0.632631,-0.707374,-0.085352,-0.480766,-0.872685,-0.39077,-0.489874,-0.779309,-0.424708,-0.487791,-0.762681,-0.666357,-0.695713,-0.268238,-0.55358,-0.763426,-0.332761,-0.547939,-0.76956,-0.327933,-0.406647,-0.785192,-0.467024,-0.676967,-0.734495,-0.0472564,-0.74008,-0.67022,-0.055563,-0.396674,-0.894176,0.207602,-0.343989,-0.881966,0.322192,-0.501071,-0.8583,0.11067,-0.582858,-0.812572,-0.00203287,-0.758668,-0.643808,-0.0996671,-0.81278,-0.572525,-0.107723,-0.801503,-0.592838,-0.0783341,-0.745444,-0.655261,-0.122253,-0.608711,-0.775072,-0.169512,-0.682338,-0.72646,-0.0816765,-0.485957,-0.86243,-0.14163,-0.510528,-0.826979,-0.235515,-0.286069,-0.732334,-0.617942,-0.408909,-0.783593,-0.467735,-0.293396,-0.955987,-0.00277974,-0.206583,-0.958146,0.19819,-0.438154,-0.879201,0.187156,-0.339246,-0.885089,0.318636,-0.532083,-0.838422,0.118056,-0.442168,-0.859469,0.256516,-0.518517,-0.813405,0.263654,-0.46222,-0.818003,0.342381,-0.394399,-0.903054,0.170128,-0.504902,-0.86247,0.034911,-0.514922,-0.754191,0.407494,-0.427053,-0.753619,0.499684,-0.462634,-0.816379,0.34568,-0.384033,-0.814804,0.434295,-0.584075,-0.811698,-0.00152036,-0.66074,-0.746161,-0.0816409,-0.676443,-0.733149,-0.0701254,-0.74617,-0.655681,-0.11538,-0.509258,-0.85981,0.0371793,-0.589409,-0.806948,-0.037849,-0.61322,-0.789677,-0.0192633,-0.672078,-0.738564,-0.0532322,-0.253221,-0.961299,-0.108554,-0.167339,-0.95756,-0.234684,-0.328619,-0.917833,-0.222693,-0.332153,-0.914514,-0.230953,-0.263055,-0.763982,-0.58918,-0.274809,-0.737017,-0.617483,-0.215487,-0.519503,-0.826851,-0.230351,-0.539561,-0.809823,-0.132316,-0.583074,-0.801572,-0.293079,-0.745544,-0.598555,-0.275752,-0.757421,-0.591839,-0.402915,-0.78328,-0.473426,-0.406383,-0.779785,-0.476223,-0.450823,-0.768358,-0.454295,-0.636936,-0.770792,0.0138255,-0.64982,-0.760003,0.0113246,-0.601077,-0.799158,-0.00728683,-0.611689,-0.790976,-0.0139164,-0.482063,-0.875903,-0.0202144,-0.525306,-0.848581,-0.0629657,-0.303967,-0.949685,0.0755136,-0.404136,-0.912812,-0.0587278,-0.200186,-0.947904,0.247798,-0.313354,-0.946396,0.0783794,-0.245783,-0.877341,0.412144,-0.356922,-0.891951,0.277544,-0.352418,-0.615749,-0.704737,-0.468564,-0.47027,-0.747859,-0.817608,-0.562937,-0.120912,-0.857347,-0.498352,-0.128847,-0.857287,-0.498505,-0.128652,-0.882816,-0.449501,-0.136325,-0.746682,-0.654645,-0.117926,-0.792347,-0.591161,-0.150713,-0.790369,-0.596831,-0.138236,-0.825099,-0.540927,-0.163124,-0.660053,-0.747551,-0.0741464,-0.714229,-0.686047,-0.138625,-0.714775,-0.674892,-0.18335,-0.748414,-0.653799,-0.11146,-0.582952,-0.812391,0.0137138,-0.638767,-0.765281,-0.0795043,-0.641336,-0.765387,-0.0535814,-0.66863,-0.734224,-0.117684,-0.556991,-0.823958,0.104187,-0.507755,-0.839779,0.192242,-0.768955,-0.571423,0.286678,-0.780388,-0.566431,0.264861,-0.440824,-0.792866,0.42076,-0.4425,-0.790898,0.422699,-0.854599,-0.504467,-0.12318,-0.830283,-0.542648,-0.127135,-0.730057,-0.631514,-0.261166,-0.66378,-0.701008,-0.260737,-0.526618,-0.751003,-0.398332,-0.438894,-0.805162,-0.398855,-0.131393,-0.985803,-0.104537,-0.054667,-0.998212,0.0241637,-0.770133,-0.522672,0.365662,-0.766789,-0.528445,0.364389,-0.766146,-0.519758,0.377985,-0.764836,-0.522006,0.37754,-0.763804,-0.578908,0.285428,-0.800813,-0.525057,0.288121,-0.569996,-0.750738,0.333912,-0.526745,-0.755478,0.389605,-0.522023,-0.724547,0.450026,-0.532207,-0.723558,0.439566,-0.25761,-0.833035,-0.489581,-0.355835,-0.744434,-0.564977,-0.736148,-0.555716,-0.38635,-0.703848,-0.585533,-0.402179,-0.840584,-0.537363,-0.0682542,-0.843404,-0.527382,-0.102653,-0.843765,-0.441333,0.305427,-0.833481,-0.464286,0.29958,-0.839097,-0.489156,0.237997,-0.833321,-0.492363,0.251308,-0.87228,-0.461251,0.162405,-0.860075,-0.48717,0.151447,-0.864689,-0.412222,0.287028,-0.844475,-0.460277,0.273874,-0.744198,-0.663546,0.0766592,-0.75605,-0.652747,-0.0480636,-0.411929,-0.814571,0.408397,-0.43731,-0.824531,0.359037,-0.806521,-0.561046,0.186414,-0.803604,-0.561006,0.198731,-0.439333,-0.778156,0.448842,-0.444338,-0.780141,0.440391,-0.79018,-0.543286,0.283646,-0.806237,-0.505539,0.307265,-0.444291,-0.773492,0.452013,-0.440697,-0.772228,0.457657,-0.778382,-0.539974,0.320234,-0.789197,-0.514975,0.334618,-0.78913,-0.535149,0.301478,-0.778423,-0.557909,0.287742,-0.591598,-0.793918,-0.14038,-0.580591,-0.766989,-0.273206,-0.683418,-0.699358,0.209377,-0.633255,-0.716191,0.293358,-0.727008,-0.639509,0.249974,-0.68755,-0.653011,0.317572,-0.642828,-0.677226,0.357962,-0.603384,-0.682792,0.411974,-0.692752,-0.61691,0.37352,-0.6519,-0.623483,0.431619,-0.606429,-0.666619,0.433432,-0.596408,-0.667734,0.445453,-0.651483,-0.62865,0.424699,-0.622745,-0.631732,0.461632,-0.598359,-0.659602,0.454854,-0.562717,-0.657205,0.501429,-0.663936,-0.62727,0.407088,-0.623406,-0.623973,0.471192,-0.777498,-0.585884,0.228552,-0.776396,-0.58646,0.230812,-0.832421,-0.518294,0.196077,-0.835451,-0.516225,0.188503,-0.442436,-0.797522,0.410133,-0.457311,-0.801672,0.384954,-0.812566,-0.525216,0.252753,-0.786109,-0.577729,0.219687,-0.738514,-0.662773,0.123811,-0.687519,-0.689762,0.227037,-0.757902,-0.62276,0.194307,-0.72765,-0.637336,0.253631,-0.854138,-0.505912,-0.120416,-0.860824,-0.492762,-0.127151,-0.862128,-0.498414,-0.0912065,-0.848434,-0.517513,-0.111088,-0.726686,-0.674261,-0.131532,-0.766619,-0.616761,-0.178609,-0.776498,-0.621568,-0.103463,-0.772873,-0.628112,-0.0902333,-0.547942,-0.822475,-0.152626,-0.595878,-0.775444,-0.208844,-0.632155,-0.773527,-0.0451228,-0.636892,-0.768168,-0.0654702,-0.635563,-0.771945,-0.0126464,-0.659385,-0.751792,-0.00459307,-0.725471,-0.683045,-0.0845038,-0.781259,-0.621417,-0.0589534,-0.815595,-0.569672,-0.101384,-0.855047,-0.512377,-0.0797814,0.0551432,-0.962537,0.265485,-0.0242395,-0.998314,0.0527317,0.212915,-0.851233,0.479656,0.0367309,-0.961577,0.272069,0.00345392,-0.746008,0.665928,-0.22403,-0.783226,0.579972,-0.218124,-0.591382,0.776331,-0.455166,-0.600028,0.657868,-0.667423,-0.381543,0.639509,-0.490405,-0.519165,0.699979,-0.835848,-0.315915,0.44895,-0.890649,-0.25673,0.37528,-0.959918,-0.18933,-0.206666,-0.967256,-0.177796,-0.18112,-0.56216,-0.431451,-0.705568,-0.786614,-0.211046,-0.580257,-0.247544,-0.456126,-0.854793,-0.341918,-0.890755,-0.299413,0.118263,-0.991973,0.0447669,0.117141,-0.882118,-0.45623,-0.610147,-0.791766,-0.0287664,-0.525338,-0.829799,-0.188295,-0.651632,-0.672715,-0.350471,-0.315374,-0.744254,-0.588749,-0.317199,-0.737513,-0.596204,-0.139686,-0.801273,-0.581765,-0.218019,-0.959795,-0.176809,-0.235895,-0.946821,-0.218824,-0.550198,-0.77547,0.309723,-0.371032,-0.914672,0.160345,-0.696921,-0.697107,0.168354,-0.610262,-0.764119,0.20905,-0.639542,-0.767486,0.0441731,-0.59493,-0.798811,0.0892162,-0.417151,-0.908565,0.0222342,-0.454592,-0.890009,-0.0350663,-0.150658,-0.98327,0.102383,-0.22023,-0.974317,-0.0469548,-0.662079,-0.694252,0.282251,-0.532516,-0.802669,0.268606,-0.0448413,-0.98396,0.172664,-0.160962,-0.986648,-0.0248467,-0.0115311,-0.907234,0.420469,-0.202944,-0.951648,0.23061,-0.232597,-0.758629,0.608589,-0.423193,-0.769173,0.478833,-0.455086,-0.600689,0.65732,-0.570714,-0.60861,0.551252,-0.657746,-0.509377,0.554892,-0.682573,-0.482432,0.548957,-0.866476,-0.379945,0.323823,-0.818677,-0.441772,0.366885,-0.914685,-0.376026,-0.148175,-0.926016,-0.358648,-0.117752,-0.772766,-0.38223,-0.506688,-0.783912,-0.370156,-0.498464,-0.535304,-0.289391,-0.793538,-0.468328,-0.40112,-0.787256,-0.213751,-0.624022,-0.751603,-0.155222,-0.402671,-0.902088,-0.24551,-0.88307,-0.399891,-0.0966669,-0.67061,-0.735485,-0.374131,-0.791949,-0.482537,-0.298094,-0.772142,-0.561193,-0.322418,-0.746178,-0.582464,-0.26199,-0.749169,-0.608364,-0.239967,-0.820065,-0.519528,-0.277462,-0.80693,-0.521419,-0.330076,-0.926011,-0.183175,-0.368421,-0.898601,-0.238291,-0.469523,-0.875365,0.115259,-0.488853,-0.872363,0.00225114,-0.674239,-0.735559,0.0659908,-0.602712,-0.793093,0.0879822,-0.624759,-0.780468,-0.0233926,-0.600208,-0.799834,-0.00402173,-0.457791,-0.886828,-0.0629549,-0.492327,-0.864131,-0.104365,-0.221254,-0.975212,-0.00292119,-0.301855,-0.944424,-0.130181,-0.631722,-0.763979,0.131391,-0.536959,-0.836595,0.108557,-0.509592,-0.702255,0.497146,-0.586095,-0.6699,0.45577,-0.523932,-0.591413,-0.612965,-0.226383,-0.561428,-0.795958,-0.48346,-0.780288,-0.396758,-0.455873,-0.7735,-0.440315,-0.0535012,-0.783405,-0.619204,0.108959,-0.860243,-0.498106,-0.368728,-0.815933,-0.445301,-0.25775,-0.85189,-0.455903,-0.565093,-0.824979,-0.0089659,-0.548211,-0.835575,-0.0357576,-0.498754,-0.815498,0.293611,-0.547187,-0.804098,0.232407,-0.105576,-0.67078,0.734103,-0.00739008,-0.721215,0.692672,0.231249,-0.866628,0.44213,0.189093,-0.613912,0.766391,-0.607089,-0.541749,0.581336,-0.766697,-0.477063,0.429636,-0.774932,-0.57474,-0.262974,-0.683404,-0.657813,-0.316609,-0.151293,-0.952108,-0.265708,-0.132915,-0.927626,-0.34906,-0.0149038,-0.844483,0.535374,-0.01825,-0.870453,0.491913,-0.147483,-0.902693,0.404219,-0.0912913,-0.816569,0.569984,-0.468986,-0.697921,0.541257,-0.533276,-0.65347,0.537209,-0.254073,-0.678324,-0.689437,-0.286847,-0.317957,-0.903672,-0.0160243,0.0326338,-0.999339,-0.00904434,-0.0995814,-0.994988,0.26283,-0.00569976,-0.964825,0.29421,0.069933,-0.953179,0.416439,-0.017427,-0.908997,0.383091,-0.0687836,-0.921146,-0.138926,-0.530396,0.836289,0.102544,-0.558979,0.822816,0.0270705,-0.413387,0.910153,0.305663,-0.363044,0.88021,-0.0340263,0.0312701,0.998932,-0.0389076,0.0614786,0.99735,-0.206549,0.0243656,0.978133,-0.228918,-0.079295,0.970211,-0.265388,-0.0878443,0.960132,-0.193303,-0.763491,0.61621,-0.219965,-0.768694,0.600603,-0.0412429,-0.920249,0.389154,-0.273955,-0.855167,0.440044,-0.359567,-0.883798,0.299353,-0.554535,-0.758969,0.341257,-0.504939,-0.768252,0.393479,0.184318,0.0332947,0.982303,0.179583,-0.00759953,0.983713,0.311086,-0.0810743,0.946917,0.234699,-0.277451,0.931632,0.0270098,-0.638244,-0.76936,-0.219525,-0.535439,-0.815545,0.411016,-0.254115,-0.875495,0.447063,-0.257027,-0.85678,-0.244098,-0.762106,0.599676,-0.208712,-0.775018,0.596478,-0.40162,-0.802762,0.440766,-0.421543,-0.797297,0.431993,-0.148725,-0.71175,0.686508,-0.390209,-0.495902,0.77577,-0.15723,-0.941651,-0.297611,-0.139193,-0.970237,-0.198156,-0.370498,-0.82005,0.436176,-0.44929,-0.747667,0.489012,0.269367,-0.920733,-0.282299,0.260158,-0.913654,-0.312336,-0.180684,-0.716433,0.673852,-0.0120792,-0.781738,0.62349,-0.405515,-0.650313,-0.642379,-0.358878,-0.689329,-0.629311,-0.0630965,-0.922373,0.381114,-0.230834,-0.709865,0.665437,-0.242652,-0.8553,0.457801,-0.243653,-0.849174,0.468548,-0.733439,-0.113473,0.670217,-0.49852,-0.271829,0.823156,-0.0602025,-0.918474,0.390873,-0.0365896,-0.998861,-0.0306184,-0.351811,0.00609679,-0.936051,-0.27222,-0.0788668,-0.958998,-0.0421955,0.0873788,-0.995281,-0.0168145,0.0275636,-0.999479,0.276131,0.039955,-0.960289,0.266712,0.0898824,-0.959576,0.456857,0.00246012,-0.889537,0.465058,-0.0733784,-0.882234,0.587463,-0.153526,-0.794555,0.595311,-0.1989,-0.778488,0.893821,-0.444474,-0.0593809,0.916791,-0.361095,-0.170601,0.605071,-0.25848,0.753045,0.626775,-0.329334,0.706182,0.507188,-0.207819,0.836404,0.579877,-0.184059,0.793641,0.561196,-0.093661,0.822367,0.574539,-0.179872,0.798468,0.488366,0.0466816,0.87139,0.510848,-0.057369,0.857755,0.267652,0.240482,0.933022,0.306096,0.129303,0.943179,-0.0245976,0.272996,0.961701,-0.00979355,0.246542,0.969083,-0.298705,0.16973,0.939131,-0.27575,0.146905,0.949937,-0.787534,-0.615461,-0.0315941,-0.781837,-0.438516,-0.443209,-0.295907,-0.377848,-0.877308,-0.290464,-0.381648,-0.877482,-0.12836,-0.394843,-0.909738,-0.143203,-0.404341,-0.903328,0.0646149,-0.460679,-0.885212,0.0549748,-0.464928,-0.88364,0.162757,-0.577197,-0.800221,0.269723,-0.55362,-0.78788,0.285971,-0.629893,-0.722119,0.278852,-0.630613,-0.724271,0.885382,-0.428959,-0.179146,0.293824,-0.632731,-0.716463,0.682685,-0.14502,0.716177,0.70785,-0.129983,0.694301,0.605772,-0.0998612,0.789347,0.546976,-0.156244,0.822438,0.528554,-0.267908,0.805516,0.438333,-0.142782,0.887399,0.372785,-0.298766,0.878505,0.329473,-0.247898,0.91104,0.160687,-0.238819,0.957677,0.191179,-0.271054,0.943388,-0.0522965,-0.181897,0.981926,-0.0119017,-0.219624,0.975512,-0.285573,-0.185032,0.940325,-0.259309,-0.208439,0.943033,-0.704909,-0.240492,0.667283,-0.268692,-0.962298,0.0422738,-0.287861,-0.957388,0.0233412,-0.0616194,-0.998099,-0.0012824,-0.151009,-0.984608,0.0879961,-0.0049023,-0.995522,0.094401,-0.0080507,-0.995292,0.0965875,0.0647573,-0.992599,0.102731,0.0414699,-0.992954,0.111008,0.132907,-0.987064,0.0896651,0.0584421,-0.993352,0.0991816,0.358851,-0.889937,0.281493,0.33435,-0.896839,0.289637,-0.914486,0.330444,0.233498,-0.918593,0.328977,0.219001,-0.811235,0.43999,0.385106,-0.83535,0.436703,0.333887,-0.926962,0.216311,0.306514,-0.915643,0.209543,0.343058,-0.82574,0.291597,0.482829,-0.790743,0.277313,0.545732,-0.679596,0.524422,0.512963,-0.701899,0.525474,0.480848,-0.631172,0.297342,0.716387,-0.69409,0.324139,0.642786,-0.669978,0.723701,-0.165492,-0.671296,0.722094,-0.167156,-0.800903,0.571305,-0.179347,-0.802727,0.567679,-0.182672,-0.511217,0.846429,-0.149047,-0.517376,0.841591,-0.155071,-0.919592,0.0891253,0.382631,-0.908719,0.0744435,0.410716,-0.800338,0.115827,0.588254,-0.77116,0.0895269,0.630315,-0.636853,0.115007,0.76236,-0.584423,0.0781446,0.807678,-0.432095,0.0911494,0.89721,-0.397266,0.0671012,0.915247,-0.433264,0.340623,0.834421,-0.476225,0.304261,0.825006,-0.493752,0.608997,0.62075,-0.466098,0.602255,0.648106,-0.309269,0.941369,-0.134825,-0.319941,0.936608,-0.142838,-0.982906,-0.132071,0.128266,-0.983548,-0.10629,0.146066,-0.990254,-0.00641546,0.139126,-0.993343,0.00560733,0.115057,-0.990835,0.0971585,0.0938408,-0.990528,0.0960473,0.0981304,-0.98658,0.159109,0.036652,-0.985492,0.159545,0.0578872,-0.92575,0.316891,-0.206316,-0.92513,0.320649,-0.20327,-0.941584,0.266493,-0.205917,-0.941321,0.268817,-0.204086,-0.992436,0.122751,0.00149538,-0.992413,0.122933,-0.00190165,-0.99882,0.0469854,0.0123261,-0.998185,0.03358,0.0499942,-0.997597,-0.0563003,0.0403793,-0.998081,-0.0404227,0.046907,-0.987096,-0.14492,0.0681121,-0.98645,-0.150755,0.0647319,-0.956073,0.288891,-0.0496571,-0.97011,0.224394,-0.092381,-0.925147,0.375342,-0.0567532,-0.9118,0.409451,-0.0311709,-0.85193,0.522264,-0.038145,-0.837187,0.546713,-0.0149237,-0.705326,0.708763,-0.0130295,-0.700585,0.713308,-0.019266,-0.493844,0.869549,-0.00162343,-0.459728,0.887412,-0.0338979,-0.902068,-0.0795789,0.424194,-0.88537,-0.103849,0.45314,-0.775912,-0.103311,0.622325,-0.737328,-0.145446,0.659692,-0.595121,-0.144872,0.79047,-0.575349,-0.161592,0.801786,-0.406269,-0.160868,0.899482,-0.403128,-0.163266,0.900462,-0.0495594,0.993847,-0.0990539,-0.0735851,0.994061,-0.0801783,-0.260811,0.965074,-0.0247121,-0.189565,0.978596,-0.0800969,-0.135384,0.0716191,0.988201,-0.145118,0.0786911,0.98628,-0.144717,0.935187,0.323236,-0.140177,0.93482,0.326285,-0.112045,0.993514,0.0194022,-0.115091,0.993201,0.0174607,-0.422406,0.860927,0.28351,-0.403916,0.863727,0.301377,-0.339451,0.940618,0.00315981,-0.34278,0.939416,0.000473027,-0.654143,0.723491,0.220583,-0.632257,0.732876,0.251285,-0.56547,0.824486,-0.0216199,-0.554809,0.831915,-0.0102054,-0.801002,0.575997,0.16317,-0.797304,0.578822,0.171089,-0.740898,0.670492,-0.0388758,-0.722462,0.691344,-0.00958035,-0.89202,0.440922,0.0994424,-0.891597,0.44146,0.100839,-0.849039,0.525925,-0.0503596,-0.844703,0.533777,-0.0394875,-0.976319,0.216045,-0.0112186,-0.97667,0.214068,-0.0170479,-0.955148,0.27852,-0.100592,-0.955378,0.276951,-0.102722,-0.984569,0.170376,-0.0399511,-0.984603,0.168429,-0.0467759,-0.968128,0.222818,-0.114365,-0.968055,0.223958,-0.112751,-0.973902,0.208048,-0.0907284,-0.98126,0.123894,-0.14758,-0.934064,0.26201,-0.242644,-0.932297,0.274753,-0.235228,-0.947797,0.259384,-0.185477,-0.953412,0.208894,-0.217642,-0.940255,0.283135,-0.189088,-0.934576,0.312116,-0.17074,-0.89891,0.399306,-0.18032,-0.893545,0.416092,-0.168657,-0.826012,0.535003,-0.177416,-0.815413,0.556437,-0.159621,-0.691558,0.703161,-0.165265,-0.682819,0.714208,-0.153832,-0.484694,0.861212,-0.152921,-0.504435,0.845997,-0.172725,-0.295822,0.934623,-0.197408,-0.256999,0.95184,-0.167186,-0.918791,0.312817,-0.240767,-0.917097,0.321848,-0.235259,-0.183782,0.661123,0.72742,-0.151334,0.647853,0.746582,-0.12781,0.318927,0.939122,-0.151168,0.332859,0.930781,-0.995194,0.0889286,-0.0410044,-0.99572,0.0874595,-0.0298735,-0.999941,0.0108656,-0.000863374,-0.995999,-0.0802488,-0.0393271,-0.995759,-0.0838162,-0.0379382,-0.999023,-0.039019,-0.0207625,-0.990184,-0.136783,0.0287432,-0.986509,-0.162984,0.0153914,-0.988681,0.134987,-0.0654907,-0.988062,0.131415,-0.0803942,-0.991109,-0.128083,-0.0360361,-0.988905,-0.148084,-0.0117549,-0.964582,0.176173,-0.196326,-0.965201,0.15484,-0.210742,-0.978102,0.16723,-0.123901,-0.977606,0.153361,-0.14411,-0.961672,-0.229722,0.149713,-0.960782,-0.237204,0.14364,-0.976105,-0.217055,-0.0102949,-0.965415,-0.259035,0.0295846,-0.964295,-0.248082,0.0926864,-0.964479,-0.247117,0.0933432,-0.964745,-0.256708,0.0580416,-0.96566,-0.252634,0.0606409,-0.869763,-0.233484,0.434738,-0.848791,-0.261347,0.459622,-0.736503,-0.277555,0.616868,-0.713775,-0.304355,0.630788,-0.594187,-0.319054,0.73834,-0.590184,-0.323165,0.739761,-0.431332,-0.33892,0.836114,-0.420863,-0.348607,0.837465,-0.177071,-0.345108,0.921708,-0.191276,-0.355796,0.91478,-0.991394,-0.127171,-0.031078,-0.98957,-0.143371,-0.0140093,-0.973345,-0.225175,-0.0435407,-0.974602,-0.218744,-0.0479714,-0.996406,-0.0499378,-0.0684199,-0.998608,-0.0236418,-0.0471447,-0.634998,-0.769331,-0.0700513,-0.600919,-0.798401,0.0381044,-0.530999,-0.840579,0.107087,-0.579939,-0.814545,0.0136801,-0.600739,-0.798308,-0.0426231,-0.579433,-0.814946,0.0109826,-0.591371,-0.806368,0.00717565,-0.55409,-0.827428,0.091364,-0.675711,-0.735778,0.0452239,-0.611327,-0.770842,0.179115,-0.609003,-0.774923,0.169146,-0.557721,-0.790096,0.254352,-0.15019,-0.97527,-0.162146,-0.131606,-0.973334,-0.187884,-0.569668,-0.804307,-0.169022,-0.552986,-0.815253,-0.171953,-0.610943,-0.784011,-0.109892,-0.606868,-0.790451,-0.0830582,-0.603056,-0.791859,-0.0963528,-0.603951,-0.788069,-0.119121,-0.336684,-0.928604,-0.156007,-0.31952,-0.926889,-0.196936,-0.495327,-0.857514,-0.138998,-0.489197,-0.855707,-0.168677,-0.0713968,-0.688419,0.721791,-0.0709471,-0.691562,0.718824,-0.0688315,-0.547506,0.833966,-0.0794483,-0.68994,0.719494,-0.0422492,-0.39157,0.919178,-0.0639877,-0.548996,0.833372,0.0836668,-0.107263,0.990704,0.00423981,-0.410979,0.911635,0.332877,-0.239767,0.911979,0.330001,-0.251867,0.90976,0.511045,-0.330561,0.79345,0.492294,-0.349116,0.797349,0.549827,-0.177317,0.816241,0.551863,-0.231424,0.801181,0.410943,-0.0853041,0.907661,0.417316,-0.157226,0.895057,0.233131,0.00446713,0.972435,0.219921,0.148325,0.964175,0.182341,0.159437,0.970223,0.188321,0.109075,0.976032,0.115069,0.124908,0.985473,0.121392,-0.125073,0.984693,0.0471685,-0.133154,0.989972,0.0428456,-0.115255,0.992411,-0.166639,-0.92119,0.351625,-0.0351152,-0.919302,0.391984,-0.386372,-0.825039,0.412344,-0.259878,-0.833674,0.48729,-0.434573,-0.86466,0.25201,-0.40311,-0.810707,0.424567,-0.387566,-0.891147,0.235903,-0.385031,-0.898307,0.211648,-0.266899,-0.945834,0.184831,-0.267334,-0.945345,0.186696,-0.120482,-0.991227,0.0543456,-0.165089,-0.970783,0.174144,-0.409927,-0.911327,-0.0379886,-0.471663,-0.88051,-0.0472784,-0.516347,-0.855989,0.0258755,-0.604037,-0.796851,-0.0129494,-0.590634,-0.806665,-0.0210509,-0.590626,-0.80159,-0.0928102,-0.506751,-0.850966,-0.138055,-0.497127,-0.845991,-0.19278,-0.350476,-0.90462,-0.242547,-0.339929,-0.899573,-0.274256,-0.139566,-0.937626,-0.3184,-0.144684,-0.940113,-0.308634,0.622232,0.0546545,0.780923,0.814967,0.120191,0.566906,0.510351,0.333503,0.792665,0.697217,0.163022,0.698078,0.348554,0.503544,0.79054,0.534083,0.326898,0.779675,0.320164,0.550797,0.77079,0.36744,0.50007,0.784167,0.263289,0.490497,0.830718,0.21291,0.567409,0.795434,0.174761,0.501298,0.847443,0.118738,0.568889,0.813797,-0.70588,-0.698869,-0.115394,-0.695365,-0.685867,-0.214601,-0.6662,-0.68225,-0.301186,-0.606939,-0.695699,-0.384225,-0.704327,-0.675073,-0.219544,-0.674736,-0.667774,-0.314339,-0.677588,-0.733497,-0.0534392,-0.679663,-0.725163,-0.110442,-0.623754,-0.780877,-0.0340835,-0.626287,-0.777959,-0.0504461,-0.473991,-0.880296,0.02029,-0.488903,-0.871852,-0.0291311,-0.169584,-0.97238,0.160373,-0.251,-0.967697,0.0237133,-0.354185,-0.692894,-0.628053,-0.350136,-0.688455,-0.635165,-0.151638,-0.575123,-0.80389,-0.159112,-0.616673,-0.770972,0.146976,-0.324492,-0.9344,0.105146,-0.376834,-0.920294,0.175956,-0.0620023,-0.982443,0.175238,-0.0647541,-0.982394,0.324452,0.244223,-0.91383,0.328213,0.271183,-0.90484,0.470081,0.00931479,-0.882574,0.452048,-0.029686,-0.891499,-0.426886,-0.864128,-0.266553,-0.42692,-0.864036,-0.266798,-0.608975,-0.753657,-0.247286,-0.59648,-0.737848,-0.315898,-0.253474,-0.904975,-0.341717,-0.223706,-0.938086,-0.26448,-0.117622,-0.583378,-0.803639,-0.0263867,-0.464835,-0.885004,0.0358217,-0.230341,-0.97245,0.0454745,-0.0481431,-0.997805,0.141785,0.293986,-0.945235,0.13547,0.282473,-0.949661,-0.621465,-0.714917,-0.32043,-0.603551,-0.703188,-0.375837,-0.606757,-0.699365,-0.377803,-0.556708,-0.683929,-0.471505,-0.351275,-0.687655,-0.635403,-0.333397,-0.673621,-0.659607,-0.300261,-0.704516,-0.64304,-0.219906,-0.660175,-0.718199,0.227533,-0.364551,-0.902957,0.222517,-0.370892,-0.901624,0.359706,-0.445269,-0.819968,0.367329,-0.437215,-0.820921,0.5266,-0.0635088,-0.847738,0.478269,-0.147738,-0.865698,0.647676,-0.214975,-0.730959,0.591144,-0.298652,-0.749237,-0.520038,-0.749043,-0.410481,-0.400239,-0.756632,-0.517027,-0.0704913,-0.843163,-0.533017,0.0240217,-0.821399,-0.569848,0.745964,-0.614733,-0.256205,0.739072,-0.62241,-0.257641,0.913696,-0.402072,-0.0591376,0.895874,-0.439297,-0.0665456,-0.546969,-0.793134,-0.267887,-0.547422,-0.799688,-0.246636,-0.219653,-0.593828,-0.774029,-0.279374,-0.731021,-0.622542,0.238371,-0.0782943,-0.968013,0.114632,-0.380486,-0.917655,0.414803,0.217857,-0.883446,0.39282,0.0540514,-0.918025,0.145539,0.336472,-0.930379,-0.131577,0.640365,-0.756716,0.455999,0.594634,-0.662175,0.491901,0.527553,-0.692619,0.516368,0.518327,-0.68169,0.575241,0.408476,-0.708692,0.65223,0.365376,-0.664151,0.693978,0.264844,-0.669517,0.73033,0.243376,-0.638268,0.766325,0.101664,-0.634358,0.871101,0.0530668,-0.488228,0.90348,-0.0931243,-0.418392,0.972991,-0.146299,0.178565,0.979626,-0.129671,0.153359,-0.59648,-0.747459,-0.292431,-0.524331,-0.783369,-0.333782,-0.38234,-0.881196,-0.278046,-0.342444,-0.894539,-0.287285,0.114309,-0.993397,0.00977843,0.05785,-0.998311,0.00525586,0.679929,-0.481754,0.552819,0.691715,-0.465224,0.552355,0.736307,-0.312683,0.600068,0.75111,-0.287055,0.594502,0.748317,-0.0866459,0.657658,0.878453,-0.00942528,0.477735,-0.810189,-0.378397,0.447671,-0.837666,-0.338619,0.428548,-0.711106,-0.420958,0.563137,-0.717984,-0.410912,0.561828,-0.614945,-0.453509,0.645114,-0.615892,-0.452253,0.645092,-0.476107,-0.485702,0.733087,-0.46945,-0.494944,0.731196,-0.319139,-0.59028,0.741431,-0.346984,-0.535872,0.769703,-0.0926715,-0.629407,0.77153,-0.0849599,-0.634737,0.768044,-0.887287,-0.338118,0.313684,-0.886783,-0.348336,0.303773,-0.970849,0.0471083,0.235016,-0.970259,0.0457587,0.237705,-0.972882,0.148695,0.177172,-0.969586,0.144341,0.197657,-0.967201,0.225643,0.116652,-0.965296,0.226639,0.129764,-0.886744,0.416584,-0.200358,-0.883481,0.42777,-0.190983,-0.959103,-0.0873871,0.26923,-0.959461,-0.0898451,0.267138,-0.949499,0.311619,0.0366625,-0.949547,0.311509,0.0363749,-0.919072,0.386957,-0.0746401,-0.919426,0.385817,-0.0761635,-0.877487,0.412954,-0.243895,-0.875114,0.420921,-0.238747,-0.78815,0.570099,-0.231963,-0.797639,0.55042,-0.246598,-0.666756,0.707207,-0.23515,-0.654355,0.723293,-0.220604,-0.4974,0.840903,-0.213248,-0.498704,0.839826,-0.214442,-0.294652,0.932504,-0.208847,-0.297532,0.931128,-0.210893,-0.0922739,0.974079,-0.206532,-0.0969612,0.973022,-0.209349,-0.928287,-0.208687,0.307787,-0.930707,-0.23276,0.282148,-0.852381,0.502448,0.144886,-0.864648,0.469608,0.178469,-0.989555,0.142451,-0.0221053,-0.998063,0.0354769,0.0511092,-0.9508,0.301763,0.0701262,-0.96498,0.230284,0.125632,0.0045717,0.994189,0.107552,-0.0147955,0.992131,0.12433,-0.695479,0.692257,0.192583,-0.681256,0.700595,0.212265,-0.387524,0.900811,0.19587,-0.402361,0.897408,0.18101,-0.988831,-0.0954387,-0.114476,-0.992691,-0.0730901,-0.0960379,-0.995731,0.0051438,-0.0921624,-0.995938,-0.0828542,-0.0352442,-0.0881196,0.988196,0.125313,-0.1193,0.980437,0.156558,-0.938416,-0.306291,-0.159881,-0.953528,-0.274647,-0.123909,-0.853371,-0.463144,-0.23928,-0.887824,-0.428805,-0.167018,-0.782514,-0.465891,-0.413058,-0.880774,-0.412789,-0.232038,-0.619123,-0.257612,-0.741838,-0.564533,-0.351471,-0.746841,-0.603841,-0.410795,-0.683098,-0.654675,-0.290803,-0.697735,-0.733043,-0.398463,-0.551249,-0.60957,-0.406372,-0.680651,-0.71084,-0.422668,-0.562191,-0.831809,-0.393046,-0.391929,-0.850186,0.363984,0.380395,-0.832317,0.377885,0.405527,-0.988231,-0.0975015,0.117865,-0.94124,-0.258822,0.216976,-0.93945,0.0384135,0.340525,-0.950972,0.140028,0.275762,-0.0182715,0.906976,0.420787,0.0375137,0.933845,0.355706,-0.6699,0.616893,0.413131,-0.677016,0.614356,0.405236,-0.370463,0.84651,0.382332,-0.370856,0.846496,0.381982,-0.972832,-0.221764,-0.0664719,-0.991115,-0.132382,0.0128979,-0.989192,-0.146161,0.0116514,-0.955489,-0.279072,0.0957023,-0.0710897,0.935701,0.345558,-0.0477953,0.930045,0.364324,-0.937333,-0.341608,-0.0686403,-0.934338,-0.348374,-0.0751523,-0.830401,-0.554177,-0.0576383,-0.815038,-0.573942,-0.0793915,-0.666276,-0.743649,-0.0553463,-0.653391,-0.753837,-0.0693458,-0.508729,-0.797612,-0.324053,-0.620268,-0.745415,-0.244181,-0.509221,-0.818524,-0.265917,-0.621887,-0.76303,-0.176188,-0.455226,-0.86807,-0.198053,-0.569645,-0.815333,-0.103617,-0.495581,-0.861591,-0.109817,-0.545539,-0.835613,-0.0643257,-0.694348,0.26389,0.669509,-0.706783,0.257899,0.658745,-0.765411,-0.390717,0.511358,-0.729743,-0.440527,0.522887,-0.769078,-0.0696837,0.635346,-0.77574,-0.0779201,0.626223,-0.00852162,0.814099,0.580663,-0.00206706,0.8106,0.585597,-0.545703,0.510727,0.664354,-0.558171,0.508967,0.655284,-0.278522,0.722743,0.632509,-0.288902,0.724369,0.62596,-0.861244,-0.442292,0.250273,-0.738735,-0.584017,0.336443,-0.790587,-0.48869,0.36899,-0.68149,-0.600519,0.418269,-0.0553689,0.801766,0.595068,-0.0613633,0.804194,0.591191,-0.817835,-0.555554,0.150018,-0.862293,-0.440073,0.250574,-0.818983,-0.558654,0.131046,-0.832338,-0.532878,0.152497,-0.732206,-0.661212,0.163315,-0.69086,-0.713378,0.117494,-0.0124349,-0.994133,0.107447,-0.138147,-0.975337,0.17214,-0.043619,-0.984299,0.171036,-0.092797,-0.975623,0.198866,-0.2867,-0.935406,0.206929,-0.243564,-0.952954,0.180432,-0.529173,-0.826382,0.192533,-0.473827,-0.867827,0.14955,-0.133726,-0.956195,-0.2604,-0.123999,-0.956247,-0.264981,-0.0220411,-0.999393,0.0269717,-0.0744698,-0.995868,0.0519805,-0.642856,0.25013,0.723997,-0.668245,0.241741,0.703569,-0.712393,-0.443044,0.54425,-0.682565,-0.477167,0.553549,-0.72968,-0.0903227,0.677797,-0.721372,-0.0833587,0.687513,-0.554221,0.520638,0.649443,-0.467204,0.530287,0.707471,-0.291149,0.746707,0.598048,-0.245225,0.740277,0.625983,-0.741167,-0.585354,0.328682,-0.672974,-0.633617,0.381623,-0.691944,-0.603902,0.395621,-0.624128,-0.64997,0.433594,-0.0576633,0.810199,0.583311,-0.0732964,0.816018,0.57336,-0.779161,-0.55867,0.284245,-0.724141,-0.609913,0.32191,-0.768247,-0.574934,0.281508,-0.733084,-0.64887,0.203851,-0.720192,-0.663924,0.201318,-0.710647,-0.678867,0.184718,0.0221837,-0.974349,0.223948,0.0157568,-0.97336,0.228742,-0.0356713,-0.980518,0.193166,-0.079687,-0.970133,0.229111,-0.293331,-0.937616,0.186637,-0.322352,-0.92245,0.212544,-0.538333,-0.826765,0.163271,-0.576145,-0.79024,0.20875,-0.757027,0.30095,0.579948,-0.768088,0.294129,0.568797,-0.880363,-0.274083,0.387091,-0.81428,-0.386243,0.433318,-0.855785,-0.0401092,0.515775,-0.835748,-0.00904978,0.549038,-0.6001,0.562684,0.568566,-0.623137,0.55741,0.54863,-0.340013,0.79205,0.506998,-0.323362,0.790745,0.519769,-0.970348,-0.234553,0.0583871,-0.875919,-0.444831,0.186793,-0.934428,-0.284868,0.213761,-0.805693,-0.492836,0.328591,-0.0413023,0.8593,0.509801,-0.0842482,0.874436,0.477769,-0.928858,-0.367443,0.0469902,-0.913957,-0.405631,0.0120983,-0.820385,-0.571807,0.00241495,-0.857754,-0.510934,0.0566161,-0.641217,-0.766077,0.0443466,-0.696824,-0.71044,0.0985443,-0.479939,-0.875206,-0.0605959,-0.254558,-0.952004,-0.169967,-0.421923,-0.904472,0.0625446,-0.191996,-0.979488,-0.0611637,-0.370753,-0.921871,0.112679,-0.283765,-0.957149,0.0578153,-0.444675,-0.89134,0.0881886,-0.483929,-0.867167,0.117622,-0.0397442,-0.997845,0.0522151,-0.148092,-0.983392,0.104922,0.0582769,-0.98073,0.186475,-0.00847209,-0.973284,0.229449,-0.861348,0.466781,0.200486,-0.874321,0.417603,0.247326,-0.999279,0.0343897,-0.016066,-0.993241,-0.0940147,0.0680668,-0.966987,0.231018,0.107552,-0.974275,0.155357,0.163256,-0.677123,0.668886,0.306751,-0.707061,0.654992,0.266551,-0.388748,0.876643,0.2835,-0.374164,0.87827,0.297729,-0.992187,-0.101567,-0.0724562,-0.989054,-0.119119,-0.0870803,-0.99407,-0.0823104,-0.0710588,-0.989158,-0.143151,-0.0327824,-0.0647538,0.965102,0.253743,-0.0742871,0.96647,0.245799,-0.938437,-0.331195,-0.0982175,-0.93481,-0.338988,-0.105916,-0.838931,-0.531947,-0.115005,-0.82311,-0.550152,-0.140794,-0.763658,-0.628166,-0.149111,-0.685038,-0.681457,-0.257564,-0.642453,-0.564932,-0.51779,-0.587177,-0.635481,-0.501385,-0.621194,-0.632627,-0.462495,-0.653834,-0.588255,-0.475875,-0.671224,-0.629086,-0.392056,-0.592549,-0.653958,-0.470345,-0.730416,-0.635972,-0.249061,-0.589176,-0.696868,-0.408958,-0.154138,-0.1651,0.974158,-0.167158,-0.155437,0.9736,-0.479862,-0.0760048,-0.874046,-0.493767,-0.0489686,-0.868215,-0.442083,-0.346735,-0.827247,-0.53067,-0.208807,-0.821455,-0.452513,-0.670486,-0.587946,-0.552945,-0.554949,-0.621517,-0.52629,-0.745366,-0.409204,-0.393236,-0.854864,-0.338487,-0.230361,-0.937651,-0.260277,-0.422916,-0.889405,-0.173494,-0.322257,-0.323813,-0.889548,-0.146523,-0.384207,-0.911546,-0.150342,-0.371815,-0.916052,-0.0714536,-0.39393,-0.916359,-0.343244,-0.255682,-0.903775,-0.42767,-0.219974,-0.876761,-0.0557066,-0.452733,-0.889904,-0.0656072,-0.45003,-0.8906,-0.800712,-0.599018,0.00612502,-0.703979,-0.709456,-0.0329621,-0.894176,-0.434843,0.106592,-0.820592,-0.571514,0.000580586,-0.921419,-0.0692317,0.382353,-0.926086,-0.122237,0.356963,-0.975305,-0.160584,0.151636,-0.878746,-0.475536,-0.0408629,-0.85293,-0.498239,-0.155783,-0.82616,-0.534527,-0.178161,-0.813058,-0.536731,-0.225513,-0.873881,-0.461245,-0.153576,-0.850883,-0.437398,-0.290999,-0.86992,-0.421719,-0.255718,-0.806794,-0.32832,-0.491212,-0.806269,-0.320131,-0.497439,-0.745159,-0.377698,0.549619,-0.987769,-0.13715,0.0741788,-0.985589,-0.110056,0.128457,-0.99586,-0.0811856,0.0408833,-0.917718,-0.332995,-0.216583,-0.902267,-0.327207,-0.280803,-0.897116,-0.250302,-0.36405,-0.910026,-0.319574,-0.264057,-0.906793,-0.25163,-0.338244,-0.930484,-0.21881,-0.293804,-0.834816,-0.170098,-0.523593,-0.830691,-0.179788,-0.526905,-0.927427,0.367416,-0.0698891,-0.963384,0.268119,-0.00181836,-0.776366,-0.217835,-0.591443,-0.795428,-0.306896,-0.522598,-0.27339,-0.961897,0.00346584,-0.111115,-0.896358,-0.42918,-0.640312,-0.540578,-0.545689,-0.764419,-0.471113,-0.440132,-0.210613,-0.954734,0.210061,-0.166257,-0.985691,0.0277838,0.133788,-0.852979,-0.504507,0.161559,-0.933256,-0.320831,-0.187524,-0.311101,-0.931692,-0.210254,-0.104885,-0.972004,-0.161108,-0.034876,-0.98632,-0.119235,-0.0118197,-0.992796,-0.0483061,0.998585,0.0222412,-0.0181977,0.999832,-0.00206671,-0.100584,0.985776,-0.134644,-0.100795,0.985737,-0.134771,-0.092558,0.976549,-0.194383,-0.074113,0.975717,-0.206116,-0.104017,-0.578561,-0.808979,-0.16061,-0.534928,-0.829492,-0.00270682,0.815776,0.578362,0.00343305,0.819848,0.572571,-0.00924392,0.861833,0.507108,-0.0138718,0.858675,0.512333,-0.130449,-0.831329,-0.540255,-0.169727,-0.838028,-0.518557,0.0110097,0.971446,0.237007,0.0273515,0.975526,0.218177,-0.0801444,-0.265927,-0.960656,-0.166033,-0.188015,-0.968031,-0.17393,-0.453642,0.874046,-0.0932953,-0.496654,0.86292,-0.351197,-0.0105215,-0.936242,-0.280352,-0.113024,-0.95322,-0.322648,-0.23592,-0.916646,-0.278637,-0.289717,-0.915656,-0.253465,-0.657276,-0.709749,-0.378382,-0.532951,-0.756829,-0.198694,-0.905091,-0.37594,-0.114268,-0.884548,-0.452237,-0.360343,-0.779076,-0.513025,-0.248954,-0.882625,-0.398742,-0.611872,-0.134092,0.779507,-0.619329,-0.137969,0.772914,-0.584962,0.210061,0.783387,-0.519712,0.224361,0.824355,-0.417266,0.487347,0.767061,-0.434098,0.62025,0.653336,-0.529099,-0.485815,0.695728,-0.602054,-0.433986,0.670215,-0.260176,0.764484,0.589808,-0.216158,0.754937,0.619149,-0.0737929,0.817987,0.570484,-0.0652595,0.813945,0.577265,0.00273985,0.82449,0.56587,0.0286526,0.843528,0.536321,-0.333642,-0.898981,0.283754,-0.310977,-0.916984,0.249869,-0.126054,-0.942731,0.30882,-0.07493,-0.966501,0.245484,0.0133541,-0.949448,0.313642,0.0312192,-0.954714,0.295883,0.132835,-0.955127,0.26474,0.0777888,-0.947438,0.31034,-0.547643,-0.781713,0.29835,-0.519261,-0.793772,0.316692,-0.479643,-0.575863,0.66206,-0.49014,-0.572897,0.656926,-0.571236,-0.565518,0.594877,-0.463354,-0.601384,0.650877,-0.621289,-0.576046,0.531198,-0.533421,-0.623481,0.571606,-0.631121,-0.635602,0.444631,-0.53568,-0.688473,0.488929,-0.652131,-0.671844,0.351215,-0.547454,-0.727291,0.413934,0.0374122,-0.986438,0.159813,-0.0109489,-0.982192,0.18756,0.0439661,-0.962482,0.267759,0.0850854,-0.967429,0.238414,0.92437,0.0713271,0.374771,0.907068,0.0257527,0.420196,-0.133189,0.467505,-0.873899,-0.267049,0.566777,-0.77939,0.307963,0.55995,-0.769165,0.526628,0.643416,-0.555588,0.553139,0.590649,-0.587513,0.62339,0.678007,-0.389476,0.85456,0.491105,-0.168947,0.774096,0.602056,-0.195716,0.603214,0.42026,0.677875,0.545384,0.466413,0.69643,0.204004,0.551193,0.809054,0.224226,0.527496,0.819433,0.672448,0.412236,0.614715,0.838059,0.272752,0.472509,0.930971,0.103869,0.350007,0.873707,0.0192563,0.486071,0.914644,0.00137061,0.404259,0.937305,0.0550061,0.344142,-0.275292,0.45538,-0.846666,-0.245302,0.438801,-0.864454,0.455135,0.29814,-0.839026,0.287394,0.454177,-0.843284,0.590831,0.433738,-0.680287,0.49488,0.513377,-0.701098,0.893449,0.360043,-0.268547,0.937951,0.27481,-0.211487,0.566694,0.068942,0.821039,0.599616,0.0450442,0.799019,0.0445101,0.168261,0.984737,0.105893,0.120192,0.987087,-0.0464526,0.209062,0.976799,0.0123492,0.169203,0.985504,0.796092,0.139467,0.588886,0.865629,0.0872566,0.493025,0.964161,0.122845,0.235165,0.940094,0.0561445,0.33626,0.951829,-0.026721,0.305462,0.964996,0.00750335,0.262156,0.427295,0.0573048,-0.902294,0.442124,0.0461784,-0.895764,0.640814,-0.105824,-0.760368,0.465069,0.0475046,-0.883999,0.967625,-0.134964,-0.213277,0.948861,-0.0458634,-0.312346,0.624104,-0.0196061,0.781096,0.567795,0.0118928,0.823084,0.0323321,-0.159841,0.986613,0.0235331,-0.153935,0.987801,-0.104977,-0.122552,0.986895,-0.0396781,-0.159317,0.98643,0.908195,-0.0223351,0.417951,0.81008,0.0360996,0.585207,0.976223,0.0501803,0.210879,0.991549,0.0265093,0.126992,0.988922,0.0573721,0.1369,0.989508,0.0651585,0.128952,0.379433,-0.362736,-0.851148,0.363961,-0.353614,-0.861678,0.577224,-0.312469,-0.754437,0.594284,-0.324347,-0.735952,0.903937,-0.0987581,-0.416107,0.961114,-0.172246,-0.215851,0.635856,-0.409135,0.654443,0.477655,-0.36601,0.798675,-0.014897,-0.576866,0.816703,-0.0109205,-0.575094,0.818015,-0.03924,-0.561191,0.826755,-0.0734114,-0.573757,0.815729,0.914376,-0.0720864,0.398398,0.908703,-0.0714981,0.411275,0.0685649,-0.991446,0.111054,0.142577,-0.977472,0.15563,0.607178,-0.774847,0.175915,0.544558,-0.829833,0.121794,0.951749,-0.272,0.14209,0.941348,-0.314083,0.123352,0.977243,0.045996,0.207076,0.965985,-0.00157802,0.258593,0.970212,-0.237379,0.0483759,0.891449,-0.3319,-0.308481,0.725754,-0.518626,-0.452004,0.559005,-0.4976,-0.663255,0.304661,-0.68219,-0.664679,0.13095,-0.61042,-0.781178,0.0666242,-0.771835,-0.632323,0.0362214,-0.761987,-0.646579,0.0852278,0.241169,-0.966734,-0.227174,0.0429132,-0.972908,0.0788655,-0.401312,-0.91254,0.0430584,-0.383552,-0.922515,0.00012439,-0.995341,0.0964143,0.00884842,-0.994922,0.100256,0.641594,0.593942,-0.485376,0.600592,0.574371,-0.556226,0.369916,0.509237,0.777072,0.39635,0.485349,0.779322,0.640311,0.269466,-0.719298,0.45218,0.450943,-0.769535,0.31316,0.112703,0.942989,0.397342,0.0453292,0.916551,0.368578,0.0566242,-0.927871,0.394481,0.0360234,-0.918198,0.373973,-0.14115,0.916636,0.211761,-0.0350011,0.976695,0.257493,-0.370771,-0.892315,0.296938,-0.392557,-0.870475,0.11719,-0.573196,0.810995,0.185746,-0.529905,0.827465,0.00525251,-0.994058,0.108727,-0.0208175,-0.995187,0.0957535,0.0523538,-0.700559,-0.711671,0.191432,-0.752971,-0.629594,-0.0411515,0.565187,0.823936,0.162062,0.405157,0.899769,0.81573,0.108349,0.568194,0.935193,0.243565,0.257081,0.976402,0.127277,0.174471,0.951726,0.161179,0.261227,0.977936,0.0516569,0.202419,0.986988,0.0399412,0.155755,0.995976,-0.0276182,0.0852553,0.990923,0.0428588,0.127415,0.985715,0.0245562,0.166624,0.971455,-0.00130117,0.237219,0.987017,-0.0113823,0.16021,0.89612,-0.184073,0.40384,0.878236,-0.015738,0.477968,0.938188,0.172861,0.299871,0.966647,0.107715,0.23236,0.91106,0.407755,0.0608753,0.98094,0.0756243,0.17899,0.979032,0.0437837,0.198944,0.976919,0.0479894,0.208151,0.976584,-0.06075,0.206383,-0.544455,0.820029,-0.176413,-0.579565,0.800027,-0.155119,-0.608325,0.774321,-0.174261,-0.671956,0.724666,-0.152753,-0.674539,0.727512,-0.125394,-0.7386,0.667533,-0.0941831,-0.745027,0.661386,-0.0866253,-0.739186,0.668552,-0.0815011,0.320243,0.946717,0.0342213,0.340913,0.939903,0.0189913,0.790519,0.610074,0.0537548,0.783546,0.618189,0.0624343,0.922583,0.378362,0.0753893,0.911617,0.399516,0.0966516,0.979244,0.199575,-0.0353703,0.972172,0.233548,-0.0183659,0.726088,-0.679267,-0.106733,0.711114,-0.692363,-0.122271,0.112697,-0.984794,-0.132216,0.122219,-0.982737,-0.138893,0.979325,-0.17516,-0.1012,0.980747,-0.169279,-0.0973613,-0.819573,-0.555656,-0.139809,-0.811996,-0.564286,-0.149145,-0.968985,-0.188745,-0.159509,-0.970619,-0.183139,-0.156076,-0.97192,0.172029,-0.160551,-0.967099,0.189294,-0.169961,0.907689,-0.408938,-0.0941824,0.925442,-0.372676,-0.0683278,-0.527159,-0.837989,-0.140988,-0.520264,-0.841265,-0.146966,0.976914,0.182893,-0.110401,0.979661,0.139445,-0.14429,-0.816087,0.554502,-0.162879,-0.783655,0.593495,-0.183438,-0.577707,0.796439,-0.178717,-0.608939,0.775958,-0.164568,-0.372165,0.907216,0.196095,-0.357453,0.915507,0.184592,0.299098,0.927893,0.222611,0.31429,0.925232,0.212524,0.781857,0.581622,0.224534,0.778816,0.584422,0.227809,0.876937,0.410333,0.250216,0.861664,0.457504,0.219602,-0.940034,0.340339,0.0224667,-0.958299,0.276654,0.0715914,-0.809583,0.586942,-0.00862298,-0.760021,0.645815,0.0727405,0.493447,-0.642391,0.586382,0.344538,-0.723898,0.597717,-0.0636661,-0.699985,0.711314,-0.0396693,-0.696337,0.716618,-0.819243,-0.275953,0.502684,-0.753388,-0.288084,0.591113,-0.470322,-0.525228,0.709178,-0.539987,-0.518193,0.663241,-0.544765,-0.62516,0.558934,-0.571286,-0.626162,0.530616,0.865806,-0.282182,0.413224,0.636352,-0.42586,0.643195,0.822838,-0.0482181,-0.566227,0.73048,-0.0989289,-0.675731,0.994203,0.00371082,-0.107453,0.981096,-0.121847,0.150346,0.94626,-0.290501,0.142133,0.972267,-0.228992,0.0475341,0.66445,-0.53879,0.517891,0.331612,-0.387427,0.860194,-0.930779,0.338064,0.139151,-0.854148,0.452197,0.256806,-0.976845,-0.146707,0.155726,-0.993314,-0.0749631,0.0877982,-0.854514,-0.491439,0.168208,-0.906493,-0.408567,0.106503,-0.725614,-0.576316,0.375957,-0.576608,-0.774117,0.261276,-0.178751,-0.942835,0.281264,-0.101835,-0.905911,0.411041,0.621808,-0.749523,0.227092,0.582485,-0.74448,0.326284,0.835165,-0.483131,0.262839,0.796131,-0.564682,0.217509,-0.788864,0.592627,0.162749,-0.80192,0.579431,0.14555,-0.82306,0.0848827,-0.561575,-0.759694,0.172573,-0.626964,-0.344934,0.100226,-0.933261,-0.293133,0.13479,-0.946522,-0.984637,0.154957,0.0804935,-0.982422,0.0393437,0.182481,-0.996253,-0.000877548,0.0864842,-0.995014,-0.0179234,0.0981164,-0.0789219,-0.0193285,-0.996693,0.000916216,0.0131376,-0.999913,0.148586,-0.0634356,-0.986863,0.0515606,-0.112252,-0.992341,0.146267,-0.0690432,-0.986833,0.183728,-0.122138,-0.97536,0.32186,-0.175121,-0.930451,0.31861,-0.176963,-0.931221,0.155334,0.0450817,-0.986833,0.22607,-0.0154884,-0.973988,0.0704228,0.0153819,-0.997399,0.123878,-0.0521426,-0.990927,0.329058,-0.152038,-0.93199,0.342358,-0.167087,-0.924593,0.394519,-0.00236697,-0.918885,0.334412,0.0421728,-0.941483,0.146216,0.00610501,-0.989234,0.329485,0.114729,-0.937164,0.0322209,0.0674123,-0.997205,0.0702855,0.0150132,-0.997414,-0.0453782,0.0265807,-0.998616,-0.00383803,0.0365509,-0.999324,0.885489,-0.448928,0.119889,0.917525,-0.395476,0.0417855,0.98409,-0.059007,0.167589,0.968294,-0.101324,0.228344,-0.667118,-0.744364,0.0295879,-0.671742,-0.74052,0.0198221,-0.119923,-0.982832,0.14021,-0.166195,-0.983224,0.075163,-0.886898,-0.460513,0.0365957,-0.868949,-0.494882,-0.00441857,0.632496,-0.766121,0.114051,0.618075,-0.772797,0.144112,-0.977899,-0.18763,-0.0922382,-0.97556,-0.20522,-0.0785281,-0.412999,0.905365,0.0987246,-0.386927,0.919428,0.0702808,0.343581,0.933455,0.103023,0.297207,0.943341,0.147563,0.780221,0.608269,0.145824,0.787723,0.601236,0.134189,0.908779,0.396704,0.129409,0.884498,0.431374,0.177705,-0.957498,0.27769,-0.0780056,-0.95668,0.280004,-0.0797624,-0.762378,0.646849,-0.0191233,-0.746256,0.664625,-0.037086,-0.880499,0.468321,-0.0734663,-0.860346,0.508116,-0.0402706,-0.869026,0.493958,0.0282654,-0.884061,0.467366,0.00214223,-0.872146,0.46123,0.163183,-0.863438,0.480183,0.154593,-0.843623,0.470122,0.259396,-0.836139,0.488331,0.249807,-0.855886,0.452994,0.24951,-0.862009,0.436451,0.257779,-0.943507,0.319133,0.0891529,-0.925639,0.378214,0.0121366,-0.996935,0.045361,0.0637424,-0.997551,-0.0314696,-0.0624601,-0.832728,-0.530696,0.157877,-0.871873,-0.412943,0.263276,-0.579141,-0.76368,0.285287,-0.55649,-0.788041,0.263271,-0.0993301,-0.95043,0.294647,-0.07691,-0.943101,0.32349,0.574246,-0.795556,0.193213,0.50671,-0.785305,0.355725,0.795495,-0.567568,0.212262,0.795915,-0.566775,0.212805,-0.565407,-0.683744,-0.461312,-0.463333,-0.776754,-0.426587,-0.513278,-0.758059,-0.402358,-0.466616,-0.811126,-0.352625,-0.0117163,-0.836331,-0.548099,0.0936781,-0.884577,-0.45689,0.777007,-0.53193,-0.336618,0.785487,-0.45786,-0.416382,0.520751,-0.704204,-0.482613,0.527285,-0.703872,-0.475957,-0.779966,-0.541563,-0.313627,-0.757114,-0.619259,-0.208076,0.530365,-0.731503,-0.428505,0.660038,-0.585584,-0.470576,0.000907385,0.0516176,-0.998667,0.000659054,0.0515557,-0.99867,-0.0430814,0.0631544,-0.997073,-0.0254161,0.0662185,-0.997481,0.0221762,0.125196,-0.991884,-0.014792,0.0927038,-0.995584,-0.0154802,0.0646008,-0.997791,0.0260678,0.0794198,-0.9965,0.0254896,0.078115,-0.996618,0.0413082,0.0910155,-0.994992,-0.0213651,0.0722501,-0.997158,-0.00689875,0.0781766,-0.996916,-0.0231648,0.0631077,-0.997738,-0.0129849,0.0634907,-0.997898,-0.0844084,0.0958219,-0.991813,-0.0873855,0.0708672,-0.993651], - -"colors": [], - -"uvs": [[0.87014,0.087101,0.87014,0.0856824,0.888358,0.0808368,0.889038,0.0820731,0.901655,0.0675878,0.902845,0.0683061,0.90655,0.0496136,0.907916,0.0496136,0.901694,0.031315,0.902874,0.0306295,0.888403,0.0180391,0.889082,0.0168396,0.87014,0.0131711,0.87014,0.0117867,0.852108,0.0180164,0.851411,0.0168143,0.838811,0.0312656,0.837604,0.0305812,0.833916,0.0496136,0.832533,0.0496136,0.838772,0.0675381,0.837575,0.0682584,0.852063,0.0808144,0.851367,0.0820479,0.87014,0.0794828,0.885344,0.0753849,0.896373,0.0643717,0.900359,0.0496136,0.896388,0.0344324,0.885363,0.0234325,0.87014,0.0193341,0.85514,0.0234322,0.844112,0.0344448,0.840126,0.0496136,0.844096,0.0643843,0.855121,0.0753841,0.87014,0.0496136,0.889979,0.0837045,0.87014,0.0889839,0.904476,0.0692493,0.909801,0.0496136,0.904507,0.0296888,0.890025,0.0152094,0.87014,0.00990391,0.85047,0.0151828,0.835973,0.0296382,0.830648,0.0496136,0.835942,0.0691992,0.850424,0.0836781,0.757762,0.0443665,0.760396,0.0320455,0.773798,0.0388805,0.765045,0.0220505,0.776808,0.0306132,0.792261,0.0443665,0.803774,0.0443665,0.793019,0.0388805,0.803751,0.0345771,0.791957,0.0308659,0.801898,0.0271806,0.781698,0.0443665,0.781698,0.00978428,0.781698,0.0236692,0.781698,0.0388805,0.785544,0.0388805,0.787836,0.0251721,0.792793,0.01747,0.811379,0.00978427,0.825578,0.00978427,0.750245,0.0443665,0.811379,0.0443665,0.750245,0.0314852,0.750245,0.0214179,0.734491,0.0443665,0.734491,0.0327796,0.734491,0.0236606,0.811379,0.0338374,0.811379,0.0263301,0.825578,0.0443665,0.825578,0.0334074,0.825578,0.0242342,0.750245,0.00978428,0.811379,0.0164809,0.734491,0.00978429,0.825578,0.0125268,0.785859,0.0443665,0.772046,0.0443665,0.77205,0.0443665,0.773799,0.0492517,0.760396,0.0567726,0.765045,0.0667675,0.776808,0.0588913,0.793019,0.0492517,0.803751,0.0545842,0.791957,0.0558942,0.801898,0.0619801,0.781698,0.0641199,0.781698,0.0492517,0.785544,0.0492517,0.787836,0.063303,0.781698,0.0790339,0.792793,0.071348,0.750245,0.0573333,0.750245,0.0674002,0.81138,0.054981,0.81138,0.0624882,0.750245,0.0790339,0.81138,0.0790339,0.81138,0.0723374,0.734491,0.0560387,0.734491,0.0651579,0.825578,0.0554108,0.825578,0.0645839,0.734491,0.0790339,0.825578,0.0790339,0.825578,0.0762913,0.772046,0.0443665,0.657881,0.0621757,0.657786,0.0659912,0.63959,0.0612396,0.639692,0.0653695,0.622377,0.0599527,0.623382,0.0671281,0.605866,0.0592233,0.606041,0.0690727,0.590818,0.0584305,0.590818,0.0694616,0.658068,0.0469598,0.62185,0.0469596,0.604599,0.0469596,0.590818,0.0469595,0.604599,0.0796894,0.62185,0.0796894,0.590818,0.0796894,0.658068,0.0796896,0.640298,0.0796896,0.640298,0.0469596,0.676186,0.0615397,0.675838,0.0469596,0.69375,0.0603992,0.694286,0.0469596,0.710304,0.0590323,0.711537,0.0469596,0.725318,0.0584305,0.725318,0.0469595,0.675838,0.0796896,0.675647,0.0655702,0.694287,0.0796894,0.692643,0.0675368,0.711537,0.0796894,0.710141,0.0704323,0.725318,0.0796894,0.725318,0.0694616,0.949545,0.0871244,0.949545,0.0857058,0.931327,0.0808602,0.930646,0.0820965,0.91803,0.0676112,0.91684,0.0683296,0.913135,0.049637,0.911769,0.049637,0.917991,0.0313384,0.916811,0.030653,0.931282,0.0180626,0.930603,0.0168631,0.949545,0.0131946,0.949545,0.0118102,0.967577,0.0180398,0.968274,0.0168378,0.980874,0.031289,0.982081,0.0306047,0.985769,0.049637,0.987152,0.049637,0.980913,0.0675616,0.98211,0.0682819,0.967622,0.0808379,0.968318,0.0820714,0.949545,0.0795062,0.934341,0.0754083,0.923312,0.0643952,0.919326,0.049637,0.923296,0.0344559,0.934322,0.023456,0.949545,0.0193576,0.964545,0.0234556,0.975573,0.0344683,0.979559,0.049637,0.975589,0.0644078,0.964563,0.0754076,0.949545,0.049637,0.929706,0.083728,0.949545,0.0890073,0.915209,0.0692728,0.909884,0.049637,0.915178,0.0297123,0.92966,0.0152329,0.949545,0.00992739,0.969215,0.0152063,0.983712,0.0296616,0.989037,0.049637,0.983743,0.0692226,0.96926,0.0837016,0.658522,0.03377,0.65892,0.0313318,0.640965,0.0335008,0.641822,0.0301163,0.623192,0.03362,0.625147,0.0269785,0.606177,0.0332835,0.606163,0.0229123,0.590973,0.0313243,0.590973,0.0203513,0.658402,0.0414704,0.622229,0.0414704,0.604574,0.0414705,0.590973,0.0414705,0.604574,0.00997843,0.622229,0.00997843,0.590973,0.00997843,0.658402,0.00997827,0.641161,0.00997835,0.641161,0.0414704,0.675642,0.0414704,0.675842,0.0338965,0.694574,0.0414704,0.693252,0.0333197,0.71223,0.0414705,0.710402,0.032325,0.72583,0.0414705,0.72583,0.0313243,0.675385,0.030345,0.675642,0.00997835,0.690815,0.0269497,0.694574,0.00997843,0.710107,0.0229731,0.71223,0.00997843,0.725831,0.0203513,0.725831,0.00997843,0.257079,0.81606,0.257079,0.80768,0.257079,0.72597,0.257079,0.71645,0.257079,0.70572,0.257079,0.69234,0.257079,0.7998,0.257079,0.79058,0.257079,0.82572,0.257079,0.85142,0.257079,0.83706,0.257079,0.77844,0.257079,0.76456,0.257079,0.73876,0.257079,0.89616,0.257079,0.89011,0.257079,0.88058,0.257079,0.86807,0.257079,0.75172,0.257079,0.67739,0.257079,0.66112,0.257079,0.90101,0.257079,0.90525,0.257079,0.90985,0.219855,0.62972,0.219855,0.61431,0.219855,0.59777,0.219855,0.58191,0.219855,0.56842,0.219855,0.54342,0.219855,0.53797,0.219855,0.54864,0.219855,0.55768,0.715398,0.33375,0.715398,0.32397,0.715398,0.3139,0.715398,0.3035,0.715398,0.18513,0.715398,0.17853,0.715398,0.16594,0.715398,0.16002,0.715398,0.17194,0.715398,0.23312,0.715398,0.23649,0.715398,0.23967,0.715398,0.22994,0.715398,0.25481,0.715398,0.25114,0.715398,0.26246,0.715398,0.25866,0.715398,0.26625,0.715398,0.24737,0.715398,0.24482,0.715398,0.24331,0.715398,0.24199,0.715398,0.28651,0.715398,0.28996,0.715398,0.29711,0.715398,0.27446,0.715398,0.27025,0.715398,0.28283,0.715398,0.27882,0.715398,0.190876,0.715398,0.201866,0.715398,0.198898,0.715398,0.20359,0.715398,0.195794,0.715398,0.204574,0.715398,0.22579,0.715398,0.22289,0.715398,0.220556,0.715398,0.218433,0.715398,0.215927,0.715398,0.21512,0.715398,0.14085,0.715398,0.13912,0.715398,0.13793,0.715398,0.09555,0.715398,0.09333,0.715398,0.0984,0.715398,0.10514,0.715398,0.13072,0.715398,0.11647,0.715398,0.1356,0.715398,0.09098,0.89435,0.974085,0.890533,0.97179,0.886478,0.98473,0.890155,0.986942,0.753942,0.848651,0.735668,0.852002,0.738656,0.862281,0.758015,0.858734,0.773844,0.858083,0.769601,0.847883,0.802693,0.921716,0.801267,0.931557,0.816827,0.932321,0.818292,0.921799,0.834995,0.933192,0.852302,0.93447,0.852807,0.922811,0.835878,0.921994,0.806125,0.910806,0.822349,0.910162,0.854995,0.910166,0.839263,0.909803,0.836065,0.943744,0.853302,0.945345,0.793033,0.931492,0.786766,0.931931,0.785386,0.938975,0.792611,0.939938,0.817444,0.942233,0.819074,0.952783,0.8381,0.954946,0.820823,0.964547,0.840349,0.966816,0.822963,0.977149,0.842608,0.979404,0.747984,0.838255,0.731774,0.84227,0.839792,0.829275,0.820565,0.833317,0.828142,0.843255,0.846278,0.840095,0.723922,0.876161,0.722274,0.866127,0.706961,0.870655,0.708509,0.880157,0.704499,0.861355,0.719496,0.856229,0.687129,0.867668,0.688878,0.876452,0.690109,0.885646,0.715809,0.847064,0.701303,0.852776,0.684818,0.859476,0.681816,0.851105,0.697207,0.843757,0.690611,0.948454,0.689429,0.957696,0.706737,0.95926,0.70759,0.948693,0.711049,0.837259,0.72236,0.960089,0.722445,0.948658,0.66534,0.858259,0.667232,0.865983,0.672533,0.94831,0.671333,0.956303,0.668677,0.873804,0.669693,0.882128,0.649044,0.879314,0.649406,0.88733,0.648306,0.871783,0.709348,0.889894,0.690843,0.894341,0.670495,0.890825,0.671054,0.898807,0.724753,0.886406,0.67172,0.907098,0.691353,0.903273,0.650103,0.903091,0.650801,0.910845,0.649714,0.895448,0.756252,0.946667,0.738676,0.947773,0.73935,0.959797,0.756074,0.959715,0.768938,0.936669,0.755812,0.936475,0.768545,0.947859,0.7432,0.827442,0.726767,0.831234,0.739088,0.936893,0.723212,0.938098,0.757924,0.924285,0.739929,0.926546,0.724113,0.92795,0.709711,0.899384,0.725166,0.896614,0.725136,0.906915,0.709878,0.908999,0.691862,0.911937,0.741638,0.904999,0.741811,0.894189,0.76117,0.902905,0.759527,0.913784,0.774781,0.912998,0.77646,0.901843,0.740849,0.915604,0.771394,0.925283,0.724764,0.917202,0.709857,0.91885,0.709438,0.929025,0.69224,0.921032,0.692186,0.930498,0.821325,0.876687,0.820403,0.865822,0.80128,0.867923,0.802514,0.87852,0.839122,0.874367,0.838751,0.863217,0.80088,0.889166,0.818036,0.887692,0.776752,0.86884,0.787404,0.868739,0.78362,0.858294,0.777871,0.879696,0.777507,0.890661,0.788629,0.890062,0.788834,0.879424,0.835421,0.886054,0.762026,0.89172,0.801472,0.950134,0.792593,0.949219,0.792891,0.958589,0.802301,0.961268,0.791645,0.968345,0.803502,0.973686,0.786264,0.956019,0.785246,0.94803,0.778227,0.948622,0.781136,0.961756,0.673192,0.923539,0.6725,0.915142,0.651689,0.918566,0.652469,0.926252,0.691544,0.939603,0.708558,0.938781,0.647081,0.864554,0.815584,0.855719,0.834664,0.852963,0.808258,0.846195,0.851851,0.850309,0.801121,0.940833,0.828822,0.898014,0.845064,0.897308,0.851367,0.884536,0.673265,0.940416,0.653181,0.94117,0.652826,0.948322,0.673514,0.932163,0.652962,0.933808,0.792931,0.922751,0.794057,0.911492,0.811486,0.89912,0.797442,0.90027,0.78716,0.901173,0.784929,0.91248,0.789934,0.847838,0.778677,0.848058,0.796793,0.857737,0.800363,0.836684,0.784266,0.837742,0.855399,0.860607,0.855359,0.87193,0.868693,0.870639,0.868433,0.859171,0.651925,0.955411,0.864974,0.883409,0.895317,0.952221,0.902131,0.955381,0.905819,0.943703,0.895156,0.940601,0.893852,0.962103,0.898808,0.964922,0.884165,0.939044,0.885188,0.949985,0.868924,0.924732,0.869563,0.911162,0.85502,0.956386,0.870631,0.957495,0.869651,0.947524,0.885172,0.959771,0.883628,0.969999,0.908668,0.852401,0.901996,0.854691,0.904411,0.86591,0.913695,0.862096,0.889964,0.811585,0.884221,0.810674,0.887938,0.825088,0.893505,0.825682,0.8983,0.836331,0.892231,0.83641,0.897226,0.845088,0.903395,0.844146,0.865059,0.848984,0.877253,0.847367,0.87312,0.837397,0.860534,0.838146,0.869074,0.825192,0.855469,0.826405,0.863621,0.811047,0.849361,0.813957,0.871374,0.968228,0.856896,0.967884,0.85848,0.980522,0.871209,0.981118,0.894525,0.926542,0.883482,0.925919,0.859409,0.896837,0.872992,0.896103,0.878652,0.881866,0.882175,0.869076,0.881314,0.857391,0.761846,0.880668,0.760878,0.869741,0.740416,0.872892,0.741225,0.883464,0.782438,0.925975,0.762362,0.836601,0.832919,0.818035,0.8135,0.823098,0.794424,0.827463,0.781554,0.826882,0.904602,0.926733,0.905346,0.910789,0.895175,0.91098,0.908848,0.893943,0.898203,0.894882,0.912657,0.878001,0.902502,0.879286,0.894873,0.867499,0.891946,0.88068,0.868867,0.936909,0.883984,0.911154,0.88493,0.836614,0.889628,0.845726,0.880833,0.824871,0.87637,0.810379,0.881244,0.982993,0.887104,0.895651,0.893601,0.855925,0.778594,0.937405,0.769769,0.959646,0.773476,0.836592,0.769147,0.824418,0.757091,0.824916,0.636192,0.934865,0.625474,0.935998,0.627018,0.943203,0.636977,0.941971,0.63704,0.948752,0.6273,0.949644,0.635584,0.927542,0.624062,0.928415,0.63327,0.875999,0.633686,0.883038,0.633715,0.890308,0.61999,0.879519,0.619733,0.885963,0.623905,0.885179,0.623656,0.878568,0.632353,0.868905,0.623245,0.871379,0.633687,0.897891,0.633776,0.905146,0.622378,0.899058,0.621875,0.906063,0.616686,0.906164,0.61679,0.913585,0.622225,0.913326,0.634248,0.912543,0.634997,0.920087,0.623115,0.920985,0.617839,0.921443,0.619426,0.928892,0.636503,0.955659,0.624456,0.950183,0.624014,0.957503,0.627108,0.956668,0.623395,0.891894,0.624009,0.943767,0.621947,0.936504,0.620102,0.872238,0.618073,0.89929,0.619076,0.892371,0.349399,0.88651,0.340799,0.87986,0.336529,0.88814,0.344839,0.89437,0.332139,0.89809,0.340249,0.90372,0.358449,0.89329,0.353279,0.90104,0.347709,0.90991,0.952871,0.9421,0.950559,0.930395,0.93972,0.934349,0.941905,0.946337,0.949319,0.918433,0.937882,0.923096,0.938416,0.908329,0.949206,0.905931,0.959052,0.91505,0.95958,0.902796,0.939664,0.894446,0.94998,0.894107,0.951668,0.882327,0.942046,0.881058,0.959375,0.893388,0.960407,0.883354,0.944818,0.868924,0.95429,0.871044,0.962659,0.873662,0.344559,0.91887,0.337529,0.91376,0.337209,0.92381,0.344319,0.92733,0.339489,0.93441,0.346699,0.93672,0.967364,0.922437,0.970561,0.930708,0.975846,0.923778,0.972031,0.919572,0.978559,0.91476,0.972829,0.912368,0.960045,0.926303,0.962798,0.936835,0.973697,0.902044,0.967431,0.901639,0.966754,0.912878,0.96719,0.893386,0.973754,0.893965,0.97384,0.885915,0.967829,0.884776,0.973792,0.879872,0.969522,0.877062,0.977843,0.876984,0.973284,0.870228,0.966176,0.86436,0.435089,0.91663,0.437129,0.92466,0.442989,0.92353,0.442229,0.91345,0.979589,0.88536,0.957149,0.859946,0.947368,0.856858,0.437559,0.8978,0.427209,0.90201,0.431209,0.90917,0.440079,0.90509,0.979552,0.903828,0.342459,0.94588,0.348429,0.94762,0.979934,0.894621,0.450999,0.92428,0.451219,0.91247,0.329329,0.90891,0.328099,0.92,0.327519,0.93285,0.332819,0.94579,0.334409,0.95703,0.342019,0.95781,0.370349,0.85219,0.360999,0.85514,0.366749,0.86216,0.373659,0.85809,0.382609,0.85719,0.380999,0.85375,0.448419,0.89441,0.446439,0.88696,0.435009,0.89074,0.441249,0.87311,0.430029,0.87755,0.432459,0.88386,0.444089,0.87983,0.419049,0.86414,0.423469,0.85828,0.412439,0.85701,0.408659,0.86018,0.401759,0.85585,0.393469,0.85794,0.390919,0.85473,0.361729,0.86686,0.354349,0.85941,0.368619,0.87259,0.357649,0.87246,0.366409,0.87871,0.344979,0.87205,0.353639,0.87914,0.349329,0.86503,0.427519,0.87206,0.437429,0.86699,0.431669,0.86187,0.424169,0.86763,0.450109,0.90268,0.347559,0.95918,0.423949,0.94688,0.426929,0.95175,0.435569,0.94399,0.432219,0.94004,0.440969,0.93439,0.436379,0.93261,0.93474,0.866787,0.93164,0.878435,0.928999,0.893567,0.937511,0.854638,0.375409,0.86118,0.382949,0.85988,0.371309,0.86723,0.406449,0.86217,0.414779,0.8654,0.393049,0.8603,0.90591,0.960477,0.911138,0.955328,0.900765,0.967618,0.926351,0.924913,0.92673,0.909761,0.915457,0.910356,0.915126,0.926035,0.909101,0.841802,0.903908,0.83628,0.418269,0.87521,0.417889,0.86992,0.423769,0.89461,0.420859,0.88731,0.92819,0.852707,0.924461,0.864956,0.921894,0.877686,0.918386,0.893287,0.896043,0.976474,0.892741,0.988392,0.897911,0.826508,0.917398,0.939617,0.928491,0.937208,0.914072,0.84562,0.418979,0.88059,0.893466,0.812042,0.930699,0.949511,0.362849,0.88568,0.920144,0.952071,0.919921,0.850041,0.422689,0.73942,0.408399,0.74063,0.411039,0.7525,0.425729,0.7518,0.264479,0.81644,0.265419,0.80782,0.461409,0.901,0.462119,0.91224,0.460179,0.89152,0.473099,0.88922,0.474019,0.9,0.458649,0.88335,0.471889,0.87994,0.453639,0.8681,0.449349,0.86052,0.432949,0.84794,0.442679,0.8532,0.326789,0.85528,0.336299,0.86372,0.340619,0.85552,0.330579,0.84562,0.293109,0.8702,0.284739,0.86892,0.284599,0.88196,0.292299,0.88339,0.277009,0.86793,0.277269,0.88075,0.263279,0.86785,0.263649,0.88074,0.270269,0.88037,0.269879,0.86755,0.262679,0.85202,0.269009,0.85253,0.268589,0.83855,0.262599,0.83764,0.318769,0.91524,0.310349,0.91125,0.307559,0.92008,0.316159,0.92505,0.320769,0.90426,0.312469,0.90068,0.283689,0.9017,0.290349,0.90382,0.291579,0.89455,0.284439,0.89263,0.282199,0.90871,0.288249,0.91098,0.315289,0.88933,0.323819,0.89317,0.328169,0.88252,0.319349,0.87797,0.277139,0.90014,0.277409,0.89134,0.276269,0.90697,0.270589,0.89081,0.270689,0.89887,0.263539,0.89775,0.264979,0.90469,0.270309,0.90552,0.263909,0.89063,0.275109,0.80712,0.276299,0.79908,0.266179,0.79985,0.287649,0.69645,0.277019,0.69427,0.274439,0.70829,0.285169,0.71029,0.298679,0.69915,0.296569,0.71214,0.301069,0.6861,0.289829,0.6822,0.279249,0.67927,0.298029,0.81299,0.299739,0.80503,0.286579,0.80573,0.285709,0.81348,0.311949,0.81438,0.314279,0.80538,0.364669,0.78434,0.365519,0.77184,0.349369,0.77132,0.348489,0.7837,0.365709,0.76,0.349429,0.75962,0.381579,0.77456,0.380719,0.7868,0.381809,0.76231,0.461899,0.9257,0.474889,0.92537,0.474619,0.91218,0.488239,0.92567,0.488019,0.9128,0.487679,0.89944,0.487099,0.88737,0.486209,0.87691,0.419139,0.84601,0.405369,0.84484,0.391899,0.84416,0.426039,0.83369,0.408969,0.83311,0.379139,0.84268,0.393179,0.83161,0.378179,0.82907,0.366319,0.84044,0.362999,0.82645,0.278129,0.82199,0.274079,0.81698,0.269729,0.82741,0.276129,0.82873,0.345069,0.82605,0.354269,0.8432,0.346079,0.80938,0.362559,0.81182,0.363509,0.7977,0.347279,0.79637,0.335849,0.83698,0.346089,0.84877,0.363089,0.73741,0.347039,0.73716,0.348569,0.74819,0.364879,0.74842,0.361409,0.72796,0.346299,0.72738,0.332199,0.72682,0.331879,0.73794,0.332729,0.7496,0.344539,0.69243,0.333669,0.68762,0.333749,0.69736,0.345309,0.70109,0.321489,0.70453,0.333389,0.70706,0.322579,0.69365,0.356029,0.69672,0.357469,0.70446,0.319239,0.72661,0.318269,0.73874,0.346039,0.71837,0.332869,0.71677,0.320339,0.7154,0.379399,0.73805,0.376889,0.72805,0.360069,0.71978,0.374609,0.72062,0.393909,0.74009,0.391319,0.7297,0.388829,0.72145,0.381039,0.74992,0.396089,0.75203,0.420159,0.72832,0.405809,0.73002,0.450549,0.73188,0.448539,0.71995,0.434419,0.72483,0.436809,0.7365,0.432409,0.71535,0.447499,0.71172,0.417729,0.71883,0.403279,0.72099,0.378499,0.81484,0.396439,0.79114,0.379589,0.80032,0.395789,0.8045,0.412929,0.79436,0.412559,0.80773,0.471229,0.82629,0.447299,0.83427,0.457449,0.84467,0.475829,0.83758,0.467589,0.86324,0.463639,0.85422,0.456549,0.87563,0.470139,0.87153,0.483039,0.85908,0.484919,0.8679,0.277669,0.79025,0.267039,0.79069,0.287949,0.79795,0.289439,0.78936,0.303679,0.77701,0.304009,0.76448,0.291199,0.76502,0.290649,0.7786,0.304059,0.75158,0.291369,0.75134,0.278789,0.77908,0.279219,0.76534,0.267979,0.76496,0.267739,0.77882,0.279369,0.75142,0.268049,0.75142,0.413519,0.76588,0.429159,0.76566,0.444229,0.76471,0.440069,0.74989,0.457589,0.76172,0.453569,0.74617,0.461859,0.77725,0.446509,0.7803,0.397289,0.77887,0.397479,0.76543,0.413679,0.78079,0.430229,0.78145,0.430219,0.79494,0.447849,0.79383,0.430009,0.80807,0.429199,0.82101,0.448659,0.81929,0.448629,0.80664,0.465309,0.79132,0.469229,0.81481,0.394349,0.6985,0.380939,0.69968,0.383739,0.7069,0.397709,0.70574,0.400589,0.71304,0.415079,0.71078,0.412069,0.70369,0.480079,0.84873,0.460869,0.68958,0.443409,0.68926,0.444309,0.69741,0.461359,0.69575,0.423849,0.69388,0.427299,0.70062,0.462719,0.71649,0.462149,0.70905,0.309919,0.70194,0.311719,0.68997,0.308259,0.71391,0.306819,0.72608,0.358799,0.71208,0.372509,0.71365,0.370399,0.70664,0.430189,0.70749,0.301369,0.79696,0.302749,0.7879,0.368229,0.69947,0.294599,0.72513,0.292799,0.73817,0.305319,0.73865,0.282509,0.72405,0.280679,0.73776,0.269349,0.72255,0.268749,0.73779,0.263869,0.71551,0.275449,0.83937,0.276189,0.85314,0.333469,0.76089,0.317809,0.75122,0.318169,0.76292,0.304849,0.84471,0.316059,0.84892,0.318799,0.8381,0.306469,0.83325,0.293929,0.84198,0.294559,0.8305,0.283809,0.84009,0.284099,0.82928,0.303469,0.85814,0.313459,0.8615,0.309059,0.82356,0.322629,0.82858,0.327019,0.81813,0.293709,0.85585,0.296259,0.82122,0.284399,0.85402,0.285269,0.82089,0.323199,0.86646,0.266939,0.69279,0.265489,0.70628,0.499279,0.85595,0.497639,0.84471,0.500309,0.86573,0.501429,0.88683,0.501019,0.87609,0.501579,0.89915,0.501509,0.91362,0.280749,0.6628,0.269149,0.66154,0.268289,0.67777,0.333449,0.77246,0.332619,0.78442,0.317339,0.78611,0.316009,0.79627,0.331309,0.79594,0.318099,0.77463,0.329719,0.80691,0.263269,0.82626,0.476539,0.7724,0.471439,0.75733,0.467049,0.7418,0.464209,0.72795,0.332259,0.87298,0.394519,0.81838,0.411329,0.82081,0.467639,0.80353,0.260329,0.9013,0.260769,0.90502,0.492339,0.82042,0.489059,0.80889,0.481469,0.78625,0.495269,0.83256,0.501339,0.92605,0.294289,0.91369,0.300479,0.91658,0.303149,0.90828,0.296709,0.90592,0.305199,0.89819,0.298419,0.89628,0.307509,0.88683,0.299979,0.88496,0.301759,0.87185,0.310549,0.87445,0.485509,0.79783,0.345759,0.70969,0.386309,0.71404,0.446219,0.70442,0.461739,0.70222,0.313319,0.67777,0.303819,0.673,0.291509,0.66731,0.323269,0.68271,0.408329,0.69668,0.440449,0.9486,0.447929,0.93722,0.431799,0.95765,0.325139,0.94769,0.326949,0.95786,0.437699,0.9623,0.447109,0.95327,0.459359,0.94162,0.319949,0.93905,0.274829,0.91245,0.280109,0.91429,0.285529,0.91684,0.303149,0.92714,0.311359,0.93227,0.475309,0.93833,0.488699,0.93737,0.269679,0.91106,0.265059,0.91017,0.260949,0.90985,0.501279,0.93704,0.291059,0.91993,0.296639,0.92318,0.229335,0.59881,0.238865,0.60108,0.236885,0.5855,0.228425,0.58294,0.300905,0.62332,0.291435,0.62002,0.296505,0.62735,0.306365,0.63045,0.263075,0.60271,0.253845,0.59645,0.257935,0.60891,0.267615,0.61372,0.272445,0.60904,0.277085,0.61878,0.245105,0.59046,0.248315,0.60455,0.252185,0.61829,0.262565,0.62116,0.241755,0.61612,0.230615,0.61474,0.232205,0.62935,0.245385,0.62997,0.272735,0.62449,0.301845,0.63434,0.311915,0.63696,0.282295,0.62806,0.354785,0.63397,0.367795,0.63402,0.366135,0.62647,0.351435,0.62646,0.310805,0.62426,0.316725,0.6318,0.391605,0.62087,0.379605,0.61916,0.379975,0.62757,0.390975,0.62933,0.382385,0.64301,0.390295,0.64141,0.390495,0.63632,0.380515,0.63497,0.327685,0.6305,0.338965,0.6279,0.335035,0.6195,0.321985,0.62234,0.343675,0.63516,0.333355,0.63712,0.339345,0.64349,0.348825,0.64214,0.358635,0.6414,0.349025,0.61774,0.281825,0.61511,0.286645,0.62348,0.291985,0.63137,0.322515,0.63814,0.327845,0.64435,0.364805,0.61784,0.396295,0.63069,0.397775,0.62227,0.255955,0.63127,0.267325,0.63302,0.278185,0.63505,0.306405,0.6417,0.316815,0.64361,0.287165,0.6372,0.369325,0.64159,0.394965,0.63748,0.296555,0.63943,0.308095,0.56295,0.310235,0.54389,0.298785,0.54344,0.296595,0.56151,0.305675,0.57607,0.294635,0.57655,0.320505,0.56213,0.322555,0.54304,0.318305,0.57208,0.288185,0.54129,0.286125,0.5587,0.300725,0.52521,0.311925,0.52534,0.290065,0.52416,0.283425,0.58605,0.292995,0.59022,0.284475,0.57328,0.273885,0.57904,0.274665,0.56739,0.276175,0.55362,0.265625,0.58979,0.275155,0.59691,0.273895,0.58801,0.264325,0.58058,0.264405,0.57139,0.265465,0.56046,0.287405,0.61163,0.277915,0.60612,0.306255,0.61535,0.296575,0.61508,0.317875,0.61286,0.315335,0.60336,0.314605,0.59421,0.303185,0.59747,0.304005,0.60603,0.303485,0.58899,0.315125,0.58519,0.328935,0.59029,0.329435,0.58027,0.331725,0.56845,0.333545,0.55949,0.227975,0.54457,0.235075,0.54684,0.237235,0.53561,0.228355,0.53771,0.423285,0.53071,0.426435,0.52667,0.424645,0.52389,0.418685,0.5306,0.243115,0.52948,0.250515,0.53499,0.251345,0.52096,0.243205,0.51551,0.258445,0.54106,0.259945,0.52641,0.251791,0.50693,0.242411,0.501795,0.260942,0.512109,0.242055,0.54164,0.249275,0.54705,0.257025,0.55342,0.233795,0.51105,0.236005,0.5243,0.419015,0.51176,0.406085,0.51678,0.412715,0.52342,0.421985,0.51861,0.235435,0.57252,0.227645,0.56951,0.242815,0.57789,0.241455,0.56742,0.234585,0.56255,0.227245,0.5591,0.234765,0.55431,0.227495,0.55097,0.404975,0.53039,0.408535,0.53984,0.395755,0.53172,0.396625,0.54931,0.379405,0.53605,0.380045,0.55099,0.364325,0.53741,0.364115,0.55296,0.348285,0.55582,0.349775,0.53939,0.335895,0.54139,0.347095,0.56449,0.363525,0.56209,0.378595,0.56125,0.391955,0.56171,0.379345,0.58733,0.379485,0.57497,0.362655,0.57507,0.362695,0.58693,0.393435,0.57597,0.379185,0.59885,0.392715,0.5998,0.393165,0.58801,0.362995,0.59801,0.363715,0.60834,0.379355,0.60952,0.392125,0.6109,0.345145,0.57654,0.344985,0.58756,0.331735,0.61,0.346965,0.60817,0.329435,0.60014,0.345465,0.59805,0.256595,0.58178,0.255375,0.57264,0.259285,0.59186,0.250625,0.58444,0.248505,0.57375,0.247805,0.56517,0.241275,0.55889,0.248335,0.5567,0.241545,0.55099,0.255765,0.56371,0.266945,0.54746,0.297175,0.306619,0.306873,0.309207,0.3098,0.290733,0.300565,0.288377,0.294767,0.327187,0.304907,0.329073,0.318013,0.312132,0.319467,0.292958,0.316425,0.331446,0.281691,0.231009,0.2908,0.232508,0.29196,0.216003,0.282823,0.2147,0.299121,0.234735,0.300797,0.217763,0.309634,0.219598,0.307689,0.236684,0.358567,0.294306,0.349792,0.294697,0.350486,0.312384,0.358911,0.31272,0.357836,0.276956,0.349906,0.277526,0.366787,0.31113,0.366157,0.293642,0.363502,0.256168,0.364702,0.276068,0.372336,0.275017,0.371091,0.255488,0.349001,0.235867,0.350015,0.25833,0.357268,0.257159,0.356339,0.23489,0.370438,0.23383,0.363257,0.234208,0.374183,0.292548,0.348804,0.220112,0.340948,0.221007,0.340518,0.236962,0.302352,0.505956,0.291905,0.504779,0.279785,0.52123,0.278075,0.53728,0.281793,0.501947,0.313012,0.506038,0.293762,0.486034,0.283934,0.483363,0.272103,0.497951,0.270035,0.51693,0.274171,0.479769,0.26275,0.493325,0.264546,0.475414,0.253335,0.488194,0.25501,0.470404,0.266303,0.458013,0.256639,0.452958,0.243605,0.482978,0.245055,0.465134,0.246748,0.447664,0.268244,0.441363,0.258564,0.436123,0.276037,0.46238,0.277957,0.445859,0.285713,0.465888,0.287367,0.449388,0.295209,0.468356,0.29641,0.451747,0.288796,0.434217,0.279782,0.430597,0.29729,0.436528,0.290014,0.420644,0.281708,0.41705,0.29782,0.422756,0.305867,0.437512,0.305897,0.423321,0.298071,0.409493,0.290053,0.407839,0.306423,0.409755,0.270263,0.425743,0.27272,0.411551,0.260854,0.42016,0.263481,0.405494,0.305344,0.452914,0.315079,0.452962,0.315195,0.437419,0.314899,0.422333,0.248943,0.430733,0.251611,0.414619,0.238825,0.42575,0.236215,0.44266,0.241985,0.40973,0.397115,0.43983,0.385332,0.440721,0.388475,0.455568,0.399885,0.45455,0.391702,0.471286,0.402815,0.46981,0.234015,0.46027,0.394844,0.487272,0.405745,0.48514,0.232625,0.4781,0.399607,0.506595,0.408795,0.50293,0.231495,0.49853,0.254742,0.39975,0.246125,0.39498,0.382251,0.412989,0.383231,0.426582,0.394825,0.42576,0.393275,0.41231,0.378704,0.457352,0.381969,0.473637,0.385587,0.490714,0.273979,0.399748,0.282212,0.40446,0.282825,0.393699,0.27512,0.389541,0.276423,0.379978,0.283651,0.38423,0.268826,0.375048,0.267244,0.384245,0.265549,0.39371,0.290426,0.396402,0.298181,0.397382,0.306482,0.397368,0.315331,0.409047,0.315694,0.396879,0.324484,0.408047,0.325601,0.396185,0.334474,0.408054,0.336186,0.395369,0.326129,0.384899,0.315812,0.385694,0.337789,0.384506,0.306572,0.386764,0.325928,0.373304,0.315263,0.374568,0.337425,0.372749,0.325714,0.361475,0.337731,0.360754,0.312764,0.362634,0.298538,0.38709,0.291273,0.386488,0.299172,0.377527,0.292113,0.376967,0.306672,0.376961,0.292814,0.358055,0.292757,0.368032,0.300001,0.368681,0.3022,0.359146,0.293033,0.345271,0.30314,0.346229,0.314748,0.347917,0.285287,0.374997,0.261438,0.37024,0.259705,0.378391,0.257227,0.385539,0.252655,0.37329,0.254615,0.36604,0.249885,0.38071,0.262625,0.360987,0.255355,0.35771,0.38422,0.392075,0.391555,0.3928,0.391455,0.38618,0.384653,0.384187,0.391545,0.3777,0.384448,0.374434,0.270515,0.365305,0.272322,0.354221,0.263322,0.350083,0.278633,0.370106,0.282847,0.359092,0.283097,0.344427,0.272793,0.341548,0.263051,0.337515,0.285152,0.325597,0.274874,0.323293,0.264321,0.319735,0.392015,0.36595,0.384341,0.361768,0.392775,0.35023,0.384756,0.346183,0.376674,0.358818,0.376163,0.371827,0.376788,0.343452,0.367666,0.370996,0.368363,0.357289,0.367142,0.38267,0.376016,0.382787,0.36619,0.39349,0.375165,0.392649,0.36487,0.404871,0.373956,0.402863,0.389245,0.51183,0.376145,0.51608,0.373449,0.494634,0.372852,0.414649,0.36373,0.417307,0.355482,0.406393,0.354358,0.419195,0.356846,0.394472,0.346847,0.395184,0.345338,0.407285,0.358528,0.371272,0.348798,0.372361,0.348037,0.383929,0.357865,0.38316,0.349734,0.360213,0.359426,0.358074,0.349521,0.346037,0.338933,0.348217,0.327347,0.348861,0.359159,0.343889,0.328285,0.332746,0.339514,0.332238,0.35894,0.3287,0.349683,0.330544,0.340281,0.31325,0.384902,0.328131,0.37643,0.326752,0.393325,0.33054,0.383867,0.309159,0.392735,0.30885,0.390965,0.28901,0.382597,0.291362,0.380189,0.274203,0.388945,0.27337,0.266644,0.29907,0.269977,0.28132,0.258925,0.27821,0.255995,0.29647,0.273443,0.266397,0.278205,0.250933,0.267755,0.2474,0.262465,0.26342,0.37524,0.309525,0.367807,0.32715,0.277859,0.302269,0.254535,0.31581,0.254495,0.33319,0.288156,0.304641,0.296548,0.254741,0.305069,0.256486,0.287767,0.253051,0.315277,0.23802,0.313075,0.258168,0.293618,0.270829,0.302838,0.272846,0.311535,0.274908,0.321611,0.259491,0.323275,0.238408,0.280884,0.284002,0.284038,0.268876,0.378803,0.255492,0.387125,0.25624,0.387645,0.23344,0.378509,0.233734,0.386535,0.21584,0.378131,0.216757,0.272335,0.22996,0.273495,0.21422,0.329357,0.313667,0.329536,0.2943,0.331186,0.260068,0.320618,0.276716,0.330601,0.277731,0.339935,0.294751,0.340563,0.277903,0.331892,0.237726,0.333054,0.221376,0.324817,0.221233,0.340824,0.259595,0.362895,0.51934,0.360895,0.497792,0.348454,0.500593,0.349795,0.52111,0.347377,0.482487,0.35912,0.479775,0.336074,0.48458,0.336366,0.503063,0.336825,0.52298,0.335642,0.467021,0.346256,0.465217,0.356997,0.462759,0.335127,0.450767,0.345323,0.449109,0.325019,0.452115,0.325182,0.468565,0.325152,0.486356,0.370817,0.476511,0.367879,0.459907,0.355199,0.446965,0.365377,0.44474,0.374718,0.442506,0.354286,0.432364,0.364063,0.430345,0.373102,0.428239,0.324781,0.436814,0.334766,0.435736,0.344762,0.43414,0.314082,0.487417,0.314655,0.469598,0.303692,0.487378,0.304622,0.469601,0.324181,0.505023,0.323765,0.52465,0.334809,0.421536,0.324697,0.422118,0.344841,0.420189,0.268685,0.5321,0.383245,0.399972,0.391885,0.39935,0.255045,0.34707,0.368312,0.342739,0.291043,0.28622,0.316996,0.220888,0.268475,0.59932,0.283595,0.59458,0.294275,0.60629,0.419365,0.53929,0.414695,0.54305,0.292657,0.202607,0.283462,0.201127,0.302255,0.204928,0.311149,0.207079,0.34905,0.207672,0.34171,0.2084,0.274425,0.20082,0.334178,0.208586,0.326147,0.208241,0.318541,0.208051,0.37063,0.217389,0.363259,0.218139,0.35615,0.219093,0.377361,0.203243,0.385365,0.20198,0.37021,0.204343,0.363036,0.205441,0.356032,0.206597,0.423885,0.53593,0.427715,0.53417,0.405645,0.55558,0.400565,0.57646,0.398105,0.56548,0.400025,0.60044,0.400415,0.58835,0.399125,0.61208,0.293145,0.59832,0.284835,0.60288,0.393795,0.64334,0.392705,0.64872,0.294489,0.192793,0.304146,0.196193,0.306295,0.19003,0.297165,0.18413,0.284188,0.191145,0.30314,0.132433,0.305588,0.122356,0.298334,0.118654,0.295942,0.129004,0.312489,0.132537,0.315564,0.123642,0.314723,0.116257,0.311625,0.11252,0.305839,0.106975,0.316189,0.090085,0.308129,0.091705,0.315669,0.101065,0.30015,0.092475,0.29737,0.105425,0.31782,0.108337,0.301528,0.139799,0.292989,0.139376,0.292252,0.147859,0.300386,0.147631,0.29138,0.158045,0.30011,0.156725,0.287209,0.137965,0.28449,0.147125,0.289859,0.128125,0.323585,0.105955,0.32273,0.098415,0.328294,0.104877,0.32802,0.097045,0.32803,0.087045,0.32857,0.072645,0.32326,0.073635,0.32255,0.088215,0.31703,0.075855,0.327061,0.199479,0.319489,0.199647,0.312394,0.198763,0.34006,0.108591,0.339251,0.097864,0.33349,0.096825,0.333263,0.105229,0.368676,0.123932,0.375951,0.121269,0.369819,0.113709,0.362334,0.116776,0.373465,0.131844,0.380965,0.129371,0.38297,0.118925,0.37688,0.111045,0.3878,0.127075,0.24884,0.128005,0.24208,0.128575,0.24694,0.137845,0.25313,0.135615,0.25501,0.144065,0.257389,0.140205,0.353601,0.101159,0.361108,0.100531,0.358145,0.091795,0.351139,0.09055,0.3562,0.079975,0.34976,0.078165,0.344671,0.089074,0.34362,0.075985,0.345795,0.098522,0.358066,0.117047,0.359122,0.109399,0.355469,0.110969,0.32676,0.019055,0.3298,0.019885,0.32979,0.016325,0.327419,0.015035,0.32987,0.013505,0.33227,0.015225,0.24283,0.090355,0.23786,0.089475,0.23909,0.109705,0.24583,0.104965,0.360619,0.080505,0.365671,0.091322,0.23972,0.118825,0.24776,0.114745,0.369,0.099927,0.25986,0.132885,0.257009,0.126515,0.2409,0.123695,0.24851,0.122585,0.25432,0.111575,0.25551,0.120515,0.26347,0.138915,0.266509,0.129005,0.26988,0.134345,0.264059,0.123895,0.26585,0.145195,0.37751,0.140545,0.38548,0.137985,0.27798,0.143615,0.27308,0.151955,0.28206,0.156445,0.36934,0.142575,0.36597,0.133904,0.284409,0.125835,0.279659,0.123275,0.27752,0.131645,0.28184,0.135035,0.27315,0.139135,0.27396,0.128375,0.27534,0.121575,0.287179,0.115925,0.281809,0.114315,0.276169,0.114135,0.35685,0.136239,0.361309,0.143055,0.26262,0.117765,0.25554,0.033395,0.25549,0.036585,0.25763,0.036525,0.257569,0.032725,0.260009,0.035545,0.25993,0.032615,0.25713,0.028845,0.25348,0.031135,0.26245,0.030105,0.24891,0.032785,0.247359,0.032475,0.247379,0.035895,0.248959,0.035295,0.245789,0.039325,0.24744,0.039685,0.24582,0.035395,0.24401,0.034025,0.24585,0.032585,0.24401,0.030175,0.24401,0.038095,0.24904,0.038795,0.250699,0.037235,0.250699,0.033595,0.24903,0.042255,0.24745,0.043265,0.250699,0.041045,0.250699,0.030745,0.33816,0.015225,0.33816,0.019725,0.34055,0.020535,0.34124,0.017395,0.34295,0.012385,0.343219,0.017345,0.283699,0.104525,0.277029,0.104895,0.28799,0.080075,0.27978,0.080495,0.27779,0.092725,0.28556,0.093475,0.29015,0.104865,0.29256,0.093185,0.30332,0.078865,0.29556,0.079595,0.25973,0.046935,0.2598,0.043685,0.25742,0.044115,0.25727,0.047495,0.25994,0.039815,0.25761,0.040665,0.26245,0.047255,0.26245,0.043735,0.26245,0.038985,0.26012,0.050505,0.257,0.051135,0.2626,0.048375,0.332889,0.030305,0.33543,0.030115,0.33543,0.024445,0.33295,0.024795,0.330239,0.030405,0.33016,0.024865,0.33543,0.018665,0.33285,0.019385,0.34048,0.056545,0.34592,0.058855,0.34469,0.052155,0.34142,0.050805,0.335669,0.053605,0.338309,0.048785,0.344619,0.047545,0.341819,0.045955,0.33907,0.044595,0.34899,0.055035,0.34698,0.052295,0.349909,0.051035,0.34736,0.049335,0.334439,0.047975,0.33653,0.046895,0.33667,0.044035,0.33906,0.040095,0.336749,0.041125,0.342019,0.041145,0.330939,0.048405,0.3303,0.053945,0.327259,0.048005,0.32483,0.053225,0.32947,0.060965,0.32405,0.061265,0.33456,0.061435,0.33082,0.044075,0.32728,0.044395,0.32489,0.047065,0.324279,0.044865,0.32283,0.048735,0.33038,0.040155,0.32631,0.040975,0.32359,0.042755,0.33405,0.043905,0.33402,0.039815,0.34508,0.025915,0.347269,0.026305,0.347269,0.020655,0.345169,0.021525,0.34477,0.031135,0.347269,0.031805,0.24401,0.042285,0.24577,0.043235,0.300749,0.033135,0.30466,0.034285,0.30465,0.030265,0.30069,0.029485,0.30841,0.030685,0.30841,0.035065,0.30104,0.037125,0.30494,0.038825,0.30841,0.039835,0.24956,0.086955,0.251769,0.098885,0.25978,0.093575,0.25851,0.083245,0.347269,0.015515,0.34492,0.018215,0.28907,0.055695,0.287739,0.060185,0.29247,0.059925,0.2931,0.054935,0.28943,0.051685,0.293209,0.050455,0.297759,0.059485,0.297919,0.054495,0.29796,0.049785,0.289719,0.047615,0.29327,0.046115,0.286359,0.049235,0.286019,0.052975,0.28538,0.056525,0.297749,0.045295,0.290339,0.043165,0.287069,0.044825,0.28201,0.051355,0.28229,0.053835,0.28367,0.045885,0.28152,0.056855,0.278479,0.056335,0.27807,0.054225,0.27744,0.052205,0.30362,0.049965,0.30315,0.045915,0.30363,0.054205,0.309009,0.050315,0.30844,0.047335,0.30592,0.043385,0.3019,0.041505,0.29735,0.040805,0.30944,0.053245,0.31292,0.051785,0.3131,0.049785,0.312519,0.047505,0.26976,0.053975,0.27393,0.054055,0.27393,0.050005,0.26981,0.049795,0.266139,0.049855,0.26575,0.053975,0.27343,0.045265,0.27026,0.045355,0.267549,0.045235,0.26233,0.054155,0.263159,0.051395,0.25953,0.054435,0.260549,0.058295,0.26255,0.056835,0.26561,0.057835,0.25678,0.054985,0.254229,0.051585,0.254029,0.055405,0.2552,0.047945,0.270549,0.058005,0.26435,0.062755,0.27215,0.062305,0.24932,0.055895,0.25006,0.059855,0.25169,0.058355,0.25154,0.055625,0.253859,0.059265,0.25294,0.064225,0.257219,0.059305,0.25828,0.064385,0.24678,0.056335,0.24708,0.060955,0.24723,0.051815,0.24973,0.051475,0.24384,0.056605,0.243669,0.061075,0.24488,0.052655,0.236,0.060035,0.23763,0.064565,0.24008,0.062105,0.238579,0.057905,0.23337,0.062435,0.23498,0.066675,0.23662,0.071805,0.240159,0.069545,0.24375,0.066335,0.23591,0.053955,0.23923,0.052315,0.23854,0.046975,0.23598,0.048265,0.23328,0.049115,0.23319,0.055475,0.32435,0.039565,0.32312,0.040755,0.32079,0.042095,0.321629,0.045575,0.322329,0.039585,0.33307,0.035325,0.3302,0.035605,0.32697,0.035805,0.34513,0.042745,0.34775,0.045545,0.35068,0.046535,0.349899,0.043525,0.34819,0.042815,0.347439,0.042105,0.31801,0.043595,0.31889,0.047105,0.31955,0.037805,0.31715,0.038915,0.32197,0.036005,0.316019,0.048745,0.31494,0.045275,0.31456,0.039045,0.31223,0.043185,0.31175,0.045215,0.31192,0.038645,0.30972,0.045535,0.35566,0.063825,0.36067,0.065115,0.36106,0.059115,0.356759,0.058385,0.23306,0.072725,0.23203,0.067805,0.36067,0.053455,0.356929,0.053125,0.23079,0.064355,0.355349,0.069615,0.36002,0.071325,0.23478,0.078855,0.239129,0.077965,0.23079,0.056445,0.23079,0.048545,0.36032,0.048165,0.3572,0.048065,0.360249,0.043065,0.35752,0.043135,0.35317,0.052475,0.353949,0.047705,0.35467,0.043145,0.3523,0.042915,0.3049,0.021095,0.30484,0.025765,0.30841,0.025705,0.30841,0.017425,0.30024,0.017425,0.30088,0.020035,0.29183,0.023855,0.29463,0.023445,0.29411,0.019035,0.291299,0.020555,0.29713,0.020295,0.29717,0.024305,0.28843,0.017425,0.287789,0.020295,0.30083,0.024965,0.31434,0.018565,0.314089,0.021395,0.31697,0.021755,0.3172,0.017955,0.3172,0.014965,0.31169,0.017345,0.31169,0.020825,0.31977,0.021175,0.31982,0.018495,0.32197,0.020445,0.32197,0.017455,0.32433,0.034975,0.263509,0.049105,0.339709,0.035225,0.33804,0.035035,0.33799,0.038125,0.3366,0.039155,0.2491,0.046145,0.25097,0.050275,0.250699,0.044335,0.25169,0.051085,0.25182,0.052775,0.35047,0.041805,0.241759,0.049845,0.24096,0.045785,0.24156,0.053265,0.24238,0.051345,0.26829,0.028665,0.27117,0.028385,0.27133,0.025525,0.26539,0.027395,0.27398,0.028795,0.2769,0.027345,0.26539,0.030185,0.26811,0.030895,0.33543,0.013165,0.32944,0.010745,0.32433,0.013225,0.35511,0.022875,0.35034,0.025725,0.35334,0.027205,0.35532,0.026725,0.35716,0.026705,0.35987,0.023915,0.35775,0.029255,0.35987,0.027785,0.23593,0.032255,0.23644,0.028945,0.23079,0.030155,0.23346,0.032575,0.23079,0.034075,0.233309,0.035475,0.23583,0.035525,0.316729,0.033585,0.319189,0.033275,0.32197,0.032225,0.3552,0.038405,0.35267,0.038635,0.3577,0.038285,0.31416,0.024515,0.31686,0.024795,0.31424,0.028225,0.31676,0.028585,0.31932,0.028655,0.31957,0.024535,0.35034,0.029585,0.35034,0.034315,0.352719,0.033915,0.352879,0.029965,0.3504,0.038555,0.35532,0.033615,0.35546,0.030105,0.34222,0.035955,0.338149,0.029695,0.3402,0.030275,0.34251,0.030585,0.357819,0.033245,0.280939,0.041535,0.280939,0.045885,0.284429,0.040745,0.288,0.039545,0.2847,0.035015,0.280939,0.035925,0.288489,0.034045,0.338799,0.088006,0.33835,0.073985,0.33349,0.072755,0.33352,0.087045,0.293029,0.117435,0.351618,0.106946,0.350189,0.113421,0.346276,0.105992,0.24594,0.075055,0.2769,0.064785,0.2705,0.069205,0.282699,0.068515,0.28123,0.064555,0.283919,0.060055,0.278749,0.060225,0.34437,0.065445,0.33934,0.063095,0.349719,0.067855,0.35023,0.062295,0.31804,0.062525,0.31855,0.055565,0.31125,0.064025,0.31078,0.077385,0.311629,0.056675,0.30422,0.065305,0.30386,0.058855,0.29756,0.065965,0.365329,0.108692,0.39234,0.135205,0.27067,0.126035,0.354856,0.120264,0.34272,0.116631,0.348499,0.122641,0.26171,0.108555,0.27026,0.121555,0.255459,0.040675,0.25348,0.035465,0.25348,0.039815,0.25536,0.044375,0.25348,0.044085,0.25349,0.048815,0.33545,0.035035,0.26245,0.033875,0.33816,0.024925,0.34037,0.025065,0.35269,0.058065,0.342719,0.025425,0.34284,0.021345,0.31535,0.051885,0.31921,0.050595,0.27538,0.057315,0.280019,0.049975,0.27816,0.049975,0.29357,0.041685,0.288319,0.028855,0.29185,0.033365,0.291979,0.028515,0.28791,0.024115,0.294599,0.032665,0.29474,0.028225,0.2973,0.032335,0.29727,0.028565,0.24844,0.066415,0.24097,0.056855,0.24127,0.060205,0.24569,0.047215,0.24746,0.047095,0.335669,0.038695,0.284049,0.024455,0.280939,0.024905,0.280939,0.029665,0.284449,0.029475,0.28418,0.020625,0.280939,0.017425,0.27696,0.048125,0.32433,0.017815,0.334966,0.199427,0.361589,0.126402,0.353167,0.129596,0.26506,0.047725,0.2531,0.049845,0.34471,0.036515,0.347269,0.036265,0.24381,0.050545,0.30818,0.043175,0.26539,0.044315,0.24401,0.046335,0.27393,0.030965,0.2769,0.030155,0.27097,0.031125,0.23822,0.032215,0.24066,0.029965,0.238239,0.034545,0.24066,0.032565,0.2769,0.045335,0.327259,0.030345,0.32433,0.030235,0.32711,0.024495,0.32433,0.024075,0.35987,0.037945,0.31169,0.024295,0.26539,0.033755,0.26804,0.034245,0.32197,0.024015,0.27079,0.034545,0.27377,0.034275,0.2769,0.033435,0.31169,0.027825,0.32197,0.028215,0.26539,0.037235,0.268,0.037855,0.27069,0.038095,0.27368,0.037805,0.2769,0.037025,0.31169,0.032455,0.3143,0.033245,0.2769,0.041055,0.27356,0.041245,0.26799,0.041355,0.27061,0.041405,0.26539,0.041335,0.23338,0.039645,0.235949,0.039425,0.23834,0.038055,0.24066,0.035965,0.35987,0.032825,0.23079,0.038855,0.23845,0.041995,0.24066,0.040065,0.23603,0.043605,0.23338,0.044135,0.23079,0.043705,0.29124,0.038285,0.29416,0.037125,0.29726,0.036385,0.269299,0.081245,0.29103,0.066375,0.3738,0.106214,0.335705,0.19167,0.342186,0.199006,0.343095,0.19088,0.357664,0.122591,0.369784,0.195189,0.362672,0.196581,0.24734,0.028795,0.577777,0.464,0.587467,0.46087,0.582047,0.45309,0.575497,0.45683,0.577127,0.47209,0.585147,0.47114,0.575897,0.48044,0.570157,0.47267,0.569277,0.48058,0.573997,0.48816,0.567827,0.48756,0.582537,0.48796,0.583657,0.47952,0.570317,0.46531,0.589087,0.47875,0.590317,0.4704,0.581287,0.49687,0.588687,0.49656,0.588547,0.48724,0.579137,0.50631,0.588217,0.50613,0.589017,0.51647,0.579097,0.51728,0.580707,0.52888,0.590397,0.52742,0.568277,0.53097,0.566467,0.51775,0.565937,0.50629,0.572937,0.54323,0.584467,0.53967,0.569397,0.49611,0.565797,0.49214,0.562077,0.48724,0.560317,0.49257,0.569587,0.45903,0.591957,0.5377,0.579627,0.55212,0.590947,0.54977,0.594757,0.54757,0.592407,0.46143,0.558697,0.4973,0.556107,0.50208,0.576967,0.44644,0.571337,0.4505,0.597367,0.55725,0.599657,0.55571,0.595527,0.44455,0.592417,0.45174,0.595437,0.4528,0.598277,0.44512,0.477877,0.49202,0.479147,0.49447,0.481367,0.49407,0.481357,0.49087,0.475487,0.49668,0.478627,0.49685,0.481637,0.52612,0.480577,0.52271,0.477097,0.52279,0.475617,0.52604,0.475927,0.51969,0.472787,0.52058,0.504277,0.56028,0.503517,0.56166,0.505177,0.56317,0.507677,0.56059,0.511247,0.56334,0.512797,0.56049,0.504627,0.5584,0.508147,0.55801,0.513407,0.55771,0.506377,0.55526,0.504327,0.55694,0.502347,0.55696,0.501767,0.55841,0.501507,0.56023,0.512737,0.55492,0.518857,0.55389,0.519657,0.55654,0.518927,0.55965,0.511507,0.5519,0.505817,0.5519,0.516287,0.5519,0.525357,0.55018,0.521077,0.54993,0.513747,0.42419,0.509447,0.42258,0.510237,0.42567,0.512667,0.42629,0.513157,0.42823,0.517597,0.42721,0.498547,0.558,0.498277,0.56037,0.500247,0.55538,0.494077,0.55785,0.493877,0.56051,0.494197,0.55503,0.489617,0.558,0.489457,0.56059,0.488387,0.55518,0.498917,0.5662,0.499417,0.56293,0.493637,0.56319,0.493477,0.5662,0.487927,0.56315,0.488137,0.5662,0.483207,0.56314,0.483257,0.5662,0.479697,0.56341,0.479667,0.5662,0.485877,0.5619,0.484337,0.5619,0.482197,0.56045,0.479847,0.56046,0.484047,0.56036,0.476997,0.56332,0.474977,0.5662,0.475427,0.41293,0.479007,0.41325,0.479927,0.41071,0.475437,0.41071,0.483347,0.41354,0.483347,0.41071,0.476827,0.56055,0.479897,0.55739,0.476797,0.55707,0.482337,0.55773,0.479787,0.55452,0.476937,0.55444,0.483597,0.55503,0.478947,0.41609,0.475417,0.41542,0.483407,0.41644,0.478937,0.41924,0.483487,0.41949,0.475417,0.41868,0.488107,0.41365,0.488297,0.41664,0.488407,0.41968,0.486297,0.56041,0.486447,0.55823,0.484197,0.55815,0.486227,0.55657,0.484687,0.55651,0.475397,0.42178,0.478937,0.42244,0.483547,0.42255,0.488447,0.42268,0.483797,0.4256,0.488577,0.42561,0.493557,0.42283,0.493457,0.41987,0.493697,0.42563,0.475377,0.42558,0.479827,0.42559,0.498727,0.41991,0.498587,0.41678,0.493327,0.41678,0.498907,0.42288,0.504167,0.41974,0.504117,0.41663,0.504317,0.42278,0.509887,0.41673,0.509447,0.41375,0.503817,0.41368,0.509727,0.41975,0.498407,0.41373,0.499207,0.42564,0.494177,0.5519,0.488827,0.5519,0.499957,0.5519,0.479657,0.5519,0.474877,0.5519,0.483807,0.5519,0.508597,0.41071,0.515197,0.41424,0.513837,0.41071,0.521257,0.4153,0.521207,0.41071,0.509697,0.5662,0.515187,0.5662,0.517357,0.56298,0.522677,0.5662,0.524137,0.56165,0.519387,0.45617,0.512627,0.45748,0.513457,0.46264,0.520447,0.46216,0.516997,0.44965,0.511517,0.45296,0.507507,0.46241,0.507417,0.45862,0.507357,0.45589,0.501927,0.4562,0.501687,0.45909,0.501287,0.46263,0.507427,0.45365,0.502337,0.45365,0.496067,0.45365,0.495767,0.45618,0.495377,0.4592,0.508757,0.45243,0.511497,0.45011,0.508777,0.45021,0.511477,0.44732,0.508127,0.44807,0.506867,0.4448,0.505177,0.44819,0.513027,0.44359,0.507547,0.44152,0.518797,0.4438,0.501637,0.44834,0.501887,0.44448,0.502347,0.44122,0.496047,0.44834,0.496157,0.44467,0.506247,0.53404,0.512807,0.53336,0.510247,0.5298,0.504937,0.5298,0.518607,0.53207,0.514607,0.5298,0.496427,0.44126,0.489867,0.44834,0.489937,0.44487,0.490177,0.44139,0.514927,0.53616,0.520857,0.535,0.509387,0.53676,0.490307,0.43791,0.496667,0.43799,0.483977,0.44149,0.483777,0.44501,0.483957,0.43792,0.512497,0.52553,0.513077,0.52174,0.507077,0.52219,0.507027,0.526,0.508457,0.51901,0.513337,0.51834,0.516797,0.5252,0.518327,0.5212,0.518707,0.5177,0.512447,0.51555,0.507747,0.51609,0.504987,0.51899,0.504847,0.52066,0.504407,0.51669,0.517947,0.51488,0.502047,0.51907,0.502867,0.5207,0.501487,0.51673,0.498757,0.51927,0.500977,0.5223,0.498167,0.51624,0.501547,0.51489,0.499267,0.51282,0.493607,0.51237,0.493947,0.51596,0.494497,0.51925,0.489187,0.45617,0.489197,0.45365,0.482397,0.45365,0.482837,0.4563,0.476587,0.45365,0.477127,0.45656,0.495087,0.5225,0.495407,0.52596,0.501187,0.52598,0.489647,0.5221,0.490457,0.52602,0.488927,0.45927,0.482807,0.45945,0.494847,0.46275,0.488457,0.46281,0.482447,0.4629,0.477267,0.45971,0.476977,0.46303,0.481967,0.46625,0.476467,0.46629,0.488007,0.4662,0.494377,0.46615,0.500767,0.46606,0.471727,0.45665,0.471507,0.45365,0.471867,0.4598,0.486147,0.52613,0.484957,0.52213,0.466217,0.45365,0.465807,0.45641,0.505377,0.53733,0.504367,0.53582,0.501807,0.53731,0.502007,0.53575,0.499297,0.53395,0.497697,0.53685,0.492467,0.53339,0.492337,0.53646,0.498947,0.5298,0.492707,0.5298,0.486467,0.53355,0.487387,0.53642,0.487667,0.5298,0.478207,0.44501,0.478347,0.44834,0.483547,0.44834,0.483827,0.5298,0.482277,0.53333,0.473297,0.44514,0.474397,0.44834,0.478227,0.44166,0.472987,0.44206,0.478087,0.43818,0.472787,0.43863,0.477627,0.43489,0.472407,0.43521,0.483667,0.43468,0.490297,0.43474,0.483217,0.43181,0.476997,0.43181,0.490207,0.43181,0.481277,0.5298,0.479307,0.53265,0.476507,0.53267,0.473997,0.5298,0.468647,0.44635,0.469227,0.44815,0.463787,0.44722,0.463787,0.44834,0.473617,0.53527,0.476167,0.53563,0.471087,0.5298,0.471087,0.5354,0.476067,0.53961,0.473617,0.54014,0.471087,0.5402,0.478937,0.53597,0.480857,0.53625,0.480647,0.53923,0.478777,0.53941,0.484167,0.53656,0.484117,0.53491,0.482767,0.53482,0.482217,0.53652,0.484037,0.53894,0.482017,0.53893,0.487377,0.53929,0.482347,0.5408,0.483797,0.54076,0.481677,0.54244,0.486327,0.54235,0.482527,0.54606,0.487357,0.54606,0.493017,0.54261,0.492547,0.53948,0.493387,0.54606,0.472017,0.43181,0.502227,0.53933,0.498077,0.53954,0.500427,0.54235,0.502987,0.5408,0.505437,0.54076,0.505827,0.53928,0.507837,0.54226,0.510017,0.53928,0.514757,0.54204,0.515677,0.53881,0.512727,0.54606,0.506797,0.54606,0.500157,0.54606,0.497067,0.43181,0.496867,0.43494,0.502887,0.43532,0.503197,0.43181,0.517247,0.54606,0.520447,0.54181,0.508247,0.43542,0.507327,0.43218,0.521497,0.53811,0.525157,0.54277,0.526707,0.53769,0.526717,0.53354,0.502647,0.43819,0.467857,0.43905,0.467657,0.43531,0.463787,0.43488,0.463787,0.43894,0.471087,0.54606,0.474257,0.54606,0.468207,0.43181,0.463787,0.43181,0.476087,0.54279,0.478847,0.54606,0.478607,0.54283,0.490467,0.51902,0.490007,0.51607,0.487547,0.5204,0.487607,0.51871,0.487227,0.51637,0.488387,0.51273,0.486657,0.51459,0.483627,0.51261,0.485117,0.51454,0.484957,0.51633,0.488837,0.50824,0.493487,0.50824,0.476177,0.46964,0.481637,0.46955,0.471117,0.46637,0.470937,0.46973,0.484387,0.50824,0.498817,0.50824,0.487917,0.46944,0.479067,0.51189,0.480107,0.50824,0.465317,0.46654,0.465907,0.46981,0.475527,0.51195,0.472957,0.50824,0.475317,0.51541,0.479107,0.51561,0.482507,0.51589,0.465637,0.46309,0.471607,0.46311,0.460207,0.46664,0.460207,0.46991,0.460207,0.46291,0.479667,0.51923,0.482997,0.51893,0.485357,0.51869,0.486047,0.52042,0.528767,0.5442,0.525567,0.54641,0.530307,0.54582,0.535287,0.54139,0.530437,0.541,0.520977,0.54824,0.520657,0.54541,0.465837,0.45957,0.460207,0.45952,0.469157,0.50824,0.469157,0.51526,0.472337,0.51515,0.469157,0.52342,0.469157,0.52604,0.460207,0.45641,0.460207,0.45365,0.474157,0.55647,0.474117,0.56082,0.471857,0.55542,0.471517,0.5603,0.472117,0.5662,0.489257,0.4966,0.488457,0.49406,0.486437,0.4956,0.486607,0.49697,0.485237,0.49566,0.484807,0.49702,0.484427,0.49421,0.484747,0.49881,0.486547,0.49876,0.485077,0.50011,0.486277,0.5001,0.489147,0.49896,0.488027,0.50142,0.482857,0.47581,0.479567,0.47578,0.479527,0.47794,0.482717,0.47824,0.471257,0.50442,0.477487,0.50433,0.475437,0.50051,0.471257,0.50179,0.478937,0.50173,0.478557,0.49965,0.471257,0.49706,0.471257,0.4931,0.481937,0.48731,0.479497,0.4866,0.482477,0.48389,0.479247,0.48273,0.482717,0.48085,0.479497,0.47932,0.485797,0.48757,0.486457,0.48442,0.485047,0.49078,0.514937,0.42125,0.519497,0.42442,0.521147,0.4199,0.515567,0.41781,0.517057,0.4327,0.513307,0.43058,0.490227,0.48758,0.490857,0.48448,0.489377,0.49071,0.572127,0.44125,0.580607,0.44086,0.574287,0.43437,0.569657,0.44517,0.503337,0.41071,0.504197,0.5662,0.498297,0.41071,0.501667,0.5616,0.563607,0.54276,0.561227,0.53654,0.559137,0.52883,0.557987,0.53319,0.558047,0.52225,0.555217,0.53921,0.553417,0.53447,0.552627,0.52945,0.549207,0.54165,0.547787,0.53649,0.546657,0.53084,0.557017,0.54434,0.550457,0.54621,0.563517,0.54744,0.558907,0.54956,0.552197,0.5526,0.556267,0.50897,0.556957,0.5148,0.555147,0.51866,0.549897,0.51441,0.550177,0.5191,0.551497,0.52389,0.549147,0.50939,0.546387,0.48618,0.545057,0.49143,0.552557,0.49195,0.554047,0.48659,0.554937,0.4806,0.562787,0.48061,0.547237,0.48053,0.534537,0.48289,0.533267,0.48747,0.539537,0.48655,0.540447,0.4814,0.531847,0.49166,0.538097,0.49133,0.543367,0.49585,0.550617,0.49644,0.530847,0.49577,0.536457,0.49559,0.541927,0.50006,0.548467,0.50047,0.530557,0.50006,0.535787,0.5,0.548027,0.5048,0.541927,0.50465,0.542847,0.50956,0.530667,0.50523,0.536157,0.50482,0.533197,0.51086,0.537557,0.51005,0.553397,0.50518,0.527137,0.48829,0.526117,0.49212,0.528267,0.48419,0.534167,0.47715,0.528357,0.47946,0.521797,0.48138,0.516107,0.48277,0.516367,0.48614,0.521757,0.48527,0.516327,0.48949,0.521177,0.48895,0.539927,0.47484,0.516327,0.49277,0.520727,0.49248,0.511577,0.48986,0.511277,0.48669,0.510907,0.48353,0.511987,0.49304,0.506707,0.49355,0.506307,0.49014,0.508567,0.4962,0.512447,0.4959,0.516407,0.49574,0.520577,0.49575,0.516417,0.49837,0.520687,0.49883,0.555477,0.47358,0.563407,0.47307,0.547297,0.47382,0.555237,0.4662,0.546417,0.46633,0.563377,0.46588,0.562887,0.45963,0.554817,0.45956,0.564697,0.44404,0.566557,0.43872,0.560237,0.4364,0.557387,0.44237,0.548567,0.43986,0.546817,0.44642,0.555807,0.44817,0.546037,0.45919,0.527957,0.457,0.528187,0.46314,0.536777,0.4667,0.531537,0.47117,0.552457,0.43335,0.543577,0.43022,0.537597,0.43657,0.564347,0.43134,0.557817,0.42666,0.568407,0.4346,0.581827,0.55895,0.572077,0.55643,0.575067,0.56278,0.572067,0.5718,0.578127,0.56843,0.569227,0.56598,0.566287,0.56013,0.563857,0.56937,0.566327,0.57513,0.560947,0.56379,0.561117,0.57811,0.559097,0.5728,0.555107,0.5761,0.556407,0.58111,0.556327,0.56761,0.552617,0.57128,0.551387,0.57896,0.552187,0.58324,0.549157,0.57426,0.546627,0.58103,0.547707,0.58494,0.545087,0.57666,0.542017,0.58301,0.543387,0.58683,0.540567,0.579,0.548467,0.58888,0.544407,0.59058,0.539147,0.58916,0.540307,0.59273,0.549267,0.59296,0.545227,0.59429,0.541127,0.59606,0.537457,0.58528,0.553177,0.59206,0.552527,0.58751,0.550467,0.59708,0.554327,0.59667,0.556877,0.59172,0.556487,0.58647,0.557567,0.59689,0.546197,0.598,0.534867,0.59159,0.536017,0.59489,0.533157,0.58805,0.533517,0.58572,0.534917,0.58474,0.530257,0.58569,0.528147,0.5871,0.529797,0.59016,0.530787,0.59341,0.532037,0.58413,0.549567,0.56705,0.546877,0.56993,0.546307,0.5642,0.552217,0.56241,0.546807,0.56156,0.544857,0.56643,0.557187,0.55825,0.549857,0.55753,0.538027,0.5553,0.539267,0.5605,0.545207,0.55776,0.544467,0.55286,0.564397,0.41184,0.560277,0.41434,0.562767,0.41805,0.567957,0.4147,0.556847,0.42084,0.565867,0.42244,0.555787,0.41684,0.551087,0.41896,0.549997,0.42202,0.545207,0.41856,0.542037,0.4199,0.556047,0.60198,0.558987,0.60296,0.542107,0.42369,0.548127,0.42557,0.544487,0.5198,0.545537,0.52511,0.539397,0.52099,0.534377,0.52254,0.535787,0.52838,0.540337,0.52661,0.536317,0.53442,0.541187,0.5327,0.534337,0.51633,0.538667,0.51548,0.543747,0.51468,0.530207,0.52077,0.530097,0.51641,0.529097,0.51207,0.523817,0.51359,0.524427,0.5168,0.524177,0.52062,0.525667,0.50299,0.525467,0.50526,0.527457,0.50778,0.522507,0.50533,0.520677,0.50205,0.522897,0.5096,0.516047,0.50073,0.517487,0.5034,0.515537,0.5033,0.516587,0.51163,0.526107,0.52464,0.529517,0.52379,0.525307,0.5296,0.530717,0.52623,0.541907,0.53889,0.531867,0.53595,0.531767,0.53084,0.537127,0.54633,0.543017,0.54386,0.531737,0.54948,0.537677,0.55017,0.531857,0.55362,0.526087,0.5535,0.525467,0.55736,0.531437,0.55869,0.530667,0.56429,0.527457,0.4227,0.525247,0.43038,0.536837,0.59793,0.537387,0.60105,0.541817,0.59943,0.542497,0.60324,0.547337,0.60201,0.537657,0.60473,0.537777,0.60858,0.543077,0.6071,0.548197,0.60574,0.530297,0.57181,0.532087,0.57545,0.536967,0.57233,0.535207,0.56942,0.525547,0.57514,0.527517,0.57867,0.552027,0.60158,0.553127,0.6056,0.557467,0.60676,0.532247,0.5994,0.532687,0.60239,0.531567,0.59652,0.527657,0.60012,0.528017,0.60309,0.532817,0.6058,0.528367,0.60615,0.527317,0.59723,0.523907,0.60038,0.524217,0.60367,0.524367,0.59737,0.532647,0.60918,0.528387,0.60891,0.517327,0.59132,0.519317,0.59356,0.521167,0.59156,0.519337,0.58944,0.523427,0.59396,0.521207,0.59506,0.524557,0.59161,0.523287,0.58967,0.526997,0.59426,0.526867,0.5912,0.524997,0.60647,0.518047,0.58774,0.516317,0.58768,0.517947,0.58478,0.519417,0.58589,0.525787,0.6084,0.521417,0.58355,0.519137,0.58206,0.521417,0.58749,0.523797,0.58562,0.525817,0.58827,0.523957,0.58121,0.526067,0.58408,0.528317,0.58266,0.529787,0.57942,0.530487,0.58157,0.532627,0.58003,0.531277,0.57838,0.534117,0.58263,0.536847,0.58109,0.535117,0.57785,0.538887,0.57533,0.514297,0.46826,0.516257,0.47095,0.521397,0.46894,0.517657,0.47376,0.520427,0.47731,0.526247,0.47429,0.515337,0.47959,0.514487,0.47704,0.510517,0.48052,0.510537,0.47782,0.505827,0.48392,0.505767,0.48092,0.506187,0.47811,0.500707,0.4842,0.500807,0.48127,0.501087,0.4786,0.507737,0.47535,0.501767,0.47617,0.511597,0.47512,0.506037,0.48703,0.500607,0.48728,0.500477,0.49036,0.512507,0.47021,0.514307,0.4718,0.519557,0.50836,0.514777,0.50824,0.506757,0.46876,0.507337,0.46604,0.510887,0.51217,0.509737,0.50824,0.500747,0.46923,0.504297,0.50824,0.505107,0.51281,0.494357,0.46934,0.514457,0.43847,0.519607,0.43824,0.515167,0.43545,0.520457,0.43331,0.512357,0.49844,0.511727,0.50102,0.511457,0.50395,0.506407,0.50108,0.506147,0.50415,0.508477,0.49852,0.499887,0.50133,0.499697,0.50431,0.502377,0.49986,0.504527,0.49975,0.505187,0.49839,0.493437,0.50163,0.493307,0.5044,0.498047,0.49883,0.493277,0.499,0.501907,0.49852,0.495377,0.47614,0.495717,0.47873,0.488167,0.50437,0.490237,0.47601,0.490827,0.4787,0.498197,0.49639,0.493437,0.49639,0.502017,0.49665,0.502647,0.49519,0.500337,0.49371,0.493977,0.49363,0.505277,0.49656,0.491057,0.48149,0.495767,0.48144,0.495607,0.48438,0.486547,0.47856,0.486697,0.48137,0.486217,0.47592,0.495197,0.48746,0.494597,0.49055,0.484077,0.5014,0.484137,0.50435,0.480777,0.50431,0.481067,0.50171,0.483167,0.49907,0.481107,0.49929,0.483267,0.49681,0.481197,0.4968,0.504767,0.49515,0.507937,0.43826,0.511037,0.43215,0.504817,0.42566,0.493167,0.41373,0.493107,0.41071,0.488007,0.41071,0.520827,0.5233,0.522417,0.52534,0.521297,0.52862,0.503487,0.51489,0.468037,0.44295,0.463787,0.44336,0.567737,0.55038,0.562547,0.55451,0.525587,0.49584,0.525537,0.49953,0.543357,0.57261,0.541517,0.56956,0.539217,0.56733,0.541787,0.56485,0.542677,0.56234,0.542627,0.56201,0.543737,0.54788,0.521797,0.5787,0.514457,0.47345,0.513977,0.47462,0.472117,0.5519,0.560707,0.6084,0.564047,0.44942,0.527877,0.41664,0.526717,0.41071,0.534587,0.41866,0.535697,0.42534,0.570157,0.42751,0.584737,0.56408,0.576187,0.42279,0.571947,0.41816,0.579777,0.42873,0.584147,0.43564,0.527697,0.4673,0.537347,0.44475,0.536957,0.45848,0.531917,0.43083,0.519097,0.50607,0.542057,0.41417,0.539037,0.41414,0.527487,0.45054,0.527737,0.4443,0.536967,0.4516,0.546157,0.45274,0.554897,0.45374,0.562947,0.4544,0.533497,0.41224,0.527617,0.43797,0.568537,0.45467,0.586357,0.44714,0.588227,0.55637,0.591327,0.56051,0.589377,0.44135,0.749148,0.21965,0.747748,0.21609,0.744198,0.22004,0.745108,0.22434,0.822768,0.26232,0.819968,0.26254,0.822638,0.27151,0.825568,0.26968,0.831928,0.26587,0.829618,0.26762,0.835528,0.27272,0.836008,0.26963,0.827238,0.26856,0.834218,0.27492,0.839678,0.24785,0.842998,0.24816,0.840038,0.24348,0.837008,0.24443,0.842108,0.2542,0.845838,0.25513,0.843388,0.26151,0.847418,0.26286,0.848488,0.25618,0.849778,0.26451,0.841038,0.26983,0.841698,0.27178,0.841748,0.27362,0.850708,0.26508,0.850708,0.25638,0.848318,0.2481,0.845588,0.24845,0.842428,0.24232,0.845058,0.24132,0.755414,0.10064,0.759404,0.10182,0.757744,0.09709,0.755414,0.09709,0.755414,0.11112,0.755414,0.11725,0.759644,0.11683,0.759764,0.11149,0.755414,0.12425,0.759454,0.12258,0.755414,0.13663,0.763534,0.13658,0.759734,0.13135,0.755414,0.13424,0.759944,0.10663,0.763534,0.11247,0.763534,0.10815,0.763534,0.09709,0.763534,0.10474,0.827968,0.23161,0.829028,0.23282,0.833718,0.23176,0.834428,0.23054,0.832018,0.23443,0.833928,0.23347,0.755414,0.10608,0.831388,0.27557,0.763534,0.12953,0.763534,0.13356,0.824708,0.23656,0.826858,0.23658,0.830518,0.23764,0.834798,0.24004,0.836988,0.23746,0.833638,0.24241,0.839618,0.23592,0.830098,0.24212,0.824318,0.24542,0.822298,0.24298,0.820508,0.24884,0.823368,0.25032,0.822678,0.25593,0.819228,0.25551,0.825818,0.25656,0.826088,0.26265,0.842248,0.26626,0.845328,0.26791,0.840368,0.26821,0.846798,0.26977,0.847218,0.27056,0.755414,0.13065,0.759154,0.12713,0.763534,0.12585,0.763534,0.12158,0.763534,0.11707,0.831188,0.27672,0.827998,0.26252,0.830798,0.26204,0.831068,0.2583,0.828468,0.25575,0.825628,0.25143,0.827218,0.2474,0.824768,0.24182,0.826758,0.24193,0.844128,0.22477,0.854458,0.22439,0.852218,0.21212,0.839748,0.21276,0.842378,0.27467,0.832838,0.28054,0.845088,0.27971,0.854058,0.24796,0.861288,0.24781,0.857558,0.23619,0.846638,0.23662,0.847218,0.24302,0.849898,0.24906,0.852788,0.27482,0.848478,0.27213,0.856718,0.26673,0.852098,0.2649,0.851818,0.25687,0.856908,0.25756,0.896938,0.20949,0.896758,0.19532,0.883478,0.19556,0.884328,0.20965,0.873068,0.2104,0.872118,0.1965,0.861708,0.19806,0.862618,0.21135,0.910738,0.20982,0.911498,0.19609,0.923228,0.21057,0.924178,0.19734,0.852298,0.20037,0.840718,0.19906,0.934228,0.21111,0.935108,0.19822,0.813038,0.25446,0.811458,0.26418,0.816168,0.24619,0.819448,0.23897,0.823018,0.23277,0.827138,0.228,0.832858,0.22585,0.787018,0.35669,0.795628,0.34789,0.784398,0.34126,0.772568,0.34851,0.794538,0.33407,0.803368,0.33942,0.774418,0.33383,0.761728,0.33985,0.787388,0.32705,0.740658,0.34977,0.726278,0.35463,0.742148,0.36654,0.753078,0.36038,0.754118,0.3762,0.768028,0.36996,0.768308,0.32627,0.755058,0.33159,0.781608,0.31964,0.798938,0.32068,0.793368,0.31233,0.730348,0.34028,0.719358,0.34373,0.750288,0.34518,0.742578,0.33612,0.762698,0.35499,0.777868,0.36464,0.804298,0.32822,0.808328,0.3336,0.801778,0.26391,0.805568,0.25233,0.798038,0.24843,0.790468,0.26187,0.810068,0.24254,0.803318,0.23801,0.814418,0.23433,0.808328,0.22907,0.819208,0.22771,0.813438,0.22178,0.824838,0.22393,0.819228,0.21666,0.787408,0.30435,0.776788,0.31272,0.781148,0.29851,0.772538,0.30653,0.764478,0.31935,0.762288,0.31222,0.751538,0.32419,0.749778,0.31692,0.738908,0.32786,0.737268,0.3199,0.726988,0.3309,0.725928,0.32189,0.787528,0.28847,0.798888,0.29262,0.805578,0.30511,0.810818,0.31514,0.815028,0.32432,0.799958,0.2773,0.790118,0.27657,0.829428,0.20537,0.825298,0.2118,0.830888,0.21903,0.830588,0.19504,0.768718,0.30029,0.775448,0.29354,0.759578,0.30515,0.749158,0.30873,0.772008,0.2884,0.765938,0.29386,0.726588,0.31309,0.737158,0.31173,0.728758,0.30371,0.737838,0.30363,0.748058,0.30137,0.757388,0.29842,0.780588,0.2851,0.775948,0.28156,0.783268,0.27611,0.783278,0.26719,0.777848,0.27543,0.777658,0.26935,0.780448,0.25965,0.775678,0.26396,0.785478,0.25251,0.791158,0.24305,0.796298,0.233,0.801488,0.2237,0.806458,0.21585,0.811418,0.20965,0.816148,0.20431,0.819348,0.19807,0.820518,0.18868,0.741768,0.2462,0.739338,0.2417,0.737058,0.24471,0.738618,0.24947,0.755198,0.1937,0.757798,0.19974,0.765068,0.19839,0.762448,0.19087,0.746408,0.22913,0.740138,0.22881,0.741238,0.23384,0.724057,0.187242,0.725284,0.181845,0.730152,0.170783,0.734128,0.165984,0.727046,0.176232,0.764068,0.20688,0.770238,0.20767,0.772108,0.19774,0.758678,0.20619,0.752668,0.20153,0.754368,0.20622,0.747872,0.188746,0.743129,0.192576,0.749718,0.19697,0.740379,0.195693,0.746083,0.20003,0.754136,0.183779,0.777998,0.21,0.780248,0.19832,0.781828,0.1903,0.768548,0.18811,0.743018,0.23848,0.745738,0.24299,0.751238,0.23863,0.748438,0.23383,0.748598,0.24734,0.754068,0.24445,0.762738,0.2398,0.757098,0.23308,0.768928,0.22965,0.762388,0.22568,0.753418,0.22843,0.757778,0.22197,0.750908,0.22401,0.754588,0.21825,0.752068,0.21493,0.759228,0.17991,0.774178,0.21974,0.766718,0.21714,0.761458,0.21442,0.757278,0.21216,0.753748,0.21058,0.733728,0.23826,0.733398,0.24147,0.734248,0.23215,0.725378,0.23377,0.724888,0.23749,0.726358,0.24078,0.740838,0.25408,0.743988,0.25087,0.737108,0.25377,0.738098,0.25703,0.749008,0.20332,0.751108,0.20655,0.750958,0.20967,0.749988,0.21262,0.739618,0.22403,0.733958,0.22767,0.725948,0.22978,0.733004,0.191042,0.735321,0.187097,0.739218,0.182297,0.74374,0.177608,0.748238,0.172926,0.779078,0.2467,0.784128,0.23808,0.788928,0.22832,0.793738,0.21861,0.802238,0.20308,0.798218,0.21015,0.771978,0.24326,0.776648,0.23387,0.785808,0.21409,0.781408,0.22406,0.789608,0.2045,0.792468,0.19668,0.752988,0.16985,0.763908,0.17548,0.769028,0.17091,0.773718,0.18042,0.778568,0.17526,0.784398,0.18475,0.788438,0.17953,0.795318,0.19078,0.798608,0.18487,0.805778,0.19712,0.808728,0.19086,0.742508,0.16328,0.732928,0.1556,0.744528,0.15354,0.753308,0.1614,0.760528,0.16611,0.810898,0.18238,0.783428,0.16934,0.774698,0.16546,0.792798,0.17272,0.801708,0.17705,0.735458,0.24669,0.733358,0.24827,0.733898,0.25075,0.736168,0.24975,0.730328,0.24964,0.730718,0.25227,0.726478,0.2508,0.726858,0.25371,0.734248,0.25348,0.731008,0.2553,0.721828,0.2515,0.722048,0.25453,0.731408,0.25838,0.727308,0.25695,0.727918,0.26017,0.722688,0.25782,0.723418,0.2613,0.734638,0.25628,0.736158,0.25221,0.723998,0.26485,0.728508,0.26351,0.732068,0.26167,0.735228,0.25954,0.733898,0.24469,0.732508,0.24659,0.721798,0.24861,0.720978,0.24623,0.729778,0.24792,0.726178,0.24884,0.720938,0.24449,0.722148,0.24269,0.723528,0.24794,0.722818,0.24661,0.726198,0.24803,0.732548,0.24393,0.731618,0.24557,0.725258,0.24345,0.728078,0.24244,0.731108,0.24282,0.729228,0.247,0.723638,0.24514,0.724888,0.24592,0.726838,0.24435,0.723778,0.24682,0.724178,0.24755,0.725878,0.24726,0.728378,0.24602,0.730588,0.24459,0.731688,0.24367,0.730878,0.24319,0.729178,0.24336,0.766008,0.28216,0.762378,0.2867,0.763978,0.28984,0.768748,0.28449,0.755668,0.29004,0.755868,0.29413,0.768368,0.26937,0.771668,0.26691,0.768588,0.26345,0.765838,0.2666,0.727778,0.28878,0.727338,0.28459,0.759278,0.25946,0.760678,0.25501,0.754818,0.25553,0.754068,0.25991,0.771748,0.25951,0.747828,0.29546,0.748118,0.29093,0.729268,0.29566,0.749598,0.26205,0.748968,0.26597,0.752898,0.26362,0.750048,0.25774,0.746118,0.26035,0.746258,0.26448,0.757778,0.26298,0.744058,0.27042,0.744968,0.27338,0.746598,0.27156,0.746138,0.26834,0.764338,0.26083,0.766538,0.25645,0.762258,0.26428,0.739178,0.2961,0.740978,0.29,0.748618,0.2883,0.743098,0.28681,0.755618,0.28782,0.761628,0.28473,0.764288,0.28078,0.765678,0.27144,0.763588,0.26918,0.760518,0.26708,0.756488,0.26588,0.752118,0.26684,0.748848,0.26936,0.739098,0.28518,0.735488,0.28919,0.775188,0.25419,0.769028,0.25065,0.762118,0.24917,0.755338,0.25026,0.745458,0.25575,0.749708,0.25277,0.737218,0.26736,0.736098,0.26342,0.732908,0.26541,0.733898,0.26928,0.724608,0.26862,0.725258,0.27264,0.771708,0.27956,0.768418,0.27857,0.765998,0.27806,0.735228,0.27305,0.738758,0.2711,0.736728,0.27656,0.739968,0.27467,0.738508,0.27992,0.741508,0.27722,0.742958,0.26282,0.743608,0.2667,0.738118,0.28323,0.733358,0.28601,0.733088,0.28215,0.729938,0.27107,0.730988,0.27497,0.729178,0.26719,0.732128,0.27874,0.726758,0.28078,0.726018,0.27678,0.739218,0.26122,0.740198,0.26517,0.742028,0.25855,0.741238,0.26899,0.742158,0.27265,0.743358,0.27517,0.773498,0.27522,0.773328,0.27091,0.769858,0.27542,0.769768,0.27233,0.766998,0.27582,0.766848,0.27364,0.751568,0.27192,0.751848,0.26991,0.748698,0.27244,0.748868,0.27502,0.746998,0.27462,0.747578,0.27729,0.745758,0.27604,0.746708,0.27856,0.744848,0.2774,0.746138,0.2794,0.745548,0.28026,0.743668,0.27892,0.742398,0.28056,0.744948,0.28108,0.741868,0.28218,0.744628,0.28152,0.742448,0.28345,0.744698,0.28195,0.744608,0.28466,0.746018,0.28353,0.749648,0.28523,0.749158,0.28681,0.755498,0.28649,0.761148,0.28336,0.760638,0.28241,0.755858,0.28485,0.763218,0.27974,0.762418,0.27916,0.764158,0.27772,0.762698,0.27757,0.764708,0.2762,0.762848,0.27657,0.764438,0.27474,0.762478,0.27555,0.761478,0.27424,0.763438,0.27315,0.761768,0.27131,0.760258,0.27296,0.759208,0.26936,0.758248,0.27137,0.755418,0.26841,0.755068,0.2708,0.759538,0.27371,0.760378,0.27491,0.761458,0.27866,0.759958,0.28136,0.756158,0.28354,0.747248,0.28274,0.746158,0.28142,0.746128,0.28115,0.746338,0.28077,0.746538,0.28043,0.747148,0.27939,0.747788,0.27846,0.749058,0.27623,0.746868,0.28068,0.746898,0.28046,0.747078,0.28097,0.750448,0.28409,0.751778,0.27294,0.754858,0.27189,0.761028,0.27606,0.748038,0.28182,0.747518,0.28122,0.751278,0.28311,0.756568,0.28254,0.759388,0.28059,0.760558,0.27844,0.759698,0.27559,0.760248,0.27648,0.758798,0.27452,0.752168,0.27396,0.754948,0.27299,0.749348,0.27706,0.748488,0.27952,0.747758,0.28026,0.757928,0.27239,0.757568,0.27356,0.761528,0.27769,0.760568,0.27769,0.746838,0.2799,0.747298,0.28028,0.761318,0.27681,0.760578,0.27701,0.749928,0.27874,0.750288,0.27728,0.750308,0.28083,0.752758,0.2813,0.757018,0.28083,0.758818,0.2796,0.759648,0.27821,0.759768,0.27766,0.759768,0.27724,0.759618,0.27669,0.759138,0.27611,0.758178,0.27535,0.757268,0.27495,0.755158,0.27435,0.752558,0.27512,0.752298,0.27947,0.752128,0.27787,0.753648,0.27939,0.755808,0.27924,0.757368,0.27897,0.758348,0.27851,0.758818,0.27782,0.759058,0.27742,0.759018,0.27699,0.758368,0.27659,0.757668,0.27625,0.756908,0.27631,0.755238,0.27638,0.753458,0.27689,0.889528,0.31094,0.880158,0.30187,0.870058,0.31539,0.877308,0.3261,0.900088,0.32047,0.884648,0.33697,0.857428,0.32502,0.861988,0.33653,0.865558,0.34808,0.911118,0.33036,0.892608,0.3487,0.869638,0.36031,0.912718,0.25745,0.900068,0.25463,0.900128,0.27366,0.912628,0.2784,0.888568,0.25217,0.888948,0.26902,0.925518,0.28302,0.925628,0.26023,0.843758,0.33015,0.845888,0.34148,0.846368,0.35321,0.846598,0.36561,0.847358,0.38061,0.875258,0.375,0.901908,0.36209,0.922568,0.34139,0.938738,0.28696,0.938428,0.26207,0.827218,0.3215,0.839858,0.31854,0.835258,0.30721,0.823268,0.31089,0.851898,0.31345,0.846168,0.30241,0.862998,0.30501,0.856428,0.29545,0.871978,0.29341,0.864838,0.2858,0.870908,0.26151,0.879308,0.26492,0.878478,0.25019,0.869518,0.24869,0.863458,0.25903,0.858388,0.27959,0.850348,0.28692,0.840318,0.29145,0.830048,0.29566,0.818378,0.29977,0.864458,0.22393,0.874598,0.22337,0.885508,0.22288,0.897608,0.22292,0.910598,0.22336,0.923178,0.22427,0.829778,0.33208,0.829798,0.34263,0.827578,0.35424,0.823798,0.36634,0.819468,0.38037,0.934638,0.2246,0.945248,0.22391,0.944298,0.21115,0.848418,0.39903,0.880938,0.3923,0.935568,0.35178,0.948908,0.32015,0.934368,0.31447,0.952738,0.28894,0.921618,0.30744,0.909258,0.30032,0.897088,0.29298,0.886438,0.28595,0.877438,0.27962,0.869648,0.27414,0.862798,0.26981,0.866878,0.23609,0.876428,0.2362,0.886868,0.23649,0.898648,0.23736,0.911488,0.23882,0.924248,0.24042,0.936328,0.24111,0.912398,0.37601,0.824738,0.28297,0.813558,0.2874,0.811468,0.2749,0.817078,0.33301,0.815138,0.34198,0.810088,0.35245,0.803258,0.36316,0.793758,0.37541,0.791678,0.39138,0.816248,0.39772,0.723364,0.192789,0.747089,0.204373,0.748868,0.2069,0.743932,0.201898,0.738613,0.198221,0.731723,0.194978,0.72374,0.202482,0.723557,0.199941,0.731427,0.201445,0.731361,0.203813,0.737357,0.202837,0.737211,0.204781,0.741725,0.204481,0.74086,0.205771,0.743232,0.206504,0.744554,0.20561,0.744905,0.207732,0.746239,0.207263,0.742405,0.207306,0.743897,0.208103,0.740269,0.206852,0.736854,0.206007,0.73146,0.205301,0.723977,0.204299,0.747315,0.207134,0.745658,0.20519,0.742707,0.203197,0.737485,0.200744,0.731372,0.199008,0.723406,0.197109,0.741969,0.207789,0.743191,0.208167,0.739979,0.207532,0.736528,0.206823,0.731433,0.206123,0.724079,0.205113,0.746578,0.21371,0.743518,0.21676,0.748918,0.20924,0.748358,0.21124,0.739288,0.22013,0.733648,0.22384,0.726218,0.22588,0.742988,0.21463,0.742558,0.21382,0.738818,0.215769,0.739078,0.21742,0.733458,0.22099,0.733234,0.218849,0.725702,0.220345,0.726068,0.22292,0.73846,0.214385,0.741847,0.212546,0.72528,0.218192,0.733154,0.216977,0.724955,0.215554,0.733023,0.214865,0.741253,0.211259,0.73834,0.212643,0.745578,0.21262,0.747318,0.21037,0.744848,0.21198,0.746588,0.20983,0.743771,0.2114,0.744838,0.209602,0.743061,0.210448,0.743733,0.209423,0.747861,0.208881,0.746912,0.208723,0.744991,0.20868,0.74401,0.208523,0.724968,0.21486,0.732828,0.21412,0.738288,0.21196,0.740928,0.21082,0.742748,0.20991,0.743324,0.20921,0.743499,0.20835,0.778348,0.37681,0.769898,0.38394,0.951158,0.26199,0.947818,0.24026,0.897448,0.18337,0.883788,0.18276,0.872088,0.18315,0.860148,0.18512,0.936408,0.18768,0.944948,0.19902,0.946848,0.18986,0.911928,0.18463,0.924888,0.18619,0.850438,0.1858,0.840078,0.18523,0.830338,0.18231,0.821098,0.17759,0.812448,0.17288,0.788168,0.16234,0.780948,0.15914,0.796138,0.16535,0.804138,0.1689,0.884578,0.1708,0.898518,0.17217,0.899688,0.16021,0.885328,0.15836,0.872398,0.1705,0.872478,0.15757,0.860388,0.15747,0.860818,0.17081,0.941948,0.16831,0.938488,0.17815,0.949898,0.18156,0.954288,0.17289,0.912778,0.17391,0.914458,0.16244,0.926098,0.1759,0.928628,0.16509,0.839198,0.17119,0.849548,0.17136,0.848958,0.15784,0.838458,0.15781,0.829778,0.16914,0.829018,0.1562,0.821258,0.16589,0.820858,0.15341,0.813068,0.16259,0.812938,0.15073,0.785198,0.15127,0.791648,0.15336,0.793398,0.14169,0.787868,0.13915,0.798298,0.1562,0.798888,0.14477,0.805368,0.15934,0.805398,0.14751,0.886048,0.14393,0.901008,0.14668,0.902888,0.1317,0.886918,0.12831,0.872768,0.14225,0.873868,0.1256,0.861758,0.12466,0.860288,0.14209,0.967608,0.15271,0.953108,0.14523,0.946868,0.15776,0.959878,0.16401,0.916818,0.14973,0.920178,0.13487,0.932348,0.15333,0.937198,0.13929,0.848328,0.14333,0.848708,0.12658,0.836948,0.12831,0.837658,0.14375,0.828038,0.14245,0.827718,0.1273,0.821238,0.13822,0.820448,0.12455,0.811998,0.13658,0.811888,0.1218,0.788268,0.12452,0.793578,0.12787,0.793708,0.11347,0.788288,0.11065,0.799028,0.13125,0.798958,0.1164,0.804738,0.13137,0.804968,0.11853,0.782728,0.12174,0.777648,0.11991,0.776198,0.13271,0.780998,0.1381,0.782778,0.10863,0.776938,0.10782,0.905098,0.11648,0.887948,0.11396,0.874948,0.11087,0.863328,0.1099,0.924408,0.11784,0.943448,0.12237,0.849198,0.11267,0.836668,0.11481,0.960948,0.12969,0.827668,0.11442,0.820248,0.11255,0.812588,0.11008,0.793698,0.10185,0.787988,0.09949,0.799438,0.10465,0.805498,0.10731,0.782078,0.09787,0.767018,0.16151,0.774298,0.15621,0.778938,0.15038,0.831788,0.24493,0.833658,0.24931,0.835688,0.25508,0.836728,0.26095,0.836958,0.26527,0.837688,0.26781,0.760628,0.15743,0.753928,0.15143,0.769008,0.14601,0.763828,0.14865,0.768118,0.15329,0.773178,0.14916,0.977458,0.13809,0.775778,0.14407,0.772868,0.14152,0.888598,0.1015,0.876408,0.09942,0.905278,0.10219,0.928378,0.09721,0.864138,0.09829,0.950418,0.10549,0.968488,0.11489,0.985748,0.12506,0.807688,0.09852,0.801198,0.09572,0.794528,0.09264,0.787918,0.09019,0.781378,0.08891,0.814558,0.10086,0.850308,0.10021,0.838898,0.10183,0.829318,0.10292,0.821818,0.10257,0.775798,0.09746,0.774968,0.08882,0.748462,0.14085,0.748462,0.13724,0.742682,0.13912,0.742682,0.14085,0.723342,0.14085,0.723342,0.13912,0.726422,0.14085,0.726422,0.13912,0.731312,0.14085,0.735172,0.14085,0.735172,0.13912,0.731312,0.13912,0.737792,0.14085,0.737792,0.13912,0.735172,0.09098,0.731312,0.09098,0.731312,0.09333,0.735172,0.09333,0.723342,0.09333,0.726422,0.09333,0.726422,0.09098,0.723342,0.09098,0.737792,0.09333,0.737792,0.09098,0.748422,0.09533,0.748422,0.09098,0.742682,0.09098,0.742682,0.09334,0.748462,0.13395,0.742682,0.13793,0.723342,0.13793,0.726422,0.13793,0.735172,0.13793,0.731312,0.13793,0.737792,0.13793,0.731312,0.09555,0.735172,0.09555,0.723342,0.09555,0.726422,0.09555,0.737792,0.09555,0.748422,0.0988,0.742682,0.09552,0.748462,0.12723,0.742682,0.1356,0.731312,0.1356,0.726422,0.1356,0.735172,0.1356,0.737792,0.1356,0.731312,0.0984,0.735172,0.0984,0.723342,0.0984,0.726422,0.0984,0.737792,0.0984,0.742682,0.0984,0.748422,0.10342,0.742682,0.10514,0.748402,0.11667,0.731312,0.13072,0.726422,0.13072,0.735172,0.13072,0.737792,0.13072,0.731312,0.10514,0.735172,0.10514,0.723342,0.10514,0.726422,0.10514,0.737792,0.10514,0.731312,0.11647,0.726422,0.11647,0.735172,0.11647,0.737792,0.11647,0.742682,0.13072,0.723342,0.13072,0.723342,0.11647,0.723342,0.1356,0.376822,0.19377,0.384895,0.19232,0.275035,0.1913,0.352843,0.145133,0.348176,0.137819,0.310638,0.146869,0.310719,0.154301,0.311428,0.14035,0.34904,0.198408,0.348855,0.19019,0.355566,0.197785,0.362145,0.18926,0.354275,0.19064,0.350822,0.126348,0.340728,0.125858,0.343639,0.129594,0.33734,0.120892,0.33352,0.115484,0.331819,0.11018,0.328518,0.10996,0.328661,0.114574,0.324184,0.110895,0.324691,0.115416,0.318984,0.113453,0.320495,0.118215,0.345461,0.133371,0.26989,0.115255,0.26972,0.106215,0.26906,0.091755,0.25622,0.071325,0.285745,0.18071,0.327185,0.19135,0.320125,0.1941,0.313855,0.19355,0.369105,0.18751,0.375945,0.18582,0.384205,0.18399,0.274755,0.18299,0.306344,0.369577,0.286778,0.367595,0.25047,0.069435,0.24661,0.070465,0.26516,0.066545,0.25989,0.067575,0.702314,0.784537,0.706509,0.797394,0.710186,0.795182,0.706131,0.782241,0.842722,0.659103,0.838649,0.669186,0.858008,0.672732,0.860997,0.662454,0.827063,0.658335,0.82282,0.668535,0.793971,0.732168,0.778372,0.732251,0.779837,0.742773,0.795397,0.742009,0.761669,0.743643,0.760786,0.732446,0.743857,0.733262,0.744362,0.744922,0.790539,0.721258,0.774315,0.720614,0.757401,0.720255,0.741669,0.720617,0.760599,0.754196,0.743362,0.755796,0.803631,0.741944,0.804053,0.75039,0.811278,0.749427,0.809898,0.742383,0.758564,0.765397,0.77759,0.763235,0.77922,0.752685,0.756315,0.777268,0.775841,0.774999,0.754056,0.789855,0.773701,0.7876,0.86489,0.652721,0.84868,0.648707,0.756872,0.639727,0.750386,0.650547,0.768522,0.653707,0.776099,0.643769,0.872742,0.686613,0.888155,0.690608,0.889703,0.681106,0.87439,0.676579,0.892165,0.671806,0.877168,0.666681,0.907786,0.686904,0.909535,0.678119,0.906555,0.696098,0.895361,0.663227,0.880855,0.657515,0.911846,0.669928,0.914848,0.661557,0.899457,0.654209,0.906053,0.758906,0.889075,0.759145,0.889927,0.769711,0.907235,0.768148,0.885615,0.647711,0.874219,0.75911,0.874304,0.77054,0.931324,0.668711,0.929432,0.676435,0.925331,0.766755,0.924131,0.758761,0.927987,0.684256,0.926971,0.692579,0.947258,0.697782,0.94762,0.689766,0.948358,0.682234,0.887316,0.700345,0.905821,0.704792,0.92561,0.709259,0.926169,0.701276,0.871911,0.696858,0.90531,0.713725,0.924944,0.71755,0.945863,0.721297,0.946561,0.713543,0.94695,0.705899,0.840412,0.757119,0.84059,0.770166,0.857314,0.770249,0.857988,0.758225,0.827726,0.747121,0.828119,0.758311,0.840852,0.746926,0.869897,0.641686,0.853464,0.637893,0.857576,0.747344,0.873452,0.748549,0.856735,0.736998,0.83874,0.734736,0.872552,0.738402,0.871498,0.707066,0.886954,0.709836,0.871528,0.717367,0.886786,0.71945,0.904802,0.722389,0.854853,0.70464,0.855026,0.715451,0.835494,0.713357,0.820204,0.712295,0.821883,0.723449,0.837138,0.724236,0.855815,0.726056,0.82527,0.735735,0.8719,0.727654,0.886807,0.729301,0.887226,0.739476,0.904478,0.74095,0.904424,0.731483,0.775339,0.687139,0.79415,0.688972,0.795384,0.678375,0.776261,0.676274,0.757542,0.684819,0.757913,0.673668,0.778628,0.698144,0.795784,0.699618,0.819912,0.679291,0.813044,0.668746,0.809261,0.679191,0.818793,0.690148,0.80783,0.689875,0.808035,0.700513,0.819157,0.701112,0.761243,0.696506,0.834638,0.702171,0.795192,0.760585,0.794363,0.77172,0.803773,0.76904,0.804071,0.75967,0.793162,0.784137,0.805019,0.778796,0.810401,0.766471,0.815528,0.772207,0.818437,0.759074,0.811418,0.758482,0.923472,0.733991,0.944195,0.736704,0.944975,0.729017,0.924164,0.725593,0.888106,0.749233,0.90512,0.750055,0.949583,0.675006,0.78108,0.66617,0.788406,0.656646,0.762,0.663414,0.744813,0.66076,0.795543,0.751285,0.745297,0.694987,0.7516,0.70776,0.767842,0.708465,0.943838,0.758774,0.943483,0.751621,0.923399,0.750868,0.943702,0.74426,0.92315,0.742614,0.803733,0.733203,0.802607,0.721943,0.799222,0.710722,0.785178,0.709571,0.811735,0.722932,0.809504,0.711625,0.80673,0.65829,0.799871,0.668189,0.817987,0.65851,0.796301,0.647135,0.812398,0.648194,0.741265,0.671059,0.728231,0.669623,0.727971,0.68109,0.741305,0.682382,0.944739,0.765862,0.73169,0.693861,0.701347,0.762672,0.701508,0.751053,0.690845,0.754154,0.694533,0.765832,0.697856,0.775373,0.702812,0.772555,0.711476,0.760437,0.712499,0.749495,0.727101,0.721614,0.72774,0.735183,0.741644,0.766838,0.727014,0.757976,0.726033,0.767946,0.713036,0.78045,0.711492,0.770222,0.687996,0.662853,0.682969,0.672547,0.692253,0.676361,0.694668,0.665143,0.7067,0.622036,0.703159,0.636134,0.708726,0.635539,0.712443,0.621126,0.698364,0.646783,0.693268,0.654598,0.699438,0.65554,0.704433,0.646861,0.731605,0.659436,0.73613,0.648597,0.723544,0.647848,0.719411,0.657819,0.741195,0.636856,0.72759,0.635644,0.747303,0.624408,0.733043,0.621498,0.72529,0.77868,0.725455,0.791569,0.738184,0.790974,0.739768,0.778336,0.70214,0.736993,0.713182,0.73637,0.737255,0.707289,0.723672,0.706554,0.718012,0.692318,0.714489,0.679528,0.71535,0.667842,0.834819,0.69112,0.835786,0.680193,0.856248,0.683343,0.855439,0.693916,0.814226,0.736426,0.834302,0.647052,0.783164,0.63355,0.763745,0.628487,0.81511,0.637333,0.80224,0.637914,0.692062,0.737184,0.701489,0.721432,0.691318,0.72124,0.698461,0.705334,0.687816,0.704394,0.694162,0.689737,0.684007,0.688453,0.704718,0.691132,0.701791,0.677951,0.727797,0.747361,0.71268,0.721606,0.707036,0.656178,0.711734,0.647066,0.715831,0.635322,0.720293,0.62083,0.71542,0.793445,0.70956,0.706103,0.703063,0.666377,0.81807,0.747857,0.826895,0.770098,0.823188,0.647044,0.827517,0.63487,0.839573,0.635368,0.960472,0.745317,0.959687,0.752423,0.969646,0.753654,0.97119,0.746449,0.959624,0.759203,0.969364,0.760095,0.972602,0.738867,0.96108,0.737993,0.962978,0.69349,0.963394,0.686451,0.962949,0.70076,0.976674,0.689971,0.973008,0.689019,0.972759,0.695631,0.976931,0.696415,0.973419,0.681831,0.96431,0.679356,0.962977,0.708342,0.962888,0.715598,0.974789,0.716515,0.974286,0.709509,0.979978,0.716616,0.974439,0.723778,0.979874,0.724036,0.962416,0.722995,0.961667,0.730538,0.973549,0.731437,0.977238,0.739344,0.978825,0.731895,0.960161,0.76611,0.972208,0.760634,0.969556,0.76712,0.97265,0.767955,0.973269,0.702346,0.972655,0.754219,0.974717,0.746955,0.976562,0.682689,0.978591,0.709742,0.977588,0.702822,0.164759,0.88651,0.169319,0.89437,0.17763,0.88814,0.173359,0.87986,0.173909,0.90372,0.18202,0.89809,0.155709,0.89329,0.160879,0.90104,0.166449,0.90991,0.643793,0.752552,0.654759,0.756789,0.656944,0.7448,0.646105,0.740847,0.658782,0.733548,0.647345,0.728884,0.658248,0.71878,0.647458,0.716383,0.637612,0.725502,0.637084,0.713247,0.657,0.704897,0.646684,0.704558,0.654618,0.691509,0.644996,0.692779,0.637289,0.70384,0.636257,0.693806,0.651846,0.679375,0.642374,0.681496,0.634005,0.684114,0.169599,0.91887,0.169839,0.92733,0.176949,0.92381,0.176629,0.91376,0.16746,0.93672,0.174669,0.93441,0.6293,0.732889,0.624633,0.730023,0.620818,0.73423,0.626103,0.74116,0.623835,0.722819,0.618105,0.725211,0.636619,0.736755,0.633866,0.747286,0.62991,0.72333,0.629233,0.712091,0.622967,0.712495,0.629474,0.703837,0.62291,0.704416,0.622824,0.696366,0.628835,0.695227,0.622873,0.690324,0.627142,0.687514,0.618821,0.687436,0.62338,0.680679,0.630488,0.674811,0.079069,0.91663,0.071929,0.91345,0.071169,0.92353,0.07703,0.92466,0.617075,0.695812,0.649296,0.667309,0.639515,0.670398,0.076599,0.8978,0.074079,0.90509,0.082949,0.90917,0.086949,0.90201,0.617112,0.714279,0.165729,0.94762,0.171699,0.94588,0.61673,0.705072,0.062939,0.91247,0.06316,0.92428,0.18606,0.92,0.18483,0.90891,0.186639,0.93285,0.181339,0.94579,0.17975,0.95703,0.172139,0.95781,0.143809,0.85219,0.140499,0.85809,0.147409,0.86216,0.153159,0.85514,0.133159,0.85375,0.131549,0.85719,0.07915,0.89074,0.067719,0.88696,0.065739,0.89441,0.072909,0.87311,0.070069,0.87983,0.081699,0.88386,0.084129,0.87755,0.095109,0.86414,0.105499,0.86018,0.101719,0.85701,0.090689,0.85828,0.112399,0.85585,0.123239,0.85473,0.120689,0.85794,0.152429,0.86686,0.159809,0.85941,0.145539,0.87259,0.147749,0.87871,0.156509,0.87246,0.169179,0.87205,0.16483,0.86503,0.160519,0.87914,0.086639,0.87206,0.089989,0.86763,0.08249,0.86187,0.076729,0.86699,0.06405,0.90268,0.166599,0.95918,0.09021,0.94688,0.081939,0.94004,0.078589,0.94399,0.08723,0.95175,0.077779,0.93261,0.073189,0.93439,0.661924,0.677239,0.665024,0.688887,0.667665,0.704019,0.659153,0.665089,0.138749,0.86118,0.131209,0.85988,0.142849,0.86723,0.099379,0.8654,0.107709,0.86217,0.12111,0.8603,0.685526,0.765779,0.690754,0.770929,0.6959,0.77807,0.670313,0.735364,0.681538,0.736487,0.681207,0.720807,0.669934,0.720213,0.692756,0.646732,0.687563,0.652253,0.095889,0.87521,0.096269,0.86992,0.09039,0.89461,0.093299,0.88731,0.672203,0.675408,0.668474,0.663159,0.678278,0.703738,0.67477,0.688138,0.700621,0.786926,0.703923,0.798843,0.698753,0.63696,0.679266,0.750068,0.668173,0.747659,0.682592,0.656071,0.095179,0.88059,0.703198,0.622494,0.665965,0.759962,0.15131,0.88568,0.676519,0.762523,0.676742,0.660493,0.091469,0.73942,0.088429,0.7518,0.103119,0.7525,0.105759,0.74063,0.249679,0.81644,0.24874,0.80782,0.052749,0.901,0.052039,0.91224,0.053979,0.89152,0.041059,0.88922,0.040139,0.9,0.055509,0.88335,0.04227,0.87994,0.064809,0.86052,0.060519,0.8681,0.081209,0.84794,0.071479,0.8532,0.187369,0.85528,0.183579,0.84562,0.173539,0.85552,0.177859,0.86372,0.221049,0.8702,0.221859,0.88339,0.229559,0.88196,0.229419,0.86892,0.236889,0.88075,0.23715,0.86793,0.250879,0.86785,0.244279,0.86755,0.243889,0.88037,0.25051,0.88074,0.251479,0.85202,0.25156,0.83764,0.245569,0.83855,0.245149,0.85253,0.195389,0.91524,0.198,0.92505,0.2066,0.92008,0.203809,0.91125,0.193389,0.90426,0.20169,0.90068,0.230469,0.9017,0.229719,0.89263,0.22258,0.89455,0.22381,0.90382,0.231959,0.90871,0.22591,0.91098,0.198869,0.88933,0.194809,0.87797,0.185989,0.88252,0.190339,0.89317,0.237019,0.90014,0.236749,0.89134,0.237889,0.90697,0.24347,0.89887,0.243569,0.89081,0.243849,0.90552,0.249179,0.90469,0.250619,0.89775,0.250249,0.89063,0.239049,0.80712,0.247979,0.79985,0.23786,0.79908,0.226509,0.69645,0.228989,0.71029,0.239719,0.70829,0.237139,0.69427,0.215479,0.69915,0.217589,0.71214,0.22433,0.6822,0.213089,0.6861,0.234909,0.67927,0.216129,0.81299,0.228449,0.81348,0.227579,0.80573,0.214419,0.80503,0.199879,0.80538,0.20221,0.81438,0.149489,0.78434,0.165669,0.7837,0.164789,0.77132,0.148639,0.77184,0.164729,0.75962,0.148449,0.76,0.132579,0.77456,0.133439,0.7868,0.13235,0.76231,0.052259,0.9257,0.039539,0.91218,0.039269,0.92537,0.026139,0.9128,0.025919,0.92567,0.027059,0.88737,0.02648,0.89944,0.027949,0.87691,0.095019,0.84601,0.122259,0.84416,0.108789,0.84484,0.105189,0.83311,0.088119,0.83369,0.135019,0.84268,0.135979,0.82907,0.120979,0.83161,0.147839,0.84044,0.151159,0.82645,0.236029,0.82199,0.23803,0.82873,0.244429,0.82741,0.240079,0.81698,0.159889,0.8432,0.169089,0.82605,0.168079,0.80938,0.166879,0.79637,0.150649,0.7977,0.151599,0.81182,0.168069,0.84877,0.178309,0.83698,0.151069,0.73741,0.149279,0.74842,0.165589,0.74819,0.167119,0.73716,0.152749,0.72796,0.167859,0.72738,0.181959,0.72682,0.182279,0.73794,0.181429,0.7496,0.169619,0.69243,0.168849,0.70109,0.180409,0.69736,0.180489,0.68762,0.192669,0.70453,0.191579,0.69365,0.180769,0.70706,0.158129,0.69672,0.156689,0.70446,0.19589,0.73874,0.194919,0.72661,0.181289,0.71677,0.168119,0.71837,0.193819,0.7154,0.137269,0.72805,0.134759,0.73805,0.154089,0.71978,0.13955,0.72062,0.122839,0.7297,0.120249,0.74009,0.12533,0.72145,0.118069,0.75203,0.133119,0.74992,0.093999,0.72832,0.108349,0.73002,0.063609,0.73188,0.077349,0.7365,0.079739,0.72483,0.06562,0.71995,0.081749,0.71535,0.066659,0.71172,0.096429,0.71883,0.110879,0.72099,0.135659,0.81484,0.117719,0.79114,0.118369,0.8045,0.134569,0.80032,0.101229,0.79436,0.101599,0.80773,0.042929,0.82629,0.038329,0.83758,0.056709,0.84467,0.06686,0.83427,0.05052,0.85422,0.046569,0.86324,0.04402,0.87153,0.057609,0.87563,0.031119,0.85908,0.029239,0.8679,0.247119,0.79069,0.236489,0.79025,0.226209,0.79795,0.224719,0.78936,0.210479,0.77701,0.223509,0.7786,0.222959,0.76502,0.210149,0.76448,0.222789,0.75134,0.210099,0.75158,0.235369,0.77908,0.246419,0.77882,0.246179,0.76496,0.234939,0.76534,0.24611,0.75142,0.234789,0.75142,0.100639,0.76588,0.084999,0.76566,0.074089,0.74989,0.069929,0.76471,0.060589,0.74617,0.056569,0.76172,0.052299,0.77725,0.067649,0.7803,0.116679,0.76543,0.116869,0.77887,0.100479,0.78079,0.083929,0.78145,0.083939,0.79494,0.066309,0.79383,0.084149,0.80807,0.065529,0.80664,0.065499,0.81929,0.084959,0.82101,0.048849,0.79132,0.044929,0.81481,0.119809,0.6985,0.116449,0.70574,0.13042,0.7069,0.13322,0.69968,0.113569,0.71304,0.102089,0.70369,0.099079,0.71078,0.034079,0.84873,0.053289,0.68958,0.0528,0.69575,0.06985,0.69741,0.070749,0.68926,0.08686,0.70062,0.090309,0.69388,0.052009,0.70905,0.051439,0.71649,0.204239,0.70194,0.202439,0.68997,0.2059,0.71391,0.207339,0.72608,0.155359,0.71208,0.14376,0.70664,0.14165,0.71365,0.083969,0.70749,0.211409,0.7879,0.212789,0.79696,0.145929,0.69947,0.219559,0.72513,0.208839,0.73865,0.22136,0.73817,0.233479,0.73776,0.231649,0.72405,0.24541,0.73779,0.244809,0.72255,0.250289,0.71551,0.238709,0.83937,0.237969,0.85314,0.180689,0.76089,0.195989,0.76292,0.196349,0.75122,0.209309,0.84471,0.207689,0.83325,0.195359,0.8381,0.198099,0.84892,0.220229,0.84198,0.2196,0.8305,0.230349,0.84009,0.230059,0.82928,0.200699,0.8615,0.210689,0.85814,0.187139,0.81813,0.191529,0.82858,0.205099,0.82356,0.220449,0.85585,0.217899,0.82122,0.229759,0.85402,0.228889,0.82089,0.190959,0.86646,0.247219,0.69279,0.248669,0.70628,0.016519,0.84471,0.01488,0.85595,0.013849,0.86573,0.01314,0.87609,0.012729,0.88683,0.012579,0.89915,0.012649,0.91362,0.233409,0.6628,0.245869,0.67777,0.245009,0.66154,0.181539,0.78442,0.180709,0.77246,0.196819,0.78611,0.182849,0.79594,0.198149,0.79627,0.196059,0.77463,0.184439,0.80691,0.250889,0.82626,0.042719,0.75733,0.037619,0.7724,0.049949,0.72795,0.047109,0.7418,0.181899,0.87298,0.119639,0.81838,0.102829,0.82081,0.046519,0.80353,0.25383,0.9013,0.253389,0.90502,0.025099,0.80889,0.021819,0.82042,0.032689,0.78625,0.018889,0.83256,0.012819,0.92605,0.219869,0.91369,0.217449,0.90592,0.211009,0.90828,0.213679,0.91658,0.21574,0.89628,0.208959,0.89819,0.214179,0.88496,0.206649,0.88683,0.203609,0.87445,0.2124,0.87185,0.028649,0.79783,0.168399,0.70969,0.127849,0.71404,0.067939,0.70442,0.052419,0.70222,0.200839,0.67777,0.210339,0.673,0.222649,0.66731,0.190889,0.68271,0.10583,0.69668,0.066229,0.93722,0.07371,0.9486,0.082359,0.95765,0.189019,0.94769,0.187209,0.95786,0.076459,0.9623,0.067049,0.95327,0.054799,0.94162,0.194209,0.93905,0.234049,0.91429,0.239329,0.91245,0.228629,0.91684,0.202799,0.93227,0.211009,0.92714,0.038849,0.93833,0.025459,0.93737,0.244479,0.91106,0.2491,0.91017,0.253209,0.90985,0.012879,0.93704,0.217519,0.92318,0.223099,0.91993,0.210375,0.59881,0.211285,0.58294,0.202825,0.5855,0.200846,0.60108,0.138806,0.62332,0.133345,0.63045,0.143206,0.62735,0.148275,0.62002,0.176636,0.60271,0.172095,0.61372,0.181775,0.60891,0.185866,0.59645,0.167266,0.60904,0.162625,0.61878,0.191396,0.60455,0.194605,0.59046,0.187526,0.61829,0.177145,0.62116,0.197955,0.61612,0.194326,0.62997,0.207506,0.62935,0.209096,0.61474,0.166975,0.62449,0.137865,0.63434,0.127796,0.63696,0.157416,0.62806,0.084926,0.63397,0.088276,0.62646,0.073575,0.62647,0.071916,0.63402,0.128905,0.62426,0.122985,0.6318,0.048105,0.62087,0.048736,0.62933,0.059735,0.62757,0.060105,0.61916,0.057325,0.64301,0.059196,0.63497,0.049215,0.63632,0.049415,0.64141,0.112025,0.6305,0.117725,0.62234,0.104675,0.6195,0.100746,0.6279,0.096035,0.63516,0.090886,0.64214,0.100366,0.64349,0.106356,0.63712,0.081076,0.6414,0.090685,0.61774,0.153066,0.62348,0.157885,0.61511,0.147725,0.63137,0.117195,0.63814,0.111866,0.64435,0.074906,0.61784,0.043415,0.63069,0.041936,0.62227,0.172386,0.63302,0.183756,0.63127,0.161525,0.63505,0.122895,0.64361,0.133305,0.6417,0.152546,0.6372,0.070386,0.64159,0.044746,0.63748,0.143155,0.63943,0.131616,0.56295,0.143116,0.56151,0.140926,0.54344,0.129475,0.54389,0.134035,0.57607,0.145075,0.57655,0.119206,0.56213,0.117155,0.54304,0.121405,0.57208,0.153586,0.5587,0.151525,0.54129,0.138986,0.52521,0.127786,0.52534,0.149645,0.52416,0.156286,0.58605,0.155235,0.57328,0.146716,0.59022,0.165825,0.57904,0.165045,0.56739,0.163535,0.55362,0.174085,0.58979,0.175386,0.58058,0.165815,0.58801,0.164555,0.59691,0.175305,0.57139,0.174245,0.56046,0.161795,0.60612,0.152305,0.61163,0.133456,0.61535,0.143135,0.61508,0.121836,0.61286,0.124375,0.60336,0.135706,0.60603,0.136526,0.59747,0.125106,0.59421,0.124586,0.58519,0.136226,0.58899,0.110776,0.59029,0.110276,0.58027,0.106166,0.55949,0.107985,0.56845,0.211735,0.54457,0.211356,0.53771,0.202475,0.53561,0.204636,0.54684,0.016425,0.53071,0.021026,0.5306,0.015066,0.52389,0.013276,0.52667,0.196596,0.52948,0.196505,0.51551,0.188366,0.52096,0.189196,0.53499,0.179766,0.52641,0.181265,0.54106,0.1973,0.501795,0.18792,0.50693,0.178769,0.512109,0.197656,0.54164,0.190436,0.54705,0.182685,0.55342,0.203705,0.5243,0.205916,0.51105,0.020696,0.51176,0.017726,0.51861,0.026996,0.52342,0.033625,0.51678,0.204275,0.57252,0.212066,0.56951,0.196895,0.57789,0.198255,0.56742,0.205125,0.56255,0.212466,0.5591,0.212216,0.55097,0.204945,0.55431,0.031175,0.53984,0.034736,0.53039,0.043955,0.53172,0.043085,0.54931,0.059666,0.55099,0.060305,0.53605,0.075385,0.53741,0.075595,0.55296,0.091426,0.55582,0.103815,0.54139,0.089935,0.53939,0.092615,0.56449,0.076186,0.56209,0.047755,0.56171,0.061116,0.56125,0.060366,0.58733,0.077016,0.58693,0.077056,0.57507,0.060225,0.57497,0.046276,0.57597,0.046546,0.58801,0.046996,0.5998,0.060526,0.59885,0.060356,0.60952,0.075996,0.60834,0.076716,0.59801,0.047585,0.6109,0.094725,0.58756,0.094566,0.57654,0.107975,0.61,0.092745,0.60817,0.110276,0.60014,0.094246,0.59805,0.183115,0.58178,0.184336,0.57264,0.180426,0.59186,0.189085,0.58444,0.191206,0.57375,0.191905,0.56517,0.198435,0.55889,0.191375,0.5567,0.198166,0.55099,0.183946,0.56371,0.172765,0.54746,0.142536,0.306619,0.139146,0.288377,0.12991,0.290733,0.132838,0.309207,0.134804,0.329073,0.144943,0.327187,0.120244,0.292958,0.121698,0.312132,0.123286,0.331446,0.15802,0.231009,0.156888,0.2147,0.14775,0.216003,0.148911,0.232508,0.138913,0.217763,0.14059,0.234735,0.130076,0.219598,0.132022,0.236684,0.081144,0.294306,0.0808,0.31272,0.089225,0.312384,0.089919,0.294697,0.089805,0.277526,0.081875,0.276956,0.073554,0.293642,0.072924,0.31113,0.076209,0.256168,0.06862,0.255488,0.067375,0.275017,0.075009,0.276068,0.09071,0.235867,0.083372,0.23489,0.082443,0.257159,0.089695,0.25833,0.076454,0.234208,0.069273,0.23383,0.065528,0.292548,0.099193,0.236962,0.098763,0.221007,0.090907,0.220112,0.137358,0.505956,0.147806,0.504779,0.161636,0.53728,0.159926,0.52123,0.157918,0.501947,0.126699,0.506038,0.155777,0.483363,0.145949,0.486034,0.169675,0.51693,0.167607,0.497951,0.16554,0.479769,0.17696,0.493325,0.175165,0.475414,0.186376,0.488194,0.184701,0.470404,0.183072,0.452958,0.173408,0.458013,0.196106,0.482978,0.194656,0.465134,0.192963,0.447664,0.181147,0.436123,0.171467,0.441363,0.161754,0.445859,0.163674,0.46238,0.152344,0.449388,0.153998,0.465888,0.143301,0.451747,0.144502,0.468356,0.150915,0.434217,0.159929,0.430597,0.142421,0.436528,0.158003,0.41705,0.149696,0.420644,0.141891,0.422756,0.133814,0.423321,0.133844,0.437512,0.149658,0.407839,0.14164,0.409493,0.133288,0.409755,0.169448,0.425743,0.166991,0.411551,0.178857,0.42016,0.17623,0.405494,0.134367,0.452914,0.124516,0.437419,0.124632,0.452962,0.124812,0.422333,0.190768,0.430733,0.1881,0.414619,0.203496,0.44266,0.200885,0.42575,0.197725,0.40973,0.042596,0.43983,0.039826,0.45455,0.051235,0.455568,0.054379,0.440721,0.036896,0.46981,0.048009,0.471286,0.205696,0.46027,0.044867,0.487272,0.033965,0.48514,0.207085,0.4781,0.040104,0.506595,0.030916,0.50293,0.208216,0.49853,0.193586,0.39498,0.184969,0.39975,0.05746,0.412989,0.046435,0.41231,0.044886,0.42576,0.05648,0.426582,0.061007,0.457352,0.057742,0.473637,0.054124,0.490714,0.165731,0.399748,0.16459,0.389541,0.156886,0.393699,0.157499,0.40446,0.163288,0.379978,0.156059,0.38423,0.172466,0.384245,0.170885,0.375048,0.174162,0.39371,0.149285,0.396402,0.14153,0.397382,0.133229,0.397368,0.124016,0.396879,0.12438,0.409047,0.114109,0.396185,0.115227,0.408047,0.103525,0.395369,0.105237,0.408054,0.123899,0.385694,0.113582,0.384899,0.101922,0.384506,0.133139,0.386764,0.124447,0.374568,0.113783,0.373304,0.102286,0.372749,0.113997,0.361475,0.10198,0.360754,0.126947,0.362634,0.141173,0.38709,0.148438,0.386488,0.147597,0.376967,0.140539,0.377527,0.133039,0.376961,0.146897,0.358055,0.137511,0.359146,0.13971,0.368681,0.146954,0.368032,0.146678,0.345271,0.136571,0.346229,0.124963,0.347917,0.154424,0.374997,0.180006,0.378391,0.178273,0.37024,0.182484,0.385539,0.187055,0.37329,0.185095,0.36604,0.189825,0.38071,0.177086,0.360987,0.184355,0.35771,0.055491,0.392075,0.055058,0.384187,0.048256,0.38618,0.048155,0.3928,0.048165,0.3777,0.055263,0.374434,0.169195,0.365305,0.176389,0.350083,0.167388,0.354221,0.156864,0.359092,0.161078,0.370106,0.166918,0.341548,0.156614,0.344427,0.176659,0.337515,0.154559,0.325597,0.164837,0.323293,0.17539,0.319735,0.047696,0.36595,0.055369,0.361768,0.046935,0.35023,0.054955,0.346183,0.063547,0.371827,0.063037,0.358818,0.062922,0.343452,0.072045,0.370996,0.071348,0.357289,0.063695,0.382787,0.072568,0.38267,0.064546,0.392649,0.073521,0.39349,0.065755,0.402863,0.074841,0.404871,0.050465,0.51183,0.063565,0.51608,0.066262,0.494634,0.066858,0.414649,0.075981,0.417307,0.085353,0.419195,0.084228,0.406393,0.082865,0.394472,0.094373,0.407285,0.092864,0.395184,0.081183,0.371272,0.081846,0.38316,0.091673,0.383929,0.090912,0.372361,0.089977,0.360213,0.080285,0.358074,0.100778,0.348217,0.090189,0.346037,0.112364,0.348861,0.080552,0.343889,0.111426,0.332746,0.100197,0.332238,0.090028,0.330544,0.080771,0.3287,0.099429,0.31325,0.054809,0.328131,0.063281,0.326752,0.046386,0.33054,0.055843,0.309159,0.057114,0.291362,0.048746,0.28901,0.046975,0.30885,0.059522,0.274203,0.050766,0.27337,0.173067,0.29907,0.183715,0.29647,0.180786,0.27821,0.169734,0.28132,0.166268,0.266397,0.177245,0.26342,0.171955,0.2474,0.161506,0.250933,0.064471,0.309525,0.071904,0.32715,0.161852,0.302269,0.185216,0.33319,0.185176,0.31581,0.151555,0.304641,0.134642,0.256486,0.143162,0.254741,0.151944,0.253051,0.124434,0.23802,0.126636,0.258168,0.136873,0.272846,0.146093,0.270829,0.128176,0.274908,0.116436,0.238408,0.1181,0.259491,0.158826,0.284002,0.155673,0.268876,0.060908,0.255492,0.052585,0.25624,0.061202,0.233734,0.052065,0.23344,0.06158,0.216757,0.053176,0.21584,0.167375,0.22996,0.166216,0.21422,0.110174,0.2943,0.110354,0.313667,0.108525,0.260068,0.10911,0.277731,0.119093,0.276716,0.099776,0.294751,0.099147,0.277903,0.114894,0.221233,0.106657,0.221376,0.107819,0.237726,0.098887,0.259595,0.076815,0.51934,0.078816,0.497792,0.091256,0.500593,0.089916,0.52111,0.092333,0.482487,0.08059,0.479775,0.103637,0.48458,0.103345,0.503063,0.102885,0.52298,0.104069,0.467021,0.093454,0.465217,0.082714,0.462759,0.104584,0.450767,0.094388,0.449109,0.114692,0.452115,0.114529,0.468565,0.114559,0.486356,0.071832,0.459907,0.068894,0.476511,0.084512,0.446965,0.074334,0.44474,0.064992,0.442506,0.085425,0.432364,0.075648,0.430345,0.066609,0.428239,0.11493,0.436814,0.104945,0.435736,0.094949,0.43414,0.125629,0.487417,0.125055,0.469598,0.136019,0.487378,0.135089,0.469601,0.115529,0.505023,0.115945,0.52465,0.115013,0.422118,0.104901,0.421536,0.094869,0.420189,0.171026,0.5321,0.056466,0.399972,0.047825,0.39935,0.184666,0.34707,0.071398,0.342739,0.148668,0.28622,0.122715,0.220888,0.171235,0.59932,0.156115,0.59458,0.145435,0.60629,0.020346,0.53929,0.025015,0.54305,0.147054,0.202607,0.156249,0.201127,0.137456,0.204928,0.128562,0.207079,0.098001,0.2084,0.090661,0.207672,0.165285,0.20082,0.113564,0.208241,0.105533,0.208586,0.12117,0.208051,0.076452,0.218139,0.069081,0.217389,0.083561,0.219094,0.062349,0.203243,0.054345,0.20198,0.076675,0.205441,0.069501,0.204343,0.083679,0.206597,0.011995,0.53417,0.015826,0.53593,0.034065,0.55558,0.041606,0.56548,0.039146,0.57646,0.039296,0.58835,0.039685,0.60044,0.040586,0.61208,0.146566,0.59832,0.154876,0.60288,0.045915,0.64334,0.047006,0.64872,0.145222,0.192793,0.142546,0.18413,0.133416,0.19003,0.135565,0.196193,0.155523,0.191145,0.137257,0.132433,0.144455,0.129004,0.142063,0.118654,0.134808,0.122356,0.124833,0.123642,0.127908,0.132537,0.128771,0.11252,0.125673,0.116257,0.134557,0.106975,0.124207,0.090085,0.124727,0.101065,0.132267,0.091705,0.143027,0.105425,0.140247,0.092475,0.122577,0.108337,0.138869,0.139799,0.140011,0.147631,0.148144,0.147859,0.147408,0.139376,0.140287,0.156725,0.149017,0.158045,0.155907,0.147125,0.153187,0.137965,0.150537,0.128125,0.116811,0.105955,0.117667,0.098415,0.112103,0.104877,0.112377,0.097045,0.112367,0.087045,0.117847,0.088215,0.117137,0.073635,0.111827,0.072645,0.123367,0.075855,0.120222,0.199647,0.11265,0.199479,0.127317,0.198763,0.100337,0.108591,0.107134,0.105229,0.106907,0.096825,0.101146,0.097864,0.071721,0.123932,0.078062,0.116776,0.070578,0.113709,0.064446,0.121269,0.066932,0.131844,0.059431,0.129371,0.063517,0.111045,0.057427,0.118925,0.052597,0.127075,0.191557,0.128005,0.187267,0.135615,0.193457,0.137845,0.198317,0.128575,0.183007,0.140205,0.185387,0.144065,0.086795,0.101159,0.089257,0.09055,0.082252,0.091795,0.079289,0.100531,0.084197,0.079975,0.090637,0.078165,0.095726,0.089074,0.096777,0.075985,0.094601,0.098522,0.08233,0.117047,0.084927,0.110969,0.081275,0.109399,0.113637,0.019055,0.112977,0.015035,0.110607,0.016325,0.110597,0.019885,0.110527,0.013505,0.108127,0.015225,0.197567,0.090355,0.194567,0.104965,0.201307,0.109705,0.202537,0.089475,0.079777,0.080505,0.074726,0.091322,0.200677,0.118825,0.192637,0.114745,0.071397,0.099927,0.183387,0.126515,0.180537,0.132885,0.191887,0.122585,0.199497,0.123695,0.186077,0.111575,0.184887,0.120515,0.176927,0.138915,0.173887,0.129005,0.170517,0.134345,0.176337,0.123895,0.174547,0.145195,0.062887,0.140545,0.054917,0.137985,0.158337,0.156445,0.167317,0.151955,0.162417,0.143615,0.071057,0.142575,0.074427,0.133904,0.155987,0.125835,0.158557,0.135035,0.162877,0.131645,0.160737,0.123275,0.167247,0.139135,0.166437,0.128375,0.165057,0.121575,0.153217,0.115925,0.158587,0.114315,0.164227,0.114135,0.079087,0.143055,0.083547,0.136239,0.177777,0.117765,0.184857,0.033395,0.182827,0.032725,0.182767,0.036525,0.184907,0.036585,0.180467,0.032615,0.180387,0.035545,0.186917,0.031135,0.183267,0.028845,0.177947,0.030105,0.191487,0.032785,0.191437,0.035295,0.193017,0.035895,0.193037,0.032475,0.194607,0.039325,0.194577,0.035395,0.192957,0.039685,0.196387,0.034025,0.196387,0.030175,0.194547,0.032585,0.196387,0.038095,0.189697,0.033595,0.189697,0.037235,0.191357,0.038795,0.191367,0.042255,0.192947,0.043265,0.189697,0.041045,0.189697,0.030745,0.102237,0.015225,0.099157,0.017395,0.099847,0.020535,0.102237,0.019725,0.097447,0.012385,0.097177,0.017345,0.163367,0.104895,0.156697,0.104525,0.152407,0.080075,0.154837,0.093475,0.162607,0.092725,0.160617,0.080495,0.150247,0.104865,0.147837,0.093185,0.144837,0.079595,0.137077,0.078865,0.180667,0.046935,0.183127,0.047495,0.182977,0.044115,0.180597,0.043685,0.182787,0.040665,0.180457,0.039815,0.177947,0.047255,0.177947,0.043735,0.177947,0.038985,0.180277,0.050505,0.183397,0.051135,0.177797,0.048375,0.107507,0.030305,0.107447,0.024795,0.104967,0.024445,0.104967,0.030115,0.110157,0.030405,0.110237,0.024865,0.107547,0.019385,0.104967,0.018665,0.099917,0.056545,0.098977,0.050805,0.095707,0.052155,0.094477,0.058855,0.104727,0.053605,0.102087,0.048785,0.098577,0.045955,0.095777,0.047545,0.101327,0.044595,0.093417,0.052295,0.091407,0.055035,0.093037,0.049335,0.090487,0.051035,0.105957,0.047975,0.103867,0.046895,0.103727,0.044035,0.103647,0.041125,0.101337,0.040095,0.098377,0.041145,0.109457,0.048405,0.110097,0.053945,0.113137,0.048005,0.115567,0.053225,0.110927,0.060965,0.116347,0.061265,0.105837,0.061435,0.113117,0.044395,0.109577,0.044075,0.115507,0.047065,0.116117,0.044865,0.117567,0.048735,0.110017,0.040155,0.114087,0.040975,0.116807,0.042755,0.106347,0.043905,0.106377,0.039815,0.095317,0.025915,0.095227,0.021525,0.093127,0.020655,0.093127,0.026305,0.095627,0.031135,0.093127,0.031805,0.196387,0.042285,0.194627,0.043235,0.139647,0.033135,0.139707,0.029485,0.135747,0.030265,0.135737,0.034285,0.131987,0.030685,0.131987,0.035065,0.139357,0.037125,0.135457,0.038825,0.131987,0.039835,0.190837,0.086955,0.181887,0.083245,0.180617,0.093575,0.188627,0.098885,0.095477,0.018215,0.093127,0.015515,0.151327,0.055695,0.147297,0.054935,0.147927,0.059925,0.152657,0.060185,0.150967,0.051685,0.147187,0.050455,0.142477,0.054495,0.142637,0.059485,0.142437,0.049785,0.150677,0.047615,0.147127,0.046115,0.154377,0.052975,0.154037,0.049235,0.155017,0.056525,0.142647,0.045295,0.153327,0.044825,0.150057,0.043165,0.158107,0.053835,0.158387,0.051355,0.156727,0.045885,0.158877,0.056855,0.161917,0.056335,0.162327,0.054225,0.162957,0.052205,0.137247,0.045915,0.136777,0.049965,0.136767,0.054205,0.131387,0.050315,0.131957,0.047335,0.138497,0.041505,0.134477,0.043385,0.143047,0.040805,0.130957,0.053245,0.127297,0.049785,0.127477,0.051785,0.127877,0.047505,0.170637,0.053975,0.170587,0.049795,0.166467,0.050005,0.166467,0.054055,0.174647,0.053975,0.174257,0.049855,0.170137,0.045355,0.166967,0.045265,0.172847,0.045235,0.178067,0.054155,0.177237,0.051395,0.180867,0.054435,0.177847,0.056835,0.179847,0.058295,0.174787,0.057835,0.183617,0.054985,0.186367,0.055405,0.186167,0.051585,0.185197,0.047945,0.169847,0.058005,0.176047,0.062755,0.168247,0.062305,0.191077,0.055895,0.188857,0.055625,0.188707,0.058355,0.190337,0.059855,0.186537,0.059265,0.187457,0.064225,0.183177,0.059305,0.182117,0.064385,0.193617,0.056335,0.193317,0.060955,0.193167,0.051815,0.190667,0.051475,0.196727,0.061075,0.196557,0.056605,0.195517,0.052655,0.204397,0.060035,0.201817,0.057905,0.200317,0.062105,0.202767,0.064565,0.207027,0.062435,0.205417,0.066675,0.200237,0.069545,0.203777,0.071805,0.196647,0.066335,0.204487,0.053955,0.201167,0.052315,0.204417,0.048265,0.201857,0.046975,0.207207,0.055475,0.207117,0.049115,0.117277,0.040755,0.116047,0.039565,0.119607,0.042095,0.118767,0.045575,0.118067,0.039585,0.110197,0.035605,0.107327,0.035325,0.113427,0.035805,0.095267,0.042745,0.092647,0.045545,0.089717,0.046535,0.092207,0.042815,0.090497,0.043525,0.092957,0.042105,0.121507,0.047105,0.122387,0.043595,0.123247,0.038915,0.120847,0.037805,0.118427,0.036005,0.124377,0.048745,0.125457,0.045275,0.125837,0.039045,0.128647,0.045215,0.128167,0.043185,0.128477,0.038645,0.130677,0.045535,0.084737,0.063825,0.083637,0.058385,0.079337,0.059115,0.079727,0.065115,0.207337,0.072725,0.208367,0.067805,0.083467,0.053125,0.079727,0.053455,0.209607,0.064355,0.085047,0.069615,0.080377,0.071325,0.205617,0.078855,0.201267,0.077965,0.209607,0.056445,0.209607,0.048545,0.083197,0.048065,0.080077,0.048165,0.082877,0.043135,0.080147,0.043065,0.087227,0.052475,0.086447,0.047705,0.085727,0.043145,0.088097,0.042915,0.135497,0.021095,0.131987,0.017425,0.131987,0.025705,0.135557,0.025765,0.139517,0.020035,0.140157,0.017425,0.148567,0.023855,0.149097,0.020555,0.146287,0.019035,0.145767,0.023445,0.143267,0.020295,0.143227,0.024305,0.152607,0.020295,0.151967,0.017425,0.139567,0.024965,0.126057,0.018565,0.123197,0.017955,0.123427,0.021755,0.126307,0.021395,0.128707,0.017345,0.123197,0.014965,0.128707,0.020825,0.120577,0.018495,0.120627,0.021175,0.118427,0.017455,0.118427,0.020445,0.116067,0.034975,0.176887,0.049105,0.100687,0.035225,0.102407,0.038125,0.102357,0.035035,0.103797,0.039155,0.191297,0.046145,0.189697,0.044335,0.189427,0.050275,0.188707,0.051085,0.188577,0.052775,0.089927,0.041805,0.199437,0.045785,0.198637,0.049845,0.198017,0.051345,0.198837,0.053265,0.172107,0.028665,0.175007,0.027395,0.169067,0.025525,0.169227,0.028385,0.163497,0.027345,0.166417,0.028795,0.175007,0.030185,0.172287,0.030895,0.110957,0.010745,0.104967,0.013165,0.116067,0.013225,0.085287,0.022875,0.085077,0.026725,0.087057,0.027205,0.090057,0.025725,0.083237,0.026705,0.080527,0.023915,0.080527,0.027785,0.082647,0.029255,0.204467,0.032255,0.206937,0.032575,0.209607,0.030155,0.203957,0.028945,0.207087,0.035475,0.209607,0.034075,0.204567,0.035525,0.123667,0.033585,0.121207,0.033275,0.118427,0.032225,0.087727,0.038635,0.085197,0.038405,0.082697,0.038285,0.123537,0.024795,0.126237,0.024515,0.123637,0.028585,0.126157,0.028225,0.120827,0.024535,0.121077,0.028655,0.090057,0.029585,0.087517,0.029965,0.087677,0.033915,0.090057,0.034315,0.089997,0.038555,0.085077,0.033615,0.084937,0.030105,0.098177,0.035955,0.102247,0.029695,0.100197,0.030275,0.097887,0.030585,0.082577,0.033245,0.159457,0.041535,0.155967,0.040745,0.159457,0.045885,0.152397,0.039545,0.159457,0.035925,0.155697,0.035015,0.151907,0.034045,0.101597,0.088006,0.106877,0.087045,0.106907,0.072755,0.102047,0.073985,0.147367,0.117435,0.088778,0.106946,0.090208,0.113421,0.094121,0.105992,0.194457,0.075055,0.163497,0.064785,0.159167,0.064555,0.157697,0.068515,0.169897,0.069205,0.156477,0.060055,0.161647,0.060225,0.096027,0.065445,0.101057,0.063095,0.090677,0.067855,0.090167,0.062295,0.122357,0.062525,0.121847,0.055565,0.129147,0.064025,0.129617,0.077385,0.128767,0.056675,0.136177,0.065305,0.136537,0.058855,0.142837,0.065965,0.075067,0.108692,0.048057,0.135205,0.169727,0.126035,0.085541,0.120264,0.091898,0.122641,0.097677,0.116631,0.178687,0.108555,0.170137,0.121555,0.184937,0.040675,0.186917,0.035465,0.186917,0.039815,0.185037,0.044375,0.186907,0.048815,0.186917,0.044085,0.104947,0.035035,0.177947,0.033875,0.100027,0.025065,0.102237,0.024925,0.087707,0.058065,0.097677,0.025425,0.097557,0.021345,0.125047,0.051885,0.121187,0.050595,0.165017,0.057315,0.162237,0.049975,0.160377,0.049975,0.146827,0.041685,0.152077,0.028855,0.148417,0.028515,0.148547,0.033365,0.152487,0.024115,0.145657,0.028225,0.145797,0.032665,0.143127,0.028565,0.143097,0.032335,0.191957,0.066415,0.199127,0.060205,0.199427,0.056855,0.194707,0.047215,0.192937,0.047095,0.104727,0.038695,0.156347,0.024455,0.155947,0.029475,0.159457,0.029665,0.159457,0.024905,0.159457,0.017425,0.156217,0.020625,0.163437,0.048125,0.116067,0.017815,0.104745,0.199427,0.08723,0.129596,0.078808,0.126402,0.175337,0.047725,0.187297,0.049845,0.095687,0.036515,0.093127,0.036265,0.196587,0.050545,0.132217,0.043175,0.175007,0.044315,0.196387,0.046335,0.163497,0.030155,0.166467,0.030965,0.169427,0.031125,0.202177,0.032215,0.199737,0.029965,0.199737,0.032565,0.202157,0.034545,0.163497,0.045335,0.116067,0.030235,0.113137,0.030345,0.116067,0.024075,0.113287,0.024495,0.080527,0.037945,0.128707,0.024295,0.175007,0.033755,0.172357,0.034245,0.118427,0.024015,0.169607,0.034545,0.166627,0.034275,0.163497,0.033435,0.128707,0.027825,0.118427,0.028215,0.172397,0.037855,0.175007,0.037235,0.169707,0.038095,0.166717,0.037805,0.163497,0.037025,0.126097,0.033245,0.128707,0.032455,0.163497,0.041055,0.166837,0.041245,0.169787,0.041405,0.172407,0.041355,0.175007,0.041335,0.204447,0.039425,0.207017,0.039645,0.202057,0.038055,0.199737,0.035965,0.080527,0.032825,0.209607,0.038855,0.201947,0.041995,0.199737,0.040065,0.204367,0.043605,0.209607,0.043705,0.207017,0.044135,0.149157,0.038285,0.146237,0.037125,0.143137,0.036385,0.171097,0.081245,0.149367,0.066375,0.066597,0.106214,0.104005,0.19167,0.096615,0.19088,0.097525,0.199006,0.082733,0.122591,0.077039,0.196581,0.069927,0.195189,0.193057,0.028795,0.642147,0.464,0.644427,0.45683,0.637877,0.45309,0.632457,0.46087,0.634777,0.47114,0.642797,0.47209,0.644027,0.48044,0.650647,0.48058,0.649767,0.47267,0.645927,0.48816,0.652097,0.48756,0.637387,0.48796,0.636267,0.47952,0.649607,0.46531,0.629607,0.4704,0.630837,0.47875,0.631377,0.48724,0.631237,0.49656,0.638637,0.49687,0.631707,0.50613,0.640787,0.50631,0.630907,0.51647,0.629527,0.52742,0.639217,0.52888,0.640827,0.51728,0.651647,0.53097,0.653457,0.51775,0.653987,0.50629,0.635457,0.53967,0.646987,0.54323,0.650527,0.49611,0.654127,0.49214,0.659607,0.49257,0.657847,0.48724,0.650337,0.45903,0.627967,0.5377,0.628977,0.54977,0.640297,0.55212,0.625167,0.54757,0.627517,0.46143,0.661227,0.4973,0.663817,0.50208,0.642957,0.44644,0.648587,0.4505,0.620267,0.55571,0.622557,0.55725,0.624397,0.44455,0.621647,0.44512,0.624487,0.4528,0.627507,0.45174,0.742047,0.49202,0.738567,0.49087,0.738557,0.49407,0.740777,0.49447,0.744437,0.49668,0.741297,0.49685,0.738287,0.52612,0.744307,0.52604,0.742827,0.52279,0.739347,0.52271,0.743997,0.51969,0.747137,0.52058,0.715647,0.56028,0.712247,0.56059,0.714747,0.56317,0.716407,0.56166,0.707127,0.56049,0.708677,0.56334,0.715297,0.5584,0.711777,0.55801,0.706517,0.55771,0.715597,0.55694,0.713547,0.55526,0.717577,0.55696,0.718157,0.55841,0.718417,0.56023,0.707187,0.55492,0.701067,0.55389,0.700267,0.55654,0.700997,0.55965,0.708417,0.5519,0.714107,0.5519,0.703637,0.5519,0.698847,0.54993,0.694567,0.55018,0.706177,0.42419,0.707257,0.42629,0.709687,0.42567,0.710477,0.42258,0.702327,0.42721,0.706767,0.42823,0.721377,0.558,0.721647,0.56037,0.719677,0.55538,0.726047,0.56051,0.725847,0.55785,0.725727,0.55503,0.730467,0.56059,0.730307,0.558,0.731537,0.55518,0.721007,0.5662,0.726447,0.5662,0.726287,0.56319,0.720507,0.56293,0.731997,0.56315,0.731787,0.5662,0.736667,0.5662,0.736717,0.56314,0.740227,0.56341,0.740257,0.5662,0.735587,0.5619,0.734047,0.5619,0.740077,0.56046,0.737727,0.56045,0.735877,0.56036,0.744947,0.5662,0.742927,0.56332,0.744497,0.41293,0.744487,0.41071,0.739997,0.41071,0.740917,0.41325,0.736577,0.41354,0.736577,0.41071,0.743097,0.56055,0.743127,0.55707,0.740027,0.55739,0.737587,0.55773,0.742987,0.55444,0.740137,0.55452,0.736327,0.55503,0.740977,0.41609,0.744507,0.41542,0.736517,0.41644,0.740987,0.41924,0.736437,0.41949,0.744507,0.41868,0.731817,0.41365,0.731627,0.41664,0.731517,0.41968,0.733627,0.56041,0.733477,0.55823,0.735727,0.55815,0.733697,0.55657,0.735237,0.55651,0.744527,0.42178,0.740987,0.42244,0.736377,0.42255,0.731477,0.42268,0.731347,0.42561,0.736127,0.4256,0.726467,0.41987,0.726367,0.42283,0.726227,0.42563,0.740097,0.42559,0.744547,0.42558,0.726597,0.41678,0.721337,0.41678,0.721197,0.41991,0.721017,0.42288,0.715757,0.41974,0.715807,0.41663,0.715607,0.42278,0.710037,0.41673,0.716107,0.41368,0.710477,0.41375,0.710197,0.41975,0.721517,0.41373,0.720717,0.42564,0.731097,0.5519,0.725747,0.5519,0.719967,0.5519,0.745047,0.5519,0.740267,0.5519,0.736117,0.5519,0.711327,0.41071,0.706087,0.41071,0.704727,0.41424,0.698667,0.4153,0.698717,0.41071,0.702567,0.56298,0.704737,0.5662,0.710227,0.5662,0.695787,0.56165,0.697247,0.5662,0.700537,0.45617,0.699477,0.46216,0.706467,0.46264,0.707297,0.45748,0.708407,0.45296,0.702927,0.44965,0.712417,0.46241,0.712507,0.45862,0.712567,0.45589,0.717997,0.4562,0.718237,0.45909,0.718637,0.46263,0.717587,0.45365,0.712497,0.45365,0.723857,0.45365,0.724157,0.45618,0.724547,0.4592,0.711167,0.45243,0.711147,0.45021,0.708427,0.45011,0.711797,0.44807,0.708447,0.44732,0.714747,0.44819,0.713057,0.4448,0.712377,0.44152,0.706897,0.44359,0.701127,0.4438,0.718287,0.44834,0.718037,0.44448,0.717577,0.44122,0.723877,0.44834,0.723767,0.44467,0.713677,0.53404,0.714987,0.5298,0.709677,0.5298,0.707117,0.53336,0.705317,0.5298,0.701317,0.53207,0.723497,0.44126,0.730057,0.44834,0.729987,0.44487,0.729747,0.44139,0.704997,0.53616,0.699067,0.535,0.710537,0.53676,0.729617,0.43791,0.723257,0.43799,0.735947,0.44149,0.736147,0.44501,0.735967,0.43792,0.707427,0.52553,0.712897,0.526,0.712847,0.52219,0.706847,0.52174,0.711467,0.51901,0.706587,0.51834,0.703127,0.5252,0.701597,0.5212,0.701217,0.5177,0.712177,0.51609,0.707477,0.51555,0.714937,0.51899,0.715077,0.52066,0.715517,0.51669,0.701977,0.51488,0.717057,0.5207,0.717877,0.51907,0.718437,0.51673,0.718947,0.5223,0.721167,0.51927,0.721757,0.51624,0.718377,0.51489,0.720657,0.51282,0.725977,0.51596,0.726317,0.51237,0.725427,0.51925,0.730737,0.45617,0.737087,0.4563,0.737527,0.45365,0.730727,0.45365,0.742797,0.45656,0.743337,0.45365,0.718737,0.52598,0.724517,0.52596,0.724837,0.5225,0.729467,0.52602,0.730277,0.5221,0.730997,0.45927,0.737117,0.45945,0.725077,0.46275,0.731467,0.46281,0.737477,0.4629,0.742947,0.46303,0.742657,0.45971,0.737957,0.46625,0.743457,0.46629,0.731917,0.4662,0.725547,0.46615,0.719157,0.46606,0.748197,0.45665,0.748417,0.45365,0.748057,0.4598,0.733777,0.52613,0.734967,0.52213,0.754117,0.45641,0.753707,0.45365,0.714547,0.53733,0.715557,0.53582,0.718117,0.53731,0.717917,0.53575,0.720627,0.53395,0.722227,0.53685,0.727587,0.53646,0.727457,0.53339,0.727217,0.5298,0.720977,0.5298,0.732537,0.53642,0.733457,0.53355,0.732257,0.5298,0.741717,0.44501,0.736377,0.44834,0.741577,0.44834,0.737647,0.53333,0.736097,0.5298,0.746627,0.44514,0.745527,0.44834,0.746937,0.44206,0.741697,0.44166,0.747137,0.43863,0.741837,0.43818,0.747517,0.43521,0.742297,0.43489,0.736257,0.43468,0.729627,0.43474,0.736707,0.43181,0.742927,0.43181,0.729717,0.43181,0.740617,0.53265,0.738647,0.5298,0.743417,0.53267,0.745927,0.5298,0.750697,0.44815,0.751277,0.44635,0.756137,0.44722,0.756137,0.44834,0.743757,0.53563,0.746307,0.53527,0.748837,0.5354,0.748837,0.5298,0.743857,0.53961,0.746307,0.54014,0.748837,0.5402,0.740987,0.53597,0.739067,0.53625,0.739277,0.53923,0.741147,0.53941,0.735757,0.53656,0.735807,0.53491,0.737157,0.53482,0.737707,0.53652,0.735887,0.53894,0.737907,0.53893,0.732547,0.53929,0.737577,0.5408,0.736127,0.54076,0.738247,0.54244,0.733597,0.54235,0.737397,0.54606,0.732567,0.54606,0.727377,0.53948,0.726907,0.54261,0.726537,0.54606,0.747907,0.43181,0.717697,0.53933,0.716937,0.5408,0.719497,0.54235,0.721847,0.53954,0.714097,0.53928,0.714487,0.54076,0.712087,0.54226,0.709907,0.53928,0.704247,0.53881,0.705167,0.54204,0.707197,0.54606,0.713127,0.54606,0.719767,0.54606,0.722857,0.43181,0.716727,0.43181,0.717037,0.43532,0.723057,0.43494,0.702677,0.54606,0.699477,0.54181,0.711677,0.43542,0.712597,0.43218,0.698427,0.53811,0.693217,0.53769,0.694767,0.54277,0.693207,0.53354,0.717277,0.43819,0.752067,0.43905,0.756137,0.43894,0.756137,0.43488,0.752267,0.43531,0.745667,0.54606,0.748837,0.54606,0.751717,0.43181,0.756137,0.43181,0.743837,0.54279,0.741077,0.54606,0.741317,0.54283,0.729457,0.51902,0.729917,0.51607,0.732377,0.5204,0.732317,0.51871,0.732697,0.51637,0.733267,0.51459,0.731537,0.51273,0.734807,0.51454,0.736297,0.51261,0.734967,0.51633,0.731087,0.50824,0.726437,0.50824,0.738287,0.46955,0.743747,0.46964,0.748987,0.46973,0.748807,0.46637,0.735537,0.50824,0.721107,0.50824,0.732007,0.46944,0.740857,0.51189,0.739817,0.50824,0.754017,0.46981,0.754607,0.46654,0.744397,0.51195,0.746967,0.50824,0.740817,0.51561,0.744607,0.51541,0.737417,0.51589,0.754287,0.46309,0.748317,0.46311,0.759717,0.46664,0.759717,0.46991,0.759717,0.46291,0.740257,0.51923,0.736927,0.51893,0.734567,0.51869,0.733877,0.52042,0.691157,0.5442,0.689617,0.54582,0.694357,0.54641,0.689487,0.541,0.684637,0.54139,0.698947,0.54824,0.699267,0.54541,0.759717,0.45952,0.754087,0.45957,0.747587,0.51515,0.750767,0.51526,0.750767,0.50824,0.750767,0.52342,0.750767,0.52604,0.759717,0.45641,0.759717,0.45365,0.745807,0.56082,0.745767,0.55647,0.748407,0.5603,0.748067,0.55542,0.747807,0.5662,0.730667,0.4966,0.733317,0.49697,0.733487,0.4956,0.731467,0.49406,0.735117,0.49702,0.734687,0.49566,0.735497,0.49421,0.733377,0.49876,0.735177,0.49881,0.733647,0.5001,0.734847,0.50011,0.730777,0.49896,0.731897,0.50142,0.737067,0.47581,0.737207,0.47824,0.740397,0.47794,0.740357,0.47578,0.748667,0.50442,0.748667,0.50179,0.744487,0.50051,0.742437,0.50433,0.741367,0.49965,0.740987,0.50173,0.748667,0.49706,0.748667,0.4931,0.740427,0.4866,0.737987,0.48731,0.737447,0.48389,0.740677,0.48273,0.737207,0.48085,0.740427,0.47932,0.734127,0.48757,0.733467,0.48442,0.734877,0.49078,0.704987,0.42125,0.700427,0.42442,0.704357,0.41781,0.698777,0.4199,0.702867,0.4327,0.706617,0.43058,0.729067,0.48448,0.729697,0.48758,0.730547,0.49071,0.647797,0.44125,0.645637,0.43437,0.639317,0.44086,0.650267,0.44517,0.716587,0.41071,0.715727,0.5662,0.721627,0.41071,0.718257,0.5616,0.656317,0.54276,0.658697,0.53654,0.661937,0.53319,0.660787,0.52883,0.661877,0.52225,0.664707,0.53921,0.666507,0.53447,0.667297,0.52945,0.670717,0.54165,0.672137,0.53649,0.673267,0.53084,0.662907,0.54434,0.669467,0.54621,0.656407,0.54744,0.661017,0.54956,0.667727,0.5526,0.662967,0.5148,0.663657,0.50897,0.664777,0.51866,0.669747,0.5191,0.670027,0.51441,0.668427,0.52389,0.670777,0.50939,0.673537,0.48618,0.665877,0.48659,0.667367,0.49195,0.674867,0.49143,0.664987,0.4806,0.657137,0.48061,0.672687,0.48053,0.685387,0.48289,0.679477,0.4814,0.680387,0.48655,0.686657,0.48747,0.681827,0.49133,0.688077,0.49166,0.669307,0.49644,0.676557,0.49585,0.683467,0.49559,0.689077,0.49577,0.671457,0.50047,0.677997,0.50006,0.684137,0.5,0.689367,0.50006,0.671897,0.5048,0.677997,0.50465,0.677077,0.50956,0.683767,0.50482,0.689257,0.50523,0.682367,0.51005,0.686727,0.51086,0.666527,0.50518,0.693807,0.49212,0.692787,0.48829,0.691657,0.48419,0.691567,0.47946,0.685757,0.47715,0.698127,0.48138,0.698167,0.48527,0.703557,0.48614,0.703817,0.48277,0.698747,0.48895,0.703597,0.48949,0.679997,0.47484,0.699197,0.49248,0.703597,0.49277,0.708347,0.48986,0.708647,0.48669,0.709017,0.48353,0.707937,0.49304,0.713217,0.49355,0.713617,0.49014,0.707477,0.4959,0.711357,0.4962,0.703517,0.49574,0.699347,0.49575,0.699237,0.49883,0.703507,0.49837,0.664447,0.47358,0.656517,0.47307,0.672627,0.47382,0.673507,0.46633,0.664687,0.4662,0.656547,0.46588,0.665107,0.45956,0.657037,0.45963,0.655227,0.44404,0.662537,0.44237,0.659687,0.4364,0.653367,0.43872,0.671357,0.43986,0.664117,0.44817,0.673107,0.44642,0.673887,0.45919,0.691967,0.457,0.691737,0.46314,0.688387,0.47117,0.683147,0.4667,0.667467,0.43335,0.682327,0.43657,0.676347,0.43022,0.662107,0.42666,0.655577,0.43134,0.651517,0.4346,0.638097,0.55895,0.644857,0.56278,0.647847,0.55643,0.647857,0.5718,0.650697,0.56598,0.641797,0.56843,0.653637,0.56013,0.653597,0.57513,0.656067,0.56937,0.658977,0.56379,0.658807,0.57811,0.663517,0.58111,0.664817,0.5761,0.660827,0.5728,0.667307,0.57128,0.663597,0.56761,0.667737,0.58324,0.668537,0.57896,0.670767,0.57426,0.672217,0.58494,0.673297,0.58103,0.674837,0.57666,0.677907,0.58301,0.676537,0.58683,0.679357,0.579,0.671457,0.58888,0.675517,0.59058,0.679617,0.59273,0.680777,0.58916,0.670657,0.59296,0.674697,0.59429,0.678797,0.59606,0.682467,0.58528,0.666747,0.59206,0.667397,0.58751,0.669457,0.59708,0.665597,0.59667,0.663437,0.58647,0.663047,0.59172,0.662357,0.59689,0.673727,0.598,0.683907,0.59489,0.685057,0.59159,0.686767,0.58805,0.686407,0.58572,0.685007,0.58474,0.689667,0.58569,0.690127,0.59016,0.691777,0.5871,0.689137,0.59341,0.687887,0.58413,0.673047,0.56993,0.670357,0.56705,0.673617,0.5642,0.673117,0.56156,0.667707,0.56241,0.675067,0.56643,0.662737,0.55825,0.670067,0.55753,0.681897,0.5553,0.675457,0.55286,0.674717,0.55776,0.680657,0.5605,0.655527,0.41184,0.651967,0.4147,0.657157,0.41805,0.659647,0.41434,0.663077,0.42084,0.654057,0.42244,0.664137,0.41684,0.668837,0.41896,0.669927,0.42202,0.674717,0.41856,0.677887,0.4199,0.663877,0.60198,0.660937,0.60296,0.671797,0.42557,0.677817,0.42369,0.674387,0.52511,0.675437,0.5198,0.680527,0.52099,0.679587,0.52661,0.684137,0.52838,0.685547,0.52254,0.678737,0.5327,0.683607,0.53442,0.685587,0.51633,0.681257,0.51548,0.676177,0.51468,0.689717,0.52077,0.689827,0.51641,0.690827,0.51207,0.695497,0.5168,0.696107,0.51359,0.695747,0.52062,0.694257,0.50299,0.692467,0.50778,0.694457,0.50526,0.697417,0.50533,0.699247,0.50205,0.697027,0.5096,0.703877,0.50073,0.702437,0.5034,0.704387,0.5033,0.703337,0.51163,0.690407,0.52379,0.693817,0.52464,0.689207,0.52623,0.694617,0.5296,0.678017,0.53889,0.688057,0.53595,0.688157,0.53084,0.682797,0.54633,0.676907,0.54386,0.688187,0.54948,0.682247,0.55017,0.688067,0.55362,0.693837,0.5535,0.694457,0.55736,0.688487,0.55869,0.689257,0.56429,0.692467,0.4227,0.694677,0.43038,0.683087,0.59793,0.678107,0.59943,0.682537,0.60105,0.677427,0.60324,0.672587,0.60201,0.682267,0.60473,0.676847,0.6071,0.682147,0.60858,0.671727,0.60574,0.689627,0.57181,0.684717,0.56942,0.682957,0.57233,0.687837,0.57545,0.692407,0.57867,0.694377,0.57514,0.667897,0.60158,0.666797,0.6056,0.662457,0.60676,0.687677,0.5994,0.687237,0.60239,0.688357,0.59652,0.691907,0.60309,0.692267,0.60012,0.687107,0.6058,0.691557,0.60615,0.692607,0.59723,0.695707,0.60367,0.696017,0.60038,0.695557,0.59737,0.687277,0.60918,0.691537,0.60891,0.702597,0.59132,0.700587,0.58944,0.698757,0.59156,0.700607,0.59356,0.696497,0.59396,0.698717,0.59506,0.696637,0.58967,0.695367,0.59161,0.693057,0.5912,0.692927,0.59426,0.694927,0.60647,0.701877,0.58774,0.703607,0.58768,0.701977,0.58478,0.700507,0.58589,0.694137,0.6084,0.700787,0.58206,0.698507,0.58355,0.698507,0.58749,0.696127,0.58562,0.694107,0.58827,0.695967,0.58121,0.693857,0.58408,0.691607,0.58266,0.690137,0.57942,0.689437,0.58157,0.688647,0.57838,0.687297,0.58003,0.685807,0.58263,0.683077,0.58109,0.684807,0.57785,0.681037,0.57533,0.705627,0.46826,0.698527,0.46894,0.703667,0.47095,0.693677,0.47429,0.699497,0.47731,0.702267,0.47376,0.704587,0.47959,0.705437,0.47704,0.709407,0.48052,0.709387,0.47782,0.714097,0.48392,0.714157,0.48092,0.713737,0.47811,0.719217,0.4842,0.719117,0.48127,0.718837,0.4786,0.718157,0.47617,0.712187,0.47535,0.708327,0.47512,0.713887,0.48703,0.719317,0.48728,0.719447,0.49036,0.705617,0.4718,0.707417,0.47021,0.705147,0.50824,0.700367,0.50836,0.713167,0.46876,0.712587,0.46604,0.709037,0.51217,0.710187,0.50824,0.719177,0.46923,0.714817,0.51281,0.715627,0.50824,0.725567,0.46934,0.705467,0.43847,0.700317,0.43824,0.704757,0.43545,0.699467,0.43331,0.707567,0.49844,0.708197,0.50102,0.708467,0.50395,0.713777,0.50415,0.713517,0.50108,0.711447,0.49852,0.720037,0.50133,0.720227,0.50431,0.717547,0.49986,0.715397,0.49975,0.714737,0.49839,0.726487,0.50163,0.726617,0.5044,0.726647,0.499,0.721877,0.49883,0.718017,0.49852,0.724207,0.47873,0.724547,0.47614,0.731757,0.50437,0.729097,0.4787,0.729687,0.47601,0.726487,0.49639,0.721727,0.49639,0.717907,0.49665,0.719587,0.49371,0.717277,0.49519,0.725947,0.49363,0.714647,0.49656,0.724157,0.48144,0.728867,0.48149,0.724317,0.48438,0.733227,0.48137,0.733377,0.47856,0.733707,0.47592,0.724727,0.48746,0.725327,0.49055,0.735847,0.5014,0.735787,0.50435,0.739147,0.50431,0.738857,0.50171,0.738817,0.49929,0.736757,0.49907,0.736657,0.49681,0.738727,0.4968,0.715157,0.49515,0.711987,0.43826,0.708887,0.43215,0.715107,0.42566,0.731917,0.41071,0.726817,0.41071,0.726757,0.41373,0.699097,0.5233,0.697507,0.52534,0.698627,0.52862,0.716437,0.51489,0.751887,0.44295,0.756137,0.44336,0.652187,0.55038,0.657377,0.55451,0.694337,0.49584,0.694387,0.49953,0.676567,0.57261,0.678407,0.56956,0.680707,0.56733,0.678137,0.56485,0.677247,0.56234,0.677297,0.56201,0.676187,0.54788,0.698127,0.5787,0.705947,0.47462,0.705467,0.47345,0.747807,0.5519,0.659217,0.6084,0.655877,0.44942,0.692047,0.41664,0.693207,0.41071,0.684227,0.42534,0.685337,0.41866,0.649767,0.42751,0.635187,0.56408,0.647977,0.41816,0.643737,0.42279,0.640147,0.42873,0.635777,0.43564,0.692227,0.4673,0.682577,0.44475,0.682967,0.45848,0.688007,0.43083,0.700827,0.50607,0.677867,0.41417,0.680887,0.41414,0.692187,0.4443,0.692437,0.45054,0.682957,0.4516,0.673767,0.45274,0.665027,0.45374,0.656977,0.4544,0.686427,0.41224,0.692307,0.43797,0.651387,0.45467,0.633567,0.44714,0.631697,0.55637,0.628597,0.56051,0.630547,0.44135,0.681648,0.21965,0.685688,0.22434,0.686598,0.22004,0.683048,0.21609,0.608028,0.26232,0.605228,0.26968,0.608158,0.27151,0.610828,0.26254,0.598868,0.26587,0.594788,0.26963,0.595268,0.27272,0.601178,0.26762,0.596578,0.27492,0.603558,0.26856,0.591118,0.24785,0.593788,0.24443,0.590758,0.24348,0.587798,0.24816,0.588688,0.2542,0.584958,0.25513,0.587408,0.26151,0.583378,0.26286,0.582308,0.25618,0.581018,0.26451,0.589758,0.26983,0.589098,0.27178,0.589048,0.27362,0.580088,0.25638,0.580088,0.26508,0.585208,0.24845,0.582478,0.2481,0.588368,0.24232,0.585738,0.24132,0.675364,0.10064,0.675364,0.09709,0.673034,0.09709,0.671374,0.10182,0.675364,0.11112,0.671014,0.11149,0.671135,0.11683,0.675364,0.11725,0.671324,0.12258,0.675364,0.12425,0.675364,0.13663,0.675364,0.13424,0.671045,0.13135,0.667244,0.13658,0.670834,0.10663,0.667244,0.10815,0.667244,0.11247,0.667244,0.09709,0.667244,0.10474,0.602828,0.23161,0.596368,0.23054,0.597078,0.23176,0.601768,0.23282,0.598778,0.23443,0.596868,0.23347,0.675364,0.10608,0.599408,0.27557,0.667244,0.12953,0.667244,0.13356,0.603938,0.23658,0.606088,0.23656,0.600278,0.23764,0.593808,0.23746,0.595998,0.24004,0.597158,0.24241,0.591178,0.23592,0.600698,0.24212,0.606478,0.24542,0.607428,0.25032,0.610288,0.24884,0.608498,0.24298,0.611568,0.25551,0.608118,0.25593,0.604978,0.25656,0.604708,0.26265,0.588548,0.26626,0.585468,0.26791,0.590428,0.26821,0.583998,0.26977,0.583578,0.27056,0.671624,0.12713,0.675364,0.13065,0.667244,0.12158,0.667244,0.12585,0.667244,0.11707,0.599608,0.27672,0.602798,0.26252,0.602328,0.25575,0.599728,0.2583,0.599998,0.26204,0.605168,0.25143,0.603578,0.2474,0.606028,0.24182,0.604038,0.24193,0.586668,0.22477,0.591048,0.21276,0.578578,0.21212,0.576338,0.22439,0.588418,0.27467,0.585708,0.27971,0.597958,0.28054,0.576738,0.24796,0.584158,0.23662,0.573238,0.23619,0.569508,0.24781,0.580898,0.24906,0.583578,0.24302,0.578008,0.27482,0.582318,0.27213,0.574078,0.26673,0.578698,0.2649,0.578978,0.25687,0.573888,0.25756,0.533858,0.20949,0.546468,0.20965,0.547318,0.19556,0.534038,0.19532,0.557728,0.2104,0.568178,0.21135,0.569088,0.19806,0.558678,0.1965,0.520058,0.20982,0.519298,0.19609,0.507568,0.21057,0.506618,0.19734,0.590078,0.19906,0.578498,0.20037,0.495688,0.19822,0.496568,0.21111,0.619338,0.26418,0.617758,0.25446,0.614628,0.24619,0.611348,0.23897,0.607778,0.23277,0.603658,0.228,0.597938,0.22585,0.643778,0.35669,0.658228,0.34851,0.646398,0.34126,0.635168,0.34789,0.636258,0.33407,0.627428,0.33942,0.669068,0.33985,0.656378,0.33383,0.643408,0.32705,0.690138,0.34977,0.677718,0.36038,0.688648,0.36654,0.704518,0.35463,0.662768,0.36996,0.676678,0.3762,0.675738,0.33159,0.662488,0.32627,0.649188,0.31964,0.637428,0.31233,0.631858,0.32068,0.700448,0.34028,0.711438,0.34373,0.680508,0.34518,0.688218,0.33612,0.668098,0.35499,0.652928,0.36464,0.626498,0.32822,0.622468,0.3336,0.629018,0.26391,0.640328,0.26187,0.632758,0.24843,0.625228,0.25233,0.627478,0.23801,0.620728,0.24254,0.622468,0.22907,0.616378,0.23433,0.617358,0.22178,0.611588,0.22771,0.611568,0.21666,0.605958,0.22393,0.643388,0.30435,0.654008,0.31272,0.649648,0.29851,0.658258,0.30653,0.666318,0.31935,0.668508,0.31222,0.679258,0.32419,0.681018,0.31692,0.691888,0.32786,0.693528,0.3199,0.703808,0.3309,0.704868,0.32189,0.643268,0.28847,0.631908,0.29262,0.625218,0.30511,0.619978,0.31514,0.615768,0.32432,0.630838,0.2773,0.640678,0.27657,0.601368,0.20537,0.599908,0.21903,0.605498,0.2118,0.600208,0.19504,0.662078,0.30029,0.655348,0.29354,0.671218,0.30515,0.681638,0.30873,0.664858,0.29386,0.658788,0.2884,0.704208,0.31309,0.693638,0.31173,0.702038,0.30371,0.692958,0.30363,0.682738,0.30137,0.673408,0.29842,0.654848,0.28156,0.650208,0.2851,0.647528,0.27611,0.647518,0.26719,0.652948,0.27543,0.653138,0.26935,0.655118,0.26396,0.650348,0.25965,0.645318,0.25251,0.639638,0.24305,0.634498,0.233,0.629308,0.2237,0.624338,0.21585,0.619378,0.20965,0.614648,0.20431,0.611448,0.19807,0.610278,0.18868,0.689028,0.2462,0.692178,0.24947,0.693738,0.24471,0.691458,0.2417,0.675598,0.1937,0.668348,0.19087,0.665728,0.19839,0.672998,0.19974,0.684388,0.22913,0.689558,0.23384,0.690658,0.22881,0.706739,0.187242,0.705513,0.181845,0.700645,0.170783,0.696668,0.165984,0.703751,0.176232,0.658688,0.19774,0.660558,0.20767,0.666728,0.20688,0.672118,0.20619,0.676428,0.20622,0.678128,0.20153,0.681078,0.19697,0.687667,0.192576,0.682924,0.188746,0.684713,0.20003,0.690418,0.195693,0.67666,0.183779,0.650548,0.19832,0.652798,0.21,0.648968,0.1903,0.662248,0.18811,0.687778,0.23848,0.682358,0.23383,0.679558,0.23863,0.685058,0.24299,0.682198,0.24734,0.676728,0.24445,0.673698,0.23308,0.668058,0.2398,0.661868,0.22965,0.668408,0.22568,0.677378,0.22843,0.673018,0.22197,0.679888,0.22401,0.676208,0.21825,0.678728,0.21493,0.671568,0.17991,0.656618,0.21974,0.664078,0.21714,0.669338,0.21442,0.673518,0.21216,0.677048,0.21058,0.697068,0.23826,0.697398,0.24147,0.696548,0.23215,0.705908,0.23749,0.705418,0.23377,0.704438,0.24078,0.686808,0.25087,0.689958,0.25408,0.692698,0.25703,0.693688,0.25377,0.679688,0.20655,0.681788,0.20332,0.679838,0.20967,0.680808,0.21262,0.691178,0.22403,0.696838,0.22767,0.704848,0.22978,0.695476,0.187097,0.697793,0.191042,0.691579,0.182297,0.687056,0.177608,0.682559,0.172926,0.651718,0.2467,0.646668,0.23808,0.641868,0.22832,0.637058,0.21861,0.632578,0.21015,0.628558,0.20308,0.658818,0.24326,0.654148,0.23387,0.649388,0.22406,0.644988,0.21409,0.641188,0.2045,0.638328,0.19668,0.677808,0.16985,0.666888,0.17548,0.661768,0.17091,0.652228,0.17526,0.657078,0.18042,0.642358,0.17953,0.646398,0.18475,0.632188,0.18487,0.635478,0.19078,0.622068,0.19086,0.625018,0.19712,0.688288,0.16328,0.697868,0.1556,0.686268,0.15354,0.677488,0.1614,0.670268,0.16611,0.619898,0.18238,0.656098,0.16546,0.647368,0.16934,0.637998,0.17272,0.629088,0.17705,0.695338,0.24669,0.694628,0.24975,0.696898,0.25075,0.697438,0.24827,0.700078,0.25227,0.700468,0.24964,0.703938,0.25371,0.704318,0.2508,0.696548,0.25348,0.699788,0.2553,0.708748,0.25453,0.708968,0.2515,0.699388,0.25838,0.702878,0.26017,0.703488,0.25695,0.707378,0.2613,0.708108,0.25782,0.696158,0.25628,0.694638,0.25221,0.706798,0.26485,0.702288,0.26351,0.698728,0.26167,0.695568,0.25954,0.696898,0.24469,0.698288,0.24659,0.708998,0.24861,0.709818,0.24623,0.701018,0.24792,0.704618,0.24884,0.708648,0.24269,0.709858,0.24449,0.707978,0.24661,0.707268,0.24794,0.704598,0.24803,0.699178,0.24557,0.698248,0.24393,0.705538,0.24345,0.702718,0.24244,0.699688,0.24282,0.701568,0.247,0.707158,0.24514,0.703958,0.24435,0.705908,0.24592,0.707018,0.24682,0.706618,0.24755,0.704918,0.24726,0.702418,0.24602,0.700208,0.24459,0.699108,0.24367,0.699918,0.24319,0.701618,0.24336,0.664788,0.28216,0.662048,0.28449,0.666818,0.28984,0.668418,0.2867,0.674928,0.29413,0.675128,0.29004,0.662428,0.26937,0.664958,0.2666,0.662208,0.26345,0.659128,0.26691,0.703458,0.28459,0.703018,0.28878,0.671518,0.25946,0.676728,0.25991,0.675978,0.25553,0.670118,0.25501,0.659048,0.25951,0.682968,0.29546,0.682678,0.29093,0.701528,0.29566,0.681198,0.26205,0.677898,0.26362,0.681828,0.26597,0.680748,0.25774,0.684678,0.26035,0.684538,0.26448,0.673018,0.26298,0.686738,0.27042,0.684658,0.26834,0.684198,0.27156,0.685828,0.27338,0.666458,0.26083,0.664258,0.25645,0.668538,0.26428,0.691618,0.2961,0.689818,0.29,0.687698,0.28681,0.682178,0.2883,0.675178,0.28782,0.669168,0.28473,0.666508,0.28078,0.665118,0.27144,0.667208,0.26918,0.670278,0.26708,0.674308,0.26588,0.678678,0.26684,0.681948,0.26936,0.695308,0.28919,0.691698,0.28518,0.655608,0.25419,0.661768,0.25065,0.668678,0.24917,0.675458,0.25026,0.685338,0.25575,0.681088,0.25277,0.693578,0.26736,0.696898,0.26928,0.697888,0.26541,0.694698,0.26342,0.706188,0.26862,0.705538,0.27264,0.659088,0.27956,0.662378,0.27857,0.664798,0.27806,0.695568,0.27305,0.692038,0.2711,0.694068,0.27656,0.690828,0.27467,0.692288,0.27992,0.689288,0.27722,0.687838,0.26282,0.687188,0.2667,0.692678,0.28323,0.697438,0.28601,0.697708,0.28215,0.699808,0.27497,0.700858,0.27107,0.701618,0.26719,0.698668,0.27874,0.704038,0.28078,0.704778,0.27678,0.691578,0.26122,0.688768,0.25855,0.690598,0.26517,0.689558,0.26899,0.688638,0.27265,0.687438,0.27517,0.657298,0.27522,0.657468,0.27091,0.660938,0.27542,0.661028,0.27233,0.663798,0.27582,0.663948,0.27364,0.679228,0.27192,0.681928,0.27502,0.682098,0.27244,0.678948,0.26991,0.683218,0.27729,0.683798,0.27462,0.684088,0.27856,0.685038,0.27604,0.684658,0.2794,0.685948,0.2774,0.685248,0.28026,0.687128,0.27892,0.685848,0.28108,0.688398,0.28056,0.686168,0.28152,0.688928,0.28218,0.686098,0.28195,0.688348,0.28345,0.684778,0.28353,0.686188,0.28466,0.681148,0.28523,0.681638,0.28681,0.675298,0.28649,0.674938,0.28485,0.670158,0.28241,0.669648,0.28336,0.668378,0.27916,0.667578,0.27974,0.668098,0.27757,0.666638,0.27772,0.667948,0.27657,0.666088,0.2762,0.668318,0.27555,0.666358,0.27474,0.669318,0.27424,0.670538,0.27296,0.669028,0.27131,0.667358,0.27315,0.672548,0.27137,0.671588,0.26936,0.675728,0.2708,0.675378,0.26841,0.670418,0.27491,0.671258,0.27371,0.670838,0.28136,0.669338,0.27866,0.674638,0.28354,0.684638,0.28142,0.683548,0.28274,0.684668,0.28115,0.684458,0.28077,0.684258,0.28043,0.683008,0.27846,0.683648,0.27939,0.681738,0.27623,0.683898,0.28046,0.683928,0.28068,0.683718,0.28097,0.680348,0.28409,0.679018,0.27294,0.675938,0.27189,0.669768,0.27606,0.683278,0.28122,0.682758,0.28182,0.679518,0.28311,0.674228,0.28254,0.671408,0.28059,0.670238,0.27844,0.670548,0.27648,0.671098,0.27559,0.671998,0.27452,0.678628,0.27396,0.675848,0.27299,0.681448,0.27706,0.682308,0.27952,0.683038,0.28026,0.672868,0.27239,0.673228,0.27356,0.669268,0.27769,0.670228,0.27769,0.683958,0.2799,0.683498,0.28028,0.669478,0.27681,0.670218,0.27701,0.680508,0.27728,0.680868,0.27874,0.680488,0.28083,0.678038,0.2813,0.673778,0.28083,0.671978,0.2796,0.671148,0.27821,0.671028,0.27766,0.671028,0.27724,0.671178,0.27669,0.671658,0.27611,0.672618,0.27535,0.673528,0.27495,0.675638,0.27435,0.678238,0.27512,0.678668,0.27787,0.678498,0.27947,0.677148,0.27939,0.674988,0.27924,0.673428,0.27897,0.672448,0.27851,0.671978,0.27782,0.671738,0.27742,0.671778,0.27699,0.672428,0.27659,0.673128,0.27625,0.673888,0.27631,0.675558,0.27638,0.677338,0.27689,0.541268,0.31094,0.553488,0.3261,0.560738,0.31539,0.550638,0.30187,0.530708,0.32047,0.546148,0.33697,0.573368,0.32502,0.568808,0.33653,0.565238,0.34808,0.519678,0.33036,0.538188,0.3487,0.561158,0.36031,0.518078,0.25745,0.518168,0.2784,0.530668,0.27366,0.530728,0.25463,0.541848,0.26902,0.542228,0.25217,0.505168,0.26023,0.505278,0.28302,0.587038,0.33015,0.584908,0.34148,0.584428,0.35321,0.584198,0.36561,0.555538,0.375,0.583438,0.38061,0.528888,0.36209,0.508228,0.34139,0.492368,0.26207,0.492058,0.28696,0.603578,0.3215,0.607528,0.31089,0.595538,0.30721,0.590938,0.31854,0.584628,0.30241,0.578898,0.31345,0.574368,0.29545,0.567798,0.30501,0.565958,0.2858,0.558818,0.29341,0.559888,0.26151,0.561278,0.24869,0.552318,0.25019,0.551488,0.26492,0.567338,0.25903,0.580448,0.28692,0.572408,0.27959,0.590478,0.29145,0.600748,0.29566,0.612418,0.29977,0.556198,0.22337,0.566338,0.22393,0.545288,0.22288,0.533188,0.22292,0.520198,0.22336,0.507618,0.22427,0.601018,0.33208,0.600998,0.34263,0.603218,0.35424,0.606998,0.36634,0.611328,0.38037,0.486498,0.21115,0.485548,0.22391,0.496158,0.2246,0.549858,0.3923,0.582378,0.39903,0.496428,0.31447,0.481888,0.32015,0.495228,0.35178,0.478058,0.28894,0.509178,0.30744,0.521538,0.30032,0.533708,0.29298,0.544358,0.28595,0.553358,0.27962,0.561148,0.27414,0.567998,0.26981,0.563918,0.23609,0.554368,0.2362,0.543928,0.23649,0.532148,0.23736,0.519308,0.23882,0.506548,0.24042,0.494468,0.24111,0.518398,0.37601,0.606058,0.28297,0.617238,0.2874,0.619328,0.2749,0.613718,0.33301,0.615658,0.34198,0.620708,0.35245,0.627538,0.36316,0.637038,0.37541,0.614548,0.39772,0.639118,0.39138,0.707433,0.192789,0.681928,0.2069,0.683708,0.204373,0.686864,0.201898,0.692183,0.198221,0.699073,0.194978,0.707239,0.199941,0.707057,0.202482,0.69937,0.201445,0.699435,0.203813,0.69344,0.202837,0.693586,0.204781,0.689072,0.204481,0.689937,0.205771,0.686242,0.20561,0.687564,0.206504,0.684558,0.207263,0.685892,0.207732,0.6869,0.208103,0.688392,0.207306,0.690528,0.206852,0.693943,0.206007,0.699336,0.205301,0.70682,0.204299,0.685139,0.20519,0.683482,0.207134,0.68809,0.203197,0.693312,0.200744,0.699425,0.199008,0.707391,0.197109,0.687606,0.208167,0.688828,0.207789,0.690818,0.207532,0.694268,0.206823,0.699364,0.206123,0.706718,0.205113,0.687278,0.21676,0.684218,0.21371,0.682438,0.21124,0.681878,0.20924,0.691508,0.22013,0.697148,0.22384,0.704578,0.22588,0.687808,0.21463,0.691718,0.21742,0.691978,0.215769,0.688238,0.21382,0.697338,0.22099,0.704728,0.22292,0.705094,0.220345,0.697562,0.218849,0.692336,0.214385,0.68895,0.212546,0.705516,0.218192,0.697642,0.216977,0.705842,0.215554,0.697774,0.214865,0.692456,0.212643,0.689544,0.211259,0.685218,0.21262,0.683478,0.21037,0.685948,0.21198,0.684208,0.20983,0.687026,0.2114,0.685958,0.209602,0.687736,0.210448,0.687063,0.209423,0.682935,0.208881,0.683885,0.208723,0.685805,0.20868,0.686787,0.208523,0.705828,0.21486,0.697968,0.21412,0.692508,0.21196,0.689868,0.21082,0.688048,0.20991,0.687472,0.20921,0.687298,0.20835,0.652448,0.37681,0.660898,0.38394,0.482978,0.24026,0.479638,0.26199,0.547008,0.18276,0.533348,0.18337,0.570648,0.18512,0.558708,0.18315,0.494388,0.18768,0.483948,0.18986,0.485848,0.19902,0.518868,0.18463,0.505908,0.18619,0.590718,0.18523,0.580358,0.1858,0.600458,0.18231,0.609698,0.17759,0.618348,0.17288,0.649848,0.15914,0.642628,0.16234,0.634658,0.16535,0.626658,0.1689,0.546218,0.1708,0.545468,0.15836,0.531108,0.16021,0.532278,0.17217,0.558398,0.1705,0.569978,0.17081,0.570408,0.15747,0.558318,0.15757,0.488848,0.16831,0.476508,0.17289,0.480898,0.18156,0.492308,0.17815,0.516338,0.16244,0.518018,0.17391,0.502168,0.16509,0.504698,0.1759,0.591598,0.17119,0.592338,0.15781,0.581838,0.15784,0.581248,0.17136,0.601018,0.16914,0.601778,0.1562,0.609538,0.16589,0.609938,0.15341,0.617728,0.16259,0.617858,0.15073,0.645598,0.15127,0.642928,0.13915,0.637398,0.14169,0.639148,0.15336,0.631908,0.14477,0.632498,0.1562,0.625398,0.14751,0.625428,0.15934,0.544748,0.14393,0.543878,0.12831,0.527908,0.1317,0.529788,0.14668,0.558028,0.14225,0.570508,0.14209,0.569038,0.12466,0.556928,0.1256,0.463188,0.15271,0.470918,0.16401,0.483928,0.15776,0.477688,0.14523,0.510618,0.13487,0.513978,0.14973,0.493598,0.13929,0.498448,0.15333,0.582468,0.14333,0.593138,0.14375,0.593848,0.12831,0.582088,0.12658,0.602758,0.14245,0.603078,0.1273,0.609558,0.13822,0.610348,0.12455,0.618798,0.13658,0.618908,0.1218,0.642528,0.12452,0.642508,0.11065,0.637088,0.11347,0.637218,0.12787,0.631838,0.1164,0.631768,0.13125,0.625828,0.11853,0.626058,0.13137,0.648068,0.12174,0.649798,0.1381,0.654598,0.13271,0.653148,0.11991,0.653858,0.10782,0.648018,0.10863,0.542848,0.11396,0.525698,0.11648,0.567468,0.1099,0.555848,0.11087,0.506388,0.11784,0.487348,0.12237,0.594128,0.11481,0.581598,0.11267,0.469848,0.12969,0.603128,0.11442,0.610548,0.11255,0.618208,0.11008,0.637098,0.10185,0.642808,0.09949,0.631358,0.10465,0.625298,0.10731,0.648718,0.09787,0.663778,0.16151,0.656498,0.15621,0.651858,0.15038,0.599008,0.24493,0.597138,0.24931,0.595108,0.25508,0.594068,0.26095,0.593838,0.26527,0.593108,0.26781,0.670168,0.15743,0.676868,0.15143,0.661788,0.14601,0.657618,0.14916,0.662678,0.15329,0.666968,0.14865,0.453338,0.13809,0.657928,0.14152,0.655018,0.14407,0.542198,0.1015,0.554388,0.09942,0.525518,0.10219,0.502418,0.09721,0.566658,0.09829,0.480378,0.10549,0.462308,0.11489,0.445048,0.12506,0.629598,0.09572,0.623108,0.09852,0.636268,0.09264,0.642878,0.09019,0.649418,0.08891,0.616238,0.10086,0.580488,0.10021,0.591898,0.10183,0.601478,0.10292,0.608978,0.10257,0.654998,0.09746,0.655828,0.08882,0.682334,0.14085,0.688115,0.14085,0.688115,0.13912,0.682334,0.13724,0.707455,0.14085,0.707455,0.13912,0.704374,0.13912,0.704374,0.14085,0.699485,0.14085,0.699485,0.13912,0.695625,0.13912,0.695625,0.14085,0.693004,0.13912,0.693004,0.14085,0.695625,0.09098,0.695625,0.09333,0.699485,0.09333,0.699485,0.09098,0.707455,0.09333,0.707455,0.09098,0.704374,0.09098,0.704374,0.09333,0.693004,0.09098,0.693004,0.09333,0.682374,0.09533,0.688115,0.09334,0.688115,0.09098,0.682374,0.09098,0.688115,0.13793,0.682334,0.13395,0.707455,0.13793,0.704374,0.13793,0.699485,0.13793,0.695625,0.13793,0.693004,0.13793,0.695625,0.09555,0.699485,0.09555,0.707455,0.09555,0.704374,0.09555,0.693004,0.09555,0.682374,0.0988,0.688115,0.09552,0.688115,0.1356,0.682334,0.12723,0.704374,0.1356,0.699485,0.1356,0.695625,0.1356,0.693004,0.1356,0.695625,0.0984,0.699485,0.0984,0.707455,0.0984,0.704374,0.0984,0.693004,0.0984,0.688115,0.0984,0.682374,0.10342,0.682395,0.11667,0.688115,0.10514,0.704374,0.13072,0.699485,0.13072,0.695625,0.13072,0.693004,0.13072,0.699485,0.10514,0.695625,0.10514,0.704374,0.10514,0.707455,0.10514,0.693004,0.10514,0.699485,0.11647,0.704374,0.11647,0.695625,0.11647,0.693004,0.11647,0.688115,0.13072,0.707455,0.13072,0.707455,0.11647,0.707455,0.1356,0.062889,0.19377,0.054815,0.19232,0.164676,0.1913,0.087554,0.145133,0.092221,0.137819,0.129758,0.146869,0.129678,0.154301,0.128968,0.14035,0.090855,0.19019,0.090671,0.198408,0.084144,0.197785,0.085436,0.19064,0.077566,0.18926,0.089575,0.126348,0.096757,0.129594,0.099668,0.125858,0.103057,0.120892,0.106877,0.115484,0.108578,0.11018,0.111736,0.114574,0.111878,0.10996,0.115706,0.115416,0.116213,0.110895,0.119902,0.118215,0.121412,0.113453,0.094936,0.133371,0.170507,0.115255,0.170677,0.106215,0.171337,0.091755,0.184177,0.071325,0.153966,0.18071,0.119586,0.1941,0.112526,0.19135,0.125856,0.19355,0.070606,0.18751,0.063766,0.18582,0.055506,0.18399,0.164955,0.18299,0.133367,0.369577,0.152932,0.367595,0.189927,0.069435,0.193787,0.070465,0.175237,0.066545,0.180507,0.067575]], - -"faces": [42,13,1,0,0,2,3,0,0,0,0,42,0,12,13,0,0,1,2,1,1,1,42,14,2,1,0,4,5,3,2,2,2,42,1,13,14,0,3,2,4,3,3,3,42,15,3,2,0,6,7,5,4,4,4,42,2,14,15,0,5,4,6,5,5,5,42,16,4,3,0,8,9,7,6,6,6,42,3,15,16,0,7,6,8,7,7,7,42,17,5,4,0,10,11,9,8,8,8,42,4,16,17,0,9,8,10,9,9,9,42,18,6,5,0,12,13,11,10,10,10,42,5,17,18,0,11,10,12,11,11,11,42,19,7,6,0,14,15,13,12,12,12,42,6,18,19,0,13,12,14,13,13,13,42,20,8,7,0,16,17,15,14,14,14,42,7,19,20,0,15,14,16,15,15,15,42,21,9,8,0,18,19,17,16,16,16,42,8,20,21,0,17,16,18,17,17,17,42,22,10,9,0,20,21,19,18,18,18,42,9,21,22,0,19,18,20,19,19,19,42,23,11,10,0,22,23,21,20,20,20,42,10,22,23,0,21,20,22,21,21,21,42,12,0,11,0,1,0,23,22,22,22,42,11,23,12,0,23,22,1,23,23,23,42,25,13,12,0,25,2,1,24,24,24,42,12,24,25,0,1,24,25,25,25,25,42,26,14,13,0,26,4,2,26,26,26,42,13,25,26,0,2,25,26,27,27,27,42,27,15,14,0,27,6,4,28,28,28,42,14,26,27,0,4,26,27,29,29,29,42,28,16,15,0,28,8,6,30,30,30,42,15,27,28,0,6,27,28,31,31,31,42,29,17,16,0,29,10,8,32,32,32,42,16,28,29,0,8,28,29,33,33,33,42,30,18,17,0,30,12,10,34,34,34,42,17,29,30,0,10,29,30,35,35,35,42,31,19,18,0,31,14,12,36,36,36,42,18,30,31,0,12,30,31,37,37,37,42,32,20,19,0,32,16,14,38,38,38,42,19,31,32,0,14,31,32,39,39,39,42,33,21,20,0,33,18,16,40,40,40,42,20,32,33,0,16,32,33,41,41,41,42,34,22,21,0,34,20,18,42,42,42,42,21,33,34,0,18,33,34,43,43,43,42,35,23,22,0,35,22,20,44,44,44,42,22,34,35,0,20,34,35,45,45,45,42,24,12,23,0,24,1,22,46,46,46,42,23,35,24,0,22,35,24,47,47,47,42,36,25,24,0,36,25,24,48,48,48,42,36,26,25,0,36,26,25,49,49,49,42,36,27,26,0,36,27,26,50,50,50,42,36,28,27,0,36,28,27,51,51,51,42,36,29,28,0,36,29,28,52,52,52,42,36,30,29,0,36,30,29,53,53,53,42,36,31,30,0,36,31,30,54,54,54,42,36,32,31,0,36,32,31,55,55,55,42,36,33,32,0,36,33,32,56,56,56,42,36,34,33,0,36,34,33,57,57,57,42,36,35,34,0,36,35,34,58,58,58,42,36,24,35,0,36,24,35,59,59,59,42,0,1,38,0,0,3,37,60,60,60,42,38,37,0,0,37,38,0,61,61,61,42,1,2,39,0,3,5,39,62,62,62,42,39,38,1,0,39,37,3,63,63,63,42,2,3,40,0,5,7,40,64,64,64,42,40,39,2,0,40,39,5,65,65,65,42,3,4,41,0,7,9,41,66,66,66,42,41,40,3,0,41,40,7,67,67,67,42,4,5,42,0,9,11,42,68,68,68,42,42,41,4,0,42,41,9,69,69,69,42,5,6,43,0,11,13,43,70,70,70,42,43,42,5,0,43,42,11,71,71,71,42,6,7,44,0,13,15,44,72,72,72,42,44,43,6,0,44,43,13,73,73,73,42,7,8,45,0,15,17,45,74,74,74,42,45,44,7,0,45,44,15,75,75,75,42,8,9,46,0,17,19,46,76,76,76,42,46,45,8,0,46,45,17,77,77,77,42,9,10,47,0,19,21,47,78,78,78,42,47,46,9,0,47,46,19,79,79,79,42,10,11,48,0,21,23,48,80,80,80,42,48,47,10,0,48,47,21,81,81,81,42,11,0,37,0,23,0,38,82,82,82,42,37,48,11,0,38,48,23,83,83,83,42,63,64,50,0,50,52,53,84,84,84,42,50,49,63,0,53,51,50,85,85,85,42,53,68,83,0,56,57,55,86,86,86,42,83,80,53,0,55,54,56,87,87,87,42,53,54,67,0,56,58,59,88,88,88,42,67,68,53,0,59,57,56,89,89,89,42,49,50,58,0,51,53,62,90,90,90,42,58,57,49,0,62,63,51,91,91,91,42,88,57,60,0,60,63,64,92,92,92,42,60,90,88,0,64,85,60,93,93,93,42,57,58,61,0,63,62,65,94,94,94,42,61,60,57,0,65,64,63,95,95,95,42,90,60,53,0,85,64,56,96,96,96,42,53,80,90,0,56,54,85,97,97,97,42,60,61,54,0,64,65,58,98,98,98,42,54,53,60,0,58,56,64,99,99,99,42,50,64,65,0,53,52,61,100,100,100,42,65,58,50,0,61,62,53,101,101,101,42,65,66,61,0,61,66,65,102,102,102,42,61,58,65,0,65,62,61,103,103,103,42,66,67,54,0,66,59,58,104,104,104,42,54,61,66,0,58,65,66,105,105,105,42,95,71,63,0,69,71,50,106,106,106,42,63,94,95,0,50,49,69,107,107,107,42,71,72,64,0,71,72,52,108,108,108,42,64,63,71,0,52,50,71,109,109,109,42,70,99,83,0,76,70,55,110,110,110,42,83,68,70,0,55,57,76,111,111,111,42,69,70,68,0,77,76,57,112,112,112,42,68,67,69,0,57,59,77,113,113,113,42,64,72,73,0,52,72,81,114,114,114,42,73,65,64,0,81,61,52,115,115,115,42,65,73,74,0,61,67,82,116,116,116,42,74,66,65,0,82,66,61,117,117,117,42,74,69,67,0,82,77,59,118,118,118,42,67,66,74,0,59,66,82,119,119,119,42,103,51,71,0,73,74,71,120,120,120,42,71,95,103,0,71,69,73,121,121,121,42,51,52,72,0,74,75,72,122,122,122,42,72,71,51,0,72,71,74,123,123,123,42,55,107,99,0,79,78,70,124,124,124,42,99,70,55,0,70,76,79,125,125,125,42,56,55,70,0,80,79,76,126,126,126,42,70,69,56,0,76,77,80,127,127,127,42,72,52,59,0,72,75,83,128,128,128,42,59,73,72,0,83,81,72,129,129,129,42,73,59,62,0,67,68,84,130,130,130,42,62,74,73,0,84,82,67,131,131,131,42,74,62,56,0,82,84,80,132,132,132,42,56,69,74,0,80,77,82,133,133,133,42,94,63,49,0,49,50,51,134,134,134,42,94,49,75,0,49,51,86,135,135,135,42,112,94,75,0,87,49,86,136,136,136,42,57,88,112,0,63,60,87,137,137,137,42,49,57,112,0,51,63,87,138,138,138,42,75,49,112,0,86,51,87,139,139,139,42,77,76,79,0,89,88,91,140,140,140,42,79,78,77,0,91,90,89,141,141,141,42,81,80,83,0,92,54,55,142,142,142,42,83,82,81,0,55,93,92,143,143,143,42,81,82,85,0,92,93,95,144,144,144,42,85,84,81,0,95,94,92,145,145,145,42,76,87,86,0,88,97,96,146,146,146,42,86,79,76,0,96,91,88,147,147,147,42,88,90,89,0,60,85,98,148,148,148,42,89,87,88,0,98,97,60,149,149,149,42,87,89,91,0,97,98,99,150,150,150,42,91,86,87,0,99,96,97,151,151,151,42,90,80,81,0,85,54,92,152,152,152,42,81,89,90,0,92,98,85,153,153,153,42,89,81,84,0,98,92,94,154,154,154,42,84,91,89,0,94,99,98,155,155,155,42,79,86,92,0,91,96,100,156,156,156,42,92,78,79,0,100,90,91,157,157,157,42,92,86,91,0,100,96,99,158,158,158,42,91,93,92,0,99,101,100,159,159,159,42,93,91,84,0,101,99,94,160,160,160,42,84,85,93,0,94,95,101,161,161,161,42,95,94,77,0,69,49,89,162,162,162,42,77,96,95,0,89,102,69,163,163,163,42,96,77,78,0,102,89,90,164,164,164,42,78,97,96,0,90,103,102,165,165,165,42,98,82,83,0,104,93,55,166,166,166,42,83,99,98,0,55,70,104,167,167,167,42,100,85,82,0,105,95,93,168,168,168,42,82,98,100,0,93,104,105,169,169,169,42,78,92,101,0,90,100,106,170,170,170,42,101,97,78,0,106,103,90,171,171,171,42,92,93,102,0,100,101,108,172,172,172,42,102,101,92,0,108,107,100,173,173,173,42,102,93,85,0,108,101,95,174,174,174,42,85,100,102,0,95,105,108,175,175,175,42,103,95,96,0,73,69,102,176,176,176,42,96,104,103,0,102,109,73,177,177,177,42,104,96,97,0,109,102,103,178,178,178,42,97,105,104,0,103,110,109,179,179,179,42,106,98,99,0,111,104,70,180,180,180,42,99,107,106,0,70,78,111,181,181,181,42,108,100,98,0,112,105,104,182,182,182,42,98,106,108,0,104,111,112,183,183,183,42,97,101,109,0,103,106,113,184,184,184,42,109,105,97,0,113,110,103,185,185,185,42,101,102,110,0,107,108,115,186,186,186,42,110,109,101,0,115,114,107,187,187,187,42,102,100,108,0,108,105,112,188,188,188,42,108,110,102,0,112,115,108,189,189,189,42,76,77,94,0,88,89,49,190,190,190,42,111,76,94,0,116,88,49,191,191,191,42,112,111,94,0,87,116,49,192,192,192,42,112,88,87,0,87,60,97,193,193,193,42,112,87,76,0,87,97,88,194,194,194,42,111,112,76,0,116,87,88,195,195,195,42,117,132,129,0,136,127,117,196,196,196,42,129,113,117,0,117,119,136,197,197,197,42,118,117,113,0,128,136,119,198,198,198,42,113,114,118,0,119,121,128,199,199,199,42,119,118,114,0,129,128,121,200,200,200,42,114,115,119,0,121,123,129,201,201,201,42,120,119,115,0,130,129,123,202,202,202,42,115,116,120,0,123,125,130,203,203,203,42,125,121,139,0,135,120,118,204,204,204,42,139,140,125,0,118,134,135,205,205,205,42,126,122,121,0,132,122,120,206,206,206,42,121,125,126,0,120,135,132,207,207,207,42,127,123,122,0,131,124,122,208,208,208,42,122,126,127,0,122,132,131,209,209,209,42,128,124,123,0,133,126,124,210,210,210,42,123,127,128,0,124,131,133,211,211,211,42,121,113,129,0,120,119,117,212,212,212,42,129,139,121,0,117,118,120,213,213,213,42,122,114,113,0,122,121,119,214,214,214,42,113,121,122,0,119,120,122,215,215,215,42,123,115,114,0,124,123,121,216,216,216,42,114,122,123,0,121,122,124,217,217,217,42,124,116,115,0,126,125,123,218,218,218,42,115,123,124,0,123,124,126,219,219,219,42,131,130,129,0,138,137,117,220,220,220,42,129,132,131,0,117,127,138,221,221,221,42,134,133,130,0,140,139,137,222,222,222,42,130,131,134,0,137,138,140,223,223,223,42,136,135,133,0,142,141,139,224,224,224,42,133,134,136,0,139,140,142,225,225,225,42,138,137,135,0,144,143,141,226,226,226,42,135,136,138,0,141,142,144,227,227,227,42,141,140,139,0,145,134,118,228,228,228,42,139,142,141,0,118,146,145,229,229,229,42,143,141,142,0,147,145,146,230,230,230,42,142,144,143,0,146,148,147,231,231,231,42,145,143,144,0,149,147,148,232,232,232,42,144,146,145,0,148,150,149,233,233,233,42,147,145,146,0,151,149,150,234,234,234,42,146,148,147,0,150,152,151,235,235,235,42,142,139,129,0,146,118,117,236,236,236,42,129,130,142,0,117,137,146,237,237,237,42,144,142,130,0,148,146,137,238,238,238,42,130,133,144,0,137,139,148,239,239,239,42,146,144,133,0,150,148,139,240,240,240,42,133,135,146,0,139,141,150,241,241,241,42,148,146,135,0,152,150,141,242,242,242,42,135,137,148,0,141,143,152,243,243,243,42,162,161,149,0,155,154,153,244,244,244,42,149,150,162,0,153,156,155,245,245,245,42,163,162,150,0,157,155,156,246,246,246,42,150,151,163,0,156,158,157,247,247,247,42,164,163,151,0,159,157,158,248,248,248,42,151,152,164,0,158,160,159,249,249,249,42,165,164,152,0,161,159,160,250,250,250,42,152,153,165,0,160,162,161,251,251,251,42,166,165,153,0,163,161,162,252,252,252,42,153,154,166,0,162,164,163,253,253,253,42,167,166,154,0,165,163,164,254,254,254,42,154,155,167,0,164,166,165,255,255,255,42,168,167,155,0,167,165,166,256,256,256,42,155,156,168,0,166,168,167,257,257,257,42,169,168,156,0,169,167,168,258,258,258,42,156,157,169,0,168,170,169,259,259,259,42,170,169,157,0,171,169,170,260,260,260,42,157,158,170,0,170,172,171,261,261,261,42,171,170,158,0,173,171,172,262,262,262,42,158,159,171,0,172,174,173,263,263,263,42,172,171,159,0,175,173,174,264,264,264,42,159,160,172,0,174,176,175,265,265,265,42,161,172,160,0,154,175,176,266,266,266,42,160,149,161,0,176,153,154,267,267,267,42,174,173,161,0,178,177,154,268,268,268,42,161,162,174,0,154,155,178,269,269,269,42,175,174,162,0,179,178,155,270,270,270,42,162,163,175,0,155,157,179,271,271,271,42,176,175,163,0,180,179,157,272,272,272,42,163,164,176,0,157,159,180,273,273,273,42,177,176,164,0,181,180,159,274,274,274,42,164,165,177,0,159,161,181,275,275,275,42,178,177,165,0,182,181,161,276,276,276,42,165,166,178,0,161,163,182,277,277,277,42,179,178,166,0,183,182,163,278,278,278,42,166,167,179,0,163,165,183,279,279,279,42,180,179,167,0,184,183,165,280,280,280,42,167,168,180,0,165,167,184,281,281,281,42,181,180,168,0,185,184,167,282,282,282,42,168,169,181,0,167,169,185,283,283,283,42,182,181,169,0,186,185,169,284,284,284,42,169,170,182,0,169,171,186,285,285,285,42,183,182,170,0,187,186,171,286,286,286,42,170,171,183,0,171,173,187,287,287,287,42,184,183,171,0,188,187,173,288,288,288,42,171,172,184,0,173,175,188,289,289,289,42,173,184,172,0,177,188,175,290,290,290,42,172,161,173,0,175,154,177,291,291,291,42,185,173,174,0,189,177,178,292,292,292,42,185,174,175,0,189,178,179,293,293,293,42,185,175,176,0,189,179,180,294,294,294,42,185,176,177,0,189,180,181,295,295,295,42,185,177,178,0,189,181,182,296,296,296,42,185,178,179,0,189,182,183,297,297,297,42,185,179,180,0,189,183,184,298,298,298,42,185,180,181,0,189,184,185,299,299,299,42,185,181,182,0,189,185,186,300,300,300,42,185,182,183,0,189,186,187,301,301,301,42,185,183,184,0,189,187,188,302,302,302,42,185,184,173,0,189,188,177,303,303,303,42,149,186,187,0,153,191,190,304,304,304,42,187,150,149,0,190,156,153,305,305,305,42,150,187,188,0,156,190,192,306,306,306,42,188,151,150,0,192,158,156,307,307,307,42,151,188,189,0,158,192,193,308,308,308,42,189,152,151,0,193,160,158,309,309,309,42,152,189,190,0,160,193,194,310,310,310,42,190,153,152,0,194,162,160,311,311,311,42,153,190,191,0,162,194,195,312,312,312,42,191,154,153,0,195,164,162,313,313,313,42,154,191,192,0,164,195,196,314,314,314,42,192,155,154,0,196,166,164,315,315,315,42,155,192,193,0,166,196,197,316,316,316,42,193,156,155,0,197,168,166,317,317,317,42,156,193,194,0,168,197,198,318,318,318,42,194,157,156,0,198,170,168,319,319,319,42,157,194,195,0,170,198,199,320,320,320,42,195,158,157,0,199,172,170,321,321,321,42,158,195,196,0,172,199,200,322,322,322,42,196,159,158,0,200,174,172,323,323,323,42,159,196,197,0,174,200,201,324,324,324,42,197,160,159,0,201,176,174,325,325,325,42,160,197,186,0,176,201,191,326,326,326,42,186,149,160,0,191,153,176,327,327,327,42,202,198,214,0,221,204,202,328,328,328,42,214,215,202,0,202,212,221,329,329,329,42,203,199,198,0,213,206,204,330,330,330,42,198,202,203,0,204,221,213,331,331,331,42,204,200,199,0,214,208,206,332,332,332,42,199,203,204,0,206,213,214,333,333,333,42,205,201,200,0,215,210,208,334,334,334,42,200,204,205,0,208,214,215,335,335,335,42,210,227,224,0,220,219,203,336,336,336,42,224,206,210,0,203,205,220,337,337,337,42,211,210,206,0,217,220,205,338,338,338,42,206,207,211,0,205,207,217,339,339,339,42,212,211,207,0,216,217,207,340,340,340,42,207,208,212,0,207,209,216,341,341,341,42,213,212,208,0,218,216,209,342,342,342,42,208,209,213,0,209,211,218,343,343,343,42,206,224,214,0,205,203,202,344,344,344,42,214,198,206,0,202,204,205,345,345,345,42,207,206,198,0,207,205,204,346,346,346,42,198,199,207,0,204,206,207,347,347,347,42,208,207,199,0,209,207,206,348,348,348,42,199,200,208,0,206,208,209,349,349,349,42,209,208,200,0,211,209,208,350,350,350,42,200,201,209,0,208,210,211,351,351,351,42,216,215,214,0,222,212,202,352,352,352,42,214,217,216,0,202,223,222,353,353,353,42,218,216,217,0,224,222,223,354,354,354,42,217,219,218,0,223,225,224,355,355,355,42,220,218,219,0,226,224,225,356,356,356,42,219,221,220,0,225,227,226,357,357,357,42,222,220,221,0,228,226,227,358,358,358,42,221,223,222,0,227,229,228,359,359,359,42,226,225,224,0,231,230,203,360,360,360,42,224,227,226,0,203,219,231,361,361,361,42,229,228,225,0,233,232,230,362,362,362,42,225,226,229,0,230,231,233,363,363,363,42,231,230,228,0,235,234,232,364,364,364,42,228,229,231,0,232,233,235,365,365,365,42,233,232,230,0,237,236,234,366,366,366,42,230,231,233,0,234,235,237,367,367,367,42,225,217,214,0,230,223,202,368,368,368,42,214,224,225,0,202,203,230,369,369,369,42,228,219,217,0,232,225,223,370,370,370,42,217,225,228,0,223,230,232,371,371,371,42,230,221,219,0,234,227,225,372,372,372,42,219,228,230,0,225,232,234,373,373,373,42,232,223,221,0,236,229,227,374,374,374,42,221,230,232,0,227,234,236,375,375,375,42,280,279,278,0,325,324,323,376,376,376,42,280,278,281,0,325,323,326,377,377,377,42,284,283,282,0,329,328,327,378,378,378,42,284,282,285,0,329,327,330,379,379,379,42,287,286,285,0,332,331,330,380,380,380,42,287,285,282,0,332,330,327,381,381,381,42,290,289,288,0,335,334,333,382,382,382,42,290,288,291,0,335,333,336,383,383,383,42,294,293,292,0,339,338,337,384,384,384,42,294,292,295,0,339,337,340,385,385,385,42,291,288,296,0,336,333,341,386,386,386,42,291,296,297,0,336,341,342,387,387,387,42,299,298,294,0,344,343,339,388,388,388,42,299,294,295,0,344,339,340,389,389,389,42,293,301,300,0,338,346,345,390,390,390,42,293,300,292,0,338,345,337,391,391,391,42,304,303,302,0,349,348,347,392,392,392,42,304,302,305,0,349,347,350,393,393,393,42,307,306,300,0,352,351,345,394,394,394,42,307,300,308,0,352,345,353,395,395,395,42,309,307,308,0,354,352,353,396,396,396,42,309,308,310,0,354,353,355,397,397,397,42,311,309,310,0,356,354,355,398,398,398,42,311,310,312,0,356,355,357,399,399,399,42,313,282,283,0,358,327,328,400,400,400,42,313,283,314,0,358,328,359,401,401,401,42,317,316,315,0,362,361,360,402,402,402,42,317,315,318,0,362,360,363,403,403,403,42,321,320,319,0,366,365,364,404,404,404,42,321,319,322,0,366,364,367,405,405,405,42,320,321,323,0,365,366,368,406,406,406,42,320,323,324,0,365,368,369,407,407,407,42,325,323,321,0,370,368,366,408,408,408,42,325,321,326,0,370,366,371,409,409,409,42,326,321,322,0,371,366,367,410,410,410,42,326,322,327,0,371,367,372,411,411,411,42,328,324,323,0,373,369,368,412,412,412,42,328,323,329,0,373,368,374,413,413,413,42,323,325,330,0,368,370,375,414,414,414,42,323,330,329,0,368,375,374,415,415,415,42,329,330,331,0,374,375,376,416,416,416,42,329,331,332,0,374,376,377,417,417,417,42,332,331,333,0,380,379,378,418,418,418,42,332,333,334,0,380,378,381,419,419,419,42,335,328,329,0,382,373,374,420,420,420,42,335,329,332,0,382,374,377,421,421,421,42,335,332,334,0,383,380,381,422,422,422,42,335,334,336,0,383,381,384,423,423,423,42,330,338,337,0,375,386,385,424,424,424,42,330,337,331,0,375,385,376,425,425,425,42,339,333,331,0,387,378,379,426,426,426,42,339,331,337,0,387,379,388,427,427,427,42,326,341,340,0,371,390,389,428,428,428,42,326,340,325,0,371,389,370,429,429,429,42,342,340,341,0,391,389,390,430,430,430,42,342,341,343,0,391,390,392,431,431,431,42,325,340,338,0,370,389,386,432,432,432,42,325,338,330,0,370,386,375,433,433,433,42,340,342,344,0,389,391,393,434,434,434,42,340,344,338,0,389,393,386,435,435,435,42,327,322,345,0,372,367,394,436,436,436,42,327,345,346,0,372,394,395,437,437,437,42,347,327,346,0,396,372,395,438,438,438,42,347,346,348,0,396,395,397,439,439,439,42,341,326,327,0,390,371,372,440,440,440,42,341,327,347,0,390,372,396,441,441,441,42,322,319,349,0,367,364,398,442,442,442,42,322,349,345,0,367,398,394,443,443,443,42,351,350,348,0,400,399,397,444,444,444,42,351,348,346,0,400,397,395,445,445,445,42,352,348,350,0,401,397,399,446,446,446,42,352,350,353,0,401,399,402,447,447,447,42,354,347,348,0,403,396,397,448,448,448,42,354,348,352,0,403,397,401,449,449,449,42,357,356,355,0,406,405,404,450,450,450,42,357,355,358,0,406,404,407,451,451,451,42,355,360,359,0,404,409,408,452,452,452,42,355,359,361,0,404,408,410,453,453,453,42,358,313,314,0,411,358,359,454,454,454,42,358,314,357,0,411,359,412,455,455,455,42,362,360,355,0,413,409,404,456,456,456,42,362,355,356,0,413,404,405,457,457,457,42,357,335,336,0,406,383,384,458,458,458,42,357,336,356,0,406,384,405,459,459,459,42,356,336,363,0,405,384,414,460,460,460,42,356,363,362,0,405,414,413,461,461,461,42,365,364,360,0,416,415,409,462,462,462,42,365,360,362,0,416,409,413,463,463,463,42,362,363,366,0,413,414,417,464,464,464,42,362,366,365,0,413,417,416,465,465,465,42,368,367,345,0,419,418,394,466,466,466,42,368,345,349,0,419,394,398,467,467,467,42,367,368,369,0,418,419,420,468,468,468,42,367,369,370,0,418,420,421,469,469,469,42,351,367,370,0,400,418,421,470,470,470,42,351,370,371,0,400,421,422,471,471,471,42,372,369,368,0,423,420,419,472,472,472,42,372,368,373,0,423,419,424,473,473,473,42,376,375,374,0,427,426,425,474,474,474,42,376,374,377,0,427,425,428,475,475,475,42,375,378,372,0,426,429,423,476,476,476,42,375,372,374,0,426,423,425,477,477,477,42,378,375,364,0,429,426,415,478,478,478,42,378,364,365,0,429,415,416,479,479,479,42,379,364,375,0,430,415,426,480,480,480,42,379,375,376,0,430,426,427,481,481,481,42,365,366,380,0,416,417,431,482,482,482,42,365,380,378,0,416,431,429,483,483,483,42,366,382,381,0,417,433,432,484,484,484,42,366,381,380,0,417,432,431,485,485,485,42,383,381,382,0,434,432,433,486,486,486,42,383,382,384,0,434,433,435,487,487,487,42,387,386,385,0,438,437,436,488,488,488,42,387,385,388,0,438,436,439,489,489,489,42,386,390,389,0,437,441,440,490,490,490,42,386,389,385,0,437,440,436,491,491,491,42,392,391,388,0,443,442,439,492,492,492,42,392,388,385,0,443,439,436,493,493,493,42,395,394,393,0,446,445,444,494,494,494,42,395,393,286,0,446,444,331,495,495,495,42,398,397,396,0,449,448,447,496,496,496,42,398,396,399,0,449,447,450,497,497,497,42,385,389,400,0,436,440,451,498,498,498,42,385,400,392,0,436,451,443,499,499,499,42,374,372,373,0,425,423,424,500,500,500,42,374,373,401,0,425,424,452,501,501,501,42,404,403,402,0,455,454,453,502,502,502,42,404,402,405,0,455,453,456,503,503,503,42,405,402,307,0,456,453,352,504,504,504,42,405,307,309,0,456,352,354,505,505,505,42,406,404,405,0,457,455,456,506,506,506,42,406,405,407,0,457,456,458,507,507,507,42,407,405,309,0,458,456,354,508,508,508,42,407,309,311,0,458,354,356,509,509,509,42,410,409,408,0,461,460,459,510,510,510,42,410,408,411,0,461,459,462,511,511,511,42,414,413,412,0,465,464,463,512,512,512,42,414,412,415,0,465,463,466,513,513,513,42,413,371,383,0,464,422,434,514,514,514,42,413,383,412,0,464,434,463,515,515,515,42,417,416,384,0,468,467,435,516,516,516,42,417,384,382,0,468,435,433,517,517,517,42,363,417,382,0,414,468,433,518,518,518,42,363,382,366,0,414,433,417,519,519,519,42,359,360,364,0,408,409,415,520,520,520,42,359,364,379,0,408,415,430,521,521,521,42,338,344,418,0,386,393,469,522,522,522,42,338,418,337,0,386,469,385,523,523,523,42,317,420,419,0,362,471,470,524,524,524,42,317,419,421,0,362,470,472,525,525,525,42,420,317,318,0,471,362,363,526,526,526,42,420,318,422,0,471,363,473,527,527,527,42,377,374,401,0,428,425,452,528,528,528,42,377,401,397,0,428,452,448,529,529,529,42,290,306,423,0,335,351,474,530,530,530,42,290,423,289,0,335,474,334,531,531,531,42,306,307,402,0,351,352,453,532,532,532,42,306,402,423,0,351,453,474,533,533,533,42,289,423,305,0,334,474,350,534,534,534,42,289,305,302,0,334,350,347,535,535,535,42,425,424,400,0,476,475,451,536,536,536,42,425,400,426,0,476,451,477,537,537,537,42,299,297,424,0,344,342,475,538,538,538,42,299,424,425,0,344,475,476,539,539,539,42,428,427,339,0,479,478,387,540,540,540,42,428,339,429,0,479,387,480,541,541,541,42,431,430,427,0,482,481,478,542,542,542,42,431,427,428,0,482,478,479,543,543,543,42,432,288,289,0,483,333,334,544,544,544,42,432,289,302,0,483,334,347,545,545,545,42,433,296,288,0,484,341,333,546,546,546,42,433,288,432,0,484,333,483,547,547,547,42,320,324,283,0,365,369,328,548,548,548,42,320,283,284,0,365,328,329,549,549,549,42,314,283,324,0,359,328,369,550,550,550,42,314,324,328,0,359,369,373,551,551,551,42,343,341,347,0,392,390,396,552,552,552,42,343,347,354,0,392,396,403,553,553,553,42,371,413,350,0,422,464,399,554,554,554,42,371,350,351,0,422,399,400,555,555,555,42,353,350,413,0,402,399,464,556,556,556,42,353,413,414,0,402,464,465,557,557,557,42,435,434,296,0,486,485,341,558,558,558,42,435,296,433,0,486,341,484,559,559,559,42,436,435,433,0,487,486,484,560,560,560,42,436,433,437,0,487,484,488,561,561,561,42,369,372,378,0,420,423,429,562,562,562,42,369,378,380,0,420,429,431,563,563,563,42,371,370,381,0,422,421,432,564,564,564,42,371,381,383,0,422,432,434,565,565,565,42,395,439,438,0,446,490,489,566,566,566,42,395,438,440,0,446,489,491,567,567,567,42,438,442,441,0,489,493,492,568,568,568,42,438,441,421,0,489,492,472,569,569,569,42,412,383,384,0,463,434,435,570,570,570,42,412,384,430,0,463,435,481,571,571,571,42,336,334,417,0,384,381,468,572,572,572,42,336,417,363,0,384,468,414,573,573,573,42,445,444,443,0,496,495,494,574,574,574,42,445,443,446,0,496,494,497,575,575,575,42,334,333,416,0,381,378,467,576,576,576,42,334,416,417,0,381,467,468,577,577,577,42,430,384,416,0,481,435,467,578,578,578,42,430,416,427,0,481,467,478,579,579,579,42,436,377,397,0,487,428,448,580,580,580,42,436,397,398,0,487,448,449,581,581,581,42,434,435,391,0,485,486,442,582,582,582,42,434,391,392,0,485,442,443,583,583,583,42,415,412,430,0,466,463,481,584,584,584,42,415,430,431,0,466,481,482,585,585,585,42,429,339,337,0,480,387,388,586,586,586,42,429,337,418,0,480,388,498,587,587,587,42,434,424,297,0,485,475,342,588,588,588,42,434,297,296,0,485,342,341,589,589,589,42,447,426,444,0,499,477,495,590,590,590,42,447,444,445,0,499,495,496,591,591,591,42,450,449,448,0,502,501,500,592,592,592,42,450,448,451,0,502,500,503,593,593,593,42,452,448,449,0,504,500,501,594,594,594,42,452,449,453,0,504,501,505,595,595,595,42,455,454,451,0,507,506,503,596,596,596,42,455,451,448,0,507,503,500,597,597,597,42,456,294,298,0,508,339,343,598,598,598,42,456,298,457,0,508,343,509,599,599,599,42,460,459,458,0,512,511,510,600,600,600,42,460,458,301,0,512,510,346,601,601,601,42,462,461,452,0,514,513,504,602,602,602,42,462,452,279,0,514,504,324,603,603,603,42,465,464,463,0,517,516,515,604,604,604,42,465,463,466,0,517,515,518,605,605,605,42,467,280,281,0,521,520,519,606,606,606,42,467,281,468,0,521,519,522,607,607,607,42,471,470,469,0,525,524,523,608,608,608,42,471,469,472,0,525,523,526,609,609,609,42,468,469,470,0,522,523,524,610,610,610,42,468,470,467,0,522,524,521,611,611,611,42,346,345,367,0,395,394,418,612,612,612,42,346,367,351,0,395,418,400,613,613,613,42,423,402,403,0,474,453,454,614,614,614,42,423,403,305,0,474,454,350,615,615,615,42,357,314,328,0,412,359,373,616,616,616,42,357,328,335,0,412,373,382,617,617,617,42,370,369,380,0,421,420,431,618,618,618,42,370,380,381,0,421,431,432,619,619,619,42,421,419,440,0,472,470,491,620,620,620,42,421,440,438,0,472,491,489,621,621,621,42,316,317,421,0,361,362,472,622,622,622,42,316,421,441,0,361,472,492,623,623,623,42,427,416,333,0,478,467,378,624,624,624,42,427,333,339,0,478,378,387,625,625,625,42,392,400,424,0,443,451,475,626,626,626,42,392,424,434,0,443,475,485,627,627,627,42,453,278,279,0,505,323,324,628,628,628,42,453,279,452,0,505,324,504,629,629,629,42,475,474,473,0,529,528,527,630,630,630,42,475,473,476,0,529,527,530,631,631,631,42,477,475,476,0,531,529,530,632,632,632,42,477,476,478,0,531,530,532,633,633,633,42,479,477,478,0,533,531,532,634,634,634,42,479,478,480,0,533,532,534,635,635,635,42,480,482,481,0,537,536,535,636,636,636,42,480,481,479,0,537,535,538,637,637,637,42,454,484,483,0,506,540,539,638,638,638,42,454,483,451,0,506,539,503,639,639,639,42,457,298,485,0,509,343,541,640,640,640,42,457,485,486,0,509,541,542,641,641,641,42,486,485,447,0,542,541,499,642,642,642,42,486,447,487,0,542,499,543,643,643,643,42,446,489,488,0,497,545,544,644,644,644,42,446,488,445,0,497,544,496,645,645,645,42,291,295,292,0,336,340,337,646,646,646,42,291,292,290,0,336,337,335,647,647,647,42,297,299,295,0,342,344,340,648,648,648,42,297,295,291,0,342,340,336,649,649,649,42,306,290,292,0,351,335,337,650,650,650,42,306,292,300,0,351,337,345,651,651,651,42,301,458,308,0,346,510,353,652,652,652,42,301,308,300,0,346,353,345,653,653,653,42,458,482,310,0,510,536,355,654,654,654,42,458,310,308,0,510,355,353,655,655,655,42,312,310,482,0,357,355,536,656,656,656,42,312,482,480,0,357,536,537,657,657,657,42,318,315,478,0,363,360,532,658,658,658,42,318,478,476,0,363,532,530,659,659,659,42,422,318,476,0,473,363,530,660,660,660,42,422,476,473,0,473,530,527,661,661,661,42,485,425,426,0,541,476,477,662,662,662,42,485,426,447,0,541,477,499,663,663,663,42,298,299,425,0,343,344,476,664,664,664,42,298,425,485,0,343,476,541,665,665,665,42,422,443,390,0,473,494,441,666,666,666,42,422,390,420,0,473,441,471,667,667,667,42,389,444,426,0,440,495,477,668,668,668,42,389,426,400,0,440,477,451,669,669,669,42,393,396,490,0,444,447,546,670,670,670,42,393,490,491,0,444,546,547,671,671,671,42,490,493,492,0,546,549,548,672,672,672,42,490,492,491,0,546,548,547,673,673,673,42,492,284,285,0,548,329,330,674,674,674,42,492,285,491,0,548,330,547,675,675,675,42,397,401,490,0,448,452,546,676,676,676,42,397,490,396,0,448,546,447,677,677,677,42,401,373,493,0,452,424,549,678,678,678,42,401,493,490,0,452,549,546,679,679,679,42,320,284,492,0,365,329,548,680,680,680,42,320,492,319,0,365,548,364,681,681,681,42,373,368,349,0,424,419,398,682,682,682,42,373,349,493,0,424,398,549,683,683,683,42,286,393,491,0,331,444,547,684,684,684,42,286,491,285,0,331,547,330,685,685,685,42,386,419,420,0,437,470,471,686,686,686,42,386,420,390,0,437,471,441,687,687,687,42,394,399,396,0,445,450,447,688,688,688,42,394,396,393,0,445,447,444,689,689,689,42,473,446,443,0,527,497,494,690,690,690,42,473,443,422,0,527,494,473,691,691,691,42,444,389,390,0,495,440,441,692,692,692,42,444,390,443,0,495,441,494,693,693,693,42,319,492,493,0,364,548,549,694,694,694,42,319,493,349,0,364,549,398,695,695,695,42,437,433,432,0,488,484,483,696,696,696,42,437,432,494,0,488,483,550,697,697,697,42,495,287,282,0,551,332,327,698,698,698,42,495,282,313,0,551,327,358,699,699,699,42,419,386,387,0,470,437,438,700,700,700,42,419,387,440,0,470,438,491,701,701,701,42,312,315,316,0,552,360,361,702,702,702,42,312,316,311,0,552,361,553,703,703,703,42,407,441,442,0,554,492,493,704,704,704,42,407,442,406,0,554,493,555,705,705,705,42,311,316,441,0,553,361,492,706,706,706,42,311,441,407,0,553,492,554,707,707,707,42,480,478,315,0,534,532,360,708,708,708,42,480,315,312,0,534,360,552,709,709,709,42,496,450,451,0,556,502,503,710,710,710,42,496,451,483,0,556,503,539,711,711,711,42,498,497,496,0,558,557,556,712,712,712,42,498,496,483,0,558,556,539,713,713,713,42,500,499,497,0,560,559,557,714,714,714,42,500,497,498,0,560,557,558,715,715,715,42,502,501,499,0,562,561,559,716,716,716,42,502,499,500,0,562,559,560,717,717,717,42,465,466,501,0,517,518,561,718,718,718,42,465,501,502,0,517,561,562,719,719,719,42,503,465,502,0,563,517,562,720,720,720,42,503,502,504,0,563,562,564,721,721,721,42,474,489,446,0,528,545,497,722,722,722,42,474,446,473,0,528,497,527,723,723,723,42,472,463,464,0,526,515,516,724,724,724,42,472,464,471,0,526,516,525,725,725,725,42,454,455,460,0,506,507,512,726,726,726,42,454,460,505,0,506,512,565,727,727,727,42,506,498,483,0,566,558,539,728,728,728,42,506,483,484,0,566,539,540,729,729,729,42,461,455,448,0,513,507,500,730,730,730,42,461,448,452,0,513,500,504,731,731,731,42,461,462,481,0,513,514,535,732,732,732,42,461,481,459,0,513,535,511,733,733,733,42,508,507,470,0,568,567,524,734,734,734,42,508,470,471,0,568,524,525,735,735,735,42,507,509,467,0,567,569,521,736,736,736,42,507,467,470,0,567,521,524,737,737,737,42,509,510,280,0,569,570,520,738,738,738,42,509,280,467,0,569,520,521,739,739,739,42,510,462,279,0,571,514,324,740,740,740,42,510,279,280,0,571,324,325,741,741,741,42,484,454,505,0,540,506,565,742,742,742,42,484,505,456,0,540,565,508,743,743,743,42,498,506,511,0,558,566,572,744,744,744,42,498,511,500,0,558,572,560,745,745,745,42,500,511,504,0,560,572,564,746,746,746,42,500,504,502,0,560,564,562,747,747,747,42,503,512,464,0,563,573,516,748,748,748,42,503,464,465,0,563,516,517,749,749,749,42,488,503,504,0,544,563,564,750,750,750,42,488,504,487,0,544,564,543,751,751,751,42,512,508,471,0,573,568,525,752,752,752,42,512,471,464,0,573,525,516,753,753,753,42,513,410,361,0,574,461,410,754,754,754,42,513,361,359,0,574,410,408,755,755,755,42,394,395,440,0,445,446,491,756,756,756,42,394,440,387,0,445,491,438,757,757,757,42,391,398,399,0,442,449,450,758,758,758,42,391,399,388,0,442,450,439,759,759,759,42,514,361,410,0,575,410,461,760,760,760,42,514,410,411,0,575,461,462,761,761,761,42,377,436,437,0,428,487,488,762,762,762,42,377,437,376,0,428,488,427,763,763,763,42,439,395,286,0,490,446,331,764,764,764,42,439,286,287,0,490,331,332,765,765,765,42,515,439,287,0,576,490,332,766,766,766,42,515,287,495,0,576,332,551,767,767,767,42,435,436,398,0,486,487,449,768,768,768,42,435,398,391,0,486,449,442,769,769,769,42,399,394,387,0,450,445,438,770,770,770,42,399,387,388,0,450,438,439,771,771,771,42,379,494,513,0,430,550,574,772,772,772,42,379,513,359,0,430,574,408,773,773,773,42,376,437,494,0,427,488,550,774,774,774,42,376,494,379,0,427,550,430,775,775,775,42,457,506,484,0,509,566,540,776,776,776,42,457,484,456,0,509,540,508,777,777,777,42,459,460,455,0,511,512,507,778,778,778,42,459,455,461,0,511,507,513,779,779,779,42,474,475,507,0,528,529,567,780,780,780,42,474,507,508,0,528,567,568,781,781,781,42,475,477,509,0,529,531,569,782,782,782,42,475,509,507,0,529,569,567,783,783,783,42,477,479,510,0,531,533,570,784,784,784,42,477,510,509,0,531,570,569,785,785,785,42,479,481,462,0,538,535,514,786,786,786,42,479,462,510,0,538,514,571,787,787,787,42,506,457,486,0,566,509,542,788,788,788,42,506,486,511,0,566,542,572,789,789,789,42,511,486,487,0,572,542,543,790,790,790,42,511,487,504,0,572,543,564,791,791,791,42,489,512,503,0,545,573,563,792,792,792,42,489,503,488,0,545,563,544,793,793,793,42,489,474,508,0,545,528,568,794,794,794,42,489,508,512,0,545,568,573,795,795,795,42,505,460,301,0,565,512,346,796,796,796,42,505,301,293,0,565,346,338,797,797,797,42,459,481,482,0,511,535,536,798,798,798,42,459,482,458,0,511,536,510,799,799,799,42,456,505,293,0,508,565,338,800,800,800,42,456,293,294,0,508,338,339,801,801,801,42,445,488,487,0,496,544,543,802,802,802,42,445,487,447,0,496,543,499,803,803,803,42,439,515,442,0,490,576,493,804,804,804,42,439,442,438,0,490,493,489,805,805,805,42,515,411,406,0,576,577,555,806,806,806,42,515,406,442,0,576,555,493,807,807,807,42,495,514,411,0,551,578,577,808,808,808,42,495,411,515,0,551,577,576,809,809,809,42,313,358,514,0,358,411,578,810,810,810,42,313,514,495,0,358,578,551,811,811,811,42,358,355,361,0,407,404,410,812,812,812,42,358,361,514,0,407,410,575,813,813,813,42,404,406,411,0,455,457,462,814,814,814,42,404,411,408,0,455,462,459,815,815,815,42,408,409,403,0,459,460,454,816,816,816,42,408,403,404,0,459,454,455,817,817,817,42,409,304,305,0,460,349,350,818,818,818,42,409,305,403,0,460,350,454,819,819,819,42,304,409,410,0,349,460,461,820,820,820,42,304,410,513,0,349,461,574,821,821,821,42,303,304,513,0,348,349,574,822,822,822,42,303,513,494,0,348,574,550,823,823,823,42,302,303,494,0,347,348,550,824,824,824,42,302,494,432,0,347,550,483,825,825,825,42,518,517,516,0,581,580,579,826,826,826,42,518,516,519,0,581,579,582,827,827,827,42,518,519,520,0,581,582,583,828,828,828,42,518,520,521,0,581,583,584,829,829,829,42,522,516,517,0,585,579,580,830,830,830,42,522,517,523,0,585,580,586,831,831,831,42,429,520,519,0,480,583,582,832,832,832,42,429,519,428,0,480,582,479,833,833,833,42,431,428,519,0,482,479,582,834,834,834,42,431,519,516,0,482,582,579,835,835,835,42,524,344,342,0,587,393,391,836,836,836,42,524,342,525,0,587,391,588,837,837,837,42,343,526,525,0,392,589,588,838,838,838,42,343,525,342,0,392,588,391,839,839,839,42,529,528,527,0,592,591,590,840,840,840,42,529,527,530,0,592,590,593,841,841,841,42,532,531,524,0,595,594,587,842,842,842,42,532,524,530,0,595,587,593,843,843,843,42,354,533,526,0,403,596,589,844,844,844,42,354,526,343,0,403,589,392,845,845,845,42,535,533,534,0,598,596,597,846,846,846,42,535,534,536,0,598,597,599,847,847,847,42,533,354,352,0,596,403,401,848,848,848,42,533,352,534,0,596,401,597,849,849,849,42,539,538,537,0,602,601,600,850,850,850,42,539,537,536,0,602,600,599,851,851,851,42,534,352,353,0,597,401,402,852,852,852,42,534,353,540,0,597,402,603,853,853,853,42,541,414,415,0,604,465,466,854,854,854,42,541,415,522,0,604,466,585,855,855,855,42,544,543,542,0,607,606,605,856,856,856,42,544,542,523,0,607,605,586,857,857,857,42,543,538,539,0,606,601,602,858,858,858,42,543,539,542,0,606,602,605,859,859,859,42,418,531,520,0,498,608,583,860,860,860,42,418,520,429,0,498,583,480,861,861,861,42,532,546,545,0,611,610,609,862,862,862,42,532,545,521,0,611,609,584,863,863,863,42,344,524,531,0,393,587,594,864,864,864,42,344,531,418,0,393,594,469,865,865,865,42,540,353,414,0,603,402,465,866,866,866,42,540,414,541,0,603,465,604,867,867,867,42,522,415,431,0,585,466,482,868,868,868,42,522,431,516,0,585,482,579,869,869,869,42,529,525,526,0,592,588,589,870,870,870,42,529,526,547,0,592,589,612,871,871,871,42,547,526,533,0,612,589,596,872,872,872,42,547,533,535,0,612,596,598,873,873,873,42,517,518,548,0,580,581,613,874,874,874,42,517,548,549,0,580,613,614,875,875,875,42,548,518,521,0,613,581,584,876,876,876,42,548,521,545,0,613,584,609,877,877,877,42,523,517,549,0,586,580,614,878,878,878,42,523,549,544,0,586,614,607,879,879,879,42,525,529,530,0,588,592,593,880,880,880,42,525,530,524,0,588,593,587,881,881,881,42,546,532,530,0,615,595,593,882,882,882,42,546,530,527,0,615,593,590,883,883,883,42,550,535,536,0,616,598,599,884,884,884,42,550,536,537,0,616,599,600,885,885,885,42,540,539,536,0,603,602,599,886,886,886,42,540,536,534,0,603,599,597,887,887,887,42,542,541,522,0,605,604,585,888,888,888,42,542,522,523,0,605,585,586,889,889,889,42,539,540,541,0,602,603,604,890,890,890,42,539,541,542,0,602,604,605,891,891,891,42,531,532,521,0,608,611,584,892,892,892,42,531,521,520,0,608,584,583,893,893,893,42,528,529,547,0,591,592,612,894,894,894,42,528,547,551,0,591,612,617,895,895,895,42,551,547,535,0,617,612,598,896,896,896,42,551,535,550,0,617,598,616,897,897,897,42,554,553,552,0,620,619,618,898,898,898,42,554,552,555,0,620,618,621,899,899,899,42,556,554,555,0,622,620,621,900,900,900,42,556,555,557,0,622,621,623,901,901,901,42,555,552,558,0,621,618,624,902,902,902,42,555,558,559,0,621,624,625,903,903,903,42,557,555,559,0,623,621,625,904,904,904,42,557,559,560,0,623,625,626,905,905,905,42,562,561,559,0,629,628,627,906,906,906,42,562,559,558,0,629,627,630,907,907,907,42,564,563,561,0,632,631,628,908,908,908,42,564,561,562,0,632,628,629,909,909,909,42,563,564,565,0,631,632,633,910,910,910,42,563,565,566,0,631,633,634,911,911,911,42,566,568,567,0,634,636,635,912,912,912,42,566,567,563,0,634,635,631,913,913,913,42,566,565,569,0,634,633,637,914,914,914,42,566,569,570,0,634,637,638,915,915,915,42,572,571,570,0,640,639,638,916,916,916,42,572,570,569,0,640,638,637,917,917,917,42,570,573,568,0,638,641,636,918,918,918,42,570,568,566,0,638,636,634,919,919,919,42,573,570,571,0,641,638,639,920,920,920,42,573,571,574,0,641,639,642,921,921,921,42,571,572,575,0,639,640,643,922,922,922,42,571,575,576,0,639,643,644,923,923,923,42,574,571,576,0,642,639,644,924,924,924,42,574,576,577,0,642,644,645,925,925,925,42,580,579,578,0,648,647,646,926,926,926,42,580,578,581,0,648,646,649,927,927,927,42,582,580,581,0,650,648,649,928,928,928,42,582,581,583,0,650,649,651,929,929,929,42,581,578,584,0,654,653,652,930,930,930,42,581,584,585,0,654,652,655,931,931,931,42,583,581,585,0,656,654,655,932,932,932,42,583,585,586,0,656,655,657,933,933,933,42,579,557,560,0,647,623,626,934,934,934,42,579,560,578,0,647,626,646,935,935,935,42,578,560,587,0,653,659,658,936,936,936,42,578,587,584,0,653,658,652,937,937,937,42,589,588,586,0,661,660,657,938,938,938,42,589,586,590,0,661,657,662,939,939,939,42,590,567,568,0,662,635,636,940,940,940,42,590,568,589,0,662,636,661,941,941,941,42,585,584,590,0,655,652,662,942,942,942,42,585,590,586,0,655,662,657,943,943,943,42,567,590,584,0,635,662,652,944,944,944,42,567,584,587,0,635,652,658,945,945,945,42,589,568,573,0,661,636,641,946,946,946,42,589,573,591,0,661,641,663,947,947,947,42,588,589,591,0,660,661,663,948,948,948,42,588,591,592,0,660,663,664,949,949,949,42,591,594,593,0,663,666,665,950,950,950,42,591,593,592,0,663,665,664,951,951,951,42,574,594,591,0,642,666,663,952,952,952,42,574,591,573,0,642,663,641,953,953,953,42,594,596,595,0,666,668,667,954,954,954,42,594,595,593,0,666,667,665,955,955,955,42,596,594,574,0,668,666,642,956,956,956,42,596,574,577,0,668,642,645,957,957,957,42,596,598,597,0,668,670,669,958,958,958,42,596,597,595,0,668,669,667,959,959,959,42,577,599,598,0,645,671,670,960,960,960,42,577,598,596,0,645,670,668,961,961,961,42,600,598,599,0,674,673,672,962,962,962,42,600,599,601,0,674,672,675,963,963,963,42,597,602,593,0,669,676,665,964,964,964,42,597,593,595,0,669,665,667,965,965,965,42,604,603,576,0,678,677,644,966,966,966,42,604,576,575,0,678,644,643,967,967,967,42,577,576,603,0,645,644,677,968,968,968,42,577,603,599,0,645,677,671,969,969,969,42,603,604,605,0,681,680,679,970,970,970,42,603,605,606,0,681,679,682,971,971,971,42,601,599,603,0,675,672,681,972,972,972,42,601,603,606,0,675,681,682,973,973,973,42,560,559,561,0,659,627,628,974,974,974,42,560,561,587,0,659,628,658,975,975,975,42,586,588,607,0,657,660,683,976,976,976,42,586,607,583,0,657,683,656,977,977,977,42,608,582,583,0,684,650,651,978,978,978,42,608,583,607,0,684,651,685,979,979,979,42,609,607,588,0,686,683,660,980,980,980,42,609,588,592,0,686,660,664,981,981,981,42,602,609,592,0,676,686,664,982,982,982,42,602,592,593,0,676,664,665,983,983,983,42,611,610,600,0,688,687,674,984,984,984,42,611,600,601,0,688,674,675,985,985,985,42,613,612,579,0,690,689,647,986,986,986,42,613,579,580,0,690,647,648,987,987,987,42,612,556,557,0,689,622,623,988,988,988,42,612,557,579,0,689,623,647,989,989,989,42,614,613,580,0,691,690,648,990,990,990,42,614,580,582,0,691,648,650,991,991,991,42,615,614,582,0,692,691,650,992,992,992,42,615,582,608,0,692,650,684,993,993,993,42,608,617,616,0,684,694,693,994,994,994,42,608,616,615,0,684,693,692,995,995,995,42,620,619,618,0,697,696,695,996,996,996,42,620,618,621,0,697,695,698,997,997,997,42,623,622,621,0,700,699,698,998,998,998,42,623,621,618,0,700,698,695,999,999,999,42,625,624,605,0,702,701,679,1000,1000,1000,42,625,605,626,0,702,679,703,1001,1001,1001,42,629,628,627,0,706,705,704,1002,1002,1002,42,629,627,630,0,706,704,707,1003,1003,1003,42,633,632,631,0,710,709,708,1004,1004,1004,42,633,631,634,0,710,708,711,1005,1005,1005,42,634,635,633,0,711,712,710,1006,1006,1006,42,637,636,622,0,714,713,699,1007,1007,1007,42,637,622,623,0,714,699,700,1008,1008,1008,42,619,620,638,0,696,697,715,1009,1009,1009,42,619,638,639,0,696,715,716,1010,1010,1010,42,641,638,640,0,718,715,717,1011,1011,1011,42,641,640,642,0,718,717,719,1012,1012,1012,42,641,644,643,0,718,721,720,1013,1013,1013,42,641,643,645,0,718,720,722,1014,1014,1014,42,648,647,646,0,725,724,723,1015,1015,1015,42,648,646,649,0,725,723,726,1016,1016,1016,42,649,631,632,0,726,708,709,1017,1017,1017,42,649,632,648,0,726,709,725,1018,1018,1018,42,606,605,624,0,682,679,701,1019,1019,1019,42,606,624,650,0,682,701,727,1020,1020,1020,42,650,611,601,0,727,688,675,1021,1021,1021,42,650,601,606,0,727,675,682,1022,1022,1022,42,587,561,563,0,658,628,631,1023,1023,1023,42,587,563,567,0,658,631,635,1024,1024,1024,42,617,608,607,0,694,684,685,1025,1025,1025,42,617,607,609,0,694,685,728,1026,1026,1026,42,651,617,609,0,731,730,729,1027,1027,1027,42,651,609,602,0,731,729,732,1028,1028,1028,42,652,651,602,0,733,731,732,1029,1029,1029,42,652,602,597,0,733,732,734,1030,1030,1030,42,647,627,628,0,724,704,705,1031,1031,1031,42,647,628,646,0,724,705,723,1032,1032,1032,42,572,654,653,0,640,736,735,1033,1033,1033,42,572,653,575,0,640,735,643,1034,1034,1034,42,654,572,569,0,736,640,637,1035,1035,1035,42,654,569,655,0,736,637,737,1036,1036,1036,42,656,604,575,0,738,678,643,1037,1037,1037,42,656,575,653,0,738,643,735,1038,1038,1038,42,622,658,657,0,699,740,739,1039,1039,1039,42,622,657,621,0,699,739,698,1040,1040,1040,42,620,621,657,0,697,698,739,1041,1041,1041,42,620,657,659,0,697,739,741,1042,1042,1042,42,661,660,634,0,743,742,711,1043,1043,1043,42,661,634,631,0,743,711,708,1044,1044,1044,42,662,658,622,0,744,740,699,1045,1045,1045,42,662,622,636,0,744,699,713,1046,1046,1046,42,659,640,638,0,741,717,715,1047,1047,1047,42,659,638,620,0,741,715,697,1048,1048,1048,42,640,659,449,0,746,745,501,1049,1049,1049,42,640,449,450,0,746,501,502,1050,1050,1050,42,659,657,453,0,745,747,505,1051,1051,1051,42,659,453,449,0,745,505,501,1052,1052,1052,42,665,664,663,0,750,749,748,1053,1053,1053,42,665,663,666,0,750,748,751,1054,1054,1054,42,661,667,472,0,753,752,526,1055,1055,1055,42,661,472,469,0,753,526,523,1056,1056,1056,42,649,646,668,0,726,723,754,1057,1057,1057,42,649,668,667,0,726,754,755,1058,1058,1058,42,629,626,656,0,706,703,756,1059,1059,1059,42,629,656,669,0,706,756,757,1060,1060,1060,42,669,656,653,0,758,738,735,1061,1061,1061,42,669,653,670,0,758,735,759,1062,1062,1062,42,671,654,655,0,760,736,737,1063,1063,1063,42,671,655,672,0,760,737,761,1064,1064,1064,42,665,497,499,0,750,557,559,1065,1065,1065,42,665,499,672,0,750,559,761,1066,1066,1066,42,278,453,657,0,323,505,747,1067,1067,1067,42,278,657,658,0,323,747,762,1068,1068,1068,42,281,278,658,0,326,323,762,1069,1069,1069,42,281,658,662,0,326,762,763,1070,1070,1070,42,660,661,469,0,764,753,523,1071,1071,1071,42,660,469,468,0,764,523,522,1072,1072,1072,42,631,649,667,0,708,726,755,1073,1073,1073,42,631,667,661,0,708,755,743,1074,1074,1074,42,604,656,626,0,680,756,703,1075,1075,1075,42,604,626,605,0,680,703,679,1076,1076,1076,42,673,450,496,0,765,502,556,1077,1077,1077,42,673,496,666,0,765,556,751,1078,1078,1078,42,562,674,663,0,629,766,748,1079,1079,1079,42,562,663,564,0,629,748,632,1080,1080,1080,42,667,668,463,0,752,767,515,1081,1081,1081,42,667,463,472,0,752,515,526,1082,1082,1082,42,628,675,668,0,705,768,754,1083,1083,1083,42,628,668,646,0,705,754,723,1084,1084,1084,42,652,597,598,0,733,734,673,1085,1085,1085,42,652,598,600,0,733,673,674,1086,1086,1086,42,636,634,660,0,713,711,742,1087,1087,1087,42,636,660,662,0,713,742,744,1088,1088,1088,42,662,660,468,0,769,764,522,1089,1089,1089,42,662,468,281,0,769,522,519,1090,1090,1090,42,674,562,558,0,766,629,630,1091,1091,1091,42,674,558,676,0,766,630,770,1092,1092,1092,42,552,644,676,0,618,721,771,1093,1093,1093,42,552,676,558,0,618,771,624,1094,1094,1094,42,644,552,553,0,721,618,619,1095,1095,1095,42,644,553,643,0,721,619,720,1096,1096,1096,42,565,664,655,0,633,749,737,1097,1097,1097,42,565,655,569,0,633,737,637,1098,1098,1098,42,564,663,664,0,632,748,749,1099,1099,1099,42,564,664,565,0,632,749,633,1100,1100,1100,42,673,674,676,0,765,766,770,1101,1101,1101,42,673,676,642,0,765,770,772,1102,1102,1102,42,463,668,675,0,515,767,773,1103,1103,1103,42,463,675,466,0,515,773,518,1104,1104,1104,42,670,653,654,0,759,735,736,1105,1105,1105,42,670,654,671,0,759,736,760,1106,1106,1106,42,679,678,677,0,776,775,774,1107,1107,1107,42,679,677,680,0,776,774,777,1108,1108,1108,42,683,682,681,0,239,779,778,1109,1109,1109,42,683,681,4191,0,239,778,238,1110,1110,1110,42,611,650,684,0,688,727,780,1111,1111,1111,42,611,684,685,0,688,780,781,1112,1112,1112,42,624,686,684,0,701,782,780,1113,1113,1113,42,624,684,650,0,701,780,727,1114,1114,1114,42,684,686,687,0,780,782,783,1115,1115,1115,42,684,687,688,0,780,783,784,1116,1116,1116,42,625,689,686,0,702,785,782,1117,1117,1117,42,625,686,624,0,702,782,701,1118,1118,1118,42,687,686,689,0,783,782,785,1119,1119,1119,42,687,689,690,0,783,785,786,1120,1120,1120,42,692,691,627,0,788,787,704,1121,1121,1121,42,692,627,647,0,788,704,724,1122,1122,1122,42,648,632,693,0,725,709,789,1123,1123,1123,42,648,693,694,0,725,789,790,1124,1124,1124,42,647,648,694,0,724,725,790,1125,1125,1125,42,647,694,692,0,724,790,788,1126,1126,1126,42,697,696,695,0,793,792,791,1127,1127,1127,42,697,695,698,0,793,791,794,1128,1128,1128,42,701,700,699,0,797,796,795,1129,1129,1129,42,701,699,702,0,797,795,798,1130,1130,1130,42,704,703,700,0,800,799,796,1131,1131,1131,42,704,700,701,0,800,796,797,1132,1132,1132,42,707,706,705,0,803,802,801,1133,1133,1133,42,707,705,708,0,803,801,804,1134,1134,1134,42,711,710,709,0,807,806,805,1135,1135,1135,42,711,709,712,0,807,805,808,1136,1136,1136,42,703,704,707,0,799,800,803,1137,1137,1137,42,703,707,708,0,799,803,804,1138,1138,1138,42,715,714,713,0,811,810,809,1139,1139,1139,42,715,713,716,0,811,809,812,1140,1140,1140,42,714,718,717,0,810,814,813,1141,1141,1141,42,714,717,713,0,810,813,809,1142,1142,1142,42,721,720,719,0,817,816,815,1143,1143,1143,42,721,719,722,0,817,815,818,1144,1144,1144,42,720,724,723,0,816,820,819,1145,1145,1145,42,720,723,719,0,816,819,815,1146,1146,1146,42,722,701,702,0,818,797,798,1147,1147,1147,42,722,702,721,0,818,798,817,1148,1148,1148,42,727,726,725,0,823,822,821,1149,1149,1149,42,727,725,728,0,823,821,824,1150,1150,1150,42,722,719,729,0,818,815,825,1151,1151,1151,42,722,729,730,0,818,825,826,1152,1152,1152,42,719,723,731,0,815,819,827,1153,1153,1153,42,719,731,729,0,815,827,825,1154,1154,1154,42,733,732,730,0,829,828,826,1155,1155,1155,42,733,730,729,0,829,826,825,1156,1156,1156,42,730,704,701,0,826,800,797,1157,1157,1157,42,730,701,722,0,826,797,818,1158,1158,1158,42,732,707,704,0,828,803,800,1159,1159,1159,42,732,704,730,0,828,800,826,1160,1160,1160,42,735,734,733,0,831,830,829,1161,1161,1161,42,735,733,736,0,831,829,832,1162,1162,1162,42,734,737,732,0,830,833,828,1163,1163,1163,42,734,732,733,0,830,828,829,1164,1164,1164,42,740,739,738,0,836,835,834,1165,1165,1165,42,740,738,682,0,836,834,779,1166,1166,1166,42,743,742,741,0,839,838,837,1167,1167,1167,42,743,741,744,0,839,837,840,1168,1168,1168,42,744,741,745,0,840,837,841,1169,1169,1169,42,744,745,746,0,840,841,842,1170,1170,1170,42,747,745,741,0,843,841,837,1171,1171,1171,42,747,741,748,0,843,837,844,1172,1172,1172,42,742,749,748,0,838,845,844,1173,1173,1173,42,742,748,741,0,838,844,837,1174,1174,1174,42,752,751,750,0,848,847,846,1175,1175,1175,42,752,750,753,0,848,846,849,1176,1176,1176,42,754,750,751,0,850,846,847,1177,1177,1177,42,754,751,755,0,850,847,851,1178,1178,1178,42,758,757,756,0,854,853,852,1179,1179,1179,42,758,756,759,0,854,852,855,1180,1180,1180,42,760,757,758,0,856,853,854,1181,1181,1181,42,760,758,761,0,856,854,857,1182,1182,1182,42,756,757,762,0,852,853,858,1183,1183,1183,42,756,762,763,0,852,858,859,1184,1184,1184,42,757,760,764,0,853,856,860,1185,1185,1185,42,757,764,762,0,853,860,858,1186,1186,1186,42,610,611,685,0,687,688,781,1187,1187,1187,42,610,685,765,0,687,781,861,1188,1188,1188,42,767,766,765,0,863,862,861,1189,1189,1189,42,767,765,685,0,863,861,781,1190,1190,1190,42,769,768,766,0,865,864,862,1191,1191,1191,42,769,766,767,0,865,862,863,1192,1192,1192,42,771,770,688,0,867,866,784,1193,1193,1193,42,771,688,687,0,867,784,783,1194,1194,1194,42,771,687,690,0,867,783,786,1195,1195,1195,42,771,690,772,0,867,786,868,1196,1196,1196,42,632,633,773,0,709,710,869,1197,1197,1197,42,632,773,693,0,709,869,789,1198,1198,1198,42,775,774,635,0,871,870,712,1199,1199,1199,42,775,635,637,0,871,712,714,1200,1200,1200,42,774,773,633,0,870,869,710,1201,1201,1201,42,774,633,635,0,870,710,712,1202,1202,1202,42,777,776,773,0,873,872,869,1203,1203,1203,42,777,773,774,0,873,869,870,1204,1204,1204,42,779,775,778,0,875,871,874,1205,1205,1205,42,779,778,780,0,875,874,876,1206,1206,1206,42,618,781,778,0,695,877,874,1207,1207,1207,42,618,778,623,0,695,874,700,1208,1208,1208,42,780,778,781,0,876,874,877,1209,1209,1209,42,780,781,782,0,876,877,878,1210,1210,1210,42,785,784,783,0,881,880,879,1211,1211,1211,42,785,783,786,0,881,879,882,1212,1212,1212,42,729,731,736,0,825,827,832,1213,1213,1213,42,729,736,733,0,825,832,829,1214,1214,1214,42,713,717,612,0,809,813,689,1215,1215,1215,42,713,612,613,0,809,689,690,1216,1216,1216,42,788,787,782,0,884,883,878,1217,1217,1217,42,788,782,781,0,884,878,877,1218,1218,1218,42,791,790,789,0,887,886,885,1219,1219,1219,42,791,789,792,0,887,885,888,1220,1220,1220,42,793,787,788,0,889,883,884,1221,1221,1221,42,793,788,794,0,889,884,890,1222,1222,1222,42,797,796,795,0,893,892,891,1223,1223,1223,42,797,795,798,0,893,891,894,1224,1224,1224,42,796,800,799,0,892,896,895,1225,1225,1225,42,796,799,795,0,892,895,891,1226,1226,1226,42,796,802,801,0,892,898,897,1227,1227,1227,42,796,801,800,0,892,897,896,1228,1228,1228,42,796,797,803,0,892,893,899,1229,1229,1229,42,796,803,802,0,892,899,898,1230,1230,1230,42,806,805,804,0,902,901,900,1231,1231,1231,42,806,804,807,0,902,900,903,1232,1232,1232,42,806,809,808,0,902,905,904,1233,1233,1233,42,806,808,810,0,902,904,906,1234,1234,1234,42,807,804,811,0,903,900,907,1235,1235,1235,42,807,811,812,0,903,907,908,1236,1236,1236,42,813,801,802,0,909,897,898,1237,1237,1237,42,813,802,814,0,909,898,910,1238,1238,1238,42,815,800,801,0,911,896,897,1239,1239,1239,42,815,801,816,0,911,897,912,1240,1240,1240,42,817,808,809,0,913,904,905,1241,1241,1241,42,817,809,816,0,913,905,912,1242,1242,1242,42,819,818,795,0,915,914,891,1243,1243,1243,42,819,795,799,0,915,891,895,1244,1244,1244,42,820,799,800,0,916,895,896,1245,1245,1245,42,820,800,815,0,916,896,911,1246,1246,1246,42,821,819,799,0,917,915,895,1247,1247,1247,42,821,799,820,0,917,895,916,1248,1248,1248,42,823,822,818,0,919,918,914,1249,1249,1249,42,823,818,819,0,919,914,915,1250,1250,1250,42,824,823,819,0,920,919,915,1251,1251,1251,42,824,819,821,0,920,915,917,1252,1252,1252,42,825,818,822,0,921,914,918,1253,1253,1253,42,825,822,826,0,921,918,922,1254,1254,1254,42,825,764,760,0,921,860,856,1255,1255,1255,42,825,760,798,0,921,856,894,1256,1256,1256,42,826,822,678,0,922,918,775,1257,1257,1257,42,826,678,679,0,922,775,776,1258,1258,1258,42,678,828,827,0,775,924,923,1259,1259,1259,42,678,827,677,0,775,923,774,1260,1260,1260,42,831,830,829,0,927,926,925,1261,1261,1261,42,831,829,832,0,927,925,928,1262,1262,1262,42,830,831,833,0,926,927,929,1263,1263,1263,42,830,833,834,0,926,929,930,1264,1264,1264,42,831,832,677,0,927,928,774,1265,1265,1265,42,831,677,827,0,927,774,923,1266,1266,1266,42,833,831,827,0,929,927,923,1267,1267,1267,42,833,827,835,0,929,923,931,1268,1268,1268,42,835,827,828,0,931,923,924,1269,1269,1269,42,835,828,836,0,931,924,932,1270,1270,1270,42,836,828,823,0,932,924,919,1271,1271,1271,42,836,823,824,0,932,919,920,1272,1272,1272,42,837,780,782,0,933,876,878,1273,1273,1273,42,837,782,790,0,933,878,886,1274,1274,1274,42,839,763,838,0,935,859,934,1275,1275,1275,42,839,838,840,0,935,934,936,1276,1276,1276,42,840,838,841,0,936,934,937,1277,1277,1277,42,840,841,842,0,936,937,938,1278,1278,1278,42,845,844,843,0,941,940,939,1279,1279,1279,42,845,843,846,0,941,939,942,1280,1280,1280,42,694,693,844,0,790,789,940,1281,1281,1281,42,694,844,845,0,790,940,941,1282,1282,1282,42,848,847,691,0,944,943,787,1283,1283,1283,42,848,691,692,0,944,787,788,1284,1284,1284,42,849,691,847,0,945,787,943,1285,1285,1285,42,849,847,850,0,945,943,946,1286,1286,1286,42,850,847,851,0,946,943,947,1287,1287,1287,42,850,851,852,0,946,947,948,1288,1288,1288,42,854,853,739,0,950,949,835,1289,1289,1289,42,854,739,740,0,950,835,836,1290,1290,1290,42,853,856,855,0,949,952,951,1291,1291,1291,42,853,855,739,0,949,951,835,1292,1292,1292,42,859,858,857,0,955,954,953,1293,1293,1293,42,859,857,860,0,955,953,956,1294,1294,1294,42,862,861,858,0,958,957,954,1295,1295,1295,42,862,858,859,0,958,954,955,1296,1296,1296,42,865,864,863,0,961,960,959,1297,1297,1297,42,865,863,866,0,961,959,962,1298,1298,1298,42,864,859,860,0,960,955,956,1299,1299,1299,42,864,860,863,0,960,956,959,1300,1300,1300,42,853,854,866,0,949,950,962,1301,1301,1301,42,853,866,863,0,949,962,959,1302,1302,1302,42,856,853,863,0,952,949,959,1303,1303,1303,42,856,863,860,0,952,959,956,1304,1304,1304,42,868,867,864,0,964,963,960,1305,1305,1305,42,868,864,865,0,964,960,961,1306,1306,1306,42,680,870,869,0,777,966,965,1307,1307,1307,42,680,869,679,0,777,965,776,1308,1308,1308,42,872,871,870,0,968,967,966,1309,1309,1309,42,872,870,680,0,968,966,777,1310,1310,1310,42,873,871,872,0,969,967,968,1311,1311,1311,42,873,872,874,0,969,968,970,1312,1312,1312,42,871,873,875,0,967,969,971,1313,1313,1313,42,871,875,876,0,967,971,972,1314,1314,1314,42,878,877,762,0,974,973,858,1315,1315,1315,42,878,762,764,0,974,858,860,1316,1316,1316,42,870,880,879,0,966,976,975,1317,1317,1317,42,870,879,869,0,966,975,965,1318,1318,1318,42,763,762,877,0,859,858,973,1319,1319,1319,42,763,877,838,0,859,973,934,1320,1320,1320,42,881,841,879,0,977,937,975,1321,1321,1321,42,881,879,880,0,977,975,976,1322,1322,1322,42,882,881,880,0,978,977,976,1323,1323,1323,42,882,880,876,0,978,976,972,1324,1324,1324,42,885,884,883,0,981,980,979,1325,1325,1325,42,885,883,886,0,981,979,982,1326,1326,1326,42,876,875,887,0,972,971,983,1327,1327,1327,42,876,887,882,0,972,983,978,1328,1328,1328,42,885,888,843,0,981,984,939,1329,1329,1329,42,885,843,844,0,981,939,940,1330,1330,1330,42,891,890,889,0,987,986,985,1331,1331,1331,42,891,889,892,0,987,985,988,1332,1332,1332,42,895,894,893,0,991,990,989,1333,1333,1333,42,895,893,892,0,991,989,988,1334,1334,1334,42,832,829,874,0,928,925,970,1335,1335,1335,42,832,874,872,0,928,970,968,1336,1336,1336,42,847,848,896,0,943,944,992,1337,1337,1337,42,847,896,851,0,943,992,947,1338,1338,1338,42,898,897,4406,0,995,994,993,1339,1339,1339,42,898,4406,4407,0,995,993,996,1340,1340,1340,42,900,899,897,0,998,997,994,1341,1341,1341,42,900,897,898,0,998,994,995,1342,1342,1342,42,901,830,834,0,999,926,930,1343,1343,1343,42,901,834,258,0,999,930,1000,1344,1344,1344,42,680,677,832,0,777,774,928,1345,1345,1345,42,680,832,872,0,777,928,968,1346,1346,1346,42,810,808,902,0,906,904,1001,1347,1347,1347,42,810,902,903,0,906,1001,1002,1348,1348,1348,42,813,905,904,0,909,1004,1003,1349,1349,1349,42,813,904,817,0,909,1003,913,1350,1350,1350,42,908,907,906,0,1007,1006,1005,1351,1351,1351,42,908,906,812,0,1007,1005,908,1352,1352,1352,42,900,909,894,0,998,1008,990,1353,1353,1353,42,900,894,895,0,998,990,991,1354,1354,1354,42,859,864,867,0,955,960,963,1355,1355,1355,42,859,867,862,0,955,963,958,1356,1356,1356,42,738,752,753,0,834,848,849,1357,1357,1357,42,738,753,784,0,834,849,880,1358,1358,1358,42,910,855,856,0,1009,951,952,1359,1359,1359,42,910,856,911,0,1009,952,1010,1360,1360,1360,42,860,857,911,0,956,953,1010,1361,1361,1361,42,860,911,856,0,956,1010,952,1362,1362,1362,42,767,688,770,0,863,784,866,1363,1363,1363,42,767,770,769,0,863,866,865,1364,1364,1364,42,685,684,688,0,781,780,784,1365,1365,1365,42,685,688,767,0,781,784,863,1366,1366,1366,42,870,871,876,0,966,967,972,1367,1367,1367,42,870,876,880,0,966,972,976,1368,1368,1368,42,693,773,776,0,789,869,872,1369,1369,1369,42,693,776,844,0,789,872,940,1370,1370,1370,42,908,912,890,0,1007,1011,986,1371,1371,1371,42,908,890,891,0,1007,986,987,1372,1372,1372,42,915,914,913,0,1014,1013,1012,1373,1373,1373,42,915,913,905,0,1014,1012,1004,1374,1374,1374,42,905,813,814,0,1004,909,910,1375,1375,1375,42,905,814,915,0,1004,910,1014,1376,1376,1376,42,916,913,914,0,1015,1012,1013,1377,1377,1377,42,916,914,917,0,1015,1013,1016,1378,1378,1378,42,918,916,917,0,1017,1015,1016,1379,1379,1379,42,918,917,919,0,1017,1016,1018,1380,1380,1380,42,920,918,235,0,1019,1017,240,1381,1381,1381,42,920,235,4430,0,1019,240,241,1382,1382,1382,42,706,707,732,0,802,803,828,1383,1383,1383,42,706,732,737,0,802,828,833,1384,1384,1384,42,710,711,921,0,806,807,1020,1385,1385,1385,42,710,921,922,0,806,1020,1021,1386,1386,1386,42,849,689,625,0,945,785,702,1387,1387,1387,42,849,625,630,0,945,702,707,1388,1388,1388,42,924,803,923,0,1023,899,1022,1389,1389,1389,42,924,923,925,0,1023,1022,1024,1390,1390,1390,42,845,848,692,0,941,944,788,1391,1391,1391,42,845,692,694,0,941,788,790,1392,1392,1392,42,846,896,848,0,942,992,944,1393,1393,1393,42,846,848,845,0,942,944,941,1394,1394,1394,42,928,927,926,0,1027,1026,1025,1395,1395,1395,42,928,926,929,0,1027,1025,1028,1396,1396,1396,42,929,926,930,0,1028,1025,1029,1397,1397,1397,42,929,930,931,0,1028,1029,1030,1398,1398,1398,42,931,930,932,0,1030,1029,1031,1399,1399,1399,42,931,932,933,0,1030,1031,1032,1400,1400,1400,42,933,932,921,0,1032,1031,1020,1401,1401,1401,42,933,921,786,0,1032,1020,882,1402,1402,1402,42,927,928,698,0,1026,1027,794,1403,1403,1403,42,927,698,695,0,1026,794,791,1404,1404,1404,42,934,926,927,0,1033,1025,1026,1405,1405,1405,42,934,927,935,0,1033,1026,1034,1406,1406,1406,42,937,936,754,0,1036,1035,850,1407,1407,1407,42,937,754,938,0,1036,850,1037,1408,1408,1408,42,939,930,926,0,1038,1029,1025,1409,1409,1409,42,939,926,934,0,1038,1025,1033,1410,1410,1410,42,936,940,750,0,1035,1039,846,1411,1411,1411,42,936,750,754,0,1035,846,850,1412,1412,1412,42,941,932,930,0,1040,1031,1029,1413,1413,1413,42,941,930,939,0,1040,1029,1038,1414,1414,1414,42,753,750,940,0,849,846,1039,1415,1415,1415,42,753,940,942,0,849,1039,1041,1416,1416,1416,42,922,921,932,0,1021,1020,1031,1417,1417,1417,42,922,932,941,0,1021,1031,1040,1418,1418,1418,42,753,942,783,0,849,1041,879,1419,1419,1419,42,753,783,784,0,849,879,880,1420,1420,1420,42,935,927,695,0,1034,1026,791,1421,1421,1421,42,935,695,943,0,1034,791,1042,1422,1422,1422,42,793,937,938,0,889,1036,1037,1423,1423,1423,42,793,938,787,0,889,1037,883,1424,1424,1424,42,242,259,944,0,242,243,1043,1425,1425,1425,42,242,944,945,0,242,1043,1044,1426,1426,1426,42,946,4457,851,0,1046,1045,947,1427,1427,1427,42,946,851,896,0,1046,947,992,1428,1428,1428,42,4457,4458,852,0,1045,1047,948,1429,1429,1429,42,4457,852,851,0,1045,948,947,1430,1430,1430,42,4459,234,771,0,1049,1048,867,1431,1431,1431,42,4459,771,772,0,1049,867,868,1432,1432,1432,42,234,4460,770,0,1048,1050,866,1433,1433,1433,42,234,770,771,0,1048,866,867,1434,1434,1434,42,4460,236,769,0,1050,1051,865,1435,1435,1435,42,4460,769,770,0,1050,865,866,1436,1436,1436,42,916,918,743,0,1015,1017,839,1437,1437,1437,42,916,743,744,0,1015,839,840,1438,1438,1438,42,743,918,920,0,839,1017,1019,1439,1439,1439,42,743,920,945,0,839,1019,1044,1440,1440,1440,42,949,948,947,0,1054,1053,1052,1441,1441,1441,42,949,947,749,0,1054,1052,845,1442,1442,1442,42,746,745,902,0,842,841,1001,1443,1443,1443,42,746,902,904,0,842,1001,1003,1444,1444,1444,42,950,758,759,0,1055,854,855,1445,1445,1445,42,950,759,951,0,1055,855,1056,1446,1446,1446,42,954,953,952,0,1059,1058,1057,1447,1447,1447,42,954,952,951,0,1059,1057,1056,1448,1448,1448,42,857,955,952,0,953,1060,1057,1449,1449,1449,42,857,952,911,0,953,1057,1010,1450,1450,1450,42,792,954,951,0,888,1059,1056,1451,1451,1451,42,792,951,759,0,888,1056,855,1452,1452,1452,42,911,952,953,0,1010,1057,1058,1453,1453,1453,42,911,953,910,0,1010,1058,1009,1454,1454,1454,42,953,954,956,0,1058,1059,1061,1455,1455,1455,42,953,956,755,0,1058,1061,851,1456,1456,1456,42,785,711,712,0,881,807,808,1457,1457,1457,42,785,712,957,0,881,808,1062,1458,1458,1458,42,779,777,774,0,875,873,870,1459,1459,1459,42,779,774,775,0,875,870,871,1460,1460,1460,42,883,842,841,0,979,938,937,1461,1461,1461,42,883,841,881,0,979,937,977,1462,1462,1462,42,679,869,878,0,776,965,974,1463,1463,1463,42,679,878,826,0,776,974,922,1464,1464,1464,42,869,879,877,0,965,975,973,1465,1465,1465,42,869,877,878,0,965,973,974,1466,1466,1466,42,838,877,879,0,934,973,975,1467,1467,1467,42,838,879,841,0,934,975,937,1468,1468,1468,42,243,854,740,0,245,950,836,1469,1469,1469,42,243,740,958,0,245,836,244,1470,1470,1470,42,244,875,873,0,1063,971,969,1471,1471,1471,42,244,873,4472,0,1063,969,1064,1472,1472,1472,42,4191,681,957,0,238,778,1062,1473,1473,1473,42,4191,957,4473,0,238,1062,246,1474,1474,1474,42,4474,874,829,0,1065,970,925,1475,1475,1475,42,4474,829,260,0,1065,925,1066,1476,1476,1476,42,945,944,742,0,1044,1043,838,1477,1477,1477,42,945,742,743,0,1044,838,839,1478,1478,1478,42,242,945,920,0,242,1044,1019,1479,1479,1479,42,242,920,4430,0,242,1019,241,1480,1480,1480,42,696,959,943,0,792,1067,1042,1481,1481,1481,42,696,943,695,0,792,1042,791,1482,1482,1482,42,791,792,759,0,887,888,855,1483,1483,1483,42,791,759,756,0,887,855,852,1484,1484,1484,42,791,756,763,0,887,852,859,1485,1485,1485,42,791,763,839,0,887,859,935,1486,1486,1486,42,837,839,840,0,933,935,936,1487,1487,1487,42,837,840,960,0,933,936,1068,1488,1488,1488,42,960,840,842,0,1068,936,938,1489,1489,1489,42,960,842,961,0,1068,938,1069,1490,1490,1490,42,886,883,881,0,982,979,977,1491,1491,1491,42,886,881,882,0,982,977,978,1492,1492,1492,42,962,886,882,0,1070,982,978,1493,1493,1493,42,962,882,887,0,1070,978,983,1494,1494,1494,42,884,961,842,0,980,1069,938,1495,1495,1495,42,884,842,883,0,980,938,979,1496,1496,1496,42,789,787,938,0,885,883,1037,1497,1497,1497,42,789,938,956,0,885,1037,1061,1498,1498,1498,42,735,964,963,0,831,1072,1071,1499,1499,1499,42,735,963,734,0,831,1071,830,1500,1500,1500,42,965,4481,712,0,247,248,808,1501,1501,1501,42,965,712,709,0,247,808,805,1502,1502,1502,42,854,243,4482,0,950,245,249,1503,1503,1503,42,854,4482,866,0,950,249,962,1504,1504,1504,42,866,4482,4483,0,962,249,250,1505,1505,1505,42,866,4483,865,0,962,250,961,1506,1506,1506,42,874,4474,4472,0,970,1065,1064,1507,1507,1507,42,874,4472,873,0,970,1064,969,1508,1508,1508,42,4484,843,888,0,1073,939,984,1509,1509,1509,42,4484,888,966,0,1073,984,1074,1510,1510,1510,42,875,244,4485,0,971,1063,1075,1511,1511,1511,42,875,4485,887,0,971,1075,983,1512,1512,1512,42,919,967,235,0,1018,251,240,1513,1513,1513,42,919,235,918,0,1018,240,1017,1514,1514,1514,42,4486,946,896,0,1076,1046,992,1515,1515,1515,42,4486,896,846,0,1076,992,942,1516,1516,1516,42,4487,4488,737,0,252,253,833,1517,1517,1517,42,4487,737,734,0,252,833,830,1518,1518,1518,42,4488,4489,706,0,253,254,802,1519,1519,1519,42,4488,706,737,0,253,802,833,1520,1520,1520,42,706,4489,4490,0,802,254,255,1521,1521,1521,42,706,4490,705,0,802,255,801,1522,1522,1522,42,4484,4486,846,0,1073,1076,942,1523,1523,1523,42,4484,846,843,0,1073,942,939,1524,1524,1524,42,260,829,830,0,1066,925,926,1525,1525,1525,42,260,830,901,0,1066,926,999,1526,1526,1526,42,967,919,868,0,251,1018,964,1527,1527,1527,42,967,868,4491,0,251,964,256,1528,1528,1528,42,949,944,259,0,1054,1043,243,1529,1529,1529,42,949,259,968,0,1054,243,257,1530,1530,1530,42,236,261,768,0,1051,1077,864,1531,1531,1531,42,236,768,769,0,1051,864,865,1532,1532,1532,42,709,705,4490,0,805,801,255,1533,1533,1533,42,709,4490,965,0,805,255,247,1534,1534,1534,42,710,708,705,0,806,804,801,1535,1535,1535,42,710,705,709,0,806,801,805,1536,1536,1536,42,922,703,708,0,1021,799,804,1537,1537,1537,42,922,708,710,0,1021,804,806,1538,1538,1538,42,941,700,703,0,1040,796,799,1539,1539,1539,42,941,703,922,0,1040,799,1021,1540,1540,1540,42,939,699,700,0,1038,795,796,1541,1541,1541,42,939,700,941,0,1038,796,1040,1542,1542,1542,42,619,788,781,0,696,884,877,1543,1543,1543,42,619,781,618,0,696,877,695,1544,1544,1544,42,639,794,788,0,716,890,884,1545,1545,1545,42,639,788,619,0,716,884,696,1546,1546,1546,42,697,794,639,0,793,890,716,1547,1547,1547,42,697,639,645,0,793,716,722,1548,1548,1548,42,959,696,643,0,1067,792,720,1549,1549,1549,42,959,643,553,0,1067,720,619,1550,1550,1550,42,727,959,553,0,823,1067,619,1551,1551,1551,42,727,553,554,0,823,619,620,1552,1552,1552,42,717,726,556,0,813,822,622,1553,1553,1553,42,717,556,612,0,813,622,689,1554,1554,1554,42,716,713,613,0,812,809,690,1555,1555,1555,42,716,613,614,0,812,690,691,1556,1556,1556,42,554,556,726,0,620,622,822,1557,1557,1557,42,554,726,727,0,620,822,823,1558,1558,1558,42,971,970,969,0,1080,1079,1078,1559,1559,1559,42,971,969,972,0,1080,1078,1081,1560,1560,1560,42,973,971,972,0,1082,1080,1081,1561,1561,1561,42,973,972,974,0,1082,1081,1083,1562,1562,1562,42,975,973,974,0,1084,1082,1083,1563,1563,1563,42,975,974,976,0,1084,1083,1085,1564,1564,1564,42,959,727,728,0,1067,823,824,1565,1565,1565,42,959,728,943,0,1067,824,1042,1566,1566,1566,42,718,725,726,0,814,821,822,1567,1567,1567,42,718,726,717,0,814,822,813,1568,1568,1568,42,972,969,724,0,1081,1078,820,1569,1569,1569,42,972,724,720,0,1081,820,816,1570,1570,1570,42,970,971,714,0,1079,1080,810,1571,1571,1571,42,970,714,715,0,1079,810,811,1572,1572,1572,42,974,972,720,0,1083,1081,816,1573,1573,1573,42,974,720,721,0,1083,816,817,1574,1574,1574,42,971,973,718,0,1080,1082,814,1575,1575,1575,42,971,718,714,0,1080,814,810,1576,1576,1576,42,977,934,935,0,1086,1033,1034,1577,1577,1577,42,977,935,978,0,1086,1034,1087,1578,1578,1578,42,976,977,978,0,1085,1086,1087,1579,1579,1579,42,976,978,975,0,1085,1087,1084,1580,1580,1580,42,975,978,728,0,1084,1087,824,1581,1581,1581,42,975,728,725,0,1084,824,821,1582,1582,1582,42,973,975,725,0,1082,1084,821,1583,1583,1583,42,973,725,718,0,1082,821,814,1584,1584,1584,42,976,974,721,0,1085,1083,817,1585,1585,1585,42,976,721,702,0,1085,817,798,1586,1586,1586,42,977,976,702,0,1086,1085,798,1587,1587,1587,42,977,702,699,0,1086,798,795,1588,1588,1588,42,934,977,699,0,1033,1086,795,1589,1589,1589,42,934,699,939,0,1033,795,1038,1590,1590,1590,42,978,935,943,0,1087,1034,1042,1591,1591,1591,42,978,943,728,0,1087,1042,824,1592,1592,1592,42,828,678,822,0,924,775,918,1593,1593,1593,42,828,822,823,0,924,918,919,1594,1594,1594,42,764,825,826,0,860,921,922,1595,1595,1595,42,764,826,878,0,860,922,974,1596,1596,1596,42,798,795,818,0,894,891,914,1597,1597,1597,42,798,818,825,0,894,914,921,1598,1598,1598,42,798,760,761,0,894,856,857,1599,1599,1599,42,798,761,797,0,894,857,893,1600,1600,1600,42,861,862,914,0,957,958,1013,1601,1601,1601,42,861,914,915,0,957,1013,1014,1602,1602,1602,42,924,861,915,0,1023,957,1014,1603,1603,1603,42,924,915,814,0,1023,1014,910,1604,1604,1604,42,867,868,919,0,963,964,1018,1605,1605,1605,42,867,919,917,0,963,1018,1016,1606,1606,1606,42,862,867,917,0,958,963,1016,1607,1607,1607,42,862,917,914,0,958,1016,1013,1608,1608,1608,42,803,924,814,0,899,1023,910,1609,1609,1609,42,803,814,802,0,899,910,898,1610,1610,1610,42,4491,868,865,0,256,964,961,1611,1611,1611,42,4491,865,4483,0,256,961,250,1612,1612,1612,42,803,797,761,0,899,893,857,1613,1613,1613,42,803,761,923,0,899,857,1022,1614,1614,1614,42,925,858,861,0,1024,954,957,1615,1615,1615,42,925,861,924,0,1024,957,1023,1616,1616,1616,42,923,761,758,0,1022,857,854,1617,1617,1617,42,923,758,950,0,1022,854,1055,1618,1618,1618,42,858,925,955,0,954,1024,1060,1619,1619,1619,42,858,955,857,0,954,1060,953,1620,1620,1620,42,951,952,955,0,1056,1057,1060,1621,1621,1621,42,951,955,950,0,1056,1060,1055,1622,1622,1622,42,950,955,925,0,1055,1060,1024,1623,1623,1623,42,950,925,923,0,1055,1024,1022,1624,1624,1624,42,630,625,626,0,707,702,703,1625,1625,1625,42,630,626,629,0,707,703,706,1626,1626,1626,42,644,641,642,0,721,718,719,1627,1627,1627,42,644,642,676,0,721,719,771,1628,1628,1628,42,638,641,645,0,715,718,722,1629,1629,1629,42,638,645,639,0,715,722,716,1630,1630,1630,42,497,665,666,0,557,750,751,1631,1631,1631,42,497,666,496,0,557,751,556,1632,1632,1632,42,628,629,669,0,705,706,757,1633,1633,1633,42,628,669,675,0,705,757,768,1634,1634,1634,42,675,669,670,0,773,758,759,1635,1635,1635,42,675,670,466,0,773,759,518,1636,1636,1636,42,501,671,672,0,561,760,761,1637,1637,1637,42,501,672,499,0,561,761,559,1638,1638,1638,42,664,665,672,0,749,750,761,1639,1639,1639,42,664,672,655,0,749,761,737,1640,1640,1640,42,674,673,666,0,766,765,751,1641,1641,1641,42,674,666,663,0,766,751,748,1642,1642,1642,42,642,640,450,0,772,746,502,1643,1643,1643,42,642,450,673,0,772,502,765,1644,1644,1644,42,671,501,466,0,760,561,518,1645,1645,1645,42,671,466,670,0,760,518,759,1646,1646,1646,42,698,793,794,0,794,889,890,1647,1647,1647,42,698,794,697,0,794,890,793,1648,1648,1648,42,711,785,786,0,807,881,882,1649,1649,1649,42,711,786,921,0,807,882,1020,1650,1650,1650,42,849,850,690,0,945,946,786,1651,1651,1651,42,849,690,689,0,945,786,785,1652,1652,1652,42,850,852,772,0,946,948,868,1653,1653,1653,42,850,772,690,0,946,868,786,1654,1654,1654,42,630,627,691,0,707,704,787,1655,1655,1655,42,630,691,849,0,707,787,945,1656,1656,1656,42,937,928,929,0,1036,1027,1028,1657,1657,1657,42,937,929,936,0,1036,1028,1035,1658,1658,1658,42,929,931,940,0,1028,1030,1039,1659,1659,1659,42,929,940,936,0,1028,1039,1035,1660,1660,1660,42,931,933,942,0,1030,1032,1041,1661,1661,1661,42,931,942,940,0,1030,1041,1039,1662,1662,1662,42,933,786,783,0,1032,882,879,1663,1663,1663,42,933,783,942,0,1032,879,1041,1664,1664,1664,42,793,698,928,0,889,794,1027,1665,1665,1665,42,793,928,937,0,889,1027,1036,1666,1666,1666,42,4458,4459,772,0,1047,1049,868,1667,1667,1667,42,4458,772,852,0,1047,868,948,1668,1668,1668,42,785,957,681,0,881,1062,778,1669,1669,1669,42,785,681,784,0,881,778,880,1670,1670,1670,42,4481,4473,957,0,248,246,1062,1671,1671,1671,42,4481,957,712,0,248,1062,808,1672,1672,1672,42,696,697,645,0,792,793,722,1673,1673,1673,42,696,645,643,0,792,722,720,1674,1674,1674,42,682,683,958,0,779,239,244,1675,1675,1675,42,682,958,740,0,779,244,836,1676,1676,1676,42,682,738,784,0,779,834,880,1677,1677,1677,42,682,784,681,0,779,880,778,1678,1678,1678,42,751,752,855,0,847,848,951,1679,1679,1679,42,751,855,910,0,847,951,1009,1680,1680,1680,42,755,751,910,0,851,847,1009,1681,1681,1681,42,755,910,953,0,851,1009,1058,1682,1682,1682,42,790,782,787,0,886,878,883,1683,1683,1683,42,790,787,789,0,886,883,885,1684,1684,1684,42,790,791,839,0,886,887,935,1685,1685,1685,42,790,839,837,0,886,935,933,1686,1686,1686,42,884,885,844,0,980,981,940,1687,1687,1687,42,884,844,776,0,980,940,872,1688,1688,1688,42,888,885,886,0,984,981,982,1689,1689,1689,42,888,886,962,0,984,982,1070,1690,1690,1690,42,752,738,739,0,848,834,835,1691,1691,1691,42,752,739,855,0,848,835,951,1692,1692,1692,42,755,956,938,0,851,1061,1037,1693,1693,1693,42,755,938,754,0,851,1037,850,1694,1694,1694,42,960,779,780,0,1068,875,876,1695,1695,1695,42,960,780,837,0,1068,876,933,1696,1696,1696,42,960,961,777,0,1068,1069,873,1697,1697,1697,42,960,777,779,0,1068,873,875,1698,1698,1698,42,961,884,776,0,1069,980,872,1699,1699,1699,42,961,776,777,0,1069,872,873,1700,1700,1700,42,789,956,954,0,885,1061,1059,1701,1701,1701,42,789,954,792,0,885,1059,888,1702,1702,1702,42,966,888,962,0,1074,984,1070,1703,1703,1703,42,966,962,979,0,1074,1070,1088,1704,1704,1704,42,980,815,816,0,1089,911,912,1705,1705,1705,42,980,816,809,0,1089,912,905,1706,1706,1706,42,817,816,801,0,913,912,897,1707,1707,1707,42,817,801,813,0,913,897,909,1708,1708,1708,42,906,820,815,0,1005,916,911,1709,1709,1709,42,906,815,980,0,1005,911,1089,1710,1710,1710,42,907,821,820,0,1006,917,916,1711,1711,1711,42,907,820,906,0,1006,916,1005,1712,1712,1712,42,981,824,821,0,1090,920,917,1713,1713,1713,42,981,821,907,0,1090,917,1006,1714,1714,1714,42,982,834,833,0,1091,930,929,1715,1715,1715,42,982,833,909,0,1091,929,1008,1716,1716,1716,42,909,833,835,0,1008,929,931,1717,1717,1717,42,909,835,894,0,1008,931,990,1718,1718,1718,42,894,835,836,0,990,931,932,1719,1719,1719,42,894,836,893,0,990,932,989,1720,1720,1720,42,893,836,824,0,989,932,920,1721,1721,1721,42,893,824,981,0,989,920,1090,1722,1722,1722,42,834,982,4505,0,930,1091,1092,1723,1723,1723,42,834,4505,258,0,930,1092,1000,1724,1724,1724,42,904,902,808,0,1003,1001,904,1725,1725,1725,42,904,808,817,0,1003,904,913,1726,1726,1726,42,746,904,905,0,842,1003,1004,1727,1727,1727,42,746,905,913,0,842,1004,1012,1728,1728,1728,42,913,916,744,0,1012,1015,840,1729,1729,1729,42,913,744,746,0,1012,840,842,1730,1730,1730,42,747,984,983,0,843,1094,1093,1731,1731,1731,42,747,983,903,0,843,1093,1002,1732,1732,1732,42,984,747,748,0,1094,843,844,1733,1733,1733,42,984,748,985,0,1094,844,1095,1734,1734,1734,42,985,748,749,0,1095,844,845,1735,1735,1735,42,985,749,947,0,1095,845,1052,1736,1736,1736,42,809,806,807,0,905,902,903,1737,1737,1737,42,809,807,980,0,905,903,1089,1738,1738,1738,42,805,806,810,0,901,902,906,1739,1739,1739,42,805,810,986,0,901,906,1096,1740,1740,1740,42,980,807,812,0,1089,903,908,1741,1741,1741,42,980,812,906,0,1089,908,1005,1742,1742,1742,42,981,891,892,0,1090,987,988,1743,1743,1743,42,981,892,893,0,1090,988,989,1744,1744,1744,42,987,895,892,0,1097,991,988,1745,1745,1745,42,987,892,889,0,1097,988,985,1746,1746,1746,42,982,898,4407,0,1091,995,996,1747,1747,1747,42,982,4407,4505,0,1091,996,1092,1748,1748,1748,42,909,900,898,0,1008,998,995,1749,1749,1749,42,909,898,982,0,1008,995,1091,1750,1750,1750,42,986,810,903,0,1096,906,1002,1751,1751,1751,42,986,903,983,0,1096,1002,1093,1752,1752,1752,42,912,908,812,0,1011,1007,908,1753,1753,1753,42,912,812,811,0,1011,908,907,1754,1754,1754,42,899,900,895,0,997,998,991,1755,1755,1755,42,899,895,987,0,997,991,1097,1756,1756,1756,42,907,908,891,0,1006,1007,987,1757,1757,1757,42,907,891,981,0,1006,987,1090,1758,1758,1758,42,749,742,944,0,845,838,1043,1759,1759,1759,42,749,944,949,0,845,1043,1054,1760,1760,1760,42,948,949,968,0,1053,1054,257,1761,1761,1761,42,948,968,4511,0,1053,257,258,1762,1762,1762,42,745,747,903,0,841,843,1002,1763,1763,1763,42,745,903,902,0,841,1002,1001,1764,1764,1764,42,963,4512,4487,0,1071,259,252,1765,1765,1765,42,963,4487,734,0,1071,252,830,1766,1766,1766,42,963,964,245,0,1071,1072,260,1767,1767,1767,42,963,245,4512,0,1071,260,259,1768,1768,1768,42,634,636,635,0,711,713,712,1769,1769,1769,42,636,637,635,0,713,714,712,1770,1770,1770,42,887,4485,979,0,983,1075,1088,1771,1771,1771,42,887,979,962,0,983,1088,1070,1772,1772,1772,42,989,988,651,0,1099,1098,731,1773,1773,1773,42,989,651,652,0,1099,731,733,1774,1774,1774,42,610,989,652,0,687,1099,733,1775,1775,1775,42,610,652,600,0,687,733,674,1776,1776,1776,42,988,616,617,0,1098,1100,730,1777,1777,1777,42,988,617,651,0,1098,730,731,1778,1778,1778,42,616,991,990,0,693,1102,1101,1779,1779,1779,42,616,990,615,0,693,1101,692,1780,1780,1780,42,988,992,991,0,1098,1104,1103,1781,1781,1781,42,988,991,616,0,1098,1103,1100,1782,1782,1782,42,992,988,989,0,1104,1098,1099,1783,1783,1783,42,992,989,993,0,1104,1099,1105,1784,1784,1784,42,615,990,994,0,692,1101,1106,1785,1785,1785,42,615,994,614,0,692,1106,691,1786,1786,1786,42,996,995,731,0,1108,1107,827,1787,1787,1787,42,996,731,723,0,1108,827,819,1788,1788,1788,42,997,996,723,0,1109,1108,819,1789,1789,1789,42,997,723,724,0,1109,819,820,1790,1790,1790,42,999,998,715,0,1111,1110,811,1791,1791,1791,42,999,715,716,0,1111,811,812,1792,1792,1792,42,1000,993,765,0,1112,1105,861,1793,1793,1793,42,1000,765,766,0,1112,861,862,1794,1794,1794,42,989,610,765,0,1099,687,861,1795,1795,1795,42,989,765,993,0,1099,861,1105,1796,1796,1796,42,768,1001,1000,0,864,1113,1112,1797,1797,1797,42,768,1000,766,0,864,1112,862,1798,1798,1798,42,731,995,1002,0,827,1107,1114,1799,1799,1799,42,731,1002,736,0,827,1114,832,1800,1800,1800,42,1003,735,736,0,1115,831,832,1801,1801,1801,42,1003,736,1002,0,1115,832,1114,1802,1802,1802,42,1004,964,735,0,1116,1072,831,1803,1803,1803,42,1004,735,1003,0,1116,831,1115,1804,1804,1804,42,1001,768,261,0,1113,864,1077,1805,1805,1805,42,1001,261,262,0,1113,1077,1117,1806,1806,1806,42,994,999,716,0,1106,1111,812,1807,1807,1807,42,994,716,614,0,1106,812,691,1808,1808,1808,42,1006,1005,969,0,1119,1118,1078,1809,1809,1809,42,1006,969,970,0,1119,1078,1079,1810,1810,1810,42,1005,997,724,0,1118,1109,820,1811,1811,1811,42,1005,724,969,0,1118,820,1078,1812,1812,1812,42,970,715,998,0,1079,811,1110,1813,1813,1813,42,970,998,1006,0,1079,1110,1119,1814,1814,1814,42,964,1004,1007,0,1072,1116,261,1815,1815,1815,42,964,1007,245,0,1072,261,260,1816,1816,1816,42,775,637,623,0,871,714,700,1817,1817,1817,42,775,623,778,0,871,700,874,1818,1818,1818,42,1010,1009,1008,0,1122,1121,1120,1819,1819,1819,42,1010,1008,1011,0,1122,1120,1123,1820,1820,1820,42,1014,1013,1012,0,1126,1125,1124,1821,1821,1821,42,1014,1012,1015,0,1126,1124,1127,1822,1822,1822,42,1018,1017,1016,0,1130,1129,1128,1823,1823,1823,42,1018,1016,1019,0,1130,1128,1131,1824,1824,1824,42,1019,1016,1020,0,1131,1128,1132,1825,1825,1825,42,1019,1020,1021,0,1131,1132,1133,1826,1826,1826,42,1023,1022,1017,0,1135,1134,1129,1827,1827,1827,42,1023,1017,1018,0,1135,1129,1130,1828,1828,1828,42,1018,1025,1024,0,1130,1137,1136,1829,1829,1829,42,1018,1024,1023,0,1130,1136,1135,1830,1830,1830,42,948,1027,1026,0,1140,1139,1138,1831,1831,1831,42,948,1026,947,0,1140,1138,1141,1832,1832,1832,42,1019,1028,1025,0,1131,1142,1137,1833,1833,1833,42,1019,1025,1018,0,1131,1137,1130,1834,1834,1834,42,1015,1030,1029,0,1127,1144,1143,1835,1835,1835,42,1015,1029,1014,0,1127,1143,1126,1836,1836,1836,42,1021,1031,1028,0,1133,1145,1142,1837,1837,1837,42,1021,1028,1019,0,1133,1142,1131,1838,1838,1838,42,1034,1033,1032,0,1148,1147,1146,1839,1839,1839,42,1034,1032,1035,0,1148,1146,1149,1840,1840,1840,42,1015,1012,1036,0,1127,1124,1150,1841,1841,1841,42,1015,1036,1037,0,1127,1150,1151,1842,1842,1842,42,1040,1039,1038,0,1154,1153,1152,1843,1843,1843,42,1040,1038,1041,0,1154,1152,1155,1844,1844,1844,42,1043,1042,897,0,1158,1157,1156,1845,1845,1845,42,1043,897,1044,0,1158,1156,1159,1846,1846,1846,42,1044,1040,1041,0,1159,1154,1155,1847,1847,1847,42,1044,1041,1043,0,1159,1155,1158,1848,1848,1848,42,1047,1046,1045,0,1162,1161,1160,1849,1849,1849,42,1047,1045,1048,0,1162,1160,1163,1850,1850,1850,42,890,1050,1049,0,1166,1165,1164,1851,1851,1851,42,890,1049,889,0,1166,1164,1167,1852,1852,1852,42,889,1049,1032,0,1167,1164,1146,1853,1853,1853,42,889,1032,987,0,1167,1146,1168,1854,1854,1854,42,1051,1035,1046,0,1169,1149,1161,1855,1855,1855,42,1051,1046,1047,0,1169,1161,1162,1856,1856,1856,42,1053,1052,1013,0,1171,1170,1125,1857,1857,1857,42,1053,1013,1014,0,1171,1125,1126,1858,1858,1858,42,1014,1029,1054,0,1126,1143,1172,1859,1859,1859,42,1014,1054,1053,0,1126,1172,1171,1860,1860,1860,42,1021,1020,1052,0,1133,1132,1170,1861,1861,1861,42,1021,1052,1053,0,1133,1170,1171,1862,1862,1862,42,1053,1054,1031,0,1171,1172,1145,1863,1863,1863,42,1053,1031,1021,0,1171,1145,1133,1864,1864,1864,42,1037,1055,1030,0,1151,1173,1144,1865,1865,1865,42,1037,1030,1015,0,1151,1144,1127,1866,1866,1866,42,912,1055,1050,0,1174,1173,1165,1867,1867,1867,42,912,1050,890,0,1174,1165,1166,1868,1868,1868,42,1048,1045,1037,0,1163,1160,1151,1869,1869,1869,42,1048,1037,1036,0,1163,1151,1150,1870,1870,1870,42,1035,1051,1056,0,1149,1169,1175,1871,1871,1871,42,1035,1056,1034,0,1149,1175,1148,1872,1872,1872,42,1039,1040,1034,0,1153,1154,1148,1873,1873,1873,42,1039,1034,1056,0,1153,1148,1175,1874,1874,1874,42,1040,1044,1033,0,1154,1159,1147,1875,1875,1875,42,1040,1033,1034,0,1154,1147,1148,1876,1876,1876,42,1022,1023,1009,0,1134,1135,1121,1877,1877,1877,42,1022,1009,1010,0,1134,1121,1122,1878,1878,1878,42,1023,1024,1026,0,1135,1136,1138,1879,1879,1879,42,1023,1026,1009,0,1135,1138,1121,1880,1880,1880,42,1027,948,4511,0,1139,1140,262,1881,1881,1881,42,1027,4511,1057,0,1139,262,263,1882,1882,1882,42,1038,4581,1058,0,1152,1177,1176,1883,1883,1883,42,1038,1058,1041,0,1152,1176,1155,1884,1884,1884,42,263,4582,1011,0,264,265,1123,1885,1885,1885,42,263,1011,1008,0,264,1123,1120,1886,1886,1886,42,985,1024,1025,0,1178,1136,1137,1887,1887,1887,42,985,1025,984,0,1178,1137,1179,1888,1888,1888,42,1009,1026,1027,0,1121,1138,1139,1889,1889,1889,42,1009,1027,1008,0,1121,1139,1120,1890,1890,1890,42,984,1025,1028,0,1179,1137,1142,1891,1891,1891,42,984,1028,983,0,1179,1142,1180,1892,1892,1892,42,804,1029,1030,0,1181,1143,1144,1893,1893,1893,42,804,1030,811,0,1181,1144,1182,1894,1894,1894,42,983,1028,1031,0,1180,1142,1145,1895,1895,1895,42,983,1031,986,0,1180,1145,1183,1896,1896,1896,42,987,1032,1033,0,1168,1146,1147,1897,1897,1897,42,987,1033,899,0,1168,1147,1184,1898,1898,1898,42,237,1043,1041,0,1185,1158,1155,1899,1899,1899,42,237,1041,1058,0,1185,1155,1176,1900,1900,1900,42,1046,1049,1050,0,1161,1164,1165,1901,1901,1901,42,1046,1050,1045,0,1161,1165,1160,1902,1902,1902,42,1035,1032,1049,0,1149,1146,1164,1903,1903,1903,42,1035,1049,1046,0,1149,1164,1161,1904,1904,1904,42,805,1054,1029,0,1186,1172,1143,1905,1905,1905,42,805,1029,804,0,1186,1143,1181,1906,1906,1906,42,986,1031,1054,0,1183,1145,1172,1907,1907,1907,42,986,1054,805,0,1183,1172,1186,1908,1908,1908,42,811,1030,1055,0,1182,1144,1173,1909,1909,1909,42,811,1055,912,0,1182,1173,1174,1910,1910,1910,42,1045,1050,1055,0,1160,1165,1173,1911,1911,1911,42,1045,1055,1037,0,1160,1173,1151,1912,1912,1912,42,899,1033,1044,0,1184,1147,1159,1913,1913,1913,42,899,1044,897,0,1184,1159,1156,1914,1914,1914,42,947,1026,1024,0,1141,1138,1136,1915,1915,1915,42,947,1024,985,0,1141,1136,1178,1916,1916,1916,42,1057,263,1008,0,263,264,1120,1917,1917,1917,42,1057,1008,1027,0,263,1120,1139,1918,1918,1918,42,1061,1060,1059,0,1189,1188,1187,1919,1919,1919,42,1061,1059,1062,0,1189,1187,1190,1920,1920,1920,42,1062,1059,1063,0,1190,1187,1191,1921,1921,1921,42,1062,1063,1064,0,1190,1191,1192,1922,1922,1922,42,1060,1066,1065,0,1188,1194,1193,1923,1923,1923,42,1060,1065,1059,0,1188,1193,1187,1924,1924,1924,42,1059,1065,1067,0,1187,1193,1195,1925,1925,1925,42,1059,1067,1063,0,1187,1195,1191,1926,1926,1926,42,1069,1068,1061,0,1197,1196,1189,1927,1927,1927,42,1069,1061,1062,0,1197,1189,1190,1928,1928,1928,42,1060,1061,1070,0,1188,1189,1198,1929,1929,1929,42,1060,1070,1071,0,1188,1198,1199,1930,1930,1930,42,1070,1061,1068,0,1198,1189,1196,1931,1931,1931,42,1070,1068,1072,0,1198,1196,1200,1932,1932,1932,42,1064,1074,1073,0,1192,1202,1201,1933,1933,1933,42,1064,1073,1075,0,1192,1201,1203,1934,1934,1934,42,1075,1073,1076,0,1203,1201,1204,1935,1935,1935,42,1075,1076,1077,0,1203,1204,1205,1936,1936,1936,42,1062,1064,1075,0,1190,1192,1203,1937,1937,1937,42,1062,1075,1069,0,1190,1203,1197,1938,1938,1938,42,1069,1075,1077,0,1197,1203,1205,1939,1939,1939,42,1069,1077,1078,0,1197,1205,1206,1940,1940,1940,42,1081,1080,1079,0,1209,1208,1207,1941,1941,1941,42,1081,1079,1082,0,1209,1207,1210,1942,1942,1942,42,1077,1076,1083,0,1205,1204,1211,1943,1943,1943,42,1077,1083,1084,0,1205,1211,1212,1944,1944,1944,42,1085,1013,1052,0,1213,1125,1170,1945,1945,1945,42,1085,1052,1086,0,1213,1170,1214,1946,1946,1946,42,1012,1088,1087,0,1124,1216,1215,1947,1947,1947,42,1012,1087,1036,0,1124,1215,1150,1948,1948,1948,42,1089,1048,1036,0,1217,1163,1150,1949,1949,1949,42,1089,1036,1087,0,1217,1150,1215,1950,1950,1950,42,1092,1091,1090,0,1220,1219,1218,1951,1951,1951,42,1092,1090,1093,0,1220,1218,1221,1952,1952,1952,42,1095,1094,1063,0,1223,1222,1191,1953,1953,1953,42,1095,1063,1067,0,1223,1191,1195,1954,1954,1954,42,1095,1097,1096,0,1223,1225,1224,1955,1955,1955,42,1095,1096,1091,0,1223,1224,1219,1956,1956,1956,42,1098,1067,1065,0,1226,1195,1193,1957,1957,1957,42,1098,1065,1099,0,1226,1193,1227,1958,1958,1958,42,1102,1101,1100,0,1230,1229,1228,1959,1959,1959,42,1102,1100,1103,0,1230,1228,1231,1960,1960,1960,42,1102,1103,1104,0,1234,1233,1232,1961,1961,1961,42,1102,1104,1105,0,1234,1232,1235,1962,1962,1962,42,1108,1107,1106,0,1238,1237,1236,1963,1963,1963,42,1108,1106,1109,0,1238,1236,1239,1964,1964,1964,42,1111,1110,1107,0,1241,1240,1237,1965,1965,1965,42,1111,1107,1108,0,1241,1237,1238,1966,1966,1966,42,1112,1108,1109,0,1242,1238,1239,1967,1967,1967,42,1112,1109,1113,0,1242,1239,1243,1968,1968,1968,42,1114,1111,1108,0,1244,1241,1238,1969,1969,1969,42,1114,1108,1112,0,1244,1238,1242,1970,1970,1970,42,1107,1116,1115,0,1237,1246,1245,1971,1971,1971,42,1107,1115,1106,0,1237,1245,1236,1972,1972,1972,42,1110,1117,1116,0,1240,1247,1246,1973,1973,1973,42,1110,1116,1107,0,1240,1246,1237,1974,1974,1974,42,1119,1118,1109,0,1249,1248,1239,1975,1975,1975,42,1119,1109,1106,0,1249,1239,1236,1976,1976,1976,42,1121,1120,1118,0,1252,1251,1250,1977,1977,1977,42,1121,1118,1119,0,1252,1250,1253,1978,1978,1978,42,1102,1119,1106,0,1230,1249,1236,1979,1979,1979,42,1102,1106,1115,0,1230,1236,1245,1980,1980,1980,42,1119,1102,1105,0,1253,1234,1235,1981,1981,1981,42,1119,1105,1121,0,1253,1235,1252,1982,1982,1982,42,1011,1123,1122,0,1123,1255,1254,1983,1983,1983,42,1011,1122,1010,0,1123,1254,1122,1984,1984,1984,42,1124,1022,1010,0,1256,1134,1122,1985,1985,1985,42,1124,1010,1122,0,1256,1122,1254,1986,1986,1986,42,1122,1126,1125,0,1254,1258,1257,1987,1987,1987,42,1122,1125,1124,0,1254,1257,1256,1988,1988,1988,42,1128,1126,1127,0,1260,1258,1259,1989,1989,1989,42,1128,1127,1129,0,1260,1259,1261,1990,1990,1990,42,1131,1130,1121,0,1263,1262,1252,1991,1991,1991,42,1131,1121,1105,0,1263,1252,1235,1992,1992,1992,42,1130,1132,1120,0,1262,1264,1251,1993,1993,1993,42,1130,1120,1121,0,1262,1251,1252,1994,1994,1994,42,1134,1132,1133,0,1266,1264,1265,1995,1995,1995,42,1134,1133,1135,0,1266,1265,1267,1996,1996,1996,42,1135,1137,1136,0,1267,1269,1268,1997,1997,1997,42,1135,1136,1134,0,1267,1268,1266,1998,1998,1998,42,1140,1139,1138,0,1272,1271,1270,1999,1999,1999,42,1140,1138,1099,0,1272,1270,1227,2000,2000,2000,42,1141,1098,1099,0,1273,1226,1227,2001,2001,2001,42,1141,1099,1138,0,1273,1227,1270,2002,2002,2002,42,1142,1141,1138,0,1274,1273,1270,2003,2003,2003,42,1142,1138,1137,0,1274,1270,1269,2004,2004,2004,42,1144,1143,1135,0,1276,1275,1267,2005,2005,2005,42,1144,1135,1133,0,1276,1267,1265,2006,2006,2006,42,1143,1142,1137,0,1275,1274,1269,2007,2007,2007,42,1143,1137,1135,0,1275,1269,1267,2008,2008,2008,42,1147,1146,1145,0,1279,1278,1277,2009,2009,2009,42,1147,1145,1148,0,1279,1277,1280,2010,2010,2010,42,1149,1146,1143,0,1281,1278,1275,2011,2011,2011,42,1149,1143,1144,0,1281,1275,1276,2012,2012,2012,42,1151,1150,1145,0,1283,1282,1277,2013,2013,2013,42,1151,1145,1152,0,1283,1277,1284,2014,2014,2014,42,1154,1153,1150,0,1286,1285,1282,2015,2015,2015,42,1154,1150,1155,0,1286,1282,1287,2016,2016,2016,42,1156,1155,1150,0,1288,1287,1282,2017,2017,2017,42,1156,1150,1151,0,1288,1282,1283,2018,2018,2018,42,1156,1038,1039,0,1288,1152,1153,2019,2019,2019,42,1156,1039,1155,0,1288,1153,1287,2020,2020,2020,42,1157,1147,1148,0,1289,1279,1280,2021,2021,2021,42,1157,1148,1158,0,1289,1280,1290,2022,2022,2022,42,1048,1089,1159,0,1163,1217,1291,2023,2023,2023,42,1048,1159,1047,0,1163,1291,1162,2024,2024,2024,42,1047,1159,1160,0,1162,1291,1292,2025,2025,2025,42,1047,1160,1051,0,1162,1292,1169,2026,2026,2026,42,1161,1090,1091,0,1293,1218,1219,2027,2027,2027,42,1161,1091,1096,0,1293,1219,1224,2028,2028,2028,42,1161,1162,1160,0,1293,1294,1292,2029,2029,2029,42,1161,1160,1159,0,1293,1292,1291,2030,2030,2030,42,1066,1140,1099,0,1194,1272,1227,2031,2031,2031,42,1066,1099,1065,0,1194,1227,1193,2032,2032,2032,42,1082,1079,1163,0,1210,1207,1295,2033,2033,2033,42,1082,1163,1164,0,1210,1295,1296,2034,2034,2034,42,1017,1166,1165,0,1129,1298,1297,2035,2035,2035,42,1017,1165,1016,0,1129,1297,1128,2036,2036,2036,42,1166,1017,1022,0,1298,1129,1134,2037,2037,2037,42,1166,1022,1124,0,1298,1134,1256,2038,2038,2038,42,1164,1163,1167,0,1296,1295,1299,2039,2039,2039,42,1164,1167,1168,0,1296,1299,1300,2040,2040,2040,42,1168,1167,1125,0,1300,1299,1257,2041,2041,2041,42,1168,1125,1169,0,1300,1257,1301,2042,2042,2042,42,1169,1171,1170,0,1301,1303,1302,2043,2043,2043,42,1169,1170,1168,0,1301,1302,1300,2044,2044,2044,42,1117,1172,1170,0,1247,1304,1302,2045,2045,2045,42,1117,1170,1116,0,1247,1302,1246,2046,2046,2046,42,1084,1083,1172,0,1212,1211,1304,2047,2047,2047,42,1084,1172,1117,0,1212,1304,1247,2048,2048,2048,42,1173,1084,1117,0,1305,1212,1247,2049,2049,2049,42,1173,1117,1110,0,1305,1247,1240,2050,2050,2050,42,1176,1175,1174,0,1308,1307,1306,2051,2051,2051,42,1176,1174,1177,0,1308,1306,1309,2052,2052,2052,42,1178,1174,1175,0,1310,1306,1307,2053,2053,2053,42,1178,1175,1179,0,1310,1307,1311,2054,2054,2054,42,1181,1180,1175,0,1313,1312,1307,2055,2055,2055,42,1181,1175,1176,0,1313,1307,1308,2056,2056,2056,42,1180,1182,1179,0,1312,1314,1311,2057,2057,2057,42,1180,1179,1175,0,1312,1311,1307,2058,2058,2058,42,1185,1184,1183,0,1317,1316,1315,2059,2059,2059,42,1185,1183,1186,0,1317,1315,1318,2060,2060,2060,42,1188,1187,1184,0,1320,1319,1316,2061,2061,2061,42,1188,1184,1185,0,1320,1316,1317,2062,2062,2062,42,1187,1188,1189,0,1319,1320,1321,2063,2063,2063,42,1187,1189,1190,0,1319,1321,1322,2064,2064,2064,42,1193,1192,1191,0,1325,1324,1323,2065,2065,2065,42,1193,1191,1194,0,1325,1323,1326,2066,2066,2066,42,1195,1191,1192,0,1327,1323,1324,2067,2067,2067,42,1195,1192,1196,0,1327,1324,1328,2068,2068,2068,42,1197,1194,1191,0,1329,1326,1323,2069,2069,2069,42,1197,1191,1198,0,1329,1323,1330,2070,2070,2070,42,1201,1200,1199,0,1333,1332,1331,2071,2071,2071,42,1201,1199,1202,0,1333,1331,1334,2072,2072,2072,42,1205,1204,1203,0,1337,1336,1335,2073,2073,2073,42,1205,1203,1206,0,1337,1335,1338,2074,2074,2074,42,1208,1207,1202,0,1340,1339,1334,2075,2075,2075,42,1208,1202,1199,0,1340,1334,1331,2076,2076,2076,42,1209,1198,1200,0,1341,1330,1332,2077,2077,2077,42,1209,1200,1201,0,1341,1332,1333,2078,2078,2078,42,1211,1210,1203,0,1343,1342,1335,2079,2079,2079,42,1211,1203,1212,0,1343,1335,1344,2080,2080,2080,42,1072,1214,1213,0,1200,1346,1345,2081,2081,2081,42,1072,1213,1070,0,1200,1345,1198,2082,2082,2082,42,1216,1215,1072,0,1348,1347,1200,2083,2083,2083,42,1216,1072,1068,0,1348,1200,1196,2084,2084,2084,42,1215,1217,1214,0,1347,1349,1346,2085,2085,2085,42,1215,1214,1072,0,1347,1346,1200,2086,2086,2086,42,1218,1071,1070,0,1350,1199,1198,2087,2087,2087,42,1218,1070,1213,0,1350,1198,1345,2088,2088,2088,42,1219,1214,1217,0,1351,1346,1349,2089,2089,2089,42,1219,1217,1220,0,1351,1349,1352,2090,2090,2090,42,1222,1221,1217,0,1354,1353,1349,2091,2091,2091,42,1222,1217,1215,0,1354,1349,1347,2092,2092,2092,42,1220,1217,1221,0,1352,1349,1353,2093,2093,2093,42,1220,1221,1223,0,1352,1353,1355,2094,2094,2094,42,1114,1224,1221,0,1244,1356,1353,2095,2095,2095,42,1114,1221,1222,0,1244,1353,1354,2096,2096,2096,42,1223,1221,1224,0,1355,1353,1356,2097,2097,2097,42,1223,1224,1225,0,1355,1356,1357,2098,2098,2098,42,1225,1224,1226,0,1357,1356,1358,2099,2099,2099,42,1225,1226,1227,0,1357,1358,1359,2100,2100,2100,42,1228,1225,1227,0,1360,1357,1359,2101,2101,2101,42,1228,1227,1229,0,1360,1359,1361,2102,2102,2102,42,1227,1226,1230,0,1359,1358,1362,2103,2103,2103,42,1227,1230,1231,0,1359,1362,1363,2104,2104,2104,42,1229,1227,1231,0,1361,1359,1363,2105,2105,2105,42,1229,1231,1232,0,1361,1363,1364,2106,2106,2106,42,1233,1228,1229,0,1365,1360,1361,2107,2107,2107,42,1233,1229,1234,0,1365,1361,1366,2108,2108,2108,42,1236,1235,1228,0,1368,1367,1360,2109,2109,2109,42,1236,1228,1233,0,1368,1360,1365,2110,2110,2110,42,1235,1223,1225,0,1367,1355,1357,2111,2111,2111,42,1235,1225,1228,0,1367,1357,1360,2112,2112,2112,42,1238,1237,1235,0,1370,1369,1367,2113,2113,2113,42,1238,1235,1236,0,1370,1367,1368,2114,2114,2114,42,1237,1220,1223,0,1369,1352,1355,2115,2115,2115,42,1237,1223,1235,0,1369,1355,1367,2116,2116,2116,42,1240,1239,1237,0,1372,1371,1369,2117,2117,2117,42,1240,1237,1238,0,1372,1369,1370,2118,2118,2118,42,1239,1219,1220,0,1371,1351,1352,2119,2119,2119,42,1239,1220,1237,0,1371,1352,1369,2120,2120,2120,42,1236,1242,1241,0,1368,1374,1373,2121,2121,2121,42,1236,1241,1238,0,1368,1373,1370,2122,2122,2122,42,1243,1240,1238,0,1375,1372,1370,2123,2123,2123,42,1243,1238,1241,0,1375,1370,1373,2124,2124,2124,42,1244,1241,1242,0,1376,1373,1374,2125,2125,2125,42,1244,1242,1245,0,1376,1374,1377,2126,2126,2126,42,1246,1243,1241,0,1378,1375,1373,2127,2127,2127,42,1246,1241,1244,0,1378,1373,1376,2128,2128,2128,42,1248,1247,1243,0,1380,1379,1375,2129,2129,2129,42,1248,1243,1246,0,1380,1375,1378,2130,2130,2130,42,1249,1246,1244,0,1381,1378,1376,2131,2131,2131,42,1249,1244,1250,0,1381,1376,1382,2132,2132,2132,42,1251,1248,1246,0,1383,1380,1378,2133,2133,2133,42,1251,1246,1249,0,1383,1378,1381,2134,2134,2134,42,1233,1252,1242,0,1365,1384,1374,2135,2135,2135,42,1233,1242,1236,0,1365,1374,1368,2136,2136,2136,42,1252,1253,1245,0,1384,1385,1377,2137,2137,2137,42,1252,1245,1242,0,1384,1377,1374,2138,2138,2138,42,1253,1252,1254,0,1385,1384,1386,2139,2139,2139,42,1253,1254,1255,0,1385,1386,1387,2140,2140,2140,42,1252,1233,1234,0,1384,1365,1366,2141,2141,2141,42,1252,1234,1254,0,1384,1366,1386,2142,2142,2142,42,1247,1256,1240,0,1379,1388,1372,2143,2143,2143,42,1247,1240,1243,0,1379,1372,1375,2144,2144,2144,42,1258,1257,1256,0,1390,1389,1388,2145,2145,2145,42,1258,1256,1247,0,1390,1388,1379,2146,2146,2146,42,1259,1258,1247,0,1391,1390,1379,2147,2147,2147,42,1259,1247,1248,0,1391,1379,1380,2148,2148,2148,42,1232,1260,1234,0,1364,1392,1366,2149,2149,2149,42,1232,1234,1229,0,1364,1366,1361,2150,2150,2150,42,1254,1234,1260,0,1386,1366,1392,2151,2151,2151,42,1254,1260,1261,0,1386,1392,1393,2152,2152,2152,42,1263,1262,1260,0,1395,1394,1392,2153,2153,2153,42,1263,1260,1232,0,1395,1392,1364,2154,2154,2154,42,1261,1260,1262,0,1393,1392,1394,2155,2155,2155,42,1261,1262,1264,0,1393,1394,1396,2156,2156,2156,42,1266,1265,1262,0,1399,1398,1397,2157,2157,2157,42,1266,1262,1263,0,1399,1397,1400,2158,2158,2158,42,1267,1266,1263,0,1401,1399,1400,2159,2159,2159,42,1267,1263,1268,0,1401,1400,1402,2160,2160,2160,42,1268,1263,1232,0,1403,1395,1364,2161,2161,2161,42,1268,1232,1231,0,1403,1364,1363,2162,2162,2162,42,1268,1270,1269,0,1402,1405,1404,2163,2163,2163,42,1268,1269,1267,0,1402,1404,1401,2164,2164,2164,42,1231,1230,1270,0,1363,1362,1406,2165,2165,2165,42,1231,1270,1268,0,1363,1406,1403,2166,2166,2166,42,1270,1272,1271,0,1405,1408,1407,2167,2167,2167,42,1270,1271,1269,0,1405,1407,1404,2168,2168,2168,42,1230,1113,1272,0,1362,1243,1409,2169,2169,2169,42,1230,1272,1270,0,1362,1409,1406,2170,2170,2170,42,1273,1261,1264,0,1410,1393,1396,2171,2171,2171,42,1273,1264,1274,0,1410,1396,1411,2172,2172,2172,42,1264,1276,1275,0,1414,1413,1412,2173,2173,2173,42,1264,1275,1274,0,1414,1412,1415,2174,2174,2174,42,1264,1262,1265,0,1414,1397,1398,2175,2175,2175,42,1264,1265,1276,0,1414,1398,1413,2176,2176,2176,42,1255,1254,1261,0,1387,1386,1393,2177,2177,2177,42,1255,1261,1273,0,1387,1393,1410,2178,2178,2178,42,1226,1112,1113,0,1358,1242,1243,2179,2179,2179,42,1226,1113,1230,0,1358,1243,1362,2180,2180,2180,42,1118,1272,1113,0,1248,1409,1243,2181,2181,2181,42,1118,1113,1109,0,1248,1243,1239,2182,2182,2182,42,1267,1278,1277,0,1401,1417,1416,2183,2183,2183,42,1267,1277,1266,0,1401,1416,1399,2184,2184,2184,42,1269,1279,1278,0,1404,1418,1417,2185,2185,2185,42,1269,1278,1267,0,1404,1417,1401,2186,2186,2186,42,1282,1281,1280,0,1421,1420,1419,2187,2187,2187,42,1282,1280,1283,0,1421,1419,1422,2188,2188,2188,42,1282,1283,1284,0,1421,1422,1423,2189,2189,2189,42,1282,1284,1285,0,1421,1423,1424,2190,2190,2190,42,1287,1286,1284,0,1426,1425,1423,2191,2191,2191,42,1287,1284,1283,0,1426,1423,1422,2192,2192,2192,42,1283,1280,1288,0,1422,1419,1427,2193,2193,2193,42,1283,1288,1287,0,1422,1427,1426,2194,2194,2194,42,1281,1282,1289,0,1420,1421,1428,2195,2195,2195,42,1281,1289,1250,0,1420,1428,1382,2196,2196,2196,42,1250,1289,1290,0,1382,1428,1429,2197,2197,2197,42,1250,1290,1249,0,1382,1429,1381,2198,2198,2198,42,1249,1290,1291,0,1381,1429,1430,2199,2199,2199,42,1249,1291,1251,0,1381,1430,1383,2200,2200,2200,42,1292,1251,1291,0,1431,1383,1430,2201,2201,2201,42,1292,1291,1293,0,1431,1430,1432,2202,2202,2202,42,1259,1248,1251,0,1391,1380,1383,2203,2203,2203,42,1259,1251,1292,0,1391,1383,1431,2204,2204,2204,42,1294,1292,1293,0,1433,1431,1432,2205,2205,2205,42,1294,1293,1295,0,1433,1432,1434,2206,2206,2206,42,1296,1294,1295,0,1435,1433,1434,2207,2207,2207,42,1296,1295,1297,0,1435,1434,1436,2208,2208,2208,42,1299,1298,1295,0,1438,1437,1434,2209,2209,2209,42,1299,1295,1293,0,1438,1434,1432,2210,2210,2210,42,1298,1300,1297,0,1437,1439,1436,2211,2211,2211,42,1298,1297,1295,0,1437,1436,1434,2212,2212,2212,42,1301,1299,1293,0,1440,1438,1432,2213,2213,2213,42,1301,1293,1291,0,1440,1432,1430,2214,2214,2214,42,1302,1298,1299,0,1441,1437,1438,2215,2215,2215,42,1302,1299,1303,0,1441,1438,1442,2216,2216,2216,42,1300,1298,1302,0,1439,1437,1441,2217,2217,2217,42,1300,1302,1304,0,1439,1441,1443,2218,2218,2218,42,1304,1302,1305,0,1443,1441,1444,2219,2219,2219,42,1304,1305,1306,0,1443,1444,1445,2220,2220,2220,42,1302,1303,1307,0,1441,1442,1446,2221,2221,2221,42,1302,1307,1305,0,1441,1446,1444,2222,2222,2222,42,1289,1309,1308,0,1428,1448,1447,2223,2223,2223,42,1289,1308,1290,0,1428,1447,1429,2224,2224,2224,42,1311,1310,1308,0,1450,1449,1447,2225,2225,2225,42,1311,1308,1309,0,1450,1447,1448,2226,2226,2226,42,1308,1301,1291,0,1447,1440,1430,2227,2227,2227,42,1308,1291,1290,0,1447,1430,1429,2228,2228,2228,42,1310,1312,1301,0,1449,1451,1440,2229,2229,2229,42,1310,1301,1308,0,1449,1440,1447,2230,2230,2230,42,1315,1314,1313,0,1454,1453,1452,2231,2231,2231,42,1315,1313,1316,0,1454,1452,1455,2232,2232,2232,42,1316,1313,1317,0,1455,1452,1456,2233,2233,2233,42,1316,1317,1318,0,1455,1456,1457,2234,2234,2234,42,1318,1319,1307,0,1457,1458,1446,2235,2235,2235,42,1318,1307,1316,0,1457,1446,1455,2236,2236,2236,42,1311,1309,1285,0,1450,1448,1424,2237,2237,2237,42,1311,1285,1320,0,1450,1424,1459,2238,2238,2238,42,1322,1321,1286,0,1461,1460,1425,2239,2239,2239,42,1322,1286,1287,0,1461,1425,1426,2240,2240,2240,42,1323,1322,1287,0,1462,1461,1426,2241,2241,2241,42,1323,1287,1288,0,1462,1426,1427,2242,2242,2242,42,1321,1322,1324,0,1460,1461,1463,2243,2243,2243,42,1321,1324,1325,0,1460,1463,1464,2244,2244,2244,42,1322,1323,1326,0,1461,1462,1465,2245,2245,2245,42,1322,1326,1324,0,1461,1465,1463,2246,2246,2246,42,1325,1328,1327,0,1464,1467,1466,2247,2247,2247,42,1325,1327,1321,0,1464,1466,1460,2248,2248,2248,42,1325,1324,1329,0,1470,1469,1468,2249,2249,2249,42,1325,1329,1330,0,1470,1468,1471,2250,2250,2250,42,1330,1331,1328,0,1471,1473,1472,2251,2251,2251,42,1330,1328,1325,0,1471,1472,1470,2252,2252,2252,42,1321,1327,1332,0,1460,1466,1474,2253,2253,2253,42,1321,1332,1286,0,1460,1474,1425,2254,2254,2254,42,1333,1332,1327,0,1475,1474,1466,2255,2255,2255,42,1333,1327,1334,0,1475,1466,1476,2256,2256,2256,42,1336,1335,1332,0,1478,1477,1474,2257,2257,2257,42,1336,1332,1333,0,1478,1474,1475,2258,2258,2258,42,1337,1336,1333,0,1479,1478,1475,2259,2259,2259,42,1337,1333,1338,0,1479,1475,1480,2260,2260,2260,42,1334,1339,1338,0,1476,1481,1480,2261,2261,2261,42,1334,1338,1333,0,1476,1480,1475,2262,2262,2262,42,1338,1341,1340,0,1480,1483,1482,2263,2263,2263,42,1338,1340,1337,0,1480,1482,1479,2264,2264,2264,42,1341,1338,1339,0,1483,1480,1481,2265,2265,2265,42,1341,1339,1342,0,1483,1481,1484,2266,2266,2266,42,1331,1344,1343,0,1473,1486,1485,2267,2267,2267,42,1331,1343,1328,0,1473,1485,1472,2268,2268,2268,42,1344,1346,1345,0,1486,1488,1487,2269,2269,2269,42,1344,1345,1343,0,1486,1487,1485,2270,2270,2270,42,1348,1347,1344,0,1490,1489,1486,2271,2271,2271,42,1348,1344,1331,0,1490,1486,1473,2272,2272,2272,42,1347,1349,1346,0,1489,1491,1488,2273,2273,2273,42,1347,1346,1344,0,1489,1488,1486,2274,2274,2274,42,1347,1348,1350,0,1489,1490,1492,2275,2275,2275,42,1347,1350,1351,0,1489,1492,1493,2276,2276,2276,42,1352,1350,1348,0,1494,1492,1490,2277,2277,2277,42,1352,1348,1353,0,1494,1490,1495,2278,2278,2278,42,1353,1348,1331,0,1495,1490,1473,2279,2279,2279,42,1353,1331,1330,0,1495,1473,1471,2280,2280,2280,42,1355,1354,1352,0,1497,1496,1494,2281,2281,2281,42,1355,1352,1353,0,1497,1494,1495,2282,2282,2282,42,1356,1354,1355,0,1498,1496,1497,2283,2283,2283,42,1356,1355,1357,0,1498,1497,1499,2284,2284,2284,42,1269,1271,1358,0,1404,1407,1500,2285,2285,2285,42,1269,1358,1279,0,1404,1500,1418,2286,2286,2286,42,1279,1358,1359,0,1418,1500,1501,2287,2287,2287,42,1279,1359,1360,0,1418,1501,1502,2288,2288,2288,42,1132,1358,1271,0,1264,1500,1407,2289,2289,2289,42,1132,1271,1120,0,1264,1407,1251,2290,2290,2290,42,1358,1132,1134,0,1500,1264,1266,2291,2291,2291,42,1358,1134,1359,0,1500,1266,1501,2292,2292,2292,42,1356,1357,1361,0,1498,1499,1503,2293,2293,2293,42,1356,1361,1362,0,1498,1503,1504,2294,2294,2294,42,1363,1356,1362,0,1505,1498,1504,2295,2295,2295,42,1363,1362,1364,0,1505,1504,1506,2296,2296,2296,42,1365,1354,1356,0,1507,1496,1498,2297,2297,2297,42,1365,1356,1363,0,1507,1498,1505,2298,2298,2298,42,1366,1365,1363,0,1508,1507,1505,2299,2299,2299,42,1366,1363,1367,0,1508,1505,1509,2300,2300,2300,42,1370,1369,1368,0,1512,1511,1510,2301,2301,2301,42,1370,1368,1371,0,1512,1510,1513,2302,2302,2302,42,1304,1369,1370,0,1443,1511,1512,2303,2303,2303,42,1304,1370,1300,0,1443,1512,1439,2304,2304,2304,42,1369,1304,1306,0,1511,1443,1445,2305,2305,2305,42,1369,1306,1372,0,1511,1445,1514,2306,2306,2306,42,1372,1373,1368,0,1514,1515,1510,2307,2307,2307,42,1372,1368,1369,0,1514,1510,1511,2308,2308,2308,42,1375,1374,1372,0,1517,1516,1514,2309,2309,2309,42,1375,1372,1306,0,1517,1514,1445,2310,2310,2310,42,1376,1375,1306,0,1518,1517,1445,2311,2311,2311,42,1376,1306,1305,0,1518,1445,1444,2312,2312,2312,42,1374,1377,1373,0,1516,1519,1515,2313,2313,2313,42,1374,1373,1372,0,1516,1515,1514,2314,2314,2314,42,1319,1376,1305,0,1458,1518,1444,2315,2315,2315,42,1319,1305,1307,0,1458,1444,1446,2316,2316,2316,42,1182,1378,1376,0,1314,1520,1518,2317,2317,2317,42,1182,1376,1319,0,1314,1518,1458,2318,2318,2318,42,1378,1379,1375,0,1520,1521,1517,2319,2319,2319,42,1378,1375,1376,0,1520,1517,1518,2320,2320,2320,42,1366,1297,1300,0,1508,1436,1439,2321,2321,2321,42,1366,1300,1370,0,1508,1439,1512,2322,2322,2322,42,1381,1380,1377,0,1523,1522,1519,2323,2323,2323,42,1381,1377,1374,0,1523,1519,1516,2324,2324,2324,42,1379,1381,1374,0,1521,1523,1516,2325,2325,2325,42,1379,1374,1375,0,1521,1516,1517,2326,2326,2326,42,1380,1381,1193,0,1522,1523,1325,2327,2327,2327,42,1380,1193,1194,0,1522,1325,1326,2328,2328,2328,42,1381,1379,1382,0,1523,1521,1524,2329,2329,2329,42,1381,1382,1193,0,1523,1524,1325,2330,2330,2330,42,1349,1384,1383,0,1491,1526,1525,2331,2331,2331,42,1349,1383,1346,0,1491,1525,1488,2332,2332,2332,42,1346,1383,1385,0,1488,1525,1527,2333,2333,2333,42,1346,1385,1345,0,1488,1527,1487,2334,2334,2334,42,1388,1387,1386,0,1530,1529,1528,2335,2335,2335,42,1388,1386,1389,0,1530,1528,1531,2336,2336,2336,42,1388,1389,1390,0,1530,1531,1532,2337,2337,2337,42,1388,1390,1391,0,1530,1532,1533,2338,2338,2338,42,1388,1393,1392,0,1536,1535,1534,2339,2339,2339,42,1388,1392,1387,0,1536,1534,1537,2340,2340,2340,42,1396,1395,1394,0,1540,1539,1538,2341,2341,2341,42,1396,1394,1391,0,1540,1538,1541,2342,2342,2342,42,1384,1397,1386,0,1526,1542,1528,2343,2343,2343,42,1384,1386,1383,0,1526,1528,1525,2344,2344,2344,42,1209,1389,1386,0,1341,1531,1528,2345,2345,2345,42,1209,1386,1397,0,1341,1528,1542,2346,2346,2346,42,1384,1398,1197,0,1526,1543,1329,2347,2347,2347,42,1384,1197,1397,0,1526,1329,1542,2348,2348,2348,42,1397,1197,1198,0,1542,1329,1330,2349,2349,2349,42,1397,1198,1209,0,1542,1330,1341,2350,2350,2350,42,1389,1209,1201,0,1531,1341,1333,2351,2351,2351,42,1389,1201,1390,0,1531,1333,1532,2352,2352,2352,42,1399,1341,1342,0,1544,1483,1484,2353,2353,2353,42,1399,1342,1392,0,1544,1484,1534,2354,2354,2354,42,1345,1385,1342,0,1546,1545,1484,2355,2355,2355,42,1345,1342,1339,0,1546,1484,1481,2356,2356,2356,42,1392,1342,1385,0,1534,1484,1545,2357,2357,2357,42,1392,1385,1387,0,1534,1545,1537,2358,2358,2358,42,1179,1318,1317,0,1311,1457,1456,2359,2359,2359,42,1179,1317,1178,0,1311,1456,1310,2360,2360,2360,42,1317,1337,1340,0,1456,1479,1482,2361,2361,2361,42,1317,1340,1178,0,1456,1482,1310,2362,2362,2362,42,1174,1178,1340,0,1306,1310,1482,2363,2363,2363,42,1174,1340,1400,0,1306,1482,1547,2364,2364,2364,42,1401,1187,1190,0,1548,1319,1322,2365,2365,2365,42,1401,1190,1402,0,1548,1322,1549,2366,2366,2366,42,1401,1403,1184,0,1548,1550,1316,2367,2367,2367,42,1401,1184,1187,0,1548,1316,1319,2368,2368,2368,42,1402,1190,1404,0,1549,1322,1551,2369,2369,2369,42,1402,1404,1405,0,1549,1551,1552,2370,2370,2370,42,1407,1406,1401,0,1554,1553,1548,2371,2371,2371,42,1407,1401,1402,0,1554,1548,1549,2372,2372,2372,42,1407,1402,1405,0,1554,1549,1552,2373,2373,2373,42,1407,1405,1408,0,1554,1552,1555,2374,2374,2374,42,1410,1409,1405,0,1557,1556,1552,2375,2375,2375,42,1410,1405,1404,0,1557,1552,1551,2376,2376,2376,42,1394,1412,1411,0,1538,1559,1558,2377,2377,2377,42,1394,1411,1393,0,1538,1558,1535,2378,2378,2378,42,1403,1395,1183,0,1550,1539,1315,2379,2379,2379,42,1403,1183,1184,0,1550,1315,1316,2380,2380,2380,42,1391,1390,1413,0,1533,1532,1560,2381,2381,2381,42,1391,1413,1396,0,1533,1560,1561,2382,2382,2382,42,1414,1396,1413,0,1562,1561,1560,2383,2383,2383,42,1414,1413,1415,0,1562,1560,1563,2384,2384,2384,42,1416,1414,1415,0,1564,1562,1563,2385,2385,2385,42,1416,1415,1417,0,1564,1563,1565,2386,2386,2386,42,1186,1183,1414,0,1318,1315,1566,2387,2387,2387,42,1186,1414,1416,0,1318,1566,1567,2388,2388,2388,42,1419,1418,1180,0,1569,1568,1312,2389,2389,2389,42,1419,1180,1181,0,1569,1312,1313,2390,2390,2390,42,1421,1409,1420,0,1571,1556,1570,2391,2391,2391,42,1421,1420,1422,0,1571,1570,1572,2392,2392,2392,42,1419,1423,1382,0,1569,1573,1524,2393,2393,2393,42,1419,1382,1418,0,1569,1524,1568,2394,2394,2394,42,1419,1422,1424,0,1569,1572,1574,2395,2395,2395,42,1419,1424,1423,0,1569,1574,1573,2396,2396,2396,42,1426,1425,1410,0,1576,1575,1557,2397,2397,2397,42,1426,1410,1427,0,1576,1557,1577,2398,2398,2398,42,1212,1425,1426,0,1344,1575,1576,2399,2399,2399,42,1212,1426,1211,0,1344,1576,1343,2400,2400,2400,42,1204,1428,1212,0,1336,1578,1344,2401,2401,2401,42,1204,1212,1203,0,1336,1344,1335,2402,2402,2402,42,1428,1420,1425,0,1578,1570,1575,2403,2403,2403,42,1428,1425,1212,0,1578,1575,1344,2404,2404,2404,42,1429,1359,1134,0,1579,1501,1266,2405,2405,2405,42,1429,1134,1136,0,1579,1266,1268,2406,2406,2406,42,1430,1360,1359,0,1580,1502,1501,2407,2407,2407,42,1430,1359,1429,0,1580,1501,1579,2408,2408,2408,42,1429,1432,1431,0,1579,1582,1581,2409,2409,2409,42,1429,1431,1430,0,1579,1581,1580,2410,2410,2410,42,1136,1139,1432,0,1268,1271,1582,2411,2411,2411,42,1136,1432,1429,0,1268,1582,1579,2412,2412,2412,42,1430,1431,1433,0,1580,1581,1583,2413,2413,2413,42,1430,1433,1434,0,1580,1583,1584,2414,2414,2414,42,1431,1436,1435,0,1581,1586,1585,2415,2415,2415,42,1431,1435,1433,0,1581,1585,1583,2416,2416,2416,42,1432,1437,1436,0,1582,1587,1586,2417,2417,2417,42,1432,1436,1431,0,1582,1586,1581,2418,2418,2418,42,1433,1435,1438,0,1583,1585,1588,2419,2419,2419,42,1433,1438,1439,0,1583,1588,1589,2420,2420,2420,42,1434,1433,1439,0,1584,1583,1589,2421,2421,2421,42,1434,1439,1440,0,1584,1589,1590,2422,2422,2422,42,1439,1438,1441,0,1589,1588,1591,2423,2423,2423,42,1439,1441,1442,0,1589,1591,1592,2424,2424,2424,42,1438,1444,1443,0,1588,1594,1593,2425,2425,2425,42,1438,1443,1441,0,1588,1593,1591,2426,2426,2426,42,1435,1445,1444,0,1585,1595,1594,2427,2427,2427,42,1435,1444,1438,0,1585,1594,1588,2428,2428,2428,42,1446,1434,1440,0,1596,1584,1590,2429,2429,2429,42,1446,1440,1447,0,1596,1590,1597,2430,2430,2430,42,1360,1430,1434,0,1502,1580,1584,2431,2431,2431,42,1360,1434,1446,0,1502,1584,1596,2432,2432,2432,42,1447,1440,1448,0,1597,1590,1598,2433,2433,2433,42,1447,1448,1449,0,1597,1598,1599,2434,2434,2434,42,1277,1447,1449,0,1416,1597,1599,2435,2435,2435,42,1277,1449,1450,0,1416,1599,1600,2436,2436,2436,42,1278,1446,1447,0,1417,1596,1597,2437,2437,2437,42,1278,1447,1277,0,1417,1597,1416,2438,2438,2438,42,1449,1448,1451,0,1599,1598,1601,2439,2439,2439,42,1449,1451,1452,0,1599,1601,1602,2440,2440,2440,42,1452,1453,1450,0,1602,1603,1600,2441,2441,2441,42,1452,1450,1449,0,1602,1600,1599,2442,2442,2442,42,1452,1451,1364,0,1602,1601,1506,2443,2443,2443,42,1452,1364,1362,0,1602,1506,1504,2444,2444,2444,42,1362,1361,1453,0,1504,1503,1603,2445,2445,2445,42,1362,1453,1452,0,1504,1603,1602,2446,2446,2446,42,1441,1443,1454,0,1591,1593,1604,2447,2447,2447,42,1441,1454,1455,0,1591,1604,1605,2448,2448,2448,42,1442,1441,1455,0,1592,1591,1605,2449,2449,2449,42,1442,1455,1456,0,1592,1605,1606,2450,2450,2450,42,1444,1445,1457,0,1594,1595,1607,2451,2451,2451,42,1444,1457,1458,0,1594,1607,1608,2452,2452,2452,42,1458,1457,1459,0,1608,1607,1609,2453,2453,2453,42,1458,1459,1460,0,1608,1609,1610,2454,2454,2454,42,1457,1445,1461,0,1607,1595,1611,2455,2455,2455,42,1457,1461,1218,0,1607,1611,1350,2456,2456,2456,42,1213,1459,1457,0,1345,1609,1607,2457,2457,2457,42,1213,1457,1218,0,1345,1607,1350,2458,2458,2458,42,1443,1444,1458,0,1593,1594,1608,2459,2459,2459,42,1443,1458,1257,0,1593,1608,1389,2460,2460,2460,42,1257,1458,1460,0,1389,1608,1610,2461,2461,2461,42,1257,1460,1256,0,1389,1610,1388,2462,2462,2462,42,1218,1461,1462,0,1350,1611,1612,2463,2463,2463,42,1218,1462,1071,0,1350,1612,1199,2464,2464,2464,42,1459,1213,1214,0,1609,1345,1346,2465,2465,2465,42,1459,1214,1219,0,1609,1346,1351,2466,2466,2466,42,1460,1459,1219,0,1610,1609,1351,2467,2467,2467,42,1460,1219,1239,0,1610,1351,1371,2468,2468,2468,42,1464,1463,1455,0,1614,1613,1605,2469,2469,2469,42,1464,1455,1454,0,1614,1605,1604,2470,2470,2470,42,1463,1465,1456,0,1613,1615,1606,2471,2471,2471,42,1463,1456,1455,0,1613,1606,1605,2472,2472,2472,42,1463,1464,1294,0,1613,1614,1433,2473,2473,2473,42,1463,1294,1296,0,1613,1433,1435,2474,2474,2474,42,1296,1367,1465,0,1435,1509,1615,2475,2475,2475,42,1296,1465,1463,0,1435,1615,1613,2476,2476,2476,42,1367,1296,1297,0,1509,1435,1436,2477,2477,2477,42,1367,1297,1366,0,1509,1436,1508,2478,2478,2478,42,1088,1012,1013,0,1216,1124,1125,2479,2479,2479,42,1088,1013,1085,0,1216,1125,1213,2480,2480,2480,42,1155,1039,1056,0,1287,1153,1175,2481,2481,2481,42,1155,1056,1154,0,1287,1175,1286,2482,2482,2482,42,1051,1160,1154,0,1169,1292,1286,2483,2483,2483,42,1051,1154,1056,0,1169,1286,1175,2484,2484,2484,42,1462,1437,1140,0,1612,1587,1272,2485,2485,2485,42,1462,1140,1066,0,1612,1272,1194,2486,2486,2486,42,1139,1140,1437,0,1271,1272,1587,2487,2487,2487,42,1139,1437,1432,0,1271,1587,1582,2488,2488,2488,42,1078,1077,1084,0,1206,1205,1212,2489,2489,2489,42,1078,1084,1173,0,1206,1212,1305,2490,2490,2490,42,1068,1069,1078,0,1196,1197,1206,2491,2491,2491,42,1068,1078,1216,0,1196,1206,1348,2492,2492,2492,42,1216,1078,1173,0,1348,1206,1305,2493,2493,2493,42,1216,1173,1466,0,1348,1305,1616,2494,2494,2494,42,1466,1173,1110,0,1616,1305,1240,2495,2495,2495,42,1466,1110,1111,0,1616,1240,1241,2496,2496,2496,42,1222,1466,1111,0,1354,1616,1241,2497,2497,2497,42,1222,1111,1114,0,1354,1241,1244,2498,2498,2498,42,1423,1192,1193,0,1573,1324,1325,2499,2499,2499,42,1423,1193,1382,0,1573,1325,1524,2500,2500,2500,42,1379,1378,1418,0,1521,1520,1568,2501,2501,2501,42,1379,1418,1382,0,1521,1568,1524,2502,2502,2502,42,1250,1244,1245,0,1382,1376,1377,2503,2503,2503,42,1250,1245,1281,0,1382,1377,1420,2504,2504,2504,42,1253,1280,1281,0,1385,1419,1420,2505,2505,2505,42,1253,1281,1245,0,1385,1420,1377,2506,2506,2506,42,1255,1288,1280,0,1387,1427,1419,2507,2507,2507,42,1255,1280,1253,0,1387,1419,1385,2508,2508,2508,42,1274,1275,1467,0,1415,1412,1617,2509,2509,2509,42,1274,1467,1326,0,1415,1617,1618,2510,2510,2510,42,1323,1273,1274,0,1462,1410,1411,2511,2511,2511,42,1323,1274,1326,0,1462,1411,1465,2512,2512,2512,42,1453,1276,1265,0,1603,1413,1398,2513,2513,2513,42,1453,1265,1450,0,1603,1398,1600,2514,2514,2514,42,1361,1275,1276,0,1503,1412,1413,2515,2515,2515,42,1361,1276,1453,0,1503,1413,1603,2516,2516,2516,42,1357,1467,1275,0,1499,1617,1412,2517,2517,2517,42,1357,1275,1361,0,1499,1412,1503,2518,2518,2518,42,1259,1292,1294,0,1391,1431,1433,2519,2519,2519,42,1259,1294,1464,0,1391,1433,1614,2520,2520,2520,42,1303,1299,1301,0,1442,1438,1440,2521,2521,2521,42,1303,1301,1312,0,1442,1440,1451,2522,2522,2522,42,1320,1285,1284,0,1459,1424,1423,2523,2523,2523,42,1320,1284,1335,0,1459,1423,1477,2524,2524,2524,42,1326,1467,1329,0,1618,1617,1468,2525,2525,2525,42,1326,1329,1324,0,1618,1468,1469,2526,2526,2526,42,1467,1357,1355,0,1617,1499,1497,2527,2527,2527,42,1467,1355,1329,0,1617,1497,1468,2528,2528,2528,42,1330,1329,1355,0,1471,1468,1497,2529,2529,2529,42,1330,1355,1353,0,1471,1497,1495,2530,2530,2530,42,1328,1343,1334,0,1467,1619,1476,2531,2531,2531,42,1328,1334,1327,0,1467,1476,1466,2532,2532,2532,42,1371,1352,1354,0,1513,1494,1496,2533,2533,2533,42,1371,1354,1365,0,1513,1496,1507,2534,2534,2534,42,1350,1352,1371,0,1492,1494,1513,2535,2535,2535,42,1350,1371,1368,0,1492,1513,1510,2536,2536,2536,42,1370,1371,1365,0,1512,1513,1507,2537,2537,2537,42,1370,1365,1366,0,1512,1507,1508,2538,2538,2538,42,1367,1363,1364,0,1509,1505,1506,2539,2539,2539,42,1367,1364,1465,0,1509,1506,1615,2540,2540,2540,42,1398,1380,1194,0,1543,1522,1326,2541,2541,2541,42,1398,1194,1197,0,1543,1326,1329,2542,2542,2542,42,1377,1468,1351,0,1519,1620,1493,2543,2543,2543,42,1377,1351,1373,0,1519,1493,1515,2544,2544,2544,42,1368,1373,1351,0,1510,1515,1493,2545,2545,2545,42,1368,1351,1350,0,1510,1493,1492,2546,2546,2546,42,1380,1398,1468,0,1522,1543,1620,2547,2547,2547,42,1380,1468,1377,0,1522,1620,1519,2548,2548,2548,42,1351,1468,1349,0,1493,1620,1491,2549,2549,2549,42,1351,1349,1347,0,1493,1491,1489,2550,2550,2550,42,1465,1364,1451,0,1615,1506,1601,2551,2551,2551,42,1465,1451,1456,0,1615,1601,1606,2552,2552,2552,42,1392,1393,1411,0,1534,1535,1558,2553,2553,2553,42,1392,1411,1399,0,1534,1558,1544,2554,2554,2554,42,1400,1399,1411,0,1547,1544,1558,2555,2555,2555,42,1400,1411,1469,0,1547,1558,1621,2556,2556,2556,42,1427,1410,1404,0,1577,1557,1551,2557,2557,2557,42,1427,1404,1470,0,1577,1551,1622,2558,2558,2558,42,1461,1436,1437,0,1611,1586,1587,2559,2559,2559,42,1461,1437,1462,0,1611,1587,1612,2560,2560,2560,42,1440,1439,1442,0,1590,1589,1592,2561,2561,2561,42,1440,1442,1448,0,1590,1592,1598,2562,2562,2562,42,1454,1443,1257,0,1604,1593,1389,2563,2563,2563,42,1454,1257,1258,0,1604,1389,1390,2564,2564,2564,42,1097,1157,1158,0,1225,1289,1290,2565,2565,2565,42,1097,1158,1096,0,1225,1290,1224,2566,2566,2566,42,1128,1101,1171,0,1260,1229,1303,2567,2567,2567,42,1128,1171,1169,0,1260,1303,1301,2568,2568,2568,42,1282,1285,1309,0,1421,1424,1448,2569,2569,2569,42,1282,1309,1289,0,1421,1448,1428,2570,2570,2570,42,1132,1130,1131,0,1264,1262,1263,2571,2571,2571,42,1132,1131,1133,0,1264,1263,1265,2572,2572,2572,42,1120,1271,1272,0,1251,1407,1408,2573,2573,2573,42,1120,1272,1118,0,1251,1408,1250,2574,2574,2574,42,1160,1162,1153,0,1292,1294,1285,2575,2575,2575,42,1160,1153,1154,0,1292,1285,1286,2576,2576,2576,42,1094,1074,1064,0,1222,1202,1192,2577,2577,2577,42,1094,1064,1063,0,1222,1192,1191,2578,2578,2578,42,1466,1222,1215,0,1616,1354,1347,2579,2579,2579,42,1466,1215,1216,0,1616,1347,1348,2580,2580,2580,42,1423,1424,1196,0,1573,1574,1328,2581,2581,2581,42,1423,1196,1192,0,1573,1328,1324,2582,2582,2582,42,1071,1462,1066,0,1199,1612,1194,2583,2583,2583,42,1071,1066,1060,0,1199,1194,1188,2584,2584,2584,42,1224,1114,1112,0,1356,1244,1242,2585,2585,2585,42,1224,1112,1226,0,1356,1242,1358,2586,2586,2586,42,1256,1460,1239,0,1388,1610,1371,2587,2587,2587,42,1256,1239,1240,0,1388,1371,1372,2588,2588,2588,42,1273,1323,1288,0,1410,1462,1427,2589,2589,2589,42,1273,1288,1255,0,1410,1427,1387,2590,2590,2590,42,1337,1317,1313,0,1479,1456,1452,2591,2591,2591,42,1337,1313,1336,0,1479,1452,1478,2592,2592,2592,42,1286,1332,1335,0,1425,1474,1477,2593,2593,2593,42,1286,1335,1284,0,1425,1477,1423,2594,2594,2594,42,1343,1345,1339,0,1619,1546,1481,2595,2595,2595,42,1343,1339,1334,0,1619,1481,1476,2596,2596,2596,42,1318,1179,1182,0,1457,1311,1314,2597,2597,2597,42,1318,1182,1319,0,1457,1314,1458,2598,2598,2598,42,1383,1386,1387,0,1525,1528,1529,2599,2599,2599,42,1383,1387,1385,0,1525,1529,1527,2600,2600,2600,42,1384,1349,1468,0,1526,1491,1620,2601,2601,2601,42,1384,1468,1398,0,1526,1620,1543,2602,2602,2602,42,1202,1413,1390,0,1334,1560,1532,2603,2603,2603,42,1202,1390,1201,0,1334,1532,1333,2604,2604,2604,42,1400,1340,1341,0,1547,1482,1483,2605,2605,2605,42,1400,1341,1399,0,1547,1483,1544,2606,2606,2606,42,1177,1174,1400,0,1309,1306,1547,2607,2607,2607,42,1177,1400,1469,0,1309,1547,1621,2608,2608,2608,42,1412,1406,1469,0,1559,1553,1621,2609,2609,2609,42,1412,1469,1411,0,1559,1621,1558,2610,2610,2610,42,1408,1405,1409,0,1555,1552,1556,2611,2611,2611,42,1408,1409,1421,0,1555,1556,1571,2612,2612,2612,42,1418,1378,1182,0,1568,1520,1314,2613,2613,2613,42,1418,1182,1180,0,1568,1314,1312,2614,2614,2614,42,1425,1420,1409,0,1575,1570,1556,2615,2615,2615,42,1425,1409,1410,0,1575,1556,1557,2616,2616,2616,42,1190,1189,1470,0,1322,1321,1622,2617,2617,2617,42,1190,1470,1404,0,1322,1622,1551,2618,2618,2618,42,1436,1461,1445,0,1586,1611,1595,2619,2619,2619,42,1436,1445,1435,0,1586,1595,1585,2620,2620,2620,42,1450,1265,1266,0,1600,1398,1399,2621,2621,2621,42,1450,1266,1277,0,1600,1399,1416,2622,2622,2622,42,1446,1278,1279,0,1596,1417,1418,2623,2623,2623,42,1446,1279,1360,0,1596,1418,1502,2624,2624,2624,42,1448,1442,1456,0,1598,1592,1606,2625,2625,2625,42,1448,1456,1451,0,1598,1606,1601,2626,2626,2626,42,1258,1259,1464,0,1390,1391,1614,2627,2627,2627,42,1258,1464,1454,0,1390,1614,1604,2628,2628,2628,42,1086,1052,1020,0,1214,1170,1132,2629,2629,2629,42,1086,1020,1471,0,1214,1132,1623,2630,2630,2630,42,1471,1020,1016,0,1623,1132,1128,2631,2631,2631,42,1471,1016,1165,0,1623,1128,1297,2632,2632,2632,42,1073,1472,1081,0,1201,1624,1209,2633,2633,2633,42,1073,1081,1076,0,1201,1209,1204,2634,2634,2634,42,1080,1086,1471,0,1208,1214,1623,2635,2635,2635,42,1080,1471,1079,0,1208,1623,1207,2636,2636,2636,42,1076,1081,1082,0,1204,1209,1210,2637,2637,2637,42,1076,1082,1083,0,1204,1210,1211,2638,2638,2638,42,1089,1087,1093,0,1217,1215,1221,2639,2639,2639,42,1089,1093,1090,0,1217,1221,1218,2640,2640,2640,42,1093,1087,1088,0,1221,1215,1216,2641,2641,2641,42,1093,1088,1473,0,1221,1216,1625,2642,2642,2642,42,1091,1092,1094,0,1219,1220,1222,2643,2643,2643,42,1091,1094,1095,0,1219,1222,1223,2644,2644,2644,42,1067,1098,1097,0,1195,1226,1225,2645,2645,2645,42,1067,1097,1095,0,1195,1225,1223,2646,2646,2646,42,1101,1128,1129,0,1229,1260,1261,2647,2647,2647,42,1101,1129,1100,0,1229,1261,1228,2648,2648,2648,42,1126,1128,1169,0,1258,1260,1301,2649,2649,2649,42,1126,1169,1125,0,1258,1301,1257,2650,2650,2650,42,1126,1122,1123,0,1258,1254,1255,2651,2651,2651,42,1126,1123,1127,0,1258,1255,1259,2652,2652,2652,42,1142,1143,1146,0,1274,1275,1278,2653,2653,2653,42,1142,1146,1147,0,1274,1278,1279,2654,2654,2654,42,1152,1145,1146,0,1284,1277,1278,2655,2655,2655,42,1152,1146,1149,0,1284,1278,1281,2656,2656,2656,42,1148,1145,1150,0,1280,1277,1282,2657,2657,2657,42,1148,1150,1153,0,1280,1282,1285,2658,2658,2658,42,1141,1142,1147,0,1273,1274,1279,2659,2659,2659,42,1141,1147,1157,0,1273,1279,1289,2660,2660,2660,42,1159,1089,1090,0,1291,1217,1218,2661,2661,2661,42,1159,1090,1161,0,1291,1218,1293,2662,2662,2662,42,1096,1158,1162,0,1224,1290,1294,2663,2663,2663,42,1096,1162,1161,0,1224,1294,1293,2664,2664,2664,42,1079,1471,1165,0,1207,1623,1297,2665,2665,2665,42,1079,1165,1163,0,1207,1297,1295,2666,2666,2666,42,1163,1165,1166,0,1295,1297,1298,2667,2667,2667,42,1163,1166,1167,0,1295,1298,1299,2668,2668,2668,42,1167,1166,1124,0,1299,1298,1256,2669,2669,2669,42,1167,1124,1125,0,1299,1256,1257,2670,2670,2670,42,1171,1115,1116,0,1303,1245,1246,2671,2671,2671,42,1171,1116,1170,0,1303,1246,1302,2672,2672,2672,42,1172,1164,1168,0,1304,1296,1300,2673,2673,2673,42,1172,1168,1170,0,1304,1300,1302,2674,2674,2674,42,1083,1082,1164,0,1211,1210,1296,2675,2675,2675,42,1083,1164,1172,0,1211,1296,1304,2676,2676,2676,42,1098,1141,1157,0,1226,1273,1289,2677,2677,2677,42,1098,1157,1097,0,1226,1289,1225,2678,2678,2678,42,1101,1102,1115,0,1229,1230,1245,2679,2679,2679,42,1101,1115,1171,0,1229,1245,1303,2680,2680,2680,42,1158,1148,1153,0,1290,1280,1285,2681,2681,2681,42,1158,1153,1162,0,1290,1285,1294,2682,2682,2682,42,1139,1136,1137,0,1271,1268,1269,2683,2683,2683,42,1139,1137,1138,0,1271,1269,1270,2684,2684,2684,42,1131,1105,1474,0,1263,1235,1626,2685,2685,2685,42,1131,1474,264,0,1263,1626,1627,2686,2686,2686,42,1186,1476,1475,0,1318,1629,1628,2687,2687,2687,42,1186,1475,1185,0,1318,1628,1317,2688,2688,2688,42,1188,1185,1475,0,1320,1317,1628,2689,2689,2689,42,1188,1475,1477,0,1320,1628,1630,2690,2690,2690,42,1188,1477,1478,0,1320,1630,1631,2691,2691,2691,42,1188,1478,1189,0,1320,1631,1321,2692,2692,2692,42,1480,1479,1210,0,1633,1632,1342,2693,2693,2693,42,1480,1210,1211,0,1633,1342,1343,2694,2694,2694,42,1186,1416,1481,0,1318,1567,1634,2695,2695,2695,42,1186,1481,1476,0,1318,1634,1629,2696,2696,2696,42,1482,1426,1427,0,1635,1576,1577,2697,2697,2697,42,1482,1427,1483,0,1635,1577,1636,2698,2698,2698,42,1211,1426,1482,0,1343,1576,1635,2699,2699,2699,42,1211,1482,1480,0,1343,1635,1633,2700,2700,2700,42,1470,1189,1478,0,1622,1321,1631,2701,2701,2701,42,1470,1478,1484,0,1622,1631,1637,2702,2702,2702,42,1484,1483,1427,0,1637,1636,1577,2703,2703,2703,42,1484,1427,1470,0,1637,1577,1622,2704,2704,2704,42,1415,1413,1202,0,1563,1560,1334,2705,2705,2705,42,1415,1202,1207,0,1563,1334,1339,2706,2706,2706,42,1485,1207,1208,0,1638,1339,1340,2707,2707,2707,42,1485,1208,1486,0,1638,1340,1639,2708,2708,2708,42,1206,1203,1210,0,1338,1335,1342,2709,2709,2709,42,1206,1210,1487,0,1338,1342,1640,2710,2710,2710,42,1207,1485,1417,0,1339,1638,1565,2711,2711,2711,42,1207,1417,1415,0,1339,1565,1563,2712,2712,2712,42,1416,1417,1488,0,1564,1565,1641,2713,2713,2713,42,1416,1488,1481,0,1564,1641,1642,2714,2714,2714,42,1489,1485,1486,0,1643,1638,1639,2715,2715,2715,42,1489,1486,1490,0,1643,1639,1644,2716,2716,2716,42,1210,1479,1491,0,1342,1632,1645,2717,2717,2717,42,1210,1491,1487,0,1342,1645,1640,2718,2718,2718,42,1485,1489,1488,0,1638,1643,1641,2719,2719,2719,42,1485,1488,1417,0,1638,1641,1565,2720,2720,2720,42,1123,1011,4582,0,1255,1123,265,2721,2721,2721,42,1123,4582,5015,0,1255,265,266,2722,2722,2722,42,5016,5017,1103,0,267,268,1231,2723,2723,2723,42,5016,1103,1100,0,267,1231,1228,2724,2724,2724,42,5017,5018,1104,0,1647,1646,1232,2725,2725,2725,42,5017,1104,1103,0,1647,1232,1233,2726,2726,2726,42,1492,5016,1100,0,269,267,1228,2727,2727,2727,42,1492,1100,1129,0,269,1228,1261,2728,2728,2728,42,1131,264,1493,0,1263,1627,1648,2729,2729,2729,42,1131,1493,1133,0,1263,1648,1265,2730,2730,2730,42,5019,1149,1144,0,1649,1281,1276,2731,2731,2731,42,5019,1144,238,0,1649,1276,1650,2732,2732,2732,42,265,1151,1152,0,1651,1283,1284,2733,2733,2733,42,265,1152,1494,0,1651,1284,1652,2734,2734,2734,42,1494,1152,1149,0,1652,1284,1281,2735,2735,2735,42,1494,1149,5019,0,1652,1281,1649,2736,2736,2736,42,4581,1038,1156,0,1177,1152,1288,2737,2737,2737,42,4581,1156,5020,0,1177,1288,1653,2738,2738,2738,42,1133,1493,238,0,1265,1648,1650,2739,2739,2739,42,1133,238,1144,0,1265,1650,1276,2740,2740,2740,42,5020,1156,1151,0,1653,1288,1283,2741,2741,2741,42,5020,1151,265,0,1653,1283,1651,2742,2742,2742,42,5018,1474,1105,0,1646,1626,1235,2743,2743,2743,42,5018,1105,1104,0,1646,1235,1232,2744,2744,2744,42,1092,1495,1074,0,1220,1654,1202,2745,2745,2745,42,1092,1074,1094,0,1220,1202,1222,2746,2746,2746,42,1496,1085,1086,0,1655,1213,1214,2747,2747,2747,42,1496,1086,1080,0,1655,1214,1208,2748,2748,2748,42,1495,1092,1093,0,1654,1220,1221,2749,2749,2749,42,1495,1093,1473,0,1654,1221,1625,2750,2750,2750,42,1472,1496,1080,0,1624,1655,1208,2751,2751,2751,42,1472,1080,1081,0,1624,1208,1209,2752,2752,2752,42,1472,1073,1074,0,1624,1201,1202,2753,2753,2753,42,1472,1074,1495,0,1624,1202,1654,2754,2754,2754,42,1496,1472,1495,0,1655,1624,1654,2755,2755,2755,42,1496,1495,1473,0,1655,1654,1625,2756,2756,2756,42,1085,1496,1473,0,1213,1655,1625,2757,2757,2757,42,1085,1473,1088,0,1213,1625,1216,2758,2758,2758,42,1042,1043,237,0,1157,1158,1185,2759,2759,2759,42,1042,237,5023,0,1157,1185,1656,2760,2760,2760,42,4406,897,1042,0,1657,1156,1157,2761,2761,2761,42,4406,1042,5023,0,1657,1157,1656,2762,2762,2762,42,1129,1127,1497,0,1261,1259,270,2763,2763,2763,42,1129,1497,1492,0,1261,270,269,2764,2764,2764,42,5015,1497,1127,0,266,270,1259,2765,2765,2765,42,5015,1127,1123,0,266,1259,1255,2766,2766,2766,42,1500,1499,1498,0,1660,1659,1658,2767,2767,2767,42,1500,1498,1501,0,1660,1658,1661,2768,2768,2768,42,1498,1475,1476,0,1658,1628,1629,2769,2769,2769,42,1498,1476,1502,0,1658,1629,1662,2770,2770,2770,42,1505,1504,1503,0,1665,1664,1663,2771,2771,2771,42,1505,1503,1506,0,1665,1663,1666,2772,2772,2772,42,1507,1503,1504,0,1667,1663,1664,2773,2773,2773,42,1507,1504,1501,0,1667,1664,1668,2774,2774,2774,42,1508,1501,1504,0,1669,1668,1664,2775,2775,2775,42,1508,1504,1509,0,1669,1664,1670,2776,2776,2776,42,1509,1504,1505,0,1670,1664,1665,2777,2777,2777,42,1509,1505,1510,0,1670,1665,1671,2778,2778,2778,42,1510,1512,1511,0,1671,1673,1672,2779,2779,2779,42,1510,1511,1513,0,1671,1672,1674,2780,2780,2780,42,1514,1512,1510,0,1675,1673,1671,2781,2781,2781,42,1514,1510,1515,0,1675,1671,1676,2782,2782,2782,42,1513,1516,1509,0,1674,1677,1670,2783,2783,2783,42,1513,1509,1510,0,1674,1670,1671,2784,2784,2784,42,1519,1518,1517,0,1680,1679,1678,2785,2785,2785,42,1519,1517,1520,0,1680,1678,1681,2786,2786,2786,42,1521,1519,1520,0,1682,1680,1681,2787,2787,2787,42,1521,1520,1522,0,1682,1681,1683,2788,2788,2788,42,1524,1523,1518,0,1685,1684,1679,2789,2789,2789,42,1524,1518,1519,0,1685,1679,1680,2790,2790,2790,42,1518,1506,1503,0,1679,1666,1663,2791,2791,2791,42,1518,1503,1517,0,1679,1663,1678,2792,2792,2792,42,1525,1506,1518,0,1686,1666,1679,2793,2793,2793,42,1525,1518,1523,0,1686,1679,1684,2794,2794,2794,42,1513,1527,1526,0,1674,1688,1687,2795,2795,2795,42,1513,1526,1516,0,1674,1687,1677,2796,2796,2796,42,1527,1529,1528,0,1688,1690,1689,2797,2797,2797,42,1527,1528,1526,0,1688,1689,1687,2798,2798,2798,42,1532,1531,1530,0,1693,1692,1691,2799,2799,2799,42,1532,1530,1533,0,1693,1691,1694,2800,2800,2800,42,1534,1532,1533,0,1695,1693,1694,2801,2801,2801,42,1534,1533,1511,0,1695,1694,1672,2802,2802,2802,42,1536,1535,1483,0,1697,1696,1636,2803,2803,2803,42,1536,1483,1484,0,1697,1636,1637,2804,2804,2804,42,1537,1536,1484,0,1698,1697,1637,2805,2805,2805,42,1537,1484,1478,0,1698,1637,1631,2806,2806,2806,42,1540,1539,1538,0,1701,1700,1699,2807,2807,2807,42,1540,1538,1541,0,1701,1699,1702,2808,2808,2808,42,1544,1543,1542,0,1705,1704,1703,2809,2809,2809,42,1544,1542,1545,0,1705,1703,1706,2810,2810,2810,42,1543,1547,1546,0,1704,1708,1707,2811,2811,2811,42,1543,1546,1542,0,1704,1707,1703,2812,2812,2812,42,1549,1548,1543,0,1710,1709,1704,2813,2813,2813,42,1549,1543,1544,0,1710,1704,1705,2814,2814,2814,42,1548,1550,1547,0,1709,1711,1708,2815,2815,2815,42,1548,1547,1543,0,1709,1708,1704,2816,2816,2816,42,1548,1549,1551,0,1714,1713,1712,2817,2817,2817,42,1548,1551,1552,0,1714,1712,1715,2818,2818,2818,42,1550,1548,1552,0,1716,1714,1715,2819,2819,2819,42,1550,1552,1553,0,1716,1715,1717,2820,2820,2820,42,1556,1555,1554,0,1720,1719,1718,2821,2821,2821,42,1556,1554,1557,0,1720,1718,1721,2822,2822,2822,42,1557,1559,1558,0,1721,1723,1722,2823,2823,2823,42,1557,1558,1556,0,1721,1722,1720,2824,2824,2824,42,1559,1557,1560,0,1723,1721,1724,2825,2825,2825,42,1559,1560,1561,0,1723,1724,1725,2826,2826,2826,42,1557,1554,1562,0,1721,1718,1726,2827,2827,2827,42,1557,1562,1560,0,1721,1726,1724,2828,2828,2828,42,1564,1545,1563,0,1728,1706,1727,2829,2829,2829,42,1564,1563,1565,0,1728,1727,1729,2830,2830,2830,42,1568,1567,1566,0,1732,1731,1730,2831,2831,2831,42,1568,1566,1569,0,1732,1730,1733,2832,2832,2832,42,1568,1569,1570,0,1732,1733,1734,2833,2833,2833,42,1568,1570,1571,0,1732,1734,1735,2834,2834,2834,42,1574,1573,1572,0,1738,1737,1736,2835,2835,2835,42,1574,1572,1575,0,1738,1736,1739,2836,2836,2836,42,1556,1558,1573,0,1720,1722,1740,2837,2837,2837,42,1556,1573,1574,0,1720,1740,1741,2838,2838,2838,42,1575,1577,1576,0,1739,1743,1742,2839,2839,2839,42,1575,1576,1574,0,1739,1742,1738,2840,2840,2840,42,1555,1556,1574,0,1719,1720,1741,2841,2841,2841,42,1555,1574,1576,0,1719,1741,1744,2842,2842,2842,42,1579,1578,1552,0,1746,1745,1715,2843,2843,2843,42,1579,1552,1551,0,1746,1715,1712,2844,2844,2844,42,1580,1576,1577,0,1747,1742,1743,2845,2845,2845,42,1580,1577,1581,0,1747,1743,1748,2846,2846,2846,42,1581,1577,1582,0,1748,1743,1749,2847,2847,2847,42,1581,1582,1583,0,1748,1749,1750,2848,2848,2848,42,1553,1552,1578,0,1717,1715,1745,2849,2849,2849,42,1553,1578,1584,0,1717,1745,1751,2850,2850,2850,42,1584,1578,1585,0,1751,1745,1752,2851,2851,2851,42,1584,1585,1586,0,1751,1752,1753,2852,2852,2852,42,1585,1578,1579,0,1752,1745,1746,2853,2853,2853,42,1585,1579,1587,0,1752,1746,1754,2854,2854,2854,42,1553,1584,1588,0,1717,1751,1755,2855,2855,2855,42,1553,1588,1550,0,1717,1755,1716,2856,2856,2856,42,1547,1590,1589,0,1708,1757,1756,2857,2857,2857,42,1547,1589,1546,0,1708,1756,1707,2858,2858,2858,42,1590,1591,1524,0,1759,1758,1685,2859,2859,2859,42,1590,1524,1589,0,1759,1685,1760,2860,2860,2860,42,1546,1589,1521,0,1707,1756,1761,2861,2861,2861,42,1546,1521,1592,0,1707,1761,1762,2862,2862,2862,42,1595,1594,1593,0,1765,1764,1763,2863,2863,2863,42,1595,1593,1596,0,1765,1763,1766,2864,2864,2864,42,1597,1595,1596,0,1767,1765,1766,2865,2865,2865,42,1597,1596,1591,0,1767,1766,1758,2866,2866,2866,42,1594,1595,1598,0,1764,1765,1768,2867,2867,2867,42,1594,1598,1599,0,1764,1768,1769,2868,2868,2868,42,1595,1597,1586,0,1765,1767,1753,2869,2869,2869,42,1595,1586,1598,0,1765,1753,1768,2870,2870,2870,42,1594,1601,1600,0,1764,1771,1770,2871,2871,2871,42,1594,1600,1593,0,1764,1770,1763,2872,2872,2872,42,1601,1594,1599,0,1771,1764,1769,2873,2873,2873,42,1601,1599,1602,0,1771,1769,1772,2874,2874,2874,42,1522,1603,1592,0,1774,1773,1762,2875,2875,2875,42,1522,1592,1521,0,1774,1762,1761,2876,2876,2876,42,1587,1579,1583,0,1754,1746,1750,2877,2877,2877,42,1587,1583,1604,0,1754,1750,1775,2878,2878,2878,42,1607,1606,1605,0,1778,1777,1776,2879,2879,2879,42,1607,1605,1608,0,1778,1776,1779,2880,2880,2880,42,1609,1607,1608,0,1780,1778,1779,2881,2881,2881,42,1609,1608,1610,0,1780,1779,1781,2882,2882,2882,42,1612,1611,1608,0,1783,1782,1779,2883,2883,2883,42,1612,1608,1605,0,1783,1779,1776,2884,2884,2884,42,1611,1613,1610,0,1782,1784,1781,2885,2885,2885,42,1611,1610,1608,0,1782,1781,1779,2886,2886,2886,42,1616,1615,1614,0,1787,1786,1785,2887,2887,2887,42,1616,1614,1617,0,1787,1785,1788,2888,2888,2888,42,1616,1619,1618,0,1787,1790,1789,2889,2889,2889,42,1616,1618,1620,0,1787,1789,1791,2890,2890,2890,42,1622,1620,1621,0,1793,1791,1792,2891,2891,2891,42,1622,1621,1623,0,1793,1792,1794,2892,2892,2892,42,1620,1618,1624,0,1791,1789,1795,2893,2893,2893,42,1620,1624,1621,0,1791,1795,1792,2894,2894,2894,42,1626,1625,1617,0,1797,1796,1788,2895,2895,2895,42,1626,1617,1627,0,1797,1788,1798,2896,2896,2896,42,1616,1617,1625,0,1787,1788,1796,2897,2897,2897,42,1616,1625,1619,0,1787,1796,1790,2898,2898,2898,42,1619,1625,1628,0,1790,1796,1799,2899,2899,2899,42,1619,1628,1629,0,1790,1799,1800,2900,2900,2900,42,1630,1628,1625,0,1801,1799,1796,2901,2901,2901,42,1630,1625,1626,0,1801,1796,1797,2902,2902,2902,42,1614,1631,1627,0,1785,1802,1798,2903,2903,2903,42,1614,1627,1617,0,1785,1798,1788,2904,2904,2904,42,1632,1627,1631,0,1805,1804,1803,2905,2905,2905,42,1632,1631,1633,0,1805,1803,1806,2906,2906,2906,42,1633,1631,1634,0,1806,1803,1807,2907,2907,2907,42,1633,1634,1635,0,1806,1807,1808,2908,2908,2908,42,1636,1601,1602,0,1809,1771,1772,2909,2909,2909,42,1636,1602,1637,0,1809,1772,1810,2910,2910,2910,42,1640,1639,1638,0,1813,1812,1811,2911,2911,2911,42,1640,1638,1641,0,1813,1811,1814,2912,2912,2912,42,1601,1636,1642,0,1771,1809,1815,2913,2913,2913,42,1601,1642,1600,0,1771,1815,1770,2914,2914,2914,42,1636,1641,1643,0,1809,1814,1816,2915,2915,2915,42,1636,1643,1642,0,1809,1816,1815,2916,2916,2916,42,1645,1644,1514,0,1818,1817,1675,2917,2917,2917,42,1645,1514,1643,0,1818,1675,1816,2918,2918,2918,42,1648,1647,1646,0,1821,1820,1819,2919,2919,2919,42,1648,1646,1649,0,1821,1819,1822,2920,2920,2920,42,1651,1650,1647,0,1824,1823,1820,2921,2921,2921,42,1651,1647,1648,0,1824,1820,1821,2922,2922,2922,42,1647,1653,1652,0,1820,1826,1825,2923,2923,2923,42,1647,1652,1646,0,1820,1825,1819,2924,2924,2924,42,1653,1647,1650,0,1826,1820,1823,2925,2925,2925,42,1653,1650,1654,0,1826,1823,1827,2926,2926,2926,42,1649,1646,1655,0,1822,1819,1828,2927,2927,2927,42,1649,1655,1656,0,1822,1828,1829,2928,2928,2928,42,1657,1655,1646,0,1830,1828,1819,2929,2929,2929,42,1657,1646,1652,0,1830,1819,1825,2930,2930,2930,42,1660,1659,1658,0,1833,1832,1831,2931,2931,2931,42,1660,1658,1661,0,1833,1831,1834,2932,2932,2932,42,1661,1658,1662,0,1834,1831,1835,2933,2933,2933,42,1661,1662,1663,0,1834,1835,1836,2934,2934,2934,42,1664,1660,1661,0,1837,1833,1834,2935,2935,2935,42,1664,1661,1665,0,1837,1834,1838,2936,2936,2936,42,1665,1661,1663,0,1838,1834,1836,2937,2937,2937,42,1665,1663,1567,0,1838,1836,1731,2938,2938,2938,42,1668,1667,1666,0,1841,1840,1839,2939,2939,2939,42,1668,1666,1669,0,1841,1839,1842,2940,2940,2940,42,1669,1666,1670,0,1842,1839,1843,2941,2941,2941,42,1669,1670,1671,0,1842,1843,1844,2942,2942,2942,42,1672,1668,1669,0,1845,1841,1842,2943,2943,2943,42,1672,1669,1673,0,1845,1842,1846,2944,2944,2944,42,1673,1669,1671,0,1846,1842,1844,2945,2945,2945,42,1673,1671,1674,0,1846,1844,1847,2946,2946,2946,42,1675,1667,1668,0,1848,1840,1841,2947,2947,2947,42,1675,1668,1676,0,1848,1841,1849,2948,2948,2948,42,1677,1675,1676,0,1850,1848,1849,2949,2949,2949,42,1677,1676,1678,0,1850,1849,1851,2950,2950,2950,42,1668,1672,1678,0,1841,1845,1851,2951,2951,2951,42,1668,1678,1676,0,1841,1851,1849,2952,2952,2952,42,1671,1670,1679,0,1844,1843,1852,2953,2953,2953,42,1671,1679,1680,0,1844,1852,1853,2954,2954,2954,42,1674,1671,1680,0,1847,1844,1853,2955,2955,2955,42,1674,1680,1681,0,1847,1853,1854,2956,2956,2956,42,1682,1674,1681,0,1855,1847,1854,2957,2957,2957,42,1682,1681,1683,0,1855,1854,1856,2958,2958,2958,42,1684,1673,1674,0,1857,1846,1847,2959,2959,2959,42,1684,1674,1682,0,1857,1847,1855,2960,2960,2960,42,1670,1686,1685,0,1843,1859,1858,2961,2961,2961,42,1670,1685,1679,0,1843,1858,1852,2962,2962,2962,42,1686,1688,1687,0,1859,1861,1860,2963,2963,2963,42,1686,1687,1685,0,1859,1860,1858,2964,2964,2964,42,1688,1686,1689,0,1861,1859,1862,2965,2965,2965,42,1688,1689,1690,0,1861,1862,1863,2966,2966,2966,42,1691,1689,1686,0,1864,1862,1859,2967,2967,2967,42,1691,1686,1670,0,1864,1859,1843,2968,2968,2968,42,1692,1685,1687,0,1865,1858,1860,2969,2969,2969,42,1692,1687,1693,0,1865,1860,1866,2970,2970,2970,42,1693,1687,1694,0,1866,1860,1867,2971,2971,2971,42,1693,1694,1695,0,1866,1867,1868,2972,2972,2972,42,1687,1688,1696,0,1860,1861,1869,2973,2973,2973,42,1687,1696,1694,0,1860,1869,1867,2974,2974,2974,42,1693,1698,1697,0,1866,1871,1870,2975,2975,2975,42,1693,1697,1692,0,1866,1870,1865,2976,2976,2976,42,1698,1693,1695,0,1871,1866,1868,2977,2977,2977,42,1698,1695,1699,0,1871,1868,1872,2978,2978,2978,42,1692,1700,1679,0,1865,1873,1852,2979,2979,2979,42,1692,1679,1685,0,1865,1852,1858,2980,2980,2980,42,1700,1681,1680,0,1873,1854,1853,2981,2981,2981,42,1700,1680,1679,0,1873,1853,1852,2982,2982,2982,42,1697,1701,1700,0,1870,1874,1873,2983,2983,2983,42,1697,1700,1692,0,1870,1873,1865,2984,2984,2984,42,1700,1701,1683,0,1873,1874,1856,2985,2985,2985,42,1700,1683,1681,0,1873,1856,1854,2986,2986,2986,42,1621,1624,1702,0,1877,1876,1875,2987,2987,2987,42,1621,1702,1703,0,1877,1875,1878,2988,2988,2988,42,1624,1705,1704,0,1876,1880,1879,2989,2989,2989,42,1624,1704,1702,0,1876,1879,1875,2990,2990,2990,42,1618,1706,1705,0,1789,1882,1881,2991,2991,2991,42,1618,1705,1624,0,1789,1881,1795,2992,2992,2992,42,1709,1708,1707,0,1885,1884,1883,2993,2993,2993,42,1709,1707,1710,0,1885,1883,1886,2994,2994,2994,42,1708,1709,1711,0,1884,1885,1887,2995,2995,2995,42,1708,1711,1712,0,1884,1887,1888,2996,2996,2996,42,1708,1714,1713,0,1884,1890,1889,2997,2997,2997,42,1708,1713,1707,0,1884,1889,1883,2998,2998,2998,42,1712,1715,1714,0,1888,1891,1890,2999,2999,2999,42,1712,1714,1708,0,1888,1890,1884,3000,3000,3000,42,1718,1717,1716,0,1894,1893,1892,3001,3001,3001,42,1718,1716,1719,0,1894,1892,1895,3002,3002,3002,42,1575,1572,1716,0,1739,1736,1892,3003,3003,3003,42,1575,1716,1717,0,1739,1892,1893,3004,3004,3004,42,1623,1621,1703,0,1896,1877,1878,3005,3005,3005,42,1623,1703,1720,0,1896,1878,1897,3006,3006,3006,42,1720,1635,1634,0,1897,1808,1807,3007,3007,3007,42,1720,1634,1623,0,1897,1807,1896,3008,3008,3008,42,1723,1722,1721,0,1900,1899,1898,3009,3009,3009,42,1723,1721,1724,0,1900,1898,1901,3010,3010,3010,42,1724,1721,1725,0,1901,1898,1902,3011,3011,3011,42,1724,1725,1726,0,1901,1902,1903,3012,3012,3012,42,1728,1727,1723,0,1905,1904,1900,3013,3013,3013,42,1728,1723,1724,0,1905,1900,1901,3014,3014,3014,42,1726,1729,1728,0,1903,1906,1905,3015,3015,3015,42,1726,1728,1724,0,1903,1905,1901,3016,3016,3016,42,1726,1725,1730,0,1903,1902,1907,3017,3017,3017,42,1726,1730,1731,0,1903,1907,1908,3018,3018,3018,42,1733,1732,1730,0,1910,1909,1907,3019,3019,3019,42,1733,1730,1725,0,1910,1907,1902,3020,3020,3020,42,1734,1733,1725,0,1911,1910,1902,3021,3021,3021,42,1734,1725,1721,0,1911,1902,1898,3022,3022,3022,42,1731,1735,1729,0,1908,1912,1906,3023,3023,3023,42,1731,1729,1726,0,1908,1906,1903,3024,3024,3024,42,1737,1736,1730,0,1914,1913,1907,3025,3025,3025,42,1737,1730,1732,0,1914,1907,1909,3026,3026,3026,42,1739,1738,1732,0,1916,1915,1909,3027,3027,3027,42,1739,1732,1733,0,1916,1909,1910,3028,3028,3028,42,1738,1740,1737,0,1915,1917,1914,3029,3029,3029,42,1738,1737,1732,0,1915,1914,1909,3030,3030,3030,42,1733,1734,1741,0,1910,1911,1918,3031,3031,3031,42,1733,1741,1739,0,1910,1918,1916,3032,3032,3032,42,1739,1741,1742,0,1916,1918,1919,3033,3033,3033,42,1739,1742,1743,0,1916,1919,1920,3034,3034,3034,42,1738,1739,1743,0,1915,1916,1920,3035,3035,3035,42,1738,1743,1744,0,1915,1920,1921,3036,3036,3036,42,1746,1745,1729,0,1923,1922,1906,3037,3037,3037,42,1746,1729,1735,0,1923,1906,1912,3038,3038,3038,42,1729,1745,1747,0,1906,1922,1924,3039,3039,3039,42,1729,1747,1728,0,1906,1924,1905,3040,3040,3040,42,1746,1749,1748,0,1923,1926,1925,3041,3041,3041,42,1746,1748,1745,0,1923,1925,1922,3042,3042,3042,42,1750,1749,1746,0,1927,1926,1923,3043,3043,3043,42,1750,1746,1751,0,1927,1923,1928,3044,3044,3044,42,1735,1752,1751,0,1912,1929,1928,3045,3045,3045,42,1735,1751,1746,0,1912,1928,1923,3046,3046,3046,42,1753,1747,1745,0,1930,1924,1922,3047,3047,3047,42,1753,1745,1748,0,1930,1922,1925,3048,3048,3048,42,1754,1753,1748,0,1931,1930,1925,3049,3049,3049,42,1754,1748,1755,0,1931,1925,1932,3050,3050,3050,42,1748,1749,1756,0,1925,1926,1933,3051,3051,3051,42,1748,1756,1755,0,1925,1933,1932,3052,3052,3052,42,1759,1758,1757,0,1936,1935,1934,3053,3053,3053,42,1759,1757,1760,0,1936,1934,1937,3054,3054,3054,42,1762,1761,1760,0,1939,1938,1937,3055,3055,3055,42,1762,1760,1757,0,1939,1937,1934,3056,3056,3056,42,1763,1759,1760,0,1940,1936,1937,3057,3057,3057,42,1763,1760,1764,0,1940,1937,1941,3058,3058,3058,42,1761,1765,1764,0,1938,1942,1941,3059,3059,3059,42,1761,1764,1760,0,1938,1941,1937,3060,3060,3060,42,1761,1762,1766,0,1938,1939,1943,3061,3061,3061,42,1761,1766,1767,0,1938,1943,1944,3062,3062,3062,42,1768,1655,1767,0,1945,1828,1944,3063,3063,3063,42,1768,1767,1766,0,1945,1944,1943,3064,3064,3064,42,1770,1769,1768,0,1947,1946,1945,3065,3065,3065,42,1770,1768,1766,0,1947,1945,1943,3066,3066,3066,42,1762,1771,1770,0,1939,1948,1947,3067,3067,3067,42,1762,1770,1766,0,1939,1947,1943,3068,3068,3068,42,1656,1655,1768,0,1829,1828,1945,3069,3069,3069,42,1656,1768,1772,0,1829,1945,1949,3070,3070,3070,42,1774,1773,1656,0,1951,1950,1829,3071,3071,3071,42,1774,1656,1772,0,1951,1829,1949,3072,3072,3072,42,1773,1775,1649,0,1950,1952,1822,3073,3073,3073,42,1773,1649,1656,0,1950,1822,1829,3074,3074,3074,42,1757,1776,1771,0,1934,1953,1948,3075,3075,3075,42,1757,1771,1762,0,1934,1948,1939,3076,3076,3076,42,1776,1778,1777,0,1953,1955,1954,3077,3077,3077,42,1776,1777,1771,0,1953,1954,1948,3078,3078,3078,42,1771,1777,1769,0,1948,1954,1946,3079,3079,3079,42,1771,1769,1770,0,1948,1946,1947,3080,3080,3080,42,1781,1780,1779,0,1958,1957,1956,3081,3081,3081,42,1781,1779,1782,0,1958,1956,1959,3082,3082,3082,42,1774,1783,1781,0,1951,1960,1958,3083,3083,3083,42,1774,1781,1782,0,1951,1958,1959,3084,3084,3084,42,1783,1784,1780,0,1960,1961,1957,3085,3085,3085,42,1783,1780,1781,0,1960,1957,1958,3086,3086,3086,42,1772,1785,1783,0,1949,1962,1960,3087,3087,3087,42,1772,1783,1774,0,1949,1960,1951,3088,3088,3088,42,1784,1783,1785,0,1961,1960,1962,3089,3089,3089,42,1784,1785,1786,0,1961,1962,1963,3090,3090,3090,42,1780,1788,1787,0,1957,1965,1964,3091,3091,3091,42,1780,1787,1779,0,1957,1964,1956,3092,3092,3092,42,1779,1787,1789,0,1956,1964,1966,3093,3093,3093,42,1779,1789,1790,0,1956,1966,1967,3094,3094,3094,42,1791,1787,1788,0,1968,1964,1965,3095,3095,3095,42,1791,1788,1792,0,1968,1965,1969,3096,3096,3096,42,1787,1791,1793,0,1964,1968,1970,3097,3097,3097,42,1787,1793,1789,0,1964,1970,1966,3098,3098,3098,42,1796,1795,1794,0,1973,1972,1971,3099,3099,3099,42,1796,1794,1797,0,1973,1971,1974,3100,3100,3100,42,1795,1799,1798,0,1972,1976,1975,3101,3101,3101,42,1795,1798,1794,0,1972,1975,1971,3102,3102,3102,42,1801,1800,1799,0,1978,1977,1976,3103,3103,3103,42,1801,1799,1795,0,1978,1976,1972,3104,3104,3104,42,1802,1801,1795,0,1979,1978,1972,3105,3105,3105,42,1802,1795,1796,0,1979,1972,1973,3106,3106,3106,42,1797,1794,1803,0,1974,1971,1980,3107,3107,3107,42,1797,1803,1804,0,1974,1980,1981,3108,3108,3108,42,1806,1805,1804,0,1983,1982,1981,3109,3109,3109,42,1806,1804,1803,0,1983,1981,1980,3110,3110,3110,42,1807,1806,1803,0,1984,1983,1980,3111,3111,3111,42,1807,1803,1808,0,1984,1980,1985,3112,3112,3112,42,1794,1798,1808,0,1971,1975,1985,3113,3113,3113,42,1794,1808,1803,0,1971,1985,1980,3114,3114,3114,42,1657,1698,1699,0,1986,1871,1872,3115,3115,3115,42,1657,1699,1809,0,1986,1872,1987,3116,3116,3116,42,1695,1811,1810,0,1868,1989,1988,3117,3117,3117,42,1695,1810,1699,0,1868,1988,1872,3118,3118,3118,42,1699,1810,1812,0,1872,1988,1990,3119,3119,3119,42,1699,1812,1809,0,1872,1990,1987,3120,3120,3120,42,1813,1701,1697,0,1991,1874,1870,3121,3121,3121,42,1813,1697,1814,0,1991,1870,1992,3122,3122,3122,42,1698,1815,1814,0,1871,1993,1992,3123,3123,3123,42,1698,1814,1697,0,1871,1992,1870,3124,3124,3124,42,1673,1684,1816,0,1846,1857,1994,3125,3125,3125,42,1673,1816,1672,0,1846,1994,1845,3126,3126,3126,42,1672,1816,1817,0,1845,1994,1995,3127,3127,3127,42,1672,1817,1678,0,1845,1995,1851,3128,3128,3128,42,1818,1677,1678,0,1996,1850,1851,3129,3129,3129,42,1818,1678,1817,0,1996,1851,1995,3130,3130,3130,42,1819,1818,1817,0,1997,1996,1995,3131,3131,3131,42,1819,1817,1820,0,1997,1995,1998,3132,3132,3132,42,1817,1816,1821,0,1995,1994,1999,3133,3133,3133,42,1817,1821,1820,0,1995,1999,1998,3134,3134,3134,42,1822,1810,1811,0,2000,1988,1989,3135,3135,3135,42,1822,1811,1823,0,2000,1989,2001,3136,3136,3136,42,1825,1824,1810,0,2003,2002,1988,3137,3137,3137,42,1825,1810,1822,0,2003,1988,2000,3138,3138,3138,42,1824,1826,1812,0,2002,2004,1990,3139,3139,3139,42,1824,1812,1810,0,2002,1990,1988,3140,3140,3140,42,1822,1823,1827,0,2000,2001,2005,3141,3141,3141,42,1822,1827,1828,0,2000,2005,2006,3142,3142,3142,42,1756,1828,1827,0,1933,2006,2005,3143,3143,3143,42,1756,1827,1755,0,1933,2005,1932,3144,3144,3144,42,1822,1828,1829,0,2000,2006,2007,3145,3145,3145,42,1822,1829,1825,0,2000,2007,2003,3146,3146,3146,42,1830,1828,1756,0,2008,2006,1933,3147,3147,3147,42,1830,1756,1831,0,2008,1933,2009,3148,3148,3148,42,1829,1828,1830,0,2007,2006,2008,3149,3149,3149,42,1829,1830,1832,0,2007,2008,2010,3150,3150,3150,42,1749,1833,1831,0,1926,2011,2009,3151,3151,3151,42,1749,1831,1756,0,1926,2009,1933,3152,3152,3152,42,1836,1835,1834,0,2014,2013,2012,3153,3153,3153,42,1836,1834,1837,0,2014,2012,2015,3154,3154,3154,42,1799,1800,1835,0,1976,1977,2016,3155,3155,3155,42,1799,1835,1836,0,1976,2016,2017,3156,3156,3156,42,1838,1836,1837,0,2018,2014,2015,3157,3157,3157,42,1838,1837,1839,0,2018,2015,2019,3158,3158,3158,42,1836,1838,1798,0,2017,2020,1975,3159,3159,3159,42,1836,1798,1799,0,2017,1975,1976,3160,3160,3160,42,1835,1841,1840,0,2013,2022,2021,3161,3161,3161,42,1835,1840,1834,0,2013,2021,2012,3162,3162,3162,42,1800,1842,1841,0,1977,2024,2023,3163,3163,3163,42,1800,1841,1835,0,1977,2023,2016,3164,3164,3164,42,1798,1838,1843,0,1975,2020,2025,3165,3165,3165,42,1798,1843,1808,0,1975,2025,1985,3166,3166,3166,42,1808,1843,1844,0,1985,2025,2026,3167,3167,3167,42,1808,1844,1807,0,1985,2026,1984,3168,3168,3168,42,1843,1838,1839,0,2027,2018,2019,3169,3169,3169,42,1843,1839,1845,0,2027,2019,2028,3170,3170,3170,42,1844,1843,1845,0,2029,2027,2028,3171,3171,3171,42,1844,1845,1846,0,2029,2028,2030,3172,3172,3172,42,1845,1839,1847,0,2028,2019,2031,3173,3173,3173,42,1845,1847,1848,0,2028,2031,2032,3174,3174,3174,42,1846,1845,1848,0,2030,2028,2032,3175,3175,3175,42,1846,1848,1849,0,2030,2032,2033,3176,3176,3176,42,1848,1847,1677,0,2032,2031,1850,3177,3177,3177,42,1848,1677,1818,0,2032,1850,1996,3178,3178,3178,42,1849,1848,1818,0,2033,2032,1996,3179,3179,3179,42,1849,1818,1850,0,2033,1996,2034,3180,3180,3180,42,1853,1852,1851,0,2037,2036,2035,3181,3181,3181,42,1853,1851,1854,0,2037,2035,2038,3182,3182,3182,42,1855,1854,1851,0,2039,2038,2035,3183,3183,3183,42,1855,1851,1856,0,2039,2035,2040,3184,3184,3184,42,1859,1858,1857,0,2043,2042,2041,3185,3185,3185,42,1859,1857,1860,0,2043,2041,2044,3186,3186,3186,42,1858,1859,1861,0,2042,2043,2045,3187,3187,3187,42,1858,1861,1862,0,2042,2045,2046,3188,3188,3188,42,1855,1859,1860,0,2047,2043,2044,3189,3189,3189,42,1855,1860,1863,0,2047,2044,2048,3190,3190,3190,42,1855,1856,1861,0,2039,2040,2045,3191,3191,3191,42,1855,1861,1859,0,2039,2045,2043,3192,3192,3192,42,1851,1852,1864,0,2035,2036,2049,3193,3193,3193,42,1851,1864,1856,0,2035,2049,2040,3194,3194,3194,42,1867,1866,1865,0,2052,2051,2050,3195,3195,3195,42,1867,1865,1868,0,2052,2050,2053,3196,3196,3196,42,1870,1869,1868,0,2055,2054,2053,3197,3197,3197,42,1870,1868,1865,0,2055,2053,2050,3198,3198,3198,42,1871,1870,1865,0,2056,2055,2050,3199,3199,3199,42,1871,1865,1866,0,2056,2050,2051,3200,3200,3200,42,1872,1867,1868,0,2057,2052,2053,3201,3201,3201,42,1872,1868,1873,0,2057,2053,2058,3202,3202,3202,42,1874,1872,1873,0,2059,2057,2058,3203,3203,3203,42,1874,1873,1875,0,2059,2058,2060,3204,3204,3204,42,1869,1875,1873,0,2054,2060,2058,3205,3205,3205,42,1869,1873,1868,0,2054,2058,2053,3206,3206,3206,42,1815,1698,1657,0,1993,1871,1986,3207,3207,3207,42,1815,1657,1652,0,1993,1986,2061,3208,3208,3208,42,1809,1767,1655,0,2062,1944,1828,3209,3209,3209,42,1809,1655,1657,0,2062,1828,1830,3210,3210,3210,42,1878,1877,1876,0,2065,2064,2063,3211,3211,3211,42,1878,1876,1682,0,2065,2063,1855,3212,3212,3212,42,1878,1682,1683,0,2065,1855,1856,3213,3213,3213,42,1878,1683,1879,0,2065,1856,2066,3214,3214,3214,42,1878,1790,1880,0,2068,1967,2067,3215,3215,3215,42,1878,1880,1877,0,2068,2067,2069,3216,3216,3216,42,1790,1878,1879,0,1967,2068,2070,3217,3217,3217,42,1790,1879,1881,0,1967,2070,2071,3218,3218,3218,42,1850,1818,1819,0,2034,1996,1997,3219,3219,3219,42,1850,1819,1882,0,2034,1997,2072,3220,3220,3220,42,1819,1804,1805,0,2073,1981,1982,3221,3221,3221,42,1819,1805,1882,0,2073,1982,2074,3222,3222,3222,42,1883,1804,1819,0,2075,1981,2073,3223,3223,3223,42,1883,1819,1820,0,2075,2073,2076,3224,3224,3224,42,1869,1885,1884,0,2079,2078,2077,3225,3225,3225,42,1869,1884,1875,0,2079,2077,2080,3226,3226,3226,42,1886,1885,1869,0,2081,2078,2079,3227,3227,3227,42,1886,1869,1870,0,2081,2079,2082,3228,3228,3228,42,1884,1887,1874,0,2077,2084,2083,3229,3229,3229,42,1884,1874,1875,0,2077,2083,2080,3230,3230,3230,42,1611,1612,1571,0,2086,2085,1735,3231,3231,3231,42,1611,1571,1570,0,2086,1735,1734,3232,3232,3232,42,1613,1611,1570,0,2087,2086,1734,3233,3233,3233,42,1613,1570,1569,0,2087,1734,1733,3234,3234,3234,42,1890,1889,1888,0,2090,2089,2088,3235,3235,3235,42,1890,1888,1891,0,2090,2088,2091,3236,3236,3236,42,1888,1893,1892,0,2088,2093,2092,3237,3237,3237,42,1888,1892,1891,0,2088,2092,2091,3238,3238,3238,42,1894,1892,1893,0,2094,2092,2093,3239,3239,3239,42,1894,1893,1895,0,2094,2093,2095,3240,3240,3240,42,1893,1888,1896,0,2098,2097,2096,3241,3241,3241,42,1893,1896,1897,0,2098,2096,2099,3242,3242,3242,42,1895,1893,1897,0,2100,2098,2099,3243,3243,3243,42,1895,1897,1898,0,2100,2099,2101,3244,3244,3244,42,1899,1898,1897,0,2102,2101,2099,3245,3245,3245,42,1899,1897,1896,0,2102,2099,2096,3246,3246,3246,42,1824,1825,1900,0,2002,2003,2103,3247,3247,3247,42,1824,1900,1901,0,2002,2103,2104,3248,3248,3248,42,1826,1824,1901,0,2004,2002,2104,3249,3249,3249,42,1826,1901,1902,0,2004,2104,2105,3250,3250,3250,42,1903,1849,1850,0,2106,2033,2034,3251,3251,3251,42,1903,1850,1904,0,2106,2034,2107,3252,3252,3252,42,1905,1846,1849,0,2108,2030,2033,3253,3253,3253,42,1905,1849,1903,0,2108,2033,2106,3254,3254,3254,42,1906,1866,1867,0,2109,2051,2052,3255,3255,3255,42,1906,1867,1907,0,2109,2052,2110,3256,3256,3256,42,1908,1906,1907,0,2111,2109,2110,3257,3257,3257,42,1908,1907,1909,0,2111,2110,2112,3258,3258,3258,42,1910,1909,1907,0,2113,2112,2110,3259,3259,3259,42,1910,1907,1911,0,2113,2110,2114,3260,3260,3260,42,1911,1907,1867,0,2114,2110,2052,3261,3261,3261,42,1911,1867,1872,0,2114,2052,2057,3262,3262,3262,42,1914,1913,1912,0,2117,2116,2115,3263,3263,3263,42,1914,1912,1915,0,2117,2115,2118,3264,3264,3264,42,1904,1916,1913,0,2107,2119,2116,3265,3265,3265,42,1904,1913,1914,0,2107,2116,2117,3266,3266,3266,42,1904,1914,1917,0,2107,2117,2120,3267,3267,3267,42,1904,1917,1903,0,2107,2120,2106,3268,3268,3268,42,1915,1918,1917,0,2118,2121,2120,3269,3269,3269,42,1915,1917,1914,0,2118,2120,2117,3270,3270,3270,42,1682,1876,1919,0,1855,2063,2122,3271,3271,3271,42,1682,1919,1684,0,1855,2122,1857,3272,3272,3272,42,1876,1877,1630,0,2063,2064,2123,3273,3273,3273,42,1876,1630,1920,0,2063,2123,2124,3274,3274,3274,42,1876,1920,1921,0,2063,2124,2125,3275,3275,3275,42,1876,1921,1919,0,2063,2125,2122,3276,3276,3276,42,1922,1905,1903,0,2126,2108,2106,3277,3277,3277,42,1922,1903,1917,0,2126,2106,2120,3278,3278,3278,42,1740,1923,1715,0,1917,2128,2127,3279,3279,3279,42,1740,1715,1924,0,1917,2127,2129,3280,3280,3280,42,1924,1925,1737,0,2129,2130,1914,3281,3281,3281,42,1924,1737,1740,0,2129,1914,1917,3282,3282,3282,42,1712,1926,1924,0,2132,2131,2129,3283,3283,3283,42,1712,1924,1715,0,2132,2129,2127,3284,3284,3284,42,1926,1927,1925,0,2131,2133,2130,3285,3285,3285,42,1926,1925,1924,0,2131,2130,2129,3286,3286,3286,42,1930,1929,1928,0,2136,2135,2134,3287,3287,3287,42,1930,1928,1931,0,2136,2134,2137,3288,3288,3288,42,1561,1560,1928,0,1725,1724,2134,3289,3289,3289,42,1561,1928,1929,0,1725,2134,2135,3290,3290,3290,42,1515,1510,1505,0,1676,1671,1665,3291,3291,3291,42,1515,1505,1932,0,1676,1665,2138,3292,3292,3292,42,1642,1515,1932,0,1815,1676,2138,3293,3293,3293,42,1642,1932,1600,0,1815,2138,1770,3294,3294,3294,42,1932,1525,1593,0,2138,1686,1763,3295,3295,3295,42,1932,1593,1600,0,2138,1763,1770,3296,3296,3296,42,1506,1525,1932,0,1666,1686,2138,3297,3297,3297,42,1506,1932,1505,0,1666,2138,1665,3298,3298,3298,42,1931,1530,1531,0,2137,1691,1692,3299,3299,3299,42,1931,1531,1930,0,2137,1692,2136,3300,3300,3300,42,1933,1554,1564,0,2139,1718,1728,3301,3301,3301,42,1933,1564,1565,0,2139,1728,1729,3302,3302,3302,42,1933,1565,1934,0,2139,1729,2140,3303,3303,3303,42,1933,1934,1935,0,2139,2140,2141,3304,3304,3304,42,1936,1716,1572,0,2142,1892,1736,3305,3305,3305,42,1936,1572,1842,0,2142,1736,2024,3306,3306,3306,42,1939,1938,1937,0,2145,2144,2143,3307,3307,3307,42,1939,1937,1940,0,2145,2143,2146,3308,3308,3308,42,1722,1939,1940,0,1899,2145,2146,3309,3309,3309,42,1722,1940,1941,0,1899,2146,2147,3310,3310,3310,42,1937,1942,1941,0,2143,2148,2147,3311,3311,3311,42,1937,1941,1940,0,2143,2147,2146,3312,3312,3312,42,1937,1938,1778,0,2143,2144,1955,3313,3313,3313,42,1937,1778,1942,0,2143,1955,2148,3314,3314,3314,42,1842,1572,1573,0,2024,1736,1737,3315,3315,3315,42,1842,1573,1841,0,2024,1737,2023,3316,3316,3316,42,1929,1944,1943,0,2135,2150,2149,3317,3317,3317,42,1929,1943,1561,0,2135,2149,1725,3318,3318,3318,42,1561,1943,1945,0,1725,2149,2151,3319,3319,3319,42,1561,1945,1559,0,1725,2151,1723,3320,3320,3320,42,1944,1666,1667,0,2150,1839,1840,3321,3321,3321,42,1944,1667,1943,0,2150,1840,2149,3322,3322,3322,42,1943,1667,1946,0,2149,1840,2152,3323,3323,3323,42,1943,1946,1945,0,2149,2152,2151,3324,3324,3324,42,1840,1558,1559,0,2021,1722,1723,3325,3325,3325,42,1840,1559,1945,0,2021,1723,2151,3326,3326,3326,42,1841,1573,1558,0,2022,1740,1722,3327,3327,3327,42,1841,1558,1840,0,2022,1722,2021,3328,3328,3328,42,1532,1534,1947,0,1693,1695,2153,3329,3329,3329,42,1532,1947,1690,0,1693,2153,1863,3330,3330,3330,42,1948,1688,1690,0,2154,1861,1863,3331,3331,3331,42,1948,1690,1947,0,2154,1863,2153,3332,3332,3332,42,1534,1950,1949,0,1695,2156,2155,3333,3333,3333,42,1534,1949,1947,0,1695,2155,2153,3334,3334,3334,42,1947,1949,1951,0,2153,2155,2157,3335,3335,3335,42,1947,1951,1948,0,2153,2157,2154,3336,3336,3336,42,1950,1644,1952,0,2156,1817,2158,3337,3337,3337,42,1950,1952,1949,0,2156,2158,2155,3338,3338,3338,42,1953,1951,1949,0,2159,2157,2155,3339,3339,3339,42,1953,1949,1952,0,2159,2155,2158,3340,3340,3340,42,1645,1954,1952,0,1818,2160,2158,3341,3341,3341,42,1645,1952,1644,0,1818,2158,1817,3342,3342,3342,42,1954,1727,1953,0,2160,1904,2159,3343,3343,3343,42,1954,1953,1952,0,2160,2159,2158,3344,3344,3344,42,1955,1564,1554,0,2161,1728,1718,3345,3345,3345,42,1955,1554,1555,0,2161,1718,1719,3346,3346,3346,42,1554,1933,1935,0,1718,2139,2141,3347,3347,3347,42,1554,1935,1562,0,1718,2141,1726,3348,3348,3348,42,1717,1582,1577,0,1893,1749,1743,3349,3349,3349,42,1717,1577,1575,0,1893,1743,1739,3350,3350,3350,42,1550,1588,1590,0,1711,2162,1757,3351,3351,3351,42,1550,1590,1547,0,1711,1757,1708,3352,3352,3352,42,1588,1597,1591,0,1755,1767,1758,3353,3353,3353,42,1588,1591,1590,0,1755,1758,1759,3354,3354,3354,42,1598,1586,1585,0,1768,1753,1752,3355,3355,3355,42,1598,1585,1956,0,1768,1752,2163,3356,3356,3356,42,1958,1934,1957,0,2165,2140,2164,3357,3357,3357,42,1958,1957,1959,0,2165,2164,2166,3358,3358,3358,42,1539,1562,1935,0,1700,1726,2141,3359,3359,3359,42,1539,1935,1538,0,1700,2141,1699,3360,3360,3360,42,1539,1928,1560,0,1700,2134,1724,3361,3361,3361,42,1539,1560,1562,0,1700,1724,1726,3362,3362,3362,42,1582,1717,1718,0,1749,1893,1894,3363,3363,3363,42,1582,1718,1960,0,1749,1894,2167,3364,3364,3364,42,1599,1598,1956,0,1769,1768,2163,3365,3365,3365,42,1599,1956,1961,0,1769,2163,2168,3366,3366,3366,42,1606,1607,1651,0,1777,1778,1824,3367,3367,3367,42,1606,1651,1962,0,1777,1824,2169,3368,3368,3368,42,1605,1606,1664,0,1776,1777,2170,3369,3369,3369,42,1605,1664,1612,0,1776,2170,1783,3370,3370,3370,42,1606,1962,1660,0,1777,2169,2171,3371,3371,3371,42,1606,1660,1664,0,1777,2171,2170,3372,3372,3372,42,1612,1664,1665,0,2085,1837,1838,3373,3373,3373,42,1612,1665,1571,0,2085,1838,1735,3374,3374,3374,42,1964,1659,1963,0,2174,2173,2172,3375,3375,3375,42,1964,1963,1775,0,2174,2172,1952,3376,3376,3376,42,1659,1964,1813,0,1832,2175,1991,3377,3377,3377,42,1659,1813,1658,0,1832,1991,1831,3378,3378,3378,42,1660,1962,1963,0,2171,2169,2172,3379,3379,3379,42,1660,1963,1659,0,2171,2172,2173,3380,3380,3380,42,1610,1613,1965,0,1781,1784,2176,3381,3381,3381,42,1610,1965,1609,0,1781,2176,1780,3382,3382,3382,42,1654,1650,1609,0,1827,1823,1780,3383,3383,3383,42,1654,1609,1965,0,1827,1780,2176,3384,3384,3384,42,1962,1651,1648,0,2169,1824,1821,3385,3385,3385,42,1962,1648,1963,0,2169,1821,2172,3386,3386,3386,42,1966,1626,1627,0,2178,2177,1804,3387,3387,3387,42,1966,1627,1632,0,2178,1804,1805,3388,3388,3388,42,1967,1946,1667,0,2179,2152,1840,3389,3389,3389,42,1967,1667,1675,0,2179,1840,1848,3390,3390,3390,42,1847,1967,1675,0,2031,2179,1848,3391,3391,3391,42,1847,1675,1677,0,2031,1848,1850,3392,3392,3392,42,1632,1969,1968,0,1805,2181,2180,3393,3393,3393,42,1632,1968,1966,0,1805,2180,2178,3394,3394,3394,42,1703,1702,1968,0,1878,1875,2180,3395,3395,3395,42,1703,1968,1969,0,1878,2180,2181,3396,3396,3396,42,1691,1670,1666,0,1864,1843,1839,3397,3397,3397,42,1691,1666,1944,0,1864,1839,2150,3398,3398,3398,42,1619,1629,1706,0,1790,1800,1882,3399,3399,3399,42,1619,1706,1618,0,1790,1882,1789,3400,3400,3400,42,1948,1951,1970,0,2154,2157,2182,3401,3401,3401,42,1948,1970,1971,0,2154,2182,2183,3402,3402,3402,42,1827,1823,1971,0,2005,2001,2183,3403,3403,3403,42,1827,1971,1970,0,2005,2183,2182,3404,3404,3404,42,1688,1948,1971,0,1861,2154,2183,3405,3405,3405,42,1688,1971,1696,0,1861,2183,1869,3406,3406,3406,42,1696,1971,1823,0,1869,2183,2001,3407,3407,3407,42,1696,1823,1811,0,1869,2001,1989,3408,3408,3408,42,1852,1709,1710,0,2036,1885,1886,3409,3409,3409,42,1852,1710,1864,0,2036,1886,2049,3410,3410,3410,42,1711,1709,1852,0,1887,1885,2036,3411,3411,3411,42,1711,1852,1853,0,1887,2036,2037,3412,3412,3412,42,1920,1630,1626,0,2124,2123,2177,3413,3413,3413,42,1920,1626,1966,0,2124,2177,2178,3414,3414,3414,42,1920,1966,1968,0,2124,2178,2180,3415,3415,3415,42,1920,1968,1921,0,2124,2180,2125,3416,3416,3416,42,1941,1942,1741,0,2147,2148,1918,3417,3417,3417,42,1941,1741,1734,0,2147,1918,1911,3418,3418,3418,42,1942,1972,1742,0,2148,2184,1919,3419,3419,3419,42,1942,1742,1741,0,2148,1919,1918,3420,3420,3420,42,1972,1758,1743,0,2184,1935,1920,3421,3421,3421,42,1972,1743,1742,0,2184,1920,1919,3422,3422,3422,42,1758,1759,1744,0,1935,1936,1921,3423,3423,3423,42,1758,1744,1743,0,1935,1921,1920,3424,3424,3424,42,1833,1738,1744,0,2185,1915,1921,3425,3425,3425,42,1833,1744,1831,0,2185,1921,2186,3426,3426,3426,42,1740,1738,1833,0,1917,1915,2185,3427,3427,3427,42,1740,1833,1923,0,1917,2185,2128,3428,3428,3428,42,1731,1730,1736,0,1908,1907,1913,3429,3429,3429,42,1731,1736,1973,0,1908,1913,2187,3430,3430,3430,42,1735,1731,1973,0,1912,1908,2187,3431,3431,3431,42,1735,1973,1752,0,1912,2187,1929,3432,3432,3432,42,1953,1747,1753,0,2159,1924,1930,3433,3433,3433,42,1953,1753,1951,0,2159,1930,2157,3434,3434,3434,42,1951,1753,1754,0,2157,1930,1931,3435,3435,3435,42,1951,1754,1970,0,2157,1931,2182,3436,3436,3436,42,1776,1757,1758,0,1953,1934,1935,3437,3437,3437,42,1776,1758,1972,0,1953,1935,2184,3438,3438,3438,42,1769,1785,1772,0,1946,1962,1949,3439,3439,3439,42,1769,1772,1768,0,1946,1949,1945,3440,3440,3440,42,1786,1785,1769,0,1963,1962,1946,3441,3441,3441,42,1786,1769,1777,0,1963,1946,1954,3442,3442,3442,42,1921,1968,1702,0,2125,2180,1875,3443,3443,3443,42,1921,1702,1704,0,2125,1875,1879,3444,3444,3444,42,1975,1927,1974,0,2189,2133,2188,3445,3445,3445,42,1975,1974,1976,0,2189,2188,2190,3446,3446,3446,42,1857,1976,1974,0,2041,2190,2188,3447,3447,3447,42,1857,1974,1977,0,2041,2188,2191,3448,3448,3448,42,1978,1975,1976,0,2192,2189,2190,3449,3449,3449,42,1978,1976,1979,0,2192,2190,2193,3450,3450,3450,42,1858,1979,1976,0,2042,2193,2190,3451,3451,3451,42,1858,1976,1857,0,2042,2190,2041,3452,3452,3452,42,1980,1978,1979,0,2194,2192,2193,3453,3453,3453,42,1980,1979,1981,0,2194,2193,2195,3454,3454,3454,42,1979,1858,1862,0,2193,2042,2046,3455,3455,3455,42,1979,1862,1981,0,2193,2046,2195,3456,3456,3456,42,1980,1981,1710,0,2194,2195,1886,3457,3457,3457,42,1980,1710,1707,0,2194,1886,1883,3458,3458,3458,42,1784,1982,1788,0,1961,2196,1965,3459,3459,3459,42,1784,1788,1780,0,1961,1965,1957,3460,3460,3460,42,1881,1773,1774,0,2071,1950,1951,3461,3461,3461,42,1881,1774,1782,0,2071,1951,1959,3462,3462,3462,42,1982,1802,1792,0,2196,1979,1969,3463,3463,3463,42,1982,1792,1788,0,2196,1969,1965,3464,3464,3464,42,1983,1791,1792,0,2197,1968,1969,3465,3465,3465,42,1983,1792,1984,0,2197,1969,2198,3466,3466,3466,42,1883,1793,1791,0,2075,1970,1968,3467,3467,3467,42,1883,1791,1983,0,2075,1968,2197,3468,3468,3468,42,1789,1793,1985,0,1966,1970,2199,3469,3469,3469,42,1789,1985,1986,0,1966,2199,2200,3470,3470,3470,42,1790,1789,1986,0,1967,1966,2200,3471,3471,3471,42,1790,1986,1880,0,1967,2200,2067,3472,3472,3472,42,1984,1796,1797,0,2198,1973,1974,3473,3473,3473,42,1984,1797,1983,0,2198,1974,2197,3474,3474,3474,42,1683,1701,1987,0,1856,1874,2201,3475,3475,3475,42,1683,1987,1879,0,1856,2201,2066,3476,3476,3476,42,1839,1837,1967,0,2019,2015,2179,3477,3477,3477,42,1839,1967,1847,0,2019,2179,2031,3478,3478,3478,42,1837,1834,1946,0,2015,2012,2152,3479,3479,3479,42,1837,1946,1967,0,2015,2152,2179,3480,3480,3480,42,1711,1853,1988,0,2204,2203,2202,3481,3481,3481,42,1711,1988,1989,0,2204,2202,2205,3482,3482,3482,42,1854,1990,1988,0,2207,2206,2202,3483,3483,3483,42,1854,1988,1853,0,2207,2202,2203,3484,3484,3484,42,1974,1927,1926,0,2188,2133,2131,3485,3485,3485,42,1974,1926,1989,0,2188,2131,2205,3486,3486,3486,42,1989,1988,1977,0,2205,2202,2191,3487,3487,3487,42,1989,1977,1974,0,2205,2191,2188,3488,3488,3488,42,1977,1988,1990,0,2191,2202,2206,3489,3489,3489,42,1977,1990,1863,0,2191,2206,2048,3490,3490,3490,42,1759,1830,1831,0,1936,2208,2186,3491,3491,3491,42,1759,1831,1744,0,1936,2186,1921,3492,3492,3492,42,1566,1965,1613,0,1730,2209,2087,3493,3493,3493,42,1566,1613,1569,0,1730,2087,1733,3494,3494,3494,42,1991,1482,1483,0,2210,1635,1636,3495,3495,3495,42,1991,1483,1535,0,2210,1636,1696,3496,3496,3496,42,1992,1592,1603,0,2211,1762,1773,3497,3497,3497,42,1992,1603,1993,0,2211,1773,2212,3498,3498,3498,42,1812,1761,1767,0,2213,1938,1944,3499,3499,3499,42,1812,1767,1809,0,2213,1944,2062,3500,3500,3500,42,1964,1987,1701,0,2175,2201,1874,3501,3501,3501,42,1964,1701,1813,0,2175,1874,1991,3502,3502,3502,42,1773,1881,1879,0,1950,2071,2070,3503,3503,3503,42,1773,1879,1987,0,1950,2070,2214,3504,3504,3504,42,1994,1816,1684,0,2215,1994,1857,3505,3505,3505,42,1994,1684,1919,0,2215,1857,2122,3506,3506,3506,42,1995,1821,1816,0,2216,1999,1994,3507,3507,3507,42,1995,1816,1994,0,2216,1994,2215,3508,3508,3508,42,1820,1821,1793,0,2076,2217,1970,3509,3509,3509,42,1820,1793,1883,0,2076,1970,2075,3510,3510,3510,42,1750,1923,1833,0,1927,2218,2011,3511,3511,3511,42,1750,1833,1749,0,1927,2011,1926,3512,3512,3512,42,1765,1761,1812,0,1942,1938,2213,3513,3513,3513,42,1765,1812,1826,0,1942,2213,2219,3514,3514,3514,42,1985,1793,1821,0,2199,1970,2217,3515,3515,3515,42,1985,1821,1995,0,2199,2217,2220,3516,3516,3516,42,1871,1996,1886,0,2222,2221,2081,3517,3517,3517,42,1871,1886,1870,0,2222,2081,2082,3518,3518,3518,42,1997,1885,1886,0,2223,2078,2081,3519,3519,3519,42,1997,1886,1996,0,2223,2081,2221,3520,3520,3520,42,1884,1885,1997,0,2077,2078,2223,3521,3521,3521,42,1884,1997,1887,0,2077,2223,2084,3522,3522,3522,42,1888,1889,1998,0,2097,2225,2224,3523,3523,3523,42,1888,1998,1896,0,2097,2224,2096,3524,3524,3524,42,1915,1912,1889,0,2118,2115,2089,3525,3525,3525,42,1915,1889,1890,0,2118,2089,2090,3526,3526,3526,42,1912,1999,1998,0,2227,2226,2224,3527,3527,3527,42,1912,1998,1889,0,2227,2224,2225,3528,3528,3528,42,1830,1759,1763,0,2208,1936,1940,3529,3529,3529,42,1830,1763,1832,0,2208,1940,2228,3530,3530,3530,42,2000,1815,1652,0,2229,1993,2061,3531,3531,3531,42,2000,1652,1653,0,2229,2061,2230,3532,3532,3532,42,1815,2000,1662,0,1993,2229,1835,3533,3533,3533,42,1815,1662,1814,0,1993,1835,1992,3534,3534,3534,42,2001,2000,1653,0,2231,2229,2230,3535,3535,3535,42,2001,1653,1654,0,2231,2230,2232,3536,3536,3536,42,2002,1844,1846,0,2233,2029,2030,3537,3537,3537,42,2002,1846,1905,0,2233,2030,2108,3538,3538,3538,42,1999,1899,1896,0,2226,2102,2096,3539,3539,3539,42,1999,1896,1998,0,2226,2096,2224,3540,3540,3540,42,1906,2003,1871,0,2109,2234,2056,3541,3541,3541,42,1906,1871,1866,0,2109,2056,2051,3542,3542,3542,42,1887,2005,2004,0,2084,2236,2235,3543,3543,3543,42,1887,2004,1874,0,2084,2235,2083,3544,3544,3544,42,1872,1874,2004,0,2057,2059,2237,3545,3545,3545,42,1872,2004,1911,0,2057,2237,2114,3546,3546,3546,42,1997,2006,2005,0,2223,2238,2236,3547,3547,3547,42,1997,2005,1887,0,2223,2236,2084,3548,3548,3548,42,2007,2006,1997,0,2239,2238,2223,3549,3549,3549,42,2007,1997,1996,0,2239,2223,2221,3550,3550,3550,42,2003,2007,1996,0,2240,2239,2221,3551,3551,3551,42,2003,1996,1871,0,2240,2221,2222,3552,3552,3552,42,2008,2003,1906,0,2241,2234,2109,3553,3553,3553,42,2008,1906,1908,0,2241,2109,2111,3554,3554,3554,42,2009,1910,1911,0,2242,2113,2114,3555,3555,3555,42,2009,1911,2004,0,2242,2114,2237,3556,3556,3556,42,2010,2009,2004,0,2244,2243,2235,3557,3557,3557,42,2010,2004,2005,0,2244,2235,2236,3558,3558,3558,42,2005,2006,2011,0,2236,2238,2245,3559,3559,3559,42,2005,2011,2010,0,2236,2245,2244,3560,3560,3560,42,2006,2007,2012,0,2238,2239,2246,3561,3561,3561,42,2006,2012,2011,0,2238,2246,2245,3562,3562,3562,42,2008,2012,2007,0,2247,2246,2239,3563,3563,3563,42,2008,2007,2003,0,2247,2239,2240,3564,3564,3564,42,2013,2008,1908,0,2248,2241,2111,3565,3565,3565,42,2013,1908,2014,0,2248,2111,2249,3566,3566,3566,42,2012,2008,2013,0,2246,2247,2250,3567,3567,3567,42,2012,2013,2015,0,2246,2250,2251,3568,3568,3568,42,1910,1901,1900,0,2113,2104,2103,3569,3569,3569,42,1910,1900,1909,0,2113,2103,2112,3570,3570,3570,42,2014,1908,1909,0,2249,2111,2112,3571,3571,3571,42,2014,1909,1900,0,2249,2112,2103,3572,3572,3572,42,2017,2016,2010,0,2253,2252,2244,3573,3573,3573,42,2017,2010,2011,0,2253,2244,2245,3574,3574,3574,42,2016,1902,2009,0,2252,2254,2243,3575,3575,3575,42,2016,2009,2010,0,2252,2243,2244,3576,3576,3576,42,2011,2012,2015,0,2245,2246,2251,3577,3577,3577,42,2011,2015,2017,0,2245,2251,2253,3578,3578,3578,42,1829,2014,1900,0,2007,2249,2103,3579,3579,3579,42,1829,1900,1825,0,2007,2103,2003,3580,3580,3580,42,1832,2013,2014,0,2010,2248,2249,3581,3581,3581,42,1832,2014,1829,0,2010,2249,2007,3582,3582,3582,42,2016,1765,1826,0,2252,1942,2219,3583,3583,3583,42,2016,1826,1902,0,2252,2219,2254,3584,3584,3584,42,1764,2017,2015,0,1941,2253,2251,3585,3585,3585,42,1764,2015,1763,0,1941,2251,1940,3586,3586,3586,42,1663,1662,2000,0,1836,1835,2229,3587,3587,3587,42,1663,2000,2001,0,1836,2229,2231,3588,3588,3588,42,1654,1965,1566,0,2232,2209,1730,3589,3589,3589,42,1654,1566,2001,0,2232,1730,2231,3590,3590,3590,42,1706,1985,1995,0,1882,2199,2220,3591,3591,3591,42,1706,1995,1705,0,1882,2220,1881,3592,3592,3592,42,1705,1995,1994,0,1880,2216,2215,3593,3593,3593,42,1705,1994,1704,0,1880,2215,1879,3594,3594,3594,42,1629,1628,1880,0,1800,1799,2067,3595,3595,3595,42,1629,1880,1986,0,1800,2067,2200,3596,3596,3596,42,2019,2018,1898,0,2256,2255,2101,3597,3597,3597,42,2019,1898,1899,0,2256,2101,2102,3598,3598,3598,42,2020,2019,1899,0,2257,2256,2102,3599,3599,3599,42,2020,1899,1999,0,2257,2102,2226,3600,3600,3600,42,1913,2020,1999,0,2258,2257,2226,3601,3601,3601,42,1913,1999,1912,0,2258,2226,2227,3602,3602,3602,42,1922,1894,1895,0,2126,2094,2095,3603,3603,3603,42,1922,1895,2021,0,2126,2095,2259,3604,3604,3604,42,2021,1895,1898,0,2260,2100,2101,3605,3605,3605,42,2021,1898,2018,0,2260,2101,2255,3606,3606,3606,42,1882,1805,2022,0,2074,1982,2261,3607,3607,3607,42,1882,2022,1916,0,2074,2261,2262,3608,3608,3608,42,2023,2022,1805,0,2263,2261,1982,3609,3609,3609,42,2023,1805,1806,0,2263,1982,1983,3610,3610,3610,42,2002,2024,1807,0,2265,2264,1984,3611,3611,3611,42,2002,1807,1844,0,2265,1984,2026,3612,3612,3612,42,2024,2023,1806,0,2264,2263,1983,3613,3613,3613,42,2024,1806,1807,0,2264,1983,1984,3614,3614,3614,42,1916,2022,2020,0,2262,2261,2257,3615,3615,3615,42,1916,2020,1913,0,2262,2257,2258,3616,3616,3616,42,2002,2021,2018,0,2265,2260,2255,3617,3617,3617,42,2002,2018,2024,0,2265,2255,2264,3618,3618,3618,42,2023,2024,2018,0,2263,2264,2255,3619,3619,3619,42,2023,2018,2019,0,2263,2255,2256,3620,3620,3620,42,1923,1750,1714,0,2218,1927,1890,3621,3621,3621,42,1923,1714,1715,0,2218,1890,1891,3622,3622,3622,42,1925,2025,1736,0,2130,2266,1913,3623,3623,3623,42,1925,1736,1737,0,2130,1913,1914,3624,3624,3624,42,1927,1975,2025,0,2133,2189,2266,3625,3625,3625,42,1927,2025,1925,0,2133,2266,2130,3626,3626,3626,42,1973,1736,2025,0,2187,1913,2266,3627,3627,3627,42,1973,2025,2026,0,2187,2266,2267,3628,3628,3628,42,1752,1973,2026,0,1929,2187,2267,3629,3629,3629,42,1752,2026,2027,0,1929,2267,2268,3630,3630,3630,42,1752,2027,1713,0,1929,2268,1889,3631,3631,3631,42,1752,1713,1751,0,1929,1889,1928,3632,3632,3632,42,2026,2025,1975,0,2267,2266,2189,3633,3633,3633,42,2026,1975,1978,0,2267,2189,2192,3634,3634,3634,42,2027,2026,1978,0,2268,2267,2192,3635,3635,3635,42,2027,1978,1980,0,2268,2192,2194,3636,3636,3636,42,1596,1593,1525,0,1766,1763,1686,3637,3637,3637,42,1596,1525,1523,0,1766,1686,1684,3638,3638,3638,42,1542,1546,1592,0,1703,1707,1762,3639,3639,3639,42,1542,1592,1992,0,1703,1762,2211,3640,3640,3640,42,1938,1939,1639,0,2144,2145,1812,3641,3641,3641,42,1938,1639,2028,0,2144,1812,2269,3642,3642,3642,42,1722,1723,2029,0,1899,1900,2270,3643,3643,3643,42,1722,2029,1939,0,1899,2270,2145,3644,3644,3644,42,1954,2029,1723,0,2160,2270,1900,3645,3645,3645,42,1954,1723,1727,0,2160,1900,1904,3646,3646,3646,42,1939,2029,1638,0,2145,2270,1811,3647,3647,3647,42,1939,1638,1639,0,2145,1811,1812,3648,3648,3648,42,1531,1532,1690,0,1692,1693,1863,3649,3649,3649,42,1531,1690,1689,0,1692,1863,1862,3650,3650,3650,42,1930,1691,1944,0,2136,1864,2150,3651,3651,3651,42,1930,1944,1929,0,2136,2150,2135,3652,3652,3652,42,1689,1691,1930,0,1862,1864,2136,3653,3653,3653,42,1689,1930,1531,0,1862,2136,1692,3654,3654,3654,42,1589,1524,1519,0,1760,1685,1680,3655,3655,3655,42,1589,1519,1521,0,1760,1680,1682,3656,3656,3656,42,1499,1537,1478,0,1659,1698,1631,3657,3657,3657,42,1499,1478,1477,0,1659,1631,1630,3658,3658,3658,42,1580,1549,1544,0,2271,1710,1705,3659,3659,3659,42,1580,1544,1955,0,2271,1705,2161,3660,3660,3660,42,1597,1588,1584,0,1767,1755,1751,3661,3661,3661,42,1597,1584,1586,0,1767,1751,1753,3662,3662,3662,42,1585,1587,1961,0,1752,1754,2168,3663,3663,3663,42,1585,1961,1956,0,1752,2168,2163,3664,3664,3664,42,1650,1651,1607,0,1823,1824,1778,3665,3665,3665,42,1650,1607,1609,0,1823,1778,1780,3666,3666,3666,42,1649,1775,1963,0,1822,1952,2172,3667,3667,3667,42,1649,1963,1648,0,1822,2172,1821,3668,3668,3668,42,1941,1734,1721,0,2147,1911,1898,3669,3669,3669,42,1941,1721,1722,0,2147,1898,1899,3670,3670,3670,42,1727,1728,1747,0,1904,1905,1924,3671,3671,3671,42,1727,1747,1953,0,1904,1924,2159,3672,3672,3672,42,1972,1942,1778,0,2184,2148,1955,3673,3673,3673,42,1972,1778,1776,0,2184,1955,1953,3674,3674,3674,42,1862,1864,1710,0,2046,2049,1886,3675,3675,3675,42,1862,1710,1981,0,2046,1886,2195,3676,3676,3676,42,1782,1779,1790,0,1959,1956,1967,3677,3677,3677,42,1782,1790,1881,0,1959,1967,2071,3678,3678,3678,42,1983,1797,1804,0,2197,1974,1981,3679,3679,3679,42,1983,1804,1883,0,2197,1981,2075,3680,3680,3680,42,1792,1802,1796,0,1969,1979,1973,3681,3681,3681,42,1792,1796,1984,0,1969,1973,2198,3682,3682,3682,42,1694,1696,1811,0,1867,1869,1989,3683,3683,3683,42,1694,1811,1695,0,1867,1989,1868,3684,3684,3684,42,1755,1827,1970,0,1932,2005,2182,3685,3685,3685,42,1755,1970,1754,0,1932,2182,1931,3686,3686,3686,42,1800,1801,1936,0,1977,1978,2142,3687,3687,3687,42,1800,1936,1842,0,1977,2142,2024,3688,3688,3688,42,1860,1857,1977,0,2044,2041,2191,3689,3689,3689,42,1860,1977,1863,0,2044,2191,2048,3690,3690,3690,42,2031,1991,2030,0,2273,2210,2272,3691,3691,3691,42,2031,2030,2032,0,2273,2272,2274,3692,3692,3692,42,1958,1538,1935,0,2165,1699,2141,3693,3693,3693,42,1958,1935,1934,0,2165,2141,2140,3694,3694,3694,42,1775,1773,1987,0,1952,1950,2214,3695,3695,3695,42,1775,1987,1964,0,1952,2214,2174,3696,3696,3696,42,1855,1863,1990,0,2047,2048,2206,3697,3697,3697,42,1855,1990,1854,0,2047,2206,2207,3698,3698,3698,42,1571,1665,1567,0,1735,1838,1731,3699,3699,3699,42,1571,1567,1568,0,1735,1731,1732,3700,3700,3700,42,1658,1813,1814,0,1831,1991,1992,3701,3701,3701,42,1658,1814,1662,0,1831,1992,1835,3702,3702,3702,42,1902,1901,1910,0,2105,2104,2113,3703,3703,3703,42,1902,1910,2009,0,2105,2113,2242,3704,3704,3704,42,2017,1764,1765,0,2253,1941,1942,3705,3705,3705,42,2017,1765,2016,0,2253,1942,2252,3706,3706,3706,42,2013,1832,1763,0,2250,2228,1940,3707,3707,3707,42,2013,1763,2015,0,2250,1940,2251,3708,3708,3708,42,2001,1566,1567,0,2231,1730,1731,3709,3709,3709,42,2001,1567,1663,0,2231,1731,1836,3710,3710,3710,42,1706,1629,1986,0,1882,1800,2200,3711,3711,3711,42,1706,1986,1985,0,1882,2200,2199,3712,3712,3712,42,1628,1630,1877,0,1799,1801,2069,3713,3713,3713,42,1628,1877,1880,0,1799,2069,2067,3714,3714,3714,42,1704,1994,1919,0,1879,2215,2122,3715,3715,3715,42,1704,1919,1921,0,1879,2122,2125,3716,3716,3716,42,1850,1882,1916,0,2034,2072,2119,3717,3717,3717,42,1850,1916,1904,0,2034,2119,2107,3718,3718,3718,42,1917,1918,1894,0,2120,2121,2094,3719,3719,3719,42,1917,1894,1922,0,2120,2094,2126,3720,3720,3720,42,2022,2023,2019,0,2261,2263,2256,3721,3721,3721,42,2022,2019,2020,0,2261,2256,2257,3722,3722,3722,42,1905,1922,2021,0,2108,2126,2259,3723,3723,3723,42,1905,2021,2002,0,2108,2259,2233,3724,3724,3724,42,1751,1713,1714,0,1928,1889,1890,3725,3725,3725,42,1751,1714,1750,0,1928,1890,1927,3726,3726,3726,42,2027,1980,1707,0,2268,2194,1883,3727,3727,3727,42,2027,1707,1713,0,2268,1883,1889,3728,3728,3728,42,1989,1926,1712,0,2205,2131,2132,3729,3729,3729,42,1989,1712,1711,0,2205,2132,2204,3730,3730,3730,42,1591,1596,1523,0,1758,1766,1684,3731,3731,3731,42,1591,1523,1524,0,1758,1684,1685,3732,3732,3732,42,1545,1542,1992,0,1706,1703,2211,3733,3733,3733,42,1545,1992,2033,0,1706,2211,2275,3734,3734,3734,42,2029,1954,1645,0,2270,2160,1818,3735,3735,3735,42,2029,1645,1638,0,2270,1818,1811,3736,3736,3736,42,1834,1840,1945,0,2012,2021,2151,3737,3737,3737,42,1834,1945,1946,0,2012,2151,2152,3738,3738,3738,42,1969,1632,1633,0,2181,1805,1806,3739,3739,3739,42,1969,1633,1635,0,2181,1806,1808,3740,3740,3740,42,1892,1894,1918,0,2092,2094,2121,3741,3741,3741,42,1892,1918,1891,0,2092,2121,2091,3742,3742,3742,42,1864,1862,1861,0,2049,2046,2045,3743,3743,3743,42,1864,1861,1856,0,2049,2045,2040,3744,3744,3744,42,1969,1635,1720,0,2181,1808,1897,3745,3745,3745,42,1969,1720,1703,0,2181,1897,1878,3746,3746,3746,42,1890,1891,1918,0,2090,2091,2121,3747,3747,3747,42,1890,1918,1915,0,2090,2121,2118,3748,3748,3748,42,2035,2034,1489,0,2277,2276,1643,3749,3749,3749,42,2035,1489,1490,0,2277,1643,1644,3750,3750,3750,42,1615,1634,1631,0,1786,2278,1802,3751,3751,3751,42,1615,1631,1614,0,1786,1802,1785,3752,3752,3752,42,1615,1616,1620,0,1786,1787,1791,3753,3753,3753,42,1615,1620,1622,0,1786,1791,1793,3754,3754,3754,42,1622,1623,1634,0,1793,1794,2278,3755,3755,3755,42,1622,1634,1615,0,1793,2278,1786,3756,3756,3756,42,2038,2037,2036,0,2281,2280,2279,3757,3757,3757,42,2038,2036,2039,0,2281,2279,2282,3758,3758,3758,42,2041,2040,2036,0,2284,2283,2279,3759,3759,3759,42,2041,2036,2037,0,2284,2279,2280,3760,3760,3760,42,2043,2040,2042,0,2286,2283,2285,3761,3761,3761,42,2043,2042,2044,0,2286,2285,2287,3762,3762,3762,42,2044,2042,2045,0,2287,2285,2288,3763,3763,3763,42,2044,2045,2046,0,2287,2288,2289,3764,3764,3764,42,2042,2048,2047,0,2285,2291,2290,3765,3765,3765,42,2042,2047,2045,0,2285,2290,2288,3766,3766,3766,42,2049,2036,2040,0,2292,2279,2283,3767,3767,3767,42,2049,2040,2043,0,2292,2283,2286,3768,3768,3768,42,528,2048,2041,0,2293,2291,2284,3769,3769,3769,42,528,2041,527,0,2293,2284,2294,3770,3770,3770,42,550,2050,2047,0,2296,2295,2290,3771,3771,3771,42,550,2047,551,0,2296,2290,2297,3772,3772,3772,42,537,2051,2050,0,2299,2298,2295,3773,3773,3773,42,537,2050,550,0,2299,2295,2296,3774,3774,3774,42,2053,2052,538,0,2302,2301,2300,3775,3775,3775,42,2053,538,543,0,2302,2300,2303,3776,3776,3776,42,538,2052,2051,0,2300,2301,2298,3777,3777,3777,42,538,2051,537,0,2300,2298,2299,3778,3778,3778,42,2052,2053,2054,0,2301,2302,2304,3779,3779,3779,42,2052,2054,2055,0,2301,2304,2305,3780,3780,3780,42,2052,2055,2056,0,2301,2305,2306,3781,3781,3781,42,2052,2056,2051,0,2301,2306,2298,3782,3782,3782,42,2057,2054,2053,0,2307,2304,2302,3783,3783,3783,42,2057,2053,2058,0,2307,2302,2308,3784,3784,3784,42,2045,2047,2050,0,2288,2290,2295,3785,3785,3785,42,2045,2050,2059,0,2288,2295,2309,3786,3786,3786,42,2061,2046,2060,0,2311,2289,2310,3787,3787,3787,42,2061,2060,2062,0,2311,2310,2312,3788,3788,3788,42,2036,2049,2063,0,2279,2292,2313,3789,3789,3789,42,2036,2063,2039,0,2279,2313,2282,3790,3790,3790,42,2051,2056,2059,0,2298,2306,2309,3791,3791,3791,42,2051,2059,2050,0,2298,2309,2295,3792,3792,3792,42,2058,2053,543,0,2308,2302,2303,3793,3793,3793,42,2058,543,544,0,2308,2303,2314,3794,3794,3794,42,2064,2057,2058,0,2315,2307,2308,3795,3795,3795,42,2064,2058,2065,0,2315,2308,2316,3796,3796,3796,42,2065,2058,544,0,2316,2308,2314,3797,3797,3797,42,2065,544,549,0,2316,2314,2317,3798,3798,3798,42,2037,546,527,0,2280,2318,2294,3799,3799,3799,42,2037,527,2041,0,2280,2294,2284,3800,3800,3800,42,551,2047,2048,0,2297,2290,2291,3801,3801,3801,42,551,2048,528,0,2297,2291,2293,3802,3802,3802,42,2056,2067,2066,0,2306,2320,2319,3803,3803,3803,42,2056,2066,2059,0,2306,2319,2309,3804,3804,3804,42,2048,2042,2040,0,2291,2285,2283,3805,3805,3805,42,2048,2040,2041,0,2291,2283,2284,3806,3806,3806,42,2039,2069,2068,0,2282,2322,2321,3807,3807,3807,42,2039,2068,2038,0,2282,2321,2281,3808,3808,3808,42,2070,2065,549,0,2323,2316,2317,3809,3809,3809,42,2070,549,548,0,2323,2317,2324,3810,3810,3810,42,545,2071,2070,0,2327,2326,2325,3811,3811,3811,42,545,2070,548,0,2327,2325,2328,3812,3812,3812,42,2071,545,546,0,2326,2327,2318,3813,3813,3813,42,2071,546,2037,0,2326,2318,2280,3814,3814,3814,42,2074,2073,2072,0,2331,2330,2329,3815,3815,3815,42,2074,2072,2075,0,2331,2329,2332,3816,3816,3816,42,2073,2077,2076,0,2330,2334,2333,3817,3817,3817,42,2073,2076,2072,0,2330,2333,2329,3818,3818,3818,42,2080,2079,2078,0,2337,2336,2335,3819,3819,3819,42,2080,2078,2081,0,2337,2335,2338,3820,3820,3820,42,2081,2083,2082,0,2338,2340,2339,3821,3821,3821,42,2081,2082,2080,0,2338,2339,2337,3822,3822,3822,42,2086,2085,2084,0,2343,2342,2341,3823,3823,3823,42,2086,2084,2087,0,2343,2341,2344,3824,3824,3824,42,2088,2086,2087,0,2345,2343,2344,3825,3825,3825,42,2088,2087,2089,0,2345,2344,2346,3826,3826,3826,42,2087,2084,2090,0,2344,2341,2347,3827,3827,3827,42,2087,2090,2091,0,2344,2347,2348,3828,3828,3828,42,2089,2087,2091,0,2346,2344,2348,3829,3829,3829,42,2089,2091,2092,0,2346,2348,2349,3830,3830,3830,42,2093,2091,2090,0,2350,2348,2347,3831,3831,3831,42,2093,2090,2094,0,2350,2347,2351,3832,3832,3832,42,2090,2096,2095,0,2347,2353,2352,3833,3833,3833,42,2090,2095,2094,0,2347,2352,2351,3834,3834,3834,42,2096,2090,2084,0,2353,2347,2341,3835,3835,3835,42,2096,2084,2097,0,2353,2341,2354,3836,3836,3836,42,2091,2093,2098,0,2348,2350,2355,3837,3837,3837,42,2091,2098,2092,0,2348,2355,2349,3838,3838,3838,42,2092,2098,2099,0,2349,2355,2356,3839,3839,3839,42,2092,2099,2100,0,2349,2356,2357,3840,3840,3840,42,2092,2100,2101,0,2349,2357,2358,3841,3841,3841,42,2092,2101,2089,0,2349,2358,2346,3842,3842,3842,42,2093,2103,2102,0,2350,2360,2359,3843,3843,3843,42,2093,2102,2098,0,2350,2359,2355,3844,3844,3844,42,2098,2102,2104,0,2355,2359,2361,3845,3845,3845,42,2098,2104,2099,0,2355,2361,2356,3846,3846,3846,42,2106,2105,2099,0,2363,2362,2356,3847,3847,3847,42,2106,2099,2104,0,2363,2356,2361,3848,3848,3848,42,2102,2108,2107,0,2366,2365,2364,3849,3849,3849,42,2102,2107,2104,0,2366,2364,2367,3850,3850,3850,42,2109,2106,2104,0,2369,2368,2367,3851,3851,3851,42,2109,2104,2107,0,2369,2367,2364,3852,3852,3852,42,2097,2111,2110,0,2354,2371,2370,3853,3853,3853,42,2097,2110,2096,0,2354,2370,2353,3854,3854,3854,42,2112,2095,2096,0,2372,2352,2353,3855,3855,3855,42,2112,2096,2110,0,2372,2353,2370,3856,3856,3856,42,2113,2110,2111,0,2373,2370,2371,3857,3857,3857,42,2113,2111,2114,0,2373,2371,2374,3858,3858,3858,42,2115,2112,2110,0,2375,2372,2370,3859,3859,3859,42,2115,2110,2113,0,2375,2370,2373,3860,3860,3860,42,2116,2113,2114,0,2376,2373,2374,3861,3861,3861,42,2116,2114,2117,0,2376,2374,2377,3862,3862,3862,42,2116,2118,2115,0,2376,2378,2375,3863,3863,3863,42,2116,2115,2113,0,2376,2375,2373,3864,3864,3864,42,2121,2120,2119,0,2381,2380,2379,3865,3865,3865,42,2121,2119,2122,0,2381,2379,2382,3866,3866,3866,42,2111,2120,2121,0,2371,2380,2381,3867,3867,3867,42,2111,2121,2114,0,2371,2381,2374,3868,3868,3868,42,2121,2123,2117,0,2381,2383,2377,3869,3869,3869,42,2121,2117,2114,0,2381,2377,2374,3870,3870,3870,42,2121,2122,2124,0,2381,2382,2384,3871,3871,3871,42,2121,2124,2123,0,2381,2384,2383,3872,3872,3872,42,2126,2125,2123,0,2386,2385,2383,3873,3873,3873,42,2126,2123,2124,0,2386,2383,2384,3874,3874,3874,42,2126,2128,2127,0,2386,2388,2387,3875,3875,3875,42,2126,2127,2125,0,2386,2387,2385,3876,3876,3876,42,2129,2123,2125,0,2389,2383,2385,3877,3877,3877,42,2129,2125,2130,0,2389,2385,2390,3878,3878,3878,42,2131,2125,2127,0,2391,2385,2387,3879,3879,3879,42,2131,2127,2132,0,2391,2387,2392,3880,3880,3880,42,2125,2131,2133,0,2385,2391,2393,3881,3881,3881,42,2125,2133,2130,0,2385,2393,2390,3882,3882,3882,42,2134,2127,2128,0,2394,2387,2388,3883,3883,3883,42,2134,2128,2135,0,2394,2388,2395,3884,3884,3884,42,2128,2137,2136,0,2398,2397,2396,3885,3885,3885,42,2128,2136,2135,0,2398,2396,2399,3886,3886,3886,42,2128,2126,2138,0,2398,2401,2400,3887,3887,3887,42,2128,2138,2137,0,2398,2400,2397,3888,3888,3888,42,2132,2127,2134,0,2392,2387,2394,3889,3889,3889,42,2132,2134,2139,0,2392,2394,2402,3890,3890,3890,42,2140,2132,2139,0,2403,2392,2402,3891,3891,3891,42,2140,2139,2141,0,2403,2402,2404,3892,3892,3892,42,2142,2131,2132,0,2405,2391,2392,3893,3893,3893,42,2142,2132,2140,0,2405,2392,2403,3894,3894,3894,42,2144,2143,2140,0,2407,2406,2403,3895,3895,3895,42,2144,2140,2141,0,2407,2403,2404,3896,3896,3896,42,2142,2140,2143,0,2405,2403,2406,3897,3897,3897,42,2142,2143,2145,0,2405,2406,2408,3898,3898,3898,42,2136,2137,2146,0,2396,2397,2409,3899,3899,3899,42,2136,2146,2147,0,2396,2409,2410,3900,3900,3900,42,2146,2137,2138,0,2409,2397,2400,3901,3901,3901,42,2146,2138,2148,0,2409,2400,2411,3902,3902,3902,42,2148,2150,2149,0,2411,2413,2412,3903,3903,3903,42,2148,2149,2146,0,2411,2412,2409,3904,3904,3904,42,2146,2149,2151,0,2409,2412,2414,3905,3905,3905,42,2146,2151,2147,0,2409,2414,2410,3906,3906,3906,42,2148,2138,2152,0,2411,2400,2415,3907,3907,3907,42,2148,2152,2153,0,2411,2415,2416,3908,3908,3908,42,2150,2148,2153,0,2413,2411,2416,3909,3909,3909,42,2150,2153,2154,0,2413,2416,2417,3910,3910,3910,42,2155,2129,2130,0,2418,2389,2390,3911,3911,3911,42,2155,2130,2133,0,2418,2390,2393,3912,3912,3912,42,2123,2129,2155,0,2383,2389,2418,3913,3913,3913,42,2123,2155,2117,0,2383,2418,2377,3914,3914,3914,42,2133,2157,2156,0,2393,2420,2419,3915,3915,3915,42,2133,2156,2155,0,2393,2419,2418,3916,3916,3916,42,2117,2155,2156,0,2377,2418,2419,3917,3917,3917,42,2117,2156,2116,0,2377,2419,2376,3918,3918,3918,42,2118,2116,2156,0,2378,2376,2419,3919,3919,3919,42,2118,2156,2158,0,2378,2419,2421,3920,3920,3920,42,2145,2118,2158,0,2408,2378,2421,3921,3921,3921,42,2145,2158,2159,0,2408,2421,2422,3922,3922,3922,42,2158,2156,2157,0,2421,2419,2420,3923,3923,3923,42,2158,2157,2159,0,2421,2420,2422,3924,3924,3924,42,2149,2161,2160,0,2412,2424,2423,3925,3925,3925,42,2149,2160,2151,0,2412,2423,2414,3926,3926,3926,42,2161,2149,2150,0,2424,2412,2413,3927,3927,3927,42,2161,2150,2162,0,2424,2413,2425,3928,3928,3928,42,2162,2150,2154,0,2425,2413,2417,3929,3929,3929,42,2162,2154,2163,0,2425,2417,2426,3930,3930,3930,42,2164,2162,2163,0,2427,2425,2426,3931,3931,3931,42,2164,2163,2165,0,2427,2426,2428,3932,3932,3932,42,2167,2166,2163,0,2430,2429,2426,3933,3933,3933,42,2167,2163,2154,0,2430,2426,2417,3934,3934,3934,42,2166,2168,2165,0,2429,2431,2428,3935,3935,3935,42,2166,2165,2163,0,2429,2428,2426,3936,3936,3936,42,2170,2169,2160,0,2433,2432,2423,3937,3937,3937,42,2170,2160,2161,0,2433,2423,2424,3938,3938,3938,42,2170,2161,2162,0,2433,2424,2425,3939,3939,3939,42,2170,2162,2164,0,2433,2425,2427,3940,3940,3940,42,2172,2171,2167,0,2435,2434,2430,3941,3941,3941,42,2172,2167,2173,0,2435,2430,2436,3942,3942,3942,42,2166,2167,2171,0,2429,2430,2434,3943,3943,3943,42,2166,2171,2174,0,2429,2434,2437,3944,3944,3944,42,2172,2176,2175,0,2435,2439,2438,3945,3945,3945,42,2172,2175,2171,0,2435,2438,2434,3946,3946,3946,42,2175,2177,2174,0,2438,2440,2437,3947,3947,3947,42,2175,2174,2171,0,2438,2437,2434,3948,3948,3948,42,2180,2179,2178,0,2443,2442,2441,3949,3949,3949,42,2180,2178,2176,0,2443,2441,2439,3950,3950,3950,42,2176,2178,2181,0,2439,2441,2444,3951,3951,3951,42,2176,2181,2175,0,2439,2444,2438,3952,3952,3952,42,2182,2180,2176,0,2445,2443,2439,3953,3953,3953,42,2182,2176,2172,0,2445,2439,2435,3954,3954,3954,42,2174,2183,2168,0,2437,2446,2431,3955,3955,3955,42,2174,2168,2166,0,2437,2431,2429,3956,3956,3956,42,2168,2115,2118,0,2447,2375,2378,3957,3957,3957,42,2168,2118,2165,0,2447,2378,2448,3958,3958,3958,42,2183,2112,2115,0,2449,2372,2375,3959,3959,3959,42,2183,2115,2168,0,2449,2375,2447,3960,3960,3960,42,2170,2143,2144,0,2450,2406,2407,3961,3961,3961,42,2170,2144,2169,0,2450,2407,2451,3962,3962,3962,42,2143,2170,2164,0,2406,2450,2452,3963,3963,3963,42,2143,2164,2145,0,2406,2452,2408,3964,3964,3964,42,2185,2179,2184,0,2454,2442,2453,3965,3965,3965,42,2185,2184,2186,0,2454,2453,2455,3966,3966,3966,42,2186,2188,2187,0,2455,2457,2456,3967,3967,3967,42,2186,2187,2185,0,2455,2456,2454,3968,3968,3968,42,2186,2184,2088,0,2459,2458,2345,3969,3969,3969,42,2186,2088,2189,0,2459,2345,2460,3970,3970,3970,42,2188,2186,2189,0,2461,2459,2460,3971,3971,3971,42,2188,2189,2190,0,2461,2460,2462,3972,3972,3972,42,2193,2192,2191,0,2465,2464,2463,3973,3973,3973,42,2193,2191,2194,0,2465,2463,2466,3974,3974,3974,42,2195,2191,2192,0,2467,2463,2464,3975,3975,3975,42,2195,2192,2196,0,2467,2464,2468,3976,3976,3976,42,2192,2193,2197,0,2464,2465,2469,3977,3977,3977,42,2192,2197,2198,0,2464,2469,2470,3978,3978,3978,42,2192,2198,2199,0,2464,2470,2471,3979,3979,3979,42,2192,2199,2196,0,2464,2471,2468,3980,3980,3980,42,2198,2201,2200,0,2470,2473,2472,3981,3981,3981,42,2198,2200,2199,0,2470,2472,2471,3982,3982,3982,42,2197,2202,2201,0,2469,2474,2473,3983,3983,3983,42,2197,2201,2198,0,2469,2473,2470,3984,3984,3984,42,2204,2203,2199,0,2476,2475,2471,3985,3985,3985,42,2204,2199,2200,0,2476,2471,2472,3986,3986,3986,42,2200,2206,2205,0,2472,2478,2477,3987,3987,3987,42,2200,2205,2204,0,2472,2477,2476,3988,3988,3988,42,2206,2200,2201,0,2478,2472,2473,3989,3989,3989,42,2206,2201,2207,0,2478,2473,2479,3990,3990,3990,42,2196,2199,2203,0,2468,2471,2475,3991,3991,3991,42,2196,2203,2208,0,2468,2475,2480,3992,3992,3992,42,2209,2196,2208,0,2481,2468,2480,3993,3993,3993,42,2209,2208,2210,0,2481,2480,2482,3994,3994,3994,42,2212,2211,2209,0,2484,2483,2481,3995,3995,3995,42,2212,2209,2210,0,2484,2481,2482,3996,3996,3996,42,2211,2195,2209,0,2483,2467,2481,3997,3997,3997,42,2214,2213,2211,0,2486,2485,2483,3998,3998,3998,42,2214,2211,2212,0,2486,2483,2484,3999,3999,3999,42,2215,2211,2213,0,2487,2483,2485,4000,4000,4000,42,2215,2213,2216,0,2487,2485,2488,4001,4001,4001,42,2215,2217,2195,0,2487,2489,2467,4002,4002,4002,42,2215,2195,2211,0,2487,2467,2483,4003,4003,4003,42,2213,2214,2218,0,2485,2486,2490,4004,4004,4004,42,2213,2218,2219,0,2485,2490,2491,4005,4005,4005,42,2219,2220,2216,0,2491,2492,2488,4006,4006,4006,42,2219,2216,2213,0,2491,2488,2485,4007,4007,4007,42,2219,2218,2221,0,2491,2490,2493,4008,4008,4008,42,2219,2221,2222,0,2491,2493,2494,4009,4009,4009,42,2218,2224,2223,0,2497,2496,2495,4010,4010,4010,42,2218,2223,2221,0,2497,2495,2498,4011,4011,4011,42,2214,2225,2224,0,2500,2499,2496,4012,4012,4012,42,2214,2224,2218,0,2500,2496,2497,4013,4013,4013,42,2220,2219,2222,0,2492,2491,2494,4014,4014,4014,42,2220,2222,2226,0,2492,2494,2501,4015,4015,4015,42,2222,2221,2227,0,2494,2493,2502,4016,4016,4016,42,2222,2227,2228,0,2494,2502,2503,4017,4017,4017,42,2228,2229,2226,0,2503,2504,2501,4018,4018,4018,42,2228,2226,2222,0,2503,2501,2494,4019,4019,4019,42,2225,2231,2230,0,2499,2506,2505,4020,4020,4020,42,2225,2230,2224,0,2499,2505,2496,4021,4021,4021,42,2232,2223,2224,0,2507,2495,2496,4022,4022,4022,42,2232,2224,2230,0,2507,2496,2505,4023,4023,4023,42,2226,2229,2233,0,2501,2504,2508,4024,4024,4024,42,2226,2233,2234,0,2501,2508,2509,4025,4025,4025,42,2228,2236,2235,0,2503,2511,2510,4026,4026,4026,42,2228,2235,2229,0,2503,2510,2504,4027,4027,4027,42,2229,2235,2237,0,2504,2510,2512,4028,4028,4028,42,2229,2237,2233,0,2504,2512,2508,4029,4029,4029,42,2239,2238,2204,0,2515,2514,2513,4030,4030,4030,42,2239,2204,2205,0,2515,2513,2516,4031,4031,4031,42,2238,2239,2240,0,2514,2515,2517,4032,4032,4032,42,2238,2240,2241,0,2514,2517,2518,4033,4033,4033,42,2238,2242,2203,0,2514,2520,2519,4034,4034,4034,42,2238,2203,2204,0,2514,2519,2513,4035,4035,4035,42,2241,2243,2242,0,2518,2521,2520,4036,4036,4036,42,2241,2242,2238,0,2518,2520,2514,4037,4037,4037,42,2244,2241,2240,0,2522,2518,2517,4038,4038,4038,42,2244,2240,2245,0,2522,2517,2523,4039,4039,4039,42,2239,2247,2246,0,2515,2525,2524,4040,4040,4040,42,2239,2246,2240,0,2515,2524,2517,4041,4041,4041,42,2245,2240,2246,0,2523,2517,2524,4042,4042,4042,42,2245,2246,2248,0,2523,2524,2526,4043,4043,4043,42,2249,2243,2241,0,2527,2521,2518,4044,4044,4044,42,2249,2241,2244,0,2527,2518,2522,4045,4045,4045,42,2251,2250,2246,0,2529,2528,2524,4046,4046,4046,42,2251,2246,2247,0,2529,2524,2525,4047,4047,4047,42,2250,2252,2248,0,2528,2530,2526,4048,4048,4048,42,2250,2248,2246,0,2528,2526,2524,4049,4049,4049,42,2254,2253,2250,0,2532,2531,2528,4050,4050,4050,42,2254,2250,2251,0,2532,2528,2529,4051,4051,4051,42,2247,2239,2254,0,2525,2515,2532,4052,4052,4052,42,2247,2254,2251,0,2525,2532,2529,4053,4053,4053,42,2253,2255,2252,0,2531,2533,2530,4054,4054,4054,42,2253,2252,2250,0,2531,2530,2528,4055,4055,4055,42,2255,2257,2256,0,2533,2535,2534,4056,4056,4056,42,2255,2256,2252,0,2533,2534,2530,4057,4057,4057,42,2258,2257,2255,0,2536,2535,2533,4058,4058,4058,42,2258,2255,2259,0,2536,2533,2537,4059,4059,4059,42,2260,2259,2255,0,2538,2537,2533,4060,4060,4060,42,2260,2255,2253,0,2538,2533,2531,4061,4061,4061,42,2263,2262,2261,0,2541,2540,2539,4062,4062,4062,42,2263,2261,2264,0,2541,2539,2542,4063,4063,4063,42,2265,2263,2264,0,2543,2541,2542,4064,4064,4064,42,2265,2264,2266,0,2543,2542,2544,4065,4065,4065,42,2263,2267,2254,0,2546,2545,2532,4066,4066,4066,42,2263,2254,2262,0,2546,2532,2547,4067,4067,4067,42,2265,2268,2267,0,2549,2548,2545,4068,4068,4068,42,2265,2267,2263,0,2549,2545,2546,4069,4069,4069,42,2264,2261,2269,0,2542,2539,2550,4070,4070,4070,42,2264,2269,2270,0,2542,2550,2551,4071,4071,4071,42,2261,2206,2207,0,2539,2478,2479,4072,4072,4072,42,2261,2207,2269,0,2539,2479,2550,4073,4073,4073,42,2269,2207,2271,0,2550,2479,2552,4074,4074,4074,42,2269,2271,2272,0,2550,2552,2553,4075,4075,4075,42,2272,2273,2270,0,2553,2554,2551,4076,4076,4076,42,2272,2270,2269,0,2553,2551,2550,4077,4077,4077,42,2274,2270,2273,0,2555,2551,2554,4078,4078,4078,42,2274,2273,2275,0,2555,2554,2556,4079,4079,4079,42,2275,2273,2276,0,2556,2554,2557,4080,4080,4080,42,2275,2276,2277,0,2556,2557,2558,4081,4081,4081,42,2278,2276,2273,0,2559,2557,2554,4082,4082,4082,42,2278,2273,2272,0,2559,2554,2553,4083,4083,4083,42,2279,2278,2272,0,2560,2559,2553,4084,4084,4084,42,2279,2272,2271,0,2560,2553,2552,4085,4085,4085,42,2280,2279,2271,0,2561,2560,2552,4086,4086,4086,42,2280,2271,2202,0,2561,2552,2474,4087,4087,4087,42,2265,2266,2281,0,2543,2544,2562,4088,4088,4088,42,2265,2281,2282,0,2543,2562,2563,4089,4089,4089,42,2281,2266,2274,0,2562,2544,2555,4090,4090,4090,42,2281,2274,2283,0,2562,2555,2564,4091,4091,4091,42,2268,2265,2282,0,2548,2549,2565,4092,4092,4092,42,2268,2282,2284,0,2548,2565,2566,4093,4093,4093,42,2078,2079,2284,0,2335,2336,2566,4094,4094,4094,42,2078,2284,2282,0,2335,2566,2565,4095,4095,4095,42,2285,2078,2282,0,2568,2567,2563,4096,4096,4096,42,2285,2282,2281,0,2568,2563,2562,4097,4097,4097,42,2223,2232,2286,0,2495,2507,2569,4098,4098,4098,42,2223,2286,2287,0,2495,2569,2570,4099,4099,4099,42,2287,2286,2288,0,2570,2569,2571,4100,4100,4100,42,2287,2288,2289,0,2570,2571,2572,4101,4101,4101,42,2223,2287,2289,0,2495,2570,2572,4102,4102,4102,42,2223,2289,2290,0,2495,2572,2573,4103,4103,4103,42,2288,2291,2290,0,2571,2574,2573,4104,4104,4104,42,2288,2290,2289,0,2571,2573,2572,4105,4105,4105,42,2292,2290,2291,0,2575,2573,2574,4106,4106,4106,42,2292,2291,2293,0,2575,2574,2576,4107,4107,4107,42,2227,2290,2292,0,2577,2573,2575,4108,4108,4108,42,2227,2292,2294,0,2577,2575,2578,4109,4109,4109,42,2296,2295,2292,0,2580,2579,2575,4110,4110,4110,42,2296,2292,2293,0,2580,2575,2576,4111,4111,4111,42,2297,2294,2292,0,2581,2578,2575,4112,4112,4112,42,2297,2292,2295,0,2581,2575,2579,4113,4113,4113,42,2294,2297,2298,0,2584,2583,2582,4114,4114,4114,42,2294,2298,2236,0,2584,2582,2511,4115,4115,4115,42,2299,2297,2295,0,2585,2581,2579,4116,4116,4116,42,2299,2295,2300,0,2585,2579,2586,4117,4117,4117,42,2297,2299,2301,0,2583,2588,2587,4118,4118,4118,42,2297,2301,2298,0,2583,2587,2582,4119,4119,4119,42,2303,2302,2298,0,2590,2589,2582,4120,4120,4120,42,2303,2298,2301,0,2590,2582,2587,4121,4121,4121,42,2302,2235,2236,0,2589,2510,2511,4122,4122,4122,42,2302,2236,2298,0,2589,2511,2582,4123,4123,4123,42,2305,2304,2302,0,2592,2591,2589,4124,4124,4124,42,2305,2302,2303,0,2592,2589,2590,4125,4125,4125,42,2304,2237,2235,0,2591,2512,2510,4126,4126,4126,42,2304,2235,2302,0,2591,2510,2589,4127,4127,4127,42,2306,2304,2305,0,2593,2591,2592,4128,4128,4128,42,2306,2305,2307,0,2593,2592,2594,4129,4129,4129,42,2306,2308,2237,0,2593,2595,2512,4130,4130,4130,42,2306,2237,2304,0,2593,2512,2591,4131,4131,4131,42,2308,2309,2233,0,2595,2596,2508,4132,4132,4132,42,2308,2233,2237,0,2595,2508,2512,4133,4133,4133,42,2306,2311,2310,0,2593,2598,2597,4134,4134,4134,42,2306,2310,2308,0,2593,2597,2595,4135,4135,4135,42,2310,2312,2309,0,2597,2599,2596,4136,4136,4136,42,2310,2309,2308,0,2597,2596,2595,4137,4137,4137,42,2313,2299,2300,0,2600,2585,2586,4138,4138,4138,42,2313,2300,2314,0,2600,2586,2601,4139,4139,4139,42,2313,2314,2315,0,2600,2601,2602,4140,4140,4140,42,2313,2315,2316,0,2600,2602,2603,4141,4141,4141,42,2317,2301,2299,0,2604,2587,2588,4142,4142,4142,42,2317,2299,2313,0,2604,2588,2605,4143,4143,4143,42,2313,2316,2318,0,2605,2607,2606,4144,4144,4144,42,2313,2318,2317,0,2605,2606,2604,4145,4145,4145,42,2320,2319,2316,0,2609,2608,2603,4146,4146,4146,42,2320,2316,2315,0,2609,2603,2602,4147,4147,4147,42,2321,2318,2316,0,2611,2610,2603,4148,4148,4148,42,2321,2316,2319,0,2611,2603,2608,4149,4149,4149,42,2319,2320,2322,0,2608,2609,2612,4150,4150,4150,42,2319,2322,2323,0,2608,2612,2613,4151,4151,4151,42,2324,2321,2319,0,2614,2611,2608,4152,4152,4152,42,2324,2319,2323,0,2614,2608,2613,4153,4153,4153,42,2315,2314,2325,0,2602,2601,2615,4154,4154,4154,42,2315,2325,2320,0,2602,2615,2609,4155,4155,4155,42,2314,2300,2326,0,2601,2586,2616,4156,4156,4156,42,2314,2326,2325,0,2601,2616,2615,4157,4157,4157,42,2325,2326,2327,0,2615,2616,2617,4158,4158,4158,42,2325,2327,2328,0,2615,2617,2618,4159,4159,4159,42,2320,2325,2328,0,2609,2615,2618,4160,4160,4160,42,2320,2328,2322,0,2609,2618,2612,4161,4161,4161,42,2295,2296,2329,0,2579,2580,2619,4162,4162,4162,42,2295,2329,2330,0,2579,2619,2620,4163,4163,4163,42,2329,2332,2331,0,2619,2622,2621,4164,4164,4164,42,2329,2331,2330,0,2619,2621,2620,4165,4165,4165,42,2332,2329,2333,0,2622,2619,2623,4166,4166,4166,42,2332,2333,2334,0,2622,2623,2624,4167,4167,4167,42,2296,2335,2333,0,2580,2625,2623,4168,4168,4168,42,2296,2333,2329,0,2580,2623,2619,4169,4169,4169,42,2326,2332,2334,0,2616,2622,2624,4170,4170,4170,42,2326,2334,2327,0,2616,2624,2617,4171,4171,4171,42,2333,2337,2336,0,2623,2627,2626,4172,4172,4172,42,2333,2336,2334,0,2623,2626,2624,4173,4173,4173,42,2336,2338,2327,0,2626,2628,2617,4174,4174,4174,42,2336,2327,2334,0,2626,2617,2624,4175,4175,4175,42,2337,2339,2338,0,2627,2629,2628,4176,4176,4176,42,2337,2338,2336,0,2627,2628,2626,4177,4177,4177,42,2339,2311,2340,0,2629,2631,2630,4178,4178,4178,42,2339,2340,2338,0,2629,2630,2628,4179,4179,4179,42,2341,2339,2335,0,2632,2629,2625,4180,4180,4180,42,2341,2335,2342,0,2632,2625,2633,4181,4181,4181,42,2339,2337,2333,0,2629,2627,2623,4182,4182,4182,42,2339,2333,2335,0,2629,2623,2625,4183,4183,4183,42,2341,2310,2311,0,2632,2634,2631,4184,4184,4184,42,2341,2311,2339,0,2632,2631,2629,4185,4185,4185,42,2335,2296,2293,0,2625,2580,2576,4186,4186,4186,42,2335,2293,2342,0,2625,2576,2633,4187,4187,4187,42,2311,2306,2307,0,2598,2593,2594,4188,4188,4188,42,2311,2307,2340,0,2598,2594,2635,4189,4189,4189,42,2345,2344,2343,0,2638,2637,2636,4190,4190,4190,42,2345,2343,2346,0,2638,2636,2639,4191,4191,4191,42,2348,2347,2346,0,2641,2640,2639,4192,4192,4192,42,2348,2346,2343,0,2641,2639,2636,4193,4193,4193,42,2346,2347,2349,0,2639,2640,2642,4194,4194,4194,42,2346,2349,2345,0,2639,2642,2638,4195,4195,4195,42,2349,2347,2348,0,2642,2640,2641,4196,4196,4196,42,2349,2348,2350,0,2642,2641,2643,4197,4197,4197,42,2351,2349,2350,0,2644,2642,2643,4198,4198,4198,42,2351,2350,2352,0,2644,2643,2645,4199,4199,4199,42,2349,2351,2353,0,2642,2644,2646,4200,4200,4200,42,2349,2353,2354,0,2642,2646,2647,4201,4201,4201,42,2345,2349,2354,0,2638,2642,2647,4202,4202,4202,42,2345,2354,2312,0,2638,2647,2648,4203,4203,4203,42,2356,2355,2354,0,2651,2650,2649,4204,4204,4204,42,2356,2354,2353,0,2651,2649,2652,4205,4205,4205,42,2351,2358,2357,0,2644,2654,2653,4206,4206,4206,42,2351,2357,2353,0,2644,2653,2646,4207,4207,4207,42,2353,2357,2359,0,2652,2656,2655,4208,4208,4208,42,2353,2359,2356,0,2652,2655,2651,4209,4209,4209,42,2352,2360,2358,0,2645,2657,2654,4210,4210,4210,42,2352,2358,2351,0,2645,2654,2644,4211,4211,4211,42,2361,2358,2360,0,2658,2654,2657,4212,4212,4212,42,2361,2360,2362,0,2658,2657,2659,4213,4213,4213,42,2363,2362,2360,0,2660,2659,2657,4214,4214,4214,42,2363,2360,2231,0,2660,2657,2506,4215,4215,4215,42,2231,2360,2352,0,2506,2657,2645,4216,4216,4216,42,2231,2352,2230,0,2506,2645,2505,4217,4217,4217,42,2312,2310,2341,0,2648,2634,2632,4218,4218,4218,42,2312,2341,2345,0,2648,2632,2638,4219,4219,4219,42,2312,2354,2355,0,2599,2649,2650,4220,4220,4220,42,2312,2355,2309,0,2599,2650,2596,4221,4221,4221,42,2234,2364,2220,0,2509,2661,2492,4222,4222,4222,42,2234,2220,2226,0,2509,2492,2501,4223,4223,4223,42,2309,2355,2234,0,2596,2650,2509,4224,4224,4224,42,2309,2234,2233,0,2596,2509,2508,4225,4225,4225,42,2364,2234,2355,0,2661,2509,2650,4226,4226,4226,42,2364,2355,2356,0,2661,2650,2651,4227,4227,4227,42,2367,2366,2365,0,2664,2663,2662,4228,4228,4228,42,2367,2365,2324,0,2664,2662,2665,4229,4229,4229,42,2368,2367,2324,0,2667,2666,2614,4230,4230,4230,42,2368,2324,2323,0,2667,2614,2613,4231,4231,4231,42,2367,2368,2369,0,2664,2669,2668,4232,4232,4232,42,2367,2369,2366,0,2664,2668,2663,4233,4233,4233,42,2368,2323,2322,0,2667,2613,2612,4234,4234,4234,42,2368,2322,2370,0,2667,2612,2670,4235,4235,4235,42,2370,2371,2369,0,2670,2672,2671,4236,4236,4236,42,2370,2369,2368,0,2670,2671,2667,4237,4237,4237,42,2369,2371,2338,0,2671,2672,2628,4238,4238,4238,42,2369,2338,2340,0,2671,2628,2630,4239,4239,4239,42,2340,2307,2366,0,2635,2594,2663,4240,4240,4240,42,2340,2366,2369,0,2635,2663,2668,4241,4241,4241,42,2253,2254,2267,0,2531,2532,2545,4242,4242,4242,42,2253,2267,2260,0,2531,2545,2538,4243,4243,4243,42,2267,2268,2372,0,2545,2548,2673,4244,4244,4244,42,2267,2372,2260,0,2545,2673,2538,4245,4245,4245,42,2259,2260,2372,0,2537,2538,2673,4246,4246,4246,42,2259,2372,2373,0,2537,2673,2674,4247,4247,4247,42,2372,2268,2374,0,2673,2548,2675,4248,4248,4248,42,2372,2374,2375,0,2673,2675,2676,4249,4249,4249,42,2373,2372,2375,0,2674,2673,2676,4250,4250,4250,42,2373,2375,2376,0,2674,2676,2677,4251,4251,4251,42,2377,2373,2376,0,2678,2674,2677,4252,4252,4252,42,2377,2376,2378,0,2678,2677,2679,4253,4253,4253,42,2379,2377,2378,0,2680,2678,2679,4254,4254,4254,42,2379,2378,2380,0,2680,2679,2681,4255,4255,4255,42,2378,2376,2381,0,2679,2677,2682,4256,4256,4256,42,2378,2381,2380,0,2679,2682,2681,4257,4257,4257,42,2258,2377,2382,0,2536,2678,2683,4258,4258,4258,42,2258,2382,2383,0,2536,2683,2684,4259,4259,4259,42,2383,2382,2277,0,2686,2685,2558,4260,4260,4260,42,2383,2277,2276,0,2686,2558,2557,4261,4261,4261,42,2384,2277,2382,0,2687,2558,2685,4262,4262,4262,42,2384,2382,2385,0,2687,2685,2688,4263,4263,4263,42,2385,2382,2377,0,2689,2683,2678,4264,4264,4264,42,2385,2377,2379,0,2689,2678,2680,4265,4265,4265,42,2386,2257,2258,0,2690,2535,2536,4266,4266,4266,42,2386,2258,2383,0,2690,2536,2684,4267,4267,4267,42,2276,2278,2386,0,2557,2559,2691,4268,4268,4268,42,2276,2386,2383,0,2557,2691,2686,4269,4269,4269,42,2385,2379,2387,0,2689,2680,2692,4270,4270,4270,42,2385,2387,2388,0,2689,2692,2693,4271,4271,4271,42,2389,2384,2385,0,2694,2687,2688,4272,4272,4272,42,2389,2385,2388,0,2694,2688,2695,4273,4273,4273,42,2388,2387,2390,0,2693,2692,2696,4274,4274,4274,42,2388,2390,2391,0,2693,2696,2697,4275,4275,4275,42,2393,2392,2390,0,2699,2698,2696,4276,4276,4276,42,2393,2390,2387,0,2699,2696,2692,4277,4277,4277,42,2387,2379,2394,0,2692,2680,2700,4278,4278,4278,42,2387,2394,2393,0,2692,2700,2699,4279,4279,4279,42,2384,2389,2395,0,2687,2694,2701,4280,4280,4280,42,2384,2395,2396,0,2687,2701,2702,4281,4281,4281,42,2388,2391,2397,0,2695,2704,2703,4282,4282,4282,42,2388,2397,2389,0,2695,2703,2694,4283,4283,4283,42,2397,2398,2395,0,2703,2705,2701,4284,4284,4284,42,2397,2395,2389,0,2703,2701,2694,4285,4285,4285,42,2396,2275,2277,0,2702,2556,2558,4286,4286,4286,42,2396,2277,2384,0,2702,2558,2687,4287,4287,4287,42,2283,2274,2275,0,2564,2555,2556,4288,4288,4288,42,2283,2275,2396,0,2564,2556,2702,4289,4289,4289,42,2394,2400,2399,0,2700,2707,2706,4290,4290,4290,42,2394,2399,2393,0,2700,2706,2699,4291,4291,4291,42,2393,2399,2082,0,2699,2706,2339,4292,4292,4292,42,2393,2082,2392,0,2699,2339,2698,4293,4293,4293,42,2400,2284,2079,0,2707,2566,2336,4294,4294,4294,42,2400,2079,2399,0,2707,2336,2706,4295,4295,4295,42,2400,2394,2381,0,2707,2700,2682,4296,4296,4296,42,2400,2381,2401,0,2707,2682,2708,4297,4297,4297,42,2284,2400,2401,0,2566,2707,2708,4298,4298,4298,42,2284,2401,2402,0,2566,2708,2709,4299,4299,4299,42,2105,2404,2403,0,2362,2711,2710,4300,4300,4300,42,2105,2403,2405,0,2362,2710,2712,4301,4301,4301,42,2407,2406,2405,0,2714,2713,2712,4302,4302,4302,42,2407,2405,2403,0,2714,2712,2710,4303,4303,4303,42,2403,2404,2361,0,2710,2711,2658,4304,4304,4304,42,2403,2361,2407,0,2710,2658,2714,4305,4305,4305,42,2105,2106,2408,0,2362,2363,2715,4306,4306,4306,42,2105,2408,2404,0,2362,2715,2711,4307,4307,4307,42,2409,2361,2404,0,2716,2658,2711,4308,4308,4308,42,2409,2404,2408,0,2716,2711,2715,4309,4309,4309,42,2411,2410,2395,0,2718,2717,2701,4310,4310,4310,42,2411,2395,2398,0,2718,2701,2705,4311,4311,4311,42,2398,2397,2391,0,2720,2719,2697,4312,4312,4312,42,2398,2391,2412,0,2720,2697,2721,4313,4313,4313,42,2392,2412,2391,0,2698,2721,2697,4314,4314,4314,42,2392,2391,2390,0,2698,2697,2696,4315,4315,4315,42,2398,2412,2083,0,2720,2721,2340,4316,4316,4316,42,2398,2083,2411,0,2720,2340,2722,4317,4317,4317,42,2083,2412,2392,0,2340,2721,2698,4318,4318,4318,42,2083,2392,2082,0,2340,2698,2339,4319,4319,4319,42,2081,2413,2411,0,2338,2723,2722,4320,4320,4320,42,2081,2411,2083,0,2338,2722,2340,4321,4321,4321,42,2413,2285,2410,0,2724,2568,2717,4322,4322,4322,42,2413,2410,2411,0,2724,2717,2718,4323,4323,4323,42,2413,2081,2078,0,2724,2725,2567,4324,4324,4324,42,2413,2078,2285,0,2724,2567,2568,4325,4325,4325,42,2415,2414,2141,0,2727,2726,2404,4326,4326,4326,42,2415,2141,2139,0,2727,2404,2402,4327,4327,4327,42,2147,2151,2414,0,2729,2728,2726,4328,4328,4328,42,2147,2414,2415,0,2729,2726,2727,4329,4329,4329,42,2135,2415,2139,0,2395,2727,2402,4330,4330,4330,42,2135,2139,2134,0,2395,2402,2394,4331,4331,4331,42,2135,2136,2147,0,2395,2730,2729,4332,4332,4332,42,2135,2147,2415,0,2395,2729,2727,4333,4333,4333,42,2418,2417,2416,0,2733,2732,2731,4334,4334,4334,42,2418,2416,2419,0,2733,2731,2734,4335,4335,4335,42,2420,2418,2419,0,2735,2733,2734,4336,4336,4336,42,2420,2419,2421,0,2735,2734,2736,4337,4337,4337,42,2422,2417,2418,0,2737,2732,2733,4338,4338,4338,42,2422,2418,2420,0,2737,2733,2735,4339,4339,4339,42,2423,2421,2419,0,2738,2736,2734,4340,4340,4340,42,2423,2419,2424,0,2738,2734,2739,4341,4341,4341,42,2425,2423,2424,0,2740,2738,2739,4342,4342,4342,42,2425,2424,2426,0,2740,2739,2741,4343,4343,4343,42,2427,2424,2419,0,2742,2739,2734,4344,4344,4344,42,2427,2419,2416,0,2742,2734,2731,4345,4345,4345,42,2427,2428,2426,0,2742,2743,2741,4346,4346,4346,42,2427,2426,2424,0,2742,2741,2739,4347,4347,4347,42,2431,2430,2429,0,2746,2745,2744,4348,4348,4348,42,2431,2429,2432,0,2746,2744,2747,4349,4349,4349,42,2433,2430,2431,0,2750,2749,2748,4350,4350,4350,42,2433,2431,2434,0,2750,2748,2751,4351,4351,4351,42,2436,2435,2430,0,2753,2752,2749,4352,4352,4352,42,2436,2430,2433,0,2753,2749,2750,4353,4353,4353,42,2434,2437,2076,0,2751,2754,2333,4354,4354,4354,42,2434,2076,2433,0,2751,2333,2750,4355,4355,4355,42,2437,2438,2072,0,2754,2755,2329,4356,4356,4356,42,2437,2072,2076,0,2754,2329,2333,4357,4357,4357,42,2438,2439,2075,0,2757,2756,2332,4358,4358,4358,42,2438,2075,2072,0,2757,2332,2329,4359,4359,4359,42,2438,2437,2440,0,2757,2759,2758,4360,4360,4360,42,2438,2440,2439,0,2757,2758,2756,4361,4361,4361,42,2437,2434,2441,0,2759,2761,2760,4362,4362,4362,42,2437,2441,2440,0,2759,2760,2758,4363,4363,4363,42,2441,2434,2431,0,2760,2761,2746,4364,4364,4364,42,2441,2431,2432,0,2760,2746,2747,4365,4365,4365,42,2141,2414,2169,0,2404,2726,2451,4366,4366,4366,42,2141,2169,2144,0,2404,2451,2407,4367,4367,4367,42,2440,2443,2442,0,2758,2763,2762,4368,4368,4368,42,2440,2442,2439,0,2758,2762,2756,4369,4369,4369,42,2439,2442,2444,0,2756,2762,2764,4370,4370,4370,42,2439,2444,2075,0,2756,2764,2332,4371,4371,4371,42,2181,2445,2107,0,2444,2765,2364,4372,4372,4372,42,2181,2107,2108,0,2444,2364,2365,4373,4373,4373,42,2445,2446,2109,0,2765,2766,2369,4374,4374,4374,42,2445,2109,2107,0,2765,2369,2364,4375,4375,4375,42,2448,2447,2446,0,2768,2767,2766,4376,4376,4376,42,2448,2446,2445,0,2768,2766,2765,4377,4377,4377,42,2178,2448,2445,0,2441,2768,2765,4378,4378,4378,42,2178,2445,2181,0,2441,2765,2444,4379,4379,4379,42,2185,2187,2447,0,2454,2456,2767,4380,4380,4380,42,2185,2447,2448,0,2454,2767,2768,4381,4381,4381,42,2106,2109,2449,0,2368,2369,2769,4382,4382,4382,42,2106,2449,2408,0,2368,2769,2770,4383,4383,4383,42,2450,2442,2443,0,2771,2762,2763,4384,4384,4384,42,2450,2443,2451,0,2771,2763,2772,4385,4385,4385,42,2452,2444,2442,0,2773,2764,2762,4386,4386,4386,42,2452,2442,2450,0,2773,2762,2771,4387,4387,4387,42,2444,2452,2417,0,2764,2773,2732,4388,4388,4388,42,2444,2417,2422,0,2764,2732,2737,4389,4389,4389,42,2075,2444,2422,0,2332,2764,2737,4390,4390,4390,42,2075,2422,2074,0,2332,2737,2331,4391,4391,4391,42,2454,2068,2453,0,2775,2321,2774,4392,4392,4392,42,2454,2453,2455,0,2775,2774,2776,4393,4393,4393,42,2456,2453,2068,0,2777,2774,2321,4394,4394,4394,42,2456,2068,2069,0,2777,2321,2322,4395,4395,4395,42,2179,2180,2457,0,2442,2443,2778,4396,4396,4396,42,2179,2457,2184,0,2442,2778,2453,4397,4397,4397,42,2086,2088,2184,0,2343,2345,2458,4398,4398,4398,42,2086,2184,2457,0,2343,2458,2779,4399,4399,4399,42,2180,2182,2119,0,2443,2445,2780,4400,4400,4400,42,2180,2119,2457,0,2443,2780,2778,4401,4401,4401,42,2457,2119,2120,0,2779,2379,2380,4402,4402,4402,42,2457,2120,2086,0,2779,2380,2343,4403,4403,4403,42,2111,2097,2458,0,2371,2354,2781,4404,4404,4404,42,2111,2458,2120,0,2371,2781,2380,4405,4405,4405,42,2086,2120,2458,0,2343,2380,2781,4406,4406,4406,42,2086,2458,2085,0,2343,2781,2342,4407,4407,4407,42,2054,2057,2459,0,2304,2307,2782,4408,4408,4408,42,2054,2459,2460,0,2304,2782,2783,4409,4409,4409,42,2461,2054,2460,0,2784,2304,2783,4410,4410,4410,42,2461,2460,2462,0,2784,2783,2785,4411,4411,4411,42,2055,2054,2461,0,2305,2304,2784,4412,4412,4412,42,2055,2461,2463,0,2305,2784,2786,4413,4413,4413,42,2462,2460,2464,0,2785,2783,2787,4414,4414,4414,42,2462,2464,2465,0,2785,2787,2788,4415,4415,4415,42,2466,2461,2462,0,2789,2784,2785,4416,4416,4416,42,2466,2462,2465,0,2789,2785,2788,4417,4417,4417,42,2465,2464,2467,0,2788,2787,2790,4418,4418,4418,42,2465,2467,2468,0,2788,2790,2791,4419,4419,4419,42,2468,2469,2466,0,2791,2792,2789,4420,4420,4420,42,2468,2466,2465,0,2791,2789,2788,4421,4421,4421,42,2460,2459,2470,0,2783,2782,2793,4422,4422,4422,42,2460,2470,2464,0,2783,2793,2787,4423,4423,4423,42,2464,2470,2471,0,2787,2793,2794,4424,4424,4424,42,2464,2471,2467,0,2787,2794,2790,4425,4425,4425,42,2470,2459,2472,0,2793,2782,2795,4426,4426,4426,42,2470,2472,2473,0,2793,2795,2796,4427,4427,4427,42,2474,2471,2470,0,2797,2794,2793,4428,4428,4428,42,2474,2470,2473,0,2797,2793,2796,4429,4429,4429,42,2476,2475,2056,0,2799,2798,2306,4430,4430,4430,42,2476,2056,2055,0,2799,2306,2305,4431,4431,4431,42,2478,2476,2477,0,2801,2799,2800,4432,4432,4432,42,2478,2477,2479,0,2801,2800,2802,4433,4433,4433,42,2477,2463,2480,0,2800,2786,2803,4434,4434,4434,42,2477,2480,2479,0,2800,2803,2802,4435,4435,4435,42,2475,2476,2478,0,2798,2799,2801,4436,4436,4436,42,2475,2478,2481,0,2798,2801,2804,4437,4437,4437,42,2484,2483,2482,0,2807,2806,2805,4438,4438,4438,42,2484,2482,2485,0,2807,2805,2808,4439,4439,4439,42,2062,2484,2485,0,2312,2807,2808,4440,4440,4440,42,2062,2485,2061,0,2312,2808,2311,4441,4441,4441,42,2061,2485,2486,0,2311,2808,2809,4442,4442,4442,42,2061,2486,2487,0,2311,2809,2810,4443,4443,4443,42,2488,2486,2485,0,2811,2809,2808,4444,4444,4444,42,2488,2485,2482,0,2811,2808,2805,4445,4445,4445,42,2491,2490,2489,0,2814,2813,2812,4446,4446,4446,42,2491,2489,2492,0,2814,2812,2815,4447,4447,4447,42,2494,2493,2490,0,2817,2816,2813,4448,4448,4448,42,2494,2490,2491,0,2817,2813,2814,4449,4449,4449,42,2496,2495,2483,0,2819,2818,2806,4450,4450,4450,42,2496,2483,2484,0,2819,2806,2807,4451,4451,4451,42,2498,2497,2493,0,2821,2820,2816,4452,4452,4452,42,2498,2493,2494,0,2821,2816,2817,4453,4453,4453,42,2500,2499,2495,0,2823,2822,2818,4454,4454,4454,42,2500,2495,2496,0,2823,2818,2819,4455,4455,4455,42,2502,2501,2497,0,2825,2824,2820,4456,4456,4456,42,2502,2497,2498,0,2825,2820,2821,4457,4457,4457,42,2496,2066,2067,0,2819,2319,2320,4458,4458,4458,42,2496,2067,2500,0,2819,2320,2823,4459,4459,4459,42,2066,2496,2484,0,2319,2819,2807,4460,4460,4460,42,2066,2484,2062,0,2319,2807,2312,4461,4461,4461,42,2499,2500,2503,0,2822,2823,2826,4462,4462,4462,42,2499,2503,2504,0,2822,2826,2827,4463,4463,4463,42,2505,2504,2503,0,2828,2827,2826,4464,4464,4464,42,2505,2503,2481,0,2828,2826,2804,4465,4465,4465,42,2507,2506,2501,0,2830,2829,2824,4466,4466,4466,42,2507,2501,2502,0,2830,2824,2825,4467,4467,4467,42,2508,2506,2507,0,2831,2829,2830,4468,4468,4468,42,2508,2507,2509,0,2831,2830,2832,4469,4469,4469,42,2500,2067,2510,0,2823,2320,2833,4470,4470,4470,42,2500,2510,2503,0,2823,2833,2826,4471,4471,4471,42,2510,2475,2481,0,2833,2798,2804,4472,4472,4472,42,2510,2481,2503,0,2833,2804,2826,4473,4473,4473,42,2067,2056,2475,0,2320,2306,2798,4474,4474,4474,42,2067,2475,2510,0,2320,2798,2833,4475,4475,4475,42,2511,2490,2493,0,2834,2813,2816,4476,4476,4476,42,2511,2493,2512,0,2834,2816,2835,4477,4477,4477,42,2513,2489,2490,0,2836,2812,2813,4478,4478,4478,42,2513,2490,2511,0,2836,2813,2834,4479,4479,4479,42,2515,2514,2489,0,2838,2837,2812,4480,4480,4480,42,2515,2489,2513,0,2838,2812,2836,4481,4481,4481,42,2518,2517,2516,0,2841,2840,2839,4482,4482,4482,42,2518,2516,2519,0,2841,2839,2842,4483,4483,4483,42,2521,2520,2518,0,2844,2843,2841,4484,4484,4484,42,2521,2518,2519,0,2844,2841,2842,4485,4485,4485,42,2514,2522,2492,0,2837,2845,2815,4486,4486,4486,42,2514,2492,2489,0,2837,2815,2812,4487,4487,4487,42,2524,2523,2520,0,2847,2846,2843,4488,4488,4488,42,2524,2520,2521,0,2847,2843,2844,4489,4489,4489,42,2518,2520,2525,0,2841,2843,2848,4490,4490,4490,42,2518,2525,2526,0,2841,2848,2849,4491,4491,4491,42,2517,2518,2526,0,2840,2841,2849,4492,4492,4492,42,2517,2526,2527,0,2840,2849,2850,4493,4493,4493,42,2520,2523,2528,0,2843,2846,2851,4494,4494,4494,42,2520,2528,2525,0,2843,2851,2848,4495,4495,4495,42,2525,2528,2529,0,2848,2851,2852,4496,4496,4496,42,2525,2529,2530,0,2848,2852,2853,4497,4497,4497,42,2531,2529,2528,0,2854,2852,2851,4498,4498,4498,42,2531,2528,2532,0,2854,2851,2855,4499,4499,4499,42,2532,2528,2523,0,2855,2851,2846,4500,4500,4500,42,2532,2523,2533,0,2855,2846,2856,4501,4501,4501,42,2534,2533,2523,0,2857,2856,2846,4502,4502,4502,42,2534,2523,2524,0,2857,2846,2847,4503,4503,4503,42,2535,2533,2534,0,2858,2856,2857,4504,4504,4504,42,2535,2534,2536,0,2858,2857,2859,4505,4505,4505,42,2487,2486,2537,0,2810,2809,2860,4506,4506,4506,42,2487,2537,2538,0,2810,2860,2861,4507,4507,4507,42,2539,2537,2486,0,2862,2860,2809,4508,4508,4508,42,2539,2486,2488,0,2862,2809,2811,4509,4509,4509,42,2540,2537,2539,0,2863,2860,2862,4510,4510,4510,42,2540,2539,2541,0,2863,2862,2864,4511,4511,4511,42,2540,2542,2538,0,2863,2865,2861,4512,4512,4512,42,2540,2538,2537,0,2863,2861,2860,4513,4513,4513,42,2543,2542,2540,0,2866,2865,2863,4514,4514,4514,42,2543,2540,2544,0,2866,2863,2867,4515,4515,4515,42,2547,2546,2545,0,2870,2869,2868,4516,4516,4516,42,2547,2545,2548,0,2870,2868,2871,4517,4517,4517,42,2551,2550,2549,0,2874,2873,2872,4518,4518,4518,42,2551,2549,2548,0,2874,2872,2871,4519,4519,4519,42,2541,2552,2544,0,2864,2875,2867,4520,4520,4520,42,2541,2544,2540,0,2864,2867,2863,4521,4521,4521,42,2194,2191,2553,0,2466,2463,2876,4522,4522,4522,42,2194,2553,2554,0,2466,2876,2877,4523,4523,4523,42,2556,2555,2522,0,2879,2878,2845,4524,4524,4524,42,2556,2522,2514,0,2879,2845,2837,4525,4525,4525,42,2546,2453,2456,0,2869,2774,2777,4526,4526,4526,42,2546,2456,2545,0,2869,2777,2868,4527,4527,4527,42,2557,2547,2548,0,2880,2870,2871,4528,4528,4528,42,2557,2548,2549,0,2880,2871,2872,4529,4529,4529,42,2558,2557,2549,0,2881,2880,2872,4530,4530,4530,42,2558,2549,2559,0,2881,2872,2882,4531,4531,4531,42,2561,2560,2547,0,2884,2883,2870,4532,4532,4532,42,2561,2547,2557,0,2884,2870,2880,4533,4533,4533,42,2453,2546,2562,0,2774,2869,2885,4534,4534,4534,42,2453,2562,2455,0,2774,2885,2776,4535,4535,4535,42,2564,2064,2563,0,2887,2315,2886,4536,4536,4536,42,2564,2563,2565,0,2887,2886,2888,4537,4537,4537,42,2565,2567,2566,0,2888,2890,2889,4538,4538,4538,42,2565,2566,2568,0,2888,2889,2891,4539,4539,4539,42,2564,2565,2568,0,2887,2888,2891,4540,4540,4540,42,2564,2568,2569,0,2887,2891,2892,4541,4541,4541,42,2570,2568,2566,0,2893,2891,2889,4542,4542,4542,42,2570,2566,2571,0,2893,2889,2894,4543,4543,4543,42,2572,2569,2568,0,2895,2892,2891,4544,4544,4544,42,2572,2568,2570,0,2895,2891,2893,4545,4545,4545,42,2575,2574,2573,0,2898,2897,2896,4546,4546,4546,42,2575,2573,2576,0,2898,2896,2899,4547,4547,4547,42,2578,2577,2574,0,2901,2900,2897,4548,4548,4548,42,2578,2574,2575,0,2901,2897,2898,4549,4549,4549,42,2579,2575,2576,0,2902,2898,2899,4550,4550,4550,42,2579,2576,2580,0,2902,2899,2903,4551,4551,4551,42,2581,2578,2575,0,2904,2901,2898,4552,4552,4552,42,2581,2575,2579,0,2904,2898,2902,4553,4553,4553,42,2582,2579,2580,0,2905,2902,2903,4554,4554,4554,42,2582,2580,2583,0,2905,2903,2906,4555,4555,4555,42,2584,2581,2579,0,2907,2904,2902,4556,4556,4556,42,2584,2579,2582,0,2907,2902,2905,4557,4557,4557,42,2583,2586,2585,0,2906,2909,2908,4558,4558,4558,42,2583,2585,2582,0,2906,2908,2905,4559,4559,4559,42,2582,2585,2587,0,2905,2908,2910,4560,4560,4560,42,2582,2587,2584,0,2905,2910,2907,4561,4561,4561,42,2586,2583,2588,0,2909,2906,2911,4562,4562,4562,42,2586,2588,2589,0,2909,2911,2912,4563,4563,4563,42,2590,2586,2589,0,2913,2909,2912,4564,4564,4564,42,2590,2589,2591,0,2913,2912,2914,4565,4565,4565,42,2589,2588,2592,0,2912,2911,2915,4566,4566,4566,42,2589,2592,2593,0,2912,2915,2916,4567,4567,4567,42,2591,2589,2593,0,2914,2912,2916,4568,4568,4568,42,2591,2593,2594,0,2914,2916,2917,4569,4569,4569,42,2595,2585,2586,0,2918,2908,2909,4570,4570,4570,42,2595,2586,2590,0,2918,2909,2913,4571,4571,4571,42,2588,2597,2596,0,2911,2920,2919,4572,4572,4572,42,2588,2596,2592,0,2911,2919,2915,4573,4573,4573,42,2596,2599,2598,0,2919,2922,2921,4574,4574,4574,42,2596,2598,2592,0,2919,2921,2915,4575,4575,4575,42,2601,2600,2596,0,2924,2923,2919,4576,4576,4576,42,2601,2596,2597,0,2924,2919,2920,4577,4577,4577,42,2600,2602,2599,0,2923,2925,2922,4578,4578,4578,42,2600,2599,2596,0,2923,2922,2919,4579,4579,4579,42,2592,2598,2603,0,2915,2921,2926,4580,4580,4580,42,2592,2603,2593,0,2915,2926,2916,4581,4581,4581,42,2604,2590,2591,0,2927,2913,2914,4582,4582,4582,42,2604,2591,2605,0,2927,2914,2928,4583,4583,4583,42,2606,2595,2590,0,2929,2918,2913,4584,4584,4584,42,2606,2590,2604,0,2929,2913,2927,4585,4585,4585,42,2595,2606,2607,0,2918,2929,2930,4586,4586,4586,42,2595,2607,2608,0,2918,2930,2931,4587,4587,4587,42,2611,2610,2609,0,2934,2933,2932,4588,4588,4588,42,2611,2609,2606,0,2934,2932,2929,4589,4589,4589,42,2604,2612,2611,0,2927,2935,2934,4590,4590,4590,42,2604,2611,2606,0,2927,2934,2929,4591,4591,4591,42,2607,2606,2609,0,2930,2929,2932,4592,4592,4592,42,2607,2609,2613,0,2930,2932,2936,4593,4593,4593,42,2615,2614,2578,0,2938,2937,2901,4594,4594,4594,42,2615,2578,2581,0,2938,2901,2904,4595,4595,4595,42,2617,2614,2616,0,2940,2937,2939,4596,4596,4596,42,2617,2616,2618,0,2940,2939,2941,4597,4597,4597,42,2614,2615,2619,0,2937,2938,2942,4598,4598,4598,42,2614,2619,2616,0,2937,2942,2939,4599,4599,4599,42,2621,2474,2620,0,2944,2797,2943,4600,4600,4600,42,2621,2620,2617,0,2944,2943,2940,4601,4601,4601,42,2624,2623,2622,0,2947,2946,2945,4602,4602,4602,42,2624,2622,2625,0,2947,2945,2948,4603,4603,4603,42,2621,2617,2618,0,2944,2940,2941,4604,4604,4604,42,2621,2618,2624,0,2944,2941,2947,4605,4605,4605,42,2626,2601,2576,0,2951,2950,2949,4606,4606,4606,42,2626,2576,2573,0,2951,2949,2952,4607,4607,4607,42,2628,2561,2627,0,2954,2884,2953,4608,4608,4608,42,2628,2627,2626,0,2954,2953,2951,4609,4609,4609,42,2626,2627,2600,0,2951,2953,2955,4610,4610,4610,42,2626,2600,2601,0,2951,2955,2950,4611,4611,4611,42,2627,2629,2602,0,2953,2957,2956,4612,4612,4612,42,2627,2602,2600,0,2953,2956,2955,4613,4613,4613,42,2629,2631,2630,0,2957,2959,2958,4614,4614,4614,42,2629,2630,2602,0,2957,2958,2956,4615,4615,4615,42,2602,2630,2632,0,2925,2961,2960,4616,4616,4616,42,2602,2632,2599,0,2925,2960,2922,4617,4617,4617,42,2634,2633,2631,0,2963,2962,2959,4618,4618,4618,42,2634,2631,2629,0,2963,2959,2957,4619,4619,4619,42,2557,2558,2634,0,2880,2881,2963,4620,4620,4620,42,2557,2634,2561,0,2880,2963,2884,4621,4621,4621,42,2629,2627,2561,0,2957,2953,2884,4622,4622,4622,42,2629,2561,2634,0,2957,2884,2963,4623,4623,4623,42,2636,2635,2479,0,2965,2964,2802,4624,4624,4624,42,2636,2479,2480,0,2965,2802,2803,4625,4625,4625,42,2639,2638,2637,0,2968,2967,2966,4626,4626,4626,42,2639,2637,2640,0,2968,2966,2969,4627,4627,4627,42,2642,2641,2639,0,2971,2970,2968,4628,4628,4628,42,2642,2639,2640,0,2971,2968,2969,4629,4629,4629,42,2637,2638,2643,0,2966,2967,2972,4630,4630,4630,42,2637,2643,2644,0,2966,2972,2973,4631,4631,4631,42,2635,2645,2478,0,2964,2974,2801,4632,4632,4632,42,2635,2478,2479,0,2964,2801,2802,4633,4633,4633,42,2643,2638,2646,0,2972,2967,2975,4634,4634,4634,42,2643,2646,2647,0,2972,2975,2976,4635,4635,4635,42,2508,2509,2644,0,2831,2832,2973,4636,4636,4636,42,2508,2644,2643,0,2831,2973,2972,4637,4637,4637,42,2648,2508,2643,0,2977,2831,2972,4638,4638,4638,42,2648,2643,2647,0,2977,2972,2976,4639,4639,4639,42,2649,2648,2647,0,2978,2977,2976,4640,4640,4640,42,2649,2647,2650,0,2978,2976,2979,4641,4641,4641,42,2646,2651,2650,0,2975,2980,2979,4642,4642,4642,42,2646,2650,2647,0,2975,2979,2976,4643,4643,4643,42,2654,2653,2652,0,2983,2982,2981,4644,4644,4644,42,2654,2652,2506,0,2983,2981,2829,4645,4645,4645,42,2652,2653,2655,0,2981,2982,2984,4646,4646,4646,42,2652,2655,2656,0,2981,2984,2985,4647,4647,4647,42,2655,2653,2654,0,2984,2982,2983,4648,4648,4648,42,2655,2654,2657,0,2984,2983,2986,4649,4649,4649,42,2536,2656,2658,0,2859,2985,2987,4650,4650,4650,42,2536,2658,2535,0,2859,2987,2858,4651,4651,4651,42,2658,2656,2659,0,2987,2985,2988,4652,4652,4652,42,2658,2659,2660,0,2987,2988,2989,4653,4653,4653,42,2650,2243,2249,0,2979,2521,2527,4654,4654,4654,42,2650,2249,2649,0,2979,2527,2978,4655,4655,4655,42,2651,2242,2243,0,2980,2520,2521,4656,4656,4656,42,2651,2243,2650,0,2980,2521,2979,4657,4657,4657,42,2249,2661,2657,0,2527,2990,2986,4658,4658,4658,42,2249,2657,2649,0,2527,2986,2978,4659,4659,4659,42,2649,2657,2654,0,2978,2986,2983,4660,4660,4660,42,2649,2654,2648,0,2978,2983,2977,4661,4661,4661,42,2663,2662,2651,0,2992,2991,2980,4662,4662,4662,42,2663,2651,2646,0,2992,2980,2975,4663,4663,4663,42,2665,2664,2662,0,2994,2993,2991,4664,4664,4664,42,2665,2662,2663,0,2994,2991,2992,4665,4665,4665,42,2641,2642,2666,0,2970,2971,2995,4666,4666,4666,42,2641,2666,2406,0,2970,2995,2713,4667,4667,4667,42,2406,2407,2667,0,2713,2714,2996,4668,4668,4668,42,2406,2667,2641,0,2713,2996,2970,4669,4669,4669,42,2668,2639,2641,0,2997,2968,2970,4670,4670,4670,42,2668,2641,2667,0,2997,2970,2996,4671,4671,4671,42,2407,2361,2362,0,2714,2658,2659,4672,4672,4672,42,2407,2362,2667,0,2714,2659,2996,4673,4673,4673,42,2667,2362,2363,0,2996,2659,2660,4674,4674,4674,42,2667,2363,2668,0,2996,2660,2997,4675,4675,4675,42,2666,2670,2669,0,2995,2999,2998,4676,4676,4676,42,2666,2669,2406,0,2995,2998,2713,4677,4677,4677,42,2406,2669,2671,0,2713,2998,3000,4678,4678,4678,42,2406,2671,2405,0,2713,3000,2712,4679,4679,4679,42,2671,2669,2672,0,3000,2998,3001,4680,4680,4680,42,2671,2672,2673,0,3000,3001,3002,4681,4681,4681,42,2673,2675,2674,0,3002,3004,3003,4682,4682,4682,42,2673,2674,2671,0,3002,3003,3000,4683,4683,4683,42,2622,2676,2673,0,2945,3005,3002,4684,4684,4684,42,2622,2673,2672,0,2945,3002,3001,4685,4685,4685,42,2676,2190,2675,0,3005,2462,3004,4686,4686,4686,42,2676,2675,2673,0,3005,3004,3002,4687,4687,4687,42,2622,2623,2677,0,2945,2946,3006,4688,4688,4688,42,2622,2677,2676,0,2945,3006,3005,4689,4689,4689,42,2190,2676,2677,0,2462,3005,3006,4690,4690,4690,42,2190,2677,2188,0,2462,3006,2461,4691,4691,4691,42,2190,2189,2101,0,2462,2460,2358,4692,4692,4692,42,2190,2101,2675,0,2462,2358,3004,4693,4693,4693,42,2675,2101,2100,0,3004,2358,2357,4694,4694,4694,42,2675,2100,2674,0,3004,2357,3003,4695,4695,4695,42,2446,2447,2678,0,2766,2767,3007,4696,4696,4696,42,2446,2678,2679,0,2766,3007,3008,4697,4697,4697,42,2605,2591,2594,0,2928,2914,2917,4698,4698,4698,42,2605,2594,2680,0,2928,2917,3009,4699,4699,4699,42,2682,2681,2680,0,3011,3010,3009,4700,4700,4700,42,2682,2680,2594,0,3011,3009,2917,4701,4701,4701,42,2603,2682,2594,0,2926,3011,2917,4702,4702,4702,42,2603,2594,2593,0,2926,2917,2916,4703,4703,4703,42,2603,2684,2683,0,2926,3013,3012,4704,4704,4704,42,2603,2683,2682,0,2926,3012,3011,4705,4705,4705,42,2683,2685,2681,0,3012,3014,3010,4706,4706,4706,42,2683,2681,2682,0,3012,3010,3011,4707,4707,4707,42,2687,2686,2685,0,3016,3015,3014,4708,4708,4708,42,2687,2685,2683,0,3016,3014,3012,4709,4709,4709,42,2688,2687,2683,0,3017,3016,3012,4710,4710,4710,42,2688,2683,2684,0,3017,3012,3013,4711,4711,4711,42,2690,2689,2687,0,3020,3019,3018,4712,4712,4712,42,2690,2687,2688,0,3020,3018,3021,4713,4713,4713,42,2686,2687,2689,0,3022,3018,3019,4714,4714,4714,42,2686,2689,2691,0,3022,3019,3023,4715,4715,4715,42,2688,2684,2692,0,3017,3013,3024,4716,4716,4716,42,2688,2692,2693,0,3017,3024,3025,4717,4717,4717,42,2632,2694,2693,0,2960,3026,3025,4718,4718,4718,42,2632,2693,2692,0,2960,3025,3024,4719,4719,4719,42,2681,2696,2695,0,3010,3028,3027,4720,4720,4720,42,2681,2695,2680,0,3010,3027,3009,4721,4721,4721,42,2680,2695,2697,0,3009,3027,3029,4722,4722,4722,42,2680,2697,2605,0,3009,3029,2928,4723,4723,4723,42,2698,2695,2696,0,3030,3027,3028,4724,4724,4724,42,2698,2696,2699,0,3030,3028,3031,4725,4725,4725,42,2699,2696,2700,0,3031,3028,3032,4726,4726,4726,42,2699,2700,2701,0,3031,3032,3033,4727,4727,4727,42,2696,2681,2685,0,3028,3010,3014,4728,4728,4728,42,2696,2685,2700,0,3028,3014,3032,4729,4729,4729,42,2695,2698,2702,0,3027,3030,3034,4730,4730,4730,42,2695,2702,2697,0,3027,3034,3029,4731,4731,4731,42,2703,2698,2699,0,3035,3030,3031,4732,4732,4732,42,2703,2699,2704,0,3035,3031,3036,4733,4733,4733,42,2698,2703,2705,0,3030,3035,3037,4734,4734,4734,42,2698,2705,2702,0,3030,3037,3034,4735,4735,4735,42,2701,2700,2706,0,3033,3032,3038,4736,4736,4736,42,2701,2706,2707,0,3033,3038,3039,4737,4737,4737,42,2700,2685,2686,0,3032,3014,3015,4738,4738,4738,42,2700,2686,2706,0,3032,3015,3038,4739,4739,4739,42,2708,2703,2704,0,3042,3041,3040,4740,4740,4740,42,2708,2704,2709,0,3042,3040,3043,4741,4741,4741,42,2703,2708,2710,0,3041,3042,3044,4742,4742,4742,42,2703,2710,2705,0,3041,3044,3045,4743,4743,4743,42,2711,2710,2708,0,3046,3044,3042,4744,4744,4744,42,2711,2708,2712,0,3046,3042,3047,4745,4745,4745,42,2713,2710,2711,0,3048,3044,3046,4746,4746,4746,42,2713,2711,2714,0,3048,3046,3049,4747,4747,4747,42,2697,2702,2713,0,3029,3034,3048,4748,4748,4748,42,2697,2713,2612,0,3029,3048,2935,4749,4749,4749,42,2605,2697,2612,0,2928,3029,2935,4750,4750,4750,42,2605,2612,2604,0,2928,2935,2927,4751,4751,4751,42,2704,2699,2701,0,3036,3031,3033,4752,4752,4752,42,2704,2701,2715,0,3036,3033,3050,4753,4753,4753,42,2704,2715,2716,0,3040,3052,3051,4754,4754,4754,42,2704,2716,2709,0,3040,3051,3043,4755,4755,4755,42,2716,2715,2717,0,3051,3052,3053,4756,4756,4756,42,2716,2717,2718,0,3051,3053,3054,4757,4757,4757,42,2717,2715,2701,0,3055,3050,3033,4758,4758,4758,42,2717,2701,2707,0,3055,3033,3039,4759,4759,4759,42,2719,2718,2717,0,3056,3054,3053,4760,4760,4760,42,2719,2717,2707,0,3056,3053,3057,4761,4761,4761,42,2709,2716,2718,0,3043,3051,3054,4762,4762,4762,42,2709,2718,2720,0,3043,3054,3058,4763,4763,4763,42,2720,2718,2719,0,3058,3054,3056,4764,4764,4764,42,2720,2719,2721,0,3058,3056,3059,4765,4765,4765,42,2712,2720,2721,0,3047,3058,3059,4766,4766,4766,42,2712,2721,2722,0,3047,3059,3060,4767,4767,4767,42,2721,2719,2723,0,3059,3056,3061,4768,4768,4768,42,2721,2723,2724,0,3059,3061,3062,4769,4769,4769,42,2722,2721,2724,0,3060,3059,3062,4770,4770,4770,42,2722,2724,2610,0,3060,3062,2933,4771,4771,4771,42,2723,2691,2725,0,3061,3023,3063,4772,4772,4772,42,2723,2725,2724,0,3061,3063,3062,4773,4773,4773,42,2610,2724,2725,0,2933,3062,3063,4774,4774,4774,42,2610,2725,2609,0,2933,3063,2932,4775,4775,4775,42,2725,2691,2726,0,3063,3023,3064,4776,4776,4776,42,2725,2726,2727,0,3063,3064,3065,4777,4777,4777,42,2728,2727,2726,0,3066,3065,3064,4778,4778,4778,42,2728,2726,2729,0,3066,3064,3067,4779,4779,4779,42,2691,2689,2729,0,3023,3019,3067,4780,4780,4780,42,2691,2729,2726,0,3023,3067,3064,4781,4781,4781,42,2711,2712,2722,0,3046,3047,3060,4782,4782,4782,42,2711,2722,2714,0,3046,3060,3049,4783,4783,4783,42,2705,2710,2713,0,3037,3044,3048,4784,4784,4784,42,2705,2713,2702,0,3037,3048,3034,4785,4785,4785,42,2595,2608,2730,0,2918,2931,3068,4786,4786,4786,42,2595,2730,2731,0,2918,3068,3069,4787,4787,4787,42,2613,2730,2608,0,2936,3068,2931,4788,4788,4788,42,2613,2608,2607,0,2936,2931,2930,4789,4789,4789,42,2585,2595,2731,0,2908,2918,3069,4790,4790,4790,42,2585,2731,2587,0,2908,3069,2910,4791,4791,4791,42,2728,2732,2731,0,3066,3070,3069,4792,4792,4792,42,2728,2731,2730,0,3066,3069,3068,4793,4793,4793,42,2732,2733,2587,0,3070,3071,2910,4794,4794,4794,42,2732,2587,2731,0,3070,2910,3069,4795,4795,4795,42,2734,2736,2735,0,3072,3074,3073,4796,4796,4796,42,2738,2737,2736,0,3076,3075,3074,4797,4797,4797,42,2738,2736,2739,0,3076,3074,3077,4798,4798,4798,42,2517,2740,2738,0,2840,3078,3076,4799,4799,4799,42,2517,2738,2516,0,2840,3076,2839,4800,4800,4800,42,2737,2738,2740,0,3075,3076,3078,4801,4801,4801,42,2737,2740,2741,0,3075,3078,3079,4802,4802,4802,42,2740,2517,2527,0,3078,2840,2850,4803,4803,4803,42,2740,2527,2742,0,3078,2850,3080,4804,4804,4804,42,2742,2743,2741,0,3080,3081,3079,4805,4805,4805,42,2742,2741,2740,0,3080,3079,3078,4806,4806,4806,42,2742,2527,2744,0,3080,2850,3082,4807,4807,4807,42,2742,2744,2745,0,3080,3082,3083,4808,4808,4808,42,2746,2743,2742,0,3084,3081,3080,4809,4809,4809,42,2746,2742,2745,0,3084,3080,3083,4810,4810,4810,42,2745,2744,2747,0,3083,3082,3085,4811,4811,4811,42,2745,2747,2748,0,3083,3085,3086,4812,4812,4812,42,2749,2746,2745,0,3087,3084,3083,4813,4813,4813,42,2749,2745,2748,0,3087,3083,3086,4814,4814,4814,42,2751,2750,2746,0,3089,3088,3084,4815,4815,4815,42,2751,2746,2749,0,3089,3084,3087,4816,4816,4816,42,2743,2746,2750,0,3081,3084,3088,4817,4817,4817,42,2743,2750,2752,0,3081,3088,3090,4818,4818,4818,42,2527,2526,2753,0,2850,2849,3091,4819,4819,4819,42,2527,2753,2744,0,2850,3091,3082,4820,4820,4820,42,2754,2747,2744,0,3092,3085,3082,4821,4821,4821,42,2754,2744,2753,0,3092,3082,3091,4822,4822,4822,42,2526,2525,2530,0,2849,2848,2853,4823,4823,4823,42,2526,2530,2753,0,2849,2853,3091,4824,4824,4824,42,2753,2530,2755,0,3091,2853,3093,4825,4825,4825,42,2753,2755,2754,0,3091,3093,3092,4826,4826,4826,42,2756,2734,2735,0,3094,3072,3073,4827,4827,4827,42,2756,2735,2757,0,3094,3073,3095,4828,4828,4828,42,2756,2657,2661,0,3096,2986,2990,4829,4829,4829,42,2756,2661,2758,0,3096,2990,3097,4830,4830,4830,42,2734,2756,2758,0,3072,3094,3098,4831,4831,4831,42,2734,2758,2759,0,3072,3098,3099,4832,4832,4832,42,2758,2661,2760,0,3097,2990,3100,4833,4833,4833,42,2758,2760,2761,0,3097,3100,3101,4834,4834,4834,42,2761,2280,2759,0,3102,2561,3099,4835,4835,4835,42,2761,2759,2758,0,3102,3099,3098,4836,4836,4836,42,2763,2762,2761,0,3104,3103,3101,4837,4837,4837,42,2763,2761,2760,0,3104,3101,3100,4838,4838,4838,42,2280,2761,2762,0,2561,3102,3105,4839,4839,4839,42,2280,2762,2279,0,2561,3105,2560,4840,4840,4840,42,2734,2193,2194,0,3072,2465,2466,4841,4841,4841,42,2734,2194,2736,0,3072,2466,3074,4842,4842,4842,42,2217,2215,2764,0,2489,2487,3106,4843,4843,4843,42,2217,2764,2765,0,2489,3106,3107,4844,4844,4844,42,2765,2764,2766,0,3107,3106,3108,4845,4845,4845,42,2765,2766,2767,0,3107,3108,3109,4846,4846,4846,42,2658,2769,2768,0,2987,3111,3110,4847,4847,4847,42,2658,2768,2535,0,2987,3110,2858,4848,4848,4848,42,2769,2658,2660,0,3111,2987,2989,4849,4849,4849,42,2769,2660,2752,0,3111,2989,3112,4850,4850,4850,42,2770,2769,2752,0,3113,3111,3112,4851,4851,4851,42,2770,2752,2750,0,3113,3112,3114,4852,4852,4852,42,2769,2770,2771,0,3111,3113,3115,4853,4853,4853,42,2769,2771,2768,0,3111,3115,3110,4854,4854,4854,42,2750,2751,2772,0,3114,3117,3116,4855,4855,4855,42,2750,2772,2770,0,3114,3116,3113,4856,4856,4856,42,2770,2772,2773,0,3113,3116,3118,4857,4857,4857,42,2770,2773,2774,0,3113,3118,3119,4858,4858,4858,42,2770,2774,2775,0,3113,3119,3120,4859,4859,4859,42,2770,2775,2771,0,3113,3120,3115,4860,4860,4860,42,2751,2777,2776,0,3117,3122,3121,4861,4861,4861,42,2751,2776,2772,0,3117,3121,3116,4862,4862,4862,42,2778,2772,2776,0,3123,3116,3121,4863,4863,4863,42,2778,2776,2779,0,3123,3121,3124,4864,4864,4864,42,2772,2778,2780,0,3116,3123,3125,4865,4865,4865,42,2772,2780,2773,0,3116,3125,3118,4866,4866,4866,42,2781,2777,2751,0,3127,3126,3089,4867,4867,4867,42,2781,2751,2749,0,3127,3089,3087,4868,4868,4868,42,2776,2777,2782,0,3121,3122,3128,4869,4869,4869,42,2776,2782,2428,0,3121,3128,2743,4870,4870,4870,42,2783,2782,2777,0,3130,3129,3126,4871,4871,4871,42,2783,2777,2781,0,3130,3126,3127,4872,4872,4872,42,2785,2784,2778,0,3132,3131,3123,4873,4873,4873,42,2785,2778,2779,0,3132,3123,3124,4874,4874,4874,42,2779,2427,2416,0,3124,2742,2731,4875,4875,4875,42,2779,2416,2785,0,3124,2731,3132,4876,4876,4876,42,2786,2780,2778,0,3133,3125,3123,4877,4877,4877,42,2786,2778,2784,0,3133,3123,3131,4878,4878,4878,42,2788,2787,2786,0,3135,3134,3133,4879,4879,4879,42,2788,2786,2784,0,3135,3133,3131,4880,4880,4880,42,2789,2788,2784,0,3136,3135,3131,4881,4881,4881,42,2789,2784,2785,0,3136,3131,3132,4882,4882,4882,42,2786,2790,2775,0,3133,3137,3120,4883,4883,4883,42,2786,2775,2780,0,3133,3120,3125,4884,4884,4884,42,2780,2775,2774,0,3125,3120,3119,4885,4885,4885,42,2780,2774,2773,0,3125,3119,3118,4886,4886,4886,42,2791,2783,2781,0,3138,3130,3127,4887,4887,4887,42,2791,2781,2792,0,3138,3127,3139,4888,4888,4888,42,2791,2792,2793,0,3138,3139,3140,4889,4889,4889,42,2791,2793,2451,0,3138,3140,2772,4890,4890,4890,42,2748,2747,2793,0,3086,3085,3140,4891,4891,4891,42,2748,2793,2792,0,3086,3140,3139,4892,4892,4892,42,2795,2794,2783,0,3142,3141,3130,4893,4893,4893,42,2795,2783,2791,0,3142,3130,3138,4894,4894,4894,42,2441,2432,2794,0,2760,2747,3141,4895,4895,4895,42,2441,2794,2795,0,2760,3141,3142,4896,4896,4896,42,2794,2796,2782,0,3141,3143,3129,4897,4897,4897,42,2794,2782,2783,0,3141,3129,3130,4898,4898,4898,42,2432,2429,2796,0,2747,2744,3143,4899,4899,4899,42,2432,2796,2794,0,2747,3143,3141,4900,4900,4900,42,2793,2747,2754,0,3140,3085,3092,4901,4901,4901,42,2793,2754,2797,0,3140,3092,3144,4902,4902,4902,42,2797,2450,2451,0,3144,2771,2772,4903,4903,4903,42,2797,2451,2793,0,3144,2772,3140,4904,4904,4904,42,2797,2754,2755,0,3144,3092,3093,4905,4905,4905,42,2797,2755,2798,0,3144,3093,3145,4906,4906,4906,42,2450,2797,2798,0,2771,3144,3145,4907,4907,4907,42,2450,2798,2452,0,2771,3145,2773,4908,4908,4908,42,2426,2428,2799,0,2741,2743,3146,4909,4909,4909,42,2426,2799,2425,0,2741,3146,2740,4910,4910,4910,42,2428,2782,2796,0,2743,3128,3147,4911,4911,4911,42,2428,2796,2799,0,2743,3147,3146,4912,4912,4912,42,2799,2796,2429,0,3146,3147,3148,4913,4913,4913,42,2799,2429,2800,0,3146,3148,3149,4914,4914,4914,42,2801,2799,2800,0,3150,3146,3149,4915,4915,4915,42,2801,2800,2802,0,3150,3149,3151,4916,4916,4916,42,2425,2799,2801,0,2740,3146,3150,4917,4917,4917,42,2425,2801,2423,0,2740,3150,2738,4918,4918,4918,42,2802,2800,2435,0,3151,3149,2752,4919,4919,4919,42,2802,2435,2436,0,3151,2752,2753,4920,4920,4920,42,2429,2430,2435,0,3148,2749,2752,4921,4921,4921,42,2429,2435,2800,0,3148,2752,3149,4922,4922,4922,42,2802,2804,2803,0,3151,3153,3152,4923,4923,4923,42,2802,2803,2801,0,3151,3152,3150,4924,4924,4924,42,2801,2803,2421,0,3150,3152,2736,4925,4925,4925,42,2801,2421,2423,0,3150,2736,2738,4926,4926,4926,42,2529,2805,2787,0,2852,3154,3134,4927,4927,4927,42,2529,2787,2788,0,2852,3134,3135,4928,4928,4928,42,2529,2531,2790,0,2852,2854,3137,4929,4929,4929,42,2529,2790,2805,0,2852,3137,3154,4930,4930,4930,42,2530,2529,2788,0,2853,2852,3135,4931,4931,4931,42,2530,2788,2755,0,2853,3135,3093,4932,4932,4932,42,2449,2767,2766,0,2769,3109,3108,4933,4933,4933,42,2764,2806,2359,0,3106,3155,2655,4934,4934,4934,42,2764,2359,2766,0,3106,2655,3108,4935,4935,4935,42,2215,2216,2806,0,2487,2488,3155,4936,4936,4936,42,2215,2806,2764,0,2487,3155,3106,4937,4937,4937,42,2806,2364,2356,0,3155,2661,2651,4938,4938,4938,42,2806,2356,2359,0,3155,2651,2655,4939,4939,4939,42,2766,2359,2357,0,3108,2655,2656,4940,4940,4940,42,2766,2357,2409,0,3108,2656,3156,4941,4941,4941,42,2103,2177,2108,0,3157,2440,2365,4942,4942,4942,42,2103,2108,2102,0,3157,2365,2366,4943,4943,4943,42,2103,2093,2112,0,2360,2350,2372,4944,4944,4944,42,2103,2112,2183,0,2360,2372,2449,4945,4945,4945,42,2177,2103,2183,0,2440,3157,2446,4946,4946,4946,42,2177,2183,2174,0,2440,2446,2437,4947,4947,4947,42,2122,2807,2152,0,3159,3158,2415,4948,4948,4948,42,2122,2152,2124,0,3159,2415,3160,4949,4949,4949,42,2131,2142,2157,0,2391,2405,2420,4950,4950,4950,42,2131,2157,2133,0,2391,2420,2393,4951,4951,4951,42,2122,2119,2182,0,3159,2780,2445,4952,4952,4952,42,2122,2182,2807,0,3159,2445,3158,4953,4953,4953,42,2807,2173,2153,0,3158,2436,2416,4954,4954,4954,42,2807,2153,2152,0,3158,2416,2415,4955,4955,4955,42,2242,2651,2208,0,2520,2980,3161,4956,4956,4956,42,2242,2208,2203,0,2520,3161,2519,4957,4957,4957,42,2651,2662,2210,0,2980,2991,3162,4958,4958,4958,42,2651,2210,2208,0,2980,3162,3161,4959,4959,4959,42,2212,2664,2225,0,3163,2993,2499,4960,4960,4960,42,2212,2225,2214,0,3163,2499,2500,4961,4961,4961,42,2664,2363,2231,0,2993,2660,2506,4962,4962,4962,42,2664,2231,2225,0,2993,2506,2499,4963,4963,4963,42,2262,2205,2206,0,2540,2477,2478,4964,4964,4964,42,2262,2206,2261,0,2540,2478,2539,4965,4965,4965,42,2252,2256,2808,0,2530,2534,3164,4966,4966,4966,42,2252,2808,2248,0,2530,3164,2526,4967,4967,4967,42,2763,2245,2248,0,3104,2523,2526,4968,4968,4968,42,2763,2248,2808,0,3104,2526,3164,4969,4969,4969,42,2245,2763,2760,0,2523,3104,3100,4970,4970,4970,42,2245,2760,2244,0,2523,3100,2522,4971,4971,4971,42,2283,2410,2285,0,2564,2717,2568,4972,4972,4972,42,2283,2285,2281,0,2564,2568,2562,4973,4973,4973,42,2197,2759,2280,0,2469,3099,2561,4974,4974,4974,42,2197,2280,2202,0,2469,2561,2474,4975,4975,4975,42,2230,2352,2350,0,2505,2645,2643,4976,4976,4976,42,2230,2350,2232,0,2505,2643,2507,4977,4977,4977,42,2232,2350,2348,0,2507,2643,2641,4978,4978,4978,42,2232,2348,2286,0,2507,2641,2569,4979,4979,4979,42,2286,2348,2343,0,2569,2641,2636,4980,4980,4980,42,2286,2343,2288,0,2569,2636,2571,4981,4981,4981,42,2300,2295,2330,0,2586,2579,2620,4982,4982,4982,42,2300,2330,2331,0,2586,2620,2621,4983,4983,4983,42,2809,2303,2301,0,3165,2590,2587,4984,4984,4984,42,2809,2301,2317,0,3165,2587,2604,4985,4985,4985,42,2303,2809,2365,0,2590,3165,2662,4986,4986,4986,42,2303,2365,2305,0,2590,2662,2592,4987,4987,4987,42,2307,2305,2365,0,2594,2592,2662,4988,4988,4988,42,2307,2365,2366,0,2594,2662,2663,4989,4989,4989,42,2365,2809,2321,0,2662,3165,3166,4990,4990,4990,42,2365,2321,2324,0,2662,3166,2665,4991,4991,4991,42,2318,2321,2809,0,2606,3166,3165,4992,4992,4992,42,2318,2809,2317,0,2606,3165,2604,4993,4993,4993,42,2328,2371,2370,0,2618,2672,2670,4994,4994,4994,42,2328,2370,2322,0,2618,2670,2612,4995,4995,4995,42,2342,2293,2291,0,2633,2576,2574,4996,4996,4996,42,2342,2291,2344,0,2633,2574,2637,4997,4997,4997,42,2363,2664,2665,0,2660,2993,2994,4998,4998,4998,42,2363,2665,2668,0,2660,2994,2997,4999,4999,4999,42,2763,2808,2256,0,3104,3164,2534,5000,5000,5000,42,2763,2256,2257,0,3104,2534,2535,5001,5001,5001,42,2762,2763,2257,0,3103,3104,2535,5002,5002,5002,42,2762,2257,2386,0,3103,2535,2690,5003,5003,5003,42,2374,2268,2284,0,2675,2548,2566,5004,5004,5004,42,2374,2284,2402,0,2675,2566,2709,5005,5005,5005,42,2375,2374,2402,0,2676,2675,2709,5006,5006,5006,42,2375,2402,2401,0,2676,2709,2708,5007,5007,5007,42,2105,2674,2100,0,2362,3003,2357,5008,5008,5008,42,2105,2100,2099,0,2362,2357,2356,5009,5009,5009,42,2399,2079,2080,0,2706,2336,2337,5010,5010,5010,42,2399,2080,2082,0,2706,2337,2339,5011,5011,5011,42,2803,2422,2420,0,3152,2737,2735,5012,5012,5012,42,2803,2420,2421,0,3152,2735,2736,5013,5013,5013,42,2073,2074,2804,0,2330,2331,3153,5014,5014,5014,42,2073,2804,2077,0,2330,3153,2334,5015,5015,5015,42,2436,2077,2804,0,2753,2334,3153,5016,5016,5016,42,2436,2804,2802,0,2753,3153,3151,5017,5017,5017,42,2674,2105,2405,0,3003,2362,2712,5018,5018,5018,42,2674,2405,2671,0,3003,2712,3000,5019,5019,5019,42,2440,2441,2795,0,2758,2760,3142,5020,5020,5020,42,2440,2795,2443,0,2758,3142,2763,5021,5021,5021,42,2789,2417,2452,0,3136,2732,2773,5022,5022,5022,42,2789,2452,2798,0,3136,2773,3145,5023,5023,5023,42,2064,2564,2810,0,2315,2887,3167,5024,5024,5024,42,2064,2810,2057,0,2315,3167,2307,5025,5025,5025,42,2459,2057,2810,0,2782,2307,3167,5026,5026,5026,42,2459,2810,2472,0,2782,3167,2795,5027,5027,5027,42,2472,2810,2811,0,2795,3167,3168,5028,5028,5028,42,2472,2811,2473,0,2795,3168,2796,5029,5029,5029,42,2620,2474,2473,0,2943,2797,2796,5030,5030,5030,42,2620,2473,2811,0,2943,2796,3168,5031,5031,5031,42,2569,2811,2810,0,2892,3168,3167,5032,5032,5032,42,2569,2810,2564,0,2892,3167,2887,5033,5033,5033,42,2645,2505,2481,0,2974,2828,2804,5034,5034,5034,42,2645,2481,2478,0,2974,2804,2801,5035,5035,5035,42,2512,2493,2497,0,2835,2816,2820,5036,5036,5036,42,2512,2497,2812,0,2835,2820,3169,5037,5037,5037,42,2501,2813,2812,0,2824,3170,3169,5038,5038,5038,42,2501,2812,2497,0,2824,3169,2820,5039,5039,5039,42,2583,2580,2597,0,2906,2903,2920,5040,5040,5040,42,2583,2597,2588,0,2906,2920,2911,5041,5041,5041,42,2599,2632,2692,0,2922,2960,3024,5042,5042,5042,42,2599,2692,2598,0,2922,3024,2921,5043,5043,5043,42,2814,2615,2581,0,3171,2938,2904,5044,5044,5044,42,2814,2581,2584,0,3171,2904,2907,5045,5045,5045,42,2615,2814,2815,0,2938,3171,3172,5046,5046,5046,42,2615,2815,2619,0,2938,3172,2942,5047,5047,5047,42,2584,2587,2733,0,2907,2910,3071,5048,5048,5048,42,2584,2733,2814,0,2907,3071,3171,5049,5049,5049,42,2814,2733,2690,0,3171,3071,3020,5050,5050,5050,42,2814,2690,2815,0,3171,3020,3172,5051,5051,5051,42,2690,2688,2693,0,3020,3021,3173,5052,5052,5052,42,2690,2693,2815,0,3020,3173,3172,5053,5053,5053,42,2694,2619,2815,0,3174,2942,3172,5054,5054,5054,42,2694,2815,2693,0,3174,3172,3173,5055,5055,5055,42,2816,2616,2619,0,3175,2939,2942,5056,5056,5056,42,2816,2619,2694,0,3175,2942,3174,5057,5057,5057,42,2816,2817,2618,0,3175,3176,2941,5058,5058,5058,42,2816,2618,2616,0,3175,2941,2939,5059,5059,5059,42,2624,2618,2817,0,2947,2941,3176,5060,5060,5060,42,2624,2817,2623,0,2947,3176,2946,5061,5061,5061,42,2654,2506,2508,0,2983,2829,2831,5062,5062,5062,42,2654,2508,2648,0,2983,2831,2977,5063,5063,5063,42,2646,2638,2665,0,2975,2967,2994,5064,5064,5064,42,2646,2665,2663,0,2975,2994,2992,5065,5065,5065,42,2818,2625,2622,0,3177,2948,2945,5066,5066,5066,42,2818,2622,2672,0,3177,2945,3001,5067,5067,5067,42,2767,2109,2446,0,3109,2369,2766,5068,5068,5068,42,2767,2446,2679,0,3109,2766,3008,5069,5069,5069,42,2690,2733,2732,0,3020,3071,3070,5070,5070,5070,42,2690,2732,2689,0,3020,3070,3019,5071,5071,5071,42,2708,2709,2720,0,3042,3043,3058,5072,5072,5072,42,2708,2720,2712,0,3042,3058,3047,5073,5073,5073,42,2714,2611,2612,0,3049,2934,2935,5074,5074,5074,42,2714,2612,2713,0,3049,2935,3048,5075,5075,5075,42,2707,2706,2723,0,3057,3178,3061,5076,5076,5076,42,2707,2723,2719,0,3057,3061,3056,5077,5077,5077,42,2706,2686,2691,0,3178,3022,3023,5078,5078,5078,42,2706,2691,2723,0,3178,3023,3061,5079,5079,5079,42,2613,2609,2725,0,2936,2932,3063,5080,5080,5080,42,2613,2725,2727,0,2936,3063,3065,5081,5081,5081,42,2659,2737,2741,0,3179,3075,3079,5082,5082,5082,42,2659,2741,2660,0,3179,3079,3180,5083,5083,5083,42,2193,2734,2759,0,2465,3072,3099,5084,5084,5084,42,2193,2759,2197,0,2465,3099,2469,5085,5085,5085,42,2771,2775,2790,0,3115,3120,3137,5086,5086,5086,42,2771,2790,2531,0,3115,3137,2854,5087,5087,5087,42,2532,2768,2771,0,2855,3110,3115,5088,5088,5088,42,2532,2771,2531,0,2855,3115,2854,5089,5089,5089,42,2207,2201,2202,0,2479,2473,2474,5090,5090,5090,42,2207,2202,2271,0,2479,2474,2552,5091,5091,5091,42,2266,2264,2270,0,2544,2542,2551,5092,5092,5092,42,2266,2270,2274,0,2544,2551,2555,5093,5093,5093,42,2221,2223,2290,0,2498,2495,2573,5094,5094,5094,42,2221,2290,2227,0,2498,2573,2577,5095,5095,5095,42,2077,2436,2433,0,2334,2753,2750,5096,5096,5096,42,2077,2433,2076,0,2334,2750,2333,5097,5097,5097,42,2097,2084,2085,0,2354,2341,2342,5098,5098,5098,42,2097,2085,2458,0,2354,2342,2781,5099,5099,5099,42,2189,2088,2089,0,2460,2345,2346,5100,5100,5100,42,2189,2089,2101,0,2460,2346,2358,5101,5101,5101,42,2776,2428,2427,0,3121,2743,2742,5102,5102,5102,42,2776,2427,2779,0,3121,2742,3124,5103,5103,5103,42,2792,2781,2749,0,3139,3127,3087,5104,5104,5104,42,2792,2749,2748,0,3139,3087,3086,5105,5105,5105,42,2805,2790,2786,0,3154,3137,3133,5106,5106,5106,42,2805,2786,2787,0,3154,3133,3134,5107,5107,5107,42,2175,2181,2108,0,2438,2444,2365,5108,5108,5108,42,2175,2108,2177,0,2438,2365,2440,5109,5109,5109,42,2112,2093,2094,0,2372,2350,2351,5110,5110,5110,42,2112,2094,2095,0,2372,2351,2352,5111,5111,5111,42,2138,2126,2124,0,2400,2401,3160,5112,5112,5112,42,2138,2124,2152,0,2400,3160,2415,5113,5113,5113,42,2142,2145,2159,0,2405,2408,2422,5114,5114,5114,42,2142,2159,2157,0,2405,2422,2420,5115,5115,5115,42,2173,2167,2154,0,2436,2430,2417,5116,5116,5116,42,2173,2154,2153,0,2436,2417,2416,5117,5117,5117,42,2182,2172,2173,0,2445,2435,2436,5118,5118,5118,42,2182,2173,2807,0,2445,2436,3158,5119,5119,5119,42,2165,2118,2145,0,2448,2378,2408,5120,5120,5120,42,2165,2145,2164,0,2448,2408,2452,5121,5121,5121,42,2179,2185,2448,0,2442,2454,2768,5122,5122,5122,42,2179,2448,2178,0,2442,2768,2441,5123,5123,5123,42,2664,2212,2210,0,2993,3163,3162,5124,5124,5124,42,2664,2210,2662,0,2993,3162,2991,5125,5125,5125,42,2236,2228,2227,0,2511,2503,2502,5126,5126,5126,42,2236,2227,2294,0,2511,2502,2584,5127,5127,5127,42,2254,2239,2205,0,2532,2515,2516,5128,5128,5128,42,2254,2205,2262,0,2532,2516,2547,5129,5129,5129,42,2326,2300,2331,0,2616,2586,2621,5130,5130,5130,42,2326,2331,2332,0,2616,2621,2622,5131,5131,5131,42,2344,2345,2341,0,2637,2638,2632,5132,5132,5132,42,2344,2341,2342,0,2637,2632,2633,5133,5133,5133,42,2327,2338,2371,0,2617,2628,2672,5134,5134,5134,42,2327,2371,2328,0,2617,2672,2618,5135,5135,5135,42,2344,2291,2288,0,2637,2574,2571,5136,5136,5136,42,2344,2288,2343,0,2637,2571,2636,5137,5137,5137,42,2358,2361,2409,0,2654,2658,2716,5138,5138,5138,42,2358,2409,2357,0,2654,2716,2653,5139,5139,5139,42,2376,2375,2401,0,2677,2676,2708,5140,5140,5140,42,2376,2401,2381,0,2677,2708,2682,5141,5141,5141,42,2373,2377,2258,0,2674,2678,2536,5142,5142,5142,42,2373,2258,2259,0,2674,2536,2537,5143,5143,5143,42,2279,2762,2386,0,2560,3105,2691,5144,5144,5144,42,2279,2386,2278,0,2560,2691,2559,5145,5145,5145,42,2394,2379,2380,0,2700,2680,2681,5146,5146,5146,42,2394,2380,2381,0,2700,2681,2682,5147,5147,5147,42,2396,2395,2410,0,2702,2701,2717,5148,5148,5148,42,2396,2410,2283,0,2702,2717,2564,5149,5149,5149,42,2151,2160,2169,0,2728,3181,2451,5150,5150,5150,42,2151,2169,2414,0,2728,2451,2726,5151,5151,5151,42,2074,2422,2803,0,2331,2737,3152,5152,5152,5152,42,2074,2803,2804,0,2331,3152,3153,5153,5153,5153,42,2789,2785,2416,0,3136,3132,2731,5154,5154,5154,42,2789,2416,2417,0,3136,2731,2732,5155,5155,5155,42,2463,2461,2466,0,2786,2784,2789,5156,5156,5156,42,2463,2466,2480,0,2786,2789,2803,5157,5157,5157,42,2580,2576,2601,0,2903,2899,2924,5158,5158,5158,42,2580,2601,2597,0,2903,2924,2920,5159,5159,5159,42,2684,2603,2598,0,3013,2926,2921,5160,5160,5160,42,2684,2598,2692,0,3013,2921,3024,5161,5161,5161,42,2811,2569,2572,0,3168,2892,2895,5162,5162,5162,42,2811,2572,2620,0,3168,2895,2943,5163,5163,5163,42,2630,2816,2694,0,2961,3182,3026,5164,5164,5164,42,2630,2694,2632,0,2961,3026,2960,5165,5165,5165,42,2501,2506,2652,0,2824,2829,2981,5166,5166,5166,42,2501,2652,2813,0,2824,2981,3170,5167,5167,5167,42,2661,2249,2244,0,2990,2527,2522,5168,5168,5168,42,2661,2244,2760,0,2990,2522,3100,5169,5169,5169,42,2665,2638,2639,0,2994,2967,2968,5170,5170,5170,42,2665,2639,2668,0,2994,2968,2997,5171,5171,5171,42,2729,2689,2732,0,3067,3019,3070,5172,5172,5172,42,2729,2732,2728,0,3067,3070,3066,5173,5173,5173,42,2727,2728,2730,0,3065,3066,3068,5174,5174,5174,42,2727,2730,2613,0,3065,3068,2936,5175,5175,5175,42,2714,2722,2610,0,3049,3060,2933,5176,5176,5176,42,2714,2610,2611,0,3049,2933,2934,5177,5177,5177,42,2752,2660,2741,0,3090,3180,3079,5178,5178,5178,42,2752,2741,2743,0,3090,3079,3081,5179,5179,5179,42,2735,2737,2659,0,3073,3075,3179,5180,5180,5180,42,2735,2659,2757,0,3073,3179,3095,5181,5181,5181,42,2789,2798,2755,0,3136,3145,3093,5182,5182,5182,42,2789,2755,2788,0,3136,3093,3135,5183,5183,5183,42,2795,2791,2451,0,3142,3138,2772,5184,5184,5184,42,2795,2451,2443,0,3142,2772,2763,5185,5185,5185,42,2533,2535,2768,0,2856,2858,3110,5186,5186,5186,42,2533,2768,2532,0,2856,3110,2855,5187,5187,5187,42,2216,2220,2364,0,2488,2492,2661,5188,5188,5188,42,2216,2364,2806,0,2488,2661,3155,5189,5189,5189,42,2449,2766,2409,0,2769,3108,3156,5190,5190,5190,42,2449,2409,2408,0,2769,3156,2770,5191,5191,5191,42,2456,2069,2819,0,2777,2322,3183,5192,5192,5192,42,2456,2819,2545,0,2777,3183,2868,5193,5193,5193,42,2548,2545,2819,0,2871,2868,3183,5194,5194,5194,42,2548,2819,2551,0,2871,3183,2874,5195,5195,5195,42,2513,2519,2516,0,2836,2842,2839,5196,5196,5196,42,2513,2516,2515,0,2836,2839,2838,5197,5197,5197,42,2511,2521,2519,0,2834,2844,2842,5198,5198,5198,42,2511,2519,2513,0,2834,2842,2836,5199,5199,5199,42,2521,2511,2512,0,2844,2834,2835,5200,5200,5200,42,2521,2512,2524,0,2844,2835,2847,5201,5201,5201,42,2524,2512,2812,0,2847,2835,3169,5202,5202,5202,42,2524,2812,2534,0,2847,3169,2857,5203,5203,5203,42,2813,2536,2534,0,3170,2859,2857,5204,5204,5204,42,2813,2534,2812,0,3170,2857,3169,5205,5205,5205,42,2652,2656,2536,0,2981,2985,2859,5206,5206,5206,42,2652,2536,2813,0,2981,2859,3170,5207,5207,5207,42,2188,2677,2820,0,2457,3185,3184,5208,5208,5208,42,2188,2820,2187,0,2457,3184,2456,5209,5209,5209,42,2678,2447,2187,0,3007,2767,2456,5210,5210,5210,42,2678,2187,2820,0,3007,2456,3184,5211,5211,5211,42,2821,2631,2633,0,3186,2959,2962,5212,5212,5212,42,2821,2633,2822,0,3186,2962,3187,5213,5213,5213,42,2560,2561,2628,0,2883,2884,2954,5214,5214,5214,42,2560,2628,2823,0,2883,2954,3188,5215,5215,5215,42,2563,2824,2567,0,2886,3189,2890,5216,5216,5216,42,2563,2567,2565,0,2886,2890,2888,5217,5217,5217,42,2571,2566,2823,0,3191,3190,3188,5218,5218,5218,42,2571,2823,2628,0,3191,3188,2954,5219,5219,5219,42,2823,2566,2567,0,3188,3190,3192,5220,5220,5220,42,2823,2567,2455,0,3188,3192,2776,5221,5221,5221,42,2824,2454,2455,0,3193,2775,2776,5222,5222,5222,42,2824,2455,2567,0,3193,2776,3192,5223,5223,5223,42,2546,2547,2560,0,2869,2870,2883,5224,5224,5224,42,2546,2560,2562,0,2869,2883,2885,5225,5225,5225,42,2562,2560,2823,0,2885,2883,3188,5226,5226,5226,42,2562,2823,2455,0,2885,3188,2776,5227,5227,5227,42,2614,2617,2577,0,2937,2940,2900,5228,5228,5228,42,2614,2577,2578,0,2937,2900,2901,5229,5229,5229,42,2620,2572,2577,0,2943,2895,2900,5230,5230,5230,42,2620,2577,2617,0,2943,2900,2940,5231,5231,5231,42,2577,2572,2570,0,2900,2895,2893,5232,5232,5232,42,2577,2570,2574,0,2900,2893,2897,5233,5233,5233,42,2574,2570,2571,0,2897,2893,2894,5234,5234,5234,42,2574,2571,2573,0,2897,2894,2896,5235,5235,5235,42,2628,2626,2573,0,2954,2951,2952,5236,5236,5236,42,2628,2573,2571,0,2954,2952,3191,5237,5237,5237,42,2516,2738,2739,0,2839,3076,3077,5238,5238,5238,42,2516,2739,2515,0,2839,3077,2838,5239,5239,5239,42,2556,2514,2515,0,2879,2837,2838,5240,5240,5240,42,2556,2515,2739,0,2879,2838,3077,5241,5241,5241,42,2739,2736,2825,0,3077,3074,3194,5242,5242,5242,42,2739,2825,2556,0,3077,3194,2879,5243,5243,5243,42,2550,2826,2559,0,2873,3195,2882,5244,5244,5244,42,2550,2559,2549,0,2873,2882,2872,5245,5245,5245,42,2522,2555,2541,0,2845,2878,2864,5246,5246,5246,42,2522,2541,2539,0,2845,2864,2862,5247,5247,5247,42,2522,2539,2488,0,2845,2862,2811,5248,5248,5248,42,2522,2488,2492,0,2845,2811,2815,5249,5249,5249,42,2482,2491,2492,0,2805,2814,2815,5250,5250,5250,42,2482,2492,2488,0,2805,2815,2811,5251,5251,5251,42,2483,2494,2491,0,2806,2817,2814,5252,5252,5252,42,2483,2491,2482,0,2806,2814,2805,5253,5253,5253,42,2495,2498,2494,0,2818,2821,2817,5254,5254,5254,42,2495,2494,2483,0,2818,2817,2806,5255,5255,5255,42,2499,2502,2498,0,2822,2825,2821,5256,5256,5256,42,2499,2498,2495,0,2822,2821,2818,5257,5257,5257,42,2504,2507,2502,0,2827,2830,2825,5258,5258,5258,42,2504,2502,2499,0,2827,2825,2822,5259,5259,5259,42,2509,2507,2504,0,2832,2830,2827,5260,5260,5260,42,2509,2504,2505,0,2832,2827,2828,5261,5261,5261,42,2644,2509,2505,0,2973,2832,2828,5262,5262,5262,42,2644,2505,2645,0,2973,2828,2974,5263,5263,5263,42,2635,2637,2644,0,2964,2966,2973,5264,5264,5264,42,2635,2644,2645,0,2964,2973,2974,5265,5265,5265,42,2640,2637,2635,0,2969,2966,2964,5266,5266,5266,42,2640,2635,2636,0,2969,2964,2965,5267,5267,5267,42,2642,2640,2636,0,2971,2969,2965,5268,5268,5268,42,2642,2636,2469,0,2971,2965,2792,5269,5269,5269,42,2469,2468,2666,0,2792,2791,2995,5270,5270,5270,42,2469,2666,2642,0,2792,2995,2971,5271,5271,5271,42,2818,2670,2467,0,3177,2999,2790,5272,5272,5272,42,2818,2467,2471,0,3177,2790,2794,5273,5273,5273,42,2625,2818,2471,0,2948,3177,2794,5274,5274,5274,42,2625,2471,2474,0,2948,2794,2797,5275,5275,5275,42,2625,2474,2621,0,2948,2797,2944,5276,5276,5276,42,2625,2621,2624,0,2948,2944,2947,5277,5277,5277,42,2552,2541,2555,0,2875,2864,2878,5278,5278,5278,42,2552,2555,2827,0,2875,2878,3196,5279,5279,5279,42,2468,2467,2670,0,2791,2790,2999,5280,5280,5280,42,2468,2670,2666,0,2791,2999,2995,5281,5281,5281,42,2469,2636,2480,0,2792,2965,2803,5282,5282,5282,42,2469,2480,2466,0,2792,2803,2789,5283,5283,5283,42,2559,2828,2822,0,2882,3197,3187,5284,5284,5284,42,2559,2822,2558,0,2882,3187,2881,5285,5285,5285,42,2757,2655,2657,0,3198,2984,2986,5286,5286,5286,42,2757,2657,2756,0,3198,2986,3096,5287,5287,5287,42,2757,2659,2656,0,3198,2988,2985,5288,5288,5288,42,2757,2656,2655,0,3198,2985,2984,5289,5289,5289,42,2463,2477,2476,0,2786,2800,2799,5290,5290,5290,42,2463,2476,2055,0,2786,2799,2305,5291,5291,5291,42,2631,2817,2816,0,2959,3200,3199,5292,5292,5292,42,2631,2816,2630,0,2959,3199,2958,5293,5293,5293,42,2829,2195,2217,0,3201,2467,2489,5294,5294,5294,42,2829,2217,2830,0,3201,2489,3202,5295,5295,5295,42,2830,2826,2831,0,3202,3195,3203,5296,5296,5296,42,2830,2831,2829,0,3202,3203,3201,5297,5297,5297,42,2826,2550,2832,0,3195,2873,3204,5298,5298,5298,42,2826,2832,2831,0,3195,3204,3203,5299,5299,5299,42,2550,2551,2833,0,2873,2874,3205,5300,5300,5300,42,2550,2833,2832,0,2873,3205,3204,5301,5301,5301,42,2551,2819,2834,0,2874,3183,3206,5302,5302,5302,42,2551,2834,2833,0,2874,3206,3205,5303,5303,5303,42,2554,2825,2736,0,2877,3194,3074,5304,5304,5304,42,2554,2736,2194,0,2877,3074,2466,5305,5305,5305,42,2827,2555,2554,0,3196,2878,2877,5306,5306,5306,42,2827,2554,2553,0,3196,2877,2876,5307,5307,5307,42,2556,2825,2554,0,2879,3194,2877,5308,5308,5308,42,2556,2554,2555,0,2879,2877,2878,5309,5309,5309,42,2820,2677,2623,0,3184,3185,3207,5310,5310,5310,42,2820,2623,2821,0,3184,3207,3186,5311,5311,5311,42,2817,2631,2821,0,3200,2959,3186,5312,5312,5312,42,2817,2821,2623,0,3200,3186,3207,5313,5313,5313,42,2678,2820,2821,0,3007,3184,3186,5314,5314,5314,42,2678,2821,2822,0,3007,3186,3187,5315,5315,5315,42,2835,2679,2828,0,3208,3008,3197,5316,5316,5316,42,2835,2828,2559,0,3208,3197,2882,5317,5317,5317,42,2765,2835,2830,0,3107,3208,3202,5318,5318,5318,42,2765,2830,2217,0,3107,3202,2489,5319,5319,5319,42,2826,2830,2835,0,3195,3202,3208,5320,5320,5320,42,2826,2835,2559,0,3195,3208,2882,5321,5321,5321,42,2679,2835,2765,0,3008,3208,3107,5322,5322,5322,42,2679,2765,2767,0,3008,3107,3109,5323,5323,5323,42,2736,2737,2735,0,3074,3075,3073,5324,5324,5324,42,2195,2196,2209,0,2467,2468,2481,5325,5325,5325,42,2449,2109,2767,0,2769,2369,3109,5326,5326,5326,42,2678,2822,2828,0,3007,3187,3197,5327,5327,5327,42,2678,2828,2679,0,3007,3197,3008,5328,5328,5328,42,2558,2822,2633,0,2881,3187,2962,5329,5329,5329,42,2558,2633,2634,0,2881,2962,2963,5330,5330,5330,42,2066,2062,2060,0,2319,2312,2310,5331,5331,5331,42,2066,2060,2059,0,2319,2310,2309,5332,5332,5332,42,2487,2044,2046,0,2810,2287,2289,5333,5333,5333,42,2487,2046,2061,0,2810,2289,2311,5334,5334,5334,42,2538,2043,2044,0,2861,2286,2287,5335,5335,5335,42,2538,2044,2487,0,2861,2287,2810,5336,5336,5336,42,2542,2049,2043,0,2865,2292,2286,5337,5337,5337,42,2542,2043,2538,0,2865,2286,2861,5338,5338,5338,42,2543,2063,2049,0,2866,2313,2292,5339,5339,5339,42,2543,2049,2542,0,2866,2292,2865,5340,5340,5340,42,2836,2834,2819,0,3209,3206,3183,5341,5341,5341,42,2836,2819,2069,0,3209,3183,2322,5342,5342,5342,42,2543,2834,2836,0,2866,3206,3209,5343,5343,5343,42,2543,2836,2063,0,2866,3209,2313,5344,5344,5344,42,2833,2834,2543,0,3205,3206,2866,5345,5345,5345,42,2833,2543,2544,0,3205,2866,2867,5346,5346,5346,42,2552,2832,2833,0,2875,3204,3205,5347,5347,5347,42,2552,2833,2544,0,2875,3205,2867,5348,5348,5348,42,2827,2831,2832,0,3196,3203,3204,5349,5349,5349,42,2827,2832,2552,0,3196,3204,2875,5350,5350,5350,42,2553,2829,2831,0,2876,3201,3203,5351,5351,5351,42,2553,2831,2827,0,2876,3203,3196,5352,5352,5352,42,2191,2195,2829,0,2463,2467,3201,5353,5353,5353,42,2191,2829,2553,0,2463,3201,2876,5354,5354,5354,42,2836,2069,2039,0,3209,2322,2282,5355,5355,5355,42,2836,2039,2063,0,3209,2282,2313,5356,5356,5356,42,2059,2060,2046,0,2309,2310,2289,5357,5357,5357,42,2059,2046,2045,0,2309,2289,2288,5358,5358,5358,42,2670,2818,2672,0,2999,3177,3001,5359,5359,5359,42,2670,2672,2669,0,2999,3001,2998,5360,5360,5360,42,2038,2837,2071,0,2281,3210,2326,5361,5361,5361,42,2038,2071,2037,0,2281,2326,2280,5362,5362,5362,42,2838,2563,2064,0,3211,2886,2315,5363,5363,5363,42,2838,2064,2065,0,3211,2315,2316,5364,5364,5364,42,2068,2454,2837,0,2321,2775,3210,5365,5365,5365,42,2068,2837,2038,0,2321,3210,2281,5366,5366,5366,42,2824,2563,2838,0,3189,2886,3211,5367,5367,5367,42,2824,2838,2839,0,3189,3211,3212,5368,5368,5368,42,2070,2839,2838,0,2323,3212,3211,5369,5369,5369,42,2070,2838,2065,0,2323,3211,2316,5370,5370,5370,42,2839,2837,2454,0,3213,3210,2775,5371,5371,5371,42,2839,2454,2824,0,3213,2775,3193,5372,5372,5372,42,2070,2071,2837,0,2325,2326,3210,5373,5373,5373,42,2070,2837,2839,0,2325,3210,3213,5374,5374,5374,42,2842,2841,2840,0,3216,3215,3214,5375,5375,5375,42,2842,2840,2843,0,3216,3214,3217,5376,5376,5376,42,2846,2845,2844,0,3220,3219,3218,5377,5377,5377,42,2846,2844,2847,0,3220,3218,3221,5378,5378,5378,42,2850,2849,2848,0,3224,3223,3222,5379,5379,5379,42,2850,2848,2851,0,3224,3222,3225,5380,5380,5380,42,2853,2852,2849,0,3227,3226,3223,5381,5381,5381,42,2853,2849,2850,0,3227,3223,3224,5382,5382,5382,42,2856,2855,2854,0,3230,3229,3228,5383,5383,5383,42,2856,2854,2857,0,3230,3228,3231,5384,5384,5384,42,2855,2859,2858,0,3229,3233,3232,5385,5385,5385,42,2855,2858,2854,0,3229,3232,3228,5386,5386,5386,42,2859,2861,2860,0,3233,3235,3234,5387,5387,5387,42,2859,2860,2858,0,3233,3234,3232,5388,5388,5388,42,2861,2859,2862,0,3235,3233,3236,5389,5389,5389,42,2861,2862,2863,0,3235,3236,3237,5390,5390,5390,42,2850,2851,2864,0,3224,3225,3238,5391,5391,5391,42,2850,2864,2865,0,3224,3238,3239,5392,5392,5392,42,2866,2853,2850,0,3240,3227,3224,5393,5393,5393,42,2866,2850,2865,0,3240,3224,3239,5394,5394,5394,42,2867,2863,2862,0,3241,3237,3236,5395,5395,5395,42,2867,2862,2868,0,3241,3236,3242,5396,5396,5396,42,2870,2869,2868,0,3244,3243,3242,5397,5397,5397,42,2870,2868,2862,0,3244,3242,3236,5398,5398,5398,42,2859,2855,2870,0,3233,3229,3244,5399,5399,5399,42,2859,2870,2862,0,3233,3244,3236,5400,5400,5400,42,2869,2870,2871,0,3243,3244,3245,5401,5401,5401,42,2869,2871,2872,0,3243,3245,3246,5402,5402,5402,42,2855,2856,2871,0,3229,3230,3245,5403,5403,5403,42,2855,2871,2870,0,3229,3245,3244,5404,5404,5404,42,2875,2874,2873,0,3249,3248,3247,5405,5405,5405,42,2875,2873,2876,0,3249,3247,3250,5406,5406,5406,42,2877,2868,2869,0,3253,3252,3251,5407,5407,5407,42,2877,2869,2878,0,3253,3251,3254,5408,5408,5408,42,2879,2867,2868,0,3256,3255,3252,5409,5409,5409,42,2879,2868,2877,0,3256,3252,3253,5410,5410,5410,42,2881,2880,2853,0,3259,3258,3257,5411,5411,5411,42,2881,2853,2866,0,3259,3257,3260,5412,5412,5412,42,2883,2878,2882,0,3262,3254,3261,5413,5413,5413,42,2883,2882,2884,0,3262,3261,3263,5414,5414,5414,42,2874,2875,2885,0,3248,3249,3264,5415,5415,5415,42,2874,2885,2886,0,3248,3264,3265,5416,5416,5416,42,2875,2888,2887,0,3268,3267,3266,5417,5417,5417,42,2875,2887,2885,0,3268,3266,3269,5418,5418,5418,42,2875,2876,2889,0,3268,3271,3270,5419,5419,5419,42,2875,2889,2888,0,3268,3270,3267,5420,5420,5420,42,2874,2882,2872,0,3248,3261,3272,5421,5421,5421,42,2874,2872,2873,0,3248,3272,3247,5422,5422,5422,42,2886,2884,2882,0,3265,3263,3261,5423,5423,5423,42,2886,2882,2874,0,3265,3261,3248,5424,5424,5424,42,2872,2882,2878,0,3272,3261,3254,5425,5425,5425,42,2872,2878,2869,0,3272,3254,3251,5426,5426,5426,42,2852,2853,2880,0,3226,3227,3273,5427,5427,5427,42,2852,2880,2847,0,3226,3273,3221,5428,5428,5428,42,2880,2881,2890,0,3258,3259,3274,5429,5429,5429,42,2880,2890,2891,0,3258,3274,3275,5430,5430,5430,42,2893,2892,2887,0,3277,3276,3266,5431,5431,5431,42,2893,2887,2888,0,3277,3266,3267,5432,5432,5432,42,2889,2894,2893,0,3270,3278,3277,5433,5433,5433,42,2889,2893,2888,0,3270,3277,3267,5434,5434,5434,42,2896,2895,2894,0,3280,3279,3278,5435,5435,5435,42,2896,2894,2889,0,3280,3278,3270,5436,5436,5436,42,2895,2856,2857,0,3279,3230,3231,5437,5437,5437,42,2895,2857,2897,0,3279,3231,3281,5438,5438,5438,42,2896,2889,2876,0,3280,3270,3271,5439,5439,5439,42,2896,2876,2873,0,3280,3271,3282,5440,5440,5440,42,2856,2895,2896,0,3230,3279,3280,5441,5441,5441,42,2856,2896,2871,0,3230,3280,3245,5442,5442,5442,42,2873,2872,2871,0,3282,3246,3245,5443,5443,5443,42,2873,2871,2896,0,3282,3245,3280,5444,5444,5444,42,2895,2897,2898,0,3279,3281,3283,5445,5445,5445,42,2895,2898,2894,0,3279,3283,3278,5446,5446,5446,42,2901,2900,2899,0,3286,3285,3284,5447,5447,5447,42,2901,2899,2902,0,3286,3284,3287,5448,5448,5448,42,2903,2844,2845,0,3288,3218,3219,5449,5449,5449,42,2903,2845,2904,0,3288,3219,3289,5450,5450,5450,42,2844,2903,2905,0,3218,3288,3290,5451,5451,5451,42,2844,2905,2906,0,3218,3290,3291,5452,5452,5452,42,2902,2903,2904,0,3287,3288,3289,5453,5453,5453,42,2902,2904,2901,0,3287,3289,3286,5454,5454,5454,42,2861,2908,2907,0,3235,3293,3292,5455,5455,5455,42,2861,2907,2860,0,3235,3292,3234,5456,5456,5456,42,2864,2909,2907,0,3238,3294,3292,5457,5457,5457,42,2864,2907,2908,0,3238,3292,3293,5458,5458,5458,42,2908,2861,2863,0,3293,3235,3237,5459,5459,5459,42,2908,2863,2910,0,3293,3237,3295,5460,5460,5460,42,2910,2865,2864,0,3295,3239,3238,5461,5461,5461,42,2910,2864,2908,0,3295,3238,3293,5462,5462,5462,42,2910,2863,2867,0,3295,3237,3241,5463,5463,5463,42,2910,2867,2911,0,3295,3241,3296,5464,5464,5464,42,2911,2866,2865,0,3296,3240,3239,5465,5465,5465,42,2911,2865,2910,0,3296,3239,3295,5466,5466,5466,42,2912,2911,2867,0,3298,3297,3255,5467,5467,5467,42,2912,2867,2879,0,3298,3255,3256,5468,5468,5468,42,2912,2881,2866,0,3298,3259,3260,5469,5469,5469,42,2912,2866,2911,0,3298,3260,3297,5470,5470,5470,42,2913,2912,2879,0,3299,3298,3256,5471,5471,5471,42,2913,2879,2914,0,3299,3256,3300,5472,5472,5472,42,2913,2890,2881,0,3299,3274,3259,5473,5473,5473,42,2913,2881,2912,0,3299,3259,3298,5474,5474,5474,42,2878,2883,2915,0,3254,3262,3301,5475,5475,5475,42,2878,2915,2877,0,3254,3301,3253,5476,5476,5476,42,2914,2879,2877,0,3300,3256,3253,5477,5477,5477,42,2914,2877,2915,0,3300,3253,3301,5478,5478,5478,42,2847,2880,2891,0,3221,3273,3302,5479,5479,5479,42,2847,2891,2846,0,3221,3302,3220,5480,5480,5480,42,2918,2917,2916,0,3305,3304,3303,5481,5481,5481,42,2918,2916,2919,0,3305,3303,3306,5482,5482,5482,42,2917,2848,2849,0,3304,3222,3223,5483,5483,5483,42,2917,2849,2916,0,3304,3223,3303,5484,5484,5484,42,2916,2906,2905,0,3303,3291,3290,5485,5485,5485,42,2916,2905,2919,0,3303,3290,3306,5486,5486,5486,42,2852,2906,2916,0,3226,3291,3303,5487,5487,5487,42,2852,2916,2849,0,3226,3303,3223,5488,5488,5488,42,2906,2852,2847,0,3291,3226,3221,5489,5489,5489,42,2906,2847,2844,0,3291,3221,3218,5490,5490,5490,42,2920,2905,2903,0,3307,3290,3288,5491,5491,5491,42,2920,2903,2902,0,3307,3288,3287,5492,5492,5492,42,2921,2920,2902,0,3308,3307,3287,5493,5493,5493,42,2921,2902,2899,0,3308,3287,3284,5494,5494,5494,42,2922,2899,2900,0,3309,3284,3285,5495,5495,5495,42,2922,2900,2892,0,3309,3285,3276,5496,5496,5496,42,2923,2921,2899,0,3310,3308,3284,5497,5497,5497,42,2923,2899,2922,0,3310,3284,3309,5498,5498,5498,42,2926,2925,2924,0,3313,3312,3311,5499,5499,5499,42,2926,2924,2927,0,3313,3311,3314,5500,5500,5500,42,2928,2891,2890,0,3316,3302,3315,5501,5501,5501,42,2928,2890,2929,0,3316,3315,3317,5502,5502,5502,42,2932,2931,2930,0,3320,3319,3318,5503,5503,5503,42,2932,2930,2886,0,3320,3318,3321,5504,5504,5504,42,2925,2932,2886,0,3312,3320,3321,5505,5505,5505,42,2925,2886,2924,0,3312,3321,3311,5506,5506,5506,42,2884,2886,2930,0,3322,3321,3318,5507,5507,5507,42,2884,2930,2883,0,3322,3318,3323,5508,5508,5508,42,2890,2913,2933,0,3315,3325,3324,5509,5509,5509,42,2890,2933,2929,0,3315,3324,3317,5510,5510,5510,42,2913,2914,2934,0,3325,3327,3326,5511,5511,5511,42,2913,2934,2933,0,3325,3326,3324,5512,5512,5512,42,2930,2935,2915,0,3318,3329,3328,5513,5513,5513,42,2930,2915,2883,0,3318,3328,3323,5514,5514,5514,42,2914,2915,2935,0,3327,3328,3329,5515,5515,5515,42,2914,2935,2934,0,3327,3329,3326,5516,5516,5516,42,2938,2937,2936,0,3332,3331,3330,5517,5517,5517,42,2938,2936,2939,0,3332,3330,3333,5518,5518,5518,42,2942,2941,2940,0,3336,3335,3334,5519,5519,5519,42,2942,2940,2943,0,3336,3334,3337,5520,5520,5520,42,2941,2938,2939,0,3335,3332,3333,5521,5521,5521,42,2941,2939,2940,0,3335,3333,3334,5522,5522,5522,42,2937,2945,2944,0,3331,3339,3338,5523,5523,5523,42,2937,2944,2936,0,3331,3338,3330,5524,5524,5524,42,2945,2947,2946,0,3339,3341,3340,5525,5525,5525,42,2945,2946,2944,0,3339,3340,3338,5526,5526,5526,42,2948,2926,2927,0,3342,3313,3314,5527,5527,5527,42,2948,2927,2949,0,3342,3314,3343,5528,5528,5528,42,2942,2943,2926,0,3336,3337,3313,5529,5529,5529,42,2942,2926,2948,0,3336,3313,3342,5530,5530,5530,42,2950,2946,2947,0,3344,3340,3341,5531,5531,5531,42,2950,2947,2951,0,3344,3341,3345,5532,5532,5532,42,2952,2904,2845,0,3346,3289,3219,5533,5533,5533,42,2952,2845,2953,0,3346,3219,3347,5534,5534,5534,42,2901,2904,2952,0,3286,3289,3346,5535,5535,5535,42,2901,2952,2954,0,3286,3346,3348,5536,5536,5536,42,2900,2901,2954,0,3285,3286,3348,5537,5537,5537,42,2900,2954,2955,0,3285,3348,3349,5538,5538,5538,42,2892,2900,2955,0,3276,3285,3349,5539,5539,5539,42,2892,2955,2956,0,3276,3349,3350,5540,5540,5540,42,2887,2892,2956,0,3266,3276,3350,5541,5541,5541,42,2887,2956,2957,0,3266,3350,3351,5542,5542,5542,42,2957,2958,2885,0,3351,3352,3269,5543,5543,5543,42,2957,2885,2887,0,3351,3269,3266,5544,5544,5544,42,2885,2958,2924,0,3269,3352,3311,5545,5545,5545,42,2885,2924,2886,0,3269,3311,3321,5546,5546,5546,42,2961,2960,2959,0,3355,3354,3353,5547,5547,5547,42,2961,2959,2962,0,3355,3353,3356,5548,5548,5548,42,2960,2961,2963,0,3354,3355,3357,5549,5549,5549,42,2960,2963,2964,0,3354,3357,3358,5550,5550,5550,42,2965,2961,2962,0,3359,3355,3356,5551,5551,5551,42,2965,2962,2966,0,3359,3356,3360,5552,5552,5552,42,2961,2965,2967,0,3355,3359,3361,5553,5553,5553,42,2961,2967,2963,0,3355,3361,3357,5554,5554,5554,42,246,239,2968,0,3364,3363,3362,5555,5555,5555,42,246,2968,2969,0,3364,3362,3365,5556,5556,5556,42,6497,246,2969,0,3366,3364,3365,5557,5557,5557,42,6497,2969,2970,0,3366,3365,3367,5558,5558,5558,42,2971,2965,2966,0,3368,3359,3360,5559,5559,5559,42,2971,2966,2972,0,3368,3360,3369,5560,5560,5560,42,2973,2967,2965,0,3370,3361,3359,5561,5561,5561,42,2973,2965,2971,0,3370,3359,3368,5562,5562,5562,42,2975,2974,2967,0,3372,3371,3361,5563,5563,5563,42,2975,2967,2973,0,3372,3361,3370,5564,5564,5564,42,239,6504,2976,0,3363,3374,3373,5565,5565,5565,42,239,2976,2968,0,3363,3373,3362,5566,5566,5566,42,2972,2966,2977,0,3369,3360,3375,5567,5567,5567,42,2972,2977,2978,0,3369,3375,3376,5568,5568,5568,42,2966,2962,2979,0,3360,3356,3377,5569,5569,5569,42,2966,2979,2977,0,3360,3377,3375,5570,5570,5570,42,2962,2959,2980,0,3356,3353,3378,5571,5571,5571,42,2962,2980,2979,0,3356,3378,3377,5572,5572,5572,42,2968,2976,2978,0,3362,3373,3376,5573,5573,5573,42,2968,2978,2977,0,3362,3376,3375,5574,5574,5574,42,2969,2968,2977,0,3365,3362,3375,5575,5575,5575,42,2969,2977,2979,0,3365,3375,3377,5576,5576,5576,42,2970,2969,2979,0,3367,3365,3377,5577,5577,5577,42,2970,2979,2980,0,3367,3377,3378,5578,5578,5578,42,2974,2981,2963,0,3371,3379,3357,5579,5579,5579,42,2974,2963,2967,0,3371,3357,3361,5580,5580,5580,42,2981,2982,2964,0,3379,3380,3358,5581,5581,5581,42,2981,2964,2963,0,3379,3358,3357,5582,5582,5582,42,2985,2984,2983,0,3383,3382,3381,5583,5583,5583,42,2985,2983,2986,0,3383,3381,3384,5584,5584,5584,42,2984,2952,2953,0,3382,3346,3347,5585,5585,5585,42,2984,2953,2983,0,3382,3347,3381,5586,5586,5586,42,2987,2984,2985,0,3385,3382,3383,5587,5587,5587,42,2987,2985,2988,0,3385,3383,3386,5588,5588,5588,42,2954,2952,2984,0,3348,3346,3382,5589,5589,5589,42,2954,2984,2987,0,3348,3382,3385,5590,5590,5590,42,2989,2987,2988,0,3387,3385,3386,5591,5591,5591,42,2989,2988,2990,0,3387,3386,3388,5592,5592,5592,42,2955,2954,2987,0,3349,3348,3385,5593,5593,5593,42,2955,2987,2989,0,3349,3385,3387,5594,5594,5594,42,2991,2989,2990,0,3389,3387,3388,5595,5595,5595,42,2991,2990,2992,0,3389,3388,3390,5596,5596,5596,42,2956,2955,2989,0,3350,3349,3387,5597,5597,5597,42,2956,2989,2991,0,3350,3387,3389,5598,5598,5598,42,2993,2991,2992,0,3391,3389,3390,5599,5599,5599,42,2993,2992,2994,0,3391,3390,3392,5600,5600,5600,42,2957,2956,2991,0,3351,3350,3389,5601,5601,5601,42,2957,2991,2993,0,3351,3389,3391,5602,5602,5602,42,2973,2996,2995,0,3370,3394,3393,5603,5603,5603,42,2973,2995,2975,0,3370,3393,3372,5604,5604,5604,42,2996,2998,2997,0,3394,3396,3395,5605,5605,5605,42,2996,2997,2995,0,3394,3395,3393,5606,5606,5606,42,2971,2999,2996,0,3368,3397,3394,5607,5607,5607,42,2971,2996,2973,0,3368,3394,3370,5608,5608,5608,42,2999,3000,2998,0,3397,3398,3396,5609,5609,5609,42,2999,2998,2996,0,3397,3396,3394,5610,5610,5610,42,2972,3001,2999,0,3369,3399,3397,5611,5611,5611,42,2972,2999,2971,0,3369,3397,3368,5612,5612,5612,42,3001,3002,3000,0,3399,3400,3398,5613,5613,5613,42,3001,3000,2999,0,3399,3398,3397,5614,5614,5614,42,2978,3003,3001,0,3376,3401,3399,5615,5615,5615,42,2978,3001,2972,0,3376,3399,3369,5616,5616,5616,42,3003,3004,3002,0,3401,3402,3400,5617,5617,5617,42,3003,3002,3001,0,3401,3400,3399,5618,5618,5618,42,2976,3005,3003,0,3373,3403,3401,5619,5619,5619,42,2976,3003,2978,0,3373,3401,3376,5620,5620,5620,42,3005,3006,3004,0,3403,3404,3402,5621,5621,5621,42,3005,3004,3003,0,3403,3402,3401,5622,5622,5622,42,6504,3007,3005,0,3374,271,3403,5623,5623,5623,42,6504,3005,2976,0,3374,3403,3373,5624,5624,5624,42,3007,3008,3006,0,271,272,3404,5625,5625,5625,42,3007,3006,3005,0,271,3404,3403,5626,5626,5626,42,2995,2997,3009,0,3393,3395,3405,5627,5627,5627,42,2995,3009,3010,0,3393,3405,3406,5628,5628,5628,42,3011,2975,2995,0,3407,3372,3393,5629,5629,5629,42,3011,2995,3010,0,3407,3393,3406,5630,5630,5630,42,2974,2975,3011,0,3371,3372,3407,5631,5631,5631,42,2974,3011,3012,0,3371,3407,3408,5632,5632,5632,42,3012,3013,2981,0,3408,3409,3379,5633,5633,5633,42,3012,2981,2974,0,3408,3379,3371,5634,5634,5634,42,3009,3015,3014,0,3405,3411,3410,5635,5635,5635,42,3009,3014,3010,0,3405,3410,3406,5636,5636,5636,42,3015,2986,2983,0,3411,3384,3381,5637,5637,5637,42,3015,2983,3014,0,3411,3381,3410,5638,5638,5638,42,3018,3017,3016,0,3414,3413,3412,5639,5639,5639,42,3018,3016,2927,0,3414,3412,3314,5640,5640,5640,42,2993,2994,3017,0,3391,3392,3413,5641,5641,5641,42,2993,3017,3018,0,3391,3413,3414,5642,5642,5642,42,2924,2958,3018,0,3311,3352,3414,5643,5643,5643,42,2924,3018,2927,0,3311,3414,3314,5644,5644,5644,42,2957,2993,3018,0,3351,3391,3414,5645,5645,5645,42,2957,3018,2958,0,3351,3414,3352,5646,5646,5646,42,2949,2927,3016,0,3343,3314,3412,5647,5647,5647,42,2949,3016,3019,0,3343,3412,3415,5648,5648,5648,42,2997,2998,3020,0,3395,3396,3416,5649,5649,5649,42,2997,3020,3021,0,3395,3416,3417,5650,5650,5650,42,2998,3000,3022,0,3396,3398,3418,5651,5651,5651,42,2998,3022,3020,0,3396,3418,3416,5652,5652,5652,42,3000,3002,3023,0,3398,3400,3419,5653,5653,5653,42,3000,3023,3022,0,3398,3419,3418,5654,5654,5654,42,3025,3024,3021,0,3421,3420,3417,5655,5655,5655,42,3025,3021,3020,0,3421,3417,3416,5656,5656,5656,42,3027,3026,3006,0,273,3422,3404,5657,5657,5657,42,3027,3006,3008,0,273,3404,272,5658,5658,5658,42,3028,3023,3002,0,3423,3419,3400,5659,5659,5659,42,3028,3002,3004,0,3423,3400,3402,5660,5660,5660,42,3028,3026,3029,0,3423,3422,3424,5661,5661,5661,42,3028,3029,3030,0,3423,3424,3425,5662,5662,5662,42,3023,3028,3030,0,3419,3423,3425,5663,5663,5663,42,3023,3030,3031,0,3419,3425,3426,5664,5664,5664,42,3022,3023,3031,0,3418,3419,3426,5665,5665,5665,42,3022,3031,3032,0,3418,3426,3427,5666,5666,5666,42,3020,3022,3032,0,3416,3418,3427,5667,5667,5667,42,3020,3032,3025,0,3416,3427,3421,5668,5668,5668,42,3033,3021,3024,0,3428,3417,3420,5669,5669,5669,42,3033,3024,3034,0,3428,3420,3429,5670,5670,5670,42,3026,3027,3035,0,3422,273,274,5671,5671,5671,42,3026,3035,3029,0,3422,274,3424,5672,5672,5672,42,3004,3006,3026,0,3402,3404,3422,5673,5673,5673,42,3004,3026,3028,0,3402,3422,3423,5674,5674,5674,42,3033,3009,2997,0,3428,3405,3395,5675,5675,5675,42,3033,2997,3021,0,3428,3395,3417,5676,5676,5676,42,3015,3009,3033,0,3411,3405,3428,5677,5677,5677,42,3015,3033,3036,0,3411,3428,3430,5678,5678,5678,42,3037,2986,3015,0,3431,3384,3411,5679,5679,5679,42,3037,3015,3036,0,3431,3411,3430,5680,5680,5680,42,3034,3038,3036,0,3429,3432,3430,5681,5681,5681,42,3034,3036,3033,0,3429,3430,3428,5682,5682,5682,42,3037,3036,3038,0,3431,3430,3432,5683,5683,5683,42,3037,3038,3039,0,3431,3432,3433,5684,5684,5684,42,3040,3037,3039,0,3434,3431,3433,5685,5685,5685,42,3040,3039,3041,0,3434,3433,3435,5686,5686,5686,42,3042,2986,3037,0,3436,3384,3431,5687,5687,5687,42,3042,3037,3040,0,3436,3431,3434,5688,5688,5688,42,3042,3043,2985,0,3436,3437,3383,5689,5689,5689,42,3042,2985,2986,0,3436,3383,3384,5690,5690,5690,42,3043,3044,2988,0,3437,3438,3386,5691,5691,5691,42,3043,2988,2985,0,3437,3386,3383,5692,5692,5692,42,3044,3045,2990,0,3438,3439,3388,5693,5693,5693,42,3044,2990,2988,0,3438,3388,3386,5694,5694,5694,42,3045,3046,2992,0,3439,3440,3390,5695,5695,5695,42,3045,2992,2990,0,3439,3390,3388,5696,5696,5696,42,3047,2994,2992,0,3441,3392,3390,5697,5697,5697,42,3047,2992,3046,0,3441,3390,3440,5698,5698,5698,42,3048,3017,2994,0,3442,3413,3392,5699,5699,5699,42,3048,2994,3047,0,3442,3392,3441,5700,5700,5700,42,3048,3049,3016,0,3442,3443,3412,5701,5701,5701,42,3048,3016,3017,0,3442,3412,3413,5702,5702,5702,42,3049,3050,3019,0,3443,3444,3415,5703,5703,5703,42,3049,3019,3016,0,3443,3415,3412,5704,5704,5704,42,3053,3052,3051,0,3447,3446,3445,5705,5705,5705,42,3053,3051,3054,0,3447,3445,3448,5706,5706,5706,42,3057,3056,3055,0,3451,3450,3449,5707,5707,5707,42,3057,3055,3058,0,3451,3449,3452,5708,5708,5708,42,3060,2843,3059,0,3454,3217,3453,5709,5709,5709,42,3060,3059,3061,0,3454,3453,3455,5710,5710,5710,42,247,3063,3062,0,276,3457,3456,5711,5711,5711,42,247,3062,266,0,276,3456,275,5712,5712,5712,42,267,3065,3064,0,278,3459,3458,5713,5713,5713,42,267,3064,248,0,278,3458,277,5714,5714,5714,42,3066,3063,247,0,3460,3457,276,5715,5715,5715,42,3066,247,6590,0,3460,276,279,5716,5716,5716,42,3064,3066,6590,0,3458,3460,279,5717,5717,5717,42,3064,6590,248,0,3458,279,277,5718,5718,5718,42,3068,3067,3057,0,3462,3461,3451,5719,5719,5719,42,3068,3057,3069,0,3462,3451,3463,5720,5720,5720,42,3067,3070,3056,0,3461,3464,3450,5721,5721,5721,42,3067,3056,3057,0,3461,3450,3451,5722,5722,5722,42,3071,3056,3070,0,3465,3450,3464,5723,5723,5723,42,3071,3070,3072,0,3465,3464,3466,5724,5724,5724,42,3074,3073,3055,0,3468,3467,3449,5725,5725,5725,42,3074,3055,3075,0,3468,3449,3469,5726,5726,5726,42,3076,3074,3075,0,3470,3468,3469,5727,5727,5727,42,3076,3075,3077,0,3470,3469,3471,5728,5728,5728,42,3073,3078,3058,0,3467,3472,3452,5729,5729,5729,42,3073,3058,3055,0,3467,3452,3449,5730,5730,5730,42,3079,3068,3069,0,3473,3462,3463,5731,5731,5731,42,3079,3069,3080,0,3473,3463,3474,5732,5732,5732,42,3069,3082,3081,0,3463,3476,3475,5733,5733,5733,42,3069,3081,3080,0,3463,3475,3474,5734,5734,5734,42,3069,3057,3058,0,3463,3451,3452,5735,5735,5735,42,3069,3058,3082,0,3463,3452,3476,5736,5736,5736,42,3085,3084,3083,0,3479,3478,3477,5737,5737,5737,42,3085,3083,3086,0,3479,3477,3480,5738,5738,5738,42,3085,3088,3087,0,3479,3482,3481,5739,5739,5739,42,3085,3087,3084,0,3479,3481,3478,5740,5740,5740,42,3090,3089,3088,0,3484,3483,3482,5741,5741,5741,42,3090,3088,3085,0,3484,3482,3479,5742,5742,5742,42,3090,3092,3091,0,3484,3486,3485,5743,5743,5743,42,3090,3091,3089,0,3484,3485,3483,5744,5744,5744,42,3086,3093,3090,0,3480,3487,3484,5745,5745,5745,42,3086,3090,3085,0,3480,3484,3479,5746,5746,5746,42,3093,3094,3092,0,3487,3488,3486,5747,5747,5747,42,3093,3092,3090,0,3487,3486,3484,5748,5748,5748,42,3059,3095,3093,0,3453,3489,3487,5749,5749,5749,42,3059,3093,3086,0,3453,3487,3480,5750,5750,5750,42,3095,3096,3094,0,3489,3490,3488,5751,5751,5751,42,3095,3094,3093,0,3489,3488,3487,5752,5752,5752,42,2843,2840,3095,0,3217,3214,3489,5753,5753,5753,42,2843,3095,3059,0,3217,3489,3453,5754,5754,5754,42,2840,3097,3096,0,3214,3491,3490,5755,5755,5755,42,2840,3096,3095,0,3214,3490,3489,5756,5756,5756,42,3098,3082,3058,0,3492,3476,3452,5757,5757,5757,42,3098,3058,3078,0,3492,3452,3472,5758,5758,5758,42,3061,3059,3086,0,3455,3453,3480,5759,5759,5759,42,3061,3086,3083,0,3455,3480,3477,5760,5760,5760,42,3052,3083,3084,0,3446,3477,3478,5761,5761,5761,42,3052,3084,3051,0,3446,3478,3445,5762,5762,5762,42,3092,3100,3099,0,3486,3494,3493,5763,5763,5763,42,3092,3099,3091,0,3486,3493,3485,5764,5764,5764,42,3100,3068,3079,0,3494,3462,3473,5765,5765,5765,42,3100,3079,3099,0,3494,3473,3493,5766,5766,5766,42,3094,3101,3100,0,3488,3495,3494,5767,5767,5767,42,3094,3100,3092,0,3488,3494,3486,5768,5768,5768,42,3101,3067,3068,0,3495,3461,3462,5769,5769,5769,42,3101,3068,3100,0,3495,3462,3494,5770,5770,5770,42,3096,3102,3101,0,3490,3496,3495,5771,5771,5771,42,3096,3101,3094,0,3490,3495,3488,5772,5772,5772,42,3102,3070,3067,0,3496,3464,3461,5773,5773,5773,42,3102,3067,3101,0,3496,3461,3495,5774,5774,5774,42,3097,3103,3102,0,3491,3497,3496,5775,5775,5775,42,3097,3102,3096,0,3491,3496,3490,5776,5776,5776,42,3103,3072,3070,0,3497,3466,3464,5777,5777,5777,42,3103,3070,3102,0,3497,3464,3496,5778,5778,5778,42,3052,3104,3061,0,3446,3498,3455,5779,5779,5779,42,3052,3061,3083,0,3446,3455,3477,5780,5780,5780,42,3053,3105,3104,0,3447,3499,3498,5781,5781,5781,42,3053,3104,3052,0,3447,3498,3446,5782,5782,5782,42,3106,3060,3061,0,3500,3454,3455,5783,5783,5783,42,3106,3061,3104,0,3500,3455,3498,5784,5784,5784,42,3107,3106,3104,0,3501,3500,3498,5785,5785,5785,42,3107,3104,3108,0,3501,3498,3502,5786,5786,5786,42,3108,3109,6634,0,3502,281,280,5787,5787,5787,42,3108,6634,3107,0,3502,280,3501,5788,5788,5788,42,3110,241,3109,0,3503,282,281,5789,5789,5789,42,3110,3109,3108,0,3503,281,3502,5790,5790,5790,42,3105,3110,3108,0,3499,3503,3502,5791,5791,5791,42,3105,3108,3104,0,3499,3502,3498,5792,5792,5792,42,3112,3111,3054,0,3505,3504,3448,5793,5793,5793,42,3112,3054,3051,0,3505,3448,3445,5794,5794,5794,42,3113,3054,3111,0,3506,3448,3504,5795,5795,5795,42,3113,3111,3114,0,3506,3504,3507,5796,5796,5796,42,3116,3115,3071,0,3509,3508,3465,5797,5797,5797,42,3116,3071,3072,0,3509,3465,3466,5798,5798,5798,42,3117,3116,3072,0,3510,3509,3466,5799,5799,5799,42,3117,3072,3103,0,3510,3466,3497,5800,5800,5800,42,3118,3117,3103,0,3511,3510,3497,5801,5801,5801,42,3118,3103,3097,0,3511,3497,3491,5802,5802,5802,42,2841,3118,3097,0,3215,3511,3491,5803,5803,5803,42,2841,3097,2840,0,3215,3491,3214,5804,5804,5804,42,3119,2842,2843,0,3512,3216,3217,5805,5805,5805,42,3119,2843,3060,0,3512,3217,3454,5806,5806,5806,42,3120,3119,3060,0,3513,3512,3454,5807,5807,5807,42,3120,3060,3106,0,3513,3454,3500,5808,5808,5808,42,3121,3120,3106,0,3514,3513,3500,5809,5809,5809,42,3121,3106,3107,0,3514,3500,3501,5810,5810,5810,42,6647,3121,3107,0,283,3514,3501,5811,5811,5811,42,6647,3107,6634,0,283,3501,280,5812,5812,5812,42,3075,3055,3056,0,3469,3449,3450,5813,5813,5813,42,3075,3056,3071,0,3469,3450,3465,5814,5814,5814,42,3077,3075,3071,0,3471,3469,3465,5815,5815,5815,42,3077,3071,3115,0,3471,3465,3508,5816,5816,5816,42,3123,3122,3062,0,3516,3515,3456,5817,5817,5817,42,3123,3062,3063,0,3516,3456,3457,5818,5818,5818,42,3074,3076,3122,0,3468,3470,3515,5819,5819,5819,42,3074,3122,3123,0,3468,3515,3516,5820,5820,5820,42,3124,3123,3063,0,3517,3516,3457,5821,5821,5821,42,3124,3063,3066,0,3517,3457,3460,5822,5822,5822,42,3073,3074,3123,0,3467,3468,3516,5823,5823,5823,42,3073,3123,3124,0,3467,3516,3517,5824,5824,5824,42,3125,3124,3066,0,3518,3517,3460,5825,5825,5825,42,3125,3066,3064,0,3518,3460,3458,5826,5826,5826,42,3078,3073,3124,0,3472,3467,3517,5827,5827,5827,42,3078,3124,3125,0,3472,3517,3518,5828,5828,5828,42,3065,3126,3125,0,3459,3519,3518,5829,5829,5829,42,3065,3125,3064,0,3459,3518,3458,5830,5830,5830,42,3126,3098,3078,0,3519,3492,3472,5831,5831,5831,42,3126,3078,3125,0,3519,3472,3518,5832,5832,5832,42,3043,3042,3127,0,3437,3436,3520,5833,5833,5833,42,3043,3127,3128,0,3437,3520,3521,5834,5834,5834,42,3044,3043,3128,0,3438,3437,3521,5835,5835,5835,42,3044,3128,3129,0,3438,3521,3522,5836,5836,5836,42,3129,3130,3045,0,3522,3523,3439,5837,5837,5837,42,3129,3045,3044,0,3522,3439,3438,5838,5838,5838,42,3131,3047,3046,0,3524,3441,3440,5839,5839,5839,42,3131,3046,3132,0,3524,3440,3525,5840,5840,5840,42,3130,3132,3046,0,3523,3525,3440,5841,5841,5841,42,3130,3046,3045,0,3523,3440,3439,5842,5842,5842,42,3091,3134,3133,0,3485,3527,3526,5843,5843,5843,42,3091,3133,3089,0,3485,3526,3483,5844,5844,5844,42,3134,3128,3127,0,3527,3521,3520,5845,5845,5845,42,3134,3127,3133,0,3527,3520,3526,5846,5846,5846,42,3135,3130,3129,0,3528,3523,3522,5847,5847,5847,42,3135,3129,3136,0,3528,3522,3529,5848,5848,5848,42,3137,3135,3079,0,3530,3528,3473,5849,5849,5849,42,3137,3079,3080,0,3530,3473,3474,5850,5850,5850,42,3132,3130,3135,0,3525,3523,3528,5851,5851,5851,42,3132,3135,3137,0,3525,3528,3530,5852,5852,5852,42,3138,3137,3080,0,3531,3530,3474,5853,5853,5853,42,3138,3080,3081,0,3531,3474,3475,5854,5854,5854,42,3131,3132,3137,0,3524,3525,3530,5855,5855,5855,42,3131,3137,3138,0,3524,3530,3531,5856,5856,5856,42,3128,3134,3136,0,3521,3527,3529,5857,5857,5857,42,3128,3136,3129,0,3521,3529,3522,5858,5858,5858,42,3134,3091,3099,0,3527,3485,3493,5859,5859,5859,42,3134,3099,3136,0,3527,3493,3529,5860,5860,5860,42,3135,3136,3099,0,3528,3529,3493,5861,5861,5861,42,3135,3099,3079,0,3528,3493,3473,5862,5862,5862,42,3098,3126,3139,0,3492,3519,3532,5863,5863,5863,42,3098,3139,3140,0,3492,3532,3533,5864,5864,5864,42,3142,3140,3141,0,3535,3533,3534,5865,5865,5865,42,3142,3141,3143,0,3535,3534,3536,5866,5866,5866,42,3082,3098,3140,0,3476,3492,3533,5867,5867,5867,42,3082,3140,3142,0,3476,3533,3535,5868,5868,5868,42,3144,3142,3143,0,3537,3535,3536,5869,5869,5869,42,3144,3143,3145,0,3537,3536,3538,5870,5870,5870,42,3081,3082,3142,0,3475,3476,3535,5871,5871,5871,42,3081,3142,3144,0,3475,3535,3537,5872,5872,5872,42,3146,3144,3145,0,3539,3537,3538,5873,5873,5873,42,3146,3145,3147,0,3539,3538,3540,5874,5874,5874,42,3146,3138,3081,0,3539,3531,3475,5875,5875,5875,42,3146,3081,3144,0,3539,3475,3537,5876,5876,5876,42,3149,3148,3146,0,3542,3541,3539,5877,5877,5877,42,3149,3146,3147,0,3542,3539,3540,5878,5878,5878,42,3148,3131,3138,0,3541,3524,3531,5879,5879,5879,42,3148,3138,3146,0,3541,3531,3539,5880,5880,5880,42,3049,3048,3148,0,3443,3442,3541,5881,5881,5881,42,3049,3148,3149,0,3443,3541,3542,5882,5882,5882,42,3047,3131,3148,0,3441,3524,3541,5883,5883,5883,42,3047,3148,3048,0,3441,3541,3442,5884,5884,5884,42,3126,3065,3150,0,3519,3459,3543,5885,5885,5885,42,3126,3150,3139,0,3519,3543,3532,5886,5886,5886,42,3150,3065,267,0,3543,3459,278,5887,5887,5887,42,3150,267,6677,0,3543,278,3544,5888,5888,5888,42,3150,6677,6678,0,3543,3544,3545,5889,5889,5889,42,3150,6678,3151,0,3543,3545,3546,5890,5890,5890,42,3139,3150,3151,0,3532,3543,3546,5891,5891,5891,42,3139,3151,3152,0,3532,3546,3547,5892,5892,5892,42,3140,3139,3152,0,3533,3532,3547,5893,5893,5893,42,3140,3152,3141,0,3533,3547,3534,5894,5894,5894,42,3149,3153,3050,0,3542,3548,3444,5895,5895,5895,42,3149,3050,3049,0,3542,3444,3443,5896,5896,5896,42,3155,3154,3143,0,3550,3549,3536,5897,5897,5897,42,3155,3143,3141,0,3550,3536,3534,5898,5898,5898,42,3154,3156,3145,0,3549,3551,3538,5899,5899,5899,42,3154,3145,3143,0,3549,3538,3536,5900,5900,5900,42,3156,3157,3147,0,3551,3552,3540,5901,5901,5901,42,3156,3147,3145,0,3551,3540,3538,5902,5902,5902,42,3153,3149,3147,0,3548,3542,3540,5903,5903,5903,42,3153,3147,3157,0,3548,3540,3552,5904,5904,5904,42,3160,3159,3158,0,3555,3554,3553,5905,5905,5905,42,3160,3158,3161,0,3555,3553,3556,5906,5906,5906,42,3162,3159,3160,0,3557,3554,3555,5907,5907,5907,42,3162,3160,3163,0,3557,3555,3558,5908,5908,5908,42,3164,3162,3163,0,3559,3557,3558,5909,5909,5909,42,3164,3163,3165,0,3559,3558,3560,5910,5910,5910,42,3163,3160,3166,0,3558,3555,3561,5911,5911,5911,42,3163,3166,3167,0,3558,3561,3562,5912,5912,5912,42,3053,3054,3161,0,3447,3448,3556,5913,5913,5913,42,3053,3161,3158,0,3447,3556,3553,5914,5914,5914,42,3169,3168,3164,0,3564,3563,3559,5915,5915,5915,42,3169,3164,3165,0,3564,3559,3560,5916,5916,5916,42,3168,3169,253,0,3563,3564,284,5917,5917,5917,42,3168,253,6698,0,3563,284,285,5918,5918,5918,42,3171,3167,3170,0,3566,3562,3565,5919,5919,5919,42,3171,3170,3172,0,3566,3565,3567,5920,5920,5920,42,3174,3173,3171,0,3569,3568,3566,5921,5921,5921,42,3174,3171,3172,0,3569,3566,3567,5922,5922,5922,42,3173,3169,3165,0,3568,3564,3560,5923,5923,5923,42,3173,3165,3171,0,3568,3560,3566,5924,5924,5924,42,3173,3174,6704,0,3568,3569,286,5925,5925,5925,42,3173,6704,268,0,3568,286,287,5926,5926,5926,42,3173,268,253,0,3568,287,284,5927,5927,5927,42,3173,253,3169,0,3568,284,3564,5928,5928,5928,42,3175,3170,3167,0,3570,3565,3562,5929,5929,5929,42,3175,3167,3166,0,3570,3562,3561,5930,5930,5930,42,3165,3163,3167,0,3560,3558,3562,5931,5931,5931,42,3165,3167,3171,0,3560,3562,3566,5932,5932,5932,42,3054,3113,3176,0,3448,3506,3571,5933,5933,5933,42,3054,3176,3161,0,3448,3571,3556,5934,5934,5934,42,3176,3166,3160,0,3571,3561,3555,5935,5935,5935,42,3176,3160,3161,0,3571,3555,3556,5936,5936,5936,42,3113,3175,3166,0,3506,3570,3561,5937,5937,5937,42,3113,3166,3176,0,3506,3561,3571,5938,5938,5938,42,3174,3177,6707,0,3569,3572,288,5939,5939,5939,42,3174,6707,6704,0,3569,288,286,5940,5940,5940,42,3172,3178,3177,0,3567,3573,3572,5941,5941,5941,42,3172,3177,3174,0,3567,3572,3569,5942,5942,5942,42,3172,3170,3179,0,3567,3565,3574,5943,5943,5943,42,3172,3179,3178,0,3567,3574,3573,5944,5944,5944,42,3170,3175,3180,0,3565,3570,3575,5945,5945,5945,42,3170,3180,3179,0,3565,3575,3574,5946,5946,5946,42,3175,3113,3114,0,3570,3506,3507,5947,5947,5947,42,3175,3114,3180,0,3570,3507,3575,5948,5948,5948,42,3159,3182,3181,0,3554,3577,3576,5949,5949,5949,42,3159,3181,3158,0,3554,3576,3553,5950,5950,5950,42,6714,3183,3168,0,289,3578,3563,5951,5951,5951,42,6714,3168,6698,0,289,3563,285,5952,5952,5952,42,6716,3184,3183,0,290,3579,3578,5953,5953,5953,42,6716,3183,6714,0,290,3578,289,5954,5954,5954,42,3162,3185,3182,0,3557,3580,3577,5955,5955,5955,42,3162,3182,3159,0,3557,3577,3554,5956,5956,5956,42,3185,3162,3164,0,3580,3557,3559,5957,5957,5957,42,3185,3164,3186,0,3580,3559,3581,5958,5958,5958,42,3181,3105,3053,0,3576,3499,3447,5959,5959,5959,42,3181,3053,3158,0,3576,3447,3553,5960,5960,5960,42,3188,3187,6720,0,3583,3582,291,5961,5961,5961,42,3188,6720,3189,0,3583,291,292,5962,5962,5962,42,6720,3187,3184,0,291,3582,3579,5963,5963,5963,42,6720,3184,6716,0,291,3579,290,5964,5964,5964,42,3186,3164,3168,0,3581,3559,3563,5965,5965,5965,42,3186,3168,3183,0,3581,3563,3578,5966,5966,5966,42,3191,3190,3183,0,3585,3584,3578,5967,5967,5967,42,3191,3183,3184,0,3585,3578,3579,5968,5968,5968,42,3190,3192,3186,0,3584,3586,3581,5969,5969,5969,42,3190,3186,3183,0,3584,3581,3578,5970,5970,5970,42,3194,3193,3181,0,3588,3587,3576,5971,5971,5971,42,3194,3181,3182,0,3588,3576,3577,5972,5972,5972,42,3110,3196,3195,0,3503,3590,3589,5973,5973,5973,42,3110,3195,3188,0,3503,3589,3583,5974,5974,5974,42,3197,3196,3110,0,3591,3590,3503,5975,5975,5975,42,3197,3110,3105,0,3591,3503,3499,5976,5976,5976,42,3193,3197,3105,0,3587,3591,3499,5977,5977,5977,42,3193,3105,3181,0,3587,3499,3576,5978,5978,5978,42,3198,3185,3186,0,3592,3580,3581,5979,5979,5979,42,3198,3186,3192,0,3592,3581,3586,5980,5980,5980,42,3194,3182,3185,0,3588,3577,3580,5981,5981,5981,42,3194,3185,3198,0,3588,3580,3592,5982,5982,5982,42,3199,3187,3188,0,3593,3582,3583,5983,5983,5983,42,3199,3188,3195,0,3593,3583,3589,5984,5984,5984,42,3191,3184,3187,0,3585,3579,3582,5985,5985,5985,42,3191,3187,3199,0,3585,3582,3593,5986,5986,5986,42,3188,3189,241,0,3583,292,282,5987,5987,5987,42,3188,241,3110,0,3583,282,3503,5988,5988,5988,42,3200,3199,3195,0,3594,3593,3589,5989,5989,5989,42,3200,3195,3201,0,3594,3589,3595,5990,5990,5990,42,3202,3191,3199,0,3596,3585,3593,5991,5991,5991,42,3202,3199,3200,0,3596,3593,3594,5992,5992,5992,42,3190,3191,3202,0,3584,3585,3596,5993,5993,5993,42,3190,3202,3203,0,3584,3596,3597,5994,5994,5994,42,3192,3190,3203,0,3586,3584,3597,5995,5995,5995,42,3192,3203,3204,0,3586,3597,3598,5996,5996,5996,42,3205,3198,3192,0,3599,3592,3586,5997,5997,5997,42,3205,3192,3204,0,3599,3586,3598,5998,5998,5998,42,3206,3194,3198,0,3600,3588,3592,5999,5999,5999,42,3206,3198,3205,0,3600,3592,3599,6000,6000,6000,42,3207,3193,3194,0,3601,3587,3588,6001,6001,6001,42,3207,3194,3206,0,3601,3588,3600,6002,6002,6002,42,3197,3193,3207,0,3591,3587,3601,6003,6003,6003,42,3197,3207,3208,0,3591,3601,3602,6004,6004,6004,42,3197,3208,3209,0,3591,3602,3603,6005,6005,6005,42,3197,3209,3196,0,3591,3603,3590,6006,6006,6006,42,3201,3195,3196,0,3595,3589,3590,6007,6007,6007,42,3201,3196,3209,0,3595,3590,3603,6008,6008,6008,42,3212,3211,3210,0,3606,3605,3604,6009,6009,6009,42,3212,3210,3213,0,3606,3604,3607,6010,6010,6010,42,3215,3214,3211,0,3609,3608,3605,6011,6011,6011,42,3215,3211,3212,0,3609,3605,3606,6012,6012,6012,42,3218,3217,3216,0,3612,3611,3610,6013,6013,6013,42,3218,3216,3219,0,3612,3610,3613,6014,6014,6014,42,3220,269,6753,0,3614,294,293,6015,6015,6015,42,3220,6753,3221,0,3614,293,3615,6016,6016,6016,42,3224,3223,3222,0,3618,3617,3616,6017,6017,6017,42,3224,3222,3225,0,3618,3616,3619,6018,6018,6018,42,3226,3041,3217,0,3620,3435,3611,6019,6019,6019,42,3226,3217,3218,0,3620,3611,3612,6020,6020,6020,42,3025,3212,3213,0,3421,3606,3607,6021,6021,6021,42,3025,3213,3024,0,3421,3607,3420,6022,6022,6022,42,3212,3025,3032,0,3606,3421,3427,6023,6023,6023,42,3212,3032,3215,0,3606,3427,3609,6024,6024,6024,42,3032,3031,3227,0,3427,3426,3621,6025,6025,6025,42,3032,3227,3215,0,3427,3621,3609,6026,6026,6026,42,3214,3215,3227,0,3608,3609,3621,6027,6027,6027,42,3214,3227,3228,0,3608,3621,3622,6028,6028,6028,42,3229,6764,269,0,3623,295,294,6029,6029,6029,42,3229,269,3220,0,3623,294,3614,6030,6030,6030,42,3232,3231,3230,0,3626,3625,3624,6031,6031,6031,42,3232,3230,3225,0,3626,3624,3619,6032,6032,6032,42,3225,3230,3233,0,3619,3624,3627,6033,6033,6033,42,3225,3233,3224,0,3619,3627,3618,6034,6034,6034,42,3230,3235,3234,0,3624,3629,3628,6035,6035,6035,42,3230,3234,3233,0,3624,3628,3627,6036,6036,6036,42,3225,3222,3236,0,3619,3616,3630,6037,6037,6037,42,3225,3236,3232,0,3619,3630,3626,6038,6038,6038,42,3239,3238,3237,0,3633,3632,3631,6039,6039,6039,42,3239,3237,3240,0,3633,3631,3634,6040,6040,6040,42,3231,3240,3235,0,3625,3634,3629,6041,6041,6041,42,3231,3235,3230,0,3625,3629,3624,6042,6042,6042,42,3223,3242,3241,0,3617,3636,3635,6043,6043,6043,42,3223,3241,3222,0,3617,3635,3616,6044,6044,6044,42,3242,3226,3218,0,3636,3620,3612,6045,6045,6045,42,3242,3218,3241,0,3636,3612,3635,6046,6046,6046,42,3222,3241,3243,0,3616,3635,3637,6047,6047,6047,42,3222,3243,3236,0,3616,3637,3630,6048,6048,6048,42,3241,3218,3219,0,3635,3612,3613,6049,6049,6049,42,3241,3219,3243,0,3635,3613,3637,6050,6050,6050,42,3244,3030,3029,0,3638,3425,3424,6051,6051,6051,42,3244,3029,3229,0,3638,3424,3623,6052,6052,6052,42,3244,3227,3031,0,3638,3621,3426,6053,6053,6053,42,3244,3031,3030,0,3638,3426,3425,6054,6054,6054,42,3245,3228,3227,0,3639,3622,3621,6055,6055,6055,42,3245,3227,3244,0,3639,3621,3638,6056,6056,6056,42,3246,3228,3245,0,3640,3622,3639,6057,6057,6057,42,3246,3245,3247,0,3640,3639,3641,6058,6058,6058,42,3248,3214,3228,0,3642,3608,3622,6059,6059,6059,42,3248,3228,3246,0,3642,3622,3640,6060,6060,6060,42,3249,3211,3214,0,3643,3605,3608,6061,6061,6061,42,3249,3214,3248,0,3643,3608,3642,6062,6062,6062,42,3250,3210,3211,0,3644,3604,3605,6063,6063,6063,42,3250,3211,3249,0,3644,3605,3643,6064,6064,6064,42,3219,3216,3251,0,3613,3610,3645,6065,6065,6065,42,3219,3251,3252,0,3613,3645,3646,6066,6066,6066,42,3243,3219,3252,0,3637,3613,3646,6067,6067,6067,42,3243,3252,3253,0,3637,3646,3647,6068,6068,6068,42,3236,3243,3253,0,3630,3637,3647,6069,6069,6069,42,3236,3253,3254,0,3630,3647,3648,6070,6070,6070,42,3232,3236,3254,0,3626,3630,3648,6071,6071,6071,42,3232,3254,3255,0,3626,3648,3649,6072,6072,6072,42,3231,3232,3255,0,3625,3626,3649,6073,6073,6073,42,3231,3255,3256,0,3625,3649,3650,6074,6074,6074,42,3240,3231,3256,0,3634,3625,3650,6075,6075,6075,42,3240,3256,3239,0,3634,3650,3633,6076,6076,6076,42,3257,3247,3245,0,3651,3641,3639,6077,6077,6077,42,3257,3245,3258,0,3651,3639,3652,6078,6078,6078,42,3259,3040,3041,0,3653,3434,3435,6079,6079,6079,42,3259,3041,3226,0,3653,3435,3620,6080,6080,6080,42,3127,3042,3040,0,3520,3436,3434,6081,6081,6081,42,3127,3040,3259,0,3520,3434,3653,6082,6082,6082,42,3260,3259,3226,0,3654,3653,3620,6083,6083,6083,42,3260,3226,3242,0,3654,3620,3636,6084,6084,6084,42,3133,3127,3259,0,3526,3520,3653,6085,6085,6085,42,3133,3259,3260,0,3526,3653,3654,6086,6086,6086,42,3261,3260,3242,0,3655,3654,3636,6087,6087,6087,42,3261,3242,3223,0,3655,3636,3617,6088,6088,6088,42,3261,3089,3133,0,3655,3483,3526,6089,6089,6089,42,3261,3133,3260,0,3655,3526,3654,6090,6090,6090,42,3262,3261,3223,0,3656,3655,3617,6091,6091,6091,42,3262,3223,3224,0,3656,3617,3618,6092,6092,6092,42,3088,3089,3261,0,3482,3483,3655,6093,6093,6093,42,3088,3261,3262,0,3482,3655,3656,6094,6094,6094,42,3233,3234,3263,0,3627,3628,3657,6095,6095,6095,42,3233,3263,3264,0,3627,3657,3658,6096,6096,6096,42,3267,3266,3265,0,3661,3660,3659,6097,6097,6097,42,3267,3265,3268,0,3661,3659,3662,6098,6098,6098,42,6806,3270,3269,0,296,297,3663,6099,6099,6099,42,6806,3269,3271,0,296,3663,3664,6100,6100,6100,42,3024,3213,3272,0,3420,3607,3665,6101,6101,6101,42,3024,3272,3034,0,3420,3665,3429,6102,6102,6102,42,3213,3210,3273,0,3607,3604,3666,6103,6103,6103,42,3213,3273,3272,0,3607,3666,3665,6104,6104,6104,42,3210,3250,3274,0,3604,3644,3667,6105,6105,6105,42,3210,3274,3273,0,3604,3667,3666,6106,6106,6106,42,3029,3035,6764,0,3424,274,295,6107,6107,6107,42,3029,6764,3229,0,3424,295,3623,6108,6108,6108,42,3265,3276,3275,0,3659,3669,3668,6109,6109,6109,42,3265,3275,3268,0,3659,3668,3662,6110,6110,6110,42,3276,3278,3277,0,3669,3671,3670,6111,6111,6111,42,3276,3277,3275,0,3669,3670,3668,6112,6112,6112,42,3278,3280,3279,0,3671,3673,3672,6113,6113,6113,42,3278,3279,3277,0,3671,3672,3670,6114,6114,6114,42,3235,3282,3281,0,3629,3675,3674,6115,6115,6115,42,3235,3281,3234,0,3629,3674,3628,6116,6116,6116,42,3282,3235,3240,0,3675,3629,3634,6117,6117,6117,42,3282,3240,3237,0,3675,3634,3631,6118,6118,6118,42,3258,3245,3244,0,3652,3639,3638,6119,6119,6119,42,3258,3244,3229,0,3652,3638,3623,6120,6120,6120,42,3258,3284,3283,0,3652,3677,3676,6121,6121,6121,42,3258,3283,3257,0,3652,3676,3651,6122,6122,6122,42,3283,3284,3285,0,3676,3677,3678,6123,6123,6123,42,3283,3285,3279,0,3676,3678,3672,6124,6124,6124,42,3287,3286,3268,0,3680,3679,3662,6125,6125,6125,42,3287,3268,3275,0,3680,3662,3668,6126,6126,6126,42,3268,3286,3288,0,3662,3679,3681,6127,6127,6127,42,3268,3288,3267,0,3662,3681,3661,6128,6128,6128,42,3285,3289,3277,0,3678,3682,3670,6129,6129,6129,42,3285,3277,3279,0,3678,3670,3672,6130,6130,6130,42,3289,3287,3275,0,3682,3680,3668,6131,6131,6131,42,3289,3275,3277,0,3682,3668,3670,6132,6132,6132,42,3221,3285,3284,0,3615,3678,3677,6133,6133,6133,42,3221,3284,3220,0,3615,3677,3614,6134,6134,6134,42,6825,3290,3221,0,298,3683,3615,6135,6135,6135,42,6825,3221,6753,0,298,3615,293,6136,6136,6136,42,3290,3289,3285,0,3683,3682,3678,6137,6137,6137,42,3290,3285,3221,0,3683,3678,3615,6138,6138,6138,42,6827,3291,3290,0,299,3684,3683,6139,6139,6139,42,6827,3290,6825,0,299,3683,298,6140,6140,6140,42,3287,3289,3290,0,3680,3682,3683,6141,6141,6141,42,3287,3290,3291,0,3680,3683,3684,6142,6142,6142,42,6806,3271,3291,0,296,3664,3684,6143,6143,6143,42,6806,3291,6827,0,296,3684,299,6144,6144,6144,42,3286,3287,3291,0,3679,3680,3684,6145,6145,6145,42,3286,3291,3271,0,3679,3684,3664,6146,6146,6146,42,3288,3286,3271,0,3681,3679,3664,6147,6147,6147,42,3288,3271,3269,0,3681,3664,3663,6148,6148,6148,42,3220,3284,3258,0,3614,3677,3652,6149,6149,6149,42,3220,3258,3229,0,3614,3652,3623,6150,6150,6150,42,3281,3293,3292,0,3674,3686,3685,6151,6151,6151,42,3281,3292,3294,0,3674,3685,3687,6152,6152,6152,42,3293,3265,3266,0,3686,3659,3660,6153,6153,6153,42,3293,3266,3292,0,3686,3660,3685,6154,6154,6154,42,3282,3295,3293,0,3675,3688,3686,6155,6155,6155,42,3282,3293,3281,0,3675,3686,3674,6156,6156,6156,42,3295,3276,3265,0,3688,3669,3659,6157,6157,6157,42,3295,3265,3293,0,3688,3659,3686,6158,6158,6158,42,3237,3296,3295,0,3631,3689,3688,6159,6159,6159,42,3237,3295,3282,0,3631,3688,3675,6160,6160,6160,42,3296,3278,3276,0,3689,3671,3669,6161,6161,6161,42,3296,3276,3295,0,3689,3669,3688,6162,6162,6162,42,3238,3297,3296,0,3632,3690,3689,6163,6163,6163,42,3238,3296,3237,0,3632,3689,3631,6164,6164,6164,42,3278,3296,3297,0,3671,3689,3690,6165,6165,6165,42,3278,3297,3280,0,3671,3690,3673,6166,6166,6166,42,3266,3267,3179,0,3660,3661,3574,6167,6167,6167,42,3266,3179,3180,0,3660,3574,3575,6168,6168,6168,42,3267,3288,3178,0,3661,3681,3573,6169,6169,6169,42,3267,3178,3179,0,3661,3573,3574,6170,6170,6170,42,6707,3177,3269,0,288,3572,3663,6171,6171,6171,42,6707,3269,3270,0,288,3663,297,6172,6172,6172,42,3178,3288,3269,0,3573,3681,3663,6173,6173,6173,42,3178,3269,3177,0,3573,3663,3572,6174,6174,6174,42,3294,3292,3114,0,3687,3685,3507,6175,6175,6175,42,3294,3114,3111,0,3687,3507,3504,6176,6176,6176,42,3292,3266,3180,0,3685,3660,3575,6177,6177,6177,42,3292,3180,3114,0,3685,3575,3507,6178,6178,6178,42,3298,3038,3034,0,3691,3432,3429,6179,6179,6179,42,3298,3034,3272,0,3691,3429,3665,6180,6180,6180,42,3298,3299,3039,0,3691,3692,3433,6181,6181,6181,42,3298,3039,3038,0,3691,3433,3432,6182,6182,6182,42,3300,3298,3272,0,3693,3691,3665,6183,6183,6183,42,3300,3272,3273,0,3693,3665,3666,6184,6184,6184,42,3301,3299,3298,0,3694,3692,3691,6185,6185,6185,42,3301,3298,3300,0,3694,3691,3693,6186,6186,6186,42,3302,3300,3273,0,3695,3693,3666,6187,6187,6187,42,3302,3273,3274,0,3695,3666,3667,6188,6188,6188,42,3303,3301,3300,0,3696,3694,3693,6189,6189,6189,42,3303,3300,3302,0,3696,3693,3695,6190,6190,6190,42,3216,3301,3303,0,3610,3694,3696,6191,6191,6191,42,3216,3303,3251,0,3610,3696,3645,6192,6192,6192,42,3217,3299,3301,0,3611,3692,3694,6193,6193,6193,42,3217,3301,3216,0,3611,3694,3610,6194,6194,6194,42,3041,3039,3299,0,3435,3433,3692,6195,6195,6195,42,3041,3299,3217,0,3435,3692,3611,6196,6196,6196,42,3306,3305,3304,0,3699,3698,3697,6197,6197,6197,42,3306,3304,3307,0,3699,3697,3700,6198,6198,6198,42,3308,3306,3307,0,3701,3699,3700,6199,6199,6199,42,3308,3307,3309,0,3701,3700,3702,6200,6200,6200,42,3310,3308,3309,0,3703,3701,3702,6201,6201,6201,42,3310,3309,3311,0,3703,3702,3704,6202,6202,6202,42,3312,3310,3311,0,3705,3703,3704,6203,6203,6203,42,3312,3311,3313,0,3705,3704,3706,6204,6204,6204,42,3312,3313,3314,0,3705,3706,3707,6205,6205,6205,42,3312,3314,3315,0,3705,3707,3708,6206,6206,6206,42,3317,3316,3315,0,3710,3709,3708,6207,6207,6207,42,3317,3315,3314,0,3710,3708,3707,6208,6208,6208,42,3318,3316,3317,0,3711,3709,3710,6209,6209,6209,42,3318,3317,3319,0,3711,3710,3712,6210,6210,6210,42,3320,3318,3319,0,3713,3711,3712,6211,6211,6211,42,3320,3319,3321,0,3713,3712,3714,6212,6212,6212,42,3323,3322,3320,0,3716,3715,3713,6213,6213,6213,42,3323,3320,3321,0,3716,3713,3714,6214,6214,6214,42,3322,3323,3324,0,3715,3716,3717,6215,6215,6215,42,3322,3324,3325,0,3715,3717,3718,6216,6216,6216,42,3328,3327,3326,0,3721,3720,3719,6217,6217,6217,42,3328,3326,3329,0,3721,3719,3722,6218,6218,6218,42,3331,3330,3327,0,3724,3723,3720,6219,6219,6219,42,3331,3327,3328,0,3724,3720,3721,6220,6220,6220,42,3333,3332,3330,0,3726,3725,3723,6221,6221,6221,42,3333,3330,3331,0,3726,3723,3724,6222,6222,6222,42,3335,3334,3332,0,3728,3727,3725,6223,6223,6223,42,3335,3332,3333,0,3728,3725,3726,6224,6224,6224,42,3336,3334,3335,0,3729,3727,3728,6225,6225,6225,42,3336,3335,3337,0,3729,3728,3730,6226,6226,6226,42,3340,3339,3338,0,3733,3732,3731,6227,6227,6227,42,3340,3338,3341,0,3733,3731,3734,6228,6228,6228,42,3342,3340,3341,0,3735,3733,3734,6229,6229,6229,42,3342,3341,3343,0,3735,3734,3736,6230,6230,6230,42,3344,3342,3343,0,3737,3735,3736,6231,6231,6231,42,3344,3343,3345,0,3737,3736,3738,6232,6232,6232,42,3305,3344,3345,0,3698,3737,3738,6233,6233,6233,42,3305,3345,3304,0,3698,3738,3697,6234,6234,6234,42,3339,3336,3337,0,3732,3729,3730,6235,6235,6235,42,3339,3337,3338,0,3732,3730,3731,6236,6236,6236,42,3256,3255,3305,0,3650,3649,3698,6237,6237,6237,42,3256,3305,3306,0,3650,3698,3699,6238,6238,6238,42,3239,3256,3306,0,3633,3650,3699,6239,6239,6239,42,3239,3306,3308,0,3633,3699,3701,6240,6240,6240,42,3238,3239,3308,0,3632,3633,3701,6241,6241,6241,42,3238,3308,3310,0,3632,3701,3703,6242,6242,6242,42,3297,3238,3310,0,3690,3632,3703,6243,6243,6243,42,3297,3310,3312,0,3690,3703,3705,6244,6244,6244,42,3315,3280,3297,0,3708,3673,3690,6245,6245,6245,42,3315,3297,3312,0,3708,3690,3705,6246,6246,6246,42,3316,3279,3280,0,3709,3672,3673,6247,6247,6247,42,3316,3280,3315,0,3709,3673,3708,6248,6248,6248,42,3283,3279,3316,0,3676,3672,3709,6249,6249,6249,42,3283,3316,3318,0,3676,3709,3711,6250,6250,6250,42,3257,3283,3318,0,3651,3676,3711,6251,6251,6251,42,3257,3318,3320,0,3651,3711,3713,6252,6252,6252,42,3247,3257,3320,0,3641,3651,3713,6253,6253,6253,42,3247,3320,3322,0,3641,3713,3715,6254,6254,6254,42,3247,3322,3325,0,3641,3715,3718,6255,6255,6255,42,3247,3325,3246,0,3641,3718,3640,6256,6256,6256,42,3246,3325,3326,0,3640,3718,3719,6257,6257,6257,42,3246,3326,3248,0,3640,3719,3642,6258,6258,6258,42,3327,3249,3248,0,3720,3643,3642,6259,6259,6259,42,3327,3248,3326,0,3720,3642,3719,6260,6260,6260,42,3330,3250,3249,0,3723,3644,3643,6261,6261,6261,42,3330,3249,3327,0,3723,3643,3720,6262,6262,6262,42,3332,3274,3250,0,3725,3667,3644,6263,6263,6263,42,3332,3250,3330,0,3725,3644,3723,6264,6264,6264,42,3334,3302,3274,0,3727,3695,3667,6265,6265,6265,42,3334,3274,3332,0,3727,3667,3725,6266,6266,6266,42,3336,3303,3302,0,3729,3696,3695,6267,6267,6267,42,3336,3302,3334,0,3729,3695,3727,6268,6268,6268,42,3252,3251,3339,0,3646,3645,3732,6269,6269,6269,42,3252,3339,3340,0,3646,3732,3733,6270,6270,6270,42,3253,3252,3340,0,3647,3646,3733,6271,6271,6271,42,3253,3340,3342,0,3647,3733,3735,6272,6272,6272,42,3254,3253,3342,0,3648,3647,3735,6273,6273,6273,42,3254,3342,3344,0,3648,3735,3737,6274,6274,6274,42,3255,3254,3344,0,3649,3648,3737,6275,6275,6275,42,3255,3344,3305,0,3649,3737,3698,6276,6276,6276,42,3251,3303,3336,0,3645,3696,3729,6277,6277,6277,42,3251,3336,3339,0,3645,3729,3732,6278,6278,6278,42,3347,3346,3341,0,3740,3739,3734,6279,6279,6279,42,3347,3341,3338,0,3740,3734,3731,6280,6280,6280,42,3348,3331,3328,0,3741,3724,3721,6281,6281,6281,42,3348,3328,3349,0,3741,3721,3742,6282,6282,6282,42,3349,3328,3329,0,3742,3721,3722,6283,6283,6283,42,3349,3329,3350,0,3742,3722,3743,6284,6284,6284,42,3352,3351,3323,0,3745,3744,3716,6285,6285,6285,42,3352,3323,3321,0,3745,3716,3714,6286,6286,6286,42,3353,3352,3321,0,3746,3745,3714,6287,6287,6287,42,3353,3321,3319,0,3746,3714,3712,6288,6288,6288,42,3354,3353,3319,0,3747,3746,3712,6289,6289,6289,42,3354,3319,3317,0,3747,3712,3710,6290,6290,6290,42,3354,3317,3314,0,3747,3710,3707,6291,6291,6291,42,3354,3314,3355,0,3747,3707,3748,6292,6292,6292,42,3356,3311,3309,0,3749,3704,3702,6293,6293,6293,42,3356,3309,3357,0,3749,3702,3750,6294,6294,6294,42,3358,3357,3309,0,3751,3750,3702,6295,6295,6295,42,3358,3309,3307,0,3751,3702,3700,6296,6296,6296,42,3359,3354,3355,0,3752,3747,3748,6297,6297,6297,42,3359,3355,3360,0,3752,3748,3753,6298,6298,6298,42,3359,3361,3353,0,3752,3754,3746,6299,6299,6299,42,3359,3353,3354,0,3752,3746,3747,6300,6300,6300,42,3324,3362,3350,0,3717,3755,3743,6301,6301,6301,42,3324,3350,3329,0,3717,3743,3722,6302,6302,6302,42,3363,3358,3307,0,3756,3751,3700,6303,6303,6303,42,3363,3307,3304,0,3756,3700,3697,6304,6304,6304,42,3364,3363,3304,0,3757,3756,3697,6305,6305,6305,42,3364,3304,3345,0,3757,3697,3738,6306,6306,6306,42,3365,3347,3338,0,3758,3740,3731,6307,6307,6307,42,3365,3338,3337,0,3758,3731,3730,6308,6308,6308,42,3366,3351,3352,0,3759,3744,3745,6309,6309,6309,42,3366,3352,3367,0,3759,3745,3760,6310,6310,6310,42,3350,3362,3368,0,3743,3755,3761,6311,6311,6311,42,3350,3368,3369,0,3743,3761,3762,6312,6312,6312,42,3369,3370,3349,0,3762,3763,3742,6313,6313,6313,42,3369,3349,3350,0,3762,3742,3743,6314,6314,6314,42,3370,3371,3348,0,3763,3764,3741,6315,6315,6315,42,3370,3348,3349,0,3763,3741,3742,6316,6316,6316,42,3373,3372,3347,0,3766,3765,3740,6317,6317,6317,42,3373,3347,3365,0,3766,3740,3758,6318,6318,6318,42,3372,3374,3346,0,3765,3767,3739,6319,6319,6319,42,3372,3346,3347,0,3765,3739,3740,6320,6320,6320,42,3364,3376,3375,0,3757,3769,3768,6321,6321,6321,42,3364,3375,3363,0,3757,3768,3756,6322,6322,6322,42,3375,3377,3358,0,3768,3770,3751,6323,6323,6323,42,3375,3358,3363,0,3768,3751,3756,6324,6324,6324,42,3377,3378,3357,0,3770,3771,3750,6325,6325,6325,42,3377,3357,3358,0,3770,3750,3751,6326,6326,6326,42,3379,3356,3357,0,3772,3749,3750,6327,6327,6327,42,3379,3357,3378,0,3772,3750,3771,6328,6328,6328,42,3345,3343,3380,0,3738,3736,3773,6329,6329,6329,42,3345,3380,3364,0,3738,3773,3757,6330,6330,6330,42,3343,3341,3346,0,3736,3734,3739,6331,6331,6331,42,3343,3346,3380,0,3736,3739,3773,6332,6332,6332,42,3380,3381,3376,0,3773,3774,3769,6333,6333,6333,42,3380,3376,3364,0,3773,3769,3757,6334,6334,6334,42,3346,3374,3381,0,3739,3767,3774,6335,6335,6335,42,3346,3381,3380,0,3739,3774,3773,6336,6336,6336,42,3331,3348,3382,0,3724,3741,3775,6337,6337,6337,42,3331,3382,3333,0,3724,3775,3726,6338,6338,6338,42,3348,3371,3383,0,3741,3764,3776,6339,6339,6339,42,3348,3383,3382,0,3741,3776,3775,6340,6340,6340,42,3384,3313,3311,0,3777,3706,3704,6341,6341,6341,42,3384,3311,3356,0,3777,3704,3749,6342,6342,6342,42,3355,3314,3313,0,3748,3707,3706,6343,6343,6343,42,3355,3313,3384,0,3748,3706,3777,6344,6344,6344,42,3360,3355,3384,0,3753,3748,3777,6345,6345,6345,42,3360,3384,3385,0,3753,3777,3778,6346,6346,6346,42,3386,3335,3333,0,3779,3728,3726,6347,6347,6347,42,3386,3333,3382,0,3779,3726,3775,6348,6348,6348,42,3386,3365,3337,0,3779,3758,3730,6349,6349,6349,42,3386,3337,3335,0,3779,3730,3728,6350,6350,6350,42,3387,3386,3382,0,3780,3779,3775,6351,6351,6351,42,3387,3382,3383,0,3780,3775,3776,6352,6352,6352,42,3387,3373,3365,0,3780,3766,3758,6353,6353,6353,42,3387,3365,3386,0,3780,3758,3779,6354,6354,6354,42,3361,3367,3352,0,3754,3760,3745,6355,6355,6355,42,3361,3352,3353,0,3754,3745,3746,6356,6356,6356,42,3385,3384,3356,0,3778,3777,3749,6357,6357,6357,42,3385,3356,3379,0,3778,3749,3772,6358,6358,6358,42,3385,3361,3359,0,3778,3754,3752,6359,6359,6359,42,3385,3359,3360,0,3778,3752,3753,6360,6360,6360,42,3388,3378,3377,0,3781,3771,3770,6361,6361,6361,42,3388,3377,3389,0,3781,3770,3782,6362,6362,6362,42,3379,3367,3361,0,3772,3760,3754,6363,6363,6363,42,3379,3361,3385,0,3772,3754,3778,6364,6364,6364,42,3368,3366,3390,0,3761,3759,3783,6365,6365,6365,42,3368,3390,3391,0,3761,3783,3784,6366,6366,6366,42,3369,3368,3391,0,3762,3761,3784,6367,6367,6367,42,3369,3391,3392,0,3762,3784,3785,6368,6368,6368,42,3392,3393,3370,0,3785,3786,3763,6369,6369,6369,42,3392,3370,3369,0,3785,3763,3762,6370,6370,6370,42,3393,3394,3371,0,3786,3787,3764,6371,6371,6371,42,3393,3371,3370,0,3786,3764,3763,6372,6372,6372,42,3394,3395,3383,0,3787,3788,3776,6373,6373,6373,42,3394,3383,3371,0,3787,3776,3764,6374,6374,6374,42,3395,3396,3387,0,3788,3789,3780,6375,6375,6375,42,3395,3387,3383,0,3788,3780,3776,6376,6376,6376,42,3387,3396,3397,0,3780,3789,3790,6377,6377,6377,42,3387,3397,3373,0,3780,3790,3766,6378,6378,6378,42,3397,3398,3372,0,3790,3791,3765,6379,6379,6379,42,3397,3372,3373,0,3790,3765,3766,6380,6380,6380,42,3372,3398,3399,0,3765,3791,3792,6381,6381,6381,42,3372,3399,3374,0,3765,3792,3767,6382,6382,6382,42,3374,3399,3400,0,3767,3792,3793,6383,6383,6383,42,3374,3400,3381,0,3767,3793,3774,6384,6384,6384,42,3381,3400,3401,0,3774,3793,3794,6385,6385,6385,42,3381,3401,3376,0,3774,3794,3769,6386,6386,6386,42,3376,3401,3402,0,3769,3794,3795,6387,6387,6387,42,3376,3402,3375,0,3769,3795,3768,6388,6388,6388,42,3389,3377,3375,0,3782,3770,3768,6389,6389,6389,42,3389,3375,3402,0,3782,3768,3795,6390,6390,6390,42,3403,3390,3388,0,3796,3783,3781,6391,6391,6391,42,3403,3388,3404,0,3796,3781,3797,6392,6392,6392,42,3403,3405,3391,0,3796,3798,3784,6393,6393,6393,42,3403,3391,3390,0,3796,3784,3783,6394,6394,6394,42,3406,3392,3391,0,3799,3785,3784,6395,6395,6395,42,3406,3391,3405,0,3799,3784,3798,6396,6396,6396,42,3392,3406,3407,0,3785,3799,3800,6397,6397,6397,42,3392,3407,3393,0,3785,3800,3786,6398,6398,6398,42,3393,3407,3408,0,3786,3800,3801,6399,6399,6399,42,3393,3408,3394,0,3786,3801,3787,6400,6400,6400,42,3394,3408,3409,0,3787,3801,3802,6401,6401,6401,42,3394,3409,3395,0,3787,3802,3788,6402,6402,6402,42,3395,3409,3410,0,3788,3802,3803,6403,6403,6403,42,3395,3410,3396,0,3788,3803,3789,6404,6404,6404,42,3410,3411,3397,0,3803,3804,3790,6405,6405,6405,42,3410,3397,3396,0,3803,3790,3789,6406,6406,6406,42,3411,3412,3398,0,3804,3805,3791,6407,6407,6407,42,3411,3398,3397,0,3804,3791,3790,6408,6408,6408,42,3398,3412,3413,0,3791,3805,3806,6409,6409,6409,42,3398,3413,3399,0,3791,3806,3792,6410,6410,6410,42,3399,3413,3414,0,3792,3806,3807,6411,6411,6411,42,3399,3414,3400,0,3792,3807,3793,6412,6412,6412,42,3400,3414,3415,0,3793,3807,3808,6413,6413,6413,42,3400,3415,3401,0,3793,3808,3794,6414,6414,6414,42,3401,3415,3416,0,3794,3808,3809,6415,6415,6415,42,3401,3416,3402,0,3794,3809,3795,6416,6416,6416,42,3404,3389,3402,0,3797,3782,3795,6417,6417,6417,42,3404,3402,3416,0,3797,3795,3809,6418,6418,6418,42,3389,3404,3388,0,3782,3797,3781,6419,6419,6419,42,3404,3416,3405,0,3797,3809,3798,6420,6420,6420,42,3404,3405,3403,0,3797,3798,3796,6421,6421,6421,42,3415,3406,3405,0,3808,3799,3798,6422,6422,6422,42,3415,3405,3416,0,3808,3798,3809,6423,6423,6423,42,3414,3407,3406,0,3807,3800,3799,6424,6424,6424,42,3414,3406,3415,0,3807,3799,3808,6425,6425,6425,42,3407,3414,3413,0,3800,3807,3806,6426,6426,6426,42,3407,3413,3408,0,3800,3806,3801,6427,6427,6427,42,3408,3413,3412,0,3801,3806,3805,6428,6428,6428,42,3408,3412,3409,0,3801,3805,3802,6429,6429,6429,42,3411,3410,3409,0,3804,3803,3802,6430,6430,6430,42,3411,3409,3412,0,3804,3802,3805,6431,6431,6431,42,3419,3418,3417,0,3812,3811,3810,6432,6432,6432,42,3419,3417,3420,0,3812,3810,3813,6433,6433,6433,42,3420,3417,3421,0,3813,3810,3814,6434,6434,6434,42,3420,3421,3422,0,3813,3814,3815,6435,6435,6435,42,3420,3424,3423,0,3813,3817,3816,6436,6436,6436,42,3420,3423,3419,0,3813,3816,3812,6437,6437,6437,42,3422,3425,3424,0,3815,3818,3817,6438,6438,6438,42,3422,3424,3420,0,3815,3817,3813,6439,6439,6439,42,3422,3421,3426,0,3815,3814,3819,6440,6440,6440,42,3422,3426,3427,0,3815,3819,3820,6441,6441,6441,42,3425,3422,3427,0,3818,3815,3820,6442,6442,6442,42,3425,3427,3428,0,3818,3820,3821,6443,6443,6443,42,3431,3430,3429,0,3824,3823,3822,6444,6444,6444,42,3431,3429,3432,0,3824,3822,3825,6445,6445,6445,42,3434,3433,3430,0,3827,3826,3823,6446,6446,6446,42,3434,3430,3431,0,3827,3823,3824,6447,6447,6447,42,3436,3435,3432,0,3829,3828,3825,6448,6448,6448,42,3436,3432,3429,0,3829,3825,3822,6449,6449,6449,42,3424,3438,3437,0,3817,3831,3830,6450,6450,6450,42,3424,3437,3423,0,3817,3830,3816,6451,6451,6451,42,3425,3439,3438,0,3818,3832,3831,6452,6452,6452,42,3425,3438,3424,0,3818,3831,3817,6453,6453,6453,42,3428,3440,3439,0,3821,3833,3832,6454,6454,6454,42,3428,3439,3425,0,3821,3832,3818,6455,6455,6455,42,3442,3441,3440,0,3835,3834,3833,6456,6456,6456,42,3442,3440,3428,0,3835,3833,3821,6457,6457,6457,42,3427,3443,3442,0,3820,3836,3835,6458,6458,6458,42,3427,3442,3428,0,3820,3835,3821,6459,6459,6459,42,3444,3443,3427,0,3837,3836,3820,6460,6460,6460,42,3444,3427,3426,0,3837,3820,3819,6461,6461,6461,42,3446,3445,3435,0,3839,3838,3828,6462,6462,6462,42,3446,3435,3436,0,3839,3828,3829,6463,6463,6463,42,3449,3448,3447,0,3842,3841,3840,6464,6464,6464,42,3449,3447,3450,0,3842,3840,3843,6465,6465,6465,42,3451,3448,3449,0,3844,3841,3842,6466,6466,6466,42,3451,3449,3452,0,3844,3842,3845,6467,6467,6467,42,3453,3451,3452,0,3846,3844,3845,6468,6468,6468,42,3453,3452,3454,0,3846,3845,3847,6469,6469,6469,42,3455,3453,3454,0,3848,3846,3847,6470,6470,6470,42,3455,3454,3456,0,3848,3847,3849,6471,6471,6471,42,3459,3458,3457,0,3852,3851,3850,6472,6472,6472,42,3459,3457,3460,0,3852,3850,3853,6473,6473,6473,42,3461,2931,3460,0,3854,3319,3853,6474,6474,6474,42,3461,3460,3457,0,3854,3853,3850,6475,6475,6475,42,3463,3462,3456,0,3856,3855,3849,6476,6476,6476,42,3463,3456,3454,0,3856,3849,3847,6477,6477,6477,42,3464,3463,3454,0,3857,3856,3847,6478,6478,6478,42,3464,3454,3452,0,3857,3847,3845,6479,6479,6479,42,3464,3452,3449,0,3857,3845,3842,6480,6480,6480,42,3464,3449,3465,0,3857,3842,3858,6481,6481,6481,42,3450,3466,3465,0,3843,3859,3858,6482,6482,6482,42,3450,3465,3449,0,3843,3858,3842,6483,6483,6483,42,3467,2943,2940,0,3860,3337,3334,6484,6484,6484,42,3467,2940,3468,0,3860,3334,3861,6485,6485,6485,42,2939,3469,3468,0,3333,3862,3861,6486,6486,6486,42,2939,3468,2940,0,3333,3861,3334,6487,6487,6487,42,2936,3470,3469,0,3330,3863,3862,6488,6488,6488,42,2936,3469,2939,0,3330,3862,3333,6489,6489,6489,42,3471,3470,2936,0,3864,3863,3330,6490,6490,6490,42,3471,2936,2944,0,3864,3330,3338,6491,6491,6491,42,2944,2946,3472,0,3338,3340,3865,6492,6492,6492,42,2944,3472,3471,0,3338,3865,3864,6493,6493,6493,42,3438,3474,3473,0,3831,3867,3866,6494,6494,6494,42,3438,3473,3437,0,3831,3866,3830,6495,6495,6495,42,3439,3475,3474,0,3832,3868,3867,6496,6496,6496,42,3439,3474,3438,0,3832,3867,3831,6497,6497,6497,42,3440,3476,3475,0,3833,3869,3868,6498,6498,6498,42,3440,3475,3439,0,3833,3868,3832,6499,6499,6499,42,3441,3477,3476,0,3834,3870,3869,6500,6500,6500,42,3441,3476,3440,0,3834,3869,3833,6501,6501,6501,42,7016,3478,2950,0,3872,3871,3344,6502,6502,6502,42,7016,2950,7015,0,3872,3344,3873,6503,6503,6503,42,2946,2950,3478,0,3340,3344,3871,6504,6504,6504,42,2946,3478,3472,0,3340,3871,3865,6505,6505,6505,42,7018,3479,3441,0,3875,3874,3834,6506,6506,6506,42,7018,3441,3442,0,3875,3834,3835,6507,6507,6507,42,249,7020,3444,0,3877,3876,3837,6508,6508,6508,42,249,3444,3480,0,3877,3837,3878,6509,6509,6509,42,7021,249,3480,0,3879,3877,3878,6510,6510,6510,42,7021,3480,3445,0,3879,3878,3838,6511,6511,6511,42,3426,3481,3480,0,3819,3880,3878,6512,6512,6512,42,3426,3480,3444,0,3819,3878,3837,6513,6513,6513,42,3481,3435,3445,0,3880,3828,3838,6514,6514,6514,42,3481,3445,3480,0,3880,3838,3878,6515,6515,6515,42,3421,3482,3481,0,3814,3881,3880,6516,6516,6516,42,3421,3481,3426,0,3814,3880,3819,6517,6517,6517,42,3482,3432,3435,0,3881,3825,3828,6518,6518,6518,42,3482,3435,3481,0,3881,3828,3880,6519,6519,6519,42,3417,3483,3482,0,3810,3882,3881,6520,6520,6520,42,3417,3482,3421,0,3810,3881,3814,6521,6521,6521,42,3483,3431,3432,0,3882,3824,3825,6522,6522,6522,42,3483,3432,3482,0,3882,3825,3881,6523,6523,6523,42,3418,3484,3483,0,3811,3883,3882,6524,6524,6524,42,3418,3483,3417,0,3811,3882,3810,6525,6525,6525,42,3484,3434,3431,0,3883,3827,3824,6526,6526,6526,42,3484,3431,3483,0,3883,3824,3882,6527,6527,6527,42,3456,3486,3485,0,3849,3885,3884,6528,6528,6528,42,3456,3485,3455,0,3849,3884,3848,6529,6529,6529,42,3486,3457,3458,0,3885,3850,3851,6530,6530,6530,42,3486,3458,3485,0,3885,3851,3884,6531,6531,6531,42,3462,3487,3486,0,3855,3886,3885,6532,6532,6532,42,3462,3486,3456,0,3855,3885,3849,6533,6533,6533,42,3487,3461,3457,0,3886,3854,3850,6534,6534,6534,42,3487,3457,3486,0,3886,3850,3885,6535,6535,6535,42,2925,2926,2943,0,3312,3313,3337,6536,6536,6536,42,2925,2943,3467,0,3312,3337,3860,6537,6537,6537,42,3488,3460,2931,0,3887,3853,3319,6538,6538,6538,42,3488,2931,2932,0,3887,3319,3320,6539,6539,6539,42,2932,2925,3467,0,3320,3312,3860,6540,6540,6540,42,2932,3467,3488,0,3320,3860,3887,6541,6541,6541,42,3468,3489,3488,0,3861,3888,3887,6542,6542,6542,42,3468,3488,3467,0,3861,3887,3860,6543,6543,6543,42,3469,3490,3489,0,3862,3889,3888,6544,6544,6544,42,3469,3489,3468,0,3862,3888,3861,6545,6545,6545,42,3470,3491,3490,0,3863,3890,3889,6546,6546,6546,42,3470,3490,3469,0,3863,3889,3862,6547,6547,6547,42,3471,3492,3491,0,3864,3891,3890,6548,6548,6548,42,3471,3491,3470,0,3864,3890,3863,6549,6549,6549,42,3472,3493,3492,0,3865,3892,3891,6550,6550,6550,42,3472,3492,3471,0,3865,3891,3864,6551,6551,6551,42,3493,3472,3478,0,3892,3865,3871,6552,6552,6552,42,3493,3478,3494,0,3892,3871,3893,6553,6553,6553,42,3489,3459,3460,0,3888,3852,3853,6554,6554,6554,42,3489,3460,3488,0,3888,3853,3887,6555,6555,6555,42,7020,3495,3443,0,3876,3894,3836,6556,6556,6556,42,7020,3443,3444,0,3876,3836,3837,6557,6557,6557,42,3442,3443,3495,0,3835,3836,3894,6558,6558,6558,42,3442,3495,7018,0,3835,3894,3875,6559,6559,6559,42,2929,2933,3462,0,3317,3324,3855,6560,6560,6560,42,2929,3462,3463,0,3317,3855,3856,6561,6561,6561,42,3464,2928,2929,0,3857,3316,3317,6562,6562,6562,42,3464,2929,3463,0,3857,3317,3856,6563,6563,6563,42,3465,3496,2928,0,3858,3895,3316,6564,6564,6564,42,3465,2928,3464,0,3858,3316,3857,6565,6565,6565,42,3496,3465,3466,0,3895,3858,3859,6566,6566,6566,42,3496,3466,3497,0,3895,3859,3896,6567,6567,6567,42,2933,2934,3487,0,3324,3326,3886,6568,6568,6568,42,2933,3487,3462,0,3324,3886,3855,6569,6569,6569,42,3496,3497,3498,0,3895,3896,3897,6570,6570,6570,42,3496,3498,2846,0,3895,3897,3220,6571,6571,6571,42,2935,2930,2931,0,3329,3318,3319,6572,6572,6572,42,2935,2931,3461,0,3329,3319,3854,6573,6573,6573,42,2934,2935,3461,0,3326,3329,3854,6574,6574,6574,42,2934,3461,3487,0,3326,3854,3886,6575,6575,6575,42,3013,3012,3450,0,3409,3408,3843,6576,6576,6576,42,3013,3450,3447,0,3409,3843,3840,6577,6577,6577,42,3497,3010,3014,0,3896,3406,3410,6578,6578,6578,42,3497,3014,3498,0,3896,3410,3897,6579,6579,6579,42,3012,3011,3466,0,3408,3407,3859,6580,6580,6580,42,3012,3466,3450,0,3408,3859,3843,6581,6581,6581,42,3011,3010,3497,0,3407,3406,3896,6582,6582,6582,42,3011,3497,3466,0,3407,3896,3859,6583,6583,6583,42,3474,3500,3499,0,3867,3899,3898,6584,6584,6584,42,3474,3499,3473,0,3867,3898,3866,6585,6585,6585,42,3475,3501,3500,0,3868,3900,3899,6586,6586,6586,42,3475,3500,3474,0,3868,3899,3867,6587,6587,6587,42,3476,3502,3501,0,3869,3901,3900,6588,6588,6588,42,3476,3501,3475,0,3869,3900,3868,6589,6589,6589,42,3477,3503,3502,0,3870,3902,3901,6590,6590,6590,42,3477,3502,3476,0,3870,3901,3869,6591,6591,6591,42,7044,3503,3477,0,3903,3902,3870,6592,6592,6592,42,7044,3477,270,0,3903,3870,3904,6593,6593,6593,42,2953,2845,2846,0,3347,3219,3220,6594,6594,6594,42,2953,2846,3498,0,3347,3220,3897,6595,6595,6595,42,3498,3014,2983,0,3897,3410,3381,6596,6596,6596,42,3498,2983,2953,0,3897,3381,3347,6597,6597,6597,42,3496,2846,2891,0,3895,3220,3302,6598,6598,6598,42,3496,2891,2928,0,3895,3302,3316,6599,6599,6599,42,3087,3112,3051,0,3481,3505,3445,6600,6600,6600,42,3087,3051,3084,0,3481,3445,3478,6601,6601,6601,42,3264,3262,3224,0,3658,3656,3618,6602,6602,6602,42,3264,3224,3233,0,3658,3618,3627,6603,6603,6603,42,3262,3264,3087,0,3656,3658,3481,6604,6604,6604,42,3262,3087,3088,0,3656,3481,3482,6605,6605,6605,42,3264,3263,3112,0,3658,3657,3505,6606,6606,6606,42,3264,3112,3087,0,3658,3505,3481,6607,6607,6607,42,3263,3294,3111,0,3657,3687,3504,6608,6608,6608,42,3263,3111,3112,0,3657,3504,3505,6609,6609,6609,42,3234,3281,3294,0,3628,3674,3687,6610,6610,6610,42,3234,3294,3263,0,3628,3687,3657,6611,6611,6611,42,3062,3504,271,0,3456,3905,300,6612,6612,6612,42,3062,271,266,0,3456,300,275,6613,6613,6613,42,3506,3505,3115,0,3907,3906,3508,6614,6614,6614,42,3506,3115,3116,0,3907,3508,3509,6615,6615,6615,42,3115,3505,3507,0,3508,3906,3908,6616,6616,6616,42,3115,3507,3077,0,3508,3908,3471,6617,6617,6617,42,3077,3507,3508,0,3471,3908,3909,6618,6618,6618,42,3077,3508,3076,0,3471,3909,3470,6619,6619,6619,42,3122,3509,3504,0,3515,3910,3905,6620,6620,6620,42,3122,3504,3062,0,3515,3905,3456,6621,6621,6621,42,3076,3508,3509,0,3470,3909,3910,6622,6622,6622,42,3076,3509,3122,0,3470,3910,3515,6623,6623,6623,42,3511,3510,7051,0,3912,3911,301,6624,6624,6624,42,3511,7051,7052,0,3912,301,302,6625,6625,6625,42,3510,3511,3512,0,3911,3912,3913,6626,6626,6626,42,3510,3512,3513,0,3911,3913,3914,6627,6627,6627,42,3513,3512,3514,0,3914,3913,3915,6628,6628,6628,42,3513,3514,3515,0,3914,3915,3916,6629,6629,6629,42,3515,3514,3516,0,3916,3915,3917,6630,6630,6630,42,3515,3516,3517,0,3916,3917,3918,6631,6631,6631,42,3519,3518,3517,0,3920,3919,3918,6632,6632,6632,42,3519,3517,3516,0,3920,3918,3917,6633,6633,6633,42,3520,3518,3519,0,3921,3919,3920,6634,6634,6634,42,3520,3519,3521,0,3921,3920,3922,6635,6635,6635,42,3522,3518,3520,0,3923,3919,3921,6636,6636,6636,42,3522,3520,3523,0,3923,3921,3924,6637,6637,6637,42,3518,3522,3524,0,3919,3923,3925,6638,6638,6638,42,3518,3524,3517,0,3919,3925,3918,6639,6639,6639,42,3525,3515,3517,0,3926,3916,3918,6640,6640,6640,42,3525,3517,3524,0,3926,3918,3925,6641,6641,6641,42,3526,3513,3515,0,3927,3914,3916,6642,6642,6642,42,3526,3515,3525,0,3927,3916,3926,6643,6643,6643,42,3527,3510,3513,0,3928,3911,3914,6644,6644,6644,42,3527,3513,3526,0,3928,3914,3927,6645,6645,6645,42,3510,3527,3528,0,3911,3928,303,6646,6646,6646,42,3510,3528,7051,0,3911,303,301,6647,6647,6647,42,3530,3529,3521,0,3930,3929,3922,6648,6648,6648,42,3530,3521,3519,0,3930,3922,3920,6649,6649,6649,42,3531,3530,3519,0,3931,3930,3920,6650,6650,6650,42,3531,3519,3516,0,3931,3920,3917,6651,6651,6651,42,3531,3516,3514,0,3931,3917,3915,6652,6652,6652,42,3531,3514,3532,0,3931,3915,3932,6653,6653,6653,42,3512,3533,3532,0,3913,3933,3932,6654,6654,6654,42,3512,3532,3514,0,3913,3932,3915,6655,6655,6655,42,3511,3534,3533,0,3912,3934,3933,6656,6656,6656,42,3511,3533,3512,0,3912,3933,3913,6657,6657,6657,42,3534,3511,7052,0,3934,3912,302,6658,6658,6658,42,3534,7052,7077,0,3934,302,304,6659,6659,6659,42,3529,3530,3505,0,3929,3930,3906,6660,6660,6660,42,3529,3505,3506,0,3929,3906,3907,6661,6661,6661,42,3530,3531,3507,0,3930,3931,3908,6662,6662,6662,42,3530,3507,3505,0,3930,3908,3906,6663,6663,6663,42,3532,3508,3507,0,3932,3909,3908,6664,6664,6664,42,3532,3507,3531,0,3932,3908,3931,6665,6665,6665,42,3533,3509,3508,0,3933,3910,3909,6666,6666,6666,42,3533,3508,3532,0,3933,3909,3932,6667,6667,6667,42,3534,3504,3509,0,3934,3905,3910,6668,6668,6668,42,3534,3509,3533,0,3934,3910,3933,6669,6669,6669,42,3504,3534,7077,0,3905,3934,304,6670,6670,6670,42,3504,7077,271,0,3905,304,300,6671,6671,6671,42,3536,3535,3522,0,3936,3935,3923,6672,6672,6672,42,3536,3522,3523,0,3936,3923,3924,6673,6673,6673,42,3522,3535,3537,0,3923,3935,3937,6674,6674,6674,42,3522,3537,3524,0,3923,3937,3925,6675,6675,6675,42,3524,3537,3538,0,3925,3937,3938,6676,6676,6676,42,3524,3538,3525,0,3925,3938,3926,6677,6677,6677,42,3525,3538,3539,0,3926,3938,3939,6678,6678,6678,42,3525,3539,3526,0,3926,3939,3927,6679,6679,6679,42,3526,3539,3540,0,3927,3939,3940,6680,6680,6680,42,3526,3540,3527,0,3927,3940,3928,6681,6681,6681,42,250,3528,3527,0,305,303,3928,6682,6682,6682,42,250,3527,3540,0,305,3928,3940,6683,6683,6683,42,3542,3541,2841,0,3942,3941,3215,6684,6684,6684,42,3542,2841,2842,0,3942,3215,3216,6685,6685,6685,42,3544,3543,3117,0,3944,3943,3510,6686,6686,6686,42,3544,3117,3118,0,3944,3510,3511,6687,6687,6687,42,3541,3544,3118,0,3941,3944,3511,6688,6688,6688,42,3541,3118,2841,0,3941,3511,3215,6689,6689,6689,42,3545,3542,2842,0,3945,3942,3216,6690,6690,6690,42,3545,2842,3119,0,3945,3216,3512,6691,6691,6691,42,3546,3545,3119,0,3946,3945,3512,6692,6692,6692,42,3546,3119,3120,0,3946,3512,3513,6693,6693,6693,42,3547,3546,3120,0,3947,3946,3513,6694,6694,6694,42,3547,3120,3121,0,3947,3513,3514,6695,6695,6695,42,7091,3547,3121,0,306,3947,3514,6696,6696,6696,42,7091,3121,6647,0,306,3514,283,6697,6697,6697,42,3550,3549,3548,0,3950,3949,3948,6698,6698,6698,42,3550,3548,3551,0,3950,3948,3951,6699,6699,6699,42,3554,3553,3552,0,3954,3953,3952,6700,6700,6700,42,3554,3552,3555,0,3954,3952,3955,6701,6701,6701,42,3549,3550,3556,0,3949,3950,3956,6702,6702,6702,42,3549,3556,3557,0,3949,3956,3957,6703,6703,6703,42,3553,3554,3558,0,3953,3954,3958,6704,6704,6704,42,3553,3558,3559,0,3953,3958,3959,6705,6705,6705,42,3559,3558,3560,0,3959,3958,3960,6706,6706,6706,42,3559,3560,3561,0,3959,3960,3961,6707,6707,6707,42,3563,3562,3557,0,3963,3962,3957,6708,6708,6708,42,3563,3557,3556,0,3963,3957,3956,6709,6709,6709,42,3555,3552,3546,0,3955,3952,3946,6710,6710,6710,42,3555,3546,3547,0,3955,3946,3947,6711,6711,6711,42,3551,3548,3542,0,3951,3948,3942,6712,6712,6712,42,3551,3542,3545,0,3951,3942,3945,6713,6713,6713,42,272,3555,3547,0,307,3955,3947,6714,6714,6714,42,272,3547,7091,0,307,3947,306,6715,6715,6715,42,272,7108,3554,0,307,308,3954,6716,6716,6716,42,272,3554,3555,0,307,3954,3955,6717,6717,6717,42,254,3558,3554,0,309,3958,3954,6718,6718,6718,42,254,3554,7108,0,309,3954,308,6719,6719,6719,42,254,240,3560,0,309,310,3960,6720,6720,6720,42,254,3560,3558,0,309,3960,3958,6721,6721,6721,42,3548,3564,3541,0,3948,3964,3941,6722,6722,6722,42,3548,3541,3542,0,3948,3941,3942,6723,6723,6723,42,3564,3565,3544,0,3964,3965,3944,6724,6724,6724,42,3564,3544,3541,0,3964,3944,3941,6725,6725,6725,42,3549,3566,3564,0,3949,3966,3964,6726,6726,6726,42,3549,3564,3548,0,3949,3964,3948,6727,6727,6727,42,3566,3567,3565,0,3966,3967,3965,6728,6728,6728,42,3566,3565,3564,0,3966,3965,3964,6729,6729,6729,42,3557,3568,3566,0,3957,3968,3966,6730,6730,6730,42,3557,3566,3549,0,3957,3966,3949,6731,6731,6731,42,3568,3569,3567,0,3968,3969,3967,6732,6732,6732,42,3568,3567,3566,0,3968,3967,3966,6733,6733,6733,42,3562,3570,3568,0,3962,3970,3968,6734,6734,6734,42,3562,3568,3557,0,3962,3968,3957,6735,6735,6735,42,3570,3571,3569,0,3970,3971,3969,6736,6736,6736,42,3570,3569,3568,0,3970,3969,3968,6737,6737,6737,42,3565,3572,3543,0,3965,3972,3943,6738,6738,6738,42,3565,3543,3544,0,3965,3943,3944,6739,6739,6739,42,3567,3573,3572,0,3967,3973,3972,6740,6740,6740,42,3567,3572,3565,0,3967,3972,3965,6741,6741,6741,42,3569,3574,3573,0,3969,3974,3973,6742,6742,6742,42,3569,3573,3567,0,3969,3973,3967,6743,6743,6743,42,3571,3575,3574,0,3971,3975,3974,6744,6744,6744,42,3571,3574,3569,0,3971,3974,3969,6745,6745,6745,42,3552,3551,3545,0,3952,3951,3945,6746,6746,6746,42,3552,3545,3546,0,3952,3945,3946,6747,6747,6747,42,3553,3550,3551,0,3953,3950,3951,6748,6748,6748,42,3553,3551,3552,0,3953,3951,3952,6749,6749,6749,42,3559,3556,3550,0,3959,3956,3950,6750,6750,6750,42,3559,3550,3553,0,3959,3950,3953,6751,6751,6751,42,3561,3563,3556,0,3961,3963,3956,6752,6752,6752,42,3561,3556,3559,0,3961,3956,3959,6753,6753,6753,42,7121,3576,3560,0,311,3976,3960,6754,6754,6754,42,7121,3560,240,0,311,3960,310,6755,6755,6755,42,3576,3577,3561,0,3976,3977,3961,6756,6756,6756,42,3576,3561,3560,0,3976,3961,3960,6757,6757,6757,42,3577,3578,3563,0,3977,3978,3963,6758,6758,6758,42,3577,3563,3561,0,3977,3963,3961,6759,6759,6759,42,3578,3579,3562,0,3978,3979,3962,6760,6760,6760,42,3578,3562,3563,0,3978,3962,3963,6761,6761,6761,42,3579,3580,3570,0,3979,3980,3970,6762,6762,6762,42,3579,3570,3562,0,3979,3970,3962,6763,6763,6763,42,3580,3581,3571,0,3980,3981,3971,6764,6764,6764,42,3580,3571,3570,0,3980,3971,3970,6765,6765,6765,42,3581,3582,3575,0,3981,3982,3975,6766,6766,6766,42,3581,3575,3571,0,3981,3975,3971,6767,6767,6767,42,3543,3506,3116,0,3943,3907,3509,6768,6768,6768,42,3543,3116,3117,0,3943,3509,3510,6769,6769,6769,42,3572,3529,3506,0,3972,3929,3907,6770,6770,6770,42,3572,3506,3543,0,3972,3907,3943,6771,6771,6771,42,3573,3521,3529,0,3973,3922,3929,6772,6772,6772,42,3573,3529,3572,0,3973,3929,3972,6773,6773,6773,42,3574,3520,3521,0,3974,3921,3922,6774,6774,6774,42,3574,3521,3573,0,3974,3922,3973,6775,6775,6775,42,3575,3523,3520,0,3975,3924,3921,6776,6776,6776,42,3575,3520,3574,0,3975,3921,3974,6777,6777,6777,42,3582,3536,3523,0,3982,3936,3924,6778,6778,6778,42,3582,3523,3575,0,3982,3924,3975,6779,6779,6779,42,2982,3499,3500,0,3380,3898,3899,6780,6780,6780,42,2982,3500,2964,0,3380,3899,3358,6781,6781,6781,42,2964,3500,3501,0,3358,3899,3900,6782,6782,6782,42,2964,3501,2960,0,3358,3900,3354,6783,6783,6783,42,2960,3501,3502,0,3354,3900,3901,6784,6784,6784,42,2960,3502,2959,0,3354,3901,3353,6785,6785,6785,42,2959,3502,3503,0,3353,3901,3902,6786,6786,6786,42,2959,3503,2980,0,3353,3902,3378,6787,6787,6787,42,2980,3503,3583,0,3378,3902,3983,6788,6788,6788,42,2980,3583,2970,0,3378,3983,3367,6789,6789,6789,42,2970,3583,251,0,3367,3983,3984,6790,6790,6790,42,2970,251,6497,0,3367,3984,3366,6791,6791,6791,42,2982,2981,3013,0,3380,3379,3409,6792,6792,6792,42,2982,3013,3499,0,3380,3409,3898,6793,6793,6793,42,3423,3437,3448,0,3816,3830,3841,6794,6794,6794,42,3423,3448,3451,0,3816,3841,3844,6795,6795,6795,42,3419,3423,3451,0,3812,3816,3844,6796,6796,6796,42,3419,3451,3453,0,3812,3844,3846,6797,6797,6797,42,3418,3419,3453,0,3811,3812,3846,6798,6798,6798,42,3418,3453,3455,0,3811,3846,3848,6799,6799,6799,42,3433,3434,3458,0,3826,3827,3851,6800,6800,6800,42,3433,3458,3459,0,3826,3851,3852,6801,6801,6801,42,3448,3437,3473,0,3841,3830,3866,6802,6802,6802,42,3448,3473,3447,0,3841,3866,3840,6803,6803,6803,42,3455,3485,3484,0,3848,3884,3883,6804,6804,6804,42,3455,3484,3418,0,3848,3883,3811,6805,6805,6805,42,3485,3458,3434,0,3884,3851,3827,6806,6806,6806,42,3485,3434,3484,0,3884,3827,3883,6807,6807,6807,42,3490,3433,3459,0,3889,3826,3852,6808,6808,6808,42,3490,3459,3489,0,3889,3852,3888,6809,6809,6809,42,3433,3490,3491,0,3826,3889,3890,6810,6810,6810,42,3433,3491,3430,0,3826,3890,3823,6811,6811,6811,42,3492,3429,3430,0,3891,3822,3823,6812,6812,6812,42,3492,3430,3491,0,3891,3823,3890,6813,6813,6813,42,3493,3436,3429,0,3892,3829,3822,6814,6814,6814,42,3493,3429,3492,0,3892,3822,3891,6815,6815,6815,42,3494,3446,3436,0,3893,3839,3829,6816,6816,6816,42,3494,3436,3493,0,3893,3829,3892,6817,6817,6817,42,7130,273,3446,0,3986,3985,3839,6818,6818,6818,42,7130,3446,3494,0,3986,3839,3893,6819,6819,6819,42,3447,3473,3499,0,3840,3866,3898,6820,6820,6820,42,3447,3499,3013,0,3840,3898,3409,6821,6821,6821,42,3585,3584,2937,0,3988,3987,3331,6822,6822,6822,42,3585,2937,2938,0,3988,3331,3332,6823,6823,6823,42,3587,3586,2941,0,3990,3989,3335,6824,6824,6824,42,3587,2941,2942,0,3990,3335,3336,6825,6825,6825,42,3586,3585,2938,0,3989,3988,3332,6826,6826,6826,42,3586,2938,2941,0,3989,3332,3335,6827,6827,6827,42,7136,2951,3588,0,3992,3345,3991,6828,6828,6828,42,7136,3588,274,0,3992,3991,3993,6829,6829,6829,42,3589,2945,2937,0,3994,3339,3331,6830,6830,6830,42,3589,2937,3584,0,3994,3331,3987,6831,6831,6831,42,3590,2947,2945,0,3995,3341,3339,6832,6832,6832,42,3590,2945,3589,0,3995,3339,3994,6833,6833,6833,42,3591,2948,2949,0,3996,3342,3343,6834,6834,6834,42,3591,2949,3592,0,3996,3343,3997,6835,6835,6835,42,3591,3587,2942,0,3996,3990,3336,6836,6836,6836,42,3591,2942,2948,0,3996,3336,3342,6837,6837,6837,42,2951,2947,3590,0,3345,3341,3995,6838,6838,6838,42,2951,3590,3588,0,3345,3995,3991,6839,6839,6839,42,3592,2949,3019,0,3997,3343,3415,6840,6840,6840,42,3592,3019,3593,0,3997,3415,3998,6841,6841,6841,42,3593,3019,3050,0,3998,3415,3444,6842,6842,6842,42,3593,3050,3594,0,3998,3444,3999,6843,6843,6843,42,3594,3050,3153,0,3999,3444,3548,6844,6844,6844,42,3594,3153,3595,0,3999,3548,4000,6845,6845,6845,42,3597,3596,3154,0,4002,4001,3549,6846,6846,6846,42,3597,3154,3155,0,4002,3549,3550,6847,6847,6847,42,3156,3154,3596,0,3551,3549,4001,6848,6848,6848,42,3156,3596,3598,0,3551,4001,4003,6849,6849,6849,42,3156,3598,3599,0,3551,4003,4004,6850,6850,6850,42,3156,3599,3157,0,3551,4004,3552,6851,6851,6851,42,3595,3153,3157,0,4000,3548,3552,6852,6852,6852,42,3595,3157,3599,0,4000,3552,4004,6853,6853,6853,42,3602,3601,3600,0,4007,4006,4005,6854,6854,6854,42,3602,3600,3603,0,4007,4005,4008,6855,6855,6855,42,3606,3605,3604,0,4011,4010,4009,6856,6856,6856,42,3606,3604,3607,0,4011,4009,4012,6857,6857,6857,42,3600,3604,3605,0,4005,4009,4010,6858,6858,6858,42,3600,3605,3603,0,4005,4010,4008,6859,6859,6859,42,7157,3609,3608,0,4015,4014,4013,6860,6860,6860,42,7157,3608,3610,0,4015,4013,4016,6861,6861,6861,42,3612,3611,3601,0,4018,4017,4006,6862,6862,6862,42,3612,3601,3602,0,4018,4006,4007,6863,6863,6863,42,3614,3613,3611,0,4020,4019,4017,6864,6864,6864,42,3614,3611,3612,0,4020,4017,4018,6865,6865,6865,42,3617,3616,3615,0,4023,4022,4021,6866,6866,6866,42,3617,3615,3618,0,4023,4021,4024,6867,6867,6867,42,3617,3606,3607,0,4023,4011,4012,6868,6868,6868,42,3617,3607,3616,0,4023,4012,4022,6869,6869,6869,42,3608,3609,3613,0,4013,4014,4019,6870,6870,6870,42,3608,3613,3614,0,4013,4019,4020,6871,6871,6871,42,3618,3615,3619,0,4024,4021,4025,6872,6872,6872,42,3618,3619,3620,0,4024,4025,4026,6873,6873,6873,42,3620,3619,3621,0,4026,4025,4027,6874,6874,6874,42,3620,3621,3622,0,4026,4027,4028,6875,6875,6875,42,3622,3621,3623,0,4028,4027,4029,6876,6876,6876,42,3622,3623,3624,0,4028,4029,4030,6877,6877,6877,42,3627,3626,3625,0,4033,4032,4031,6878,6878,6878,42,3627,3625,3628,0,4033,4031,4034,6879,6879,6879,42,3630,3629,3626,0,4036,4035,4032,6880,6880,6880,42,3630,3626,3627,0,4036,4032,4033,6881,6881,6881,42,3632,3631,3629,0,4038,4037,4035,6882,6882,6882,42,3632,3629,3630,0,4038,4035,4036,6883,6883,6883,42,3624,3623,3631,0,4030,4029,4037,6884,6884,6884,42,3624,3631,3632,0,4030,4037,4038,6885,6885,6885,42,3635,3634,3633,0,4041,4040,4039,6886,6886,6886,42,3635,3633,3636,0,4041,4039,4042,6887,6887,6887,42,3639,3638,3637,0,4045,4044,4043,6888,6888,6888,42,3639,3637,3640,0,4045,4043,4046,6889,6889,6889,42,3636,3633,3637,0,4042,4039,4043,6890,6890,6890,42,3636,3637,3638,0,4042,4043,4044,6891,6891,6891,42,3642,3641,7189,0,4049,4048,4047,6892,6892,6892,42,3642,7189,252,0,4049,4047,4050,6893,6893,6893,42,3644,3643,3634,0,4052,4051,4040,6894,6894,6894,42,3644,3634,3635,0,4052,4040,4041,6895,6895,6895,42,3646,3645,3643,0,4054,4053,4051,6896,6896,6896,42,3646,3643,3644,0,4054,4051,4052,6897,6897,6897,42,3649,3648,3647,0,4057,4056,4055,6898,6898,6898,42,3649,3647,3650,0,4057,4055,4058,6899,6899,6899,42,3648,3639,3640,0,4056,4045,4046,6900,6900,6900,42,3648,3640,3647,0,4056,4046,4055,6901,6901,6901,42,3641,3642,3645,0,4048,4049,4053,6902,6902,6902,42,3641,3645,3646,0,4048,4053,4054,6903,6903,6903,42,3649,3650,3651,0,4057,4058,4059,6904,6904,6904,42,3649,3651,3652,0,4057,4059,4060,6905,6905,6905,42,3652,3651,3653,0,4060,4059,4061,6906,6906,6906,42,3652,3653,3654,0,4060,4061,4062,6907,6907,6907,42,3654,3653,3655,0,4062,4061,4063,6908,6908,6908,42,3654,3655,3656,0,4062,4063,4064,6909,6909,6909,42,3659,3658,3657,0,4067,4066,4065,6910,6910,6910,42,3659,3657,3660,0,4067,4065,4068,6911,6911,6911,42,3662,3661,3658,0,4070,4069,4066,6912,6912,6912,42,3662,3658,3659,0,4070,4066,4067,6913,6913,6913,42,3664,3663,3661,0,4072,4071,4069,6914,6914,6914,42,3664,3661,3662,0,4072,4069,4070,6915,6915,6915,42,3656,3655,3663,0,4064,4063,4071,6916,6916,6916,42,3656,3663,3664,0,4064,4071,4072,6917,6917,6917,42,3667,3666,3665,0,4075,4074,4073,6918,6918,6918,42,3667,3665,3668,0,4075,4073,4076,6919,6919,6919,42,3669,3665,3666,0,4077,4073,4074,6920,6920,6920,42,3669,3666,7216,0,4077,4074,4078,6921,6921,6921,42,3670,3635,3636,0,4079,4041,4042,6922,6922,6922,42,3670,3636,3671,0,4079,4042,4080,6923,6923,6923,42,3673,3672,3638,0,4082,4081,4044,6924,6924,6924,42,3673,3638,3639,0,4082,4044,4045,6925,6925,6925,42,3638,3672,3671,0,4044,4081,4080,6926,6926,6926,42,3638,3671,3636,0,4044,4080,4042,6927,6927,6927,42,3635,3670,3674,0,4041,4079,4083,6928,6928,6928,42,3635,3674,3644,0,4041,4083,4052,6929,6929,6929,42,3644,3674,3675,0,4052,4083,4084,6930,6930,6930,42,3644,3675,3646,0,4052,4084,4054,6931,6931,6931,42,3677,3676,3648,0,4086,4085,4056,6932,6932,6932,42,3677,3648,3649,0,4086,4056,4057,6933,6933,6933,42,3676,3673,3639,0,4085,4082,4045,6934,6934,6934,42,3676,3639,3648,0,4085,4045,4056,6935,6935,6935,42,3646,3675,3678,0,4054,4084,4087,6936,6936,6936,42,3646,3678,3641,0,4054,4087,4048,6937,6937,6937,42,3679,3677,3649,0,4088,4086,4057,6938,6938,6938,42,3679,3649,3652,0,4088,4057,4060,6939,6939,6939,42,3654,3680,3679,0,4062,4089,4088,6940,6940,6940,42,3654,3679,3652,0,4062,4088,4060,6941,6941,6941,42,3656,3681,3680,0,4064,4090,4089,6942,6942,6942,42,3656,3680,3654,0,4064,4089,4062,6943,6943,6943,42,3660,3683,3682,0,4068,4092,4091,6944,6944,6944,42,3660,3682,3659,0,4068,4091,4067,6945,6945,6945,42,3659,3682,3684,0,4067,4091,4093,6946,6946,6946,42,3659,3684,3662,0,4067,4093,4070,6947,6947,6947,42,3662,3684,3685,0,4070,4093,4094,6948,6948,6948,42,3662,3685,3664,0,4070,4094,4072,6949,6949,6949,42,3664,3685,3681,0,4072,4094,4090,6950,6950,6950,42,3664,3681,3656,0,4072,4090,4064,6951,6951,6951,42,3634,3602,3603,0,4040,4007,4008,6952,6952,6952,42,3634,3603,3633,0,4040,4008,4039,6953,6953,6953,42,3640,3637,3605,0,4046,4043,4010,6954,6954,6954,42,3640,3605,3606,0,4046,4010,4011,6955,6955,6955,42,3633,3603,3605,0,4039,4008,4010,6956,6956,6956,42,3633,3605,3637,0,4039,4010,4043,6957,6957,6957,42,3643,3612,3602,0,4051,4018,4007,6958,6958,6958,42,3643,3602,3634,0,4051,4007,4040,6959,6959,6959,42,3612,3643,3645,0,4018,4051,4053,6960,6960,6960,42,3612,3645,3614,0,4018,4053,4020,6961,6961,6961,42,3650,3647,3617,0,4058,4055,4023,6962,6962,6962,42,3650,3617,3618,0,4058,4023,4024,6963,6963,6963,42,3647,3640,3606,0,4055,4046,4011,6964,6964,6964,42,3647,3606,3617,0,4055,4011,4023,6965,6965,6965,42,3614,3645,3642,0,4020,4053,4049,6966,6966,6966,42,3614,3642,3608,0,4020,4049,4013,6967,6967,6967,42,3620,3651,3650,0,4026,4059,4058,6968,6968,6968,42,3620,3650,3618,0,4026,4058,4024,6969,6969,6969,42,3622,3653,3651,0,4028,4061,4059,6970,6970,6970,42,3622,3651,3620,0,4028,4059,4026,6971,6971,6971,42,3624,3655,3653,0,4030,4063,4061,6972,6972,6972,42,3624,3653,3622,0,4030,4061,4028,6973,6973,6973,42,3628,3657,3658,0,4034,4065,4066,6974,6974,6974,42,3628,3658,3627,0,4034,4066,4033,6975,6975,6975,42,3627,3658,3661,0,4033,4066,4069,6976,6976,6976,42,3627,3661,3630,0,4033,4069,4036,6977,6977,6977,42,3630,3661,3663,0,4036,4069,4071,6978,6978,6978,42,3630,3663,3632,0,4036,4071,4038,6979,6979,6979,42,3632,3663,3655,0,4038,4071,4063,6980,6980,6980,42,3632,3655,3624,0,4038,4063,4030,6981,6981,6981,42,3660,3657,3665,0,4068,4065,4073,6982,6982,6982,42,3660,3665,3669,0,4068,4073,4077,6983,6983,6983,42,3683,3660,3669,0,4092,4068,4077,6984,6984,6984,42,3683,3669,3686,0,4092,4077,4095,6985,6985,6985,42,3600,3601,3584,0,4005,4006,3987,6986,6986,6986,42,3600,3584,3585,0,4005,3987,3988,6987,6987,6987,42,3607,3604,3586,0,4012,4009,3989,6988,6988,6988,42,3607,3586,3587,0,4012,3989,3990,6989,6989,6989,42,3604,3600,3585,0,4009,4005,3988,6990,6990,6990,42,3604,3585,3586,0,4009,3988,3989,6991,6991,6991,42,3584,3601,3611,0,3987,4006,4017,6992,6992,6992,42,3584,3611,3589,0,3987,4017,3994,6993,6993,6993,42,3613,3590,3589,0,4019,3995,3994,6994,6994,6994,42,3613,3589,3611,0,4019,3994,4017,6995,6995,6995,42,3592,3615,3616,0,3997,4021,4022,6996,6996,6996,42,3592,3616,3591,0,3997,4022,3996,6997,6997,6997,42,3616,3607,3587,0,4022,4012,3990,6998,6998,6998,42,3616,3587,3591,0,4022,3990,3996,6999,6999,6999,42,3609,3588,3590,0,4014,3991,3995,7000,7000,7000,42,3609,3590,3613,0,4014,3995,4019,7001,7001,7001,42,3593,3619,3615,0,3998,4025,4021,7002,7002,7002,42,3593,3615,3592,0,3998,4021,3997,7003,7003,7003,42,3594,3621,3619,0,3999,4027,4025,7004,7004,7004,42,3594,3619,3593,0,3999,4025,3998,7005,7005,7005,42,3595,3623,3621,0,4000,4029,4027,7006,7006,7006,42,3595,3621,3594,0,4000,4027,3999,7007,7007,7007,42,3625,3626,3596,0,4031,4032,4001,7008,7008,7008,42,3625,3596,3597,0,4031,4001,4002,7009,7009,7009,42,3598,3596,3626,0,4003,4001,4032,7010,7010,7010,42,3598,3626,3629,0,4003,4032,4035,7011,7011,7011,42,3598,3629,3631,0,4003,4035,4037,7012,7012,7012,42,3598,3631,3599,0,4003,4037,4004,7013,7013,7013,42,3599,3631,3623,0,4004,4037,4029,7014,7014,7014,42,3599,3623,3595,0,4004,4029,4000,7015,7015,7015,42,3479,270,3477,0,3874,3904,3870,7016,7016,7016,42,3479,3477,3441,0,3874,3870,3834,7017,7017,7017,42,3141,3152,3687,0,3534,3547,4096,7018,7018,7018,42,3141,3687,3155,0,3534,4096,3550,7019,7019,7019,42,3155,3687,3688,0,3550,4096,4097,7020,7020,7020,42,3155,3688,3597,0,3550,4097,4002,7021,7021,7021,42,3597,3688,3689,0,4002,4097,4098,7022,7022,7022,42,3597,3689,3625,0,4002,4098,4031,7023,7023,7023,42,3668,3628,3625,0,4076,4034,4031,7024,7024,7024,42,3668,3625,3689,0,4076,4031,4098,7025,7025,7025,42,3657,3628,3668,0,4065,4034,4076,7026,7026,7026,42,3657,3668,3665,0,4065,4076,4073,7027,7027,7027,42,3201,3205,3204,0,3595,3599,3598,7028,7028,7028,42,3201,3204,3200,0,3595,3598,3594,7029,7029,7029,42,3209,3206,3205,0,3603,3600,3599,7030,7030,7030,42,3209,3205,3201,0,3603,3599,3595,7031,7031,7031,42,3203,3202,3200,0,3597,3596,3594,7032,7032,7032,42,3203,3200,3204,0,3597,3594,3598,7033,7033,7033,42,3208,3207,3206,0,3602,3601,3600,7034,7034,7034,42,3208,3206,3209,0,3602,3600,3603,7035,7035,7035,42,2922,2892,2893,0,3309,3276,3277,7036,7036,7036,42,2922,2893,2923,0,3309,3277,3310,7037,7037,7037,42,2923,2893,2894,0,3310,3277,3278,7038,7038,7038,42,2923,2894,2898,0,3310,3278,3283,7039,7039,7039,42,2897,2857,3690,0,3281,3231,4099,7040,7040,7040,42,2897,3690,2898,0,3281,4099,3283,7041,7041,7041,42,2857,2854,3691,0,3231,3228,4100,7042,7042,7042,42,2857,3691,3690,0,3231,4100,4099,7043,7043,7043,42,2854,2858,3692,0,3228,3232,4101,7044,7044,7044,42,2854,3692,3691,0,3228,4101,4100,7045,7045,7045,42,2858,2860,3693,0,3232,3234,4102,7046,7046,7046,42,2858,3693,3692,0,3232,4102,4101,7047,7047,7047,42,2860,2907,3694,0,3234,3292,4103,7048,7048,7048,42,2860,3694,3693,0,3234,4103,4102,7049,7049,7049,42,2909,3695,3694,0,3294,4104,4103,7050,7050,7050,42,2909,3694,2907,0,3294,4103,3292,7051,7051,7051,42,3690,2921,2923,0,4099,3308,3310,7052,7052,7052,42,3690,2923,2898,0,4099,3310,3283,7053,7053,7053,42,3691,2919,2921,0,4100,3306,3308,7054,7054,7054,42,3691,2921,3690,0,4100,3308,4099,7055,7055,7055,42,3692,2918,2919,0,4101,3305,3306,7056,7056,7056,42,3692,2919,3691,0,4101,3306,4100,7057,7057,7057,42,2918,3692,3693,0,3305,4101,4102,7058,7058,7058,42,2918,3693,2917,0,3305,4102,3304,7059,7059,7059,42,3693,3694,2848,0,4102,4103,3222,7060,7060,7060,42,3693,2848,2917,0,4102,3222,3304,7061,7061,7061,42,2851,2848,3694,0,3225,3222,4103,7062,7062,7062,42,2851,3694,3695,0,3225,4103,4104,7063,7063,7063,42,2920,2921,2919,0,3307,3308,3306,7064,7064,7064,42,2920,2919,2905,0,3307,3306,3290,7065,7065,7065,42,3695,2909,2864,0,4104,3294,3238,7066,7066,7066,42,3695,2864,2851,0,4104,3238,3225,7067,7067,7067,42,3378,3366,3367,0,3771,3759,3760,7068,7068,7068,42,3378,3367,3379,0,3771,3760,3772,7069,7069,7069,42,3388,3390,3366,0,3781,3783,3759,7070,7070,7070,42,3388,3366,3378,0,3781,3759,3771,7071,7071,7071,42,3325,3324,3329,0,3718,3717,3722,7072,7072,7072,42,3325,3329,3326,0,3718,3722,3719,7073,7073,7073,42,3362,3324,3323,0,3755,3717,3716,7074,7074,7074,42,3362,3323,3351,0,3755,3716,3744,7075,7075,7075,42,3368,3362,3351,0,3761,3755,3744,7076,7076,7076,42,3368,3351,3366,0,3761,3744,3759,7077,7077,7077,42,6678,3697,3696,0,3545,4106,4105,7078,7078,7078,42,6678,3696,3151,0,3545,4105,3546,7079,7079,7079,42,2951,7136,7015,0,3345,3992,3873,7080,7080,7080,42,2951,7015,2950,0,3345,3873,3344,7081,7081,7081,42,3445,3446,273,0,3838,3839,3985,7082,7082,7082,42,3445,273,7021,0,3838,3985,3879,7083,7083,7083,42,3478,7016,7130,0,3871,3872,3986,7084,7084,7084,42,3478,7130,3494,0,3871,3986,3893,7085,7085,7085,42,3698,7247,255,0,4109,4108,4107,7086,7086,7086,42,3698,255,3699,0,4109,4107,4110,7087,7087,7087,42,3678,256,7189,0,4087,4111,4047,7088,7088,7088,42,3678,7189,3641,0,4087,4047,4048,7089,7089,7089,42,3642,252,3610,0,4049,4050,4016,7090,7090,7090,42,3642,3610,3608,0,4049,4016,4013,7091,7091,7091,42,3700,3699,255,0,4112,4110,4107,7092,7092,7092,42,3700,255,7248,0,4112,4107,4113,7093,7093,7093,42,3609,7157,274,0,4014,4015,3993,7094,7094,7094,42,3609,274,3588,0,4014,3993,3991,7095,7095,7095,42,3696,3697,7247,0,4105,4106,4108,7096,7096,7096,42,3696,7247,3698,0,4105,4108,4109,7097,7097,7097,42,7044,251,3583,0,3903,3984,3983,7098,7098,7098,42,7044,3583,3503,0,3903,3983,3902,7099,7099,7099,42,3696,3687,3152,0,4105,4096,3547,7100,7100,7100,42,3696,3152,3151,0,4105,3547,3546,7101,7101,7101,42,3698,3688,3687,0,4109,4097,4096,7102,7102,7102,42,3698,3687,3696,0,4109,4096,4105,7103,7103,7103,42,3688,3698,3699,0,4097,4109,4110,7104,7104,7104,42,3688,3699,3689,0,4097,4110,4098,7105,7105,7105,42,3668,3700,7248,0,4076,4112,4113,7106,7106,7106,42,3668,7248,3667,0,4076,4113,4075,7107,7107,7107,42,3700,3668,3689,0,4112,4076,4098,7108,7108,7108,42,3700,3689,3699,0,4112,4098,4110,7109,7109,7109,42,3672,990,991,0,4081,4115,4114,7110,7110,7110,42,3672,991,3671,0,4081,4114,4080,7111,7111,7111,42,3671,991,992,0,4080,4114,4116,7112,7112,7112,42,3671,992,3670,0,4080,4116,4079,7113,7113,7113,42,992,993,3674,0,4116,4117,4083,7114,7114,7114,42,992,3674,3670,0,4116,4083,4079,7115,7115,7115,42,994,990,3672,0,4118,4115,4081,7116,7116,7116,42,994,3672,3673,0,4118,4081,4082,7117,7117,7117,42,3674,993,1000,0,4083,4117,4119,7118,7118,7118,42,3674,1000,3675,0,4083,4119,4084,7119,7119,7119,42,3675,1000,1001,0,4084,4119,4120,7120,7120,7120,42,3675,1001,3678,0,4084,4120,4087,7121,7121,7121,42,1001,262,256,0,4120,4121,4111,7122,7122,7122,42,1001,256,3678,0,4120,4111,4087,7123,7123,7123,42,996,3685,3684,0,4122,4094,4093,7124,7124,7124,42,996,3684,995,0,4122,4093,4123,7125,7125,7125,42,995,3684,3682,0,4123,4093,4091,7126,7126,7126,42,995,3682,1002,0,4123,4091,4124,7127,7127,7127,42,1002,3682,3683,0,4124,4091,4092,7128,7128,7128,42,1002,3683,1003,0,4124,4092,4125,7129,7129,7129,42,1003,3683,3686,0,4125,4092,4095,7130,7130,7130,42,1003,3686,1004,0,4125,4095,4126,7131,7131,7131,42,996,997,3681,0,4122,4127,4090,7132,7132,7132,42,996,3681,3685,0,4122,4090,4094,7133,7133,7133,42,999,994,3673,0,4128,4118,4082,7134,7134,7134,42,999,3673,3676,0,4128,4082,4085,7135,7135,7135,42,998,999,3676,0,4129,4128,4085,7136,7136,7136,42,998,3676,3677,0,4129,4085,4086,7137,7137,7137,42,1006,998,3677,0,4130,4129,4086,7138,7138,7138,42,1006,3677,3679,0,4130,4086,4088,7139,7139,7139,42,1005,1006,3679,0,4131,4130,4088,7140,7140,7140,42,1005,3679,3680,0,4131,4088,4089,7141,7141,7141,42,997,1005,3680,0,4127,4131,4089,7142,7142,7142,42,997,3680,3681,0,4127,4089,4090,7143,7143,7143,42,3686,3669,7216,0,4095,4077,4078,7144,7144,7144,42,3686,7216,7250,0,4095,4078,4132,7145,7145,7145,42,7250,1007,1004,0,4132,4133,4126,7146,7146,7146,42,7250,1004,3686,0,4132,4126,4095,7147,7147,7147,42,3702,3701,3582,0,4136,4135,4134,7148,7148,7148,42,3702,3582,3581,0,4136,4134,4137,7149,7149,7149,42,7253,3703,3576,0,313,4139,4138,7150,7150,7150,42,7253,3576,7121,0,313,4138,312,7151,7151,7151,42,3704,3577,3576,0,4141,4140,4138,7152,7152,7152,42,3704,3576,3703,0,4141,4138,4139,7153,7153,7153,42,3705,3579,3578,0,4144,4143,4142,7154,7154,7154,42,3705,3578,3706,0,4144,4142,4145,7155,7155,7155,42,3580,3579,3705,0,4146,4143,4144,7156,7156,7156,42,3580,3705,3707,0,4146,4144,4147,7157,7157,7157,42,3708,3538,3537,0,4150,4149,4148,7158,7158,7158,42,3708,3537,3709,0,4150,4148,4151,7159,7159,7159,42,3539,3711,3710,0,4154,4153,4152,7160,7160,7160,42,3539,3710,3540,0,4154,4152,4155,7161,7161,7161,42,3535,3712,3709,0,4157,4156,4151,7162,7162,7162,42,3535,3709,3537,0,4157,4151,4148,7163,7163,7163,42,3536,3582,3701,0,4160,4159,4158,7164,7164,7164,42,3536,3701,3713,0,4160,4158,4161,7165,7165,7165,42,3715,3714,3701,0,4163,4162,4135,7166,7166,7166,42,3715,3701,3702,0,4163,4135,4136,7167,7167,7167,42,275,3716,3703,0,314,4164,4139,7168,7168,7168,42,275,3703,7253,0,314,4139,313,7169,7169,7169,42,3704,3703,3716,0,4141,4139,4164,7170,7170,7170,42,3704,3716,3717,0,4141,4164,4165,7171,7171,7171,42,3719,3718,3705,0,4167,4166,4144,7172,7172,7172,42,3719,3705,3706,0,4167,4144,4145,7173,7173,7173,42,3718,3720,3707,0,4166,4168,4147,7174,7174,7174,42,3718,3707,3705,0,4166,4147,4144,7175,7175,7175,42,3721,3708,3709,0,4169,4150,4151,7176,7176,7176,42,3721,3709,3722,0,4169,4151,4170,7177,7177,7177,42,3711,3724,3723,0,4153,4172,4171,7178,7178,7178,42,3711,3723,3710,0,4153,4171,4152,7179,7179,7179,42,3710,3723,7276,0,4152,4171,315,7180,7180,7180,42,3710,7276,276,0,4152,315,316,7181,7181,7181,42,3722,3709,3712,0,4170,4151,4156,7182,7182,7182,42,3722,3712,3725,0,4170,4156,4173,7183,7183,7183,42,3713,3701,3714,0,4161,4158,4174,7184,7184,7184,42,3713,3714,3726,0,4161,4174,4175,7185,7185,7185,42,3728,3727,3714,0,4177,4176,4162,7186,7186,7186,42,3728,3714,3715,0,4177,4162,4163,7187,7187,7187,42,3730,3729,3719,0,4179,4178,4167,7188,7188,7188,42,3730,3719,3717,0,4179,4167,4165,7189,7189,7189,42,3718,3719,3729,0,4166,4167,4178,7190,7190,7190,42,3718,3729,3731,0,4166,4178,4180,7191,7191,7191,42,3720,3718,3731,0,4168,4166,4180,7192,7192,7192,42,3720,3731,3732,0,4168,4180,4181,7193,7193,7193,42,3733,3721,3722,0,4182,4169,4170,7194,7194,7194,42,3733,3722,3734,0,4182,4170,4183,7195,7195,7195,42,3724,3736,3735,0,4172,4185,4184,7196,7196,7196,42,3724,3735,3723,0,4172,4184,4171,7197,7197,7197,42,3723,3735,7289,0,4171,4184,317,7198,7198,7198,42,3723,7289,7276,0,4171,317,315,7199,7199,7199,42,3734,3722,3725,0,4183,4170,4173,7200,7200,7200,42,3734,3725,3737,0,4183,4173,4186,7201,7201,7201,42,3714,3727,3738,0,4174,4188,4187,7202,7202,7202,42,3714,3738,3726,0,4174,4187,4175,7203,7203,7203,42,3740,3739,3738,0,4190,4189,4187,7204,7204,7204,42,3740,3738,3727,0,4190,4187,4188,7205,7205,7205,42,3742,3741,3729,0,4192,4191,4178,7206,7206,7206,42,3742,3729,3730,0,4192,4178,4179,7207,7207,7207,42,3731,3729,3741,0,4180,4178,4191,7208,7208,7208,42,3731,3741,3743,0,4180,4191,4193,7209,7209,7209,42,3732,3731,3743,0,4181,4180,4193,7210,7210,7210,42,3732,3743,3744,0,4181,4193,4194,7211,7211,7211,42,3734,3746,3745,0,4183,4196,4195,7212,7212,7212,42,3734,3745,3733,0,4183,4195,4182,7213,7213,7213,42,3748,3747,3735,0,4198,4197,4184,7214,7214,7214,42,3748,3735,3736,0,4198,4184,4185,7215,7215,7215,42,7289,3735,3747,0,317,4184,4197,7216,7216,7216,42,7289,3747,277,0,317,4197,318,7217,7217,7217,42,3737,3749,3746,0,4186,4199,4196,7218,7218,7218,42,3737,3746,3734,0,4186,4196,4183,7219,7219,7219,42,3748,3745,3750,0,4198,4195,4200,7220,7220,7220,42,3748,3750,3751,0,4198,4200,4201,7221,7221,7221,42,3745,3746,3752,0,4195,4196,4202,7222,7222,7222,42,3745,3752,3750,0,4195,4202,4200,7223,7223,7223,42,3746,3749,3753,0,4196,4199,4203,7224,7224,7224,42,3746,3753,3752,0,4196,4203,4202,7225,7225,7225,42,3727,3728,3754,0,4176,4177,4204,7226,7226,7226,42,3727,3754,3740,0,4176,4204,4190,7227,7227,7227,42,3744,3743,3752,0,4194,4193,4202,7228,7228,7228,42,3744,3752,3753,0,4194,4202,4203,7229,7229,7229,42,3743,3741,3750,0,4193,4191,4200,7230,7230,7230,42,3743,3750,3752,0,4193,4200,4202,7231,7231,7231,42,3751,3750,3741,0,4201,4200,4191,7232,7232,7232,42,3751,3741,3742,0,4201,4191,4192,7233,7233,7233,42,7309,3756,3755,0,320,4206,4205,7234,7234,7234,42,7309,3755,257,0,320,4205,319,7235,7235,7235,42,3757,3716,275,0,4207,4164,314,7236,7236,7236,42,3757,275,3758,0,4207,314,321,7237,7237,7237,42,3757,3758,257,0,4207,321,319,7238,7238,7238,42,3757,257,3755,0,4207,319,4205,7239,7239,7239,42,3756,7309,277,0,4206,320,318,7240,7240,7240,42,3756,277,3747,0,4206,318,4197,7241,7241,7241,42,3706,3578,3577,0,4145,4142,4140,7242,7242,7242,42,3706,3577,3704,0,4145,4140,4141,7243,7243,7243,42,3538,3708,3711,0,4149,4150,4153,7244,7244,7244,42,3538,3711,3539,0,4149,4153,4154,7245,7245,7245,42,3717,3719,3706,0,4165,4167,4145,7246,7246,7246,42,3717,3706,3704,0,4165,4145,4141,7247,7247,7247,42,3708,3721,3724,0,4150,4169,4172,7248,7248,7248,42,3708,3724,3711,0,4150,4172,4153,7249,7249,7249,42,3717,3716,3757,0,4165,4164,4207,7250,7250,7250,42,3717,3757,3730,0,4165,4207,4179,7251,7251,7251,42,3721,3733,3736,0,4169,4182,4185,7252,7252,7252,42,3721,3736,3724,0,4169,4185,4172,7253,7253,7253,42,3730,3757,3755,0,4179,4207,4205,7254,7254,7254,42,3730,3755,3742,0,4179,4205,4192,7255,7255,7255,42,3736,3733,3745,0,4185,4182,4195,7256,7256,7256,42,3736,3745,3748,0,4185,4195,4198,7257,7257,7257,42,3751,3756,3747,0,4201,4206,4197,7258,7258,7258,42,3751,3747,3748,0,4201,4197,4198,7259,7259,7259,42,3742,3755,3756,0,4192,4205,4206,7260,7260,7260,42,3742,3756,3751,0,4192,4206,4201,7261,7261,7261,42,276,250,3540,0,316,322,4155,7262,7262,7262,42,276,3540,3710,0,316,4155,4152,7263,7263,7263,42,3713,3712,3535,0,4161,4156,4157,7264,7264,7264,42,3713,3535,3536,0,4161,4157,4160,7265,7265,7265,42,3725,3712,3713,0,4173,4156,4161,7266,7266,7266,42,3725,3713,3726,0,4173,4161,4175,7267,7267,7267,42,3737,3725,3726,0,4186,4173,4175,7268,7268,7268,42,3737,3726,3738,0,4186,4175,4187,7269,7269,7269,42,3749,3739,3740,0,4199,4189,4190,7270,7270,7270,42,3749,3740,3753,0,4199,4190,4203,7271,7271,7271,42,3744,3754,3728,0,4194,4204,4177,7272,7272,7272,42,3744,3728,3732,0,4194,4177,4181,7273,7273,7273,42,3715,3720,3732,0,4163,4168,4181,7274,7274,7274,42,3715,3732,3728,0,4163,4181,4177,7275,7275,7275,42,3702,3707,3720,0,4136,4147,4168,7276,7276,7276,42,3702,3720,3715,0,4136,4168,4163,7277,7277,7277,42,3581,3580,3707,0,4137,4146,4147,7278,7278,7278,42,3581,3707,3702,0,4137,4147,4136,7279,7279,7279,42,3737,3738,3739,0,4186,4187,4189,7280,7280,7280,42,3737,3739,3749,0,4186,4189,4199,7281,7281,7281,42,3744,3753,3740,0,4194,4203,4190,7282,7282,7282,42,3744,3740,3754,0,4194,4190,4204,7283,7283,7283,42,1195,1200,1198,0,1327,1332,1330,7284,7284,7284,42,1195,1198,1191,0,1327,1330,1323,7285,7285,7285,42,1206,1208,1199,0,1338,1340,1331,7286,7286,7286,42,1206,1199,1205,0,1338,1331,1337,7287,7287,7287,42,1487,1486,1208,0,1640,1639,1340,7288,7288,7288,42,1487,1208,1206,0,1640,1340,1338,7289,7289,7289,42,1490,1486,1487,0,1644,1639,1640,7290,7290,7290,42,1490,1487,1491,0,1644,1640,1645,7291,7291,7291,42,2034,3759,1488,0,2276,4208,1641,7292,7292,7292,42,2034,1488,1489,0,2276,1641,1643,7293,7293,7293,42,3759,3760,1481,0,4208,4209,1642,7294,7294,7294,42,3759,1481,1488,0,4208,1642,1641,7295,7295,7295,42,3760,1502,1476,0,4210,1662,1629,7296,7296,7296,42,3760,1476,1481,0,4210,1629,1634,7297,7297,7297,42,1414,1183,1395,0,1566,1315,1539,7298,7298,7298,42,1414,1395,1396,0,1566,1539,1540,7299,7299,7299,42,1177,1469,1406,0,1309,1621,1553,7300,7300,7300,42,1177,1406,1407,0,1309,1553,1554,7301,7301,7301,42,1408,1176,1177,0,1555,1308,1309,7302,7302,7302,42,1408,1177,1407,0,1555,1309,1554,7303,7303,7303,42,1395,1403,1412,0,1539,1550,1559,7304,7304,7304,42,1395,1412,1394,0,1539,1559,1538,7305,7305,7305,42,1422,1419,1181,0,1572,1569,1313,7306,7306,7306,42,1422,1181,1421,0,1572,1313,1571,7307,7307,7307,42,1422,1420,1428,0,1572,1570,1578,7308,7308,7308,42,1422,1428,1424,0,1572,1578,1574,7309,7309,7309,42,1428,1204,1196,0,1578,1336,1328,7310,7310,7310,42,1428,1196,1424,0,1578,1328,1574,7311,7311,7311,42,1403,1401,1406,0,1550,1548,1553,7312,7312,7312,42,1403,1406,1412,0,1550,1553,1559,7313,7313,7313,42,1421,1181,1176,0,1571,1313,1308,7314,7314,7314,42,1421,1176,1408,0,1571,1308,1555,7315,7315,7315,42,1393,1388,1391,0,1535,1536,1541,7316,7316,7316,42,1393,1391,1394,0,1535,1541,1538,7317,7317,7317,42,1204,1205,1195,0,1336,1337,1327,7318,7318,7318,42,1204,1195,1196,0,1336,1327,1328,7319,7319,7319,42,1205,1199,1200,0,1337,1331,1332,7320,7320,7320,42,1205,1200,1195,0,1337,1332,1327,7321,7321,7321,42,1603,1522,3761,0,1773,1774,4211,7322,7322,7322,42,1603,3761,3762,0,1773,4211,4212,7323,7323,7323,42,1522,1520,3763,0,1683,1681,4213,7324,7324,7324,42,1522,3763,3761,0,1683,4213,4214,7325,7325,7325,42,1520,1517,3764,0,1681,1678,4215,7326,7326,7326,42,1520,3764,3763,0,1681,4215,4213,7327,7327,7327,42,3764,1517,1503,0,4215,1678,1663,7328,7328,7328,42,3764,1503,1507,0,4215,1663,1667,7329,7329,7329,42,3765,2031,2032,0,4216,2273,2274,7330,7330,7330,42,3765,2032,3766,0,4216,2274,4217,7331,7331,7331,42,3762,2035,3767,0,4219,2277,4218,7332,7332,7332,42,3762,3767,3768,0,4219,4218,4220,7333,7333,7333,42,1511,1533,1527,0,1672,1694,1688,7334,7334,7334,42,1511,1527,1513,0,1672,1688,1674,7335,7335,7335,42,1533,1530,1529,0,1694,1691,1690,7336,7336,7336,42,1533,1529,1527,0,1694,1690,1688,7337,7337,7337,42,1931,1928,1539,0,2137,2134,1700,7338,7338,7338,42,1931,1539,1540,0,2137,1700,1701,7339,7339,7339,42,1540,1529,1530,0,1701,1690,1691,7340,7340,7340,42,1540,1530,1931,0,1701,1691,2137,7341,7341,7341,42,1541,1528,1529,0,1702,1689,1690,7342,7342,7342,42,1541,1529,1540,0,1702,1690,1701,7343,7343,7343,42,1644,1950,1512,0,1817,2156,1673,7344,7344,7344,42,1644,1512,1514,0,1817,1673,1675,7345,7345,7345,42,1641,1636,1637,0,1814,1809,1810,7346,7346,7346,42,1641,1637,1640,0,1814,1810,1813,7347,7347,7347,42,1638,1645,1643,0,1811,1818,1816,7348,7348,7348,42,1638,1643,1641,0,1811,1816,1814,7349,7349,7349,42,1515,1642,1643,0,1676,1815,1816,7350,7350,7350,42,1515,1643,1514,0,1676,1816,1675,7351,7351,7351,42,1512,1950,1534,0,1673,2156,1695,7352,7352,7352,42,1512,1534,1511,0,1673,1695,1672,7353,7353,7353,42,2032,1959,3769,0,4222,2166,4221,7354,7354,7354,42,2032,3769,3766,0,4222,4221,4223,7355,7355,7355,42,1958,1959,2032,0,2165,2166,4222,7356,7356,7356,42,1958,2032,2030,0,2165,4222,4224,7357,7357,7357,42,1538,1958,2030,0,1699,2165,4224,7358,7358,7358,42,1538,2030,3770,0,1699,4224,4225,7359,7359,7359,42,3773,3772,3771,0,4228,4227,4226,7360,7360,7360,42,3773,3771,3770,0,4228,4226,4225,7361,7361,7361,42,3774,3772,3773,0,4229,4227,4228,7362,7362,7362,42,3774,3773,3775,0,4229,4228,4230,7363,7363,7363,42,1500,3776,3774,0,4232,4231,4229,7364,7364,7364,42,1500,3774,3775,0,4232,4229,4230,7365,7365,7365,42,1508,3776,1500,0,1669,4231,4232,7366,7366,7366,42,1508,1500,1501,0,1669,4232,1668,7367,7367,7367,42,1603,3762,3768,0,1773,4212,4233,7368,7368,7368,42,1603,3768,1993,0,1773,4233,2212,7369,7369,7369,42,1581,1551,1549,0,1748,1712,1713,7370,7370,7370,42,1581,1549,1580,0,1748,1713,1747,7371,7371,7371,42,1583,1579,1551,0,1750,1746,1712,7372,7372,7372,42,1583,1551,1581,0,1750,1712,1748,7373,7373,7373,42,1955,1555,1576,0,2161,1719,1744,7374,7374,7374,42,1955,1576,1580,0,2161,1744,2271,7375,7375,7375,42,1955,1544,1545,0,2161,1705,1706,7376,7376,7376,42,1955,1545,1564,0,2161,1706,1728,7377,7377,7377,42,1583,1582,1960,0,1750,1749,2167,7378,7378,7378,42,1583,1960,1604,0,1750,2167,1775,7379,7379,7379,42,3777,1961,1587,0,4234,2168,1754,7380,7380,7380,42,3777,1587,1604,0,4234,1754,1775,7381,7381,7381,42,1960,3778,3777,0,2167,4235,4234,7382,7382,7382,42,1960,3777,1604,0,2167,4234,1775,7383,7383,7383,42,1602,1599,1961,0,1772,1769,2168,7384,7384,7384,42,1602,1961,3777,0,1772,2168,4234,7385,7385,7385,42,3778,1960,1718,0,4235,2167,1894,7386,7386,7386,42,3778,1718,3779,0,4235,1894,4236,7387,7387,7387,42,3779,1718,1719,0,4236,1894,1895,7388,7388,7388,42,3779,1719,2028,0,4236,1895,2269,7389,7389,7389,42,3778,1637,1602,0,4235,1810,1772,7390,7390,7390,42,3778,1602,3777,0,4235,1772,4234,7391,7391,7391,42,3779,1640,1637,0,4236,1813,1810,7392,7392,7392,42,3779,1637,3778,0,4236,1810,4235,7393,7393,7393,42,1639,1640,3779,0,1812,1813,4236,7394,7394,7394,42,1639,3779,2028,0,1812,4236,2269,7395,7395,7395,42,2028,1719,3780,0,2269,1895,4237,7396,7396,7396,42,2028,3780,1938,0,2269,4237,2144,7397,7397,7397,42,3780,1719,1716,0,4237,1895,1892,7398,7398,7398,42,3780,1716,1936,0,4237,1892,2142,7399,7399,7399,42,1499,1477,1475,0,1659,1630,1628,7400,7400,7400,42,1499,1475,1498,0,1659,1628,1658,7401,7401,7401,42,1502,1507,1501,0,1662,4238,1661,7402,7402,7402,42,1502,1501,1498,0,1662,1661,1658,7403,7403,7403,42,3773,3770,1535,0,4240,4239,1696,7404,7404,7404,42,3773,1535,1536,0,4240,1696,1697,7405,7405,7405,42,3775,3773,1536,0,4241,4240,1697,7406,7406,7406,42,3775,1536,1537,0,4241,1697,1698,7407,7407,7407,42,1535,3770,2030,0,1696,4239,2272,7408,7408,7408,42,1535,2030,1991,0,1696,2272,2210,7409,7409,7409,42,1499,1500,3775,0,1659,1660,4241,7410,7410,7410,42,1499,3775,1537,0,1659,4241,1698,7411,7411,7411,42,1480,1482,1991,0,1633,1635,2210,7412,7412,7412,42,1480,1991,2031,0,1633,2210,2273,7413,7413,7413,42,3762,3761,2034,0,4219,4242,2276,7414,7414,7414,42,3762,2034,2035,0,4219,2276,2277,7415,7415,7415,42,3761,3763,3759,0,4242,4243,4208,7416,7416,7416,42,3761,3759,2034,0,4242,4208,2276,7417,7417,7417,42,3763,3764,3760,0,4243,4244,4209,7418,7418,7418,42,3763,3760,3759,0,4243,4209,4208,7419,7419,7419,42,3764,1507,1502,0,4245,4238,1662,7420,7420,7420,42,3764,1502,3760,0,4245,1662,4210,7421,7421,7421,42,1479,1480,2031,0,1632,1633,2273,7422,7422,7422,42,1479,2031,3765,0,1632,2273,4216,7423,7423,7423,42,1490,1491,3767,0,1644,1645,4218,7424,7424,7424,42,1490,3767,2035,0,1644,4218,2277,7425,7425,7425,42,3767,1491,1479,0,4218,1645,1632,7426,7426,7426,42,3767,1479,3765,0,4218,1632,4216,7427,7427,7427,42,3768,3767,3765,0,4220,4218,4216,7428,7428,7428,42,3768,3765,3766,0,4220,4216,4217,7429,7429,7429,42,3769,1993,3768,0,4221,2212,4233,7430,7430,7430,42,3769,3768,3766,0,4221,4233,4223,7431,7431,7431,42,2033,1992,1993,0,2275,2211,2212,7432,7432,7432,42,2033,1993,3769,0,2275,2212,4221,7433,7433,7433,42,1957,2033,3769,0,2164,2275,4221,7434,7434,7434,42,1957,3769,1959,0,2164,4221,2166,7435,7435,7435,42,2033,1957,1563,0,2275,2164,1727,7436,7436,7436,42,2033,1563,1545,0,2275,1727,1706,7437,7437,7437,42,1934,1565,1563,0,2140,1729,1727,7438,7438,7438,42,1934,1563,1957,0,2140,1727,2164,7439,7439,7439,42,3771,1541,1538,0,4226,1702,1699,7440,7440,7440,42,3771,1538,3770,0,4226,1699,4225,7441,7441,7441,42,3772,1528,1541,0,4227,1689,1702,7442,7442,7442,42,3772,1541,3771,0,4227,1702,4226,7443,7443,7443,42,1526,1528,3772,0,1687,1689,4227,7444,7444,7444,42,1526,3772,3774,0,1687,4227,4229,7445,7445,7445,42,3776,1516,1526,0,4231,1677,1687,7446,7446,7446,42,3776,1526,3774,0,4231,1687,4229,7447,7447,7447,42,1509,1516,3776,0,1670,1677,4231,7448,7448,7448,42,1509,3776,1508,0,1670,4231,1669,7449,7449,7449,42,3781,1315,1316,0,4246,1454,1455,7450,7450,7450,42,3781,1316,1307,0,4246,1455,1446,7451,7451,7451,42,1315,3781,1312,0,1454,4246,1451,7452,7452,7452,42,1315,1312,1310,0,1454,1451,1449,7453,7453,7453,42,1314,1315,1310,0,1453,1454,1449,7454,7454,7454,42,1314,1310,1311,0,1453,1449,1450,7455,7455,7455,42,3782,1320,1335,0,4247,1459,1477,7456,7456,7456,42,3782,1335,1336,0,4247,1477,1478,7457,7457,7457,42,3782,1314,1311,0,4247,1453,1450,7458,7458,7458,42,3782,1311,1320,0,4247,1450,1459,7459,7459,7459,42,3781,1307,1303,0,4246,1446,1442,7460,7460,7460,42,3781,1303,1312,0,4246,1442,1451,7461,7461,7461,42,3782,1336,1313,0,4247,1478,1452,7462,7462,7462,42,3782,1313,1314,0,4247,1452,1453,7463,7463,7463,42,3783,1982,1784,0,4248,2196,1961,7464,7464,7464,42,3783,1784,3780,0,4248,1961,4237,7465,7465,7465,42,1982,3783,3784,0,2196,4248,4249,7466,7466,7466,42,1982,3784,1802,0,2196,4249,1979,7467,7467,7467,42,3785,1777,1778,0,4250,1954,1955,7468,7468,7468,42,3785,1778,1938,0,4250,1955,2144,7469,7469,7469,42,1777,3785,3786,0,1954,4250,4251,7470,7470,7470,42,1777,3786,1786,0,1954,4251,1963,7471,7471,7471,42,3785,1938,3780,0,4250,2144,4237,7472,7472,7472,42,3785,3780,3786,0,4250,4237,4251,7473,7473,7473,42,3783,3780,1936,0,4248,4237,2142,7474,7474,7474,42,3783,1936,3784,0,4248,2142,4249,7475,7475,7475,42,1786,3786,3780,0,1963,4251,4237,7476,7476,7476,42,1786,3780,1784,0,1963,4237,1961,7477,7477,7477,42,3784,1936,1801,0,4249,2142,1978,7478,7478,7478,42,3784,1801,1802,0,4249,1978,1979,7479,7479,7479,42,3789,3788,3787,0,4254,4253,4252,7480,7480,7480,42,3789,3787,3790,0,4254,4252,4255,7481,7481,7481,42,3793,3792,3791,0,4258,4257,4256,7482,7482,7482,42,3793,3791,3794,0,4258,4256,4259,7483,7483,7483,42,3795,3791,3792,0,4260,4256,4257,7484,7484,7484,42,3795,3792,3796,0,4260,4257,4261,7485,7485,7485,42,3799,3798,3797,0,4264,4263,4262,7486,7486,7486,42,3799,3797,3800,0,4264,4262,4265,7487,7487,7487,42,3803,3802,3801,0,4268,4267,4266,7488,7488,7488,42,3803,3801,3804,0,4268,4266,4269,7489,7489,7489,42,3798,3806,3805,0,4263,4271,4270,7490,7490,7490,42,3798,3805,3797,0,4263,4270,4262,7491,7491,7491,42,3807,3802,3803,0,4272,4267,4268,7492,7492,7492,42,3807,3803,3808,0,4272,4268,4273,7493,7493,7493,42,3804,3801,3809,0,4269,4266,4274,7494,7494,7494,42,3804,3809,3810,0,4269,4274,4275,7495,7495,7495,42,3813,3812,3811,0,4278,4277,4276,7496,7496,7496,42,3813,3811,3814,0,4278,4276,4279,7497,7497,7497,42,3816,3815,3809,0,4281,4280,4274,7498,7498,7498,42,3816,3809,3817,0,4281,4274,4282,7499,7499,7499,42,3819,3818,3815,0,4284,4283,4280,7500,7500,7500,42,3819,3815,3816,0,4284,4280,4281,7501,7501,7501,42,3821,3820,3818,0,4286,4285,4283,7502,7502,7502,42,3821,3818,3819,0,4286,4283,4284,7503,7503,7503,42,3823,3822,3794,0,4288,4287,4259,7504,7504,7504,42,3823,3794,3791,0,4288,4259,4256,7505,7505,7505,42,3826,3825,3824,0,4291,4290,4289,7506,7506,7506,42,3826,3824,3827,0,4291,4289,4292,7507,7507,7507,42,3830,3829,3828,0,4295,4294,4293,7508,7508,7508,42,3830,3828,3831,0,4295,4293,4296,7509,7509,7509,42,3831,3833,3832,0,4296,4298,4297,7510,7510,7510,42,3831,3832,3830,0,4296,4297,4295,7511,7511,7511,42,3835,3834,3830,0,4300,4299,4295,7512,7512,7512,42,3835,3830,3832,0,4300,4295,4297,7513,7513,7513,42,3834,3836,3829,0,4299,4301,4294,7514,7514,7514,42,3834,3829,3830,0,4299,4294,4295,7515,7515,7515,42,3838,3837,3832,0,4303,4302,4297,7516,7516,7516,42,3838,3832,3833,0,4303,4297,4298,7517,7517,7517,42,3832,3837,3839,0,4297,4302,4304,7518,7518,7518,42,3832,3839,3835,0,4297,4304,4300,7519,7519,7519,42,3837,3841,3840,0,4302,4306,4305,7520,7520,7520,42,3837,3840,3839,0,4302,4305,4304,7521,7521,7521,42,3841,3843,3842,0,4309,4308,4307,7522,7522,7522,42,3841,3842,3840,0,4309,4307,4310,7523,7523,7523,42,3844,3841,3837,0,4311,4306,4302,7524,7524,7524,42,3844,3837,3838,0,4311,4302,4303,7525,7525,7525,42,3844,3845,3843,0,4313,4312,4308,7526,7526,7526,42,3844,3843,3841,0,4313,4308,4309,7527,7527,7527,42,3839,3840,3846,0,4304,4305,4314,7528,7528,7528,42,3839,3846,3847,0,4304,4314,4315,7529,7529,7529,42,3848,3846,3840,0,4317,4316,4310,7530,7530,7530,42,3848,3840,3842,0,4317,4310,4307,7531,7531,7531,42,3834,3835,3849,0,4299,4300,4318,7532,7532,7532,42,3834,3849,3850,0,4299,4318,4319,7533,7533,7533,42,3852,3851,3850,0,4321,4320,4319,7534,7534,7534,42,3852,3850,3849,0,4321,4319,4318,7535,7535,7535,42,3835,3839,3847,0,4300,4304,4315,7536,7536,7536,42,3835,3847,3849,0,4300,4315,4318,7537,7537,7537,42,3849,3847,3853,0,4318,4315,4322,7538,7538,7538,42,3849,3853,3852,0,4318,4322,4321,7539,7539,7539,42,3836,3855,3854,0,4301,4324,4323,7540,7540,7540,42,3836,3854,3829,0,4301,4323,4294,7541,7541,7541,42,3857,3856,3855,0,4326,4325,4324,7542,7542,7542,42,3857,3855,3836,0,4326,4324,4301,7543,7543,7543,42,3850,3857,3836,0,4319,4326,4301,7544,7544,7544,42,3850,3836,3834,0,4319,4301,4299,7545,7545,7545,42,3829,3854,3858,0,4294,4323,4327,7546,7546,7546,42,3829,3858,3828,0,4294,4327,4293,7547,7547,7547,42,3859,3855,3856,0,4328,4324,4325,7548,7548,7548,42,3859,3856,3860,0,4328,4325,4329,7549,7549,7549,42,3862,3861,3860,0,4331,4330,4329,7550,7550,7550,42,3862,3860,3856,0,4331,4329,4325,7551,7551,7551,42,3863,3862,3856,0,4332,4331,4325,7552,7552,7552,42,3863,3856,3857,0,4332,4325,4326,7553,7553,7553,42,3866,3865,3864,0,4335,4334,4333,7554,7554,7554,42,3866,3864,3867,0,4335,4333,4336,7555,7555,7555,42,3864,3869,3868,0,4333,4338,4337,7556,7556,7556,42,3864,3868,3870,0,4333,4337,4339,7557,7557,7557,42,3865,3866,3822,0,4341,4340,4287,7558,7558,7558,42,3865,3822,3823,0,4341,4287,4288,7559,7559,7559,42,3871,3867,3864,0,4342,4336,4333,7560,7560,7560,42,3871,3864,3870,0,4342,4333,4339,7561,7561,7561,42,3866,3867,3845,0,4335,4336,4312,7562,7562,7562,42,3866,3845,3844,0,4335,4312,4313,7563,7563,7563,42,3867,3871,3872,0,4336,4342,4343,7564,7564,7564,42,3867,3872,3845,0,4336,4343,4312,7565,7565,7565,42,3873,3871,3870,0,4344,4342,4339,7566,7566,7566,42,3873,3870,3874,0,4344,4339,4345,7567,7567,7567,42,3871,3873,3875,0,4342,4344,4346,7568,7568,7568,42,3871,3875,3872,0,4342,4346,4343,7569,7569,7569,42,3876,3858,3854,0,4347,4327,4323,7570,7570,7570,42,3876,3854,3877,0,4347,4323,4348,7571,7571,7571,42,3877,3879,3878,0,4348,4350,4349,7572,7572,7572,42,3877,3878,3876,0,4348,4349,4347,7573,7573,7573,42,3859,3880,3879,0,4328,4351,4350,7574,7574,7574,42,3859,3879,3877,0,4328,4350,4348,7575,7575,7575,42,3882,3881,3876,0,4353,4352,4347,7576,7576,7576,42,3882,3876,3878,0,4353,4347,4349,7577,7577,7577,42,3885,3884,3883,0,4356,4355,4354,7578,7578,7578,42,3885,3883,3886,0,4356,4354,4357,7579,7579,7579,42,3886,3883,3882,0,4357,4354,4353,7580,7580,7580,42,3886,3882,3887,0,4357,4353,4358,7581,7581,7581,42,3887,3873,3874,0,4358,4344,4345,7582,7582,7582,42,3887,3874,3886,0,4358,4345,4357,7583,7583,7583,42,3888,3885,3886,0,4359,4356,4357,7584,7584,7584,42,3888,3886,3874,0,4359,4357,4345,7585,7585,7585,42,3873,3887,3889,0,4344,4358,4360,7586,7586,7586,42,3873,3889,3875,0,4344,4360,4346,7587,7587,7587,42,3875,3889,3890,0,4346,4360,4361,7588,7588,7588,42,3875,3890,3891,0,4346,4361,4362,7589,7589,7589,42,3893,3892,3891,0,4364,4363,4362,7590,7590,7590,42,3893,3891,3890,0,4364,4362,4361,7591,7591,7591,42,3896,3895,3894,0,4367,4366,4365,7592,7592,7592,42,3896,3894,3897,0,4367,4365,4368,7593,7593,7593,42,3897,3894,3898,0,4368,4365,4369,7594,7594,7594,42,3897,3898,3899,0,4368,4369,4370,7595,7595,7595,42,3900,3894,3895,0,4371,4365,4366,7596,7596,7596,42,3900,3895,3901,0,4371,4366,4372,7597,7597,7597,42,3903,3796,3902,0,4374,4261,4373,7598,7598,7598,42,3903,3902,3904,0,4374,4373,4375,7599,7599,7599,42,3907,3906,3905,0,4378,4377,4376,7600,7600,7600,42,3907,3905,3908,0,4378,4376,4379,7601,7601,7601,42,3894,3900,3909,0,4365,4371,4380,7602,7602,7602,42,3894,3909,3898,0,4365,4380,4369,7603,7603,7603,42,3883,3910,3881,0,4354,4381,4352,7604,7604,7604,42,3883,3881,3882,0,4354,4352,4353,7605,7605,7605,42,3913,3912,3911,0,4384,4383,4382,7606,7606,7606,42,3913,3911,3914,0,4384,4382,4385,7607,7607,7607,42,3912,3819,3816,0,4383,4284,4281,7608,7608,7608,42,3912,3816,3911,0,4383,4281,4382,7609,7609,7609,42,3916,3915,3912,0,4387,4386,4383,7610,7610,7610,42,3916,3912,3913,0,4387,4383,4384,7611,7611,7611,42,3915,3821,3819,0,4386,4286,4284,7612,7612,7612,42,3915,3819,3912,0,4386,4284,4383,7613,7613,7613,42,3919,3918,3917,0,4390,4389,4388,7614,7614,7614,42,3919,3917,3920,0,4390,4388,4391,7615,7615,7615,42,3923,3922,3921,0,4394,4393,4392,7616,7616,7616,42,3923,3921,3924,0,4394,4392,4395,7617,7617,7617,42,3924,3921,3893,0,4395,4392,4364,7618,7618,7618,42,3924,3893,3880,0,4395,4364,4351,7619,7619,7619,42,3925,3891,3892,0,4396,4362,4363,7620,7620,7620,42,3925,3892,3926,0,4396,4363,4397,7621,7621,7621,42,3872,3875,3891,0,4343,4346,4362,7622,7622,7622,42,3872,3891,3925,0,4343,4362,4396,7623,7623,7623,42,3868,3888,3874,0,4337,4359,4345,7624,7624,7624,42,3868,3874,3870,0,4337,4345,4339,7625,7625,7625,42,3847,3846,3927,0,4315,4314,4398,7626,7626,7626,42,3847,3927,3853,0,4315,4398,4322,7627,7627,7627,42,3826,3929,3928,0,4291,4400,4399,7628,7628,7628,42,3826,3928,3930,0,4291,4399,4401,7629,7629,7629,42,3930,3931,3825,0,4401,4402,4290,7630,7630,7630,42,3930,3825,3826,0,4401,4290,4291,7631,7631,7631,42,3884,3908,3910,0,4355,4379,4381,7632,7632,7632,42,3884,3910,3883,0,4355,4381,4354,7633,7633,7633,42,3799,3800,3932,0,4264,4265,4403,7634,7634,7634,42,3799,3932,3817,0,4264,4403,4282,7635,7635,7635,42,3817,3932,3911,0,4282,4403,4382,7636,7636,7636,42,3817,3911,3816,0,4282,4382,4281,7637,7637,7637,42,3800,3811,3812,0,4265,4276,4277,7638,7638,7638,42,3800,3812,3932,0,4265,4277,4403,7639,7639,7639,42,3934,3933,3909,0,4405,4404,4380,7640,7640,7640,42,3934,3909,3935,0,4405,4380,4406,7641,7641,7641,42,3807,3934,3935,0,4272,4405,4406,7642,7642,7642,42,3807,3935,3806,0,4272,4406,4271,7643,7643,7643,42,3937,3936,3848,0,4408,4407,4317,7644,7644,7644,42,3937,3848,3938,0,4408,4317,4409,7645,7645,7645,42,3939,3937,3938,0,4410,4408,4409,7646,7646,7646,42,3939,3938,3940,0,4410,4409,4411,7647,7647,7647,42,3941,3811,3800,0,4412,4276,4265,7648,7648,7648,42,3941,3800,3797,0,4412,4265,4262,7649,7649,7649,42,3942,3941,3797,0,4413,4412,4262,7650,7650,7650,42,3942,3797,3805,0,4413,4262,4270,7651,7651,7651,42,3831,3793,3794,0,4296,4258,4259,7652,7652,7652,42,3831,3794,3833,0,4296,4259,4298,7653,7653,7653,42,3822,3838,3833,0,4287,4303,4298,7654,7654,7654,42,3822,3833,3794,0,4287,4298,4259,7655,7655,7655,42,3851,3863,3857,0,4320,4332,4326,7656,7656,7656,42,3851,3857,3850,0,4320,4326,4319,7657,7657,7657,42,3880,3859,3860,0,4351,4328,4329,7658,7658,7658,42,3880,3860,3924,0,4351,4329,4395,7659,7659,7659,42,3861,3923,3924,0,4330,4394,4395,7660,7660,7660,42,3861,3924,3860,0,4330,4395,4329,7661,7661,7661,42,3943,3942,3805,0,4414,4413,4270,7662,7662,7662,42,3943,3805,3944,0,4414,4270,4415,7663,7663,7663,42,3946,3945,3942,0,4417,4416,4413,7664,7664,7664,42,3946,3942,3943,0,4417,4413,4414,7665,7665,7665,42,3878,3889,3887,0,4349,4360,4358,7666,7666,7666,42,3878,3887,3882,0,4349,4358,4353,7667,7667,7667,42,3880,3893,3890,0,4351,4364,4361,7668,7668,7668,42,3880,3890,3879,0,4351,4361,4350,7669,7669,7669,42,3903,3948,3947,0,4374,4419,4418,7670,7670,7670,42,3903,3947,3949,0,4374,4418,4420,7671,7671,7671,42,3947,3929,3950,0,4418,4400,4421,7672,7672,7672,42,3947,3950,3951,0,4418,4421,4422,7673,7673,7673,42,3921,3940,3892,0,4392,4411,4363,7674,7674,7674,42,3921,3892,3893,0,4392,4363,4364,7675,7675,7675,42,3845,3872,3925,0,4312,4343,4396,7676,7676,7676,42,3845,3925,3843,0,4312,4396,4308,7677,7677,7677,42,3954,3953,3952,0,4425,4424,4423,7678,7678,7678,42,3954,3952,3955,0,4425,4423,4426,7679,7679,7679,42,3843,3925,3926,0,4308,4396,4397,7680,7680,7680,42,3843,3926,3842,0,4308,4397,4307,7681,7681,7681,42,3940,3938,3926,0,4411,4409,4397,7682,7682,7682,42,3940,3926,3892,0,4411,4397,4363,7683,7683,7683,42,3946,3907,3908,0,4417,4378,4379,7684,7684,7684,42,3946,3908,3884,0,4417,4379,4355,7685,7685,7685,42,3944,3900,3901,0,4415,4371,4372,7686,7686,7686,42,3944,3901,3943,0,4415,4372,4414,7687,7687,7687,42,3922,3939,3940,0,4393,4410,4411,7688,7688,7688,42,3922,3940,3921,0,4393,4411,4392,7689,7689,7689,42,3936,3927,3846,0,4407,4427,4316,7690,7690,7690,42,3936,3846,3848,0,4407,4316,4317,7691,7691,7691,42,3944,3805,3806,0,4415,4270,4271,7692,7692,7692,42,3944,3806,3935,0,4415,4271,4406,7693,7693,7693,42,3956,3954,3955,0,4428,4425,4426,7694,7694,7694,42,3956,3955,3933,0,4428,4426,4404,7695,7695,7695,42,3959,3958,3957,0,4431,4430,4429,7696,7696,7696,42,3959,3957,3960,0,4431,4429,4432,7697,7697,7697,42,3962,3961,3960,0,4434,4433,4432,7698,7698,7698,42,3962,3960,3957,0,4434,4432,4429,7699,7699,7699,42,3963,3957,3958,0,4435,4429,4430,7700,7700,7700,42,3963,3958,3964,0,4435,4430,4436,7701,7701,7701,42,3966,3965,3808,0,4438,4437,4273,7702,7702,7702,42,3966,3808,3803,0,4438,4273,4268,7703,7703,7703,42,3968,3810,3967,0,4440,4275,4439,7704,7704,7704,42,3968,3967,3969,0,4440,4439,4441,7705,7705,7705,42,3970,3790,3962,0,4442,4255,4434,7706,7706,7706,42,3970,3962,3971,0,4442,4434,4443,7707,7707,7707,42,3974,3973,3972,0,4446,4445,4444,7708,7708,7708,42,3974,3972,3975,0,4446,4444,4447,7709,7709,7709,42,3977,3976,3788,0,4450,4449,4448,7710,7710,7710,42,3977,3788,3789,0,4450,4448,4451,7711,7711,7711,42,3980,3979,3978,0,4454,4453,4452,7712,7712,7712,42,3980,3978,3981,0,4454,4452,4455,7713,7713,7713,42,3976,3977,3981,0,4449,4450,4455,7714,7714,7714,42,3976,3981,3978,0,4449,4455,4452,7715,7715,7715,42,3855,3859,3877,0,4324,4328,4348,7716,7716,7716,42,3855,3877,3854,0,4324,4348,4323,7717,7717,7717,42,3932,3812,3914,0,4403,4277,4385,7718,7718,7718,42,3932,3914,3911,0,4403,4385,4382,7719,7719,7719,42,3866,3844,3838,0,4340,4311,4303,7720,7720,7720,42,3866,3838,3822,0,4340,4303,4287,7721,7721,7721,42,3879,3890,3889,0,4350,4361,4360,7722,7722,7722,42,3879,3889,3878,0,4350,4360,4349,7723,7723,7723,42,3929,3947,3948,0,4400,4418,4419,7724,7724,7724,42,3929,3948,3928,0,4400,4419,4399,7725,7725,7725,42,3827,3950,3929,0,4292,4421,4400,7726,7726,7726,42,3827,3929,3826,0,4292,4400,4291,7727,7727,7727,42,3938,3848,3842,0,4409,4317,4307,7728,7728,7728,42,3938,3842,3926,0,4409,4307,4397,7729,7729,7729,42,3900,3944,3935,0,4371,4415,4406,7730,7730,7730,42,3900,3935,3909,0,4371,4406,4380,7731,7731,7731,42,3961,3962,3790,0,4433,4434,4255,7732,7732,7732,42,3961,3790,3787,0,4433,4255,4252,7733,7733,7733,42,3984,3983,3982,0,4458,4457,4456,7734,7734,7734,42,3984,3982,3985,0,4458,4456,4459,7735,7735,7735,42,3987,3986,3983,0,4461,4460,4457,7736,7736,7736,42,3987,3983,3984,0,4461,4457,4458,7737,7737,7737,42,3989,3988,3986,0,4463,4462,4460,7738,7738,7738,42,3989,3986,3987,0,4463,4460,4461,7739,7739,7739,42,3988,3989,3990,0,4466,4465,4464,7740,7740,7740,42,3988,3990,3991,0,4466,4464,4467,7741,7741,7741,42,3964,3958,3992,0,4436,4430,4468,7742,7742,7742,42,3964,3992,3993,0,4436,4468,4469,7743,7743,7743,42,3965,3995,3994,0,4437,4471,4470,7744,7744,7744,42,3965,3994,3808,0,4437,4470,4273,7745,7745,7745,42,3995,3996,3956,0,4471,4472,4428,7746,7746,7746,42,3995,3956,3994,0,4471,4428,4470,7747,7747,7747,42,3953,3954,3997,0,4424,4425,4473,7748,7748,7748,42,3953,3997,3998,0,4424,4473,4474,7749,7749,7749,42,3798,3799,3801,0,4263,4264,4266,7750,7750,7750,42,3798,3801,3802,0,4263,4266,4267,7751,7751,7751,42,3806,3798,3802,0,4271,4263,4267,7752,7752,7752,42,3806,3802,3807,0,4271,4267,4272,7753,7753,7753,42,3817,3809,3801,0,4282,4274,4266,7754,7754,7754,42,3817,3801,3799,0,4282,4266,4264,7755,7755,7755,42,3810,3809,3815,0,4275,4274,4280,7756,7756,7756,42,3810,3815,3967,0,4275,4280,4439,7757,7757,7757,42,3967,3815,3818,0,4439,4280,4283,7758,7758,7758,42,3967,3818,3991,0,4439,4283,4467,7759,7759,7759,42,3820,3988,3991,0,4285,4466,4467,7760,7760,7760,42,3820,3991,3818,0,4285,4467,4283,7761,7761,7761,42,3825,3983,3986,0,4290,4457,4460,7762,7762,7762,42,3825,3986,3824,0,4290,4460,4289,7763,7763,7763,42,3931,3982,3983,0,4402,4456,4457,7764,7764,7764,42,3931,3983,3825,0,4402,4457,4290,7765,7765,7765,42,3994,3956,3933,0,4470,4428,4404,7766,7766,7766,42,3994,3933,3934,0,4470,4404,4405,7767,7767,7767,42,3808,3994,3934,0,4273,4470,4405,7768,7768,7768,42,3808,3934,3807,0,4273,4405,4272,7769,7769,7769,42,3931,3930,3899,0,4402,4401,4370,7770,7770,7770,42,3931,3899,3952,0,4402,4370,4423,7771,7771,7771,42,3898,3909,3933,0,4369,4380,4404,7772,7772,7772,42,3898,3933,3955,0,4369,4404,4426,7773,7773,7773,42,3902,4000,3999,0,4373,4476,4475,7774,7774,7774,42,3902,3999,3905,0,4373,4475,4376,7775,7775,7775,42,3999,4000,4001,0,4475,4476,4477,7776,7776,7776,42,3999,4001,4002,0,4475,4477,4478,7777,7777,7777,42,4001,4000,3792,0,4477,4476,4257,7778,7778,7778,42,4001,3792,3793,0,4477,4257,4258,7779,7779,7779,42,3908,3905,3999,0,4379,4376,4475,7780,7780,7780,42,3908,3999,3910,0,4379,4475,4381,7781,7781,7781,42,3910,3999,4002,0,4381,4475,4478,7782,7782,7782,42,3910,4002,3881,0,4381,4478,4352,7783,7783,7783,42,3831,3828,4001,0,4296,4293,4477,7784,7784,7784,42,3831,4001,3793,0,4296,4477,4258,7785,7785,7785,42,3881,4002,3858,0,4352,4478,4327,7786,7786,7786,42,3881,3858,3876,0,4352,4327,4347,7787,7787,7787,42,3796,3792,4000,0,4261,4257,4476,7788,7788,7788,42,3796,4000,3902,0,4261,4476,4373,7789,7789,7789,42,3897,3899,3930,0,4368,4370,4401,7790,7790,7790,42,3897,3930,3928,0,4368,4401,4399,7791,7791,7791,42,3904,3902,3905,0,4375,4373,4376,7792,7792,7792,42,3904,3905,3906,0,4375,4376,4377,7793,7793,7793,42,3982,3931,3952,0,4456,4402,4423,7794,7794,7794,42,3982,3952,3953,0,4456,4423,4424,7795,7795,7795,42,3955,3952,3899,0,4426,4423,4370,7796,7796,7796,42,3955,3899,3898,0,4426,4370,4369,7797,7797,7797,42,3828,3858,4002,0,4293,4327,4478,7798,7798,7798,42,3828,4002,4001,0,4293,4478,4477,7799,7799,7799,42,3945,4003,3941,0,4416,4479,4412,7800,7800,7800,42,3945,3941,3942,0,4416,4412,4413,7801,7801,7801,42,4004,3823,3791,0,4480,4288,4256,7802,7802,7802,42,4004,3791,3795,0,4480,4256,4260,7803,7803,7803,42,3928,3948,3896,0,4399,4419,4367,7804,7804,7804,42,3928,3896,3897,0,4399,4367,4368,7805,7805,7805,42,3820,3821,3827,0,4482,4481,4292,7806,7806,7806,42,3820,3827,3824,0,4482,4292,4289,7807,7807,7807,42,3915,3916,3951,0,4484,4483,4422,7808,7808,7808,42,3915,3951,3950,0,4484,4422,4421,7809,7809,7809,42,3821,3915,3950,0,4481,4484,4421,7810,7810,7810,42,3821,3950,3827,0,4481,4421,4292,7811,7811,7811,42,3988,3820,3824,0,4462,4482,4289,7812,7812,7812,42,3988,3824,3986,0,4462,4289,4460,7813,7813,7813,42,4005,3992,3958,0,4485,4468,4430,7814,7814,7814,42,4005,3958,3959,0,4485,4430,4431,7815,7815,7815,42,4006,3992,4005,0,4486,4468,4485,7816,7816,7816,42,4006,4005,4007,0,4486,4485,4487,7817,7817,7817,42,4008,4006,4007,0,4488,4486,4487,7818,7818,7818,42,4008,4007,4009,0,4488,4487,4489,7819,7819,7819,42,4010,4008,4009,0,4490,4488,4489,7820,7820,7820,42,4010,4009,4011,0,4490,4489,4491,7821,7821,7821,42,3974,4010,4011,0,4446,4490,4491,7822,7822,7822,42,3974,4011,3973,0,4446,4491,4445,7823,7823,7823,42,4013,4012,4010,0,4493,4492,4490,7824,7824,7824,42,4013,4010,3974,0,4493,4490,4446,7825,7825,7825,42,3985,3982,3953,0,4459,4456,4424,7826,7826,7826,42,3985,3953,3998,0,4459,4424,4474,7827,7827,7827,42,3979,3980,3975,0,4453,4454,4447,7828,7828,7828,42,3979,3975,3972,0,4453,4447,4444,7829,7829,7829,42,3964,4014,3968,0,4436,4494,4440,7830,7830,7830,42,3964,3968,3963,0,4436,4440,4435,7831,7831,7831,42,4015,3993,3992,0,4495,4469,4468,7832,7832,7832,42,4015,3992,4006,0,4495,4468,4486,7833,7833,7833,42,3971,3962,3957,0,4443,4434,4429,7834,7834,7834,42,3971,3957,3963,0,4443,4429,4435,7835,7835,7835,42,3971,3969,3990,0,4443,4441,4464,7836,7836,7836,42,3971,3990,3970,0,4443,4464,4442,7837,7837,7837,42,4016,3980,3981,0,4496,4454,4455,7838,7838,7838,42,4016,3981,4017,0,4496,4455,4497,7839,7839,7839,42,4017,3981,3977,0,4497,4455,4450,7840,7840,7840,42,4017,3977,4018,0,4497,4450,4498,7841,7841,7841,42,4018,3977,3789,0,4498,4450,4451,7842,7842,7842,42,4018,3789,4019,0,4498,4451,4499,7843,7843,7843,42,4019,3789,3790,0,4500,4254,4255,7844,7844,7844,42,4019,3790,3970,0,4500,4255,4442,7845,7845,7845,42,3993,3966,4014,0,4469,4438,4494,7846,7846,7846,42,3993,4014,3964,0,4469,4494,4436,7847,7847,7847,42,4006,4008,4020,0,4486,4488,4501,7848,7848,7848,42,4006,4020,4015,0,4486,4501,4495,7849,7849,7849,42,4008,4010,4012,0,4488,4490,4492,7850,7850,7850,42,4008,4012,4020,0,4488,4492,4501,7851,7851,7851,42,4013,3974,3975,0,4493,4446,4447,7852,7852,7852,42,4013,3975,4021,0,4493,4447,4502,7853,7853,7853,42,3997,3996,4012,0,4473,4472,4492,7854,7854,7854,42,3997,4012,4013,0,4473,4492,4493,7855,7855,7855,42,4021,3975,3980,0,4502,4447,4454,7856,7856,7856,42,4021,3980,4016,0,4502,4454,4496,7857,7857,7857,42,4022,3868,3869,0,4503,4337,4338,7858,7858,7858,42,4022,3869,3919,0,4503,4338,4390,7859,7859,7859,42,3904,3896,3948,0,4375,4367,4419,7860,7860,7860,42,3904,3948,3903,0,4375,4419,4374,7861,7861,7861,42,3901,3895,3906,0,4372,4366,4377,7862,7862,7862,42,3901,3906,3907,0,4372,4377,4378,7863,7863,7863,42,4023,3918,3919,0,4504,4389,4390,7864,7864,7864,42,4023,3919,3869,0,4504,4390,4338,7865,7865,7865,42,3884,3885,3945,0,4355,4356,4416,7866,7866,7866,42,3884,3945,3946,0,4355,4416,4417,7867,7867,7867,42,3949,3795,3796,0,4420,4260,4261,7868,7868,7868,42,3949,3796,3903,0,4420,4261,4374,7869,7869,7869,42,4024,4004,3795,0,4505,4480,4260,7870,7870,7870,42,4024,3795,3949,0,4505,4260,4420,7871,7871,7871,42,3943,3901,3907,0,4414,4372,4378,7872,7872,7872,42,3943,3907,3946,0,4414,4378,4417,7873,7873,7873,42,3906,3895,3896,0,4377,4366,4367,7874,7874,7874,42,3906,3896,3904,0,4377,4367,4375,7875,7875,7875,42,3888,3868,4022,0,4359,4337,4503,7876,7876,7876,42,3888,4022,4003,0,4359,4503,4479,7877,7877,7877,42,3885,3888,4003,0,4356,4359,4479,7878,7878,7878,42,3885,4003,3945,0,4356,4479,4416,7879,7879,7879,42,3965,3966,3993,0,4437,4438,4469,7880,7880,7880,42,3965,3993,4015,0,4437,4469,4495,7881,7881,7881,42,3969,3971,3963,0,4441,4443,4435,7882,7882,7882,42,3969,3963,3968,0,4441,4435,4440,7883,7883,7883,42,3985,4016,4017,0,4459,4496,4497,7884,7884,7884,42,3985,4017,3984,0,4459,4497,4458,7885,7885,7885,42,3984,4017,4018,0,4458,4497,4498,7886,7886,7886,42,3984,4018,3987,0,4458,4498,4461,7887,7887,7887,42,3987,4018,4019,0,4461,4498,4499,7888,7888,7888,42,3987,4019,3989,0,4461,4499,4463,7889,7889,7889,42,3989,4019,3970,0,4465,4500,4442,7890,7890,7890,42,3989,3970,3990,0,4465,4442,4464,7891,7891,7891,42,4015,4020,3995,0,4495,4501,4471,7892,7892,7892,42,4015,3995,3965,0,4495,4471,4437,7893,7893,7893,42,4020,4012,3996,0,4501,4492,4472,7894,7894,7894,42,4020,3996,3995,0,4501,4472,4471,7895,7895,7895,42,3998,3997,4013,0,4474,4473,4493,7896,7896,7896,42,3998,4013,4021,0,4474,4493,4502,7897,7897,7897,42,3998,4021,4016,0,4474,4502,4496,7898,7898,7898,42,3998,4016,3985,0,4474,4496,4459,7899,7899,7899,42,4014,3804,3810,0,4494,4269,4275,7900,7900,7900,42,4014,3810,3968,0,4494,4275,4440,7901,7901,7901,42,3969,3967,3991,0,4441,4439,4467,7902,7902,7902,42,3969,3991,3990,0,4441,4467,4464,7903,7903,7903,42,3966,3803,3804,0,4438,4268,4269,7904,7904,7904,42,3966,3804,4014,0,4438,4269,4494,7905,7905,7905,42,3954,3956,3996,0,4425,4428,4472,7906,7906,7906,42,3954,3996,3997,0,4425,4472,4473,7907,7907,7907,42,3949,3947,3951,0,4420,4418,4422,7908,7908,7908,42,3949,3951,4024,0,4420,4422,4505,7909,7909,7909,42,4024,3951,3916,0,4505,4422,4483,7910,7910,7910,42,4024,3916,3918,0,4505,4483,4506,7911,7911,7911,42,4004,4024,3918,0,4480,4505,4506,7912,7912,7912,42,4004,3918,4023,0,4480,4506,4507,7913,7913,7913,42,3823,4004,4023,0,4288,4480,4507,7914,7914,7914,42,3823,4023,3865,0,4288,4507,4341,7915,7915,7915,42,3865,4023,3869,0,4334,4504,4338,7916,7916,7916,42,3865,3869,3864,0,4334,4338,4333,7917,7917,7917,42,3913,3917,3918,0,4384,4388,4389,7918,7918,7918,42,3913,3918,3916,0,4384,4389,4387,7919,7919,7919,42,3917,3913,3914,0,4388,4384,4385,7920,7920,7920,42,3917,3914,3920,0,4388,4385,4391,7921,7921,7921,42,3920,3914,3812,0,4391,4385,4277,7922,7922,7922,42,3920,3812,3813,0,4391,4277,4278,7923,7923,7923,42,3813,4022,3919,0,4278,4503,4390,7924,7924,7924,42,3813,3919,3920,0,4278,4390,4391,7925,7925,7925,42,3814,4003,4022,0,4279,4479,4503,7926,7926,7926,42,3814,4022,3813,0,4279,4503,4278,7927,7927,7927,42,3811,3941,4003,0,4276,4412,4479,7928,7928,7928,42,3811,4003,3814,0,4276,4479,4279,7929,7929,7929,42,4027,4026,4025,0,4510,4509,4508,7930,7930,7930,42,4027,4025,4028,0,4510,4508,4511,7931,7931,7931,42,4027,4030,4029,0,4510,4513,4512,7932,7932,7932,42,4027,4029,4026,0,4510,4512,4509,7933,7933,7933,42,4032,4031,4028,0,4515,4514,4511,7934,7934,7934,42,4032,4028,4025,0,4515,4511,4508,7935,7935,7935,42,3936,3937,4026,0,4407,4408,4509,7936,7936,7936,42,3936,4026,4029,0,4407,4509,4512,7937,7937,7937,42,3939,4025,4026,0,4410,4508,4509,7938,7938,7938,42,3939,4026,3937,0,4410,4509,4408,7939,7939,7939,42,4034,4033,3852,0,4517,4516,4321,7940,7940,7940,42,4034,3852,3853,0,4517,4321,4322,7941,7941,7941,42,3851,3852,4033,0,4320,4321,4516,7942,7942,7942,42,3851,4033,4035,0,4320,4516,4518,7943,7943,7943,42,4038,4037,4036,0,4521,4520,4519,7944,7944,7944,42,4038,4036,4039,0,4521,4519,4522,7945,7945,7945,42,4040,4037,4034,0,4523,4520,4517,7946,7946,7946,42,4040,4034,4041,0,4523,4517,4524,7947,7947,7947,42,3863,3851,4035,0,4332,4320,4518,7948,7948,7948,42,3863,4035,4042,0,4332,4518,4525,7949,7949,7949,42,4045,4044,4043,0,4528,4527,4526,7950,7950,7950,42,4045,4043,4042,0,4528,4526,4525,7951,7951,7951,42,4042,4043,3862,0,4525,4526,4331,7952,7952,7952,42,4042,3862,3863,0,4525,4331,4332,7953,7953,7953,42,4047,4044,4046,0,4530,4527,4529,7954,7954,7954,42,4047,4046,4048,0,4530,4529,4531,7955,7955,7955,42,4043,4049,3861,0,4526,4532,4330,7956,7956,7956,42,4043,3861,3862,0,4526,4330,4331,7957,7957,7957,42,4050,4032,3922,0,4533,4515,4393,7958,7958,7958,42,4050,3922,3923,0,4533,4393,4394,7959,7959,7959,42,4052,4031,4051,0,4535,4514,4534,7960,7960,7960,42,4052,4051,4053,0,4535,4534,4536,7961,7961,7961,42,4053,4051,4047,0,4536,4534,4530,7962,7962,7962,42,4053,4047,4048,0,4536,4530,4531,7963,7963,7963,42,3927,3936,4029,0,4427,4407,4512,7964,7964,7964,42,3927,4029,4041,0,4427,4512,4537,7965,7965,7965,42,4040,4030,4054,0,4539,4513,4538,7966,7966,7966,42,4040,4054,4055,0,4539,4538,4540,7967,7967,7967,42,3853,3927,4041,0,4322,4398,4524,7968,7968,7968,42,3853,4041,4034,0,4322,4524,4517,7969,7969,7969,42,4049,4050,3923,0,4532,4533,4394,7970,7970,7970,42,4049,3923,3861,0,4532,4394,4330,7971,7971,7971,42,4032,4025,3939,0,4515,4508,4410,7972,7972,7972,42,4032,3939,3922,0,4515,4410,4393,7973,7973,7973,42,4038,4056,4035,0,4521,4541,4518,7974,7974,7974,42,4038,4035,4033,0,4521,4518,4516,7975,7975,7975,42,4056,4045,4042,0,4541,4528,4525,7976,7976,7976,42,4056,4042,4035,0,4541,4525,4518,7977,7977,7977,42,4028,4058,4057,0,4511,4543,4542,7978,7978,7978,42,4028,4057,4027,0,4511,4542,4510,7979,7979,7979,42,4057,4054,4030,0,4542,4538,4513,7980,7980,7980,42,4057,4030,4027,0,4542,4513,4510,7981,7981,7981,42,4031,4052,4058,0,4514,4535,4543,7982,7982,7982,42,4031,4058,4028,0,4514,4543,4511,7983,7983,7983,42,4033,4034,4037,0,4516,4517,4520,7984,7984,7984,42,4033,4037,4038,0,4516,4520,4521,7985,7985,7985,42,4055,4036,4037,0,4544,4519,4520,7986,7986,7986,42,4055,4037,4040,0,4544,4520,4523,7987,7987,7987,42,4059,4046,4044,0,4545,4529,4527,7988,7988,7988,42,4059,4044,4045,0,4545,4527,4528,7989,7989,7989,42,4049,4043,4044,0,4532,4526,4527,7990,7990,7990,42,4049,4044,4047,0,4532,4527,4530,7991,7991,7991,42,4051,4031,4032,0,4534,4514,4515,7992,7992,7992,42,4051,4032,4050,0,4534,4515,4533,7993,7993,7993,42,4047,4051,4050,0,4530,4534,4533,7994,7994,7994,42,4047,4050,4049,0,4530,4533,4532,7995,7995,7995,42,4041,4029,4030,0,4537,4512,4513,7996,7996,7996,42,4041,4030,4040,0,4537,4513,4539,7997,7997,7997,42,4039,4060,4056,0,4522,4546,4541,7998,7998,7998,42,4039,4056,4038,0,4522,4541,4521,7999,7999,7999,42,4060,4059,4045,0,4546,4545,4528,8000,8000,8000,42,4060,4045,4056,0,4546,4528,4541,8001,8001,8001,42,4063,4062,4061,0,4549,4548,4547,8002,8002,8002,42,4063,4061,4064,0,4549,4547,4550,8003,8003,8003,42,4066,4065,4062,0,4552,4551,4548,8004,8004,8004,42,4066,4062,4063,0,4552,4548,4549,8005,8005,8005,42,4062,4068,4067,0,4548,4554,4553,8006,8006,8006,42,4062,4067,4061,0,4548,4553,4547,8007,8007,8007,42,4065,4069,4068,0,4551,4555,4554,8008,8008,8008,42,4065,4068,4062,0,4551,4554,4548,8009,8009,8009,42,4070,4067,4068,0,4558,4557,4556,8010,8010,8010,42,4070,4068,4071,0,4558,4556,4559,8011,8011,8011,42,4072,4070,4071,0,4560,4558,4559,8012,8012,8012,42,4072,4071,4073,0,4560,4559,4561,8013,8013,8013,42,4073,4075,4074,0,4561,4563,4562,8014,8014,8014,42,4073,4074,4072,0,4561,4562,4560,8015,8015,8015,42,4075,4073,4076,0,4563,4561,4564,8016,8016,8016,42,4075,4076,4077,0,4563,4564,4565,8017,8017,8017,42,4075,4079,4078,0,4563,4567,4566,8018,8018,8018,42,4075,4078,4074,0,4563,4566,4562,8019,8019,8019,42,4080,4078,4079,0,4568,4566,4567,8020,8020,8020,42,4080,4079,4081,0,4568,4567,4569,8021,8021,8021,42,4079,4075,4077,0,4567,4563,4565,8022,8022,8022,42,4079,4077,4082,0,4567,4565,4570,8023,8023,8023,42,4082,4083,4081,0,4570,4571,4569,8024,8024,8024,42,4082,4081,4079,0,4570,4569,4567,8025,8025,8025,42,4081,4085,4084,0,4569,4573,4572,8026,8026,8026,42,4081,4084,4080,0,4569,4572,4568,8027,8027,8027,42,4083,4086,4085,0,4571,4574,4573,8028,8028,8028,42,4083,4085,4081,0,4571,4573,4569,8029,8029,8029,42,4089,4088,4087,0,4577,4576,4575,8030,8030,8030,42,4089,4087,4090,0,4577,4575,4578,8031,8031,8031,42,4092,4091,4088,0,4580,4579,4576,8032,8032,8032,42,4092,4088,4089,0,4580,4576,4577,8033,8033,8033,42,4088,4094,4093,0,4583,4582,4581,8034,8034,8034,42,4088,4093,4087,0,4583,4581,4584,8035,8035,8035,42,4091,4095,4094,0,4586,4585,4582,8036,8036,8036,42,4091,4094,4088,0,4586,4582,4583,8037,8037,8037,42,4090,4087,4069,0,4578,4575,4555,8038,8038,8038,42,4090,4069,4065,0,4578,4555,4551,8039,8039,8039,42,4087,4093,4096,0,4584,4581,4587,8040,8040,8040,42,4087,4096,4069,0,4584,4587,4588,8041,8041,8041,42,4098,4097,4095,0,4590,4589,4585,8042,8042,8042,42,4098,4095,4099,0,4590,4585,4591,8043,8043,8043,42,4097,4098,4077,0,4589,4590,4565,8044,8044,8044,42,4097,4077,4076,0,4589,4565,4564,8045,8045,8045,42,4094,4095,4097,0,4582,4585,4589,8046,8046,8046,42,4094,4097,4093,0,4582,4589,4581,8047,8047,8047,42,4076,4096,4093,0,4564,4587,4581,8048,8048,8048,42,4076,4093,4097,0,4564,4581,4589,8049,8049,8049,42,4098,4100,4082,0,4590,4592,4570,8050,8050,8050,42,4098,4082,4077,0,4590,4570,4565,8051,8051,8051,42,4099,4101,4100,0,4591,4593,4592,8052,8052,8052,42,4099,4100,4098,0,4591,4592,4590,8053,8053,8053,42,4100,4101,4102,0,4592,4593,4594,8054,8054,8054,42,4100,4102,4103,0,4592,4594,4595,8055,8055,8055,42,4083,4082,4100,0,4571,4570,4592,8056,8056,8056,42,4083,4100,4103,0,4571,4592,4595,8057,8057,8057,42,4103,4102,4104,0,4595,4594,4596,8058,8058,8058,42,4103,4104,4105,0,4595,4596,4597,8059,8059,8059,42,4105,4086,4083,0,4597,4574,4571,8060,8060,8060,42,4105,4083,4103,0,4597,4571,4595,8061,8061,8061,42,4105,4104,4106,0,4597,4596,4598,8062,8062,8062,42,4105,4106,4107,0,4597,4598,4599,8063,8063,8063,42,4086,4105,4107,0,4574,4597,4599,8064,8064,8064,42,4086,4107,4108,0,4574,4599,4600,8065,8065,8065,42,4110,4109,4108,0,4603,4602,4601,8066,8066,8066,42,4110,4108,4107,0,4603,4601,4604,8067,8067,8067,42,4106,4104,4102,0,4598,4596,4594,8068,8068,8068,42,4106,4102,4111,0,4598,4594,4605,8069,8069,8069,42,4112,4084,4085,0,4606,4572,4573,8070,8070,8070,42,4112,4085,4113,0,4606,4573,4607,8071,8071,8071,42,4086,4108,4113,0,4574,4600,4607,8072,8072,8072,42,4086,4113,4085,0,4574,4607,4573,8073,8073,8073,42,4113,4115,4114,0,4610,4609,4608,8074,8074,8074,42,4113,4114,4112,0,4610,4608,4611,8075,8075,8075,42,4109,4115,4113,0,4602,4609,4610,8076,8076,8076,42,4109,4113,4108,0,4602,4610,4601,8077,8077,8077,42,4069,4096,4071,0,4588,4587,4559,8078,8078,8078,42,4069,4071,4068,0,4588,4559,4556,8079,8079,8079,42,4095,4091,4116,0,4585,4586,4612,8080,8080,8080,42,4095,4116,4099,0,4585,4612,4591,8081,8081,8081,42,4117,4116,4091,0,4614,4613,4579,8082,8082,8082,42,4117,4091,4092,0,4614,4579,4580,8083,8083,8083,42,4118,4101,4099,0,4615,4593,4591,8084,8084,8084,42,4118,4099,4116,0,4615,4591,4612,8085,8085,8085,42,4111,4102,4101,0,4605,4594,4593,8086,8086,8086,42,4111,4101,4118,0,4605,4593,4615,8087,8087,8087,42,4119,4109,4110,0,4616,4602,4603,8088,8088,8088,42,4119,4110,4120,0,4616,4603,4617,8089,8089,8089,42,4121,4089,4090,0,4618,4577,4578,8090,8090,8090,42,4121,4090,4122,0,4618,4578,4619,8091,8091,8091,42,4122,4090,4065,0,4619,4578,4551,8092,8092,8092,42,4122,4065,4066,0,4619,4551,4552,8093,8093,8093,42,4123,4092,4089,0,4620,4580,4577,8094,8094,8094,42,4123,4089,4121,0,4620,4577,4618,8095,8095,8095,42,4124,4117,4092,0,4621,4614,4580,8096,8096,8096,42,4124,4092,4123,0,4621,4580,4620,8097,8097,8097,42,4117,4124,4125,0,4614,4621,4622,8098,8098,8098,42,4117,4125,4126,0,4614,4622,4623,8099,8099,8099,42,4129,4128,4127,0,4626,4625,4624,8100,8100,8100,42,4129,4127,4130,0,4626,4624,4627,8101,8101,8101,42,4131,4127,4128,0,4628,4624,4625,8102,8102,8102,42,4131,4128,4132,0,4628,4625,4629,8103,8103,8103,42,4134,4133,4114,0,4631,4630,4608,8104,8104,8104,42,4134,4114,4135,0,4631,4608,4632,8105,8105,8105,42,4138,4137,4136,0,4635,4634,4633,8106,8106,8106,42,4138,4136,4139,0,4635,4633,4636,8107,8107,8107,42,4142,4141,4140,0,4639,4638,4637,8108,8108,8108,42,4142,4140,4143,0,4639,4637,4640,8109,8109,8109,42,4141,4142,4144,0,4638,4639,4641,8110,8110,8110,42,4145,4131,4132,0,4642,4628,4629,8111,8111,8111,42,4145,4132,4146,0,4642,4629,4643,8112,8112,8112,42,4130,4148,4147,0,4627,4645,4644,8113,8113,8113,42,4130,4147,4129,0,4627,4644,4626,8114,8114,8114,42,4151,4150,4149,0,4648,4647,4646,8115,8115,8115,42,4151,4149,4147,0,4648,4646,4644,8116,8116,8116,42,4151,4153,4152,0,4648,4650,4649,8117,8117,8117,42,4151,4152,4154,0,4648,4649,4651,8118,8118,8118,42,4157,4156,4155,0,4654,4653,4652,8119,8119,8119,42,4157,4155,4158,0,4654,4652,4655,8120,8120,8120,42,4156,4157,4143,0,4653,4654,4640,8121,8121,8121,42,4156,4143,4140,0,4653,4640,4637,8122,8122,8122,42,4115,4159,4135,0,4609,4656,4632,8123,8123,8123,42,4115,4135,4114,0,4609,4632,4608,8124,8124,8124,42,4159,4115,4109,0,4656,4609,4602,8125,8125,8125,42,4159,4109,4119,0,4656,4602,4616,8126,8126,8126,42,4096,4076,4073,0,4587,4564,4561,8127,8127,8127,42,4096,4073,4071,0,4587,4561,4559,8128,8128,8128,42,4126,4118,4116,0,4623,4657,4613,8129,8129,8129,42,4126,4116,4117,0,4623,4613,4614,8130,8130,8130,42,4160,4111,4118,0,4660,4659,4658,8131,8131,8131,42,4160,4118,4126,0,4660,4658,4661,8132,8132,8132,42,4161,4106,4111,0,4663,4662,4659,8133,8133,8133,42,4161,4111,4160,0,4663,4659,4660,8134,8134,8134,42,4158,4155,4139,0,4655,4652,4636,8135,8135,8135,42,4158,4139,4136,0,4655,4636,4633,8136,8136,8136,42,4080,4084,4162,0,4568,4572,4664,8137,8137,8137,42,4080,4162,4163,0,4568,4664,4665,8138,8138,8138,42,4163,4164,4078,0,4665,4666,4566,8139,8139,8139,42,4163,4078,4080,0,4665,4566,4568,8140,8140,8140,42,4165,4162,4084,0,4667,4664,4572,8141,8141,8141,42,4165,4084,4112,0,4667,4572,4606,8142,8142,8142,42,4132,4128,4166,0,4629,4625,4668,8143,8143,8143,42,4132,4166,4167,0,4629,4668,4669,8144,8144,8144,42,4129,4168,4166,0,4626,4670,4668,8145,8145,8145,42,4129,4166,4128,0,4626,4668,4625,8146,8146,8146,42,4169,4140,4141,0,4671,4637,4638,8147,8147,8147,42,4169,4141,4170,0,4671,4638,4672,8148,8148,8148,42,4171,4146,4132,0,4673,4643,4629,8149,8149,8149,42,4171,4132,4167,0,4673,4629,4669,8150,8150,8150,42,4168,4129,4147,0,4670,4626,4644,8151,8151,8151,42,4168,4147,4149,0,4670,4644,4646,8152,8152,8152,42,4149,3959,3960,0,4674,4431,4432,8153,8153,8153,42,4149,3960,4168,0,4674,4432,4675,8154,8154,8154,42,4168,3960,3961,0,4675,4432,4433,8155,8155,8155,42,4168,3961,4166,0,4675,4433,4676,8156,8156,8156,42,4174,4173,4172,0,4679,4678,4677,8157,8157,8157,42,4174,4172,4175,0,4679,4677,4680,8158,8158,8158,42,4169,3978,3979,0,4681,4452,4453,8159,8159,8159,42,4169,3979,4176,0,4681,4453,4682,8160,8160,8160,42,4156,4176,4177,0,4653,4684,4683,8161,8161,8161,42,4156,4177,4155,0,4653,4683,4652,8162,8162,8162,42,4138,4178,4165,0,4635,4686,4685,8163,8163,8163,42,4138,4165,4133,0,4635,4685,4630,8164,8164,8164,42,4178,4179,4162,0,4688,4687,4664,8165,8165,8165,42,4178,4162,4165,0,4688,4664,4667,8166,8166,8166,42,4181,4180,4164,0,4690,4689,4666,8167,8167,8167,42,4181,4164,4163,0,4690,4666,4665,8168,8168,8168,42,4174,4180,4009,0,4679,4689,4489,8169,8169,8169,42,4174,4009,4007,0,4679,4489,4487,8170,8170,8170,42,3787,4167,4166,0,4252,4691,4676,8171,8171,8171,42,3787,4166,3961,0,4252,4676,4433,8172,8172,8172,42,3788,4171,4167,0,4253,4692,4691,8173,8173,8173,42,3788,4167,3787,0,4253,4691,4252,8174,8174,8174,42,4170,3976,3978,0,4693,4449,4452,8175,8175,8175,42,4170,3978,4169,0,4693,4452,4681,8176,8176,8176,42,4140,4169,4176,0,4637,4671,4684,8177,8177,8177,42,4140,4176,4156,0,4637,4684,4653,8178,8178,8178,42,4112,4114,4133,0,4611,4608,4630,8179,8179,8179,42,4112,4133,4165,0,4611,4630,4685,8180,8180,8180,42,4182,4173,4005,0,4694,4678,4485,8181,8181,8181,42,4182,4005,3959,0,4694,4485,4431,8182,8182,8182,42,4070,4072,4172,0,4558,4560,4677,8183,8183,8183,42,4070,4172,4183,0,4558,4677,4695,8184,8184,8184,42,4176,3979,3972,0,4682,4453,4444,8185,8185,8185,42,4176,3972,4177,0,4682,4444,4696,8186,8186,8186,42,4139,4155,4177,0,4636,4652,4683,8187,8187,8187,42,4139,4177,4184,0,4636,4683,4697,8188,8188,8188,42,4161,4110,4107,0,4663,4603,4604,8189,8189,8189,42,4161,4107,4106,0,4663,4604,4662,8190,8190,8190,42,4146,4171,4170,0,4643,4673,4672,8191,8191,8191,42,4146,4170,4141,0,4643,4672,4638,8192,8192,8192,42,4171,3788,3976,0,4698,4448,4449,8193,8193,8193,42,4171,3976,4170,0,4698,4449,4693,8194,8194,8194,42,4183,4185,4067,0,4695,4699,4557,8195,8195,8195,42,4183,4067,4070,0,4695,4557,4558,8196,8196,8196,42,4061,4067,4185,0,4547,4553,4700,8197,8197,8197,42,4061,4185,4154,0,4547,4700,4651,8198,8198,8198,42,4154,4152,4064,0,4651,4649,4550,8199,8199,8199,42,4154,4064,4061,0,4651,4550,4547,8200,8200,8200,42,4074,4078,4164,0,4562,4566,4666,8201,8201,8201,42,4074,4164,4175,0,4562,4666,4680,8202,8202,8202,42,4072,4074,4175,0,4560,4562,4680,8203,8203,8203,42,4072,4175,4172,0,4560,4680,4677,8204,8204,8204,42,4182,4150,4185,0,4694,4701,4699,8205,8205,8205,42,4182,4185,4183,0,4694,4699,4695,8206,8206,8206,42,3972,3973,4184,0,4444,4445,4702,8207,8207,8207,42,3972,4184,4177,0,4444,4702,4696,8208,8208,8208,42,4179,4181,4163,0,4687,4690,4665,8209,8209,8209,42,4179,4163,4162,0,4687,4665,4664,8210,8210,8210,42,4188,4187,4186,0,4705,4704,4703,8211,8211,8211,42,4188,4186,4189,0,4705,4703,4706,8212,8212,8212,42,683,4191,4190,0,239,238,4707,8213,8213,8213,42,683,4190,4192,0,239,4707,4708,8214,8214,8214,42,4119,4194,4193,0,4616,4710,4709,8215,8215,8215,42,4119,4193,4159,0,4616,4709,4656,8216,8216,8216,42,4135,4159,4193,0,4632,4656,4709,8217,8217,8217,42,4135,4193,4195,0,4632,4709,4711,8218,8218,8218,42,4193,4197,4196,0,4709,4713,4712,8219,8219,8219,42,4193,4196,4195,0,4709,4712,4711,8220,8220,8220,42,4134,4135,4195,0,4631,4632,4711,8221,8221,8221,42,4134,4195,4198,0,4631,4711,4714,8222,8222,8222,42,4196,4199,4198,0,4712,4715,4714,8223,8223,8223,42,4196,4198,4195,0,4712,4714,4711,8224,8224,8224,42,4200,4158,4136,0,4716,4655,4633,8225,8225,8225,42,4200,4136,4201,0,4716,4633,4717,8226,8226,8226,42,4157,4203,4202,0,4654,4719,4718,8227,8227,8227,42,4157,4202,4143,0,4654,4718,4640,8228,8228,8228,42,4158,4200,4203,0,4655,4716,4719,8229,8229,8229,42,4158,4203,4157,0,4655,4719,4654,8230,8230,8230,42,4206,4205,4204,0,4722,4721,4720,8231,8231,8231,42,4206,4204,4207,0,4722,4720,4723,8232,8232,8232,42,4210,4209,4208,0,4726,4725,4724,8233,8233,8233,42,4210,4208,4211,0,4726,4724,4727,8234,8234,8234,42,4212,4210,4211,0,4728,4726,4727,8235,8235,8235,42,4212,4211,4213,0,4728,4727,4729,8236,8236,8236,42,4216,4215,4214,0,4732,4731,4730,8237,8237,8237,42,4216,4214,4217,0,4732,4730,4733,8238,8238,8238,42,4220,4219,4218,0,4736,4735,4734,8239,8239,8239,42,4220,4218,4221,0,4736,4734,4737,8240,8240,8240,42,4213,4215,4216,0,4729,4731,4732,8241,8241,8241,42,4213,4216,4212,0,4729,4732,4728,8242,8242,8242,42,4224,4223,4222,0,4740,4739,4738,8243,8243,8243,42,4224,4222,4225,0,4740,4738,4741,8244,8244,8244,42,4225,4222,4226,0,4741,4738,4742,8245,8245,8245,42,4225,4226,4227,0,4741,4742,4743,8246,8246,8246,42,4230,4229,4228,0,4746,4745,4744,8247,8247,8247,42,4230,4228,4231,0,4746,4744,4747,8248,8248,8248,42,4231,4228,4232,0,4747,4744,4748,8249,8249,8249,42,4231,4232,4233,0,4747,4748,4749,8250,8250,8250,42,4229,4230,4209,0,4745,4746,4725,8251,8251,8251,42,4229,4209,4210,0,4745,4725,4726,8252,8252,8252,42,4236,4235,4234,0,4752,4751,4750,8253,8253,8253,42,4236,4234,4237,0,4752,4750,4753,8254,8254,8254,42,4229,4239,4238,0,4745,4755,4754,8255,8255,8255,42,4229,4238,4228,0,4745,4754,4744,8256,8256,8256,42,4228,4238,4240,0,4744,4754,4756,8257,8257,8257,42,4228,4240,4232,0,4744,4756,4748,8258,8258,8258,42,4241,4238,4239,0,4757,4754,4755,8259,8259,8259,42,4241,4239,4242,0,4757,4755,4758,8260,8260,8260,42,4239,4229,4210,0,4755,4745,4726,8261,8261,8261,42,4239,4210,4212,0,4755,4726,4728,8262,8262,8262,42,4242,4239,4212,0,4758,4755,4728,8263,8263,8263,42,4242,4212,4216,0,4758,4728,4732,8264,8264,8264,42,4244,4243,4241,0,4760,4759,4757,8265,8265,8265,42,4244,4241,4245,0,4760,4757,4761,8266,8266,8266,42,4245,4241,4242,0,4761,4757,4758,8267,8267,8267,42,4245,4242,4246,0,4761,4758,4762,8268,8268,8268,42,4248,4192,4247,0,4764,4708,4763,8269,8269,8269,42,4248,4247,4249,0,4764,4763,4765,8270,8270,8270,42,4252,4251,4250,0,4768,4767,4766,8271,8271,8271,42,4252,4250,4253,0,4768,4766,4769,8272,8272,8272,42,4251,4255,4254,0,4767,4771,4770,8273,8273,8273,42,4251,4254,4250,0,4767,4770,4766,8274,8274,8274,42,4257,4256,4250,0,4773,4772,4766,8275,8275,8275,42,4257,4250,4254,0,4773,4766,4770,8276,8276,8276,42,4253,4250,4256,0,4769,4766,4772,8277,8277,8277,42,4253,4256,4258,0,4769,4772,4774,8278,8278,8278,42,4261,4260,4259,0,4777,4776,4775,8279,8279,8279,42,4261,4259,4262,0,4777,4775,4778,8280,8280,8280,42,4264,4263,4262,0,4780,4779,4778,8281,8281,8281,42,4264,4262,4259,0,4780,4778,4775,8282,8282,8282,42,4267,4266,4265,0,4783,4782,4781,8283,8283,8283,42,4267,4265,4268,0,4783,4781,4784,8284,8284,8284,42,4270,4269,4267,0,4786,4785,4783,8285,8285,8285,42,4270,4267,4268,0,4786,4783,4784,8286,8286,8286,42,4265,4272,4271,0,4781,4788,4787,8287,8287,8287,42,4265,4271,4268,0,4781,4787,4784,8288,8288,8288,42,4268,4271,4273,0,4784,4787,4789,8289,8289,8289,42,4268,4273,4270,0,4784,4789,4786,8290,8290,8290,42,4120,4274,4194,0,4617,4790,4710,8291,8291,8291,42,4120,4194,4119,0,4617,4710,4616,8292,8292,8292,42,4275,4194,4274,0,4791,4710,4790,8293,8293,8293,42,4275,4274,4276,0,4791,4790,4792,8294,8294,8294,42,4277,4275,4276,0,4793,4791,4792,8295,8295,8295,42,4277,4276,4278,0,4793,4792,4794,8296,8296,8296,42,4279,4196,4197,0,4795,4712,4713,8297,8297,8297,42,4279,4197,4280,0,4795,4713,4796,8298,8298,8298,42,4279,4281,4199,0,4795,4797,4715,8299,8299,8299,42,4279,4199,4196,0,4795,4715,4712,8300,8300,8300,42,4143,4202,4282,0,4640,4718,4798,8301,8301,8301,42,4143,4282,4142,0,4640,4798,4639,8302,8302,8302,42,4283,4145,4144,0,4799,4642,4641,8303,8303,8303,42,4283,4144,4284,0,4799,4641,4800,8304,8304,8304,42,4284,4144,4142,0,4800,4641,4639,8305,8305,8305,42,4284,4142,4282,0,4800,4639,4798,8306,8306,8306,42,4285,4284,4282,0,4801,4800,4798,8307,8307,8307,42,4285,4282,4286,0,4801,4798,4802,8308,8308,8308,42,4289,4288,4287,0,4805,4804,4803,8309,8309,8309,42,4289,4287,4283,0,4805,4803,4799,8310,8310,8310,42,4127,4131,4287,0,4624,4628,4803,8311,8311,8311,42,4127,4287,4290,0,4624,4803,4806,8312,8312,8312,42,4288,4291,4290,0,4804,4807,4806,8313,8313,8313,42,4288,4290,4287,0,4804,4806,4803,8314,8314,8314,42,4294,4293,4292,0,4810,4809,4808,8315,8315,8315,42,4294,4292,4295,0,4810,4808,4811,8316,8316,8316,42,4238,4241,4243,0,4754,4757,4759,8317,8317,8317,42,4238,4243,4240,0,4754,4759,4756,8318,8318,8318,42,4222,4121,4122,0,4738,4618,4619,8319,8319,8319,42,4222,4122,4226,0,4738,4619,4742,8320,8320,8320,42,4296,4290,4291,0,4812,4806,4807,8321,8321,8321,42,4296,4291,4297,0,4812,4807,4813,8322,8322,8322,42,4300,4299,4298,0,4816,4815,4814,8323,8323,8323,42,4300,4298,4301,0,4816,4814,4817,8324,8324,8324,42,4303,4302,4296,0,4819,4818,4812,8325,8325,8325,42,4303,4296,4297,0,4819,4812,4813,8326,8326,8326,42,4306,4305,4304,0,4822,4821,4820,8327,8327,8327,42,4306,4304,4307,0,4822,4820,4823,8328,8328,8328,42,4307,4304,4308,0,4823,4820,4824,8329,8329,8329,42,4307,4308,4309,0,4823,4824,4825,8330,8330,8330,42,4307,4309,4310,0,4823,4825,4826,8331,8331,8331,42,4307,4310,4311,0,4823,4826,4827,8332,8332,8332,42,4307,4311,4312,0,4823,4827,4828,8333,8333,8333,42,4307,4312,4306,0,4823,4828,4822,8334,8334,8334,42,4315,4314,4313,0,4831,4830,4829,8335,8335,8335,42,4315,4313,4316,0,4831,4829,4832,8336,8336,8336,42,4315,4318,4317,0,4831,4834,4833,8337,8337,8337,42,4315,4317,4319,0,4831,4833,4835,8338,8338,8338,42,4314,4321,4320,0,4830,4837,4836,8339,8339,8339,42,4314,4320,4313,0,4830,4836,4829,8340,8340,8340,42,4323,4322,4311,0,4839,4838,4827,8341,8341,8341,42,4323,4311,4310,0,4839,4827,4826,8342,8342,8342,42,4325,4324,4310,0,4841,4840,4826,8343,8343,8343,42,4325,4310,4309,0,4841,4826,4825,8344,8344,8344,42,4326,4324,4319,0,4842,4840,4835,8345,8345,8345,42,4326,4319,4317,0,4842,4835,4833,8346,8346,8346,42,4327,4308,4304,0,4843,4824,4820,8347,8347,8347,42,4327,4304,4328,0,4843,4820,4844,8348,8348,8348,42,4329,4325,4309,0,4845,4841,4825,8349,8349,8349,42,4329,4309,4308,0,4845,4825,4824,8350,8350,8350,42,4330,4329,4308,0,4846,4845,4824,8351,8351,8351,42,4330,4308,4327,0,4846,4824,4843,8352,8352,8352,42,4331,4327,4328,0,4847,4843,4844,8353,8353,8353,42,4331,4328,4332,0,4847,4844,4848,8354,8354,8354,42,4333,4330,4327,0,4849,4846,4843,8355,8355,8355,42,4333,4327,4331,0,4849,4843,4847,8356,8356,8356,42,4335,4334,4332,0,4851,4850,4848,8357,8357,8357,42,4335,4332,4328,0,4851,4848,4844,8358,8358,8358,42,4335,4305,4270,0,4851,4821,4786,8359,8359,8359,42,4335,4270,4273,0,4851,4786,4789,8360,8360,8360,42,4334,4188,4189,0,4850,4705,4706,8361,8361,8361,42,4334,4189,4332,0,4850,4706,4848,8362,8362,8362,42,4189,4186,4336,0,4706,4703,4852,8363,8363,8363,42,4189,4336,4337,0,4706,4852,4853,8364,8364,8364,42,4340,4339,4338,0,4856,4855,4854,8365,8365,8365,42,4340,4338,4341,0,4856,4854,4857,8366,8366,8366,42,4341,4343,4342,0,4857,4859,4858,8367,8367,8367,42,4341,4342,4340,0,4857,4858,4856,8368,8368,8368,42,4340,4336,4186,0,4856,4852,4703,8369,8369,8369,42,4340,4186,4339,0,4856,4703,4855,8370,8370,8370,42,4342,4344,4336,0,4858,4860,4852,8371,8371,8371,42,4342,4336,4340,0,4858,4852,4856,8372,8372,8372,42,4344,4345,4337,0,4860,4861,4853,8373,8373,8373,42,4344,4337,4336,0,4860,4853,4852,8374,8374,8374,42,4345,4333,4331,0,4861,4849,4847,8375,8375,8375,42,4345,4331,4337,0,4861,4847,4853,8376,8376,8376,42,4346,4301,4291,0,4862,4817,4807,8377,8377,8377,42,4346,4291,4288,0,4862,4807,4804,8378,8378,8378,42,4349,4348,4347,0,4865,4864,4863,8379,8379,8379,42,4349,4347,4272,0,4865,4863,4788,8380,8380,8380,42,4348,4351,4350,0,4864,4867,4866,8381,8381,8381,42,4348,4350,4347,0,4864,4866,4863,8382,8382,8382,42,4354,4353,4352,0,4870,4869,4868,8383,8383,8383,42,4354,4352,4355,0,4870,4868,4871,8384,8384,8384,42,4203,4354,4355,0,4719,4870,4871,8385,8385,8385,42,4203,4355,4202,0,4719,4871,4718,8386,8386,8386,42,4356,4200,4201,0,4872,4716,4717,8387,8387,8387,42,4356,4201,4357,0,4872,4717,4873,8388,8388,8388,42,4359,4358,4357,0,4875,4874,4873,8389,8389,8389,42,4359,4357,4201,0,4875,4873,4717,8390,8390,8390,42,4358,4361,4360,0,4874,4877,4876,8391,8391,8391,42,4358,4360,4357,0,4874,4876,4873,8392,8392,8392,42,4362,4248,4249,0,4878,4764,4765,8393,8393,8393,42,4362,4249,4363,0,4878,4765,4879,8394,8394,8394,42,4363,4249,4364,0,4879,4765,4880,8395,8395,8395,42,4363,4364,4365,0,4879,4880,4881,8396,8396,8396,42,4368,4367,4366,0,4884,4883,4882,8397,8397,8397,42,4368,4366,4369,0,4884,4882,4885,8398,8398,8398,42,4370,4368,4369,0,4886,4884,4885,8399,8399,8399,42,4370,4369,4371,0,4886,4885,4887,8400,8400,8400,42,4374,4373,4372,0,4890,4889,4888,8401,8401,8401,42,4374,4372,4375,0,4890,4888,4891,8402,8402,8402,42,4375,4372,4367,0,4891,4888,4883,8403,8403,8403,42,4375,4367,4368,0,4891,4883,4884,8404,8404,8404,42,4363,4372,4373,0,4879,4888,4889,8405,8405,8405,42,4363,4373,4362,0,4879,4889,4878,8406,8406,8406,42,4365,4367,4372,0,4881,4883,4888,8407,8407,8407,42,4365,4372,4363,0,4881,4888,4879,8408,8408,8408,42,4376,4374,4375,0,4892,4890,4891,8409,8409,8409,42,4376,4375,4377,0,4892,4891,4893,8410,8410,8410,42,4187,4188,4378,0,4704,4705,4894,8411,8411,8411,42,4187,4378,4379,0,4704,4894,4895,8412,8412,8412,42,4380,4187,4379,0,4896,4704,4895,8413,8413,8413,42,4380,4379,4381,0,4896,4895,4897,8414,8414,8414,42,4383,4382,4380,0,4899,4898,4896,8415,8415,8415,42,4383,4380,4381,0,4899,4896,4897,8416,8416,8416,42,4381,4385,4384,0,4897,4901,4900,8417,8417,8417,42,4381,4384,4383,0,4897,4900,4899,8418,8418,8418,42,4386,4273,4271,0,4902,4789,4787,8419,8419,8419,42,4386,4271,4387,0,4902,4787,4903,8420,8420,8420,42,4379,4378,4388,0,4895,4894,4904,8421,8421,8421,42,4379,4388,4389,0,4895,4904,4905,8422,8422,8422,42,4272,4347,4387,0,4788,4863,4903,8423,8423,8423,42,4272,4387,4271,0,4788,4903,4787,8424,8424,8424,42,4390,4389,4388,0,4906,4905,4904,8425,8425,8425,42,4390,4388,4350,0,4906,4904,4866,8426,8426,8426,42,4391,4385,4389,0,4907,4901,4905,8427,8427,8427,42,4391,4389,4390,0,4907,4905,4906,8428,8428,8428,42,4394,4393,4392,0,4910,4909,4908,8429,8429,8429,42,4394,4392,4395,0,4910,4908,4911,8430,8430,8430,42,4385,4391,4396,0,4901,4907,4912,8431,8431,8431,42,4385,4396,4384,0,4901,4912,4900,8432,8432,8432,42,4394,4355,4352,0,4910,4871,4868,8433,8433,8433,42,4394,4352,4397,0,4910,4868,4913,8434,8434,8434,42,4400,4399,4398,0,4916,4915,4914,8435,8435,8435,42,4400,4398,4401,0,4916,4914,4917,8436,8436,8436,42,4403,4399,4402,0,4919,4915,4918,8437,8437,8437,42,4403,4402,4404,0,4919,4918,4920,8438,8438,8438,42,4339,4380,4382,0,4855,4896,4898,8439,8439,8439,42,4339,4382,4338,0,4855,4898,4854,8440,8440,8440,42,4357,4360,4405,0,4873,4876,4921,8441,8441,8441,42,4357,4405,4356,0,4873,4921,4872,8442,8442,8442,42,4408,4407,4406,0,4924,4923,4922,8443,8443,8443,42,4408,4406,4409,0,4924,4922,4925,8444,8444,8444,42,4410,4408,4409,0,4926,4924,4925,8445,8445,8445,42,4410,4409,4411,0,4926,4925,4927,8446,8446,8446,42,901,258,4343,0,4929,4928,4859,8447,8447,8447,42,901,4343,4341,0,4929,4859,4857,8448,8448,8448,42,4187,4380,4339,0,4704,4896,4855,8449,8449,8449,42,4187,4339,4186,0,4704,4855,4703,8450,8450,8450,42,4318,4413,4412,0,4834,4931,4930,8451,8451,8451,42,4318,4412,4317,0,4834,4930,4833,8452,8452,8452,42,4323,4326,4414,0,4839,4842,4932,8453,8453,8453,42,4323,4414,4415,0,4839,4932,4933,8454,8454,8454,42,4417,4321,4416,0,4935,4837,4934,8455,8455,8455,42,4417,4416,4418,0,4935,4934,4936,8456,8456,8456,42,4410,4403,4404,0,4926,4919,4920,8457,8457,8457,42,4410,4404,4419,0,4926,4920,4937,8458,8458,8458,42,4368,4370,4377,0,4884,4886,4893,8459,8459,8459,42,4368,4377,4375,0,4884,4893,4891,8460,8460,8460,42,4247,4295,4260,0,4763,4811,4776,8461,8461,8461,42,4247,4260,4261,0,4763,4776,4777,8462,8462,8462,42,4421,4420,4365,0,4939,4938,4881,8463,8463,8463,42,4421,4365,4364,0,4939,4881,4880,8464,8464,8464,42,4367,4365,4420,0,4883,4881,4938,8465,8465,8465,42,4367,4420,4366,0,4883,4938,4882,8466,8466,8466,42,4275,4277,4280,0,4791,4793,4796,8467,8467,8467,42,4275,4280,4197,0,4791,4796,4713,8468,8468,8468,42,4194,4275,4197,0,4710,4791,4713,8469,8469,8469,42,4194,4197,4193,0,4710,4713,4709,8470,8470,8470,42,4379,4389,4385,0,4895,4905,4901,8471,8471,8471,42,4379,4385,4381,0,4895,4901,4897,8472,8472,8472,42,4202,4355,4286,0,4718,4871,4802,8473,8473,8473,42,4202,4286,4282,0,4718,4802,4798,8474,8474,8474,42,4417,4400,4401,0,4935,4916,4917,8475,8475,8475,42,4417,4401,4422,0,4935,4917,4940,8476,8476,8476,42,4424,4415,4423,0,4942,4933,4941,8477,8477,8477,42,4424,4423,4425,0,4942,4941,4943,8478,8478,8478,42,4415,4424,4322,0,4933,4942,4838,8479,8479,8479,42,4415,4322,4323,0,4933,4838,4839,8480,8480,8480,42,4427,4426,4425,0,4945,4944,4943,8481,8481,8481,42,4427,4425,4423,0,4945,4943,4941,8482,8482,8482,42,4429,4428,4426,0,4947,4946,4944,8483,8483,8483,42,4429,4426,4427,0,4947,4944,4945,8484,8484,8484,42,4431,4430,235,0,4948,241,240,8485,8485,8485,42,4431,235,4429,0,4948,240,4947,8486,8486,8486,42,4217,4246,4242,0,4733,4762,4758,8487,8487,8487,42,4217,4242,4216,0,4733,4758,4732,8488,8488,8488,42,4221,4433,4432,0,4737,4950,4949,8489,8489,8489,42,4221,4432,4220,0,4737,4949,4736,8490,8490,8490,42,4359,4137,4134,0,4875,4634,4631,8491,8491,8491,42,4359,4134,4198,0,4875,4631,4714,8492,8492,8492,42,4436,4435,4434,0,4953,4952,4951,8493,8493,8493,42,4436,4434,4312,0,4953,4951,4828,8494,8494,8494,42,4354,4203,4200,0,4870,4719,4716,8495,8495,8495,42,4354,4200,4356,0,4870,4716,4872,8496,8496,8496,42,4353,4354,4356,0,4869,4870,4872,8497,8497,8497,42,4353,4356,4405,0,4869,4872,4921,8498,8498,8498,42,4439,4438,4437,0,4956,4955,4954,8499,8499,8499,42,4439,4437,4440,0,4956,4954,4957,8500,8500,8500,42,4438,4442,4441,0,4955,4959,4958,8501,8501,8501,42,4438,4441,4437,0,4955,4958,4954,8502,8502,8502,42,4442,4444,4443,0,4959,4961,4960,8503,8503,8503,42,4442,4443,4441,0,4959,4960,4958,8504,8504,8504,42,4444,4293,4432,0,4961,4809,4949,8505,8505,8505,42,4444,4432,4443,0,4961,4949,4960,8506,8506,8506,42,4440,4204,4205,0,4957,4720,4721,8507,8507,8507,42,4440,4205,4439,0,4957,4721,4956,8508,8508,8508,42,4446,4445,4440,0,4963,4962,4957,8509,8509,8509,42,4446,4440,4437,0,4963,4957,4954,8510,8510,8510,42,4448,4447,4264,0,4965,4964,4780,8511,8511,8511,42,4448,4264,4449,0,4965,4780,4966,8512,8512,8512,42,4450,4446,4437,0,4967,4963,4954,8513,8513,8513,42,4450,4437,4441,0,4967,4954,4958,8514,8514,8514,42,4449,4264,4259,0,4966,4780,4775,8515,8515,8515,42,4449,4259,4451,0,4966,4775,4968,8516,8516,8516,42,4452,4450,4441,0,4969,4967,4958,8517,8517,8517,42,4452,4441,4443,0,4969,4958,4960,8518,8518,8518,42,4260,4453,4451,0,4776,4970,4968,8519,8519,8519,42,4260,4451,4259,0,4776,4968,4775,8520,8520,8520,42,4433,4452,4443,0,4950,4969,4960,8521,8521,8521,42,4433,4443,4432,0,4950,4960,4949,8522,8522,8522,42,4260,4295,4292,0,4776,4811,4808,8523,8523,8523,42,4260,4292,4453,0,4776,4808,4970,8524,8524,8524,42,4445,4454,4204,0,4962,4971,4720,8525,8525,8525,42,4445,4204,4440,0,4962,4720,4957,8526,8526,8526,42,4303,4297,4447,0,4819,4813,4964,8527,8527,8527,42,4303,4447,4448,0,4819,4964,4965,8528,8528,8528,42,242,4456,4455,0,242,4973,4972,8529,8529,8529,42,242,4455,259,0,242,4972,243,8530,8530,8530,42,946,4405,4360,0,4974,4921,4876,8531,8531,8531,42,946,4360,4457,0,4974,4876,4975,8532,8532,8532,42,4457,4360,4361,0,4975,4876,4877,8533,8533,8533,42,4457,4361,4458,0,4975,4877,4976,8534,8534,8534,42,4459,4281,4279,0,4977,4797,4795,8535,8535,8535,42,4459,4279,234,0,4977,4795,4978,8536,8536,8536,42,234,4279,4280,0,4978,4795,4796,8537,8537,8537,42,234,4280,4460,0,4978,4796,4979,8538,8538,8538,42,4460,4280,4277,0,4979,4796,4793,8539,8539,8539,42,4460,4277,236,0,4979,4793,4980,8540,8540,8540,42,4427,4251,4252,0,4945,4767,4768,8541,8541,8541,42,4427,4252,4429,0,4945,4768,4947,8542,8542,8542,42,4252,4456,4431,0,4768,4973,4948,8543,8543,8543,42,4252,4431,4429,0,4768,4948,4947,8544,8544,8544,42,4462,4258,4461,0,4982,4774,4981,8545,8545,8545,42,4462,4461,4463,0,4982,4981,4983,8546,8546,8546,42,4255,4414,4412,0,4771,4932,4930,8547,8547,8547,42,4255,4412,4254,0,4771,4930,4770,8548,8548,8548,42,4465,4464,4266,0,4985,4984,4782,8549,8549,8549,42,4465,4266,4267,0,4985,4782,4783,8550,8550,8550,42,4467,4464,4466,0,4987,4984,4986,8551,8551,8551,42,4467,4466,4468,0,4987,4986,4988,8552,8552,8552,42,4366,4420,4466,0,4882,4938,4986,8553,8553,8553,42,4366,4466,4469,0,4882,4986,4989,8554,8554,8554,42,4299,4266,4464,0,4815,4782,4984,8555,8555,8555,42,4299,4464,4467,0,4815,4984,4987,8556,8556,8556,42,4420,4421,4468,0,4938,4939,4988,8557,8557,8557,42,4420,4468,4466,0,4938,4988,4986,8558,8558,8558,42,4468,4263,4470,0,4988,4779,4990,8559,8559,8559,42,4468,4470,4467,0,4988,4990,4987,8560,8560,8560,42,4294,4471,4219,0,4810,4991,4735,8561,8561,8561,42,4294,4219,4220,0,4810,4735,4736,8562,8562,8562,42,4289,4283,4284,0,4805,4799,4800,8563,8563,8563,42,4289,4284,4285,0,4805,4800,4801,8564,8564,8564,42,4392,4390,4350,0,4908,4906,4866,8565,8565,8565,42,4392,4350,4351,0,4908,4866,4867,8566,8566,8566,42,4188,4334,4386,0,4705,4850,4902,8567,8567,8567,42,4188,4386,4378,0,4705,4902,4894,8568,8568,8568,42,4378,4386,4387,0,4894,4902,4903,8569,8569,8569,42,4378,4387,4388,0,4894,4903,4904,8570,8570,8570,42,4347,4350,4388,0,4863,4866,4904,8571,8571,8571,42,4347,4388,4387,0,4863,4904,4903,8572,8572,8572,42,243,958,4248,0,245,244,4764,8573,8573,8573,42,243,4248,4362,0,245,4764,4878,8574,8574,8574,42,244,4472,4383,0,4993,4992,4899,8575,8575,8575,42,244,4383,4384,0,4993,4899,4900,8576,8576,8576,42,4191,4473,4471,0,238,246,4991,8577,8577,8577,42,4191,4471,4190,0,238,4991,4707,8578,8578,8578,42,4474,260,4338,0,4995,4994,4854,8579,8579,8579,42,4474,4338,4382,0,4995,4854,4898,8580,8580,8580,42,4456,4252,4253,0,4973,4768,4769,8581,8581,8581,42,4456,4253,4455,0,4973,4769,4972,8582,8582,8582,42,242,4430,4431,0,242,241,4948,8583,8583,8583,42,242,4431,4456,0,242,4948,4973,8584,8584,8584,42,4207,4204,4454,0,4723,4720,4971,8585,8585,8585,42,4207,4454,4475,0,4723,4971,4996,8586,8586,8586,42,4300,4265,4266,0,4816,4781,4782,8587,8587,8587,42,4300,4266,4299,0,4816,4782,4815,8588,8588,8588,42,4300,4349,4272,0,4816,4865,4788,8589,8589,8589,42,4300,4272,4265,0,4816,4788,4781,8590,8590,8590,42,4346,4476,4348,0,4862,4997,4864,8591,8591,8591,42,4346,4348,4349,0,4862,4864,4865,8592,8592,8592,42,4476,4477,4351,0,4997,4998,4867,8593,8593,8593,42,4476,4351,4348,0,4997,4867,4864,8594,8594,8594,42,4393,4391,4390,0,4909,4907,4906,8595,8595,8595,42,4393,4390,4392,0,4909,4906,4908,8596,8596,8596,42,4478,4396,4391,0,4999,4912,4907,8597,8597,8597,42,4478,4391,4393,0,4999,4907,4909,8598,8598,8598,42,4395,4392,4351,0,4911,4908,4867,8599,8599,8599,42,4395,4351,4477,0,4911,4867,4998,8600,8600,8600,42,4298,4470,4447,0,4814,4990,4964,8601,8601,8601,42,4298,4447,4297,0,4814,4964,4813,8602,8602,8602,42,4244,4245,4479,0,4760,4761,5000,8603,8603,8603,42,4244,4479,4480,0,4760,5000,5001,8604,8604,8604,42,965,4218,4219,0,247,4734,4735,8605,8605,8605,42,965,4219,4481,0,247,4735,248,8606,8606,8606,42,4362,4373,4482,0,4878,4889,249,8607,8607,8607,42,4362,4482,243,0,4878,249,245,8608,8608,8608,42,4373,4374,4483,0,4889,4890,250,8609,8609,8609,42,4373,4483,4482,0,4889,250,249,8610,8610,8610,42,4382,4383,4472,0,4898,4899,4992,8611,8611,8611,42,4382,4472,4474,0,4898,4992,4995,8612,8612,8612,42,4484,966,4397,0,5003,5002,4913,8613,8613,8613,42,4484,4397,4352,0,5003,4913,4868,8614,8614,8614,42,4384,4396,4485,0,4900,4912,5004,8615,8615,8615,42,4384,4485,244,0,4900,5004,4993,8616,8616,8616,42,4428,4429,235,0,4946,4947,240,8617,8617,8617,42,4428,235,967,0,4946,240,251,8618,8618,8618,42,4486,4353,4405,0,5005,4869,4921,8619,8619,8619,42,4486,4405,946,0,5005,4921,4974,8620,8620,8620,42,4487,4245,4246,0,252,4761,4762,8621,8621,8621,42,4487,4246,4488,0,252,4762,253,8622,8622,8622,42,4488,4246,4217,0,253,4762,4733,8623,8623,8623,42,4488,4217,4489,0,253,4733,254,8624,8624,8624,42,4217,4214,4490,0,4733,4730,255,8625,8625,8625,42,4217,4490,4489,0,4733,255,254,8626,8626,8626,42,4484,4352,4353,0,5003,4868,4869,8627,8627,8627,42,4484,4353,4486,0,5003,4869,5005,8628,8628,8628,42,260,901,4341,0,4994,4929,4857,8629,8629,8629,42,260,4341,4338,0,4994,4857,4854,8630,8630,8630,42,967,4491,4376,0,251,256,4892,8631,8631,8631,42,967,4376,4428,0,251,4892,4946,8632,8632,8632,42,4462,968,259,0,4982,257,243,8633,8633,8633,42,4462,259,4455,0,4982,243,4972,8634,8634,8634,42,236,4277,4278,0,4980,4793,4794,8635,8635,8635,42,236,4278,261,0,4980,4794,5006,8636,8636,8636,42,4218,965,4490,0,4734,247,255,8637,8637,8637,42,4218,4490,4214,0,4734,255,4730,8638,8638,8638,42,4221,4218,4214,0,4737,4734,4730,8639,8639,8639,42,4221,4214,4215,0,4737,4730,4731,8640,8640,8640,42,4433,4221,4215,0,4950,4737,4731,8641,8641,8641,42,4433,4215,4213,0,4950,4731,4729,8642,8642,8642,42,4452,4433,4213,0,4969,4950,4729,8643,8643,8643,42,4452,4213,4211,0,4969,4729,4727,8644,8644,8644,42,4450,4452,4211,0,4967,4969,4727,8645,8645,8645,42,4450,4211,4208,0,4967,4727,4724,8646,8646,8646,42,4130,4127,4290,0,4627,4624,4806,8647,8647,8647,42,4130,4290,4296,0,4627,4806,4812,8648,8648,8648,42,4148,4130,4296,0,4645,4627,4812,8649,8649,8649,42,4148,4296,4302,0,4645,4812,4818,8650,8650,8650,42,4206,4153,4148,0,4722,4650,4645,8651,8651,8651,42,4206,4148,4302,0,4722,4645,4818,8652,8652,8652,42,4475,4064,4152,0,4996,4550,4649,8653,8653,8653,42,4475,4152,4207,0,4996,4649,4723,8654,8654,8654,42,4236,4063,4064,0,4752,4549,4550,8655,8655,8655,42,4236,4064,4475,0,4752,4550,4996,8656,8656,8656,42,4226,4122,4066,0,4742,4619,4552,8657,8657,8657,42,4226,4066,4237,0,4742,4552,4753,8658,8658,8658,42,4223,4123,4121,0,4739,4620,4618,8659,8659,8659,42,4223,4121,4222,0,4739,4618,4738,8660,8660,8660,42,4063,4236,4237,0,4549,4752,4753,8661,8661,8661,42,4063,4237,4066,0,4549,4753,4552,8662,8662,8662,42,4494,4493,4492,0,5009,5008,5007,8663,8663,8663,42,4494,4492,4495,0,5009,5007,5010,8664,8664,8664,42,4497,4496,4493,0,5012,5011,5008,8665,8665,8665,42,4497,4493,4494,0,5012,5008,5009,8666,8666,8666,42,4499,4498,4496,0,5014,5013,5011,8667,8667,8667,42,4499,4496,4497,0,5014,5011,5012,8668,8668,8668,42,4475,4454,4235,0,4996,4971,4751,8669,8669,8669,42,4475,4235,4236,0,4996,4751,4752,8670,8670,8670,42,4227,4226,4237,0,4743,4742,4753,8671,8671,8671,42,4227,4237,4234,0,4743,4753,4750,8672,8672,8672,42,4493,4231,4233,0,5008,4747,4749,8673,8673,8673,42,4493,4233,4492,0,5008,4749,5007,8674,8674,8674,42,4495,4224,4225,0,5010,4740,4741,8675,8675,8675,42,4495,4225,4494,0,5010,4741,5009,8676,8676,8676,42,4496,4230,4231,0,5011,4746,4747,8677,8677,8677,42,4496,4231,4493,0,5011,4747,5008,8678,8678,8678,42,4494,4225,4227,0,5009,4741,4743,8679,8679,8679,42,4494,4227,4497,0,5009,4743,5012,8680,8680,8680,42,4501,4500,4445,0,5016,5015,4962,8681,8681,8681,42,4501,4445,4446,0,5016,4962,4963,8682,8682,8682,42,4498,4499,4500,0,5013,5014,5015,8683,8683,8683,42,4498,4500,4501,0,5013,5015,5016,8684,8684,8684,42,4499,4234,4235,0,5014,4750,4751,8685,8685,8685,42,4499,4235,4500,0,5014,4751,5015,8686,8686,8686,42,4497,4227,4234,0,5012,4743,4750,8687,8687,8687,42,4497,4234,4499,0,5012,4750,5014,8688,8688,8688,42,4498,4209,4230,0,5013,4725,4746,8689,8689,8689,42,4498,4230,4496,0,5013,4746,5011,8690,8690,8690,42,4501,4208,4209,0,5016,4724,4725,8691,8691,8691,42,4501,4209,4498,0,5016,4725,5013,8692,8692,8692,42,4446,4450,4208,0,4963,4967,4724,8693,8693,8693,42,4446,4208,4501,0,4963,4724,5016,8694,8694,8694,42,4500,4235,4454,0,5015,4751,4971,8695,8695,8695,42,4500,4454,4445,0,5015,4971,4962,8696,8696,8696,42,4337,4331,4332,0,4853,4847,4848,8697,8697,8697,42,4337,4332,4189,0,4853,4848,4706,8698,8698,8698,42,4273,4386,4334,0,4789,4902,4850,8699,8699,8699,42,4273,4334,4335,0,4789,4850,4851,8700,8700,8700,42,4305,4335,4328,0,4821,4851,4844,8701,8701,8701,42,4305,4328,4304,0,4821,4844,4820,8702,8702,8702,42,4305,4306,4269,0,4821,4822,4785,8703,8703,8703,42,4305,4269,4270,0,4821,4785,4786,8704,8704,8704,42,4371,4424,4425,0,4887,4942,4943,8705,8705,8705,42,4371,4425,4370,0,4887,4943,4886,8706,8706,8706,42,4436,4322,4424,0,4953,4838,4942,8707,8707,8707,42,4436,4424,4371,0,4953,4942,4887,8708,8708,8708,42,4377,4426,4428,0,4893,4944,4946,8709,8709,8709,42,4377,4428,4376,0,4893,4946,4892,8710,8710,8710,42,4370,4425,4426,0,4886,4943,4944,8711,8711,8711,42,4370,4426,4377,0,4886,4944,4893,8712,8712,8712,42,4312,4311,4322,0,4828,4827,4838,8713,8713,8713,42,4312,4322,4436,0,4828,4838,4953,8714,8714,8714,42,4491,4483,4374,0,256,250,4890,8715,8715,8715,42,4491,4374,4376,0,256,4890,4892,8716,8716,8716,42,4312,4434,4269,0,4828,4951,4785,8717,8717,8717,42,4312,4269,4306,0,4828,4785,4822,8718,8718,8718,42,4435,4436,4371,0,4952,4953,4887,8719,8719,8719,42,4435,4371,4369,0,4952,4887,4885,8720,8720,8720,42,4434,4465,4267,0,4951,4985,4783,8721,8721,8721,42,4434,4267,4269,0,4951,4783,4785,8722,8722,8722,42,4369,4366,4469,0,4885,4882,4989,8723,8723,8723,42,4369,4469,4435,0,4885,4989,4952,8724,8724,8724,42,4464,4465,4469,0,4984,4985,4989,8725,8725,8725,42,4464,4469,4466,0,4984,4989,4986,8726,8726,8726,42,4465,4434,4435,0,4985,4951,4952,8727,8727,8727,42,4465,4435,4469,0,4985,4952,4989,8728,8728,8728,42,4137,4138,4133,0,4634,4635,4630,8729,8729,8729,42,4137,4133,4134,0,4634,4630,4631,8730,8730,8730,42,4154,4185,4150,0,4651,4700,4647,8731,8731,8731,42,4154,4150,4151,0,4651,4647,4648,8732,8732,8732,42,4147,4148,4153,0,4644,4645,4650,8733,8733,8733,42,4147,4153,4151,0,4644,4650,4648,8734,8734,8734,42,4007,4005,4173,0,4487,4485,4678,8735,8735,8735,42,4007,4173,4174,0,4487,4678,4679,8736,8736,8736,42,4139,4184,4178,0,4636,4697,4686,8737,8737,8737,42,4139,4178,4138,0,4636,4686,4635,8738,8738,8738,42,4184,3973,4179,0,4702,4445,4687,8739,8739,8739,42,4184,4179,4178,0,4702,4687,4688,8740,8740,8740,42,4011,4009,4180,0,4491,4489,4689,8741,8741,8741,42,4011,4180,4181,0,4491,4689,4690,8742,8742,8742,42,4175,4164,4180,0,4680,4666,4689,8743,8743,8743,42,4175,4180,4174,0,4680,4689,4679,8744,8744,8744,42,4183,4172,4173,0,4695,4677,4678,8745,8745,8745,42,4183,4173,4182,0,4695,4678,4694,8746,8746,8746,42,4150,4182,3959,0,4701,4694,4431,8747,8747,8747,42,4150,3959,4149,0,4701,4431,4674,8748,8748,8748,42,4181,4179,3973,0,4690,4687,4445,8749,8749,8749,42,4181,3973,4011,0,4690,4445,4491,8750,8750,8750,42,4205,4206,4302,0,4721,4722,4818,8751,8751,8751,42,4205,4302,4303,0,4721,4818,4819,8752,8752,8752,42,4220,4432,4293,0,4736,4949,4809,8753,8753,8753,42,4220,4293,4294,0,4736,4809,4810,8754,8754,8754,42,4359,4198,4199,0,4875,4714,4715,8755,8755,8755,42,4359,4199,4358,0,4875,4715,4874,8756,8756,8756,42,4358,4199,4281,0,4874,4715,4797,8757,8757,8757,42,4358,4281,4361,0,4874,4797,4877,8758,8758,8758,42,4137,4359,4201,0,4634,4875,4717,8759,8759,8759,42,4137,4201,4136,0,4634,4717,4633,8760,8760,8760,42,4448,4449,4438,0,4965,4966,4955,8761,8761,8761,42,4448,4438,4439,0,4965,4955,4956,8762,8762,8762,42,4438,4449,4451,0,4955,4966,4968,8763,8763,8763,42,4438,4451,4442,0,4955,4968,4959,8764,8764,8764,42,4442,4451,4453,0,4959,4968,4970,8765,8765,8765,42,4442,4453,4444,0,4959,4970,4961,8766,8766,8766,42,4444,4453,4292,0,4961,4970,4808,8767,8767,8767,42,4444,4292,4293,0,4961,4808,4809,8768,8768,8768,42,4303,4448,4439,0,4819,4965,4956,8769,8769,8769,42,4303,4439,4205,0,4819,4956,4721,8770,8770,8770,42,4458,4361,4281,0,4976,4877,4797,8771,8771,8771,42,4458,4281,4459,0,4976,4797,4977,8772,8772,8772,42,4294,4295,4190,0,4810,4811,4707,8773,8773,8773,42,4294,4190,4471,0,4810,4707,4991,8774,8774,8774,42,4481,4219,4471,0,248,4735,4991,8775,8775,8775,42,4481,4471,4473,0,248,4991,246,8776,8776,8776,42,4207,4152,4153,0,4723,4649,4650,8777,8777,8777,42,4207,4153,4206,0,4723,4650,4722,8778,8778,8778,42,4192,4248,958,0,4708,4764,244,8779,8779,8779,42,4192,958,683,0,4708,244,239,8780,8780,8780,42,4192,4190,4295,0,4708,4707,4811,8781,8781,8781,42,4192,4295,4247,0,4708,4811,4763,8782,8782,8782,42,4262,4421,4364,0,4778,4939,4880,8783,8783,8783,42,4262,4364,4261,0,4778,4880,4777,8784,8784,8784,42,4263,4468,4421,0,4779,4988,4939,8785,8785,8785,42,4263,4421,4262,0,4779,4939,4778,8786,8786,8786,42,4301,4298,4297,0,4817,4814,4813,8787,8787,8787,42,4301,4297,4291,0,4817,4813,4807,8788,8788,8788,42,4301,4346,4349,0,4817,4862,4865,8789,8789,8789,42,4301,4349,4300,0,4817,4865,4816,8790,8790,8790,42,4395,4286,4355,0,4911,4802,4871,8791,8791,8791,42,4395,4355,4394,0,4911,4871,4910,8792,8792,8792,42,4397,4478,4393,0,4913,4999,4909,8793,8793,8793,42,4397,4393,4394,0,4913,4909,4910,8794,8794,8794,42,4261,4364,4249,0,4777,4880,4765,8795,8795,8795,42,4261,4249,4247,0,4777,4765,4763,8796,8796,8796,42,4263,4264,4447,0,4779,4780,4964,8797,8797,8797,42,4263,4447,4470,0,4779,4964,4990,8798,8798,8798,42,4476,4346,4288,0,4997,4862,4804,8799,8799,8799,42,4476,4288,4289,0,4997,4804,4805,8800,8800,8800,42,4476,4289,4285,0,4997,4805,4801,8801,8801,8801,42,4476,4285,4477,0,4997,4801,4998,8802,8802,8802,42,4477,4285,4286,0,4998,4801,4802,8803,8803,8803,42,4477,4286,4395,0,4998,4802,4911,8804,8804,8804,42,4298,4299,4467,0,4814,4815,4987,8805,8805,8805,42,4298,4467,4470,0,4814,4987,4990,8806,8806,8806,42,966,979,4478,0,5002,5017,4999,8807,8807,8807,42,966,4478,4397,0,5002,4999,4913,8808,8808,8808,42,4502,4319,4324,0,5018,4835,4840,8809,8809,8809,42,4502,4324,4325,0,5018,4840,4841,8810,8810,8810,42,4326,4323,4310,0,4842,4839,4826,8811,8811,8811,42,4326,4310,4324,0,4842,4826,4840,8812,8812,8812,42,4416,4502,4325,0,4934,5018,4841,8813,8813,8813,42,4416,4325,4329,0,4934,4841,4845,8814,8814,8814,42,4418,4416,4329,0,4936,4934,4845,8815,8815,8815,42,4418,4329,4330,0,4936,4845,4846,8816,8816,8816,42,4503,4418,4330,0,5019,4936,4846,8817,8817,8817,42,4503,4330,4333,0,5019,4846,4849,8818,8818,8818,42,4504,4419,4342,0,5020,4937,4858,8819,8819,8819,42,4504,4342,4343,0,5020,4858,4859,8820,8820,8820,42,4419,4404,4344,0,4937,4920,4860,8821,8821,8821,42,4419,4344,4342,0,4937,4860,4858,8822,8822,8822,42,4404,4402,4345,0,4920,4918,4861,8823,8823,8823,42,4404,4345,4344,0,4920,4861,4860,8824,8824,8824,42,4402,4503,4333,0,4918,5019,4849,8825,8825,8825,42,4402,4333,4345,0,4918,4849,4861,8826,8826,8826,42,4343,258,4505,0,4859,4928,5021,8827,8827,8827,42,4343,4505,4504,0,4859,5021,5020,8828,8828,8828,42,4414,4326,4317,0,4932,4842,4833,8829,8829,8829,42,4414,4317,4412,0,4932,4833,4930,8830,8830,8830,42,4255,4423,4415,0,4771,4941,4933,8831,8831,8831,42,4255,4415,4414,0,4771,4933,4932,8832,8832,8832,42,4423,4255,4251,0,4941,4771,4767,8833,8833,8833,42,4423,4251,4427,0,4941,4767,4945,8834,8834,8834,42,4257,4413,4506,0,4773,4931,5022,8835,8835,8835,42,4257,4506,4507,0,4773,5022,5023,8836,8836,8836,42,4507,4508,4256,0,5023,5024,4772,8837,8837,8837,42,4507,4256,4257,0,5023,4772,4773,8838,8838,8838,42,4508,4461,4258,0,5024,4981,4774,8839,8839,8839,42,4508,4258,4256,0,5024,4774,4772,8840,8840,8840,42,4319,4502,4314,0,4835,5018,4830,8841,8841,8841,42,4319,4314,4315,0,4835,4830,4831,8842,8842,8842,42,4316,4509,4318,0,4832,5025,4834,8843,8843,8843,42,4316,4318,4315,0,4832,4834,4831,8844,8844,8844,42,4502,4416,4321,0,5018,4934,4837,8845,8845,8845,42,4502,4321,4314,0,5018,4837,4830,8846,8846,8846,42,4503,4402,4399,0,5019,4918,4915,8847,8847,8847,42,4503,4399,4400,0,5019,4915,4916,8848,8848,8848,42,4510,4398,4399,0,5026,4914,4915,8849,8849,8849,42,4510,4399,4403,0,5026,4915,4919,8850,8850,8850,42,4504,4505,4407,0,5020,5021,4923,8851,8851,8851,42,4504,4407,4408,0,5020,4923,4924,8852,8852,8852,42,4419,4504,4408,0,4937,5020,4924,8853,8853,8853,42,4419,4408,4410,0,4937,4924,4926,8854,8854,8854,42,4509,4506,4413,0,5025,5022,4931,8855,8855,8855,42,4509,4413,4318,0,5025,4931,4834,8856,8856,8856,42,4422,4320,4321,0,4940,4836,4837,8857,8857,8857,42,4422,4321,4417,0,4940,4837,4935,8858,8858,8858,42,4411,4510,4403,0,4927,5026,4919,8859,8859,8859,42,4411,4403,4410,0,4927,4919,4926,8860,8860,8860,42,4418,4503,4400,0,4936,5019,4916,8861,8861,8861,42,4418,4400,4417,0,4936,4916,4935,8862,8862,8862,42,4258,4462,4455,0,4774,4982,4972,8863,8863,8863,42,4258,4455,4253,0,4774,4972,4769,8864,8864,8864,42,4463,4511,968,0,4983,258,257,8865,8865,8865,42,4463,968,4462,0,4983,257,4982,8866,8866,8866,42,4254,4412,4413,0,4770,4930,4931,8867,8867,8867,42,4254,4413,4257,0,4770,4931,4773,8868,8868,8868,42,4479,4245,4487,0,5000,4761,252,8869,8869,8869,42,4479,4487,4512,0,5000,252,259,8870,8870,8870,42,4479,4512,245,0,5000,259,260,8871,8871,8871,42,4479,245,4480,0,5000,260,5001,8872,8872,8872,42,4141,4144,4146,0,4638,4641,4643,8873,8873,8873,42,4146,4144,4145,0,4643,4641,4642,8874,8874,8874,42,4396,4478,979,0,4912,4999,5017,8875,8875,8875,42,4396,979,4485,0,4912,5017,5004,8876,8876,8876,42,4513,4161,4160,0,5027,4663,4660,8877,8877,8877,42,4513,4160,4514,0,5027,4660,5028,8878,8878,8878,42,4120,4110,4161,0,4617,4603,4663,8879,8879,8879,42,4120,4161,4513,0,4617,4663,5027,8880,8880,8880,42,4514,4160,4126,0,5028,4660,4661,8881,8881,8881,42,4514,4126,4125,0,5028,4661,5029,8882,8882,8882,42,4125,4124,4515,0,4622,4621,5030,8883,8883,8883,42,4125,4515,4516,0,4622,5030,5031,8884,8884,8884,42,4514,4125,4516,0,5028,5029,5032,8885,8885,8885,42,4514,4516,4517,0,5028,5032,5033,8886,8886,8886,42,4517,4518,4513,0,5033,5034,5027,8887,8887,8887,42,4517,4513,4514,0,5033,5027,5028,8888,8888,8888,42,4124,4123,4519,0,4621,4620,5035,8889,8889,8889,42,4124,4519,4515,0,4621,5035,5030,8890,8890,8890,42,4520,4232,4240,0,5036,4748,4756,8891,8891,8891,42,4520,4240,4521,0,5036,4756,5037,8892,8892,8892,42,4522,4233,4232,0,5038,4749,4748,8893,8893,8893,42,4522,4232,4520,0,5038,4748,5036,8894,8894,8894,42,4523,4223,4224,0,5039,4739,4740,8895,8895,8895,42,4523,4224,4524,0,5039,4740,5040,8896,8896,8896,42,4525,4276,4274,0,5041,4792,4790,8897,8897,8897,42,4525,4274,4518,0,5041,4790,5034,8898,8898,8898,42,4513,4518,4274,0,5027,5034,4790,8899,8899,8899,42,4513,4274,4120,0,5027,4790,4617,8900,8900,8900,42,4278,4276,4525,0,4794,4792,5041,8901,8901,8901,42,4278,4525,4526,0,4794,5041,5042,8902,8902,8902,42,4240,4243,4527,0,4756,4759,5043,8903,8903,8903,42,4240,4527,4521,0,4756,5043,5037,8904,8904,8904,42,4528,4527,4243,0,5044,5043,4759,8905,8905,8905,42,4528,4243,4244,0,5044,4759,4760,8906,8906,8906,42,4529,4528,4244,0,5045,5044,4760,8907,8907,8907,42,4529,4244,4480,0,5045,4760,5001,8908,8908,8908,42,4526,262,261,0,5042,5046,5006,8909,8909,8909,42,4526,261,4278,0,5042,5006,4794,8910,8910,8910,42,4519,4123,4223,0,5035,4620,4739,8911,8911,8911,42,4519,4223,4523,0,5035,4739,5039,8912,8912,8912,42,4530,4495,4492,0,5047,5010,5007,8913,8913,8913,42,4530,4492,4531,0,5047,5007,5048,8914,8914,8914,42,4531,4492,4233,0,5048,5007,4749,8915,8915,8915,42,4531,4233,4522,0,5048,4749,5038,8916,8916,8916,42,4495,4530,4524,0,5010,5047,5040,8917,8917,8917,42,4495,4524,4224,0,5010,5040,4740,8918,8918,8918,42,4480,245,1007,0,5001,260,261,8919,8919,8919,42,4480,1007,4529,0,5001,261,5045,8920,8920,8920,42,4283,4287,4131,0,4799,4803,4628,8921,8921,8921,42,4283,4131,4145,0,4799,4628,4642,8922,8922,8922,42,4534,4533,4532,0,5051,5050,5049,8923,8923,8923,42,4534,4532,4535,0,5051,5049,5052,8924,8924,8924,42,4538,4537,4536,0,5055,5054,5053,8925,8925,8925,42,4538,4536,4539,0,5055,5053,5056,8926,8926,8926,42,4542,4541,4540,0,5059,5058,5057,8927,8927,8927,42,4542,4540,4543,0,5059,5057,5060,8928,8928,8928,42,4541,4545,4544,0,5058,5062,5061,8929,8929,8929,42,4541,4544,4540,0,5058,5061,5057,8930,8930,8930,42,4546,4542,4543,0,5063,5059,5060,8931,8931,8931,42,4546,4543,4547,0,5063,5060,5064,8932,8932,8932,42,4542,4546,4548,0,5059,5063,5065,8933,8933,8933,42,4542,4548,4549,0,5059,5065,5066,8934,8934,8934,42,4463,4461,4550,0,5069,5068,5067,8935,8935,8935,42,4463,4550,4551,0,5069,5067,5070,8936,8936,8936,42,4541,4542,4549,0,5058,5059,5066,8937,8937,8937,42,4541,4549,4552,0,5058,5066,5071,8938,8938,8938,42,4537,4538,4553,0,5054,5055,5072,8939,8939,8939,42,4537,4553,4554,0,5054,5072,5073,8940,8940,8940,42,4545,4541,4552,0,5062,5058,5071,8941,8941,8941,42,4545,4552,4555,0,5062,5071,5074,8942,8942,8942,42,4558,4557,4556,0,5077,5076,5075,8943,8943,8943,42,4558,4556,4559,0,5077,5075,5078,8944,8944,8944,42,4537,4561,4560,0,5054,5080,5079,8945,8945,8945,42,4537,4560,4536,0,5054,5079,5053,8946,8946,8946,42,4564,4563,4562,0,5083,5082,5081,8947,8947,8947,42,4564,4562,4565,0,5083,5081,5084,8948,8948,8948,42,4567,4566,4409,0,5087,5086,5085,8949,8949,8949,42,4567,4409,4568,0,5087,5085,5088,8950,8950,8950,42,4566,4567,4563,0,5086,5087,5082,8951,8951,8951,42,4566,4563,4564,0,5086,5082,5083,8952,8952,8952,42,4571,4570,4569,0,5091,5090,5089,8953,8953,8953,42,4571,4569,4572,0,5091,5089,5092,8954,8954,8954,42,4401,4398,4573,0,5095,5094,5093,8955,8955,8955,42,4401,4573,4574,0,5095,5093,5096,8956,8956,8956,42,4398,4510,4556,0,5094,5097,5075,8957,8957,8957,42,4398,4556,4573,0,5094,5075,5093,8958,8958,8958,42,4575,4571,4572,0,5098,5091,5092,8959,8959,8959,42,4575,4572,4557,0,5098,5092,5076,8960,8960,8960,42,4576,4538,4539,0,5099,5055,5056,8961,8961,8961,42,4576,4539,4577,0,5099,5056,5100,8962,8962,8962,42,4538,4576,4578,0,5055,5099,5101,8963,8963,8963,42,4538,4578,4553,0,5055,5101,5072,8964,8964,8964,42,4545,4576,4577,0,5062,5099,5100,8965,8965,8965,42,4545,4577,4544,0,5062,5100,5061,8966,8966,8966,42,4576,4545,4555,0,5099,5062,5074,8967,8967,8967,42,4576,4555,4578,0,5099,5074,5101,8968,8968,8968,42,4561,4537,4554,0,5080,5054,5073,8969,8969,8969,42,4561,4554,4579,0,5080,5073,5102,8970,8970,8970,42,4422,4401,4574,0,5103,5095,5096,8971,8971,8971,42,4422,4574,4579,0,5103,5096,5102,8972,8972,8972,42,4570,4560,4561,0,5090,5079,5080,8973,8973,8973,42,4570,4561,4569,0,5090,5080,5089,8974,8974,8974,42,4557,4558,4580,0,5076,5077,5104,8975,8975,8975,42,4557,4580,4575,0,5076,5104,5098,8976,8976,8976,42,4565,4580,4558,0,5084,5104,5077,8977,8977,8977,42,4565,4558,4564,0,5084,5077,5083,8978,8978,8978,42,4564,4558,4559,0,5083,5077,5078,8979,8979,8979,42,4564,4559,4566,0,5083,5078,5086,8980,8980,8980,42,4547,4534,4535,0,5064,5051,5052,8981,8981,8981,42,4547,4535,4546,0,5064,5052,5063,8982,8982,8982,42,4546,4535,4550,0,5063,5052,5067,8983,8983,8983,42,4546,4550,4548,0,5063,5067,5065,8984,8984,8984,42,4551,1057,4511,0,5070,263,262,8985,8985,8985,42,4551,4511,4463,0,5070,262,5069,8986,8986,8986,42,4562,4563,1058,0,5081,5082,5105,8987,8987,8987,42,4562,1058,4581,0,5081,5105,5106,8988,8988,8988,42,263,4532,4533,0,264,5049,5050,8989,8989,8989,42,263,4533,4582,0,264,5050,265,8990,8990,8990,42,4508,4507,4549,0,5108,5107,5066,8991,8991,8991,42,4508,4549,4548,0,5108,5066,5065,8992,8992,8992,42,4535,4532,4551,0,5052,5049,5070,8993,8993,8993,42,4535,4551,4550,0,5052,5070,5067,8994,8994,8994,42,4507,4506,4552,0,5107,5109,5071,8995,8995,8995,42,4507,4552,4549,0,5107,5071,5066,8996,8996,8996,42,4313,4320,4554,0,5111,5110,5073,8997,8997,8997,42,4313,4554,4553,0,5111,5073,5072,8998,8998,8998,42,4506,4509,4555,0,5109,5112,5074,8999,8999,8999,42,4506,4555,4552,0,5109,5074,5071,9000,9000,9000,42,4510,4411,4559,0,5097,5113,5078,9001,9001,9001,42,4510,4559,4556,0,5097,5078,5075,9002,9002,9002,42,237,1058,4563,0,5114,5105,5082,9003,9003,9003,42,237,4563,4567,0,5114,5082,5087,9004,9004,9004,42,4572,4569,4574,0,5092,5089,5096,9005,9005,9005,42,4572,4574,4573,0,5092,5096,5093,9006,9006,9006,42,4557,4572,4573,0,5076,5092,5093,9007,9007,9007,42,4557,4573,4556,0,5076,5093,5075,9008,9008,9008,42,4316,4313,4553,0,5115,5111,5072,9009,9009,9009,42,4316,4553,4578,0,5115,5072,5101,9010,9010,9010,42,4509,4316,4578,0,5112,5115,5101,9011,9011,9011,42,4509,4578,4555,0,5112,5101,5074,9012,9012,9012,42,4320,4422,4579,0,5110,5103,5102,9013,9013,9013,42,4320,4579,4554,0,5110,5102,5073,9014,9014,9014,42,4569,4561,4579,0,5089,5080,5102,9015,9015,9015,42,4569,4579,4574,0,5089,5102,5096,9016,9016,9016,42,4411,4409,4566,0,5113,5085,5086,9017,9017,9017,42,4411,4566,4559,0,5113,5086,5078,9018,9018,9018,42,4461,4508,4548,0,5068,5108,5065,9019,9019,9019,42,4461,4548,4550,0,5068,5065,5067,9020,9020,9020,42,1057,4551,4532,0,263,5070,5049,9021,9021,9021,42,1057,4532,263,0,263,5049,264,9022,9022,9022,42,4585,4584,4583,0,5118,5117,5116,9023,9023,9023,42,4585,4583,4586,0,5118,5116,5119,9024,9024,9024,42,4584,4588,4587,0,5117,5121,5120,9025,9025,9025,42,4584,4587,4583,0,5117,5120,5116,9026,9026,9026,42,4586,4583,4589,0,5119,5116,5122,9027,9027,9027,42,4586,4589,4590,0,5119,5122,5123,9028,9028,9028,42,4583,4587,4591,0,5116,5120,5124,9029,9029,9029,42,4583,4591,4589,0,5116,5124,5122,9030,9030,9030,42,4592,4584,4585,0,5125,5117,5118,9031,9031,9031,42,4592,4585,4593,0,5125,5118,5126,9032,9032,9032,42,4586,4595,4594,0,5119,5128,5127,9033,9033,9033,42,4586,4594,4585,0,5119,5127,5118,9034,9034,9034,42,4594,4596,4593,0,5127,5129,5126,9035,9035,9035,42,4594,4593,4585,0,5127,5126,5118,9036,9036,9036,42,4588,4598,4597,0,5121,5131,5130,9037,9037,9037,42,4588,4597,4599,0,5121,5130,5132,9038,9038,9038,42,4598,4601,4600,0,5131,5134,5133,9039,9039,9039,42,4598,4600,4597,0,5131,5133,5130,9040,9040,9040,42,4584,4592,4598,0,5117,5125,5131,9041,9041,9041,42,4584,4598,4588,0,5117,5131,5121,9042,9042,9042,42,4592,4602,4601,0,5125,5135,5134,9043,9043,9043,42,4592,4601,4598,0,5125,5134,5131,9044,9044,9044,42,4605,4604,4603,0,5138,5137,5136,9045,9045,9045,42,4605,4603,4606,0,5138,5136,5139,9046,9046,9046,42,4601,4608,4607,0,5134,5141,5140,9047,9047,9047,42,4601,4607,4600,0,5134,5140,5133,9048,9048,9048,42,4610,4609,4577,0,5143,5142,5100,9049,9049,9049,42,4610,4577,4539,0,5143,5100,5056,9050,9050,9050,42,4536,4560,4611,0,5053,5079,5144,9051,9051,9051,42,4536,4611,4612,0,5053,5144,5145,9052,9052,9052,42,4613,4611,4560,0,5146,5144,5079,9053,9053,9053,42,4613,4560,4570,0,5146,5079,5090,9054,9054,9054,42,4616,4615,4614,0,5149,5148,5147,9055,9055,9055,42,4616,4614,4617,0,5149,5147,5150,9056,9056,9056,42,4618,4591,4587,0,5151,5124,5120,9057,9057,9057,42,4618,4587,4619,0,5151,5120,5152,9058,9058,9058,42,4618,4617,4620,0,5151,5150,5153,9059,9059,9059,42,4618,4620,4621,0,5151,5153,5154,9060,9060,9060,42,4623,4622,4589,0,5156,5155,5122,9061,9061,9061,42,4623,4589,4591,0,5156,5122,5124,9062,9062,9062,42,4626,4625,4624,0,5159,5158,5157,9063,9063,9063,42,4626,4624,4627,0,5159,5157,5160,9064,9064,9064,42,4626,4629,4628,0,5163,5162,5161,9065,9065,9065,42,4626,4628,4625,0,5163,5161,5164,9066,9066,9066,42,4632,4631,4630,0,5167,5166,5165,9067,9067,9067,42,4632,4630,4633,0,5167,5165,5168,9068,9068,9068,42,4634,4632,4633,0,5169,5167,5168,9069,9069,9069,42,4634,4633,4635,0,5169,5168,5170,9070,9070,9070,42,4637,4636,4631,0,5172,5171,5166,9071,9071,9071,42,4637,4631,4632,0,5172,5166,5167,9072,9072,9072,42,4638,4637,4632,0,5173,5172,5167,9073,9073,9073,42,4638,4632,4634,0,5173,5167,5169,9074,9074,9074,42,4633,4630,4639,0,5168,5165,5174,9075,9075,9075,42,4633,4639,4640,0,5168,5174,5175,9076,9076,9076,42,4635,4633,4640,0,5170,5168,5175,9077,9077,9077,42,4635,4640,4641,0,5170,5175,5176,9078,9078,9078,42,4642,4630,4631,0,5177,5165,5166,9079,9079,9079,42,4642,4631,4643,0,5177,5166,5178,9080,9080,9080,42,4644,4642,4643,0,5181,5180,5179,9081,9081,9081,42,4644,4643,4645,0,5181,5179,5182,9082,9082,9082,42,4626,4639,4630,0,5159,5174,5165,9083,9083,9083,42,4626,4630,4642,0,5159,5165,5177,9084,9084,9084,42,4642,4644,4629,0,5180,5181,5162,9085,9085,9085,42,4642,4629,4626,0,5180,5162,5163,9086,9086,9086,42,4533,4534,4646,0,5050,5051,5183,9087,9087,9087,42,4533,4646,4647,0,5050,5183,5184,9088,9088,9088,42,4648,4646,4534,0,5185,5183,5051,9089,9089,9089,42,4648,4534,4547,0,5185,5051,5064,9090,9090,9090,42,4646,4648,4649,0,5183,5185,5186,9091,9091,9091,42,4646,4649,4650,0,5183,5186,5187,9092,9092,9092,42,4653,4652,4651,0,5190,5189,5188,9093,9093,9093,42,4653,4651,4650,0,5190,5188,5187,9094,9094,9094,42,4654,4629,4644,0,5191,5162,5181,9095,9095,9095,42,4654,4644,4655,0,5191,5181,5192,9096,9096,9096,42,4655,4644,4645,0,5192,5181,5182,9097,9097,9097,42,4655,4645,4656,0,5192,5182,5193,9098,9098,9098,42,4659,4658,4657,0,5196,5195,5194,9099,9099,9099,42,4659,4657,4656,0,5196,5194,5193,9100,9100,9100,42,4658,4659,4660,0,5195,5196,5197,9101,9101,9101,42,4658,4660,4661,0,5195,5197,5198,9102,9102,9102,42,4663,4622,4662,0,5200,5155,5199,9103,9103,9103,42,4663,4662,4664,0,5200,5199,5201,9104,9104,9104,42,4665,4662,4622,0,5202,5199,5155,9105,9105,9105,42,4665,4622,4623,0,5202,5155,5156,9106,9106,9106,42,4666,4661,4662,0,5203,5198,5199,9107,9107,9107,42,4666,4662,4665,0,5203,5199,5202,9108,9108,9108,42,4667,4657,4658,0,5204,5194,5195,9109,9109,9109,42,4667,4658,4668,0,5204,5195,5205,9110,9110,9110,42,4668,4658,4661,0,5205,5195,5198,9111,9111,9111,42,4668,4661,4666,0,5205,5198,5203,9112,9112,9112,42,4671,4670,4669,0,5208,5207,5206,9113,9113,9113,42,4671,4669,4672,0,5208,5206,5209,9114,9114,9114,42,4673,4667,4668,0,5210,5204,5205,9115,9115,9115,42,4673,4668,4672,0,5210,5205,5209,9116,9116,9116,42,4675,4674,4669,0,5212,5211,5206,9117,9117,9117,42,4675,4669,4676,0,5212,5206,5213,9118,9118,9118,42,4678,4677,4676,0,5215,5214,5213,9119,9119,9119,42,4678,4676,4679,0,5215,5213,5216,9120,9120,9120,42,4680,4675,4676,0,5217,5212,5213,9121,9121,9121,42,4680,4676,4677,0,5217,5213,5214,9122,9122,9122,42,4680,4677,4565,0,5217,5214,5084,9123,9123,9123,42,4680,4565,4562,0,5217,5084,5081,9124,9124,9124,42,4682,4681,4670,0,5219,5218,5207,9125,9125,9125,42,4682,4670,4671,0,5219,5207,5208,9126,9126,9126,42,4570,4571,4683,0,5090,5091,5220,9127,9127,9127,42,4570,4683,4613,0,5090,5220,5146,9128,9128,9128,42,4571,4575,4684,0,5091,5098,5221,9129,9129,9129,42,4571,4684,4683,0,5091,5221,5220,9130,9130,9130,42,4685,4620,4617,0,5222,5153,5150,9131,9131,9131,42,4685,4617,4614,0,5222,5150,5147,9132,9132,9132,42,4685,4683,4684,0,5222,5220,5221,9133,9133,9133,42,4685,4684,4686,0,5222,5221,5223,9134,9134,9134,42,4590,4589,4622,0,5123,5122,5155,9135,9135,9135,42,4590,4622,4663,0,5123,5155,5200,9136,9136,9136,42,4604,4688,4687,0,5137,5225,5224,9137,9137,9137,42,4604,4687,4603,0,5137,5224,5136,9138,9138,9138,42,4543,4540,4689,0,5060,5057,5226,9139,9139,9139,42,4543,4689,4690,0,5060,5226,5227,9140,9140,9140,42,4690,4648,4547,0,5227,5185,5064,9141,9141,9141,42,4690,4547,4543,0,5227,5064,5060,9142,9142,9142,42,4688,4692,4691,0,5225,5229,5228,9143,9143,9143,42,4688,4691,4687,0,5225,5228,5224,9144,9144,9144,42,4692,4693,4649,0,5229,5230,5186,9145,9145,9145,42,4692,4649,4691,0,5229,5186,5228,9146,9146,9146,42,4693,4692,4694,0,5230,5229,5231,9147,9147,9147,42,4693,4694,4695,0,5230,5231,5232,9148,9148,9148,42,4641,4640,4694,0,5176,5175,5231,9149,9149,9149,42,4641,4694,4696,0,5176,5231,5233,9150,9150,9150,42,4608,4641,4696,0,5141,5176,5233,9151,9151,9151,42,4608,4696,4607,0,5141,5233,5140,9152,9152,9152,42,4697,4635,4641,0,5234,5170,5176,9153,9153,9153,42,4697,4641,4608,0,5234,5176,5141,9154,9154,9154,42,4700,4699,4698,0,5237,5236,5235,9155,9155,9155,42,4700,4698,4701,0,5237,5235,5238,9156,9156,9156,42,4703,4702,4701,0,5240,5239,5238,9157,9157,9157,42,4703,4701,4698,0,5240,5238,5235,9158,9158,9158,42,4704,4700,4701,0,5241,5237,5238,9159,9159,9159,42,4704,4701,4705,0,5241,5238,5242,9160,9160,9160,42,4705,4701,4702,0,5242,5238,5239,9161,9161,9161,42,4705,4702,4706,0,5242,5239,5243,9162,9162,9162,42,4709,4708,4707,0,5246,5245,5244,9163,9163,9163,42,4709,4707,4710,0,5246,5244,5247,9164,9164,9164,42,4711,4709,4710,0,5248,5246,5247,9165,9165,9165,42,4711,4710,4712,0,5248,5247,5249,9166,9166,9166,42,4712,4714,4713,0,5249,5251,5250,9167,9167,9167,42,4712,4713,4711,0,5249,5250,5248,9168,9168,9168,42,4717,4716,4715,0,5254,5253,5252,9169,9169,9169,42,4717,4715,4718,0,5254,5252,5255,9170,9170,9170,42,4720,4719,4718,0,5257,5256,5255,9171,9171,9171,42,4720,4718,4715,0,5257,5255,5252,9172,9172,9172,42,4722,4721,4715,0,5259,5258,5252,9173,9173,9173,42,4722,4715,4716,0,5259,5252,5253,9174,9174,9174,42,4725,4724,4723,0,5262,5261,5260,9175,9175,9175,42,4725,4723,4726,0,5262,5260,5263,9176,9176,9176,42,4729,4728,4727,0,5266,5265,5264,9177,9177,9177,42,4729,4727,4730,0,5266,5264,5267,9178,9178,9178,42,4731,4723,4724,0,5268,5260,5261,9179,9179,9179,42,4731,4724,4732,0,5268,5261,5269,9180,9180,9180,42,4733,4725,4726,0,5270,5262,5263,9181,9181,9181,42,4733,4726,4721,0,5270,5263,5258,9182,9182,9182,42,4735,4734,4727,0,5272,5271,5264,9183,9183,9183,42,4735,4727,4736,0,5272,5264,5273,9184,9184,9184,42,4596,4594,4737,0,5129,5127,5274,9185,9185,9185,42,4596,4737,4738,0,5129,5274,5275,9186,9186,9186,42,4739,4593,4596,0,5276,5126,5129,9187,9187,9187,42,4739,4596,4740,0,5276,5129,5277,9188,9188,9188,42,4740,4596,4738,0,5277,5129,5275,9189,9189,9189,42,4740,4738,4741,0,5277,5275,5278,9190,9190,9190,42,4742,4737,4594,0,5279,5274,5127,9191,9191,9191,42,4742,4594,4595,0,5279,5127,5128,9192,9192,9192,42,4744,4743,4741,0,5281,5280,5278,9193,9193,9193,42,4744,4741,4738,0,5281,5278,5275,9194,9194,9194,42,4745,4740,4741,0,5282,5277,5278,9195,9195,9195,42,4745,4741,4746,0,5282,5278,5283,9196,9196,9196,42,4743,4747,4746,0,5280,5284,5283,9197,9197,9197,42,4743,4746,4741,0,5280,5283,5278,9198,9198,9198,42,4638,4745,4746,0,5173,5282,5283,9199,9199,9199,42,4638,4746,4748,0,5173,5283,5285,9200,9200,9200,42,4747,4749,4748,0,5284,5286,5285,9201,9201,9201,42,4747,4748,4746,0,5284,5285,5283,9202,9202,9202,42,4749,4751,4750,0,5286,5288,5287,9203,9203,9203,42,4749,4750,4748,0,5286,5287,5285,9204,9204,9204,42,4753,4752,4751,0,5290,5289,5288,9205,9205,9205,42,4753,4751,4749,0,5290,5288,5286,9206,9206,9206,42,4751,4755,4754,0,5288,5292,5291,9207,9207,9207,42,4751,4754,4750,0,5288,5291,5287,9208,9208,9208,42,4752,4756,4755,0,5289,5293,5292,9209,9209,9209,42,4752,4755,4751,0,5289,5292,5288,9210,9210,9210,42,4758,4757,4752,0,5295,5294,5289,9211,9211,9211,42,4758,4752,4753,0,5295,5289,5290,9212,9212,9212,42,4759,4758,4753,0,5296,5295,5290,9213,9213,9213,42,4759,4753,4760,0,5296,5290,5297,9214,9214,9214,42,4760,4753,4749,0,5297,5290,5286,9215,9215,9215,42,4760,4749,4747,0,5297,5286,5284,9216,9216,9216,42,4761,4759,4760,0,5298,5296,5297,9217,9217,9217,42,4761,4760,4762,0,5298,5297,5299,9218,9218,9218,42,4762,4760,4747,0,5299,5297,5284,9219,9219,9219,42,4762,4747,4743,0,5299,5284,5280,9220,9220,9220,42,4763,4761,4762,0,5300,5298,5299,9221,9221,9221,42,4763,4762,4764,0,5300,5299,5301,9222,9222,9222,42,4764,4762,4743,0,5301,5299,5280,9223,9223,9223,42,4764,4743,4744,0,5301,5280,5281,9224,9224,9224,42,4759,4761,4765,0,5296,5298,5302,9225,9225,9225,42,4759,4765,4766,0,5296,5302,5303,9226,9226,9226,42,4767,4765,4761,0,5304,5302,5298,9227,9227,9227,42,4767,4761,4763,0,5304,5298,5300,9228,9228,9228,42,4769,4768,4766,0,5306,5305,5303,9229,9229,9229,42,4769,4766,4765,0,5306,5303,5302,9230,9230,9230,42,4770,4769,4765,0,5307,5306,5302,9231,9231,9231,42,4770,4765,4767,0,5307,5302,5304,9232,9232,9232,42,4771,4770,4767,0,5308,5307,5304,9233,9233,9233,42,4771,4767,4772,0,5308,5304,5309,9234,9234,9234,42,4774,4773,4769,0,5311,5310,5306,9235,9235,9235,42,4774,4769,4770,0,5311,5306,5307,9236,9236,9236,42,4775,4774,4770,0,5312,5311,5307,9237,9237,9237,42,4775,4770,4771,0,5312,5307,5308,9238,9238,9238,42,4758,4759,4766,0,5295,5296,5303,9239,9239,9239,42,4758,4766,4776,0,5295,5303,5313,9240,9240,9240,42,4776,4766,4768,0,5313,5303,5305,9241,9241,9241,42,4776,4768,4777,0,5313,5305,5314,9242,9242,9242,42,4777,4779,4778,0,5314,5316,5315,9243,9243,9243,42,4777,4778,4776,0,5314,5315,5313,9244,9244,9244,42,4776,4778,4757,0,5313,5315,5294,9245,9245,9245,42,4776,4757,4758,0,5313,5294,5295,9246,9246,9246,42,4772,4767,4763,0,5309,5304,5300,9247,9247,9247,42,4772,4763,4780,0,5309,5300,5317,9248,9248,9248,42,4781,4772,4780,0,5318,5309,5317,9249,9249,9249,42,4781,4780,4782,0,5318,5317,5319,9250,9250,9250,42,4783,4771,4772,0,5320,5308,5309,9251,9251,9251,42,4783,4772,4781,0,5320,5309,5318,9252,9252,9252,42,4756,4752,4757,0,5293,5289,5294,9253,9253,9253,42,4756,4757,4784,0,5293,5294,5321,9254,9254,9254,42,4778,4785,4784,0,5315,5322,5321,9255,9255,9255,42,4778,4784,4757,0,5315,5321,5294,9256,9256,9256,42,4786,4756,4784,0,5323,5293,5321,9257,9257,9257,42,4786,4784,4787,0,5323,5321,5324,9258,9258,9258,42,4785,4788,4787,0,5322,5325,5324,9259,9259,9259,42,4785,4787,4784,0,5322,5324,5321,9260,9260,9260,42,4789,4786,4787,0,5328,5327,5326,9261,9261,9261,42,4789,4787,4790,0,5328,5326,5329,9262,9262,9262,42,4792,4791,4786,0,5331,5330,5327,9263,9263,9263,42,4792,4786,4789,0,5331,5327,5328,9264,9264,9264,42,4791,4755,4756,0,5332,5292,5293,9265,9265,9265,42,4791,4756,4786,0,5332,5293,5323,9266,9266,9266,42,4791,4792,4793,0,5330,5331,5333,9267,9267,9267,42,4791,4793,4794,0,5330,5333,5334,9268,9268,9268,42,4755,4791,4794,0,5292,5332,5335,9269,9269,9269,42,4755,4794,4754,0,5292,5335,5291,9270,9270,9270,42,4794,4793,4795,0,5334,5333,5336,9271,9271,9271,42,4794,4795,4796,0,5334,5336,5337,9272,9272,9272,42,4754,4794,4796,0,5291,5335,5338,9273,9273,9273,42,4754,4796,4636,0,5291,5338,5171,9274,9274,9274,42,4798,4797,4788,0,5340,5339,5325,9275,9275,9275,42,4798,4788,4785,0,5340,5325,5322,9276,9276,9276,42,4788,4797,4799,0,5343,5342,5341,9277,9277,9277,42,4788,4799,4800,0,5343,5341,5344,9278,9278,9278,42,4788,4800,4790,0,5343,5344,5329,9279,9279,9279,42,4788,4790,4787,0,5343,5329,5326,9280,9280,9280,42,4779,4798,4785,0,5316,5340,5322,9281,9281,9281,42,4779,4785,4778,0,5316,5322,5315,9282,9282,9282,42,4750,4754,4636,0,5287,5291,5171,9283,9283,9283,42,4750,4636,4637,0,5287,5171,5172,9284,9284,9284,42,4643,4631,4636,0,5178,5166,5171,9285,9285,9285,42,4643,4636,4796,0,5178,5171,5338,9286,9286,9286,42,4792,4789,4801,0,5331,5328,5345,9287,9287,9287,42,4792,4801,4802,0,5331,5345,5346,9288,9288,9288,42,4793,4792,4802,0,5333,5331,5346,9289,9289,9289,42,4793,4802,4803,0,5333,5346,5347,9290,9290,9290,42,4806,4805,4804,0,5350,5349,5348,9291,9291,9291,42,4806,4804,4807,0,5350,5348,5351,9292,9292,9292,42,4806,4809,4808,0,5350,5353,5352,9293,9293,9293,42,4806,4808,4805,0,5350,5352,5349,9294,9294,9294,42,4810,4805,4808,0,5354,5349,5352,9295,9295,9295,42,4810,4808,4811,0,5354,5352,5355,9296,9296,9296,42,4805,4810,4812,0,5349,5354,5356,9297,9297,9297,42,4805,4812,4804,0,5349,5356,5348,9298,9298,9298,42,4807,4773,4813,0,5351,5310,5357,9299,9299,9299,42,4807,4813,4806,0,5351,5357,5350,9300,9300,9300,42,4773,4774,4814,0,5310,5311,5358,9301,9301,9301,42,4773,4814,4813,0,5310,5358,5357,9302,9302,9302,42,4774,4775,4815,0,5311,5312,5359,9303,9303,9303,42,4774,4815,4814,0,5311,5359,5358,9304,9304,9304,42,4817,4816,4815,0,5361,5360,5359,9305,9305,9305,42,4817,4815,4775,0,5361,5359,5312,9306,9306,9306,42,4783,4817,4775,0,5320,5361,5312,9307,9307,9307,42,4783,4775,4771,0,5320,5312,5308,9308,9308,9308,42,4819,4818,4816,0,5363,5362,5360,9309,9309,9309,42,4819,4816,4817,0,5363,5360,5361,9310,9310,9310,42,4821,4820,4818,0,5365,5364,5362,9311,9311,9311,42,4821,4818,4819,0,5365,5362,5363,9312,9312,9312,42,4822,4816,4818,0,5366,5360,5362,9313,9313,9313,42,4822,4818,4823,0,5366,5362,5367,9314,9314,9314,42,4823,4818,4820,0,5367,5362,5364,9315,9315,9315,42,4823,4820,4824,0,5367,5364,5368,9316,9316,9316,42,4825,4815,4816,0,5369,5359,5360,9317,9317,9317,42,4825,4816,4822,0,5369,5360,5366,9318,9318,9318,42,4827,4826,4822,0,5371,5370,5366,9319,9319,9319,42,4827,4822,4823,0,5371,5366,5367,9320,9320,9320,42,4824,4828,4827,0,5368,5372,5371,9321,9321,9321,42,4824,4827,4823,0,5368,5371,5367,9322,9322,9322,42,4828,4830,4829,0,5372,5374,5373,9323,9323,9323,42,4828,4829,4827,0,5372,5373,5371,9324,9324,9324,42,4827,4829,4831,0,5371,5373,5375,9325,9325,9325,42,4827,4831,4826,0,5371,5375,5370,9326,9326,9326,42,4813,4814,4832,0,5357,5358,5376,9327,9327,9327,42,4813,4832,4833,0,5357,5376,5377,9328,9328,9328,42,4834,4833,4832,0,5378,5377,5376,9329,9329,9329,42,4834,4832,4835,0,5378,5376,5379,9330,9330,9330,42,4832,4814,4815,0,5376,5358,5359,9331,9331,9331,42,4832,4815,4825,0,5376,5359,5369,9332,9332,9332,42,4835,4832,4825,0,5379,5376,5369,9333,9333,9333,42,4835,4825,4836,0,5379,5369,5380,9334,9334,9334,42,4839,4838,4837,0,5383,5382,5381,9335,9335,9335,42,4839,4837,4840,0,5383,5381,5384,9336,9336,9336,42,4838,4842,4841,0,5382,5386,5385,9337,9337,9337,42,4838,4841,4837,0,5382,5385,5381,9338,9338,9338,42,4842,4838,4831,0,5386,5382,5375,9339,9339,9339,42,4842,4831,4843,0,5386,5375,5387,9340,9340,9340,42,4834,4844,4809,0,5378,5388,5353,9341,9341,9341,42,4834,4809,4833,0,5378,5353,5377,9342,9342,9342,42,4845,4810,4811,0,5389,5354,5355,9343,9343,9343,42,4845,4811,4846,0,5389,5355,5390,9344,9344,9344,42,4847,4812,4810,0,5391,5356,5354,9345,9345,9345,42,4847,4810,4845,0,5391,5354,5389,9346,9346,9346,42,4846,4849,4848,0,5390,5393,5392,9347,9347,9347,42,4846,4848,4845,0,5390,5392,5389,9348,9348,9348,42,4845,4848,4850,0,5389,5392,5394,9349,9349,9349,42,4845,4850,4847,0,5389,5394,5391,9350,9350,9350,42,4849,4846,4851,0,5393,5390,5395,9351,9351,9351,42,4849,4851,4852,0,5393,5395,5396,9352,9352,9352,42,4849,4854,4853,0,5399,5398,5397,9353,9353,9353,42,4849,4853,4848,0,5399,5397,5400,9354,9354,9354,42,4854,4849,4852,0,5398,5399,5401,9355,9355,9355,42,4854,4852,4855,0,5398,5401,5402,9356,9356,9356,42,4846,4811,4856,0,5390,5355,5403,9357,9357,9357,42,4846,4856,4851,0,5390,5403,5395,9358,9358,9358,42,4858,4857,4851,0,5405,5404,5395,9359,9359,9359,42,4858,4851,4856,0,5405,5395,5403,9360,9360,9360,42,4859,4858,4856,0,5406,5405,5403,9361,9361,9361,42,4859,4856,4860,0,5406,5403,5407,9362,9362,9362,42,4862,4861,4858,0,5409,5408,5405,9363,9363,9363,42,4862,4858,4859,0,5409,5405,5406,9364,9364,9364,42,4857,4858,4861,0,5404,5405,5408,9365,9365,9365,42,4857,4861,4863,0,5404,5408,5410,9366,9366,9366,42,4861,4862,4864,0,5408,5409,5411,9367,9367,9367,42,4861,4864,4865,0,5408,5411,5412,9368,9368,9368,42,4865,4866,4863,0,5412,5413,5410,9369,9369,9369,42,4865,4863,4861,0,5412,5410,5408,9370,9370,9370,42,4855,4852,4867,0,5402,5401,5414,9371,9371,9371,42,4855,4867,4868,0,5402,5414,5415,9372,9372,9372,42,4868,4867,4869,0,5415,5414,5416,9373,9373,9373,42,4868,4869,4870,0,5415,5416,5417,9374,9374,9374,42,4871,4855,4868,0,5418,5402,5415,9375,9375,9375,42,4871,4868,4872,0,5418,5415,5419,9376,9376,9376,42,4872,4868,4870,0,5419,5415,5417,9377,9377,9377,42,4872,4870,4873,0,5419,5417,5420,9378,9378,9378,42,4872,4875,4874,0,5419,5422,5421,9379,9379,9379,42,4872,4874,4871,0,5419,5421,5418,9380,9380,9380,42,4877,4876,4871,0,5424,5423,5418,9381,9381,9381,42,4877,4871,4874,0,5424,5418,5421,9382,9382,9382,42,4876,4854,4855,0,5423,5398,5402,9383,9383,9383,42,4876,4855,4871,0,5423,5402,5418,9384,9384,9384,42,4878,4876,4877,0,5425,5423,5424,9385,9385,9385,42,4878,4877,4879,0,5425,5424,5426,9386,9386,9386,42,4881,4880,4878,0,5428,5427,5425,9387,9387,9387,42,4881,4878,4879,0,5428,5425,5426,9388,9388,9388,42,4793,4803,4882,0,5333,5347,5429,9389,9389,9389,42,4793,4882,4795,0,5333,5429,5336,9390,9390,9390,42,4803,4884,4883,0,5347,5431,5430,9391,9391,9391,42,4803,4883,4882,0,5347,5430,5429,9392,9392,9392,42,4656,4645,4795,0,5193,5182,5336,9393,9393,9393,42,4656,4795,4882,0,5193,5336,5429,9394,9394,9394,42,4882,4883,4659,0,5429,5430,5196,9395,9395,9395,42,4882,4659,4656,0,5429,5196,5193,9396,9396,9396,42,4881,4886,4885,0,5428,5433,5432,9397,9397,9397,42,4881,4885,4880,0,5428,5432,5427,9398,9398,9398,42,4888,4887,4886,0,5435,5434,5433,9399,9399,9399,42,4888,4886,4881,0,5435,5433,5428,9400,9400,9400,42,4889,4888,4881,0,5436,5435,5428,9401,9401,9401,42,4889,4881,4879,0,5436,5428,5426,9402,9402,9402,42,4891,4890,4888,0,5438,5437,5435,9403,9403,9403,42,4891,4888,4889,0,5438,5435,5436,9404,9404,9404,42,4894,4893,4892,0,5441,5440,5439,9405,9405,9405,42,4894,4892,4895,0,5441,5439,5442,9406,9406,9406,42,4828,4824,4894,0,5372,5368,5441,9407,9407,9407,42,4828,4894,4895,0,5372,5441,5442,9408,9408,9408,42,4895,4896,4830,0,5442,5443,5374,9409,9409,9409,42,4895,4830,4828,0,5442,5374,5372,9410,9410,9410,42,4896,4895,4892,0,5443,5442,5439,9411,9411,9411,42,4896,4892,4897,0,5443,5439,5444,9412,9412,9412,42,4898,4830,4896,0,5445,5374,5443,9413,9413,9413,42,4898,4896,4899,0,5445,5443,5446,9414,9414,9414,42,4900,4829,4830,0,5447,5373,5374,9415,9415,9415,42,4900,4830,4898,0,5447,5374,5445,9416,9416,9416,42,4899,4896,4897,0,5446,5443,5444,9417,9417,9417,42,4899,4897,4901,0,5446,5444,5448,9418,9418,9418,42,4843,4831,4829,0,5387,5375,5373,9419,9419,9419,42,4843,4829,4900,0,5387,5373,5447,9420,9420,9420,42,4706,4843,4900,0,5243,5387,5447,9421,9421,9421,42,4706,4900,4902,0,5243,5447,5449,9422,9422,9422,42,4902,4900,4898,0,5449,5447,5445,9423,9423,9423,42,4902,4898,4903,0,5449,5445,5450,9424,9424,9424,42,4891,4894,4824,0,5438,5441,5368,9425,9425,9425,42,4891,4824,4820,0,5438,5368,5364,9426,9426,9426,42,4904,4899,4901,0,5451,5446,5448,9427,9427,9427,42,4904,4901,4905,0,5451,5448,5452,9428,9428,9428,42,4903,4898,4899,0,5450,5445,5446,9429,9429,9429,42,4903,4899,4904,0,5450,5446,5451,9430,9430,9430,42,4905,4716,4717,0,5452,5253,5254,9431,9431,9431,42,4905,4717,4904,0,5452,5254,5451,9432,9432,9432,42,4904,4717,4906,0,5451,5254,5453,9433,9433,9433,42,4904,4906,4903,0,5451,5453,5450,9434,9434,9434,42,4873,4870,4907,0,5420,5417,5454,9435,9435,9435,42,4873,4907,4908,0,5420,5454,5455,9436,9436,9436,42,4870,4869,4909,0,5417,5416,5456,9437,9437,9437,42,4870,4909,4907,0,5417,5456,5454,9438,9438,9438,42,4912,4911,4910,0,5459,5458,5457,9439,9439,9439,42,4912,4910,4913,0,5459,5457,5460,9440,9440,9440,42,4912,4915,4914,0,5459,5462,5461,9441,9441,9441,42,4912,4914,4911,0,5459,5461,5458,9442,9442,9442,42,4912,4913,4916,0,5465,5464,5463,9443,9443,9443,42,4912,4916,4917,0,5465,5463,5466,9444,9444,9444,42,4919,4915,4918,0,5469,5468,5467,9445,9445,9445,42,4919,4918,4920,0,5469,5467,5470,9446,9446,9446,42,4908,4907,4910,0,5455,5454,5457,9447,9447,9447,42,4908,4910,4921,0,5455,5457,5471,9448,9448,9448,42,4733,4921,4910,0,5270,5471,5457,9449,9449,9449,42,4733,4910,4911,0,5270,5457,5458,9450,9450,9450,42,4908,4921,4722,0,5455,5471,5259,9451,9451,9451,42,4908,4722,4922,0,5455,5259,5472,9452,9452,9452,42,4921,4733,4721,0,5471,5270,5258,9453,9453,9453,42,4921,4721,4722,0,5471,5258,5259,9454,9454,9454,42,4911,4914,4725,0,5458,5461,5262,9455,9455,9455,42,4911,4725,4733,0,5458,5262,5270,9456,9456,9456,42,4923,4916,4866,0,5473,5463,5413,9457,9457,9457,42,4923,4866,4865,0,5473,5413,5412,9458,9458,9458,42,4869,4863,4866,0,5474,5410,5413,9459,9459,9459,42,4869,4866,4909,0,5474,5413,5475,9460,9460,9460,42,4916,4913,4909,0,5463,5464,5475,9461,9461,9461,42,4916,4909,4866,0,5463,5475,5413,9462,9462,9462,42,4702,4703,4841,0,5239,5240,5385,9463,9463,9463,42,4702,4841,4842,0,5239,5385,5386,9464,9464,9464,42,4841,4703,4864,0,5385,5240,5411,9465,9465,9465,42,4841,4864,4862,0,5385,5411,5409,9466,9466,9466,42,4698,4924,4864,0,5235,5476,5411,9467,9467,9467,42,4698,4864,4703,0,5235,5411,5240,9468,9468,9468,42,4926,4925,4714,0,5478,5477,5251,9469,9469,9469,42,4926,4714,4712,0,5478,5251,5249,9470,9470,9470,42,4926,4712,4710,0,5478,5249,5247,9471,9471,9471,42,4926,4710,4927,0,5478,5247,5479,9472,9472,9472,42,4925,4929,4928,0,5477,5481,5480,9473,9473,9473,42,4925,4928,4714,0,5477,5480,5251,9474,9474,9474,42,4930,4925,4926,0,5482,5477,5478,9475,9475,9475,42,4930,4926,4931,0,5482,5478,5483,9476,9476,9476,42,4930,4932,4929,0,5482,5484,5481,9477,9477,9477,42,4930,4929,4925,0,5482,5481,5477,9478,9478,9478,42,4933,4928,4929,0,5485,5480,5481,9479,9479,9479,42,4933,4929,4934,0,5485,5481,5486,9480,9480,9480,42,4918,4917,4935,0,5467,5466,5487,9481,9481,9481,42,4918,4935,4936,0,5467,5487,5488,9482,9482,9482,42,4927,4710,4707,0,5479,5247,5244,9483,9483,9483,42,4927,4707,4920,0,5479,5244,5470,9484,9484,9484,42,4915,4919,4937,0,5462,5490,5489,9485,9485,9485,42,4915,4937,4914,0,5462,5489,5461,9486,9486,9486,42,4939,4938,4937,0,5492,5491,5489,9487,9487,9487,42,4939,4937,4919,0,5492,5489,5490,9488,9488,9488,42,4941,4940,4938,0,5494,5493,5491,9489,9489,9489,42,4941,4938,4939,0,5494,5491,5492,9490,9490,9490,42,4708,4941,4939,0,5245,5496,5495,9491,9491,9491,42,4708,4939,4707,0,5245,5495,5244,9492,9492,9492,42,4942,4704,4705,0,5497,5241,5242,9493,9493,9493,42,4942,4705,4943,0,5497,5242,5498,9494,9494,9494,42,4946,4945,4944,0,5501,5500,5499,9495,9495,9495,42,4946,4944,4934,0,5501,5499,5486,9496,9496,9496,42,4942,4943,4906,0,5497,5498,5453,9497,9497,9497,42,4942,4906,4947,0,5497,5453,5502,9498,9498,9498,42,4942,4947,4948,0,5497,5502,5503,9499,9499,9499,42,4942,4948,4945,0,5497,5503,5500,9500,9500,9500,42,4950,4949,4933,0,5505,5504,5485,9501,9501,9501,42,4950,4933,4951,0,5505,5485,5506,9502,9502,9502,42,4734,4735,4950,0,5271,5272,5505,9503,9503,9503,42,4734,4950,4951,0,5271,5505,5506,9504,9504,9504,42,4730,4727,4734,0,5267,5264,5271,9505,9505,9505,42,4730,4734,4952,0,5267,5271,5507,9506,9506,9506,42,4952,4734,4951,0,5507,5271,5506,9507,9507,9507,42,4952,4951,4944,0,5507,5506,5499,9508,9508,9508,42,4953,4660,4659,0,5508,5197,5196,9509,9509,9509,42,4953,4659,4883,0,5508,5196,5430,9510,9510,9510,42,4954,4953,4883,0,5509,5508,5430,9511,9511,9511,42,4954,4883,4884,0,5509,5430,5431,9512,9512,9512,42,4953,4954,4955,0,5508,5509,5510,9513,9513,9513,42,4953,4955,4956,0,5508,5510,5511,9514,9514,9514,42,4660,4953,4956,0,5197,5508,5511,9515,9515,9515,42,4660,4956,4664,0,5197,5511,5201,9516,9516,9516,42,4954,4958,4957,0,5509,5513,5512,9517,9517,9517,42,4954,4957,4955,0,5509,5512,5510,9518,9518,9518,42,4955,4957,4959,0,5510,5512,5514,9519,9519,9519,42,4955,4959,4960,0,5510,5514,5515,9520,9520,9520,42,4956,4955,4960,0,5511,5510,5515,9521,9521,9521,42,4956,4960,4961,0,5511,5515,5516,9522,9522,9522,42,4957,4963,4962,0,5512,5518,5517,9523,9523,9523,42,4957,4962,4959,0,5512,5517,5514,9524,9524,9524,42,4958,4964,4963,0,5513,5519,5518,9525,9525,9525,42,4958,4963,4957,0,5513,5518,5512,9526,9526,9526,42,4963,4966,4965,0,5518,5521,5520,9527,9527,9527,42,4963,4965,4962,0,5518,5520,5517,9528,9528,9528,42,4962,4965,4967,0,5517,5520,5522,9529,9529,9529,42,4962,4967,4968,0,5517,5522,5523,9530,9530,9530,42,4959,4962,4968,0,5514,5517,5523,9531,9531,9531,42,4959,4968,4969,0,5514,5523,5524,9532,9532,9532,42,4971,4970,4964,0,5526,5525,5519,9533,9533,9533,42,4971,4964,4958,0,5526,5519,5513,9534,9534,9534,42,4884,4971,4958,0,5431,5526,5513,9535,9535,9535,42,4884,4958,4954,0,5431,5513,5509,9536,9536,9536,42,4970,4973,4972,0,5525,5528,5527,9537,9537,9537,42,4970,4972,4964,0,5525,5527,5519,9538,9538,9538,42,4801,4974,4973,0,5345,5529,5528,9539,9539,9539,42,4801,4973,4970,0,5345,5528,5525,9540,9540,9540,42,4802,4801,4970,0,5346,5345,5525,9541,9541,9541,42,4802,4970,4971,0,5346,5525,5526,9542,9542,9542,42,4973,4976,4975,0,5528,5531,5530,9543,9543,9543,42,4973,4975,4972,0,5528,5530,5527,9544,9544,9544,42,4976,4973,4974,0,5531,5528,5529,9545,9545,9545,42,4976,4974,4977,0,5531,5529,5532,9546,9546,9546,42,4976,4886,4887,0,5531,5433,5434,9547,9547,9547,42,4976,4887,4975,0,5531,5434,5530,9548,9548,9548,42,4886,4976,4977,0,5433,5531,5532,9549,9549,9549,42,4886,4977,4885,0,5433,5532,5432,9550,9550,9550,42,4965,4979,4978,0,5520,5534,5533,9551,9551,9551,42,4965,4978,4967,0,5520,5533,5522,9552,9552,9552,42,4966,4980,4979,0,5521,5535,5534,9553,9553,9553,42,4966,4979,4965,0,5521,5534,5520,9554,9554,9554,42,4968,4982,4981,0,5523,5537,5536,9555,9555,9555,42,4968,4981,4969,0,5523,5536,5524,9556,9556,9556,42,4982,4984,4983,0,5537,5539,5538,9557,9557,9557,42,4982,4983,4981,0,5537,5538,5536,9558,9558,9558,42,4981,4742,4985,0,5536,5279,5540,9559,9559,9559,42,4981,4985,4969,0,5536,5540,5524,9560,9560,9560,42,4737,4742,4981,0,5274,5279,5536,9561,9561,9561,42,4737,4981,4983,0,5274,5536,5538,9562,9562,9562,42,4967,4782,4982,0,5522,5319,5537,9563,9563,9563,42,4967,4982,4968,0,5522,5537,5523,9564,9564,9564,42,4782,4780,4984,0,5319,5317,5539,9565,9565,9565,42,4782,4984,4982,0,5319,5539,5537,9566,9566,9566,42,4742,4595,4986,0,5279,5128,5541,9567,9567,9567,42,4742,4986,4985,0,5279,5541,5540,9568,9568,9568,42,4983,4744,4738,0,5538,5281,5275,9569,9569,9569,42,4983,4738,4737,0,5538,5275,5274,9570,9570,9570,42,4984,4764,4744,0,5539,5301,5281,9571,9571,9571,42,4984,4744,4983,0,5539,5281,5538,9572,9572,9572,42,4987,4978,4979,0,5542,5533,5534,9573,9573,9573,42,4987,4979,4988,0,5542,5534,5543,9574,9574,9574,42,4988,4979,4980,0,5543,5534,5535,9575,9575,9575,42,4988,4980,4989,0,5543,5535,5544,9576,9576,9576,42,4988,4821,4819,0,5543,5365,5363,9577,9577,9577,42,4988,4819,4987,0,5543,5363,5542,9578,9578,9578,42,4821,4988,4989,0,5365,5543,5544,9579,9579,9579,42,4821,4989,4890,0,5365,5544,5437,9580,9580,9580,42,4890,4891,4820,0,5437,5438,5364,9581,9581,9581,42,4890,4820,4821,0,5437,5364,5365,9582,9582,9582,42,4612,4610,4539,0,5145,5143,5056,9583,9583,9583,42,4612,4539,4536,0,5145,5056,5053,9584,9584,9584,42,4677,4678,4580,0,5214,5215,5104,9585,9585,9585,42,4677,4580,4565,0,5214,5104,5084,9586,9586,9586,42,4575,4580,4678,0,5098,5104,5215,9587,9587,9587,42,4575,4678,4684,0,5098,5215,5221,9588,9588,9588,42,4986,4590,4663,0,5541,5123,5200,9589,9589,9589,42,4986,4663,4961,0,5541,5200,5516,9590,9590,9590,42,4664,4956,4961,0,5201,5511,5516,9591,9591,9591,42,4664,4961,4663,0,5201,5516,5200,9592,9592,9592,42,4602,4697,4608,0,5135,5234,5141,9593,9593,9593,42,4602,4608,4601,0,5135,5141,5134,9594,9594,9594,42,4593,4739,4602,0,5126,5276,5135,9595,9595,9595,42,4593,4602,4592,0,5126,5135,5125,9596,9596,9596,42,4739,4990,4697,0,5276,5545,5234,9597,9597,9597,42,4739,4697,4602,0,5276,5234,5135,9598,9598,9598,42,4990,4634,4635,0,5545,5169,5170,9599,9599,9599,42,4990,4635,4697,0,5545,5170,5234,9600,9600,9600,42,4745,4638,4634,0,5282,5173,5169,9601,9601,9601,42,4745,4634,4990,0,5282,5169,5545,9602,9602,9602,42,4947,4906,4717,0,5502,5453,5254,9603,9603,9603,42,4947,4717,4718,0,5502,5254,5255,9604,9604,9604,42,4903,4906,4943,0,5450,5453,5498,9605,9605,9605,42,4903,4943,4902,0,5450,5498,5449,9606,9606,9606,42,4773,4807,4768,0,5310,5351,5305,9607,9607,9607,42,4773,4768,4769,0,5310,5305,5306,9608,9608,9608,42,4777,4768,4807,0,5314,5305,5351,9609,9609,9609,42,4777,4807,4804,0,5314,5351,5348,9610,9610,9610,42,4779,4777,4804,0,5316,5314,5348,9611,9611,9611,42,4779,4804,4812,0,5316,5348,5356,9612,9612,9612,42,4797,4850,4991,0,5342,5547,5546,9613,9613,9613,42,4797,4991,4799,0,5342,5546,5341,9614,9614,9614,42,4847,4850,4797,0,5391,5394,5339,9615,9615,9615,42,4847,4797,4798,0,5391,5339,5340,9616,9616,9616,42,4977,4974,4790,0,5532,5529,5329,9617,9617,9617,42,4977,4790,4800,0,5532,5329,5344,9618,9618,9618,42,4885,4977,4800,0,5432,5532,5344,9619,9619,9619,42,4885,4800,4799,0,5432,5344,5341,9620,9620,9620,42,4880,4885,4799,0,5427,5432,5341,9621,9621,9621,42,4880,4799,4991,0,5427,5341,5546,9622,9622,9622,42,4783,4987,4819,0,5320,5542,5363,9623,9623,9623,42,4783,4819,4817,0,5320,5363,5361,9624,9624,9624,42,4826,4836,4825,0,5370,5380,5369,9625,9625,9625,42,4826,4825,4822,0,5370,5369,5366,9626,9626,9626,42,4844,4860,4808,0,5388,5407,5352,9627,9627,9627,42,4844,4808,4809,0,5388,5352,5353,9628,9628,9628,42,4850,4848,4853,0,5547,5400,5397,9629,9629,9629,42,4850,4853,4991,0,5547,5397,5546,9630,9630,9630,42,4991,4853,4878,0,5546,5397,5425,9631,9631,9631,42,4991,4878,4880,0,5546,5425,5427,9632,9632,9632,42,4854,4876,4878,0,5398,5423,5425,9633,9633,9633,42,4854,4878,4853,0,5398,5425,5397,9634,9634,9634,42,4852,4851,4857,0,5396,5395,5404,9635,9635,9635,42,4852,4857,4867,0,5396,5404,5548,9636,9636,9636,42,4893,4889,4879,0,5440,5436,5426,9637,9637,9637,42,4893,4879,4877,0,5440,5426,5424,9638,9638,9638,42,4874,4892,4893,0,5421,5439,5440,9639,9639,9639,42,4874,4893,4877,0,5421,5440,5424,9640,9640,9640,42,4894,4891,4889,0,5441,5438,5436,9641,9641,9641,42,4894,4889,4893,0,5441,5436,5440,9642,9642,9642,42,4890,4989,4887,0,5437,5544,5434,9643,9643,9643,42,4890,4887,4888,0,5437,5434,5435,9644,9644,9644,42,4922,4722,4716,0,5472,5259,5253,9645,9645,9645,42,4922,4716,4905,0,5472,5253,5452,9646,9646,9646,42,4901,4897,4875,0,5448,5444,5422,9647,9647,9647,42,4901,4875,4992,0,5448,5422,5549,9648,9648,9648,42,4892,4874,4875,0,5439,5421,5422,9649,9649,9649,42,4892,4875,4897,0,5439,5422,5444,9650,9650,9650,42,4905,4901,4992,0,5452,5448,5549,9651,9651,9651,42,4905,4992,4922,0,5452,5549,5472,9652,9652,9652,42,4875,4872,4873,0,5422,5419,5420,9653,9653,9653,42,4875,4873,4992,0,5422,5420,5549,9654,9654,9654,42,4989,4980,4975,0,5544,5535,5530,9655,9655,9655,42,4989,4975,4887,0,5544,5530,5434,9656,9656,9656,42,4916,4923,4935,0,5463,5473,5487,9657,9657,9657,42,4916,4935,4917,0,5463,5487,5466,9658,9658,9658,42,4924,4993,4935,0,5476,5550,5487,9659,9659,9659,42,4924,4935,4923,0,5476,5487,5473,9660,9660,9660,42,4949,4994,4928,0,5504,5551,5480,9661,9661,9661,42,4949,4928,4933,0,5504,5480,5485,9662,9662,9662,42,4985,4986,4961,0,5540,5541,5516,9663,9663,9663,42,4985,4961,4960,0,5540,5516,5515,9664,9664,9664,42,4964,4972,4966,0,5519,5527,5521,9665,9665,9665,42,4964,4966,4963,0,5519,5521,5518,9666,9666,9666,42,4978,4781,4782,0,5533,5318,5319,9667,9667,9667,42,4978,4782,4967,0,5533,5319,5522,9668,9668,9668,42,4621,4620,4681,0,5154,5153,5218,9669,9669,9669,42,4621,4681,4682,0,5154,5218,5219,9670,9670,9670,42,4653,4693,4695,0,5190,5230,5232,9671,9671,9671,42,4653,4695,4627,0,5190,5232,5160,9672,9672,9672,42,4806,4813,4833,0,5350,5357,5377,9673,9673,9673,42,4806,4833,4809,0,5350,5377,5353,9674,9674,9674,42,4656,4657,4654,0,5193,5194,5191,9675,9675,9675,42,4656,4654,4655,0,5193,5191,5192,9676,9676,9676,42,4645,4643,4796,0,5182,5179,5337,9677,9677,9677,42,4645,4796,4795,0,5182,5337,5336,9678,9678,9678,42,4684,4678,4679,0,5221,5215,5216,9679,9679,9679,42,4684,4679,4686,0,5221,5216,5223,9680,9680,9680,42,4619,4587,4588,0,5152,5120,5121,9681,9681,9681,42,4619,4588,4599,0,5152,5121,5132,9682,9682,9682,42,4990,4739,4740,0,5545,5276,5277,9683,9683,9683,42,4990,4740,4745,0,5545,5277,5282,9684,9684,9684,42,4947,4718,4719,0,5502,5255,5256,9685,9685,9685,42,4947,4719,4948,0,5502,5256,5503,9686,9686,9686,42,4595,4586,4590,0,5128,5119,5123,9687,9687,9687,42,4595,4590,4986,0,5128,5123,5541,9688,9688,9688,42,4748,4750,4637,0,5285,5287,5172,9689,9689,9689,42,4748,4637,4638,0,5285,5172,5173,9690,9690,9690,42,4780,4763,4764,0,5317,5300,5301,9691,9691,9691,42,4780,4764,4984,0,5317,5301,5539,9692,9692,9692,42,4798,4779,4812,0,5340,5316,5356,9693,9693,9693,42,4798,4812,4847,0,5340,5356,5391,9694,9694,9694,42,4862,4859,4837,0,5409,5406,5381,9695,9695,9695,42,4862,4837,4841,0,5409,5381,5385,9696,9696,9696,42,4811,4808,4860,0,5355,5352,5407,9697,9697,9697,42,4811,4860,4856,0,5355,5407,5403,9698,9698,9698,42,4867,4857,4863,0,5548,5404,5410,9699,9699,9699,42,4867,4863,4869,0,5548,5410,5474,9700,9700,9700,42,4842,4843,4706,0,5386,5387,5243,9701,9701,9701,42,4842,4706,4702,0,5386,5243,5239,9702,9702,9702,42,4907,4909,4913,0,5454,5456,5460,9703,9703,9703,42,4907,4913,4910,0,5454,5460,5457,9704,9704,9704,42,4908,4922,4992,0,5455,5472,5549,9705,9705,9705,42,4908,4992,4873,0,5455,5549,5420,9706,9706,9706,42,4724,4725,4914,0,5261,5262,5461,9707,9707,9707,42,4724,4914,4937,0,5261,5461,5489,9708,9708,9708,42,4924,4923,4865,0,5476,5473,5412,9709,9709,9709,42,4924,4865,4864,0,5476,5412,5411,9710,9710,9710,42,4699,4993,4924,0,5236,5550,5476,9711,9711,9711,42,4699,4924,4698,0,5236,5476,5235,9712,9712,9712,42,4936,4935,4993,0,5488,5487,5550,9713,9713,9713,42,4936,4993,4931,0,5488,5550,5483,9714,9714,9714,42,4932,4946,4934,0,5484,5501,5486,9715,9715,9715,42,4932,4934,4929,0,5484,5486,5481,9716,9716,9716,42,4943,4705,4706,0,5498,5242,5243,9717,9717,9717,42,4943,4706,4902,0,5498,5243,5449,9718,9718,9718,42,4951,4933,4934,0,5506,5485,5486,9719,9719,9719,42,4951,4934,4944,0,5506,5486,5499,9720,9720,9720,42,4714,4928,4994,0,5251,5480,5551,9721,9721,9721,42,4714,4994,4713,0,5251,5551,5250,9722,9722,9722,42,4960,4959,4969,0,5515,5514,5524,9723,9723,9723,42,4960,4969,4985,0,5515,5524,5540,9724,9724,9724,42,4974,4801,4789,0,5529,5345,5328,9725,9725,9725,42,4974,4789,4790,0,5529,5328,5329,9726,9726,9726,42,4971,4884,4803,0,5526,5431,5347,9727,9727,9727,42,4971,4803,4802,0,5526,5347,5346,9728,9728,9728,42,4972,4975,4980,0,5527,5530,5535,9729,9729,9729,42,4972,4980,4966,0,5527,5535,5521,9730,9730,9730,42,4781,4978,4987,0,5318,5533,5542,9731,9731,9731,42,4781,4987,4783,0,5318,5542,5320,9732,9732,9732,42,4609,4995,4544,0,5142,5552,5061,9733,9733,9733,42,4609,4544,4577,0,5142,5061,5100,9734,9734,9734,42,4995,4689,4540,0,5552,5226,5057,9735,9735,9735,42,4995,4540,4544,0,5552,5057,5061,9736,9736,9736,42,4597,4600,4605,0,5130,5133,5138,9737,9737,9737,42,4597,4605,4996,0,5130,5138,5553,9738,9738,9738,42,4606,4603,4995,0,5139,5136,5552,9739,9739,9739,42,4606,4995,4609,0,5139,5552,5142,9740,9740,9740,42,4600,4607,4604,0,5133,5140,5137,9741,9741,9741,42,4600,4604,4605,0,5133,5137,5138,9742,9742,9742,42,4613,4614,4615,0,5146,5147,5148,9743,9743,9743,42,4613,4615,4611,0,5146,5148,5144,9744,9744,9744,42,4615,4997,4612,0,5148,5554,5145,9745,9745,9745,42,4615,4612,4611,0,5148,5145,5144,9746,9746,9746,42,4617,4618,4619,0,5150,5151,5152,9747,9747,9747,42,4617,4619,4616,0,5150,5152,5149,9748,9748,9748,42,4591,4618,4621,0,5124,5151,5154,9749,9749,9749,42,4591,4621,4623,0,5124,5154,5156,9750,9750,9750,42,4627,4624,4652,0,5160,5157,5189,9751,9751,9751,42,4627,4652,4653,0,5160,5189,5190,9752,9752,9752,42,4650,4649,4693,0,5187,5186,5230,9753,9753,9753,42,4650,4693,4653,0,5187,5230,5190,9754,9754,9754,42,4650,4651,4647,0,5187,5188,5184,9755,9755,9755,42,4650,4647,4646,0,5187,5184,5183,9756,9756,9756,42,4666,4671,4672,0,5203,5208,5209,9757,9757,9757,42,4666,4672,4668,0,5203,5209,5205,9758,9758,9758,42,4674,4673,4672,0,5211,5210,5209,9759,9759,9759,42,4674,4672,4669,0,5211,5209,5206,9760,9760,9760,42,4670,4679,4676,0,5207,5216,5213,9761,9761,9761,42,4670,4676,4669,0,5207,5213,5206,9762,9762,9762,42,4665,4682,4671,0,5202,5219,5208,9763,9763,9763,42,4665,4671,4666,0,5202,5208,5203,9764,9764,9764,42,4683,4685,4614,0,5220,5222,5147,9765,9765,9765,42,4683,4614,4613,0,5220,5147,5146,9766,9766,9766,42,4620,4685,4686,0,5153,5222,5223,9767,9767,9767,42,4620,4686,4681,0,5153,5223,5218,9768,9768,9768,42,4603,4687,4689,0,5136,5224,5226,9769,9769,9769,42,4603,4689,4995,0,5136,5226,5552,9770,9770,9770,42,4687,4691,4690,0,5224,5228,5227,9771,9771,9771,42,4687,4690,4689,0,5224,5227,5226,9772,9772,9772,42,4691,4649,4648,0,5228,5186,5185,9773,9773,9773,42,4691,4648,4690,0,5228,5185,5227,9774,9774,9774,42,4695,4694,4640,0,5232,5231,5175,9775,9775,9775,42,4695,4640,4639,0,5232,5175,5174,9776,9776,9776,42,4696,4694,4692,0,5233,5231,5229,9777,9777,9777,42,4696,4692,4688,0,5233,5229,5225,9778,9778,9778,42,4607,4696,4688,0,5140,5233,5225,9779,9779,9779,42,4607,4688,4604,0,5140,5225,5137,9780,9780,9780,42,4623,4621,4682,0,5156,5154,5219,9781,9781,9781,42,4623,4682,4665,0,5156,5219,5202,9782,9782,9782,42,4627,4695,4639,0,5160,5232,5174,9783,9783,9783,42,4627,4639,4626,0,5160,5174,5159,9784,9784,9784,42,4681,4686,4679,0,5218,5223,5216,9785,9785,9785,42,4681,4679,4670,0,5218,5216,5207,9786,9786,9786,42,4664,4662,4661,0,5201,5199,5198,9787,9787,9787,42,4664,4661,4660,0,5201,5198,5197,9788,9788,9788,42,4654,264,1474,0,5191,5556,5555,9789,9789,9789,42,4654,1474,4629,0,5191,5555,5162,9790,9790,9790,42,4708,4709,4998,0,5245,5246,5557,9791,9791,9791,42,4708,4998,4999,0,5245,5557,5558,9792,9792,9792,42,4711,5000,4998,0,5248,5559,5557,9793,9793,9793,42,4711,4998,4709,0,5248,5557,5246,9794,9794,9794,42,4711,4713,5001,0,5248,5250,5560,9795,9795,9795,42,4711,5001,5000,0,5248,5560,5559,9796,9796,9796,42,5002,4735,4736,0,5561,5272,5273,9797,9797,9797,42,5002,4736,5003,0,5561,5273,5562,9798,9798,9798,42,4708,4999,5004,0,5245,5558,5563,9799,9799,9799,42,4708,5004,4941,0,5245,5563,5496,9800,9800,9800,42,5006,5005,4949,0,5565,5564,5504,9801,9801,9801,42,5006,4949,4950,0,5565,5504,5505,9802,9802,9802,42,4735,5002,5006,0,5272,5561,5565,9803,9803,9803,42,4735,5006,4950,0,5272,5565,5505,9804,9804,9804,42,4994,5007,5001,0,5551,5566,5560,9805,9805,9805,42,4994,5001,4713,0,5551,5560,5250,9806,9806,9806,42,5007,4994,4949,0,5566,5551,5504,9807,9807,9807,42,5007,4949,5005,0,5566,5504,5564,9808,9808,9808,42,4938,4732,4724,0,5491,5269,5261,9809,9809,9809,42,4938,4724,4937,0,5491,5261,5489,9810,9810,9810,42,5009,5008,4731,0,5568,5567,5268,9811,9811,9811,42,5009,4731,4732,0,5568,5268,5269,9812,9812,9812,42,4728,5010,4736,0,5265,5569,5273,9813,9813,9813,42,4728,4736,4727,0,5265,5273,5264,9814,9814,9814,42,4732,4938,4940,0,5269,5491,5493,9815,9815,9815,42,4732,4940,5009,0,5269,5493,5568,9816,9816,9816,42,4941,5004,5011,0,5494,5571,5570,9817,9817,9817,42,4941,5011,4940,0,5494,5570,5493,9818,9818,9818,42,5013,5012,5008,0,5573,5572,5567,9819,9819,9819,42,5013,5008,5009,0,5573,5567,5568,9820,9820,9820,42,4736,5010,5014,0,5273,5569,5574,9821,9821,9821,42,4736,5014,5003,0,5273,5574,5562,9822,9822,9822,42,5009,4940,5011,0,5568,5493,5570,9823,9823,9823,42,5009,5011,5013,0,5568,5570,5573,9824,9824,9824,42,4647,5015,4582,0,5184,266,265,9825,9825,9825,42,4647,4582,4533,0,5184,265,5050,9826,9826,9826,42,5016,4624,4625,0,267,5157,5158,9827,9827,9827,42,5016,4625,5017,0,267,5158,268,9828,9828,9828,42,5017,4625,4628,0,5575,5164,5161,9829,9829,9829,42,5017,4628,5018,0,5575,5161,5576,9830,9830,9830,42,1492,4652,4624,0,269,5189,5157,9831,9831,9831,42,1492,4624,5016,0,269,5157,267,9832,9832,9832,42,4654,4657,1493,0,5191,5194,5577,9833,9833,9833,42,4654,1493,264,0,5191,5577,5556,9834,9834,9834,42,5019,238,4667,0,5579,5578,5204,9835,9835,9835,42,5019,4667,4673,0,5579,5204,5210,9836,9836,9836,42,265,1494,4674,0,5581,5580,5211,9837,9837,9837,42,265,4674,4675,0,5581,5211,5212,9838,9838,9838,42,1494,5019,4673,0,5580,5579,5210,9839,9839,9839,42,1494,4673,4674,0,5580,5210,5211,9840,9840,9840,42,4581,5020,4680,0,5106,5582,5217,9841,9841,9841,42,4581,4680,4562,0,5106,5217,5081,9842,9842,9842,42,4657,4667,238,0,5194,5204,5578,9843,9843,9843,42,4657,238,1493,0,5194,5578,5577,9844,9844,9844,42,5020,265,4675,0,5582,5581,5212,9845,9845,9845,42,5020,4675,4680,0,5582,5212,5217,9846,9846,9846,42,5018,4628,4629,0,5576,5161,5162,9847,9847,9847,42,5018,4629,1474,0,5576,5162,5555,9848,9848,9848,42,4616,4619,4599,0,5149,5152,5132,9849,9849,9849,42,4616,4599,5021,0,5149,5132,5583,9850,9850,9850,42,5022,4606,4609,0,5584,5139,5142,9851,9851,9851,42,5022,4609,4610,0,5584,5142,5143,9852,9852,9852,42,5021,4997,4615,0,5583,5554,5148,9853,9853,9853,42,5021,4615,4616,0,5583,5148,5149,9854,9854,9854,42,4996,4605,4606,0,5553,5138,5139,9855,9855,9855,42,4996,4606,5022,0,5553,5139,5584,9856,9856,9856,42,4996,5021,4599,0,5553,5583,5132,9857,9857,9857,42,4996,4599,4597,0,5553,5132,5130,9858,9858,9858,42,5022,4997,5021,0,5584,5554,5583,9859,9859,9859,42,5022,5021,4996,0,5584,5583,5553,9860,9860,9860,42,4610,4612,4997,0,5143,5145,5554,9861,9861,9861,42,4610,4997,5022,0,5143,5554,5584,9862,9862,9862,42,4568,5023,237,0,5088,5585,5114,9863,9863,9863,42,4568,237,4567,0,5088,5114,5087,9864,9864,9864,42,4406,5023,4568,0,5586,5585,5088,9865,9865,9865,42,4406,4568,4409,0,5586,5088,5085,9866,9866,9866,42,4652,1492,1497,0,5189,269,270,9867,9867,9867,42,4652,1497,4651,0,5189,270,5188,9868,9868,9868,42,5015,4647,4651,0,266,5184,5188,9869,9869,9869,42,5015,4651,1497,0,266,5188,270,9870,9870,9870,42,5026,5025,5024,0,5589,5588,5587,9871,9871,9871,42,5026,5024,5027,0,5589,5587,5590,9872,9872,9872,42,5024,5028,4999,0,5587,5591,5558,9873,9873,9873,42,5024,4999,4998,0,5587,5558,5557,9874,9874,9874,42,5031,5030,5029,0,5594,5593,5592,9875,9875,9875,42,5031,5029,5032,0,5594,5592,5595,9876,9876,9876,42,5033,5025,5032,0,5597,5596,5595,9877,9877,9877,42,5033,5032,5029,0,5597,5595,5592,9878,9878,9878,42,5035,5034,5032,0,5599,5598,5595,9879,9879,9879,42,5035,5032,5025,0,5599,5595,5596,9880,9880,9880,42,5034,5036,5031,0,5598,5600,5594,9881,9881,9881,42,5034,5031,5032,0,5598,5594,5595,9882,9882,9882,42,5036,5038,5037,0,5600,5602,5601,9883,9883,9883,42,5036,5037,5039,0,5600,5601,5603,9884,9884,9884,42,5041,5040,5036,0,5605,5604,5600,9885,9885,9885,42,5041,5036,5039,0,5605,5600,5603,9886,9886,9886,42,5038,5036,5034,0,5602,5600,5598,9887,9887,9887,42,5038,5034,5042,0,5602,5598,5606,9888,9888,9888,42,5045,5044,5043,0,5609,5608,5607,9889,9889,9889,42,5045,5043,5046,0,5609,5607,5610,9890,9890,9890,42,5048,5047,5044,0,5612,5611,5608,9891,9891,9891,42,5048,5044,5045,0,5612,5608,5609,9892,9892,9892,42,5049,5045,5046,0,5613,5609,5610,9893,9893,9893,42,5049,5046,5050,0,5613,5610,5614,9894,9894,9894,42,5046,5043,5029,0,5610,5607,5592,9895,9895,9895,42,5046,5029,5030,0,5610,5592,5593,9896,9896,9896,42,5051,5050,5046,0,5615,5614,5610,9897,9897,9897,42,5051,5046,5030,0,5615,5610,5593,9898,9898,9898,42,5038,5042,5052,0,5602,5606,5616,9899,9899,9899,42,5038,5052,5053,0,5602,5616,5617,9900,9900,9900,42,5053,5052,5054,0,5617,5616,5618,9901,9901,9901,42,5053,5054,5055,0,5617,5618,5619,9902,9902,9902,42,5058,5057,5056,0,5622,5621,5620,9903,9903,9903,42,5058,5056,5059,0,5622,5620,5623,9904,9904,9904,42,5060,5037,5057,0,5624,5601,5621,9905,9905,9905,42,5060,5057,5058,0,5624,5621,5622,9906,9906,9906,42,5061,5007,5005,0,5625,5566,5564,9907,9907,9907,42,5061,5005,5062,0,5625,5564,5626,9908,9908,9908,42,5063,5001,5007,0,5627,5560,5566,9909,9909,9909,42,5063,5007,5061,0,5627,5566,5625,9910,9910,9910,42,5066,5065,5064,0,5630,5629,5628,9911,9911,9911,42,5066,5064,5067,0,5630,5628,5631,9912,9912,9912,42,5070,5069,5068,0,5634,5633,5632,9913,9913,9913,42,5070,5068,5071,0,5634,5632,5635,9914,9914,9914,42,5071,5068,5072,0,5635,5632,5636,9915,9915,9915,42,5071,5072,5073,0,5635,5636,5637,9916,9916,9916,42,5074,5070,5071,0,5638,5634,5635,9917,9917,9917,42,5074,5071,5075,0,5638,5635,5639,9918,9918,9918,42,5075,5071,5073,0,5639,5635,5637,9919,9919,9919,42,5075,5073,5076,0,5639,5637,5640,9920,9920,9920,42,5075,5078,5077,0,5643,5642,5641,9921,9921,9921,42,5075,5077,5074,0,5643,5641,5644,9922,9922,9922,42,5076,5079,5078,0,5646,5645,5642,9923,9923,9923,42,5076,5078,5075,0,5646,5642,5643,9924,9924,9924,42,5082,5081,5080,0,5649,5648,5647,9925,9925,9925,42,5082,5080,5083,0,5649,5647,5650,9926,9926,9926,42,5081,5082,5084,0,5648,5649,5651,9927,9927,9927,42,5081,5084,5085,0,5648,5651,5652,9928,9928,9928,42,5085,5087,5086,0,5652,5654,5653,9929,9929,9929,42,5085,5086,5081,0,5652,5653,5648,9930,9930,9930,42,5081,5086,5088,0,5648,5653,5655,9931,9931,9931,42,5081,5088,5080,0,5648,5655,5647,9932,9932,9932,42,5091,5090,5089,0,5658,5657,5656,9933,9933,9933,42,5091,5089,5069,0,5658,5656,5633,9934,9934,9934,42,5094,5093,5092,0,5661,5660,5659,9935,9935,9935,42,5094,5092,5095,0,5661,5659,5662,9936,9936,9936,42,5094,5097,5096,0,5661,5664,5663,9937,9937,9937,42,5094,5096,5093,0,5661,5663,5660,9938,9938,9938,42,5100,5099,5098,0,5667,5666,5665,9939,9939,9939,42,5100,5098,5101,0,5667,5665,5668,9940,9940,9940,42,5082,5100,5101,0,5649,5670,5669,9941,9941,9941,42,5082,5101,5084,0,5649,5669,5651,9942,9942,9942,42,5099,5100,5102,0,5666,5667,5671,9943,9943,9943,42,5099,5102,5103,0,5666,5671,5672,9944,9944,9944,42,5083,5102,5100,0,5650,5673,5670,9945,9945,9945,42,5083,5100,5082,0,5650,5670,5649,9946,9946,9946,42,5104,5077,5078,0,5674,5641,5642,9947,9947,9947,42,5104,5078,5105,0,5674,5642,5675,9948,9948,9948,42,5107,5106,5103,0,5677,5676,5672,9949,9949,9949,42,5107,5103,5102,0,5677,5672,5671,9950,9950,9950,42,5106,5109,5108,0,5676,5679,5678,9951,9951,9951,42,5106,5108,5103,0,5676,5678,5672,9952,9952,9952,42,5079,5110,5105,0,5645,5680,5675,9953,9953,9953,42,5079,5105,5078,0,5645,5675,5642,9954,9954,9954,42,5110,5112,5111,0,5680,5682,5681,9955,9955,9955,42,5110,5111,5105,0,5680,5681,5675,9956,9956,9956,42,5111,5113,5104,0,5681,5683,5674,9957,9957,9957,42,5111,5104,5105,0,5681,5674,5675,9958,9958,9958,42,5079,5076,5114,0,5645,5646,5684,9959,9959,9959,42,5079,5114,5110,0,5645,5684,5680,9960,9960,9960,42,5073,5072,5115,0,5637,5636,5685,9961,9961,9961,42,5073,5115,5116,0,5637,5685,5686,9962,9962,9962,42,5116,5115,5049,0,5688,5687,5613,9963,9963,9963,42,5116,5049,5117,0,5688,5613,5689,9964,9964,9964,42,5072,5118,5048,0,5636,5691,5690,9965,9965,9965,42,5072,5048,5115,0,5636,5690,5685,9966,9966,9966,42,5121,5120,5119,0,5694,5693,5692,9967,9967,9967,42,5121,5119,5122,0,5694,5692,5695,9968,9968,9968,42,5123,5117,5120,0,5696,5689,5693,9969,9969,9969,42,5123,5120,5121,0,5696,5693,5694,9970,9970,9970,42,5122,5125,5124,0,5695,5698,5697,9971,9971,9971,42,5122,5124,5121,0,5695,5697,5694,9972,9972,9972,42,5121,5124,5112,0,5694,5697,5682,9973,9973,9973,42,5121,5112,5123,0,5694,5682,5696,9974,9974,9974,42,5122,5119,5126,0,5695,5692,5699,9975,9975,9975,42,5122,5126,5127,0,5695,5699,5700,9976,9976,9976,42,5127,5128,5125,0,5700,5701,5698,9977,9977,9977,42,5127,5125,5122,0,5700,5698,5695,9978,9978,9978,42,5047,5048,5118,0,5702,5690,5691,9979,9979,9979,42,5047,5118,5129,0,5702,5691,5703,9980,9980,9980,42,5113,5130,5109,0,5683,5704,5679,9981,9981,9981,42,5113,5109,5104,0,5683,5679,5674,9982,9982,9982,42,5133,5132,5131,0,5707,5706,5705,9983,9983,9983,42,5133,5131,5134,0,5707,5705,5708,9984,9984,9984,42,5136,5135,5132,0,5710,5709,5706,9985,9985,9985,42,5136,5132,5133,0,5710,5706,5707,9986,9986,9986,42,5137,5131,5132,0,5711,5705,5706,9987,9987,9987,42,5137,5132,5138,0,5711,5706,5712,9988,9988,9988,42,5138,5132,5135,0,5712,5706,5709,9989,9989,9989,42,5138,5135,5139,0,5712,5709,5713,9990,9990,9990,42,5142,5141,5140,0,5716,5715,5714,9991,9991,9991,42,5142,5140,5143,0,5716,5714,5717,9992,9992,9992,42,5142,5145,5144,0,5716,5719,5718,9993,9993,9993,42,5142,5144,5146,0,5716,5718,5720,9994,9994,9994,42,5149,5148,5147,0,5723,5722,5721,9995,9995,9995,42,5149,5147,5145,0,5723,5721,5719,9996,9996,9996,42,5145,5147,5150,0,5719,5721,5724,9997,9997,9997,42,5145,5150,5144,0,5719,5724,5718,9998,9998,9998,42,5152,5151,5141,0,5726,5725,5715,9999,9999,9999,42,5152,5141,5153,0,5726,5715,5727,10000,10000,10000,42,5142,5146,5153,0,5716,5720,5727,10001,10001,10001,42,5142,5153,5141,0,5716,5727,5715,10002,10002,10002,42,5146,5155,5154,0,5720,5729,5728,10003,10003,10003,42,5146,5154,5153,0,5720,5728,5727,10004,10004,10004,42,5156,5152,5153,0,5730,5726,5727,10005,10005,10005,42,5156,5153,5154,0,5730,5727,5728,10006,10006,10006,42,5140,5141,5151,0,5714,5715,5725,10007,10007,10007,42,5140,5151,5157,0,5714,5725,5731,10008,10008,10008,42,5159,5158,5157,0,5734,5733,5732,10009,10009,10009,42,5159,5157,5151,0,5734,5732,5735,10010,10010,10010,42,5158,5161,5160,0,5733,5737,5736,10011,10011,10011,42,5158,5160,5157,0,5733,5736,5732,10012,10012,10012,42,5163,5162,5128,0,5739,5738,5701,10013,10013,10013,42,5163,5128,5127,0,5739,5701,5700,10014,10014,10014,42,5166,5165,5164,0,5742,5741,5740,10015,10015,10015,42,5166,5164,5167,0,5742,5740,5743,10016,10016,10016,42,5127,5126,5168,0,5700,5699,5744,10017,10017,10017,42,5127,5168,5163,0,5700,5744,5739,10018,10018,10018,42,5163,5168,5169,0,5739,5744,5745,10019,10019,10019,42,5163,5169,5165,0,5739,5745,5741,10020,10020,10020,42,5170,5169,5041,0,5746,5745,5605,10021,10021,10021,42,5170,5041,5171,0,5746,5605,5747,10022,10022,10022,42,5174,5173,5172,0,5750,5749,5748,10023,10023,10023,42,5174,5172,5175,0,5750,5748,5751,10024,10024,10024,42,5176,5174,5175,0,5752,5750,5751,10025,10025,10025,42,5176,5175,5177,0,5752,5751,5753,10026,10026,10026,42,5175,5172,5178,0,5751,5748,5754,10027,10027,10027,42,5175,5178,5179,0,5751,5754,5755,10028,10028,10028,42,5179,5180,5177,0,5755,5756,5753,10029,10029,10029,42,5179,5177,5175,0,5755,5753,5751,10030,10030,10030,42,5173,5182,5181,0,5749,5758,5757,10031,10031,10031,42,5173,5181,5172,0,5749,5757,5748,10032,10032,10032,42,5183,5178,5172,0,5759,5754,5748,10033,10033,10033,42,5183,5172,5181,0,5759,5748,5757,10034,10034,10034,42,5186,5185,5184,0,5762,5761,5760,10035,10035,10035,42,5186,5184,5187,0,5762,5760,5763,10036,10036,10036,42,5185,5189,5188,0,5761,5765,5764,10037,10037,10037,42,5185,5188,5184,0,5761,5764,5760,10038,10038,10038,42,5191,5190,5185,0,5767,5766,5761,10039,10039,10039,42,5191,5185,5186,0,5767,5761,5762,10040,10040,10040,42,5190,5095,5189,0,5766,5662,5765,10041,10041,10041,42,5190,5189,5185,0,5766,5765,5761,10042,10042,10042,42,5194,5193,5192,0,5770,5769,5768,10043,10043,10043,42,5194,5192,5195,0,5770,5768,5771,10044,10044,10044,42,5193,5197,5196,0,5769,5773,5772,10045,10045,10045,42,5193,5196,5192,0,5769,5772,5768,10046,10046,10046,42,5199,5198,5193,0,5775,5774,5769,10047,10047,10047,42,5199,5193,5194,0,5775,5769,5770,10048,10048,10048,42,5198,5200,5197,0,5774,5776,5773,10049,10049,10049,42,5198,5197,5193,0,5774,5773,5769,10050,10050,10050,42,5202,5201,5194,0,5778,5777,5770,10051,10051,10051,42,5202,5194,5195,0,5778,5770,5771,10052,10052,10052,42,5204,5203,5201,0,5780,5779,5777,10053,10053,10053,42,5204,5201,5202,0,5780,5777,5778,10054,10054,10054,42,5194,5201,5203,0,5770,5777,5779,10055,10055,10055,42,5194,5203,5199,0,5770,5779,5775,10056,10056,10056,42,5197,5206,5205,0,5773,5782,5781,10057,10057,10057,42,5197,5205,5196,0,5773,5781,5772,10058,10058,10058,42,5200,5207,5206,0,5776,5783,5782,10059,10059,10059,42,5200,5206,5197,0,5776,5782,5773,10060,10060,10060,42,5209,5208,5207,0,5785,5784,5783,10061,10061,10061,42,5209,5207,5200,0,5785,5783,5776,10062,10062,10062,42,5210,5209,5200,0,5786,5785,5776,10063,10063,10063,42,5210,5200,5198,0,5786,5776,5774,10064,10064,10064,42,5196,5205,5211,0,5772,5781,5787,10065,10065,10065,42,5196,5211,5212,0,5772,5787,5788,10066,10066,10066,42,5212,5211,5213,0,5788,5787,5789,10067,10067,10067,42,5212,5213,5214,0,5788,5789,5790,10068,10068,10068,42,5214,5216,5215,0,5790,5792,5791,10069,10069,10069,42,5214,5215,5212,0,5790,5791,5788,10070,10070,10070,42,5217,5196,5212,0,5793,5772,5788,10071,10071,10071,42,5217,5212,5215,0,5793,5788,5791,10072,10072,10072,42,5219,5218,5213,0,5795,5794,5789,10073,10073,10073,42,5219,5213,5211,0,5795,5789,5787,10074,10074,10074,42,5218,5221,5220,0,5794,5797,5796,10075,10075,10075,42,5218,5220,5213,0,5794,5796,5789,10076,10076,10076,42,5213,5220,5222,0,5789,5796,5798,10077,10077,10077,42,5213,5222,5214,0,5789,5798,5790,10078,10078,10078,42,5218,5219,5223,0,5794,5795,5799,10079,10079,10079,42,5218,5223,5224,0,5794,5799,5800,10080,10080,10080,42,5224,5225,5221,0,5800,5801,5797,10081,10081,10081,42,5224,5221,5218,0,5800,5797,5794,10082,10082,10082,42,5219,5211,5205,0,5795,5787,5781,10083,10083,10083,42,5219,5205,5226,0,5795,5781,5802,10084,10084,10084,42,5226,5205,5206,0,5802,5781,5782,10085,10085,10085,42,5226,5206,5207,0,5802,5782,5783,10086,10086,10086,42,5223,5219,5226,0,5799,5795,5802,10087,10087,10087,42,5223,5226,5227,0,5799,5802,5803,10088,10088,10088,42,5226,5207,5208,0,5802,5783,5784,10089,10089,10089,42,5226,5208,5227,0,5802,5784,5803,10090,10090,10090,42,5147,5229,5228,0,5806,5805,5804,10091,10091,10091,42,5147,5228,5150,0,5806,5804,5807,10092,10092,10092,42,5150,5228,5230,0,5807,5804,5808,10093,10093,10093,42,5150,5230,5231,0,5807,5808,5809,10094,10094,10094,42,5144,5150,5231,0,5718,5724,5810,10095,10095,10095,42,5144,5231,5232,0,5718,5810,5811,10096,10096,10096,42,5235,5234,5233,0,5814,5813,5812,10097,10097,10097,42,5235,5233,5236,0,5814,5812,5815,10098,10098,10098,42,5236,5238,5237,0,5815,5817,5816,10099,10099,10099,42,5236,5237,5235,0,5815,5816,5814,10100,10100,10100,42,5236,5233,5239,0,5815,5812,5818,10101,10101,10101,42,5236,5239,5240,0,5815,5818,5819,10102,10102,10102,42,5238,5236,5240,0,5817,5815,5819,10103,10103,10103,42,5238,5240,5241,0,5817,5819,5820,10104,10104,10104,42,5244,5243,5242,0,5823,5822,5821,10105,10105,10105,42,5244,5242,5245,0,5823,5821,5824,10106,10106,10106,42,5099,5245,5242,0,5666,5824,5821,10107,10107,10107,42,5099,5242,5098,0,5666,5821,5665,10108,10108,10108,42,5148,5246,5229,0,5826,5825,5805,10109,10109,10109,42,5148,5229,5147,0,5826,5805,5806,10110,10110,10110,42,5246,5148,5160,0,5825,5826,5736,10111,10111,10111,42,5246,5160,5161,0,5825,5736,5737,10112,10112,10112,42,5249,5248,5247,0,5829,5828,5827,10113,10113,10113,42,5249,5247,5250,0,5829,5827,5830,10114,10114,10114,42,5248,5252,5251,0,5828,5832,5831,10115,10115,10115,42,5248,5251,5247,0,5828,5831,5827,10116,10116,10116,42,5253,5248,5249,0,5833,5828,5829,10117,10117,10117,42,5253,5249,5254,0,5833,5829,5834,10118,10118,10118,42,5252,5248,5253,0,5832,5828,5833,10119,10119,10119,42,5252,5253,5255,0,5832,5833,5835,10120,10120,10120,42,5252,5257,5256,0,5832,5837,5836,10121,10121,10121,42,5252,5256,5251,0,5832,5836,5831,10122,10122,10122,42,5258,5251,5256,0,5838,5831,5836,10123,10123,10123,42,5258,5256,5259,0,5838,5836,5839,10124,10124,10124,42,5260,5247,5251,0,5840,5827,5831,10125,10125,10125,42,5260,5251,5258,0,5840,5831,5838,10126,10126,10126,42,5257,5252,5255,0,5837,5832,5835,10127,10127,10127,42,5257,5255,5261,0,5837,5835,5841,10128,10128,10128,42,5262,5259,5256,0,5842,5839,5836,10129,10129,10129,42,5262,5256,5263,0,5842,5836,5843,10130,10130,10130,42,5264,5258,5259,0,5844,5838,5839,10131,10131,10131,42,5264,5259,5265,0,5844,5839,5845,10132,10132,10132,42,5265,5259,5262,0,5845,5839,5842,10133,10133,10133,42,5265,5262,5266,0,5845,5842,5846,10134,10134,10134,42,5258,5264,5267,0,5838,5844,5847,10135,10135,10135,42,5258,5267,5260,0,5838,5847,5840,10136,10136,10136,42,5264,5269,5268,0,5844,5849,5848,10137,10137,10137,42,5264,5268,5267,0,5844,5848,5847,10138,10138,10138,42,5265,5270,5269,0,5845,5850,5849,10139,10139,10139,42,5265,5269,5264,0,5845,5849,5844,10140,10140,10140,42,5271,5261,5255,0,5851,5841,5835,10141,10141,10141,42,5271,5255,5272,0,5851,5835,5852,10142,10142,10142,42,5255,5253,5273,0,5835,5833,5853,10143,10143,10143,42,5255,5273,5272,0,5835,5853,5852,10144,10144,10144,42,5271,5272,5274,0,5851,5852,5854,10145,10145,10145,42,5271,5274,5275,0,5851,5854,5855,10146,10146,10146,42,5277,5276,5271,0,5857,5856,5851,10147,10147,10147,42,5277,5271,5275,0,5857,5851,5855,10148,10148,10148,42,5261,5271,5276,0,5841,5851,5856,10149,10149,10149,42,5261,5276,5278,0,5841,5856,5858,10150,10150,10150,42,5279,5274,5272,0,5859,5854,5852,10151,10151,10151,42,5279,5272,5273,0,5859,5852,5853,10152,10152,10152,42,5281,5280,5274,0,5861,5860,5854,10153,10153,10153,42,5281,5274,5279,0,5861,5854,5859,10154,10154,10154,42,5274,5280,5282,0,5854,5860,5862,10155,10155,10155,42,5274,5282,5275,0,5854,5862,5855,10156,10156,10156,42,5285,5284,5283,0,5865,5864,5863,10157,10157,10157,42,5285,5283,5286,0,5865,5863,5866,10158,10158,10158,42,5287,5283,5284,0,5867,5863,5864,10159,10159,10159,42,5287,5284,5288,0,5867,5864,5868,10160,10160,10160,42,5290,5289,5284,0,5870,5869,5864,10161,10161,10161,42,5290,5284,5285,0,5870,5864,5865,10162,10162,10162,42,5288,5284,5289,0,5868,5864,5869,10163,10163,10163,42,5288,5289,5291,0,5868,5869,5871,10164,10164,10164,42,5288,5293,5292,0,5868,5873,5872,10165,10165,10165,42,5288,5292,5287,0,5868,5872,5867,10166,10166,10166,42,5294,5292,5293,0,5874,5872,5873,10167,10167,10167,42,5294,5293,5181,0,5874,5873,5757,10168,10168,10168,42,5295,5292,5294,0,5875,5872,5874,10169,10169,10169,42,5295,5294,5296,0,5875,5874,5876,10170,10170,10170,42,5287,5292,5295,0,5867,5872,5875,10171,10171,10171,42,5287,5295,5297,0,5867,5875,5877,10172,10172,10172,42,5182,5298,5294,0,5758,5878,5874,10173,10173,10173,42,5182,5294,5181,0,5758,5874,5757,10174,10174,10174,42,5299,5298,5182,0,5879,5878,5758,10175,10175,10175,42,5299,5182,5300,0,5879,5758,5880,10176,10176,10176,42,5300,5182,5173,0,5880,5758,5749,10177,10177,10177,42,5300,5173,5301,0,5880,5749,5881,10178,10178,10178,42,5283,5287,5297,0,5863,5867,5877,10179,10179,10179,42,5283,5297,5302,0,5863,5877,5882,10180,10180,10180,42,5302,5297,5303,0,5882,5877,5883,10181,10181,10181,42,5302,5303,5304,0,5882,5883,5884,10182,10182,10182,42,5297,5295,5296,0,5877,5875,5876,10183,10183,10183,42,5297,5296,5303,0,5877,5876,5883,10184,10184,10184,42,5307,5306,5305,0,5887,5886,5885,10185,10185,10185,42,5307,5305,5308,0,5887,5885,5888,10186,10186,10186,42,5299,5306,5307,0,5879,5886,5887,10187,10187,10187,42,5299,5307,5309,0,5879,5887,5889,10188,10188,10188,42,5309,5307,5308,0,5889,5887,5888,10189,10189,10189,42,5309,5308,5310,0,5889,5888,5890,10190,10190,10190,42,5298,5299,5309,0,5878,5879,5889,10191,10191,10191,42,5298,5309,5311,0,5878,5889,5891,10192,10192,10192,42,5310,5312,5311,0,5890,5892,5891,10193,10193,10193,42,5310,5311,5309,0,5890,5891,5889,10194,10194,10194,42,5308,5305,5313,0,5888,5885,5893,10195,10195,10195,42,5308,5313,5314,0,5888,5893,5894,10196,10196,10196,42,5305,5316,5315,0,5885,5896,5895,10197,10197,10197,42,5305,5315,5313,0,5885,5895,5893,10198,10198,10198,42,5318,5317,5314,0,5898,5897,5894,10199,10199,10199,42,5318,5314,5313,0,5898,5894,5893,10200,10200,10200,42,5313,5315,5319,0,5893,5895,5899,10201,10201,10201,42,5313,5319,5318,0,5893,5899,5898,10202,10202,10202,42,5322,5321,5320,0,5902,5901,5900,10203,10203,10203,42,5322,5320,5323,0,5902,5900,5903,10204,10204,10204,42,5323,5320,5324,0,5903,5900,5904,10205,10205,10205,42,5323,5324,5325,0,5903,5904,5905,10206,10206,10206,42,5326,5323,5325,0,5906,5903,5905,10207,10207,10207,42,5326,5325,5327,0,5906,5905,5907,10208,10208,10208,42,5328,5322,5323,0,5908,5902,5903,10209,10209,10209,42,5328,5323,5326,0,5908,5903,5906,10210,10210,10210,42,5321,5330,5329,0,5901,5910,5909,10211,10211,10211,42,5321,5329,5320,0,5901,5909,5900,10212,10212,10212,42,5331,5329,5330,0,5911,5909,5910,10213,10213,10213,42,5331,5330,5332,0,5911,5910,5912,10214,10214,10214,42,5334,5333,5329,0,5914,5913,5909,10215,10215,10215,42,5334,5329,5331,0,5914,5909,5911,10216,10216,10216,42,5320,5329,5333,0,5900,5909,5913,10217,10217,10217,42,5320,5333,5324,0,5900,5913,5904,10218,10218,10218,42,5183,5335,5225,0,5916,5915,5801,10219,10219,10219,42,5183,5225,5224,0,5916,5801,5800,10220,10220,10220,42,5221,5225,5336,0,5797,5801,5917,10221,10221,10221,42,5221,5336,5337,0,5797,5917,5918,10222,10222,10222,42,5225,5335,5338,0,5801,5915,5919,10223,10223,10223,42,5225,5338,5336,0,5801,5919,5917,10224,10224,10224,42,5340,5339,5223,0,5921,5920,5799,10225,10225,10225,42,5340,5223,5227,0,5921,5799,5803,10226,10226,10226,42,5224,5223,5339,0,5800,5799,5920,10227,10227,10227,42,5224,5339,5341,0,5800,5920,5922,10228,10228,10228,42,5198,5199,5342,0,5774,5775,5923,10229,10229,10229,42,5198,5342,5210,0,5774,5923,5786,10230,10230,10230,42,5199,5203,5343,0,5775,5779,5924,10231,10231,10231,42,5199,5343,5342,0,5775,5924,5923,10232,10232,10232,42,5344,5343,5203,0,5925,5924,5779,10233,10233,10233,42,5344,5203,5204,0,5925,5779,5780,10234,10234,10234,42,5346,5345,5343,0,5927,5926,5924,10235,10235,10235,42,5346,5343,5344,0,5927,5924,5925,10236,10236,10236,42,5343,5345,5347,0,5924,5926,5928,10237,10237,10237,42,5343,5347,5342,0,5924,5928,5923,10238,10238,10238,42,5349,5348,5337,0,5930,5929,5918,10239,10239,10239,42,5349,5337,5336,0,5930,5918,5917,10240,10240,10240,42,5350,5349,5336,0,5931,5930,5917,10241,10241,10241,42,5350,5336,5351,0,5931,5917,5932,10242,10242,10242,42,5351,5336,5338,0,5932,5917,5919,10243,10243,10243,42,5351,5338,5352,0,5932,5919,5933,10244,10244,10244,42,5349,5354,5353,0,5930,5935,5934,10245,10245,10245,42,5349,5353,5348,0,5930,5934,5929,10246,10246,10246,42,5282,5280,5353,0,5862,5860,5934,10247,10247,10247,42,5282,5353,5354,0,5862,5934,5935,10248,10248,10248,42,5349,5350,5355,0,5930,5931,5936,10249,10249,10249,42,5349,5355,5354,0,5930,5936,5935,10250,10250,10250,42,5357,5356,5282,0,5938,5937,5862,10251,10251,10251,42,5357,5282,5354,0,5938,5862,5935,10252,10252,10252,42,5355,5358,5357,0,5936,5939,5938,10253,10253,10253,42,5355,5357,5354,0,5936,5938,5935,10254,10254,10254,42,5275,5282,5356,0,5855,5862,5937,10255,10255,10255,42,5275,5356,5359,0,5855,5937,5940,10256,10256,10256,42,5362,5361,5360,0,5943,5942,5941,10257,10257,10257,42,5362,5360,5363,0,5943,5941,5944,10258,10258,10258,42,5325,5362,5363,0,5905,5946,5945,10259,10259,10259,42,5325,5363,5327,0,5905,5945,5907,10260,10260,10260,42,5365,5364,5361,0,5948,5947,5942,10261,10261,10261,42,5365,5361,5362,0,5948,5942,5943,10262,10262,10262,42,5362,5325,5324,0,5946,5905,5904,10263,10263,10263,42,5362,5324,5365,0,5946,5904,5949,10264,10264,10264,42,5363,5360,5366,0,5944,5941,5950,10265,10265,10265,42,5363,5366,5367,0,5944,5950,5951,10266,10266,10266,42,5327,5363,5367,0,5907,5945,5952,10267,10267,10267,42,5327,5367,5368,0,5907,5952,5953,10268,10268,10268,42,5324,5333,5369,0,5904,5913,5954,10269,10269,10269,42,5324,5369,5365,0,5904,5954,5949,10270,10270,10270,42,5333,5334,5370,0,5913,5914,5955,10271,10271,10271,42,5333,5370,5369,0,5913,5955,5954,10272,10272,10272,42,5369,5371,5364,0,5957,5956,5947,10273,10273,10273,42,5369,5364,5365,0,5957,5947,5948,10274,10274,10274,42,5370,5372,5371,0,5959,5958,5956,10275,10275,10275,42,5370,5371,5369,0,5959,5956,5957,10276,10276,10276,42,5371,5374,5373,0,5956,5961,5960,10277,10277,10277,42,5371,5373,5364,0,5956,5960,5947,10278,10278,10278,42,5372,5375,5374,0,5958,5962,5961,10279,10279,10279,42,5372,5374,5371,0,5958,5961,5956,10280,10280,10280,42,5374,5344,5204,0,5961,5925,5780,10281,10281,10281,42,5374,5204,5373,0,5961,5780,5960,10282,10282,10282,42,5375,5376,5344,0,5962,5963,5925,10283,10283,10283,42,5375,5344,5374,0,5962,5925,5961,10284,10284,10284,42,5379,5378,5377,0,5966,5965,5964,10285,10285,10285,42,5379,5377,5380,0,5966,5964,5967,10286,10286,10286,42,5382,5381,5377,0,5969,5968,5964,10287,10287,10287,42,5382,5377,5378,0,5969,5964,5965,10288,10288,10288,42,5385,5384,5383,0,5972,5971,5970,10289,10289,10289,42,5385,5383,5386,0,5972,5970,5973,10290,10290,10290,42,5386,5388,5387,0,5973,5975,5974,10291,10291,10291,42,5386,5387,5385,0,5973,5974,5972,10292,10292,10292,42,5382,5389,5384,0,5977,5976,5971,10293,10293,10293,42,5382,5384,5385,0,5977,5971,5972,10294,10294,10294,42,5382,5385,5387,0,5969,5972,5974,10295,10295,10295,42,5382,5387,5381,0,5969,5974,5968,10296,10296,10296,42,5377,5381,5390,0,5964,5968,5978,10297,10297,10297,42,5377,5390,5380,0,5964,5978,5967,10298,10298,10298,42,5393,5392,5391,0,5981,5980,5979,10299,10299,10299,42,5393,5391,5394,0,5981,5979,5982,10300,10300,10300,42,5395,5391,5392,0,5983,5979,5980,10301,10301,10301,42,5395,5392,5396,0,5983,5980,5984,10302,10302,10302,42,5397,5394,5391,0,5985,5982,5979,10303,10303,10303,42,5397,5391,5395,0,5985,5979,5983,10304,10304,10304,42,5399,5398,5392,0,5987,5986,5980,10305,10305,10305,42,5399,5392,5393,0,5987,5980,5981,10306,10306,10306,42,5401,5400,5398,0,5989,5988,5986,10307,10307,10307,42,5401,5398,5399,0,5989,5986,5987,10308,10308,10308,42,5396,5392,5398,0,5984,5980,5986,10309,10309,10309,42,5396,5398,5400,0,5984,5986,5988,10310,10310,10310,42,5341,5178,5183,0,5922,5990,5916,10311,10311,10311,42,5341,5183,5224,0,5922,5916,5800,10312,10312,10312,42,5335,5183,5181,0,5991,5759,5757,10313,10313,10313,42,5335,5181,5293,0,5991,5757,5873,10314,10314,10314,42,5403,5209,5402,0,5993,5785,5992,10315,10315,10315,42,5403,5402,5404,0,5993,5992,5994,10316,10316,10316,42,5403,5405,5208,0,5993,5995,5784,10317,10317,10317,42,5403,5208,5209,0,5993,5784,5785,10318,10318,10318,42,5403,5404,5406,0,5998,5997,5996,10319,10319,10319,42,5403,5406,5316,0,5998,5996,5896,10320,10320,10320,42,5316,5407,5405,0,5896,6000,5999,10321,10321,10321,42,5316,5405,5403,0,5896,5999,5998,10322,10322,10322,42,5376,5408,5346,0,5963,6001,5927,10323,10323,10323,42,5376,5346,5344,0,5963,5927,5925,10324,10324,10324,42,5346,5408,5332,0,6003,6002,5912,10325,10325,10325,42,5346,5332,5330,0,6003,5912,5910,10326,10326,10326,42,5409,5345,5346,0,6005,6004,6003,10327,10327,10327,42,5409,5346,5330,0,6005,6003,5910,10328,10328,10328,42,5396,5400,5410,0,6008,6007,6006,10329,10329,10329,42,5396,5410,5411,0,6008,6006,6009,10330,10330,10330,42,5412,5395,5396,0,6011,6010,6008,10331,10331,10331,42,5412,5396,5411,0,6011,6008,6009,10332,10332,10332,42,5410,5400,5401,0,6006,6007,6012,10333,10333,10333,42,5410,5401,5413,0,6006,6012,6013,10334,10334,10334,42,5138,5096,5097,0,6014,5663,5664,10335,10335,10335,42,5138,5097,5137,0,6014,5664,6015,10336,10336,10336,42,5139,5093,5096,0,6016,5660,5663,10337,10337,10337,42,5139,5096,5138,0,6016,5663,6014,10338,10338,10338,42,5416,5415,5414,0,6019,6018,6017,10339,10339,10339,42,5416,5414,5417,0,6019,6017,6020,10340,10340,10340,42,5414,5415,5418,0,6017,6018,6021,10341,10341,10341,42,5414,5418,5419,0,6017,6021,6022,10342,10342,10342,42,5421,5420,5419,0,6024,6023,6022,10343,10343,10343,42,5421,5419,5418,0,6024,6022,6021,10344,10344,10344,42,5419,5423,5422,0,6027,6026,6025,10345,10345,10345,42,5419,5422,5414,0,6027,6025,6028,10346,10346,10346,42,5420,5424,5423,0,6030,6029,6026,10347,10347,10347,42,5420,5423,5419,0,6030,6026,6027,10348,10348,10348,42,5425,5422,5423,0,6031,6025,6026,10349,10349,10349,42,5425,5423,5424,0,6031,6026,6029,10350,10350,10350,42,5351,5427,5426,0,5932,6033,6032,10351,10351,10351,42,5351,5426,5350,0,5932,6032,5931,10352,10352,10352,42,5352,5428,5427,0,5933,6034,6033,10353,10353,10353,42,5352,5427,5351,0,5933,6033,5932,10354,10354,10354,42,5430,5429,5376,0,6036,6035,5963,10355,10355,10355,42,5430,5376,5375,0,6036,5963,5962,10356,10356,10356,42,5431,5430,5375,0,6037,6036,5962,10357,10357,10357,42,5431,5375,5372,0,6037,5962,5958,10358,10358,10358,42,5433,5432,5393,0,6039,6038,5981,10359,10359,10359,42,5433,5393,5394,0,6039,5981,5982,10360,10360,10360,42,5435,5434,5432,0,6041,6040,6038,10361,10361,10361,42,5435,5432,5433,0,6041,6038,6039,10362,10362,10362,42,5437,5436,5432,0,6043,6042,6038,10363,10363,10363,42,5437,5432,5434,0,6043,6038,6040,10364,10364,10364,42,5436,5399,5393,0,6042,5987,5981,10365,10365,10365,42,5436,5393,5432,0,6042,5981,6038,10366,10366,10366,42,5440,5439,5438,0,6046,6045,6044,10367,10367,10367,42,5440,5438,5441,0,6046,6044,6047,10368,10368,10368,42,5429,5440,5441,0,6035,6046,6047,10369,10369,10369,42,5429,5441,5442,0,6035,6047,6048,10370,10370,10370,42,5429,5430,5443,0,6035,6036,6049,10371,10371,10371,42,5429,5443,5440,0,6035,6049,6046,10372,10372,10372,42,5439,5440,5443,0,6045,6046,6049,10373,10373,10373,42,5439,5443,5444,0,6045,6049,6050,10374,10374,10374,42,5209,5210,5445,0,5785,5786,6051,10375,10375,10375,42,5209,5445,5402,0,5785,6051,5992,10376,10376,10376,42,5402,5446,5156,0,5992,6053,6052,10377,10377,10377,42,5402,5156,5404,0,5992,6052,5994,10378,10378,10378,42,5402,5445,5447,0,5992,6051,6054,10379,10379,10379,42,5402,5447,5446,0,5992,6054,6053,10380,10380,10380,42,5448,5443,5430,0,6055,6049,6036,10381,10381,10381,42,5448,5430,5431,0,6055,6036,6037,10382,10382,10382,42,5266,5449,5241,0,5846,6057,6056,10383,10383,10383,42,5266,5241,5450,0,5846,6056,6058,10384,10384,10384,42,5449,5266,5262,0,6057,5846,5842,10385,10385,10385,42,5449,5262,5451,0,6057,5842,6059,10386,10386,10386,42,5238,5241,5449,0,6060,6056,6057,10387,10387,10387,42,5238,5449,5452,0,6060,6057,6061,10388,10388,10388,42,5452,5449,5451,0,6061,6057,6059,10389,10389,10389,42,5452,5451,5453,0,6061,6059,6062,10390,10390,10390,42,5456,5455,5454,0,6065,6064,6063,10391,10391,10391,42,5456,5454,5457,0,6065,6063,6066,10392,10392,10392,42,5087,5457,5454,0,5654,6066,6063,10393,10393,10393,42,5087,5454,5086,0,5654,6063,5653,10394,10394,10394,42,5040,5458,5031,0,5604,6067,5594,10395,10395,10395,42,5040,5031,5036,0,5604,5594,5600,10396,10396,10396,42,5168,5126,5458,0,5744,5699,6067,10397,10397,10397,42,5168,5458,5040,0,5744,6067,5604,10398,10398,10398,42,5458,5126,5119,0,6067,5699,5692,10399,10399,10399,42,5458,5119,5051,0,6067,5692,5615,10400,10400,10400,42,5030,5031,5458,0,5593,5594,6067,10401,10401,10401,42,5030,5458,5051,0,5593,6067,5615,10402,10402,10402,42,5455,5456,5059,0,6064,6065,5623,10403,10403,10403,42,5455,5059,5056,0,6064,5623,5620,10404,10404,10404,42,5459,5090,5091,0,6068,5657,5658,10405,10405,10405,42,5459,5091,5080,0,6068,5658,5647,10406,10406,10406,42,5459,5461,5460,0,6068,6070,6069,10407,10407,10407,42,5459,5460,5090,0,6068,6069,5657,10408,10408,10408,42,5462,5368,5098,0,6071,5953,5665,10409,10409,10409,42,5462,5098,5242,0,6071,5665,5821,10410,10410,10410,42,5465,5464,5463,0,6074,6073,6072,10411,10411,10411,42,5465,5463,5466,0,6074,6072,6075,10412,10412,10412,42,5250,5467,5464,0,5830,6076,6073,10413,10413,10413,42,5250,5464,5465,0,5830,6073,6074,10414,10414,10414,42,5463,5464,5467,0,6072,6073,6076,10415,10415,10415,42,5463,5467,5468,0,6072,6076,6077,10416,10416,10416,42,5463,5468,5304,0,6072,6077,5884,10417,10417,10417,42,5463,5304,5466,0,6072,5884,6075,10418,10418,10418,42,5368,5367,5101,0,5953,5952,5668,10419,10419,10419,42,5368,5101,5098,0,5953,5668,5665,10420,10420,10420,42,5457,5087,5469,0,6066,5654,6078,10421,10421,10421,42,5457,5469,5470,0,6066,6078,6079,10422,10422,10422,42,5087,5085,5471,0,5654,5652,6080,10423,10423,10423,42,5087,5471,5469,0,5654,6080,6078,10424,10424,10424,42,5470,5469,5195,0,6079,6078,5771,10425,10425,10425,42,5470,5195,5192,0,6079,5771,5768,10426,10426,10426,42,5469,5471,5472,0,6078,6080,6081,10427,10427,10427,42,5469,5472,5195,0,6078,6081,5771,10428,10428,10428,42,5366,5471,5085,0,5950,6080,5652,10429,10429,10429,42,5366,5085,5084,0,5950,5652,5651,10430,10430,10430,42,5367,5366,5084,0,5951,5950,5651,10431,10431,10431,42,5367,5084,5101,0,5951,5651,5669,10432,10432,10432,42,5058,5216,5473,0,5622,5792,6082,10433,10433,10433,42,5058,5473,5060,0,5622,6082,5624,10434,10434,10434,42,5474,5473,5216,0,6083,6082,5792,10435,10435,10435,42,5474,5216,5214,0,6083,5792,5790,10436,10436,10436,42,5060,5473,5475,0,5624,6082,6084,10437,10437,10437,42,5060,5475,5476,0,5624,6084,6085,10438,10438,10438,42,5473,5474,5477,0,6082,6083,6086,10439,10439,10439,42,5473,5477,5475,0,6082,6086,6084,10440,10440,10440,42,5476,5475,5478,0,6085,6084,6087,10441,10441,10441,42,5476,5478,5171,0,6085,6087,5747,10442,10442,10442,42,5479,5478,5475,0,6088,6087,6084,10443,10443,10443,42,5479,5475,5477,0,6088,6084,6086,10444,10444,10444,42,5170,5171,5478,0,5746,5747,6087,10445,10445,10445,42,5170,5478,5480,0,5746,6087,6089,10446,10446,10446,42,5480,5478,5479,0,6089,6087,6088,10447,10447,10447,42,5480,5479,5254,0,6089,6088,5834,10448,10448,10448,42,5481,5083,5080,0,6090,5650,5647,10449,10449,10449,42,5481,5080,5091,0,6090,5647,5658,10450,10450,10450,42,5080,5088,5461,0,5647,5655,6070,10451,10451,10451,42,5080,5461,5459,0,5647,6070,6068,10452,10452,10452,42,5245,5099,5103,0,5824,5666,5672,10453,10453,10453,42,5245,5103,5108,0,5824,5672,5678,10454,10454,10454,42,5076,5073,5116,0,5640,5637,5686,10455,10455,10455,42,5076,5116,5114,0,5640,5686,6091,10456,10456,10456,42,5114,5116,5117,0,5684,5688,5689,10457,10457,10457,42,5114,5117,5123,0,5684,5689,5696,10458,10458,10458,42,5124,5482,5111,0,5697,6092,5681,10459,10459,10459,42,5124,5111,5112,0,5697,5681,5682,10460,10460,10460,42,5485,5484,5483,0,6095,6094,6093,10461,10461,10461,42,5485,5483,5460,0,6095,6093,6069,10462,10462,10462,42,5067,5064,5461,0,5631,5628,6070,10463,10463,10463,42,5067,5461,5088,0,5631,6070,5655,10464,10464,10464,42,5067,5088,5086,0,5631,5655,5653,10465,10465,10465,42,5067,5086,5454,0,5631,5653,6063,10466,10466,10466,42,5108,5486,5244,0,5678,6096,5823,10467,10467,10467,42,5108,5244,5245,0,5678,5823,5824,10468,10468,10468,42,5125,5487,5482,0,5698,6097,6092,10469,10469,10469,42,5125,5482,5124,0,5698,6092,5697,10470,10470,10470,42,5134,5488,5176,0,5708,6098,5752,10471,10471,10471,42,5134,5176,5133,0,5708,5752,5707,10472,10472,10472,42,5131,5137,5191,0,5705,5711,6099,10473,10473,10473,42,5131,5191,5134,0,5705,6099,5708,10474,10474,10474,42,5134,5191,5186,0,5708,6099,6100,10475,10475,10475,42,5134,5186,5488,0,5708,6100,6098,10476,10476,10476,42,5137,5097,5190,0,6015,5664,5766,10477,10477,10477,42,5137,5190,5191,0,6015,5766,5767,10478,10478,10478,42,5490,5301,5489,0,6102,5881,6101,10479,10479,10479,42,5490,5489,5187,0,6102,6101,6103,10480,10480,10480,42,5187,5184,5340,0,5763,5760,5921,10481,10481,10481,42,5187,5340,5490,0,5763,5921,6104,10482,10482,10482,42,5186,5187,5489,0,6100,6103,6101,10483,10483,10483,42,5186,5489,5488,0,6100,6101,6098,10484,10484,10484,42,5135,5136,5491,0,5709,5710,6105,10485,10485,10485,42,5135,5491,5139,0,5709,6105,5713,10486,10486,10486,42,5180,5491,5136,0,5756,6105,5710,10487,10487,10487,42,5180,5136,5177,0,5756,5710,5753,10488,10488,10488,42,5488,5489,5174,0,6098,6101,5750,10489,10489,10489,42,5488,5174,5176,0,6098,5750,5752,10490,10490,10490,42,5492,5159,5151,0,6106,5734,5735,10491,10491,10491,42,5492,5151,5152,0,6106,5735,6107,10492,10492,10492,42,5493,5202,5195,0,6108,5778,5771,10493,10493,10493,42,5493,5195,5472,0,6108,5771,6081,10494,10494,10494,42,5373,5204,5202,0,5960,5780,5778,10495,10495,10495,42,5373,5202,5493,0,5960,5778,6108,10496,10496,10496,42,5159,5492,5494,0,5734,6106,6109,10497,10497,10497,42,5159,5494,5495,0,5734,6109,6110,10498,10498,10498,42,5229,5495,5494,0,5805,6110,6109,10499,10499,10499,42,5229,5494,5228,0,5805,6109,5804,10500,10500,10500,42,5217,5470,5192,0,5793,6079,5768,10501,10501,10501,42,5217,5192,5196,0,5793,5768,5772,10502,10502,10502,42,5146,5144,5232,0,5720,5718,5811,10503,10503,10503,42,5146,5232,5155,0,5720,5811,5729,10504,10504,10504,42,5474,5497,5496,0,6083,6112,6111,10505,10505,10505,42,5474,5496,5477,0,6083,6111,6086,10506,10506,10506,42,5353,5496,5497,0,5934,6111,6112,10507,10507,10507,42,5353,5497,5348,0,5934,6112,5929,10508,10508,10508,42,5214,5222,5497,0,5790,5798,6112,10509,10509,10509,42,5214,5497,5474,0,5790,6112,6083,10510,10510,10510,42,5222,5337,5348,0,5798,5918,5929,10511,10511,10511,42,5222,5348,5497,0,5798,5929,6112,10512,10512,10512,42,5380,5390,5234,0,5967,5978,5813,10513,10513,10513,42,5380,5234,5235,0,5967,5813,5814,10514,10514,10514,42,5237,5379,5380,0,5816,5966,5967,10515,10515,10515,42,5237,5380,5235,0,5816,5967,5814,10516,10516,10516,42,5446,5492,5152,0,6053,6106,6107,10517,10517,10517,42,5446,5152,5156,0,6053,6107,6052,10518,10518,10518,42,5446,5447,5494,0,6053,6054,6109,10519,10519,10519,42,5446,5494,5492,0,6053,6109,6106,10520,10520,10520,42,5467,5260,5267,0,6076,5840,5847,10521,10521,10521,42,5467,5267,5468,0,6076,5847,6077,10522,10522,10522,42,5468,5267,5268,0,6077,5847,5848,10523,10523,10523,42,5468,5268,5498,0,6077,5848,6113,10524,10524,10524,42,5498,5268,5269,0,6113,5848,5849,10525,10525,10525,42,5498,5269,5286,0,6113,5849,5866,10526,10526,10526,42,5286,5269,5270,0,5866,5849,5850,10527,10527,10527,42,5286,5270,5285,0,5866,5850,5865,10528,10528,10528,42,5359,5356,5270,0,6115,6114,5850,10529,10529,10529,42,5359,5270,5265,0,6115,5850,5845,10530,10530,10530,42,5266,5450,5359,0,5846,6058,6115,10531,10531,10531,42,5266,5359,5265,0,5846,6115,5845,10532,10532,10532,42,5257,5499,5263,0,5837,6116,5843,10533,10533,10533,42,5257,5263,5256,0,5837,5843,5836,10534,10534,10534,42,5261,5278,5499,0,5841,5858,6116,10535,10535,10535,42,5261,5499,5257,0,5841,6116,5837,10536,10536,10536,42,5479,5477,5279,0,6088,6086,5859,10537,10537,10537,42,5479,5279,5273,0,6088,5859,5853,10538,10538,10538,42,5477,5496,5281,0,6086,6111,5861,10539,10539,10539,42,5477,5281,5279,0,6086,5861,5859,10540,10540,10540,42,5302,5498,5286,0,5882,6113,5866,10541,10541,10541,42,5302,5286,5283,0,5882,5866,5863,10542,10542,10542,42,5296,5294,5298,0,5876,5874,5878,10543,10543,10543,42,5296,5298,5311,0,5876,5878,5891,10544,10544,10544,42,5312,5303,5296,0,5892,5883,5876,10545,10545,10545,42,5312,5296,5311,0,5892,5876,5891,10546,10546,10546,42,5447,5230,5228,0,6054,5808,5804,10547,10547,10547,42,5447,5228,5494,0,6054,5804,6109,10548,10548,10548,42,5502,5501,5500,0,6119,6118,6117,10549,10549,10549,42,5502,5500,5453,0,6119,6117,6062,10550,10550,10550,42,5383,5503,5500,0,5970,6120,6117,10551,10551,10551,42,5383,5500,5501,0,5970,6117,6118,10552,10552,10552,42,5505,5504,5501,0,6122,6121,6118,10553,10553,10553,42,5505,5501,5502,0,6122,6118,6119,10554,10554,10554,42,5386,5383,5501,0,5973,5970,6118,10555,10555,10555,42,5386,5501,5504,0,5973,6118,6121,10556,10556,10556,42,5507,5506,5504,0,6124,6123,6121,10557,10557,10557,42,5507,5504,5505,0,6124,6121,6122,10558,10558,10558,42,5504,5506,5388,0,6121,6123,5975,10559,10559,10559,42,5504,5388,5386,0,6121,5975,5973,10560,10560,10560,42,5507,5233,5234,0,6124,5812,5813,10561,10561,10561,42,5507,5234,5506,0,6124,5813,6123,10562,10562,10562,42,5310,5308,5314,0,5890,5888,5894,10563,10563,10563,42,5310,5314,5508,0,5890,5894,6125,10564,10564,10564,42,5407,5306,5299,0,6000,5886,5879,10565,10565,10565,42,5407,5299,5300,0,6000,5879,5880,10566,10566,10566,42,5508,5314,5317,0,6125,5894,5897,10567,10567,10567,42,5508,5317,5328,0,6125,5897,5908,10568,10568,10568,42,5510,5509,5317,0,6127,6126,5897,10569,10569,10569,42,5510,5317,5318,0,6127,5897,5898,10570,10570,10570,42,5409,5510,5318,0,6005,6127,5898,10571,10571,10571,42,5409,5318,5319,0,6005,5898,5899,10572,10572,10572,42,5315,5512,5511,0,5895,6129,6128,10573,10573,10573,42,5315,5511,5319,0,5895,6128,5899,10574,10574,10574,42,5316,5406,5512,0,5896,5996,6129,10575,10575,10575,42,5316,5512,5315,0,5896,6129,5895,10576,10576,10576,42,5509,5510,5321,0,6126,6127,5901,10577,10577,10577,42,5509,5321,5322,0,6126,5901,5902,10578,10578,10578,42,5208,5405,5513,0,5784,5995,6130,10579,10579,10579,42,5208,5513,5227,0,5784,6130,5803,10580,10580,10580,42,5364,5373,5493,0,5947,5960,6108,10581,10581,10581,42,5364,5493,5361,0,5947,6108,5942,10582,10582,10582,42,5361,5493,5472,0,5942,6108,6081,10583,10583,10583,42,5361,5472,5360,0,5942,6081,5941,10584,10584,10584,42,5237,5515,5514,0,6133,6132,6131,10585,10585,10585,42,5237,5514,5379,0,6133,6131,6134,10586,10586,10586,42,5378,5379,5514,0,6135,6134,6131,10587,10587,10587,42,5378,5514,5516,0,6135,6131,6136,10588,10588,10588,42,5500,5515,5452,0,6117,6132,6061,10589,10589,10589,42,5500,5452,5453,0,6117,6061,6062,10590,10590,10590,42,5515,5500,5503,0,6132,6117,6120,10591,10591,10591,42,5515,5503,5514,0,6132,6120,6131,10592,10592,10592,42,5503,5389,5516,0,6120,5976,6136,10593,10593,10593,42,5503,5516,5514,0,6120,6136,6131,10594,10594,10594,42,5285,5270,5356,0,5865,5850,6114,10595,10595,10595,42,5285,5356,5357,0,5865,6114,6137,10596,10596,10596,42,5092,5093,5139,0,5659,5660,6016,10597,10597,10597,42,5092,5139,5491,0,5659,6016,6138,10598,10598,10598,42,5517,5062,5005,0,6139,5626,5564,10599,10599,10599,42,5517,5005,5006,0,6139,5564,5565,10600,10600,10600,42,5519,5518,5129,0,6141,6140,5703,10601,10601,10601,42,5519,5129,5118,0,6141,5703,5691,10602,10602,10602,42,5338,5335,5293,0,6142,5991,5873,10603,10603,10603,42,5338,5293,5288,0,6142,5873,5868,10604,10604,10604,42,5490,5340,5227,0,6104,5921,5803,10605,10605,10605,42,5490,5227,5513,0,6104,5803,6130,10606,10606,10606,42,5300,5513,5405,0,5880,6143,5999,10607,10607,10607,42,5300,5405,5407,0,5880,5999,6000,10608,10608,10608,42,5520,5445,5210,0,6144,6051,5786,10609,10609,10609,42,5520,5210,5342,0,6144,5786,5923,10610,10610,10610,42,5521,5520,5342,0,6145,6144,5923,10611,10611,10611,42,5521,5342,5347,0,6145,5923,5928,10612,10612,10612,42,5345,5409,5319,0,6004,6005,5899,10613,10613,10613,42,5345,5319,5347,0,6004,5899,6146,10614,10614,10614,42,5277,5275,5359,0,5857,5855,5940,10615,10615,10615,42,5277,5359,5450,0,5857,5940,6147,10616,10616,10616,42,5291,5352,5338,0,5871,6148,6142,10617,10617,10617,42,5291,5338,5288,0,5871,6142,5868,10618,10618,10618,42,5511,5521,5347,0,6128,6149,6146,10619,10619,10619,42,5511,5347,5319,0,6128,6146,5899,10620,10620,10620,42,5397,5395,5412,0,6150,6010,6011,10621,10621,10621,42,5397,5412,5522,0,6150,6011,6151,10622,10622,10622,42,5523,5522,5412,0,6152,6151,6011,10623,10623,10623,42,5523,5412,5411,0,6152,6011,6009,10624,10624,10624,42,5410,5413,5523,0,6006,6013,6152,10625,10625,10625,42,5410,5523,5411,0,6006,6152,6009,10626,10626,10626,42,5414,5422,5524,0,6028,6025,6153,10627,10627,10627,42,5414,5524,5417,0,6028,6153,6154,10628,10628,10628,42,5439,5416,5417,0,6045,6019,6020,10629,10629,10629,42,5439,5417,5438,0,6045,6020,6044,10630,10630,10630,42,5438,5417,5524,0,6155,6154,6153,10631,10631,10631,42,5438,5524,5525,0,6155,6153,6156,10632,10632,10632,42,5357,5358,5290,0,6137,6157,5870,10633,10633,10633,42,5357,5290,5285,0,6137,5870,5865,10634,10634,10634,42,5526,5179,5178,0,6159,6158,5990,10635,10635,10635,42,5526,5178,5341,0,6159,5990,5922,10636,10636,10636,42,5341,5339,5188,0,5922,5920,5764,10637,10637,10637,42,5341,5188,5526,0,5922,5764,6159,10638,10638,10638,42,5527,5180,5179,0,6161,6160,6158,10639,10639,10639,42,5527,5179,5526,0,6161,6158,6159,10640,10640,10640,42,5528,5431,5372,0,6162,6037,5958,10641,10641,10641,42,5528,5372,5370,0,6162,5958,5959,10642,10642,10642,42,5525,5524,5422,0,6156,6153,6025,10643,10643,10643,42,5525,5422,5425,0,6156,6025,6031,10644,10644,10644,42,5433,5394,5397,0,6039,5982,5985,10645,10645,10645,42,5433,5397,5529,0,6039,5985,6163,10646,10646,10646,42,5413,5401,5530,0,6013,6012,6164,10647,10647,10647,42,5413,5530,5531,0,6013,6164,6165,10648,10648,10648,42,5399,5436,5530,0,5987,6042,6166,10649,10649,10649,42,5399,5530,5401,0,5987,6166,5989,10650,10650,10650,42,5523,5413,5531,0,6152,6013,6165,10651,10651,10651,42,5523,5531,5532,0,6152,6165,6167,10652,10652,10652,42,5533,5522,5523,0,6168,6151,6152,10653,10653,10653,42,5533,5523,5532,0,6168,6152,6167,10654,10654,10654,42,5529,5397,5522,0,6169,6150,6151,10655,10655,10655,42,5529,5522,5533,0,6169,6151,6168,10656,10656,10656,42,5534,5435,5433,0,6170,6041,6039,10657,10657,10657,42,5534,5433,5529,0,6170,6039,6163,10658,10658,10658,42,5535,5530,5436,0,6171,6166,6042,10659,10659,10659,42,5535,5436,5437,0,6171,6042,6043,10660,10660,10660,42,5536,5531,5530,0,6172,6165,6164,10661,10661,10661,42,5536,5530,5535,0,6172,6164,6173,10662,10662,10662,42,5531,5536,5537,0,6165,6172,6174,10663,10663,10663,42,5531,5537,5532,0,6165,6174,6167,10664,10664,10664,42,5532,5537,5538,0,6167,6174,6175,10665,10665,10665,42,5532,5538,5533,0,6167,6175,6168,10666,10666,10666,42,5534,5529,5533,0,6176,6169,6168,10667,10667,10667,42,5534,5533,5538,0,6176,6168,6175,10668,10668,10668,42,5540,5539,5435,0,6178,6177,6041,10669,10669,10669,42,5540,5435,5534,0,6178,6041,6170,10670,10670,10670,42,5538,5541,5540,0,6175,6180,6179,10671,10671,10671,42,5538,5540,5534,0,6175,6179,6176,10672,10672,10672,42,5437,5434,5426,0,6043,6040,6032,10673,10673,10673,42,5437,5426,5427,0,6043,6032,6033,10674,10674,10674,42,5539,5426,5434,0,6177,6032,6040,10675,10675,10675,42,5539,5434,5435,0,6177,6040,6041,10676,10676,10676,42,5542,5537,5536,0,6181,6174,6172,10677,10677,10677,42,5542,5536,5543,0,6181,6172,6182,10678,10678,10678,42,5543,5536,5535,0,6182,6172,6173,10679,10679,10679,42,5543,5535,5428,0,6182,6173,6183,10680,10680,10680,42,5537,5542,5541,0,6174,6181,6180,10681,10681,10681,42,5537,5541,5538,0,6174,6180,6175,10682,10682,10682,42,5355,5350,5426,0,5936,5931,6032,10683,10683,10683,42,5355,5426,5539,0,5936,6032,6177,10684,10684,10684,42,5358,5355,5539,0,5939,5936,6177,10685,10685,10685,42,5358,5539,5540,0,5939,6177,6178,10686,10686,10686,42,5543,5428,5352,0,6182,6183,6148,10687,10687,10687,42,5543,5352,5291,0,6182,6148,5871,10688,10688,10688,42,5289,5290,5541,0,5869,5870,6180,10689,10689,10689,42,5289,5541,5542,0,5869,6180,6181,10690,10690,10690,42,5189,5527,5526,0,5765,6161,6159,10691,10691,10691,42,5189,5526,5188,0,5765,6159,5764,10692,10692,10692,42,5180,5527,5092,0,6160,6161,5659,10693,10693,10693,42,5180,5092,5491,0,6160,5659,6138,10694,10694,10694,42,5232,5231,5521,0,5811,5810,6149,10695,10695,10695,42,5232,5521,5511,0,5811,6149,6128,10696,10696,10696,42,5231,5230,5520,0,5809,5808,6144,10697,10697,10697,42,5231,5520,5521,0,5809,6144,6145,10698,10698,10698,42,5155,5512,5406,0,5729,6129,5996,10699,10699,10699,42,5155,5406,5154,0,5729,5996,5728,10700,10700,10700,42,5544,5425,5424,0,6184,6031,6029,10701,10701,10701,42,5544,5424,5545,0,6184,6029,6185,10702,10702,10702,42,5546,5525,5425,0,6186,6156,6031,10703,10703,10703,42,5546,5425,5544,0,6186,6031,6184,10704,10704,10704,42,5441,5438,5525,0,6187,6155,6156,10705,10705,10705,42,5441,5525,5546,0,6187,6156,6186,10706,10706,10706,42,5448,5547,5420,0,6055,6188,6023,10707,10707,10707,42,5448,5420,5421,0,6055,6023,6024,10708,10708,10708,42,5547,5545,5424,0,6189,6185,6029,10709,10709,10709,42,5547,5424,5420,0,6189,6029,6030,10710,10710,10710,42,5408,5442,5548,0,6002,6191,6190,10711,10711,10711,42,5408,5548,5332,0,6002,6190,5912,10712,10712,10712,42,5549,5331,5332,0,6192,5911,5912,10713,10713,10713,42,5549,5332,5548,0,6192,5912,6190,10714,10714,10714,42,5528,5370,5334,0,6193,5955,5914,10715,10715,10715,42,5528,5334,5550,0,6193,5914,6194,10716,10716,10716,42,5550,5334,5331,0,6194,5914,5911,10717,10717,10717,42,5550,5331,5549,0,6194,5911,6192,10718,10718,10718,42,5442,5441,5546,0,6191,6187,6186,10719,10719,10719,42,5442,5546,5548,0,6191,6186,6190,10720,10720,10720,42,5528,5550,5545,0,6193,6194,6185,10721,10721,10721,42,5528,5545,5547,0,6193,6185,6189,10722,10722,10722,42,5549,5544,5545,0,6192,6184,6185,10723,10723,10723,42,5549,5545,5550,0,6192,6185,6194,10724,10724,10724,42,5450,5241,5240,0,6147,5820,5819,10725,10725,10725,42,5450,5240,5277,0,6147,5819,5857,10726,10726,10726,42,5451,5262,5263,0,6059,5842,5843,10727,10727,10727,42,5451,5263,5551,0,6059,5843,6195,10728,10728,10728,42,5453,5451,5551,0,6062,6059,6195,10729,10729,10729,42,5453,5551,5502,0,6062,6195,6119,10730,10730,10730,42,5499,5552,5551,0,6116,6196,6195,10731,10731,10731,42,5499,5551,5263,0,6116,6195,5843,10732,10732,10732,42,5278,5553,5552,0,5858,6197,6196,10733,10733,10733,42,5278,5552,5499,0,5858,6196,6116,10734,10734,10734,42,5278,5276,5239,0,5858,5856,5818,10735,10735,10735,42,5278,5239,5553,0,5858,5818,6197,10736,10736,10736,42,5552,5505,5502,0,6196,6122,6119,10737,10737,10737,42,5552,5502,5551,0,6196,6119,6195,10738,10738,10738,42,5553,5507,5505,0,6197,6124,6122,10739,10739,10739,42,5553,5505,5552,0,6197,6122,6196,10740,10740,10740,42,5120,5050,5051,0,5693,5614,5615,10741,10741,10741,42,5120,5051,5119,0,5693,5615,5692,10742,10742,10742,42,5068,5519,5118,0,5632,6141,5691,10743,10743,10743,42,5068,5118,5072,0,5632,5691,5636,10744,10744,10744,42,5466,5554,5167,0,6075,6198,5743,10745,10745,10745,42,5466,5167,5465,0,6075,5743,6074,10746,10746,10746,42,5250,5465,5555,0,5830,6074,6199,10747,10747,10747,42,5250,5555,5249,0,5830,6199,5829,10748,10748,10748,42,5480,5254,5249,0,6089,5834,5829,10749,10749,10749,42,5480,5249,5555,0,6089,5829,6199,10750,10750,10750,42,5465,5167,5164,0,6074,5743,5740,10751,10751,10751,42,5465,5164,5555,0,6074,5740,6199,10752,10752,10752,42,5059,5215,5216,0,5623,5791,5792,10753,10753,10753,42,5059,5216,5058,0,5623,5792,5622,10754,10754,10754,42,5456,5457,5470,0,6065,6066,6079,10755,10755,10755,42,5456,5470,5217,0,6065,6079,5793,10756,10756,10756,42,5215,5059,5456,0,5791,5623,6065,10757,10757,10757,42,5215,5456,5217,0,5791,6065,5793,10758,10758,10758,42,5115,5048,5045,0,5687,5612,5609,10759,10759,10759,42,5115,5045,5049,0,5687,5609,5613,10760,10760,10760,42,5027,5000,5001,0,5590,5559,5560,10761,10761,10761,42,5027,5001,5063,0,5590,5560,5627,10762,10762,10762,42,5107,5481,5070,0,6200,6090,5634,10763,10763,10763,42,5107,5070,5074,0,6200,5634,5638,10764,10764,10764,42,5123,5112,5110,0,5696,5682,5680,10765,10765,10765,42,5123,5110,5114,0,5696,5680,5684,10766,10766,10766,42,5111,5482,5487,0,5681,6092,6097,10767,10767,10767,42,5111,5487,5113,0,5681,6097,5683,10768,10768,10768,42,5177,5136,5133,0,5753,5710,5707,10769,10769,10769,42,5177,5133,5176,0,5753,5707,5752,10770,10770,10770,42,5173,5174,5489,0,5749,5750,6101,10771,10771,10771,42,5173,5489,5301,0,5749,6101,5881,10772,10772,10772,42,5467,5250,5247,0,6076,5830,5827,10773,10773,10773,42,5467,5247,5260,0,6076,5827,5840,10774,10774,10774,42,5254,5479,5273,0,5834,6088,5853,10775,10775,10775,42,5254,5273,5253,0,5834,5853,5833,10776,10776,10776,42,5498,5302,5304,0,6113,5882,5884,10777,10777,10777,42,5498,5304,5468,0,6113,5884,6077,10778,10778,10778,42,5388,5506,5234,0,5975,6123,5813,10779,10779,10779,42,5388,5234,5390,0,5975,5813,5978,10780,10780,10780,42,5306,5407,5316,0,5886,6000,5896,10781,10781,10781,42,5306,5316,5305,0,5886,5896,5885,10782,10782,10782,42,5510,5409,5330,0,6127,6005,5910,10783,10783,10783,42,5510,5330,5321,0,6127,5910,5901,10784,10784,10784,42,5317,5509,5322,0,5897,6126,5902,10785,10785,10785,42,5317,5322,5328,0,5897,5902,5908,10786,10786,10786,42,5220,5221,5337,0,5796,5797,5918,10787,10787,10787,42,5220,5337,5222,0,5796,5918,5798,10788,10788,10788,42,5280,5281,5496,0,5860,5861,6111,10789,10789,10789,42,5280,5496,5353,0,5860,6111,5934,10790,10790,10790,42,5327,5368,5462,0,5907,5953,6071,10791,10791,10791,42,5327,5462,5326,0,5907,6071,5906,10792,10792,10792,42,5384,5389,5503,0,5971,5976,6120,10793,10793,10793,42,5384,5503,5383,0,5971,6120,5970,10794,10794,10794,42,5558,5557,5556,0,6203,6202,6201,10795,10795,10795,42,5558,5556,5517,0,6203,6201,6139,10796,10796,10796,42,5485,5460,5461,0,6095,6069,6070,10797,10797,10797,42,5485,5461,5064,0,6095,6070,5628,10798,10798,10798,42,5301,5490,5513,0,5881,6102,6143,10799,10799,10799,42,5301,5513,5300,0,5881,6143,5880,10800,10800,10800,42,5382,5378,5516,0,5977,6135,6136,10801,10801,10801,42,5382,5516,5389,0,5977,6136,5976,10802,10802,10802,42,5097,5094,5095,0,5664,5661,5662,10803,10803,10803,42,5097,5095,5190,0,5664,5662,5766,10804,10804,10804,42,5184,5188,5339,0,5760,5764,5920,10805,10805,10805,42,5184,5339,5340,0,5760,5920,5921,10806,10806,10806,42,5428,5535,5437,0,6034,6171,6043,10807,10807,10807,42,5428,5437,5427,0,6034,6043,6033,10808,10808,10808,42,5542,5543,5291,0,6181,6182,5871,10809,10809,10809,42,5542,5291,5289,0,6181,5871,5869,10810,10810,10810,42,5540,5541,5290,0,6179,6180,5870,10811,10811,10811,42,5540,5290,5358,0,6179,5870,6157,10812,10812,10812,42,5527,5189,5095,0,6161,5765,5662,10813,10813,10813,42,5527,5095,5092,0,6161,5662,5659,10814,10814,10814,42,5232,5511,5512,0,5811,6128,6129,10815,10815,10815,42,5232,5512,5155,0,5811,6129,5729,10816,10816,10816,42,5154,5406,5404,0,5728,5996,5997,10817,10817,10817,42,5154,5404,5156,0,5728,5997,5730,10818,10818,10818,42,5230,5447,5445,0,5808,6054,6051,10819,10819,10819,42,5230,5445,5520,0,5808,6051,6144,10820,10820,10820,42,5376,5429,5442,0,5963,6035,6048,10821,10821,10821,42,5376,5442,5408,0,5963,6048,6001,10822,10822,10822,42,5443,5448,5421,0,6049,6055,6024,10823,10823,10823,42,5443,5421,5444,0,6049,6024,6050,10824,10824,10824,42,5548,5546,5544,0,6190,6186,6184,10825,10825,10825,42,5548,5544,5549,0,6190,6184,6192,10826,10826,10826,42,5431,5528,5547,0,6037,6162,6188,10827,10827,10827,42,5431,5547,5448,0,6037,6188,6055,10828,10828,10828,42,5276,5277,5240,0,5856,5857,5819,10829,10829,10829,42,5276,5240,5239,0,5856,5819,5818,10830,10830,10830,42,5553,5239,5233,0,6197,5818,5812,10831,10831,10831,42,5553,5233,5507,0,6197,5812,6124,10832,10832,10832,42,5515,5237,5238,0,6132,6133,6060,10833,10833,10833,42,5515,5238,5452,0,6132,6060,6061,10834,10834,10834,42,5117,5049,5050,0,5689,5613,5614,10835,10835,10835,42,5117,5050,5120,0,5689,5614,5693,10836,10836,10836,42,5069,5559,5519,0,5633,6204,6141,10837,10837,10837,42,5069,5519,5068,0,5633,6141,5632,10838,10838,10838,42,5555,5164,5170,0,6199,5740,5746,10839,10839,10839,42,5555,5170,5480,0,6199,5746,6089,10840,10840,10840,42,5360,5472,5471,0,5941,6081,6080,10841,10841,10841,42,5360,5471,5366,0,5941,6080,5950,10842,10842,10842,42,5495,5161,5158,0,6110,5737,5733,10843,10843,10843,42,5495,5158,5159,0,6110,5733,5734,10844,10844,10844,42,5418,5415,5444,0,6021,6018,6050,10845,10845,10845,42,5418,5444,5421,0,6021,6050,6024,10846,10846,10846,42,5390,5381,5387,0,5978,5968,5974,10847,10847,10847,42,5390,5387,5388,0,5978,5974,5975,10848,10848,10848,42,5495,5229,5246,0,6110,5805,5825,10849,10849,10849,42,5495,5246,5161,0,6110,5825,5737,10850,10850,10850,42,5416,5439,5444,0,6019,6045,6050,10851,10851,10851,42,5416,5444,5415,0,6019,6050,6018,10852,10852,10852,42,5560,5012,5013,0,6205,5572,5573,10853,10853,10853,42,5560,5013,5561,0,6205,5573,6206,10854,10854,10854,42,5143,5140,5157,0,5717,5714,5731,10855,10855,10855,42,5143,5157,5160,0,5717,5731,6207,10856,10856,10856,42,5143,5149,5145,0,5717,5723,5719,10857,10857,10857,42,5143,5145,5142,0,5717,5719,5716,10858,10858,10858,42,5149,5143,5160,0,5723,5717,6207,10859,10859,10859,42,5149,5160,5148,0,5723,6207,5722,10860,10860,10860,42,5564,5563,5562,0,6210,6209,6208,10861,10861,10861,42,5564,5562,5565,0,6210,6208,6211,10862,10862,10862,42,5566,5565,5562,0,6212,6211,6208,10863,10863,10863,42,5566,5562,5567,0,6212,6208,6213,10864,10864,10864,42,5570,5569,5568,0,6216,6215,6214,10865,10865,10865,42,5570,5568,5567,0,6216,6214,6213,10866,10866,10866,42,5569,5572,5571,0,6215,6218,6217,10867,10867,10867,42,5569,5571,5568,0,6215,6217,6214,10868,10868,10868,42,5568,5571,5573,0,6214,6217,6219,10869,10869,10869,42,5568,5573,5574,0,6214,6219,6220,10870,10870,10870,42,5575,5570,5567,0,6221,6216,6213,10871,10871,10871,42,5575,5567,5562,0,6221,6213,6208,10872,10872,10872,42,4039,4036,5566,0,6223,6222,6212,10873,10873,10873,42,4039,5566,5574,0,6223,6212,6220,10874,10874,10874,42,4059,4060,5573,0,6225,6224,6219,10875,10875,10875,42,4059,5573,5576,0,6225,6219,6226,10876,10876,10876,42,4046,4059,5576,0,6227,6225,6226,10877,10877,10877,42,4046,5576,5577,0,6227,6226,6228,10878,10878,10878,42,5578,4053,4048,0,6231,6230,6229,10879,10879,10879,42,5578,4048,5579,0,6231,6229,6232,10880,10880,10880,42,4048,4046,5577,0,6229,6227,6228,10881,10881,10881,42,4048,5577,5579,0,6229,6228,6232,10882,10882,10882,42,5579,5581,5580,0,6232,6234,6233,10883,10883,10883,42,5579,5580,5578,0,6232,6233,6231,10884,10884,10884,42,5579,5577,5582,0,6232,6228,6235,10885,10885,10885,42,5579,5582,5581,0,6232,6235,6234,10886,10886,10886,42,5584,5583,5578,0,6237,6236,6231,10887,10887,10887,42,5584,5578,5580,0,6237,6231,6233,10888,10888,10888,42,5571,5585,5576,0,6217,6238,6226,10889,10889,10889,42,5571,5576,5573,0,6217,6226,6219,10890,10890,10890,42,5588,5587,5586,0,6241,6240,6239,10891,10891,10891,42,5588,5586,5572,0,6241,6239,6218,10892,10892,10892,42,5562,5563,5589,0,6208,6209,6242,10893,10893,10893,42,5562,5589,5575,0,6208,6242,6221,10894,10894,10894,42,5577,5576,5585,0,6228,6226,6238,10895,10895,10895,42,5577,5585,5582,0,6228,6238,6235,10896,10896,10896,42,5583,4052,4053,0,6236,6243,6230,10897,10897,10897,42,5583,4053,5578,0,6236,6230,6231,10898,10898,10898,42,5591,5590,5583,0,6245,6244,6236,10899,10899,10899,42,5591,5583,5584,0,6245,6236,6237,10900,10900,10900,42,5590,4058,4052,0,6244,6246,6243,10901,10901,10901,42,5590,4052,5583,0,6244,6243,6236,10902,10902,10902,42,5565,5566,4036,0,6211,6212,6222,10903,10903,10903,42,5565,4036,4055,0,6211,6222,6247,10904,10904,10904,42,4060,4039,5574,0,6224,6223,6220,10905,10905,10905,42,4060,5574,5573,0,6224,6220,6219,10906,10906,10906,42,5582,5585,5592,0,6235,6238,6248,10907,10907,10907,42,5582,5592,5593,0,6235,6248,6249,10908,10908,10908,42,5574,5566,5567,0,6220,6212,6213,10909,10909,10909,42,5574,5567,5568,0,6220,6213,6214,10910,10910,10910,42,5563,5564,5594,0,6209,6210,6250,10911,10911,10911,42,5563,5594,5595,0,6209,6250,6251,10912,10912,10912,42,5596,4057,4058,0,6253,6252,6246,10913,10913,10913,42,5596,4058,5590,0,6253,6246,6244,10914,10914,10914,42,4054,4057,5596,0,6256,6255,6254,10915,10915,10915,42,4054,5596,5597,0,6256,6254,6257,10916,10916,10916,42,5597,5565,4055,0,6257,6211,6247,10917,10917,10917,42,5597,4055,4054,0,6257,6247,6256,10918,10918,10918,42,5600,5599,5598,0,6260,6259,6258,10919,10919,10919,42,5600,5598,5601,0,6260,6258,6261,10920,10920,10920,42,5601,5598,5602,0,6261,6258,6262,10921,10921,10921,42,5601,5602,5603,0,6261,6262,6263,10922,10922,10922,42,5606,5605,5604,0,6266,6265,6264,10923,10923,10923,42,5606,5604,5607,0,6266,6264,6267,10924,10924,10924,42,5605,5606,5608,0,6265,6266,6268,10925,10925,10925,42,5605,5608,5609,0,6265,6268,6269,10926,10926,10926,42,5612,5611,5610,0,6272,6271,6270,10927,10927,10927,42,5612,5610,5613,0,6272,6270,6273,10928,10928,10928,42,5615,5614,5611,0,6275,6274,6271,10929,10929,10929,42,5615,5611,5612,0,6275,6271,6272,10930,10930,10930,42,5611,5617,5616,0,6271,6277,6276,10931,10931,10931,42,5611,5616,5610,0,6271,6276,6270,10932,10932,10932,42,5614,5618,5617,0,6274,6278,6277,10933,10933,10933,42,5614,5617,5611,0,6274,6277,6271,10934,10934,10934,42,5620,5619,5616,0,6280,6279,6276,10935,10935,10935,42,5620,5616,5617,0,6280,6276,6277,10936,10936,10936,42,5616,5619,5621,0,6276,6279,6281,10937,10937,10937,42,5616,5621,5622,0,6276,6281,6282,10938,10938,10938,42,5622,5623,5610,0,6282,6283,6270,10939,10939,10939,42,5622,5610,5616,0,6282,6270,6276,10940,10940,10940,42,5617,5618,5624,0,6277,6278,6284,10941,10941,10941,42,5617,5624,5620,0,6277,6284,6280,10942,10942,10942,42,5618,5626,5625,0,6278,6286,6285,10943,10943,10943,42,5618,5625,5624,0,6278,6285,6284,10944,10944,10944,42,5618,5614,5627,0,6278,6274,6287,10945,10945,10945,42,5618,5627,5626,0,6278,6287,6286,10946,10946,10946,42,5620,5624,5628,0,6280,6284,6288,10947,10947,10947,42,5620,5628,5629,0,6280,6288,6289,10948,10948,10948,42,5624,5625,5630,0,6284,6285,6290,10949,10949,10949,42,5624,5630,5628,0,6284,6290,6288,10950,10950,10950,42,5631,5630,5625,0,6291,6290,6285,10951,10951,10951,42,5631,5625,5632,0,6291,6285,6292,10952,10952,10952,42,5628,5630,5633,0,6295,6294,6293,10953,10953,10953,42,5628,5633,5634,0,6295,6293,6296,10954,10954,10954,42,5635,5633,5630,0,6297,6293,6294,10955,10955,10955,42,5635,5630,5631,0,6297,6294,6298,10956,10956,10956,42,5623,5622,5636,0,6283,6282,6299,10957,10957,10957,42,5623,5636,5637,0,6283,6299,6300,10958,10958,10958,42,5638,5636,5622,0,6301,6299,6282,10959,10959,10959,42,5638,5622,5621,0,6301,6282,6281,10960,10960,10960,42,5640,5639,5637,0,6303,6302,6300,10961,10961,10961,42,5640,5637,5636,0,6303,6300,6299,10962,10962,10962,42,5641,5640,5636,0,6304,6303,6299,10963,10963,10963,42,5641,5636,5638,0,6304,6299,6301,10964,10964,10964,42,5643,5642,5639,0,6306,6305,6302,10965,10965,10965,42,5643,5639,5640,0,6306,6302,6303,10966,10966,10966,42,5643,5640,5641,0,6306,6303,6304,10967,10967,10967,42,5643,5641,5644,0,6306,6304,6307,10968,10968,10968,42,5647,5646,5645,0,6310,6309,6308,10969,10969,10969,42,5647,5645,5648,0,6310,6308,6311,10970,10970,10970,42,5637,5639,5647,0,6300,6302,6310,10971,10971,10971,42,5637,5647,5648,0,6300,6310,6311,10972,10972,10972,42,5647,5639,5642,0,6310,6302,6305,10973,10973,10973,42,5647,5642,5649,0,6310,6305,6312,10974,10974,10974,42,5647,5649,5650,0,6310,6312,6313,10975,10975,10975,42,5647,5650,5646,0,6310,6313,6309,10976,10976,10976,42,5651,5650,5649,0,6314,6313,6312,10977,10977,10977,42,5651,5649,5652,0,6314,6312,6315,10978,10978,10978,42,5651,5652,5653,0,6314,6315,6316,10979,10979,10979,42,5651,5653,5654,0,6314,6316,6317,10980,10980,10980,42,5656,5655,5652,0,6319,6318,6315,10981,10981,10981,42,5656,5652,5649,0,6319,6315,6312,10982,10982,10982,42,5658,5657,5653,0,6321,6320,6316,10983,10983,10983,42,5658,5653,5652,0,6321,6316,6315,10984,10984,10984,42,5652,5655,5659,0,6315,6318,6322,10985,10985,10985,42,5652,5659,5658,0,6315,6322,6321,10986,10986,10986,42,5661,5660,5654,0,6324,6323,6317,10987,10987,10987,42,5661,5654,5653,0,6324,6317,6316,10988,10988,10988,42,5654,5660,5662,0,6327,6326,6325,10989,10989,10989,42,5654,5662,5663,0,6327,6325,6328,10990,10990,10990,42,5654,5663,5664,0,6327,6328,6329,10991,10991,10991,42,5654,5664,5651,0,6327,6329,6330,10992,10992,10992,42,5657,5665,5661,0,6320,6331,6324,10993,10993,10993,42,5657,5661,5653,0,6320,6324,6316,10994,10994,10994,42,5667,5666,5665,0,6333,6332,6331,10995,10995,10995,42,5667,5665,5657,0,6333,6331,6320,10996,10996,10996,42,5668,5667,5657,0,6334,6333,6320,10997,10997,10997,42,5668,5657,5658,0,6334,6320,6321,10998,10998,10998,42,5669,5666,5667,0,6335,6332,6333,10999,10999,10999,42,5669,5667,5670,0,6335,6333,6336,11000,11000,11000,42,5668,5671,5670,0,6334,6337,6336,11001,11001,11001,42,5668,5670,5667,0,6334,6336,6333,11002,11002,11002,42,5662,5673,5672,0,6325,6339,6338,11003,11003,11003,42,5662,5672,5663,0,6325,6338,6328,11004,11004,11004,42,5672,5674,5664,0,6338,6340,6329,11005,11005,11005,42,5672,5664,5663,0,6338,6329,6328,11006,11006,11006,42,5674,5672,5675,0,6340,6338,6341,11007,11007,11007,42,5674,5675,5676,0,6340,6341,6342,11008,11008,11008,42,5672,5673,5677,0,6338,6339,6343,11009,11009,11009,42,5672,5677,5675,0,6338,6343,6341,11010,11010,11010,42,5674,5679,5678,0,6340,6345,6344,11011,11011,11011,42,5674,5678,5664,0,6340,6344,6329,11012,11012,11012,42,5676,5680,5679,0,6342,6346,6345,11013,11013,11013,42,5676,5679,5674,0,6342,6345,6340,11014,11014,11014,42,5681,5659,5655,0,6347,6322,6318,11015,11015,11015,42,5681,5655,5656,0,6347,6318,6319,11016,11016,11016,42,5649,5642,5681,0,6312,6305,6347,11017,11017,11017,42,5649,5681,5656,0,6312,6347,6319,11018,11018,11018,42,5659,5681,5682,0,6322,6347,6348,11019,11019,11019,42,5659,5682,5683,0,6322,6348,6349,11020,11020,11020,42,5642,5643,5682,0,6305,6306,6348,11021,11021,11021,42,5642,5682,5681,0,6305,6348,6347,11022,11022,11022,42,5644,5684,5682,0,6307,6350,6348,11023,11023,11023,42,5644,5682,5643,0,6307,6348,6306,11024,11024,11024,42,5671,5685,5684,0,6337,6351,6350,11025,11025,11025,42,5671,5684,5644,0,6337,6350,6307,11026,11026,11026,42,5684,5685,5683,0,6350,6351,6349,11027,11027,11027,42,5684,5683,5682,0,6350,6349,6348,11028,11028,11028,42,5675,5677,5686,0,6341,6343,6352,11029,11029,11029,42,5675,5686,5687,0,6341,6352,6353,11030,11030,11030,42,5687,5688,5676,0,6353,6354,6342,11031,11031,11031,42,5687,5676,5675,0,6353,6342,6341,11032,11032,11032,42,5688,5689,5680,0,6354,6355,6346,11033,11033,11033,42,5688,5680,5676,0,6354,6346,6342,11034,11034,11034,42,5691,5690,5689,0,6357,6356,6355,11035,11035,11035,42,5691,5689,5688,0,6357,6355,6354,11036,11036,11036,42,5692,5680,5689,0,6358,6346,6355,11037,11037,11037,42,5692,5689,5693,0,6358,6355,6359,11038,11038,11038,42,5693,5689,5690,0,6359,6355,6356,11039,11039,11039,42,5693,5690,5694,0,6359,6356,6360,11040,11040,11040,42,5695,5687,5686,0,6361,6353,6352,11041,11041,11041,42,5695,5686,5696,0,6361,6352,6362,11042,11042,11042,42,5695,5691,5688,0,6361,6357,6354,11043,11043,11043,42,5695,5688,5687,0,6361,6354,6353,11044,11044,11044,42,5698,5697,5692,0,6364,6363,6358,11045,11045,11045,42,5698,5692,5699,0,6364,6358,6365,11046,11046,11046,42,5693,5700,5699,0,6359,6366,6365,11047,11047,11047,42,5693,5699,5692,0,6359,6365,6358,11048,11048,11048,42,5698,5699,5701,0,6364,6365,6367,11049,11049,11049,42,5698,5701,5702,0,6364,6367,6368,11050,11050,11050,42,5701,5699,5700,0,6367,6365,6366,11051,11051,11051,42,5701,5700,5703,0,6367,6366,6369,11052,11052,11052,42,5705,5702,5704,0,6371,6368,6370,11053,11053,11053,42,5705,5704,5706,0,6371,6370,6372,11054,11054,11054,42,5702,5701,5707,0,6368,6367,6373,11055,11055,11055,42,5702,5707,5704,0,6368,6373,6370,11056,11056,11056,42,5708,5698,5702,0,6374,6364,6368,11057,11057,11057,42,5708,5702,5705,0,6374,6368,6371,11058,11058,11058,42,5700,5693,5694,0,6366,6359,6360,11059,11059,11059,42,5700,5694,5709,0,6366,6360,6375,11060,11060,11060,42,5694,5690,5644,0,6377,6376,6307,11061,11061,11061,42,5694,5644,5641,0,6377,6307,6304,11062,11062,11062,42,5709,5694,5641,0,6378,6377,6304,11063,11063,11063,42,5709,5641,5638,0,6378,6304,6301,11064,11064,11064,42,5695,5696,5669,0,6380,6379,6335,11065,11065,11065,42,5695,5669,5670,0,6380,6335,6336,11066,11066,11066,42,5670,5671,5691,0,6336,6337,6381,11067,11067,11067,42,5670,5691,5695,0,6336,6381,6380,11068,11068,11068,42,5712,5711,5710,0,6384,6383,6382,11069,11069,11069,42,5712,5710,5706,0,6384,6382,6372,11070,11070,11070,42,5711,5712,5713,0,6383,6384,6385,11071,11071,11071,42,5711,5713,5714,0,6383,6385,6386,11072,11072,11072,42,5711,5715,5615,0,6388,6387,6275,11073,11073,11073,42,5711,5615,5710,0,6388,6275,6389,11074,11074,11074,42,5714,5716,5715,0,6391,6390,6387,11075,11075,11075,42,5714,5715,5711,0,6391,6387,6388,11076,11076,11076,42,5719,5718,5717,0,6394,6393,6392,11077,11077,11077,42,5719,5717,5720,0,6394,6392,6395,11078,11078,11078,42,5722,5721,5720,0,6397,6396,6395,11079,11079,11079,42,5722,5720,5717,0,6397,6395,6392,11080,11080,11080,42,5720,5724,5723,0,6395,6399,6398,11081,11081,11081,42,5720,5723,5719,0,6395,6398,6394,11082,11082,11082,42,5720,5721,5725,0,6395,6396,6400,11083,11083,11083,42,5720,5725,5724,0,6395,6400,6399,11084,11084,11084,42,5724,5725,5726,0,6399,6400,6401,11085,11085,11085,42,5724,5726,5727,0,6399,6401,6402,11086,11086,11086,42,5723,5724,5727,0,6398,6399,6402,11087,11087,11087,42,5723,5727,5728,0,6398,6402,6403,11088,11088,11088,42,5729,5726,5725,0,6404,6401,6400,11089,11089,11089,42,5729,5725,5730,0,6404,6400,6405,11090,11090,11090,42,5726,5729,5731,0,6401,6404,6406,11091,11091,11091,42,5726,5731,5732,0,6401,6406,6407,11092,11092,11092,42,5732,5733,5727,0,6407,6408,6402,11093,11093,11093,42,5732,5727,5726,0,6407,6402,6401,11094,11094,11094,42,5721,5734,5730,0,6396,6409,6405,11095,11095,11095,42,5721,5730,5725,0,6396,6405,6400,11096,11096,11096,42,5736,5735,5734,0,6411,6410,6409,11097,11097,11097,42,5736,5734,5721,0,6411,6409,6396,11098,11098,11098,42,5737,5735,5736,0,6412,6410,6411,11099,11099,11099,42,5737,5736,5738,0,6412,6411,6413,11100,11100,11100,42,5738,5736,5722,0,6413,6411,6397,11101,11101,11101,42,5739,5737,5738,0,6414,6412,6413,11102,11102,11102,42,5739,5738,5740,0,6414,6413,6415,11103,11103,11103,42,5742,5741,5740,0,6417,6416,6415,11104,11104,11104,42,5742,5740,5738,0,6417,6415,6413,11105,11105,11105,42,5742,5738,5722,0,6417,6413,6397,11106,11106,11106,42,5742,5722,5743,0,6417,6397,6418,11107,11107,11107,42,5740,5745,5744,0,6415,6420,6419,11108,11108,11108,42,5740,5744,5739,0,6415,6419,6414,11109,11109,11109,42,5745,5740,5741,0,6420,6415,6416,11110,11110,11110,42,5745,5741,5746,0,6420,6416,6421,11111,11111,11111,42,5745,5748,5747,0,6420,6423,6422,11112,11112,11112,42,5745,5747,5744,0,6420,6422,6419,11113,11113,11113,42,5744,5747,5749,0,6426,6425,6424,11114,11114,11114,42,5744,5749,5750,0,6426,6424,6427,11115,11115,11115,42,5739,5744,5750,0,6428,6426,6427,11116,11116,11116,42,5739,5750,5751,0,6428,6427,6429,11117,11117,11117,42,5746,5752,5748,0,6421,6430,6423,11118,11118,11118,42,5746,5748,5745,0,6421,6423,6420,11119,11119,11119,42,5748,5754,5753,0,6423,6432,6431,11120,11120,11120,42,5748,5753,5747,0,6423,6431,6422,11121,11121,11121,42,5754,5748,5752,0,6432,6423,6430,11122,11122,11122,42,5754,5752,5755,0,6432,6430,6433,11123,11123,11123,42,5751,5750,5756,0,6429,6427,6434,11124,11124,11124,42,5751,5756,5757,0,6429,6434,6435,11125,11125,11125,42,5758,5756,5750,0,6436,6434,6427,11126,11126,11126,42,5758,5750,5749,0,6436,6427,6424,11127,11127,11127,42,5752,5760,5759,0,6430,6438,6437,11128,11128,11128,42,5752,5759,5755,0,6430,6437,6433,11129,11129,11129,42,5754,5755,5761,0,6432,6433,6439,11130,11130,11130,42,5754,5761,5762,0,6432,6439,6440,11131,11131,11131,42,5755,5759,5763,0,6433,6437,6441,11132,11132,11132,42,5755,5763,5761,0,6433,6441,6439,11133,11133,11133,42,5764,5731,5729,0,6444,6443,6442,11134,11134,11134,42,5764,5729,5765,0,6444,6442,6445,11135,11135,11135,42,5765,5767,5766,0,6445,6447,6446,11136,11136,11136,42,5765,5766,5764,0,6445,6446,6444,11137,11137,11137,42,5765,5729,5730,0,6445,6442,6448,11138,11138,11138,42,5765,5730,5768,0,6445,6448,6449,11139,11139,11139,42,5767,5765,5768,0,6447,6445,6449,11140,11140,11140,42,5767,5768,5769,0,6447,6449,6450,11141,11141,11141,42,5771,5770,5766,0,6452,6451,6446,11142,11142,11142,42,5771,5766,5767,0,6452,6446,6447,11143,11143,11143,42,5764,5766,5772,0,6444,6446,6453,11144,11144,11144,42,5764,5772,5773,0,6444,6453,6454,11145,11145,11145,42,5770,5774,5772,0,6451,6455,6453,11146,11146,11146,42,5770,5772,5766,0,6451,6453,6446,11147,11147,11147,42,5775,5771,5767,0,6456,6452,6447,11148,11148,11148,42,5775,5767,5769,0,6456,6447,6450,11149,11149,11149,42,5776,5773,5772,0,6457,6454,6453,11150,11150,11150,42,5776,5772,5777,0,6457,6453,6458,11151,11151,11151,42,5777,5772,5774,0,6458,6453,6455,11152,11152,11152,42,5777,5774,5778,0,6458,6455,6459,11153,11153,11153,42,5779,5776,5777,0,6460,6457,6458,11154,11154,11154,42,5779,5777,5780,0,6460,6458,6461,11155,11155,11155,42,5773,5776,5779,0,6454,6457,6460,11156,11156,11156,42,5773,5779,5764,0,6454,6460,6444,11157,11157,11157,42,5780,5777,5778,0,6461,6458,6459,11158,11158,11158,42,5780,5778,5781,0,6461,6459,6462,11159,11159,11159,42,5781,5778,5782,0,6462,6459,6463,11160,11160,11160,42,5781,5782,5783,0,6462,6463,6464,11161,11161,11161,42,5785,5784,5781,0,6466,6465,6462,11162,11162,11162,42,5785,5781,5783,0,6466,6462,6464,11163,11163,11163,42,5786,5780,5781,0,6467,6461,6462,11164,11164,11164,42,5786,5781,5784,0,6467,6462,6465,11165,11165,11165,42,5789,5788,5787,0,6470,6469,6468,11166,11166,11166,42,5789,5787,5790,0,6470,6468,6471,11167,11167,11167,42,5792,5791,5788,0,6473,6472,6469,11168,11168,11168,42,5792,5788,5789,0,6473,6469,6470,11169,11169,11169,42,5789,5790,5779,0,6475,6474,6460,11170,11170,11170,42,5789,5779,5793,0,6475,6460,6476,11171,11171,11171,42,5792,5789,5793,0,6477,6475,6476,11172,11172,11172,42,5792,5793,5794,0,6477,6476,6478,11173,11173,11173,42,5788,5796,5795,0,6469,6480,6479,11174,11174,11174,42,5788,5795,5787,0,6469,6479,6468,11175,11175,11175,42,5787,5795,5733,0,6468,6479,6408,11176,11176,11176,42,5787,5733,5732,0,6468,6408,6407,11177,11177,11177,42,5795,5798,5797,0,6479,6482,6481,11178,11178,11178,42,5795,5797,5733,0,6479,6481,6408,11179,11179,11179,42,5798,5795,5796,0,6482,6479,6480,11180,11180,11180,42,5798,5796,5799,0,6482,6480,6483,11181,11181,11181,42,5801,5800,5799,0,6485,6484,6483,11182,11182,11182,42,5801,5799,5796,0,6485,6483,6480,11183,11183,11183,42,5800,5803,5802,0,6484,6487,6486,11184,11184,11184,42,5800,5802,5799,0,6484,6486,6483,11185,11185,11185,42,5804,5798,5799,0,6488,6482,6483,11186,11186,11186,42,5804,5799,5802,0,6488,6483,6486,11187,11187,11187,42,5805,5797,5798,0,6489,6481,6482,11188,11188,11188,42,5805,5798,5804,0,6489,6482,6488,11189,11189,11189,42,5806,5728,5797,0,6490,6403,6481,11190,11190,11190,42,5806,5797,5805,0,6490,6481,6489,11191,11191,11191,42,5792,5808,5807,0,6473,6492,6491,11192,11192,11192,42,5792,5807,5791,0,6473,6491,6472,11193,11193,11193,42,5807,5809,5801,0,6491,6493,6485,11194,11194,11194,42,5807,5801,5791,0,6491,6485,6472,11195,11195,11195,42,5794,5810,5808,0,6478,6495,6494,11196,11196,11196,42,5794,5808,5792,0,6478,6494,6477,11197,11197,11197,42,5604,5808,5810,0,6264,6494,6495,11198,11198,11198,42,5604,5810,5607,0,6264,6495,6267,11199,11199,11199,42,5811,5807,5808,0,6496,6491,6492,11200,11200,11200,42,5811,5808,5604,0,6496,6492,6497,11201,11201,11201,42,5749,5813,5812,0,6424,6499,6498,11202,11202,11202,42,5749,5812,5758,0,6424,6498,6436,11203,11203,11203,42,5813,5815,5814,0,6499,6501,6500,11204,11204,11204,42,5813,5814,5812,0,6499,6500,6498,11205,11205,11205,42,5749,5816,5815,0,6424,6502,6501,11206,11206,11206,42,5749,5815,5813,0,6424,6501,6499,11207,11207,11207,42,5814,5815,5816,0,6500,6501,6502,11208,11208,11208,42,5814,5816,5817,0,6500,6502,6503,11209,11209,11209,42,5819,5818,5817,0,6505,6504,6503,11210,11210,11210,42,5819,5817,5816,0,6505,6503,6502,11211,11211,11211,42,5753,5820,5819,0,6507,6506,6505,11212,11212,11212,42,5753,5819,5816,0,6507,6505,6502,11213,11213,11213,42,5821,5818,5819,0,6508,6504,6505,11214,11214,11214,42,5821,5819,5822,0,6508,6505,6509,11215,11215,11215,42,5823,5822,5819,0,6510,6509,6505,11216,11216,11216,42,5823,5819,5820,0,6510,6505,6506,11217,11217,11217,42,5820,5762,5824,0,6512,6440,6511,11218,11218,11218,42,5820,5824,5823,0,6512,6511,6513,11219,11219,11219,42,5826,5825,5822,0,6515,6514,6509,11220,11220,11220,42,5826,5822,5823,0,6515,6509,6510,11221,11221,11221,42,5823,5824,5827,0,6513,6511,6516,11222,11222,11222,42,5823,5827,5826,0,6513,6516,6517,11223,11223,11223,42,5828,5827,5824,0,6518,6516,6511,11224,11224,11224,42,5828,5824,5829,0,6518,6511,6519,11225,11225,11225,42,5829,5824,5762,0,6519,6511,6440,11226,11226,11226,42,5829,5762,5761,0,6519,6440,6439,11227,11227,11227,42,5830,5828,5829,0,6520,6518,6519,11228,11228,11228,42,5830,5829,5831,0,6520,6519,6521,11229,11229,11229,42,5831,5829,5761,0,6521,6519,6439,11230,11230,11230,42,5831,5761,5763,0,6521,6439,6441,11231,11231,11231,42,5833,5832,5830,0,6523,6522,6520,11232,11232,11232,42,5833,5830,5831,0,6523,6520,6521,11233,11233,11233,42,5833,5831,5763,0,6523,6521,6441,11234,11234,11234,42,5833,5763,5834,0,6523,6441,6524,11235,11235,11235,42,5834,5763,5759,0,6524,6441,6437,11236,11236,11236,42,5834,5759,5835,0,6524,6437,6525,11237,11237,11237,42,5833,5834,5836,0,6523,6524,6526,11238,11238,11238,42,5833,5836,5837,0,6523,6526,6527,11239,11239,11239,42,5836,5834,5835,0,6526,6524,6525,11240,11240,11240,42,5836,5835,5838,0,6526,6525,6528,11241,11241,11241,42,5840,5839,5825,0,6530,6529,6514,11242,11242,11242,42,5840,5825,5826,0,6530,6514,6515,11243,11243,11243,42,5840,5842,5841,0,6530,6532,6531,11244,11244,11244,42,5840,5841,5839,0,6530,6531,6529,11245,11245,11245,42,5843,5840,5826,0,6534,6533,6517,11246,11246,11246,42,5843,5826,5827,0,6534,6517,6516,11247,11247,11247,42,5840,5843,5844,0,6533,6534,6535,11248,11248,11248,42,5840,5844,5842,0,6533,6535,6536,11249,11249,11249,42,5845,5841,5842,0,6537,6531,6532,11250,11250,11250,42,5845,5842,5846,0,6537,6532,6538,11251,11251,11251,42,5847,5846,5842,0,6539,6538,6532,11252,11252,11252,42,5847,5842,5844,0,6539,6532,6540,11253,11253,11253,42,5846,5849,5848,0,6538,6542,6541,11254,11254,11254,42,5846,5848,5845,0,6538,6541,6537,11255,11255,11255,42,5850,5849,5846,0,6543,6542,6538,11256,11256,11256,42,5850,5846,5847,0,6543,6538,6539,11257,11257,11257,42,5841,5845,5851,0,6531,6537,6544,11258,11258,11258,42,5841,5851,5839,0,6531,6544,6529,11259,11259,11259,42,5839,5851,5852,0,6529,6544,6545,11260,11260,11260,42,5839,5852,5825,0,6529,6545,6514,11261,11261,11261,42,5851,5854,5853,0,6544,6547,6546,11262,11262,11262,42,5851,5853,5852,0,6544,6546,6545,11263,11263,11263,42,5845,5848,5854,0,6537,6541,6547,11264,11264,11264,42,5845,5854,5851,0,6537,6547,6544,11265,11265,11265,42,5822,5856,5855,0,6509,6549,6548,11266,11266,11266,42,5822,5855,5821,0,6509,6548,6508,11267,11267,11267,42,5855,5856,5857,0,6548,6549,6550,11268,11268,11268,42,5855,5857,5858,0,6548,6550,6551,11269,11269,11269,42,5858,5860,5859,0,6551,6553,6552,11270,11270,11270,42,5858,5859,5855,0,6551,6552,6548,11271,11271,11271,42,5821,5855,5859,0,6508,6548,6552,11272,11272,11272,42,5821,5859,5861,0,6508,6552,6554,11273,11273,11273,42,5852,5853,5860,0,6545,6546,6553,11274,11274,11274,42,5852,5860,5858,0,6545,6553,6551,11275,11275,11275,42,5859,5860,5862,0,6552,6553,6555,11276,11276,11276,42,5859,5862,5863,0,6552,6555,6556,11277,11277,11277,42,5862,5860,5853,0,6555,6553,6546,11278,11278,11278,42,5862,5853,5864,0,6555,6546,6557,11279,11279,11279,42,5863,5862,5864,0,6556,6555,6557,11280,11280,11280,42,5863,5864,5865,0,6556,6557,6558,11281,11281,11281,42,5865,5864,5866,0,6558,6557,6559,11282,11282,11282,42,5865,5866,5837,0,6558,6559,6560,11283,11283,11283,42,5868,5867,5861,0,6562,6561,6554,11284,11284,11284,42,5868,5861,5865,0,6562,6554,6558,11285,11285,11285,42,5865,5861,5859,0,6558,6554,6552,11286,11286,11286,42,5865,5859,5863,0,6558,6552,6556,11287,11287,11287,42,5868,5865,5837,0,6562,6558,6560,11288,11288,11288,42,5868,5837,5836,0,6562,6560,6563,11289,11289,11289,42,5861,5867,5818,0,6554,6561,6504,11290,11290,11290,42,5861,5818,5821,0,6554,6504,6508,11291,11291,11291,42,5837,5866,5832,0,6527,6564,6522,11292,11292,11292,42,5837,5832,5833,0,6527,6522,6523,11293,11293,11293,42,5871,5870,5869,0,6567,6566,6565,11294,11294,11294,42,5871,5869,5872,0,6567,6565,6568,11295,11295,11295,42,5873,5869,5870,0,6569,6565,6566,11296,11296,11296,42,5873,5870,5874,0,6569,6566,6570,11297,11297,11297,42,5870,5871,5875,0,6566,6567,6571,11298,11298,11298,42,5870,5875,5874,0,6566,6571,6570,11299,11299,11299,42,5875,5876,5873,0,6571,6572,6569,11300,11300,11300,42,5875,5873,5874,0,6571,6569,6570,11301,11301,11301,42,5878,5877,5876,0,6574,6573,6572,11302,11302,11302,42,5878,5876,5875,0,6574,6572,6571,11303,11303,11303,42,5875,5880,5879,0,6571,6576,6575,11304,11304,11304,42,5875,5879,5878,0,6571,6575,6574,11305,11305,11305,42,5871,5838,5880,0,6567,6577,6576,11306,11306,11306,42,5871,5880,5875,0,6567,6576,6571,11307,11307,11307,42,5881,5879,5880,0,6580,6579,6578,11308,11308,11308,42,5881,5880,5882,0,6580,6578,6581,11309,11309,11309,42,5878,5879,5883,0,6574,6575,6582,11310,11310,11310,42,5878,5883,5884,0,6574,6582,6583,11311,11311,11311,42,5879,5881,5885,0,6579,6580,6584,11312,11312,11312,42,5879,5885,5883,0,6579,6584,6585,11313,11313,11313,42,5877,5878,5884,0,6573,6574,6583,11314,11314,11314,42,5877,5884,5886,0,6573,6583,6586,11315,11315,11315,42,5888,5887,5886,0,6588,6587,6586,11316,11316,11316,42,5888,5886,5884,0,6588,6586,6583,11317,11317,11317,42,5889,5757,5886,0,6589,6435,6586,11318,11318,11318,42,5889,5886,5887,0,6589,6586,6587,11319,11319,11319,42,5757,5756,5877,0,6435,6434,6573,11320,11320,11320,42,5757,5877,5886,0,6435,6573,6586,11321,11321,11321,42,5838,5871,5868,0,6577,6567,6562,11322,11322,11322,42,5838,5868,5836,0,6577,6562,6563,11323,11323,11323,42,5838,5835,5882,0,6528,6525,6581,11324,11324,11324,42,5838,5882,5880,0,6528,6581,6578,11325,11325,11325,42,5760,5752,5746,0,6438,6430,6421,11326,11326,11326,42,5760,5746,5890,0,6438,6421,6590,11327,11327,11327,42,5835,5759,5760,0,6525,6437,6438,11328,11328,11328,42,5835,5760,5882,0,6525,6438,6581,11329,11329,11329,42,5890,5881,5882,0,6590,6580,6581,11330,11330,11330,42,5890,5882,5760,0,6590,6581,6438,11331,11331,11331,42,5892,5850,5891,0,6593,6592,6591,11332,11332,11332,42,5892,5891,5893,0,6593,6591,6594,11333,11333,11333,42,5894,5849,5850,0,6595,6542,6543,11334,11334,11334,42,5894,5850,5892,0,6595,6543,6596,11335,11335,11335,42,5892,5893,5895,0,6593,6594,6597,11336,11336,11336,42,5892,5895,5894,0,6593,6597,6598,11337,11337,11337,42,5894,5896,5848,0,6595,6599,6541,11338,11338,11338,42,5894,5848,5849,0,6595,6541,6542,11339,11339,11339,42,5896,5894,5895,0,6599,6595,6600,11340,11340,11340,42,5896,5895,5897,0,6599,6600,6601,11341,11341,11341,42,5895,5866,5864,0,6600,6559,6557,11342,11342,11342,42,5895,5864,5897,0,6600,6557,6601,11343,11343,11343,42,5866,5895,5893,0,6564,6597,6594,11344,11344,11344,42,5866,5893,5832,0,6564,6594,6522,11345,11345,11345,42,5780,5786,5793,0,6461,6467,6476,11346,11346,11346,42,5780,5793,5779,0,6461,6476,6460,11347,11347,11347,42,5793,5786,5898,0,6476,6467,6602,11348,11348,11348,42,5793,5898,5794,0,6476,6602,6478,11349,11349,11349,42,5784,5899,5898,0,6465,6603,6602,11350,11350,11350,42,5784,5898,5786,0,6465,6602,6467,11351,11351,11351,42,5898,5901,5900,0,6602,6605,6604,11352,11352,11352,42,5898,5900,5794,0,6602,6604,6478,11353,11353,11353,42,5899,5902,5901,0,6603,6606,6605,11354,11354,11354,42,5899,5901,5898,0,6603,6605,6602,11355,11355,11355,42,5904,5903,5902,0,6608,6607,6606,11356,11356,11356,42,5904,5902,5899,0,6608,6606,6603,11357,11357,11357,42,5906,5905,5903,0,6610,6609,6607,11358,11358,11358,42,5906,5903,5904,0,6610,6607,6608,11359,11359,11359,42,5903,5905,5907,0,6607,6609,6611,11360,11360,11360,42,5903,5907,5902,0,6607,6611,6606,11361,11361,11361,42,5785,5909,5908,0,6466,6613,6612,11362,11362,11362,42,5785,5908,5904,0,6466,6612,6608,11363,11363,11363,42,5909,5802,5803,0,6614,6486,6487,11364,11364,11364,42,5909,5803,5908,0,6614,6487,6615,11365,11365,11365,42,5911,5910,5908,0,6617,6616,6615,11366,11366,11366,42,5911,5908,5803,0,6617,6615,6487,11367,11367,11367,42,5910,5906,5904,0,6618,6610,6608,11368,11368,11368,42,5910,5904,5908,0,6618,6608,6612,11369,11369,11369,42,5912,5909,5785,0,6619,6613,6466,11370,11370,11370,42,5912,5785,5783,0,6619,6466,6464,11371,11371,11371,42,5802,5909,5912,0,6486,6614,6620,11372,11372,11372,42,5802,5912,5804,0,6486,6620,6488,11373,11373,11373,42,5910,5914,5913,0,6618,6622,6621,11374,11374,11374,42,5910,5913,5906,0,6618,6621,6610,11375,11375,11375,42,5915,5914,5910,0,6624,6623,6616,11376,11376,11376,42,5915,5910,5911,0,6624,6616,6617,11377,11377,11377,42,5914,5917,5916,0,6622,6626,6625,11378,11378,11378,42,5914,5916,5913,0,6622,6625,6621,11379,11379,11379,42,5918,5913,5916,0,6627,6621,6625,11380,11380,11380,42,5918,5916,5919,0,6627,6625,6628,11381,11381,11381,42,5913,5918,5920,0,6621,6627,6629,11382,11382,11382,42,5913,5920,5906,0,6621,6629,6610,11383,11383,11383,42,5911,5922,5921,0,6617,6631,6630,11384,11384,11384,42,5911,5921,5915,0,6617,6630,6624,11385,11385,11385,42,5914,5915,5923,0,6623,6624,6632,11386,11386,11386,42,5914,5923,5917,0,6623,6632,6633,11387,11387,11387,42,5923,5915,5921,0,6632,6624,6630,11388,11388,11388,42,5923,5921,5924,0,6632,6630,6634,11389,11389,11389,42,5922,5911,5803,0,6631,6617,6487,11390,11390,11390,42,5922,5803,5800,0,6631,6487,6484,11391,11391,11391,42,5809,5922,5800,0,6493,6631,6484,11392,11392,11392,42,5809,5800,5801,0,6493,6484,6485,11393,11393,11393,42,5920,5918,5925,0,6629,6627,6635,11394,11394,11394,42,5920,5925,5926,0,6629,6635,6636,11395,11395,11395,42,5918,5919,5608,0,6627,6628,6268,11396,11396,11396,42,5918,5608,5925,0,6627,6268,6635,11397,11397,11397,42,5926,5925,5607,0,6636,6635,6267,11398,11398,11398,42,5926,5607,5810,0,6636,6267,6495,11399,11399,11399,42,5926,5927,5907,0,6636,6637,6611,11400,11400,11400,42,5926,5907,5920,0,6636,6611,6629,11401,11401,11401,42,5810,5928,5927,0,6495,6638,6637,11402,11402,11402,42,5810,5927,5926,0,6495,6637,6636,11403,11403,11403,42,5632,5930,5929,0,6292,6640,6639,11404,11404,11404,42,5632,5929,5931,0,6292,6639,6641,11405,11405,11405,42,5932,5929,5930,0,6642,6639,6640,11406,11406,11406,42,5932,5930,5933,0,6642,6640,6643,11407,11407,11407,42,5929,5932,5888,0,6639,6642,6588,11408,11408,11408,42,5929,5888,5931,0,6639,6588,6641,11409,11409,11409,42,5632,5931,5934,0,6292,6641,6644,11410,11410,11410,42,5632,5934,5631,0,6292,6644,6291,11411,11411,11411,42,5935,5934,5931,0,6645,6644,6641,11412,11412,11412,42,5935,5931,5888,0,6645,6641,6588,11413,11413,11413,42,5936,5924,5921,0,6646,6634,6630,11414,11414,11414,42,5936,5921,5937,0,6646,6630,6647,11415,11415,11415,42,5924,5938,5917,0,6649,6648,6626,11416,11416,11416,42,5924,5917,5923,0,6649,6626,6650,11417,11417,11417,42,5919,5916,5917,0,6628,6625,6626,11418,11418,11418,42,5919,5917,5938,0,6628,6626,6648,11419,11419,11419,42,5924,5936,5609,0,6649,6651,6269,11420,11420,11420,42,5924,5609,5938,0,6649,6269,6648,11421,11421,11421,42,5609,5608,5919,0,6269,6268,6628,11422,11422,11422,42,5609,5919,5938,0,6269,6628,6648,11423,11423,11423,42,5605,5609,5936,0,6265,6269,6651,11424,11424,11424,42,5605,5936,5939,0,6265,6651,6652,11425,11425,11425,42,5939,5936,5937,0,6653,6646,6647,11426,11426,11426,42,5939,5937,5811,0,6653,6647,6496,11427,11427,11427,42,5939,5811,5604,0,6653,6496,6497,11428,11428,11428,42,5939,5604,5605,0,6653,6497,6654,11429,11429,11429,42,5940,5665,5666,0,6655,6331,6332,11430,11430,11430,42,5940,5666,5941,0,6655,6332,6656,11431,11431,11431,42,5673,5940,5941,0,6657,6655,6656,11432,11432,11432,42,5673,5941,5677,0,6657,6656,6658,11433,11433,11433,42,5660,5661,5665,0,6323,6324,6331,11434,11434,11434,42,5660,5665,5940,0,6323,6331,6655,11435,11435,11435,42,5660,5940,5673,0,6323,6655,6657,11436,11436,11436,42,5660,5673,5662,0,6323,6657,6659,11437,11437,11437,42,5944,5943,5942,0,6662,6661,6660,11438,11438,11438,42,5944,5942,5945,0,6662,6660,6663,11439,11439,11439,42,5947,5946,5943,0,6665,6664,6661,11440,11440,11440,42,5947,5943,5944,0,6665,6661,6662,11441,11441,11441,42,5948,5947,5944,0,6666,6665,6662,11442,11442,11442,42,5948,5944,5945,0,6666,6662,6663,11443,11443,11443,42,5950,5949,5943,0,6668,6667,6661,11444,11444,11444,42,5950,5943,5946,0,6668,6661,6664,11445,11445,11445,42,5952,5951,5949,0,6670,6669,6667,11446,11446,11446,42,5952,5949,5950,0,6670,6667,6668,11447,11447,11447,42,5953,5942,5943,0,6671,6660,6661,11448,11448,11448,42,5953,5943,5949,0,6671,6661,6667,11449,11449,11449,42,5953,5949,5951,0,6671,6667,6669,11450,11450,11450,42,5953,5951,5954,0,6671,6669,6672,11451,11451,11451,42,5957,5956,5955,0,6675,6674,6673,11452,11452,11452,42,5957,5955,5958,0,6675,6673,6676,11453,11453,11453,42,5960,5959,5957,0,6679,6678,6677,11454,11454,11454,42,5960,5957,5958,0,6679,6677,6680,11455,11455,11455,42,5961,5960,5958,0,6681,6679,6680,11456,11456,11456,42,5961,5958,5962,0,6681,6680,6682,11457,11457,11457,42,5959,5960,5602,0,6678,6679,6262,11458,11458,11458,42,5959,5602,5963,0,6678,6262,6683,11459,11459,11459,42,5963,5602,5598,0,6683,6262,6258,11460,11460,11460,42,5963,5598,5964,0,6683,6258,6684,11461,11461,11461,42,5964,5598,5599,0,6685,6258,6259,11462,11462,11462,42,5964,5599,5965,0,6685,6259,6686,11463,11463,11463,42,5964,5965,5966,0,6685,6686,6687,11464,11464,11464,42,5964,5966,5963,0,6685,6687,6688,11465,11465,11465,42,5963,5966,5967,0,6688,6687,6689,11466,11466,11466,42,5963,5967,5959,0,6688,6689,6690,11467,11467,11467,42,5967,5956,5957,0,6689,6674,6675,11468,11468,11468,42,5967,5957,5959,0,6689,6675,6690,11469,11469,11469,42,5666,5669,5696,0,6332,6335,6379,11470,11470,11470,42,5666,5696,5941,0,6332,6379,6656,11471,11471,11471,42,5966,5965,5968,0,6687,6686,6691,11472,11472,11472,42,5966,5968,5969,0,6687,6691,6692,11473,11473,11473,42,5965,5599,5970,0,6686,6259,6693,11474,11474,11474,42,5965,5970,5968,0,6686,6693,6691,11475,11475,11475,42,5707,5634,5633,0,6373,6296,6293,11476,11476,11476,42,5707,5633,5971,0,6373,6293,6694,11477,11477,11477,42,5971,5633,5635,0,6694,6293,6297,11478,11478,11478,42,5971,5635,5972,0,6694,6297,6695,11479,11479,11479,42,5973,5971,5972,0,6696,6694,6695,11480,11480,11480,42,5973,5972,5974,0,6696,6695,6697,11481,11481,11481,42,5704,5707,5971,0,6370,6373,6694,11482,11482,11482,42,5704,5971,5973,0,6370,6694,6696,11483,11483,11483,42,5712,5973,5974,0,6384,6696,6697,11484,11484,11484,42,5712,5974,5713,0,6384,6697,6385,11485,11485,11485,42,5631,5934,5975,0,6298,6699,6698,11486,11486,11486,42,5631,5975,5635,0,6298,6698,6297,11487,11487,11487,42,5977,5976,5969,0,6701,6700,6692,11488,11488,11488,42,5977,5969,5968,0,6701,6692,6691,11489,11489,11489,42,5978,5977,5968,0,6702,6701,6691,11490,11490,11490,42,5978,5968,5970,0,6702,6691,6693,11491,11491,11491,42,5970,5948,5945,0,6693,6666,6663,11492,11492,11492,42,5970,5945,5978,0,6693,6663,6702,11493,11493,11493,42,5599,5600,5948,0,6259,6260,6666,11494,11494,11494,42,5599,5948,5970,0,6259,6666,6693,11495,11495,11495,42,5981,5980,5979,0,6705,6704,6703,11496,11496,11496,42,5981,5979,5594,0,6705,6703,6250,11497,11497,11497,42,5982,5595,5594,0,6706,6251,6250,11498,11498,11498,42,5982,5594,5979,0,6706,6250,6703,11499,11499,11499,42,5706,5710,5983,0,6372,6382,6707,11500,11500,11500,42,5706,5983,5705,0,6372,6707,6371,11501,11501,11501,42,5612,5983,5710,0,6272,6708,6389,11502,11502,11502,42,5612,5710,5615,0,6272,6389,6275,11503,11503,11503,42,5705,5983,5645,0,6371,6707,6709,11504,11504,11504,42,5705,5645,5708,0,6371,6709,6374,11505,11505,11505,42,5983,5612,5648,0,6708,6272,6311,11506,11506,11506,42,5983,5648,5645,0,6708,6311,6308,11507,11507,11507,42,5637,5648,5984,0,6300,6311,6710,11508,11508,11508,42,5637,5984,5623,0,6300,6710,6283,11509,11509,11509,42,5612,5613,5984,0,6272,6273,6710,11510,11510,11510,42,5612,5984,5648,0,6272,6710,6311,11511,11511,11511,42,5580,5986,5985,0,6233,6712,6711,11512,11512,11512,42,5580,5985,5584,0,6233,6711,6237,11513,11513,11513,42,5988,5987,5986,0,6714,6713,6712,11514,11514,11514,42,5988,5986,5580,0,6714,6712,6233,11515,11515,11515,42,5581,5989,5988,0,6234,6715,6714,11516,11516,11516,42,5581,5988,5580,0,6234,6714,6233,11517,11517,11517,42,5987,5991,5990,0,6713,6717,6716,11518,11518,11518,42,5987,5990,5986,0,6713,6716,6712,11519,11519,11519,42,5992,5991,5987,0,6718,6717,6713,11520,11520,11520,42,5992,5987,5988,0,6718,6713,6714,11521,11521,11521,42,5991,5994,5993,0,6717,6720,6719,11522,11522,11522,42,5991,5993,5990,0,6717,6719,6716,11523,11523,11523,42,5994,5991,5992,0,6720,6717,6718,11524,11524,11524,42,5994,5992,5995,0,6720,6718,6721,11525,11525,11525,42,5986,5990,5996,0,6712,6716,6722,11526,11526,11526,42,5986,5996,5985,0,6712,6722,6711,11527,11527,11527,42,5990,5993,5997,0,6716,6719,6723,11528,11528,11528,42,5990,5997,5996,0,6716,6723,6722,11529,11529,11529,42,5996,5999,5998,0,6722,6725,6724,11530,11530,11530,42,5996,5998,5985,0,6722,6724,6711,11531,11531,11531,42,6000,5999,5996,0,6726,6725,6722,11532,11532,11532,42,6000,5996,5997,0,6726,6722,6723,11533,11533,11533,42,6001,5581,5582,0,6727,6234,6235,11534,11534,11534,42,6001,5582,6002,0,6727,6235,6728,11535,11535,11535,42,6005,6004,6003,0,6731,6730,6729,11536,11536,11536,42,6005,6003,6001,0,6731,6729,6727,11537,11537,11537,42,6003,6004,6006,0,6729,6730,6732,11538,11538,11538,42,6003,6006,5989,0,6729,6732,6715,11539,11539,11539,42,6002,6007,6005,0,6728,6733,6731,11540,11540,11540,42,6002,6005,6001,0,6728,6731,6727,11541,11541,11541,42,6010,6009,6008,0,6736,6735,6734,11542,11542,11542,42,6010,6008,6011,0,6736,6734,6737,11543,11543,11543,42,5587,5588,6009,0,6240,6241,6735,11544,11544,11544,42,5587,6009,6010,0,6240,6735,6736,11545,11545,11545,42,5588,6013,6012,0,6241,6739,6738,11546,11546,11546,42,5588,6012,6009,0,6241,6738,6735,11547,11547,11547,42,6014,6008,6009,0,6740,6734,6735,11548,11548,11548,42,6014,6009,6012,0,6740,6735,6738,11549,11549,11549,42,6017,6016,6015,0,6743,6742,6741,11550,11550,11550,42,6017,6015,6018,0,6743,6741,6744,11551,11551,11551,42,6019,6017,6018,0,6745,6743,6744,11552,11552,11552,42,6019,6018,6020,0,6745,6744,6746,11553,11553,11553,42,6021,6010,6011,0,6747,6736,6737,11554,11554,11554,42,6021,6011,6022,0,6747,6737,6748,11555,11555,11555,42,6023,6019,6020,0,6749,6745,6746,11556,11556,11556,42,6023,6020,6024,0,6749,6746,6750,11557,11557,11557,42,6025,6021,6022,0,6751,6747,6748,11558,11558,11558,42,6025,6022,6026,0,6751,6748,6752,11559,11559,11559,42,6027,6023,6024,0,6753,6749,6750,11560,11560,11560,42,6027,6024,6028,0,6753,6750,6754,11561,11561,11561,42,6021,6025,5593,0,6747,6751,6249,11562,11562,11562,42,6021,5593,5592,0,6747,6249,6248,11563,11563,11563,42,5592,5587,6010,0,6248,6240,6736,11564,11564,11564,42,5592,6010,6021,0,6248,6736,6747,11565,11565,11565,42,6026,6030,6029,0,6752,6756,6755,11566,11566,11566,42,6026,6029,6025,0,6752,6755,6751,11567,11567,11567,42,6031,6007,6029,0,6757,6733,6755,11568,11568,11568,42,6031,6029,6030,0,6757,6755,6756,11569,11569,11569,42,6032,6027,6028,0,6758,6753,6754,11570,11570,11570,42,6032,6028,6033,0,6758,6754,6759,11571,11571,11571,42,6035,6034,6032,0,6761,6760,6758,11572,11572,11572,42,6035,6032,6033,0,6761,6758,6759,11573,11573,11573,42,6025,6029,6036,0,6751,6755,6762,11574,11574,11574,42,6025,6036,5593,0,6751,6762,6249,11575,11575,11575,42,6036,6029,6007,0,6762,6755,6733,11576,11576,11576,42,6036,6007,6002,0,6762,6733,6728,11577,11577,11577,42,5593,6036,6002,0,6249,6762,6728,11578,11578,11578,42,5593,6002,5582,0,6249,6728,6235,11579,11579,11579,42,6038,6037,6020,0,6764,6763,6746,11580,11580,11580,42,6038,6020,6018,0,6764,6746,6744,11581,11581,11581,42,6039,6038,6018,0,6765,6764,6744,11582,11582,11582,42,6039,6018,6015,0,6765,6744,6741,11583,11583,11583,42,6040,6039,6015,0,6766,6765,6741,11584,11584,11584,42,6040,6015,6041,0,6766,6741,6767,11585,11585,11585,42,6044,6043,6042,0,6770,6769,6768,11586,11586,11586,42,6044,6042,6045,0,6770,6768,6771,11587,11587,11587,42,6046,6043,6044,0,6772,6769,6770,11588,11588,11588,42,6046,6044,6047,0,6772,6770,6773,11589,11589,11589,42,6041,6015,6016,0,6767,6741,6742,11590,11590,11590,42,6041,6016,6048,0,6767,6742,6774,11591,11591,11591,42,6049,6046,6047,0,6775,6772,6773,11592,11592,11592,42,6049,6047,6050,0,6775,6773,6776,11593,11593,11593,42,6044,6052,6051,0,6770,6778,6777,11594,11594,11594,42,6044,6051,6047,0,6770,6777,6773,11595,11595,11595,42,6045,6053,6052,0,6771,6779,6778,11596,11596,11596,42,6045,6052,6044,0,6771,6778,6770,11597,11597,11597,42,6047,6051,6054,0,6773,6777,6780,11598,11598,11598,42,6047,6054,6050,0,6773,6780,6776,11599,11599,11599,42,6051,6056,6055,0,6777,6782,6781,11600,11600,11600,42,6051,6055,6054,0,6777,6781,6780,11601,11601,11601,42,6058,6057,6054,0,6784,6783,6780,11602,11602,11602,42,6058,6054,6055,0,6784,6780,6781,11603,11603,11603,42,6057,6059,6050,0,6783,6785,6776,11604,11604,11604,42,6057,6050,6054,0,6783,6776,6780,11605,11605,11605,42,6060,6049,6050,0,6786,6775,6776,11606,11606,11606,42,6060,6050,6059,0,6786,6776,6785,11607,11607,11607,42,6062,6061,6060,0,6788,6787,6786,11608,11608,11608,42,6062,6060,6059,0,6788,6786,6785,11609,11609,11609,42,6013,6064,6063,0,6739,6790,6789,11610,11610,11610,42,6013,6063,6012,0,6739,6789,6738,11611,11611,11611,42,6065,6014,6012,0,6791,6740,6738,11612,11612,11612,42,6065,6012,6063,0,6791,6738,6789,11613,11613,11613,42,6067,6066,6065,0,6793,6792,6791,11614,11614,11614,42,6067,6065,6063,0,6793,6791,6789,11615,11615,11615,42,6067,6063,6064,0,6793,6789,6790,11616,11616,11616,42,6067,6064,6068,0,6793,6790,6794,11617,11617,11617,42,6070,6069,6067,0,6796,6795,6793,11618,11618,11618,42,6070,6067,6068,0,6796,6793,6794,11619,11619,11619,42,6073,6072,6071,0,6799,6798,6797,11620,11620,11620,42,6073,6071,6074,0,6799,6797,6800,11621,11621,11621,42,6076,6072,6075,0,6802,6798,6801,11622,11622,11622,42,6076,6075,6077,0,6802,6801,6803,11623,11623,11623,42,6066,6067,6069,0,6792,6793,6795,11624,11624,11624,42,6066,6069,6078,0,6792,6795,6804,11625,11625,11625,42,5718,6080,6079,0,6393,6806,6805,11626,11626,11626,42,5718,6079,5717,0,6393,6805,6392,11627,11627,11627,42,6081,6041,6048,0,6807,6767,6774,11628,11628,11628,42,6081,6048,6082,0,6807,6774,6808,11629,11629,11629,42,6074,6071,5982,0,6800,6797,6706,11630,11630,11630,42,6074,5982,5979,0,6800,6706,6703,11631,11631,11631,42,6083,6075,6072,0,6809,6801,6798,11632,11632,11632,42,6083,6072,6073,0,6809,6798,6799,11633,11633,11633,42,6085,6084,6075,0,6811,6810,6801,11634,11634,11634,42,6085,6075,6083,0,6811,6801,6809,11635,11635,11635,42,6086,6083,6073,0,6812,6809,6799,11636,11636,11636,42,6086,6073,6087,0,6812,6799,6813,11637,11637,11637,42,5979,5980,6088,0,6703,6704,6814,11638,11638,11638,42,5979,6088,6074,0,6703,6814,6800,11639,11639,11639,42,6091,6090,6089,0,6817,6816,6815,11640,11640,11640,42,6091,6089,5591,0,6817,6815,6245,11641,11641,11641,42,6090,6093,6092,0,6816,6819,6818,11642,11642,11642,42,6090,6092,6094,0,6816,6818,6820,11643,11643,11643,42,6091,6095,6093,0,6817,6821,6819,11644,11644,11644,42,6091,6093,6090,0,6817,6819,6816,11645,11645,11645,42,6097,6096,6092,0,6823,6822,6818,11646,11646,11646,42,6097,6092,6093,0,6823,6818,6819,11647,11647,11647,42,6098,6097,6093,0,6824,6823,6819,11648,11648,11648,42,6098,6093,6095,0,6824,6819,6821,11649,11649,11649,42,6101,6100,6099,0,6827,6826,6825,11650,11650,11650,42,6101,6099,6102,0,6827,6825,6828,11651,11651,11651,42,6103,6101,6102,0,6829,6827,6828,11652,11652,11652,42,6103,6102,6104,0,6829,6828,6830,11653,11653,11653,42,6106,6105,6100,0,6832,6831,6826,11654,11654,11654,42,6106,6100,6101,0,6832,6826,6827,11655,11655,11655,42,6107,6106,6101,0,6833,6832,6827,11656,11656,11656,42,6107,6101,6103,0,6833,6827,6829,11657,11657,11657,42,6109,6108,6105,0,6835,6834,6831,11658,11658,11658,42,6109,6105,6106,0,6835,6831,6832,11659,11659,11659,42,6110,6109,6106,0,6836,6835,6832,11660,11660,11660,42,6110,6106,6107,0,6836,6832,6833,11661,11661,11661,42,6108,6109,6111,0,6834,6835,6837,11662,11662,11662,42,6108,6111,6112,0,6834,6837,6838,11663,11663,11663,42,6109,6110,6113,0,6835,6836,6839,11664,11664,11664,42,6109,6113,6111,0,6835,6839,6837,11665,11665,11665,42,6112,6115,6114,0,6838,6841,6840,11666,11666,11666,42,6112,6114,6108,0,6838,6840,6834,11667,11667,11667,42,6117,6116,6115,0,6843,6842,6841,11668,11668,11668,42,6117,6115,6112,0,6843,6841,6838,11669,11669,11669,42,6115,6119,6118,0,6841,6845,6844,11670,11670,11670,42,6115,6118,6114,0,6841,6844,6840,11671,11671,11671,42,6116,6120,6119,0,6842,6846,6845,11672,11672,11672,42,6116,6119,6115,0,6842,6845,6841,11673,11673,11673,42,6121,6117,6112,0,6847,6843,6838,11674,11674,11674,42,6121,6112,6111,0,6847,6838,6837,11675,11675,11675,42,6114,6118,6122,0,6840,6844,6848,11676,11676,11676,42,6114,6122,6123,0,6840,6848,6849,11677,11677,11677,42,6122,6118,6124,0,6848,6844,6850,11678,11678,11678,42,6122,6124,6125,0,6848,6850,6851,11679,11679,11679,42,6126,6123,6122,0,6852,6849,6848,11680,11680,11680,42,6126,6122,6127,0,6852,6848,6853,11681,11681,11681,42,6127,6122,6125,0,6853,6848,6851,11682,11682,11682,42,6127,6125,6128,0,6853,6851,6854,11683,11683,11683,42,6118,6119,6129,0,6844,6845,6855,11684,11684,11684,42,6118,6129,6124,0,6844,6855,6850,11685,11685,11685,42,6131,6130,6116,0,6857,6856,6842,11686,11686,11686,42,6131,6116,6117,0,6857,6842,6843,11687,11687,11687,42,6132,6131,6117,0,6858,6857,6843,11688,11688,11688,42,6132,6117,6121,0,6858,6843,6847,11689,11689,11689,42,6121,6134,6133,0,6847,6860,6859,11690,11690,11690,42,6121,6133,6132,0,6847,6859,6858,11691,11691,11691,42,6136,6132,6135,0,6862,6858,6861,11692,11692,11692,42,6136,6135,6137,0,6862,6861,6863,11693,11693,11693,42,6131,6132,6136,0,6857,6858,6862,11694,11694,11694,42,6131,6136,6138,0,6857,6862,6864,11695,11695,11695,42,6133,6139,6135,0,6859,6865,6861,11696,11696,11696,42,6133,6135,6132,0,6859,6861,6858,11697,11697,11697,42,6140,6107,6103,0,6866,6833,6829,11698,11698,11698,42,6140,6103,6141,0,6866,6829,6867,11699,11699,11699,42,6144,6143,6142,0,6870,6869,6868,11700,11700,11700,42,6144,6142,6141,0,6870,6868,6867,11701,11701,11701,42,6141,6142,6145,0,6867,6868,6871,11702,11702,11702,42,6141,6145,6140,0,6867,6871,6866,11703,11703,11703,42,6147,6144,6146,0,6873,6870,6872,11704,11704,11704,42,6147,6146,6000,0,6873,6872,6726,11705,11705,11705,42,6150,6149,6148,0,6876,6875,6874,11706,11706,11706,42,6150,6148,6151,0,6876,6874,6877,11707,11707,11707,42,6147,6150,6143,0,6873,6876,6869,11708,11708,11708,42,6147,6143,6144,0,6873,6869,6870,11709,11709,11709,42,6152,6099,6100,0,6880,6879,6878,11710,11710,11710,42,6152,6100,6126,0,6880,6878,6881,11711,11711,11711,42,6154,6152,6153,0,6883,6880,6882,11712,11712,11712,42,6154,6153,6086,0,6883,6882,6812,11713,11713,11713,42,6152,6126,6127,0,6880,6881,6884,11714,11714,11714,42,6152,6127,6153,0,6880,6884,6882,11715,11715,11715,42,6153,6127,6128,0,6882,6884,6885,11716,11716,11716,42,6153,6128,6155,0,6882,6885,6886,11717,11717,11717,42,6155,6128,6156,0,6886,6885,6887,11718,11718,11718,42,6155,6156,6157,0,6886,6887,6888,11719,11719,11719,42,6128,6125,6158,0,6854,6851,6889,11720,11720,11720,42,6128,6158,6156,0,6854,6889,6890,11721,11721,11721,42,6159,6155,6157,0,6891,6886,6888,11722,11722,11722,42,6159,6157,6160,0,6891,6888,6892,11723,11723,11723,42,6083,6086,6159,0,6809,6812,6891,11724,11724,11724,42,6083,6159,6085,0,6809,6891,6811,11725,11725,11725,42,6155,6159,6086,0,6886,6891,6812,11726,11726,11726,42,6155,6086,6153,0,6886,6812,6882,11727,11727,11727,42,6161,6006,6004,0,6893,6732,6730,11728,11728,11728,42,6161,6004,6162,0,6893,6730,6894,11729,11729,11729,42,6165,6164,6163,0,6897,6896,6895,11730,11730,11730,42,6165,6163,6166,0,6897,6895,6898,11731,11731,11731,42,6167,6164,6165,0,6899,6896,6897,11732,11732,11732,42,6167,6165,6168,0,6899,6897,6900,11733,11733,11733,42,6163,6170,6169,0,6895,6902,6901,11734,11734,11734,42,6163,6169,6166,0,6895,6901,6898,11735,11735,11735,42,6162,6004,6005,0,6894,6730,6731,11736,11736,11736,42,6162,6005,6171,0,6894,6731,6903,11737,11737,11737,42,6169,6173,6172,0,6901,6905,6904,11738,11738,11738,42,6169,6172,6166,0,6901,6904,6898,11739,11739,11739,42,6035,6169,6170,0,6761,6901,6902,11740,11740,11740,42,6035,6170,6034,0,6761,6902,6760,11741,11741,11741,42,6174,6173,6169,0,6906,6905,6901,11742,11742,11742,42,6174,6169,6035,0,6906,6901,6761,11743,11743,11743,42,6176,6175,6173,0,6908,6907,6905,11744,11744,11744,42,6176,6173,6174,0,6908,6905,6906,11745,11745,11745,42,6172,6173,6175,0,6904,6905,6907,11746,11746,11746,42,6172,6175,6177,0,6904,6907,6909,11747,11747,11747,42,6179,6033,6178,0,6911,6759,6910,11748,11748,11748,42,6179,6178,6180,0,6911,6910,6912,11749,11749,11749,42,6178,6182,6181,0,6910,6914,6913,11750,11750,11750,42,6178,6181,6180,0,6910,6913,6912,11751,11751,11751,42,6181,6183,6179,0,6913,6915,6911,11752,11752,11752,42,6181,6179,6180,0,6913,6911,6912,11753,11753,11753,42,6061,6062,6184,0,6787,6788,6916,11754,11754,11754,42,6061,6184,6182,0,6787,6916,6914,11755,11755,11755,42,6184,6186,6185,0,6916,6918,6917,11756,11756,11756,42,6184,6185,6182,0,6916,6917,6914,11757,11757,11757,42,6175,6176,5775,0,6907,6908,6456,11758,11758,11758,42,6175,5775,5769,0,6907,6456,6450,11759,11759,11759,42,6177,6175,5769,0,6909,6907,6450,11760,11760,11760,42,6177,5769,5768,0,6909,6450,6449,11761,11761,11761,42,5775,6176,6183,0,6456,6908,6915,11762,11762,11762,42,5775,6183,6187,0,6456,6915,6919,11763,11763,11763,42,6176,6174,6179,0,6908,6906,6911,11764,11764,11764,42,6176,6179,6183,0,6908,6911,6915,11765,11765,11765,42,6188,6172,6177,0,6920,6904,6909,11766,11766,11766,42,6188,6177,6189,0,6920,6909,6921,11767,11767,11767,42,6190,6188,6189,0,6922,6920,6921,11768,11768,11768,42,6190,6189,6191,0,6922,6921,6923,11769,11769,11769,42,6168,5933,6192,0,6900,6643,6924,11770,11770,11770,42,6168,6192,6167,0,6900,6924,6899,11771,11771,11771,42,5933,6168,6193,0,6643,6900,6925,11772,11772,11772,42,5933,6193,5932,0,6643,6925,6642,11773,11773,11773,42,6194,6193,6168,0,6926,6925,6900,11774,11774,11774,42,6194,6168,6165,0,6926,6900,6897,11775,11775,11775,42,5932,6193,5887,0,6642,6925,6587,11776,11776,11776,42,5932,5887,5888,0,6642,6587,6588,11777,11777,11777,42,6193,6194,5889,0,6925,6926,6589,11778,11778,11778,42,6193,5889,5887,0,6925,6589,6587,11779,11779,11779,42,6192,5933,6195,0,6924,6643,6927,11780,11780,11780,42,6192,6195,6196,0,6924,6927,6928,11781,11781,11781,42,5933,5930,6197,0,6643,6640,6929,11782,11782,11782,42,5933,6197,6195,0,6643,6929,6927,11783,11783,11783,42,6197,6199,6198,0,6929,6931,6930,11784,11784,11784,42,6197,6198,6195,0,6929,6930,6927,11785,11785,11785,42,6199,6197,6200,0,6931,6929,6932,11786,11786,11786,42,6199,6200,6201,0,6931,6932,6933,11787,11787,11787,42,6148,6198,6199,0,6874,6930,6931,11788,11788,11788,42,6148,6199,6202,0,6874,6931,6934,11789,11789,11789,42,6202,6199,6201,0,6934,6931,6933,11790,11790,11790,42,6202,6201,5716,0,6934,6933,6390,11791,11791,11791,42,6148,6202,6203,0,6874,6934,6935,11792,11792,11792,42,6148,6203,6151,0,6874,6935,6877,11793,11793,11793,42,5716,5714,6203,0,6390,6391,6935,11794,11794,11794,42,5716,6203,6202,0,6390,6935,6934,11795,11795,11795,42,5716,6201,5627,0,6390,6933,6287,11796,11796,11796,42,5716,5627,5715,0,6390,6287,6387,11797,11797,11797,42,6201,6200,5626,0,6933,6932,6286,11798,11798,11798,42,6201,5626,5627,0,6933,6286,6287,11799,11799,11799,42,5972,6205,6204,0,6695,6937,6936,11800,11800,11800,42,5972,6204,5974,0,6695,6936,6697,11801,11801,11801,42,6130,6206,6120,0,6856,6938,6846,11802,11802,11802,42,6130,6120,6116,0,6856,6846,6842,11803,11803,11803,42,6207,6120,6206,0,6939,6846,6938,11804,11804,11804,42,6207,6206,6208,0,6939,6938,6940,11805,11805,11805,42,6129,6119,6120,0,6855,6845,6846,11806,11806,11806,42,6129,6120,6207,0,6855,6846,6939,11807,11807,11807,42,6129,6207,6209,0,6855,6939,6941,11808,11808,11808,42,6129,6209,6210,0,6855,6941,6942,11809,11809,11809,42,6209,6207,6208,0,6941,6939,6940,11810,11810,11810,42,6209,6208,6211,0,6941,6940,6943,11811,11811,11811,42,6212,6209,6211,0,6944,6941,6943,11812,11812,11812,42,6212,6211,6213,0,6944,6943,6945,11813,11813,11813,42,6214,6210,6209,0,6946,6942,6941,11814,11814,11814,42,6214,6209,6212,0,6946,6941,6944,11815,11815,11815,42,6215,6214,6212,0,6949,6948,6947,11816,11816,11816,42,6215,6212,6216,0,6949,6947,6950,11817,11817,11817,42,6213,6217,6216,0,6952,6951,6950,11818,11818,11818,42,6213,6216,6212,0,6952,6950,6947,11819,11819,11819,42,6214,6219,6218,0,6946,6954,6953,11820,11820,11820,42,6214,6218,6210,0,6946,6953,6942,11821,11821,11821,42,6158,6218,6219,0,6889,6953,6954,11822,11822,11822,42,6158,6219,6220,0,6889,6954,6955,11823,11823,11823,42,6208,6206,6221,0,6940,6938,6956,11824,11824,11824,42,6208,6221,6222,0,6940,6956,6957,11825,11825,11825,42,6206,6130,6223,0,6938,6856,6958,11826,11826,11826,42,6206,6223,6221,0,6938,6958,6956,11827,11827,11827,42,6225,6224,6222,0,6960,6959,6957,11828,11828,11828,42,6225,6222,6221,0,6960,6957,6956,11829,11829,11829,42,6224,6227,6226,0,6959,6962,6961,11830,11830,11830,42,6224,6226,6222,0,6959,6961,6957,11831,11831,11831,42,6222,6226,6211,0,6957,6961,6943,11832,11832,11832,42,6222,6211,6208,0,6957,6943,6940,11833,11833,11833,42,6221,6223,6228,0,6956,6958,6963,11834,11834,11834,42,6221,6228,6225,0,6956,6963,6960,11835,11835,11835,42,6230,6229,6224,0,6965,6964,6959,11836,11836,11836,42,6230,6224,6225,0,6965,6959,6960,11837,11837,11837,42,6225,6228,6231,0,6960,6963,6966,11838,11838,11838,42,6225,6231,6230,0,6960,6966,6965,11839,11839,11839,42,6227,6233,6232,0,6962,6968,6967,11840,11840,11840,42,6227,6232,6226,0,6962,6967,6961,11841,11841,11841,42,6226,6232,6213,0,6961,6967,6945,11842,11842,11842,42,6226,6213,6211,0,6961,6945,6943,11843,11843,11843,42,6235,6234,6229,0,6971,6970,6969,11844,11844,11844,42,6235,6229,6230,0,6971,6969,6972,11845,11845,11845,42,6230,6231,6236,0,6972,6974,6973,11846,11846,11846,42,6230,6236,6235,0,6972,6973,6971,11847,11847,11847,42,6238,6237,6235,0,6976,6975,6971,11848,11848,11848,42,6238,6235,6236,0,6976,6971,6973,11849,11849,11849,42,6240,6239,6238,0,6978,6977,6976,11850,11850,11850,42,6240,6238,6236,0,6978,6976,6973,11851,11851,11851,42,6223,6138,6240,0,6958,6864,6978,11852,11852,11852,42,6223,6240,6228,0,6958,6978,6963,11853,11853,11853,42,6130,6131,6138,0,6856,6857,6864,11854,11854,11854,42,6130,6138,6223,0,6856,6864,6958,11855,11855,11855,42,6229,6241,6227,0,6964,6979,6962,11856,11856,11856,42,6229,6227,6224,0,6964,6962,6959,11857,11857,11857,42,6229,6234,6242,0,6969,6970,6980,11858,11858,11858,42,6229,6242,6241,0,6969,6980,6981,11859,11859,11859,42,6242,6244,6243,0,6980,6983,6982,11860,11860,11860,42,6242,6243,6241,0,6980,6982,6981,11861,11861,11861,42,6243,6233,6227,0,6984,6968,6962,11862,11862,11862,42,6243,6227,6241,0,6984,6962,6979,11863,11863,11863,42,6245,6233,6243,0,6986,6985,6982,11864,11864,11864,42,6245,6243,6244,0,6986,6982,6983,11865,11865,11865,42,6234,6246,6244,0,6970,6987,6983,11866,11866,11866,42,6234,6244,6242,0,6970,6983,6980,11867,11867,11867,42,6246,6247,6245,0,6987,6988,6986,11868,11868,11868,42,6246,6245,6244,0,6987,6986,6983,11869,11869,11869,42,6237,6248,6247,0,6975,6989,6988,11870,11870,11870,42,6237,6247,6246,0,6975,6988,6987,11871,11871,11871,42,6247,6250,6249,0,6988,6991,6990,11872,11872,11872,42,6247,6249,6245,0,6988,6990,6986,11873,11873,11873,42,6248,6137,6250,0,6989,6863,6991,11874,11874,11874,42,6248,6250,6247,0,6989,6991,6988,11875,11875,11875,42,6249,6250,6251,0,6990,6991,6992,11876,11876,11876,42,6249,6251,6217,0,6990,6992,6951,11877,11877,11877,42,6137,6135,6251,0,6863,6861,6992,11878,11878,11878,42,6137,6251,6250,0,6863,6992,6991,11879,11879,11879,42,6251,6253,6252,0,6992,6994,6993,11880,11880,11880,42,6251,6252,6217,0,6992,6993,6951,11881,11881,11881,42,6255,6254,6252,0,6996,6995,6993,11882,11882,11882,42,6255,6252,6253,0,6996,6993,6994,11883,11883,11883,42,6217,6252,6254,0,6951,6993,6995,11884,11884,11884,42,6217,6254,6216,0,6951,6995,6950,11885,11885,11885,42,6238,6239,6248,0,6976,6977,6989,11886,11886,11886,42,6238,6248,6237,0,6976,6989,6975,11887,11887,11887,42,6231,6228,6240,0,6966,6963,6978,11888,11888,11888,42,6231,6240,6236,0,6966,6978,6973,11889,11889,11889,42,6121,6257,6256,0,6847,6998,6997,11890,11890,11890,42,6121,6256,6134,0,6847,6997,6860,11891,11891,11891,42,6139,6133,6134,0,6865,6859,6860,11892,11892,11892,42,6139,6134,6256,0,6865,6860,6997,11893,11893,11893,42,6111,6113,6257,0,6837,6839,6998,11894,11894,11894,42,6111,6257,6121,0,6837,6998,6847,11895,11895,11895,42,6255,6256,6257,0,6996,6997,6998,11896,11896,11896,42,6255,6257,6258,0,6996,6998,6999,11897,11897,11897,42,6258,6257,6113,0,6999,6998,6839,11898,11898,11898,42,6258,6113,6259,0,6999,6839,7000,11899,11899,11899,42,6260,6262,6261,0,7001,7003,7002,11900,11900,11900,42,6264,6263,6261,0,7005,7004,7002,11901,11901,11901,42,6264,6261,6265,0,7005,7002,7006,11902,11902,11902,42,6045,6042,6264,0,6771,6768,7005,11903,11903,11903,42,6045,6264,6266,0,6771,7005,7007,11904,11904,11904,42,6265,6267,6266,0,7006,7008,7007,11905,11905,11905,42,6265,6266,6264,0,7006,7007,7005,11906,11906,11906,42,6266,6268,6053,0,7007,7009,6779,11907,11907,11907,42,6266,6053,6045,0,7007,6779,6771,11908,11908,11908,42,6268,6266,6267,0,7009,7007,7008,11909,11909,11909,42,6268,6267,6269,0,7009,7008,7010,11910,11910,11910,42,6268,6271,6270,0,7009,7012,7011,11911,11911,11911,42,6268,6270,6053,0,7009,7011,6779,11912,11912,11912,42,6272,6271,6268,0,7013,7012,7009,11913,11913,11913,42,6272,6268,6269,0,7013,7009,7010,11914,11914,11914,42,6271,6274,6273,0,7012,7015,7014,11915,11915,11915,42,6271,6273,6270,0,7012,7014,7011,11916,11916,11916,42,6275,6274,6271,0,7016,7015,7012,11917,11917,11917,42,6275,6271,6272,0,7016,7012,7013,11918,11918,11918,42,6276,6275,6272,0,7017,7016,7013,11919,11919,11919,42,6276,6272,6277,0,7017,7013,7018,11920,11920,11920,42,6269,6278,6277,0,7010,7019,7018,11921,11921,11921,42,6269,6277,6272,0,7010,7018,7013,11922,11922,11922,42,6053,6270,6279,0,6779,7011,7020,11923,11923,11923,42,6053,6279,6052,0,6779,7020,6778,11924,11924,11924,42,6280,6279,6270,0,7021,7020,7011,11925,11925,11925,42,6280,6270,6273,0,7021,7011,7014,11926,11926,11926,42,6052,6279,6056,0,6778,7020,6782,11927,11927,11927,42,6052,6056,6051,0,6778,6782,6777,11928,11928,11928,42,6279,6280,6281,0,7020,7021,7022,11929,11929,11929,42,6279,6281,6056,0,7020,7022,6782,11930,11930,11930,42,6283,6282,6262,0,7024,7023,7003,11931,11931,11931,42,6283,6262,6260,0,7024,7003,7001,11932,11932,11932,42,6283,6284,6187,0,7026,7025,6919,11933,11933,11933,42,6283,6187,6183,0,7026,6919,6915,11934,11934,11934,42,6260,6285,6284,0,7001,7028,7027,11935,11935,11935,42,6260,6284,6283,0,7001,7027,7024,11936,11936,11936,42,6284,6287,6286,0,7025,7030,7029,11937,11937,11937,42,6284,6286,6187,0,7025,7029,6919,11938,11938,11938,42,6287,6284,6285,0,7031,7027,7028,11939,11939,11939,42,6287,6285,5806,0,7031,7028,6490,11940,11940,11940,42,6288,6286,6287,0,7032,7029,7030,11941,11941,11941,42,6288,6287,6289,0,7032,7030,7033,11942,11942,11942,42,5806,5805,6289,0,6490,6489,7034,11943,11943,11943,42,5806,6289,6287,0,6490,7034,7031,11944,11944,11944,42,6260,6261,5718,0,7001,7002,6393,11945,11945,11945,42,6260,5718,5719,0,7001,6393,6394,11946,11946,11946,42,5743,6291,6290,0,6418,7036,7035,11947,11947,11947,42,5743,6290,5742,0,6418,7035,6417,11948,11948,11948,42,6291,6293,6292,0,7036,7038,7037,11949,11949,11949,42,6291,6292,6290,0,7036,7037,7035,11950,11950,11950,42,6184,6062,6294,0,6916,6788,7039,11951,11951,11951,42,6184,6294,6295,0,6916,7039,7040,11952,11952,11952,42,6295,6278,6186,0,7040,7041,6918,11953,11953,11953,42,6295,6186,6184,0,7040,6918,6916,11954,11954,11954,42,6296,6277,6278,0,7043,7042,7041,11955,11955,11955,42,6296,6278,6295,0,7043,7041,7040,11956,11956,11956,42,6295,6294,6297,0,7040,7039,7044,11957,11957,11957,42,6295,6297,6296,0,7040,7044,7043,11958,11958,11958,42,6277,6296,6298,0,7042,7043,7045,11959,11959,11959,42,6277,6298,6276,0,7042,7045,7046,11960,11960,11960,42,6296,6300,6299,0,7043,7048,7047,11961,11961,11961,42,6296,6299,6298,0,7043,7047,7045,11962,11962,11962,42,6296,6297,6301,0,7043,7044,7049,11963,11963,11963,42,6296,6301,6300,0,7043,7049,7048,11964,11964,11964,42,6276,6298,6302,0,7046,7045,7050,11965,11965,11965,42,6276,6302,6303,0,7046,7050,7051,11966,11966,11966,42,6305,6304,6302,0,7053,7052,7050,11967,11967,11967,42,6305,6302,6298,0,7053,7050,7045,11968,11968,11968,42,6298,6299,6306,0,7045,7047,7054,11969,11969,11969,42,6298,6306,6305,0,7045,7054,7053,11970,11970,11970,42,6307,6275,6276,0,7055,7016,7017,11971,11971,11971,42,6307,6276,6303,0,7055,7017,7056,11972,11972,11972,42,6302,5954,6308,0,7050,6672,7057,11973,11973,11973,42,6302,6308,6303,0,7050,7057,7051,11974,11974,11974,42,6309,6307,6303,0,7058,7055,7056,11975,11975,11975,42,6309,6303,6308,0,7058,7056,7059,11976,11976,11976,42,6310,6304,6305,0,7060,7052,7053,11977,11977,11977,42,6310,6305,6311,0,7060,7053,7061,11978,11978,11978,42,6304,6310,5942,0,7052,7060,6660,11979,11979,11979,42,6304,5942,5953,0,7052,6660,6671,11980,11980,11980,42,6312,6311,6305,0,7062,7061,7053,11981,11981,11981,42,6312,6305,6306,0,7062,7053,7054,11982,11982,11982,42,6313,6311,6312,0,7063,7061,7062,11983,11983,11983,42,6313,6312,6314,0,7063,7062,7064,11984,11984,11984,42,6315,6310,6311,0,7065,7060,7061,11985,11985,11985,42,6315,6311,6313,0,7065,7061,7063,11986,11986,11986,42,6312,6306,6301,0,7062,7054,7049,11987,11987,11987,42,6312,6301,6316,0,7062,7049,7066,11988,11988,11988,42,6306,6299,6300,0,7054,7047,7048,11989,11989,11989,42,6306,6300,6301,0,7054,7048,7049,11990,11990,11990,42,6318,6317,6307,0,7068,7067,7055,11991,11991,11991,42,6318,6307,6309,0,7068,7055,7058,11992,11992,11992,42,6318,5976,6319,0,7068,6700,7069,11993,11993,11993,42,6318,6319,6317,0,7068,7069,7067,11994,11994,11994,42,6274,6317,6319,0,7015,7067,7069,11995,11995,11995,42,6274,6319,6273,0,7015,7069,7014,11996,11996,11996,42,6320,6318,6309,0,7070,7068,7058,11997,11997,11997,42,6320,6309,6321,0,7070,7058,7071,11998,11998,11998,42,5967,6320,6321,0,6689,7070,7071,11999,11999,11999,42,5967,6321,5956,0,6689,7071,6674,12000,12000,12000,42,6321,6309,6308,0,7071,7058,7059,12001,12001,12001,42,6321,6308,6322,0,7071,7059,7072,12002,12002,12002,42,5956,6321,6322,0,6674,7071,7072,12003,12003,12003,42,5956,6322,5955,0,6674,7072,6673,12004,12004,12004,42,6319,6323,6280,0,7069,7073,7021,12005,12005,12005,42,6319,6280,6273,0,7069,7021,7014,12006,12006,12006,42,6323,6319,5976,0,7073,7069,6700,12007,12007,12007,42,6323,5976,5977,0,7073,6700,6701,12008,12008,12008,42,6323,6324,6281,0,7073,7074,7022,12009,12009,12009,42,6323,6281,6280,0,7073,7022,7021,12010,12010,12010,42,5977,5978,6324,0,6701,6702,7074,12011,12011,12011,42,5977,6324,6323,0,6701,7074,7073,12012,12012,12012,42,5951,5952,6325,0,6669,6670,7075,12013,12013,12013,42,5951,6325,5954,0,6669,7075,6672,12014,12014,12014,42,5954,6325,6322,0,6672,7075,7076,12015,12015,12015,42,5954,6322,6308,0,6672,7076,7057,12016,12016,12016,42,6325,6326,5955,0,7075,7078,7077,12017,12017,12017,42,6325,5955,6322,0,7075,7077,7076,12018,12018,12018,42,6328,6327,6326,0,7080,7079,7078,12019,12019,12019,42,6328,6326,6325,0,7080,7078,7075,12020,12020,12020,42,5952,5950,6328,0,6670,6668,7080,12021,12021,12021,42,5952,6328,6325,0,6670,7080,7075,12022,12022,12022,42,6327,5961,5962,0,7079,6681,6682,12023,12023,12023,42,6327,5962,6326,0,7079,6682,7078,12024,12024,12024,42,5955,6326,5962,0,7077,7078,6682,12025,12025,12025,42,5955,5962,5958,0,7077,6682,6680,12026,12026,12026,42,6327,6328,6329,0,7079,7080,7081,12027,12027,12027,42,6327,6329,6330,0,7079,7081,7082,12028,12028,12028,42,6328,5950,5946,0,7080,6668,6664,12029,12029,12029,42,6328,5946,6329,0,7080,6664,7081,12030,12030,12030,42,6055,6313,6314,0,6781,7063,7064,12031,12031,12031,42,6055,6314,6331,0,6781,7064,7083,12032,12032,12032,42,6055,6331,6316,0,6781,7083,7066,12033,12033,12033,42,6055,6316,6058,0,6781,7066,6784,12034,12034,12034,42,6056,6281,6313,0,6782,7022,7063,12035,12035,12035,42,6056,6313,6055,0,6782,7063,6781,12036,12036,12036,42,5975,6292,6293,0,6698,7037,7038,12037,12037,12037,42,6290,6292,5885,0,7035,7037,6584,12038,12038,12038,42,6290,5885,6332,0,7035,6584,7084,12039,12039,12039,42,5742,6290,6332,0,6417,7035,7084,12040,12040,12040,42,5742,6332,5741,0,6417,7084,6416,12041,12041,12041,42,6332,5885,5881,0,7084,6584,6580,12042,12042,12042,42,6332,5881,5890,0,7084,6580,6590,12043,12043,12043,42,6292,5935,5883,0,7037,7085,6585,12044,12044,12044,42,6292,5883,5885,0,7037,6585,6584,12045,12045,12045,42,5629,5628,5634,0,7086,6295,6296,12046,12046,12046,42,5629,5634,5703,0,7086,6296,6369,12047,12047,12047,42,5629,5709,5638,0,6289,6378,6301,12048,12048,12048,42,5629,5638,5620,0,6289,6301,6280,12049,12049,12049,42,5703,5700,5709,0,6369,6366,6375,12050,12050,12050,42,5703,5709,5629,0,6369,6375,7086,12051,12051,12051,42,5646,5650,5678,0,7088,7087,6344,12052,12052,12052,42,5646,5678,6333,0,7088,6344,7089,12053,12053,12053,42,5658,5659,5683,0,6321,6322,6349,12054,12054,12054,42,5658,5683,5668,0,6321,6349,6334,12055,12055,12055,42,5646,6333,5708,0,7088,7089,6374,12056,12056,12056,42,5646,5708,5645,0,7088,6374,6709,12057,12057,12057,42,6333,5678,5679,0,7089,6344,6345,12058,12058,12058,42,6333,5679,5697,0,7089,6345,6363,12059,12059,12059,42,5768,5730,5734,0,6449,6448,7090,12060,12060,12060,42,5768,5734,6177,0,6449,7090,6909,12061,12061,12061,42,6177,5734,5735,0,6909,7090,7091,12062,12062,12062,42,6177,5735,6189,0,6909,7091,6921,12063,12063,12063,42,5737,5739,5751,0,7092,6428,6429,12064,12064,12064,42,5737,5751,6191,0,7092,6429,6923,12065,12065,12065,42,6191,5751,5757,0,6923,6429,6435,12066,12066,12066,42,6191,5757,5889,0,6923,6435,6589,12067,12067,12067,42,5790,5787,5732,0,6471,6468,6407,12068,12068,12068,42,5790,5732,5731,0,6471,6407,6406,12069,12069,12069,42,5778,5774,6334,0,6459,6455,7093,12070,12070,12070,42,5778,6334,5782,0,6459,7093,6463,12071,12071,12071,42,6288,6334,5774,0,7032,7093,6455,12072,12072,12072,42,6288,5774,5770,0,7032,6455,6451,12073,12073,12073,42,5770,5771,6286,0,6451,6452,7029,12074,12074,12074,42,5770,6286,6288,0,6451,7029,7032,12075,12075,12075,42,5809,5807,5811,0,6493,6491,6496,12076,12076,12076,42,5809,5811,5937,0,6493,6496,6647,12077,12077,12077,42,5723,5728,5806,0,6398,6403,6490,12078,12078,12078,42,5723,5806,6285,0,6398,6490,7028,12079,12079,12079,42,5756,5758,5876,0,6434,6436,6572,12080,12080,12080,42,5756,5876,5877,0,6434,6572,6573,12081,12081,12081,42,5758,5812,5873,0,6436,6498,6569,12082,12082,12082,42,5758,5873,5876,0,6436,6569,6572,12083,12083,12083,42,5812,5814,5869,0,6498,6500,6565,12084,12084,12084,42,5812,5869,5873,0,6498,6565,6569,12085,12085,12085,42,5825,5857,5856,0,6514,6550,6549,12086,12086,12086,42,5825,5856,5822,0,6514,6549,6509,12087,12087,12087,42,6335,5843,5827,0,7094,6534,6516,12088,12088,12088,42,6335,5827,5828,0,7094,6516,6518,12089,12089,12089,42,5828,5830,5891,0,6518,6520,6591,12090,12090,12090,42,5828,5891,6335,0,6518,6591,7094,12091,12091,12091,42,5832,5893,5891,0,6522,6594,6591,12092,12092,12092,42,5832,5891,5830,0,6522,6591,6520,12093,12093,12093,42,5891,5850,5847,0,6591,6592,7095,12094,12094,12094,42,5891,5847,6335,0,6591,7095,7094,12095,12095,12095,42,5844,5843,6335,0,6535,6534,7094,12096,12096,12096,42,5844,6335,5847,0,6535,7094,7095,12097,12097,12097,42,5854,5848,5896,0,6547,6541,6599,12098,12098,12098,42,5854,5896,5897,0,6547,6599,6601,12099,12099,12099,42,5867,5872,5817,0,6561,6568,6503,12100,12100,12100,42,5867,5817,5818,0,6561,6503,6504,12101,12101,12101,42,5889,6194,6190,0,6589,6926,6922,12102,12102,12102,42,5889,6190,6191,0,6589,6922,6923,12103,12103,12103,42,6288,5783,5782,0,7032,6464,6463,12104,12104,12104,42,6288,5782,6334,0,7032,6463,7093,12105,12105,12105,42,6289,5912,5783,0,7033,6619,6464,12106,12106,12106,42,6289,5783,6288,0,7033,6464,7032,12107,12107,12107,42,5900,5928,5810,0,6604,6638,6495,12108,12108,12108,42,5900,5810,5794,0,6604,6495,6478,12109,12109,12109,42,5901,5927,5928,0,6605,6637,6638,12110,12110,12110,42,5901,5928,5900,0,6605,6638,6604,12111,12111,12111,42,5632,5625,5626,0,6292,6285,6286,12112,12112,12112,42,5632,5626,6200,0,6292,6286,6932,12113,12113,12113,42,5925,5608,5606,0,6635,6268,6266,12114,12114,12114,42,5925,5606,5607,0,6635,6266,6267,12115,12115,12115,42,6329,5946,5947,0,7081,6664,6665,12116,12116,12116,42,6329,5947,5948,0,7081,6665,6666,12117,12117,12117,42,5601,5603,6330,0,6261,6263,7082,12118,12118,12118,42,5601,6330,5600,0,6261,7082,6260,12119,12119,12119,42,5961,6327,6330,0,6681,7079,7082,12120,12120,12120,42,5961,6330,5603,0,6681,7082,6263,12121,12121,12121,42,6200,6197,5930,0,6932,6929,6640,12122,12122,12122,42,6200,5930,5632,0,6932,6640,6292,12123,12123,12123,42,5966,5969,6320,0,6687,6692,7070,12124,12124,12124,42,5966,6320,5967,0,6687,7070,6689,12125,12125,12125,42,6315,6324,5978,0,7065,7074,6702,12126,12126,12126,42,6315,5978,5945,0,7065,6702,6663,12127,12127,12127,42,5591,5584,6336,0,6245,6237,7096,12128,12128,12128,42,5591,6336,6091,0,6245,7096,6817,12129,12129,12129,42,5985,5998,6336,0,6711,6724,7096,12130,12130,12130,42,5985,6336,5584,0,6711,7096,6237,12131,12131,12131,42,5998,5999,6337,0,6724,6725,7097,12132,12132,12132,42,5998,6337,6336,0,6724,7097,7096,12133,12133,12133,42,6146,6337,5999,0,6872,7097,6725,12134,12134,12134,42,6146,5999,6000,0,6872,6725,6726,12135,12135,12135,42,6095,6091,6336,0,6821,6817,7096,12136,12136,12136,42,6095,6336,6337,0,6821,7096,7097,12137,12137,12137,42,6171,6005,6007,0,6903,6731,6733,12138,12138,12138,42,6171,6007,6031,0,6903,6733,6757,12139,12139,12139,42,6037,6338,6024,0,6763,7098,6750,12140,12140,12140,42,6037,6024,6020,0,6763,6750,6746,12141,12141,12141,42,6028,6024,6338,0,6754,6750,7098,12142,12142,12142,42,6028,6338,6339,0,6754,7098,7099,12143,12143,12143,42,6108,6114,6123,0,6834,6840,6849,12144,12144,12144,42,6108,6123,6105,0,6834,6849,6831,12145,12145,12145,42,6125,6124,6218,0,6851,6850,6953,12146,12146,12146,42,6125,6218,6158,0,6851,6953,6889,12147,12147,12147,42,6340,6110,6107,0,7100,6836,6833,12148,12148,12148,42,6340,6107,6140,0,7100,6833,6866,12149,12149,12149,42,6140,6145,6341,0,6866,6871,7101,12150,12150,12150,42,6140,6341,6340,0,6866,7101,7100,12151,12151,12151,42,6110,6340,6259,0,6836,7100,7000,12152,12152,12152,42,6110,6259,6113,0,6836,7000,6839,12153,12153,12153,42,6340,6341,6215,0,7100,7101,6949,12154,12154,12154,42,6340,6215,6259,0,7100,6949,7000,12155,12155,12155,42,6215,6341,6219,0,6949,7101,7102,12156,12156,12156,42,6215,6219,6214,0,6949,7102,6948,12157,12157,12157,42,6220,6219,6341,0,7103,7102,7101,12158,12158,12158,42,6220,6341,6145,0,7103,7101,6871,12159,12159,12159,42,6342,6220,6145,0,7104,7103,6871,12160,12160,12160,42,6342,6145,6142,0,7104,6871,6868,12161,12161,12161,42,6342,6142,6143,0,7104,6868,6869,12162,12162,12162,42,6342,6143,6343,0,7104,6869,7105,12163,12163,12163,42,6150,6151,6343,0,6876,6877,7105,12164,12164,12164,42,6150,6343,6143,0,6876,7105,6869,12165,12165,12165,42,6179,6174,6035,0,6911,6906,6761,12166,12166,12166,42,6179,6035,6033,0,6911,6761,6759,12167,12167,12167,42,6172,6188,6190,0,6904,6920,6922,12168,12168,12168,42,6172,6190,6166,0,6904,6922,6898,12169,12169,12169,42,6344,6198,6148,0,7106,6930,6874,12170,12170,12170,42,6344,6148,6149,0,7106,6874,6875,12171,12171,12171,42,6293,6205,5972,0,7038,6937,6695,12172,12172,12172,42,6293,5972,5635,0,7038,6695,6297,12173,12173,12173,42,6215,6216,6258,0,6949,6950,6999,12174,12174,12174,42,6215,6258,6259,0,6949,6999,7000,12175,12175,12175,42,6235,6237,6246,0,6971,6975,6987,12176,12176,12176,42,6235,6246,6234,0,6971,6987,6970,12177,12177,12177,42,6239,6240,6138,0,6977,6978,6864,12178,12178,12178,42,6239,6138,6136,0,6977,6864,6862,12179,12179,12179,42,6233,6245,6249,0,6985,6986,6990,12180,12180,12180,42,6233,6249,6232,0,6985,6990,7107,12181,12181,12181,42,6232,6249,6217,0,7107,6990,6951,12182,12182,12182,42,6232,6217,6213,0,7107,6951,6952,12183,12183,12183,42,6139,6253,6251,0,6865,6994,6992,12184,12184,12184,42,6139,6251,6135,0,6865,6992,6861,12185,12185,12185,42,6185,6186,6267,0,7109,7108,7008,12186,12186,12186,42,6185,6267,6265,0,7109,7008,7006,12187,12187,12187,42,5719,5723,6285,0,6394,6398,7028,12188,12188,12188,42,5719,6285,6260,0,6394,7028,7001,12189,12189,12189,42,6297,6058,6316,0,7044,6784,7066,12190,12190,12190,42,6297,6316,6301,0,7044,7066,7049,12191,12191,12191,42,6057,6058,6297,0,6783,6784,7044,12192,12192,12192,42,6057,6297,6294,0,6783,7044,7039,12193,12193,12193,42,5733,5797,5728,0,6408,6481,6403,12194,12194,12194,42,5733,5728,5727,0,6408,6403,6402,12195,12195,12195,42,5791,5801,5796,0,6472,6485,6480,12196,12196,12196,42,5791,5796,5788,0,6472,6480,6469,12197,12197,12197,42,5747,5753,5816,0,6425,6507,6502,12198,12198,12198,42,5747,5816,5749,0,6425,6502,6424,12199,12199,12199,42,5603,5602,5960,0,6263,6262,6679,12200,12200,12200,42,5603,5960,5961,0,6263,6679,6681,12201,12201,12201,42,5623,5984,5613,0,6283,6710,6273,12202,12202,12202,42,5623,5613,5610,0,6283,6273,6270,12203,12203,12203,42,5715,5627,5614,0,6387,6287,6274,12204,12204,12204,42,5715,5614,5615,0,6387,6274,6275,12205,12205,12205,42,6302,6304,5953,0,7050,7052,6671,12206,12206,12206,42,6302,5953,5954,0,7050,6671,6672,12207,12207,12207,42,6317,6274,6275,0,7067,7015,7016,12208,12208,12208,42,6317,6275,6307,0,7067,7016,7055,12209,12209,12209,42,6331,6314,6312,0,7083,7064,7062,12210,12210,12210,42,6331,6312,6316,0,7083,7062,7066,12211,12211,12211,42,5701,5703,5634,0,6367,6369,6296,12212,12212,12212,42,5701,5634,5707,0,6367,6296,6373,12213,12213,12213,42,5638,5621,5619,0,6301,6281,6279,12214,12214,12214,42,5638,5619,5620,0,6301,6279,6280,12215,12215,12215,42,5664,5678,5650,0,6329,6344,7087,12216,12216,12216,42,5664,5650,5651,0,6329,7087,6330,12217,12217,12217,42,5668,5683,5685,0,6334,6349,6351,12218,12218,12218,42,5668,5685,5671,0,6334,6351,6337,12219,12219,12219,42,5697,5679,5680,0,6363,6345,6346,12220,12220,12220,42,5697,5680,5692,0,6363,6346,6358,12221,12221,12221,42,5708,6333,5697,0,6374,7089,6363,12222,12222,12222,42,5708,5697,5698,0,6374,6363,6364,12223,12223,12223,42,5690,5691,5671,0,6376,6381,6337,12224,12224,12224,42,5690,5671,5644,0,6376,6337,6307,12225,12225,12225,42,5706,5704,5973,0,6372,6370,6696,12226,12226,12226,42,5706,5973,5712,0,6372,6696,6384,12227,12227,12227,42,6191,6189,5735,0,6923,6921,7091,12228,12228,12228,42,6191,5735,5737,0,6923,7091,7092,12229,12229,12229,42,5762,5820,5753,0,6440,6512,6431,12230,12230,12230,42,5762,5753,5754,0,6440,6431,6432,12231,12231,12231,42,5779,5790,5731,0,6460,6474,6443,12232,12232,12232,42,5779,5731,5764,0,6460,6443,6444,12233,12233,12233,42,5852,5858,5857,0,6545,6551,6550,12234,12234,12234,42,5852,5857,5825,0,6545,6550,6514,12235,12235,12235,42,5872,5867,5868,0,6568,6561,6562,12236,12236,12236,42,5872,5868,5871,0,6568,6562,6567,12237,12237,12237,42,5853,5854,5897,0,6546,6547,6601,12238,12238,12238,42,5853,5897,5864,0,6546,6601,6557,12239,12239,12239,42,5872,5869,5814,0,6568,6565,6500,12240,12240,12240,42,5872,5814,5817,0,6568,6500,6503,12241,12241,12241,42,5884,5883,5935,0,6583,6582,6645,12242,12242,12242,42,5884,5935,5888,0,6583,6645,6588,12243,12243,12243,42,5902,5907,5927,0,6606,6611,6637,12244,12244,12244,42,5902,5927,5901,0,6606,6637,6605,12245,12245,12245,42,5899,5784,5785,0,6603,6465,6466,12246,12246,12246,42,5899,5785,5904,0,6603,6466,6608,12247,12247,12247,42,5805,5804,5912,0,6489,6488,6620,12248,12248,12248,42,5805,5912,6289,0,6489,6620,7034,12249,12249,12249,42,5920,5907,5905,0,6629,6611,6609,12250,12250,12250,42,5920,5905,5906,0,6629,6609,6610,12251,12251,12251,42,5922,5809,5937,0,6631,6493,6647,12252,12252,12252,42,5922,5937,5921,0,6631,6647,6630,12253,12253,12253,42,5677,5941,5696,0,6658,6656,6379,12254,12254,12254,42,5677,5696,5686,0,6658,6379,7110,12255,12255,12255,42,5600,6330,6329,0,6260,7082,7081,12256,12256,12256,42,5600,6329,5948,0,6260,7081,6666,12257,12257,12257,42,6315,5945,5942,0,7065,6663,6660,12258,12258,12258,42,6315,5942,6310,0,7065,6660,7060,12259,12259,12259,42,5989,6006,5992,0,6715,6732,6718,12260,12260,12260,42,5989,5992,5988,0,6715,6718,6714,12261,12261,12261,42,6105,6123,6126,0,6831,6849,6852,12262,12262,12262,42,6105,6126,6100,0,6831,6852,6826,12263,12263,12263,42,6210,6218,6124,0,6942,6953,6850,12264,12264,12264,42,6210,6124,6129,0,6942,6850,6855,12265,12265,12265,42,6337,6146,6098,0,7097,6872,6824,12266,12266,12266,42,6337,6098,6095,0,7097,6824,6821,12267,12267,12267,42,6156,6158,6220,0,6890,6889,6955,12268,12268,12268,42,6156,6220,6342,0,6890,6955,7111,12269,12269,12269,42,6028,6339,6178,0,6754,7099,6910,12270,12270,12270,42,6028,6178,6033,0,6754,6910,6759,12271,12271,12271,42,6187,6286,5771,0,6919,7029,6452,12272,12272,12272,42,6187,5771,5775,0,6919,6452,6456,12273,12273,12273,42,6190,6194,6165,0,6922,6926,6897,12274,12274,12274,42,6190,6165,6166,0,6922,6897,6898,12275,12275,12275,42,6254,6255,6258,0,6995,6996,6999,12276,12276,12276,42,6254,6258,6216,0,6995,6999,6950,12277,12277,12277,42,6253,6139,6256,0,6994,6865,6997,12278,12278,12278,42,6253,6256,6255,0,6994,6997,6996,12279,12279,12279,42,6239,6136,6137,0,6977,6862,6863,12280,12280,12280,42,6239,6137,6248,0,6977,6863,6989,12281,12281,12281,42,6278,6269,6267,0,7019,7010,7008,12282,12282,12282,42,6278,6267,6186,0,7019,7008,7108,12283,12283,12283,42,6262,6282,6185,0,7003,7023,7109,12284,12284,12284,42,6262,6185,6265,0,7003,7109,7006,12285,12285,12285,42,6315,6313,6281,0,7065,7063,7022,12286,12286,12286,42,6315,6281,6324,0,7065,7022,7074,12287,12287,12287,42,6320,5969,5976,0,7070,6692,6700,12288,12288,12288,42,6320,5976,6318,0,7070,6700,7068,12289,12289,12289,42,6059,6057,6294,0,6785,6783,7039,12290,12290,12290,42,6059,6294,6062,0,6785,7039,6788,12291,12291,12291,42,5741,6332,5890,0,6416,7084,6590,12292,12292,12292,42,5741,5890,5746,0,6416,6590,6421,12293,12293,12293,42,5975,5934,5935,0,6698,6699,7085,12294,12294,12294,42,5975,5935,6292,0,6698,7085,7037,12295,12295,12295,42,5982,6071,6345,0,6706,6797,7112,12296,12296,12296,42,5982,6345,5595,0,6706,7112,6251,12297,12297,12297,42,6072,6076,6345,0,6798,6802,7112,12298,12298,12298,42,6072,6345,6071,0,6798,7112,6797,12299,12299,12299,42,6039,6040,6042,0,6765,6766,6768,12300,12300,12300,42,6039,6042,6043,0,6765,6768,6769,12301,12301,12301,42,6038,6039,6043,0,6764,6765,6769,12302,12302,12302,42,6038,6043,6046,0,6764,6769,6772,12303,12303,12303,42,6046,6049,6037,0,6772,6775,6763,12304,12304,12304,42,6046,6037,6038,0,6772,6763,6764,12305,12305,12305,42,6049,6060,6338,0,6775,6786,7098,12306,12306,12306,42,6049,6338,6037,0,6775,7098,6763,12307,12307,12307,42,6339,6338,6060,0,7099,7098,6786,12308,12308,12308,42,6339,6060,6061,0,7099,6786,6787,12309,12309,12309,42,6178,6339,6061,0,6910,7099,6787,12310,12310,12310,42,6178,6061,6182,0,6910,6787,6914,12311,12311,12311,42,5714,5713,6346,0,6386,6385,7113,12312,12312,12312,42,5714,6346,6203,0,6386,7113,7114,12313,12313,12313,42,6204,6346,5713,0,6936,7113,6385,12314,12314,12314,42,6204,5713,5974,0,6936,6385,6697,12315,12315,12315,42,6348,6347,6160,0,7116,7115,6892,12316,12316,12316,42,6348,6160,6157,0,7116,6892,6888,12317,12317,12317,42,6087,6349,6154,0,6813,7117,6883,12318,12318,12318,42,6087,6154,6086,0,6813,6883,6812,12319,12319,12319,42,6089,6090,6094,0,6815,6816,6820,12320,12320,12320,42,6089,6094,6350,0,6815,6820,7118,12321,12321,12321,42,6096,6154,6349,0,7119,6883,7117,12322,12322,12322,42,6096,6349,6092,0,7119,7117,7120,12323,12323,12323,42,6349,5980,6094,0,7117,6704,7121,12324,12324,12324,42,6349,6094,6092,0,7117,7121,7120,12325,12325,12325,42,6350,6094,5980,0,7122,7121,6704,12326,12326,12326,42,6350,5980,5981,0,7122,6704,6705,12327,12327,12327,42,6074,6088,6087,0,6800,6814,6813,12328,12328,12328,42,6074,6087,6073,0,6800,6813,6799,12329,12329,12329,42,6088,5980,6349,0,6814,6704,7117,12330,12330,12330,42,6088,6349,6087,0,6814,7117,6813,12331,12331,12331,42,6141,6103,6104,0,6867,6829,6830,12332,12332,12332,42,6141,6104,6144,0,6867,6830,6870,12333,12333,12333,42,6146,6144,6104,0,6872,6870,6830,12334,12334,12334,42,6146,6104,6098,0,6872,6830,6824,12335,12335,12335,42,6104,6102,6097,0,6830,6828,6823,12336,12336,12336,42,6104,6097,6098,0,6830,6823,6824,12337,12337,12337,42,6102,6099,6096,0,6828,6825,6822,12338,12338,12338,42,6102,6096,6097,0,6828,6822,6823,12339,12339,12339,42,6154,6096,6099,0,6883,7119,6879,12340,12340,12340,42,6154,6099,6152,0,6883,6879,6880,12341,12341,12341,42,6042,6040,6263,0,6768,6766,7004,12342,12342,12342,42,6042,6263,6264,0,6768,7004,7005,12343,12343,12343,42,6081,6263,6040,0,6807,7004,6766,12344,12344,12344,42,6081,6040,6041,0,6807,6766,6767,12345,12345,12345,42,6263,6081,6351,0,7004,6807,7123,12346,12346,12346,42,6263,6351,6261,0,7004,7123,7002,12347,12347,12347,42,6077,6075,6084,0,6803,6801,6810,12348,12348,12348,42,6077,6084,6352,0,6803,6810,7124,12349,12349,12349,42,6048,6065,6066,0,6774,6791,6792,12350,12350,12350,42,6048,6066,6082,0,6774,6792,6808,12351,12351,12351,42,6048,6016,6014,0,6774,6742,6740,12352,12352,12352,42,6048,6014,6065,0,6774,6740,6791,12353,12353,12353,42,6008,6014,6016,0,6734,6740,6742,12354,12354,12354,42,6008,6016,6017,0,6734,6742,6743,12355,12355,12355,42,6011,6008,6017,0,6737,6734,6743,12356,12356,12356,42,6011,6017,6019,0,6737,6743,6745,12357,12357,12357,42,6022,6011,6019,0,6748,6737,6745,12358,12358,12358,42,6022,6019,6023,0,6748,6745,6749,12359,12359,12359,42,6026,6022,6023,0,6752,6748,6749,12360,12360,12360,42,6026,6023,6027,0,6752,6749,6753,12361,12361,12361,42,6030,6026,6027,0,6756,6752,6753,12362,12362,12362,42,6030,6027,6032,0,6756,6753,6758,12363,12363,12363,42,6034,6031,6030,0,6760,6757,6756,12364,12364,12364,42,6034,6030,6032,0,6760,6756,6758,12365,12365,12365,42,6170,6171,6031,0,6902,6903,6757,12366,12366,12366,42,6170,6031,6034,0,6902,6757,6760,12367,12367,12367,42,6162,6171,6170,0,6894,6903,6902,12368,12368,12368,42,6162,6170,6163,0,6894,6902,6895,12369,12369,12369,42,6164,6161,6162,0,6896,6893,6894,12370,12370,12370,42,6164,6162,6163,0,6896,6894,6895,12371,12371,12371,42,6167,5995,6161,0,6899,6721,6893,12372,12372,12372,42,6167,6161,6164,0,6899,6893,6896,12373,12373,12373,42,5995,6167,6192,0,6721,6899,6924,12374,12374,12374,42,5995,6192,5994,0,6721,6924,6720,12375,12375,12375,42,6344,5997,5993,0,7106,6723,6719,12376,12376,12376,42,6344,5993,6196,0,7106,6719,6928,12377,12377,12377,42,6149,6000,5997,0,6875,6726,6723,12378,12378,12378,42,6149,5997,6344,0,6875,6723,7106,12379,12379,12379,42,6149,6150,6147,0,6875,6876,6873,12380,12380,12380,42,6149,6147,6000,0,6875,6873,6726,12381,12381,12381,42,6078,6353,6082,0,6804,7125,6808,12382,12382,12382,42,6078,6082,6066,0,6804,6808,6792,12383,12383,12383,42,5994,6192,6196,0,6720,6924,6928,12384,12384,12384,42,5994,6196,5993,0,6720,6928,6719,12385,12385,12385,42,5995,5992,6006,0,6721,6718,6732,12386,12386,12386,42,5995,6006,6161,0,6721,6732,6893,12387,12387,12387,42,6084,6085,6347,0,6810,6811,7115,12388,12388,12388,42,6084,6347,6354,0,6810,7115,7126,12389,12389,12389,42,6282,6283,6183,0,7127,7026,6915,12390,12390,12390,42,6282,6183,6181,0,7127,6915,6913,12391,12391,12391,42,6282,6181,6182,0,7127,6913,6914,12392,12392,12392,42,6282,6182,6185,0,7127,6914,6917,12393,12393,12393,42,5989,5581,6001,0,6715,6234,6727,12394,12394,12394,42,5989,6001,6003,0,6715,6727,6729,12395,12395,12395,42,6157,6156,6342,0,6888,6887,7128,12396,12396,12396,42,6157,6342,6343,0,6888,7128,7129,12397,12397,12397,42,6356,6355,5743,0,7131,7130,6418,12398,12398,12398,42,6356,5743,5722,0,7131,6418,6397,12399,12399,12399,42,6355,6356,6357,0,7130,7131,7132,12400,12400,12400,42,6355,6357,6352,0,7130,7132,7124,12401,12401,12401,42,6352,6357,6358,0,7124,7132,7133,12402,12402,12402,42,6352,6358,6077,0,7124,7133,6803,12403,12403,12403,42,6077,6358,6359,0,6803,7133,7134,12404,12404,12404,42,6077,6359,6076,0,6803,7134,6802,12405,12405,12405,42,6076,6359,6360,0,6802,7134,7135,12406,12406,12406,42,6076,6360,6345,0,6802,7135,7112,12407,12407,12407,42,6080,5718,6261,0,6806,6393,7002,12408,12408,12408,42,6080,6261,6351,0,6806,7002,7123,12409,12409,12409,42,6353,6079,6080,0,7125,6805,6806,12410,12410,12410,42,6353,6080,6082,0,7125,6806,6808,12411,12411,12411,42,6081,6082,6080,0,6807,6808,6806,12412,12412,12412,42,6081,6080,6351,0,6807,6806,7123,12413,12413,12413,42,6346,6348,6151,0,7113,7116,7136,12414,12414,12414,42,6346,6151,6203,0,7113,7136,7114,12415,12415,12415,42,6343,6151,6348,0,7129,7136,7116,12416,12416,12416,42,6343,6348,6157,0,7129,7116,6888,12417,12417,12417,42,6204,6347,6348,0,6936,7115,7116,12418,12418,12418,42,6204,6348,6346,0,6936,7116,7113,12419,12419,12419,42,6361,6084,6354,0,7137,6810,7126,12420,12420,12420,42,6361,6354,6205,0,7137,7126,6937,12421,12421,12421,42,6291,5743,6355,0,7036,6418,7130,12422,12422,12422,42,6291,6355,6361,0,7036,7130,7137,12423,12423,12423,42,6352,6084,6361,0,7124,6810,7137,12424,12424,12424,42,6352,6361,6355,0,7124,7137,7130,12425,12425,12425,42,6205,6293,6291,0,6937,7038,7036,12426,12426,12426,42,6205,6291,6361,0,6937,7036,7137,12427,12427,12427,42,6261,6262,6265,0,7002,7003,7006,12428,12428,12428,42,5722,5736,5721,0,6397,6411,6396,12429,12429,12429,42,5975,6293,5635,0,6698,7038,6297,12430,12430,12430,42,6204,6205,6354,0,6936,6937,7126,12431,12431,12431,42,6204,6354,6347,0,6936,7126,7115,12432,12432,12432,42,6085,6159,6160,0,6811,6891,6892,12433,12433,12433,42,6085,6160,6347,0,6811,6892,7115,12434,12434,12434,42,5592,5585,5586,0,6248,6238,6239,12435,12435,12435,42,5592,5586,5587,0,6248,6239,6240,12436,12436,12436,42,6013,5588,5572,0,6739,6241,6218,12437,12437,12437,42,6013,5572,5569,0,6739,6218,6215,12438,12438,12438,42,6064,6013,5569,0,6790,6739,6215,12439,12439,12439,42,6064,5569,5570,0,6790,6215,6216,12440,12440,12440,42,6068,6064,5570,0,6794,6790,6216,12441,12441,12441,42,6068,5570,5575,0,6794,6216,6221,12442,12442,12442,42,6070,6068,5575,0,6796,6794,6221,12443,12443,12443,42,6070,5575,5589,0,6796,6221,6242,12444,12444,12444,42,6362,5595,6345,0,7138,6251,7112,12445,12445,12445,42,6362,6345,6360,0,7138,7112,7135,12446,12446,12446,42,6070,5589,6362,0,6796,6242,7138,12447,12447,12447,42,6070,6362,6360,0,6796,7138,7135,12448,12448,12448,42,6359,6069,6070,0,7134,6795,6796,12449,12449,12449,42,6359,6070,6360,0,7134,6796,7135,12450,12450,12450,42,6078,6069,6359,0,6804,6795,7134,12451,12451,12451,42,6078,6359,6358,0,6804,7134,7133,12452,12452,12452,42,6353,6078,6358,0,7125,6804,7133,12453,12453,12453,42,6353,6358,6357,0,7125,7133,7132,12454,12454,12454,42,6079,6353,6357,0,6805,7125,7132,12455,12455,12455,42,6079,6357,6356,0,6805,7132,7131,12456,12456,12456,42,5717,6079,6356,0,6392,6805,7131,12457,12457,12457,42,5717,6356,5722,0,6392,7131,6397,12458,12458,12458,42,6362,5589,5563,0,7138,6242,6209,12459,12459,12459,42,6362,5563,5595,0,7138,6209,6251,12460,12460,12460,42,5585,5571,5572,0,6238,6217,6218,12461,12461,12461,42,5585,5572,5586,0,6238,6218,6239,12462,12462,12462,42,6196,6195,6198,0,6928,6927,6930,12463,12463,12463,42,6196,6198,6344,0,6928,6930,7106,12464,12464,12464,42,5564,5565,5597,0,6210,6211,6257,12465,12465,12465,42,5564,5597,6363,0,6210,6257,7139,12466,12466,12466,42,6364,5590,5591,0,7140,6244,6245,12467,12467,12467,42,6364,5591,6089,0,7140,6245,6815,12468,12468,12468,42,5594,5564,6363,0,6250,6210,7139,12469,12469,12469,42,5594,6363,5981,0,6250,7139,6705,12470,12470,12470,42,6350,6365,6364,0,7118,7141,7140,12471,12471,12471,42,6350,6364,6089,0,7118,7140,6815,12472,12472,12472,42,5596,5590,6364,0,6253,6244,7140,12473,12473,12473,42,5596,6364,6365,0,6253,7140,7141,12474,12474,12474,42,6365,6350,5981,0,7142,7122,6705,12475,12475,12475,42,6365,5981,6363,0,7142,6705,7139,12476,12476,12476,42,5596,6365,6363,0,6254,7142,7139,12477,12477,12477,42,5596,6363,5597,0,6254,7139,6257,12478,12478,12478,42,6368,6367,6366,0,7145,7144,7143,12479,12479,12479,42,6368,6366,6369,0,7145,7143,7146,12480,12480,12480,42,6372,6371,6370,0,7149,7148,7147,12481,12481,12481,42,6372,6370,6373,0,7149,7147,7150,12482,12482,12482,42,6376,6375,6374,0,7153,7152,7151,12483,12483,12483,42,6376,6374,6377,0,7153,7151,7154,12484,12484,12484,42,6378,6376,6377,0,7155,7153,7154,12485,12485,12485,42,6378,6377,6379,0,7155,7154,7156,12486,12486,12486,42,6382,6381,6380,0,7159,7158,7157,12487,12487,12487,42,6382,6380,6383,0,7159,7157,7160,12488,12488,12488,42,6383,6380,6384,0,7160,7157,7161,12489,12489,12489,42,6383,6384,6385,0,7160,7161,7162,12490,12490,12490,42,6385,6384,6386,0,7162,7161,7163,12491,12491,12491,42,6385,6386,6387,0,7162,7163,7164,12492,12492,12492,42,6387,6389,6388,0,7164,7166,7165,12493,12493,12493,42,6387,6388,6385,0,7164,7165,7162,12494,12494,12494,42,6376,6391,6390,0,7153,7168,7167,12495,12495,12495,42,6376,6390,6375,0,7153,7167,7152,12496,12496,12496,42,6392,6391,6376,0,7169,7168,7153,12497,12497,12497,42,6392,6376,6378,0,7169,7153,7155,12498,12498,12498,42,6394,6393,6388,0,7171,7170,7165,12499,12499,12499,42,6394,6388,6389,0,7171,7165,7166,12500,12500,12500,42,6395,6388,6393,0,7172,7165,7170,12501,12501,12501,42,6395,6393,6396,0,7172,7170,7173,12502,12502,12502,42,6385,6388,6395,0,7162,7165,7172,12503,12503,12503,42,6385,6395,6383,0,7162,7172,7160,12504,12504,12504,42,6396,6398,6397,0,7173,7175,7174,12505,12505,12505,42,6396,6397,6395,0,7173,7174,7172,12506,12506,12506,42,6383,6395,6397,0,7160,7172,7174,12507,12507,12507,42,6383,6397,6382,0,7160,7174,7159,12508,12508,12508,42,6401,6400,6399,0,7178,7177,7176,12509,12509,12509,42,6401,6399,6402,0,7178,7176,7179,12510,12510,12510,42,6404,6403,6396,0,7182,7181,7180,12511,12511,12511,42,6404,6396,6393,0,7182,7180,7183,12512,12512,12512,42,6405,6404,6393,0,7184,7182,7183,12513,12513,12513,42,6405,6393,6394,0,7184,7183,7185,12514,12514,12514,42,6406,6392,6378,0,7188,7187,7186,12515,12515,12515,42,6406,6378,6407,0,7188,7186,7189,12516,12516,12516,42,6410,6409,6408,0,7192,7191,7190,12517,12517,12517,42,6410,6408,6403,0,7192,7190,7181,12518,12518,12518,42,6402,6412,6411,0,7179,7194,7193,12519,12519,12519,42,6402,6411,6401,0,7179,7193,7178,12520,12520,12520,42,6401,6411,6413,0,7197,7196,7195,12521,12521,12521,42,6401,6413,6414,0,7197,7195,7198,12522,12522,12522,42,6401,6414,6415,0,7197,7198,7199,12523,12523,12523,42,6401,6415,6400,0,7197,7199,7200,12524,12524,12524,42,6402,6399,6398,0,7179,7176,7201,12525,12525,12525,42,6402,6398,6408,0,7179,7201,7190,12526,12526,12526,42,6412,6402,6408,0,7194,7179,7190,12527,12527,12527,42,6412,6408,6409,0,7194,7190,7191,12528,12528,12528,42,6398,6396,6403,0,7201,7180,7181,12529,12529,12529,42,6398,6403,6408,0,7201,7181,7190,12530,12530,12530,42,6379,6371,6407,0,7156,7148,7202,12531,12531,12531,42,6379,6407,6378,0,7156,7202,7155,12532,12532,12532,42,6407,6417,6416,0,7189,7204,7203,12533,12533,12533,42,6407,6416,6406,0,7189,7203,7188,12534,12534,12534,42,6418,6414,6413,0,7205,7198,7195,12535,12535,12535,42,6418,6413,6419,0,7205,7195,7206,12536,12536,12536,42,6415,6414,6418,0,7199,7198,7205,12537,12537,12537,42,6415,6418,6420,0,7199,7205,7207,12538,12538,12538,42,6421,6415,6420,0,7208,7199,7207,12539,12539,12539,42,6421,6420,6422,0,7208,7207,7209,12540,12540,12540,42,6422,6423,6381,0,7209,7210,7158,12541,12541,12541,42,6422,6381,6382,0,7209,7158,7159,12542,12542,12542,42,6421,6399,6400,0,7208,7211,7200,12543,12543,12543,42,6421,6400,6415,0,7208,7200,7199,12544,12544,12544,42,6382,6397,6421,0,7159,7174,7208,12545,12545,12545,42,6382,6421,6422,0,7159,7208,7209,12546,12546,12546,42,6399,6421,6397,0,7211,7208,7174,12547,12547,12547,42,6399,6397,6398,0,7211,7174,7175,12548,12548,12548,42,6422,6420,6424,0,7209,7207,7212,12549,12549,12549,42,6422,6424,6423,0,7209,7212,7210,12550,12550,12550,42,6427,6426,6425,0,7215,7214,7213,12551,12551,12551,42,6427,6425,6428,0,7215,7213,7216,12552,12552,12552,42,6430,6429,6373,0,7218,7217,7150,12553,12553,12553,42,6430,6373,6370,0,7218,7150,7147,12554,12554,12554,42,6370,6432,6431,0,7147,7220,7219,12555,12555,12555,42,6370,6431,6430,0,7147,7219,7218,12556,12556,12556,42,6426,6427,6429,0,7214,7215,7217,12557,12557,12557,42,6426,6429,6430,0,7214,7217,7218,12558,12558,12558,42,6387,6386,6433,0,7164,7163,7221,12559,12559,12559,42,6387,6433,6434,0,7164,7221,7222,12560,12560,12560,42,6390,6434,6433,0,7167,7222,7221,12561,12561,12561,42,6390,6433,6435,0,7167,7221,7223,12562,12562,12562,42,6434,6436,6389,0,7222,7224,7166,12563,12563,12563,42,6434,6389,6387,0,7222,7166,7164,12564,12564,12564,42,6436,6434,6390,0,7224,7222,7167,12565,12565,12565,42,6436,6390,6391,0,7224,7167,7168,12566,12566,12566,42,6436,6437,6394,0,7224,7225,7171,12567,12567,12567,42,6436,6394,6389,0,7224,7171,7166,12568,12568,12568,42,6437,6436,6391,0,7225,7224,7168,12569,12569,12569,42,6437,6391,6392,0,7225,7168,7169,12570,12570,12570,42,6438,6405,6394,0,7226,7184,7185,12571,12571,12571,42,6438,6394,6437,0,7226,7185,7227,12572,12572,12572,42,6438,6437,6392,0,7226,7227,7187,12573,12573,12573,42,6438,6392,6406,0,7226,7187,7188,12574,12574,12574,42,6440,6439,6405,0,7229,7228,7184,12575,12575,12575,42,6440,6405,6438,0,7229,7184,7226,12576,12576,12576,42,6440,6438,6406,0,7229,7226,7188,12577,12577,12577,42,6440,6406,6416,0,7229,7188,7203,12578,12578,12578,42,6403,6404,6441,0,7181,7182,7230,12579,12579,12579,42,6403,6441,6410,0,7181,7230,7192,12580,12580,12580,42,6439,6441,6404,0,7228,7230,7182,12581,12581,12581,42,6439,6404,6405,0,7228,7182,7184,12582,12582,12582,42,6371,6372,6417,0,7148,7149,7231,12583,12583,12583,42,6371,6417,6407,0,7148,7231,7202,12584,12584,12584,42,6444,6443,6442,0,7234,7233,7232,12585,12585,12585,42,6444,6442,6445,0,7234,7232,7235,12586,12586,12586,42,6445,6442,6377,0,7235,7232,7154,12587,12587,12587,42,6445,6377,6374,0,7235,7154,7151,12588,12588,12588,42,6442,6443,6431,0,7232,7233,7219,12589,12589,12589,42,6442,6431,6432,0,7232,7219,7220,12590,12590,12590,42,6379,6377,6442,0,7156,7154,7232,12591,12591,12591,42,6379,6442,6432,0,7156,7232,7220,12592,12592,12592,42,6432,6370,6371,0,7220,7147,7148,12593,12593,12593,42,6432,6371,6379,0,7220,7148,7156,12594,12594,12594,42,6446,6426,6430,0,7236,7214,7218,12595,12595,12595,42,6446,6430,6431,0,7236,7218,7219,12596,12596,12596,42,6447,6425,6426,0,7237,7213,7214,12597,12597,12597,42,6447,6426,6446,0,7237,7214,7236,12598,12598,12598,42,6448,6419,6428,0,7238,7206,7216,12599,12599,12599,42,6448,6428,6425,0,7238,7216,7213,12600,12600,12600,42,6449,6448,6425,0,7239,7238,7213,12601,12601,12601,42,6449,6425,6447,0,7239,7213,7237,12602,12602,12602,42,6452,6451,6450,0,7242,7241,7240,12603,12603,12603,42,6452,6450,6453,0,7242,7240,7243,12604,12604,12604,42,6455,6454,6416,0,7246,7245,7244,12605,12605,12605,42,6455,6416,6417,0,7246,7244,7231,12606,12606,12606,42,6457,6412,6456,0,7249,7248,7247,12607,12607,12607,42,6457,6456,6458,0,7249,7247,7250,12608,12608,12608,42,6453,6450,6412,0,7243,7240,7248,12609,12609,12609,42,6453,6412,6457,0,7243,7248,7249,12610,12610,12610,42,6409,6410,6456,0,7252,7251,7247,12611,12611,12611,42,6409,6456,6412,0,7252,7247,7248,12612,12612,12612,42,6416,6454,6459,0,7244,7245,7253,12613,12613,12613,42,6416,6459,6440,0,7244,7253,7254,12614,12614,12614,42,6440,6459,6460,0,7254,7253,7255,12615,12615,12615,42,6440,6460,6439,0,7254,7255,7256,12616,12616,12616,42,6456,6410,6441,0,7247,7251,7257,12617,12617,12617,42,6456,6441,6461,0,7247,7257,7258,12618,12618,12618,42,6439,6460,6461,0,7256,7255,7258,12619,12619,12619,42,6439,6461,6441,0,7256,7258,7257,12620,12620,12620,42,6464,6463,6462,0,7261,7260,7259,12621,12621,12621,42,6464,6462,6465,0,7261,7259,7262,12622,12622,12622,42,6468,6467,6466,0,7265,7264,7263,12623,12623,12623,42,6468,6466,6469,0,7265,7263,7266,12624,12624,12624,42,6469,6466,6463,0,7266,7263,7260,12625,12625,12625,42,6469,6463,6464,0,7266,7260,7261,12626,12626,12626,42,6465,6462,6470,0,7262,7259,7267,12627,12627,12627,42,6465,6470,6471,0,7262,7267,7268,12628,12628,12628,42,6471,6470,6472,0,7268,7267,7269,12629,12629,12629,42,6471,6472,6473,0,7268,7269,7270,12630,12630,12630,42,6475,6474,6451,0,7272,7271,7241,12631,12631,12631,42,6475,6451,6452,0,7272,7241,7242,12632,12632,12632,42,6468,6475,6452,0,7265,7272,7242,12633,12633,12633,42,6468,6452,6467,0,7265,7242,7264,12634,12634,12634,42,6477,6476,6473,0,7274,7273,7270,12635,12635,12635,42,6477,6473,6472,0,7274,7270,7269,12636,12636,12636,42,6479,6478,6373,0,7276,7275,7150,12637,12637,12637,42,6479,6373,6429,0,7276,7150,7217,12638,12638,12638,42,6427,6480,6479,0,7215,7277,7276,12639,12639,12639,42,6427,6479,6429,0,7215,7276,7217,12640,12640,12640,42,6428,6481,6480,0,7216,7278,7277,12641,12641,12641,42,6428,6480,6427,0,7216,7277,7215,12642,12642,12642,42,6419,6482,6481,0,7206,7279,7278,12643,12643,12643,42,6419,6481,6428,0,7206,7278,7216,12644,12644,12644,42,6413,6483,6482,0,7195,7280,7279,12645,12645,12645,42,6413,6482,6419,0,7195,7279,7206,12646,12646,12646,42,6483,6413,6411,0,7280,7195,7196,12647,12647,12647,42,6483,6411,6484,0,7280,7196,7281,12648,12648,12648,42,6411,6412,6450,0,7196,7248,7240,12649,12649,12649,42,6411,6450,6484,0,7196,7240,7281,12650,12650,12650,42,6487,6486,6485,0,7284,7283,7282,12651,12651,12651,42,6487,6485,6488,0,7284,7282,7285,12652,12652,12652,42,6488,6490,6489,0,7285,7287,7286,12653,12653,12653,42,6488,6489,6487,0,7285,7286,7284,12654,12654,12654,42,6492,6491,6486,0,7289,7288,7283,12655,12655,12655,42,6492,6486,6487,0,7289,7283,7284,12656,12656,12656,42,6487,6489,6493,0,7284,7286,7290,12657,12657,12657,42,6487,6493,6492,0,7284,7290,7289,12658,12658,12658,42,246,6495,6494,0,7293,7292,7291,12659,12659,12659,42,246,6494,239,0,7293,7291,7294,12660,12660,12660,42,6497,6496,6495,0,7296,7295,7292,12661,12661,12661,42,6497,6495,246,0,7296,7292,7293,12662,12662,12662,42,6499,6498,6491,0,7298,7297,7288,12663,12663,12663,42,6499,6491,6492,0,7298,7288,7289,12664,12664,12664,42,6500,6499,6492,0,7299,7298,7289,12665,12665,12665,42,6500,6492,6493,0,7299,7289,7290,12666,12666,12666,42,6501,6500,6493,0,7300,7299,7290,12667,12667,12667,42,6501,6493,6502,0,7300,7290,7301,12668,12668,12668,42,239,6494,6503,0,7294,7291,7302,12669,12669,12669,42,239,6503,6504,0,7294,7302,7303,12670,12670,12670,42,6498,6506,6505,0,7297,7305,7304,12671,12671,12671,42,6498,6505,6491,0,7297,7304,7288,12672,12672,12672,42,6491,6505,6507,0,7288,7304,7306,12673,12673,12673,42,6491,6507,6486,0,7288,7306,7283,12674,12674,12674,42,6486,6507,6508,0,7283,7306,7307,12675,12675,12675,42,6486,6508,6485,0,7283,7307,7282,12676,12676,12676,42,6494,6505,6506,0,7291,7304,7305,12677,12677,12677,42,6494,6506,6503,0,7291,7305,7302,12678,12678,12678,42,6495,6507,6505,0,7292,7306,7304,12679,12679,12679,42,6495,6505,6494,0,7292,7304,7291,12680,12680,12680,42,6496,6508,6507,0,7295,7307,7306,12681,12681,12681,42,6496,6507,6495,0,7295,7306,7292,12682,12682,12682,42,6502,6493,6489,0,7301,7290,7286,12683,12683,12683,42,6502,6489,6509,0,7301,7286,7308,12684,12684,12684,42,6509,6489,6490,0,7308,7286,7287,12685,12685,12685,42,6509,6490,6510,0,7308,7287,7309,12686,12686,12686,42,6513,6512,6511,0,7312,7311,7310,12687,12687,12687,42,6513,6511,6514,0,7312,7310,7313,12688,12688,12688,42,6514,6511,6478,0,7313,7310,7275,12689,12689,12689,42,6514,6478,6479,0,7313,7275,7276,12690,12690,12690,42,6516,6515,6513,0,7315,7314,7312,12691,12691,12691,42,6516,6513,6514,0,7315,7312,7313,12692,12692,12692,42,6480,6516,6514,0,7277,7315,7313,12693,12693,12693,42,6480,6514,6479,0,7277,7313,7276,12694,12694,12694,42,6518,6517,6515,0,7317,7316,7314,12695,12695,12695,42,6518,6515,6516,0,7317,7314,7315,12696,12696,12696,42,6481,6518,6516,0,7278,7317,7315,12697,12697,12697,42,6481,6516,6480,0,7278,7315,7277,12698,12698,12698,42,6520,6519,6517,0,7319,7318,7316,12699,12699,12699,42,6520,6517,6518,0,7319,7316,7317,12700,12700,12700,42,6482,6520,6518,0,7279,7319,7317,12701,12701,12701,42,6482,6518,6481,0,7279,7317,7278,12702,12702,12702,42,6522,6521,6519,0,7321,7320,7318,12703,12703,12703,42,6522,6519,6520,0,7321,7318,7319,12704,12704,12704,42,6483,6522,6520,0,7280,7321,7319,12705,12705,12705,42,6483,6520,6482,0,7280,7319,7279,12706,12706,12706,42,6500,6501,6523,0,7299,7300,7322,12707,12707,12707,42,6500,6523,6524,0,7299,7322,7323,12708,12708,12708,42,6524,6523,6525,0,7323,7322,7324,12709,12709,12709,42,6524,6525,6526,0,7323,7324,7325,12710,12710,12710,42,6499,6500,6524,0,7298,7299,7323,12711,12711,12711,42,6499,6524,6527,0,7298,7323,7326,12712,12712,12712,42,6527,6524,6526,0,7326,7323,7325,12713,12713,12713,42,6527,6526,6528,0,7326,7325,7327,12714,12714,12714,42,6498,6499,6527,0,7297,7298,7326,12715,12715,12715,42,6498,6527,6529,0,7297,7326,7328,12716,12716,12716,42,6529,6527,6528,0,7328,7326,7327,12717,12717,12717,42,6529,6528,6530,0,7328,7327,7329,12718,12718,12718,42,6506,6498,6529,0,7305,7297,7328,12719,12719,12719,42,6506,6529,6531,0,7305,7328,7330,12720,12720,12720,42,6531,6529,6530,0,7330,7328,7329,12721,12721,12721,42,6531,6530,6532,0,7330,7329,7331,12722,12722,12722,42,6503,6506,6531,0,7302,7305,7330,12723,12723,12723,42,6503,6531,6533,0,7302,7330,7332,12724,12724,12724,42,6533,6531,6532,0,7332,7330,7331,12725,12725,12725,42,6533,6532,6534,0,7332,7331,7333,12726,12726,12726,42,6504,6503,6533,0,7303,7302,7332,12727,12727,12727,42,6504,6533,3007,0,7303,7332,271,12728,12728,12728,42,3007,6533,6534,0,271,7332,7333,12729,12729,12729,42,3007,6534,3008,0,271,7333,272,12730,12730,12730,42,6523,6536,6535,0,7322,7335,7334,12731,12731,12731,42,6523,6535,6525,0,7322,7334,7324,12732,12732,12732,42,6537,6536,6523,0,7336,7335,7322,12733,12733,12733,42,6537,6523,6501,0,7336,7322,7300,12734,12734,12734,42,6502,6538,6537,0,7301,7337,7336,12735,12735,12735,42,6502,6537,6501,0,7301,7336,7300,12736,12736,12736,42,6538,6502,6509,0,7337,7301,7308,12737,12737,12737,42,6538,6509,6539,0,7337,7308,7338,12738,12738,12738,42,6535,6536,6540,0,7334,7335,7339,12739,12739,12739,42,6535,6540,6541,0,7334,7339,7340,12740,12740,12740,42,6541,6540,6511,0,7340,7339,7310,12741,12741,12741,42,6541,6511,6512,0,7340,7310,7311,12742,12742,12742,42,6543,6451,6542,0,7342,7241,7341,12743,12743,12743,42,6543,6542,6544,0,7342,7341,7343,12744,12744,12744,42,6522,6543,6544,0,7321,7342,7343,12745,12745,12745,42,6522,6544,6521,0,7321,7343,7320,12746,12746,12746,42,6450,6451,6543,0,7240,7241,7342,12747,12747,12747,42,6450,6543,6484,0,7240,7342,7281,12748,12748,12748,42,6483,6484,6543,0,7280,7281,7342,12749,12749,12749,42,6483,6543,6522,0,7280,7342,7321,12750,12750,12750,42,6474,6545,6542,0,7271,7344,7341,12751,12751,12751,42,6474,6542,6451,0,7271,7341,7241,12752,12752,12752,42,6525,6547,6546,0,7324,7346,7345,12753,12753,12753,42,6525,6546,6526,0,7324,7345,7325,12754,12754,12754,42,6526,6546,6548,0,7325,7345,7347,12755,12755,12755,42,6526,6548,6528,0,7325,7347,7327,12756,12756,12756,42,6528,6548,6549,0,7327,7347,7348,12757,12757,12757,42,6528,6549,6530,0,7327,7348,7329,12758,12758,12758,42,6550,6546,6547,0,7349,7345,7346,12759,12759,12759,42,6550,6547,6551,0,7349,7346,7350,12760,12760,12760,42,3027,3008,6534,0,273,272,7333,12761,12761,12761,42,3027,6534,6552,0,273,7333,7351,12762,12762,12762,42,6553,6532,6530,0,7352,7331,7329,12763,12763,12763,42,6553,6530,6549,0,7352,7329,7348,12764,12764,12764,42,6553,6555,6554,0,7352,7354,7353,12765,12765,12765,42,6553,6554,6552,0,7352,7353,7351,12766,12766,12766,42,6549,6556,6555,0,7348,7355,7354,12767,12767,12767,42,6549,6555,6553,0,7348,7354,7352,12768,12768,12768,42,6548,6557,6556,0,7347,7356,7355,12769,12769,12769,42,6548,6556,6549,0,7347,7355,7348,12770,12770,12770,42,6546,6550,6557,0,7345,7349,7356,12771,12771,12771,42,6546,6557,6548,0,7345,7356,7347,12772,12772,12772,42,6559,6558,6551,0,7358,7357,7350,12773,12773,12773,42,6559,6551,6547,0,7358,7350,7346,12774,12774,12774,42,6552,6554,3035,0,7351,7353,274,12775,12775,12775,42,6552,3035,3027,0,7351,274,273,12776,12776,12776,42,6532,6553,6552,0,7331,7352,7351,12777,12777,12777,42,6532,6552,6534,0,7331,7351,7333,12778,12778,12778,42,6559,6547,6525,0,7358,7346,7324,12779,12779,12779,42,6559,6525,6535,0,7358,7324,7334,12780,12780,12780,42,6541,6560,6559,0,7340,7359,7358,12781,12781,12781,42,6541,6559,6535,0,7340,7358,7334,12782,12782,12782,42,6561,6560,6541,0,7360,7359,7340,12783,12783,12783,42,6561,6541,6512,0,7360,7340,7311,12784,12784,12784,42,6558,6559,6560,0,7357,7358,7359,12785,12785,12785,42,6558,6560,6562,0,7357,7359,7361,12786,12786,12786,42,6561,6563,6562,0,7360,7362,7361,12787,12787,12787,42,6561,6562,6560,0,7360,7361,7359,12788,12788,12788,42,6565,6564,6563,0,7364,7363,7362,12789,12789,12789,42,6565,6563,6561,0,7364,7362,7360,12790,12790,12790,42,6566,6565,6561,0,7365,7364,7360,12791,12791,12791,42,6566,6561,6512,0,7365,7360,7311,12792,12792,12792,42,6566,6512,6513,0,7365,7311,7312,12793,12793,12793,42,6566,6513,6567,0,7365,7312,7366,12794,12794,12794,42,6567,6513,6515,0,7366,7312,7314,12795,12795,12795,42,6567,6515,6568,0,7366,7314,7367,12796,12796,12796,42,6568,6515,6517,0,7367,7314,7316,12797,12797,12797,42,6568,6517,6569,0,7367,7316,7368,12798,12798,12798,42,6569,6517,6519,0,7368,7316,7318,12799,12799,12799,42,6569,6519,6570,0,7368,7318,7369,12800,12800,12800,42,6571,6570,6519,0,7370,7369,7318,12801,12801,12801,42,6571,6519,6521,0,7370,7318,7320,12802,12802,12802,42,6572,6571,6521,0,7371,7370,7320,12803,12803,12803,42,6572,6521,6544,0,7371,7320,7343,12804,12804,12804,42,6572,6544,6542,0,7371,7343,7341,12805,12805,12805,42,6572,6542,6573,0,7371,7341,7372,12806,12806,12806,42,6573,6542,6545,0,7372,7341,7344,12807,12807,12807,42,6573,6545,6574,0,7372,7344,7373,12808,12808,12808,42,6577,6576,6575,0,7376,7375,7374,12809,12809,12809,42,6577,6575,6578,0,7376,7374,7377,12810,12810,12810,42,6581,6580,6579,0,7380,7379,7378,12811,12811,12811,42,6581,6579,6582,0,7380,7378,7381,12812,12812,12812,42,6585,6584,6583,0,7384,7383,7382,12813,12813,12813,42,6585,6583,6367,0,7384,7382,7144,12814,12814,12814,42,247,266,6586,0,276,275,7385,12815,12815,12815,42,247,6586,6587,0,276,7385,7386,12816,12816,12816,42,267,248,6588,0,278,277,7387,12817,12817,12817,42,267,6588,6589,0,278,7387,7388,12818,12818,12818,42,6591,6590,247,0,7389,279,276,12819,12819,12819,42,6591,247,6587,0,7389,276,7386,12820,12820,12820,42,6588,248,6590,0,7387,277,279,12821,12821,12821,42,6588,6590,6591,0,7387,279,7389,12822,12822,12822,42,6593,6592,6581,0,7391,7390,7380,12823,12823,12823,42,6593,6581,6594,0,7391,7380,7392,12824,12824,12824,42,6594,6581,6582,0,7392,7380,7381,12825,12825,12825,42,6594,6582,6595,0,7392,7381,7393,12826,12826,12826,42,6597,6596,6595,0,7395,7394,7393,12827,12827,12827,42,6597,6595,6582,0,7395,7393,7381,12828,12828,12828,42,6599,6598,6579,0,7397,7396,7378,12829,12829,12829,42,6599,6579,6600,0,7397,7378,7398,12830,12830,12830,42,6602,6601,6598,0,7400,7399,7396,12831,12831,12831,42,6602,6598,6599,0,7400,7396,7397,12832,12832,12832,42,6600,6579,6580,0,7398,7378,7379,12833,12833,12833,42,6600,6580,6603,0,7398,7379,7401,12834,12834,12834,42,6605,6604,6592,0,7403,7402,7390,12835,12835,12835,42,6605,6592,6593,0,7403,7390,7391,12836,12836,12836,42,6592,6604,6606,0,7390,7402,7404,12837,12837,12837,42,6592,6606,6607,0,7390,7404,7405,12838,12838,12838,42,6592,6607,6580,0,7390,7405,7379,12839,12839,12839,42,6592,6580,6581,0,7390,7379,7380,12840,12840,12840,42,6610,6609,6608,0,7408,7407,7406,12841,12841,12841,42,6610,6608,6611,0,7408,7406,7409,12842,12842,12842,42,6610,6611,6612,0,7408,7409,7410,12843,12843,12843,42,6610,6612,6613,0,7408,7410,7411,12844,12844,12844,42,6614,6610,6613,0,7412,7408,7411,12845,12845,12845,42,6614,6613,6615,0,7412,7411,7413,12846,12846,12846,42,6614,6615,6616,0,7412,7413,7414,12847,12847,12847,42,6614,6616,6617,0,7412,7414,7415,12848,12848,12848,42,6609,6610,6614,0,7407,7408,7412,12849,12849,12849,42,6609,6614,6618,0,7407,7412,7416,12850,12850,12850,42,6618,6614,6617,0,7416,7412,7415,12851,12851,12851,42,6618,6617,6619,0,7416,7415,7417,12852,12852,12852,42,6583,6609,6618,0,7382,7407,7416,12853,12853,12853,42,6583,6618,6620,0,7382,7416,7418,12854,12854,12854,42,6620,6618,6619,0,7418,7416,7417,12855,12855,12855,42,6620,6619,6621,0,7418,7417,7419,12856,12856,12856,42,6367,6583,6620,0,7144,7382,7418,12857,12857,12857,42,6367,6620,6366,0,7144,7418,7143,12858,12858,12858,42,6366,6620,6621,0,7143,7418,7419,12859,12859,12859,42,6366,6621,6622,0,7143,7419,7420,12860,12860,12860,42,6623,6603,6580,0,7421,7401,7379,12861,12861,12861,42,6623,6580,6607,0,7421,7379,7405,12862,12862,12862,42,6584,6608,6609,0,7383,7406,7407,12863,12863,12863,42,6584,6609,6583,0,7383,7407,7382,12864,12864,12864,42,6578,6575,6611,0,7377,7374,7409,12865,12865,12865,42,6578,6611,6608,0,7377,7409,7406,12866,12866,12866,42,6617,6616,6624,0,7415,7414,7422,12867,12867,12867,42,6617,6624,6625,0,7415,7422,7423,12868,12868,12868,42,6625,6624,6605,0,7423,7422,7403,12869,12869,12869,42,6625,6605,6593,0,7423,7403,7391,12870,12870,12870,42,6619,6617,6625,0,7417,7415,7423,12871,12871,12871,42,6619,6625,6626,0,7417,7423,7424,12872,12872,12872,42,6626,6625,6593,0,7424,7423,7391,12873,12873,12873,42,6626,6593,6594,0,7424,7391,7392,12874,12874,12874,42,6621,6619,6626,0,7419,7417,7424,12875,12875,12875,42,6621,6626,6627,0,7419,7424,7425,12876,12876,12876,42,6627,6626,6594,0,7425,7424,7392,12877,12877,12877,42,6627,6594,6595,0,7425,7392,7393,12878,12878,12878,42,6622,6621,6627,0,7420,7419,7425,12879,12879,12879,42,6622,6627,6628,0,7420,7425,7426,12880,12880,12880,42,6628,6627,6595,0,7426,7425,7393,12881,12881,12881,42,6628,6595,6596,0,7426,7393,7394,12882,12882,12882,42,6578,6608,6584,0,7377,7406,7383,12883,12883,12883,42,6578,6584,6629,0,7377,7383,7427,12884,12884,12884,42,6577,6578,6629,0,7376,7377,7427,12885,12885,12885,42,6577,6629,6630,0,7376,7427,7428,12886,12886,12886,42,6631,6629,6584,0,7429,7427,7383,12887,12887,12887,42,6631,6584,6585,0,7429,7383,7384,12888,12888,12888,42,6633,6632,6629,0,7431,7430,7427,12889,12889,12889,42,6633,6629,6631,0,7431,7427,7429,12890,12890,12890,42,6632,6633,6634,0,7430,7431,280,12891,12891,12891,42,6632,6634,3109,0,7430,280,281,12892,12892,12892,42,6635,6632,3109,0,7432,7430,281,12893,12893,12893,42,6635,3109,241,0,7432,281,282,12894,12894,12894,42,6630,6629,6632,0,7428,7427,7430,12895,12895,12895,42,6630,6632,6635,0,7428,7430,7432,12896,12896,12896,42,6636,6575,6576,0,7433,7374,7375,12897,12897,12897,42,6636,6576,6637,0,7433,7375,7434,12898,12898,12898,42,6639,6638,6637,0,7436,7435,7434,12899,12899,12899,42,6639,6637,6576,0,7436,7434,7375,12900,12900,12900,42,6640,6596,6597,0,7437,7394,7395,12901,12901,12901,42,6640,6597,6641,0,7437,7395,7438,12902,12902,12902,42,6642,6628,6596,0,7439,7426,7394,12903,12903,12903,42,6642,6596,6640,0,7439,7394,7437,12904,12904,12904,42,6643,6622,6628,0,7440,7420,7426,12905,12905,12905,42,6643,6628,6642,0,7440,7426,7439,12906,12906,12906,42,6369,6366,6622,0,7146,7143,7420,12907,12907,12907,42,6369,6622,6643,0,7146,7420,7440,12908,12908,12908,42,6644,6585,6367,0,7441,7384,7144,12909,12909,12909,42,6644,6367,6368,0,7441,7144,7145,12910,12910,12910,42,6645,6631,6585,0,7442,7429,7384,12911,12911,12911,42,6645,6585,6644,0,7442,7384,7441,12912,12912,12912,42,6646,6633,6631,0,7443,7431,7429,12913,12913,12913,42,6646,6631,6645,0,7443,7429,7442,12914,12914,12914,42,6647,6634,6633,0,283,280,7431,12915,12915,12915,42,6647,6633,6646,0,283,7431,7443,12916,12916,12916,42,6598,6597,6582,0,7396,7395,7381,12917,12917,12917,42,6598,6582,6579,0,7396,7381,7378,12918,12918,12918,42,6601,6641,6597,0,7399,7438,7395,12919,12919,12919,42,6601,6597,6598,0,7399,7395,7396,12920,12920,12920,42,6648,6587,6586,0,7444,7386,7385,12921,12921,12921,42,6648,6586,6649,0,7444,7385,7445,12922,12922,12922,42,6599,6648,6649,0,7397,7444,7445,12923,12923,12923,42,6599,6649,6602,0,7397,7445,7400,12924,12924,12924,42,6650,6591,6587,0,7446,7389,7386,12925,12925,12925,42,6650,6587,6648,0,7446,7386,7444,12926,12926,12926,42,6600,6650,6648,0,7398,7446,7444,12927,12927,12927,42,6600,6648,6599,0,7398,7444,7397,12928,12928,12928,42,6651,6588,6591,0,7447,7387,7389,12929,12929,12929,42,6651,6591,6650,0,7447,7389,7446,12930,12930,12930,42,6603,6651,6650,0,7401,7447,7446,12931,12931,12931,42,6603,6650,6600,0,7401,7446,7398,12932,12932,12932,42,6589,6588,6651,0,7388,7387,7447,12933,12933,12933,42,6589,6651,6652,0,7388,7447,7448,12934,12934,12934,42,6652,6651,6603,0,7448,7447,7401,12935,12935,12935,42,6652,6603,6623,0,7448,7401,7421,12936,12936,12936,42,6567,6654,6653,0,7366,7450,7449,12937,12937,12937,42,6567,6653,6566,0,7366,7449,7365,12938,12938,12938,42,6568,6655,6654,0,7367,7451,7450,12939,12939,12939,42,6568,6654,6567,0,7367,7450,7366,12940,12940,12940,42,6655,6568,6569,0,7451,7367,7368,12941,12941,12941,42,6655,6569,6656,0,7451,7368,7452,12942,12942,12942,42,6658,6657,6570,0,7454,7453,7369,12943,12943,12943,42,6658,6570,6571,0,7454,7369,7370,12944,12944,12944,42,6656,6569,6570,0,7452,7368,7369,12945,12945,12945,42,6656,6570,6657,0,7452,7369,7453,12946,12946,12946,42,6616,6615,6659,0,7414,7413,7455,12947,12947,12947,42,6616,6659,6660,0,7414,7455,7456,12948,12948,12948,42,6660,6659,6653,0,7456,7455,7449,12949,12949,12949,42,6660,6653,6654,0,7456,7449,7450,12950,12950,12950,42,6662,6661,6655,0,7458,7457,7451,12951,12951,12951,42,6662,6655,6656,0,7458,7451,7452,12952,12952,12952,42,6663,6604,6605,0,7459,7402,7403,12953,12953,12953,42,6663,6605,6662,0,7459,7403,7458,12954,12954,12954,42,6657,6663,6662,0,7453,7459,7458,12955,12955,12955,42,6657,6662,6656,0,7453,7458,7452,12956,12956,12956,42,6664,6606,6604,0,7460,7404,7402,12957,12957,12957,42,6664,6604,6663,0,7460,7402,7459,12958,12958,12958,42,6658,6664,6663,0,7454,7460,7459,12959,12959,12959,42,6658,6663,6657,0,7454,7459,7453,12960,12960,12960,42,6654,6655,6661,0,7450,7451,7457,12961,12961,12961,42,6654,6661,6660,0,7450,7457,7456,12962,12962,12962,42,6660,6661,6624,0,7456,7457,7422,12963,12963,12963,42,6660,6624,6616,0,7456,7422,7414,12964,12964,12964,42,6662,6605,6624,0,7458,7403,7422,12965,12965,12965,42,6662,6624,6661,0,7458,7422,7457,12966,12966,12966,42,6623,6666,6665,0,7421,7462,7461,12967,12967,12967,42,6623,6665,6652,0,7421,7461,7448,12968,12968,12968,42,6669,6668,6667,0,7465,7464,7463,12969,12969,12969,42,6669,6667,6666,0,7465,7463,7462,12970,12970,12970,42,6607,6669,6666,0,7405,7465,7462,12971,12971,12971,42,6607,6666,6623,0,7405,7462,7421,12972,12972,12972,42,6671,6670,6668,0,7467,7466,7464,12973,12973,12973,42,6671,6668,6669,0,7467,7464,7465,12974,12974,12974,42,6606,6671,6669,0,7404,7467,7465,12975,12975,12975,42,6606,6669,6607,0,7404,7465,7405,12976,12976,12976,42,6673,6672,6670,0,7469,7468,7466,12977,12977,12977,42,6673,6670,6671,0,7469,7466,7467,12978,12978,12978,42,6673,6671,6606,0,7469,7467,7404,12979,12979,12979,42,6673,6606,6664,0,7469,7404,7460,12980,12980,12980,42,6674,6672,6673,0,7470,7468,7469,12981,12981,12981,42,6674,6673,6675,0,7470,7469,7471,12982,12982,12982,42,6675,6673,6664,0,7471,7469,7460,12983,12983,12983,42,6675,6664,6658,0,7471,7460,7454,12984,12984,12984,42,6573,6674,6675,0,7372,7470,7471,12985,12985,12985,42,6573,6675,6572,0,7372,7471,7371,12986,12986,12986,42,6571,6572,6675,0,7370,7371,7471,12987,12987,12987,42,6571,6675,6658,0,7370,7471,7454,12988,12988,12988,42,6652,6665,6676,0,7448,7461,7472,12989,12989,12989,42,6652,6676,6589,0,7448,7472,7388,12990,12990,12990,42,6676,6677,267,0,7472,7473,278,12991,12991,12991,42,6676,267,6589,0,7472,278,7388,12992,12992,12992,42,6676,6679,6678,0,7472,7475,7474,12993,12993,12993,42,6676,6678,6677,0,7472,7474,7473,12994,12994,12994,42,6665,6680,6679,0,7461,7476,7475,12995,12995,12995,42,6665,6679,6676,0,7461,7475,7472,12996,12996,12996,42,6666,6667,6680,0,7462,7463,7476,12997,12997,12997,42,6666,6680,6665,0,7462,7476,7461,12998,12998,12998,42,6674,6573,6574,0,7470,7372,7373,12999,12999,12999,42,6674,6574,6681,0,7470,7373,7477,13000,13000,13000,42,6682,6667,6668,0,7478,7463,7464,13001,13001,13001,42,6682,6668,6683,0,7478,7464,7479,13002,13002,13002,42,6683,6668,6670,0,7479,7464,7466,13003,13003,13003,42,6683,6670,6684,0,7479,7466,7480,13004,13004,13004,42,6684,6670,6672,0,7480,7466,7468,13005,13005,13005,42,6684,6672,6685,0,7480,7468,7481,13006,13006,13006,42,6681,6685,6672,0,7477,7481,7468,13007,13007,13007,42,6681,6672,6674,0,7477,7468,7470,13008,13008,13008,42,6688,6687,6686,0,7484,7483,7482,13009,13009,13009,42,6688,6686,6689,0,7484,7482,7485,13010,13010,13010,42,6691,6690,6688,0,7487,7486,7484,13011,13011,13011,42,6691,6688,6689,0,7487,7484,7485,13012,13012,13012,42,6693,6692,6690,0,7489,7488,7486,13013,13013,13013,42,6693,6690,6691,0,7489,7486,7487,13014,13014,13014,42,6690,6695,6694,0,7486,7491,7490,13015,13015,13015,42,6690,6694,6688,0,7486,7490,7484,13016,13016,13016,42,6577,6686,6687,0,7376,7482,7483,13017,13017,13017,42,6577,6687,6576,0,7376,7483,7375,13018,13018,13018,42,6696,6692,6693,0,7492,7488,7489,13019,13019,13019,42,6696,6693,6697,0,7492,7489,7493,13020,13020,13020,42,6697,6698,253,0,7493,285,284,13021,13021,13021,42,6697,253,6696,0,7493,284,7492,13022,13022,13022,42,6701,6700,6699,0,7496,7495,7494,13023,13023,13023,42,6701,6699,6695,0,7496,7494,7491,13024,13024,13024,42,6702,6700,6701,0,7497,7495,7496,13025,13025,13025,42,6702,6701,6703,0,7497,7496,7498,13026,13026,13026,42,6703,6701,6692,0,7498,7496,7488,13027,13027,13027,42,6703,6692,6696,0,7498,7488,7492,13028,13028,13028,42,6703,268,6704,0,7498,287,286,13029,13029,13029,42,6703,6704,6702,0,7498,286,7497,13030,13030,13030,42,6703,6696,253,0,7498,7492,284,13031,13031,13031,42,6703,253,268,0,7498,284,287,13032,13032,13032,42,6705,6694,6695,0,7499,7490,7491,13033,13033,13033,42,6705,6695,6699,0,7499,7491,7494,13034,13034,13034,42,6692,6701,6695,0,7488,7496,7491,13035,13035,13035,42,6692,6695,6690,0,7488,7491,7486,13036,13036,13036,42,6576,6687,6706,0,7375,7483,7500,13037,13037,13037,42,6576,6706,6639,0,7375,7500,7436,13038,13038,13038,42,6706,6687,6688,0,7500,7483,7484,13039,13039,13039,42,6706,6688,6694,0,7500,7484,7490,13040,13040,13040,42,6639,6706,6694,0,7436,7500,7490,13041,13041,13041,42,6639,6694,6705,0,7436,7490,7499,13042,13042,13042,42,6702,6704,6707,0,7497,286,288,13043,13043,13043,42,6702,6707,6708,0,7497,288,7501,13044,13044,13044,42,6700,6702,6708,0,7495,7497,7501,13045,13045,13045,42,6700,6708,6709,0,7495,7501,7502,13046,13046,13046,42,6700,6709,6710,0,7495,7502,7503,13047,13047,13047,42,6700,6710,6699,0,7495,7503,7494,13048,13048,13048,42,6699,6710,6711,0,7494,7503,7504,13049,13049,13049,42,6699,6711,6705,0,7494,7504,7499,13050,13050,13050,42,6705,6711,6638,0,7499,7504,7435,13051,13051,13051,42,6705,6638,6639,0,7499,7435,7436,13052,13052,13052,42,6689,6686,6712,0,7485,7482,7505,13053,13053,13053,42,6689,6712,6713,0,7485,7505,7506,13054,13054,13054,42,6714,6698,6697,0,289,285,7493,13055,13055,13055,42,6714,6697,6715,0,289,7493,7507,13056,13056,13056,42,6716,6714,6715,0,290,289,7507,13057,13057,13057,42,6716,6715,6717,0,290,7507,7508,13058,13058,13058,42,6691,6689,6713,0,7487,7485,7506,13059,13059,13059,42,6691,6713,6718,0,7487,7506,7509,13060,13060,13060,42,6718,6719,6693,0,7509,7510,7489,13061,13061,13061,42,6718,6693,6691,0,7509,7489,7487,13062,13062,13062,42,6712,6686,6577,0,7505,7482,7376,13063,13063,13063,42,6712,6577,6630,0,7505,7376,7428,13064,13064,13064,42,6721,3189,6720,0,7511,292,291,13065,13065,13065,42,6721,6720,6722,0,7511,291,7512,13066,13066,13066,42,6720,6716,6717,0,291,290,7508,13067,13067,13067,42,6720,6717,6722,0,291,7508,7512,13068,13068,13068,42,6719,6715,6697,0,7510,7507,7493,13069,13069,13069,42,6719,6697,6693,0,7510,7493,7489,13070,13070,13070,42,6723,6717,6715,0,7513,7508,7507,13071,13071,13071,42,6723,6715,6724,0,7513,7507,7514,13072,13072,13072,42,6724,6715,6719,0,7514,7507,7510,13073,13073,13073,42,6724,6719,6725,0,7514,7510,7515,13074,13074,13074,42,6726,6713,6712,0,7516,7506,7505,13075,13075,13075,42,6726,6712,6727,0,7516,7505,7517,13076,13076,13076,42,6635,6721,6728,0,7432,7511,7518,13077,13077,13077,42,6635,6728,6729,0,7432,7518,7519,13078,13078,13078,42,6730,6630,6635,0,7520,7428,7432,13079,13079,13079,42,6730,6635,6729,0,7520,7432,7519,13080,13080,13080,42,6727,6712,6630,0,7517,7505,7428,13081,13081,13081,42,6727,6630,6730,0,7517,7428,7520,13082,13082,13082,42,6731,6725,6719,0,7521,7515,7510,13083,13083,13083,42,6731,6719,6718,0,7521,7510,7509,13084,13084,13084,42,6726,6731,6718,0,7516,7521,7509,13085,13085,13085,42,6726,6718,6713,0,7516,7509,7506,13086,13086,13086,42,6732,6728,6721,0,7522,7518,7511,13087,13087,13087,42,6732,6721,6722,0,7522,7511,7512,13088,13088,13088,42,6723,6732,6722,0,7513,7522,7512,13089,13089,13089,42,6723,6722,6717,0,7513,7512,7508,13090,13090,13090,42,6721,6635,241,0,7511,7432,282,13091,13091,13091,42,6721,241,3189,0,7511,282,292,13092,13092,13092,42,6734,6733,6728,0,7524,7523,7518,13093,13093,13093,42,6734,6728,6732,0,7524,7518,7522,13094,13094,13094,42,6735,6734,6732,0,7525,7524,7522,13095,13095,13095,42,6735,6732,6723,0,7525,7522,7513,13096,13096,13096,42,6724,6736,6735,0,7514,7526,7525,13097,13097,13097,42,6724,6735,6723,0,7514,7525,7513,13098,13098,13098,42,6725,6737,6736,0,7515,7527,7526,13099,13099,13099,42,6725,6736,6724,0,7515,7526,7514,13100,13100,13100,42,6738,6737,6725,0,7528,7527,7515,13101,13101,13101,42,6738,6725,6731,0,7528,7515,7521,13102,13102,13102,42,6739,6738,6731,0,7529,7528,7521,13103,13103,13103,42,6739,6731,6726,0,7529,7521,7516,13104,13104,13104,42,6740,6739,6726,0,7530,7529,7516,13105,13105,13105,42,6740,6726,6727,0,7530,7516,7517,13106,13106,13106,42,6730,6741,6740,0,7520,7531,7530,13107,13107,13107,42,6730,6740,6727,0,7520,7530,7517,13108,13108,13108,42,6730,6729,6742,0,7520,7519,7532,13109,13109,13109,42,6730,6742,6741,0,7520,7532,7531,13110,13110,13110,42,6733,6742,6729,0,7523,7532,7519,13111,13111,13111,42,6733,6729,6728,0,7523,7519,7518,13112,13112,13112,42,6745,6744,6743,0,7535,7534,7533,13113,13113,13113,42,6745,6743,6746,0,7535,7533,7536,13114,13114,13114,42,6747,6745,6746,0,7537,7535,7536,13115,13115,13115,42,6747,6746,6748,0,7537,7536,7538,13116,13116,13116,42,6751,6750,6749,0,7541,7540,7539,13117,13117,13117,42,6751,6749,6752,0,7541,7539,7542,13118,13118,13118,42,6755,6754,6753,0,7544,7543,293,13119,13119,13119,42,6755,6753,269,0,7544,293,294,13120,13120,13120,42,6758,6757,6756,0,7547,7546,7545,13121,13121,13121,42,6758,6756,6759,0,7547,7545,7548,13122,13122,13122,42,6760,6751,6752,0,7549,7541,7542,13123,13123,13123,42,6760,6752,6564,0,7549,7542,7363,13124,13124,13124,42,6550,6551,6744,0,7349,7350,7534,13125,13125,13125,42,6550,6744,6745,0,7349,7534,7535,13126,13126,13126,42,6745,6747,6557,0,7535,7537,7356,13127,13127,13127,42,6745,6557,6550,0,7535,7356,7349,13128,13128,13128,42,6557,6747,6761,0,7356,7537,7550,13129,13129,13129,42,6557,6761,6556,0,7356,7550,7355,13130,13130,13130,42,6748,6762,6761,0,7538,7551,7550,13131,13131,13131,42,6748,6761,6747,0,7538,7550,7537,13132,13132,13132,42,6763,6755,269,0,7552,7544,294,13133,13133,13133,42,6763,269,6764,0,7552,294,295,13134,13134,13134,42,6766,6757,6765,0,7554,7546,7553,13135,13135,13135,42,6766,6765,6767,0,7554,7553,7555,13136,13136,13136,42,6757,6758,6768,0,7546,7547,7556,13137,13137,13137,42,6757,6768,6765,0,7546,7556,7553,13138,13138,13138,42,6765,6768,6769,0,7553,7556,7557,13139,13139,13139,42,6765,6769,6770,0,7553,7557,7558,13140,13140,13140,42,6757,6766,6771,0,7546,7554,7559,13141,13141,13141,42,6757,6771,6756,0,7546,7559,7545,13142,13142,13142,42,6774,6773,6772,0,7562,7561,7560,13143,13143,13143,42,6774,6772,6775,0,7562,7560,7563,13144,13144,13144,42,6767,6765,6770,0,7555,7553,7558,13145,13145,13145,42,6767,6770,6773,0,7555,7558,7561,13146,13146,13146,42,6759,6756,6776,0,7548,7545,7564,13147,13147,13147,42,6759,6776,6777,0,7548,7564,7565,13148,13148,13148,42,6777,6776,6751,0,7565,7564,7541,13149,13149,13149,42,6777,6751,6760,0,7565,7541,7549,13150,13150,13150,42,6756,6771,6778,0,7545,7559,7566,13151,13151,13151,42,6756,6778,6776,0,7545,7566,7564,13152,13152,13152,42,6776,6778,6750,0,7564,7566,7540,13153,13153,13153,42,6776,6750,6751,0,7564,7540,7541,13154,13154,13154,42,6779,6763,6554,0,7567,7552,7353,13155,13155,13155,42,6779,6554,6555,0,7567,7353,7354,13156,13156,13156,42,6779,6555,6556,0,7567,7354,7355,13157,13157,13157,42,6779,6556,6761,0,7567,7355,7550,13158,13158,13158,42,6780,6779,6761,0,7568,7567,7550,13159,13159,13159,42,6780,6761,6762,0,7568,7550,7551,13160,13160,13160,42,6782,6781,6780,0,7570,7569,7568,13161,13161,13161,42,6782,6780,6762,0,7570,7568,7551,13162,13162,13162,42,6783,6782,6762,0,7571,7570,7551,13163,13163,13163,42,6783,6762,6748,0,7571,7551,7538,13164,13164,13164,42,6784,6783,6748,0,7572,7571,7538,13165,13165,13165,42,6784,6748,6746,0,7572,7538,7536,13166,13166,13166,42,6785,6784,6746,0,7573,7572,7536,13167,13167,13167,42,6785,6746,6743,0,7573,7536,7533,13168,13168,13168,42,6750,6787,6786,0,7540,7575,7574,13169,13169,13169,42,6750,6786,6749,0,7540,7574,7539,13170,13170,13170,42,6778,6788,6787,0,7566,7576,7575,13171,13171,13171,42,6778,6787,6750,0,7566,7575,7540,13172,13172,13172,42,6771,6789,6788,0,7559,7577,7576,13173,13173,13173,42,6771,6788,6778,0,7559,7576,7566,13174,13174,13174,42,6766,6790,6789,0,7554,7578,7577,13175,13175,13175,42,6766,6789,6771,0,7554,7577,7559,13176,13176,13176,42,6767,6791,6790,0,7555,7579,7578,13177,13177,13177,42,6767,6790,6766,0,7555,7578,7554,13178,13178,13178,42,6773,6774,6791,0,7561,7562,7579,13179,13179,13179,42,6773,6791,6767,0,7561,7579,7555,13180,13180,13180,42,6793,6792,6780,0,7581,7580,7568,13181,13181,13181,42,6793,6780,6781,0,7581,7568,7569,13182,13182,13182,42,6794,6760,6564,0,7582,7549,7363,13183,13183,13183,42,6794,6564,6565,0,7582,7363,7364,13184,13184,13184,42,6653,6794,6565,0,7449,7582,7364,13185,13185,13185,42,6653,6565,6566,0,7449,7364,7365,13186,13186,13186,42,6795,6777,6760,0,7583,7565,7549,13187,13187,13187,42,6795,6760,6794,0,7583,7549,7582,13188,13188,13188,42,6659,6795,6794,0,7455,7583,7582,13189,13189,13189,42,6659,6794,6653,0,7455,7582,7449,13190,13190,13190,42,6796,6759,6777,0,7584,7548,7565,13191,13191,13191,42,6796,6777,6795,0,7584,7565,7583,13192,13192,13192,42,6796,6795,6659,0,7584,7583,7455,13193,13193,13193,42,6796,6659,6615,0,7584,7455,7413,13194,13194,13194,42,6797,6758,6759,0,7585,7547,7548,13195,13195,13195,42,6797,6759,6796,0,7585,7548,7584,13196,13196,13196,42,6613,6797,6796,0,7411,7585,7584,13197,13197,13197,42,6613,6796,6615,0,7411,7584,7413,13198,13198,13198,42,6768,6799,6798,0,7556,7587,7586,13199,13199,13199,42,6768,6798,6769,0,7556,7586,7557,13200,13200,13200,42,6802,6801,6800,0,7590,7589,7588,13201,13201,13201,42,6802,6800,6803,0,7590,7588,7591,13202,13202,13202,42,6806,6805,6804,0,296,7593,7592,13203,13203,13203,42,6806,6804,3270,0,296,7592,297,13204,13204,13204,42,6551,6558,6807,0,7350,7357,7594,13205,13205,13205,42,6551,6807,6744,0,7350,7594,7534,13206,13206,13206,42,6744,6807,6808,0,7534,7594,7595,13207,13207,13207,42,6744,6808,6743,0,7534,7595,7533,13208,13208,13208,42,6743,6808,6809,0,7533,7595,7596,13209,13209,13209,42,6743,6809,6785,0,7533,7596,7573,13210,13210,13210,42,6554,6763,6764,0,7353,7552,295,13211,13211,13211,42,6554,6764,3035,0,7353,295,274,13212,13212,13212,42,6800,6801,6810,0,7588,7589,7597,13213,13213,13213,42,6800,6810,6811,0,7588,7597,7598,13214,13214,13214,42,6811,6810,6812,0,7598,7597,7599,13215,13215,13215,42,6811,6812,6813,0,7598,7599,7600,13216,13216,13216,42,6813,6812,6814,0,7600,7599,7601,13217,13217,13217,42,6813,6814,6815,0,7600,7601,7602,13218,13218,13218,42,6770,6769,6816,0,7558,7557,7603,13219,13219,13219,42,6770,6816,6817,0,7558,7603,7604,13220,13220,13220,42,6817,6772,6773,0,7604,7560,7561,13221,13221,13221,42,6817,6773,6770,0,7604,7561,7558,13222,13222,13222,42,6792,6763,6779,0,7580,7552,7567,13223,13223,13223,42,6792,6779,6780,0,7580,7567,7568,13224,13224,13224,42,6792,6793,6818,0,7580,7581,7605,13225,13225,13225,42,6792,6818,6819,0,7580,7605,7606,13226,13226,13226,42,6818,6814,6820,0,7605,7601,7607,13227,13227,13227,42,6818,6820,6819,0,7605,7607,7606,13228,13228,13228,42,6821,6810,6801,0,7608,7597,7589,13229,13229,13229,42,6821,6801,6822,0,7608,7589,7609,13230,13230,13230,42,6801,6802,6823,0,7589,7590,7610,13231,13231,13231,42,6801,6823,6822,0,7589,7610,7609,13232,13232,13232,42,6820,6814,6812,0,7607,7601,7599,13233,13233,13233,42,6820,6812,6824,0,7607,7599,7611,13234,13234,13234,42,6824,6812,6810,0,7611,7599,7597,13235,13235,13235,42,6824,6810,6821,0,7611,7597,7608,13236,13236,13236,42,6754,6755,6819,0,7543,7544,7606,13237,13237,13237,42,6754,6819,6820,0,7543,7606,7607,13238,13238,13238,42,6825,6753,6754,0,298,293,7543,13239,13239,13239,42,6825,6754,6826,0,298,7543,7612,13240,13240,13240,42,6826,6754,6820,0,7612,7543,7607,13241,13241,13241,42,6826,6820,6824,0,7612,7607,7611,13242,13242,13242,42,6827,6825,6826,0,299,298,7612,13243,13243,13243,42,6827,6826,6828,0,299,7612,7613,13244,13244,13244,42,6821,6828,6826,0,7608,7613,7612,13245,13245,13245,42,6821,6826,6824,0,7608,7612,7611,13246,13246,13246,42,6806,6827,6828,0,296,299,7613,13247,13247,13247,42,6806,6828,6805,0,296,7613,7593,13248,13248,13248,42,6822,6805,6828,0,7609,7593,7613,13249,13249,13249,42,6822,6828,6821,0,7609,7613,7608,13250,13250,13250,42,6823,6804,6805,0,7610,7592,7593,13251,13251,13251,42,6823,6805,6822,0,7610,7593,7609,13252,13252,13252,42,6755,6763,6792,0,7544,7552,7580,13253,13253,13253,42,6755,6792,6819,0,7544,7580,7606,13254,13254,13254,42,6816,6830,6829,0,7603,7615,7614,13255,13255,13255,42,6816,6829,6831,0,7603,7614,7616,13256,13256,13256,42,6831,6829,6803,0,7616,7614,7591,13257,13257,13257,42,6831,6803,6800,0,7616,7591,7588,13258,13258,13258,42,6817,6816,6831,0,7604,7603,7616,13259,13259,13259,42,6817,6831,6832,0,7604,7616,7617,13260,13260,13260,42,6832,6831,6800,0,7617,7616,7588,13261,13261,13261,42,6832,6800,6811,0,7617,7588,7598,13262,13262,13262,42,6772,6817,6832,0,7560,7604,7617,13263,13263,13263,42,6772,6832,6833,0,7560,7617,7618,13264,13264,13264,42,6833,6832,6811,0,7618,7617,7598,13265,13265,13265,42,6833,6811,6813,0,7618,7598,7600,13266,13266,13266,42,6775,6772,6833,0,7563,7560,7618,13267,13267,13267,42,6775,6833,6834,0,7563,7618,7619,13268,13268,13268,42,6813,6815,6834,0,7600,7602,7619,13269,13269,13269,42,6813,6834,6833,0,7600,7619,7618,13270,13270,13270,42,6803,6711,6710,0,7591,7504,7503,13271,13271,13271,42,6803,6710,6802,0,7591,7503,7590,13272,13272,13272,42,6802,6710,6709,0,7590,7503,7502,13273,13273,13273,42,6802,6709,6823,0,7590,7502,7610,13274,13274,13274,42,6707,3270,6804,0,288,297,7592,13275,13275,13275,42,6707,6804,6708,0,288,7592,7501,13276,13276,13276,42,6709,6708,6804,0,7502,7501,7592,13277,13277,13277,42,6709,6804,6823,0,7502,7592,7610,13278,13278,13278,42,6830,6637,6638,0,7615,7434,7435,13279,13279,13279,42,6830,6638,6829,0,7615,7435,7614,13280,13280,13280,42,6829,6638,6711,0,7614,7435,7504,13281,13281,13281,42,6829,6711,6803,0,7614,7504,7591,13282,13282,13282,42,6835,6807,6558,0,7620,7594,7357,13283,13283,13283,42,6835,6558,6562,0,7620,7357,7361,13284,13284,13284,42,6835,6562,6563,0,7620,7361,7362,13285,13285,13285,42,6835,6563,6836,0,7620,7362,7621,13286,13286,13286,42,6837,6808,6807,0,7622,7595,7594,13287,13287,13287,42,6837,6807,6835,0,7622,7594,7620,13288,13288,13288,42,6838,6837,6835,0,7623,7622,7620,13289,13289,13289,42,6838,6835,6836,0,7623,7620,7621,13290,13290,13290,42,6839,6809,6808,0,7624,7596,7595,13291,13291,13291,42,6839,6808,6837,0,7624,7595,7622,13292,13292,13292,42,6840,6839,6837,0,7625,7624,7622,13293,13293,13293,42,6840,6837,6838,0,7625,7622,7623,13294,13294,13294,42,6749,6786,6840,0,7539,7574,7625,13295,13295,13295,42,6749,6840,6838,0,7539,7625,7623,13296,13296,13296,42,6752,6749,6838,0,7542,7539,7623,13297,13297,13297,42,6752,6838,6836,0,7542,7623,7621,13298,13298,13298,42,6564,6752,6836,0,7363,7542,7621,13299,13299,13299,42,6564,6836,6563,0,7363,7621,7362,13300,13300,13300,42,6843,6842,6841,0,7628,7627,7626,13301,13301,13301,42,6843,6841,6844,0,7628,7626,7629,13302,13302,13302,42,6846,6845,6842,0,7631,7630,7627,13303,13303,13303,42,6846,6842,6843,0,7631,7627,7628,13304,13304,13304,42,6848,6847,6845,0,7633,7632,7630,13305,13305,13305,42,6848,6845,6846,0,7633,7630,7631,13306,13306,13306,42,6850,6849,6847,0,7635,7634,7632,13307,13307,13307,42,6850,6847,6848,0,7635,7632,7633,13308,13308,13308,42,6850,6852,6851,0,7635,7637,7636,13309,13309,13309,42,6850,6851,6849,0,7635,7636,7634,13310,13310,13310,42,6853,6851,6852,0,7638,7636,7637,13311,13311,13311,42,6853,6852,6854,0,7638,7637,7639,13312,13312,13312,42,6856,6855,6853,0,7641,7640,7638,13313,13313,13313,42,6856,6853,6854,0,7641,7638,7639,13314,13314,13314,42,6858,6857,6855,0,7643,7642,7640,13315,13315,13315,42,6858,6855,6856,0,7643,7640,7641,13316,13316,13316,42,6859,6857,6858,0,7644,7642,7643,13317,13317,13317,42,6859,6858,6860,0,7644,7643,7645,13318,13318,13318,42,6860,6862,6861,0,7645,7647,7646,13319,13319,13319,42,6860,6861,6859,0,7645,7646,7644,13320,13320,13320,42,6865,6864,6863,0,7650,7649,7648,13321,13321,13321,42,6865,6863,6866,0,7650,7648,7651,13322,13322,13322,42,6867,6865,6866,0,7652,7650,7651,13323,13323,13323,42,6867,6866,6868,0,7652,7651,7653,13324,13324,13324,42,6869,6867,6868,0,7654,7652,7653,13325,13325,13325,42,6869,6868,6870,0,7654,7653,7655,13326,13326,13326,42,6871,6869,6870,0,7656,7654,7655,13327,13327,13327,42,6871,6870,6872,0,7656,7655,7657,13328,13328,13328,42,6874,6873,6871,0,7659,7658,7656,13329,13329,13329,42,6874,6871,6872,0,7659,7656,7657,13330,13330,13330,42,6877,6876,6875,0,7662,7661,7660,13331,13331,13331,42,6877,6875,6878,0,7662,7660,7663,13332,13332,13332,42,6880,6879,6876,0,7665,7664,7661,13333,13333,13333,42,6880,6876,6877,0,7665,7661,7662,13334,13334,13334,42,6882,6881,6879,0,7667,7666,7664,13335,13335,13335,42,6882,6879,6880,0,7667,7664,7665,13336,13336,13336,42,6844,6841,6881,0,7629,7626,7666,13337,13337,13337,42,6844,6881,6882,0,7629,7666,7667,13338,13338,13338,42,6878,6875,6873,0,7663,7660,7658,13339,13339,13339,42,6878,6873,6874,0,7663,7658,7659,13340,13340,13340,42,6791,6843,6844,0,7579,7628,7629,13341,13341,13341,42,6791,6844,6790,0,7579,7629,7578,13342,13342,13342,42,6774,6846,6843,0,7562,7631,7628,13343,13343,13343,42,6774,6843,6791,0,7562,7628,7579,13344,13344,13344,42,6775,6848,6846,0,7563,7633,7631,13345,13345,13345,42,6775,6846,6774,0,7563,7631,7562,13346,13346,13346,42,6834,6850,6848,0,7619,7635,7633,13347,13347,13347,42,6834,6848,6775,0,7619,7633,7563,13348,13348,13348,42,6852,6850,6834,0,7637,7635,7619,13349,13349,13349,42,6852,6834,6815,0,7637,7619,7602,13350,13350,13350,42,6854,6852,6815,0,7639,7637,7602,13351,13351,13351,42,6854,6815,6814,0,7639,7602,7601,13352,13352,13352,42,6818,6856,6854,0,7605,7641,7639,13353,13353,13353,42,6818,6854,6814,0,7605,7639,7601,13354,13354,13354,42,6793,6858,6856,0,7581,7643,7641,13355,13355,13355,42,6793,6856,6818,0,7581,7641,7605,13356,13356,13356,42,6781,6860,6858,0,7569,7645,7643,13357,13357,13357,42,6781,6858,6793,0,7569,7643,7581,13358,13358,13358,42,6781,6782,6862,0,7569,7570,7647,13359,13359,13359,42,6781,6862,6860,0,7569,7647,7645,13360,13360,13360,42,6782,6783,6863,0,7570,7571,7648,13361,13361,13361,42,6782,6863,6862,0,7570,7648,7647,13362,13362,13362,42,6866,6863,6783,0,7651,7648,7571,13363,13363,13363,42,6866,6783,6784,0,7651,7571,7572,13364,13364,13364,42,6868,6866,6784,0,7653,7651,7572,13365,13365,13365,42,6868,6784,6785,0,7653,7572,7573,13366,13366,13366,42,6870,6868,6785,0,7655,7653,7573,13367,13367,13367,42,6870,6785,6809,0,7655,7573,7596,13368,13368,13368,42,6872,6870,6809,0,7657,7655,7596,13369,13369,13369,42,6872,6809,6839,0,7657,7596,7624,13370,13370,13370,42,6874,6872,6839,0,7659,7657,7624,13371,13371,13371,42,6874,6839,6840,0,7659,7624,7625,13372,13372,13372,42,6787,6877,6878,0,7575,7662,7663,13373,13373,13373,42,6787,6878,6786,0,7575,7663,7574,13374,13374,13374,42,6788,6880,6877,0,7576,7665,7662,13375,13375,13375,42,6788,6877,6787,0,7576,7662,7575,13376,13376,13376,42,6789,6882,6880,0,7577,7667,7665,13377,13377,13377,42,6789,6880,6788,0,7577,7665,7576,13378,13378,13378,42,6790,6844,6882,0,7578,7629,7667,13379,13379,13379,42,6790,6882,6789,0,7578,7667,7577,13380,13380,13380,42,6786,6878,6874,0,7574,7663,7659,13381,13381,13381,42,6786,6874,6840,0,7574,7659,7625,13382,13382,13382,42,6883,6875,6876,0,7668,7660,7661,13383,13383,13383,42,6883,6876,6884,0,7668,7661,7669,13384,13384,13384,42,6886,6885,6865,0,7671,7670,7650,13385,13385,13385,42,6886,6865,6867,0,7671,7650,7652,13386,13386,13386,42,6885,6887,6864,0,7670,7672,7649,13387,13387,13387,42,6885,6864,6865,0,7670,7649,7650,13388,13388,13388,42,6888,6857,6859,0,7673,7642,7644,13389,13389,13389,42,6888,6859,6889,0,7673,7644,7674,13390,13390,13390,42,6890,6855,6857,0,7675,7640,7642,13391,13391,13391,42,6890,6857,6888,0,7675,7642,7673,13392,13392,13392,42,6891,6853,6855,0,7676,7638,7640,13393,13393,13393,42,6891,6855,6890,0,7676,7640,7675,13394,13394,13394,42,6891,6892,6851,0,7676,7677,7636,13395,13395,13395,42,6891,6851,6853,0,7676,7636,7638,13396,13396,13396,42,6894,6893,6845,0,7679,7678,7630,13397,13397,13397,42,6894,6845,6847,0,7679,7630,7632,13398,13398,13398,42,6895,6842,6845,0,7680,7627,7630,13399,13399,13399,42,6895,6845,6893,0,7680,7630,7678,13400,13400,13400,42,6897,6896,6892,0,7682,7681,7677,13401,13401,13401,42,6897,6892,6891,0,7682,7677,7676,13402,13402,13402,42,6897,6891,6890,0,7682,7676,7675,13403,13403,13403,42,6897,6890,6898,0,7682,7675,7683,13404,13404,13404,42,6861,6864,6887,0,7646,7649,7672,13405,13405,13405,42,6861,6887,6899,0,7646,7672,7684,13406,13406,13406,42,6900,6841,6842,0,7685,7626,7627,13407,13407,13407,42,6900,6842,6895,0,7685,7627,7680,13408,13408,13408,42,6901,6881,6841,0,7686,7666,7626,13409,13409,13409,42,6901,6841,6900,0,7686,7626,7685,13410,13410,13410,42,6902,6873,6875,0,7687,7658,7660,13411,13411,13411,42,6902,6875,6883,0,7687,7660,7668,13412,13412,13412,42,6904,6903,6888,0,7689,7688,7673,13413,13413,13413,42,6904,6888,6889,0,7689,7673,7674,13414,13414,13414,42,6887,6906,6905,0,7672,7691,7690,13415,13415,13415,42,6887,6905,6899,0,7672,7690,7684,13416,13416,13416,42,6906,6887,6885,0,7691,7672,7670,13417,13417,13417,42,6906,6885,6907,0,7691,7670,7692,13418,13418,13418,42,6907,6885,6886,0,7692,7670,7671,13419,13419,13419,42,6907,6886,6908,0,7692,7671,7693,13420,13420,13420,42,6909,6902,6883,0,7694,7687,7668,13421,13421,13421,42,6909,6883,6910,0,7694,7668,7695,13422,13422,13422,42,6910,6883,6884,0,7695,7668,7669,13423,13423,13423,42,6910,6884,6911,0,7695,7669,7696,13424,13424,13424,42,6901,6900,6912,0,7686,7685,7697,13425,13425,13425,42,6901,6912,6913,0,7686,7697,7698,13426,13426,13426,42,6912,6900,6895,0,7697,7685,7680,13427,13427,13427,42,6912,6895,6914,0,7697,7680,7699,13428,13428,13428,42,6914,6895,6893,0,7699,7680,7678,13429,13429,13429,42,6914,6893,6915,0,7699,7678,7700,13430,13430,13430,42,6916,6915,6893,0,7701,7700,7678,13431,13431,13431,42,6916,6893,6894,0,7701,7678,7679,13432,13432,13432,42,6881,6901,6917,0,7666,7686,7702,13433,13433,13433,42,6881,6917,6879,0,7666,7702,7664,13434,13434,13434,42,6879,6917,6884,0,7664,7702,7669,13435,13435,13435,42,6879,6884,6876,0,7664,7669,7661,13436,13436,13436,42,6917,6901,6913,0,7702,7686,7698,13437,13437,13437,42,6917,6913,6918,0,7702,7698,7703,13438,13438,13438,42,6884,6917,6918,0,7669,7702,7703,13439,13439,13439,42,6884,6918,6911,0,7669,7703,7696,13440,13440,13440,42,6867,6869,6919,0,7652,7654,7704,13441,13441,13441,42,6867,6919,6886,0,7652,7704,7671,13442,13442,13442,42,6886,6919,6920,0,7671,7704,7705,13443,13443,13443,42,6886,6920,6908,0,7671,7705,7693,13444,13444,13444,42,6921,6894,6847,0,7706,7679,7632,13445,13445,13445,42,6921,6847,6849,0,7706,7632,7634,13446,13446,13446,42,6892,6921,6849,0,7677,7706,7634,13447,13447,13447,42,6892,6849,6851,0,7677,7634,7636,13448,13448,13448,42,6896,6922,6921,0,7681,7707,7706,13449,13449,13449,42,6896,6921,6892,0,7681,7706,7677,13450,13450,13450,42,6923,6919,6869,0,7708,7704,7654,13451,13451,13451,42,6923,6869,6871,0,7708,7654,7656,13452,13452,13452,42,6923,6871,6873,0,7708,7656,7658,13453,13453,13453,42,6923,6873,6902,0,7708,7658,7687,13454,13454,13454,42,6924,6920,6919,0,7709,7705,7704,13455,13455,13455,42,6924,6919,6923,0,7709,7704,7708,13456,13456,13456,42,6924,6923,6902,0,7709,7708,7687,13457,13457,13457,42,6924,6902,6909,0,7709,7687,7694,13458,13458,13458,42,6898,6890,6888,0,7683,7675,7673,13459,13459,13459,42,6898,6888,6903,0,7683,7673,7688,13460,13460,13460,42,6922,6916,6894,0,7707,7701,7679,13461,13461,13461,42,6922,6894,6921,0,7707,7679,7706,13462,13462,13462,42,6922,6896,6897,0,7707,7681,7682,13463,13463,13463,42,6922,6897,6898,0,7707,7682,7683,13464,13464,13464,42,6926,6925,6914,0,7711,7710,7699,13465,13465,13465,42,6926,6914,6915,0,7711,7699,7700,13466,13466,13466,42,6916,6922,6898,0,7701,7707,7683,13467,13467,13467,42,6916,6898,6903,0,7701,7683,7688,13468,13468,13468,42,6905,6928,6927,0,7690,7713,7712,13469,13469,13469,42,6905,6927,6904,0,7690,7712,7689,13470,13470,13470,42,6906,6929,6928,0,7691,7714,7713,13471,13471,13471,42,6906,6928,6905,0,7691,7713,7690,13472,13472,13472,42,6929,6906,6907,0,7714,7691,7692,13473,13473,13473,42,6929,6907,6930,0,7714,7692,7715,13474,13474,13474,42,6930,6907,6908,0,7715,7692,7693,13475,13475,13475,42,6930,6908,6931,0,7715,7693,7716,13476,13476,13476,42,6931,6908,6920,0,7716,7693,7705,13477,13477,13477,42,6931,6920,6932,0,7716,7705,7717,13478,13478,13478,42,6932,6920,6924,0,7717,7705,7709,13479,13479,13479,42,6932,6924,6933,0,7717,7709,7718,13480,13480,13480,42,6924,6909,6934,0,7709,7694,7719,13481,13481,13481,42,6924,6934,6933,0,7709,7719,7718,13482,13482,13482,42,6934,6909,6910,0,7719,7694,7695,13483,13483,13483,42,6934,6910,6935,0,7719,7695,7720,13484,13484,13484,42,6910,6911,6936,0,7695,7696,7721,13485,13485,13485,42,6910,6936,6935,0,7695,7721,7720,13486,13486,13486,42,6911,6918,6937,0,7696,7703,7722,13487,13487,13487,42,6911,6937,6936,0,7696,7722,7721,13488,13488,13488,42,6918,6913,6938,0,7703,7698,7723,13489,13489,13489,42,6918,6938,6937,0,7703,7723,7722,13490,13490,13490,42,6913,6912,6939,0,7698,7697,7724,13491,13491,13491,42,6913,6939,6938,0,7698,7724,7723,13492,13492,13492,42,6925,6939,6912,0,7710,7724,7697,13493,13493,13493,42,6925,6912,6914,0,7710,7697,7699,13494,13494,13494,42,6941,6940,6926,0,7726,7725,7711,13495,13495,13495,42,6941,6926,6927,0,7726,7711,7712,13496,13496,13496,42,6941,6927,6928,0,7726,7712,7713,13497,13497,13497,42,6941,6928,6942,0,7726,7713,7727,13498,13498,13498,42,6943,6942,6928,0,7728,7727,7713,13499,13499,13499,42,6943,6928,6929,0,7728,7713,7714,13500,13500,13500,42,6929,6930,6944,0,7714,7715,7729,13501,13501,13501,42,6929,6944,6943,0,7714,7729,7728,13502,13502,13502,42,6930,6931,6945,0,7715,7716,7730,13503,13503,13503,42,6930,6945,6944,0,7715,7730,7729,13504,13504,13504,42,6931,6932,6946,0,7716,7717,7731,13505,13505,13505,42,6931,6946,6945,0,7716,7731,7730,13506,13506,13506,42,6932,6933,6947,0,7717,7718,7732,13507,13507,13507,42,6932,6947,6946,0,7717,7732,7731,13508,13508,13508,42,6947,6933,6934,0,7732,7718,7719,13509,13509,13509,42,6947,6934,6948,0,7732,7719,7733,13510,13510,13510,42,6948,6934,6935,0,7733,7719,7720,13511,13511,13511,42,6948,6935,6949,0,7733,7720,7734,13512,13512,13512,42,6935,6936,6950,0,7720,7721,7735,13513,13513,13513,42,6935,6950,6949,0,7720,7735,7734,13514,13514,13514,42,6936,6937,6951,0,7721,7722,7736,13515,13515,13515,42,6936,6951,6950,0,7721,7736,7735,13516,13516,13516,42,6937,6938,6952,0,7722,7723,7737,13517,13517,13517,42,6937,6952,6951,0,7722,7737,7736,13518,13518,13518,42,6938,6939,6953,0,7723,7724,7738,13519,13519,13519,42,6938,6953,6952,0,7723,7738,7737,13520,13520,13520,42,6940,6953,6939,0,7725,7738,7724,13521,13521,13521,42,6940,6939,6925,0,7725,7724,7710,13522,13522,13522,42,6925,6926,6940,0,7710,7711,7725,13523,13523,13523,42,6940,6941,6942,0,7725,7726,7727,13524,13524,13524,42,6940,6942,6953,0,7725,7727,7738,13525,13525,13525,42,6952,6953,6942,0,7737,7738,7727,13526,13526,13526,42,6952,6942,6943,0,7737,7727,7728,13527,13527,13527,42,6951,6952,6943,0,7736,7737,7728,13528,13528,13528,42,6951,6943,6944,0,7736,7728,7729,13529,13529,13529,42,6944,6945,6950,0,7729,7730,7735,13530,13530,13530,42,6944,6950,6951,0,7729,7735,7736,13531,13531,13531,42,6945,6946,6949,0,7730,7731,7734,13532,13532,13532,42,6945,6949,6950,0,7730,7734,7735,13533,13533,13533,42,6948,6949,6946,0,7733,7734,7731,13534,13534,13534,42,6948,6946,6947,0,7733,7731,7732,13535,13535,13535,42,6956,6955,6954,0,7741,7740,7739,13536,13536,13536,42,6956,6954,6957,0,7741,7739,7742,13537,13537,13537,42,6955,6959,6958,0,7740,7744,7743,13538,13538,13538,42,6955,6958,6954,0,7740,7743,7739,13539,13539,13539,42,6955,6956,6960,0,7740,7741,7745,13540,13540,13540,42,6955,6960,6961,0,7740,7745,7746,13541,13541,13541,42,6959,6955,6961,0,7744,7740,7746,13542,13542,13542,42,6959,6961,6962,0,7744,7746,7747,13543,13543,13543,42,6959,6964,6963,0,7744,7749,7748,13544,13544,13544,42,6959,6963,6958,0,7744,7748,7743,13545,13545,13545,42,6962,6965,6964,0,7747,7750,7749,13546,13546,13546,42,6962,6964,6959,0,7747,7749,7744,13547,13547,13547,42,6968,6967,6966,0,7753,7752,7751,13548,13548,13548,42,6968,6966,6969,0,7753,7751,7754,13549,13549,13549,42,6970,6968,6969,0,7755,7753,7754,13550,13550,13550,42,6970,6969,6971,0,7755,7754,7756,13551,13551,13551,42,6972,6966,6967,0,7757,7751,7752,13552,13552,13552,42,6972,6967,6973,0,7757,7752,7758,13553,13553,13553,42,6961,6960,6974,0,7746,7745,7759,13554,13554,13554,42,6961,6974,6975,0,7746,7759,7760,13555,13555,13555,42,6962,6961,6975,0,7747,7746,7760,13556,13556,13556,42,6962,6975,6976,0,7747,7760,7761,13557,13557,13557,42,6965,6962,6976,0,7750,7747,7761,13558,13558,13558,42,6965,6976,6977,0,7750,7761,7762,13559,13559,13559,42,6978,6965,6977,0,7763,7750,7762,13560,13560,13560,42,6978,6977,6979,0,7763,7762,7764,13561,13561,13561,42,6964,6965,6978,0,7749,7750,7763,13562,13562,13562,42,6964,6978,6980,0,7749,7763,7765,13563,13563,13563,42,6981,6963,6964,0,7766,7748,7749,13564,13564,13564,42,6981,6964,6980,0,7766,7749,7765,13565,13565,13565,42,6982,6972,6973,0,7767,7757,7758,13566,13566,13566,42,6982,6973,6983,0,7767,7758,7768,13567,13567,13567,42,6986,6985,6984,0,7771,7770,7769,13568,13568,13568,42,6986,6984,6987,0,7771,7769,7772,13569,13569,13569,42,6989,6988,6986,0,7774,7773,7771,13570,13570,13570,42,6989,6986,6987,0,7774,7771,7772,13571,13571,13571,42,6991,6990,6988,0,7776,7775,7773,13572,13572,13572,42,6991,6988,6989,0,7776,7773,7774,13573,13573,13573,42,6993,6992,6990,0,7778,7777,7775,13574,13574,13574,42,6993,6990,6991,0,7778,7775,7776,13575,13575,13575,42,6996,6995,6994,0,7781,7780,7779,13576,13576,13576,42,6996,6994,6997,0,7781,7779,7782,13577,13577,13577,42,6998,6994,6995,0,7783,7779,7780,13578,13578,13578,42,6998,6995,6458,0,7783,7780,7250,13579,13579,13579,42,6999,6990,6992,0,7784,7775,7777,13580,13580,13580,42,6999,6992,7000,0,7784,7777,7785,13581,13581,13581,42,7001,6988,6990,0,7786,7773,7775,13582,13582,13582,42,7001,6990,6999,0,7786,7775,7784,13583,13583,13583,42,7001,7002,6986,0,7786,7787,7771,13584,13584,13584,42,7001,6986,6988,0,7786,7771,7773,13585,13585,13585,42,6985,6986,7002,0,7770,7771,7787,13586,13586,13586,42,6985,7002,7003,0,7770,7787,7788,13587,13587,13587,42,7005,7004,6466,0,7790,7789,7263,13588,13588,13588,42,7005,6466,6467,0,7790,7263,7264,13589,13589,13589,42,6463,6466,7004,0,7260,7263,7789,13590,13590,13590,42,6463,7004,7006,0,7260,7789,7791,13591,13591,13591,42,6462,6463,7006,0,7259,7260,7791,13592,13592,13592,42,6462,7006,7007,0,7259,7791,7792,13593,13593,13593,42,7008,6470,6462,0,7793,7267,7259,13594,13594,13594,42,7008,6462,7007,0,7793,7259,7792,13595,13595,13595,42,6470,7008,7009,0,7267,7793,7794,13596,13596,13596,42,6470,7009,6472,0,7267,7794,7269,13597,13597,13597,42,6975,6974,7010,0,7760,7759,7795,13598,13598,13598,42,6975,7010,7011,0,7760,7795,7796,13599,13599,13599,42,6976,6975,7011,0,7761,7760,7796,13600,13600,13600,42,6976,7011,7012,0,7761,7796,7797,13601,13601,13601,42,6977,6976,7012,0,7762,7761,7797,13602,13602,13602,42,6977,7012,7013,0,7762,7797,7798,13603,13603,13603,42,6979,6977,7013,0,7764,7762,7798,13604,13604,13604,42,6979,7013,7014,0,7764,7798,7799,13605,13605,13605,42,7016,7015,6477,0,7801,7800,7274,13606,13606,13606,42,7016,6477,7017,0,7801,7274,7802,13607,13607,13607,42,6472,7009,7017,0,7269,7794,7802,13608,13608,13608,42,6472,7017,6477,0,7269,7802,7274,13609,13609,13609,42,7018,6978,6979,0,7803,7763,7764,13610,13610,13610,42,7018,6979,3479,0,7803,7764,7804,13611,13611,13611,42,249,7019,6981,0,7806,7805,7766,13612,13612,13612,42,249,6981,7020,0,7806,7766,7807,13613,13613,13613,42,7021,6983,7019,0,7808,7768,7805,13614,13614,13614,42,7021,7019,249,0,7808,7805,7806,13615,13615,13615,42,6963,6981,7019,0,7748,7766,7805,13616,13616,13616,42,6963,7019,7022,0,7748,7805,7809,13617,13617,13617,42,7022,7019,6983,0,7809,7805,7768,13618,13618,13618,42,7022,6983,6973,0,7809,7768,7758,13619,13619,13619,42,6958,6963,7022,0,7743,7748,7809,13620,13620,13620,42,6958,7022,7023,0,7743,7809,7810,13621,13621,13621,42,7023,7022,6973,0,7810,7809,7758,13622,13622,13622,42,7023,6973,6967,0,7810,7758,7752,13623,13623,13623,42,6954,6958,7023,0,7739,7743,7810,13624,13624,13624,42,6954,7023,7024,0,7739,7810,7811,13625,13625,13625,42,7024,7023,6967,0,7811,7810,7752,13626,13626,13626,42,7024,6967,6968,0,7811,7752,7753,13627,13627,13627,42,6957,6954,7024,0,7742,7739,7811,13628,13628,13628,42,6957,7024,7025,0,7742,7811,7812,13629,13629,13629,42,7025,7024,6968,0,7812,7811,7753,13630,13630,13630,42,7025,6968,6970,0,7812,7753,7755,13631,13631,13631,42,6992,6993,7026,0,7777,7778,7813,13632,13632,13632,42,6992,7026,7027,0,7777,7813,7814,13633,13633,13633,42,7027,7026,6997,0,7814,7813,7782,13634,13634,13634,42,7027,6997,6994,0,7814,7782,7779,13635,13635,13635,42,7000,6992,7027,0,7785,7777,7814,13636,13636,13636,42,7000,7027,7028,0,7785,7814,7815,13637,13637,13637,42,7028,7027,6994,0,7815,7814,7779,13638,13638,13638,42,7028,6994,6998,0,7815,7779,7783,13639,13639,13639,42,6453,7005,6467,0,7243,7790,7264,13640,13640,13640,42,6453,6467,6452,0,7243,7264,7242,13641,13641,13641,42,7029,6457,6458,0,7816,7249,7250,13642,13642,13642,42,7029,6458,6995,0,7816,7250,7780,13643,13643,13643,42,6457,7029,7005,0,7249,7816,7790,13644,13644,13644,42,6457,7005,6453,0,7249,7790,7243,13645,13645,13645,42,7004,7005,7029,0,7789,7790,7816,13646,13646,13646,42,7004,7029,7030,0,7789,7816,7817,13647,13647,13647,42,7006,7004,7030,0,7791,7789,7817,13648,13648,13648,42,7006,7030,7031,0,7791,7817,7818,13649,13649,13649,42,7007,7006,7031,0,7792,7791,7818,13650,13650,13650,42,7007,7031,7032,0,7792,7818,7819,13651,13651,13651,42,7008,7007,7032,0,7793,7792,7819,13652,13652,13652,42,7008,7032,7033,0,7793,7819,7820,13653,13653,13653,42,7009,7008,7033,0,7794,7793,7820,13654,13654,13654,42,7009,7033,7034,0,7794,7820,7821,13655,13655,13655,42,7034,7035,7017,0,7821,7822,7802,13656,13656,13656,42,7034,7017,7009,0,7821,7802,7794,13657,13657,13657,42,7030,7029,6995,0,7817,7816,7780,13658,13658,13658,42,7030,6995,6996,0,7817,7780,7781,13659,13659,13659,42,7020,6981,6980,0,7807,7766,7765,13660,13660,13660,42,7020,6980,3495,0,7807,7765,7823,13661,13661,13661,42,6978,7018,3495,0,7763,7803,7823,13662,13662,13662,42,6978,3495,6980,0,7763,7823,7765,13663,13663,13663,42,6454,6999,7000,0,7245,7784,7785,13664,13664,13664,42,6454,7000,6459,0,7245,7785,7253,13665,13665,13665,42,7001,6999,6454,0,7786,7784,7245,13666,13666,13666,42,7001,6454,6455,0,7786,7245,7246,13667,13667,13667,42,7002,7001,6455,0,7787,7786,7246,13668,13668,13668,42,7002,6455,7036,0,7787,7246,7824,13669,13669,13669,42,7036,7037,7003,0,7824,7825,7788,13670,13670,13670,42,7036,7003,7002,0,7824,7788,7787,13671,13671,13671,42,6459,7000,7028,0,7253,7785,7815,13672,13672,13672,42,6459,7028,6460,0,7253,7815,7255,13673,13673,13673,42,7036,6372,7038,0,7824,7149,7826,13674,13674,13674,42,7036,7038,7037,0,7824,7826,7825,13675,13675,13675,42,6461,6998,6458,0,7258,7783,7250,13676,13676,13676,42,6461,6458,6456,0,7258,7250,7247,13677,13677,13677,42,6460,7028,6998,0,7255,7815,7783,13678,13678,13678,42,6460,6998,6461,0,7255,7783,7258,13679,13679,13679,42,6539,6984,6985,0,7338,7769,7770,13680,13680,13680,42,6539,6985,6538,0,7338,7770,7337,13681,13681,13681,42,7037,7038,6540,0,7825,7826,7339,13682,13682,13682,42,7037,6540,6536,0,7825,7339,7335,13683,13683,13683,42,6538,6985,7003,0,7337,7770,7788,13684,13684,13684,42,6538,7003,6537,0,7337,7788,7336,13685,13685,13685,42,6537,7003,7037,0,7336,7788,7825,13686,13686,13686,42,6537,7037,6536,0,7336,7825,7335,13687,13687,13687,42,7011,7010,7039,0,7796,7795,7827,13688,13688,13688,42,7011,7039,7040,0,7796,7827,7828,13689,13689,13689,42,7012,7011,7040,0,7797,7796,7828,13690,13690,13690,42,7012,7040,7041,0,7797,7828,7829,13691,13691,13691,42,7013,7012,7041,0,7798,7797,7829,13692,13692,13692,42,7013,7041,7042,0,7798,7829,7830,13693,13693,13693,42,7014,7013,7042,0,7799,7798,7830,13694,13694,13694,42,7014,7042,7043,0,7799,7830,7831,13695,13695,13695,42,7044,270,7014,0,7833,7832,7799,13696,13696,13696,42,7044,7014,7043,0,7833,7799,7831,13697,13697,13697,42,6478,7038,6372,0,7275,7826,7149,13698,13698,13698,42,6478,6372,6373,0,7275,7149,7150,13699,13699,13699,42,7038,6478,6511,0,7826,7275,7310,13700,13700,13700,42,7038,6511,6540,0,7826,7310,7339,13701,13701,13701,42,7036,6455,6417,0,7824,7246,7231,13702,13702,13702,42,7036,6417,6372,0,7824,7231,7149,13703,13703,13703,42,6612,6611,6575,0,7410,7409,7374,13704,13704,13704,42,6612,6575,6636,0,7410,7374,7433,13705,13705,13705,42,6799,6768,6758,0,7587,7556,7547,13706,13706,13706,42,6799,6758,6797,0,7587,7547,7585,13707,13707,13707,42,6797,6613,6612,0,7585,7411,7410,13708,13708,13708,42,6797,6612,6799,0,7585,7410,7587,13709,13709,13709,42,6799,6612,6636,0,7587,7410,7433,13710,13710,13710,42,6799,6636,6798,0,7587,7433,7586,13711,13711,13711,42,6798,6636,6637,0,7586,7433,7434,13712,13712,13712,42,6798,6637,6830,0,7586,7434,7615,13713,13713,13713,42,6769,6798,6830,0,7557,7586,7615,13714,13714,13714,42,6769,6830,6816,0,7557,7615,7603,13715,13715,13715,42,6586,266,271,0,7385,275,300,13716,13716,13716,42,6586,271,7045,0,7385,300,7834,13717,13717,13717,42,7046,6640,6641,0,7835,7437,7438,13718,13718,13718,42,7046,6641,7047,0,7835,7438,7836,13719,13719,13719,42,6641,6601,7048,0,7438,7399,7837,13720,13720,13720,42,6641,7048,7047,0,7438,7837,7836,13721,13721,13721,42,6601,6602,7049,0,7399,7400,7838,13722,13722,13722,42,6601,7049,7048,0,7399,7838,7837,13723,13723,13723,42,6649,6586,7045,0,7445,7385,7834,13724,13724,13724,42,6649,7045,7050,0,7445,7834,7839,13725,13725,13725,42,6602,6649,7050,0,7400,7445,7839,13726,13726,13726,42,6602,7050,7049,0,7400,7839,7838,13727,13727,13727,42,7053,7052,7051,0,7840,302,301,13728,13728,13728,42,7053,7051,7054,0,7840,301,7841,13729,13729,13729,42,7054,7056,7055,0,7841,7843,7842,13730,13730,13730,42,7054,7055,7053,0,7841,7842,7840,13731,13731,13731,42,7056,7058,7057,0,7843,7845,7844,13732,13732,13732,42,7056,7057,7055,0,7843,7844,7842,13733,13733,13733,42,7058,7060,7059,0,7845,7847,7846,13734,13734,13734,42,7058,7059,7057,0,7845,7846,7844,13735,13735,13735,42,7061,7059,7060,0,7848,7846,7847,13736,13736,13736,42,7061,7060,7062,0,7848,7847,7849,13737,13737,13737,42,7064,7063,7061,0,7851,7850,7848,13738,13738,13738,42,7064,7061,7062,0,7851,7848,7849,13739,13739,13739,42,7066,7065,7064,0,7853,7852,7851,13740,13740,13740,42,7066,7064,7062,0,7853,7851,7849,13741,13741,13741,42,7062,7060,7067,0,7849,7847,7854,13742,13742,13742,42,7062,7067,7066,0,7849,7854,7853,13743,13743,13743,42,7068,7067,7060,0,7855,7854,7847,13744,13744,13744,42,7068,7060,7058,0,7855,7847,7845,13745,13745,13745,42,7069,7068,7058,0,7856,7855,7845,13746,13746,13746,42,7069,7058,7056,0,7856,7845,7843,13747,13747,13747,42,7070,7069,7056,0,7857,7856,7843,13748,13748,13748,42,7070,7056,7054,0,7857,7843,7841,13749,13749,13749,42,7054,7051,3528,0,7841,301,303,13750,13750,13750,42,7054,3528,7070,0,7841,303,7857,13751,13751,13751,42,7071,7061,7063,0,7858,7848,7850,13752,13752,13752,42,7071,7063,7072,0,7858,7850,7859,13753,13753,13753,42,7073,7059,7061,0,7860,7846,7848,13754,13754,13754,42,7073,7061,7071,0,7860,7848,7858,13755,13755,13755,42,7073,7074,7057,0,7860,7861,7844,13756,13756,13756,42,7073,7057,7059,0,7860,7844,7846,13757,13757,13757,42,7055,7057,7074,0,7842,7844,7861,13758,13758,13758,42,7055,7074,7075,0,7842,7861,7862,13759,13759,13759,42,7053,7055,7075,0,7840,7842,7862,13760,13760,13760,42,7053,7075,7076,0,7840,7862,7863,13761,13761,13761,42,7076,7077,7052,0,7863,304,302,13762,13762,13762,42,7076,7052,7053,0,7863,302,7840,13763,13763,13763,42,7072,7046,7047,0,7859,7835,7836,13764,13764,13764,42,7072,7047,7071,0,7859,7836,7858,13765,13765,13765,42,7071,7047,7048,0,7858,7836,7837,13766,13766,13766,42,7071,7048,7073,0,7858,7837,7860,13767,13767,13767,42,7074,7073,7048,0,7861,7860,7837,13768,13768,13768,42,7074,7048,7049,0,7861,7837,7838,13769,13769,13769,42,7075,7074,7049,0,7862,7861,7838,13770,13770,13770,42,7075,7049,7050,0,7862,7838,7839,13771,13771,13771,42,7076,7075,7050,0,7863,7862,7839,13772,13772,13772,42,7076,7050,7045,0,7863,7839,7834,13773,13773,13773,42,7045,271,7077,0,7834,300,304,13774,13774,13774,42,7045,7077,7076,0,7834,304,7863,13775,13775,13775,42,7078,7065,7066,0,7864,7852,7853,13776,13776,13776,42,7078,7066,7079,0,7864,7853,7865,13777,13777,13777,42,7066,7067,7080,0,7853,7854,7866,13778,13778,13778,42,7066,7080,7079,0,7853,7866,7865,13779,13779,13779,42,7067,7068,7081,0,7854,7855,7867,13780,13780,13780,42,7067,7081,7080,0,7854,7867,7866,13781,13781,13781,42,7068,7069,7082,0,7855,7856,7868,13782,13782,13782,42,7068,7082,7081,0,7855,7868,7867,13783,13783,13783,42,7069,7070,7083,0,7856,7857,7869,13784,13784,13784,42,7069,7083,7082,0,7856,7869,7868,13785,13785,13785,42,250,7083,7070,0,305,7869,7857,13786,13786,13786,42,250,7070,3528,0,305,7857,303,13787,13787,13787,42,7084,6368,6369,0,7870,7145,7146,13788,13788,13788,42,7084,6369,7085,0,7870,7146,7871,13789,13789,13789,42,7086,6643,6642,0,7872,7440,7439,13790,13790,13790,42,7086,6642,7087,0,7872,7439,7873,13791,13791,13791,42,7085,6369,6643,0,7871,7146,7440,13792,13792,13792,42,7085,6643,7086,0,7871,7440,7872,13793,13793,13793,42,7088,6644,6368,0,7874,7441,7145,13794,13794,13794,42,7088,6368,7084,0,7874,7145,7870,13795,13795,13795,42,7089,6645,6644,0,7875,7442,7441,13796,13796,13796,42,7089,6644,7088,0,7875,7441,7874,13797,13797,13797,42,7090,6646,6645,0,7876,7443,7442,13798,13798,13798,42,7090,6645,7089,0,7876,7442,7875,13799,13799,13799,42,7091,6647,6646,0,306,283,7443,13800,13800,13800,42,7091,6646,7090,0,306,7443,7876,13801,13801,13801,42,7094,7093,7092,0,7879,7878,7877,13802,13802,13802,42,7094,7092,7095,0,7879,7877,7880,13803,13803,13803,42,7098,7097,7096,0,7883,7882,7881,13804,13804,13804,42,7098,7096,7099,0,7883,7881,7884,13805,13805,13805,42,7095,7101,7100,0,7880,7886,7885,13806,13806,13806,42,7095,7100,7094,0,7880,7885,7879,13807,13807,13807,42,7099,7103,7102,0,7884,7888,7887,13808,13808,13808,42,7099,7102,7098,0,7884,7887,7883,13809,13809,13809,42,7103,7105,7104,0,7888,7890,7889,13810,13810,13810,42,7103,7104,7102,0,7888,7889,7887,13811,13811,13811,42,7106,7100,7101,0,7891,7885,7886,13812,13812,13812,42,7106,7101,7107,0,7891,7886,7892,13813,13813,13813,42,7097,7090,7089,0,7882,7876,7875,13814,13814,13814,42,7097,7089,7096,0,7882,7875,7881,13815,13815,13815,42,7093,7088,7084,0,7878,7874,7870,13816,13816,13816,42,7093,7084,7092,0,7878,7870,7877,13817,13817,13817,42,272,7091,7090,0,307,306,7876,13818,13818,13818,42,272,7090,7097,0,307,7876,7882,13819,13819,13819,42,272,7097,7098,0,307,7882,7883,13820,13820,13820,42,272,7098,7108,0,307,7883,308,13821,13821,13821,42,254,7108,7098,0,309,308,7883,13822,13822,13822,42,254,7098,7102,0,309,7883,7887,13823,13823,13823,42,254,7102,7104,0,309,7887,7889,13824,13824,13824,42,254,7104,240,0,309,7889,310,13825,13825,13825,42,7092,7084,7085,0,7877,7870,7871,13826,13826,13826,42,7092,7085,7109,0,7877,7871,7893,13827,13827,13827,42,7109,7085,7086,0,7893,7871,7872,13828,13828,13828,42,7109,7086,7110,0,7893,7872,7894,13829,13829,13829,42,7095,7092,7109,0,7880,7877,7893,13830,13830,13830,42,7095,7109,7111,0,7880,7893,7895,13831,13831,13831,42,7111,7109,7110,0,7895,7893,7894,13832,13832,13832,42,7111,7110,7112,0,7895,7894,7896,13833,13833,13833,42,7101,7095,7111,0,7886,7880,7895,13834,13834,13834,42,7101,7111,7113,0,7886,7895,7897,13835,13835,13835,42,7113,7111,7112,0,7897,7895,7896,13836,13836,13836,42,7113,7112,7114,0,7897,7896,7898,13837,13837,13837,42,7107,7101,7113,0,7892,7886,7897,13838,13838,13838,42,7107,7113,7115,0,7892,7897,7899,13839,13839,13839,42,7115,7113,7114,0,7899,7897,7898,13840,13840,13840,42,7115,7114,7116,0,7899,7898,7900,13841,13841,13841,42,7110,7086,7087,0,7894,7872,7873,13842,13842,13842,42,7110,7087,7117,0,7894,7873,7901,13843,13843,13843,42,7112,7110,7117,0,7896,7894,7901,13844,13844,13844,42,7112,7117,7118,0,7896,7901,7902,13845,13845,13845,42,7114,7112,7118,0,7898,7896,7902,13846,13846,13846,42,7114,7118,7119,0,7898,7902,7903,13847,13847,13847,42,7116,7114,7119,0,7900,7898,7903,13848,13848,13848,42,7116,7119,7120,0,7900,7903,7904,13849,13849,13849,42,7096,7089,7088,0,7881,7875,7874,13850,13850,13850,42,7096,7088,7093,0,7881,7874,7878,13851,13851,13851,42,7099,7096,7093,0,7884,7881,7878,13852,13852,13852,42,7099,7093,7094,0,7884,7878,7879,13853,13853,13853,42,7103,7099,7094,0,7888,7884,7879,13854,13854,13854,42,7103,7094,7100,0,7888,7879,7885,13855,13855,13855,42,7105,7103,7100,0,7890,7888,7885,13856,13856,13856,42,7105,7100,7106,0,7890,7885,7891,13857,13857,13857,42,7121,240,7104,0,311,310,7889,13858,13858,13858,42,7121,7104,7122,0,311,7889,7905,13859,13859,13859,42,7122,7104,7105,0,7905,7889,7890,13860,13860,13860,42,7122,7105,7123,0,7905,7890,7906,13861,13861,13861,42,7123,7105,7106,0,7906,7890,7891,13862,13862,13862,42,7123,7106,7124,0,7906,7891,7907,13863,13863,13863,42,7124,7106,7107,0,7907,7891,7892,13864,13864,13864,42,7124,7107,7125,0,7907,7892,7908,13865,13865,13865,42,7125,7107,7115,0,7908,7892,7899,13866,13866,13866,42,7125,7115,7126,0,7908,7899,7909,13867,13867,13867,42,7126,7115,7116,0,7909,7899,7900,13868,13868,13868,42,7126,7116,7127,0,7909,7900,7910,13869,13869,13869,42,7127,7116,7120,0,7910,7900,7904,13870,13870,13870,42,7127,7120,7128,0,7910,7904,7911,13871,13871,13871,42,7087,6642,6640,0,7873,7439,7437,13872,13872,13872,42,7087,6640,7046,0,7873,7437,7835,13873,13873,13873,42,7117,7087,7046,0,7901,7873,7835,13874,13874,13874,42,7117,7046,7072,0,7901,7835,7859,13875,13875,13875,42,7118,7117,7072,0,7902,7901,7859,13876,13876,13876,42,7118,7072,7063,0,7902,7859,7850,13877,13877,13877,42,7119,7118,7063,0,7903,7902,7850,13878,13878,13878,42,7119,7063,7064,0,7903,7850,7851,13879,13879,13879,42,7120,7119,7064,0,7904,7903,7851,13880,13880,13880,42,7120,7064,7065,0,7904,7851,7852,13881,13881,13881,42,7128,7120,7065,0,7911,7904,7852,13882,13882,13882,42,7128,7065,7078,0,7911,7852,7864,13883,13883,13883,42,6510,6490,7040,0,7309,7287,7828,13884,13884,13884,42,6510,7040,7039,0,7309,7828,7827,13885,13885,13885,42,6490,6488,7041,0,7287,7285,7829,13886,13886,13886,42,6490,7041,7040,0,7287,7829,7828,13887,13887,13887,42,6488,6485,7042,0,7285,7282,7830,13888,13888,13888,42,6488,7042,7041,0,7285,7830,7829,13889,13889,13889,42,6485,6508,7043,0,7282,7307,7831,13890,13890,13890,42,6485,7043,7042,0,7282,7831,7830,13891,13891,13891,42,6508,6496,7129,0,7307,7295,7912,13892,13892,13892,42,6508,7129,7043,0,7307,7912,7831,13893,13893,13893,42,6496,6497,251,0,7295,7296,7913,13894,13894,13894,42,6496,251,7129,0,7295,7913,7912,13895,13895,13895,42,6510,7039,6539,0,7309,7827,7338,13896,13896,13896,42,6510,6539,6509,0,7309,7338,7308,13897,13897,13897,42,6960,6989,6987,0,7745,7774,7772,13898,13898,13898,42,6960,6987,6974,0,7745,7772,7759,13899,13899,13899,42,6956,6991,6989,0,7741,7776,7774,13900,13900,13900,42,6956,6989,6960,0,7741,7774,7745,13901,13901,13901,42,6957,6993,6991,0,7742,7778,7776,13902,13902,13902,42,6957,6991,6956,0,7742,7776,7741,13903,13903,13903,42,6971,6996,6997,0,7756,7781,7782,13904,13904,13904,42,6971,6997,6970,0,7756,7782,7755,13905,13905,13905,42,6987,6984,7010,0,7772,7769,7795,13906,13906,13906,42,6987,7010,6974,0,7772,7795,7759,13907,13907,13907,42,6993,6957,7025,0,7778,7742,7812,13908,13908,13908,42,6993,7025,7026,0,7778,7812,7813,13909,13909,13909,42,7026,7025,6970,0,7813,7812,7755,13910,13910,13910,42,7026,6970,6997,0,7813,7755,7782,13911,13911,13911,42,7031,7030,6996,0,7818,7817,7781,13912,13912,13912,42,7031,6996,6971,0,7818,7781,7756,13913,13913,13913,42,6971,6969,7032,0,7756,7754,7819,13914,13914,13914,42,6971,7032,7031,0,7756,7819,7818,13915,13915,13915,42,7033,7032,6969,0,7820,7819,7754,13916,13916,13916,42,7033,6969,6966,0,7820,7754,7751,13917,13917,13917,42,7034,7033,6966,0,7821,7820,7751,13918,13918,13918,42,7034,6966,6972,0,7821,7751,7757,13919,13919,13919,42,7035,7034,6972,0,7822,7821,7757,13920,13920,13920,42,7035,6972,6982,0,7822,7757,7767,13921,13921,13921,42,7130,7035,6982,0,7914,7822,7767,13922,13922,13922,42,7130,6982,273,0,7914,7767,7915,13923,13923,13923,42,6984,6539,7039,0,7769,7338,7827,13924,13924,13924,42,6984,7039,7010,0,7769,7827,7795,13925,13925,13925,42,7131,6464,6465,0,7916,7261,7262,13926,13926,13926,42,7131,6465,7132,0,7916,7262,7917,13927,13927,13927,42,7133,6468,6469,0,7918,7265,7266,13928,13928,13928,42,7133,6469,7134,0,7918,7266,7919,13929,13929,13929,42,7134,6469,6464,0,7919,7266,7261,13930,13930,13930,42,7134,6464,7131,0,7919,7261,7916,13931,13931,13931,42,7136,274,7135,0,7922,7921,7920,13932,13932,13932,42,7136,7135,6476,0,7922,7920,7273,13933,13933,13933,42,7137,7132,6465,0,7923,7917,7262,13934,13934,13934,42,7137,6465,6471,0,7923,7262,7268,13935,13935,13935,42,7138,7137,6471,0,7924,7923,7268,13936,13936,13936,42,7138,6471,6473,0,7924,7268,7270,13937,13937,13937,42,7140,7139,6474,0,7926,7925,7271,13938,13938,13938,42,7140,6474,6475,0,7926,7271,7272,13939,13939,13939,42,7140,6475,6468,0,7926,7272,7265,13940,13940,13940,42,7140,6468,7133,0,7926,7265,7918,13941,13941,13941,42,6476,7135,7138,0,7273,7920,7924,13942,13942,13942,42,6476,7138,6473,0,7273,7924,7270,13943,13943,13943,42,7139,7141,6545,0,7925,7927,7344,13944,13944,13944,42,7139,6545,6474,0,7925,7344,7271,13945,13945,13945,42,7141,7142,6574,0,7927,7928,7373,13946,13946,13946,42,7141,6574,6545,0,7927,7373,7344,13947,13947,13947,42,7142,7143,6681,0,7928,7929,7477,13948,13948,13948,42,7142,6681,6574,0,7928,7477,7373,13949,13949,13949,42,7144,6682,6683,0,7930,7478,7479,13950,13950,13950,42,7144,6683,7145,0,7930,7479,7931,13951,13951,13951,42,6684,7146,7145,0,7480,7932,7931,13952,13952,13952,42,6684,7145,6683,0,7480,7931,7479,13953,13953,13953,42,6684,6685,7147,0,7480,7481,7933,13954,13954,13954,42,6684,7147,7146,0,7480,7933,7932,13955,13955,13955,42,7143,7147,6685,0,7929,7933,7481,13956,13956,13956,42,7143,6685,6681,0,7929,7481,7477,13957,13957,13957,42,7150,7149,7148,0,7936,7935,7934,13958,13958,13958,42,7150,7148,7151,0,7936,7934,7937,13959,13959,13959,42,7154,7153,7152,0,7940,7939,7938,13960,13960,13960,42,7154,7152,7155,0,7940,7938,7941,13961,13961,13961,42,7148,7149,7155,0,7934,7935,7941,13962,13962,13962,42,7148,7155,7152,0,7934,7941,7938,13963,13963,13963,42,7157,3610,7156,0,7944,7943,7942,13964,13964,13964,42,7157,7156,7158,0,7944,7942,7945,13965,13965,13965,42,7159,7150,7151,0,7946,7936,7937,13966,13966,13966,42,7159,7151,7160,0,7946,7937,7947,13967,13967,13967,42,7161,7159,7160,0,7948,7946,7947,13968,13968,13968,42,7161,7160,7162,0,7948,7947,7949,13969,13969,13969,42,7165,7164,7163,0,7952,7951,7950,13970,13970,13970,42,7165,7163,7166,0,7952,7950,7953,13971,13971,13971,42,7165,7166,7153,0,7952,7953,7939,13972,13972,13972,42,7165,7153,7154,0,7952,7939,7940,13973,13973,13973,42,7156,7161,7162,0,7942,7948,7949,13974,13974,13974,42,7156,7162,7158,0,7942,7949,7945,13975,13975,13975,42,7164,7168,7167,0,7951,7955,7954,13976,13976,13976,42,7164,7167,7163,0,7951,7954,7950,13977,13977,13977,42,7168,7170,7169,0,7955,7957,7956,13978,13978,13978,42,7168,7169,7167,0,7955,7956,7954,13979,13979,13979,42,7170,7172,7171,0,7957,7959,7958,13980,13980,13980,42,7170,7171,7169,0,7957,7958,7956,13981,13981,13981,42,7175,7174,7173,0,7962,7961,7960,13982,13982,13982,42,7175,7173,7176,0,7962,7960,7963,13983,13983,13983,42,7177,7175,7176,0,7964,7962,7963,13984,13984,13984,42,7177,7176,7178,0,7964,7963,7965,13985,13985,13985,42,7179,7177,7178,0,7966,7964,7965,13986,13986,13986,42,7179,7178,7180,0,7966,7965,7967,13987,13987,13987,42,7172,7179,7180,0,7959,7966,7967,13988,13988,13988,42,7172,7180,7171,0,7959,7967,7958,13989,13989,13989,42,7183,7182,7181,0,7970,7969,7968,13990,13990,13990,42,7183,7181,7184,0,7970,7968,7971,13991,13991,13991,42,7187,7186,7185,0,7974,7973,7972,13992,13992,13992,42,7187,7185,7188,0,7974,7972,7975,13993,13993,13993,42,7182,7188,7185,0,7969,7975,7972,13994,13994,13994,42,7182,7185,7181,0,7969,7972,7968,13995,13995,13995,42,7190,252,7189,0,7978,7977,7976,13996,13996,13996,42,7190,7189,7191,0,7978,7976,7979,13997,13997,13997,42,7192,7183,7184,0,7980,7970,7971,13998,13998,13998,42,7192,7184,7193,0,7980,7971,7981,13999,13999,13999,42,7194,7192,7193,0,7982,7980,7981,14000,14000,14000,42,7194,7193,7195,0,7982,7981,7983,14001,14001,14001,42,7198,7197,7196,0,7986,7985,7984,14002,14002,14002,42,7198,7196,7199,0,7986,7984,7987,14003,14003,14003,42,7199,7196,7186,0,7987,7984,7973,14004,14004,14004,42,7199,7186,7187,0,7987,7973,7974,14005,14005,14005,42,7191,7194,7195,0,7979,7982,7983,14006,14006,14006,42,7191,7195,7190,0,7979,7983,7978,14007,14007,14007,42,7198,7201,7200,0,7986,7989,7988,14008,14008,14008,42,7198,7200,7197,0,7986,7988,7985,14009,14009,14009,42,7201,7203,7202,0,7989,7991,7990,14010,14010,14010,42,7201,7202,7200,0,7989,7990,7988,14011,14011,14011,42,7203,7205,7204,0,7991,7993,7992,14012,14012,14012,42,7203,7204,7202,0,7991,7992,7990,14013,14013,14013,42,7208,7207,7206,0,7996,7995,7994,14014,14014,14014,42,7208,7206,7209,0,7996,7994,7997,14015,14015,14015,42,7210,7208,7209,0,7998,7996,7997,14016,14016,14016,42,7210,7209,7211,0,7998,7997,7999,14017,14017,14017,42,7212,7210,7211,0,8000,7998,7999,14018,14018,14018,42,7212,7211,7213,0,8000,7999,8001,14019,14019,14019,42,7205,7212,7213,0,7993,8000,8001,14020,14020,14020,42,7205,7213,7204,0,7993,8001,7992,14021,14021,14021,42,3667,7215,7214,0,8004,8003,8002,14022,14022,14022,42,3667,7214,3666,0,8004,8002,8005,14023,14023,14023,42,7217,7216,3666,0,8007,8006,8005,14024,14024,14024,42,7217,3666,7214,0,8007,8005,8002,14025,14025,14025,42,7219,7218,7182,0,8009,8008,7969,14026,14026,14026,42,7219,7182,7183,0,8009,7969,7970,14027,14027,14027,42,7220,7187,7188,0,8010,7974,7975,14028,14028,14028,42,7220,7188,7221,0,8010,7975,8011,14029,14029,14029,42,7188,7182,7218,0,7975,7969,8008,14030,14030,14030,42,7188,7218,7221,0,7975,8008,8011,14031,14031,14031,42,7183,7192,7222,0,7970,7980,8012,14032,14032,14032,42,7183,7222,7219,0,7970,8012,8009,14033,14033,14033,42,7192,7194,7223,0,7980,7982,8013,14034,14034,14034,42,7192,7223,7222,0,7980,8013,8012,14035,14035,14035,42,7224,7198,7199,0,8014,7986,7987,14036,14036,14036,42,7224,7199,7225,0,8014,7987,8015,14037,14037,14037,42,7225,7199,7187,0,8015,7987,7974,14038,14038,14038,42,7225,7187,7220,0,8015,7974,8010,14039,14039,14039,42,7194,7191,7226,0,7982,7979,8016,14040,14040,14040,42,7194,7226,7223,0,7982,8016,8013,14041,14041,14041,42,7227,7201,7198,0,8017,7989,7986,14042,14042,14042,42,7227,7198,7224,0,8017,7986,8014,14043,14043,14043,42,7203,7201,7227,0,7991,7989,8017,14044,14044,14044,42,7203,7227,7228,0,7991,8017,8018,14045,14045,14045,42,7205,7203,7228,0,7993,7991,8018,14046,14046,14046,42,7205,7228,7229,0,7993,8018,8019,14047,14047,14047,42,7207,7208,7230,0,7995,7996,8020,14048,14048,14048,42,7207,7230,7231,0,7995,8020,8021,14049,14049,14049,42,7208,7210,7232,0,7996,7998,8022,14050,14050,14050,42,7208,7232,7230,0,7996,8022,8020,14051,14051,14051,42,7210,7212,7233,0,7998,8000,8023,14052,14052,14052,42,7210,7233,7232,0,7998,8023,8022,14053,14053,14053,42,7212,7205,7229,0,8000,7993,8019,14054,14054,14054,42,7212,7229,7233,0,8000,8019,8023,14055,14055,14055,42,7184,7181,7149,0,7971,7968,7935,14056,14056,14056,42,7184,7149,7150,0,7971,7935,7936,14057,14057,14057,42,7186,7154,7155,0,7973,7940,7941,14058,14058,14058,42,7186,7155,7185,0,7973,7941,7972,14059,14059,14059,42,7181,7185,7155,0,7968,7972,7941,14060,14060,14060,42,7181,7155,7149,0,7968,7941,7935,14061,14061,14061,42,7193,7184,7150,0,7981,7971,7936,14062,14062,14062,42,7193,7150,7159,0,7981,7936,7946,14063,14063,14063,42,7159,7161,7195,0,7946,7948,7983,14064,14064,14064,42,7159,7195,7193,0,7946,7983,7981,14065,14065,14065,42,7197,7164,7165,0,7985,7951,7952,14066,14066,14066,42,7197,7165,7196,0,7985,7952,7984,14067,14067,14067,42,7196,7165,7154,0,7984,7952,7940,14068,14068,14068,42,7196,7154,7186,0,7984,7940,7973,14069,14069,14069,42,7161,7156,7190,0,7948,7942,7978,14070,14070,14070,42,7161,7190,7195,0,7948,7978,7983,14071,14071,14071,42,7168,7164,7197,0,7955,7951,7985,14072,14072,14072,42,7168,7197,7200,0,7955,7985,7988,14073,14073,14073,42,7170,7168,7200,0,7957,7955,7988,14074,14074,14074,42,7170,7200,7202,0,7957,7988,7990,14075,14075,14075,42,7172,7170,7202,0,7959,7957,7990,14076,14076,14076,42,7172,7202,7204,0,7959,7990,7992,14077,14077,14077,42,7174,7175,7209,0,7961,7962,7997,14078,14078,14078,42,7174,7209,7206,0,7961,7997,7994,14079,14079,14079,42,7175,7177,7211,0,7962,7964,7999,14080,14080,14080,42,7175,7211,7209,0,7962,7999,7997,14081,14081,14081,42,7177,7179,7213,0,7964,7966,8001,14082,14082,14082,42,7177,7213,7211,0,7964,8001,7999,14083,14083,14083,42,7179,7172,7204,0,7966,7959,7992,14084,14084,14084,42,7179,7204,7213,0,7966,7992,8001,14085,14085,14085,42,7207,7217,7214,0,7995,8007,8002,14086,14086,14086,42,7207,7214,7206,0,7995,8002,7994,14087,14087,14087,42,7231,7234,7217,0,8021,8024,8007,14088,14088,14088,42,7231,7217,7207,0,8021,8007,7995,14089,14089,14089,42,7148,7131,7132,0,7934,7916,7917,14090,14090,14090,42,7148,7132,7151,0,7934,7917,7937,14091,14091,14091,42,7153,7133,7134,0,7939,7918,7919,14092,14092,14092,42,7153,7134,7152,0,7939,7919,7938,14093,14093,14093,42,7152,7134,7131,0,7938,7919,7916,14094,14094,14094,42,7152,7131,7148,0,7938,7916,7934,14095,14095,14095,42,7132,7137,7160,0,7917,7923,7947,14096,14096,14096,42,7132,7160,7151,0,7917,7947,7937,14097,14097,14097,42,7162,7160,7137,0,7949,7947,7923,14098,14098,14098,42,7162,7137,7138,0,7949,7923,7924,14099,14099,14099,42,7139,7140,7166,0,7925,7926,7953,14100,14100,14100,42,7139,7166,7163,0,7925,7953,7950,14101,14101,14101,42,7166,7140,7133,0,7953,7926,7918,14102,14102,14102,42,7166,7133,7153,0,7953,7918,7939,14103,14103,14103,42,7158,7162,7138,0,7945,7949,7924,14104,14104,14104,42,7158,7138,7135,0,7945,7924,7920,14105,14105,14105,42,7141,7139,7163,0,7927,7925,7950,14106,14106,14106,42,7141,7163,7167,0,7927,7950,7954,14107,14107,14107,42,7142,7141,7167,0,7928,7927,7954,14108,14108,14108,42,7142,7167,7169,0,7928,7954,7956,14109,14109,14109,42,7143,7142,7169,0,7929,7928,7956,14110,14110,14110,42,7143,7169,7171,0,7929,7956,7958,14111,14111,14111,42,7173,7144,7145,0,7960,7930,7931,14112,14112,14112,42,7173,7145,7176,0,7960,7931,7963,14113,14113,14113,42,7146,7178,7176,0,7932,7965,7963,14114,14114,14114,42,7146,7176,7145,0,7932,7963,7931,14115,14115,14115,42,7146,7147,7180,0,7932,7933,7967,14116,14116,14116,42,7146,7180,7178,0,7932,7967,7965,14117,14117,14117,42,7147,7143,7171,0,7933,7929,7958,14118,14118,14118,42,7147,7171,7180,0,7933,7958,7967,14119,14119,14119,42,3479,6979,7014,0,7804,7764,7799,14120,14120,14120,42,3479,7014,270,0,7804,7799,7832,14121,14121,14121,42,6667,6682,7235,0,7463,7478,8025,14122,14122,14122,42,6667,7235,6680,0,7463,8025,7476,14123,14123,14123,42,6682,7144,7236,0,7478,7930,8026,14124,14124,14124,42,6682,7236,7235,0,7478,8026,8025,14125,14125,14125,42,7144,7173,7237,0,7930,7960,8027,14126,14126,14126,42,7144,7237,7236,0,7930,8027,8026,14127,14127,14127,42,7215,7237,7173,0,8003,8027,7960,14128,14128,14128,42,7215,7173,7174,0,8003,7960,7961,14129,14129,14129,42,7206,7214,7215,0,7994,8002,8003,14130,14130,14130,42,7206,7215,7174,0,7994,8003,7961,14131,14131,14131,42,6733,6734,6737,0,7523,7524,7527,14132,14132,14132,42,6733,6737,6738,0,7523,7527,7528,14133,14133,14133,42,6742,6733,6738,0,7532,7523,7528,14134,14134,14134,42,6742,6738,6739,0,7532,7528,7529,14135,14135,14135,42,6736,6737,6734,0,7526,7527,7524,14136,14136,14136,42,6736,6734,6735,0,7526,7524,7525,14137,14137,14137,42,6741,6742,6739,0,7531,7532,7529,14138,14138,14138,42,6741,6739,6740,0,7531,7529,7530,14139,14139,14139,42,6448,6449,6418,0,7238,7239,7205,14140,14140,14140,42,6448,6418,6419,0,7238,7205,7206,14141,14141,14141,42,6449,6424,6420,0,7239,7212,7207,14142,14142,14142,42,6449,6420,6418,0,7239,7207,7205,14143,14143,14143,42,6423,6424,7238,0,7210,7212,8028,14144,14144,14144,42,6423,7238,6381,0,7210,8028,7158,14145,14145,14145,42,6381,7238,7239,0,7158,8028,8029,14146,14146,14146,42,6381,7239,6380,0,7158,8029,7157,14147,14147,14147,42,6380,7239,7240,0,7157,8029,8030,14148,14148,14148,42,6380,7240,6384,0,7157,8030,7161,14149,14149,14149,42,6384,7240,7241,0,7161,8030,8031,14150,14150,14150,42,6384,7241,6386,0,7161,8031,7163,14151,14151,14151,42,6386,7241,7242,0,7163,8031,8032,14152,14152,14152,42,6386,7242,6433,0,7163,8032,7221,14153,14153,14153,42,6435,6433,7242,0,7223,7221,8032,14154,14154,14154,42,6435,7242,7243,0,7223,8032,8033,14155,14155,14155,42,7238,6424,6449,0,8028,7212,7239,14156,14156,14156,42,7238,6449,6447,0,8028,7239,7237,14157,14157,14157,42,7239,7238,6447,0,8029,8028,7237,14158,14158,14158,42,7239,6447,6443,0,8029,7237,7233,14159,14159,14159,42,7240,7239,6443,0,8030,8029,7233,14160,14160,14160,42,7240,6443,6444,0,8030,7233,7234,14161,14161,14161,42,6444,6445,7241,0,7234,7235,8031,14162,14162,14162,42,6444,7241,7240,0,7234,8031,8030,14163,14163,14163,42,7241,6445,6374,0,8031,7235,7151,14164,14164,14164,42,7241,6374,7242,0,8031,7151,8032,14165,14165,14165,42,6375,7243,7242,0,7152,8033,8032,14166,14166,14166,42,6375,7242,6374,0,7152,8032,7151,14167,14167,14167,42,6446,6431,6443,0,7236,7219,7233,14168,14168,14168,42,6446,6443,6447,0,7236,7233,7237,14169,14169,14169,42,7243,6375,6390,0,8033,7152,7167,14170,14170,14170,42,7243,6390,6435,0,8033,7167,7223,14171,14171,14171,42,6915,6916,6903,0,7700,7701,7688,14172,14172,14172,42,6915,6903,6904,0,7700,7688,7689,14173,14173,14173,42,6926,6915,6904,0,7711,7700,7689,14174,14174,14174,42,6926,6904,6927,0,7711,7689,7712,14175,14175,14175,42,6862,6863,6864,0,7647,7648,7649,14176,14176,14176,42,6862,6864,6861,0,7647,7649,7646,14177,14177,14177,42,6899,6889,6859,0,7684,7674,7644,14178,14178,14178,42,6899,6859,6861,0,7684,7644,7646,14179,14179,14179,42,6905,6904,6889,0,7690,7689,7674,14180,14180,14180,42,6905,6889,6899,0,7690,7674,7684,14181,14181,14181,42,6678,6679,7244,0,7474,7475,8034,14182,14182,14182,42,6678,7244,3697,0,7474,8034,8035,14183,14183,14183,42,6476,6477,7015,0,7273,7274,7800,14184,14184,14184,42,6476,7015,7136,0,7273,7800,7922,14185,14185,14185,42,6983,7021,273,0,7768,7808,7915,14186,14186,14186,42,6983,273,6982,0,7768,7915,7767,14187,14187,14187,42,7017,7035,7130,0,7802,7822,7914,14188,14188,14188,42,7017,7130,7016,0,7802,7914,7801,14189,14189,14189,42,7246,7245,255,0,8038,8037,8036,14190,14190,14190,42,7246,255,7247,0,8038,8036,8039,14191,14191,14191,42,7226,7191,7189,0,8016,7979,7976,14192,14192,14192,42,7226,7189,256,0,8016,7976,8040,14193,14193,14193,42,7190,7156,3610,0,7978,7942,7943,14194,14194,14194,42,7190,3610,252,0,7978,7943,7977,14195,14195,14195,42,7249,7248,255,0,8042,8041,8036,14196,14196,14196,42,7249,255,7245,0,8042,8036,8037,14197,14197,14197,42,7158,7135,274,0,7945,7920,7921,14198,14198,14198,42,7158,274,7157,0,7945,7921,7944,14199,14199,14199,42,7244,7246,7247,0,8034,8038,8039,14200,14200,14200,42,7244,7247,3697,0,8034,8039,8035,14201,14201,14201,42,7044,7043,7129,0,7833,7831,7912,14202,14202,14202,42,7044,7129,251,0,7833,7912,7913,14203,14203,14203,42,7244,6679,6680,0,8034,7475,7476,14204,14204,14204,42,7244,6680,7235,0,8034,7476,8025,14205,14205,14205,42,7246,7244,7235,0,8038,8034,8025,14206,14206,14206,42,7246,7235,7236,0,8038,8025,8026,14207,14207,14207,42,7236,7237,7245,0,8026,8027,8037,14208,14208,14208,42,7236,7245,7246,0,8026,8037,8038,14209,14209,14209,42,7215,3667,7248,0,8003,8004,8041,14210,14210,14210,42,7215,7248,7249,0,8003,8041,8042,14211,14211,14211,42,7249,7245,7237,0,8042,8037,8027,14212,14212,14212,42,7249,7237,7215,0,8042,8027,8003,14213,14213,14213,42,7221,7218,4516,0,8011,8008,8043,14214,14214,14214,42,7221,4516,4515,0,8011,8043,8044,14215,14215,14215,42,7218,7219,4517,0,8008,8009,8045,14216,14216,14216,42,7218,4517,4516,0,8008,8045,8043,14217,14217,14217,42,4517,7219,7222,0,8045,8009,8012,14218,14218,14218,42,4517,7222,4518,0,8045,8012,8046,14219,14219,14219,42,4519,7220,7221,0,8047,8010,8011,14220,14220,14220,42,4519,7221,4515,0,8047,8011,8044,14221,14221,14221,42,7222,7223,4525,0,8012,8013,8048,14222,14222,14222,42,7222,4525,4518,0,8012,8048,8046,14223,14223,14223,42,7223,7226,4526,0,8013,8016,8049,14224,14224,14224,42,7223,4526,4525,0,8013,8049,8048,14225,14225,14225,42,4526,7226,256,0,8049,8016,8040,14226,14226,14226,42,4526,256,262,0,8049,8040,8050,14227,14227,14227,42,4520,4521,7232,0,8052,8051,8022,14228,14228,14228,42,4520,7232,7233,0,8052,8022,8023,14229,14229,14229,42,4521,4527,7230,0,8051,8053,8020,14230,14230,14230,42,4521,7230,7232,0,8051,8020,8022,14231,14231,14231,42,4527,4528,7231,0,8053,8054,8021,14232,14232,14232,42,4527,7231,7230,0,8053,8021,8020,14233,14233,14233,42,4528,4529,7234,0,8054,8055,8024,14234,14234,14234,42,4528,7234,7231,0,8054,8024,8021,14235,14235,14235,42,4520,7233,7229,0,8052,8023,8019,14236,14236,14236,42,4520,7229,4522,0,8052,8019,8056,14237,14237,14237,42,4523,7225,7220,0,8057,8015,8010,14238,14238,14238,42,4523,7220,4519,0,8057,8010,8047,14239,14239,14239,42,4524,7224,7225,0,8058,8014,8015,14240,14240,14240,42,4524,7225,4523,0,8058,8015,8057,14241,14241,14241,42,4530,7227,7224,0,8059,8017,8014,14242,14242,14242,42,4530,7224,4524,0,8059,8014,8058,14243,14243,14243,42,4531,7228,7227,0,8060,8018,8017,14244,14244,14244,42,4531,7227,4530,0,8060,8017,8059,14245,14245,14245,42,4522,7229,7228,0,8056,8019,8018,14246,14246,14246,42,4522,7228,4531,0,8056,8018,8060,14247,14247,14247,42,7234,7250,7216,0,8024,8061,8006,14248,14248,14248,42,7234,7216,7217,0,8024,8006,8007,14249,14249,14249,42,7250,7234,4529,0,8061,8024,8055,14250,14250,14250,42,7250,4529,1007,0,8061,8055,8062,14251,14251,14251,42,7251,7127,7128,0,8065,8064,8063,14252,14252,14252,42,7251,7128,7252,0,8065,8063,8066,14253,14253,14253,42,7253,7121,7122,0,313,312,8067,14254,14254,14254,42,7253,7122,7254,0,313,8067,8068,14255,14255,14255,42,7255,7254,7122,0,8069,8068,8067,14256,14256,14256,42,7255,7122,7123,0,8069,8067,8070,14257,14257,14257,42,7257,7256,7124,0,8073,8072,8071,14258,14258,14258,42,7257,7124,7125,0,8073,8071,8074,14259,14259,14259,42,7126,7258,7257,0,8076,8075,8073,14260,14260,14260,42,7126,7257,7125,0,8076,8073,8074,14261,14261,14261,42,7260,7259,7080,0,8079,8078,8077,14262,14262,14262,42,7260,7080,7081,0,8079,8077,8080,14263,14263,14263,42,7082,7083,7261,0,8083,8082,8081,14264,14264,14264,42,7082,7261,7262,0,8083,8081,8084,14265,14265,14265,42,7079,7080,7259,0,8085,8077,8078,14266,14266,14266,42,7079,7259,7263,0,8085,8078,8086,14267,14267,14267,42,7078,7264,7252,0,8089,8088,8087,14268,14268,14268,42,7078,7252,7128,0,8089,8087,8090,14269,14269,14269,42,7265,7251,7252,0,8091,8065,8066,14270,14270,14270,42,7265,7252,7266,0,8091,8066,8092,14271,14271,14271,42,275,7253,7254,0,314,313,8068,14272,14272,14272,42,275,7254,7267,0,314,8068,8093,14273,14273,14273,42,7255,7268,7267,0,8069,8094,8093,14274,14274,14274,42,7255,7267,7254,0,8069,8093,8068,14275,14275,14275,42,7269,7256,7257,0,8095,8072,8073,14276,14276,14276,42,7269,7257,7270,0,8095,8073,8096,14277,14277,14277,42,7270,7257,7258,0,8096,8073,8075,14278,14278,14278,42,7270,7258,7271,0,8096,8075,8097,14279,14279,14279,42,7273,7272,7259,0,8099,8098,8078,14280,14280,14280,42,7273,7259,7260,0,8099,8078,8079,14281,14281,14281,42,7262,7261,7274,0,8084,8081,8100,14282,14282,14282,42,7262,7274,7275,0,8084,8100,8101,14283,14283,14283,42,7261,276,7276,0,8081,316,315,14284,14284,14284,42,7261,7276,7274,0,8081,315,8100,14285,14285,14285,42,7272,7277,7263,0,8098,8102,8086,14286,14286,14286,42,7272,7263,7259,0,8098,8086,8078,14287,14287,14287,42,7264,7278,7266,0,8088,8104,8103,14288,14288,14288,42,7264,7266,7252,0,8088,8103,8087,14289,14289,14289,42,7279,7265,7266,0,8105,8091,8092,14290,14290,14290,42,7279,7266,7280,0,8105,8092,8106,14291,14291,14291,42,7281,7268,7269,0,8107,8094,8095,14292,14292,14292,42,7281,7269,7282,0,8107,8095,8108,14293,14293,14293,42,7270,7283,7282,0,8096,8109,8108,14294,14294,14294,42,7270,7282,7269,0,8096,8108,8095,14295,14295,14295,42,7271,7284,7283,0,8097,8110,8109,14296,14296,14296,42,7271,7283,7270,0,8097,8109,8096,14297,14297,14297,42,7286,7285,7272,0,8112,8111,8098,14298,14298,14298,42,7286,7272,7273,0,8112,8098,8099,14299,14299,14299,42,7275,7274,7287,0,8101,8100,8113,14300,14300,14300,42,7275,7287,7288,0,8101,8113,8114,14301,14301,14301,42,7274,7276,7289,0,8100,315,317,14302,14302,14302,42,7274,7289,7287,0,8100,317,8113,14303,14303,14303,42,7285,7290,7277,0,8111,8115,8102,14304,14304,14304,42,7285,7277,7272,0,8111,8102,8098,14305,14305,14305,42,7266,7278,7291,0,8103,8104,8116,14306,14306,14306,42,7266,7291,7280,0,8103,8116,8117,14307,14307,14307,42,7292,7280,7291,0,8118,8117,8116,14308,14308,14308,42,7292,7291,7293,0,8118,8116,8119,14309,14309,14309,42,7294,7281,7282,0,8120,8107,8108,14310,14310,14310,42,7294,7282,7295,0,8120,8108,8121,14311,14311,14311,42,7283,7296,7295,0,8109,8122,8121,14312,14312,14312,42,7283,7295,7282,0,8109,8121,8108,14313,14313,14313,42,7284,7297,7296,0,8110,8123,8122,14314,14314,14314,42,7284,7296,7283,0,8110,8122,8109,14315,14315,14315,42,7285,7286,7298,0,8111,8112,8124,14316,14316,14316,42,7285,7298,7299,0,8111,8124,8125,14317,14317,14317,42,7300,7288,7287,0,8126,8114,8113,14318,14318,14318,42,7300,7287,7301,0,8126,8113,8127,14319,14319,14319,42,7289,277,7301,0,317,318,8127,14320,14320,14320,42,7289,7301,7287,0,317,8127,8113,14321,14321,14321,42,7290,7285,7299,0,8115,8111,8125,14322,14322,14322,42,7290,7299,7302,0,8115,8125,8128,14323,14323,14323,42,7300,7304,7303,0,8126,8130,8129,14324,14324,14324,42,7300,7303,7298,0,8126,8129,8124,14325,14325,14325,42,7298,7303,7305,0,8124,8129,8131,14326,14326,14326,42,7298,7305,7299,0,8124,8131,8125,14327,14327,14327,42,7299,7305,7306,0,8125,8131,8132,14328,14328,14328,42,7299,7306,7302,0,8125,8132,8128,14329,14329,14329,42,7280,7292,7307,0,8106,8118,8133,14330,14330,14330,42,7280,7307,7279,0,8106,8133,8105,14331,14331,14331,42,7297,7306,7305,0,8123,8132,8131,14332,14332,14332,42,7297,7305,7296,0,8123,8131,8122,14333,14333,14333,42,7296,7305,7303,0,8122,8131,8129,14334,14334,14334,42,7296,7303,7295,0,8122,8129,8121,14335,14335,14335,42,7304,7294,7295,0,8130,8120,8121,14336,14336,14336,42,7304,7295,7303,0,8130,8121,8129,14337,14337,14337,42,7309,257,7308,0,320,319,8134,14338,14338,14338,42,7309,7308,7310,0,320,8134,8135,14339,14339,14339,42,7311,3758,275,0,8136,321,314,14340,14340,14340,42,7311,275,7267,0,8136,314,8093,14341,14341,14341,42,7311,7308,257,0,8136,8134,319,14342,14342,14342,42,7311,257,3758,0,8136,319,321,14343,14343,14343,42,7310,7301,277,0,8135,8127,318,14344,14344,14344,42,7310,277,7309,0,8135,318,320,14345,14345,14345,42,7256,7255,7123,0,8072,8069,8070,14346,14346,14346,42,7256,7123,7124,0,8072,8070,8071,14347,14347,14347,42,7081,7082,7262,0,8080,8083,8084,14348,14348,14348,42,7081,7262,7260,0,8080,8084,8079,14349,14349,14349,42,7268,7255,7256,0,8094,8069,8072,14350,14350,14350,42,7268,7256,7269,0,8094,8072,8095,14351,14351,14351,42,7260,7262,7275,0,8079,8084,8101,14352,14352,14352,42,7260,7275,7273,0,8079,8101,8099,14353,14353,14353,42,7268,7281,7311,0,8094,8107,8136,14354,14354,14354,42,7268,7311,7267,0,8094,8136,8093,14355,14355,14355,42,7273,7275,7288,0,8099,8101,8114,14356,14356,14356,42,7273,7288,7286,0,8099,8114,8112,14357,14357,14357,42,7281,7294,7308,0,8107,8120,8134,14358,14358,14358,42,7281,7308,7311,0,8107,8134,8136,14359,14359,14359,42,7288,7300,7298,0,8114,8126,8124,14360,14360,14360,42,7288,7298,7286,0,8114,8124,8112,14361,14361,14361,42,7304,7300,7301,0,8130,8126,8127,14362,14362,14362,42,7304,7301,7310,0,8130,8127,8135,14363,14363,14363,42,7294,7304,7310,0,8120,8130,8135,14364,14364,14364,42,7294,7310,7308,0,8120,8135,8134,14365,14365,14365,42,276,7261,7083,0,316,8081,8082,14366,14366,14366,42,276,7083,250,0,316,8082,322,14367,14367,14367,42,7264,7078,7079,0,8088,8089,8085,14368,14368,14368,42,7264,7079,7263,0,8088,8085,8086,14369,14369,14369,42,7277,7278,7264,0,8102,8104,8088,14370,14370,14370,42,7277,7264,7263,0,8102,8088,8086,14371,14371,14371,42,7290,7291,7278,0,8115,8116,8104,14372,14372,14372,42,7290,7278,7277,0,8115,8104,8102,14373,14373,14373,42,7302,7306,7292,0,8128,8132,8118,14374,14374,14374,42,7302,7292,7293,0,8128,8118,8119,14375,14375,14375,42,7297,7284,7279,0,8123,8110,8105,14376,14376,14376,42,7297,7279,7307,0,8123,8105,8133,14377,14377,14377,42,7265,7279,7284,0,8091,8105,8110,14378,14378,14378,42,7265,7284,7271,0,8091,8110,8097,14379,14379,14379,42,7251,7265,7271,0,8065,8091,8097,14380,14380,14380,42,7251,7271,7258,0,8065,8097,8075,14381,14381,14381,42,7127,7251,7258,0,8064,8065,8075,14382,14382,14382,42,7127,7258,7126,0,8064,8075,8076,14383,14383,14383,42,7290,7302,7293,0,8115,8128,8119,14384,14384,14384,42,7290,7293,7291,0,8115,8119,8116,14385,14385,14385,42,7297,7307,7292,0,8123,8133,8118,14386,14386,14386,42,7297,7292,7306,0,8123,8118,8132,14387,14387,14387,42,4720,4715,4721,0,5257,5252,5258,14388,14388,14388,42,4720,4721,4726,0,5257,5258,5263,14389,14389,14389,42,4728,4729,4723,0,5265,5266,5260,14390,14390,14390,42,4728,4723,4731,0,5265,5260,5268,14391,14391,14391,42,5010,4728,4731,0,5569,5265,5268,14392,14392,14392,42,5010,4731,5008,0,5569,5268,5567,14393,14393,14393,42,5012,5014,5010,0,5572,5574,5569,14394,14394,14394,42,5012,5010,5008,0,5572,5569,5567,14395,14395,14395,42,5561,5013,5011,0,6206,5573,5570,14396,14396,14396,42,5561,5011,7312,0,6206,5570,8137,14397,14397,14397,42,7312,5011,5004,0,8137,5570,5571,14398,14398,14398,42,7312,5004,7313,0,8137,5571,8138,14399,14399,14399,42,7313,5004,4999,0,8139,5563,5558,14400,14400,14400,42,7313,4999,5028,0,8139,5558,5591,14401,14401,14401,42,4939,4919,4920,0,5495,5469,5470,14402,14402,14402,42,4939,4920,4707,0,5495,5470,5244,14403,14403,14403,42,4699,4930,4931,0,5236,5482,5483,14404,14404,14404,42,4699,4931,4993,0,5236,5483,5550,14405,14405,14405,42,4932,4930,4699,0,5484,5482,5236,14406,14406,14406,42,4932,4699,4700,0,5484,5236,5237,14407,14407,14407,42,4920,4918,4936,0,5470,5467,5488,14408,14408,14408,42,4920,4936,4927,0,5470,5488,5479,14409,14409,14409,42,4945,4946,4704,0,5500,5501,5241,14410,14410,14410,42,4945,4704,4942,0,5500,5241,5497,14411,14411,14411,42,4945,4948,4952,0,5500,5503,5507,14412,14412,14412,42,4945,4952,4944,0,5500,5507,5499,14413,14413,14413,42,4952,4948,4719,0,5507,5503,5256,14414,14414,14414,42,4952,4719,4730,0,5507,5256,5267,14415,14415,14415,42,4927,4936,4931,0,5479,5488,5483,14416,14416,14416,42,4927,4931,4926,0,5479,5483,5478,14417,14417,14417,42,4946,4932,4700,0,5501,5484,5237,14418,14418,14418,42,4946,4700,4704,0,5501,5237,5241,14419,14419,14419,42,4917,4918,4915,0,5466,5467,5468,14420,14420,14420,42,4917,4915,4912,0,5466,5468,5465,14421,14421,14421,42,4730,4719,4720,0,5267,5256,5257,14422,14422,14422,42,4730,4720,4729,0,5267,5257,5266,14423,14423,14423,42,4729,4720,4726,0,5266,5257,5263,14424,14424,14424,42,4729,4726,4723,0,5266,5263,5260,14425,14425,14425,42,5129,7315,7314,0,5703,8141,8140,14426,14426,14426,42,5129,7314,5047,0,5703,8140,5702,14427,14427,14427,42,5047,7314,7316,0,5611,8143,8142,14428,14428,14428,42,5047,7316,5044,0,5611,8142,5608,14429,14429,14429,42,5044,7316,7317,0,5608,8142,8144,14430,14430,14430,42,5044,7317,5043,0,5608,8144,5607,14431,14431,14431,42,7317,5033,5029,0,8144,5597,5592,14432,14432,14432,42,7317,5029,5043,0,8144,5592,5607,14433,14433,14433,42,7319,7318,5557,0,8146,8145,6202,14434,14434,14434,42,7319,5557,5558,0,8146,6202,6203,14435,14435,14435,42,7315,7321,7320,0,8149,8148,8147,14436,14436,14436,42,7315,7320,5560,0,8149,8147,6205,14437,14437,14437,42,5037,5038,5053,0,5601,5602,5617,14438,14438,14438,42,5037,5053,5057,0,5601,5617,5621,14439,14439,14439,42,5057,5053,5055,0,5621,5617,5619,14440,14440,14440,42,5057,5055,5056,0,5621,5619,5620,14441,14441,14441,42,5455,5066,5067,0,6064,5630,5631,14442,14442,14442,42,5455,5067,5454,0,6064,5631,6063,14443,14443,14443,42,5066,5455,5056,0,5630,6064,5620,14444,14444,14444,42,5066,5056,5055,0,5630,5620,5619,14445,14445,14445,42,5065,5066,5055,0,5629,5630,5619,14446,14446,14446,42,5065,5055,5054,0,5629,5619,5618,14447,14447,14447,42,5171,5041,5039,0,5747,5605,5603,14448,14448,14448,42,5171,5039,5476,0,5747,5603,6085,14449,14449,14449,42,5165,5166,5162,0,5741,5742,5738,14450,14450,14450,42,5165,5162,5163,0,5741,5738,5739,14451,14451,14451,42,5164,5165,5169,0,5740,5741,5745,14452,14452,14452,42,5164,5169,5170,0,5740,5745,5746,14453,14453,14453,42,5040,5041,5169,0,5604,5605,5745,14454,14454,14454,42,5040,5169,5168,0,5604,5745,5744,14455,14455,14455,42,5039,5037,5060,0,5603,5601,5624,14456,14456,14456,42,5039,5060,5476,0,5603,5624,6085,14457,14457,14457,42,5557,7318,7322,0,8152,8151,8150,14458,14458,14458,42,5557,7322,5484,0,8152,8150,6094,14459,14459,14459,42,5485,5556,5557,0,6095,8153,8152,14460,14460,14460,42,5485,5557,5484,0,6095,8152,6094,14461,14461,14461,42,5064,7323,5556,0,5628,8154,8153,14462,14462,14462,42,5064,5556,5485,0,5628,8153,6095,14463,14463,14463,42,7325,7323,7324,0,8156,8154,8155,14464,14464,14464,42,7325,7324,7326,0,8156,8155,8157,14465,14465,14465,42,7328,7327,7325,0,8159,8158,8156,14466,14466,14466,42,7328,7325,7326,0,8159,8156,8157,14467,14467,14467,42,5026,7327,7328,0,8160,8158,8159,14468,14468,14468,42,5026,7328,7329,0,8160,8159,8161,14469,14469,14469,42,5035,5025,5026,0,5599,5596,8160,14470,14470,14470,42,5035,5026,7329,0,5599,8160,8161,14471,14471,14471,42,5129,5518,7321,0,5703,6140,8162,14472,14472,14472,42,5129,7321,7315,0,5703,8162,8141,14473,14473,14473,42,5106,5107,5074,0,5676,5677,5644,14474,14474,14474,42,5106,5074,5077,0,5676,5644,5641,14475,14475,14475,42,5109,5106,5077,0,5679,5676,5641,14476,14476,14476,42,5109,5077,5104,0,5679,5641,5674,14477,14477,14477,42,5481,5107,5102,0,6090,6200,5673,14478,14478,14478,42,5481,5102,5083,0,6090,5673,5650,14479,14479,14479,42,5481,5091,5069,0,6090,5658,5633,14480,14480,14480,42,5481,5069,5070,0,6090,5633,5634,14481,14481,14481,42,5109,5130,5486,0,5679,5704,6096,14482,14482,14482,42,5109,5486,5108,0,5679,6096,5678,14483,14483,14483,42,7330,5130,5113,0,8163,5704,5683,14484,14484,14484,42,7330,5113,5487,0,8163,5683,6097,14485,14485,14485,42,5486,5130,7330,0,6096,5704,8163,14486,14486,14486,42,5486,7330,7331,0,6096,8163,8164,14487,14487,14487,42,5128,7330,5487,0,5701,8163,6097,14488,14488,14488,42,5128,5487,5125,0,5701,6097,5698,14489,14489,14489,42,7331,7332,5244,0,8164,8165,5823,14490,14490,14490,42,7331,5244,5486,0,8164,5823,6096,14491,14491,14491,42,7332,5554,5243,0,8165,6198,5822,14492,14492,14492,42,7332,5243,5244,0,8165,5822,5823,14493,14493,14493,42,7331,7330,5128,0,8164,8163,5701,14494,14494,14494,42,7331,5128,5162,0,8164,5701,5738,14495,14495,14495,42,7332,7331,5162,0,8165,8164,5738,14496,14496,14496,42,7332,5162,5166,0,8165,5738,5742,14497,14497,14497,42,5167,5554,7332,0,5743,6198,8165,14498,14498,14498,42,5167,7332,5166,0,5743,8165,5742,14499,14499,14499,42,5554,5466,7333,0,6198,6075,8166,14500,14500,14500,42,5554,7333,5243,0,6198,8166,5822,14501,14501,14501,42,7333,5462,5242,0,8166,6071,5821,14502,14502,14502,42,7333,5242,5243,0,8166,5821,5822,14503,14503,14503,42,5027,5024,4998,0,5590,5587,5557,14504,14504,14504,42,5027,4998,5000,0,5590,5557,5559,14505,14505,14505,42,5028,5024,5025,0,5591,5587,5588,14506,14506,14506,42,5028,5025,5033,0,5591,5588,8167,14507,14507,14507,42,7325,5061,5062,0,8168,5625,5626,14508,14508,14508,42,7325,5062,7323,0,8168,5626,8169,14509,14509,14509,42,7327,5063,5061,0,8170,5627,5625,14510,14510,14510,42,7327,5061,7325,0,8170,5625,8168,14511,14511,14511,42,5062,5517,5556,0,5626,6139,6201,14512,14512,14512,42,5062,5556,7323,0,5626,6201,8169,14513,14513,14513,42,5027,5063,7327,0,5590,5627,8170,14514,14514,14514,42,5027,7327,5026,0,5590,8170,5589,14515,14515,14515,42,5002,5558,5517,0,5561,6203,6139,14516,14516,14516,42,5002,5517,5006,0,5561,6139,5565,14517,14517,14517,42,7315,5560,5561,0,8149,6205,6206,14518,14518,14518,42,7315,5561,7314,0,8149,6206,8171,14519,14519,14519,42,7314,5561,7312,0,8171,6206,8137,14520,14520,14520,42,7314,7312,7316,0,8171,8137,8172,14521,14521,14521,42,7316,7312,7313,0,8172,8137,8138,14522,14522,14522,42,7316,7313,7317,0,8172,8138,8173,14523,14523,14523,42,7317,7313,5028,0,8174,8139,5591,14524,14524,14524,42,7317,5028,5033,0,8174,5591,8167,14525,14525,14525,42,5003,7319,5558,0,5562,8146,6203,14526,14526,14526,42,5003,5558,5002,0,5562,6203,5561,14527,14527,14527,42,5012,5560,7320,0,5572,6205,8147,14528,14528,14528,42,5012,7320,5014,0,5572,8147,5574,14529,14529,14529,42,7320,7319,5003,0,8147,8146,5562,14530,14530,14530,42,7320,5003,5014,0,8147,5562,5574,14531,14531,14531,42,7321,7318,7319,0,8148,8145,8146,14532,14532,14532,42,7321,7319,7320,0,8148,8146,8147,14533,14533,14533,42,7322,7318,7321,0,8150,8151,8162,14534,14534,14534,42,7322,7321,5518,0,8150,8162,6140,14535,14535,14535,42,5559,7322,5518,0,6204,8150,6140,14536,14536,14536,42,5559,5518,5519,0,6204,6140,6141,14537,14537,14537,42,5483,5484,7322,0,6093,6094,8150,14538,14538,14538,42,5483,7322,5559,0,6093,8150,6204,14539,14539,14539,42,5559,5069,5089,0,6204,5633,5656,14540,14540,14540,42,5559,5089,5483,0,6204,5656,6093,14541,14541,14541,42,5460,5483,5089,0,6069,6093,5656,14542,14542,14542,42,5460,5089,5090,0,6069,5656,5657,14543,14543,14543,42,7324,7323,5064,0,8155,8154,5628,14544,14544,14544,42,7324,5064,5065,0,8155,5628,5629,14545,14545,14545,42,7326,7324,5065,0,8157,8155,5629,14546,14546,14546,42,7326,5065,5054,0,8157,5629,5618,14547,14547,14547,42,5052,7328,7326,0,5616,8159,8157,14548,14548,14548,42,5052,7326,5054,0,5616,8157,5618,14549,14549,14549,42,7329,7328,5052,0,8161,8159,5616,14550,14550,14550,42,7329,5052,5042,0,8161,5616,5606,14551,14551,14551,42,5034,5035,7329,0,5598,5599,8161,14552,14552,14552,42,5034,7329,5042,0,5598,8161,5606,14553,14553,14553,42,7334,4831,4838,0,8175,5375,5382,14554,14554,14554,42,7334,4838,4839,0,8175,5382,5383,14555,14555,14555,42,4839,4835,4836,0,5383,5379,5380,14556,14556,14556,42,4839,4836,7334,0,5383,5380,8175,14557,14557,14557,42,4840,4834,4835,0,5384,5378,5379,14558,14558,14558,42,4840,4835,4839,0,5384,5379,5383,14559,14559,14559,42,7335,4859,4860,0,8176,5406,5407,14560,14560,14560,42,7335,4860,4844,0,8176,5407,5388,14561,14561,14561,42,7335,4844,4834,0,8176,5388,5378,14562,14562,14562,42,7335,4834,4840,0,8176,5378,5384,14563,14563,14563,42,7334,4836,4826,0,8175,5380,5370,14564,14564,14564,42,7334,4826,4831,0,8175,5370,5375,14565,14565,14565,42,7335,4840,4837,0,8176,5384,5381,14566,14566,14566,42,7335,4837,4859,0,8176,5381,5406,14567,14567,14567,42,7336,7333,5310,0,8177,8166,5890,14568,14568,14568,42,7336,5310,5508,0,8177,5890,6125,14569,14569,14569,42,5508,5328,7337,0,6125,5908,8178,14570,14570,14570,42,5508,7337,7336,0,6125,8178,8177,14571,14571,14571,42,7338,5466,5304,0,8179,6075,5884,14572,14572,14572,42,7338,5304,5303,0,8179,5884,5883,14573,14573,14573,42,5303,5312,7339,0,5883,5892,8180,14574,14574,14574,42,5303,7339,7338,0,5883,8180,8179,14575,14575,14575,42,7338,7339,7333,0,8179,8180,8166,14576,14576,14576,42,7338,7333,5466,0,8179,8166,6075,14577,14577,14577,42,7336,7337,5462,0,8177,8178,6071,14578,14578,14578,42,7336,5462,7333,0,8177,6071,8166,14579,14579,14579,42,5312,5310,7333,0,5892,5890,8166,14580,14580,14580,42,5312,7333,7339,0,5892,8166,8180,14581,14581,14581,42,7337,5328,5326,0,8178,5908,5906,14582,14582,14582,42,7337,5326,5462,0,8178,5906,6071,14583,14583,14583], - - "bones" : [ - { - "parent" : -1, - "name" : "flipRoot", - "pos" : [0,0,0], - "scl" : [1,1,1], - "rotq" : [0.0,0.0,0.0,1.0] - }, - - { - "parent" : 0, - "name" : "[UCS_00] Ribcage", - "pos" : [19.822,0,0], - "scl" : [1,1,1], - "rotq" : [1.78177e-007,-4.56192e-007,0.141703,0.989909] - }, - - { - "parent" : 0, - "name" : "[UCS_00] Pelvis", - "pos" : [0.0459347,-2.91296,105.605], - "scl" : [1,1,1], - "rotq" : [-0.707107,1.37679e-007,-0.707107,-1.37679e-007] - }, - - { - "parent" : 2, - "name" : "[UCS_00] Spine1", - "pos" : [4.6596,1.29468,-7.05421e-005], - "scl" : [1,1,1], - "rotq" : [8.24616e-006,0.000172517,0.0138233,0.999904] - }, - - { - "parent" : 3, - "name" : "[UCS_00] Spine2", - "pos" : [7.39283,-2.38419e-007,0], - "scl" : [1,1,1], - "rotq" : [1.21858e-005,-0.00017166,-0.131632,0.991299] - }, - - { - "parent" : 1, - "name" : "[UCS_00] Neck1", - "pos" : [2.34335,5.58867,0.00256609], - "scl" : [1,1,1], - "rotq" : [0.0,0.0,0.267687,0.963506] - }, - - { - "parent" : 2, - "name" : "[UCS_00] RBum", - "pos" : [0.313583,-6.24358,-8.63527], - "scl" : [1,1,1], - "rotq" : [-0.000830025,0.0216476,-0.999735,0.00776046] - }, - - { - "parent" : 2, - "name" : "[UCS_00] LBum", - "pos" : [0.306,-6.23611,7.81657], - "scl" : [1,1,1], - "rotq" : [0.00628785,-0.99998,-3.30154e-006,-0.000574981] - }, - - { - "parent" : 2, - "name" : "[UCS_00] LThigh", - "pos" : [-9.52724,0.104962,11.229], - "scl" : [1,1,1], - "rotq" : [0.0524161,-0.998291,0.0234999,-0.0107267] - }, - - { - "parent" : 2, - "name" : "[UCS_00] RThigh", - "pos" : [-9.52724,0.104961,-11.229], - "scl" : [1,1,1], - "rotq" : [0.0543472,-0.998204,-0.023016,0.0102746] - }, - - { - "parent" : 1, - "name" : "[UCS_00] LCollarbone", - "pos" : [-1.37439,14.1768,4.90802], - "scl" : [1,1,1], - "rotq" : [0.229391,-0.680605,-0.311582,0.622152] - }, - - { - "parent" : 1, - "name" : "[UCS_00] RCollarbone", - "pos" : [-1.3744,14.1768,-4.90802], - "scl" : [1,1,1], - "rotq" : [-0.229391,0.680605,-0.311582,0.622152] - }, - - { - "parent" : 5, - "name" : "[UCS_00] Jowels", - "pos" : [-0.381058,4.67294,0.0828201], - "scl" : [1,1,1], - "rotq" : [-0.00249447,0.0132717,0.184699,0.982702] - }, - - { - "parent" : 5, - "name" : "[UCS_00] Neck2", - "pos" : [8.33337,0,0], - "scl" : [1,1,1], - "rotq" : [0.0,0.0,0.0591305,0.99825] - }, - - { - "parent" : 13, - "name" : "[UCS_00] Head", - "pos" : [8.33337,0,0], - "scl" : [1,1,1], - "rotq" : [0.0,0.0,-0.187435,0.982277] - }, - - { - "parent" : 10, - "name" : "[UCS_00] LUpperarm", - "pos" : [17.5846,7.62939e-006,-3.05176e-005], - "scl" : [1,1,1], - "rotq" : [0.221414,0.0571188,0.314062,0.921454] - }, - - { - "parent" : 15, - "name" : "[UCS_00] LUpperarm Twist", - "pos" : [4.44502,-2.28882e-005,6.10352e-005], - "scl" : [1,1,1], - "rotq" : [-1.24797e-007,-1.91852e-007,0.0,1.0] - }, - - { - "parent" : 10, - "name" : "[UCS_00] LCollarbone Twist", - "pos" : [14.4096,-1.14441e-005,0], - "scl" : [1,1,1], - "rotq" : [0.0,-1.19209e-007,0.0,1.0] - }, - - { - "parent" : 15, - "name" : "[UCS_00] LForearm1", - "pos" : [26.4674,1.90735e-006,-1.52588e-005], - "scl" : [1,1,1], - "rotq" : [0.0300457,0.0469702,0.126593,0.990386] - }, - - { - "parent" : 18, - "name" : "[UCS_00] LForearm2", - "pos" : [15.5949,-3.8147e-006,1.52588e-005], - "scl" : [1,1,1], - "rotq" : [0.0,0.0,0.0,1.0] - }, - - { - "parent" : 19, - "name" : "[UCS_00] LPalm", - "pos" : [15.5949,1.52588e-005,4.57764e-005], - "scl" : [1,1,1], - "rotq" : [-0.703694,-0.0949007,-0.0334085,0.703344] - }, - - { - "parent" : 20, - "name" : "[UCS_00] LThumb1", - "pos" : [2.77517,-1.48094,2.54832], - "scl" : [1,1,0.999996], - "rotq" : [0.58657,-0.343383,0.0823075,0.728869] - }, - - { - "parent" : 7, - "name" : "[UCS_00] LHip", - "pos" : [8.54877,8.6105,-0.291167], - "scl" : [1,1,1], - "rotq" : [0.0,-1.0,0.0,8.53102e-005] - }, - - { - "parent" : 6, - "name" : "[UCS_00] RHip", - "pos" : [8.51241,-8.64627,-0.533772], - "scl" : [1,1,1], - "rotq" : [-0.000162698,0.0216536,-0.999766,0.00032195] - }, - - { - "parent" : 8, - "name" : "[UCS_00] LCalf", - "pos" : [43.929,-9.53674e-007,1.90735e-006], - "scl" : [1,1,1], - "rotq" : [-0.0222438,-0.00113403,-0.0240528,0.999463] - }, - - { - "parent" : 24, - "name" : "[UCS_00] LFoot", - "pos" : [46.352,9.53674e-007,-9.53674e-007], - "scl" : [1,1,1], - "rotq" : [-0.043267,0.0424371,0.648201,0.759054] - }, - - { - "parent" : 25, - "name" : "[UCS_00] LToes1", - "pos" : [15.6495,0.000581264,0.267458], - "scl" : [1,1,1], - "rotq" : [-0.0108012,0.0481196,0.154787,0.986716] - }, - - { - "parent" : 21, - "name" : "[UCS_00] LThumb2", - "pos" : [4.1472,0,1.52588e-005], - "scl" : [1,1,0.999996], - "rotq" : [0.0480841,0.013738,-0.0324731,0.998221] - }, - - { - "parent" : 20, - "name" : "[UCS_00] LFinger11", - "pos" : [8.8918,-0.155975,1.99898], - "scl" : [1,0.999998,1], - "rotq" : [0.0581776,-0.0874725,-0.0218102,0.994227] - }, - - { - "parent" : 28, - "name" : "[UCS_00] LFinger12", - "pos" : [4.13075,-3.05176e-005,0], - "scl" : [1,0.999997,1], - "rotq" : [2.50737e-005,0.00138448,-0.0475424,0.998868] - }, - - { - "parent" : 20, - "name" : "[UCS_00] LFinger21", - "pos" : [9.01172,-0.132706,-0.464325], - "scl" : [1,0.999998,1], - "rotq" : [0.0245784,-0.00901193,-0.0191646,0.999474] - }, - - { - "parent" : 29, - "name" : "[UCS_00] LFinger13", - "pos" : [3.54208,0,0], - "scl" : [1,0.999998,1], - "rotq" : [9.11045e-005,-0.00453331,0.0189656,0.99981] - }, - - { - "parent" : 20, - "name" : "[UCS_00] LFinger31", - "pos" : [8.86377,-0.845383,-2.73079], - "scl" : [1,1,0.999999], - "rotq" : [-0.141014,0.104332,0.0153152,0.984376] - }, - - { - "parent" : 32, - "name" : "[UCS_00] LFinger32", - "pos" : [4.55477,-3.05176e-005,-8.58307e-006], - "scl" : [1,0.999999,0.999999], - "rotq" : [0.000371874,0.0172779,-0.0542967,0.998375] - }, - - { - "parent" : 33, - "name" : "[UCS_00] LFinger33", - "pos" : [2.80811,-1.52588e-005,-1.90735e-006], - "scl" : [1,0.999999,0.999999], - "rotq" : [-2.91244e-005,-0.0157905,0.0163567,0.999741] - }, - - { - "parent" : 30, - "name" : "[UCS_00] LFinger22", - "pos" : [4.63581,-1.52588e-005,7.62939e-006], - "scl" : [1,0.999997,1], - "rotq" : [0.000108844,0.00616111,-0.0414455,0.999122] - }, - - { - "parent" : 35, - "name" : "[UCS_00] LFinger23", - "pos" : [3.27839,-1.52588e-005,-3.8147e-006], - "scl" : [1,0.999998,1], - "rotq" : [2.59988e-005,-0.00794331,0.0145892,0.999862] - }, - - { - "parent" : 20, - "name" : "[UCS_00] LFinger41", - "pos" : [8.3488,-1.58212,-4.88726], - "scl" : [1,1,0.999998], - "rotq" : [-0.18796,0.224799,0.0139755,0.956003] - }, - - { - "parent" : 37, - "name" : "[UCS_00] LFinger42", - "pos" : [2.72589,-1.52588e-005,0], - "scl" : [1,1,0.999999], - "rotq" : [0.000216857,0.00324481,-0.00769619,0.999965] - }, - - { - "parent" : 38, - "name" : "[UCS_00] LFinger43", - "pos" : [2.56631,-3.05176e-005,0], - "scl" : [1,1,0.999998], - "rotq" : [-0.000204113,-0.00700637,0.0180212,0.999813] - }, - - { - "parent" : 27, - "name" : "[UCS_00] LThumb3", - "pos" : [3.13827,-3.8147e-006,3.05176e-005], - "scl" : [1,1,0.999996], - "rotq" : [-0.00640149,-0.0179124,-0.087416,0.99599] - }, - - { - "parent" : 11, - "name" : "[UCS_00] RUpperarm", - "pos" : [17.5846,-7.62939e-006,1.52588e-005], - "scl" : [1,1,1], - "rotq" : [-0.227878,-0.0430289,0.311618,0.921474] - }, - - { - "parent" : 41, - "name" : "[UCS_00] RUpperarm Twist", - "pos" : [4.445,5.72205e-006,-0.0787659], - "scl" : [1,1,1], - "rotq" : [0.0,-1.30385e-007,0.0,1.0] - }, - - { - "parent" : 11, - "name" : "[UCS_00] RCollarbone Twist", - "pos" : [13.0973,3.8147e-006,3.05176e-005], - "scl" : [1,1,1], - "rotq" : [0.707107,0.0,1.27758e-007,0.707107] - }, - - { - "parent" : 41, - "name" : "[UCS_00] RForearm1", - "pos" : [26.4674,5.72205e-006,0], - "scl" : [1,1,1], - "rotq" : [-0.0300456,-0.04697,0.126593,0.990386] - }, - - { - "parent" : 44, - "name" : "[UCS_00] RForearm2", - "pos" : [15.5949,-3.8147e-006,3.05176e-005], - "scl" : [1,1,1], - "rotq" : [0.0,0.0,0.0,1.0] - }, - - { - "parent" : 45, - "name" : "[UCS_00] RPalm", - "pos" : [15.5949,3.8147e-005,-3.05176e-005], - "scl" : [1,1,1], - "rotq" : [0.703694,0.0949001,-0.0334098,0.703344] - }, - - { - "parent" : 46, - "name" : "[UCS_00] RThumb1", - "pos" : [2.77521,-1.48094,-2.54832], - "scl" : [1.00001,0.999998,0.999997], - "rotq" : [-0.586569,0.343383,0.0823073,0.728869] - }, - - { - "parent" : 9, - "name" : "[UCS_00] RCalf", - "pos" : [43.927,0,0], - "scl" : [1,1,1], - "rotq" : [0.025587,0.000874763,-0.0203237,0.999466] - }, - - { - "parent" : 48, - "name" : "[UCS_00] RFoot", - "pos" : [46.3448,-9.53674e-007,-9.53674e-007], - "scl" : [1,1,1], - "rotq" : [0.040523,-0.0395163,0.647071,0.760326] - }, - - { - "parent" : 49, - "name" : "[UCS_00] RToes1", - "pos" : [15.6495,0.00058198,-0.267461], - "scl" : [1,1,1], - "rotq" : [0.0107804,-0.0482116,0.154643,0.986734] - }, - - { - "parent" : 47, - "name" : "[UCS_00] RThumb2", - "pos" : [4.14719,-2.28882e-005,-3.05176e-005], - "scl" : [1.00001,0.999998,0.999997], - "rotq" : [-0.0480841,-0.013738,-0.0324731,0.998221] - }, - - { - "parent" : 46, - "name" : "[UCS_00] RFinger11", - "pos" : [8.89183,-0.15593,-1.999], - "scl" : [1,0.999999,0.999998], - "rotq" : [-0.0581776,0.0874725,-0.0218104,0.994227] - }, - - { - "parent" : 52, - "name" : "[UCS_00] RFinger12", - "pos" : [4.13074,-3.05176e-005,-1.14441e-005], - "scl" : [1,0.999998,0.999998], - "rotq" : [-2.51402e-005,-0.00138462,-0.0475424,0.998868] - }, - - { - "parent" : 46, - "name" : "[UCS_00] RFinger21", - "pos" : [9.01173,-0.13266,0.464291], - "scl" : [1,0.999998,1], - "rotq" : [-0.0245784,0.00901196,-0.0191646,0.999474] - }, - - { - "parent" : 53, - "name" : "[UCS_00] RFinger13", - "pos" : [3.54207,-1.52588e-005,-3.8147e-006], - "scl" : [1,0.999999,0.999998], - "rotq" : [-9.10782e-005,0.00453338,0.0189654,0.99981] - }, - - { - "parent" : 46, - "name" : "[UCS_00] RFinger31", - "pos" : [8.86379,-0.845367,2.73076], - "scl" : [1,1,1], - "rotq" : [0.141014,-0.104332,0.0153153,0.984376] - }, - - { - "parent" : 56, - "name" : "[UCS_00] RFinger32", - "pos" : [4.55478,0,-1.14441e-005], - "scl" : [1,0.999999,1], - "rotq" : [-0.000371861,-0.0172779,-0.0542967,0.998375] - }, - - { - "parent" : 57, - "name" : "[UCS_00] RFinger33", - "pos" : [2.80812,-1.52588e-005,-5.72205e-006], - "scl" : [1,0.999999,1], - "rotq" : [2.90945e-005,0.0157905,0.0163566,0.999741] - }, - - { - "parent" : 54, - "name" : "[UCS_00] RFinger22", - "pos" : [4.63582,0,-7.62939e-006], - "scl" : [1,0.999998,1], - "rotq" : [-0.000108777,-0.00616124,-0.0414455,0.999122] - }, - - { - "parent" : 59, - "name" : "[UCS_00] RFinger23", - "pos" : [3.27838,-1.52588e-005,-1.14441e-005], - "scl" : [1,0.999998,1], - "rotq" : [-2.60694e-005,0.00794321,0.0145894,0.999862] - }, - - { - "parent" : 46, - "name" : "[UCS_00] RFinger41", - "pos" : [8.34883,-1.58214,4.88723], - "scl" : [0.999999,1,1], - "rotq" : [0.18796,-0.224799,0.0139755,0.956003] - }, - - { - "parent" : 61, - "name" : "[UCS_00] RFinger42", - "pos" : [2.72591,-1.52588e-005,3.8147e-006], - "scl" : [0.999999,1,1], - "rotq" : [-0.000216663,-0.00324474,-0.00769618,0.999965] - }, - - { - "parent" : 62, - "name" : "[UCS_00] RFinger43", - "pos" : [2.56631,0,-3.8147e-006], - "scl" : [0.999999,1,1], - "rotq" : [0.000203987,0.0070065,0.0180212,0.999813] - }, - - { - "parent" : 51, - "name" : "[UCS_00] RThumb3", - "pos" : [3.13826,1.90735e-006,-3.05176e-005], - "scl" : [1.00001,0.999998,0.999997], - "rotq" : [0.00640139,0.0179121,-0.087416,0.99599] - } - - ], - - "skinIndices" : [14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,1,4,3,4,1,5,2,3,2,6,14,0,14,0,14,0,3,4,4,1,4,1,1,11,14,0,14,0,14,0,14,0,14,0,14,0,5,13,14,0,14,0,13,5,1,5,14,0,3,4,3,2,4,3,1,5,1,5,2,3,2,9,2,6,14,0,14,13,14,0,14,0,14,0,14,0,14,0,14,1,13,5,14,0,14,0,14,0,16,1,16,15,16,15,16,1,18,19,18,19,18,19,18,15,18,15,18,15,15,18,15,18,15,16,15,16,15,16,15,16,15,16,15,16,15,18,15,16,15,16,15,16,15,16,15,16,15,18,18,15,18,15,15,18,15,16,15,16,15,16,15,16,15,16,15,16,15,16,18,19,18,19,15,16,15,16,15,16,15,16,18,19,18,19,18,19,18,19,18,19,18,19,19,18,19,18,19,18,18,19,18,19,19,18,19,18,18,19,19,18,18,19,18,19,18,19,19,18,19,18,19,18,19,18,19,18,19,20,19,20,19,20,18,19,19,18,19,18,19,18,18,19,19,18,19,18,19,20,19,20,19,20,18,19,18,19,18,19,18,19,18,15,18,19,18,15,18,19,18,19,18,19,18,19,18,19,18,19,18,19,18,19,18,19,19,18,18,19,18,19,18,15,18,19,18,15,18,15,18,19,18,15,18,19,18,19,18,19,19,18,19,18,15,16,15,16,15,18,15,18,15,16,15,16,15,18,15,16,18,15,15,18,15,18,18,15,18,15,15,18,15,18,15,16,18,15,15,18,15,18,15,18,15,18,15,18,15,18,15,18,18,15,18,15,18,15,19,18,19,18,19,20,19,20,19,18,18,19,19,20,15,16,15,16,15,16,15,16,15,18,15,16,15,16,15,16,19,18,19,20,19,20,19,18,19,20,15,18,15,18,15,16,15,18,15,18,15,18,15,18,15,18,15,18,15,18,15,18,15,16,15,16,16,15,16,15,15,16,16,15,16,1,16,15,16,15,16,15,16,1,16,15,16,15,15,16,15,16,15,16,16,15,16,15,16,15,16,15,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,15,16,15,16,15,15,16,16,15,15,16,16,15,15,16,16,15,15,16,16,15,16,15,15,16,16,15,16,15,16,15,16,15,18,15,18,15,18,19,18,19,18,15,18,15,16,15,16,15,16,15,16,15,16,15,16,17,16,15,16,15,16,15,15,16,16,15,16,15,16,15,16,15,16,15,16,15,16,15,18,15,18,15,18,15,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,20,19,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,20,19,20,19,19,20,19,20,19,20,19,20,20,19,20,19,19,20,19,20,19,20,19,20,20,19,19,20,20,19,16,1,1,17,1,17,17,1,1,17,17,1,16,17,17,16,17,16,16,17,16,17,16,17,16,17,16,17,16,17,17,16,17,16,16,17,16,17,17,16,16,17,17,16,17,16,17,16,17,16,17,1,17,16,17,1,17,10,17,10,17,10,17,10,17,16,17,10,17,10,17,16,17,10,17,16,17,16,17,16,17,10,17,10,17,10,17,10,17,10,17,10,17,10,17,1,1,10,1,10,17,10,1,17,1,17,1,17,1,17,17,10,17,10,17,10,1,10,1,10,17,1,17,10,17,10,17,10,17,10,17,10,1,16,1,16,16,1,16,1,16,1,16,1,1,10,1,10,1,17,1,16,1,16,1,17,1,17,1,16,1,16,1,16,16,1,16,1,16,1,16,1,16,1,1,16,16,1,16,1,16,17,1,16,16,1,1,16,1,16,1,16,1,16,1,16,1,10,17,10,17,10,16,17,16,17,16,17,1,17,16,1,16,1,16,1,16,1,16,1,16,1,16,17,16,17,16,17,16,17,1,16,1,16,1,16,16,17,16,17,16,17,16,17,16,17,1,16,16,17,4,3,4,3,4,3,4,3,1,4,4,1,4,1,1,10,1,10,1,10,1,10,1,10,1,10,1,4,1,4,1,4,1,4,1,4,1,4,1,16,1,4,1,4,1,0,1,0,1,10,1,10,1,4,1,10,1,4,1,4,1,10,1,4,1,4,1,4,1,4,1,4,17,10,10,1,10,1,10,17,1,17,1,17,10,1,10,1,1,10,1,10,10,1,10,1,1,17,1,17,1,17,1,17,1,10,1,10,10,1,1,10,1,10,1,10,1,10,1,10,1,10,4,1,4,1,4,1,3,4,3,2,3,4,3,4,3,4,3,4,3,2,3,2,3,2,1,4,4,1,4,1,1,4,1,4,4,1,4,1,4,3,4,3,4,1,4,3,4,3,4,1,4,1,4,3,1,10,1,10,1,10,1,5,1,5,1,10,1,4,1,4,1,4,1,16,1,16,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,4,1,1,4,4,1,4,1,1,4,1,4,4,3,4,3,4,3,4,3,3,4,3,4,3,4,4,3,4,3,2,3,2,3,3,2,3,2,3,4,3,4,3,2,2,3,3,2,3,4,4,3,3,4,3,4,3,4,4,3,3,4,3,4,3,4,4,3,3,4,3,4,4,3,4,3,4,3,4,3,4,3,3,4,4,3,4,3,3,4,3,4,3,4,3,4,1,4,4,1,4,1,4,1,4,1,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,4,1,4,1,4,1,4,1,4,3,4,3,4,3,4,1,4,3,4,3,4,1,4,3,4,3,4,1,4,3,4,3,4,3,4,1,4,1,4,3,4,1,4,3,4,1,4,1,4,1,4,3,4,1,4,1,4,1,4,1,1,4,1,4,1,4,1,4,1,4,1,4,3,2,3,2,3,4,3,4,3,4,3,4,3,4,1,4,3,2,3,4,3,2,3,4,3,4,3,4,3,2,3,4,3,4,3,4,3,4,3,2,3,4,4,1,4,1,2,3,3,4,4,3,4,3,3,4,4,3,3,4,4,3,3,4,1,4,1,4,4,3,4,3,4,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,0,1,0,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,17,3,2,3,4,1,4,3,2,3,2,3,2,4,3,4,1,4,1,4,1,4,1,4,3,4,1,1,4,4,1,1,17,1,4,1,4,1,4,1,10,1,10,1,4,1,4,4,3,3,2,10,1,10,1,10,1,10,1,1,10,1,10,1,17,1,10,1,17,1,17,1,4,3,4,3,4,3,4,3,2,3,2,3,2,2,3,3,2,1,17,1,10,1,17,1,17,1,17,1,10,1,17,10,1,10,1,10,1,1,10,1,10,1,10,1,5,1,10,1,10,1,5,10,1,1,10,1,5,2,3,2,3,2,22,2,22,2,22,2,22,2,22,2,22,2,22,2,22,2,3,2,3,2,22,2,22,2,22,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,7,2,3,2,22,2,22,2,7,2,7,2,7,2,3,3,2,2,3,2,3,2,22,2,22,2,22,2,22,2,3,2,3,2,7,2,22,2,22,2,3,2,3,2,7,2,3,2,4,8,22,8,22,8,22,8,22,22,8,22,8,8,22,8,22,8,22,8,22,8,22,8,22,8,22,8,22,22,2,22,2,22,8,22,2,22,8,8,22,2,22,2,22,22,2,2,22,22,2,8,22,2,22,2,22,2,22,2,22,2,22,2,22,2,22,2,22,2,22,22,2,22,2,2,22,8,7,8,7,8,7,2,8,2,8,2,8,2,8,2,8,2,8,8,2,8,2,8,22,8,22,8,22,8,22,8,22,8,22,8,22,2,8,2,8,8,2,8,2,2,8,8,2,2,8,2,22,2,22,2,22,2,22,2,22,2,22,2,22,2,8,2,8,2,8,8,2,2,8,8,2,8,2,8,2,8,7,8,7,8,7,8,7,8,7,8,7,8,2,2,7,7,2,2,7,7,8,7,2,2,7,7,2,2,7,2,7,7,2,7,2,7,2,2,7,7,8,7,2,2,22,2,7,2,22,2,7,2,22,2,22,2,22,2,22,2,22,2,22,2,22,2,22,2,22,2,22,8,22,24,8,24,0,24,0,24,0,24,8,24,8,24,0,24,0,24,8,24,0,24,0,24,25,24,25,24,0,24,25,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,25,24,25,24,0,8,0,8,0,8,22,8,22,8,0,8,0,8,0,8,0,8,0,8,22,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,0,8,0,8,24,8,24,8,24,8,24,8,24,8,0,8,24,8,24,8,24,8,0,8,0,8,0,8,0,8,2,8,2,8,24,8,24,8,24,8,24,8,24,8,0,8,0,8,24,8,24,8,24,8,24,24,8,8,24,24,8,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,24,8,8,24,24,8,8,24,24,8,24,8,24,8,24,8,24,8,24,8,8,24,8,24,8,24,8,24,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,8,24,8,24,8,24,24,8,8,24,24,8,24,8,8,24,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,8,24,8,24,8,24,8,2,8,2,8,0,8,24,8,24,8,24,8,24,24,8,8,24,8,24,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,0,24,8,24,0,24,8,24,8,24,8,24,0,24,0,24,0,24,0,24,0,24,0,24,8,24,0,24,0,24,0,24,0,24,0,24,0,24,8,24,8,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,25,24,25,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,25,24,25,24,0,8,2,8,0,8,0,8,2,8,0,8,0,8,0,8,0,8,22,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,24,8,0,8,0,8,0,8,0,8,0,8,22,8,24,8,24,8,24,8,22,8,24,24,8,24,0,24,0,2,22,22,2,2,22,2,9,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,2,9,2,9,2,6,22,2,2,22,2,0,24,25,24,25,24,25,24,25,24,25,24,25,24,25,25,24,25,24,24,25,24,25,24,25,25,24,25,24,25,24,25,24,25,24,25,24,24,25,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,24,25,25,24,24,25,25,24,25,24,25,26,25,24,25,24,25,24,24,25,24,25,24,25,24,25,25,24,25,24,25,24,25,24,25,24,25,24,24,25,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,24,25,24,25,24,25,26,0,26,0,26,0,26,0,26,0,26,0,25,24,25,24,25,24,25,24,25,24,25,24,25,0,25,0,25,24,25,24,25,24,25,24,25,0,25,0,25,0,25,0,25,0,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,24,25,25,24,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,0,26,25,26,0,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,0,26,0,26,0,26,0,26,0,25,24,25,24,25,26,25,26,25,24,25,24,25,24,25,24,25,24,25,24,26,25,26,25,26,25,26,25,26,0,26,25,26,25,26,25,26,0,26,25,26,25,26,25,26,25,26,25,26,25,26,0,26,25,26,0,26,0,26,0,25,26,25,26,26,25,26,25,25,26,26,25,26,25,26,25,26,25,25,26,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,25,26,26,25,25,26,25,26,25,26,25,26,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,0,26,0,26,0,26,25,26,25,26,0,26,0,26,0,26,0,26,0,26,0,26,25,26,25,26,25,25,24,25,24,25,0,25,0,26,0,25,26,25,26,25,26,25,26,26,25,26,25,25,26,25,26,26,25,26,25,26,25,26,25,26,25,25,26,26,25,26,25,26,25,26,25,25,26,26,25,25,26,25,26,25,26,26,25,26,25,26,25,25,26,26,25,26,25,26,25,26,25,26,25,25,26,26,25,26,25,26,25,25,26,25,26,26,25,26,25,26,25,25,26,26,25,26,25,26,25,25,26,26,25,25,26,25,26,25,26,25,26,25,26,26,25,26,25,26,25,25,26,25,26,25,26,26,25,25,26,25,26,26,25,25,26,25,26,25,26,25,26,25,26,25,26,26,25,26,25,26,25,25,26,26,25,25,26,25,26,25,26,26,25,25,26,25,26,25,26,25,26,25,26,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,25,26,25,26,25,26,25,26,26,25,26,25,25,26,25,26,25,26,26,25,26,25,26,25,26,25,26,25,26,25,26,0,26,25,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,0,26,0,26,0,26,0,26,25,26,25,26,25,26,0,26,0,26,0,26,0,26,0,26,25,26,0,26,0,26,25,26,0,26,0,26,25,26,0,26,25,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,25,26,25,26,25,26,25,26,25,26,0,26,0,26,25,26,25,26,25,26,0,26,25,26,25,26,25,26,0,26,25,25,24,25,24,25,26,25,24,25,24,24,25,24,25,25,24,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,24,25,26,25,26,25,26,25,26,25,24,25,0,24,25,24,25,24,25,25,24,25,0,26,25,26,25,26,25,26,0,26,25,25,26,26,0,26,0,25,26,25,26,25,26,26,25,26,0,26,25,26,0,26,0,26,0,26,0,26,0,26,0,25,26,26,25,25,26,26,25,26,25,26,25,26,0,26,0,26,0,24,25,24,25,24,25,26,25,26,25,26,0,26,0,26,25,26,25,26,25,26,0,26,25,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,25,26,0,26,25,26,25,26,25,26,25,26,25,26,25,26,0,26,25,26,25,26,25,26,25,26,25,26,25,25,0,25,26,24,25,24,25,24,25,24,25,24,25,24,25,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,0,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,21,20,19,20,19,20,21,20,19,20,0,20,0,20,0,20,0,20,21,20,21,20,19,20,0,20,0,21,20,20,21,20,19,20,19,39,0,39,0,39,0,39,0,39,0,39,0,34,0,34,0,34,0,34,0,34,0,34,0,29,0,29,0,29,0,29,0,29,28,29,28,29,0,29,0,29,28,29,0,29,0,29,0,29,0,29,0,29,28,28,29,28,29,28,29,29,28,29,0,28,29,28,30,28,30,28,29,29,28,28,30,29,31,29,31,29,31,29,31,29,31,29,31,31,29,31,29,31,29,29,31,29,31,29,31,29,31,31,29,31,29,31,29,31,29,31,0,31,0,31,29,31,29,31,0,31,0,31,29,31,0,31,0,31,0,31,0,31,29,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,29,31,0,31,0,31,0,31,29,31,29,31,29,31,29,31,29,31,0,31,29,31,0,31,0,31,0,31,0,31,29,31,0,31,29,29,31,29,31,29,31,31,0,31,0,29,31,29,31,29,31,29,31,29,0,29,0,29,0,29,28,29,28,29,0,29,28,29,31,29,31,29,28,28,29,28,29,28,0,28,0,28,29,28,0,20,32,32,30,32,20,32,20,30,20,30,32,32,33,32,33,30,35,30,35,32,33,32,33,30,35,30,35,32,33,32,33,32,33,30,32,30,32,30,32,30,20,30,32,30,35,30,35,30,20,30,35,30,20,30,35,30,35,30,35,35,30,35,30,35,30,30,35,30,35,35,30,35,36,35,36,35,36,30,35,30,0,30,35,35,36,35,30,36,35,36,35,36,35,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,33,32,33,32,33,32,32,33,33,32,33,32,33,32,33,34,33,32,33,34,33,32,33,32,33,34,33,34,33,34,33,32,33,32,33,34,33,34,34,33,34,33,33,34,34,33,33,32,33,34,32,33,33,32,33,34,34,33,34,33,33,34,34,33,33,32,33,32,32,33,34,0,34,0,34,0,34,0,34,0,35,30,35,30,35,0,35,0,35,36,35,36,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,0,36,0,36,0,36,35,36,0,36,35,36,0,36,35,36,35,36,35,35,36,36,35,36,35,35,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,35,36,0,36,35,36,0,36,35,36,0,36,35,36,35,36,35,36,35,35,0,35,36,35,0,35,30,35,30,35,30,35,30,30,35,30,35,30,35,30,35,35,30,35,30,30,35,28,29,30,0,30,0,30,0,30,28,30,20,30,20,30,35,36,0,36,0,36,0,36,0,36,0,36,0,36,0,34,33,34,33,34,0,34,33,34,0,34,33,34,0,34,0,34,0,34,0,34,33,33,34,34,0,34,0,33,32,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,30,28,28,30,28,30,28,30,30,28,28,30,28,30,34,0,34,0,34,0,34,0,31,0,31,0,39,38,39,38,39,38,39,38,39,0,39,0,39,0,39,0,39,38,39,0,39,38,39,38,39,38,39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,28,29,28,0,28,0,28,29,28,30,38,39,38,39,39,38,21,20,21,20,21,20,21,20,29,0,29,0,20,21,20,21,20,0,20,21,20,0,20,28,20,28,20,30,20,28,20,28,20,30,20,21,20,28,20,21,20,21,20,21,20,0,20,0,20,0,20,32,20,30,20,30,20,32,20,37,20,37,20,0,20,0,20,0,20,0,20,0,20,37,20,37,20,37,20,37,20,37,20,37,20,37,20,0,37,20,20,37,20,32,20,0,20,32,20,37,20,32,20,32,20,32,32,20,20,32,32,20,20,32,20,0,37,20,37,20,37,20,20,37,20,37,37,20,37,0,37,0,37,20,37,0,37,0,20,32,37,0,37,32,37,38,37,38,37,38,37,38,38,37,38,37,38,37,37,38,37,32,37,32,37,32,37,32,20,0,20,0,20,0,20,0,20,0,20,21,20,21,20,21,21,20,21,20,21,27,21,20,20,21,20,21,20,21,20,0,20,32,20,32,20,32,20,32,21,20,20,21,20,28,21,27,21,27,21,27,20,21,21,20,21,20,21,20,21,20,21,20,21,20,21,27,21,27,21,20,27,21,27,21,27,21,27,21,27,21,27,21,27,40,27,40,27,40,27,40,27,40,27,40,27,40,27,40,27,40,27,40,40,27,40,27,40,27,27,40,40,27,40,27,40,27,27,40,27,40,27,40,27,40,27,21,27,21,27,21,40,27,40,27,40,27,40,27,40,27,40,27,40,27,40,0,40,27,40,0,40,27,27,21,27,40,27,20,27,20,20,27,27,21,20,21,20,21,28,20,20,28,20,21,20,28,27,21,27,21,21,27,27,21,27,21,20,27,27,40,20,21,21,27,20,30,20,30,20,30,30,20,30,20,20,30,30,20,20,30,32,20,20,32,20,32,32,30,32,30,32,20,32,20,32,30,32,30,32,37,32,20,32,20,32,20,32,37,32,20,32,37,32,37,32,37,32,33,30,32,30,32,30,32,30,20,20,28,30,20,30,20,28,20,20,28,28,20,28,20,28,20,28,20,28,20,28,20,28,20,28,20,28,20,40,27,40,0,40,27,40,27,27,40,40,0,40,0,40,27,40,27,40,27,27,40,40,0,27,40,27,40,27,21,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,27,40,27,40,27,40,27,40,27,40,27,27,40,32,20,32,20,32,20,32,20,37,32,20,32,37,32,32,37,37,38,37,38,38,0,38,0,38,0,38,0,38,0,38,0,38,37,38,0,32,33,38,37,38,0,38,0,32,20,32,20,32,33,32,33,32,33,32,33,33,32,32,33,30,28,30,28,28,30,28,30,37,38,37,38,38,37,38,37,38,0,38,0,38,0,38,37,38,39,38,0,38,0,38,39,38,0,38,0,38,39,38,39,38,0,38,39,38,0,38,0,38,0,38,39,38,37,38,39,38,0,38,0,39,0,39,0,39,0,38,39,38,39,39,0,39,0,39,0,39,0,39,0,39,0,38,0,30,0,29,31,33,32,36,0,20,21,20,21,37,32,37,32,27,40,27,40,27,20,20,21,28,20,20,21,28,20,20,28,20,28,21,27,21,20,20,32,20,30,20,32,20,28,20,30,20,30,20,30,20,21,20,21,20,21,20,28,20,21,20,19,20,21,20,21,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,5,14,5,14,5,14,5,14,5,14,0,14,0,14,0,14,0,14,0,14,5,14,0,14,0,14,5,14,5,14,5,14,5,14,5,14,0,14,0,14,0,14,0,14,0,14,0,14,5,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,14,0,14,0,14,0,14,13,14,13,14,0,14,0,14,0,13,14,13,5,13,14,13,14,13,14,13,14,13,14,14,13,13,14,13,5,13,14,13,5,13,14,14,13,13,14,13,5,14,0,14,0,14,0,14,0,14,0,14,5,14,5,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,5,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,0,14,0,14,0,14,0,14,13,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,13,14,13,14,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,0,14,0,14,13,14,0,14,0,14,5,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,5,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,13,14,13,14,14,0,14,0,14,0,14,0,14,0,13,14,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,13,5,13,5,13,5,13,5,13,5,13,5,13,5,13,5,13,14,13,14,13,14,13,5,13,5,13,5,13,5,13,5,5,13,5,13,5,13,5,13,13,5,5,13,5,13,13,5,5,13,13,5,5,13,5,13,5,13,13,5,5,13,13,5,13,5,5,13,5,13,13,5,5,13,13,5,5,13,13,5,5,13,13,5,13,5,5,13,5,13,13,5,5,13,13,5,5,13,5,13,5,13,5,1,5,1,5,13,5,1,5,1,5,13,5,1,5,13,5,13,5,1,5,13,5,1,5,13,5,1,5,1,5,13,5,13,5,1,5,13,5,1,5,13,5,1,5,13,5,13,5,1,5,1,5,13,5,1,5,13,5,1,5,13,5,13,5,13,5,13,5,1,1,5,1,5,1,5,1,5,1,5,1,5,5,1,5,1,1,5,5,1,5,1,5,1,1,5,1,5,1,5,5,1,1,5,13,14,13,14,13,5,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,13,14,13,5,13,5,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,25,24,25,0,25,24,25,0,24,8,24,8,25,26,25,26,25,0,25,0,42,1,42,1,42,41,42,41,44,45,44,41,44,45,44,45,44,41,44,41,41,44,41,42,41,42,41,44,41,42,41,42,41,42,41,42,41,44,41,42,41,42,41,42,41,42,41,42,41,44,41,44,44,41,44,41,41,42,41,42,41,42,41,42,41,42,41,42,41,42,44,45,44,45,41,42,41,42,41,42,41,42,44,45,44,45,44,45,44,45,44,45,44,45,45,44,45,44,45,44,44,45,44,45,45,44,45,44,44,45,45,44,44,45,44,45,44,45,45,44,45,44,45,44,45,44,45,44,45,46,45,46,45,46,44,45,45,44,45,44,45,44,44,45,45,44,45,44,45,46,45,46,45,46,44,45,44,45,44,45,44,45,44,41,44,41,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,45,44,44,45,44,45,44,41,44,41,44,41,44,45,44,45,44,41,44,45,44,45,44,45,45,44,45,44,41,42,41,44,41,44,41,42,41,42,41,42,41,42,41,44,44,41,41,44,41,44,44,41,41,44,41,44,44,41,41,42,44,41,41,44,41,44,41,44,41,44,41,44,41,44,41,44,44,41,44,41,44,41,45,44,45,46,45,46,45,44,44,45,45,44,45,46,41,42,41,42,41,42,41,42,41,44,41,42,41,42,41,42,45,46,45,46,45,44,45,46,45,44,41,44,41,44,41,44,41,42,41,44,41,44,41,44,41,44,41,44,41,44,41,44,41,42,42,41,42,41,41,42,41,42,42,41,42,41,42,41,42,1,42,1,42,41,42,41,42,41,41,42,41,42,41,42,42,41,42,41,42,41,42,41,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,41,41,42,42,41,42,41,41,42,42,41,41,42,42,41,42,41,41,42,42,41,42,41,41,42,42,41,42,41,42,41,42,41,44,41,44,41,44,45,44,45,44,41,44,41,42,41,42,41,42,41,42,41,42,41,42,41,42,43,42,41,42,41,41,42,42,41,42,41,42,41,42,41,42,41,42,41,42,41,44,41,44,41,44,41,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,46,45,45,46,45,46,45,46,45,46,45,46,45,46,46,45,45,46,46,45,45,46,45,46,45,46,46,45,46,45,45,46,45,46,45,46,45,46,46,45,45,46,46,45,42,43,43,1,1,43,1,43,43,1,1,43,42,43,43,42,43,42,42,43,42,43,42,43,42,43,42,43,42,43,43,42,43,42,42,43,42,43,42,43,43,42,43,42,43,42,43,42,43,42,43,1,43,42,43,11,43,11,43,1,43,11,43,11,43,42,43,11,43,11,43,42,43,42,43,42,43,11,43,42,43,11,43,11,43,11,43,11,43,11,43,11,43,11,43,1,1,11,1,11,43,11,1,43,1,43,1,43,1,43,43,11,43,11,43,11,1,11,1,11,43,11,43,1,43,11,43,11,43,11,43,11,1,42,42,1,42,1,1,42,42,1,42,1,1,43,1,11,1,11,1,42,1,43,1,43,1,42,1,42,42,1,1,42,1,42,42,1,42,1,42,1,42,1,1,42,42,1,42,43,42,1,1,42,1,42,42,1,1,42,1,42,1,42,1,42,1,11,43,11,43,11,42,43,42,43,42,43,1,43,42,1,42,1,42,1,42,1,42,1,42,1,42,43,42,43,42,43,42,43,1,42,1,42,1,42,42,43,42,43,42,43,42,43,42,43,1,42,42,43,4,3,4,3,4,3,4,3,1,4,1,4,4,1,1,11,1,11,1,11,1,11,1,11,1,11,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,42,1,0,1,11,1,11,1,0,1,11,1,4,1,4,1,4,1,11,1,4,1,4,1,4,1,4,1,4,43,11,11,43,11,1,11,1,1,43,1,43,11,1,1,11,1,11,11,1,11,1,11,1,1,43,1,43,1,43,1,43,1,11,1,11,11,1,1,11,1,11,1,11,1,11,1,11,1,11,4,1,4,1,4,1,3,4,3,4,3,4,3,2,3,4,3,4,3,2,3,2,3,2,1,4,1,4,4,1,4,1,4,1,1,4,4,1,4,1,4,3,4,3,4,3,4,3,4,1,4,1,4,3,1,11,1,11,1,11,1,5,1,5,1,4,1,11,1,4,1,4,1,42,1,42,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,4,1,4,1,4,1,1,4,1,4,1,4,4,3,4,3,4,3,4,3,3,4,3,4,3,4,4,3,4,3,2,3,3,2,3,2,2,3,3,4,3,2,3,4,2,3,3,2,4,3,3,4,3,4,3,4,3,4,3,4,4,3,3,4,3,4,3,4,4,3,3,4,4,3,4,3,4,3,4,3,4,3,4,3,4,3,3,4,3,4,3,4,3,4,3,4,1,4,4,1,4,1,4,1,4,1,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,4,1,4,1,4,1,4,1,4,3,4,1,4,3,4,3,4,3,4,3,4,1,4,1,4,3,4,3,4,3,4,3,4,3,4,1,4,3,4,1,4,3,4,1,4,1,4,1,4,3,4,1,4,1,4,1,4,1,4,1,1,4,1,4,1,4,1,4,1,4,1,4,3,2,3,4,3,4,3,2,3,4,3,4,3,4,1,4,3,4,3,4,3,4,3,2,3,4,3,2,3,4,3,2,3,4,3,4,3,4,3,2,3,4,3,4,4,1,4,1,2,3,3,4,4,3,4,3,4,3,3,4,4,3,3,4,3,4,3,4,1,4,1,4,4,3,4,3,4,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,0,1,0,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,43,3,2,3,4,1,4,1,4,1,4,1,4,3,2,3,2,3,2,4,1,4,3,4,1,4,1,4,1,4,3,4,1,1,4,4,1,1,4,4,3,1,43,1,4,1,4,1,4,1,11,1,11,1,4,4,1,4,3,1,4,4,1,1,4,1,11,1,4,1,4,1,4,4,3,11,1,11,1,11,1,11,1,1,11,1,11,1,11,1,43,1,43,1,43,3,4,3,4,3,4,3,4,3,2,3,2,3,2,2,3,3,2,3,2,1,11,1,11,1,43,1,43,1,43,1,43,1,11,1,43,11,1,11,1,11,1,1,11,1,11,1,11,1,5,1,11,1,11,1,5,1,11,11,1,2,3,2,23,2,23,2,3,2,23,2,23,2,23,2,23,2,23,2,3,2,3,2,23,2,23,2,23,2,3,2,23,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,6,2,3,2,23,2,23,2,6,2,3,2,6,2,6,2,3,2,3,3,2,2,23,2,23,2,23,2,23,2,3,2,3,2,6,2,23,2,23,2,3,2,3,2,6,2,6,2,0,9,23,9,23,9,23,9,23,23,9,23,9,9,23,9,23,9,23,9,23,9,23,9,23,9,23,9,23,23,2,23,9,23,2,23,2,23,9,9,23,2,23,2,23,23,2,2,23,23,2,9,23,2,23,2,23,2,23,2,23,2,23,2,23,2,23,2,23,2,23,23,2,23,2,2,23,9,6,9,6,9,6,2,9,2,9,2,9,2,9,2,9,2,9,9,2,9,23,9,23,9,2,9,23,9,23,9,23,9,23,9,23,2,9,2,9,9,2,2,9,9,2,2,9,9,2,2,23,2,23,2,23,2,23,2,23,2,23,2,9,2,23,2,9,2,9,9,2,2,9,9,2,9,2,9,2,9,6,9,6,9,6,9,6,9,6,9,6,2,6,9,2,6,2,6,2,6,9,2,6,2,6,2,6,2,6,6,2,6,2,6,2,6,2,2,6,6,2,6,9,2,23,2,6,2,23,2,6,2,23,2,23,2,23,2,23,2,23,2,23,2,23,2,23,2,23,2,23,9,23,48,9,48,0,48,0,48,0,48,9,48,9,48,0,48,0,48,9,48,0,48,49,48,49,48,0,48,49,48,0,48,0,48,0,48,0,48,9,48,0,48,0,48,0,48,0,48,0,48,9,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,49,48,49,9,0,9,0,9,23,9,23,9,0,9,0,9,0,9,0,9,23,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,0,9,48,9,0,9,48,9,48,9,48,9,0,9,48,9,48,9,48,9,48,9,0,9,0,9,0,9,0,9,2,9,2,9,48,9,48,9,48,9,48,9,48,9,0,9,0,9,48,9,48,9,48,9,48,48,9,9,48,9,48,48,9,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,48,9,48,9,9,48,48,9,48,9,48,9,48,9,48,9,48,9,9,48,9,48,9,48,9,48,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,9,48,48,9,9,48,9,48,48,9,9,48,48,9,48,9,9,48,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,9,48,48,9,9,48,9,48,9,2,9,2,9,0,9,48,9,48,9,48,9,48,48,9,9,48,9,48,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,0,48,9,48,9,48,9,48,9,48,0,48,0,48,0,48,0,48,0,48,9,48,0,48,0,48,0,48,0,48,9,48,9,48,9,48,9,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,49,48,49,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,49,48,49,48,0,48,0,9,2,9,0,9,0,9,2,9,0,9,0,9,0,9,0,9,23,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,48,9,0,9,0,9,0,9,0,9,0,9,23,9,48,9,48,9,48,9,23,9,48,48,9,48,0,48,0,2,23,23,2,2,23,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,2,0,2,9,2,9,2,9,2,6,2,6,23,2,2,23,3,2,48,49,48,49,48,49,48,49,48,49,48,49,49,48,49,48,48,49,48,49,48,49,48,49,49,48,49,48,49,48,49,48,49,48,49,48,48,49,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,48,49,49,48,48,49,49,48,49,48,49,48,49,48,49,50,49,48,48,49,48,49,48,49,48,49,49,48,49,48,49,48,49,48,48,49,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,48,49,48,49,48,49,50,0,50,0,50,0,50,0,50,0,50,0,49,48,49,48,49,48,49,48,49,48,49,48,49,0,49,0,49,48,49,48,49,48,49,48,49,0,49,0,49,0,49,0,49,0,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,48,49,49,48,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,0,50,0,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,0,50,0,50,0,50,0,50,0,49,48,49,48,49,50,49,48,49,48,49,50,49,48,49,48,49,48,49,48,50,49,50,49,50,49,50,49,50,49,50,0,50,49,50,49,50,0,50,49,50,49,50,49,50,49,50,0,50,49,50,49,50,49,50,0,50,0,50,0,49,50,50,49,50,49,49,50,49,50,50,49,50,49,50,49,50,49,50,49,49,50,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,49,50,50,49,49,50,49,50,49,50,49,50,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,0,50,0,50,0,50,49,50,49,50,0,50,0,50,0,50,0,50,0,50,0,50,49,50,49,50,49,49,48,49,0,49,0,49,48,50,0,49,50,49,50,49,50,49,50,50,49,50,49,49,50,49,50,50,49,50,49,50,49,50,49,50,49,49,50,50,49,50,49,50,49,49,50,50,49,50,49,49,50,49,50,49,50,50,49,50,49,50,49,49,50,50,49,50,49,50,49,50,49,50,49,49,50,50,49,50,49,50,49,49,50,50,49,50,49,49,50,49,50,50,49,50,49,50,49,50,49,49,50,50,49,49,50,49,50,49,50,49,50,49,50,50,49,50,49,50,49,49,50,49,50,49,50,50,49,50,49,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,50,49,50,49,49,50,50,49,50,49,49,50,50,49,49,50,49,50,49,50,49,50,49,50,49,50,49,50,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,49,50,49,50,49,50,49,50,50,49,50,49,49,50,49,50,49,50,50,49,50,49,50,49,50,49,50,49,50,49,50,0,50,49,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,0,50,0,50,0,50,0,50,49,50,0,50,49,50,49,50,0,50,0,50,0,50,0,50,49,50,0,50,0,50,49,50,0,50,0,50,49,50,49,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,49,50,49,50,49,50,49,50,49,50,0,50,0,50,49,50,49,50,49,50,0,50,49,50,49,50,49,50,0,50,49,49,48,49,48,49,50,49,48,49,48,48,49,48,49,49,48,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,49,48,49,50,49,50,49,50,49,50,49,48,49,0,48,49,48,49,48,49,49,48,49,0,50,49,50,49,50,49,50,0,50,49,49,50,50,0,50,0,49,50,50,49,49,50,50,49,50,0,50,0,50,49,50,0,50,0,50,0,50,0,50,0,49,50,49,50,50,49,50,49,50,49,50,49,50,0,50,0,50,0,48,49,48,49,48,49,50,49,50,49,50,0,50,0,50,49,50,49,50,49,50,0,50,49,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,49,50,49,50,49,50,49,50,49,50,49,50,49,50,0,50,49,50,49,50,49,50,49,50,49,50,49,49,0,49,50,48,49,48,49,48,49,48,49,48,49,48,49,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,0,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,47,46,45,46,45,46,45,46,47,46,0,46,0,46,0,46,0,46,47,46,45,46,47,46,0,46,0,47,46,46,47,46,45,46,45,63,0,63,0,63,0,63,0,63,0,63,0,58,0,58,0,58,0,58,0,58,0,58,0,53,0,53,0,53,0,53,0,53,52,53,52,53,0,53,0,53,52,53,0,53,0,53,0,53,0,53,0,53,52,52,53,52,53,52,53,53,52,53,0,52,53,52,54,52,54,52,53,53,52,52,54,53,55,53,55,53,55,53,55,53,55,53,55,55,53,55,53,55,53,53,55,53,55,53,55,53,55,55,53,55,53,55,53,55,53,55,0,55,0,55,53,55,53,55,0,55,0,55,53,55,0,55,0,55,0,55,0,55,53,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,53,55,0,55,53,55,0,55,53,55,53,55,53,55,53,55,53,55,0,55,53,55,0,55,0,55,0,55,53,55,53,55,53,55,53,53,55,53,55,53,55,55,0,55,0,53,55,53,55,53,55,53,55,53,0,53,0,53,0,53,52,53,0,53,52,53,52,53,55,53,55,53,52,52,53,52,53,52,0,52,0,52,53,52,0,46,56,56,46,56,46,56,54,54,56,54,46,56,57,56,57,54,59,54,59,56,57,56,57,54,59,54,59,56,57,56,57,56,57,54,56,54,56,54,56,54,56,54,46,54,59,54,59,54,59,54,46,54,46,54,59,54,59,54,59,59,54,59,54,59,54,54,59,54,59,59,54,59,60,59,60,59,60,54,59,54,0,54,59,59,60,59,54,60,59,60,59,60,59,56,57,56,57,56,57,56,57,56,57,56,57,56,57,56,57,57,56,57,56,57,56,56,57,57,56,57,56,57,56,57,56,57,58,57,58,57,56,57,56,57,58,57,58,57,58,57,56,57,58,57,58,57,56,58,57,58,57,57,58,58,57,57,56,57,58,56,57,57,56,57,58,58,57,58,57,57,58,58,57,57,56,57,56,56,57,58,0,58,0,58,0,58,0,58,0,59,54,59,54,59,0,59,0,59,60,59,60,60,59,60,59,60,59,60,59,60,59,60,59,60,59,60,0,60,0,60,59,60,59,60,59,60,59,60,59,60,59,60,59,60,59,59,60,60,59,60,59,59,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,59,60,59,60,0,60,59,60,59,60,59,60,59,60,59,60,59,60,59,60,59,60,59,60,59,60,59,59,0,59,54,59,0,59,60,59,54,59,54,59,54,54,59,54,59,54,59,54,59,59,54,54,59,59,54,52,53,54,0,54,0,54,0,54,46,54,52,54,46,54,59,60,0,60,0,60,0,60,0,60,0,60,0,60,0,58,57,58,57,58,0,58,0,58,0,58,0,58,57,58,0,58,0,58,0,58,57,57,58,58,0,58,0,57,56,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,54,52,52,54,52,54,54,52,52,54,52,54,52,54,58,0,58,0,58,0,58,0,55,0,55,0,63,0,63,0,63,0,62,63,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,62,63,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,52,53,52,0,52,53,52,0,52,54,62,63,62,63,62,63,47,46,47,46,47,46,47,46,53,0,53,0,46,47,46,47,46,47,46,0,46,0,46,52,46,52,46,54,46,52,46,52,46,54,46,47,46,52,46,47,46,47,46,47,46,0,46,0,46,0,46,54,46,56,46,54,46,56,46,61,46,0,46,0,46,61,46,0,46,0,46,0,46,61,46,61,46,61,46,61,46,61,46,61,46,0,46,61,46,61,61,46,46,0,46,56,46,61,46,56,46,56,46,56,46,56,46,56,56,46,46,56,56,46,46,0,61,46,61,46,61,46,46,61,46,61,61,46,61,46,61,0,61,0,61,0,61,0,46,56,61,56,61,0,61,62,61,62,61,62,61,62,62,61,62,61,61,62,62,61,61,56,61,56,61,56,61,56,46,0,46,0,46,0,46,0,46,0,46,47,46,47,46,47,47,46,47,46,47,51,47,46,46,47,46,47,46,47,46,0,46,56,46,56,46,56,46,56,47,46,46,52,46,47,47,51,47,51,47,51,46,47,47,46,47,46,47,46,47,46,47,46,47,46,47,51,47,51,47,46,51,47,51,47,51,47,51,47,51,47,51,47,51,64,51,64,51,64,51,64,51,64,51,64,51,64,51,64,51,64,51,64,64,51,64,51,64,51,51,64,64,51,64,51,64,51,51,64,51,64,51,64,51,64,51,47,51,47,51,47,64,51,64,51,64,51,64,51,64,51,64,51,64,51,64,0,64,0,64,0,64,51,51,64,51,47,51,46,46,51,51,46,51,47,46,47,46,47,52,46,46,52,46,47,46,52,51,47,51,47,47,51,51,47,51,47,46,51,51,64,47,46,46,47,46,54,46,54,46,54,46,54,54,46,54,46,46,54,54,46,56,46,46,56,46,56,56,54,56,54,56,46,56,54,56,46,56,54,56,61,56,46,56,46,56,46,56,61,56,46,56,61,56,61,56,61,56,57,54,56,54,56,54,46,54,56,46,52,54,46,54,46,52,46,46,52,52,46,52,46,52,46,52,46,52,46,52,46,52,46,52,46,52,46,64,51,64,51,64,51,64,51,51,64,64,0,64,51,64,51,64,51,51,64,64,51,64,51,51,64,51,64,51,47,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,51,64,51,64,51,64,51,64,51,64,51,64,51,64,51,51,64,56,46,56,46,56,46,46,56,61,56,56,46,61,56,56,61,61,62,61,62,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,61,56,57,62,61,62,0,62,0,56,46,56,46,56,57,56,57,56,57,56,57,56,57,57,56,54,52,54,52,52,54,52,54,61,62,61,62,62,61,62,61,62,0,62,0,62,0,62,61,62,63,62,0,62,63,62,0,62,0,62,0,62,63,62,63,62,63,62,0,62,0,62,0,62,0,62,63,62,61,62,0,62,63,62,0,63,0,63,0,63,0,62,63,62,63,63,0,63,0,63,0,63,0,63,0,63,0,62,0,54,0,53,55,57,56,60,0,46,47,46,47,61,56,61,56,51,64,51,64,51,46,46,47,52,46,46,47,52,46,46,52,46,52,47,51,47,46,46,56,46,54,46,56,46,52,46,54,46,54,46,54,46,47,46,47,46,47,46,52,46,47,46,45,46,47,46,47,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,5,14,5,14,5,14,5,14,5,14,0,14,0,14,0,14,0,14,0,14,5,14,0,14,0,14,5,14,5,14,5,14,5,14,5,14,0,14,0,14,0,14,0,14,0,14,5,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,14,0,14,0,14,0,14,13,14,13,14,0,14,0,14,0,13,14,13,14,13,14,13,5,13,14,14,13,13,14,13,14,13,14,13,5,13,14,13,5,14,13,13,14,13,5,13,14,14,0,14,0,14,0,14,0,14,0,14,5,14,5,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,5,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,13,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,13,14,14,13,13,14,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,0,14,0,14,13,14,0,14,13,14,5,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,5,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,13,14,13,14,14,0,14,0,14,0,14,0,14,0,13,14,13,14,13,14,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,13,5,13,5,13,5,13,5,13,5,13,5,13,5,13,5,13,14,13,5,13,14,13,14,13,5,13,5,13,5,13,5,13,5,5,13,5,13,5,13,5,13,13,5,13,5,5,13,5,13,5,13,13,5,13,5,5,13,5,13,5,13,13,5,13,5,5,13,5,13,13,5,13,5,5,13,13,5,5,13,13,5,5,13,13,5,5,13,5,13,13,5,5,13,13,5,5,13,13,5,5,13,5,1,5,1,5,13,5,13,5,13,5,1,5,1,5,1,5,13,5,1,5,1,5,13,5,1,5,13,5,13,5,13,5,1,5,1,5,13,5,1,5,13,5,1,5,13,5,1,5,13,5,1,5,1,5,13,5,1,5,13,5,1,5,13,5,13,5,13,5,1,5,1,1,5,1,5,1,5,1,5,1,5,1,5,5,1,5,1,1,5,5,1,5,1,5,1,1,5,1,5,1,5,5,1,1,5,13,14,13,14,13,5,14,0,14,0,14,0,14,0,14,0,14,0,14,13,13,5,13,14,13,14,13,5,13,5,1,5,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,49,48,49,0,49,48,49,0,48,9,48,9,49,50,49,50,49,0,49,0], - - "skinWeights" : [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.997312,0.00268784,0.532743,0.41555,0.995118,0.00488186,0.434394,0.339724,0.674776,0.163462,1.0,0,1.0,0,1.0,0,0.610118,0.258889,0.653998,0.25881,0.584574,0.329678,0.856829,0.0552087,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.797,0.177139,1.0,0,1.0,0,0.678725,0.275418,0.593658,0.397386,1.0,0,0.531455,0.354891,0.61182,0.210622,0.549129,0.383168,0.965668,0.0343322,0.89898,0.100701,0.975237,0.0236312,0.641842,0.122078,0.654052,0.193761,1.0,0,0.997948,0.00205154,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.995984,0.00133856,0.878841,0.120024,1.0,0,1.0,0,1.0,0,0.69508,0.172391,0.747109,0.129324,0.699395,0.139315,0.646933,0.220172,0.954146,0.0253354,0.925937,0.0737038,0.925712,0.0735286,0.920724,0.05598,0.666661,0.328625,0.747529,0.247054,0.869188,0.125344,0.812249,0.184245,0.96432,0.0266604,0.957683,0.0309355,0.889598,0.110402,0.737422,0.262467,0.748533,0.251467,0.879481,0.120382,0.957118,0.0311232,0.943964,0.0553058,0.708667,0.291333,0.844525,0.155475,0.872015,0.127985,0.69994,0.299181,0.666476,0.333401,0.518261,0.481739,0.532391,0.467609,0.679799,0.319891,0.95869,0.0336496,0.952724,0.0411571,0.854537,0.145463,0.948583,0.0482541,0.821533,0.178467,0.939664,0.0590105,0.791504,0.208496,0.954949,0.0338787,0.916086,0.0837313,0.774298,0.225702,0.918323,0.0816765,0.886318,0.113682,0.734905,0.265095,0.7839,0.2161,0.815064,0.184936,0.640402,0.359598,0.6012,0.3988,0.662702,0.337298,0.829284,0.170716,0.576507,0.423493,0.600097,0.399903,0.634556,0.365444,0.819532,0.180468,0.665534,0.334466,0.569344,0.430656,0.570635,0.429365,0.657701,0.342299,0.57322,0.42678,0.648475,0.351525,0.804544,0.195456,0.793218,0.206782,0.800623,0.199377,0.802841,0.197159,0.805271,0.194729,0.81386,0.18614,0.835113,0.164887,0.982875,0.015476,0.981187,0.0183577,0.983607,0.0149632,0.561088,0.438912,0.660879,0.339121,0.857592,0.142408,0.867374,0.132626,0.749466,0.250534,0.860124,0.139876,0.667324,0.332676,0.983739,0.0162611,0.985682,0.0143177,0.980831,0.0191691,0.948022,0.0422304,0.900255,0.0997452,0.903562,0.0964375,0.950162,0.0399338,0.923256,0.0628338,0.95316,0.0441434,0.887177,0.0985418,0.89691,0.10309,0.788224,0.211776,0.954355,0.0398463,0.889293,0.110707,0.775604,0.224396,0.539669,0.460331,0.724547,0.275453,0.723814,0.276186,0.546038,0.453962,0.650432,0.349568,0.872677,0.127069,0.866697,0.125586,0.879189,0.0855028,0.945541,0.0375921,0.751425,0.24134,0.630526,0.362095,0.880292,0.119708,0.889107,0.100008,0.747987,0.252013,0.574018,0.425982,0.613998,0.386002,0.622166,0.377834,0.597006,0.402994,0.949781,0.042422,0.942694,0.0486435,0.861961,0.133016,0.855237,0.142334,0.842231,0.157769,0.818556,0.181444,0.881926,0.116833,0.967256,0.026479,0.639052,0.354484,0.636092,0.363712,0.630846,0.368337,0.610353,0.381498,0.573937,0.417189,0.676477,0.322244,0.613333,0.385817,0.897864,0.102136,0.782483,0.180318,0.865231,0.13232,0.690348,0.309105,0.698503,0.300834,0.879744,0.116912,0.733907,0.265659,0.931889,0.0619436,0.552648,0.447086,0.50884,0.491014,0.70604,0.29006,0.570776,0.428654,0.826255,0.173745,0.844238,0.155762,0.982932,0.0168507,0.981166,0.0186294,0.57885,0.42115,0.64047,0.35953,0.984451,0.0150712,0.94717,0.0435164,0.840174,0.159826,0.963568,0.0258481,0.655693,0.344307,0.831013,0.166818,0.923716,0.0762839,0.804505,0.195495,0.746388,0.253612,0.808823,0.191177,0.984067,0.0155572,0.985339,0.0146607,0.81323,0.18677,0.981708,0.0182919,0.69966,0.30034,0.845743,0.153575,0.980497,0.017917,0.908262,0.0908276,0.723145,0.27596,0.609439,0.389847,0.83244,0.166488,0.544281,0.454544,0.883755,0.112744,0.961899,0.0267741,0.752387,0.247316,0.571102,0.428898,0.611356,0.388643,0.627226,0.372774,0.642745,0.357255,0.543098,0.456902,0.870648,0.116155,0.87152,0.0522639,0.936776,0.0324289,0.859419,0.127626,0.79621,0.0998634,0.73663,0.159404,0.72655,0.262861,0.764196,0.222223,0.542837,0.45404,0.549496,0.449787,0.674581,0.323921,0.550708,0.436733,0.530758,0.459704,0.760565,0.226228,0.735086,0.253355,0.549589,0.306086,0.669786,0.188734,0.752372,0.0989201,0.589825,0.231511,0.646756,0.205889,0.577278,0.312834,0.609138,0.300841,0.704551,0.172162,0.713411,0.173153,0.604097,0.302959,0.529671,0.470329,0.695458,0.304282,0.597065,0.402935,0.577965,0.422035,0.573973,0.425316,0.602162,0.397838,0.567834,0.426845,0.601696,0.397221,0.564723,0.424515,0.629942,0.367102,0.839524,0.152621,0.674596,0.318186,0.658244,0.341756,0.519189,0.480649,0.675032,0.324088,0.795639,0.20188,0.792683,0.204542,0.768627,0.196755,0.82581,0.148424,0.907459,0.0921644,0.875944,0.114451,0.624658,0.374708,0.838363,0.152599,0.949198,0.0354518,0.959849,0.03442,0.844644,0.152228,0.944716,0.026799,0.884394,0.107119,0.839303,0.0918702,0.877149,0.0659886,0.820373,0.112203,0.825737,0.165145,0.523532,0.471298,0.669076,0.328064,0.765161,0.22756,0.790322,0.167913,0.716639,0.270133,0.710018,0.278753,0.737637,0.26042,0.785458,0.127024,0.739998,0.256343,0.857221,0.130219,0.532278,0.466892,0.906266,0.093734,0.660285,0.328817,0.656784,0.332621,0.909602,0.0903976,0.920068,0.0799318,0.667776,0.326881,0.897564,0.102436,0.620782,0.378785,0.895804,0.104196,0.884313,0.115687,0.884775,0.115225,0.525257,0.47415,0.532707,0.467293,0.638797,0.361203,0.661919,0.338081,0.913231,0.0867689,0.675651,0.323055,0.890649,0.109351,0.899082,0.100918,0.679955,0.320045,0.650487,0.349513,0.546033,0.453967,0.600741,0.399259,0.596215,0.403785,0.896796,0.103204,0.895767,0.104233,0.586467,0.413533,0.638602,0.359081,0.591445,0.389386,0.576761,0.411267,0.556135,0.43953,0.635933,0.364067,0.506482,0.45926,0.496743,0.453726,0.512362,0.487638,0.546915,0.453085,0.413099,0.288301,0.555247,0.210749,0.503719,0.334761,0.40576,0.29426,0.438018,0.428254,0.489048,0.264011,0.569894,0.314512,0.434593,0.406386,0.512145,0.282737,0.49672,0.426083,0.656537,0.304668,0.527829,0.41214,0.699327,0.276083,0.707021,0.265077,0.541482,0.401124,0.509382,0.38292,0.525517,0.363908,0.688123,0.268451,0.510591,0.415405,0.439539,0.420226,0.565895,0.3233,0.525974,0.345867,0.52213,0.274477,0.372956,0.3606,0.44191,0.261077,0.474763,0.178237,0.545716,0.184683,0.5126,0.211324,0.524365,0.251746,0.577055,0.207969,0.53611,0.280867,0.606695,0.232652,0.563168,0.2511,0.595885,0.186589,0.615059,0.193859,0.511832,0.35767,0.628125,0.199984,0.593489,0.240422,0.58045,0.257563,0.585851,0.225401,0.619137,0.226336,0.566857,0.270373,0.552493,0.210809,0.506135,0.295419,0.488139,0.257544,0.44964,0.327273,0.373954,0.303213,0.357772,0.335806,0.428296,0.311959,0.525181,0.248891,0.547274,0.307459,0.394163,0.358164,0.453131,0.333311,0.700098,0.182497,0.614759,0.202671,0.61777,0.244451,0.564863,0.274547,0.612846,0.267585,0.638138,0.238324,0.72099,0.190995,0.474129,0.319058,0.460252,0.283033,0.427692,0.291693,0.452165,0.271344,0.453637,0.270221,0.557453,0.286738,0.433318,0.414159,0.558754,0.273307,0.561543,0.328452,0.639092,0.255797,0.668175,0.215909,0.598492,0.270705,0.897926,0.067612,0.946688,0.031116,0.777497,0.140377,0.984563,0.00829959,0.794665,0.149113,0.804656,0.0957867,0.974291,0.0108403,0.532725,0.411634,0.759016,0.180819,0.471496,0.434236,0.51323,0.401183,0.53022,0.361743,0.630148,0.26246,0.60069,0.279766,0.511328,0.355062,0.61581,0.218905,0.802645,0.114915,0.520912,0.326701,0.809204,0.0977654,0.588346,0.238649,0.515544,0.28939,0.603109,0.236424,0.790557,0.177579,0.976877,0.0124426,0.917029,0.0549312,0.720921,0.243717,0.8306,0.115238,0.478747,0.307548,0.349411,0.326495,0.461747,0.300196,0.683545,0.218483,0.835226,0.134544,0.487099,0.28414,0.704051,0.196669,0.692524,0.18776,0.730936,0.187678,0.555525,0.352471,0.532807,0.398773,0.64237,0.244317,0.845935,0.145555,0.878866,0.112551,0.968714,0.0288451,0.948728,0.0495521,0.470716,0.46168,0.510698,0.396508,0.499274,0.285056,0.534514,0.235395,0.77302,0.144741,0.921456,0.0544741,0.916623,0.0774176,0.810041,0.175937,0.48688,0.363876,0.727569,0.190277,0.567875,0.361658,0.543175,0.384727,0.60673,0.287934,0.628522,0.265381,0.564208,0.424364,0.532599,0.438975,0.536389,0.434716,0.923507,0.0720929,0.881234,0.103603,0.955889,0.0403733,0.98031,0.0172065,0.971296,0.028303,0.980532,0.0145338,0.98692,0.00823677,0.984266,0.0153391,0.964246,0.0357541,0.881797,0.114103,0.925388,0.0742615,0.950639,0.0375601,0.840032,0.0613184,0.836028,0.0910689,0.882192,0.113054,1.0,0,1.0,0,0.934736,0.0632201,0.924792,0.0708442,0.999274,0.000726086,0.945914,0.0469742,0.989285,0.0107151,0.947495,0.0378358,0.950499,0.0290162,0.994555,0.00544491,0.974005,0.0259947,0.981048,0.0189521,0.886207,0.113654,0.856224,0.143595,0.372452,0.321372,0.376622,0.356978,0.385418,0.3438,0.327021,0.313292,0.408815,0.390096,0.514163,0.249055,0.533102,0.453706,0.538643,0.4343,0.64804,0.333634,0.68502,0.308174,0.560092,0.372594,0.546419,0.373587,0.733074,0.190558,0.567895,0.342685,0.698624,0.228475,0.873648,0.0983078,0.525054,0.460999,0.742113,0.249909,0.511607,0.423132,0.822819,0.160514,0.65569,0.32925,0.84983,0.123602,0.735586,0.210515,0.563427,0.38375,0.899222,0.0663034,0.531727,0.437183,0.60276,0.341518,0.600663,0.348586,0.607793,0.199795,0.610685,0.19966,0.601854,0.280863,0.595598,0.292233,0.600309,0.210714,0.586994,0.29918,0.577406,0.28239,0.580119,0.290768,0.579596,0.301544,0.58262,0.397222,0.495167,0.465985,0.515317,0.449617,0.569381,0.413715,0.604533,0.375039,0.484424,0.47342,0.56044,0.275215,0.558011,0.252211,0.569954,0.261109,0.575846,0.25867,0.529682,0.347242,0.537869,0.353446,0.574941,0.214253,0.55924,0.314999,0.553181,0.305803,0.824787,0.137121,0.953639,0.0396282,0.96768,0.0314619,0.974411,0.023099,0.996593,0.00182207,0.998158,0.00140378,0.996421,0.00318146,0.990852,0.00914803,0.797433,0.160373,0.639955,0.185308,0.500927,0.306493,0.770992,0.225762,0.706076,0.270013,0.52835,0.237471,0.621252,0.316004,0.582491,0.376191,0.633495,0.27511,0.599131,0.381933,0.679223,0.31477,0.58104,0.407689,0.740191,0.257573,0.788726,0.209522,0.641004,0.343554,0.725671,0.211785,0.481612,0.471351,0.491722,0.46689,0.533423,0.374124,0.547949,0.357207,0.784289,0.210952,0.804603,0.14825,0.458242,0.455812,0.46387,0.457768,0.495755,0.426998,0.484643,0.43109,0.449327,0.435682,0.459067,0.433167,0.48162,0.422226,0.478977,0.456055,0.528423,0.403883,0.464167,0.340554,0.479238,0.359699,0.468866,0.320078,0.438241,0.312829,0.539071,0.249281,0.49704,0.280861,0.515418,0.308516,0.428727,0.336383,0.412418,0.304869,0.507322,0.409025,0.492584,0.452473,0.461225,0.382631,0.494588,0.35274,0.532681,0.329489,0.463454,0.45209,0.451897,0.436309,0.446335,0.393882,0.449863,0.397447,0.494147,0.428286,0.46193,0.444082,0.472872,0.395228,0.503268,0.407164,0.554926,0.343489,0.481182,0.446898,0.464345,0.456684,0.557944,0.37381,0.469998,0.453371,0.476466,0.452115,0.569544,0.360599,0.511968,0.389151,0.521846,0.372233,0.508248,0.39161,0.498695,0.389033,0.509498,0.453043,0.563585,0.34268,0.524894,0.400693,0.494312,0.45715,0.544089,0.387345,0.513809,0.452476,0.807716,0.191703,0.822871,0.176442,0.889849,0.110151,0.877403,0.122597,0.964653,0.0353471,0.936254,0.0637464,0.989161,0.00843497,0.981457,0.0185434,0.962587,0.0374129,0.978789,0.0212111,0.655329,0.252375,0.655872,0.255102,0.5931,0.345452,0.651562,0.249358,0.677854,0.168312,0.66052,0.251071,0.669156,0.241089,0.683379,0.161779,0.600912,0.347241,0.608424,0.34273,0.685243,0.165491,0.671263,0.237507,0.67061,0.240457,0.686654,0.16246,0.613543,0.338019,0.613699,0.338908,0.633776,0.192793,0.643285,0.184105,0.639412,0.197766,0.630439,0.262914,0.640944,0.196097,0.629364,0.263794,0.573496,0.347074,0.578059,0.33789,0.59935,0.24711,0.59837,0.238579,0.609445,0.27155,0.595757,0.307184,0.510089,0.438955,0.482807,0.477136,0.558936,0.416494,0.676598,0.314357,0.707755,0.286754,0.603974,0.379528,0.502231,0.464341,0.722992,0.273067,0.418966,0.317171,0.367185,0.358749,0.450105,0.26879,0.504246,0.26041,0.514439,0.321407,0.541969,0.316932,0.540509,0.258375,0.92861,0.0713896,0.493539,0.288866,0.558902,0.259569,0.470194,0.300959,0.540602,0.262286,0.479418,0.440979,0.578097,0.227696,0.55932,0.288782,0.568011,0.308604,0.526647,0.400812,0.441986,0.329326,0.446436,0.339596,0.417932,0.278493,0.544272,0.318311,0.577144,0.357186,0.64228,0.252096,0.403387,0.338826,0.53639,0.399356,0.511723,0.447967,0.50662,0.447209,0.543486,0.395782,0.517998,0.445983,0.552268,0.385853,0.523818,0.442493,0.584037,0.334812,0.920732,0.079268,0.989221,0.0107788,0.572087,0.326495,0.569343,0.373265,0.621069,0.288102,0.978252,0.0217482,0.973075,0.0269246,0.880591,0.117802,0.885938,0.11245,0.968894,0.0311057,0.86329,0.134986,0.948387,0.0516129,0.823614,0.174607,1.0,0,1.0,0,0.737389,0.254153,0.762267,0.231422,0.613654,0.366735,0.998768,0.00123204,0.714333,0.277564,0.994105,0.00589469,0.685794,0.307233,0.957925,0.0199395,0.611502,0.207234,0.608946,0.262324,0.93077,0.06923,0.473388,0.467492,0.488413,0.454635,0.578762,0.309376,0.600726,0.238922,0.60465,0.241158,0.626076,0.251792,0.57066,0.355828,0.560168,0.356886,0.644777,0.198244,0.484848,0.471575,0.706659,0.29064,0.598096,0.35273,0.800157,0.0979065,0.57246,0.403437,0.62185,0.361273,0.626989,0.360247,0.881788,0.07313,0.826154,0.0948962,0.966797,0.0332028,0.723442,0.272739,0.535334,0.432103,0.577779,0.313341,0.504838,0.383608,0.448567,0.376067,0.443314,0.404599,0.503162,0.428481,0.593477,0.277195,0.63003,0.314515,0.858007,0.0727154,0.913862,0.0684198,0.997979,0.00125248,0.972944,0.0200194,0.618887,0.368091,0.463414,0.308573,0.471961,0.334491,0.548096,0.311993,0.460283,0.454432,0.473619,0.451031,0.473016,0.461534,0.473571,0.415322,0.463355,0.308011,0.357389,0.347954,0.507353,0.269034,0.352717,0.290012,0.385585,0.27627,0.486564,0.198956,0.717124,0.135423,0.331202,0.267565,0.41953,0.401991,0.460602,0.359798,0.447237,0.360574,0.380562,0.317171,0.354525,0.269248,0.929168,0.0369998,0.926942,0.0702417,0.506999,0.320317,0.64868,0.1854,0.727502,0.161588,0.410501,0.37843,0.390202,0.36736,0.758128,0.158459,0.966649,0.0318267,0.964303,0.0339849,0.99444,0.00556002,0.999509,0.000490637,0.805306,0.171993,0.822964,0.161144,0.796001,0.107073,0.747832,0.127432,0.967908,0.032092,0.987718,0.0122821,0.966118,0.032836,0.943164,0.0380191,0.876776,0.12311,0.90895,0.0500984,0.983864,0.0161362,0.96384,0.0346601,0.789827,0.197218,0.785679,0.198378,0.757657,0.227312,0.709147,0.273796,0.767232,0.20671,0.660214,0.195912,0.59993,0.212348,0.742329,0.204101,0.441609,0.328296,0.425311,0.340978,0.53755,0.162171,0.597326,0.138602,0.769857,0.212316,0.714702,0.159995,0.629919,0.19642,0.545768,0.351916,0.53943,0.165401,0.551358,0.17243,0.457506,0.333868,0.427007,0.347892,0.420744,0.345627,0.677246,0.17151,0.641405,0.13894,0.710079,0.180099,0.740711,0.233887,0.463488,0.278169,0.522924,0.232911,0.654276,0.217688,0.831917,0.167767,0.846493,0.0936599,0.696515,0.192183,0.568757,0.213278,0.538923,0.348517,0.698847,0.283738,0.570024,0.171582,0.571337,0.374324,0.793449,0.206363,0.78666,0.209142,0.576057,0.412999,0.481579,0.326399,0.544813,0.328532,0.61858,0.218867,0.85501,0.127111,0.423299,0.291068,0.806938,0.188489,0.597142,0.388584,0.946948,0.0530525,0.951597,0.0484033,0.954739,0.0452606,0.556888,0.303711,0.557013,0.328671,0.526756,0.369012,0.498281,0.300022,0.4707,0.402538,0.639595,0.321867,0.698301,0.276352,0.565034,0.411087,0.48096,0.430845,0.514014,0.391162,0.440555,0.350903,0.412881,0.371851,0.724772,0.273322,0.70292,0.293244,0.697693,0.301627,0.730338,0.268989,0.678684,0.302973,0.575184,0.374698,0.454781,0.419312,0.478888,0.478334,0.591061,0.403461,0.509985,0.351041,0.407386,0.338532,0.411872,0.227302,0.278457,0.274876,0.501048,0.278446,0.67963,0.203558,0.945535,0.037157,0.916072,0.0491696,0.844899,0.110248,0.929428,0.0461346,0.905481,0.0406765,0.815106,0.0805774,0.570294,0.310973,0.670535,0.182994,0.902632,0.0785781,0.877055,0.081503,0.700642,0.165724,0.905199,0.0781859,0.983245,0.0167546,0.983138,0.0168618,0.983771,0.0162295,0.697888,0.210331,0.454527,0.343758,0.389505,0.332147,0.812241,0.128052,0.536879,0.354505,0.770109,0.210703,0.593595,0.281868,0.980719,0.0192815,0.996483,0.00351747,0.933686,0.0637994,0.895912,0.0968247,0.96106,0.0361152,0.996299,0.00370066,0.937253,0.0414135,0.976159,0.0146015,0.547501,0.347847,0.623244,0.138052,0.466114,0.373336,0.549822,0.232011,0.757255,0.203702,0.495778,0.339288,0.857824,0.0964505,0.628589,0.198898,0.684842,0.232615,0.931224,0.0442144,0.934014,0.04058,0.54616,0.331893,0.481617,0.313496,0.381221,0.357054,0.586041,0.164351,0.443871,0.415169,0.410274,0.376368,0.463916,0.289053,0.550392,0.261394,0.618732,0.196419,0.496341,0.423009,0.613054,0.250853,0.611678,0.227371,0.579769,0.318145,0.521963,0.4193,0.485,0.466742,0.617816,0.256883,0.434192,0.348537,0.458406,0.314843,0.65515,0.215961,0.572572,0.329906,0.540357,0.235572,0.442556,0.418775,0.745106,0.231312,0.59757,0.33692,0.896051,0.100884,0.890504,0.104666,0.784236,0.19716,0.734074,0.224342,0.869683,0.101311,0.659813,0.217125,0.831395,0.0970123,0.488086,0.36205,0.69286,0.212933,0.99934,0.000659936,1.0,0,1.0,0,1.0,0,0.976651,0.0233486,0.988796,0.011204,1.0,0,1.0,0,0.987702,0.0122979,1.0,0,1.0,0,0.995957,0.00404267,0.987641,0.0123586,1.0,0,0.999222,0.00077805,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.997551,0.0024491,0.999286,0.000713759,1.0,0,1.0,0,1.0,0,0.967662,0.0323384,0.851374,0.141074,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.981014,0.0189864,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.997781,0.0022195,0.995165,0.00483497,0.997901,0.00209886,0.968771,0.0312289,0.935476,0.064524,0.972618,0.0273824,0.996665,0.0033346,0.967943,0.0320568,0.872088,0.127912,0.846305,0.153695,0.871419,0.128581,0.98576,0.0142405,0.880533,0.119467,0.978819,0.0211809,0.887422,0.112578,1.0,0,1.0,0,0.994808,0.00519148,0.954616,0.0453836,0.999017,0.000982934,0.977765,0.022235,0.996563,0.00343702,1.0,0,0.97018,0.02982,0.996244,0.00375579,0.99983,0.000169804,1.0,0,1.0,0,1.0,0,1.0,0,0.950925,0.04757,0.966122,0.020995,0.890533,0.109467,0.873893,0.126107,0.880978,0.119022,0.975607,0.0243933,0.999893,0.000107115,1.0,0,1.0,0,0.725142,0.274858,0.784645,0.215355,0.676218,0.323782,0.616822,0.383179,0.548872,0.451128,0.570749,0.429251,0.581372,0.418628,0.610106,0.389894,0.742704,0.257296,0.752343,0.247657,0.764432,0.235568,0.749905,0.250095,0.859364,0.140636,0.718297,0.281703,0.831412,0.168588,0.642656,0.357344,0.81589,0.18411,0.578236,0.421764,0.601721,0.398279,0.511439,0.488561,0.679794,0.320206,0.616373,0.383627,0.78312,0.21688,0.688083,0.311917,0.859001,0.140999,0.874013,0.125987,0.937179,0.0628207,0.821176,0.178824,0.684938,0.315062,0.699841,0.300159,0.58227,0.41773,0.568635,0.431365,0.55935,0.44065,0.90861,0.0913899,0.765022,0.234978,0.677869,0.322131,0.86179,0.13821,0.941691,0.058309,0.942738,0.0572617,0.929057,0.0709433,0.645532,0.354468,0.620875,0.379125,0.610568,0.389432,0.728375,0.271625,0.548615,0.451385,0.667373,0.332627,0.690724,0.309276,0.865983,0.134017,0.846819,0.153181,0.532345,0.467655,0.719074,0.280926,0.885166,0.114834,0.838438,0.161562,0.937507,0.0624927,0.955476,0.0445237,0.795487,0.204513,0.917139,0.0828605,0.936388,0.0636124,0.954862,0.0451383,0.978912,0.0210882,0.957013,0.0429872,0.964493,0.0355066,0.988819,0.0111806,0.962267,0.0377327,0.968318,0.031682,0.987194,0.0128064,0.991517,0.00848335,0.97641,0.0235904,0.922282,0.0777182,0.99572,0.00427956,0.937229,0.0627711,0.985503,0.0144973,0.795358,0.204642,0.770967,0.229033,0.52506,0.47494,0.520695,0.479305,0.704334,0.295666,0.696709,0.303291,0.959634,0.0403655,0.963261,0.0367386,1.0,0,0.876787,0.123213,0.89588,0.10412,0.757304,0.242696,0.918285,0.0817155,0.513115,0.486885,0.538425,0.461575,0.800806,0.199194,0.944309,0.055691,0.915703,0.0842967,0.739769,0.260231,0.788014,0.211986,0.980469,0.019531,0.989263,0.0107366,0.996189,0.00381127,0.980985,0.0190154,0.950594,0.0494063,0.998484,0.00151565,0.991736,0.00826436,0.997414,0.00258553,1.0,0,0.999715,0.000284798,1.0,0,0.998757,0.00124311,0.999576,0.000424443,0.998077,0.00192287,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999562,0.000437985,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.99432,0.00567986,0.994903,0.00509738,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.987686,0.0123135,0.990243,0.00975661,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999503,0.000496831,0.999757,0.000243285,1.0,0,0.97548,0.0245197,1.0,0,1.0,0,0.995772,0.00422763,1.0,0,1.0,0,1.0,0,1.0,0,0.993913,0.00608696,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999173,0.000826993,0.997883,0.00211735,0.988855,0.0111446,0.984956,0.0150444,0.98029,0.0197096,0.990817,0.009183,0.988377,0.0116234,0.987992,0.0120082,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.973511,0.0264888,0.930185,0.0698154,0.940571,0.0594293,0.929584,0.0704163,0.893801,0.0915756,0.681248,0.318752,0.99756,0.00243959,1.0,0,1.0,0,0.813754,0.183309,0.520929,0.41805,0.590959,0.399647,0.813282,0.0870311,0.967918,0.0320818,0.937672,0.0623279,0.988845,0.0111546,0.993008,0.00699185,0.975054,0.0249459,0.983934,0.0160658,0.931232,0.0687684,0.990023,0.00997732,0.991223,0.00877661,0.993574,0.00642555,0.992447,0.00755259,0.9942,0.00580017,0.99666,0.00333962,0.940242,0.0597581,0.951034,0.0489664,0.961724,0.0382759,0.969486,0.0305142,0.988704,0.00565194,0.614882,0.138405,0.657723,0.178105,0.496472,0.462536,0.557481,0.423765,1.0,0,0.920088,0.0799122,0.938657,0.0613433,0.854038,0.145962,0.833674,0.166326,0.865941,0.134059,0.512011,0.487989,0.636717,0.363283,0.575272,0.424728,0.701296,0.298704,0.757203,0.242797,0.736358,0.263642,0.618445,0.381555,0.603746,0.396254,0.890993,0.109007,0.898543,0.101457,0.66521,0.33479,0.91693,0.0830697,0.769137,0.230863,0.587514,0.412486,0.55953,0.44047,0.807866,0.192134,0.808664,0.191336,0.573016,0.426984,0.807529,0.192471,0.55886,0.44114,0.936155,0.0638449,0.951074,0.0489255,0.865626,0.134374,0.550275,0.449725,0.712651,0.287349,0.514121,0.485879,0.737223,0.262777,0.923657,0.0763425,0.987832,0.00649668,0.99031,0.00641887,0.909736,0.0902645,0.989827,0.00995456,0.938055,0.0619447,0.932681,0.0673191,0.938001,0.0619992,0.624469,0.375531,0.798659,0.201341,0.773329,0.226671,0.523274,0.476726,0.714264,0.285736,0.903899,0.0961014,0.759737,0.240263,0.591257,0.408743,0.882145,0.117855,0.978069,0.0219314,0.987532,0.0124677,0.924315,0.0756853,0.999512,0.0004875,0.990138,0.00986203,0.999897,0.00010339,0.99988,0.000120033,0.715618,0.284382,0.818004,0.181996,0.91976,0.0802402,0.906796,0.0932038,0.989701,0.0101952,0.985985,0.0133591,0.91454,0.0854597,0.987223,0.0105384,0.79214,0.20786,0.760158,0.239842,0.53058,0.46942,0.666672,0.333328,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.997867,0.00213351,0.993797,0.00620339,0.956898,0.0431024,0.985066,0.014934,0.892055,0.107945,0.970752,0.0292481,1.0,0,1.0,0,0.895244,0.104756,0.969041,0.0309585,0.995025,0.00497506,0.998947,0.00105311,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.94488,0.0551204,0.996189,0.00381059,0.997533,0.00246684,0.704134,0.295866,0.943064,0.0569361,0.981621,0.0183791,0.996454,0.00354594,0.987213,0.0127873,0.999889,0.000110806,0.999247,0.000752825,0.99813,0.00186981,0.874454,0.125546,0.952992,0.0470079,0.993871,0.00612857,0.552777,0.447223,0.999793,0.00020675,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999426,0.000573871,0.999647,0.000352929,0.996582,0.00341811,0.996312,0.00368829,0.996575,0.00342535,0.988715,0.0112845,0.999267,0.000732883,1.0,0,0.999871,0.000129394,1.0,0,0.999864,0.00013638,0.98815,0.0118497,0.994941,0.00505902,0.999076,0.000923774,0.966987,0.0330134,0.970686,0.0293138,0.981769,0.0182308,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.957602,0.0423983,0.990143,0.00985654,0.994474,0.00292985,0.998839,0.000919333,0.99516,0.00483964,0.981052,0.0189479,0.879609,0.120391,0.948532,0.0514678,0.988484,0.0115159,0.991103,0.00684202,0.929942,0.0700577,0.983351,0.0166487,0.977995,0.0220052,0.920733,0.0792669,1.0,0,0.996482,0.00351765,0.969841,0.0301588,0.99198,0.00801996,1.0,0,0.814387,0.185613,0.776078,0.223922,0.938184,0.061816,0.999521,0.000478761,0.996768,0.00323215,0.999617,0.00038296,1.0,0,0.999884,0.000115779,1.0,0,1.0,0,1.0,0,0.760124,0.239876,0.783627,0.216373,0.541442,0.458558,0.522192,0.477807,0.678538,0.321462,0.621494,0.378506,0.829214,0.170786,0.826958,0.173042,0.869652,0.130348,0.516994,0.483006,0.62059,0.37941,0.75477,0.24523,0.812362,0.187638,0.659072,0.340928,0.745262,0.254738,0.899013,0.100987,0.98407,0.0159303,0.980811,0.0191888,0.982658,0.0173424,0.606072,0.393928,0.697305,0.302695,0.648065,0.351935,0.668946,0.331054,0.915619,0.0843807,0.92277,0.0772299,0.92163,0.0783705,0.846594,0.153406,0.846668,0.153332,0.719158,0.280842,0.850644,0.149356,0.611093,0.388907,0.975268,0.0247324,0.964149,0.0358505,0.949886,0.0501141,0.885501,0.114499,0.986003,0.0139971,1.0,0,1.0,0,1.0,0,0.998246,0.00175374,0.991066,0.0089342,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999168,0.000832397,0.99772,0.00228033,0.98712,0.0128803,0.999898,0.000101903,0.997769,0.00223053,1.0,0,1.0,0,1.0,0,0.590127,0.409873,0.783525,0.216475,0.757555,0.242445,0.533523,0.466477,0.607955,0.392045,0.654154,0.345846,0.805287,0.194713,0.595395,0.404605,0.679426,0.320574,0.794549,0.205451,0.832076,0.167924,0.761646,0.238354,0.542901,0.457099,0.647537,0.352463,0.862499,0.137501,0.935151,0.0648494,0.925439,0.0745611,0.750874,0.249126,0.526016,0.473984,0.927161,0.0728393,0.704215,0.295785,0.716354,0.283646,0.577548,0.422452,0.723113,0.276887,0.614252,0.385748,0.865889,0.134111,0.639175,0.360825,0.615881,0.384119,0.893581,0.106419,0.976002,0.0239984,0.985187,0.0148132,0.971045,0.0289545,0.589284,0.410716,0.514523,0.485477,0.647079,0.352921,0.842523,0.157477,0.587877,0.412123,0.60222,0.39778,0.810317,0.189684,0.797936,0.202064,0.80951,0.19049,0.575072,0.424928,0.96787,0.0321298,0.966908,0.0330916,0.968,0.0320003,0.549298,0.450702,0.771834,0.228166,0.564314,0.435686,0.845721,0.154279,0.758167,0.241833,0.846504,0.153496,0.584529,0.415471,0.867471,0.132529,0.504206,0.495794,0.948528,0.051472,0.859296,0.140704,0.968606,0.0313943,0.972556,0.0274445,0.510919,0.489081,0.773202,0.226798,0.661926,0.338074,0.538909,0.461091,0.775464,0.224536,0.965522,0.034478,0.884541,0.115459,0.977295,0.0227047,0.522804,0.477196,0.834461,0.165539,0.820036,0.179964,0.870296,0.129704,0.507181,0.492819,0.765643,0.234357,0.873944,0.126056,0.521519,0.478481,0.785707,0.214293,0.758356,0.241644,0.545907,0.454093,0.522532,0.477468,0.791918,0.208082,0.948928,0.051072,0.950198,0.0498015,0.911929,0.0880711,0.823908,0.176092,0.853429,0.146571,0.945478,0.0545215,0.953818,0.0461825,0.965228,0.0347719,0.819817,0.180183,0.926451,0.0735487,0.967644,0.0323559,0.816134,0.183866,0.94241,0.0575903,0.996911,0.00308939,0.998174,0.00182635,0.988665,0.0113349,0.990683,0.00931701,0.981013,0.0189866,0.977594,0.0224063,0.975082,0.0249179,0.978884,0.0211157,0.987793,0.0122075,0.940048,0.0599517,0.726685,0.273315,0.992791,0.00720894,0.995864,0.00413587,0.97973,0.0202703,0.664184,0.335816,0.924674,0.0753259,0.989548,0.0104519,0.922023,0.0779767,0.888111,0.111889,0.972239,0.0277608,0.891664,0.108336,0.913701,0.0862986,0.93209,0.0679105,0.763397,0.236603,0.716805,0.283195,0.522944,0.477056,0.647724,0.352276,0.983964,0.0152827,0.989914,0.00968343,0.994754,0.00503599,0.853781,0.146219,0.983497,0.0165025,0.921908,0.0780918,0.996157,0.00384341,0.707608,0.292392,0.957586,0.0424138,1.0,0,0.997565,0.00243521,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.989699,0.0103014,0.975187,0.024813,0.963006,0.0369937,0.958815,0.0411855,0.949421,0.0505787,0.861137,0.138863,0.985711,0.0142892,0.861103,0.138897,1.0,0,1.0,0,1.0,0,1.0,0,0.999863,0.000137383,0.99948,0.000520325,0.999883,0.000117396,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999446,0.000554158,1.0,0,1.0,0,0.999326,0.000673979,1.0,0,1.0,0,0.999622,0.000378363,1.0,0,0.999048,0.000952393,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.998559,0.00144102,0.998322,0.00167772,0.999562,0.000437543,0.999749,0.000250953,0.988963,0.0110366,1.0,0,1.0,0,0.998409,0.00159112,0.996438,0.00356222,0.999735,0.00026537,1.0,0,0.93733,0.0626701,0.982763,0.0172371,0.988837,0.011163,1.0,0,0.999802,0.00019808,0.91954,0.0804601,0.987982,0.00709624,0.986539,0.00772226,0.923002,0.0769983,0.733277,0.266723,0.537996,0.462004,0.806577,0.193423,0.515854,0.484146,0.996921,0.00307922,0.973136,0.0268643,0.999095,0.000904613,0.971694,0.0283059,0.938563,0.0614366,0.79408,0.20592,0.88717,0.11283,0.95733,0.0422715,0.941908,0.0579297,0.974119,0.0250936,0.865318,0.134682,0.946608,0.0533921,0.77231,0.22769,0.966924,0.0330758,0.989088,0.0109119,0.795813,0.204187,0.974289,0.0257112,0.845953,0.154047,0.948798,0.051202,0.692694,0.307306,1.0,0,0.870176,0.129824,0.887597,0.112403,0.962392,0.0376081,0.999465,0.000534627,1.0,0,0.997929,0.00207137,0.986688,0.0133121,0.984391,0.0156092,1.0,0,0.999295,0.000705032,0.637208,0.362792,1.0,0,1.0,0,0.517869,0.482131,0.500025,0.499975,0.785487,0.214513,0.952802,0.0471976,1.0,0,0.999844,0.000156188,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.950102,0.0498984,0.588804,0.411196,0.653366,0.346634,0.966877,0.0331228,0.946297,0.0537028,0.968818,0.0311825,1.0,0,1.0,0,1.0,0,0.953483,0.0465174,0.540249,0.459751,0.748136,0.251864,0.999578,0.000421871,0.995437,0.004563,1.0,0,1.0,0,0.998796,0.00120358,0.997964,0.00203599,0.999298,0.000701564,1.0,0,0.999264,0.000735815,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999027,0.000972853,1.0,0,0.998128,0.00187228,0.999735,0.000264569,0.998631,0.00136883,0.999868,0.000132039,0.999372,0.000628045,0.998109,0.00189099,1.0,0,0.974614,0.0253865,0.978097,0.0219034,0.997134,0.00286634,0.992388,0.00761232,0.997422,0.00257847,0.999469,0.000531456,1.0,0,0.929666,0.0703339,0.917495,0.0825046,0.947574,0.0524258,0.934398,0.0656019,0.780683,0.219317,0.885556,0.114444,0.907306,0.0926937,0.841361,0.154526,0.621482,0.369013,0.685297,0.214133,0.820974,0.109826,0.882866,0.116832,0.676578,0.322474,0.924875,0.0751254,0.980494,0.0195061,0.999378,0.000621764,0.967017,0.032983,1.0,0,0.793436,0.206564,0.734309,0.26569,0.959754,0.035412,0.811067,0.188933,0.866386,0.133614,0.896378,0.103622,0.899173,0.0892203,0.994468,0.00553187,0.996635,0.00336509,0.999547,0.000453195,0.816705,0.17778,0.804613,0.110654,1.0,0,1.0,0,1.0,0,1.0,0,0.932776,0.0332732,0.610237,0.358612,0.638894,0.255144,1.0,0,1.0,0,0.512596,0.446494,0.620672,0.358329,0.578246,0.355679,0.542102,0.424948,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.673224,0.326776,0.618033,0.381968,1.0,0,1.0,0,0.572306,0.427694,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.619945,0.380055,0.865056,0.134944,0.888264,0.111736,0.869084,0.130916,0.650564,0.349436,1.0,0,0.787203,0.212797,0.808776,0.167542,0.989468,0.00986815,0.734975,0.265025,0.650521,0.349479,0.997265,0.00273474,0.987038,0.0129616,0.993505,0.00649538,0.997835,0.00216507,0.623061,0.376939,0.616132,0.383868,0.618189,0.381811,0.735574,0.264426,0.721679,0.278321,0.848178,0.151822,0.979809,0.0201908,0.992117,0.00788295,0.632174,0.367826,0.625828,0.374172,0.835606,0.164394,0.796109,0.203891,0.999791,0.000209055,0.994735,0.00526506,1.0,0,1.0,0,0.971883,0.0281169,0.996538,0.00346195,1.0,0,1.0,0,0.999054,0.000946214,1.0,0,1.0,0,1.0,0,1.0,0,0.991555,0.00844541,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.984449,0.015551,1.0,0,1.0,0,1.0,0,0.803734,0.196266,0.787827,0.212173,0.778476,0.221524,0.964974,0.0350258,0.966733,0.0332674,1.0,0,0.988336,0.0116644,1.0,0,1.0,0,1.0,0,1.0,0,0.815007,0.184993,1.0,0,0.823633,0.176367,0.582623,0.417377,0.584912,0.415088,0.600216,0.399784,1.0,0,1.0,0,0.913719,0.0862807,0.921914,0.0780857,0.579515,0.420485,0.942353,0.057647,1.0,0,1.0,0,1.0,0,0.640691,0.359309,0.675356,0.324644,1.0,0,0.636889,0.363111,0.954195,0.0458049,0.978059,0.021941,0.684108,0.315892,0.817074,0.182926,0.812725,0.187275,1.0,0,1.0,0,0.82369,0.17631,1.0,0,0.435173,0.332702,0.636689,0.283362,0.890046,0.0924807,0.58281,0.374929,0.741768,0.210598,0.64452,0.279652,0.9633,0.0367002,0.956799,0.0432011,0.992286,0.0069998,0.986925,0.013075,0.924261,0.0757386,0.929794,0.0702056,0.993472,0.00390024,0.991115,0.00888505,0.657108,0.342892,0.698274,0.301725,0.65874,0.34126,0.564077,0.352951,0.75758,0.159043,0.66395,0.228158,0.941447,0.0413636,0.853054,0.11195,0.994904,0.00509611,0.996403,0.00359724,0.973149,0.0155139,0.996473,0.00352666,0.756809,0.205059,0.903542,0.0964582,0.847007,0.152993,0.82327,0.17673,0.65992,0.34008,0.622163,0.377837,0.685652,0.314348,0.890633,0.109367,0.99926,0.000739731,0.62075,0.37925,0.938877,0.0611225,0.896299,0.101056,0.926444,0.073556,0.927657,0.0723425,1.0,0,0.533693,0.466307,0.975077,0.0249232,0.628835,0.371165,0.565773,0.434227,0.563553,0.436447,0.559414,0.440586,0.957964,0.0420357,0.591041,0.408959,0.629833,0.370167,0.972691,0.027309,0.971703,0.0184805,0.989327,0.0106727,0.976024,0.0239757,0.610701,0.389299,0.586268,0.413732,0.578959,0.421041,0.613441,0.386559,0.991427,0.00857298,0.804866,0.195134,0.741065,0.258935,0.828326,0.171674,0.993154,0.00684624,0.946832,0.0531679,0.993118,0.00688192,0.783466,0.216534,0.921962,0.0762279,0.820528,0.179472,0.740773,0.259227,0.78922,0.21078,0.839682,0.160318,0.900427,0.0995727,0.938489,0.0615106,0.874434,0.125566,0.906318,0.0936817,0.883726,0.116274,0.884489,0.115511,0.847084,0.152916,0.875051,0.124949,0.926345,0.0736555,0.611916,0.388084,0.941319,0.0586806,0.988053,0.0119468,0.964673,0.0353272,0.813477,0.186523,0.760315,0.239685,0.775521,0.224479,0.922686,0.0731235,0.525192,0.474808,0.863459,0.136541,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.831577,0.168423,0.894143,0.105857,1.0,0,1.0,0,0.998696,0.00130415,0.889914,0.110086,0.635716,0.364284,0.587006,0.412994,0.606056,0.393944,0.990983,0.00901691,0.981727,0.0182728,0.98877,0.0112296,0.983451,0.0165486,1.0,0,1.0,0,1.0,0,0.970498,0.0295023,1.0,0,0.953084,0.0469159,1.0,0,0.946165,0.0538354,0.984287,0.0157128,0.526343,0.473657,0.992982,0.0070184,0.528294,0.471706,0.956918,0.0430818,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.991073,0.00892662,1.0,0,0.981674,0.018326,1.0,0,0.988595,0.0114054,1.0,0,0.975138,0.0248617,0.988654,0.0113457,0.517884,0.482116,0.547117,0.452883,1.0,0,0.900778,0.0992223,1.0,0,0.995043,0.00495678,0.848158,0.151842,0.808584,0.191416,0.589073,0.410927,0.555663,0.444337,0.978546,0.0214538,0.978827,0.0211733,0.942363,0.0576368,0.570368,0.429632,0.620468,0.379532,0.893901,0.106099,0.914339,0.0856605,1.0,0,1.0,0,1.0,0,0.62552,0.341018,0.930325,0.0395302,0.95485,0.04515,0.83186,0.16814,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.641473,0.358527,0.705457,0.294543,1.0,0,0.999153,0.000846934,1.0,0,0.929261,0.0707393,1.0,0,1.0,0,1.0,0,1.0,0,0.844773,0.155227,0.741799,0.258201,1.0,0,1.0,0,0.910219,0.0801565,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.460029,0.443658,0.57065,0.391024,0.633728,0.246235,0.40883,0.343083,0.604869,0.26973,0.655425,0.340574,0.523713,0.47368,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.69893,0.30107,0.792158,0.207842,0.997475,0.00252461,0.979618,0.0203823,1.0,0,1.0,0,1.0,0,1.0,0,0.97364,0.0263602,1.0,0,0.983439,0.0165613,0.674117,0.325883,0.679243,0.320757,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.753101,0.246899,1.0,0,1.0,0,0.793052,0.206948,0.749103,0.250897,0.526618,0.473382,0.74293,0.25707,0.678036,0.321964,0.896565,0.0964101,0.55484,0.410058,0.900983,0.0813822,0.718703,0.274288,1.0,0,1.0,0,0.910746,0.089254,0.994464,0.00553596,1.0,0,0.999417,0.000583409,1.0,0,0.990678,0.00678839,0.992178,0.00635618,0.992869,0.00569102,0.848565,0.150277,0.904115,0.0755118,0.894759,0.0821899,0.972589,0.0230296,0.838806,0.13854,0.810816,0.189184,0.807397,0.183846,0.746783,0.160469,1.0,0,1.0,0,1.0,0,0.994932,0.00349777,0.99083,0.00764943,0.990673,0.00918877,0.995323,0.00452283,0.999098,0.000902188,0.997702,0.00229842,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.875148,0.124852,0.717199,0.282801,0.953557,0.0464432,0.987351,0.0126495,0.538011,0.461989,0.880585,0.119415,0.987076,0.0113806,1.0,0,0.476387,0.399658,0.806399,0.189531,0.977822,0.0125782,1.0,0,0.344539,0.32852,0.704319,0.150906,0.99562,0.00437976,0.936696,0.0620955,0.91954,0.0787068,0.706215,0.225214,0.637765,0.315343,0.661681,0.316068,0.671332,0.318734,1.0,0,0.82386,0.171958,0.970533,0.017684,0.584625,0.409135,0.943314,0.0512901,0.640393,0.345372,0.858668,0.101891,1.0,0,1.0,0,0.976803,0.0208442,1.0,0,1.0,0,0.996652,0.00198493,1.0,0,0.875768,0.111792,0.647086,0.352914,0.623755,0.376245,0.665003,0.334997,0.705968,0.294032,0.904919,0.0950808,0.839149,0.160851,0.613523,0.386477,0.699731,0.300269,0.987612,0.0105947,0.743917,0.231507,0.883658,0.100822,0.480465,0.472505,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.9986,0.00119283,0.976376,0.0208526,0.996485,0.00231069,0.72258,0.260199,0.934773,0.0370812,0.835395,0.0861707,0.589542,0.383489,0.707629,0.271066,0.894368,0.10404,0.668341,0.32181,1.0,0,0.783709,0.127189,0.797998,0.187429,0.977297,0.0212956,0.931073,0.0510324,0.566499,0.325838,0.742128,0.18056,0.904371,0.0652609,0.862571,0.132244,0.545787,0.420793,0.955041,0.0366481,0.560051,0.426114,0.55854,0.436155,0.599934,0.37842,0.660846,0.221143,0.664022,0.302387,0.638038,0.268817,0.611084,0.343806,0.49,0.338084,0.465742,0.403857,0.478056,0.286103,0.805158,0.15646,0.738458,0.192779,0.982996,0.0121341,0.974232,0.0225947,0.65498,0.212646,0.959564,0.0236298,0.995469,0.00370159,0.97631,0.0150085,0.995363,0.00401325,0.931235,0.068765,0.901661,0.0983392,0.960418,0.039582,0.569553,0.430447,0.538396,0.461604,0.578393,0.421607,0.832938,0.167062,0.522562,0.477438,0.915938,0.0840617,0.904982,0.0950181,0.741999,0.258001,0.540952,0.459048,0.883793,0.116207,0.924874,0.0751259,0.905411,0.0917523,0.952982,0.0386489,0.758294,0.241522,0.893748,0.0892429,0.901272,0.0673643,0.943045,0.0457799,0.858168,0.0985623,0.511875,0.488125,0.986834,0.0131658,0.990628,0.00937162,0.986045,0.0139547,0.985037,0.0149632,0.973522,0.0264782,0.996708,0.00329179,1.0,0,0.999797,0.000202811,1.0,0,0.987067,0.0129332,0.865676,0.073736,0.990112,0.00628245,0.675933,0.160279,0.414182,0.311079,0.40732,0.314129,0.955809,0.0265493,0.498196,0.380935,0.551017,0.259154,0.677093,0.304195,0.461054,0.45347,0.552089,0.186784,0.559304,0.354231,0.760368,0.225627,0.736758,0.2522,0.540259,0.419733,0.64805,0.304676,0.823967,0.119811,0.521051,0.236207,0.924889,0.0383958,0.625953,0.199706,0.470529,0.285175,0.915346,0.0749046,0.888296,0.109788,0.621664,0.283357,0.484109,0.323347,0.615969,0.365933,0.620149,0.36382,0.585645,0.307855,0.605033,0.306197,0.452114,0.342818,0.641554,0.231637,0.939937,0.0462614,0.434432,0.409772,0.693573,0.170611,0.932736,0.0613515,0.996304,0.0021157,0.790624,0.179751,0.500951,0.412598,0.692814,0.192616,0.852439,0.079642,0.940626,0.0464766,0.853624,0.087587,0.715719,0.21705,0.962322,0.0300619,0.805073,0.169748,0.826108,0.106152,0.884598,0.0795362,0.99177,0.00822957,0.610817,0.276233,0.598575,0.264391,0.882888,0.0759092,0.788347,0.14891,0.573743,0.329533,0.776288,0.138786,0.849924,0.147103,0.684199,0.281486,0.514299,0.476185,0.847048,0.117927,0.742584,0.256978,0.914266,0.0857344,0.969098,0.0198401,0.998804,0.00119613,0.922078,0.0774787,0.898753,0.100059,0.862097,0.137305,0.691393,0.265878,0.986546,0.0134537,1.0,0,0.835789,0.164211,0.853027,0.146973,0.53569,0.46431,1.0,0,1.0,0,0.907897,0.0921035,0.502396,0.497604,0.946257,0.0537431,0.51087,0.48913,1.0,0,0.833345,0.166655,0.919598,0.0793497,0.926226,0.0442653,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.988552,0.0114484,0.978852,0.0211476,0.970523,0.0294768,0.978763,0.0212368,0.866776,0.133224,0.909428,0.0905716,0.557471,0.442529,0.915445,0.0845553,0.844916,0.142271,0.560851,0.415253,0.793071,0.144924,0.38396,0.368448,0.804743,0.115883,0.862167,0.0977981,0.910375,0.0509654,0.649645,0.350355,0.650691,0.349309,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.940268,0.0597324,1.0,0,0.970347,0.0296526,0.873551,0.126449,1.0,0,1.0,0,0.947996,0.0470875,0.862024,0.104424,0.973475,0.0265251,0.966661,0.0333387,0.975185,0.024815,0.911127,0.0888733,0.53275,0.46725,0.567757,0.432243,0.984072,0.00885786,0.626997,0.22375,0.915996,0.0840042,0.758855,0.202051,0.71463,0.28537,0.715388,0.284612,0.852067,0.147933,0.618526,0.381474,1.0,0,1.0,0,1.0,0,0.966609,0.0333906,0.942582,0.0574178,1.0,0,1.0,0,0.714271,0.285729,1.0,0,1.0,0,0.691623,0.308377,0.75,0.25,1.0,0,0.724692,0.275308,1.0,0,1.0,0,1.0,0,0.866084,0.133916,0.961221,0.0387792,0.75,0.25,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.959059,0.0409411,0.807329,0.192671,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.602201,0.397799,0.634924,0.365076,1.0,0,0.638554,0.361446,0.548949,0.42896,0.705978,0.211369,0.467596,0.408855,0.948234,0.0516068,0.935234,0.064301,0.583972,0.218677,0.523131,0.215141,0.497983,0.496874,0.608052,0.382318,0.876742,0.121977,0.506172,0.404744,0.608837,0.315923,0.81552,0.125699,0.502976,0.491694,0.802448,0.176955,0.961276,0.0247459,0.96801,0.0218676,0.692767,0.290463,0.753544,0.190891,0.749494,0.218436,0.963588,0.0218084,0.965553,0.0343301,0.89448,0.102807,0.869952,0.125035,0.600948,0.200462,0.853746,0.128264,0.652227,0.187583,0.687014,0.228806,0.688611,0.20734,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999281,0.000590179,0.99785,0.00192753,0.998052,0.00176673,0.998712,0.00108021,0.997923,0.00157022,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999849,0.00015089,1.0,0,1.0,0,0.998133,0.00150642,0.996774,0.00270712,0.999689,0.000310686,0.999644,0.000356166,0.999259,0.000741197,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999054,0.000946128,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.943305,0.0296909,0.89777,0.0639848,0.677731,0.232874,0.80379,0.135454,1.0,0,1.0,0,1.0,0,0.999699,0.000300746,0.987346,0.00725767,1.0,0,1.0,0,1.0,0,0.709802,0.25842,0.876028,0.0635819,0.84905,0.0935745,0.622442,0.338062,0.487848,0.45583,0.760602,0.164136,0.604522,0.288899,0.574879,0.343633,0.77561,0.192467,0.884637,0.0724178,0.814802,0.155359,0.910925,0.0646577,0.476976,0.401532,0.501449,0.385326,0.82591,0.150478,0.948667,0.0328298,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.998527,0.00101188,0.990527,0.00570347,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.996003,0.00219718,0.996374,0.0026441,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.824834,0.137092,0.968616,0.0216269,0.975199,0.0131874,0.54905,0.350545,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.996752,0.0030725,0.969122,0.0278257,0.838591,0.139234,0.556231,0.35388,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999651,0.000348512,0.996814,0.00318548,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.989504,0.0104961,0.993418,0.00658213,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.992955,0.00704535,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999858,0.000142316,0.993656,0.00634372,1.0,0,1.0,0,1.0,0,1.0,0,0.996332,0.00366776,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999802,0.000197588,0.996397,0.00360251,0.96182,0.0381803,0.966689,0.0332006,0.809482,0.183278,0.959416,0.0402429,0.823659,0.165235,0.956042,0.0433181,0.810797,0.171315,0.963806,0.0354274,0.811508,0.169102,0.970603,0.0287194,0.844755,0.140191,0.959231,0.0407693,0.813099,0.183751,0.790794,0.203896,0.519105,0.39362,0.465401,0.460932,0.516395,0.429874,0.461583,0.433275,0.468927,0.432928,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.983718,0.0130763,0.980453,0.019085,1.0,0,1.0,0,0.98991,0.00989979,1.0,0,1.0,0,0.991299,0.00418707,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.994919,0.00208521,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.996608,0.00339158,0.999088,0.0009125,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.853283,0.116472,0.777962,0.203955,0.670405,0.314426,0.565417,0.419795,0.496037,0.482021,0.48817,0.48177,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.502803,0.467809,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.974145,0.0233008,0.95032,0.0484754,0.90901,0.090486,0.848408,0.149585,0.81647,0.172182,0.843625,0.13807,0.855417,0.126211,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.742161,0.251566,0.758342,0.226616,0.748346,0.209868,0.685181,0.206994,0.836878,0.16197,0.741807,0.253302,0.768567,0.228481,0.597227,0.213083,0.525881,0.251769,0.489685,0.269163,0.498912,0.262925,0.531114,0.2353,0.562838,0.240797,0.603723,0.207467,0.543085,0.250966,0.541741,0.238947,0.502872,0.495832,0.516144,0.483644,0.714348,0.285652,0.713697,0.286303,0.520879,0.474037,0.689123,0.310877,0.653215,0.346785,0.547944,0.436037,0.65352,0.34648,0.627438,0.372562,0.639091,0.360909,0.504789,0.494829,0.706686,0.293314,0.522613,0.476991,0.695013,0.304987,0.531805,0.422084,0.560233,0.40522,0.613775,0.386225,0.609076,0.390924,0.502504,0.456112,0.630681,0.369319,0.489775,0.477574,0.65719,0.34281,0.485362,0.481144,0.670268,0.329732,0.516189,0.44456,0.488967,0.469372,0.690949,0.309051,0.671893,0.328107,0.486248,0.471522,0.690718,0.309282,0.487428,0.473544,0.679462,0.320538,0.769818,0.160008,0.770841,0.164344,0.661741,0.227166,0.611322,0.270798,0.763403,0.156871,0.575353,0.291049,0.571251,0.286708,0.760156,0.173209,0.763106,0.156183,0.791394,0.189252,0.784683,0.172896,0.72793,0.17342,0.798619,0.17738,0.734443,0.181234,0.760561,0.200272,0.611543,0.258982,0.674327,0.217823,0.758736,0.227177,0.770153,0.21565,0.676875,0.217394,0.7743,0.200376,0.655052,0.23146,0.7839,0.186021,0.633055,0.245748,0.791562,0.169736,0.801184,0.172942,0.623766,0.270577,0.607577,0.299186,0.806577,0.17856,0.634369,0.251502,0.796432,0.1816,0.629605,0.251522,0.777992,0.170269,0.775962,0.167075,0.623817,0.376183,0.571924,0.428076,0.611602,0.307313,0.442971,0.415042,0.422733,0.330574,0.389461,0.330375,0.362279,0.3335,0.516161,0.424904,0.606176,0.372207,0.377336,0.367427,0.419921,0.375818,0.60254,0.387185,0.425573,0.368592,0.408082,0.358075,0.395594,0.348567,0.438541,0.356265,0.516222,0.354828,0.377658,0.36568,0.380133,0.350987,0.563738,0.355095,0.517991,0.448914,0.645165,0.213403,0.587417,0.364249,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.503008,0.475884,0.554837,0.429586,0.675934,0.218936,0.657496,0.292672,0.569622,0.430378,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.868279,0.131721,0.852139,0.147861,0.758824,0.241176,0.804399,0.195601,0.738173,0.261827,0.735647,0.264353,0.932579,0.0674213,0.902976,0.0970238,0.921228,0.0787722,0.862262,0.137738,0.879789,0.120211,0.812989,0.187011,0.683421,0.316579,0.690102,0.309898,0.833227,0.166773,0.739505,0.260495,0.845253,0.154747,0.732182,0.267818,0.999823,0.00017737,1.0,0,0.999303,0.000697057,1.0,0,0.677781,0.322219,0.825457,0.174543,0.993902,0.00609772,0.984647,0.0153526,1.0,0,1.0,0,0.694994,0.172446,0.646882,0.220194,0.69934,0.139385,0.747052,0.129384,0.954148,0.0253359,0.920739,0.0559623,0.925712,0.0735291,0.925937,0.0737043,0.747664,0.246917,0.666773,0.328511,0.869121,0.125416,0.957691,0.0309134,0.964323,0.0266439,0.812163,0.184337,0.889645,0.110355,0.879517,0.120346,0.748585,0.251415,0.737479,0.26241,0.957097,0.0311565,0.943993,0.0552766,0.844565,0.155435,0.708726,0.291274,0.872061,0.127939,0.699994,0.299128,0.666426,0.333451,0.679738,0.319953,0.532463,0.467537,0.518339,0.481661,0.854626,0.145374,0.95274,0.0411393,0.958703,0.033633,0.821588,0.178412,0.948621,0.0482145,0.791583,0.208417,0.939708,0.0589659,0.916086,0.083732,0.954947,0.0338785,0.774367,0.225633,0.734968,0.265032,0.886346,0.113654,0.918368,0.0816322,0.783907,0.216093,0.601198,0.398802,0.640402,0.359598,0.815069,0.184931,0.662702,0.337298,0.829284,0.170716,0.600098,0.399902,0.576508,0.423492,0.634558,0.365442,0.665536,0.334464,0.819532,0.180468,0.569344,0.430656,0.570636,0.429364,0.657702,0.342298,0.57322,0.42678,0.648474,0.351526,0.804544,0.195456,0.793217,0.206783,0.800623,0.199377,0.802841,0.197159,0.805272,0.194728,0.813863,0.186137,0.835116,0.164884,0.981187,0.0183582,0.982875,0.0154766,0.983606,0.0149639,0.561086,0.438914,0.660881,0.339119,0.867375,0.132625,0.857595,0.142405,0.749474,0.250526,0.667324,0.332676,0.860123,0.139877,0.985682,0.0143178,0.983739,0.0162606,0.980831,0.0191691,0.948021,0.0422301,0.95016,0.0399335,0.903562,0.0964379,0.900255,0.0997454,0.923277,0.0628121,0.887195,0.098523,0.953158,0.0441427,0.896909,0.103091,0.788223,0.211777,0.889293,0.110707,0.954355,0.0398466,0.775604,0.224396,0.724551,0.275449,0.539669,0.460331,0.723815,0.276185,0.546039,0.453961,0.650431,0.349569,0.866698,0.125583,0.872679,0.127068,0.879176,0.0855155,0.630596,0.362023,0.751488,0.241276,0.945528,0.0375913,0.880292,0.119708,0.889157,0.0999578,0.747987,0.252013,0.574019,0.425981,0.613998,0.386002,0.597005,0.402995,0.622164,0.377836,0.949797,0.0423982,0.855174,0.142401,0.861897,0.133089,0.942701,0.0486289,0.842263,0.157737,0.818625,0.181375,0.967266,0.0264596,0.881829,0.116935,0.639108,0.354427,0.630771,0.368412,0.636014,0.36379,0.610386,0.381462,0.613232,0.385915,0.676312,0.322406,0.574004,0.417119,0.897903,0.102097,0.782503,0.180295,0.865143,0.132413,0.879646,0.11702,0.69841,0.300927,0.690283,0.30917,0.931856,0.0619881,0.733817,0.265749,0.552563,0.447171,0.570853,0.428577,0.706075,0.290025,0.508906,0.490949,0.826255,0.173745,0.981166,0.01863,0.982931,0.0168516,0.844238,0.155762,0.640469,0.359531,0.57885,0.42115,0.984452,0.0150715,0.947188,0.0434905,0.963573,0.0258364,0.840237,0.159763,0.655781,0.344219,0.830931,0.166903,0.746485,0.253515,0.804564,0.195436,0.923744,0.0762556,0.985339,0.0146609,0.984067,0.0155577,0.808822,0.191178,0.981708,0.0182923,0.81323,0.18677,0.6996,0.3004,0.845664,0.153655,0.90818,0.0909119,0.980506,0.0179043,0.609358,0.389928,0.723019,0.276085,0.832348,0.166582,0.883696,0.112807,0.544192,0.454632,0.961883,0.0268024,0.752232,0.247471,0.571193,0.428807,0.642636,0.357364,0.627181,0.372819,0.61142,0.38858,0.543195,0.456805,0.870719,0.116065,0.859438,0.127599,0.936657,0.0323137,0.87153,0.0522879,0.736671,0.15937,0.796227,0.0998493,0.764197,0.22222,0.726493,0.262916,0.549589,0.449695,0.542882,0.453996,0.674671,0.323834,0.530671,0.459793,0.550666,0.436776,0.735042,0.253409,0.760567,0.226225,0.548351,0.307027,0.586853,0.233403,0.750379,0.100398,0.669174,0.189325,0.57728,0.312795,0.646728,0.205846,0.60905,0.300942,0.603783,0.303175,0.71274,0.173751,0.704318,0.172426,0.529575,0.470425,0.57805,0.42195,0.59697,0.40303,0.69535,0.304391,0.602247,0.397753,0.573886,0.425404,0.601785,0.397135,0.567748,0.426934,0.564677,0.424565,0.629996,0.367051,0.839478,0.152667,0.674529,0.318254,0.658311,0.34169,0.519115,0.480724,0.674971,0.324149,0.795639,0.201879,0.792636,0.204594,0.768651,0.196728,0.825825,0.148405,0.907459,0.0921645,0.875942,0.11445,0.624698,0.374669,0.838409,0.152551,0.949151,0.035411,0.84457,0.152303,0.959833,0.0344203,0.88428,0.107183,0.944676,0.0267655,0.876661,0.0658483,0.838142,0.0925955,0.825619,0.165237,0.819775,0.112058,0.523605,0.471227,0.668939,0.328202,0.789999,0.167805,0.765096,0.227649,0.716552,0.270235,0.709925,0.278852,0.737564,0.260494,0.785063,0.126769,0.740064,0.256276,0.857255,0.130185,0.532354,0.466815,0.906264,0.0937357,0.909603,0.0903969,0.656766,0.332678,0.660243,0.328935,0.920067,0.0799325,0.667774,0.326884,0.620765,0.378801,0.897562,0.102438,0.884308,0.115692,0.895798,0.104202,0.884773,0.115227,0.525238,0.474168,0.661916,0.338084,0.63879,0.36121,0.532715,0.467285,0.675647,0.323059,0.913225,0.0867747,0.890649,0.109351,0.899082,0.100918,0.650481,0.349519,0.679951,0.320049,0.546044,0.453956,0.596203,0.403797,0.600752,0.399248,0.896793,0.103207,0.895764,0.104236,0.586455,0.413545,0.591575,0.389376,0.638619,0.359063,0.576759,0.411269,0.556115,0.43955,0.63593,0.36407,0.506684,0.459189,0.497048,0.453693,0.512355,0.487645,0.546924,0.453076,0.411708,0.28681,0.409889,0.290934,0.500448,0.338644,0.552312,0.213681,0.491692,0.258764,0.432047,0.431311,0.565838,0.318454,0.439491,0.400961,0.516013,0.275741,0.651893,0.308444,0.490369,0.430458,0.694795,0.279667,0.521935,0.416247,0.703602,0.267867,0.535851,0.40514,0.512733,0.377484,0.529442,0.357078,0.681191,0.273536,0.503977,0.419524,0.558643,0.327873,0.442384,0.413766,0.529115,0.338469,0.522786,0.267126,0.375061,0.355207,0.442648,0.254757,0.472897,0.181079,0.548195,0.178819,0.579127,0.211916,0.524845,0.255613,0.513346,0.208671,0.607135,0.23556,0.535469,0.281458,0.567335,0.243268,0.598627,0.189993,0.616747,0.195582,0.516133,0.35004,0.583643,0.251979,0.596496,0.232663,0.629298,0.2031,0.587507,0.21693,0.619119,0.23067,0.56267,0.274936,0.549419,0.21805,0.501755,0.299162,0.483524,0.261884,0.446236,0.328335,0.371396,0.304694,0.355204,0.338364,0.52671,0.249693,0.429727,0.31181,0.540481,0.309833,0.455245,0.333204,0.396522,0.356732,0.701801,0.181223,0.616327,0.200862,0.61638,0.247753,0.562801,0.275563,0.609706,0.270474,0.721304,0.191016,0.638369,0.238181,0.459257,0.285334,0.473972,0.313913,0.425818,0.291559,0.450169,0.271234,0.451059,0.270648,0.554833,0.287944,0.433167,0.414364,0.639442,0.255532,0.562029,0.328066,0.558622,0.273475,0.598446,0.270738,0.668102,0.215963,0.778143,0.139997,0.946922,0.0311678,0.898382,0.0677653,0.984662,0.00822346,0.97443,0.0107221,0.805937,0.0956971,0.795297,0.148377,0.532619,0.411639,0.513235,0.401197,0.471486,0.434267,0.758974,0.180861,0.530208,0.361739,0.600639,0.279813,0.630129,0.262459,0.512196,0.354349,0.614918,0.219771,0.80336,0.114296,0.808847,0.0984065,0.522198,0.325447,0.586125,0.240346,0.601992,0.237513,0.516098,0.287873,0.790936,0.177223,0.720802,0.24376,0.917161,0.0547949,0.976941,0.0123803,0.831117,0.115323,0.473633,0.307904,0.345983,0.326106,0.45692,0.302267,0.679305,0.221344,0.832569,0.136684,0.489895,0.284898,0.704458,0.196349,0.692415,0.187835,0.731419,0.187285,0.532608,0.398878,0.555551,0.352425,0.642335,0.244338,0.843514,0.147705,0.947914,0.0503227,0.968205,0.0293142,0.876795,0.114382,0.470767,0.461544,0.511096,0.395813,0.50178,0.281716,0.531487,0.23673,0.920826,0.0550398,0.770521,0.146427,0.915637,0.0783412,0.807237,0.178358,0.488658,0.361744,0.72546,0.19228,0.567945,0.36158,0.628539,0.265363,0.606784,0.287883,0.543317,0.384608,0.564209,0.424364,0.554184,0.433661,0.532599,0.438974,0.923484,0.0721071,0.881215,0.103617,0.955865,0.0403941,0.980309,0.0172066,0.971273,0.0283261,0.980501,0.0145553,0.98692,0.00823676,0.964244,0.0357559,0.984261,0.0153433,0.881796,0.114103,0.925388,0.0742614,0.950625,0.0375539,0.88219,0.113049,0.835736,0.091019,0.839505,0.0617349,1.0,0,0.924668,0.0709212,0.934772,0.0631847,1.0,0,0.945937,0.0469517,0.999274,0.000726083,0.989285,0.010715,0.994555,0.00544484,0.950515,0.0290178,0.947497,0.0378354,0.974006,0.0259945,0.856225,0.143594,0.886208,0.113654,0.981048,0.0189519,0.370971,0.323741,0.32601,0.31109,0.3847,0.344207,0.378146,0.355559,0.403627,0.389995,0.510711,0.248704,0.533038,0.453749,0.684868,0.308344,0.647269,0.334204,0.538649,0.4341,0.560248,0.372673,0.546517,0.373657,0.730051,0.191426,0.872367,0.0994162,0.695929,0.231433,0.564342,0.343886,0.525251,0.460828,0.742204,0.249815,0.511684,0.423228,0.655827,0.329133,0.822863,0.160819,0.563526,0.383761,0.73572,0.212266,0.84989,0.13219,0.899282,0.0735665,0.531727,0.437183,0.600663,0.348587,0.60276,0.341517,0.607789,0.199798,0.595567,0.292257,0.601839,0.280876,0.610685,0.19966,0.600303,0.21072,0.586954,0.299211,0.58012,0.290767,0.577407,0.282389,0.579597,0.301544,0.58262,0.397222,0.56938,0.413715,0.515317,0.449617,0.495168,0.465985,0.484424,0.47342,0.604533,0.375038,0.560439,0.275215,0.575846,0.258669,0.569954,0.261109,0.558011,0.252211,0.53787,0.353446,0.529755,0.347185,0.574941,0.214253,0.55924,0.314999,0.55322,0.305776,0.82491,0.137055,0.967684,0.0314583,0.953654,0.039614,0.996593,0.00182205,0.974411,0.0230989,0.996421,0.00318146,0.998157,0.00140406,0.990852,0.00914804,0.79744,0.160375,0.501016,0.306373,0.640082,0.18514,0.706076,0.270014,0.770992,0.225762,0.528447,0.237521,0.582491,0.376192,0.621253,0.316006,0.633495,0.27511,0.599131,0.381933,0.679223,0.31477,0.788726,0.209522,0.740191,0.257573,0.58104,0.407689,0.725589,0.211819,0.641003,0.343554,0.481612,0.471351,0.547949,0.357207,0.533423,0.374124,0.491722,0.46689,0.804496,0.148238,0.78429,0.210951,0.458506,0.455955,0.484859,0.431011,0.495815,0.427013,0.464019,0.457925,0.449789,0.435956,0.459409,0.433422,0.481779,0.422374,0.479071,0.456098,0.528449,0.403888,0.46415,0.340564,0.438423,0.312556,0.468865,0.32008,0.479241,0.359695,0.539087,0.249291,0.515417,0.308517,0.497181,0.280944,0.428587,0.336481,0.41277,0.304374,0.492685,0.452399,0.507315,0.409109,0.494824,0.352897,0.461764,0.382933,0.53273,0.329539,0.452288,0.436569,0.463708,0.452178,0.447,0.394177,0.450419,0.397726,0.462042,0.444279,0.494358,0.428227,0.473116,0.395412,0.555055,0.343395,0.503466,0.407071,0.481262,0.446807,0.464489,0.456619,0.55797,0.373781,0.569592,0.360546,0.476516,0.452058,0.469971,0.453394,0.511936,0.389178,0.521832,0.372245,0.508198,0.391652,0.4987,0.38912,0.509498,0.453043,0.563585,0.34268,0.494312,0.45715,0.524894,0.400694,0.544089,0.387344,0.513809,0.452476,0.807716,0.191703,0.877403,0.122597,0.889849,0.110151,0.822871,0.176442,0.936253,0.0637465,0.964653,0.0353471,0.981457,0.0185435,0.989167,0.00843963,0.962587,0.0374129,0.978789,0.0212111,0.655873,0.255102,0.655328,0.252375,0.5931,0.345452,0.651562,0.249358,0.677854,0.168312,0.683379,0.161779,0.669156,0.241089,0.66052,0.251071,0.608441,0.342712,0.600936,0.347214,0.685243,0.165491,0.686654,0.16246,0.67061,0.240457,0.671263,0.237507,0.613703,0.338904,0.613552,0.33801,0.633776,0.192793,0.643285,0.184105,0.630451,0.2629,0.639412,0.197766,0.629371,0.263786,0.640944,0.196097,0.573495,0.347074,0.578059,0.33789,0.598384,0.238566,0.59935,0.247111,0.609445,0.27155,0.595757,0.307185,0.510089,0.438954,0.482807,0.477135,0.558936,0.416494,0.603974,0.379527,0.707755,0.286754,0.676598,0.314357,0.502232,0.46434,0.722992,0.273067,0.418966,0.317171,0.504256,0.260417,0.450258,0.268863,0.367243,0.358664,0.51446,0.32144,0.540509,0.258378,0.541951,0.316947,0.92861,0.0713895,0.561385,0.222572,0.559583,0.266463,0.558901,0.25957,0.493538,0.288867,0.540599,0.262289,0.470191,0.300961,0.578096,0.2277,0.55932,0.288782,0.567989,0.308631,0.526563,0.400893,0.442629,0.329574,0.418247,0.278055,0.446955,0.339811,0.544259,0.318321,0.64228,0.252096,0.577144,0.357186,0.40324,0.338933,0.536305,0.399431,0.506724,0.447097,0.511806,0.447878,0.518053,0.445924,0.543429,0.395832,0.523845,0.442464,0.552242,0.385875,0.583176,0.336695,0.584027,0.33482,0.920732,0.0792676,0.989221,0.0107787,0.572087,0.326496,0.621069,0.288102,0.569374,0.373232,0.978252,0.0217483,0.885938,0.11245,0.88059,0.117802,0.973078,0.0269221,0.968894,0.0311056,0.86329,0.134986,0.948387,0.051613,0.823614,0.174607,1.0,0,1.0,0,0.613654,0.366735,0.762262,0.231427,0.737389,0.254154,0.998768,0.00123204,0.714333,0.277564,0.994105,0.00589467,0.685794,0.307232,0.957793,0.020102,0.611503,0.207234,0.60894,0.262329,0.959431,0.0405692,0.978232,0.0217682,0.9922,0.00779974,0.999765,0.000235248,0.473389,0.467492,0.578763,0.309376,0.488413,0.454635,0.60465,0.241158,0.600726,0.238922,0.626076,0.251792,0.560168,0.356886,0.570661,0.355827,0.644777,0.198244,0.484848,0.471575,0.706659,0.29064,0.641379,0.193138,0.704825,0.292796,0.625998,0.272509,0.798598,0.0995308,0.57246,0.403438,0.62185,0.361274,0.626989,0.360247,0.881966,0.091388,0.8264,0.109739,0.836153,0.163628,0.686948,0.159675,0.670095,0.242505,0.813671,0.185899,0.482547,0.480345,0.875824,0.124176,0.922541,0.0420514,0.92753,0.0308644,0.94876,0.0462161,0.98553,0.01447,0.61765,0.333661,0.504792,0.383563,0.503146,0.427827,0.444151,0.403569,0.448129,0.375834,0.627967,0.315863,0.589655,0.280256,0.912446,0.0693867,0.854418,0.0741874,0.971683,0.0209704,0.997886,0.00131004,0.463916,0.308821,0.472202,0.334623,0.54809,0.311998,0.552234,0.303694,0.460284,0.454432,0.47362,0.451031,0.473016,0.461534,0.473572,0.415321,0.463356,0.308009,0.494947,0.449233,0.902933,0.0527532,0.508957,0.268761,0.360377,0.345377,0.354643,0.286821,0.388696,0.272655,0.488129,0.197037,0.717301,0.135311,0.332513,0.26508,0.460748,0.359793,0.419644,0.402002,0.447457,0.360585,0.355252,0.26821,0.380756,0.316597,0.929183,0.0369831,0.926942,0.0702423,0.507062,0.320356,0.648697,0.188231,0.72736,0.161658,0.390056,0.366783,0.410549,0.378417,0.966649,0.0318269,0.999509,0.000490634,0.994441,0.00555921,0.964303,0.0339849,0.805303,0.171997,0.747836,0.127438,0.796005,0.107075,0.822963,0.161147,0.967915,0.0320852,0.943164,0.0380191,0.966118,0.0328359,0.987718,0.0122817,0.876778,0.123107,0.908949,0.0500994,0.96384,0.0346602,0.983867,0.0161331,0.789827,0.197218,0.785679,0.198377,0.757657,0.227312,0.709146,0.273796,0.767233,0.206709,0.660219,0.195908,0.599937,0.212341,0.742331,0.204098,0.441609,0.328295,0.597323,0.138598,0.537546,0.162179,0.425309,0.340974,0.769851,0.212323,0.714707,0.159998,0.629921,0.23475,0.551358,0.172434,0.539427,0.165403,0.545768,0.351916,0.420743,0.345628,0.427007,0.347893,0.457507,0.333868,0.677253,0.171514,0.740705,0.233893,0.710076,0.180103,0.641411,0.138943,0.463492,0.278165,0.522932,0.232903,0.654266,0.2177,0.846493,0.0936622,0.831915,0.16777,0.696518,0.19218,0.568764,0.213272,0.538915,0.348525,0.668019,0.147561,1.0,0,0.571393,0.374299,0.576095,0.41297,0.786697,0.209106,0.793489,0.206323,0.481574,0.326452,0.544806,0.328574,0.618656,0.218847,0.855054,0.127073,0.42336,0.291052,0.597172,0.388554,0.806966,0.188462,0.946977,0.053023,0.95162,0.04838,0.954756,0.045244,0.556883,0.303707,0.526736,0.369043,0.557022,0.328638,0.498263,0.300051,0.470682,0.402528,0.639587,0.321843,0.698331,0.276327,0.514077,0.391127,0.48094,0.43087,0.565047,0.411075,0.440544,0.350961,0.412822,0.371833,0.702923,0.293241,0.724761,0.273331,0.69768,0.30164,0.730322,0.269004,0.678676,0.30298,0.575166,0.374707,0.591042,0.403476,0.478868,0.478345,0.454748,0.41931,0.407378,0.338495,0.50999,0.351004,0.411837,0.227289,0.2785,0.274885,0.679701,0.203528,0.501119,0.278423,0.945619,0.0371052,0.929525,0.0465776,0.844995,0.111482,0.916257,0.0490245,0.905481,0.0494708,0.815099,0.0997563,0.570119,0.311145,0.876925,0.081563,0.90251,0.0786429,0.670395,0.183115,0.905112,0.0782309,0.700506,0.165761,0.983096,0.0169043,0.983204,0.0167965,0.983736,0.0162645,0.698015,0.210224,0.454625,0.343659,0.389409,0.332237,0.537057,0.359409,0.812091,0.128175,0.593699,0.293249,0.769943,0.210865,0.98073,0.0192702,0.996483,0.00351735,0.933714,0.0637743,0.895943,0.0968008,0.961071,0.0361062,0.996299,0.00370057,0.976168,0.0145971,0.937298,0.0413944,0.623259,0.158163,0.547599,0.354463,0.473617,0.373421,0.549822,0.262773,0.495675,0.339373,0.75712,0.203809,0.857767,0.0964938,0.628539,0.198898,0.684862,0.232591,0.934029,0.040571,0.931199,0.0442194,0.546193,0.331865,0.481588,0.313482,0.586053,0.205312,0.381128,0.357127,0.443849,0.4152,0.550381,0.261398,0.463898,0.289061,0.410305,0.376351,0.618729,0.24553,0.611677,0.266517,0.613054,0.295034,0.496328,0.423025,0.484994,0.466749,0.52197,0.419291,0.57977,0.318138,0.617818,0.304696,0.458412,0.314817,0.434182,0.348576,0.655139,0.215963,0.572554,0.329923,0.540331,0.235574,0.442533,0.418791,0.745133,0.231292,0.597608,0.336899,0.896059,0.100878,0.890531,0.104643,0.784264,0.197139,0.734115,0.224318,0.869725,0.101294,0.65991,0.217108,0.831492,0.096994,0.488212,0.362033,0.692781,0.21294,0.999339,0.000661375,1.0,0,1.0,0,1.0,0,0.988795,0.0112051,0.976596,0.0234044,1.0,0,1.0,0,0.987694,0.0123055,1.0,0,0.987635,0.0123654,0.995953,0.00404684,1.0,0,0.99922,0.000779603,1.0,0,1.0,0,1.0,0,1.0,0,0.999808,0.000192428,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999453,0.00054741,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999287,0.000712979,0.997552,0.00244765,1.0,0,1.0,0,0.851383,0.141057,0.967661,0.0323385,1.0,0,1.0,0,1.0,0,1.0,0,0.980998,0.0190024,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.997783,0.00221667,0.995172,0.00482823,0.997898,0.00210203,0.93542,0.06458,0.968791,0.031209,0.972595,0.0274048,0.967936,0.0320642,0.996663,0.00333711,0.846267,0.153733,0.872038,0.127962,0.871315,0.128685,0.98578,0.0142197,0.880666,0.119334,0.978876,0.0211241,0.887583,0.112417,1.0,0,0.994805,0.00519457,1.0,0,0.954614,0.0453863,0.999019,0.00098106,0.977815,0.0221851,1.0,0,0.996568,0.00343169,0.970201,0.0297988,0.99983,0.00016961,0.996248,0.00375168,1.0,0,1.0,0,1.0,0,1.0,0,0.950859,0.0476343,0.966065,0.0210278,0.873997,0.126003,0.890648,0.109352,0.88107,0.11893,0.975619,0.024381,0.999893,0.000107181,1.0,0,1.0,0,0.725269,0.27473,0.61684,0.38316,0.675925,0.324075,0.784568,0.215432,0.548773,0.451227,0.570261,0.429739,0.610265,0.389735,0.581138,0.418862,0.742948,0.257052,0.75223,0.24777,0.764435,0.235565,0.749939,0.250061,0.718398,0.281602,0.859339,0.140661,0.642702,0.357298,0.831385,0.168615,0.578204,0.421796,0.815777,0.184223,0.511623,0.488377,0.601604,0.398396,0.679709,0.320291,0.616575,0.383425,0.687953,0.312047,0.782956,0.217044,0.858995,0.141005,0.873905,0.126095,0.937116,0.0628841,0.82113,0.178871,0.685176,0.314824,0.699418,0.300582,0.568119,0.431881,0.582502,0.417498,0.558989,0.441011,0.908814,0.0911864,0.862,0.138,0.677869,0.322131,0.765852,0.234148,0.941663,0.0583372,0.942748,0.057252,0.92904,0.0709601,0.645799,0.354201,0.610702,0.389298,0.620676,0.379324,0.728638,0.271362,0.548836,0.451164,0.667158,0.332842,0.690973,0.309027,0.865831,0.134169,0.846805,0.153195,0.532507,0.467493,0.718826,0.281174,0.885053,0.114947,0.838334,0.161666,0.955471,0.0445289,0.937502,0.0624977,0.917158,0.0828417,0.795328,0.204672,0.954882,0.0451184,0.936376,0.0636241,0.978928,0.0210716,0.956978,0.0430215,0.964513,0.0354875,0.988825,0.0111753,0.962301,0.0376991,0.968312,0.0316884,0.987208,0.0127921,0.991337,0.00866289,0.922252,0.0777479,0.976377,0.0236234,0.995115,0.00488495,0.937151,0.0628488,0.985473,0.0145266,0.770803,0.229197,0.79529,0.20471,0.520995,0.479005,0.524718,0.475282,0.696987,0.303013,0.704387,0.295613,0.959595,0.0404045,0.963228,0.0367719,1.0,0,0.876922,0.123078,0.8959,0.1041,0.918222,0.0817779,0.757314,0.242686,0.513195,0.486805,0.800607,0.199393,0.538575,0.461425,0.944256,0.055744,0.787838,0.212162,0.739716,0.260284,0.915724,0.0842762,0.980423,0.0195768,0.989248,0.0107523,0.980958,0.0190425,0.996177,0.00382261,0.950539,0.0494615,0.998338,0.00166236,0.991725,0.00827465,0.997411,0.00258884,0.999677,0.000322593,0.999301,0.000698635,1.0,0,0.99782,0.00218021,0.997601,0.00239939,0.997881,0.00211914,0.999693,0.000307419,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999564,0.000436043,1.0,0,1.0,0,1.0,0,1.0,0,0.999412,0.000587856,0.998254,0.00174566,0.994328,0.00567212,0.9949,0.00510027,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.990239,0.00976113,0.987675,0.012325,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999757,0.00024304,0.999504,0.00049624,1.0,0,1.0,0,0.975461,0.0245394,1.0,0,1.0,0,0.995766,0.00423355,1.0,0,1.0,0,1.0,0,1.0,0,0.993924,0.00607648,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999171,0.000828797,0.997882,0.00211829,0.988846,0.0111544,0.984961,0.0150389,0.980305,0.019695,0.990808,0.0091919,0.988364,0.0116365,0.987982,0.0120178,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.973531,0.0264693,0.940537,0.0594632,0.930134,0.0698664,0.929552,0.070448,0.893768,0.0915847,0.681449,0.318551,0.996907,0.00309283,1.0,0,1.0,0,0.813766,0.183299,0.520934,0.418038,0.590945,0.399659,0.967905,0.0320947,0.937659,0.0623412,0.988836,0.0111636,0.993007,0.00699298,0.983939,0.0160605,0.97506,0.0249402,0.931209,0.0687909,0.991226,0.00877356,0.990029,0.009971,0.993577,0.00642326,0.994197,0.0058026,0.992441,0.0075592,0.996657,0.00334283,0.940224,0.0597757,0.961713,0.0382871,0.951026,0.0489743,0.969488,0.0305123,1.0,0,0.979486,0.010286,0.963414,0.0172909,0.909924,0.0410598,0.662594,0.177817,0.66316,0.200645,0.496483,0.462519,0.557472,0.423772,0.485358,0.306065,0.920053,0.0799471,0.833618,0.166382,0.853983,0.146017,0.938603,0.0613975,0.865917,0.134083,0.512037,0.487963,0.701266,0.298734,0.575314,0.424686,0.636654,0.363346,0.757185,0.242815,0.618366,0.381634,0.736265,0.263735,0.603929,0.396071,0.891112,0.108888,0.665397,0.334603,0.898648,0.101352,0.769239,0.230761,0.917016,0.0829838,0.587298,0.412702,0.5595,0.4405,0.572962,0.427038,0.808567,0.191433,0.807793,0.192207,0.558745,0.441255,0.807425,0.192575,0.951026,0.0489736,0.93612,0.0638796,0.865609,0.134391,0.55007,0.44993,0.71289,0.28711,0.513933,0.486067,0.737438,0.262562,0.923748,0.0762522,0.909883,0.090117,0.990315,0.0063982,0.987826,0.0065273,0.989844,0.00993084,0.932668,0.0673321,0.938053,0.0619474,0.937986,0.0620145,0.624266,0.375734,0.523471,0.476529,0.773484,0.226516,0.798719,0.201281,0.714221,0.285779,0.591339,0.408661,0.759715,0.240284,0.903873,0.0961274,0.882095,0.117905,0.97806,0.0219395,0.924303,0.0756969,0.987525,0.0124751,0.999512,0.000487997,0.990142,0.0098583,0.999897,0.000103469,0.99988,0.000120344,0.715592,0.284408,0.90681,0.0931898,0.91977,0.0802298,0.81798,0.18202,0.989704,0.0101921,0.986002,0.0133404,0.914556,0.0854439,0.987236,0.0105208,0.792184,0.207816,0.760207,0.239793,0.666709,0.333291,0.530643,0.469357,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.997863,0.00213661,0.985056,0.0149441,0.956892,0.043108,0.993793,0.00620678,0.892049,0.107951,0.970728,0.0292724,1.0,0,1.0,0,0.969039,0.0309605,0.895237,0.104763,0.99502,0.00498042,0.998941,0.00105866,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.944799,0.0552014,0.996184,0.00381639,0.997529,0.0024707,0.704072,0.295928,0.943055,0.0569446,0.987204,0.0127956,0.996452,0.00354778,0.981624,0.0183757,0.999889,0.000111,0.999246,0.000753952,0.99813,0.00186996,0.87452,0.12548,0.953024,0.0469763,0.993882,0.00611769,0.552867,0.447133,0.999793,0.000206655,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999432,0.00056777,0.996328,0.00367157,0.996609,0.00339077,0.999649,0.000350879,0.996578,0.00342242,0.999282,0.000718196,0.988763,0.0112366,1.0,0,1.0,0,0.999871,0.00012886,0.999862,0.000137601,0.999077,0.000922507,0.994931,0.00506852,0.988157,0.0118434,0.966967,0.0330326,0.970776,0.0292241,0.981713,0.018287,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.990162,0.00983846,0.957651,0.0423489,0.994488,0.00292797,0.981083,0.0189168,0.995176,0.00482448,0.998854,0.000910575,0.879698,0.120302,0.948618,0.0513816,0.991121,0.00682132,0.988503,0.0114969,0.929732,0.0702677,0.920619,0.0793807,0.977906,0.0220939,0.983312,0.0166876,0.996464,0.00353582,1.0,0,0.969677,0.0303233,0.991998,0.00800206,1.0,0,0.81362,0.18638,0.77578,0.22422,0.937859,0.0621414,0.999511,0.000489242,1.0,0,0.999614,0.000385737,0.996732,0.00326774,0.999885,0.000114882,1.0,0,1.0,0,1.0,0,0.759747,0.240253,0.522939,0.477061,0.542862,0.457138,0.783291,0.216709,0.678096,0.321904,0.622025,0.377975,0.82775,0.17225,0.830497,0.169503,0.870209,0.129791,0.621444,0.378556,0.51647,0.48353,0.813311,0.186689,0.755413,0.244587,0.659792,0.340208,0.745842,0.254158,0.899536,0.100464,0.980816,0.019184,0.984119,0.0158811,0.982823,0.0171766,0.606948,0.393052,0.696989,0.303011,0.648588,0.351412,0.66836,0.33164,0.91539,0.08461,0.922547,0.0774532,0.921491,0.0785091,0.847165,0.152835,0.847162,0.152838,0.719639,0.280361,0.850883,0.149117,0.612034,0.387966,0.97552,0.0244802,0.964207,0.0357932,0.950038,0.0499621,0.886294,0.113706,0.985959,0.0140412,1.0,0,1.0,0,1.0,0,0.99823,0.00177017,0.991068,0.00893174,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999177,0.000822817,0.997695,0.00230516,0.987093,0.0129067,0.999898,0.000101618,1.0,0,1.0,0,0.997767,0.00223286,1.0,0,0.590471,0.409529,0.53346,0.46654,0.75744,0.24256,0.783888,0.216112,0.607699,0.392301,0.654254,0.345746,0.59497,0.40503,0.805191,0.194809,0.679758,0.320242,0.794404,0.205596,0.832066,0.167934,0.542371,0.457629,0.761536,0.238464,0.647797,0.352203,0.862694,0.137306,0.925446,0.0745538,0.935172,0.0648278,0.526843,0.473157,0.749474,0.250526,0.927192,0.0728077,0.704678,0.295322,0.717196,0.282804,0.578255,0.421745,0.721919,0.278081,0.866351,0.133649,0.614535,0.385465,0.638707,0.361293,0.616849,0.383151,0.893973,0.106027,0.985255,0.0147452,0.975779,0.024221,0.971099,0.0289013,0.588768,0.411232,0.647811,0.352189,0.515192,0.484808,0.843162,0.156838,0.588833,0.411167,0.797128,0.202872,0.809512,0.190488,0.60363,0.39637,0.57606,0.42394,0.808892,0.191108,0.966703,0.0332975,0.967825,0.0321747,0.967454,0.032546,0.550246,0.449754,0.770838,0.229162,0.565112,0.434888,0.758504,0.241496,0.846403,0.153597,0.846889,0.153111,0.584905,0.415095,0.503662,0.496338,0.867111,0.132889,0.948413,0.0515874,0.859899,0.140101,0.968697,0.0313031,0.972668,0.0273322,0.510388,0.489612,0.538179,0.461821,0.662327,0.337673,0.773587,0.226413,0.775621,0.224379,0.965572,0.034428,0.884641,0.115359,0.977339,0.0226608,0.523628,0.476372,0.834749,0.165251,0.819625,0.180375,0.869934,0.130066,0.765879,0.234121,0.506581,0.493419,0.873611,0.126389,0.522318,0.477682,0.544935,0.455065,0.75872,0.24128,0.786112,0.213888,0.523344,0.476656,0.792332,0.207668,0.950216,0.0497837,0.949092,0.0509081,0.911989,0.0880115,0.823581,0.176419,0.853015,0.146985,0.953842,0.0461577,0.945287,0.0547126,0.81897,0.18103,0.965058,0.0349423,0.926099,0.0739006,0.967658,0.0323415,0.816781,0.18322,0.942086,0.0579144,0.998177,0.0018233,0.996857,0.00314342,0.988647,0.0113535,0.990866,0.00913407,0.981494,0.018506,0.978108,0.021892,0.978663,0.021337,0.97482,0.0251802,0.987751,0.0122493,0.727299,0.272701,0.940301,0.0596995,0.995861,0.00413887,0.992731,0.00726879,0.979566,0.0204344,0.664711,0.335289,0.924982,0.0750175,0.989526,0.0104737,0.887754,0.112246,0.921844,0.0781564,0.972275,0.0277246,0.891311,0.108689,0.913672,0.0863278,0.716873,0.283127,0.763635,0.236365,0.932156,0.0678437,0.647257,0.352743,0.52237,0.47763,0.984417,0.0148524,0.989925,0.00967366,0.994755,0.00503442,0.853389,0.146611,0.983362,0.0166377,0.921767,0.0782328,0.996108,0.00389187,0.708167,0.291833,0.957703,0.0422968,1.0,0,0.997554,0.00244633,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.989675,0.0103255,0.962859,0.0371413,0.975027,0.0249728,0.958634,0.041366,0.949373,0.0506269,0.860768,0.139232,0.985505,0.0144954,0.860845,0.139155,1.0,0,1.0,0,1.0,0,1.0,0,0.999866,0.000133702,1.0,0,0.999884,0.000115991,0.99948,0.000520263,1.0,0,1.0,0,1.0,0,1.0,0,0.999456,0.000543693,1.0,0,1.0,0,0.99934,0.000659637,1.0,0,1.0,0,0.999608,0.00039153,0.999049,0.000950572,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.998557,0.00144282,0.99975,0.000250197,0.999562,0.000438151,0.998316,0.00168402,0.988931,0.0110689,1.0,0,1.0,0,0.998426,0.00157372,0.996444,0.00355634,0.999738,0.000262001,1.0,0,0.982785,0.0172147,0.937128,0.0628717,0.988842,0.0111581,1.0,0,0.999802,0.0001977,0.919582,0.080418,0.923057,0.0769434,0.986537,0.00774695,0.987986,0.00707858,0.733316,0.266684,0.538,0.462,0.806568,0.193432,0.515905,0.484095,0.996912,0.00308768,0.973277,0.0267233,0.938815,0.0611852,0.971762,0.0282382,0.999113,0.000887176,0.794342,0.205658,0.887437,0.112563,0.957263,0.0423388,0.9418,0.058038,0.975229,0.0240192,0.865189,0.134811,0.946416,0.0535835,0.771974,0.228026,0.966795,0.033205,0.989112,0.0108878,0.795336,0.204664,0.974223,0.0257768,0.8457,0.1543,0.948735,0.0512645,0.692639,0.307361,1.0,0,0.870234,0.129766,0.962396,0.0376038,0.887537,0.112463,0.999465,0.000535281,1.0,0,0.997937,0.00206294,0.986672,0.0133277,0.98427,0.0157303,1.0,0,0.999296,0.000703686,0.636827,0.363174,1.0,0,1.0,0,0.517441,0.482559,0.500533,0.499467,0.785899,0.214101,0.952764,0.0472357,1.0,0,1.0,0,0.999843,0.000156919,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.950023,0.0499768,0.653809,0.346191,0.588202,0.411798,0.966778,0.0332218,0.946179,0.0538207,0.968632,0.0313683,1.0,0,1.0,0,1.0,0,0.953493,0.0465069,0.74817,0.25183,0.54033,0.45967,0.999581,0.000419329,0.995415,0.00458544,1.0,0,1.0,0,0.998806,0.00119389,0.997977,0.00202264,0.999296,0.00070357,1.0,0,0.999256,0.000743751,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999018,0.000981507,0.998123,0.00187733,0.998634,0.00136649,0.999735,0.000264808,0.99938,0.000619516,0.999869,0.000131254,0.998116,0.00188428,1.0,0,0.974518,0.0254815,0.978302,0.0216977,0.997129,0.0028709,0.992363,0.00763683,0.997393,0.00260668,0.999467,0.000532572,1.0,0,0.929684,0.070316,0.917473,0.0825269,0.934387,0.0656131,0.947583,0.052417,0.780745,0.219255,0.907307,0.0926932,0.885542,0.114458,0.841364,0.154524,0.821266,0.109926,0.686117,0.214507,0.621497,0.368998,0.676585,0.322466,0.882864,0.116834,0.924873,0.0751269,0.999378,0.000621739,0.980491,0.0195086,0.967019,0.0329809,1.0,0,0.793438,0.206562,0.734311,0.265689,0.95975,0.035423,0.811068,0.188932,0.866384,0.133616,0.899174,0.0892201,0.896383,0.103617,0.994469,0.00553059,0.996635,0.00336481,0.999546,0.000453555,0.804889,0.110734,0.816841,0.177646,1.0,0,1.0,0,1.0,0,1.0,0,0.932859,0.0331925,0.639178,0.255358,0.61024,0.358535,1.0,0,1.0,0,0.513223,0.445966,0.621437,0.357531,0.578186,0.355916,0.541817,0.425362,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.617914,0.382086,0.673117,0.326883,1.0,0,1.0,0,0.572183,0.427817,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.619738,0.380262,0.865115,0.134885,0.888285,0.111715,0.869081,0.130919,0.650389,0.349611,1.0,0,0.787209,0.212791,0.989498,0.00983824,0.808671,0.167623,0.73501,0.26499,0.650333,0.349667,0.997255,0.00274456,0.98703,0.0129697,0.993504,0.00649562,0.997834,0.00216567,0.616117,0.383883,0.623043,0.376957,0.618173,0.381827,0.721698,0.278302,0.735594,0.264406,0.848199,0.151801,0.979808,0.0201919,0.625811,0.374189,0.63216,0.36784,0.992116,0.00788365,0.835626,0.164374,0.796124,0.203876,0.994737,0.00526331,0.999792,0.000207541,1.0,0,1.0,0,0.996539,0.00346068,0.971893,0.0281072,1.0,0,1.0,0,0.999055,0.000944999,1.0,0,1.0,0,1.0,0,1.0,0,0.991558,0.0084422,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.984452,0.0155475,1.0,0,0.98344,0.0165596,1.0,0,0.80375,0.19625,0.787841,0.212159,0.778488,0.221512,0.964984,0.0350164,0.96675,0.0332498,1.0,0,0.988353,0.0116473,1.0,0,1.0,0,1.0,0,0.98881,0.0111898,0.815021,0.184979,0.823648,0.176352,0.996095,0.00390495,0.5849,0.4151,0.582609,0.417391,0.6002,0.3998,1.0,0,1.0,0,0.579506,0.420494,0.921908,0.0780925,0.913714,0.0862856,0.94235,0.0576501,1.0,0,1.0,0,1.0,0,0.640373,0.359627,1.0,0,0.675087,0.324913,0.636634,0.363366,0.954192,0.0458079,0.978058,0.0219424,0.683897,0.316103,0.812784,0.187216,0.817188,0.182812,1.0,0,1.0,0,0.823711,0.17629,1.0,0,0.43468,0.333146,0.583172,0.374581,0.890309,0.0922354,0.636841,0.283448,0.644704,0.279605,0.741868,0.210512,0.963166,0.0368341,0.956706,0.0432943,0.992453,0.0070101,0.986912,0.0130875,0.924048,0.0759517,0.929632,0.0703678,0.991106,0.00889439,0.993512,0.00390813,0.656715,0.343285,0.697536,0.302464,0.657036,0.342964,0.564038,0.353141,0.663797,0.228456,0.757666,0.159069,0.852996,0.112083,0.941597,0.0412402,0.996398,0.00360162,0.994899,0.00510137,0.99647,0.00353032,0.97324,0.015442,0.756895,0.205004,0.903368,0.0966319,0.846807,0.153193,0.823054,0.176946,0.660335,0.339665,0.622613,0.377387,0.686087,0.313913,0.890495,0.109505,0.999256,0.000743499,0.621357,0.378643,0.940488,0.0595123,0.89844,0.0989147,0.928394,0.0716063,0.927431,0.0725688,1.0,0,0.533536,0.466464,0.975417,0.024583,0.629403,0.370596,0.565275,0.434725,0.563123,0.436877,0.558879,0.441121,0.591354,0.408646,0.958474,0.0415262,0.630378,0.369622,0.972653,0.0273472,0.971808,0.0185459,0.989276,0.0107236,0.610945,0.389055,0.976184,0.0238158,0.586297,0.413703,0.579224,0.420776,0.613598,0.386402,0.991383,0.00861667,0.741871,0.258129,0.805882,0.194118,0.829269,0.170731,0.947318,0.0526818,0.993267,0.00673269,0.993203,0.0067969,0.784339,0.215661,0.92289,0.0753899,0.74157,0.25843,0.820916,0.179084,0.78993,0.21007,0.841799,0.158201,0.875619,0.124381,0.938863,0.0611368,0.901054,0.098946,0.878328,0.121672,0.90038,0.0996196,0.885109,0.114891,0.845464,0.154536,0.877566,0.122434,0.926594,0.0734058,0.61081,0.38919,0.944288,0.0557115,0.98794,0.01206,0.808425,0.191575,0.95922,0.0407802,0.76133,0.23867,0.773716,0.226284,0.945446,0.0503986,0.525691,0.474309,0.862027,0.137973,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.831956,0.168044,0.894556,0.105444,1.0,0,1.0,0,0.998685,0.00131461,0.893013,0.106987,0.585857,0.414143,0.634445,0.365555,0.605303,0.394697,0.981702,0.0182978,0.990948,0.00905209,0.988718,0.0112823,0.983401,0.0165988,1.0,0,1.0,0,0.998945,0.00105537,0.993819,0.00618116,0.970408,0.0295923,0.986568,0.0134323,0.952963,0.0470369,0.984027,0.0159728,0.946104,0.0538955,0.525737,0.474263,0.992966,0.00703361,0.527352,0.472648,0.956807,0.0431933,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.993723,0.0062766,0.995432,0.00456784,1.0,0,0.999137,0.00086345,0.990994,0.00900576,0.997912,0.00208791,0.98161,0.0183902,0.994479,0.00552083,0.988507,0.0114926,0.995818,0.00418197,0.975037,0.0249633,0.988435,0.0115649,0.545978,0.454022,0.516807,0.483193,1.0,0,0.9952,0.00480014,1.0,0,0.903457,0.096543,0.809027,0.190973,0.848642,0.151358,0.58942,0.41058,0.555515,0.444485,0.978706,0.0212941,0.978355,0.0216449,0.942217,0.0577829,0.570821,0.429179,0.893692,0.106308,0.620998,0.379002,0.914343,0.085657,1.0,0,1.0,0,1.0,0,0.930414,0.0394818,0.625573,0.340982,0.954917,0.0450825,0.831664,0.168336,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.640497,0.359503,0.704266,0.295734,1.0,0,1.0,0,1.0,0,1.0,0,0.927882,0.0721177,1.0,0,1.0,0,1.0,0,0.844093,0.155907,0.742998,0.257002,1.0,0,1.0,0,0.910729,0.0797548,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.460161,0.443522,0.633529,0.246379,0.57056,0.391132,0.605,0.269605,0.40878,0.343091,0.655476,0.340522,0.523909,0.473499,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.75,0.25,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.75,0.25,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.753207,0.246793,1.0,0,0.793161,0.206839,1.0,0,0.749279,0.250721,0.75,0.25,0.75,0.25,0.75,0.25,0.896382,0.0965601,0.902275,0.0802847,0.556219,0.408752,0.718011,0.274945,1.0,0,1.0,0,0.910759,0.0892409,0.994462,0.00553794,0.999417,0.000583356,1.0,0,1.0,0,0.990677,0.00679059,0.992176,0.0063586,0.992868,0.00569131,0.848512,0.15033,0.904137,0.0754919,0.894834,0.082099,0.972289,0.0233269,0.838738,0.138543,0.810886,0.189114,0.807366,0.183835,0.746679,0.160401,1.0,0,1.0,0,1.0,0,0.990862,0.00764313,0.994968,0.00346958,0.990673,0.00918961,0.995337,0.00451042,0.999083,0.000917085,1.0,0,1.0,0,0.997688,0.00231168,1.0,0,1.0,0,1.0,0,0.874575,0.125425,0.987329,0.012671,0.953264,0.0467359,0.715637,0.284363,0.879926,0.120074,0.536016,0.463984,1.0,0,0.987128,0.0113471,0.806616,0.189353,0.476405,0.399679,1.0,0,0.978044,0.0124538,0.705287,0.150269,0.344582,0.328672,0.995662,0.00433771,0.937101,0.0617179,0.919973,0.0782854,0.63835,0.315181,0.706491,0.225126,0.672478,0.31768,0.662175,0.315745,1.0,0,0.970972,0.0174072,0.824838,0.170999,0.585405,0.408371,0.639931,0.345847,0.943354,0.0512565,0.858855,0.101697,0.976937,0.020724,1.0,0,1.0,0,1.0,0,1.0,0,0.996652,0.00198496,0.875554,0.112123,1.0,0,0.645571,0.354429,0.622645,0.377355,0.664403,0.335597,0.704271,0.295729,0.906973,0.0930265,0.840372,0.159628,0.698257,0.301743,0.614678,0.385322,0.987846,0.0103948,0.744148,0.231431,0.481395,0.471718,0.884771,0.0998148,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.998601,0.00119204,0.996488,0.00230918,0.976537,0.0206944,0.721237,0.261512,0.588424,0.384827,0.835694,0.0843181,0.93402,0.0378306,0.708961,0.270026,0.669429,0.320778,0.895358,0.103122,1.0,0,0.783739,0.127154,0.798024,0.18742,0.931128,0.0510391,0.977298,0.0212963,0.564513,0.330024,0.904042,0.0656845,0.746515,0.177096,0.551097,0.414614,0.863617,0.13143,0.954967,0.0367334,0.559968,0.426171,0.600002,0.378028,0.558484,0.436083,0.660893,0.220879,0.637861,0.268598,0.664499,0.301828,0.610656,0.344149,0.463959,0.406528,0.488221,0.339888,0.476401,0.287067,0.804669,0.157149,0.972174,0.0244043,0.983429,0.0118909,0.741117,0.190431,0.95978,0.023379,0.655361,0.211489,0.975374,0.0157427,0.994993,0.00381747,0.995047,0.00427535,0.901121,0.0988786,0.930781,0.0692187,0.958554,0.0414463,0.565932,0.434068,0.533668,0.466332,0.575808,0.424192,0.828889,0.171111,0.521571,0.478429,0.903167,0.0968331,0.917067,0.0829333,0.740623,0.259377,0.54041,0.45959,0.878286,0.121714,0.924725,0.0752754,0.902968,0.0946112,0.951445,0.0402498,0.756836,0.243016,0.893559,0.0890513,0.942576,0.0456854,0.901528,0.0661181,0.856198,0.100252,0.50885,0.49115,0.990465,0.00953468,0.987463,0.0125368,0.986553,0.0134465,0.984742,0.0152583,0.974068,0.0259319,0.996641,0.00335858,1.0,0,1.0,0,1.0,0,0.98746,0.0125403,0.989002,0.00645886,0.86184,0.0762722,0.664911,0.165764,0.410678,0.308094,0.411415,0.3128,0.951779,0.0291402,0.496375,0.379523,0.549445,0.258984,0.676361,0.304689,0.559441,0.353886,0.551504,0.186862,0.461537,0.452912,0.760765,0.225513,0.731823,0.257079,0.540537,0.420327,0.637954,0.312758,0.815925,0.124826,0.536648,0.218167,0.923795,0.0382338,0.485049,0.259215,0.629377,0.196387,0.888475,0.109633,0.915598,0.0747664,0.622416,0.283091,0.620657,0.363346,0.615685,0.366297,0.483976,0.323559,0.605216,0.305966,0.585503,0.307956,0.451885,0.343104,0.642529,0.230769,0.940253,0.0459901,0.434984,0.409455,0.694131,0.170344,0.933292,0.0609317,0.790865,0.179585,0.996305,0.00211553,0.489568,0.422044,0.692097,0.193327,0.940909,0.0462595,0.852468,0.0796264,0.853348,0.0876439,0.714933,0.21793,0.962301,0.0300876,0.8046,0.170309,0.82565,0.106848,0.884261,0.0799476,0.991731,0.00826868,0.598097,0.265089,0.610517,0.276605,0.788515,0.148687,0.882665,0.0761959,0.573709,0.329658,0.776338,0.138742,0.849996,0.147058,0.684082,0.281578,0.5143,0.476142,0.846894,0.118039,0.742478,0.257084,0.914183,0.0858174,0.969049,0.0198681,0.998789,0.0012113,0.921916,0.0776383,0.898193,0.100617,0.861808,0.137589,0.691347,0.266029,0.985735,0.014265,0.831705,0.168295,0.975101,0.0248994,0.849436,0.150564,0.535947,0.464053,1.0,0,0.906363,0.0936373,0.98013,0.0198699,0.501325,0.498675,0.507972,0.492028,0.945329,0.0546711,0.988536,0.0114645,0.833378,0.166622,0.919887,0.0789201,0.920416,0.0478239,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.997034,0.00296644,0.985265,0.0147349,0.988625,0.0113754,0.969332,0.0306682,0.977688,0.0223116,0.979045,0.0209553,0.868644,0.131356,0.910601,0.0893993,0.555994,0.444006,0.915716,0.0842843,0.561134,0.41497,0.845225,0.142003,0.804447,0.115836,0.385064,0.367873,0.792467,0.144483,0.864004,0.0964948,0.91015,0.0512828,0.64966,0.35034,0.650596,0.349404,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.940242,0.059758,0.970266,0.0297342,0.874755,0.125245,1.0,0,1.0,0,0.861778,0.104226,0.94812,0.0469913,0.973403,0.0265974,0.966557,0.0334426,0.975249,0.0247513,0.91166,0.0883399,0.56769,0.43231,0.532461,0.467539,0.984137,0.00880667,0.626859,0.223969,0.916236,0.0837643,0.759161,0.20183,0.713118,0.286882,0.713395,0.286605,0.852612,0.147388,0.619404,0.380596,1.0,0,1.0,0,1.0,0,0.967314,0.0326856,0.941416,0.058584,1.0,0,0.713358,0.286642,1.0,0,1.0,0,1.0,0,0.75,0.25,0.75,0.25,0.723849,0.276151,1.0,0,1.0,0,1.0,0,1.0,0,0.865127,0.134873,0.962608,0.037392,1.0,0,0.75,0.25,1.0,0,1.0,0,1.0,0,1.0,0,0.958464,0.0415362,0.806494,0.193506,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.602187,0.397813,0.635281,0.364719,1.0,0,0.638722,0.361278,0.54925,0.428631,0.706313,0.211474,0.468022,0.408639,0.946204,0.053612,0.934464,0.0650765,0.570224,0.226712,0.524781,0.214863,0.497762,0.497025,0.608913,0.38146,0.876243,0.122473,0.608538,0.316279,0.5064,0.404505,0.817196,0.125115,0.503752,0.491002,0.802445,0.176955,0.961275,0.0247458,0.96801,0.0218681,0.692672,0.290571,0.74949,0.218453,0.753556,0.190914,0.963588,0.0218092,0.965744,0.0341399,0.89483,0.10246,0.870531,0.124468,0.600816,0.200812,0.854238,0.127758,0.652304,0.18778,0.687215,0.22855,0.688735,0.20714,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999281,0.000590166,0.99785,0.00192752,0.998972,0.00102827,0.998711,0.00108032,0.998052,0.00176671,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999849,0.000150889,1.0,0,1.0,0,0.998132,0.00150654,0.996774,0.00270707,0.999689,0.000310677,0.999644,0.000356162,0.999259,0.000741188,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999054,0.000946127,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.943305,0.0296909,0.80379,0.135455,0.677732,0.232874,0.897769,0.0639852,1.0,0,1.0,0,1.0,0,0.987346,0.00725768,0.999699,0.000300745,1.0,0,1.0,0,1.0,0,0.709802,0.25842,0.622443,0.338061,0.84905,0.0935743,0.876028,0.0635819,0.487849,0.455829,0.574877,0.343635,0.604522,0.288899,0.760601,0.164137,0.775609,0.192468,0.884636,0.0724184,0.814802,0.155359,0.910924,0.064658,0.501446,0.385328,0.476977,0.401531,0.948666,0.0328298,0.825911,0.150478,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.998527,0.00101203,0.990526,0.00570353,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.996374,0.00264396,0.996003,0.00219725,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.824833,0.137093,0.975199,0.0131873,0.968616,0.0216267,0.54905,0.350545,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.996752,0.00307218,0.969122,0.0278254,0.838592,0.139233,0.556232,0.353879,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999651,0.000348509,0.996815,0.00318546,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.989504,0.0104959,0.993418,0.00658218,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.992955,0.00704538,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999858,0.000142293,0.993656,0.00634368,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.996333,0.00366747,1.0,0,1.0,0,1.0,0,1.0,0,0.999802,0.00019756,0.996398,0.00360222,0.96182,0.0381799,0.966689,0.0332,0.809484,0.183276,0.823661,0.165232,0.959416,0.0402426,0.810798,0.171313,0.956042,0.0433178,0.81151,0.1691,0.963806,0.0354271,0.844754,0.140192,0.970604,0.0287188,0.959231,0.0407691,0.981668,0.0183322,0.838428,0.159277,0.8131,0.18375,0.790795,0.203896,0.519108,0.393618,0.516393,0.429875,0.465403,0.460931,0.461582,0.433277,0.468931,0.432925,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.983718,0.0130763,1.0,0,1.0,0,0.980453,0.0190849,1.0,0,0.98991,0.00989973,0.991299,0.00418706,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.994919,0.00208521,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.999088,0.000912475,0.996609,0.00339143,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.777963,0.203954,0.853284,0.116471,0.670406,0.314426,0.565418,0.419795,0.496037,0.482022,0.488169,0.481771,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.845471,0.136902,0.493825,0.478044,0.502804,0.467808,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.974145,0.0233012,0.95032,0.0484751,0.909009,0.0904864,0.848408,0.149584,0.816472,0.17218,0.843626,0.13807,0.855417,0.126212,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.857296,0.125529,0.758341,0.226617,0.742161,0.251566,0.68518,0.206995,0.748345,0.209869,0.836875,0.161972,0.968256,0.0178937,0.741806,0.253304,0.768564,0.228483,0.525881,0.251769,0.597228,0.213083,0.489685,0.269162,0.498913,0.262922,0.531114,0.2353,0.603723,0.207467,0.562838,0.240797,0.543085,0.250965,0.541741,0.238947,0.502872,0.495833,0.713702,0.286298,0.714352,0.285648,0.516147,0.483641,0.520878,0.474038,0.547944,0.436038,0.653216,0.346784,0.689127,0.310873,0.653521,0.346479,0.662942,0.337058,0.627438,0.372562,0.706687,0.293313,0.504789,0.494828,0.695014,0.304986,0.522613,0.476991,0.531805,0.422084,0.609075,0.390925,0.613772,0.386228,0.560233,0.40522,0.502504,0.456112,0.630682,0.369318,0.489776,0.477573,0.657192,0.342808,0.485362,0.481144,0.67027,0.32973,0.516189,0.44456,0.671893,0.328107,0.690947,0.309053,0.488967,0.469373,0.690716,0.309284,0.486247,0.471523,0.679462,0.320538,0.487428,0.473544,0.769378,0.15964,0.612785,0.270338,0.662277,0.226742,0.770854,0.164353,0.762825,0.156373,0.759405,0.172471,0.572333,0.286516,0.576947,0.290586,0.784623,0.134379,0.791394,0.189252,0.763107,0.156182,0.727935,0.173415,0.784678,0.172892,0.734447,0.18123,0.798619,0.177379,0.76018,0.199827,0.758737,0.227178,0.673819,0.218049,0.611883,0.25898,0.770203,0.215714,0.676882,0.217375,0.774366,0.20045,0.655141,0.231409,0.783943,0.186062,0.633125,0.245704,0.791587,0.169757,0.607608,0.299158,0.623846,0.270527,0.801209,0.172965,0.634393,0.251485,0.806616,0.178591,0.629654,0.251488,0.796455,0.181619,0.777998,0.170274,0.571925,0.428075,0.610733,0.313566,0.61165,0.307268,0.424036,0.334996,0.443383,0.416824,0.3634,0.337775,0.390442,0.333592,0.51614,0.424923,0.606166,0.372218,0.420544,0.375924,0.379461,0.367644,0.602538,0.387187,0.425839,0.368617,0.407919,0.358102,0.395507,0.348563,0.438579,0.356133,0.516239,0.354747,0.37765,0.365621,0.38002,0.350992,0.563735,0.355104,0.51799,0.448915,0.645164,0.213403,0.587416,0.364249,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.503008,0.475884,0.657495,0.292672,0.675934,0.218938,0.662095,0.26672,0.577894,0.422106,0.569622,0.430378,0.578056,0.36454,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,0.868256,0.131744,0.852115,0.147885,0.758865,0.241135,0.804464,0.195536,0.738195,0.261805,0.735647,0.264353,0.902978,0.0970223,0.932591,0.0674092,0.921238,0.0787618,0.862287,0.137713,0.87983,0.12017,0.812925,0.187075,0.683285,0.316715,0.833172,0.166828,0.689982,0.310018,0.845192,0.154808,0.739409,0.260591,0.732065,0.267935,0.999823,0.000177096,1.0,0,0.999311,0.000688916,1.0,0,0.677591,0.322409,0.82552,0.17448,0.99386,0.00613983,0.984639,0.0153611,1.0,0,1.0,0], - - "animation" : { - "name" : "Action", - "fps" : 25, - "length" : 0.0375, - "hierarchy" : [ - { - "parent" : -1, - "keys" : [ - { - "time":0, - "pos" :[0.0,0.0,0.0], - "rot" :[-0.707107,0.0,0.0,0.707107], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[0.0,0.0,0.0], - "rot" :[-0.707107,0.0,0.0,0.707107], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 0, - "keys" : [ - { - "time":0, - "pos" :[19.822,0.0,0.0], - "rot" :[1.78177e-007,-4.56192e-007,0.141703,0.989909], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[19.822,0.0,0.0], - "rot" :[1.78177e-007,-4.56192e-007,0.141703,0.989909], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 0, - "keys" : [ - { - "time":0, - "pos" :[0.0459347,-2.91296,105.605], - "rot" :[-0.707107,1.37679e-007,-0.707107,-1.37679e-007], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[0.0459347,-2.91296,105.605], - "rot" :[-0.707107,1.37679e-007,-0.707107,-1.37679e-007], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 2, - "keys" : [ - { - "time":0, - "pos" :[4.6596,1.29468,-7.05421e-005], - "rot" :[8.24616e-006,0.000172517,0.0138233,0.999904], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[4.6596,1.29468,-7.05421e-005], - "rot" :[8.24616e-006,0.000172517,0.0138233,0.999904], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 3, - "keys" : [ - { - "time":0, - "pos" :[7.39283,-2.38419e-007,0.0], - "rot" :[1.21858e-005,-0.00017166,-0.131632,0.991299], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[7.39283,-2.38419e-007,0.0], - "rot" :[1.21858e-005,-0.00017166,-0.131632,0.991299], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 1, - "keys" : [ - { - "time":0, - "pos" :[2.34335,5.58867,0.00256609], - "rot" :[0.0,0.0,0.267687,0.963506], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[2.34335,5.58867,0.00256609], - "rot" :[0.0,0.0,0.267687,0.963506], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 2, - "keys" : [ - { - "time":0, - "pos" :[0.313583,-6.24358,-8.63527], - "rot" :[-0.000830025,0.0216476,-0.999735,0.00776046], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[0.313583,-6.24358,-8.63527], - "rot" :[-0.000830025,0.0216476,-0.999735,0.00776046], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 2, - "keys" : [ - { - "time":0, - "pos" :[0.306,-6.23611,7.81657], - "rot" :[0.00628785,-0.99998,-3.30154e-006,-0.000574981], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[0.306,-6.23611,7.81657], - "rot" :[0.00628785,-0.99998,-3.30154e-006,-0.000574981], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 2, - "keys" : [ - { - "time":0, - "pos" :[-9.52724,0.104962,11.229], - "rot" :[0.0524161,-0.998291,0.0234999,-0.0107267], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[-9.52724,0.104962,11.229], - "rot" :[0.0524161,-0.998291,0.0234999,-0.0107267], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 2, - "keys" : [ - { - "time":0, - "pos" :[-9.52724,0.104961,-11.229], - "rot" :[0.0543472,-0.998204,-0.023016,0.0102746], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[-9.52724,0.104961,-11.229], - "rot" :[0.0543472,-0.998204,-0.023016,0.0102746], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 1, - "keys" : [ - { - "time":0, - "pos" :[-1.37439,14.1768,4.90802], - "rot" :[0.229391,-0.680605,-0.311582,0.622152], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[-1.37439,14.1768,4.90802], - "rot" :[0.229391,-0.680605,-0.311582,0.622152], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 1, - "keys" : [ - { - "time":0, - "pos" :[-1.3744,14.1768,-4.90802], - "rot" :[-0.229391,0.680605,-0.311582,0.622152], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[-1.3744,14.1768,-4.90802], - "rot" :[-0.229391,0.680605,-0.311582,0.622152], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 5, - "keys" : [ - { - "time":0, - "pos" :[-0.381058,4.67294,0.0828201], - "rot" :[-0.00249447,0.0132717,0.184699,0.982702], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[-0.381058,4.67294,0.0828201], - "rot" :[-0.00249447,0.0132717,0.184699,0.982702], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 5, - "keys" : [ - { - "time":0, - "pos" :[8.33337,0.0,0.0], - "rot" :[0.0,0.0,0.0591305,0.99825], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[8.33337,0.0,0.0], - "rot" :[0.0,0.0,0.0591305,0.99825], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 13, - "keys" : [ - { - "time":0, - "pos" :[8.33337,0.0,0.0], - "rot" :[0.0,0.0,-0.187435,0.982277], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[8.33337,0.0,0.0], - "rot" :[0.0,0.0,-0.187435,0.982277], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 10, - "keys" : [ - { - "time":0, - "pos" :[17.5846,7.62939e-006,-3.05176e-005], - "rot" :[0.221414,0.0571188,0.314062,0.921454], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[17.5846,7.62939e-006,-3.05176e-005], - "rot" :[0.221414,0.0571188,0.314062,0.921454], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 15, - "keys" : [ - { - "time":0, - "pos" :[4.44502,-2.28882e-005,6.10352e-005], - "rot" :[-1.24797e-007,-1.91852e-007,0.0,1.0], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[4.44502,-2.28882e-005,6.10352e-005], - "rot" :[-1.24797e-007,-1.91852e-007,0.0,1.0], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 10, - "keys" : [ - { - "time":0, - "pos" :[14.4096,-1.14441e-005,0.0], - "rot" :[0.0,-1.19209e-007,0.0,1.0], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[14.4096,-1.14441e-005,0.0], - "rot" :[0.0,-1.19209e-007,0.0,1.0], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 15, - "keys" : [ - { - "time":0, - "pos" :[26.4674,1.90735e-006,-1.52588e-005], - "rot" :[0.0300457,0.0469702,0.126593,0.990386], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[26.4674,1.90735e-006,-1.52588e-005], - "rot" :[0.0300457,0.0469702,0.126593,0.990386], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 18, - "keys" : [ - { - "time":0, - "pos" :[15.5949,-3.8147e-006,1.52588e-005], - "rot" :[0.0,0.0,0.0,1.0], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[15.5949,-3.8147e-006,1.52588e-005], - "rot" :[0.0,0.0,0.0,1.0], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 19, - "keys" : [ - { - "time":0, - "pos" :[15.5949,1.52588e-005,4.57764e-005], - "rot" :[-0.703694,-0.0949007,-0.0334085,0.703344], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[15.5949,1.52588e-005,4.57764e-005], - "rot" :[-0.703694,-0.0949007,-0.0334085,0.703344], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 20, - "keys" : [ - { - "time":0, - "pos" :[2.77517,-1.48094,2.54832], - "rot" :[0.58657,-0.343383,0.0823075,0.728869], - "scl" :[1,1,0.999996] - }, - { - "time":0.0375, - "pos" :[2.77517,-1.48094,2.54832], - "rot" :[0.58657,-0.343383,0.0823075,0.728869], - "scl" :[1,1,0.999996] - } - ] - }, - { - "parent" : 7, - "keys" : [ - { - "time":0, - "pos" :[8.54877,8.6105,-0.291167], - "rot" :[0.0,-1.0,0.0,8.53102e-005], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[8.54877,8.6105,-0.291167], - "rot" :[0.0,-1.0,0.0,8.53102e-005], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 6, - "keys" : [ - { - "time":0, - "pos" :[8.51241,-8.64627,-0.533772], - "rot" :[-0.000162698,0.0216536,-0.999766,0.00032195], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[8.51241,-8.64627,-0.533772], - "rot" :[-0.000162698,0.0216536,-0.999766,0.00032195], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 8, - "keys" : [ - { - "time":0, - "pos" :[43.929,-9.53674e-007,1.90735e-006], - "rot" :[-0.0222438,-0.00113403,-0.0240528,0.999463], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[43.929,-9.53674e-007,1.90735e-006], - "rot" :[-0.0222438,-0.00113403,-0.0240528,0.999463], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 24, - "keys" : [ - { - "time":0, - "pos" :[46.352,9.53674e-007,-9.53674e-007], - "rot" :[-0.043267,0.0424371,0.648201,0.759054], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[46.352,9.53674e-007,-9.53674e-007], - "rot" :[-0.043267,0.0424371,0.648201,0.759054], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 25, - "keys" : [ - { - "time":0, - "pos" :[15.6495,0.000581264,0.267458], - "rot" :[-0.0108012,0.0481196,0.154787,0.986716], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[15.6495,0.000581264,0.267458], - "rot" :[-0.0108012,0.0481196,0.154787,0.986716], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 21, - "keys" : [ - { - "time":0, - "pos" :[4.1472,0.0,1.52588e-005], - "rot" :[0.0480841,0.013738,-0.0324731,0.998221], - "scl" :[1,1,0.999996] - }, - { - "time":0.0375, - "pos" :[4.1472,0.0,1.52588e-005], - "rot" :[0.0480841,0.013738,-0.0324731,0.998221], - "scl" :[1,1,0.999996] - } - ] - }, - { - "parent" : 20, - "keys" : [ - { - "time":0, - "pos" :[8.8918,-0.155975,1.99898], - "rot" :[0.0581776,-0.0874725,-0.0218102,0.994227], - "scl" :[1,0.999998,1] - }, - { - "time":0.0375, - "pos" :[8.8918,-0.155975,1.99898], - "rot" :[0.0581776,-0.0874725,-0.0218102,0.994227], - "scl" :[1,0.999998,1] - } - ] - }, - { - "parent" : 28, - "keys" : [ - { - "time":0, - "pos" :[4.13075,-3.05176e-005,0.0], - "rot" :[2.50737e-005,0.00138448,-0.0475424,0.998868], - "scl" :[1,0.999997,1] - }, - { - "time":0.0375, - "pos" :[4.13075,-3.05176e-005,0.0], - "rot" :[2.50737e-005,0.00138448,-0.0475424,0.998868], - "scl" :[1,0.999997,1] - } - ] - }, - { - "parent" : 20, - "keys" : [ - { - "time":0, - "pos" :[9.01172,-0.132706,-0.464325], - "rot" :[0.0245784,-0.00901193,-0.0191646,0.999474], - "scl" :[1,0.999998,1] - }, - { - "time":0.0375, - "pos" :[9.01172,-0.132706,-0.464325], - "rot" :[0.0245784,-0.00901193,-0.0191646,0.999474], - "scl" :[1,0.999998,1] - } - ] - }, - { - "parent" : 29, - "keys" : [ - { - "time":0, - "pos" :[3.54208,0.0,0.0], - "rot" :[9.11045e-005,-0.00453331,0.0189656,0.99981], - "scl" :[1,0.999998,1] - }, - { - "time":0.0375, - "pos" :[3.54208,0.0,0.0], - "rot" :[9.11045e-005,-0.00453331,0.0189656,0.99981], - "scl" :[1,0.999998,1] - } - ] - }, - { - "parent" : 20, - "keys" : [ - { - "time":0, - "pos" :[8.86377,-0.845383,-2.73079], - "rot" :[-0.141014,0.104332,0.0153152,0.984376], - "scl" :[1,1,0.999999] - }, - { - "time":0.0375, - "pos" :[8.86377,-0.845383,-2.73079], - "rot" :[-0.141014,0.104332,0.0153152,0.984376], - "scl" :[1,1,0.999999] - } - ] - }, - { - "parent" : 32, - "keys" : [ - { - "time":0, - "pos" :[4.55477,-3.05176e-005,-8.58307e-006], - "rot" :[0.000371874,0.0172779,-0.0542967,0.998375], - "scl" :[1,0.999999,0.999999] - }, - { - "time":0.0375, - "pos" :[4.55477,-3.05176e-005,-8.58307e-006], - "rot" :[0.000371874,0.0172779,-0.0542967,0.998375], - "scl" :[1,0.999999,0.999999] - } - ] - }, - { - "parent" : 33, - "keys" : [ - { - "time":0, - "pos" :[2.80811,-1.52588e-005,-1.90735e-006], - "rot" :[-2.91244e-005,-0.0157905,0.0163567,0.999741], - "scl" :[1,0.999999,0.999999] - }, - { - "time":0.0375, - "pos" :[2.80811,-1.52588e-005,-1.90735e-006], - "rot" :[-2.91244e-005,-0.0157905,0.0163567,0.999741], - "scl" :[1,0.999999,0.999999] - } - ] - }, - { - "parent" : 30, - "keys" : [ - { - "time":0, - "pos" :[4.63581,-1.52588e-005,7.62939e-006], - "rot" :[0.000108844,0.00616111,-0.0414455,0.999122], - "scl" :[1,0.999997,1] - }, - { - "time":0.0375, - "pos" :[4.63581,-1.52588e-005,7.62939e-006], - "rot" :[0.000108844,0.00616111,-0.0414455,0.999122], - "scl" :[1,0.999997,1] - } - ] - }, - { - "parent" : 35, - "keys" : [ - { - "time":0, - "pos" :[3.27839,-1.52588e-005,-3.8147e-006], - "rot" :[2.59988e-005,-0.00794331,0.0145892,0.999862], - "scl" :[1,0.999998,1] - }, - { - "time":0.0375, - "pos" :[3.27839,-1.52588e-005,-3.8147e-006], - "rot" :[2.59988e-005,-0.00794331,0.0145892,0.999862], - "scl" :[1,0.999998,1] - } - ] - }, - { - "parent" : 20, - "keys" : [ - { - "time":0, - "pos" :[8.3488,-1.58212,-4.88726], - "rot" :[-0.18796,0.224799,0.0139755,0.956003], - "scl" :[1,1,0.999998] - }, - { - "time":0.0375, - "pos" :[8.3488,-1.58212,-4.88726], - "rot" :[-0.18796,0.224799,0.0139755,0.956003], - "scl" :[1,1,0.999998] - } - ] - }, - { - "parent" : 37, - "keys" : [ - { - "time":0, - "pos" :[2.72589,-1.52588e-005,0.0], - "rot" :[0.000216857,0.00324481,-0.00769619,0.999965], - "scl" :[1,1,0.999999] - }, - { - "time":0.0375, - "pos" :[2.72589,-1.52588e-005,0.0], - "rot" :[0.000216857,0.00324481,-0.00769619,0.999965], - "scl" :[1,1,0.999999] - } - ] - }, - { - "parent" : 38, - "keys" : [ - { - "time":0, - "pos" :[2.56631,-3.05176e-005,0.0], - "rot" :[-0.000204113,-0.00700637,0.0180212,0.999813], - "scl" :[1,1,0.999998] - }, - { - "time":0.0375, - "pos" :[2.56631,-3.05176e-005,0.0], - "rot" :[-0.000204113,-0.00700637,0.0180212,0.999813], - "scl" :[1,1,0.999998] - } - ] - }, - { - "parent" : 27, - "keys" : [ - { - "time":0, - "pos" :[3.13827,-3.8147e-006,3.05176e-005], - "rot" :[-0.00640149,-0.0179124,-0.087416,0.99599], - "scl" :[1,1,0.999996] - }, - { - "time":0.0375, - "pos" :[3.13827,-3.8147e-006,3.05176e-005], - "rot" :[-0.00640149,-0.0179124,-0.087416,0.99599], - "scl" :[1,1,0.999996] - } - ] - }, - { - "parent" : 11, - "keys" : [ - { - "time":0, - "pos" :[17.5846,-7.62939e-006,1.52588e-005], - "rot" :[-0.227878,-0.0430289,0.311618,0.921474], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[17.5846,-7.62939e-006,1.52588e-005], - "rot" :[-0.227878,-0.0430289,0.311618,0.921474], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 41, - "keys" : [ - { - "time":0, - "pos" :[4.445,5.72205e-006,-0.0787659], - "rot" :[0.0,-1.30385e-007,0.0,1.0], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[4.445,5.72205e-006,-0.0787659], - "rot" :[0.0,-1.30385e-007,0.0,1.0], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 11, - "keys" : [ - { - "time":0, - "pos" :[13.0973,3.8147e-006,3.05176e-005], - "rot" :[0.707107,0.0,1.27758e-007,0.707107], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[13.0973,3.8147e-006,3.05176e-005], - "rot" :[0.707107,0.0,1.27758e-007,0.707107], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 41, - "keys" : [ - { - "time":0, - "pos" :[26.4674,5.72205e-006,0.0], - "rot" :[-0.0300456,-0.04697,0.126593,0.990386], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[26.4674,5.72205e-006,0.0], - "rot" :[-0.0300456,-0.04697,0.126593,0.990386], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 44, - "keys" : [ - { - "time":0, - "pos" :[15.5949,-3.8147e-006,3.05176e-005], - "rot" :[0.0,0.0,0.0,1.0], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[15.5949,-3.8147e-006,3.05176e-005], - "rot" :[0.0,0.0,0.0,1.0], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 45, - "keys" : [ - { - "time":0, - "pos" :[15.5949,3.8147e-005,-3.05176e-005], - "rot" :[0.703694,0.0949001,-0.0334098,0.703344], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[15.5949,3.8147e-005,-3.05176e-005], - "rot" :[0.703694,0.0949001,-0.0334098,0.703344], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 46, - "keys" : [ - { - "time":0, - "pos" :[2.77521,-1.48094,-2.54832], - "rot" :[-0.586569,0.343383,0.0823073,0.728869], - "scl" :[1.00001,0.999998,0.999997] - }, - { - "time":0.0375, - "pos" :[2.77521,-1.48094,-2.54832], - "rot" :[-0.586569,0.343383,0.0823073,0.728869], - "scl" :[1.00001,0.999998,0.999997] - } - ] - }, - { - "parent" : 9, - "keys" : [ - { - "time":0, - "pos" :[43.927,0.0,0.0], - "rot" :[0.025587,0.000874763,-0.0203237,0.999466], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[43.927,0.0,0.0], - "rot" :[0.025587,0.000874763,-0.0203237,0.999466], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 48, - "keys" : [ - { - "time":0, - "pos" :[46.3448,-9.53674e-007,-9.53674e-007], - "rot" :[0.040523,-0.0395163,0.647071,0.760326], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[46.3448,-9.53674e-007,-9.53674e-007], - "rot" :[0.040523,-0.0395163,0.647071,0.760326], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 49, - "keys" : [ - { - "time":0, - "pos" :[15.6495,0.00058198,-0.267461], - "rot" :[0.0107804,-0.0482116,0.154643,0.986734], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[15.6495,0.00058198,-0.267461], - "rot" :[0.0107804,-0.0482116,0.154643,0.986734], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 47, - "keys" : [ - { - "time":0, - "pos" :[4.14719,-2.28882e-005,-3.05176e-005], - "rot" :[-0.0480841,-0.013738,-0.0324731,0.998221], - "scl" :[1.00001,0.999998,0.999997] - }, - { - "time":0.0375, - "pos" :[4.14719,-2.28882e-005,-3.05176e-005], - "rot" :[-0.0480841,-0.013738,-0.0324731,0.998221], - "scl" :[1.00001,0.999998,0.999997] - } - ] - }, - { - "parent" : 46, - "keys" : [ - { - "time":0, - "pos" :[8.89183,-0.15593,-1.999], - "rot" :[-0.0581776,0.0874725,-0.0218104,0.994227], - "scl" :[1,0.999999,0.999998] - }, - { - "time":0.0375, - "pos" :[8.89183,-0.15593,-1.999], - "rot" :[-0.0581776,0.0874725,-0.0218104,0.994227], - "scl" :[1,0.999999,0.999998] - } - ] - }, - { - "parent" : 52, - "keys" : [ - { - "time":0, - "pos" :[4.13074,-3.05176e-005,-1.14441e-005], - "rot" :[-2.51402e-005,-0.00138462,-0.0475424,0.998868], - "scl" :[1,0.999998,0.999998] - }, - { - "time":0.0375, - "pos" :[4.13074,-3.05176e-005,-1.14441e-005], - "rot" :[-2.51402e-005,-0.00138462,-0.0475424,0.998868], - "scl" :[1,0.999998,0.999998] - } - ] - }, - { - "parent" : 46, - "keys" : [ - { - "time":0, - "pos" :[9.01173,-0.13266,0.464291], - "rot" :[-0.0245784,0.00901196,-0.0191646,0.999474], - "scl" :[1,0.999998,1] - }, - { - "time":0.0375, - "pos" :[9.01173,-0.13266,0.464291], - "rot" :[-0.0245784,0.00901196,-0.0191646,0.999474], - "scl" :[1,0.999998,1] - } - ] - }, - { - "parent" : 53, - "keys" : [ - { - "time":0, - "pos" :[3.54207,-1.52588e-005,-3.8147e-006], - "rot" :[-9.10782e-005,0.00453338,0.0189654,0.99981], - "scl" :[1,0.999999,0.999998] - }, - { - "time":0.0375, - "pos" :[3.54207,-1.52588e-005,-3.8147e-006], - "rot" :[-9.10782e-005,0.00453338,0.0189654,0.99981], - "scl" :[1,0.999999,0.999998] - } - ] - }, - { - "parent" : 46, - "keys" : [ - { - "time":0, - "pos" :[8.86379,-0.845367,2.73076], - "rot" :[0.141014,-0.104332,0.0153153,0.984376], - "scl" :[1,1,1] - }, - { - "time":0.0375, - "pos" :[8.86379,-0.845367,2.73076], - "rot" :[0.141014,-0.104332,0.0153153,0.984376], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 56, - "keys" : [ - { - "time":0, - "pos" :[4.55478,0.0,-1.14441e-005], - "rot" :[-0.000371861,-0.0172779,-0.0542967,0.998375], - "scl" :[1,0.999999,1] - }, - { - "time":0.0375, - "pos" :[4.55478,0.0,-1.14441e-005], - "rot" :[-0.000371861,-0.0172779,-0.0542967,0.998375], - "scl" :[1,0.999999,1] - } - ] - }, - { - "parent" : 57, - "keys" : [ - { - "time":0, - "pos" :[2.80812,-1.52588e-005,-5.72205e-006], - "rot" :[2.90945e-005,0.0157905,0.0163566,0.999741], - "scl" :[1,0.999999,1] - }, - { - "time":0.0375, - "pos" :[2.80812,-1.52588e-005,-5.72205e-006], - "rot" :[2.90945e-005,0.0157905,0.0163566,0.999741], - "scl" :[1,0.999999,1] - } - ] - }, - { - "parent" : 54, - "keys" : [ - { - "time":0, - "pos" :[4.63582,0.0,-7.62939e-006], - "rot" :[-0.000108777,-0.00616124,-0.0414455,0.999122], - "scl" :[1,0.999998,1] - }, - { - "time":0.0375, - "pos" :[4.63582,0.0,-7.62939e-006], - "rot" :[-0.000108777,-0.00616124,-0.0414455,0.999122], - "scl" :[1,0.999998,1] - } - ] - }, - { - "parent" : 59, - "keys" : [ - { - "time":0, - "pos" :[3.27838,-1.52588e-005,-1.14441e-005], - "rot" :[-2.60694e-005,0.00794321,0.0145894,0.999862], - "scl" :[1,0.999998,1] - }, - { - "time":0.0375, - "pos" :[3.27838,-1.52588e-005,-1.14441e-005], - "rot" :[-2.60694e-005,0.00794321,0.0145894,0.999862], - "scl" :[1,0.999998,1] - } - ] - }, - { - "parent" : 46, - "keys" : [ - { - "time":0, - "pos" :[8.34883,-1.58214,4.88723], - "rot" :[0.18796,-0.224799,0.0139755,0.956003], - "scl" :[0.999999,1,1] - }, - { - "time":0.0375, - "pos" :[8.34883,-1.58214,4.88723], - "rot" :[0.18796,-0.224799,0.0139755,0.956003], - "scl" :[0.999999,1,1] - } - ] - }, - { - "parent" : 61, - "keys" : [ - { - "time":0, - "pos" :[2.72591,-1.52588e-005,3.8147e-006], - "rot" :[-0.000216663,-0.00324474,-0.00769618,0.999965], - "scl" :[0.999999,1,1] - }, - { - "time":0.0375, - "pos" :[2.72591,-1.52588e-005,3.8147e-006], - "rot" :[-0.000216663,-0.00324474,-0.00769618,0.999965], - "scl" :[0.999999,1,1] - } - ] - }, - { - "parent" : 62, - "keys" : [ - { - "time":0, - "pos" :[2.56631,0.0,-3.8147e-006], - "rot" :[0.000203987,0.0070065,0.0180212,0.999813], - "scl" :[0.999999,1,1] - }, - { - "time":0.0375, - "pos" :[2.56631,0.0,-3.8147e-006], - "rot" :[0.000203987,0.0070065,0.0180212,0.999813], - "scl" :[0.999999,1,1] - } - ] - }, - { - "parent" : 51, - "keys" : [ - { - "time":0, - "pos" :[3.13826,1.90735e-006,-3.05176e-005], - "rot" :[0.00640139,0.0179121,-0.087416,0.99599], - "scl" :[1.00001,0.999998,0.999997] - }, - { - "time":0.0375, - "pos" :[3.13826,1.90735e-006,-3.05176e-005], - "rot" :[0.00640139,0.0179121,-0.087416,0.99599], - "scl" :[1.00001,0.999998,0.999997] - } - ] - } - ] - } -} diff --git a/examples/models/skinned/UCS_config.json b/examples/models/skinned/UCS_config.json deleted file mode 100644 index 6ba7905f917672..00000000000000 --- a/examples/models/skinned/UCS_config.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "baseUrl": "models/skinned/UCS/", - "character": "umich_ucs.js", - "skins": ["Asian_Male.jpg", "Black_Female.jpg", "Caucasion_Female.jpg", "Caucasion_Male.jpg", "Highlighted_Muscles.jpg", "Indian_Male.jpg"], - "morphs": ["Obesity", "Femininity", "Musculature", "Age", "Skinniness"], - "x": 0, - "y": -500, - "z": -300, - "s": 30 -} diff --git a/examples/models/skinned/knight.js b/examples/models/skinned/knight.js deleted file mode 100644 index de6a4e8842638a..00000000000000 --- a/examples/models/skinned/knight.js +++ /dev/null @@ -1,6136 +0,0 @@ -{ - - "metadata" : - { - "formatVersion" : 3, - "generatedBy" : "Blender 2.63 Exporter", - "vertices" : 16980, - "faces" : 16468, - "normals" : 16420, - "colors" : 0, - "uvs" : 1524, - "materials" : 1, - "morphTargets" : 4, - "bones" : 80 - }, - - "scale" : 1.000000, - - "materials": [ { - "DbgColor" : 15658734, - "DbgIndex" : 0, - "DbgName" : "WHITE", - "blending" : "NormalBlending", - "colorDiffuse" : [0.6400000190734865, 0.6400000190734865, 0.6400000190734865], - "colorSpecular" : [0.1, 0.1, 0.1], - "depthTest" : true, - "depthWrite" : true, - "shading" : "Phong", - "specularCoef" : 150, - "opacity" : 1.0, - "transparent" : false, - "vertexColors" : false - }], - - "vertices": [5.58012,8.89256,-0.47301,5.57979,9.06534,-0.490937,5.57983,9.12742,-0.46554,5.57984,9.18197,-0.397213,5.57949,9.22038,-0.304712,5.57887,9.22515,-0.188612,5.57874,9.11086,0.0581205,5.57926,8.97509,0.0700323,5.57995,8.84946,-0.0363218,5.58076,8.77634,-0.18167,5.58135,8.81545,-0.43113,5.58183,8.76374,-0.338404,5.58379,8.98717,-0.499288,5.58124,9.21781,-0.0782947,5.65799,8.99372,-0.499144,5.66043,9.18671,-0.0662581,6.31627,8.86666,0.375431,6.27009,8.78069,0.369749,6.29209,8.88516,0.358448,6.30867,8.81863,0.372625,6.24232,8.78848,0.35739,6.20552,8.93813,0.558678,6.15728,8.85334,0.561713,6.17718,8.95595,0.517656,6.12286,8.86859,0.522483,6.17244,8.90226,0.569123,6.23387,8.97638,0.502002,6.28062,8.97605,0.448436,6.30109,8.92418,0.385186,6.27537,8.8332,0.338711,6.22274,8.75358,0.376716,6.17147,8.74127,0.439205,6.14036,8.92078,0.528682,6.13675,8.81129,0.514987,6.30343,8.71619,0.662258,6.32831,8.68177,0.615231,6.36816,8.7072,0.566649,6.42938,8.76786,0.541738,6.44764,8.85511,0.562607,6.44754,8.90592,0.607801,6.40275,8.90854,0.642789,6.48557,8.85195,0.786139,6.56092,8.84851,0.728565,6.59653,8.78326,0.652722,6.57694,8.69148,0.619722,6.51053,8.6259,0.643673,6.43015,8.62306,0.714874,6.41688,8.78654,0.802317,6.39469,8.69874,0.788091,6.40587,8.8934,0.710933,6.47616,8.88999,0.645445,6.49348,8.83286,0.590535,6.46957,8.74873,0.565916,6.41468,8.68328,0.590113,6.35731,8.6694,0.650672,6.34689,8.82415,0.729643,6.31968,8.73641,0.715443,6.248,8.76261,0.646943,6.27662,8.85415,0.660477,6.29209,8.69059,0.575551,6.35659,8.69691,0.521267,6.42029,8.76298,0.494468,6.44245,8.85937,0.518982,6.41278,8.92164,0.570127,6.33497,8.92807,0.644168,6.46226,8.84807,0.586785,6.44419,8.76375,0.565965,6.38373,8.69715,0.593593,6.43593,8.76379,0.553027,6.37992,8.70873,0.580795,6.45204,8.84287,0.577999,6.18443,8.79035,0.563498,6.1964,8.89258,0.600093,6.22505,8.71778,0.488625,6.26997,8.73133,0.420759,6.3424,8.80291,0.408935,6.3508,8.89154,0.428225,6.33499,8.9519,0.492173,6.26672,8.95473,0.562339,6.28745,8.85188,0.690412,6.33547,8.89716,0.66658,6.27603,8.78499,0.669264,6.37686,8.89934,0.663723,6.30034,8.75675,0.669459,6.37216,8.8793,0.698199,6.32137,8.83722,0.718447,6.31202,8.77157,0.70014,6.3416,8.88135,0.691885,6.35462,8.87334,0.699403,6.30138,8.78776,0.684174,6.30715,8.78926,0.699743,6.32612,8.83305,0.703634,6.28481,8.79764,0.680693,6.32983,8.88483,0.678654,6.30321,8.84261,0.683364,6.30718,8.84271,0.705099,5.89059,8.93225,0.258988,6.3021,8.90113,0.225419,6.27973,8.96582,0.26786,5.91813,9.03856,0.270519,6.0249,9.05491,0.274883,6.21932,9.03027,0.267854,6.12089,9.05673,0.280311,5.89072,8.79661,0.197299,6.29875,8.84062,0.167394,5.97409,8.76088,0.177057,6.08543,8.77489,0.154466,6.18587,8.79994,0.153445,6.04271,8.89365,0.436758,6.03227,8.7991,0.380597,6.07773,8.96511,0.453802,6.11468,8.99783,0.442941,6.25881,8.94642,0.322981,6.22476,8.99314,0.377259,6.23288,8.84258,0.278447,6.27198,8.89537,0.298958,6.17542,9.00065,0.412544,6.06591,8.74895,0.319883,6.18818,8.79545,0.270882,6.13636,8.75047,0.273416,6.04856,8.7859,-0.131984,6.04892,8.77613,0.0322466,6.04358,8.76489,-0.0502018,6.19385,8.78295,0.0415062,5.89185,8.75302,-0.151009,5.89328,8.74627,0.0214233,5.87255,8.73938,-0.0653098,6.1931,8.80831,-0.0397358,6.17826,8.81557,-0.12146,5.96314,8.81839,-0.201593,6.15312,8.82718,-0.180653,6.06874,8.81328,-0.192491,6.09818,9.2012,-0.0854787,6.102,9.19976,-0.168481,6.06339,9.19627,-0.269989,6.03331,9.17737,-0.367568,6.08018,9.17751,0.00409766,6.06583,9.14528,0.106176,6.00175,9.14381,-0.458081,5.97228,9.10327,-0.539013,5.97885,8.80604,-0.509287,5.95855,8.85561,-0.581041,5.95459,8.97064,-0.607211,5.95866,9.06995,-0.578147,5.99206,9.12511,-0.500575,6.07347,9.10814,0.160347,6.074,9.16417,0.0554987,6.01569,9.16255,-0.412919,6.05404,9.19225,-0.322691,6.08285,9.19618,-0.214603,6.09844,9.20331,-0.126625,6.09363,9.19167,-0.0444263,6.06848,8.85539,-0.241599,6.06515,8.81693,-0.322016,6.01075,8.7868,-0.431159,5.79561,9.14829,0.0164901,5.7957,9.194,-0.116816,5.78764,9.18242,-0.0573881,5.85359,9.15634,0.0370836,5.84192,9.19379,-0.0935425,6.38458,8.81991,-0.466921,6.33493,8.81803,-0.463687,6.50385,8.82739,-0.25513,6.41103,8.8406,-0.25227,6.52154,8.82392,-0.0658188,6.46466,8.85619,-0.0869274,6.36443,8.81831,-0.510274,6.28383,8.81618,-0.495272,6.40977,8.8174,-0.432826,6.29383,8.82705,-0.415568,6.48477,8.82565,-0.296597,6.34329,8.82864,-0.276254,6.50856,8.82428,-0.226445,6.37161,8.83835,-0.212967,6.51956,8.81021,-0.00405117,6.43219,8.83374,-0.0384029,6.518,8.80213,-0.108916,6.43006,8.828,-0.13259,6.22815,8.84918,-0.453469,6.29063,8.84909,-0.335376,6.31624,8.82054,-0.34229,6.3193,8.85726,-0.240596,6.36414,8.85218,-0.178294,6.39503,8.84059,-0.173056,6.38672,8.85294,-0.0920703,6.32453,9.15871,-0.0420658,6.41578,9.1435,-0.0430815,6.32792,9.18807,-0.133045,6.41198,9.17979,-0.137786,6.31075,9.1683,-0.220974,6.40169,9.14924,-0.227028,6.28314,9.18674,-0.344259,6.38081,9.17639,-0.351198,6.23888,9.15238,-0.433263,6.33236,9.14608,-0.444205,6.29227,9.15629,0.099451,6.4017,9.15692,0.106755,6.34106,8.95629,0.219245,6.39965,8.95242,0.217866,6.31347,9.04786,0.197632,6.39139,9.04305,0.194881,6.3666,8.8456,0.04723,6.42638,8.84183,0.0655556,6.3451,8.87762,0.139048,6.413,8.87564,0.154894,6.18396,9.1218,-0.531998,6.26466,9.12543,-0.543392,6.14432,9.07395,-0.608842,6.21842,9.07436,-0.621766,6.12791,8.95907,-0.647511,6.19712,8.95263,-0.662688,6.14648,8.85281,-0.614299,6.21742,8.84702,-0.628914,6.18363,8.81538,-0.543788,6.24941,8.80757,-0.547403,6.16002,9.09961,-0.572795,6.23543,9.09868,-0.589468,6.21136,9.13818,-0.479012,6.29113,9.1399,-0.493672,6.2928,9.10734,0.15872,6.3997,9.10591,0.154256,6.3095,9.15268,0.0271218,6.41005,9.14005,0.0353636,6.25653,9.16568,-0.393035,6.35741,9.16166,-0.402826,6.29923,9.17436,-0.269258,6.39081,9.15817,-0.273045,6.32205,9.17692,-0.176667,6.40787,9.1637,-0.184169,6.32992,9.17647,-0.087707,6.41284,9.16698,-0.0950447,6.5753,9.15759,-0.119801,6.56594,9.14773,-0.18449,6.23536,9.18242,-0.0870571,6.2296,9.19063,-0.17032,5.9606,9.19946,-0.0820734,5.99693,9.20389,-0.166145,6.50509,9.1532,-0.0993213,6.51424,9.1516,-0.190992,6.56974,9.16165,-0.155475,6.53271,9.14245,-0.419036,6.55416,9.13534,-0.306907,6.19238,9.18185,-0.265325,6.1439,9.17791,-0.380612,5.95537,9.20103,-0.269504,5.93507,9.18948,-0.346231,6.50786,9.13859,-0.28524,6.46463,9.15401,-0.41458,6.56607,9.14924,-0.374932,5.96668,9.174,0.00029377,6.57155,9.09396,0.158523,6.57139,9.12365,0.0534876,6.20381,9.15999,0.00785887,6.18088,9.13351,0.139238,5.95678,9.15122,0.0672859,6.51434,9.13172,0.0353894,6.501,9.06699,0.161214,6.5852,9.11427,0.104555,6.37003,9.10702,-0.612219,6.41871,9.12683,-0.537028,6.10626,9.14032,-0.467825,6.06692,9.09944,-0.554977,5.90256,9.14662,-0.455376,5.87519,9.11299,-0.521895,6.38129,9.12867,-0.512335,6.30615,9.09553,-0.607001,6.41183,9.11693,-0.576703,5.70453,8.77755,-0.270471,5.6946,8.79901,-0.127961,5.76198,8.7617,-0.272573,5.73791,8.78693,-0.106468,5.69771,8.78147,-0.199921,5.82832,8.76072,-0.287901,5.7903,8.75099,-0.0710156,5.73733,8.82022,-0.451534,5.74605,9.1735,-0.0604976,5.75378,9.09937,0.0550136,5.73619,8.96837,0.064211,5.73328,8.90578,-0.49582,5.73048,9.00664,-0.510541,5.74486,8.7763,-0.363744,5.75941,8.77823,-0.19633,5.72396,8.84422,-0.0170677,5.76147,9.2061,-0.1681,5.72999,9.0834,-0.497354,5.75506,9.21465,-0.289203,5.73785,9.14154,-0.459136,5.74386,9.18766,-0.386816,6.08209,8.83472,-0.524408,6.05364,8.85655,-0.599104,6.04511,8.96496,-0.625226,6.05225,9.06554,-0.594583,6.08626,9.12292,-0.513861,6.31577,8.88548,0.161645,6.30412,8.82818,0.0338926,6.18334,9.07236,0.203259,6.29855,8.963,0.235825,6.18423,9.15194,0.073589,6.12621,9.15753,-0.423661,6.16636,9.19217,-0.329686,6.21566,9.18115,-0.212798,6.23401,9.19641,-0.12845,6.22512,9.1688,-0.0458232,6.30588,8.85752,-0.0730598,6.26338,8.8543,-0.153386,6.20874,8.8573,-0.226064,6.19843,8.82342,-0.327937,6.131,8.79628,-0.44292,5.96981,9.2019,-0.131031,5.93262,8.79469,-0.316082,5.97333,9.19521,-0.314102,5.99189,9.16092,0.0377313,5.94662,9.12129,0.129623,5.86343,9.07607,-0.557718,5.86133,8.97975,-0.583961,5.86203,8.85161,-0.561491,5.87495,8.791,-0.495112,5.9191,9.12817,-0.491675,5.96243,9.19278,-0.0415124,5.96427,9.20225,-0.204925,5.9544,8.83007,-0.234021,5.90973,9.17255,-0.40223,5.89196,8.76891,-0.421779,6.59076,8.81431,-0.156141,6.64937,8.84076,-0.158743,6.53134,8.82673,-0.381509,6.59199,8.85756,-0.37597,6.59966,8.82716,0.109235,6.64856,8.82331,0.0867191,6.33914,8.86113,-0.651946,6.39436,8.86784,-0.6499,6.36648,8.82328,-0.589503,6.42311,8.84726,-0.596841,6.59191,8.82133,-0.0836785,6.65575,8.85763,-0.0897303,6.6006,8.84715,-0.0436867,6.65042,8.85609,-0.0464401,6.59043,8.81471,0.0203602,6.65389,8.84064,0.0173764,6.58519,8.83969,-0.229741,6.64948,8.87498,-0.230561,6.55995,8.84613,-0.300755,6.61876,8.87286,-0.305636,6.57751,8.85502,-0.260405,6.63457,8.88331,-0.26764,6.50121,8.83126,-0.440133,6.57065,8.87586,-0.451241,6.4216,8.81714,-0.520615,6.4918,8.85225,-0.535255,6.46643,8.82481,-0.476235,6.53997,8.8719,-0.490515,6.50843,9.16308,-0.143188,6.51566,8.81443,-0.173204,6.44324,8.80617,-0.366737,6.48091,9.16746,-0.358935,6.5065,9.13878,0.108062,6.48566,9.03755,0.20189,6.48619,8.9649,0.21625,6.50999,8.87238,0.17066,6.51336,8.82628,0.0864485,6.28839,9.07207,-0.63554,6.25815,8.95144,-0.676418,6.28413,8.84419,-0.641676,6.32749,8.81539,-0.570869,6.34323,9.12434,-0.55455,6.53033,9.12477,-0.0436474,6.52603,9.12644,-0.240445,6.44818,9.1339,-0.463507,6.61491,9.00758,-0.509292,6.61883,8.98857,-0.507461,6.59233,8.91914,-0.497036,6.58931,9.05587,-0.509106,6.60807,9.02151,-0.509477,6.69219,9.02211,-0.287135,6.69685,9.00426,-0.285605,6.68443,8.92731,-0.274019,6.68041,9.08126,-0.285904,6.68609,9.03535,-0.28603,6.71844,9.00968,-0.0433992,6.71662,8.9904,-0.0418454,6.69752,8.90841,-0.0436209,6.72015,9.03027,-0.0446858,6.70531,9.08794,-0.0481734,6.71794,9.00707,-0.0563274,6.71583,9.00451,-0.0305125,6.68339,9.02501,-0.288084,6.70098,9.01592,-0.277661,6.59646,9.00109,-0.517002,6.63359,8.9948,-0.495574,6.58894,9.02124,-0.516741,6.63125,9.01173,-0.497273,6.67807,9.03783,-0.28866,6.69611,9.03341,-0.278083,6.7038,8.99658,-0.275947,6.7134,9.03351,-0.0596774,6.71269,8.9856,-0.0299887,6.71357,9.02757,-0.0318105,6.47112,9.10081,-0.595068,6.53632,9.07378,-0.529707,6.5984,8.97788,-0.516331,6.55293,8.89139,-0.524276,6.474,8.86996,-0.596531,6.42941,8.88556,-0.651155,6.39643,8.93071,-0.675108,6.41841,9.03796,-0.664108,6.93101,8.95299,-0.653789,6.69512,9.00434,-0.577603,6.93825,8.91401,-0.625459,6.69704,8.9651,-0.550838,6.92534,8.87376,-0.648649,6.68362,8.91709,-0.57623,6.90667,8.83984,-0.710875,6.65988,8.86354,-0.637835,6.89029,8.86502,-0.777629,6.64584,8.88386,-0.702405,6.88767,8.90246,-0.809211,6.64419,8.92772,-0.736414,6.89742,8.94195,-0.785244,6.64782,8.98505,-0.725033,7.01247,8.95709,-0.810406,6.99842,8.89493,-0.829209,7.00363,8.83671,-0.801382,7.02122,8.81601,-0.742759,7.03656,8.84444,-0.686802,7.04471,8.90568,-0.667864,7.02713,8.98629,-0.75347,7.04374,8.96424,-0.698565,6.73944,9.02877,-0.594465,6.72066,9.04993,-0.662629,6.7414,8.95269,-0.558114,6.72532,8.87951,-0.579609,6.70182,8.83617,-0.643044,6.68555,8.8578,-0.713319,6.68442,8.92553,-0.749195,6.69935,9.02075,-0.728621,6.64981,9.05052,-0.57487,6.63355,9.0684,-0.646077,6.65278,8.98144,-0.533824,6.63979,8.89963,-0.559775,6.61984,8.8497,-0.623409,6.60298,8.86945,-0.690697,6.59864,8.93641,-0.72676,6.61288,9.03434,-0.705346,6.94209,8.97412,-0.797966,6.92869,8.9011,-0.816705,6.93004,8.8452,-0.78478,6.94619,8.82176,-0.721376,6.9653,8.85327,-0.662488,6.97792,8.91162,-0.641708,6.959,8.99897,-0.736826,6.97551,8.9809,-0.673425,6.89354,8.99663,-0.646728,6.87483,9.01253,-0.715185,6.89477,8.92023,-0.611416,6.88241,8.85982,-0.634371,6.86066,8.82479,-0.698059,6.84334,8.84944,-0.767373,6.83988,8.90699,-0.801173,6.85459,8.98888,-0.781559,6.8989,8.86479,-0.779171,6.91227,8.83997,-0.711572,6.93478,8.87336,-0.65062,6.90971,8.83924,-0.711303,6.92767,8.87178,-0.65727,6.8969,8.86494,-0.76986,6.65248,8.88311,-0.706147,6.66601,8.86282,-0.638294,6.69085,8.91478,-0.579093,6.65142,8.88309,-0.693858,6.66293,8.86215,-0.637752,6.68421,8.91241,-0.586819,6.81999,9.00757,-0.620724,6.80115,9.04796,-0.692122,6.82263,8.93103,-0.585073,6.80818,8.86628,-0.606976,6.7843,8.82982,-0.670698,6.76468,8.85363,-0.741204,6.76029,8.91411,-0.775554,6.77584,9.00139,-0.75574,6.5857,9.06571,-0.543452,6.54625,9.10182,-0.615889,6.62057,8.99563,-0.521933,6.57627,8.90096,-0.535082,6.53151,8.85772,-0.603043,6.50652,8.87552,-0.670605,6.50189,8.94055,-0.706076,6.51804,9.03902,-0.685022,6.89857,9.01968,-0.721192,6.8833,8.99289,-0.765108,6.90919,8.9978,-0.672916,6.89785,8.96772,-0.783617,6.9313,8.97504,-0.665807,6.92732,8.98349,-0.775181,6.93807,9.01134,-0.731648,6.95043,8.98831,-0.686023,6.90976,8.99847,-0.761587,6.92337,8.99307,-0.763869,6.92865,8.99182,-0.688002,6.94057,8.99643,-0.69409,6.93145,9.00078,-0.728463,6.91521,9.00246,-0.686182,6.89469,8.99937,-0.756586,6.90476,9.00554,-0.721036,6.92043,9.01393,-0.726034,6.65467,9.07737,-0.651782,6.6369,9.03587,-0.697847,6.66721,9.04926,-0.593367,6.65692,9.02162,-0.710284,6.69276,9.0326,-0.592902,6.69925,9.06763,-0.65875,6.68538,9.03239,-0.703385,6.71133,9.04121,-0.615126,6.70151,9.04659,-0.621379,6.68827,9.05542,-0.61601,6.66574,9.0429,-0.690221,6.67973,9.03737,-0.69223,6.69089,9.05801,-0.658486,6.67227,9.05039,-0.609773,6.64901,9.0379,-0.688369,6.66355,9.06189,-0.652768,6.67791,9.06951,-0.655819,7.00161,9.07016,0.0948462,6.98366,9.06373,0.0924703,6.98071,9.03116,0.0412012,6.97412,9.04053,0.143887,7.01806,9.05332,0.0953327,7.01811,9.02665,0.0502422,7.00109,9.03598,0.0464938,6.9955,9.04682,0.144247,7.01396,9.03358,0.141821,7.02211,9.02722,0.151104,7.02823,9.02053,0.0400347,7.02781,9.06191,0.0966463,6.99007,9.0228,0.16839,6.99758,9.01222,0.0195882,6.96135,9.04218,0.158391,6.97009,9.03183,0.025836,6.97194,9.08246,0.0919762,7.31003,9.01593,0.117786,7.2908,9.00625,0.116297,7.29239,9.00172,0.0724442,7.2889,9.00169,0.158989,7.32162,9.00004,0.118564,7.31814,8.99499,0.160089,7.30358,8.98937,0.161649,7.32494,8.99448,0.0756162,7.31025,9.00081,0.0729574,7.32466,8.98582,0.172793,7.3291,9.01299,0.118497,7.33213,8.98471,0.0635678,7.298,8.96994,0.1868,7.30437,8.96804,0.0408517,7.27765,8.99591,0.171401,7.28314,8.99525,0.0585167,7.28462,9.02338,0.115349,6.8375,9.05095,0.00559874,6.82875,8.96033,-0.0256551,6.81406,8.86932,0.00584153,6.80232,8.82022,0.0909672,6.79547,8.85216,0.178684,6.80155,8.94362,0.207866,6.8351,9.09919,0.082893,6.8154,9.045,0.165552,7.15844,9.0012,0.0270987,7.14636,8.90318,-0.00549894,7.1349,8.82447,0.0269039,7.12628,8.78646,0.105828,7.12573,8.82541,0.184485,7.13386,8.90445,0.217061,7.1599,9.05012,0.106308,7.14924,9.0021,0.185265,6.97484,8.85323,0.160419,6.97221,8.822,0.0928469,6.98421,8.86967,0.0269517,6.97993,8.85478,0.173037,6.97743,8.82153,0.0933597,6.99003,8.87109,0.0148856,7.29785,8.83743,0.047663,7.28915,8.83765,0.187714,7.29076,8.80239,0.117536,7.2936,8.83539,0.198235,7.29325,8.8028,0.118387,7.30313,8.834,0.037819,7.25816,8.99352,0.0313041,7.24778,8.90054,-0.00227053,7.23749,8.82613,0.0316756,7.23023,8.79009,0.113231,7.22801,8.82713,0.194092,7.23461,8.90181,0.228226,7.25532,9.0144,0.113442,7.24896,8.99456,0.195178,7.34558,8.97829,0.19805,7.35245,8.99912,0.120116,7.33509,8.8828,0.230601,7.32956,8.79711,0.197129,7.33232,8.76901,0.119667,7.33848,8.79609,0.0414227,7.34763,8.88174,0.00849236,7.35458,8.97725,0.0415349,6.94637,9.02817,0.0123083,6.93831,8.92988,-0.0189614,6.92839,8.85633,0.013072,6.92001,8.81653,0.0890713,6.91927,8.84932,0.166001,6.92526,8.93268,0.199085,6.94523,9.07142,0.0895439,6.93712,9.03948,0.167727,7.05441,9.0076,0.0169452,7.04445,8.91637,-0.0163903,7.03047,8.83452,0.016911,7.02036,8.79188,0.0975456,7.02096,8.82921,0.178389,7.03118,8.91551,0.212257,7.0523,9.03625,0.0978706,7.04485,9.0126,0.179843,7.43014,8.9619,0.201487,7.42872,8.99897,0.125037,7.41852,8.8681,0.232416,7.41652,8.7817,0.201823,7.42257,8.76728,0.125628,7.42537,8.78077,0.0484707,7.43093,8.86686,0.0172997,7.43772,8.9651,0.0517244,6.99328,8.97449,-0.00114947,7.30425,8.93933,0.0375656,6.99212,8.92205,-0.0176071,7.30169,8.89229,0.00202675,6.9804,8.87235,0.0160168,7.29329,8.83736,0.0359974,6.96743,8.82396,0.0926262,7.28778,8.80389,0.116639,6.96818,8.8567,0.172338,7.28338,8.83857,0.196444,6.97835,8.91646,0.205396,7.28863,8.89348,0.231117,6.98659,8.98121,0.181593,7.29339,8.94433,0.19827,6.69581,9.10126,-0.00985292,6.70023,8.88235,-0.00465699,6.6958,8.83155,0.117055,6.65929,8.89105,0.167966,6.68857,8.94742,0.198485,6.69276,9.05548,0.17453,6.70713,9.11213,0.0796777,6.65261,9.13293,-0.390651,6.65269,9.09555,-0.310408,6.68731,9.00524,-0.287527,6.66722,8.91434,-0.305607,6.6447,8.86808,-0.383592,6.62493,8.90113,-0.463642,6.63316,8.97945,-0.49322,6.62493,9.08706,-0.475592,7.22454,9.0016,-0.405821,6.92601,9.05519,-0.352561,7.22598,8.95862,-0.375769,6.92658,9.0028,-0.330678,7.21511,8.91797,-0.407055,6.91622,8.9471,-0.359431,7.20383,8.88755,-0.481646,6.90513,8.90627,-0.433716,7.19341,8.92018,-0.555301,6.9012,8.95174,-0.507043,7.19435,8.96194,-0.587362,6.90367,9.00531,-0.538654,7.20321,9.00022,-0.554956,6.90348,9.05728,-0.522403,7.33757,9.01653,-0.57243,7.32393,8.94808,-0.603332,7.32549,8.87855,-0.57476,7.33816,8.849,-0.503496,7.3475,8.87638,-0.43086,7.35508,8.94497,-0.401144,7.35893,9.01432,-0.432594,6.98069,9.08814,-0.367273,6.97314,9.1088,-0.442634,6.9769,8.99605,-0.336763,6.96683,8.91175,-0.367503,6.95566,8.87068,-0.442541,6.95117,8.91563,-0.517932,6.9547,8.99827,-0.548984,6.96445,9.08227,-0.517726,6.87576,9.09699,-0.353099,6.8688,9.11998,-0.425758,6.87613,9.01135,-0.322509,6.86844,8.92765,-0.353322,6.85841,8.88562,-0.426399,6.85181,8.92947,-0.499202,6.85103,9.01192,-0.529086,6.85871,9.09915,-0.498039,7.25261,9.03343,-0.561688,7.23933,8.95896,-0.592222,7.23687,8.89594,-0.561143,7.24667,8.86529,-0.488786,7.25891,8.89373,-0.41589,7.27021,8.95572,-0.385134,7.26658,9.05269,-0.488869,7.27514,9.03129,-0.416253,7.1797,9.04889,-0.398472,7.16933,9.06772,-0.473322,7.17457,8.96509,-0.367309,7.16457,8.90306,-0.398725,7.15147,8.8713,-0.473501,7.14296,8.90513,-0.548164,7.14409,8.96829,-0.579531,7.15573,9.05112,-0.54828,7.20306,8.91943,-0.555906,7.20998,8.88744,-0.481412,7.22522,8.91739,-0.40737,7.20707,8.88677,-0.481576,7.21907,8.9167,-0.416333,7.20012,8.91937,-0.545717,6.91018,8.95096,-0.510073,6.91362,8.90516,-0.43581,6.9268,8.94549,-0.361695,6.90644,8.94893,-0.497492,6.90927,8.90485,-0.434767,6.92013,8.94271,-0.371603,7.08336,9.0642,-0.383395,7.07583,9.10651,-0.457821,7.0785,8.9791,-0.352893,7.06721,8.90209,-0.383586,7.05566,8.86357,-0.458717,7.05061,8.90364,-0.534012,7.05234,8.98178,-0.564525,7.06236,9.06636,-0.532815,6.78922,9.09618,-0.333,6.77133,9.1357,-0.409074,6.79246,9.02121,-0.298622,6.77842,8.92466,-0.330499,6.75415,8.87579,-0.407684,6.74507,8.91366,-0.486407,6.74751,9.00604,-0.520374,6.75714,9.08909,-0.486969,7.19791,9.07371,-0.477818,7.1857,9.05018,-0.5293,7.20313,9.04858,-0.426393,7.20313,9.02613,-0.550813,7.22613,9.02502,-0.417055,7.23476,9.04025,-0.536296,7.24363,9.06476,-0.485084,7.25004,9.03914,-0.435024,7.21477,9.05427,-0.52231,7.2301,9.04872,-0.523384,7.22651,9.04261,-0.440743,7.24096,9.04754,-0.445143,7.23606,9.05344,-0.483672,7.21131,9.05353,-0.439668,7.1972,9.05527,-0.518714,7.20458,9.05864,-0.478709,7.224,9.06681,-0.481411,6.89296,9.13309,-0.428599,6.88292,9.10115,-0.490243,6.89565,9.09858,-0.367067,6.90987,9.08788,-0.502739,6.9251,9.08847,-0.364907,6.94785,9.12879,-0.437754,6.94175,9.09522,-0.490331,6.95165,9.09941,-0.387567,6.94195,9.10348,-0.39418,6.92446,9.10973,-0.387328,6.91569,9.10728,-0.477652,6.93283,9.10025,-0.478364,6.93779,9.11822,-0.436691,6.90471,9.10175,-0.38285,6.8951,9.10354,-0.478167,6.90403,9.11957,-0.430861,6.92203,9.12887,-0.432926,7.03794,9.12201,-0.194396,7.01875,9.11218,-0.193122,7.01158,9.09467,-0.243276,7.01551,9.09256,-0.142514,7.05453,9.11034,-0.197006,7.05117,9.09443,-0.241408,7.03308,9.09978,-0.241742,7.03718,9.10161,-0.145891,7.05641,9.09471,-0.151785,7.067,9.09038,-0.14372,7.06133,9.09042,-0.254016,7.06564,9.12293,-0.197781,7.03722,9.07875,-0.121398,7.02766,9.07718,-0.268724,7.00516,9.09007,-0.125988,6.9992,9.09211,-0.256487,7.00716,9.12799,-0.19136,7.37326,9.0674,-0.225993,7.35215,9.05848,-0.224348,7.34698,9.05421,-0.268172,7.3571,9.05287,-0.181603,7.38705,9.0519,-0.227549,7.3907,9.04554,-0.186057,7.37451,9.04042,-0.182089,7.3839,9.0463,-0.270482,7.36701,9.0528,-0.270589,7.39988,9.03617,-0.174918,7.39549,9.06389,-0.228667,7.38988,9.03675,-0.283664,7.37277,9.02101,-0.156661,7.35658,9.02138,-0.301866,7.34727,9.047,-0.167494,7.33496,9.04809,-0.280582,7.34505,9.07481,-0.223905,6.84759,9.08817,-0.251574,6.83632,9.00725,-0.292701,6.83077,8.90731,-0.258935,6.82903,8.85458,-0.174914,6.84299,8.8933,-0.0922879,6.85619,8.98661,-0.0598055,6.86162,9.12986,-0.175449,6.85856,9.08246,-0.100682,7.19951,9.05621,-0.290908,7.18828,8.96518,-0.323641,7.18254,8.88409,-0.290917,7.18386,8.84091,-0.211244,7.19437,8.88283,-0.131693,7.20722,8.96337,-0.0988344,7.20951,9.10163,-0.211201,7.21211,9.05483,-0.131585,7.03076,8.93061,-0.12792,7.01986,8.88746,-0.194972,7.02088,8.93483,-0.261922,7.03754,8.92992,-0.116889,7.02352,8.88783,-0.195679,7.02501,8.93367,-0.275022,7.35207,8.90359,-0.296327,7.36463,8.90174,-0.155362,7.35601,8.86152,-0.22629,7.37127,8.90105,-0.145958,7.35943,8.86183,-0.225924,7.35654,8.90213,-0.306583,7.30375,9.04691,-0.30351,7.29401,8.95833,-0.337448,7.28956,8.88314,-0.303317,7.29462,8.84066,-0.22131,7.30384,8.88171,-0.139291,7.31349,8.95609,-0.105121,7.31379,9.0665,-0.221034,7.32019,9.04537,-0.138933,7.42603,9.02745,-0.153967,7.42056,9.05021,-0.231169,7.42026,8.94562,-0.121242,7.4083,8.87154,-0.153639,7.40018,8.83446,-0.231318,7.39259,8.87307,-0.308776,7.39888,8.94781,-0.341533,7.41105,9.02884,-0.309002,6.97302,9.08947,-0.264964,6.96436,9.00146,-0.296042,6.96127,8.9085,-0.264505,6.96352,8.86429,-0.188521,6.97266,8.90076,-0.112638,6.98111,8.98738,-0.0813244,6.97941,9.11418,-0.188825,6.98226,9.08691,-0.112633,7.08799,9.07758,-0.282301,7.07732,8.98273,-0.315384,7.06965,8.89628,-0.281829,7.06923,8.85305,-0.200581,7.08156,8.89486,-0.119452,7.09556,8.97815,-0.0856488,7.09278,9.10204,-0.201128,7.09816,9.07613,-0.119247,7.51806,9.00911,-0.166591,7.51132,8.93557,-0.133654,7.50516,8.85767,-0.16446,7.50021,8.81576,-0.241312,7.48976,8.85916,-0.317297,7.4898,8.93767,-0.347261,7.50319,9.01057,-0.31463,7.02216,9.04512,-0.289079,7.35653,8.99368,-0.30582,7.02175,8.99515,-0.305999,7.35129,8.9528,-0.341198,7.01592,8.93417,-0.27211,7.34658,8.90423,-0.307103,7.01578,8.88843,-0.194297,7.35342,8.86315,-0.22671,7.02693,8.93032,-0.115433,7.36052,8.90276,-0.145818,7.03918,8.98824,-0.0835585,7.37185,8.95054,-0.112323,7.03827,9.04164,-0.108034,7.37002,8.99608,-0.144699,6.68163,9.0928,-0.244473,6.69546,8.90641,-0.235676,6.69217,8.85604,-0.158524,6.7017,8.89696,-0.0844171,6.7142,8.98471,-0.0540639,6.6837,9.12411,-0.092907,6.71845,9.1424,-0.16431,5.86951,9.21105,-0.175842,5.79701,8.7662,-0.385583,5.7693,8.89384,-0.520211,5.77502,8.8033,-0.473093,5.7638,9.0921,-0.519892,5.82602,9.09622,0.123908,5.84427,9.18123,-0.0339205,5.7776,8.80159,0.0195716,5.79618,8.96692,0.117804,5.80296,9.18845,-0.393334,5.76522,9.01153,-0.537836,5.83294,8.77518,-0.191201,5.85582,9.2116,-0.294326,5.79599,9.14183,-0.474346,5.65632,9.13004,-0.454535,5.65902,9.20945,-0.291129,5.64104,8.78012,-0.203751,5.6575,9.17883,-0.385474,5.65666,8.96326,0.047487,5.64214,8.84798,-0.0553137,5.65935,9.09078,0.0433801,5.65577,9.06951,-0.488133,5.6575,8.82591,-0.437451,5.65646,8.90377,-0.480968,5.65655,8.78119,-0.333467,5.66001,9.21195,-0.17825,7.51619,9.04902,-0.243385,7.35843,9.04923,-0.507929,-5.58013,8.89256,-0.473009,-5.57979,9.06534,-0.490937,-5.57983,9.12742,-0.465539,-5.57984,9.18197,-0.397213,-5.57949,9.22038,-0.304712,-5.57887,9.22515,-0.188612,-5.57874,9.11086,0.0581205,-5.57926,8.97509,0.0700324,-5.57995,8.84946,-0.0363217,-5.58076,8.77634,-0.18167,-5.58135,8.81546,-0.43113,-5.58183,8.76374,-0.338404,-5.58379,8.98717,-0.499288,-5.58124,9.21781,-0.0782947,-5.65799,8.99372,-0.499144,-5.66043,9.18671,-0.0662581,-6.31627,8.86665,0.375432,-6.27009,8.78069,0.369749,-6.2921,8.88516,0.358448,-6.30867,8.81862,0.372625,-6.24232,8.78848,0.35739,-6.20552,8.93813,0.558679,-6.15728,8.85334,0.561713,-6.17718,8.95595,0.517657,-6.12286,8.86859,0.522483,-6.17244,8.90226,0.569123,-6.23387,8.97638,0.502003,-6.28062,8.97605,0.448437,-6.30109,8.92418,0.385186,-6.27538,8.8332,0.338711,-6.22274,8.75358,0.376716,-6.17147,8.74127,0.439205,-6.14036,8.92078,0.528682,-6.13675,8.81129,0.514987,-6.30343,8.71619,0.662258,-6.32831,8.68177,0.615231,-6.36816,8.7072,0.566649,-6.42938,8.76786,0.541738,-6.44764,8.85511,0.562607,-6.44754,8.90591,0.607801,-6.40275,8.90854,0.642789,-6.48557,8.85195,0.786139,-6.56092,8.84851,0.728565,-6.59653,8.78326,0.652722,-6.57694,8.69148,0.619722,-6.51053,8.6259,0.643673,-6.43015,8.62306,0.714874,-6.41688,8.78654,0.802317,-6.39469,8.69873,0.788091,-6.40587,8.8934,0.710933,-6.47616,8.88998,0.645445,-6.49348,8.83286,0.590535,-6.46957,8.74872,0.565916,-6.41468,8.68328,0.590113,-6.35731,8.6694,0.650672,-6.34689,8.82415,0.729643,-6.31968,8.73641,0.715443,-6.248,8.76261,0.646943,-6.27663,8.85415,0.660478,-6.29209,8.69059,0.575552,-6.3566,8.69691,0.521268,-6.42029,8.76298,0.494468,-6.44245,8.85937,0.518982,-6.41278,8.92164,0.570128,-6.33497,8.92807,0.644168,-6.46226,8.84807,0.586785,-6.44419,8.76374,0.565965,-6.38373,8.69715,0.593593,-6.43593,8.76379,0.553027,-6.37992,8.70872,0.580795,-6.45204,8.84287,0.577999,-6.18443,8.79035,0.563499,-6.1964,8.89258,0.600093,-6.22506,8.71778,0.488625,-6.26997,8.73132,0.42076,-6.3424,8.80291,0.408936,-6.3508,8.89153,0.428226,-6.33499,8.9519,0.492173,-6.26672,8.95473,0.56234,-6.28745,8.85188,0.690412,-6.33547,8.89716,0.666581,-6.27603,8.78499,0.669265,-6.37686,8.89934,0.663724,-6.30034,8.75675,0.669459,-6.37216,8.8793,0.698199,-6.32137,8.83722,0.718447,-6.31202,8.77157,0.70014,-6.3416,8.88135,0.691885,-6.35462,8.87334,0.699403,-6.30138,8.78776,0.684174,-6.30715,8.78925,0.699743,-6.32612,8.83305,0.703634,-6.28481,8.79764,0.680693,-6.32983,8.88483,0.678654,-6.30321,8.84261,0.683364,-6.30718,8.84271,0.705099,-5.8906,8.93225,0.258988,-6.3021,8.90113,0.225419,-6.27973,8.96582,0.26786,-5.91813,9.03856,0.270519,-6.0249,9.05491,0.274883,-6.21932,9.03027,0.267854,-6.1209,9.05673,0.280311,-5.89072,8.79661,0.197299,-6.29875,8.84062,0.167394,-5.97409,8.76088,0.177057,-6.08543,8.77489,0.154466,-6.18587,8.79994,0.153445,-6.04271,8.89365,0.436758,-6.03227,8.7991,0.380597,-6.07773,8.96511,0.453802,-6.11468,8.99783,0.442941,-6.25881,8.94642,0.322981,-6.22476,8.99314,0.377259,-6.23288,8.84258,0.278447,-6.27198,8.89537,0.298958,-6.17542,9.00065,0.412544,-6.06591,8.74895,0.319883,-6.18818,8.79545,0.270882,-6.13636,8.75047,0.273416,-6.04856,8.7859,-0.131984,-6.04893,8.77613,0.0322465,-6.04358,8.76489,-0.0502018,-6.19385,8.78295,0.0415062,-5.89185,8.75302,-0.15101,-5.89328,8.74627,0.0214232,-5.87255,8.73938,-0.0653099,-6.1931,8.80832,-0.0397358,-6.17826,8.81557,-0.12146,-5.96314,8.81839,-0.201593,-6.15312,8.82718,-0.180653,-6.06874,8.81328,-0.192491,-6.09818,9.20121,-0.0854787,-6.102,9.19976,-0.168481,-6.06339,9.19627,-0.269989,-6.03331,9.17737,-0.367568,-6.08018,9.17751,0.00409763,-6.06583,9.14528,0.106176,-6.00175,9.14381,-0.458081,-5.97228,9.10328,-0.539013,-5.97885,8.80604,-0.509287,-5.95854,8.85561,-0.581041,-5.95459,8.97064,-0.607211,-5.95865,9.06995,-0.578147,-5.99206,9.12511,-0.500575,-6.07347,9.10814,0.160347,-6.074,9.16417,0.0554986,-6.01569,9.16255,-0.412919,-6.05404,9.19225,-0.322691,-6.08285,9.19618,-0.214603,-6.09844,9.20331,-0.126625,-6.09363,9.19167,-0.0444263,-6.06848,8.85539,-0.241599,-6.06515,8.81693,-0.322016,-6.01075,8.7868,-0.431159,-5.79561,9.14829,0.01649,-5.7957,9.194,-0.116816,-5.78764,9.18242,-0.0573881,-5.85359,9.15634,0.0370836,-5.84192,9.19379,-0.0935425,-6.38458,8.81991,-0.466921,-6.33493,8.81804,-0.463687,-6.50385,8.8274,-0.25513,-6.41103,8.8406,-0.25227,-6.52154,8.82392,-0.0658187,-6.46466,8.85619,-0.0869274,-6.36443,8.81831,-0.510274,-6.28383,8.81618,-0.495272,-6.40977,8.8174,-0.432826,-6.29383,8.82705,-0.415568,-6.48477,8.82565,-0.296597,-6.34329,8.82864,-0.276254,-6.50856,8.82428,-0.226445,-6.37161,8.83836,-0.212967,-6.51956,8.81021,-0.00405114,-6.43219,8.83374,-0.0384028,-6.518,8.80213,-0.108916,-6.43006,8.828,-0.13259,-6.22815,8.84919,-0.453469,-6.29063,8.84909,-0.335376,-6.31624,8.82054,-0.34229,-6.3193,8.85726,-0.240596,-6.36414,8.85218,-0.178294,-6.39503,8.84059,-0.173056,-6.38672,8.85294,-0.0920703,-6.32453,9.15871,-0.0420658,-6.41578,9.1435,-0.0430815,-6.32792,9.18807,-0.133045,-6.41198,9.17979,-0.137786,-6.31075,9.1683,-0.220974,-6.40169,9.14924,-0.227028,-6.28314,9.18674,-0.344259,-6.38081,9.17639,-0.351198,-6.23888,9.15238,-0.433263,-6.33236,9.14608,-0.444205,-6.29227,9.15629,0.099451,-6.4017,9.15692,0.106755,-6.34106,8.95629,0.219245,-6.39965,8.95242,0.217866,-6.31347,9.04787,0.197632,-6.39139,9.04305,0.194881,-6.3666,8.8456,0.04723,-6.42638,8.84183,0.0655556,-6.3451,8.87762,0.139048,-6.413,8.87564,0.154894,-6.18396,9.1218,-0.531998,-6.26466,9.12543,-0.543392,-6.14432,9.07395,-0.608842,-6.21842,9.07436,-0.621766,-6.12791,8.95908,-0.647511,-6.19712,8.95263,-0.662688,-6.14648,8.85281,-0.614299,-6.21742,8.84702,-0.628914,-6.18363,8.81538,-0.543788,-6.24941,8.80757,-0.547403,-6.16002,9.09961,-0.572795,-6.23543,9.09868,-0.589468,-6.21136,9.13818,-0.479012,-6.29113,9.1399,-0.493672,-6.2928,9.10734,0.15872,-6.3997,9.10591,0.154256,-6.3095,9.15268,0.0271218,-6.41005,9.14005,0.0353637,-6.25653,9.16568,-0.393035,-6.35741,9.16166,-0.402826,-6.29923,9.17436,-0.269258,-6.39081,9.15817,-0.273045,-6.32205,9.17692,-0.176667,-6.40787,9.1637,-0.184169,-6.32992,9.17647,-0.087707,-6.41284,9.16698,-0.0950447,-6.5753,9.15759,-0.119801,-6.56594,9.14773,-0.18449,-6.23536,9.18242,-0.0870572,-6.2296,9.19063,-0.17032,-5.96059,9.19946,-0.0820735,-5.99693,9.20389,-0.166145,-6.50509,9.1532,-0.0993212,-6.51424,9.1516,-0.190992,-6.56974,9.16165,-0.155475,-6.53271,9.14245,-0.419036,-6.55417,9.13534,-0.306908,-6.19238,9.18185,-0.265325,-6.1439,9.17791,-0.380612,-5.95537,9.20103,-0.269504,-5.93507,9.18948,-0.346231,-6.50786,9.13859,-0.28524,-6.46464,9.15401,-0.41458,-6.56607,9.14924,-0.374932,-5.96668,9.174,0.000293727,-6.57155,9.09396,0.158523,-6.57139,9.12365,0.0534876,-6.20381,9.15999,0.00785885,-6.18088,9.13351,0.139238,-5.95678,9.15122,0.0672859,-6.51434,9.13172,0.0353895,-6.501,9.06699,0.161214,-6.58521,9.11426,0.104555,-6.37003,9.10702,-0.612219,-6.41871,9.12683,-0.537028,-6.10626,9.14032,-0.467825,-6.06692,9.09944,-0.554977,-5.90256,9.14662,-0.455376,-5.87519,9.11299,-0.521896,-6.38129,9.12867,-0.512335,-6.30615,9.09553,-0.607001,-6.41183,9.11693,-0.576703,-5.70453,8.77755,-0.270471,-5.6946,8.79901,-0.127961,-5.76198,8.7617,-0.272573,-5.73791,8.78693,-0.106468,-5.69771,8.78147,-0.199921,-5.82832,8.76072,-0.287901,-5.7903,8.75099,-0.0710157,-5.73733,8.82022,-0.451534,-5.74605,9.1735,-0.0604976,-5.75378,9.09937,0.0550136,-5.73619,8.96837,0.064211,-5.73328,8.90578,-0.49582,-5.73048,9.00664,-0.510541,-5.74486,8.7763,-0.363744,-5.75941,8.77823,-0.19633,-5.72396,8.84422,-0.0170676,-5.76147,9.2061,-0.1681,-5.72999,9.0834,-0.497354,-5.75505,9.21465,-0.289203,-5.73785,9.14155,-0.459136,-5.74386,9.18766,-0.386816,-6.08209,8.83472,-0.524408,-6.05364,8.85655,-0.599104,-6.04511,8.96496,-0.625226,-6.05225,9.06554,-0.594584,-6.08626,9.12292,-0.513861,-6.31577,8.88548,0.161645,-6.30412,8.82818,0.0338926,-6.18334,9.07236,0.203259,-6.29855,8.963,0.235825,-6.18423,9.15194,0.0735889,-6.12621,9.15753,-0.423661,-6.16636,9.19218,-0.329686,-6.21566,9.18115,-0.212798,-6.23401,9.19641,-0.12845,-6.22512,9.1688,-0.0458232,-6.30588,8.85752,-0.0730598,-6.26338,8.8543,-0.153386,-6.20874,8.8573,-0.226064,-6.19843,8.82342,-0.327937,-6.131,8.79628,-0.44292,-5.96981,9.2019,-0.131031,-5.93262,8.79469,-0.316082,-5.97333,9.19522,-0.314102,-5.99189,9.16092,0.0377313,-5.94662,9.12129,0.129622,-5.86343,9.07607,-0.557718,-5.86133,8.97975,-0.583961,-5.86203,8.85161,-0.561491,-5.87495,8.791,-0.495112,-5.9191,9.12817,-0.491675,-5.96243,9.19278,-0.0415124,-5.96427,9.20225,-0.204925,-5.9544,8.83007,-0.234021,-5.90973,9.17255,-0.40223,-5.89196,8.76891,-0.421779,-6.59076,8.81431,-0.156141,-6.64937,8.84076,-0.158743,-6.53134,8.82673,-0.381509,-6.59199,8.85756,-0.37597,-6.59966,8.82716,0.109235,-6.64856,8.82331,0.0867191,-6.33914,8.86113,-0.651946,-6.39436,8.86785,-0.6499,-6.36648,8.82328,-0.589503,-6.42311,8.84726,-0.596841,-6.59191,8.82133,-0.0836785,-6.65575,8.85763,-0.0897302,-6.6006,8.84715,-0.0436866,-6.65042,8.85609,-0.0464401,-6.59043,8.81471,0.0203602,-6.65389,8.84064,0.0173764,-6.58519,8.83969,-0.229741,-6.64948,8.87498,-0.230561,-6.55995,8.84613,-0.300755,-6.61876,8.87286,-0.305636,-6.57751,8.85502,-0.260405,-6.63457,8.88331,-0.26764,-6.50121,8.83126,-0.440133,-6.57065,8.87586,-0.451241,-6.4216,8.81715,-0.520615,-6.4918,8.85225,-0.535255,-6.46643,8.82481,-0.476235,-6.53997,8.8719,-0.490515,-6.50843,9.16308,-0.143188,-6.51566,8.81443,-0.173204,-6.44324,8.80617,-0.366737,-6.48091,9.16746,-0.358935,-6.5065,9.13878,0.108062,-6.48566,9.03755,0.20189,-6.48619,8.9649,0.21625,-6.50999,8.87238,0.17066,-6.51336,8.82628,0.0864486,-6.28839,9.07207,-0.63554,-6.25815,8.95144,-0.676418,-6.28413,8.8442,-0.641676,-6.32749,8.81539,-0.570869,-6.34323,9.12434,-0.55455,-6.53033,9.12477,-0.0436473,-6.52603,9.12645,-0.240445,-6.44818,9.1339,-0.463507,-6.61491,9.00758,-0.509292,-6.61883,8.98857,-0.507461,-6.59233,8.91914,-0.497036,-6.58931,9.05587,-0.509106,-6.60807,9.02151,-0.509477,-6.69219,9.02211,-0.287135,-6.69685,9.00427,-0.285605,-6.68443,8.92731,-0.274019,-6.68041,9.08127,-0.285904,-6.68609,9.03535,-0.28603,-6.71844,9.00968,-0.0433991,-6.71662,8.9904,-0.0418453,-6.69752,8.90841,-0.0436208,-6.72015,9.03027,-0.0446858,-6.70531,9.08794,-0.0481733,-6.71794,9.00707,-0.0563274,-6.71583,9.00451,-0.0305125,-6.68339,9.02501,-0.288084,-6.70098,9.01592,-0.277661,-6.59646,9.00109,-0.517002,-6.63359,8.9948,-0.495574,-6.58894,9.02125,-0.516741,-6.63125,9.01173,-0.497273,-6.67807,9.03783,-0.28866,-6.69611,9.03342,-0.278082,-6.7038,8.99658,-0.275947,-6.7134,9.03351,-0.0596773,-6.71269,8.9856,-0.0299886,-6.71357,9.02757,-0.0318104,-6.47112,9.10081,-0.595068,-6.53632,9.07378,-0.529707,-6.5984,8.97788,-0.516331,-6.55293,8.89139,-0.524276,-6.474,8.86997,-0.596531,-6.42941,8.88557,-0.651155,-6.39643,8.93071,-0.675108,-6.41841,9.03796,-0.664108,-6.93101,8.95299,-0.653788,-6.69512,9.00434,-0.577603,-6.93825,8.91402,-0.625458,-6.69704,8.9651,-0.550838,-6.92534,8.87376,-0.648649,-6.68362,8.9171,-0.57623,-6.90667,8.83984,-0.710875,-6.65988,8.86354,-0.637835,-6.89029,8.86502,-0.777629,-6.64584,8.88387,-0.702405,-6.88767,8.90246,-0.809211,-6.64419,8.92772,-0.736414,-6.89742,8.94196,-0.785243,-6.64782,8.98505,-0.725033,-7.01247,8.95709,-0.810406,-6.99842,8.89493,-0.829209,-7.00363,8.83671,-0.801382,-7.02122,8.81601,-0.742759,-7.03657,8.84444,-0.686802,-7.04471,8.90568,-0.667864,-7.02713,8.98629,-0.75347,-7.04374,8.96424,-0.698565,-6.73944,9.02877,-0.594465,-6.72066,9.04993,-0.662629,-6.7414,8.95269,-0.558114,-6.72532,8.87951,-0.579609,-6.70182,8.83617,-0.643044,-6.68555,8.8578,-0.713319,-6.68442,8.92553,-0.749195,-6.69935,9.02075,-0.728621,-6.64981,9.05052,-0.57487,-6.63355,9.0684,-0.646077,-6.65278,8.98145,-0.533824,-6.63979,8.89964,-0.559775,-6.61984,8.8497,-0.623409,-6.60298,8.86946,-0.690697,-6.59864,8.93642,-0.72676,-6.61288,9.03434,-0.705346,-6.94209,8.97413,-0.797966,-6.92869,8.9011,-0.816705,-6.93004,8.8452,-0.78478,-6.94619,8.82176,-0.721376,-6.9653,8.85327,-0.662488,-6.97792,8.91162,-0.641708,-6.959,8.99898,-0.736826,-6.97551,8.9809,-0.673425,-6.89354,8.99663,-0.646728,-6.87483,9.01253,-0.715185,-6.89477,8.92023,-0.611416,-6.88241,8.85982,-0.634371,-6.86066,8.82479,-0.698059,-6.84334,8.84944,-0.767373,-6.83988,8.90699,-0.801172,-6.85459,8.98888,-0.781559,-6.8989,8.86479,-0.779171,-6.91227,8.83997,-0.711572,-6.93478,8.87337,-0.65062,-6.90971,8.83924,-0.711303,-6.92767,8.87178,-0.65727,-6.8969,8.86494,-0.76986,-6.65248,8.88311,-0.706147,-6.66601,8.86282,-0.638294,-6.69085,8.91478,-0.579093,-6.65142,8.88309,-0.693858,-6.66293,8.86215,-0.637752,-6.68421,8.91241,-0.586819,-6.81999,9.00758,-0.620724,-6.80115,9.04796,-0.692122,-6.82263,8.93103,-0.585073,-6.80818,8.86628,-0.606976,-6.7843,8.82982,-0.670698,-6.76468,8.85364,-0.741204,-6.76029,8.91411,-0.775554,-6.77584,9.00139,-0.75574,-6.5857,9.06571,-0.543452,-6.54625,9.10182,-0.615889,-6.62057,8.99563,-0.521933,-6.57627,8.90096,-0.535082,-6.53151,8.85772,-0.603043,-6.50652,8.87552,-0.670605,-6.50189,8.94055,-0.706076,-6.51804,9.03903,-0.685022,-6.89857,9.01968,-0.721192,-6.8833,8.99289,-0.765108,-6.90919,8.9978,-0.672916,-6.89785,8.96772,-0.783617,-6.9313,8.97504,-0.665807,-6.92732,8.9835,-0.775181,-6.93807,9.01134,-0.731648,-6.95043,8.98831,-0.686023,-6.90976,8.99848,-0.761587,-6.92337,8.99307,-0.763869,-6.92865,8.99182,-0.688002,-6.94057,8.99643,-0.69409,-6.93145,9.00078,-0.728463,-6.91521,9.00246,-0.686182,-6.89468,8.99937,-0.756586,-6.90476,9.00554,-0.721036,-6.92043,9.01393,-0.726034,-6.65467,9.07737,-0.651782,-6.6369,9.03587,-0.697847,-6.66721,9.04926,-0.593367,-6.65692,9.02162,-0.710284,-6.69276,9.03261,-0.592902,-6.69925,9.06763,-0.65875,-6.68538,9.03239,-0.703385,-6.71133,9.04121,-0.615126,-6.70152,9.0466,-0.621379,-6.68827,9.05542,-0.61601,-6.66574,9.04291,-0.690221,-6.67973,9.03737,-0.69223,-6.69089,9.05802,-0.658486,-6.67227,9.05039,-0.609773,-6.64901,9.0379,-0.688369,-6.66355,9.06189,-0.652768,-6.67791,9.06951,-0.655819,-7.00161,9.07015,0.0948462,-6.98367,9.06373,0.0924703,-6.98071,9.03116,0.0412013,-6.97412,9.04053,0.143888,-7.01806,9.05332,0.0953328,-7.01811,9.02665,0.0502423,-7.00109,9.03598,0.0464938,-6.9955,9.04682,0.144247,-7.01396,9.03358,0.141821,-7.02211,9.02722,0.151104,-7.02823,9.02053,0.0400348,-7.02781,9.06191,0.0966464,-6.99007,9.02279,0.16839,-6.99758,9.01222,0.0195882,-6.96135,9.04218,0.158391,-6.97009,9.03183,0.0258361,-6.97194,9.08246,0.0919762,-7.31003,9.01593,0.117786,-7.2908,9.00625,0.116297,-7.29239,9.00172,0.0724442,-7.2889,9.00169,0.158989,-7.32162,9.00004,0.118564,-7.31814,8.99499,0.160089,-7.30358,8.98937,0.161649,-7.32494,8.99448,0.0756162,-7.31025,9.00081,0.0729575,-7.32466,8.98582,0.172793,-7.3291,9.01299,0.118497,-7.33213,8.98471,0.0635678,-7.29801,8.96995,0.1868,-7.30437,8.96804,0.0408518,-7.27765,8.99591,0.171401,-7.28314,8.99525,0.0585167,-7.28462,9.02338,0.115349,-6.8375,9.05095,0.00559878,-6.82875,8.96033,-0.0256551,-6.81406,8.86932,0.00584157,-6.80232,8.82022,0.0909673,-6.79547,8.85216,0.178684,-6.80155,8.94362,0.207866,-6.8351,9.09919,0.0828931,-6.8154,9.045,0.165552,-7.15844,9.00121,0.0270987,-7.14637,8.90318,-0.00549888,-7.1349,8.82447,0.0269039,-7.12628,8.78646,0.105828,-7.12573,8.82541,0.184485,-7.13386,8.90445,0.217061,-7.1599,9.05012,0.106309,-7.14925,9.0021,0.185266,-6.97485,8.85324,0.160419,-6.97221,8.82201,0.0928469,-6.98421,8.86968,0.0269517,-6.97993,8.85478,0.173037,-6.97743,8.82154,0.0933598,-6.99003,8.87109,0.0148857,-7.29785,8.83743,0.0476631,-7.28915,8.83765,0.187715,-7.29076,8.80239,0.117536,-7.2936,8.83539,0.198235,-7.29325,8.8028,0.118387,-7.30313,8.834,0.037819,-7.25816,8.99352,0.0313041,-7.24778,8.90054,-0.00227047,-7.23749,8.82613,0.0316757,-7.23023,8.79009,0.113231,-7.22802,8.82713,0.194092,-7.23461,8.90181,0.228226,-7.25532,9.0144,0.113443,-7.24897,8.99456,0.195178,-7.34558,8.97829,0.19805,-7.35245,8.99912,0.120116,-7.33509,8.8828,0.230601,-7.32956,8.79711,0.197129,-7.33232,8.76901,0.119667,-7.33848,8.79609,0.0414228,-7.34763,8.88174,0.00849241,-7.35458,8.97725,0.0415349,-6.94637,9.02817,0.0123083,-6.93831,8.92988,-0.0189614,-6.9284,8.85633,0.0130721,-6.92001,8.81653,0.0890713,-6.91927,8.84932,0.166001,-6.92526,8.93268,0.199085,-6.94523,9.07142,0.0895439,-6.93712,9.03948,0.167727,-7.05441,9.00761,0.0169452,-7.04445,8.91637,-0.0163902,-7.03047,8.83452,0.0169111,-7.02036,8.79188,0.0975457,-7.02096,8.82921,0.178389,-7.03118,8.91551,0.212257,-7.0523,9.03625,0.0978707,-7.04485,9.0126,0.179843,-7.43014,8.9619,0.201487,-7.42872,8.99897,0.125037,-7.41852,8.8681,0.232416,-7.41652,8.7817,0.201823,-7.42257,8.76728,0.125628,-7.42537,8.78077,0.0484707,-7.43093,8.86686,0.0172997,-7.43772,8.9651,0.0517245,-6.99329,8.97449,-0.00114942,-7.30425,8.93933,0.0375656,-6.99212,8.92205,-0.017607,-7.30169,8.89229,0.00202681,-6.9804,8.87235,0.0160168,-7.29329,8.83736,0.0359974,-6.96743,8.82396,0.0926262,-7.28778,8.80389,0.116639,-6.96818,8.8567,0.172338,-7.28338,8.83858,0.196444,-6.97835,8.91646,0.205396,-7.28863,8.89349,0.231117,-6.98659,8.98121,0.181593,-7.2934,8.94433,0.19827,-6.69581,9.10126,-0.00985286,-6.70023,8.88235,-0.00465694,-6.6958,8.83154,0.117055,-6.65929,8.89105,0.167966,-6.68857,8.94742,0.198485,-6.69277,9.05548,0.17453,-6.70713,9.11213,0.0796777,-6.65261,9.13293,-0.390651,-6.65269,9.09555,-0.310408,-6.68731,9.00524,-0.287527,-6.66722,8.91434,-0.305607,-6.6447,8.86808,-0.383592,-6.62493,8.90113,-0.463642,-6.63316,8.97945,-0.49322,-6.62493,9.08706,-0.475592,-7.22454,9.0016,-0.405821,-6.92601,9.05519,-0.352561,-7.22598,8.95862,-0.375769,-6.92658,9.0028,-0.330678,-7.21511,8.91797,-0.407055,-6.91622,8.9471,-0.359431,-7.20383,8.88756,-0.481646,-6.90513,8.90627,-0.433716,-7.19341,8.92018,-0.555301,-6.9012,8.95174,-0.507043,-7.19435,8.96194,-0.587362,-6.90368,9.00531,-0.538654,-7.20321,9.00022,-0.554956,-6.90348,9.05728,-0.522403,-7.33757,9.01653,-0.57243,-7.32393,8.94808,-0.603332,-7.32549,8.87855,-0.57476,-7.33816,8.849,-0.503496,-7.3475,8.87638,-0.43086,-7.35508,8.94497,-0.401144,-7.35893,9.01432,-0.432594,-6.98069,9.08815,-0.367273,-6.97314,9.1088,-0.442634,-6.97691,8.99605,-0.336763,-6.96683,8.91175,-0.367503,-6.95566,8.87068,-0.442541,-6.95117,8.91563,-0.517932,-6.9547,8.99828,-0.548983,-6.96445,9.08227,-0.517726,-6.87576,9.09699,-0.353099,-6.8688,9.11998,-0.425758,-6.87613,9.01135,-0.322509,-6.86844,8.92765,-0.353322,-6.85841,8.88562,-0.426399,-6.85181,8.92947,-0.499202,-6.85103,9.01192,-0.529086,-6.85871,9.09915,-0.498039,-7.25261,9.03343,-0.561688,-7.23934,8.95896,-0.592222,-7.23687,8.89594,-0.561143,-7.24667,8.86529,-0.488786,-7.25891,8.89373,-0.41589,-7.27021,8.95572,-0.385134,-7.26658,9.05269,-0.488869,-7.27514,9.03129,-0.416253,-7.1797,9.04889,-0.398471,-7.16933,9.06772,-0.473322,-7.17457,8.96509,-0.367309,-7.16457,8.90307,-0.398725,-7.15147,8.8713,-0.4735,-7.14296,8.90513,-0.548164,-7.14409,8.96829,-0.579531,-7.15573,9.05112,-0.54828,-7.20306,8.91943,-0.555906,-7.20998,8.88744,-0.481412,-7.22522,8.91739,-0.40737,-7.20707,8.88678,-0.481576,-7.21907,8.91671,-0.416333,-7.20012,8.91938,-0.545717,-6.91018,8.95096,-0.510073,-6.91362,8.90516,-0.43581,-6.9268,8.94549,-0.361695,-6.90644,8.94893,-0.497492,-6.90927,8.90485,-0.434767,-6.92013,8.94271,-0.371603,-7.08336,9.0642,-0.383395,-7.07583,9.10651,-0.457821,-7.0785,8.97911,-0.352893,-7.06721,8.90209,-0.383586,-7.05566,8.86357,-0.458717,-7.05061,8.90364,-0.534012,-7.05234,8.98179,-0.564525,-7.06236,9.06636,-0.532815,-6.78922,9.09618,-0.333,-6.77133,9.1357,-0.409074,-6.79246,9.02121,-0.298622,-6.77842,8.92466,-0.330499,-6.75415,8.87579,-0.407684,-6.74507,8.91366,-0.486408,-6.74751,9.00604,-0.520374,-6.75714,9.08909,-0.486969,-7.19791,9.07371,-0.477818,-7.1857,9.05018,-0.5293,-7.20313,9.04858,-0.426393,-7.20313,9.02613,-0.550813,-7.22613,9.02502,-0.417055,-7.23476,9.04025,-0.536296,-7.24363,9.06476,-0.485084,-7.25004,9.03915,-0.435024,-7.21477,9.05427,-0.52231,-7.2301,9.04872,-0.523384,-7.22651,9.04261,-0.440743,-7.24096,9.04754,-0.445143,-7.23606,9.05344,-0.483672,-7.21131,9.05353,-0.439668,-7.1972,9.05527,-0.518714,-7.20459,9.05864,-0.478709,-7.224,9.06681,-0.481411,-6.89296,9.13309,-0.428599,-6.88292,9.10115,-0.490243,-6.89565,9.09858,-0.367067,-6.90987,9.08788,-0.502739,-6.92511,9.08847,-0.364907,-6.94786,9.1288,-0.437754,-6.94175,9.09522,-0.490331,-6.95165,9.09941,-0.387567,-6.94195,9.10348,-0.39418,-6.92446,9.10973,-0.387328,-6.91569,9.10728,-0.477652,-6.93283,9.10025,-0.478364,-6.93779,9.11823,-0.436691,-6.90471,9.10175,-0.38285,-6.8951,9.10354,-0.478167,-6.90403,9.11957,-0.430861,-6.92203,9.12887,-0.432926,-7.03794,9.12201,-0.194396,-7.01875,9.11218,-0.193122,-7.01158,9.09467,-0.243276,-7.01551,9.09256,-0.142514,-7.05453,9.11034,-0.197006,-7.05117,9.09443,-0.241408,-7.03308,9.09978,-0.241741,-7.03718,9.10161,-0.145891,-7.05641,9.09471,-0.151785,-7.067,9.09038,-0.14372,-7.06133,9.09042,-0.254016,-7.06564,9.12293,-0.197781,-7.03722,9.07875,-0.121398,-7.02766,9.07718,-0.268723,-7.00516,9.09007,-0.125988,-6.9992,9.09211,-0.256487,-7.00716,9.12799,-0.19136,-7.37326,9.0674,-0.225992,-7.35215,9.05847,-0.224348,-7.34698,9.05421,-0.268172,-7.3571,9.05287,-0.181603,-7.38706,9.0519,-0.227549,-7.3907,9.04554,-0.186057,-7.37451,9.04042,-0.182089,-7.3839,9.0463,-0.270482,-7.36701,9.0528,-0.270589,-7.39988,9.03617,-0.174918,-7.3955,9.06389,-0.228667,-7.38988,9.03675,-0.283664,-7.37277,9.02101,-0.156661,-7.35659,9.02138,-0.301866,-7.34727,9.047,-0.167494,-7.33496,9.04809,-0.280582,-7.34505,9.07481,-0.223905,-6.84759,9.08817,-0.251574,-6.83632,9.00725,-0.2927,-6.83077,8.90731,-0.258935,-6.82903,8.85459,-0.174914,-6.84299,8.8933,-0.0922878,-6.85619,8.98661,-0.0598054,-6.86162,9.12986,-0.175449,-6.85855,9.08246,-0.100682,-7.19951,9.0562,-0.290908,-7.18828,8.96518,-0.323641,-7.18254,8.88409,-0.290917,-7.18386,8.84091,-0.211243,-7.19437,8.88283,-0.131693,-7.20722,8.96337,-0.0988343,-7.20951,9.10163,-0.211201,-7.21211,9.05483,-0.131584,-7.03076,8.93061,-0.12792,-7.01986,8.88746,-0.194972,-7.02088,8.93483,-0.261921,-7.03754,8.92992,-0.116889,-7.02352,8.88783,-0.195679,-7.02501,8.93367,-0.275022,-7.35207,8.90359,-0.296327,-7.36463,8.90174,-0.155362,-7.35601,8.86152,-0.22629,-7.37127,8.90105,-0.145958,-7.35944,8.86183,-0.225924,-7.35654,8.90213,-0.306583,-7.30375,9.04691,-0.30351,-7.29401,8.95833,-0.337448,-7.28956,8.88314,-0.303316,-7.29462,8.84066,-0.22131,-7.30385,8.88171,-0.139291,-7.31349,8.95609,-0.105121,-7.3138,9.0665,-0.221034,-7.32019,9.04537,-0.138933,-7.42603,9.02745,-0.153967,-7.42056,9.05021,-0.231169,-7.42026,8.94562,-0.121241,-7.4083,8.87154,-0.153639,-7.40018,8.83446,-0.231318,-7.39259,8.87307,-0.308776,-7.39888,8.94781,-0.341533,-7.41105,9.02884,-0.309002,-6.97302,9.08947,-0.264964,-6.96436,9.00146,-0.296041,-6.96127,8.9085,-0.264505,-6.96352,8.86429,-0.188521,-6.97266,8.90076,-0.112638,-6.98111,8.98738,-0.0813243,-6.97941,9.11418,-0.188825,-6.98226,9.08691,-0.112633,-7.08799,9.07758,-0.282301,-7.07732,8.98273,-0.315384,-7.06965,8.89628,-0.281829,-7.06923,8.85305,-0.200581,-7.08156,8.89486,-0.119452,-7.09556,8.97815,-0.0856487,-7.09278,9.10203,-0.201128,-7.09816,9.07613,-0.119247,-7.51806,9.00911,-0.16659,-7.51132,8.93557,-0.133654,-7.50516,8.85767,-0.16446,-7.50021,8.81576,-0.241312,-7.48976,8.85916,-0.317297,-7.4898,8.93767,-0.347261,-7.50319,9.01057,-0.31463,-7.02216,9.04512,-0.289079,-7.35653,8.99368,-0.30582,-7.02175,8.99515,-0.305998,-7.35129,8.9528,-0.341197,-7.01592,8.93417,-0.27211,-7.34658,8.90423,-0.307103,-7.01578,8.88843,-0.194297,-7.35342,8.86315,-0.22671,-7.02693,8.93032,-0.115433,-7.36052,8.90276,-0.145818,-7.03918,8.98824,-0.0835584,-7.37185,8.95054,-0.112323,-7.03827,9.04164,-0.108034,-7.37002,8.99608,-0.144699,-6.68163,9.0928,-0.244472,-6.69546,8.90642,-0.235676,-6.69217,8.85604,-0.158524,-6.7017,8.89696,-0.0844171,-6.7142,8.98471,-0.0540638,-6.6837,9.12411,-0.0929069,-6.71845,9.1424,-0.16431,-5.86951,9.21105,-0.175842,-5.79701,8.7662,-0.385583,-5.7693,8.89384,-0.520211,-5.77502,8.8033,-0.473093,-5.7638,9.0921,-0.519892,-5.82602,9.09622,0.123908,-5.84427,9.18123,-0.0339205,-5.7776,8.80159,0.0195716,-5.79618,8.96692,0.117803,-5.80296,9.18845,-0.393334,-5.76522,9.01153,-0.537836,-5.83294,8.77518,-0.191201,-5.85582,9.2116,-0.294326,-5.79599,9.14183,-0.474346,-5.65632,9.13004,-0.454535,-5.65902,9.20945,-0.291129,-5.64104,8.78012,-0.203751,-5.6575,9.17884,-0.385474,-5.65666,8.96326,0.047487,-5.64214,8.84798,-0.0553137,-5.65935,9.09078,0.0433802,-5.65577,9.06951,-0.488133,-5.6575,8.82591,-0.437451,-5.65646,8.90378,-0.480968,-5.65656,8.78119,-0.333467,-5.66001,9.21195,-0.17825,-7.51619,9.04903,-0.243385,-7.35843,9.04923,-0.507929,0.202102,6.11933,1.254,0.446821,6.12823,1.15857,0.161361,5.41375,1.28956,0.348257,5.38625,1.15124,0.236799,5.07566,0.940041,0.102598,4.96493,1.00327,0.0590471,4.93477,0.463749,0.0741056,4.93663,0.436198,0.0424693,4.96785,0.0189382,0.0585403,4.96849,0.0181274,0.0865388,5.1676,-0.62113,0.288026,5.10933,-0.571061,0.0695111,5.7645,-0.954723,0.256058,5.79184,-0.970809,0.137647,6.23887,-0.893728,0.259631,6.25827,-0.898473,0.181505,6.51102,-0.738394,0.301089,6.49741,-0.776265,0.64021,5.67636,1.00573,0.690757,6.13792,0.957668,0.944315,6.16301,0.638179,0.919392,5.9986,0.668535,1.09125,6.14465,0.323183,1.10442,6.28075,0.297585,1.07077,6.32757,-0.0292253,1.12205,6.16962,-0.0313013,0.963433,6.18372,-0.484513,0.916064,6.43732,-0.386607,1.10798,6.00133,0.328105,1.15554,5.83177,-0.0662757,0.956103,5.84381,0.682891,0.648029,5.48664,0.95671,0.359276,5.15571,0.942199,0.070438,4.94782,0.0189545,0.666496,6.47578,-0.651394,0.660952,6.24078,-0.811685,0.978748,5.85941,-0.597422,0.647369,5.84801,-0.92455,0.572932,5.18486,-0.677777,0.562285,5.01806,-0.502835,1.04584,5.518,-0.342138,0.946532,5.5397,-0.639306,0.819297,5.30781,-0.607615,0.796208,5.13157,-0.532105,0.0726687,5.43525,-0.855582,0.260682,5.42461,-0.897157,0.606812,5.39572,-0.879982,0.0699445,4.99571,-0.351735,0.143512,5.01101,-0.329955,0.170606,4.93753,-0.315606,0.310897,4.97461,-0.409768,0.19909,5.02238,0.838455,0.0878535,4.91708,0.415256,0.12448,4.55149,0.0181447,0.115702,4.62273,0.372547,0.226214,4.73136,0.745392,0.426023,4.51121,-0.432349,0.275576,4.46358,-0.315785,0.38757,4.87645,0.900632,0.662752,5.08603,0.929042,0.983684,5.4039,0.745963,1.20041,5.52334,0.390292,0.815288,4.81196,-0.465501,1.11883,5.13812,-0.226201,1.28055,5.35383,0.0454625,0.630278,4.66024,-0.492527,0.254271,3.83209,0.129459,0.250389,3.82865,0.358449,0.795948,3.85284,-0.335438,0.628853,3.83925,-0.288805,0.46377,3.83253,-0.241123,0.342778,3.82889,-0.136905,1.09728,3.91271,-0.215706,1.2133,3.95082,0.0102213,0.999159,3.97884,0.625147,1.20407,3.98226,0.24126,0.510677,3.87856,0.768608,0.738215,3.93231,0.771509,0.346094,3.85219,0.613938,0.199479,4.14468,0.0883186,0.193785,4.19581,0.358346,0.810146,4.24782,-0.493108,0.637454,4.18818,-0.436087,0.453529,4.14645,-0.349782,0.316204,4.1275,-0.216993,1.27196,4.54605,-0.0488473,1.11923,4.43283,-0.344665,0.994705,4.61423,0.664226,1.23858,4.66028,0.360957,0.451476,4.34676,0.762432,0.704863,4.46273,0.784615,0.296074,4.26346,0.647497,0.279469,3.56695,0.350919,0.378077,3.57362,0.610081,0.763179,3.61205,0.784711,0.545154,3.58,0.778151,1.18789,3.63743,0.225322,1.01171,3.63763,0.649606,1.18469,3.63596,0.0462727,1.08639,3.63214,-0.164758,0.36396,3.61962,-0.106701,0.472547,3.61998,-0.200527,0.622069,3.61981,-0.245861,0.785805,3.62062,-0.287858,0.280482,3.59457,0.136712,0.310794,3.27408,0.108858,0.315972,3.24404,0.332647,0.79169,3.31854,-0.322428,0.631584,3.32079,-0.284445,0.499508,3.31581,-0.230491,0.39861,3.30815,-0.13043,1.07389,3.31289,-0.176051,1.1448,3.30703,0.0271583,1.04977,3.28812,0.564466,1.15477,3.30832,0.188918,0.631233,3.24059,0.727644,0.796811,3.26964,0.722389,0.410378,3.24519,0.57402,0.431057,2.70669,-0.269775,0.482634,1.96936,-0.280789,0.370175,2.69611,-0.00644183,0.435417,1.9614,-0.0356348,0.394159,2.68494,0.253601,0.456676,1.95738,0.217004,0.454505,2.69049,0.473117,0.54573,1.96253,0.383198,0.679279,2.65864,0.62635,0.716692,1.95707,0.537311,0.865036,2.66224,0.621741,0.852243,1.96137,0.530134,1.10692,2.70714,0.441119,1.08408,1.96329,0.368997,1.22931,2.7028,0.084996,1.19821,1.95717,0.0291508,1.22047,2.71112,-0.107447,1.18772,1.96511,-0.14552,1.12006,2.71904,-0.3145,1.09527,1.96898,-0.31548,0.829777,2.72009,-0.456138,0.841005,1.97159,-0.44557,0.531299,2.71268,-0.369004,0.573089,1.97167,-0.371144,0.672642,2.71717,-0.418103,0.702698,1.97078,-0.415205,0.211812,4.88229,0.794346,0.366024,4.76033,-0.433107,0.0940014,4.7621,0.00924449,0.595508,4.8517,-0.502284,1.08069,5.33433,-0.269866,1.21841,5.59105,-0.00684149,1.18354,5.76689,0.354678,0.973092,5.63022,0.71916,0.648027,5.27274,0.957871,0.804901,4.97857,-0.489809,0.365631,5.01798,0.92737,0.100592,4.77644,0.394224,0.219783,4.71699,-0.335171,1.01176,6.06811,0.499433,1.03346,6.21848,0.47404,1.0393,5.91432,0.508831,1.14744,5.47181,0.570297,1.12732,3.97978,0.434445,1.14211,4.63931,0.521308,1.10201,3.63979,0.43657,1.10403,3.29961,0.354832,1.19054,2.69697,0.252778,1.16215,1.95254,0.187774,1.08553,5.70212,0.539432,0.524795,1.38504,-0.215873,0.508905,1.3895,0.00448297,0.604984,1.38355,0.361719,0.751792,1.39469,0.468996,0.864594,1.38785,0.464007,1.05606,1.37976,0.351734,1.16385,1.36978,0.0208227,1.16201,1.38369,-0.152291,1.08332,1.39486,-0.28458,0.861087,1.39585,-0.385702,0.61014,1.38849,-0.306111,0.737518,1.39455,-0.357141,0.509709,1.37048,0.202719,1.12139,1.36702,0.187705,0.179747,5.80113,1.31062,0.455499,5.81434,1.22207,0.159882,6.37777,-0.814831,0.280389,6.38007,-0.836331,0.665675,5.93489,0.981412,0.931643,6.13581,0.650616,1.09764,6.25382,0.308271,1.09609,6.30008,-0.0304753,0.939227,6.31168,-0.435489,0.66373,6.36004,-0.730744,1.01766,6.18784,0.48132,0.353369,3.72426,-0.121803,0.267377,3.71333,0.133085,0.362085,3.7129,0.612009,0.527915,3.72928,0.77338,0.750697,3.77218,0.77811,1.00544,3.80824,0.637377,1.19598,3.80985,0.233291,1.19899,3.79339,0.028247,1.09183,3.77243,-0.190232,0.790876,3.73673,-0.311648,0.468159,3.72626,-0.220825,0.625461,3.72953,-0.267333,0.264929,3.6978,0.354684,1.11467,3.80978,0.435507,0.295638,3.43433,0.122785,0.788747,3.46958,-0.305143,0.626826,3.4703,-0.265153,0.486028,3.46789,-0.215509,0.381285,3.46388,-0.118565,1.16474,3.4715,0.0367155,1.08014,3.47251,-0.170404,1.03074,3.46287,0.607036,1.17133,3.47287,0.20712,0.588193,3.41029,0.752897,0.779995,3.44085,0.75355,0.394227,3.4094,0.59205,0.29772,3.40549,0.341783,1.10302,3.4697,0.395701,1.10793,0.294454,0.180335,0.524089,0.297754,0.194666,0.741532,0.320729,-0.339718,0.61995,0.314945,-0.29101,0.859478,0.321968,-0.366979,1.0716,0.321021,-0.270458,1.14671,0.310359,-0.144189,1.14846,0.297085,0.0210469,1.04558,0.306614,0.3369,0.862826,0.314334,0.444064,0.755156,0.32086,0.448826,0.615029,0.310232,0.34643,0.523322,0.315905,0.00545075,0.538488,0.311654,-0.204878,-0.202102,6.11933,1.254,-0.446821,6.12823,1.15857,2.66684e-15,6.11519,1.26609,0,5.43088,1.31914,-0.161361,5.41375,1.28956,-0.348257,5.38625,1.15124,-0.236799,5.07566,0.940041,-0.102598,4.96493,1.00327,0,4.94287,1.00406,0,4.92531,0.467763,-0.0590471,4.93477,0.463749,-0.0741056,4.93663,0.436198,-0.0424693,4.96785,0.0189382,-0.0585403,4.96849,0.0181274,0,4.96605,0.0185854,0,5.21195,-0.625146,-0.0865388,5.1676,-0.62113,-0.288026,5.10933,-0.571061,-0.0695111,5.7645,-0.954723,-1.77997e-15,5.74233,-0.922814,-0.256058,5.79184,-0.970809,-0.137647,6.23887,-0.893728,-0.259631,6.25827,-0.898473,3.55608e-15,6.26041,-0.838631,-0.181505,6.51102,-0.738394,4.44397e-15,6.49838,-0.691591,-0.301089,6.49741,-0.776265,-0.64021,5.67636,1.00573,-0.690757,6.13792,0.957668,-0.944315,6.16301,0.638179,-0.919392,5.9986,0.668535,-1.09125,6.14465,0.323183,-1.10442,6.28075,0.297585,-1.07077,6.32757,-0.0292253,-1.12205,6.16962,-0.0313013,-0.963433,6.18372,-0.484513,-0.916064,6.43732,-0.386607,-1.10798,6.00133,0.328105,-1.15554,5.83177,-0.0662757,-0.956103,5.84381,0.682891,-0.648029,5.48664,0.95671,-0.359276,5.15571,0.942199,-0.070438,4.94782,0.0189545,-0.666496,6.47578,-0.651394,-0.660952,6.24078,-0.811685,-0.978748,5.85941,-0.597422,-0.647369,5.84801,-0.92455,-0.572932,5.18486,-0.677777,-0.562285,5.01806,-0.502835,-1.04584,5.518,-0.342138,-0.946532,5.5397,-0.639306,-0.819297,5.30781,-0.607615,-0.796208,5.13157,-0.532105,9.05965e-16,5.45268,-0.830096,-0.0726687,5.43525,-0.855582,-0.260682,5.42461,-0.897157,-0.606812,5.39572,-0.879982,0,5.01691,-0.354513,-0.0699445,4.99571,-0.351735,-0.143512,5.01101,-0.329955,-0.170606,4.93753,-0.315606,-0.310897,4.97461,-0.409768,-0.19909,5.02238,0.838455,-0.0878535,4.91708,0.415256,-0.12448,4.55149,0.0181447,-0.115702,4.62273,0.372547,-0.226214,4.73136,0.745392,-0.426023,4.51121,-0.432349,-0.275576,4.46358,-0.315785,-0.38757,4.87645,0.900632,-0.662752,5.08603,0.929042,-0.983684,5.4039,0.745963,-1.20041,5.52334,0.390292,-0.815288,4.81196,-0.465501,-1.11883,5.13812,-0.226201,-1.28055,5.35383,0.0454625,-0.630278,4.66024,-0.492527,-0.254271,3.83209,0.129459,-0.250389,3.82865,0.358449,-0.795948,3.85284,-0.335438,-0.628853,3.83925,-0.288805,-0.46377,3.83253,-0.241123,-0.342778,3.82889,-0.136905,-1.09728,3.91271,-0.215706,-1.2133,3.95082,0.0102213,-0.999159,3.97884,0.625147,-1.20407,3.98226,0.24126,-0.510677,3.87856,0.768608,-0.738215,3.93231,0.771509,-0.346094,3.85219,0.613938,-0.199479,4.14468,0.0883186,-0.193785,4.19581,0.358346,-0.810146,4.24782,-0.493108,-0.637454,4.18818,-0.436087,-0.453529,4.14645,-0.349782,-0.316204,4.1275,-0.216993,-1.27196,4.54605,-0.0488473,-1.11923,4.43283,-0.344665,-0.994705,4.61423,0.664226,-1.23858,4.66028,0.360957,-0.451476,4.34676,0.762432,-0.704863,4.46273,0.784615,-0.296074,4.26346,0.647497,-0.279469,3.56695,0.350919,-0.378077,3.57362,0.610081,-0.763179,3.61205,0.784711,-0.545154,3.58,0.778151,-1.18789,3.63743,0.225322,-1.01171,3.63763,0.649606,-1.18469,3.63596,0.0462727,-1.08639,3.63214,-0.164758,-0.36396,3.61962,-0.106701,-0.472547,3.61998,-0.200527,-0.622069,3.61981,-0.245861,-0.785805,3.62062,-0.287858,-0.280482,3.59457,0.136712,-0.310794,3.27408,0.108858,-0.315972,3.24404,0.332647,-0.79169,3.31854,-0.322428,-0.631584,3.32079,-0.284445,-0.499508,3.31581,-0.230491,-0.39861,3.30815,-0.13043,-1.07389,3.31289,-0.176051,-1.1448,3.30703,0.0271583,-1.04977,3.28812,0.564466,-1.15477,3.30832,0.188918,-0.631233,3.24059,0.727644,-0.796811,3.26964,0.722389,-0.410378,3.24519,0.57402,-0.431057,2.70669,-0.269775,-0.482634,1.96936,-0.280789,-0.370175,2.69611,-0.00644183,-0.435417,1.9614,-0.0356348,-0.394159,2.68494,0.253601,-0.456676,1.95738,0.217004,-0.454505,2.69049,0.473117,-0.54573,1.96253,0.383198,-0.679279,2.65864,0.62635,-0.716692,1.95707,0.537311,-0.865036,2.66224,0.621741,-0.852243,1.96137,0.530134,-1.10692,2.70714,0.441119,-1.08408,1.96329,0.368997,-1.22931,2.7028,0.084996,-1.19821,1.95717,0.0291508,-1.22047,2.71112,-0.107447,-1.18772,1.96511,-0.14552,-1.12006,2.71904,-0.3145,-1.09527,1.96898,-0.31548,-0.829777,2.72009,-0.456138,-0.841005,1.97159,-0.44557,-0.531299,2.71268,-0.369004,-0.573089,1.97167,-0.371144,-0.672642,2.71717,-0.418103,-0.702698,1.97078,-0.415205,-0.211812,4.88229,0.794346,-0.366024,4.76033,-0.433107,-0.0940014,4.7621,0.00924449,-0.595508,4.8517,-0.502284,-1.08069,5.33433,-0.269866,-1.21841,5.59105,-0.00684149,-1.18354,5.76689,0.354678,-0.973092,5.63022,0.71916,-0.648027,5.27274,0.957871,-0.804901,4.97857,-0.489809,-0.365631,5.01798,0.92737,-0.100592,4.77644,0.394224,-0.219783,4.71699,-0.335171,-1.01176,6.06811,0.499433,-1.03346,6.21848,0.47404,-1.0393,5.91432,0.508831,-1.14744,5.47181,0.570297,-1.12732,3.97978,0.434445,-1.14211,4.63931,0.521308,-1.10201,3.63979,0.43657,-1.10403,3.29961,0.354832,-1.19054,2.69697,0.252778,-1.16215,1.95254,0.187774,-1.08553,5.70212,0.539432,-0.524795,1.38504,-0.215873,-0.508905,1.3895,0.00448297,-0.604984,1.38355,0.361719,-0.751792,1.39469,0.468996,-0.864594,1.38785,0.464007,-1.05606,1.37976,0.351734,-1.16385,1.36978,0.0208227,-1.16201,1.38369,-0.152291,-1.08332,1.39486,-0.28458,-0.861087,1.39585,-0.385702,-0.61014,1.38849,-0.306111,-0.737518,1.39455,-0.357141,-0.509709,1.37048,0.202719,-1.12139,1.36702,0.187705,-8.89076e-16,5.80808,1.2854,-0.179747,5.80113,1.31062,-0.455499,5.81434,1.22207,4.88856e-15,6.38153,-0.76427,-0.159882,6.37777,-0.814831,-0.280389,6.38007,-0.836331,-0.665675,5.93489,0.981412,-0.931643,6.13581,0.650616,-1.09764,6.25382,0.308271,-1.09609,6.30008,-0.0304753,-0.939227,6.31168,-0.435489,-0.66373,6.36004,-0.730744,-1.01766,6.18784,0.48132,-0.353369,3.72426,-0.121803,-0.267377,3.71333,0.133085,-0.362085,3.7129,0.612009,-0.527915,3.72928,0.77338,-0.750697,3.77218,0.77811,-1.00544,3.80824,0.637377,-1.19598,3.80985,0.233291,-1.19899,3.79339,0.028247,-1.09183,3.77243,-0.190232,-0.790876,3.73673,-0.311648,-0.468159,3.72626,-0.220825,-0.625461,3.72953,-0.267333,-0.264929,3.6978,0.354684,-1.11467,3.80978,0.435507,-0.295638,3.43433,0.122785,-0.788747,3.46958,-0.305143,-0.626826,3.4703,-0.265153,-0.486028,3.46789,-0.215509,-0.381285,3.46388,-0.118565,-1.16474,3.4715,0.0367155,-1.08014,3.47251,-0.170404,-1.03074,3.46287,0.607036,-1.17133,3.47287,0.20712,-0.588193,3.41029,0.752897,-0.779995,3.44085,0.75355,-0.394227,3.4094,0.59205,-0.29772,3.40549,0.341783,-1.10302,3.4697,0.395701,-1.10793,0.294454,0.180335,-0.524089,0.297754,0.194666,-0.741532,0.320729,-0.339718,-0.61995,0.314945,-0.29101,-0.859478,0.321968,-0.366979,-1.0716,0.321021,-0.270458,-1.14671,0.310359,-0.144189,-1.14846,0.297085,0.0210469,-1.04558,0.306614,0.3369,-0.862826,0.314334,0.444064,-0.755156,0.32086,0.448826,-0.615029,0.310232,0.34643,-0.523322,0.315905,0.00545075,-0.538488,0.311654,-0.204878,-0.192241,10.3794,-0.743572,-0.0197206,10.3091,-0.766787,0.201106,9.79205,0.538102,-0.620924,10.3055,-0.144583,0.607833,10.1717,-0.104929,0.533473,10.2292,-0.411271,0.358467,10.2701,-0.689836,0.158504,10.2714,-0.758145,0.525118,10.1549,0.0445123,-0.395702,10.4227,-0.67413,-0.559998,10.37,-0.398389,-0.557157,10.2158,0.0762444,-0.522547,10.1434,0.28518,-0.368166,10.0216,0.394988,0.468227,10.1117,0.131367,0.332485,9.84833,0.43429,0.4276,10.0292,0.229741,-0.0424529,9.8035,0.5692,-0.29824,9.92511,0.465696,-0.185903,9.86678,0.515466,-0.543499,10.154,-0.138455,0.520575,10.0201,-0.147968,-0.0190935,10.0576,-0.738599,-0.380643,10.1461,-0.649498,0.344579,9.97681,-0.664602,-0.538634,10.1396,-0.384341,0.512868,9.93755,-0.396728,0.434113,10.0551,0.11098,-0.511419,10.1311,0.0552057,0.466966,10.0736,0.0104088,-0.184992,10.1045,-0.716275,0.152291,10.0006,-0.730289,0.181343,9.76696,0.480314,-0.0432173,9.77945,0.517603,-0.286314,9.89996,0.42006,-0.488971,10.0662,0.217173,0.309044,9.82852,0.378949,0.381365,10.0016,0.193109,-0.363157,9.99407,0.351247,-0.176063,9.84126,0.465752,-0.258325,9.76307,0.672439,-0.268667,9.76452,0.617345,-0.331039,9.68016,0.436026,-0.287666,9.82746,0.49627,-0.298112,9.81855,0.452347,-0.195744,9.8923,0.56518,-0.232779,9.82498,0.684348,-0.340318,9.70072,0.436046,-0.35139,9.52749,0.48094,-0.294157,9.8064,0.428414,-0.298364,9.82642,0.471419,-0.293029,9.82602,0.488563,-0.2964,9.81677,0.4302,-0.295964,9.77442,0.416508,-0.291307,9.81306,0.538657,-0.379929,9.59025,0.489731,-0.322943,9.72961,0.428446,-0.357578,9.63057,0.467797,-0.327499,9.74802,0.429718,-0.262457,9.76469,0.636347,-0.27988,9.82885,0.512443,-0.48762,9.80961,0.312314,-0.482854,9.9048,0.464051,-0.660099,9.62325,0.350099,-0.538058,9.77054,0.303843,-0.60721,9.66821,0.326059,-0.560239,9.78263,0.31914,-0.424937,9.88342,0.55409,-0.467596,9.90937,0.444241,-0.602741,9.82752,0.124501,-0.660318,9.85885,0.177725,-0.792466,9.61789,-0.0243661,-0.816871,9.73648,0.0295829,-0.634775,9.93625,0.315278,-0.373175,10.0491,0.438728,-0.701767,9.7468,0.0131154,-0.63052,9.94386,0.314136,-0.505399,10.0261,0.51595,-0.796093,9.716,0.0370114,-0.52442,10.027,0.457758,-0.607239,9.9831,0.354788,-0.913534,9.6918,0.05754,-0.677815,9.78142,0.0634265,-0.532187,10.026,0.444873,-0.758482,9.8044,0.10812,-0.506402,10.0511,0.543827,-0.647384,9.88329,0.23038,-0.609456,10.0032,0.363669,-0.646144,9.87572,0.192378,-0.640002,9.91478,0.299149,0.612371,9.772,-0.371671,0.593483,9.76332,-0.0614647,0.674537,9.62545,-0.133485,0.788426,9.65384,-0.113125,0.725368,9.69754,-0.11998,0.682017,9.68629,-0.415289,0.66275,9.683,-0.123176,0.572987,9.73047,-0.441778,0.545471,9.71926,-0.125758,0.665431,9.85454,-0.183909,0.623227,9.85051,0.0579934,0.658441,9.86838,0.0927399,0.661063,9.83787,0.0410357,0.739287,9.75804,-0.320577,0.716445,9.753,-0.0372122,0.577416,9.82976,-0.00512039,0.656151,9.9866,0.163366,0.747325,9.89092,-0.141548,0.728352,9.89066,0.120091,0.701168,9.93727,-0.0940868,0.686178,9.93706,0.149316,0.678376,9.94652,0.151284,0.627932,10.0024,-0.0439428,0.653378,10.0069,0.165356,0.625329,10.0789,0.0863175,0.590567,10.0434,0.240136,0.626209,10.0885,0.100655,0.591078,10.0724,0.261621,0.473835,10.0568,0.266374,0.619095,10.1594,0.1683,0.600279,10.1262,0.316575,0.568876,10.1247,0.33938,0.446485,9.75199,0.315358,0.53749,9.54851,0.377587,0.507838,9.60876,0.347823,0.476758,9.71717,0.306545,0.483528,9.63591,0.322048,0.451278,9.69487,0.29575,0.425526,9.83389,0.352051,0.427385,9.857,0.37301,0.424755,9.81493,0.339976,0.439136,9.77349,0.328576,0.434673,9.79756,0.331725,0.436351,9.92214,0.459388,0.461983,9.8819,0.415148,0.455456,9.89986,0.437735,0.446945,9.91136,0.450685,0.447105,9.92308,0.485832,0.491176,9.8955,0.492412,0.355927,9.86814,0.48963,0.427878,9.90428,0.576285,-0.696225,9.80713,-0.367239,-0.803908,9.61928,-0.386288,-0.959361,9.69365,-0.414351,-0.719748,9.76698,-0.409719,-0.827246,9.72887,-0.408421,-0.673449,9.91829,-0.217221,-0.639176,9.89809,-0.262859,-0.667133,9.8607,-0.328016,-0.77346,9.81256,-0.394308,-0.644496,9.9851,-0.0128183,-0.690045,9.92698,-0.194245,-0.65159,9.92768,-0.0839027,-0.677941,10.2002,0.339069,-0.641412,9.99157,0.0217382,-0.616479,10.1857,0.246132,-0.613733,10.1649,0.242645,-0.556124,10.2205,0.353187,-0.679228,10.227,0.410003,-0.55348,9.72268,0.293558,-0.482288,9.89991,0.421459,-0.417526,9.8839,0.603793,-0.43497,9.87999,0.546982,-0.601346,9.57268,0.298101,-0.588771,9.73729,0.301665,-0.499457,9.87569,0.36371,-0.496963,9.86765,0.342725,-0.496858,9.85443,0.334305,-0.498337,9.89203,0.396565,-0.490226,9.89667,0.415778,-0.310167,9.95026,0.511332,-0.383552,9.93287,0.635975,0.483407,9.90432,0.522957,0.45359,9.89826,0.540269,0.240678,9.70379,0.492114,-0.0416884,9.73283,0.550112,0.219953,9.70588,0.448748,-0.0416884,9.73308,0.513944,0.235436,9.66588,0.45631,-0.0416884,9.66964,0.52868,0.256079,9.50078,0.576614,-0.0416884,9.50553,0.627771,0.229565,9.6818,0.453221,-0.0416884,9.69154,0.519589,0.250381,9.64063,0.461776,-0.0416884,9.64311,0.539113,0.258381,9.58918,0.497106,-0.0416884,9.59043,0.575694,0.26337,9.55913,0.514623,-0.0416884,9.56561,0.592957,0.242806,9.62264,0.469237,-0.0416884,9.62199,0.548445,0.235307,9.70669,0.470643,-0.0416884,9.73223,0.538465,0.23103,9.70465,0.465169,-0.0416884,9.74044,0.507813,0.217536,9.69765,0.443949,-0.0416884,9.7155,0.505522,-0.0420899,9.71246,0.615796,0.230936,9.70849,0.545575,-0.0416884,9.7849,0.720469,-0.0416884,9.732,0.58387,0.228567,9.70319,0.521806,-0.0416884,9.73152,0.571002,0.231431,9.70141,0.5136,-0.0433006,9.71805,0.732557,-0.0416884,9.73117,0.56281,0.233583,9.70063,0.507318,0.230709,9.75618,0.662566,-0.0483091,9.70225,0.723667,0.233463,9.74546,0.653521,-0.0476851,9.69417,0.686055,0.235838,9.70884,0.611723,-0.0416884,9.82755,0.620796,0.220869,9.81713,0.595889,0.242416,9.79455,0.682266,-0.0249139,10.6685,-1.02245,0.598196,10.1839,0.222701,-0.855797,10.4714,-0.133852,-0.519882,10.8443,-0.887818,0.164718,10.5421,-0.786002,-0.19949,10.6543,-0.770869,0.583271,10.2362,0.0786157,-0.602894,10.3004,0.097283,0.50234,10.1683,0.151753,0.554079,10.5209,-0.425814,-0.581362,10.6005,-0.412437,0.372356,10.5633,-0.715071,-0.41076,10.6992,-0.698761,-0.0203478,10.5606,-0.794975,0.695091,10.3233,-0.0618889,-0.698349,10.4569,-0.15071,0.17381,10.3197,-0.999362,0.633326,10.0978,-0.0616496,-0.6666,10.1205,-0.0354692,-0.656479,10.2675,-0.342737,0.639416,10.2199,-0.638709,-0.569912,10.3662,-0.882442,0.767497,10.1422,-0.33165,-0.0353277,10.4344,-1.09467,-0.214703,10.5235,-1.33517,-0.390166,10.5185,-1.2094,0.398251,10.2871,-0.954468,0.179708,10.3391,-1.08094,0.632942,10.1101,-0.0476796,-0.663268,10.1394,-0.0161691,-0.649825,10.2714,-0.336666,0.643092,10.2515,-0.725472,-0.563592,10.37,-0.876061,0.768119,10.1524,-0.318485,-0.0329243,10.4502,-1.07316,-0.213639,10.5391,-1.34072,-0.38563,10.5313,-1.20007,0.403537,10.3088,-1.02366,0.737327,10.0784,-0.448235,-0.0598781,10.2728,-1.31429,-0.225577,10.3633,-1.27847,-0.436503,10.3875,-1.3058,0.344262,10.0653,-1.32837,-0.535634,10.3868,-0.846946,0.667437,10.5003,-0.693895,-0.620532,10.2887,-0.307596,0.635148,10.1897,0.023018,0.822558,10.2853,-0.182061,-0.212257,10.5723,-1.33338,-0.365562,10.555,-1.15847,0.447262,10.5486,-0.991641,0.191314,10.4762,-1.08667,0.141683,9.93648,-1.42751,-0.000190979,10.0576,-1.34754,-0.177683,10.0922,-1.31086,0.747842,9.92456,-0.243755,-0.684167,10.0151,-0.271306,-0.657919,9.92183,-0.0979201,0.707687,9.93682,-0.590067,-0.740857,10.0711,-0.547746,0.503926,9.86542,-1.04188,0.320817,9.89973,-1.31959,-0.38373,10.0241,-1.18439,-0.569291,10.1427,-0.882946,-0.651024,10.2274,0.0671914,-0.0258682,10.5054,-1.11521,0.135039,9.94872,-1.40749,-0.0302296,10.0449,-1.38024,-0.222688,10.0702,-1.37947,0.692718,9.94672,-0.0874986,0.740021,9.93341,-0.227898,-0.680032,10.0146,-0.256444,0.701863,9.95179,-0.552432,-0.745389,10.088,-0.513048,0.499479,9.86676,-1.01568,0.315023,9.90766,-1.29876,-0.43522,10.0046,-1.26088,-0.602186,10.1203,-0.94007,0.111574,10.1174,-1.39577,-0.0536488,10.2484,-1.41964,-0.204236,10.3517,-1.38805,0.646334,9.98488,-0.050721,0.741729,10.0176,-0.197392,-0.690427,10.0812,-0.186356,0.715095,10.0631,-0.467266,-0.709572,10.2113,-0.419907,0.500551,9.96927,-0.997358,0.312148,10.0257,-1.29336,-0.420833,10.3319,-1.26609,-0.606106,10.2946,-0.934136,0.873553,10.3672,-0.140417,0.472959,10.672,-0.908823,-0.736173,10.7191,-0.577402,0.70335,10.6182,-0.595762,-0.66017,10.3123,0.138235,0.690109,10.2363,0.0879279,-0.252032,10.7873,-0.990222,0.209714,10.6451,-1.00526,0.113565,10.1206,-1.28537,0.747346,10.0267,-0.186011,-0.701578,10.0788,-0.176381,0.530153,9.9979,-1.01428,-0.634467,10.3273,-0.94927,-0.724671,10.2275,-0.404712,-0.459751,9.66598,-1.03592,0.340411,9.73648,-1.07636,0.593542,9.83051,-0.265798,-0.555117,9.76219,-0.743168,0.537519,9.71721,-0.826327,-0.636999,9.81877,-0.489072,0.60768,9.79123,-0.513109,-0.0313179,9.65044,-1.30734,-0.27951,9.59555,-1.20135,0.184525,9.72007,-1.22938,-0.14418,9.62538,-1.27994,0.0698515,9.68019,-1.29099,-0.0163831,9.77928,-1.3649,-0.137204,9.74887,-1.33475,0.101484,9.78634,-1.34463,-0.657115,9.89571,-0.430914,0.655538,9.84164,-0.407443,-0.592833,9.85352,-0.697053,0.596661,9.79166,-0.764358,-0.295363,9.65189,-1.24153,0.228697,9.79587,-1.27481,-0.504645,9.74653,-1.03093,0.392029,9.79405,-1.08968,-0.00173437,9.76095,-1.41842,-0.142004,9.71917,-1.38465,0.130891,9.77446,-1.39394,0.69182,9.85561,-0.173129,-0.680041,9.90936,-0.417169,0.695882,9.82034,-0.39432,-0.628205,9.87967,-0.701242,0.642336,9.77554,-0.784873,-0.301992,9.6329,-1.28685,0.265446,9.78674,-1.31224,-0.542701,9.75255,-1.06893,0.437511,9.78613,-1.11368,-0.0140289,8.99192,-1.24624,-0.125271,9.02779,-1.22492,0.0928789,9.03023,-1.23042,-0.694023,9.59899,-0.680932,0.632437,9.60185,-0.735909,-0.582589,9.39442,-0.890996,0.519659,9.48926,-0.929486,-0.261573,9.10537,-1.1613,0.213119,9.13698,-1.17715,-0.426122,9.17758,-1.04045,0.346674,9.32487,-1.0645,-0.00894995,8.55837,-1.30413,-0.249749,8.51351,-1.2734,0.25134,8.605,-1.27203,0.816867,9.65301,-0.371601,-0.95262,9.47232,-0.796524,0.911374,9.5498,-0.725978,-0.873762,9.20785,-1.00201,0.86504,9.37662,-0.937361,-0.496526,8.52894,-1.17276,0.508358,8.73763,-1.17858,-0.716877,8.84222,-1.05872,0.713102,8.99926,-1.03391,-0.00711289,8.74462,-1.23275,-0.16713,8.78278,-1.20915,0.172865,8.78028,-1.21027,-0.811548,9.5318,-0.770524,0.756538,9.58542,-0.764939,-0.718454,9.29084,-0.957958,0.689869,9.4333,-0.94619,-0.343117,8.87836,-1.13077,0.352703,8.89042,-1.14098,-0.546884,9.01011,-1.03691,0.53344,9.13627,-1.02559,-0.0123506,8.84576,-1.37816,-0.174944,8.9033,-1.34565,0.164328,8.88346,-1.36554,-0.848548,9.74968,-0.426032,0.754624,9.71502,-0.427946,-0.856201,9.52718,-0.770012,0.8143,9.62215,-0.748507,-0.753848,9.30691,-0.984293,0.663675,9.50861,-0.973239,-0.348299,9.04174,-1.2567,0.31407,9.02861,-1.30205,-0.573278,9.08041,-1.1265,0.470137,9.31318,-1.15522,-0.635387,9.4435,-1.06352,0.536177,9.56072,-1.09435,-0.764123,9.57083,-0.86449,0.710015,9.63287,-0.929135,-0.795232,9.70753,-0.599381,0.784098,9.71599,-0.65947,-0.0194991,9.29034,-1.39314,-0.449183,9.33794,-1.24429,0.332813,9.49067,-1.27034,-0.219644,9.27925,-1.35629,0.150049,9.37282,-1.36865,-0.174565,8.65158,-1.07132,0.176058,8.71488,-1.07271,-0.783763,9.49074,-0.709644,0.730805,9.51369,-0.752101,0.676243,9.63359,-0.376644,-0.533001,8.9239,-0.928315,0.531938,9.04527,-0.912461,-0.356395,8.7114,-1.00306,0.367158,8.82447,-1.01255,-0.00635651,8.66683,-1.09171,-0.77773,9.1879,-0.864416,0.67086,9.33867,-0.858618,-0.627545,9.59959,-0.772288,0.573011,9.64773,-0.864843,-0.03157,9.35785,-1.24259,-0.344578,9.38058,-1.12738,0.233348,9.51363,-1.15791,-0.500991,9.4718,-0.972831,0.398608,9.58556,-1.02566,-0.682959,9.73757,-0.525867,0.645528,9.72512,-0.615347,-0.169056,9.3381,-1.21202,0.0903418,9.41872,-1.22396,-0.154779,9.59189,-1.37056,0.118548,9.65379,-1.38089,-0.706833,9.87106,-0.461265,0.709876,9.79288,-0.462235,-0.660297,9.88311,-0.29564,0.660852,9.82515,-0.197694,-0.536181,9.66162,-1.08207,0.433097,9.74197,-1.12149,-0.320723,9.55027,-1.27464,0.251472,9.71576,-1.30146,-0.00735954,9.6146,-1.40423,-0.624868,9.79976,-0.743375,0.643912,9.72709,-0.836435,-0.714904,9.97125,-0.712415,0.735316,9.85589,-0.77226,-0.00194463,9.84459,-1.56953,-0.369803,9.67669,-1.41213,0.350985,9.85691,-1.42949,-0.634666,9.84911,-1.14084,0.521799,9.8581,-1.18423,-0.706991,9.9755,-0.368519,0.791056,9.87972,-0.335052,-0.178,9.77838,-1.53085,0.177574,9.87033,-1.5356,5.64066,8.78992,-0.205702,7.67367,8.98887,-0.257284,7.67785,8.98177,-0.195032,7.66119,8.93969,-0.168375,7.64233,8.89347,-0.192492,7.63468,8.86767,-0.25454,7.62984,8.89469,-0.316354,7.64359,8.9414,-0.342848,7.66534,8.983,-0.31926,7.36813,8.99103,-0.153122,7.37048,8.95092,-0.122221,7.35905,8.90997,-0.152585,7.35028,8.87263,-0.226288,7.3459,8.91132,-0.300081,7.35183,8.95288,-0.331212,7.35643,8.98862,-0.2972,7.68212,8.93162,-0.258698,7.50006,9.0028,-0.309173,7.49028,8.93774,-0.337273,7.49004,8.86605,-0.310058,7.49957,8.82574,-0.241167,7.50402,8.86469,-0.171491,7.50982,8.93583,-0.143537,7.48931,9.02914,-0.237117,7.51388,9.00146,-0.171497,7.50828,8.9919,-0.303046,7.49858,9.01534,-0.238331,7.52074,8.99069,-0.179359,7.66615,8.97468,-0.200177,7.65489,8.97579,-0.312017,7.66549,8.98986,-0.256449,7.67931,8.98573,-0.201559,7.68684,9.00343,-0.258468,7.66808,8.98684,-0.313078,7.51031,9.00683,-0.303224,7.5228,9.00563,-0.179259,7.49764,9.0311,-0.237917,7.41098,9.02169,-0.302008,7.40034,8.94765,-0.331642,7.39581,8.87986,-0.302179,7.40377,8.84379,-0.231577,7.41008,8.87847,-0.160617,7.41957,8.94571,-0.131217,7.4183,9.04047,-0.231052,7.42471,9.0203,-0.160831,7.35981,8.90884,-0.299924,7.36493,8.87016,-0.226516,7.37328,8.90771,-0.15314,7.35761,8.87139,-0.2264,7.36572,8.90999,-0.160907,7.35314,8.9119,-0.290874,7.58355,8.98861,-0.319821,7.56884,8.93649,-0.340851,7.5611,8.88014,-0.313708,7.5682,8.85187,-0.247987,7.57442,8.87885,-0.181643,7.58745,8.93466,-0.155815,7.59712,8.98694,-0.178143,7.5951,8.97801,-0.18531,7.58293,8.9795,-0.31258,7.58586,8.99385,-0.313324,7.59812,8.99232,-0.184682,7.5938,9.01355,-0.248995,7.35581,9.01553,-0.293789,7.3707,9.01439,-0.16387,7.38961,9.02875,-0.277662,7.396,9.0539,-0.22882,7.39954,9.02785,-0.180452,7.36547,9.04415,-0.265814,7.3837,9.03736,-0.266001,7.37227,9.0321,-0.187161,7.39133,9.03664,-0.190574,7.38672,9.04192,-0.228059,7.37112,9.05764,-0.226512,7.22199,9.05703,-0.481868,7.2361,9.04345,-0.484244,7.24164,9.03862,-0.449619,7.22417,9.0342,-0.445616,7.23048,9.03968,-0.519118,7.21371,9.0455,-0.517628,7.2496,9.03079,-0.440498,7.24437,9.05479,-0.485362,7.23509,9.03215,-0.530447,7.22367,9.01834,-0.424075,7.20292,9.02012,-0.542822,7.42713,9.01878,-0.51498,7.43482,8.9984,-0.454332,7.41603,9.00055,-0.575662,7.41329,8.98704,-0.574873,7.43192,8.98493,-0.454839,7.43422,8.99319,-0.448104,7.42634,8.94419,-0.426681,7.41264,8.89244,-0.450764,7.40309,8.86803,-0.513487,7.39264,8.89438,-0.575284,7.39838,8.94693,-0.601148,7.41346,8.99552,-0.581726,7.20117,8.92805,-0.540859,7.21949,8.92543,-0.421197,7.20789,8.89674,-0.481568,7.22654,8.92458,-0.414196,7.21458,8.89629,-0.482093,7.20631,8.9266,-0.549742,7.27355,9.02413,-0.423046,7.26445,9.04292,-0.488691,7.26915,8.95598,-0.395074,7.26034,8.90111,-0.422494,7.25015,8.87466,-0.489152,7.24037,8.90309,-0.555085,7.2416,8.95886,-0.582484,7.25311,9.02619,-0.554814,7.33648,9.03499,-0.499217,7.36266,9.01079,-0.445092,7.34484,9.0126,-0.561798,7.4941,8.99395,-0.57974,7.5148,9.00905,-0.52901,7.51091,8.9923,-0.474891,7.49453,8.99636,-0.525996,7.48171,8.98368,-0.578128,7.49857,8.98203,-0.472899,7.36064,8.99677,-0.445139,7.33752,9.02026,-0.499767,7.34294,8.99858,-0.561602,7.35455,9.00668,-0.437318,7.32889,9.03298,-0.498068,7.35313,8.94542,-0.410942,7.34656,8.88388,-0.437412,7.33835,8.859,-0.503372,7.32665,8.88585,-0.56802,7.32511,8.94823,-0.593403,7.33482,9.00869,-0.566864,7.51001,8.94193,-0.529288,7.20387,8.99504,-0.546426,7.19573,8.96231,-0.577465,7.19326,8.92766,-0.548665,7.20123,8.89719,-0.481048,7.21348,8.92564,-0.41327,7.22424,8.95938,-0.385587,7.22232,8.99654,-0.414157,7.49116,8.99035,-0.585461,7.46928,8.95143,-0.606858,7.45778,8.90774,-0.581315,7.46585,8.88228,-0.52321,7.4765,8.90592,-0.464756,7.49563,8.94887,-0.44273,7.50989,8.98852,-0.468659,7.50216,8.99541,-0.527219,7.58741,8.93709,0.134064,7.58186,8.93051,0.196565,7.56181,8.88586,0.221065,7.54728,8.83614,0.194925,7.54908,8.80787,0.132604,7.55445,8.83544,0.0701572,7.57191,8.88488,0.045287,7.58908,8.92982,0.071403,7.29306,8.93653,0.189577,7.28796,8.8947,0.221162,7.28015,8.85436,0.189642,7.28162,8.81904,0.116503,7.28858,8.85353,0.0425592,7.2997,8.89355,0.0119873,7.30298,8.9317,0.0462981,7.59413,8.87617,0.134796,7.43542,8.94914,0.0556602,7.42946,8.87999,0.0271865,7.4242,8.8096,0.0551961,7.42196,8.78057,0.125455,7.41618,8.81038,0.194793,7.41824,8.88108,0.222372,7.41527,8.97763,0.125096,7.42746,8.94993,0.194379,7.44196,8.93751,0.063173,7.42369,8.9631,0.125522,7.43478,8.93822,0.18779,7.57174,8.92268,0.189761,7.57824,8.92206,0.0770924,7.57977,8.93804,0.133619,7.58425,8.93468,0.190256,7.60003,8.95288,0.134704,7.59073,8.93406,0.0778993,7.44407,8.95336,0.0630857,7.43688,8.95407,0.187982,7.4229,8.98001,0.125548,7.35346,8.9679,0.0486799,7.3462,8.89034,0.0185215,7.33678,8.82737,0.0481969,7.33208,8.79603,0.119909,7.32859,8.82818,0.190707,7.33469,8.89144,0.220683,7.35004,8.98857,0.120022,7.34547,8.96868,0.191059,7.30189,8.85296,0.0447409,7.29523,8.81884,0.118549,7.29342,8.8538,0.191496,7.28841,8.81894,0.117527,7.28793,8.85431,0.182598,7.295,8.85456,0.0527968,7.51382,8.93487,0.0581881,7.50255,8.87929,0.0358514,7.49032,8.82014,0.0624209,7.48645,8.79168,0.129102,7.48268,8.82088,0.19545,7.49179,8.88031,0.22223,7.50495,8.93538,0.200794,7.50405,8.92558,0.19351,7.51203,8.92513,0.0654096,7.51506,8.9404,0.0649085,7.50694,8.94083,0.194382,7.51296,8.96247,0.129625,7.30232,8.96043,0.0489974,7.29716,8.96133,0.179229,7.33085,8.97523,0.0697237,7.32991,9.00228,0.118601,7.32537,8.97584,0.167253,7.30789,8.99112,0.0777162,7.3242,8.98432,0.0803173,7.30212,8.97966,0.15621,7.31988,8.98477,0.15581,7.32162,8.98932,0.118131,7.30787,9.00557,0.117038,6.9185,9.00413,-0.725684,6.93103,8.99079,-0.728392,6.94033,8.98744,-0.698472,6.92554,8.98343,-0.692468,6.92423,8.98468,-0.758502,6.90937,8.9903,-0.755847,6.94896,8.97993,-0.691279,6.93851,9.00136,-0.731245,6.92827,8.97626,-0.768344,6.92787,8.96836,-0.672414,6.89849,8.96288,-0.774891,7.08432,8.96365,-0.770892,7.09622,8.9494,-0.72297,7.07009,8.94338,-0.8158,7.06826,8.93175,-0.814033,7.09414,8.93773,-0.7222,7.09645,8.94523,-0.717721,7.09326,8.90487,-0.697125,7.08122,8.8597,-0.711246,7.06805,8.83525,-0.757554,7.05389,8.85328,-0.80644,7.05501,8.89589,-0.830508,7.06763,8.93857,-0.819947,6.89805,8.87387,-0.765508,6.92681,8.87999,-0.662905,6.90984,8.84921,-0.712029,6.93443,8.87996,-0.658124,6.91599,8.84908,-0.713347,6.90224,8.87238,-0.773585,6.9727,8.97357,-0.679621,6.95652,8.98936,-0.735639,6.97496,8.91127,-0.651253,6.9649,8.86013,-0.669749,6.94867,8.83136,-0.722698,6.93345,8.85287,-0.779347,6.93151,8.90196,-0.807151,6.94313,8.96781,-0.790281,7.01724,8.97842,-0.751598,7.04381,8.95979,-0.709522,7.01826,8.9539,-0.800676,7.12792,8.94025,-0.826398,7.14903,8.95753,-0.789047,7.15146,8.94578,-0.744372,7.13499,8.94627,-0.784255,7.11865,8.93075,-0.823014,7.14215,8.93627,-0.741142,7.04248,8.94753,-0.708459,7.01757,8.96571,-0.750969,7.01699,8.94157,-0.799364,7.03844,8.95654,-0.702113,7.01031,8.97766,-0.749553,7.04108,8.90537,-0.677177,7.03397,8.85124,-0.69366,7.02052,8.82598,-0.743226,7.00485,8.84439,-0.795096,7.0003,8.89594,-0.819441,7.01002,8.95006,-0.803734,7.14789,8.89696,-0.784633,6.89881,8.93798,-0.776174,6.8895,8.90379,-0.799472,6.89027,8.87285,-0.771404,6.90375,8.84941,-0.710721,6.92252,8.88074,-0.655222,6.93485,8.91409,-0.634863,6.92751,8.94766,-0.661492,7.1251,8.9362,-0.830384,7.10668,8.90018,-0.842517,7.10105,8.86384,-0.818182,7.11326,8.84598,-0.771253,7.12705,8.86996,-0.727604,7.14339,8.90881,-0.714643,7.15132,8.94236,-0.739034,7.14101,8.94555,-0.785936,6.48998,8.7564,0.865961,6.46722,8.68488,0.852216,6.54609,8.80882,0.851895,6.55622,8.80221,0.840759,6.47558,8.68075,0.839265,6.46589,8.67697,0.847064,6.48167,8.63833,0.800025,6.53391,8.64287,0.755223,6.5992,8.6927,0.742157,6.62125,8.76636,0.759728,6.60448,8.81224,0.806317,6.55366,8.81314,0.847421,6.32748,8.74005,0.709919,6.35223,8.82097,0.721814,6.36035,8.68477,0.651814,6.41012,8.69564,0.602493,6.46305,8.75357,0.578757,6.48581,8.83036,0.599296,6.47095,8.88149,0.646876,6.40717,8.88474,0.70612,6.4109,8.79216,0.788117,6.4085,8.71301,0.791551,6.48538,8.83694,0.790339,6.59284,8.77462,0.91993,6.56108,8.72354,0.947204,6.53359,8.66719,0.924406,6.55398,8.72546,0.9165,6.59282,8.77418,0.90039,6.52987,8.66719,0.902945,6.41884,8.70731,0.779712,6.42432,8.78481,0.778594,6.49683,8.83005,0.779279,6.40111,8.70694,0.780282,6.40673,8.79388,0.778853,6.42628,8.65755,0.727389,6.48666,8.66028,0.680364,6.54453,8.71651,0.661859,6.56966,8.79193,0.680227,6.55189,8.84124,0.732692,6.48635,8.84522,0.778782,6.60418,8.69767,0.891154,6.59789,8.77969,0.915192,6.6333,8.79025,0.871189,6.64581,8.75014,0.828429,6.62506,8.68232,0.808568,6.56832,8.63516,0.825169,6.5307,8.62595,0.871525,6.53111,8.66018,0.91966,6.56074,8.72234,0.92385,1.21737,9.53133,-0.448082,1.40162,9.47178,0.262551,1.30654,9.63357,-0.206991,1.46176,9.13475,-0.650022,1.08078,9.33628,-0.602687,1.39849,9.63128,-0.00197868,1.62297,8.80308,0.0993095,1.42615,8.79005,0.356225,1.60033,8.58477,-0.287381,1.61991,8.63059,-0.0815446,1.50952,8.62187,-0.55945,1.74763,9.52214,-0.250404,1.56093,9.39883,-0.511213,1.76818,9.37851,0.292151,1.80179,9.51701,0.049988,1.48199,8.83394,-0.625891,1.5896,8.5393,-0.40615,1.69956,9.02634,0.285672,1.44712,9.01548,0.322602,3.09687,8.95932,0.14535,3.08718,8.70514,-0.368344,3.07203,8.94841,-0.668311,3.11801,9.32407,-0.0429022,3.11668,9.14076,0.0716837,3.07562,9.34108,-0.550414,3.10482,9.42212,-0.283003,3.08379,8.73221,-0.539643,3.09132,8.68293,-0.055541,3.09109,8.67669,-0.205581,3.09544,8.76411,0.0682914,3.07723,9.22892,-0.625634,3.36671,9.25246,-0.650018,3.37855,8.77694,-0.0104906,3.38181,8.69485,-0.223619,3.38079,8.69957,-0.0974994,3.37528,8.76717,-0.514176,3.37729,9.4551,-0.28725,3.36303,9.38132,-0.573674,3.41171,9.15168,-0.062825,3.39639,9.35403,-0.0867581,3.38207,8.98253,-0.729022,3.37941,8.72097,-0.378073,3.38992,8.95899,0.0306416,3.67677,8.92032,0.0464183,3.66354,8.73627,-0.395405,3.72276,9.01041,-0.663786,3.68358,9.37423,-0.0602922,3.70415,9.13216,-0.0408277,3.6502,9.44046,-0.507057,3.65983,9.49152,-0.236385,3.66036,8.79432,-0.519406,3.66423,8.68611,-0.10913,3.66553,8.69458,-0.240357,3.66213,8.74923,-0.000624639,3.65391,9.30373,-0.592611,2.12035,8.95443,0.312094,2.75305,8.94448,0.260216,2.16271,9.24464,0.287933,2.77786,9.16575,0.206228,2.07626,8.73634,0.17369,2.73451,8.72889,0.164155,1.96736,8.6939,-0.554391,2.68385,8.72217,-0.526497,1.99516,8.60825,-0.41789,2.69115,8.68961,-0.4107,2.01594,8.57385,-0.25797,2.70093,8.63924,-0.244334,1.95311,8.91474,-0.627429,2.66799,8.94808,-0.654772,1.93176,9.16286,-0.650022,2.66683,9.16658,-0.644515,2.17526,9.47259,0.0604886,2.78538,9.37328,0.0133864,2.11494,9.51083,-0.250259,2.76784,9.46297,-0.262635,1.99683,9.40619,-0.511213,2.69077,9.37026,-0.520064,2.02916,8.63061,-0.0048831,2.70828,8.64084,-0.00291803,4.52807,8.7375,-0.382488,5.09983,8.84914,-0.41521,4.52471,8.66704,-0.276249,5.10077,8.77179,-0.350961,4.52052,8.65553,-0.139298,5.09616,8.73323,-0.245183,4.5198,9.35512,-0.0195722,5.06645,9.20669,0.0332032,4.52124,9.40164,-0.250677,5.06891,9.29213,-0.137966,4.52469,9.33567,-0.368075,5.07334,9.28151,-0.244325,4.53143,9.19359,0.0886739,5.0736,9.05948,0.0881668,4.54947,8.93939,0.0451699,5.08254,8.89592,0.0238059,4.52699,9.13609,-0.548565,5.08579,9.1881,-0.435938,4.525,8.94031,-0.546353,5.09371,9.03931,-0.488755,4.52656,8.84329,-0.485265,5.0956,8.95223,-0.467176,4.53099,8.7583,-0.00825124,5.08897,8.78147,-0.0957502,1.8845,8.99403,0.280685,1.91614,9.29815,0.287264,1.85305,8.77042,0.0772314,1.68028,8.62722,-0.539282,1.72112,8.56653,-0.394336,1.82966,8.59072,-0.258301,1.67277,8.81657,-0.601814,1.67484,9.1225,-0.650022,1.92429,9.50662,0.0688235,1.91382,9.52706,-0.248198,1.82611,9.39765,-0.510453,1.81626,8.66679,-0.0637031,4.07704,8.71165,-0.306155,4.07424,8.67358,-0.185196,4.07252,8.70179,-0.0614413,4.06888,9.43301,-0.133696,4.06918,9.42688,-0.386892,4.07176,9.32186,-0.487957,4.08696,9.29436,0.0117633,4.10634,9.04203,0.00221113,4.07357,9.05848,-0.610871,4.07477,8.86157,-0.533149,4.07552,8.78435,-0.438063,4.08584,8.84215,0.0248275,3.08146,9.1045,-0.684916,3.38072,9.14539,-0.711113,3.07649,8.86627,-0.621626,3.37006,8.85808,-0.642737,3.19366,9.1712,-0.675955,3.39306,9.18687,-0.620804,3.71482,9.18257,-0.573226,4.52613,9.24514,-0.485524,5.08041,9.25126,-0.357614,4.07331,9.19131,-0.580949,3.17298,8.82723,-0.600068,3.36641,8.82177,-0.564851,3.67616,8.87822,-0.583936,4.52609,9.02983,-0.572456,5.09036,9.11299,-0.484586,4.07299,8.94309,-0.592349,3.61373,8.91056,-0.623096,3.64025,9.13445,-0.656145,3.66633,9.012,-0.660721,2.42859,8.95404,0.291979,2.45874,9.1947,0.252357,2.39964,8.73532,0.17919,2.30919,8.72175,-0.543404,2.32652,8.65817,-0.417001,2.34131,8.60763,-0.250857,2.29334,8.93877,-0.641359,2.28827,9.16701,-0.647533,2.4664,9.42954,0.0409799,2.45192,9.48577,-0.255204,2.33209,9.38896,-0.515213,2.35503,8.63533,0.00310197,5.57868,9.20879,-0.0817853,5.58386,8.98781,-0.489309,5.58018,8.77341,-0.336416,5.58052,8.82284,-0.424443,5.57914,8.7858,-0.184473,5.57835,8.85716,-0.0425029,5.57709,8.97779,0.0606541,5.57611,9.10623,0.0496596,5.57691,9.21536,-0.189068,5.57803,9.21069,-0.302691,5.5787,9.1733,-0.392374,5.57906,9.12122,-0.45773,5.57943,9.06255,-0.48134,5.58031,8.8963,-0.463737,1.27288,9.23853,-0.626354,1.50399,8.81033,0.228623,1.47326,9.58016,-0.236267,1.37966,9.46321,-0.480229,1.60657,9.56804,0.00531996,1.59537,9.4347,0.272245,1.56173,9.03012,0.304752,0.184512,10.9534,0.648641,0.0625059,11.0536,0.686716,0.130586,10.9714,0.653319,0.0877434,11.0066,0.666689,0.241311,10.9554,0.653367,0.292336,10.9771,0.666778,0.329818,11.0151,0.686832,0.0633538,11.0584,0.751761,0.0918354,11.034,0.794749,0.136845,11.014,0.823484,0.191529,11.0014,0.833591,0.247564,10.998,0.823532,0.296418,11.0045,0.794838,0.330654,11.0198,0.751877,0.0581236,11.1013,0.708867,0.347447,11.0596,0.708993,0.333042,11.0378,0.75968,0.298806,11.0225,0.80264,0.249952,11.016,0.831334,0.193917,11.0193,0.841393,0.139232,11.032,0.831286,0.094223,11.052,0.802551,0.0657414,11.0763,0.759564,0.0423543,11.0741,0.767425,0.0756519,11.0457,0.817681,0.128272,11.0223,0.851275,0.192203,11.0075,0.863091,0.257713,11.0036,0.851331,0.314828,11.0112,0.817785,0.354853,11.0291,0.76756,0.371694,11.0546,0.708303,0.0334484,11.1033,0.708156,0.0455516,11.0245,0.740042,0.073461,10.9752,0.70334,0.121232,10.9432,0.668057,0.181593,10.9332,0.639564,0.13413,10.9321,0.687524,0.0972931,10.9548,0.73931,0.0766898,10.9979,0.787039,0.125897,10.976,0.818454,0.134955,10.9381,0.763354,0.154512,10.9231,0.700536,0.179276,10.9173,0.705113,0.180712,10.9275,0.771812,0.185682,10.9622,0.829504,0.246944,10.9585,0.818507,0.2276,10.9247,0.763394,0.204652,10.9158,0.700558,0.226775,10.9188,0.687564,0.268479,10.9302,0.739384,0.300355,10.9656,0.787136,0.337784,10.9824,0.740169,0.297126,10.943,0.703437,0.242279,10.9257,0.668109,0.248802,10.9356,0.645156,0.30918,10.9612,0.661025,0.353533,11.0062,0.684754,0.117782,10.9545,0.645099,0.0670867,10.9961,0.66092,0.0372232,11.0518,0.684617,0.349584,11.0768,0.707206,0.111559,11.1965,0.658165,0.073027,11.1591,0.682735,0.222962,11.2192,0.635944,0.278873,11.2011,0.641675,0.32343,11.166,0.658056,0.349849,11.1192,0.682592,0.164209,11.2176,0.641734,0.344487,11.1211,0.746112,0.316597,11.1491,0.787098,0.272042,11.1715,0.814497,0.217607,11.1849,0.824138,0.161578,11.1874,0.814554,0.112485,11.1785,0.787203,0.0778026,11.1596,0.746249,0.0759193,11.1445,0.755676,0.110602,11.1634,0.79663,0.314713,11.1339,0.796525,0.342604,11.106,0.755539,0.0609269,11.1184,0.707355,0.270159,11.1563,0.823924,0.215724,11.1698,0.833565,0.159695,11.1722,0.823981,0.054254,11.1538,0.76303,0.0948013,11.1759,0.810909,0.152195,11.1863,0.842885,0.217698,11.1834,0.85409,0.281338,11.1677,0.842818,0.333427,11.1415,0.810786,0.366033,11.1088,0.76287,0.374193,11.0747,0.706365,0.0367266,11.1234,0.706538,0.158122,11.2348,0.632816,0.164927,11.2466,0.654748,0.110536,11.2325,0.692117,0.070362,11.1964,0.732615,0.108367,11.2171,0.777492,0.139624,11.2483,0.726464,0.18067,11.2552,0.673337,0.202952,11.2592,0.685751,0.180797,11.2558,0.749403,0.162163,11.2269,0.807463,0.223559,11.2242,0.817965,0.227788,11.2537,0.757441,0.228384,11.2581,0.690102,0.253091,11.252,0.685726,0.273442,11.2424,0.749355,0.283208,11.2094,0.8074,0.332031,11.1849,0.777377,0.310808,11.2237,0.726376,0.273314,11.2418,0.673289,0.285973,11.2291,0.654686,0.3342,11.2002,0.692002,0.362593,11.1543,0.732465,0.370242,11.1223,0.679502,0.340054,11.1758,0.651466,0.289142,11.2159,0.632748,0.225256,11.2366,0.626199,0.0539335,11.1679,0.679665,0.097962,11.2107,0.65159,0.136852,11.0884,0.849572,0.156724,11.1112,0.566051,0.1083,11.1305,0.597234,0.0744349,11.1434,0.645992,0.0602837,11.148,0.704899,0.0680009,11.1434,0.76499,0.0964115,11.1305,0.817114,0.141381,11.1112,0.849817,0.154279,11.1305,0.850515,0.120243,11.1662,0.818403,0.0991388,11.1901,0.766673,0.0939872,11.1985,0.706722,0.105573,11.1901,0.647675,0.132132,11.1662,0.598523,0.169621,11.1305,0.566748,0.188924,11.1434,0.567792,0.167799,11.1901,0.600452,0.152174,11.2213,0.650195,0.144428,11.2322,0.709449,0.14574,11.2213,0.769193,0.155911,11.1901,0.820331,0.173581,11.1434,0.851558,0.196351,11.148,0.852789,0.197983,11.1985,0.822606,0.20071,11.2322,0.772165,0.203927,11.2441,0.712666,0.207144,11.2322,0.653167,0.209871,11.1985,0.602726,0.211694,11.148,0.569023,0.234463,11.1434,0.570254,0.251943,11.1901,0.605001,0.262114,11.2213,0.656139,0.263426,11.2322,0.715883,0.25568,11.2213,0.775137,0.240055,11.1901,0.824881,0.21912,11.1434,0.854021,0.238423,11.1305,0.855064,0.275722,11.1662,0.826809,0.302281,11.1901,0.777657,0.313867,11.1985,0.71861,0.308715,11.1901,0.658659,0.28761,11.1662,0.606929,0.253766,11.1305,0.571298,0.266663,11.1112,0.571995,0.311442,11.1305,0.608218,0.339853,11.1434,0.660342,0.34757,11.148,0.720433,0.333419,11.1434,0.77934,0.299554,11.1305,0.828098,0.251321,11.1112,0.855761,0.25585,11.0884,0.856006,0.307922,11.0884,0.82855,0.344353,11.0884,0.779932,0.359405,11.0884,0.721073,0.350787,11.0884,0.660934,0.319811,11.0884,0.608671,0.271193,11.0884,0.57224,0.212334,11.0884,0.557188,0.266663,11.0656,0.571995,0.311442,11.0463,0.608218,0.339853,11.0333,0.660342,0.34757,11.0288,0.720433,0.333419,11.0333,0.77934,0.299554,11.0463,0.828098,0.251321,11.0656,0.855761,0.238423,11.0463,0.855064,0.275722,11.0105,0.826809,0.302281,10.9867,0.777657,0.313867,10.9783,0.71861,0.308715,10.9867,0.658659,0.28761,11.0105,0.606929,0.253766,11.0463,0.571298,0.234463,11.0333,0.570254,0.251943,10.9867,0.605001,0.262114,10.9555,0.656139,0.263426,10.9445,0.715883,0.25568,10.9555,0.775137,0.240055,10.9867,0.824881,0.21912,11.0333,0.854021,0.196351,11.0288,0.852789,0.197983,10.9783,0.822606,0.20071,10.9445,0.772165,0.203927,10.9327,0.712666,0.207144,10.9445,0.653167,0.209871,10.9783,0.602726,0.211694,11.0288,0.569023,0.188924,11.0333,0.567792,0.167799,10.9867,0.600452,0.152174,10.9555,0.650195,0.144428,10.9445,0.709449,0.14574,10.9555,0.769193,0.155911,10.9867,0.820331,0.173581,11.0333,0.851558,0.154279,11.0463,0.850515,0.120244,11.0105,0.818403,0.0991388,10.9867,0.766673,0.0939872,10.9783,0.706722,0.105573,10.9867,0.647675,0.132132,11.0105,0.598523,0.169621,11.0463,0.566748,0.156724,11.0656,0.566051,0.1083,11.0463,0.597234,0.074435,11.0333,0.645992,0.0602838,11.0288,0.7049,0.0680009,11.0333,0.76499,0.0964116,11.0463,0.817114,0.141381,11.0656,0.849817,0.0880429,11.0884,0.816662,0.0570667,11.0884,0.764398,0.0484487,11.0884,0.70426,0.0635008,11.0884,0.6454,0.0999315,11.0884,0.596782,0.152195,11.0884,0.565806,0.177035,11.0803,0.847026,0.181627,11.0734,0.847275,0.188499,11.0688,0.847646,0.196605,11.0672,0.848084,0.204711,11.0688,0.848523,0.211583,11.0734,0.848894,0.216175,11.0803,0.849142,0.217787,11.0884,0.84923,0.216175,11.0965,0.849142,0.211583,11.1034,0.848894,0.204711,11.108,0.848523,0.196605,11.1096,0.848084,0.188499,11.108,0.847646,0.181627,11.1034,0.847275,0.177035,11.0965,0.847026,0.175423,11.0884,0.846939,0.165666,11.0884,0.845582,0.168025,11.1003,0.845709,0.174741,11.1103,0.846073,0.184793,11.1171,0.846616,0.19665,11.1194,0.847257,0.208507,11.1171,0.847898,0.218558,11.1103,0.848442,0.225275,11.1003,0.848805,0.227633,11.0884,0.848933,0.225275,11.0765,0.848805,0.218558,11.0664,0.848442,0.208507,11.0597,0.847898,0.19665,11.0574,0.847257,0.184793,11.0597,0.846616,0.174741,11.0664,0.846073,0.168025,11.0765,0.845709,0.19665,11.0884,0.847257,0.138652,11.1123,0.851284,0.152169,11.1325,0.852014,0.1724,11.1461,0.853108,0.196264,11.1508,0.854399,0.220127,11.1461,0.855689,0.240358,11.1325,0.856783,0.253875,11.1123,0.857513,0.258622,11.0884,0.85777,0.253875,11.0645,0.857513,0.240358,11.0442,0.856783,0.220127,11.0307,0.855689,0.196264,11.0259,0.854399,0.1724,11.0307,0.853108,0.15217,11.0442,0.852014,0.138652,11.0645,0.851284,0.133905,11.0884,0.851027,0.0619781,10.2846,0.956831,0.117528,10.2898,0.931531,0.151428,10.289,0.885222,0.169091,10.2823,0.825039,0.173168,10.2846,0.75253,0.170341,10.2841,0.692479,0.167581,10.2833,0.625752,0.169464,10.2846,0.558823,0.0691909,10.2846,0.98079,0.133247,10.2894,0.950998,0.17582,10.2889,0.896847,0.200442,10.2824,0.830861,0.210127,10.2846,0.753815,0.21365,10.284,0.691972,0.211296,10.2833,0.625179,0.207948,10.2846,0.558547,0.0619781,10.2208,0.956831,0.117528,10.2208,0.931531,0.153709,10.2208,0.883235,0.171067,10.2208,0.825951,0.172664,10.2208,0.755081,0.17024,10.2208,0.692479,0.166777,10.2208,0.625752,0.169464,10.2208,0.558823,0.0680708,10.2208,0.976534,0.130261,10.2208,0.949878,0.172491,10.2208,0.896208,0.205483,10.2208,0.691972,0.201333,10.2208,0.558547,0.196275,10.2208,0.82703,0.202888,10.2208,0.756357,0.204317,10.2208,0.625179,0.0566604,10.2936,0.988537,0.123231,10.2936,0.961794,0.16225,10.3029,0.912605,0.20185,10.2909,0.84315,0.21338,10.2917,0.769939,0.218354,10.295,0.705403,0.217689,10.2907,0.63834,0.214369,10.2936,0.571856,0.0164408,10.2936,0.993532,-0.0164408,10.2936,0.993532,0.0841565,10.2936,0.981131,0.146449,10.3031,0.93212,0.186856,10.2918,0.886873,0.206023,10.2913,0.817819,0.216377,10.295,0.743097,0.219977,10.2909,0.67846,0.218361,10.2933,0.611824,0.0488204,10.2936,0.955946,0.10456,10.2946,0.933954,0.145216,10.3028,0.903216,0.160889,10.2908,0.834098,0.16846,10.2917,0.76751,0.165553,10.2949,0.705762,0.162125,10.2907,0.639298,0.162811,10.2936,0.57223,-0.00811154,10.2936,0.960681,0.00811154,10.2936,0.960681,0.00977064,10.2936,0.960681,-0.00977064,10.2936,0.960681,0.0727008,10.2936,0.949628,0.133068,10.3031,0.918368,0.150671,10.2928,0.872028,0.166911,10.2911,0.811521,0.167319,10.2949,0.741888,0.162937,10.2909,0.679285,0.159614,10.2934,0.612401,0.0553502,10.2208,0.986848,0.121734,10.2208,0.959217,0.172513,10.2208,0.909532,0.199633,10.2208,0.839568,0.21022,10.2208,0.77008,0.214646,10.2208,0.705382,0.213782,10.2208,0.638284,0.210748,10.2208,0.571834,0.0150628,10.2208,0.991858,-0.0150628,10.2208,0.991858,0.0822409,10.2208,0.978766,0.144598,10.2208,0.944006,0.185327,10.2208,0.886978,0.203584,10.2208,0.817506,0.211645,10.2208,0.745655,0.213892,10.2208,0.678412,0.214303,10.2208,0.611791,0.0483653,10.2208,0.954054,0.103475,10.2208,0.932338,0.143299,10.2208,0.891421,0.162988,10.2208,0.835006,0.163228,10.2208,0.767369,0.159764,10.2208,0.705783,0.158917,10.2208,0.639354,0.159817,10.2208,0.572252,-0.00772425,10.2208,0.958773,0.00772425,10.2208,0.958773,0.00938335,10.2208,0.958773,-0.00938335,10.2208,0.958773,0.0720357,10.2208,0.947799,0.121494,10.2208,0.91831,0.153146,10.2208,0.869546,0.164905,10.2208,0.812041,0.165546,10.2208,0.74438,0.161999,10.2208,0.679333,0.156271,10.2208,0.612434,0.00180238,10.2846,0.965329,-0.00180238,10.2846,0.965329,0.0627708,10.2846,0.956302,0.118104,10.29,0.930863,0.151369,10.2889,0.884318,0.16903,10.2823,0.824015,0.172645,10.2847,0.751456,0.169675,10.2839,0.691525,0.166932,10.2834,0.624785,0.00180238,10.2208,0.965329,-0.00180238,10.2208,0.965329,0.0627708,10.2208,0.956302,0.118104,10.2208,0.930863,0.153801,10.2208,0.882279,0.170875,10.2208,0.825131,0.172301,10.2208,0.754213,0.169779,10.2208,0.691525,0.166076,10.2208,0.624785,0.00179212,10.2208,0.990967,-0.00179212,10.2208,0.990967,0.0691415,10.2208,0.976565,0.131352,10.2208,0.949586,0.173205,10.2208,0.8956,0.196927,10.2208,0.826328,0.203377,10.2208,0.7555,0.20601,10.2208,0.690988,0.204916,10.2208,0.624209,0.00179213,10.2846,0.990967,-0.00179213,10.2846,0.990967,0.0702616,10.2846,0.980821,0.134338,10.2897,0.950706,0.17655,10.2886,0.896223,0.200998,10.2824,0.829887,0.210739,10.2848,0.752737,0.214311,10.2839,0.690988,0.21188,10.2834,0.624209,0.0680248,10.2846,0.98152,0.132327,10.2891,0.952004,0.175642,10.2892,0.898067,0.200708,10.2823,0.832283,0.21051,10.2844,0.755307,0.214184,10.2842,0.69324,0.212003,10.2831,0.626427,0.208556,10.2846,0.559807,0.060712,10.2846,0.956751,0.116272,10.2897,0.931776,0.150689,10.2892,0.886035,0.168159,10.2823,0.826127,0.172651,10.2844,0.75393,0.169811,10.2842,0.69374,0.166971,10.2831,0.627032,0.168834,10.2846,0.560093,0.0669047,10.2208,0.977264,0.129341,10.2208,0.950884,0.172338,10.2208,0.897441,0.196438,10.2208,0.828114,0.203445,10.2208,0.757438,0.206197,10.2208,0.69324,0.205086,10.2208,0.626427,0.201941,10.2208,0.559807,0.0607121,10.2208,0.956751,0.116272,10.2208,0.931776,0.152884,10.2208,0.884111,0.170425,10.2208,0.826957,0.171897,10.2208,0.756067,0.16938,10.2208,0.69374,0.166122,10.2208,0.627032,0.168834,10.2208,0.560093,0.0603696,10.1093,0.934996,0.0652662,10.1093,0.933409,0.113624,10.1093,0.910282,0.118359,10.1093,0.907353,0.1435,10.1093,0.865146,0.145787,10.1093,0.859342,0.16148,10.1093,0.802526,0.163702,10.1093,0.798261,0.163021,10.1093,0.736203,0.163782,10.1093,0.732521,0.159798,10.1093,0.676213,0.160364,10.1093,0.671421,0.161005,10.1093,0.609506,0.160335,10.1093,0.603496,0.0708864,10.1093,0.96993,0.0786179,10.1093,0.968047,0.137237,10.1093,0.939525,0.144583,10.1093,0.935402,0.181195,10.1093,0.883854,0.185541,10.1093,0.874809,0.224421,10.1093,0.675475,0.223422,10.1093,0.670468,0.207766,10.1093,0.811774,0.207934,10.1093,0.820616,0.21976,10.1093,0.7383,0.22195,10.1093,0.74353,0.218139,10.1093,0.608657,0.219818,10.1093,0.61672,0.159817,10.1093,0.555916,0.170188,10.1093,0.543756,0.162785,10.1093,0.623017,0.160586,10.1093,0.615982,0.158134,10.1093,0.689447,0.15757,10.1093,0.681452,0.161581,10.1093,0.748302,0.160664,10.1093,0.740997,0.156534,10.1093,0.815024,0.157666,10.1093,0.807887,0.139036,10.1093,0.87683,0.140443,10.1093,0.870708,0.103475,10.1093,0.916002,0.107867,10.1093,0.912577,0.0483653,10.1093,0.937717,0.0547826,10.1093,0.935694,0.171007,10.1093,0.542487,0.217489,10.1093,0.566984,0.204863,10.1093,0.543471,0.219498,10.1093,0.628694,0.226845,10.1093,0.689046,0.227086,10.1093,0.680896,0.220477,10.1093,0.751013,0.205526,10.1093,0.826506,0.175067,10.1093,0.897282,0.177778,10.1093,0.892961,0.124315,10.1093,0.947074,0.130147,10.1093,0.944721,0.0571156,10.1093,0.974093,0.0630157,10.1093,0.972922,0.204078,10.1093,0.54221,0.217848,10.1093,0.590233,0.218077,10.1093,0.597439,0.21784,10.1093,0.652631,0.217618,10.1093,0.729157,0.219057,10.1093,0.734341,0.208102,10.1093,0.799362,0.208586,10.1093,0.804968,0.188957,10.1093,0.868674,0.147584,10.1093,0.928789,0.0848217,10.1093,0.966624,0.0168281,10.1093,0.979102,-0.0168281,10.1093,0.979102,-0.00582987,10.1093,0.980618,0.00582987,10.1093,0.980618,0.00748897,10.1093,0.980618,-0.00748897,10.1093,0.980618,0.160185,10.1093,0.596098,0.161976,10.1093,0.662997,0.165546,10.1093,0.727781,0.164792,10.1093,0.792642,0.14857,10.1093,0.852106,0.121494,10.1093,0.901974,0.0720357,10.1093,0.931462,-0.0077243,10.1093,0.942437,0.0077243,10.1093,0.942437,0.0093834,10.1093,0.942437,-0.0093834,10.1093,0.942437,-0.00428974,10.1093,0.942442,0.00428974,10.1093,0.942442,0.00594884,10.1093,0.942442,-0.00594884,10.1093,0.942442,0.0616581,10.165,0.947879,0.0659687,10.165,0.945681,0.11682,10.165,0.922562,0.119623,10.165,0.91886,0.152678,10.165,0.874832,0.153873,10.165,0.870037,0.169089,10.165,0.818348,0.169074,10.165,0.812431,0.171977,10.165,0.747727,0.171532,10.165,0.743878,0.169791,10.165,0.684361,0.169349,10.165,0.679163,0.164965,10.165,0.617645,0.16432,10.165,0.61239,0.0748679,10.165,0.972133,0.0693325,10.165,0.973153,0.138057,10.165,0.939759,0.1334,10.165,0.943083,0.179292,10.165,0.885226,0.175967,10.165,0.890538,0.214051,10.165,0.678554,0.213972,10.165,0.683849,0.200581,10.165,0.821081,0.200366,10.165,0.825632,0.210249,10.165,0.749294,0.21179,10.165,0.75352,0.214218,10.165,0.617043,0.216301,10.165,0.622342,0.162675,10.165,0.57047,0.169149,10.165,0.556344,0.161119,10.165,0.637442,0.16335,10.165,0.623026,0.163138,10.165,0.703813,0.167655,10.165,0.689654,0.165174,10.165,0.764956,0.169961,10.165,0.751597,0.161659,10.165,0.834162,0.166988,10.165,0.823561,0.140627,10.165,0.887863,0.149878,10.165,0.878554,0.0992112,10.165,0.927642,0.112318,10.165,0.924321,0.0425417,10.165,0.947732,0.056584,10.165,0.948202,0.17722,10.165,0.55216,0.208249,10.165,0.55605,0.214757,10.165,0.570042,0.219434,10.165,0.636521,0.215947,10.165,0.689237,0.219424,10.165,0.703681,0.214376,10.165,0.768093,0.199069,10.165,0.838135,0.173819,10.165,0.895705,0.169055,10.165,0.907118,0.128976,10.165,0.94681,0.117128,10.165,0.956757,0.0641137,10.165,0.975239,0.0503588,10.165,0.981188,0.200175,10.165,0.55199,0.216064,10.165,0.597389,0.214515,10.165,0.611807,0.21501,10.165,0.664011,0.215112,10.165,0.73156,0.21079,10.165,0.745285,0.206947,10.165,0.80107,0.201845,10.165,0.816646,0.189048,10.165,0.869907,0.150575,10.165,0.930211,0.0903151,10.165,0.969733,0.0225354,10.165,0.984835,-0.0225354,10.165,0.984835,-0.0048991,10.165,0.983314,0.0048991,10.165,0.983314,0.0065582,10.165,0.983314,-0.0065582,10.165,0.983314,0.162015,10.165,0.597965,0.166863,10.165,0.664858,0.167839,10.165,0.730852,0.167182,10.165,0.795737,0.155813,10.165,0.856243,0.12573,10.165,0.906829,0.077206,10.165,0.938174,-0.00338802,10.165,0.955607,0.00338802,10.165,0.955607,0.00504712,10.165,0.955607,-0.00504712,10.165,0.955607,0.01645,10.165,0.951123,-0.01645,10.165,0.951123,0.061963,10.2181,0.956408,0.0629219,10.2181,0.9558,0.117495,10.2181,0.931107,0.118176,10.2181,0.930296,0.153677,10.2181,0.882827,0.153818,10.2181,0.881694,0.171012,10.2181,0.825568,0.170805,10.2181,0.824556,0.17258,10.2181,0.754718,0.172215,10.2181,0.75369,0.170162,10.2181,0.692095,0.16969,10.2181,0.690941,0.16673,10.2181,0.625369,0.165984,10.2181,0.624199,0.0704793,10.2181,0.980411,0.0691976,10.2181,0.980429,0.134514,10.2181,0.950189,0.133255,10.2181,0.950624,0.176579,10.2181,0.896579,0.175724,10.2181,0.897358,0.213471,10.2181,0.6904,0.212957,10.2181,0.691588,0.200218,10.2181,0.827494,0.200332,10.2181,0.828731,0.209238,10.2181,0.755844,0.209792,10.2181,0.757118,0.21262,10.2181,0.624795,0.213366,10.2181,0.626234,0.159952,10.2181,0.572168,0.168849,10.2181,0.559915,0.159068,10.2181,0.639263,0.166049,10.2181,0.626843,0.159805,10.2181,0.70569,0.169237,10.2181,0.693547,0.163204,10.2181,0.767255,0.171747,10.2181,0.755853,0.162975,10.2181,0.834886,0.170318,10.2181,0.826731,0.143172,10.2181,0.891253,0.152748,10.2181,0.883844,0.103274,10.2181,0.932116,0.116085,10.2181,0.931424,0.04809,10.2181,0.953755,0.0605169,10.2181,0.956347,0.169821,10.2181,0.558508,0.208542,10.2181,0.559629,0.21724,10.2181,0.57175,0.220604,10.2181,0.638201,0.213683,10.2181,0.693051,0.221142,10.2181,0.705302,0.215748,10.2181,0.769986,0.203074,10.2181,0.840127,0.175459,10.2181,0.898719,0.175213,10.2181,0.910478,0.132169,10.2181,0.951759,0.123975,10.2181,0.963096,0.0678399,10.2181,0.981223,0.0567961,10.2181,0.989993,0.207591,10.2181,0.558237,0.221434,10.2181,0.61111,0.213237,10.2181,0.623623,0.220256,10.2181,0.677731,0.217392,10.2181,0.745152,0.20973,10.2181,0.754886,0.208412,10.2181,0.817048,0.200909,10.2181,0.826647,0.188961,10.2181,0.886892,0.147726,10.2181,0.944421,0.0850813,10.2181,0.982335,0.0170979,10.2181,0.994938,-0.0170979,10.2181,0.994938,0.00201743,10.2181,0.990605,-0.00201743,10.2181,0.990605,0.156589,10.2181,0.61175,0.162264,10.2181,0.678649,0.165696,10.2181,0.743825,0.165014,10.2181,0.811271,0.153272,10.2181,0.868917,0.121694,10.2181,0.917768,0.0722801,10.2181,0.947344,0.00195577,10.2181,0.96487,-0.00195577,10.2181,0.96487,-0.00805831,10.2181,0.958412,0.00805831,10.2181,0.958412,0.00971741,10.2181,0.958412,-0.00971741,10.2181,0.958412,0.0691909,10.2238,0.98079,0.133247,10.2238,0.950998,0.175714,10.2238,0.897666,0.212872,10.2238,0.691972,0.207948,10.2238,0.558547,0.0619781,10.2238,0.956831,0.117528,10.2238,0.931531,0.153714,10.2238,0.883231,0.171065,10.2238,0.825966,0.17281,10.2238,0.755063,0.170386,10.2238,0.692479,0.166764,10.2238,0.625752,0.169464,10.2238,0.558823,0.0570939,10.2242,0.99034,0.124263,10.2242,0.963334,0.175436,10.2242,0.910592,0.203161,10.2242,0.840183,0.215831,10.2242,0.770073,0.22126,10.2242,0.705383,0.220779,10.2242,0.638287,0.21722,10.2242,0.571836,0.0168096,10.2242,0.995348,-0.0168096,10.2242,0.995348,0.08479,10.2242,0.982873,0.14752,10.2242,0.945059,0.188856,10.2242,0.887694,0.208456,10.2242,0.817717,0.217432,10.2242,0.745743,0.220423,10.2242,0.678414,0.221594,10.2242,0.611792,0.0483869,10.2242,0.954144,0.103527,10.2242,0.932415,0.143379,10.2242,0.891468,0.163082,10.2242,0.835026,0.163577,10.2242,0.767376,0.160141,10.2242,0.705782,0.15907,10.2242,0.639351,0.15996,10.2242,0.572251,-0.0077427,10.2242,0.958864,0.0077427,10.2242,0.958864,0.0094018,10.2242,0.958864,-0.0094018,10.2242,0.958864,0.0720674,10.2242,0.947886,0.121558,10.2242,0.918377,0.153232,10.2242,0.869581,0.165012,10.2242,0.812057,0.165677,10.2242,0.744384,0.162149,10.2242,0.679331,0.15643,10.2242,0.612433,0.00179212,10.2238,0.990967,-0.00179212,10.2238,0.990967,0.0702616,10.2238,0.980821,0.134338,10.2238,0.950706,0.176458,10.2238,0.897054,0.200812,10.2238,0.827102,0.209641,10.2238,0.755383,0.213369,10.2238,0.690988,0.213079,10.2238,0.624209,0.00180238,10.2238,0.965329,-0.00180238,10.2238,0.965329,0.0627708,10.2238,0.956302,0.118104,10.2238,0.930863,0.153806,10.2238,0.882275,0.170872,10.2238,0.825142,0.172452,10.2238,0.754196,0.16993,10.2238,0.691525,0.166063,10.2238,0.624785,0.0680248,10.2238,0.98152,0.132327,10.2238,0.952005,0.175538,10.2238,0.898866,0.200316,10.2238,0.82887,0.20971,10.2238,0.757297,0.213557,10.2238,0.69324,0.213201,10.2238,0.626427,0.208556,10.2238,0.559807,0.0607121,10.2238,0.956751,0.116272,10.2238,0.931776,0.152885,10.2238,0.88411,0.170424,10.2238,0.82697,0.172048,10.2238,0.75605,0.169531,10.2238,0.69374,0.16611,10.2238,0.627032,0.168834,10.2238,0.560093,0.212495,10.2238,0.625179,0.209177,10.2238,0.756183,0.200174,10.2238,0.82779,0.0691909,10.2542,0.98079,0.133247,10.2566,0.950998,0.175767,10.2563,0.897257,0.213547,10.2761,0.691972,0.207948,10.2765,0.558547,0.0619781,10.2542,0.956831,0.117528,10.2568,0.931531,0.152571,10.2564,0.884226,0.169353,10.2746,0.825162,0.173121,10.2765,0.752865,0.170347,10.2761,0.692479,0.167473,10.2754,0.625752,0.169464,10.2765,0.558823,0.0568771,10.2589,0.989438,0.123747,10.2589,0.962564,0.163571,10.2951,0.912403,0.202023,10.2821,0.842758,0.213704,10.2827,0.769957,0.218739,10.2856,0.7054,0.218098,10.2819,0.638333,0.214746,10.2844,0.571853,0.0166252,10.2589,0.99444,-0.0166252,10.2589,0.99444,0.0844732,10.2589,0.982002,0.146556,10.2952,0.933416,0.18712,10.2829,0.886982,0.206345,10.2824,0.817805,0.216517,10.2857,0.743447,0.220036,10.282,0.678454,0.218789,10.2842,0.61182,0.0486037,10.2589,0.955045,0.104043,10.2594,0.933185,0.144297,10.2635,0.897342,0.161179,10.282,0.834221,0.167814,10.2828,0.767492,0.164836,10.2856,0.705765,0.161721,10.2819,0.639305,0.162433,10.2844,0.572233,-0.00792712,10.2589,0.959773,0.00792712,10.2589,0.959773,0.00958622,10.2589,0.959773,-0.00958622,10.2589,0.959773,0.0723841,10.2589,0.948757,0.127313,10.2637,0.918372,0.15101,10.2837,0.871705,0.16666,10.2823,0.811592,0.167102,10.2856,0.742218,0.162833,10.2821,0.679291,0.159192,10.2842,0.612405,0.00179212,10.2542,0.990967,-0.00179212,10.2542,0.990967,0.0702616,10.2542,0.980821,0.134338,10.2567,0.950706,0.176504,10.2562,0.896638,0.200973,10.2746,0.829519,0.210594,10.2767,0.753087,0.214186,10.2759,0.690988,0.212039,10.2755,0.624209,0.00180238,10.2542,0.965329,-0.00180238,10.2542,0.965329,0.0627708,10.2542,0.956302,0.118104,10.2569,0.930863,0.152588,10.2563,0.883296,0.169274,10.2746,0.824164,0.172619,10.2767,0.751819,0.169709,10.2759,0.691525,0.166817,10.2755,0.624785,0.0680248,10.2542,0.98152,0.132327,10.2565,0.952004,0.17559,10.2565,0.898466,0.200656,10.2746,0.831832,0.210404,10.2764,0.755571,0.214101,10.2762,0.69324,0.212162,10.2753,0.626427,0.208556,10.2765,0.559807,0.0607121,10.2542,0.956751,0.116272,10.2567,0.931776,0.151787,10.2565,0.885072,0.168459,10.2745,0.826239,0.172571,10.2764,0.754211,0.169774,10.2762,0.69374,0.166857,10.2753,0.627032,0.168834,10.2765,0.560093,0.211455,10.2754,0.625179,0.210001,10.2766,0.754128,0.200406,10.2746,0.830454,0.0653429,10.2979,0.972767,0.12395,10.2923,0.946074,0.159715,10.2932,0.897217,0.17835,10.3003,0.833723,0.182651,10.2979,0.757224,0.179668,10.2984,0.693868,0.176757,10.2992,0.623469,0.178743,10.2979,0.552858,0.0729526,10.2979,0.998044,0.140534,10.2928,0.966612,0.185449,10.2934,0.909482,0.211426,10.3002,0.839865,0.221643,10.2978,0.758579,0.22536,10.2985,0.693333,0.222878,10.2992,0.622865,0.219345,10.2979,0.552566,0.0653429,10.3652,0.972767,0.12395,10.3652,0.946074,0.162122,10.3652,0.895121,0.180434,10.3652,0.834685,0.182119,10.3652,0.759915,0.179562,10.3652,0.693868,0.175909,10.3652,0.623469,0.178743,10.3652,0.552858,0.0717709,10.3652,0.993553,0.137383,10.3652,0.965431,0.181937,10.3652,0.908808,0.216745,10.3652,0.693333,0.212366,10.3652,0.552566,0.20703,10.3652,0.835823,0.214006,10.3652,0.761261,0.215514,10.3652,0.622865,0.0597325,10.2884,1.00622,0.129966,10.2884,0.978003,0.171133,10.2785,0.926107,0.212911,10.2912,0.852831,0.225075,10.2904,0.775591,0.230324,10.2869,0.707503,0.229622,10.2914,0.63675,0.226119,10.2884,0.566608,0.0172999,10.2884,1.01149,-0.0172999,10.2884,1.01149,0.0887417,10.2884,0.998404,0.154462,10.2784,0.946695,0.197092,10.2902,0.898959,0.217314,10.2908,0.826105,0.228238,10.2869,0.747271,0.232036,10.2913,0.679078,0.230331,10.2887,0.608775,0.0514612,10.2884,0.971833,0.110267,10.2873,0.948631,0.153161,10.2787,0.916202,0.169696,10.2914,0.84328,0.177684,10.2904,0.773028,0.174617,10.287,0.707883,0.171001,10.2914,0.637761,0.171724,10.2884,0.567003,-0.00860354,10.2884,0.976828,0.00860354,10.2884,0.976828,0.0102626,10.2884,0.976828,-0.0102626,10.2884,0.976828,0.0766556,10.2884,0.965167,0.140345,10.2784,0.932187,0.158916,10.2892,0.883298,0.17605,10.291,0.819461,0.176481,10.287,0.745996,0.171858,10.2913,0.679948,0.168351,10.2886,0.609384,0.0583503,10.3652,1.00444,0.128387,10.3652,0.975284,0.18196,10.3652,0.922865,0.210573,10.3652,0.849051,0.221741,10.3652,0.775739,0.226411,10.3652,0.707481,0.2255,10.3652,0.636691,0.222299,10.3652,0.566585,0.015846,10.3652,1.00972,-0.015846,10.3652,1.00972,0.0867206,10.3652,0.995909,0.152509,10.3652,0.959236,0.195479,10.3652,0.89907,0.214741,10.3652,0.825775,0.223246,10.3652,0.74997,0.225616,10.3652,0.679027,0.22605,10.3652,0.60874,0.050981,10.3652,0.969836,0.109124,10.3652,0.946926,0.151138,10.3652,0.903758,0.171911,10.3652,0.844238,0.172164,10.3652,0.772879,0.16851,10.3652,0.707905,0.167616,10.3652,0.637819,0.168566,10.3652,0.567026,-0.00819493,10.3652,0.974816,0.00819493,10.3652,0.974816,0.00985403,10.3652,0.974816,-0.00985403,10.3652,0.974816,0.0759539,10.3652,0.963237,0.128133,10.3652,0.932126,0.161527,10.3652,0.880678,0.173933,10.3652,0.820009,0.17461,10.3652,0.748625,0.170868,10.3652,0.679999,0.164825,10.3652,0.609419,0.00185591,10.2979,0.981732,-0.00185591,10.2979,0.981732,0.0661791,10.2979,0.972209,0.124558,10.2922,0.94537,0.159653,10.2934,0.896263,0.178285,10.3003,0.832642,0.182099,10.2977,0.756091,0.178966,10.2986,0.692862,0.176072,10.2992,0.62245,0.00185591,10.3652,0.981732,-0.00185591,10.3652,0.981732,0.0661791,10.3652,0.972209,0.124558,10.3652,0.94537,0.162219,10.3652,0.894112,0.180231,10.3652,0.833819,0.181736,10.3652,0.758999,0.179075,10.3652,0.692862,0.175168,10.3652,0.62245,0.00184508,10.3652,1.00878,-0.00184508,10.3652,1.00878,0.0729004,10.3652,0.993586,0.138534,10.3652,0.965123,0.18269,10.3652,0.908166,0.207718,10.3652,0.835082,0.214523,10.3652,0.760357,0.2173,10.3652,0.692295,0.216147,10.3652,0.621841,0.00184509,10.2979,1.00878,-0.00184509,10.2979,1.00878,0.0740821,10.2979,0.998077,0.141685,10.2925,0.966305,0.18622,10.2936,0.908824,0.212012,10.3002,0.838838,0.22229,10.2977,0.757442,0.226058,10.2987,0.692295,0.223493,10.2992,0.621841,0.0717223,10.2979,0.998814,0.139563,10.2931,0.967674,0.185261,10.2931,0.910768,0.211707,10.3003,0.841366,0.222048,10.298,0.760154,0.225925,10.2983,0.694671,0.223623,10.2994,0.624182,0.219987,10.2979,0.553896,0.0640071,10.2979,0.972682,0.122624,10.2925,0.946333,0.158935,10.293,0.898075,0.177367,10.3003,0.83487,0.182105,10.2981,0.758701,0.17911,10.2982,0.695199,0.176113,10.2994,0.62482,0.178079,10.2979,0.554197,0.0705406,10.3652,0.994324,0.136412,10.3652,0.966493,0.181775,10.3652,0.910108,0.207202,10.3652,0.836967,0.214594,10.3652,0.762402,0.217497,10.3652,0.694671,0.216326,10.3652,0.624182,0.213008,10.3652,0.553896,0.0640072,10.3652,0.972682,0.122624,10.3652,0.946333,0.161251,10.3652,0.896045,0.179758,10.3652,0.835746,0.18131,10.3652,0.760955,0.178654,10.3652,0.695199,0.175218,10.3652,0.62482,0.178079,10.3652,0.554197,0.0636458,10.4828,0.94973,0.0688119,10.4828,0.948056,0.119831,10.4828,0.923656,0.124827,10.4828,0.920566,0.151351,10.4828,0.876037,0.153764,10.4828,0.869913,0.17032,10.4828,0.809971,0.172664,10.4828,0.805471,0.171946,10.4828,0.739999,0.172749,10.4828,0.736113,0.168546,10.4828,0.676707,0.169143,10.4828,0.671652,0.169819,10.4828,0.60633,0.169112,10.4828,0.599988,0.0747414,10.4828,0.986586,0.0828983,10.4828,0.9846,0.144743,10.4828,0.954508,0.152494,10.4828,0.950159,0.19112,10.4828,0.895774,0.195705,10.4828,0.886231,0.236724,10.4828,0.675929,0.23567,10.4828,0.670646,0.219153,10.4828,0.819728,0.21933,10.4828,0.829056,0.231807,10.4828,0.74221,0.234117,10.4828,0.747729,0.230097,10.4828,0.605434,0.231868,10.4828,0.61394,0.168566,10.4828,0.54979,0.179508,10.4828,0.536962,0.171697,10.4828,0.620584,0.169376,10.4828,0.613162,0.16679,10.4828,0.690669,0.166194,10.4828,0.682235,0.170427,10.4828,0.752763,0.169459,10.4828,0.745057,0.165102,10.4828,0.823156,0.166296,10.4828,0.815627,0.146641,10.4828,0.888363,0.148125,10.4828,0.881904,0.109124,10.4828,0.92969,0.113757,10.4828,0.926078,0.050981,10.4828,0.952601,0.0577514,10.4828,0.950466,0.180371,10.4828,0.535623,0.22941,10.4828,0.561467,0.21609,10.4828,0.53666,0.231531,10.4828,0.626574,0.239282,10.4828,0.690246,0.239536,10.4828,0.681648,0.232563,10.4828,0.755623,0.21679,10.4828,0.83527,0.184654,10.4828,0.909941,0.187515,10.4828,0.905382,0.13111,10.4828,0.962473,0.137263,10.4828,0.95999,0.0602128,10.4828,0.990979,0.0664376,10.4828,0.989742,0.215262,10.4828,0.535331,0.22979,10.4828,0.585996,0.230031,10.4828,0.593599,0.229781,10.4828,0.651828,0.229547,10.4828,0.732565,0.231065,10.4828,0.738033,0.219508,10.4828,0.806632,0.220018,10.4828,0.812548,0.199308,10.4828,0.879758,0.15566,10.4828,0.943182,0.0894434,10.4828,0.983098,0.0177085,10.4828,0.996264,-0.0177085,10.4828,0.996264,-0.00619631,10.4828,0.997862,0.00619631,10.4828,0.997862,0.00785541,10.4828,0.997862,-0.00785541,10.4828,0.997862,0.168954,10.4828,0.592183,0.170843,10.4828,0.662764,0.17461,10.4828,0.731113,0.173814,10.4828,0.799543,0.156699,10.4828,0.862279,0.128133,10.4828,0.914891,0.0759539,10.4828,0.946002,-0.00819498,10.4828,0.95758,0.00819498,10.4828,0.95758,0.00985408,10.4828,0.95758,-0.00985408,10.4828,0.95758,-0.00457143,10.4828,0.957586,0.00457143,10.4828,0.957586,0.00623053,10.4828,0.957586,-0.00623053,10.4828,0.957586,0.0650053,10.424,0.963322,0.069553,10.424,0.961003,0.123203,10.424,0.936612,0.12616,10.424,0.932706,0.161034,10.424,0.886255,0.162295,10.424,0.881196,0.178347,10.424,0.826663,0.178332,10.424,0.820421,0.181394,10.424,0.752156,0.180925,10.424,0.748096,0.179088,10.424,0.685303,0.178622,10.424,0.679819,0.173997,10.424,0.614917,0.173316,10.424,0.609372,0.078942,10.424,0.988911,0.073102,10.424,0.989986,0.145608,10.424,0.954755,0.140695,10.424,0.958262,0.189112,10.424,0.897222,0.185604,10.424,0.902825,0.225784,10.424,0.679177,0.2257,10.424,0.684763,0.211573,10.424,0.829547,0.211345,10.424,0.834348,0.221773,10.424,0.75381,0.223398,10.424,0.758268,0.22596,10.424,0.614282,0.228157,10.424,0.619872,0.17158,10.424,0.565145,0.178411,10.424,0.550243,0.169939,10.424,0.635803,0.172293,10.424,0.620593,0.172069,10.424,0.705826,0.176835,10.424,0.690887,0.174217,10.424,0.770334,0.179268,10.424,0.756239,0.170509,10.424,0.843348,0.176131,10.424,0.832163,0.14832,10.424,0.900004,0.15808,10.424,0.890182,0.104625,10.424,0.941971,0.118453,10.424,0.938467,0.044837,10.424,0.963167,0.059652,10.424,0.963662,0.186926,10.424,0.545828,0.219663,10.424,0.549933,0.226529,10.424,0.564694,0.231463,10.424,0.634831,0.227784,10.424,0.690448,0.231452,10.424,0.705686,0.226126,10.424,0.773643,0.209977,10.424,0.847539,0.183338,10.424,0.908277,0.178312,10.424,0.920318,0.136028,10.424,0.962194,0.123527,10.424,0.972689,0.0675959,10.424,0.992187,0.0530842,10.424,0.998464,0.211144,10.424,0.545648,0.227908,10.424,0.593546,0.226273,10.424,0.608757,0.226796,10.424,0.663834,0.226903,10.424,0.735099,0.222344,10.424,0.74958,0.218289,10.424,0.808435,0.212907,10.424,0.824867,0.199405,10.424,0.88106,0.158815,10.424,0.944681,0.0952392,10.424,0.986378,0.0237298,10.424,1.00231,-0.0237298,10.424,1.00231,-0.00521432,10.424,1.00071,0.00521432,10.424,1.00071,0.00687343,10.424,1.00071,-0.00687343,10.424,1.00071,0.170885,10.424,0.594154,0.176,10.424,0.664727,0.177029,10.424,0.734353,0.176336,10.424,0.802808,0.164341,10.424,0.866644,0.132602,10.424,0.920013,0.0814086,10.424,0.953083,-0.0036201,10.424,0.971476,0.0036201,10.424,0.971476,0.0052792,10.424,0.971476,-0.0052792,10.424,0.971476,0.0173095,10.424,0.966744,-0.0173095,10.424,0.966744,0.0653269,10.368,0.97232,0.0663386,10.368,0.971679,0.123915,10.368,0.945627,0.124633,10.368,0.944771,0.162088,10.368,0.894691,0.162236,10.368,0.893495,0.180377,10.368,0.83428,0.180158,10.368,0.833213,0.182031,10.368,0.759532,0.181646,10.368,0.758447,0.179479,10.368,0.693463,0.178981,10.368,0.692245,0.175859,10.368,0.623065,0.175072,10.368,0.621831,0.0743119,10.368,0.997643,0.0729596,10.368,0.997663,0.14187,10.368,0.965759,0.140541,10.368,0.966218,0.18625,10.368,0.909199,0.185348,10.368,0.910021,0.225172,10.368,0.691675,0.22463,10.368,0.692928,0.211189,10.368,0.836312,0.21131,10.368,0.837617,0.220706,10.368,0.76072,0.22129,10.368,0.762064,0.224274,10.368,0.622459,0.225061,10.368,0.623978,0.168708,10.368,0.566937,0.178094,10.368,0.55401,0.167775,10.368,0.637724,0.175141,10.368,0.624621,0.168553,10.368,0.707806,0.178504,10.368,0.694995,0.172139,10.368,0.772759,0.181152,10.368,0.76073,0.171897,10.368,0.844112,0.179645,10.368,0.835507,0.151005,10.368,0.90358,0.161107,10.368,0.895763,0.108911,10.368,0.946692,0.122427,10.368,0.945961,0.0506905,10.368,0.969521,0.0638013,10.368,0.972256,0.17912,10.368,0.552526,0.219971,10.368,0.553708,0.229148,10.368,0.566496,0.232697,10.368,0.636603,0.225396,10.368,0.694472,0.233264,10.368,0.707396,0.227574,10.368,0.77564,0.214203,10.368,0.849641,0.185069,10.368,0.911456,0.184808,10.368,0.923863,0.139396,10.368,0.967415,0.130751,10.368,0.979376,0.0715272,10.368,0.998501,0.0598757,10.368,1.00775,0.218969,10.368,0.552239,0.233573,10.368,0.608022,0.224925,10.368,0.621223,0.23233,10.368,0.678309,0.229309,10.368,0.749439,0.221225,10.368,0.759709,0.219834,10.368,0.825292,0.211918,10.368,0.835419,0.199313,10.368,0.898979,0.155809,10.368,0.959673,0.0897174,10.368,0.999674,0.0179931,10.368,1.01297,-0.0179931,10.368,1.01297,0.00208279,10.368,1.0084,-0.00208279,10.368,1.0084,0.16516,10.368,0.608697,0.171147,10.368,0.679277,0.174768,10.368,0.74804,0.174048,10.368,0.819196,0.16166,10.368,0.880015,0.128345,10.368,0.931554,0.0762117,10.368,0.962757,0.00201774,10.368,0.981247,-0.00201774,10.368,0.981247,-0.00854738,10.368,0.974434,0.00854738,10.368,0.974434,0.0102065,10.368,0.974434,-0.0102065,10.368,0.974434,0.0729526,10.362,0.998044,0.140534,10.362,0.966612,0.185338,10.362,0.910346,0.22454,10.362,0.693333,0.219345,10.362,0.552566,0.0653429,10.362,0.972767,0.12395,10.362,0.946074,0.162126,10.362,0.895117,0.180432,10.362,0.834701,0.182274,10.362,0.759896,0.179716,10.362,0.693868,0.175895,10.362,0.623469,0.178743,10.362,0.552858,0.0601899,10.3616,1.00812,0.131055,10.3616,0.979627,0.185044,10.3616,0.923983,0.214294,10.3616,0.8497,0.227662,10.3616,0.775732,0.233389,10.3616,0.707482,0.232882,10.3616,0.636694,0.229127,10.3616,0.566586,0.017689,10.3616,1.0134,-0.017689,10.3616,1.0134,0.08941,10.3616,1.00024,0.155591,10.3616,0.960347,0.199203,10.3616,0.899825,0.219881,10.3616,0.825997,0.229351,10.3616,0.750063,0.232507,10.3616,0.67903,0.233742,10.3616,0.608742,0.0510038,10.3616,0.969931,0.109178,10.3616,0.947007,0.151223,10.3616,0.903807,0.17201,10.3616,0.844259,0.172533,10.3616,0.772886,0.168907,10.3616,0.707904,0.167777,10.3616,0.637817,0.168716,10.3616,0.567025,-0.0082144,10.3616,0.974912,0.0082144,10.3616,0.974912,0.0098735,10.3616,0.974912,-0.0098735,10.3616,0.974912,0.0759873,10.3616,0.963329,0.128201,10.3616,0.932196,0.161618,10.3616,0.880715,0.174046,10.3616,0.820026,0.174747,10.3616,0.74863,0.171026,10.3616,0.679996,0.164992,10.3616,0.609417,0.00184508,10.362,1.00878,-0.00184508,10.362,1.00878,0.0740821,10.362,0.998077,0.141685,10.362,0.966305,0.186123,10.362,0.9097,0.211817,10.362,0.835899,0.221131,10.362,0.760234,0.225064,10.362,0.692295,0.224758,10.362,0.621841,0.00185591,10.362,0.981732,-0.00185591,10.362,0.981732,0.0661791,10.362,0.972209,0.124558,10.362,0.94537,0.162224,10.362,0.894108,0.180229,10.362,0.833832,0.181896,10.362,0.758982,0.179235,10.362,0.692862,0.175155,10.362,0.62245,0.0717223,10.362,0.998814,0.139563,10.362,0.967674,0.185152,10.362,0.911611,0.211292,10.362,0.837764,0.221204,10.362,0.762253,0.225262,10.362,0.694671,0.224887,10.362,0.624182,0.219987,10.362,0.553896,0.0640072,10.362,0.972682,0.122624,10.362,0.946333,0.161252,10.362,0.896044,0.179756,10.362,0.83576,0.18147,10.362,0.760937,0.178814,10.362,0.695199,0.175204,10.362,0.62482,0.178079,10.362,0.554197,0.224142,10.362,0.622865,0.220642,10.362,0.761078,0.211143,10.362,0.836625,0.0729526,10.33,0.998044,0.140534,10.3274,0.966612,0.185393,10.3277,0.909914,0.225252,10.3069,0.693333,0.219345,10.3064,0.552566,0.0653429,10.33,0.972767,0.12395,10.3272,0.946074,0.160921,10.3276,0.896167,0.178626,10.3084,0.833852,0.182601,10.3064,0.757577,0.179675,10.3069,0.693868,0.176643,10.3076,0.623469,0.178743,10.3064,0.552858,0.0599612,10.325,1.00717,0.130511,10.325,0.978815,0.172526,10.2868,0.925894,0.213094,10.3005,0.852416,0.225418,10.2998,0.775609,0.230729,10.2968,0.7075,0.230053,10.3007,0.636742,0.226517,10.2981,0.566605,0.0174944,10.325,1.01244,-0.0174944,10.325,1.01244,0.0890758,10.325,0.999323,0.154575,10.2867,0.948063,0.197371,10.2997,0.899073,0.217654,10.3002,0.826091,0.228385,10.2968,0.747641,0.232098,10.3006,0.679071,0.230783,10.2983,0.608771,0.0512325,10.325,0.970882,0.109723,10.3245,0.947819,0.152192,10.3201,0.910004,0.170002,10.3006,0.84341,0.177003,10.2998,0.773009,0.173861,10.2968,0.707885,0.170574,10.3007,0.637768,0.171326,10.2981,0.567006,-0.00840897,10.325,0.97587,0.00840897,10.325,0.97587,0.0100681,10.325,0.97587,-0.0100681,10.325,0.97587,0.0763215,10.325,0.964248,0.134273,10.32,0.932191,0.159273,10.2988,0.882956,0.175784,10.3003,0.819536,0.176251,10.2968,0.746345,0.171747,10.3006,0.679955,0.167906,10.2983,0.609388,0.00184509,10.33,1.00878,-0.00184509,10.33,1.00878,0.0740821,10.33,0.998077,0.141685,10.3273,0.966305,0.186171,10.3278,0.909262,0.211986,10.3084,0.838449,0.222137,10.3062,0.757812,0.225927,10.307,0.692295,0.223661,10.3075,0.621841,0.00185591,10.33,0.981732,-0.00185591,10.33,0.981732,0.0661791,10.33,0.972209,0.124558,10.3271,0.94537,0.160938,10.3277,0.895186,0.178542,10.3085,0.8328,0.182072,10.3062,0.756473,0.179001,10.307,0.692862,0.17595,10.3075,0.62245,0.0717223,10.33,0.998814,0.139563,10.3276,0.967674,0.185206,10.3275,0.91119,0.211652,10.3084,0.840889,0.221936,10.3065,0.760432,0.225837,10.3067,0.694671,0.223791,10.3077,0.624182,0.219987,10.3064,0.553896,0.0640071,10.33,0.972682,0.122624,10.3273,0.946333,0.160094,10.3275,0.897059,0.177683,10.3085,0.834988,0.182021,10.3065,0.758997,0.17907,10.3067,0.695199,0.175993,10.3077,0.62482,0.178079,10.3064,0.554197,0.223045,10.3076,0.622865,0.221511,10.3063,0.75891,0.211388,10.3084,0.839436,0.399454,10.1912,0.82599,0.452448,11.5694,0.616933,0.426792,11.5367,-0.348324,0.132732,10.1853,-0.400425,0.255323,9.89616,1.10514,0.38941,10.0171,0.925418,0.443333,10.1314,0.659111,0.392419,10.1217,0.395387,0.380406,10.0928,0.138624,0.378999,10.1807,-0.089564,0.366665,10.1909,-0.159978,0.425401,10.2982,0.753833,0.416764,10.4044,0.755624,0.371068,10.6271,0.80898,0.461082,11.2445,0.645257,0.462439,11.4362,0.637338,0.414528,10.371,-0.348619,0.52239,10.6349,-0.451086,0.551502,10.8753,-0.486473,0.522967,11.3342,-0.428964,0.459395,11.472,-0.373482,0.217016,11.6155,-0.432179,0.342097,11.5759,-0.390496,0.17906,11.6697,0.728054,0.335935,11.6223,0.684665,0.47637,11.6109,0.494521,0.514765,11.6364,0.279343,0.515404,11.639,0.149359,0.495261,11.6079,-0.117871,0.456745,11.569,-0.25749,0.168114,9.92578,0.365245,0.209143,9.8656,0.638926,0.285437,9.83993,1.09844,0.294308,9.96785,0.280378,0.329722,9.97209,0.513292,0.41753,9.98085,0.885168,0.215544,11.7115,-0.307005,0.35726,11.6542,-0.276448,0.203216,11.8247,-0.135543,0.399297,11.7413,-0.108161,0.211692,11.8918,0.16615,0.419436,11.7798,0.163066,0.226603,11.8865,0.365015,0.410207,11.782,0.317379,0.192763,11.8107,0.574473,0.355605,11.7368,0.534284,0.134471,10.7204,1.00746,0.242234,11.3217,0.924598,0.188895,11.4656,0.849156,0.219585,10.6295,0.90955,0.37953,11.2583,0.838598,0.356523,11.4284,0.787248,0.463262,10.2992,0.600177,0.481286,10.4454,0.631333,0.477137,10.6648,0.695305,0.502096,11.2526,0.513941,0.516038,11.4654,0.487412,0.470139,10.3437,0.351654,0.583408,10.6233,0.269269,0.595596,10.7462,0.313027,0.584441,11.2912,0.282267,0.561977,11.4981,0.266841,0.47537,10.2758,0.150212,0.558481,10.4999,0.135879,0.616291,11.3373,0.119779,0.576561,11.5103,0.139566,0.45109,10.3343,-0.114076,0.609468,10.6043,-0.0796962,0.665762,10.8138,-0.185119,0.618417,11.3431,-0.170431,0.567669,11.4973,-0.132473,0.450826,10.3559,-0.225601,0.564394,10.6269,-0.310792,0.613202,10.855,-0.36269,0.585796,11.3334,-0.312326,0.533168,11.4747,-0.271723,0.225215,11.5182,-0.499819,0.234709,11.3588,-0.576113,0.241441,10.8801,-0.674925,0.219562,10.5853,-0.633742,0.172581,10.35,-0.524528,0.353519,11.4917,-0.44716,0.390978,11.3424,-0.514406,0.436582,10.8831,-0.588709,0.39383,10.6186,-0.551646,0.312326,10.3689,-0.452937,0.375512,10.4836,0.802358,0.527557,10.7042,-0.46155,0.0746281,10.5004,1.03672,0.239311,10.5124,0.915533,0.473743,10.5466,0.665379,0.586791,10.6745,0.302855,0.631247,10.6764,-0.102343,0.582711,10.6981,-0.321279,0.226577,10.661,-0.647556,0.408647,10.6856,-0.565365,0.429672,10.9069,0.790537,0.434034,10.9295,0.775519,0.557404,10.977,-0.48969,0.556589,11.0769,-0.484563,0.164002,10.9147,0.956207,0.340487,10.9081,0.880304,0.346012,10.9256,0.87657,0.511805,10.9219,0.664659,0.510421,10.9436,0.651184,0.614866,10.8841,0.291385,0.618445,10.9572,0.2917,0.683845,10.958,-0.244369,0.681679,11.0684,-0.226367,0.624711,10.9688,-0.379683,0.629442,11.0717,-0.37189,0.245583,11.0951,-0.65788,0.244428,10.9908,-0.669796,0.440576,11.0939,-0.578723,0.440186,10.9818,-0.584458,0.201537,10.4382,0.975121,0.108843,10.439,1.07459,0.308051,10.4264,0.884971,0.355054,10.3744,0.852871,0.364427,10.3059,0.863021,0.271216,10.1545,1.05667,0.142921,10.1031,1.11827,0.342999,10.2345,0.924549,0.163353,10.3127,1.07007,0.0558012,10.2926,1.11897,0.110627,10.3011,1.09951,0.209292,10.3204,1.01188,0.221127,10.3236,1.00561,0.200393,10.3099,1.05337,0.0737163,10.3056,1.15238,0.143327,10.3143,1.11248,0.080455,11.0282,0.968881,0.0797285,10.9429,1.03352,0.0666271,10.6966,1.20725,0.0884947,10.6024,1.2242,0.193448,10.584,1.12495,0.191561,10.6355,1.08713,0.17557,10.9276,0.929765,0.104687,11.2253,0.899282,0.444006,10.9854,0.729617,0.551947,11.1574,-0.472197,0.389445,10.9889,0.783373,0.500521,11.0151,0.618519,0.645483,11.1319,0.154283,0.665504,11.1914,0.017294,0.67612,11.1399,-0.163789,0.624597,11.1555,-0.349557,0.245075,11.1624,-0.644418,0.438935,11.1617,-0.570013,0.0875737,10.2184,1.15434,0.172363,10.2711,1.10676,0.258891,10.2877,1.0266,0.310081,10.3164,0.953602,0.3173,10.3358,0.940072,0.28089,10.3491,0.997137,0.0951129,10.3845,1.17147,0.189253,10.3586,1.08553,0.365985,11.009,0.787728,0.120678,11.2114,0.857063,0.17886,10.9494,0.887645,0.0847581,11.0566,0.901111,0.28845,10.9537,0.87209,0.345076,11.2088,0.787867,0.246251,11.2582,0.81763,0.220332,11.2338,0.765134,0.322139,11.1739,0.73378,0.27647,10.9598,0.818784,0.0628091,11.0781,0.849971,0.17706,10.9623,0.8427,0.106058,11.203,0.806999,0.349806,11.0095,0.772671,0.350653,11.0241,0.734151,0.0954312,11.2208,0.761477,0.148003,10.968,0.806174,0.0297216,11.1079,0.799739,0.277907,10.9516,0.781051,0.329779,11.1829,0.698248,0.222629,11.2486,0.721882,0.226299,11.2523,0.667157,0.324742,11.182,0.664605,0.273201,10.9615,0.723778,0.0276449,11.1172,0.731768,0.145532,10.9552,0.74653,0.0959922,11.224,0.696627,0.34852,11.0256,0.690244,0.553638,10.706,0.498157,0.524777,10.5042,0.433283,0.539238,10.599,0.472243,0.571565,10.9092,0.513722,0.57351,10.9546,0.507771,0.554867,11.0504,0.470302,0.563604,10.5585,0.211453,0.624448,11.0348,0.275171,0.665355,11.0257,0.210262,0.619018,10.571,0.176682,0.792715,11.143,-0.173748,0.726978,11.2028,0.010407,0.688244,11.1384,0.141538,0.804249,11.0396,-0.255922,0.808829,10.9159,-0.27337,0.684608,10.9614,0.184497,0.767663,10.6706,-0.1131,0.62165,10.7204,0.196969,0.805125,10.8097,-0.223616,0.736733,10.5743,-0.0728808,0.624058,10.5162,0.130889,0.611291,10.659,0.206254,0.698892,10.9688,0.160044,0.791194,10.9101,-0.199463,0.782406,11.004,-0.197145,0.643064,10.5959,0.123046,0.114988,10.1662,1.12446,0.218483,10.2091,1.06793,0.296664,10.2629,0.973748,0.328988,10.3106,0.92367,0.327741,10.3543,0.911523,0.298275,10.3926,0.932793,0.103236,10.4141,1.11741,0.193333,10.396,1.03188,0.152956,10.3295,1.01524,0.0733876,10.324,1.04324,0.205792,10.3296,0.987933,0.226919,10.3235,0.977459,0.214168,10.3026,0.980081,0.110411,10.2744,1.02057,0.052524,10.2632,1.03307,0.17657,10.2881,0.998247,0.202636,10.3148,1.01855,0.145937,10.3025,1.06869,0.0757857,10.293,1.10036,0.221201,10.3216,0.99253,0.209041,10.3179,0.995313,0.164482,10.3175,1.03504,0.11032,10.3114,1.062,0.0559177,10.3061,1.07749,0.0894155,10.2108,1.15418,0.175529,10.2667,1.10377,0.263028,10.2859,1.02136,0.313183,10.3161,0.950864,0.319437,10.3369,0.937709,0.281958,10.3526,0.992235,0.0956182,10.3867,1.16771,0.189492,10.361,1.0819,0.252671,9.77079,0.288281,0.162125,9.75374,0.328641,0.356487,9.87513,-0.17497,0.387756,9.86153,-0.0925043,0.348683,9.80152,0.206011,0.233851,9.89524,-0.361654,0.116009,9.90109,-0.421934,0.304767,9.88925,-0.274581,0.422755,9.50869,-0.353824,0.204347,9.53733,-0.566356,0.321508,9.51335,-0.452169,0.419412,9.48431,0.269811,0.544903,9.51407,-0.150143,0.482752,9.51155,-0.265337,0.137342,9.34716,0.407325,0.302715,9.46059,0.417372,0.157355,9.71999,-0.479324,0.269655,9.71141,-0.401103,0.339643,9.69807,-0.312836,0.439502,9.66681,-0.113468,0.367949,9.61994,0.238593,0.409912,9.67975,-0.200566,0.115462,9.52801,0.363312,0.247966,9.60504,0.347553,0.352463,10.0147,-0.158968,0.221249,10.0117,-0.339442,0.0829814,11.1317,0.929662,0.0926938,11.138,0.880209,0.070862,11.1503,0.82516,0.0484494,11.1726,0.781049,0.0591887,11.177,0.711778,0.452531,11.0749,0.678757,0.401231,11.1015,0.754424,0.488835,11.1222,0.555562,0.379924,11.0927,0.755029,0.359399,11.0926,0.73821,0.371697,11.0941,0.717259,0.355616,11.0938,0.674933,0.570062,11.1721,0.382147,0.631332,11.0907,0.234523,0.672029,11.0681,0.19401,0.477474,10.5353,-0.409513,0.520347,10.438,0.11689,0.522838,10.5056,-0.148459,0.518917,10.5182,-0.277649,0.2022,10.4973,-0.600333,0.363514,10.532,-0.518593,0.535467,11.241,-0.451351,0.615496,11.2182,0.211317,0.641511,11.2592,0.0775873,0.647995,11.2504,-0.188306,0.605029,11.2447,-0.333,0.231329,11.2532,-0.618527,0.422362,11.2394,-0.548997,0.575224,10.7238,0.397726,0.549992,10.5628,0.32868,0.56433,10.635,0.373522,0.594298,10.8928,0.394905,0.598062,10.9497,0.378241,0.519475,10.4921,0.237282,0.596076,11.0451,0.333038,0.606307,11.1496,0.276202,0.104556,11.637,-0.452158,0.0810043,11.6856,0.740934,0.102978,11.7363,-0.321285,0.102023,11.8457,-0.141785,0.106261,11.9175,0.155022,0.114512,11.9191,0.365999,0.0897977,11.8349,0.58744,0.0947687,11.4734,0.862457,0.120671,11.37,0.925794,0.086705,10.347,-0.541123,0.110196,10.5786,-0.657394,0.121135,10.8784,-0.694739,0.110796,11.3685,-0.605683,0.108349,11.536,-0.526789,0.113703,10.6554,-0.668756,0.123206,11.0921,-0.678385,0.122629,10.9922,-0.689896,0.122952,11.1629,-0.665335,0.0456086,9.90349,-0.444072,0.0818424,9.5345,-0.611983,0.0404314,9.72569,-0.517485,0.101515,10.4892,-0.619215,0.116079,11.2617,-0.638557,0.155487,11.2881,0.889681,0.176341,11.2487,0.839736,0.164725,11.2199,0.786467,0.158635,11.2454,0.743145,0.160591,11.248,0.6832,0.0931579,11.3196,0.911592,0.0602381,11.241,0.935437,0.064217,10.5023,1.03627,0.0966303,10.4394,1.07284,0.0671636,10.3046,1.15284,0.0411314,11.0379,1.02767,0.037377,10.5968,1.25974,0.0392611,10.949,1.08328,0.030281,10.6938,1.23041,0.0863593,10.3825,1.17288,0.0933653,10.4134,1.11593,0.0387729,10.3283,1.045,0.044513,10.2904,1.10084,0.086801,10.3849,1.16914,0.0440056,11.1401,0.979394,0.510536,11.627,0.0092895,0.415348,11.7633,-0.0014057,0.207564,11.8602,-0.00689002,0.58388,11.5109,0.00176961,0.629859,11.3501,-0.0274971,0.668748,11.1714,-0.0848714,0.767713,11.1942,-0.0755102,0.750287,11.1399,-0.0654209,0.651396,11.263,-0.0557948,0.104197,11.8794,-0.00728078,0.71024,11.0828,0.126623,0.68804,11.0174,0.164007,0.645955,10.686,0.139051,0.652307,10.5689,0.106154,0.767096,11.091,-0.143253,0.729809,11.1359,0.0157568,0.787169,10.8341,-0.153945,0.766174,10.715,-0.0743866,0.75185,10.6582,-0.0369792,0.638572,10.7274,0.158951,0.695855,11.0491,0.147974,0.701235,10.917,0.127829,0.686508,10.8899,0.146719,0.652296,10.7752,0.13451,0.632861,10.7665,0.177561,0.384596,10.1327,0.0524655,0.567372,10.4946,0.0631254,0.451005,10.2975,0.032203,0.673685,10.4607,0.0561098,0.408104,9.83161,0.0616258,0.552404,9.5045,0.0358536,0.46998,9.64565,0.048965,0.519454,10.4519,0.0266493,0.675461,10.5793,0.0614854,0.422514,10.3521,0.754728,0.471173,10.3767,0.597881,0.359741,10.3401,0.857946,0.215355,10.3229,1.00849,0.31369,10.3261,0.946837,0.503327,10.4187,0.382881,0.573506,10.5923,0.240061,0.619214,10.637,0.208596,0.328365,10.3325,0.917597,0.224926,10.3144,0.977509,0.215294,10.3187,0.993958,0.31631,10.3265,0.944287,0.534734,10.5284,0.283341,0.678201,10.6832,0.154186,0.389915,10.738,0.808349,0.135413,10.7858,0.988593,0.263819,10.7245,0.907632,0.494763,10.7716,0.696993,0.605187,10.8135,0.306467,0.078288,10.7773,1.12311,0.56524,10.7921,0.508561,0.58534,10.8055,0.402182,0.0283156,10.7894,1.171,0.651476,10.8273,0.158056,0.579509,10.5136,0.016258,0.451246,10.3191,-0.0498534,0.702187,10.4986,-0.0203015,0.407297,9.84936,-0.0260794,0.58061,9.51567,-0.0488353,0.460001,9.65729,-0.0427455,0.52134,10.4868,-0.0592735,0.724198,10.6118,0.00814378,0.661323,11.1347,0.147841,0.642032,11.0324,0.2388,0.641289,10.9656,0.201458,0.602735,10.6387,0.237416,0.583054,10.5868,0.204947,0.587988,10.551,0.134747,0.711682,11.1156,-0.143362,0.696241,11.1719,0.013335,0.719063,11.0595,-0.212123,0.721965,10.9451,-0.230062,0.708268,10.8148,-0.170336,0.673587,10.6658,-0.072383,0.649904,10.5942,-0.037935,0.604266,10.701,0.247903,0.647658,11.0773,0.215766,0.718231,11.1575,-0.0815112,0.612797,10.7648,0.242064,0.641331,10.894,0.187727,0.624977,10.506,0.0630326,0.592894,10.6004,0.220809,0.625475,10.8259,0.223558,0.623004,10.5217,0.0147998,0.460656,11.2741,0.644036,0.500072,11.4036,-0.404726,0.23398,11.3439,0.912965,0.37007,11.2935,0.830679,0.512733,11.3445,0.493842,0.575948,11.3986,0.270054,0.602634,11.4263,0.13474,0.599982,11.4244,-0.148575,0.56708,11.4096,-0.289856,0.228757,11.4377,-0.547593,0.374168,11.4167,-0.488579,0.119331,11.3912,0.916027,0.108016,11.4514,-0.57715,0.613788,11.4334,-0.00775994,0.137521,10.9131,0.968562,0.130821,10.7189,1.01856,0.0401914,10.5278,1.07935,0.233485,10.5164,0.94433,0.217914,10.6294,0.91916,0.136935,10.9475,0.936697,0.126494,10.9741,0.895146,0.12342,10.9917,0.850724,0.124244,10.9906,0.808526,0.120997,10.9774,0.74701,0.0351689,10.5183,1.07784,0.127906,10.7864,0.996213,0.404245,10.1327,0.429594,0.504914,11.63,0.386099,0.236144,9.81615,0.741243,0.358849,9.96274,0.568984,0.389451,11.7719,0.421173,0.216638,11.857,0.46152,0.547929,11.485,0.373463,0.541634,11.2746,0.405494,0.482063,10.3433,0.362299,0.552703,10.6988,0.541043,0.523456,10.5016,0.441584,0.5373,10.5971,0.479398,0.547223,10.9156,0.593866,0.544784,10.9535,0.584453,0.527694,11.0328,0.54441,0.529448,11.1472,0.468855,0.10258,11.8863,0.4718,0.502899,10.4158,0.395472,0.547713,10.7848,0.574532,0.549136,11.3765,0.380214,0.680623,11.1373,0.143322,0.658752,11.0276,0.218341,0.661412,10.9632,0.18864,0.609031,10.6538,0.221445,0.596998,10.5713,0.200415,0.608952,10.5111,0.138736,0.776212,11.1425,-0.172821,0.718277,11.2012,0.0112359,0.7869,11.0436,-0.252317,0.791139,10.9218,-0.269892,0.7854,10.8124,-0.215631,0.750146,10.6708,-0.105534,0.72383,10.5705,-0.0656742,0.616729,10.7151,0.213672,0.66513,11.0707,0.200169,0.753705,11.1909,-0.077209,0.62787,10.7681,0.193286,0.667607,10.8853,0.162465,0.662067,10.4721,0.05665,0.605895,10.6209,0.214813,0.642448,10.8262,0.180083,0.689514,10.5074,-0.0132382,0.648295,11.1324,0.153139,0.627569,11.0344,0.268714,0.6225,10.9587,0.275673,0.586839,10.6263,0.263667,0.567057,10.5632,0.210228,0.570832,10.5193,0.137849,0.686469,11.1149,-0.164975,0.67096,11.1673,0.0165912,0.692558,11.0658,-0.229353,0.694938,10.9543,-0.247337,0.678132,10.8142,-0.187734,0.643037,10.6658,-0.100323,0.619887,10.5976,-0.073352,0.589893,10.6791,0.294138,0.63423,11.0883,0.231194,0.677532,11.1482,-0.0842749,0.59865,10.7493,0.301786,0.619564,10.8865,0.272008,0.586366,10.505,0.0674749,0.576948,10.5938,0.236649,0.608789,10.8161,0.291847,0.587649,10.5186,0.0147628,0.690262,10.8168,0.0443389,0.698211,10.8539,0.0381383,0.652295,10.8172,0.134702,0.731763,10.7139,0.0666362,0.690132,10.6981,0.123304,0.675461,10.5959,0.0649202,0.715106,10.6144,0.0165672,0.638753,10.691,0.123788,0.700284,10.7022,0.0616478,0.735362,10.7052,-0.00538407,0.749447,10.7401,-0.0465187,0.737426,10.6659,-0.0385318,0.751306,10.727,-0.0769062,0.751786,10.8575,-0.105106,0.742845,10.8406,-0.0579251,0.732326,10.8819,-0.0258034,0.733486,10.9169,-0.0692055,0.732016,10.9554,-0.0247638,0.728453,10.9107,0.0198262,0.718742,10.8665,-0.0127313,0.708696,10.888,0.0305672,0.711174,10.7415,-0.044398,0.720938,10.8357,-0.0503472,0.721681,10.7021,-0.00937895,0.762661,11.0085,-0.0687209,0.771348,10.9597,-0.115726,0.73949,10.9114,-0.139477,0.748139,10.8078,-0.0622364,0.709492,10.8123,-0.0559991,0.751107,10.8314,-0.158436,0.753243,10.912,-0.205976,0.749498,11.0055,-0.191622,0.733251,11.0908,-0.140437,0.715413,11.1357,-0.06538,0.693682,11.1361,0.0126437,0.692406,11.0489,0.142496,0.685947,11.0153,0.15218,0.679899,10.9711,0.145924,0.687567,11.0798,0.123717,0.41266,10.8282,0.799444,0.149707,10.8502,0.9724,0.308922,10.8197,0.893968,0.511886,10.8506,0.680826,0.610026,10.8488,0.298926,0.0831169,10.864,1.07915,0.568014,10.8547,0.515562,0.589819,10.8492,0.398544,0.03369,10.8678,1.13634,0.650336,10.8406,0.151253,0.633403,10.8599,0.205642,0.135137,10.8566,0.982404,0.550912,10.8585,0.586865,0.643729,10.8463,0.172516,0.614176,10.8513,0.281927,0.634146,10.8226,0.133344,0.673339,10.8112,0.0730934,0.672532,10.7667,0.100891,0.691208,10.7616,0.0365957,0.686134,10.7438,0.0824198,0.620101,10.7293,0.153769,0.630552,10.7646,0.132385,0.694856,10.7991,-0.000749676,0.699695,10.8339,-0.00587305,0.673149,10.9341,0.111901,0.700465,11.0464,0.0841271,0.703234,10.9672,0.106715,0.701355,11.0139,0.0962658,0.736907,11.054,0.0360562,0.70987,10.9477,0.0844722,0.713396,10.9997,0.058729,0.685604,10.919,0.0938407,0.693887,10.8684,0.119749,0.709115,10.8966,0.104323,0.673228,10.8302,0.103724,0.749707,11.041,-0.01575,0.721114,10.9306,0.0513706,0.723086,10.9823,0.0177463,0.695762,10.9026,0.0674903,0.693935,10.8514,0.0866304,0.701632,10.8761,0.0755774,0.673652,10.7783,0.0693107,0.694919,10.7684,-0.000299593,0.708718,10.776,-0.0532533,0.540278,10.7867,-0.474951,0.648505,10.7451,-0.143731,0.598658,10.7726,-0.34249,0.234009,10.7705,-0.66124,0.422615,10.7843,-0.577037,0.786394,10.7401,-0.168358,0.117419,10.7669,-0.681747,0.776599,10.7734,-0.113603,0.690927,10.7403,-0.12136,0.767773,10.7416,-0.160582,0.660585,10.74,-0.144029,0.76003,10.7735,-0.116831,0.753437,10.7901,-0.0862972,0.747974,10.7757,-0.0580357,0.75013,10.7618,-0.0736133,0.594223,10.7796,0.079863,0.59239,10.8226,0.105135,0.590312,10.7713,0.125581,0.591702,10.7724,0.105406,0.594189,10.8121,0.0837459,0.591097,10.8153,0.126207,0.10981,10.9255,0.996866,0.0987208,10.706,1.11618,0.0397882,10.5576,1.13564,0.213013,10.533,1.0445,0.20367,10.6301,1.00368,0.10602,10.9769,0.951272,0.0926093,11.0101,0.902334,0.0853769,11.0247,0.848527,0.0672203,11.042,0.807893,0.0624198,11.0423,0.740533,0.0318051,10.5562,1.14203,0.103097,10.7819,1.05966,0.109127,10.8603,1.03078,0.175842,10.6732,0.958505,0.166629,10.5089,0.976128,0.23654,10.9055,0.918255,0.157137,10.4415,1.02486,0.109225,10.3097,1.13213,0.133436,10.5924,1.17177,0.12905,10.6647,1.15078,0.239962,10.9252,0.903168,0.143002,10.3709,1.12815,0.23806,10.9423,0.879472,0.227251,10.9488,0.832923,0.213729,10.9515,0.798215,0.21169,10.943,0.739148,0.148294,10.4066,1.07465,0.110994,10.3244,1.0338,0.111228,10.2982,1.08437,0.143334,10.3732,1.12447,0.186187,10.7367,0.948112,0.157427,10.5152,1.0285,0.173326,10.6726,0.968859,0.216893,10.8216,0.933184,0.142292,10.5343,1.09542,0.151196,10.668,1.05993,0.0978939,10.6854,1.06053,0.0939712,10.6621,0.978184,0.0524107,10.6918,1.0773,0.0476334,10.665,0.995607,0.0574576,10.6268,1.12429,0.0553495,10.5928,1.02847,0.177612,10.596,1.00174,0.178195,10.6251,1.0985,0.0394381,10.1692,1.01097,0.241828,10.2858,0.943414,0.250902,10.3433,0.939997,0.16732,10.3805,0.974832,0.0586161,10.3913,1.01158,0.223326,10.3604,0.950324,0.10163,10.1917,0.993811,0.22354,10.2323,0.955849,0.0286463,10.3972,1.01356,0.253877,10.3213,0.938548,0.104391,10.3751,1.0003,0.145697,10.4487,0.816518,0.263806,10.2891,0.811724,0.0421492,10.4442,0.816366,0.195139,10.1666,0.813551,0.0513,10.1255,0.816865,0.117556,10.1357,0.815838,0.247324,10.2226,0.811345,0.263334,10.3619,0.813794,0.241704,10.4152,0.815076,0.0891039,10.4479,0.816681,0.202505,10.4398,0.815921,0.211328,10.4418,0.482295,0.0902159,10.4473,0.471235,0.243899,10.4209,0.482371,0.248375,10.3701,0.480286,0.211108,10.2532,0.472559,0.115512,10.1634,0.458181,0.0527663,10.173,0.46396,0.172066,10.1982,0.462861,0.0422708,10.4409,0.469801,0.234289,10.3105,0.477969,0.151055,10.4503,0.477849,0.106746,10.4044,0.383907,0.180663,10.3141,0.402206,0.0300477,10.3977,0.382492,0.132566,10.2405,0.387593,0.0374266,10.182,0.381688,0.082032,10.1977,0.375535,0.160964,10.2787,0.394712,0.196317,10.3551,0.412009,0.172206,10.3839,0.395286,0.0638514,10.4022,0.380147,0.149242,10.3983,0.391901,0.0337372,10.2938,0.352247,0.0729417,10.3071,0.351893,0.118441,10.3271,0.362759,0.134558,10.3366,0.370138,0.154695,10.3425,0.379841,0.243899,10.4209,0.749809,0.243899,10.4209,0.682949,0.243899,10.4209,0.61609,0.243899,10.4209,0.549231,0.211328,10.4418,0.749793,0.211328,10.4418,0.682919,0.211328,10.4418,0.616044,0.211328,10.4418,0.549169,0.263446,10.3594,0.748244,0.261445,10.3625,0.681927,0.259458,10.366,0.615388,0.260396,10.3716,0.548855,0.194968,10.1628,0.743984,0.193579,10.1546,0.672167,0.188229,10.1673,0.600696,0.184861,10.1778,0.532505,0.247174,10.2111,0.743963,0.245873,10.2068,0.676649,0.23831,10.219,0.608753,0.231547,10.2329,0.542132,0.118733,10.1408,0.744121,0.11842,10.1358,0.668817,0.116694,10.1464,0.590886,0.115322,10.1497,0.524354,0.0525052,10.1276,0.744881,0.0530738,10.1277,0.670208,0.0533342,10.1433,0.601175,0.0913876,10.4469,0.747698,0.0910947,10.447,0.678582,0.0908017,10.4471,0.609466,0.0905088,10.4472,0.540351,0.0431541,10.4413,0.747307,0.0416607,10.4402,0.677712,0.0418641,10.4404,0.608409,0.0420674,10.4406,0.539105,0.263461,10.2792,0.745829,0.260614,10.283,0.679577,0.256365,10.2921,0.613192,0.252771,10.301,0.547317,0.151055,10.4503,0.748904,0.151055,10.4503,0.681141,0.151055,10.4503,0.613377,0.151055,10.4503,0.545613,0.129014,10.45,0.882277,0.0771839,10.4544,0.884508,0.189687,10.4391,0.877803,0.243497,10.257,0.869308,0.26089,10.3139,0.867099,0.258923,10.3652,0.868102,0.0376292,10.4486,0.884154,0.0475267,10.135,0.894163,0.114516,10.1493,0.889364,0.204964,10.1976,0.880507,0.233415,10.405,0.870074,0.0540869,10.1941,0.573131,0.113031,10.1963,0.571311,0.0927196,10.2871,0.481887,0.109,10.2361,0.528889,0.0531513,10.291,0.486262,0.0536445,10.3358,0.5562,0.0934903,10.3251,0.554205,0.119859,10.2323,0.593451,0.120582,10.2789,0.574944,0.0697161,10.2282,0.594774,0.0758246,10.236,0.626537,0.113494,10.2465,0.625696,0.128092,10.2867,0.616656,0.102105,10.3284,0.607489,0.0602482,10.3326,0.608664,0.103604,10.3267,0.673093,0.0615983,10.3291,0.674167,0.113494,10.2513,0.680324,0.128092,10.2885,0.67655,0.0759438,10.242,0.68112,0.0761353,10.2529,0.760278,0.113494,10.2601,0.759416,0.113494,10.3184,0.756909,0.126964,10.2889,0.757853,0.0779899,10.3203,0.757988,0.111236,10.3034,0.864413,0.0782463,10.3099,0.86245,0.12172,10.2833,0.859643,0.112429,10.26,0.855025,0.0765025,10.2528,0.855079,0.073097,10.2554,0.894419,0.102923,10.2648,0.894354,0.108893,10.2833,0.896556,0.102133,10.2996,0.89882,0.0728805,10.304,0.897967,0.0902195,10.2883,0.922299,0.0631656,10.2896,0.944965,0.0902016,10.2743,0.922299,0.0916436,10.2817,0.925139,0.0646987,10.2685,0.944965,0.0636431,10.2796,0.952236,0.116967,10.4296,0.941053,0.06832,10.4393,0.947865,0.261104,10.3222,0.904768,0.0331772,10.4358,0.948837,0.108073,10.166,0.941588,0.214252,10.2143,0.918178,0.229728,10.3868,0.912631,0.0434824,10.1488,0.952568,0.257884,10.3581,0.906257,0.24588,10.2747,0.908379,0.178983,10.4158,0.927398,0.565606,10.7726,0.145421,0.556043,10.7733,0.129054,0.555927,10.8218,0.128854,0.566035,10.8144,0.146156,0.545193,10.8121,0.11048,0.543231,10.7796,0.107122,0.505215,10.8121,0.17736,0.502137,10.7796,0.174983,0.522237,10.7733,0.190511,0.537912,10.8144,0.20262,0.537238,10.7726,0.2021,0.522054,10.8218,0.190369,0.197283,10.9605,0.638722,0.0807695,11.0368,0.640881,0.12649,10.9861,0.645937,0.157394,11.1973,0.596132,0.309613,11.077,0.589679,0.0782476,11.1419,0.618438,0.304075,11.0238,0.60163,0.106973,11.1786,0.606612,0.147233,10.9713,0.642955,0.0536272,11.0952,0.63404,0.245229,10.9738,0.627722,0.285516,11.1458,0.581619,0.208476,11.1979,0.583176,0.20441,11.15,0.535694,0.258772,11.1112,0.534285,0.23031,10.9894,0.566961,0.0947102,11.0754,0.571373,0.159809,10.9859,0.579525,0.132453,11.1344,0.551968,0.271903,11.0249,0.548443,0.112129,11.1084,0.560335,0.275821,11.0625,0.539988,0.168125,11.1477,0.544553,0.146261,10.9982,0.57979,0.113913,11.0341,0.576213,0.196343,10.9792,0.575449,0.326267,10.2053,-0.265618,0.245154,10.1854,-0.342259,0.0671483,10.1876,-0.418382,0.383831,10.1631,-0.0274031,0.357489,9.91883,0.16852,0.274223,9.85766,0.274844,0.156274,9.82288,0.340451,0.300982,10.0205,-0.262537,0.372244,9.99644,-0.0836739,0.115069,10.0148,-0.397971,0.0519322,10.0182,-0.415898,0.385338,9.95555,0.0533378,0.38213,9.97927,-0.0218729,0.130963,9.7992,-0.450577,0.255697,9.79283,-0.380673,0.320107,9.78071,-0.292285,0.410926,9.74826,-0.10315,0.354287,9.69448,0.221694,0.378747,9.76182,-0.188379,0.131973,9.65556,0.334844,0.248036,9.67531,0.317779,0.0410956,9.80278,-0.481335,0.433838,9.7226,0.0628111,0.434421,9.73748,-0.0339391,0.164556,9.62046,-0.523274,0.296227,9.61899,-0.423644,0.368818,9.59499,-0.331992,0.491356,9.579,-0.130488,0.380992,9.54437,0.255593,0.443525,9.58778,-0.216391,0.13278,9.41483,0.408378,0.257239,9.52379,0.386033,0.048137,9.62104,-0.566386,0.51391,9.56452,0.0370314,0.515341,9.57445,-0.0536779,0.151626,9.31552,0.460271,0.314217,9.4015,0.486048,0.637388,9.49272,0.042743,0.669475,9.53021,-0.0607849,0.630327,9.5261,-0.171552,0.571138,9.51346,-0.30568,0.479333,9.46972,0.312565,0.10844,9.44769,-0.669188,0.399588,9.42503,-0.488904,0.243613,9.46105,-0.596024,0.503418,9.47107,-0.406336,0.308745,9.78999,0.24471,0.366563,9.47599,0.330983,0.311485,9.61346,0.286626,0.308802,9.68818,0.272209,0.321471,9.53351,0.312603,0.398998,9.43395,0.393864,0.373174,9.81313,0.154787,0.388581,9.82025,0.11773,0.398342,9.82593,0.089678,0.462669,9.49171,0.195261,0.492548,9.49505,0.142579,0.522208,9.50117,0.0893295,0.400375,9.62936,0.178369,0.424238,9.63433,0.135593,0.447286,9.64064,0.0923171,0.386425,9.70686,0.166862,0.40534,9.71261,0.127893,0.419654,9.71787,0.0953723,0.421512,9.55072,0.187313,0.453303,9.55487,0.135074,0.483621,9.56096,0.0860712,0.598211,9.48924,0.108608,0.56077,9.48228,0.174045,0.532305,9.48062,0.223316,0.308934,9.83946,0.240261,0.361204,9.8864,0.168093,0.387742,9.90697,0.0896456,0.336656,9.83527,0.201874,0.375281,9.86145,0.117755,0.370832,9.856,0.16459,3.53271,8.93966,0.0385299,3.55728,9.14192,-0.0518264,3.51973,8.76309,-0.00555762,3.5172,8.78074,-0.516791,3.52086,8.72862,-0.386739,3.52307,8.69472,-0.231988,3.509,9.2781,-0.621314,3.53936,9.36413,-0.0735252,3.51792,9.47331,-0.261818,3.50592,9.41089,-0.540366,3.5219,8.69284,-0.103315,3.55315,9.18472,-0.597015,3.52054,8.85,-0.574394,3.49364,8.88432,-0.632917,3.51269,9.13992,-0.683629,3.52354,8.99726,-0.694871,3.23579,8.68577,-0.2146,3.23538,8.69125,-0.0765202,3.23631,8.77053,0.0289004,3.24047,9.43861,-0.285127,3.21866,9.3612,-0.562044,3.22256,9.24069,-0.637826,3.25659,9.33905,-0.0648301,3.26334,9.14622,0.00442938,3.22626,8.96547,-0.698667,3.22886,8.74969,-0.52691,3.23263,8.71305,-0.373209,3.2426,8.95916,0.087996,3.22998,9.12495,-0.698015,3.2226,8.86217,-0.632182,3.29302,9.17904,-0.648379,3.26939,8.8245,-0.58246,1.78248,9.01659,0.283178,1.84517,9.336,0.29064,1.73691,8.78354,0.0882705,1.59461,8.62454,-0.549366,1.65518,8.55291,-0.400243,1.71381,8.58756,-0.272841,1.57701,8.82525,-0.613852,1.56785,9.12862,-0.650022,1.86091,9.5127,0.0594057,1.83571,9.5246,-0.248507,1.69284,9.39824,-0.510833,1.71955,8.64968,-0.0726238,-2.71754e-09,9.47258,-0.688676,-5.64066,8.78992,-0.205702,-7.67367,8.98887,-0.257284,-7.67785,8.98177,-0.195032,-7.66119,8.93969,-0.168375,-7.64233,8.89347,-0.192492,-7.63468,8.86767,-0.25454,-7.62984,8.89469,-0.316353,-7.64359,8.9414,-0.342848,-7.66534,8.983,-0.31926,-7.36813,8.99103,-0.153122,-7.37048,8.95092,-0.122221,-7.35905,8.90997,-0.152585,-7.35028,8.87263,-0.226288,-7.3459,8.91132,-0.30008,-7.35183,8.95288,-0.331212,-7.35643,8.98862,-0.2972,-7.68212,8.93163,-0.258698,-7.50006,9.0028,-0.309173,-7.49028,8.93774,-0.337273,-7.49004,8.86605,-0.310057,-7.49957,8.82574,-0.241167,-7.50402,8.86469,-0.171491,-7.50982,8.93583,-0.143537,-7.48931,9.02914,-0.237117,-7.51388,9.00146,-0.171497,-7.50828,8.9919,-0.303046,-7.49858,9.01534,-0.238331,-7.52074,8.99069,-0.179359,-7.66615,8.97468,-0.200177,-7.65489,8.97579,-0.312017,-7.66549,8.98986,-0.256449,-7.67931,8.98573,-0.201559,-7.68684,9.00343,-0.258468,-7.66809,8.98684,-0.313078,-7.51031,9.00683,-0.303224,-7.5228,9.00563,-0.179259,-7.49764,9.0311,-0.237917,-7.41098,9.02169,-0.302007,-7.40034,8.94765,-0.331642,-7.39581,8.87986,-0.302179,-7.40377,8.84379,-0.231577,-7.41008,8.87847,-0.160617,-7.41957,8.94571,-0.131217,-7.41831,9.04047,-0.231052,-7.42471,9.0203,-0.160831,-7.35981,8.90884,-0.299924,-7.36493,8.87016,-0.226516,-7.37328,8.90771,-0.15314,-7.35761,8.87139,-0.226399,-7.36572,8.90999,-0.160906,-7.35314,8.9119,-0.290873,-7.58355,8.98861,-0.319821,-7.56884,8.9365,-0.34085,-7.5611,8.88014,-0.313708,-7.5682,8.85187,-0.247987,-7.57442,8.87885,-0.181643,-7.58745,8.93466,-0.155815,-7.59712,8.98694,-0.178143,-7.5951,8.97801,-0.185309,-7.58293,8.97951,-0.312579,-7.58586,8.99385,-0.313324,-7.59812,8.99232,-0.184682,-7.5938,9.01355,-0.248995,-7.35581,9.01553,-0.293788,-7.3707,9.01439,-0.16387,-7.38961,9.02875,-0.277662,-7.396,9.0539,-0.22882,-7.39954,9.02785,-0.180452,-7.36547,9.04415,-0.265814,-7.3837,9.03736,-0.266001,-7.37227,9.0321,-0.187161,-7.39134,9.03664,-0.190574,-7.38672,9.04192,-0.228059,-7.37112,9.05765,-0.226512,-7.22199,9.05703,-0.481868,-7.2361,9.04345,-0.484244,-7.24164,9.03862,-0.449619,-7.22417,9.0342,-0.445616,-7.23048,9.03968,-0.519118,-7.21371,9.0455,-0.517628,-7.2496,9.03079,-0.440498,-7.24437,9.05479,-0.485362,-7.23509,9.03215,-0.530447,-7.22367,9.01834,-0.424075,-7.20292,9.02012,-0.542822,-7.42713,9.01878,-0.51498,-7.43482,8.9984,-0.454332,-7.41603,9.00055,-0.575662,-7.41329,8.98704,-0.574873,-7.43192,8.98493,-0.454839,-7.43422,8.99319,-0.448105,-7.42634,8.94419,-0.426681,-7.41264,8.89244,-0.450764,-7.40309,8.86803,-0.513487,-7.39264,8.89438,-0.575284,-7.39838,8.94693,-0.601148,-7.41346,8.99552,-0.581727,-7.20117,8.92805,-0.540859,-7.21949,8.92543,-0.421197,-7.20789,8.89674,-0.481569,-7.22654,8.92458,-0.414196,-7.21458,8.89629,-0.482093,-7.20631,8.9266,-0.549742,-7.27355,9.02413,-0.423046,-7.26445,9.04292,-0.488692,-7.26915,8.95598,-0.395074,-7.26034,8.90111,-0.422494,-7.25015,8.87466,-0.489152,-7.24037,8.90309,-0.555085,-7.2416,8.95886,-0.582484,-7.25311,9.02619,-0.554814,-7.33648,9.03499,-0.499217,-7.36266,9.01079,-0.445092,-7.34484,9.0126,-0.561798,-7.4941,8.99395,-0.57974,-7.5148,9.00905,-0.52901,-7.51091,8.9923,-0.474891,-7.49453,8.99636,-0.525996,-7.48171,8.98368,-0.578129,-7.49857,8.98203,-0.472899,-7.36064,8.99677,-0.44514,-7.33752,9.02026,-0.499767,-7.34294,8.99858,-0.561603,-7.35455,9.00668,-0.437318,-7.32889,9.03298,-0.498068,-7.35313,8.94542,-0.410942,-7.34656,8.88388,-0.437412,-7.33835,8.859,-0.503372,-7.32665,8.88585,-0.56802,-7.32511,8.94823,-0.593403,-7.33482,9.00869,-0.566864,-7.51001,8.94193,-0.529288,-7.20387,8.99505,-0.546426,-7.19573,8.96231,-0.577465,-7.19326,8.92766,-0.548665,-7.20123,8.89719,-0.481048,-7.21348,8.92564,-0.41327,-7.22424,8.95938,-0.385587,-7.22232,8.99654,-0.414158,-7.49116,8.99035,-0.585461,-7.46928,8.95143,-0.606858,-7.45778,8.90774,-0.581315,-7.46585,8.88228,-0.52321,-7.4765,8.90592,-0.464756,-7.49563,8.94887,-0.442731,-7.50989,8.98852,-0.468659,-7.50216,8.99541,-0.527219,-7.58741,8.93709,0.134064,-7.58186,8.93051,0.196565,-7.56181,8.88586,0.221065,-7.54728,8.83614,0.194925,-7.54908,8.80787,0.132604,-7.55445,8.83544,0.0701572,-7.57191,8.88488,0.045287,-7.58908,8.92982,0.0714031,-7.29306,8.93653,0.189577,-7.28796,8.8947,0.221162,-7.28015,8.85436,0.189642,-7.28162,8.81904,0.116503,-7.28858,8.85353,0.0425593,-7.29971,8.89355,0.0119873,-7.30298,8.9317,0.0462982,-7.59413,8.87617,0.134796,-7.43542,8.94914,0.0556602,-7.42946,8.87999,0.0271865,-7.4242,8.8096,0.0551961,-7.42196,8.78057,0.125455,-7.41618,8.81038,0.194794,-7.41824,8.88108,0.222372,-7.41527,8.97763,0.125096,-7.42746,8.94993,0.194379,-7.44196,8.93751,0.063173,-7.42369,8.9631,0.125523,-7.43479,8.93822,0.18779,-7.57174,8.92268,0.189761,-7.57824,8.92206,0.0770924,-7.57977,8.93804,0.133619,-7.58425,8.93468,0.190256,-7.60003,8.95288,0.134704,-7.59073,8.93406,0.0778993,-7.44407,8.95336,0.0630857,-7.43688,8.95407,0.187982,-7.4229,8.98001,0.125548,-7.35346,8.9679,0.0486799,-7.3462,8.89034,0.0185216,-7.33678,8.82737,0.0481969,-7.33208,8.79603,0.119909,-7.32859,8.82818,0.190707,-7.33469,8.89144,0.220683,-7.35004,8.98857,0.120022,-7.34547,8.96868,0.191059,-7.3019,8.85296,0.0447409,-7.29523,8.81884,0.118549,-7.29342,8.8538,0.191497,-7.28841,8.81894,0.117527,-7.28793,8.85431,0.182598,-7.295,8.85456,0.0527968,-7.51382,8.93487,0.0581882,-7.50255,8.87929,0.0358514,-7.49032,8.82014,0.062421,-7.48645,8.79168,0.129102,-7.48268,8.82088,0.19545,-7.49179,8.88031,0.22223,-7.50495,8.93538,0.200794,-7.50405,8.92558,0.19351,-7.51203,8.92513,0.0654096,-7.51506,8.9404,0.0649086,-7.50694,8.94083,0.194382,-7.51296,8.96247,0.129625,-7.30232,8.96043,0.0489975,-7.29716,8.96133,0.179229,-7.33085,8.97523,0.0697237,-7.32991,9.00228,0.118601,-7.32538,8.97584,0.167253,-7.30789,8.99112,0.0777162,-7.3242,8.98432,0.0803173,-7.30212,8.97966,0.15621,-7.31988,8.98477,0.15581,-7.32162,8.98932,0.118131,-7.30787,9.00557,0.117038,-6.9185,9.00413,-0.725684,-6.93103,8.99079,-0.728392,-6.94033,8.98744,-0.698472,-6.92554,8.98343,-0.692467,-6.92423,8.98468,-0.758502,-6.90937,8.9903,-0.755847,-6.94896,8.97993,-0.691279,-6.93851,9.00136,-0.731245,-6.92827,8.97626,-0.768344,-6.92787,8.96836,-0.672414,-6.89849,8.96288,-0.774891,-7.08432,8.96365,-0.770892,-7.09622,8.9494,-0.72297,-7.07009,8.94338,-0.8158,-7.06826,8.93175,-0.814033,-7.09414,8.93773,-0.7222,-7.09645,8.94523,-0.717721,-7.09326,8.90488,-0.697125,-7.08122,8.8597,-0.711246,-7.06805,8.83525,-0.757554,-7.05389,8.85328,-0.80644,-7.05501,8.89589,-0.830508,-7.06763,8.93857,-0.819947,-6.89805,8.87387,-0.765508,-6.92681,8.87999,-0.662905,-6.90984,8.84921,-0.712029,-6.93443,8.87997,-0.658124,-6.91599,8.84908,-0.713347,-6.90224,8.87238,-0.773585,-6.9727,8.97357,-0.679621,-6.95652,8.98936,-0.735639,-6.97496,8.91127,-0.651253,-6.9649,8.86013,-0.669749,-6.94867,8.83136,-0.722698,-6.93345,8.85287,-0.779347,-6.93151,8.90196,-0.807151,-6.94313,8.96781,-0.790281,-7.01724,8.97842,-0.751598,-7.04381,8.95979,-0.709522,-7.01826,8.9539,-0.800676,-7.12792,8.94025,-0.826398,-7.14903,8.95753,-0.789047,-7.15146,8.94578,-0.744372,-7.13499,8.94627,-0.784255,-7.11865,8.93075,-0.823014,-7.14215,8.93627,-0.741142,-7.04248,8.94753,-0.708459,-7.01757,8.96571,-0.750969,-7.01699,8.94157,-0.799364,-7.03844,8.95654,-0.702113,-7.01031,8.97767,-0.749553,-7.04108,8.90538,-0.677177,-7.03397,8.85124,-0.69366,-7.02052,8.82598,-0.743226,-7.00485,8.84439,-0.795096,-7.0003,8.89594,-0.819441,-7.01002,8.95006,-0.803734,-7.14789,8.89696,-0.784633,-6.89881,8.93798,-0.776174,-6.8895,8.90379,-0.799472,-6.89027,8.87285,-0.771404,-6.90375,8.84941,-0.710721,-6.92252,8.88074,-0.655222,-6.93485,8.91409,-0.634863,-6.92751,8.94766,-0.661492,-7.1251,8.9362,-0.830384,-7.10668,8.90019,-0.842517,-7.10105,8.86385,-0.818182,-7.11326,8.84598,-0.771253,-7.12705,8.86996,-0.727604,-7.14339,8.90881,-0.714643,-7.15132,8.94236,-0.739034,-7.14101,8.94555,-0.785936,-6.48998,8.7564,0.865961,-6.46722,8.68488,0.852216,-6.54609,8.80882,0.851895,-6.55622,8.80221,0.840759,-6.47558,8.68075,0.839264,-6.46589,8.67697,0.847063,-6.48167,8.63833,0.800025,-6.53391,8.64287,0.755222,-6.5992,8.6927,0.742157,-6.62125,8.76636,0.759728,-6.60448,8.81224,0.806317,-6.55366,8.81314,0.847421,-6.32748,8.74005,0.709919,-6.35223,8.82097,0.721813,-6.36035,8.68477,0.651814,-6.41012,8.69564,0.602493,-6.46305,8.75357,0.578757,-6.48581,8.83036,0.599296,-6.47095,8.88149,0.646876,-6.40717,8.88474,0.70612,-6.4109,8.79216,0.788117,-6.4085,8.71301,0.79155,-6.48538,8.83694,0.790338,-6.59284,8.77462,0.91993,-6.56108,8.72354,0.947204,-6.53359,8.66719,0.924406,-6.55398,8.72546,0.916499,-6.59282,8.77418,0.90039,-6.52987,8.66719,0.902944,-6.41884,8.70731,0.779711,-6.42432,8.78481,0.778594,-6.49683,8.83005,0.779279,-6.40111,8.70694,0.780282,-6.40673,8.79388,0.778853,-6.42628,8.65755,0.727389,-6.48666,8.66028,0.680364,-6.54453,8.71651,0.661859,-6.56966,8.79193,0.680226,-6.55189,8.84124,0.732692,-6.48635,8.84522,0.778782,-6.60418,8.69766,0.891154,-6.59789,8.77969,0.915191,-6.6333,8.79025,0.871189,-6.64581,8.75014,0.828429,-6.62506,8.68232,0.808567,-6.56832,8.63516,0.825169,-6.5307,8.62595,0.871524,-6.53111,8.66018,0.919659,-6.56074,8.72233,0.92385,-1.21737,9.53133,-0.448082,-1.40162,9.47178,0.262551,-1.30654,9.63357,-0.206991,-1.46176,9.13475,-0.650022,-1.08078,9.33628,-0.602687,-1.39849,9.63128,-0.00197884,-1.62297,8.80308,0.0993095,-1.42615,8.79005,0.356225,-1.60033,8.58477,-0.287381,-1.61991,8.63059,-0.0815447,-1.50952,8.62187,-0.55945,-1.74763,9.52214,-0.250404,-1.56093,9.39883,-0.511213,-1.76818,9.37851,0.292151,-1.80179,9.51701,0.049988,-1.48199,8.83394,-0.625891,-1.5896,8.5393,-0.40615,-1.69956,9.02634,0.285672,-1.44712,9.01548,0.322602,-3.09687,8.95932,0.145351,-3.08718,8.70514,-0.368344,-3.07203,8.94841,-0.668311,-3.11801,9.32407,-0.0429021,-3.11668,9.14076,0.0716838,-3.07562,9.34108,-0.550414,-3.10482,9.42212,-0.283003,-3.08379,8.7322,-0.539643,-3.09132,8.68293,-0.055541,-3.09109,8.67669,-0.205581,-3.09543,8.76411,0.0682914,-3.07723,9.22892,-0.625634,-3.36671,9.25246,-0.650017,-3.37855,8.77694,-0.0104906,-3.38181,8.69485,-0.223619,-3.38079,8.69957,-0.0974994,-3.37528,8.76717,-0.514176,-3.37729,9.4551,-0.28725,-3.36303,9.38131,-0.573674,-3.41171,9.15168,-0.0628249,-3.39639,9.35403,-0.0867581,-3.38207,8.98253,-0.729022,-3.37941,8.72097,-0.378073,-3.38992,8.95899,0.0306416,-3.67677,8.92032,0.0464183,-3.66354,8.73627,-0.395405,-3.72276,9.01041,-0.663786,-3.68358,9.37423,-0.0602922,-3.70415,9.13216,-0.0408277,-3.6502,9.44046,-0.507057,-3.65983,9.49152,-0.236385,-3.66036,8.79432,-0.519406,-3.66423,8.68611,-0.10913,-3.66553,8.69458,-0.240357,-3.66213,8.74923,-0.000624619,-3.65391,9.30373,-0.592611,-2.12035,8.95442,0.312094,-2.75305,8.94448,0.260216,-2.16271,9.24464,0.287933,-2.77786,9.16575,0.206228,-2.07626,8.73634,0.17369,-2.73451,8.72889,0.164155,-1.96736,8.6939,-0.554391,-2.68385,8.72217,-0.526497,-1.99516,8.60825,-0.41789,-2.69115,8.68961,-0.4107,-2.01594,8.57385,-0.25797,-2.70093,8.63924,-0.244334,-1.95311,8.91474,-0.627429,-2.66799,8.94808,-0.654772,-1.93176,9.16286,-0.650022,-2.66683,9.16658,-0.644515,-2.17526,9.47259,0.0604887,-2.78538,9.37328,0.0133864,-2.11494,9.51083,-0.250259,-2.76784,9.46297,-0.262635,-1.99683,9.40619,-0.511213,-2.69077,9.37026,-0.520064,-2.02916,8.63061,-0.0048831,-2.70828,8.64084,-0.00291799,-4.52806,8.7375,-0.382488,-5.09983,8.84914,-0.41521,-4.52471,8.66704,-0.276249,-5.10077,8.77178,-0.350961,-4.52052,8.65553,-0.139298,-5.09616,8.73323,-0.245183,-4.5198,9.35512,-0.0195722,-5.06645,9.20669,0.0332032,-4.52124,9.40164,-0.250677,-5.06891,9.29213,-0.137965,-4.52469,9.33567,-0.368075,-5.07334,9.28151,-0.244325,-4.53143,9.19359,0.0886739,-5.0736,9.05948,0.0881668,-4.54947,8.93939,0.04517,-5.08254,8.89591,0.023806,-4.52699,9.13609,-0.548565,-5.08579,9.1881,-0.435938,-4.525,8.94031,-0.546353,-5.09371,9.03931,-0.488755,-4.52656,8.84329,-0.485265,-5.0956,8.95223,-0.467176,-4.53099,8.7583,-0.00825121,-5.08897,8.78147,-0.0957501,-1.8845,8.99403,0.280685,-1.91614,9.29815,0.287265,-1.85305,8.77042,0.0772314,-1.68028,8.62722,-0.539282,-1.72112,8.56653,-0.394336,-1.82966,8.59072,-0.258301,-1.67277,8.81656,-0.601814,-1.67484,9.1225,-0.650022,-1.92429,9.50662,0.0688235,-1.91382,9.52706,-0.248198,-1.8261,9.39765,-0.510453,-1.81626,8.66679,-0.0637031,-4.07704,8.71165,-0.306155,-4.07424,8.67358,-0.185196,-4.07252,8.70179,-0.0614413,-4.06888,9.43301,-0.133696,-4.06918,9.42688,-0.386892,-4.07176,9.32186,-0.487957,-4.08696,9.29436,0.0117633,-4.10634,9.04203,0.00221116,-4.07357,9.05848,-0.610871,-4.07477,8.86157,-0.533149,-4.07552,8.78435,-0.438063,-4.08584,8.84215,0.0248276,-3.08146,9.1045,-0.684916,-3.38072,9.14539,-0.711113,-3.07649,8.86626,-0.621626,-3.37006,8.85808,-0.642737,-3.19366,9.1712,-0.675955,-3.39306,9.18687,-0.620804,-3.71482,9.18257,-0.573226,-4.52613,9.24514,-0.485524,-5.08041,9.25126,-0.357613,-4.07331,9.19131,-0.580949,-3.17298,8.82723,-0.600068,-3.36641,8.82177,-0.564851,-3.67616,8.87822,-0.583936,-4.52609,9.02983,-0.572456,-5.09036,9.11299,-0.484585,-4.07299,8.94309,-0.592349,-3.61373,8.91056,-0.623096,-3.64025,9.13445,-0.656145,-3.66633,9.012,-0.660721,-2.42859,8.95404,0.291979,-2.45874,9.1947,0.252357,-2.39964,8.73531,0.17919,-2.30919,8.72175,-0.543404,-2.32652,8.65817,-0.417001,-2.34131,8.60763,-0.250857,-2.29334,8.93877,-0.641359,-2.28827,9.16701,-0.647533,-2.4664,9.42954,0.0409799,-2.45192,9.48577,-0.255204,-2.33209,9.38896,-0.515213,-2.35503,8.63533,0.003102,-5.57868,9.20879,-0.0817853,-5.58386,8.98781,-0.489309,-5.58018,8.77341,-0.336416,-5.58052,8.82284,-0.424443,-5.57914,8.7858,-0.184473,-5.57835,8.85716,-0.0425029,-5.57709,8.97779,0.0606541,-5.57611,9.10623,0.0496596,-5.57691,9.21536,-0.189068,-5.57803,9.21069,-0.302691,-5.5787,9.1733,-0.392374,-5.57906,9.12122,-0.45773,-5.57943,9.06255,-0.48134,-5.58031,8.8963,-0.463737,-1.27288,9.23853,-0.626354,-1.50399,8.81033,0.228623,-1.47326,9.58016,-0.236267,-1.37966,9.46321,-0.480229,-1.60657,9.56804,0.00531986,-1.59537,9.4347,0.272244,-1.56173,9.03012,0.304752,-0.184512,10.9534,0.648641,-0.0625059,11.0536,0.686716,-0.130586,10.9714,0.653319,-0.0877434,11.0066,0.666689,-0.241311,10.9554,0.653367,-0.292336,10.9771,0.666778,-0.329818,11.0151,0.686832,-0.0633538,11.0584,0.751761,-0.0918354,11.034,0.794749,-0.136845,11.014,0.823484,-0.191529,11.0014,0.833591,-0.247564,10.998,0.823532,-0.296418,11.0045,0.794838,-0.330654,11.0198,0.751877,-0.0581236,11.1013,0.708867,-0.347447,11.0596,0.708993,-0.333042,11.0378,0.75968,-0.298806,11.0225,0.80264,-0.249952,11.016,0.831334,-0.193917,11.0193,0.841393,-0.139232,11.032,0.831286,-0.094223,11.052,0.802551,-0.0657414,11.0763,0.759564,-0.0423543,11.0741,0.767425,-0.0756519,11.0457,0.817681,-0.128272,11.0223,0.851275,-0.192203,11.0075,0.863091,-0.257713,11.0036,0.851331,-0.314828,11.0112,0.817785,-0.354853,11.0291,0.76756,-0.371694,11.0546,0.708303,-0.0334484,11.1033,0.708156,-0.0455516,11.0245,0.740042,-0.073461,10.9752,0.70334,-0.121232,10.9432,0.668057,-0.181593,10.9332,0.639564,-0.13413,10.9321,0.687524,-0.0972931,10.9548,0.73931,-0.0766898,10.9979,0.787039,-0.125897,10.976,0.818454,-0.134955,10.9381,0.763354,-0.154512,10.9231,0.700536,-0.179276,10.9173,0.705113,-0.180712,10.9275,0.771812,-0.185682,10.9622,0.829504,-0.246944,10.9585,0.818507,-0.2276,10.9247,0.763394,-0.204652,10.9158,0.700558,-0.226775,10.9188,0.687564,-0.268479,10.9302,0.739384,-0.300355,10.9656,0.787136,-0.337784,10.9824,0.740169,-0.297126,10.943,0.703437,-0.242279,10.9257,0.668109,-0.248802,10.9356,0.645156,-0.30918,10.9612,0.661025,-0.353533,11.0062,0.684754,-0.117782,10.9545,0.645099,-0.0670867,10.9961,0.66092,-0.0372232,11.0518,0.684617,-0.349584,11.0768,0.707206,-0.111559,11.1965,0.658165,-0.073027,11.1591,0.682735,-0.222962,11.2192,0.635944,-0.278873,11.2011,0.641675,-0.32343,11.166,0.658056,-0.349849,11.1192,0.682592,-0.164209,11.2176,0.641734,-0.344487,11.1211,0.746112,-0.316597,11.1491,0.787098,-0.272042,11.1715,0.814497,-0.217607,11.1849,0.824138,-0.161578,11.1874,0.814554,-0.112485,11.1785,0.787203,-0.0778026,11.1596,0.746249,-0.0759193,11.1445,0.755676,-0.110602,11.1634,0.79663,-0.314713,11.1339,0.796525,-0.342604,11.106,0.755539,-0.0609269,11.1184,0.707355,-0.270159,11.1563,0.823924,-0.215724,11.1698,0.833565,-0.159695,11.1722,0.823981,-0.054254,11.1538,0.76303,-0.0948013,11.1759,0.810909,-0.152195,11.1863,0.842885,-0.217698,11.1834,0.85409,-0.281338,11.1677,0.842818,-0.333427,11.1415,0.810786,-0.366033,11.1088,0.76287,-0.374193,11.0747,0.706365,-0.0367266,11.1234,0.706538,-0.158122,11.2348,0.632816,-0.164927,11.2466,0.654748,-0.110536,11.2325,0.692117,-0.070362,11.1964,0.732615,-0.108367,11.2171,0.777492,-0.139624,11.2483,0.726464,-0.18067,11.2552,0.673337,-0.202952,11.2592,0.685751,-0.180797,11.2558,0.749403,-0.162163,11.2269,0.807463,-0.223559,11.2242,0.817965,-0.227788,11.2537,0.757441,-0.228384,11.2581,0.690102,-0.253091,11.252,0.685726,-0.273442,11.2424,0.749355,-0.283208,11.2094,0.8074,-0.332031,11.1849,0.777377,-0.310808,11.2237,0.726376,-0.273314,11.2418,0.673289,-0.285973,11.2291,0.654686,-0.3342,11.2002,0.692002,-0.362593,11.1543,0.732465,-0.370242,11.1223,0.679502,-0.340054,11.1758,0.651466,-0.289142,11.2159,0.632748,-0.225256,11.2366,0.626199,-0.0539335,11.1679,0.679665,-0.097962,11.2107,0.65159,-0.136852,11.0884,0.849572,-0.156724,11.1112,0.566051,-0.1083,11.1305,0.597234,-0.0744349,11.1434,0.645992,-0.0602837,11.148,0.704899,-0.0680009,11.1434,0.76499,-0.0964115,11.1305,0.817114,-0.141381,11.1112,0.849817,-0.154279,11.1305,0.850515,-0.120243,11.1662,0.818403,-0.0991388,11.1901,0.766673,-0.0939872,11.1985,0.706722,-0.105573,11.1901,0.647675,-0.132132,11.1662,0.598523,-0.169621,11.1305,0.566748,-0.188924,11.1434,0.567792,-0.167799,11.1901,0.600452,-0.152174,11.2213,0.650195,-0.144428,11.2322,0.709449,-0.14574,11.2213,0.769193,-0.155911,11.1901,0.820331,-0.173581,11.1434,0.851558,-0.196351,11.148,0.852789,-0.197983,11.1985,0.822606,-0.20071,11.2322,0.772165,-0.203927,11.2441,0.712666,-0.207144,11.2322,0.653167,-0.209871,11.1985,0.602726,-0.211694,11.148,0.569023,-0.234463,11.1434,0.570254,-0.251943,11.1901,0.605001,-0.262114,11.2213,0.656139,-0.263426,11.2322,0.715883,-0.25568,11.2213,0.775137,-0.240055,11.1901,0.824881,-0.21912,11.1434,0.854021,-0.238423,11.1305,0.855064,-0.275722,11.1662,0.826809,-0.302281,11.1901,0.777657,-0.313867,11.1985,0.71861,-0.308715,11.1901,0.658659,-0.28761,11.1662,0.606929,-0.253766,11.1305,0.571298,-0.266663,11.1112,0.571995,-0.311442,11.1305,0.608218,-0.339853,11.1434,0.660342,-0.34757,11.148,0.720433,-0.333419,11.1434,0.77934,-0.299554,11.1305,0.828098,-0.251321,11.1112,0.855761,-0.25585,11.0884,0.856006,-0.307922,11.0884,0.82855,-0.344353,11.0884,0.779932,-0.359405,11.0884,0.721073,-0.350787,11.0884,0.660934,-0.319811,11.0884,0.608671,-0.271193,11.0884,0.57224,-0.212334,11.0884,0.557188,-0.266663,11.0656,0.571995,-0.311442,11.0463,0.608218,-0.339853,11.0333,0.660342,-0.34757,11.0288,0.720433,-0.333419,11.0333,0.77934,-0.299554,11.0463,0.828098,-0.251321,11.0656,0.855761,-0.238423,11.0463,0.855064,-0.275722,11.0105,0.826809,-0.302281,10.9867,0.777657,-0.313867,10.9783,0.71861,-0.308715,10.9867,0.658659,-0.28761,11.0105,0.606929,-0.253766,11.0463,0.571298,-0.234463,11.0333,0.570254,-0.251943,10.9867,0.605001,-0.262114,10.9555,0.656139,-0.263426,10.9445,0.715883,-0.25568,10.9555,0.775137,-0.240055,10.9867,0.824881,-0.21912,11.0333,0.854021,-0.196351,11.0288,0.852789,-0.197983,10.9783,0.822606,-0.20071,10.9445,0.772165,-0.203927,10.9327,0.712666,-0.207144,10.9445,0.653167,-0.209871,10.9783,0.602726,-0.211694,11.0288,0.569023,-0.188924,11.0333,0.567792,-0.167799,10.9867,0.600452,-0.152174,10.9555,0.650195,-0.144428,10.9445,0.709449,-0.14574,10.9555,0.769193,-0.155911,10.9867,0.820331,-0.173581,11.0333,0.851558,-0.154279,11.0463,0.850515,-0.120244,11.0105,0.818403,-0.0991388,10.9867,0.766673,-0.0939872,10.9783,0.706722,-0.105573,10.9867,0.647675,-0.132132,11.0105,0.598523,-0.169621,11.0463,0.566748,-0.156724,11.0656,0.566051,-0.1083,11.0463,0.597234,-0.074435,11.0333,0.645992,-0.0602838,11.0288,0.7049,-0.0680009,11.0333,0.76499,-0.0964116,11.0463,0.817114,-0.141381,11.0656,0.849817,-0.0880429,11.0884,0.816662,-0.0570667,11.0884,0.764398,-0.0484487,11.0884,0.70426,-0.0635008,11.0884,0.6454,-0.0999315,11.0884,0.596782,-0.152195,11.0884,0.565806,-0.177035,11.0803,0.847026,-0.181627,11.0734,0.847275,-0.188499,11.0688,0.847646,-0.196605,11.0672,0.848084,-0.204711,11.0688,0.848523,-0.211583,11.0734,0.848894,-0.216175,11.0803,0.849142,-0.217787,11.0884,0.84923,-0.216175,11.0965,0.849142,-0.211583,11.1034,0.848894,-0.204711,11.108,0.848523,-0.196605,11.1096,0.848084,-0.188499,11.108,0.847646,-0.181627,11.1034,0.847275,-0.177035,11.0965,0.847026,-0.175423,11.0884,0.846939,-0.165666,11.0884,0.845582,-0.168025,11.1003,0.845709,-0.174741,11.1103,0.846073,-0.184793,11.1171,0.846616,-0.19665,11.1194,0.847257,-0.208507,11.1171,0.847898,-0.218558,11.1103,0.848442,-0.225275,11.1003,0.848805,-0.227633,11.0884,0.848933,-0.225275,11.0765,0.848805,-0.218558,11.0664,0.848442,-0.208507,11.0597,0.847898,-0.19665,11.0574,0.847257,-0.184793,11.0597,0.846616,-0.174741,11.0664,0.846073,-0.168025,11.0765,0.845709,-0.19665,11.0884,0.847257,-0.138652,11.1123,0.851284,-0.152169,11.1325,0.852014,-0.1724,11.1461,0.853108,-0.196264,11.1508,0.854399,-0.220127,11.1461,0.855689,-0.240358,11.1325,0.856783,-0.253875,11.1123,0.857513,-0.258622,11.0884,0.85777,-0.253875,11.0645,0.857513,-0.240358,11.0442,0.856783,-0.220127,11.0307,0.855689,-0.196264,11.0259,0.854399,-0.1724,11.0307,0.853108,-0.15217,11.0442,0.852014,-0.138652,11.0645,0.851284,-0.133905,11.0884,0.851027,-0.0619781,10.2846,0.956831,-0.117528,10.2898,0.931531,-0.151428,10.289,0.885222,-0.169091,10.2823,0.825039,-0.173168,10.2846,0.75253,-0.170341,10.2841,0.692479,-0.167581,10.2833,0.625752,-0.169464,10.2846,0.558823,-0.0691909,10.2846,0.98079,-0.133247,10.2894,0.950998,-0.17582,10.2889,0.896847,-0.200442,10.2824,0.830861,-0.210127,10.2846,0.753815,-0.21365,10.284,0.691972,-0.211296,10.2833,0.625179,-0.207948,10.2846,0.558547,-1.37054e-14,10.2846,0.990547,-1.37054e-14,10.2846,0.965526,-0.0619781,10.2208,0.956831,-0.117528,10.2208,0.931531,-0.153709,10.2208,0.883235,-0.171067,10.2208,0.825951,-0.172664,10.2208,0.755081,-0.17024,10.2208,0.692479,-0.166777,10.2208,0.625752,-0.169464,10.2208,0.558823,-0.0680708,10.2208,0.976534,-0.130261,10.2208,0.949878,-0.172491,10.2208,0.896208,-0.205483,10.2208,0.691972,-0.201333,10.2208,0.558547,-1.38187e-14,10.2208,0.990547,-0.196275,10.2208,0.82703,-0.202888,10.2208,0.756357,-0.204317,10.2208,0.625179,-1.38187e-14,10.2208,0.965526,-0.0566604,10.2936,0.988537,-0.123231,10.2936,0.961794,-0.16225,10.3029,0.912605,-0.20185,10.2909,0.84315,-0.21338,10.2917,0.769939,-0.218354,10.295,0.705403,-0.217689,10.2907,0.63834,-0.214369,10.2936,0.571856,-0.0164408,10.2936,0.993532,0.0164408,10.2936,0.993532,-0.0841565,10.2936,0.981131,-0.146449,10.3031,0.93212,-0.186856,10.2918,0.886873,-0.206023,10.2913,0.817819,-0.216377,10.295,0.743097,-0.219977,10.2909,0.67846,-0.218361,10.2933,0.611824,-0.0488204,10.2936,0.955946,-0.10456,10.2946,0.933954,-0.145216,10.3028,0.903216,-0.160889,10.2908,0.834098,-0.16846,10.2917,0.76751,-0.165553,10.2949,0.705762,-0.162125,10.2907,0.639298,-0.162811,10.2936,0.57223,0.00811154,10.2936,0.960681,-0.00811154,10.2936,0.960681,-0.00977064,10.2936,0.960681,0.00977064,10.2936,0.960681,-0.0727008,10.2936,0.949628,-0.133068,10.3031,0.918368,-0.150671,10.2928,0.872028,-0.166911,10.2911,0.811521,-0.167319,10.2949,0.741888,-0.162937,10.2909,0.679285,-0.159614,10.2934,0.612401,-0.0553502,10.2208,0.986848,-0.121734,10.2208,0.959217,-0.172513,10.2208,0.909532,-0.199633,10.2208,0.839568,-0.21022,10.2208,0.77008,-0.214646,10.2208,0.705382,-0.213782,10.2208,0.638284,-0.210748,10.2208,0.571834,-0.0150628,10.2208,0.991858,0.0150628,10.2208,0.991858,-0.0822409,10.2208,0.978766,-0.144598,10.2208,0.944006,-0.185327,10.2208,0.886978,-0.203584,10.2208,0.817506,-0.211645,10.2208,0.745655,-0.213892,10.2208,0.678412,-0.214303,10.2208,0.611791,-0.0483653,10.2208,0.954054,-0.103475,10.2208,0.932338,-0.143299,10.2208,0.891421,-0.162988,10.2208,0.835006,-0.163228,10.2208,0.767369,-0.159764,10.2208,0.705783,-0.158917,10.2208,0.639354,-0.159817,10.2208,0.572252,0.00772425,10.2208,0.958773,-0.00772425,10.2208,0.958773,-0.00938335,10.2208,0.958773,0.00938335,10.2208,0.958773,-0.0720357,10.2208,0.947799,-0.121494,10.2208,0.91831,-0.153146,10.2208,0.869546,-0.164905,10.2208,0.812041,-0.165546,10.2208,0.74438,-0.161999,10.2208,0.679333,-0.156271,10.2208,0.612434,-1.37054e-14,10.2846,0.965329,-0.00180238,10.2846,0.965329,0.00180238,10.2846,0.965329,-0.0627708,10.2846,0.956302,-0.118104,10.29,0.930863,-0.151369,10.2889,0.884318,-0.16903,10.2823,0.824015,-0.172645,10.2847,0.751456,-0.169675,10.2839,0.691525,-0.166932,10.2834,0.624785,-1.38187e-14,10.2208,0.965329,-0.00180238,10.2208,0.965329,0.00180238,10.2208,0.965329,-0.0627708,10.2208,0.956302,-0.118104,10.2208,0.930863,-0.153801,10.2208,0.882279,-0.170875,10.2208,0.825131,-0.172301,10.2208,0.754213,-0.169779,10.2208,0.691525,-0.166076,10.2208,0.624785,-1.38187e-14,10.2208,0.990967,-0.00179212,10.2208,0.990967,0.00179212,10.2208,0.990967,-0.0691415,10.2208,0.976565,-0.131352,10.2208,0.949586,-0.173205,10.2208,0.8956,-0.196927,10.2208,0.826328,-0.203377,10.2208,0.7555,-0.20601,10.2208,0.690988,-0.204916,10.2208,0.624209,-1.37054e-14,10.2846,0.990967,-0.00179213,10.2846,0.990967,0.00179213,10.2846,0.990967,-0.0702616,10.2846,0.980821,-0.134338,10.2897,0.950706,-0.17655,10.2886,0.896223,-0.200998,10.2824,0.829887,-0.210739,10.2848,0.752737,-0.214311,10.2839,0.690988,-0.21188,10.2834,0.624209,-0.0680248,10.2846,0.98152,-0.132327,10.2891,0.952004,-0.175642,10.2892,0.898067,-0.200708,10.2823,0.832283,-0.21051,10.2844,0.755307,-0.214184,10.2842,0.69324,-0.212003,10.2831,0.626427,-0.208556,10.2846,0.559807,-0.060712,10.2846,0.956751,-0.116272,10.2897,0.931776,-0.150689,10.2892,0.886035,-0.168159,10.2823,0.826127,-0.172651,10.2844,0.75393,-0.169811,10.2842,0.69374,-0.166971,10.2831,0.627032,-0.168834,10.2846,0.560093,-0.0669047,10.2208,0.977264,-0.129341,10.2208,0.950884,-0.172338,10.2208,0.897441,-0.196438,10.2208,0.828114,-0.203445,10.2208,0.757438,-0.206197,10.2208,0.69324,-0.205086,10.2208,0.626427,-0.201941,10.2208,0.559807,-0.0607121,10.2208,0.956751,-0.116272,10.2208,0.931776,-0.152884,10.2208,0.884111,-0.170425,10.2208,0.826957,-0.171897,10.2208,0.756067,-0.16938,10.2208,0.69374,-0.166122,10.2208,0.627032,-0.168834,10.2208,0.560093,-0.0603696,10.1093,0.934996,-0.0652662,10.1093,0.933409,-0.113624,10.1093,0.910282,-0.118359,10.1093,0.907353,-0.1435,10.1093,0.865146,-0.145787,10.1093,0.859342,-0.16148,10.1093,0.802526,-0.163702,10.1093,0.798261,-0.163021,10.1093,0.736203,-0.163782,10.1093,0.732521,-0.159798,10.1093,0.676213,-0.160364,10.1093,0.671421,-0.161005,10.1093,0.609506,-0.160335,10.1093,0.603496,-0.0708864,10.1093,0.96993,-0.0786179,10.1093,0.968047,-0.137237,10.1093,0.939525,-0.144583,10.1093,0.935402,-0.181195,10.1093,0.883854,-0.185541,10.1093,0.874809,-0.224421,10.1093,0.675475,-0.223422,10.1093,0.670468,-0.207766,10.1093,0.811774,-0.207934,10.1093,0.820616,-0.21976,10.1093,0.7383,-0.22195,10.1093,0.74353,-0.218139,10.1093,0.608657,-0.219818,10.1093,0.61672,-0.159817,10.1093,0.555916,-0.170188,10.1093,0.543756,-0.162785,10.1093,0.623017,-0.160586,10.1093,0.615982,-0.158134,10.1093,0.689447,-0.15757,10.1093,0.681452,-0.161581,10.1093,0.748302,-0.160664,10.1093,0.740997,-0.156534,10.1093,0.815024,-0.157666,10.1093,0.807887,-0.139036,10.1093,0.87683,-0.140443,10.1093,0.870708,-0.103475,10.1093,0.916002,-0.107867,10.1093,0.912577,-0.0483653,10.1093,0.937717,-0.0547826,10.1093,0.935694,-0.171007,10.1093,0.542487,-0.217489,10.1093,0.566984,-0.204863,10.1093,0.543471,-0.219498,10.1093,0.628694,-0.226845,10.1093,0.689046,-0.227086,10.1093,0.680896,-0.220477,10.1093,0.751013,-0.205526,10.1093,0.826506,-0.175067,10.1093,0.897282,-0.177778,10.1093,0.892961,-0.124315,10.1093,0.947074,-0.130147,10.1093,0.944721,-0.0571156,10.1093,0.974093,-0.0630157,10.1093,0.972922,-0.204078,10.1093,0.54221,-0.217848,10.1093,0.590233,-0.218077,10.1093,0.597439,-0.21784,10.1093,0.652631,-0.217618,10.1093,0.729157,-0.219057,10.1093,0.734341,-0.208102,10.1093,0.799362,-0.208586,10.1093,0.804968,-0.188957,10.1093,0.868674,-0.147584,10.1093,0.928789,-0.0848217,10.1093,0.966624,-0.0168281,10.1093,0.979102,0.0168281,10.1093,0.979102,0.00582987,10.1093,0.980618,-0.00582987,10.1093,0.980618,-0.00748897,10.1093,0.980618,0.00748897,10.1093,0.980618,-1.40168e-14,10.1093,0.980755,-0.160185,10.1093,0.596098,-0.161976,10.1093,0.662997,-0.165546,10.1093,0.727781,-0.164792,10.1093,0.792642,-0.14857,10.1093,0.852106,-0.121494,10.1093,0.901974,-0.0720357,10.1093,0.931462,0.0077243,10.1093,0.942437,-0.0077243,10.1093,0.942437,-0.0093834,10.1093,0.942437,0.0093834,10.1093,0.942437,0.00428974,10.1093,0.942442,-0.00428974,10.1093,0.942442,-0.00594884,10.1093,0.942442,0.00594884,10.1093,0.942442,-1.40168e-14,10.1093,0.942586,-0.0616581,10.165,0.947879,-0.0659687,10.165,0.945681,-0.11682,10.165,0.922562,-0.119623,10.165,0.91886,-0.152678,10.165,0.874832,-0.153873,10.165,0.870037,-0.169089,10.165,0.818348,-0.169074,10.165,0.812431,-0.171977,10.165,0.747727,-0.171532,10.165,0.743878,-0.169791,10.165,0.684361,-0.169349,10.165,0.679163,-0.164965,10.165,0.617645,-0.16432,10.165,0.61239,-0.0748679,10.165,0.972133,-0.0693325,10.165,0.973153,-0.138057,10.165,0.939759,-0.1334,10.165,0.943083,-0.179292,10.165,0.885226,-0.175967,10.165,0.890538,-0.214051,10.165,0.678554,-0.213972,10.165,0.683849,-0.200581,10.165,0.821081,-0.200366,10.165,0.825632,-0.210249,10.165,0.749294,-0.21179,10.165,0.75352,-0.214218,10.165,0.617043,-0.216301,10.165,0.622342,-0.162675,10.165,0.57047,-0.169149,10.165,0.556344,-0.161119,10.165,0.637442,-0.16335,10.165,0.623026,-0.163138,10.165,0.703813,-0.167655,10.165,0.689654,-0.165174,10.165,0.764956,-0.169961,10.165,0.751597,-0.161659,10.165,0.834162,-0.166988,10.165,0.823561,-0.140627,10.165,0.887863,-0.149878,10.165,0.878554,-0.0992112,10.165,0.927642,-0.112318,10.165,0.924321,-0.0425417,10.165,0.947732,-0.056584,10.165,0.948202,-0.17722,10.165,0.55216,-0.208249,10.165,0.55605,-0.214757,10.165,0.570042,-0.219434,10.165,0.636521,-0.215947,10.165,0.689237,-0.219424,10.165,0.703681,-0.214376,10.165,0.768093,-0.199069,10.165,0.838135,-0.173819,10.165,0.895705,-0.169055,10.165,0.907118,-0.128976,10.165,0.94681,-0.117128,10.165,0.956757,-0.0641137,10.165,0.975239,-0.0503588,10.165,0.981188,-0.200175,10.165,0.55199,-0.216064,10.165,0.597389,-0.214515,10.165,0.611807,-0.21501,10.165,0.664011,-0.215112,10.165,0.73156,-0.21079,10.165,0.745285,-0.206947,10.165,0.80107,-0.201845,10.165,0.816646,-0.189048,10.165,0.869907,-0.150575,10.165,0.930211,-0.0903151,10.165,0.969733,-0.0225354,10.165,0.984835,0.0225354,10.165,0.984835,0.0048991,10.165,0.983314,-0.0048991,10.165,0.983314,-0.0065582,10.165,0.983314,0.0065582,10.165,0.983314,-1.39177e-14,10.165,0.982693,-0.162015,10.165,0.597965,-0.166863,10.165,0.664858,-0.167839,10.165,0.730852,-0.167182,10.165,0.795737,-0.155813,10.165,0.856243,-0.12573,10.165,0.906829,-0.077206,10.165,0.938174,0.00338802,10.165,0.955607,-0.00338802,10.165,0.955607,-0.00504712,10.165,0.955607,0.00504712,10.165,0.955607,-0.01645,10.165,0.951123,0.01645,10.165,0.951123,-1.39177e-14,10.165,0.956822,-0.061963,10.2181,0.956408,-0.0629219,10.2181,0.9558,-0.117495,10.2181,0.931107,-0.118176,10.2181,0.930296,-0.153677,10.2181,0.882827,-0.153818,10.2181,0.881694,-0.171012,10.2181,0.825568,-0.170805,10.2181,0.824556,-0.17258,10.2181,0.754718,-0.172215,10.2181,0.75369,-0.170162,10.2181,0.692095,-0.16969,10.2181,0.690941,-0.16673,10.2181,0.625369,-0.165984,10.2181,0.624199,-0.0704793,10.2181,0.980411,-0.0691976,10.2181,0.980429,-0.134514,10.2181,0.950189,-0.133255,10.2181,0.950624,-0.176579,10.2181,0.896579,-0.175724,10.2181,0.897358,-0.213471,10.2181,0.6904,-0.212957,10.2181,0.691588,-0.200218,10.2181,0.827494,-0.200332,10.2181,0.828731,-0.209238,10.2181,0.755844,-0.209792,10.2181,0.757118,-0.21262,10.2181,0.624795,-0.213366,10.2181,0.626234,-0.159952,10.2181,0.572168,-0.168849,10.2181,0.559915,-0.159068,10.2181,0.639263,-0.166049,10.2181,0.626843,-0.159805,10.2181,0.70569,-0.169237,10.2181,0.693547,-0.163204,10.2181,0.767255,-0.171747,10.2181,0.755853,-0.162975,10.2181,0.834886,-0.170318,10.2181,0.826731,-0.143172,10.2181,0.891253,-0.152748,10.2181,0.883844,-0.103274,10.2181,0.932116,-0.116085,10.2181,0.931424,-0.04809,10.2181,0.953755,-0.0605169,10.2181,0.956347,-0.169821,10.2181,0.558508,-0.208542,10.2181,0.559629,-0.21724,10.2181,0.57175,-0.220604,10.2181,0.638201,-0.213683,10.2181,0.693051,-0.221142,10.2181,0.705302,-0.215748,10.2181,0.769986,-0.203074,10.2181,0.840127,-0.175459,10.2181,0.898719,-0.175213,10.2181,0.910478,-0.132169,10.2181,0.951759,-0.123975,10.2181,0.963096,-0.0678399,10.2181,0.981223,-0.0567961,10.2181,0.989993,-0.207591,10.2181,0.558237,-0.221434,10.2181,0.61111,-0.213237,10.2181,0.623623,-0.220256,10.2181,0.677731,-0.217392,10.2181,0.745152,-0.20973,10.2181,0.754886,-0.208412,10.2181,0.817048,-0.200909,10.2181,0.826647,-0.188961,10.2181,0.886892,-0.147726,10.2181,0.944421,-0.0850813,10.2181,0.982335,-0.0170979,10.2181,0.994938,0.0170979,10.2181,0.994938,-1.38234e-14,10.2181,0.990605,-0.00201743,10.2181,0.990605,0.00201743,10.2181,0.990605,-1.38234e-14,10.2181,0.990175,-0.156589,10.2181,0.61175,-0.162264,10.2181,0.678649,-0.165696,10.2181,0.743825,-0.165014,10.2181,0.811271,-0.153272,10.2181,0.868917,-0.121694,10.2181,0.917768,-0.0722801,10.2181,0.947344,-1.38234e-14,10.2181,0.96487,-0.00195577,10.2181,0.96487,0.00195577,10.2181,0.96487,0.00805831,10.2181,0.958412,-0.00805831,10.2181,0.958412,-0.00971741,10.2181,0.958412,0.00971741,10.2181,0.958412,-1.38234e-14,10.2181,0.965114,-0.0691909,10.2238,0.98079,-0.133247,10.2238,0.950998,-0.175714,10.2238,0.897666,-0.212872,10.2238,0.691972,-0.207948,10.2238,0.558547,-0.0619781,10.2238,0.956831,-0.117528,10.2238,0.931531,-0.153714,10.2238,0.883231,-0.171065,10.2238,0.825966,-0.17281,10.2238,0.755063,-0.170386,10.2238,0.692479,-0.166764,10.2238,0.625752,-0.169464,10.2238,0.558823,-1.38133e-14,10.2238,0.990547,-1.38133e-14,10.2238,0.965526,-0.0570939,10.2242,0.99034,-0.124263,10.2242,0.963334,-0.175436,10.2242,0.910592,-0.203161,10.2242,0.840183,-0.215831,10.2242,0.770073,-0.22126,10.2242,0.705383,-0.220779,10.2242,0.638287,-0.21722,10.2242,0.571836,-0.0168096,10.2242,0.995348,0.0168096,10.2242,0.995348,-0.08479,10.2242,0.982873,-0.14752,10.2242,0.945059,-0.188856,10.2242,0.887694,-0.208456,10.2242,0.817717,-0.217432,10.2242,0.745743,-0.220423,10.2242,0.678414,-0.221594,10.2242,0.611792,-0.0483869,10.2242,0.954144,-0.103527,10.2242,0.932415,-0.143379,10.2242,0.891468,-0.163082,10.2242,0.835026,-0.163577,10.2242,0.767376,-0.160141,10.2242,0.705782,-0.15907,10.2242,0.639351,-0.15996,10.2242,0.572251,0.0077427,10.2242,0.958864,-0.0077427,10.2242,0.958864,-0.0094018,10.2242,0.958864,0.0094018,10.2242,0.958864,-0.0720674,10.2242,0.947886,-0.121558,10.2242,0.918377,-0.153232,10.2242,0.869581,-0.165012,10.2242,0.812057,-0.165677,10.2242,0.744384,-0.162149,10.2242,0.679331,-0.15643,10.2242,0.612433,-1.38133e-14,10.2238,0.990967,-0.00179212,10.2238,0.990967,0.00179212,10.2238,0.990967,-0.0702616,10.2238,0.980821,-0.134338,10.2238,0.950706,-0.176458,10.2238,0.897054,-0.200812,10.2238,0.827102,-0.209641,10.2238,0.755383,-0.213369,10.2238,0.690988,-0.213079,10.2238,0.624209,-1.38133e-14,10.2238,0.965329,-0.00180238,10.2238,0.965329,0.00180238,10.2238,0.965329,-0.0627708,10.2238,0.956302,-0.118104,10.2238,0.930863,-0.153806,10.2238,0.882275,-0.170872,10.2238,0.825142,-0.172452,10.2238,0.754196,-0.16993,10.2238,0.691525,-0.166063,10.2238,0.624785,-0.0680248,10.2238,0.98152,-0.132327,10.2238,0.952005,-0.175538,10.2238,0.898866,-0.200316,10.2238,0.82887,-0.20971,10.2238,0.757297,-0.213557,10.2238,0.69324,-0.213201,10.2238,0.626427,-0.208556,10.2238,0.559807,-0.0607121,10.2238,0.956751,-0.116272,10.2238,0.931776,-0.152885,10.2238,0.88411,-0.170424,10.2238,0.82697,-0.172048,10.2238,0.75605,-0.169531,10.2238,0.69374,-0.16611,10.2238,0.627032,-0.168834,10.2238,0.560093,-0.212495,10.2238,0.625179,-0.209177,10.2238,0.756183,-0.200174,10.2238,0.82779,-0.0691909,10.2542,0.98079,-0.133247,10.2566,0.950998,-0.175767,10.2563,0.897257,-0.213547,10.2761,0.691972,-0.207948,10.2765,0.558547,-0.0619781,10.2542,0.956831,-0.117528,10.2568,0.931531,-0.152571,10.2564,0.884226,-0.169353,10.2746,0.825162,-0.173121,10.2765,0.752865,-0.170347,10.2761,0.692479,-0.167473,10.2754,0.625752,-0.169464,10.2765,0.558823,-1.37593e-14,10.2542,0.990547,-1.37593e-14,10.2542,0.965526,-0.0568771,10.2589,0.989438,-0.123747,10.2589,0.962564,-0.163571,10.2951,0.912403,-0.202023,10.2821,0.842758,-0.213704,10.2827,0.769957,-0.218739,10.2856,0.7054,-0.218098,10.2819,0.638333,-0.214746,10.2844,0.571853,-0.0166252,10.2589,0.99444,0.0166252,10.2589,0.99444,-0.0844732,10.2589,0.982002,-0.146556,10.2952,0.933416,-0.18712,10.2829,0.886982,-0.206345,10.2824,0.817805,-0.216517,10.2857,0.743447,-0.220036,10.282,0.678454,-0.218789,10.2842,0.61182,-0.0486037,10.2589,0.955045,-0.104043,10.2594,0.933185,-0.144297,10.2635,0.897342,-0.161179,10.282,0.834221,-0.167814,10.2828,0.767492,-0.164836,10.2856,0.705765,-0.161721,10.2819,0.639305,-0.162433,10.2844,0.572233,0.00792712,10.2589,0.959773,-0.00792712,10.2589,0.959773,-0.00958622,10.2589,0.959773,0.00958622,10.2589,0.959773,-0.0723841,10.2589,0.948757,-0.127313,10.2637,0.918372,-0.15101,10.2837,0.871705,-0.16666,10.2823,0.811592,-0.167102,10.2856,0.742218,-0.162833,10.2821,0.679291,-0.159192,10.2842,0.612405,-1.37593e-14,10.2542,0.990967,-0.00179212,10.2542,0.990967,0.00179212,10.2542,0.990967,-0.0702616,10.2542,0.980821,-0.134338,10.2567,0.950706,-0.176504,10.2562,0.896638,-0.200973,10.2746,0.829519,-0.210594,10.2767,0.753087,-0.214186,10.2759,0.690988,-0.212039,10.2755,0.624209,-1.37593e-14,10.2542,0.965329,-0.00180238,10.2542,0.965329,0.00180238,10.2542,0.965329,-0.0627708,10.2542,0.956302,-0.118104,10.2569,0.930863,-0.152588,10.2563,0.883296,-0.169274,10.2746,0.824164,-0.172619,10.2767,0.751819,-0.169709,10.2759,0.691525,-0.166817,10.2755,0.624785,-0.0680248,10.2542,0.98152,-0.132327,10.2565,0.952004,-0.17559,10.2565,0.898466,-0.200656,10.2746,0.831832,-0.210404,10.2764,0.755571,-0.214101,10.2762,0.69324,-0.212162,10.2753,0.626427,-0.208556,10.2765,0.559807,-0.0607121,10.2542,0.956751,-0.116272,10.2567,0.931776,-0.151787,10.2565,0.885072,-0.168459,10.2745,0.826239,-0.172571,10.2764,0.754211,-0.169774,10.2762,0.69374,-0.166857,10.2753,0.627032,-0.168834,10.2765,0.560093,-0.211455,10.2754,0.625179,-0.210001,10.2766,0.754128,-0.200406,10.2746,0.830454,-0.0653429,10.2979,0.972767,-0.12395,10.2923,0.946074,-0.159715,10.2932,0.897217,-0.17835,10.3003,0.833723,-0.182651,10.2979,0.757224,-0.179668,10.2984,0.693868,-0.176757,10.2992,0.623469,-0.178743,10.2979,0.552858,-0.0729526,10.2979,0.998044,-0.140534,10.2928,0.966612,-0.185449,10.2934,0.909482,-0.211426,10.3002,0.839865,-0.221643,10.2978,0.758579,-0.22536,10.2985,0.693333,-0.222878,10.2992,0.622865,-0.219345,10.2979,0.552566,-1.36817e-14,10.2979,1.00834,-1.36817e-14,10.2979,0.98194,-0.0653429,10.3652,0.972767,-0.12395,10.3652,0.946074,-0.162122,10.3652,0.895121,-0.180434,10.3652,0.834685,-0.182119,10.3652,0.759915,-0.179562,10.3652,0.693868,-0.175909,10.3652,0.623469,-0.178743,10.3652,0.552858,-0.0717709,10.3652,0.993553,-0.137383,10.3652,0.965431,-0.181937,10.3652,0.908808,-0.216745,10.3652,0.693333,-0.212366,10.3652,0.552566,-1.35621e-14,10.3652,1.00834,-0.20703,10.3652,0.835823,-0.214006,10.3652,0.761261,-0.215514,10.3652,0.622865,-1.35621e-14,10.3652,0.98194,-0.0597325,10.2884,1.00622,-0.129966,10.2884,0.978003,-0.171133,10.2785,0.926107,-0.212911,10.2912,0.852831,-0.225075,10.2904,0.775591,-0.230324,10.2869,0.707503,-0.229622,10.2914,0.63675,-0.226119,10.2884,0.566608,-0.0172999,10.2884,1.01149,0.0172999,10.2884,1.01149,-0.0887417,10.2884,0.998404,-0.154462,10.2784,0.946695,-0.197092,10.2902,0.898959,-0.217314,10.2908,0.826105,-0.228238,10.2869,0.747271,-0.232036,10.2913,0.679078,-0.230331,10.2887,0.608775,-0.0514612,10.2884,0.971833,-0.110267,10.2873,0.948631,-0.153161,10.2787,0.916202,-0.169696,10.2914,0.84328,-0.177684,10.2904,0.773028,-0.174617,10.287,0.707883,-0.171001,10.2914,0.637761,-0.171724,10.2884,0.567003,0.00860354,10.2884,0.976828,-0.00860354,10.2884,0.976828,-0.0102626,10.2884,0.976828,0.0102626,10.2884,0.976828,-0.0766556,10.2884,0.965167,-0.140345,10.2784,0.932187,-0.158916,10.2892,0.883298,-0.17605,10.291,0.819461,-0.176481,10.287,0.745996,-0.171858,10.2913,0.679948,-0.168351,10.2886,0.609384,-0.0583503,10.3652,1.00444,-0.128387,10.3652,0.975284,-0.18196,10.3652,0.922865,-0.210573,10.3652,0.849051,-0.221741,10.3652,0.775739,-0.226411,10.3652,0.707481,-0.2255,10.3652,0.636691,-0.222299,10.3652,0.566585,-0.015846,10.3652,1.00972,0.015846,10.3652,1.00972,-0.0867206,10.3652,0.995909,-0.152509,10.3652,0.959236,-0.195479,10.3652,0.89907,-0.214741,10.3652,0.825775,-0.223246,10.3652,0.74997,-0.225616,10.3652,0.679027,-0.22605,10.3652,0.60874,-0.050981,10.3652,0.969836,-0.109124,10.3652,0.946926,-0.151138,10.3652,0.903758,-0.171911,10.3652,0.844238,-0.172164,10.3652,0.772879,-0.16851,10.3652,0.707905,-0.167616,10.3652,0.637819,-0.168566,10.3652,0.567026,0.00819493,10.3652,0.974816,-0.00819493,10.3652,0.974816,-0.00985403,10.3652,0.974816,0.00985403,10.3652,0.974816,-0.0759539,10.3652,0.963237,-0.128133,10.3652,0.932126,-0.161527,10.3652,0.880678,-0.173933,10.3652,0.820009,-0.17461,10.3652,0.748625,-0.170868,10.3652,0.679999,-0.164825,10.3652,0.609419,-1.36817e-14,10.2979,0.981732,-0.00185591,10.2979,0.981732,0.00185591,10.2979,0.981732,-0.0661791,10.2979,0.972209,-0.124558,10.2922,0.94537,-0.159653,10.2934,0.896263,-0.178285,10.3003,0.832642,-0.182099,10.2977,0.756091,-0.178966,10.2986,0.692862,-0.176072,10.2992,0.62245,-1.35621e-14,10.3652,0.981732,-0.00185591,10.3652,0.981732,0.00185591,10.3652,0.981732,-0.0661791,10.3652,0.972209,-0.124558,10.3652,0.94537,-0.162219,10.3652,0.894112,-0.180231,10.3652,0.833819,-0.181736,10.3652,0.758999,-0.179075,10.3652,0.692862,-0.175168,10.3652,0.62245,-1.35621e-14,10.3652,1.00878,-0.00184508,10.3652,1.00878,0.00184508,10.3652,1.00878,-0.0729004,10.3652,0.993586,-0.138534,10.3652,0.965123,-0.18269,10.3652,0.908166,-0.207718,10.3652,0.835082,-0.214523,10.3652,0.760357,-0.2173,10.3652,0.692295,-0.216147,10.3652,0.621841,-1.36817e-14,10.2979,1.00878,-0.00184509,10.2979,1.00878,0.00184509,10.2979,1.00878,-0.0740821,10.2979,0.998077,-0.141685,10.2925,0.966305,-0.18622,10.2936,0.908824,-0.212012,10.3002,0.838838,-0.22229,10.2977,0.757442,-0.226058,10.2987,0.692295,-0.223493,10.2992,0.621841,-0.0717223,10.2979,0.998814,-0.139563,10.2931,0.967674,-0.185261,10.2931,0.910768,-0.211707,10.3003,0.841366,-0.222048,10.298,0.760154,-0.225925,10.2983,0.694671,-0.223623,10.2994,0.624182,-0.219987,10.2979,0.553896,-0.0640071,10.2979,0.972682,-0.122624,10.2925,0.946333,-0.158935,10.293,0.898075,-0.177367,10.3003,0.83487,-0.182105,10.2981,0.758701,-0.17911,10.2982,0.695199,-0.176113,10.2994,0.62482,-0.178079,10.2979,0.554197,-0.0705406,10.3652,0.994324,-0.136412,10.3652,0.966493,-0.181775,10.3652,0.910108,-0.207202,10.3652,0.836967,-0.214594,10.3652,0.762402,-0.217497,10.3652,0.694671,-0.216326,10.3652,0.624182,-0.213008,10.3652,0.553896,-0.0640072,10.3652,0.972682,-0.122624,10.3652,0.946333,-0.161251,10.3652,0.896045,-0.179758,10.3652,0.835746,-0.18131,10.3652,0.760955,-0.178654,10.3652,0.695199,-0.175218,10.3652,0.62482,-0.178079,10.3652,0.554197,-0.0636458,10.4828,0.94973,-0.0688119,10.4828,0.948056,-0.119831,10.4828,0.923656,-0.124827,10.4828,0.920566,-0.151351,10.4828,0.876037,-0.153764,10.4828,0.869913,-0.17032,10.4828,0.809971,-0.172664,10.4828,0.805471,-0.171946,10.4828,0.739999,-0.172749,10.4828,0.736113,-0.168546,10.4828,0.676707,-0.169143,10.4828,0.671652,-0.169819,10.4828,0.60633,-0.169112,10.4828,0.599988,-0.0747414,10.4828,0.986586,-0.0828983,10.4828,0.9846,-0.144743,10.4828,0.954508,-0.152494,10.4828,0.950159,-0.19112,10.4828,0.895774,-0.195705,10.4828,0.886231,-0.236724,10.4828,0.675929,-0.23567,10.4828,0.670646,-0.219153,10.4828,0.819728,-0.21933,10.4828,0.829056,-0.231807,10.4828,0.74221,-0.234117,10.4828,0.747729,-0.230097,10.4828,0.605434,-0.231868,10.4828,0.61394,-0.168566,10.4828,0.54979,-0.179508,10.4828,0.536962,-0.171697,10.4828,0.620584,-0.169376,10.4828,0.613162,-0.16679,10.4828,0.690669,-0.166194,10.4828,0.682235,-0.170427,10.4828,0.752763,-0.169459,10.4828,0.745057,-0.165102,10.4828,0.823156,-0.166296,10.4828,0.815627,-0.146641,10.4828,0.888363,-0.148125,10.4828,0.881904,-0.109124,10.4828,0.92969,-0.113757,10.4828,0.926078,-0.050981,10.4828,0.952601,-0.0577514,10.4828,0.950466,-0.180371,10.4828,0.535623,-0.22941,10.4828,0.561467,-0.21609,10.4828,0.53666,-0.231531,10.4828,0.626574,-0.239282,10.4828,0.690246,-0.239536,10.4828,0.681648,-0.232563,10.4828,0.755623,-0.21679,10.4828,0.83527,-0.184654,10.4828,0.909941,-0.187515,10.4828,0.905382,-0.13111,10.4828,0.962473,-0.137263,10.4828,0.95999,-0.0602128,10.4828,0.990979,-0.0664376,10.4828,0.989742,-0.215262,10.4828,0.535331,-0.22979,10.4828,0.585996,-0.230031,10.4828,0.593599,-0.229781,10.4828,0.651828,-0.229547,10.4828,0.732565,-0.231065,10.4828,0.738033,-0.219508,10.4828,0.806632,-0.220018,10.4828,0.812548,-0.199308,10.4828,0.879758,-0.15566,10.4828,0.943182,-0.0894434,10.4828,0.983098,-0.0177085,10.4828,0.996264,0.0177085,10.4828,0.996264,0.00619631,10.4828,0.997862,-0.00619631,10.4828,0.997862,-0.00785541,10.4828,0.997862,0.00785541,10.4828,0.997862,-1.33531e-14,10.4828,0.998007,-0.168954,10.4828,0.592183,-0.170843,10.4828,0.662764,-0.17461,10.4828,0.731113,-0.173814,10.4828,0.799543,-0.156699,10.4828,0.862279,-0.128133,10.4828,0.914891,-0.0759539,10.4828,0.946002,0.00819498,10.4828,0.95758,-0.00819498,10.4828,0.95758,-0.00985408,10.4828,0.95758,0.00985408,10.4828,0.95758,0.00457143,10.4828,0.957586,-0.00457143,10.4828,0.957586,-0.00623053,10.4828,0.957586,0.00623053,10.4828,0.957586,-1.33531e-14,10.4828,0.957738,-0.0650053,10.424,0.963322,-0.069553,10.424,0.961003,-0.123203,10.424,0.936612,-0.12616,10.424,0.932706,-0.161034,10.424,0.886255,-0.162295,10.424,0.881196,-0.178347,10.424,0.826663,-0.178332,10.424,0.820421,-0.181394,10.424,0.752156,-0.180925,10.424,0.748096,-0.179088,10.424,0.685303,-0.178622,10.424,0.679819,-0.173997,10.424,0.614917,-0.173316,10.424,0.609372,-0.078942,10.424,0.988911,-0.073102,10.424,0.989986,-0.145608,10.424,0.954755,-0.140695,10.424,0.958262,-0.189112,10.424,0.897222,-0.185604,10.424,0.902825,-0.225784,10.424,0.679177,-0.2257,10.424,0.684763,-0.211573,10.424,0.829547,-0.211345,10.424,0.834348,-0.221773,10.424,0.75381,-0.223398,10.424,0.758268,-0.22596,10.424,0.614282,-0.228157,10.424,0.619872,-0.17158,10.424,0.565145,-0.178411,10.424,0.550243,-0.169939,10.424,0.635803,-0.172293,10.424,0.620593,-0.172069,10.424,0.705826,-0.176835,10.424,0.690887,-0.174217,10.424,0.770334,-0.179268,10.424,0.756239,-0.170509,10.424,0.843348,-0.176131,10.424,0.832163,-0.14832,10.424,0.900004,-0.15808,10.424,0.890182,-0.104625,10.424,0.941971,-0.118453,10.424,0.938467,-0.044837,10.424,0.963167,-0.059652,10.424,0.963662,-0.186926,10.424,0.545828,-0.219663,10.424,0.549933,-0.226529,10.424,0.564694,-0.231463,10.424,0.634831,-0.227784,10.424,0.690448,-0.231452,10.424,0.705686,-0.226126,10.424,0.773643,-0.209977,10.424,0.847539,-0.183338,10.424,0.908277,-0.178312,10.424,0.920318,-0.136028,10.424,0.962194,-0.123527,10.424,0.972689,-0.0675959,10.424,0.992187,-0.0530842,10.424,0.998464,-0.211144,10.424,0.545648,-0.227908,10.424,0.593546,-0.226273,10.424,0.608757,-0.226796,10.424,0.663834,-0.226903,10.424,0.735099,-0.222344,10.424,0.74958,-0.218289,10.424,0.808435,-0.212907,10.424,0.824867,-0.199405,10.424,0.88106,-0.158815,10.424,0.944681,-0.0952392,10.424,0.986378,-0.0237298,10.424,1.00231,0.0237298,10.424,1.00231,0.00521432,10.424,1.00071,-0.00521432,10.424,1.00071,-0.00687343,10.424,1.00071,0.00687343,10.424,1.00071,-1.34576e-14,10.424,1.00005,-0.170885,10.424,0.594154,-0.176,10.424,0.664727,-0.177029,10.424,0.734353,-0.176336,10.424,0.802808,-0.164341,10.424,0.866644,-0.132602,10.424,0.920013,-0.0814086,10.424,0.953083,0.0036201,10.424,0.971476,-0.0036201,10.424,0.971476,-0.0052792,10.424,0.971476,0.0052792,10.424,0.971476,-0.0173095,10.424,0.966744,0.0173095,10.424,0.966744,-1.34576e-14,10.424,0.972758,-0.0653269,10.368,0.97232,-0.0663386,10.368,0.971679,-0.123915,10.368,0.945627,-0.124633,10.368,0.944771,-0.162088,10.368,0.894691,-0.162236,10.368,0.893495,-0.180377,10.368,0.83428,-0.180158,10.368,0.833213,-0.182031,10.368,0.759532,-0.181646,10.368,0.758447,-0.179479,10.368,0.693463,-0.178981,10.368,0.692245,-0.175859,10.368,0.623065,-0.175072,10.368,0.621831,-0.0743119,10.368,0.997643,-0.0729596,10.368,0.997663,-0.14187,10.368,0.965759,-0.140541,10.368,0.966218,-0.18625,10.368,0.909199,-0.185348,10.368,0.910021,-0.225172,10.368,0.691675,-0.22463,10.368,0.692928,-0.211189,10.368,0.836312,-0.21131,10.368,0.837617,-0.220706,10.368,0.76072,-0.22129,10.368,0.762064,-0.224274,10.368,0.622459,-0.225061,10.368,0.623978,-0.168708,10.368,0.566937,-0.178094,10.368,0.55401,-0.167775,10.368,0.637724,-0.175141,10.368,0.624621,-0.168553,10.368,0.707806,-0.178504,10.368,0.694995,-0.172139,10.368,0.772759,-0.181152,10.368,0.76073,-0.171897,10.368,0.844112,-0.179645,10.368,0.835507,-0.151005,10.368,0.90358,-0.161107,10.368,0.895763,-0.108911,10.368,0.946692,-0.122427,10.368,0.945961,-0.0506905,10.368,0.969521,-0.0638013,10.368,0.972256,-0.17912,10.368,0.552526,-0.219971,10.368,0.553708,-0.229148,10.368,0.566496,-0.232697,10.368,0.636603,-0.225396,10.368,0.694472,-0.233264,10.368,0.707396,-0.227574,10.368,0.77564,-0.214203,10.368,0.849641,-0.185069,10.368,0.911456,-0.184808,10.368,0.923863,-0.139396,10.368,0.967415,-0.130751,10.368,0.979376,-0.0715272,10.368,0.998501,-0.0598757,10.368,1.00775,-0.218969,10.368,0.552239,-0.233573,10.368,0.608022,-0.224925,10.368,0.621223,-0.23233,10.368,0.678309,-0.229309,10.368,0.749439,-0.221225,10.368,0.759709,-0.219834,10.368,0.825292,-0.211918,10.368,0.835419,-0.199313,10.368,0.898979,-0.155809,10.368,0.959673,-0.0897174,10.368,0.999674,-0.0179931,10.368,1.01297,0.0179931,10.368,1.01297,-1.35572e-14,10.368,1.0084,-0.00208279,10.368,1.0084,0.00208279,10.368,1.0084,-1.35572e-14,10.368,1.00795,-0.16516,10.368,0.608697,-0.171147,10.368,0.679277,-0.174768,10.368,0.74804,-0.174048,10.368,0.819196,-0.16166,10.368,0.880015,-0.128345,10.368,0.931554,-0.0762117,10.368,0.962757,-1.35572e-14,10.368,0.981247,-0.00201774,10.368,0.981247,0.00201774,10.368,0.981247,0.00854738,10.368,0.974434,-0.00854738,10.368,0.974434,-0.0102065,10.368,0.974434,0.0102065,10.368,0.974434,-1.35572e-14,10.368,0.981506,-0.0729526,10.362,0.998044,-0.140534,10.362,0.966612,-0.185338,10.362,0.910346,-0.22454,10.362,0.693333,-0.219345,10.362,0.552566,-0.0653429,10.362,0.972767,-0.12395,10.362,0.946074,-0.162126,10.362,0.895117,-0.180432,10.362,0.834701,-0.182274,10.362,0.759896,-0.179716,10.362,0.693868,-0.175895,10.362,0.623469,-0.178743,10.362,0.552858,-1.35678e-14,10.362,1.00834,-1.35678e-14,10.362,0.98194,-0.0601899,10.3616,1.00812,-0.131055,10.3616,0.979627,-0.185044,10.3616,0.923983,-0.214294,10.3616,0.8497,-0.227662,10.3616,0.775732,-0.233389,10.3616,0.707482,-0.232882,10.3616,0.636694,-0.229127,10.3616,0.566586,-0.017689,10.3616,1.0134,0.017689,10.3616,1.0134,-0.08941,10.3616,1.00024,-0.155591,10.3616,0.960347,-0.199203,10.3616,0.899825,-0.219881,10.3616,0.825997,-0.229351,10.3616,0.750063,-0.232507,10.3616,0.67903,-0.233742,10.3616,0.608742,-0.0510038,10.3616,0.969931,-0.109178,10.3616,0.947007,-0.151223,10.3616,0.903807,-0.17201,10.3616,0.844259,-0.172533,10.3616,0.772886,-0.168907,10.3616,0.707904,-0.167777,10.3616,0.637817,-0.168716,10.3616,0.567025,0.0082144,10.3616,0.974912,-0.0082144,10.3616,0.974912,-0.0098735,10.3616,0.974912,0.0098735,10.3616,0.974912,-0.0759873,10.3616,0.963329,-0.128201,10.3616,0.932196,-0.161618,10.3616,0.880715,-0.174046,10.3616,0.820026,-0.174747,10.3616,0.74863,-0.171026,10.3616,0.679996,-0.164992,10.3616,0.609417,-1.35678e-14,10.362,1.00878,-0.00184508,10.362,1.00878,0.00184508,10.362,1.00878,-0.0740821,10.362,0.998077,-0.141685,10.362,0.966305,-0.186123,10.362,0.9097,-0.211817,10.362,0.835899,-0.221131,10.362,0.760234,-0.225064,10.362,0.692295,-0.224758,10.362,0.621841,-1.35678e-14,10.362,0.981732,-0.00185591,10.362,0.981732,0.00185591,10.362,0.981732,-0.0661791,10.362,0.972209,-0.124558,10.362,0.94537,-0.162224,10.362,0.894108,-0.180229,10.362,0.833832,-0.181896,10.362,0.758982,-0.179235,10.362,0.692862,-0.175155,10.362,0.62245,-0.0717223,10.362,0.998814,-0.139563,10.362,0.967674,-0.185152,10.362,0.911611,-0.211292,10.362,0.837764,-0.221204,10.362,0.762253,-0.225262,10.362,0.694671,-0.224887,10.362,0.624182,-0.219987,10.362,0.553896,-0.0640072,10.362,0.972682,-0.122624,10.362,0.946333,-0.161252,10.362,0.896044,-0.179756,10.362,0.83576,-0.18147,10.362,0.760937,-0.178814,10.362,0.695199,-0.175204,10.362,0.62482,-0.178079,10.362,0.554197,-0.224142,10.362,0.622865,-0.220642,10.362,0.761078,-0.211143,10.362,0.836625,-0.0729526,10.33,0.998044,-0.140534,10.3274,0.966612,-0.185393,10.3277,0.909914,-0.225252,10.3069,0.693333,-0.219345,10.3064,0.552566,-0.0653429,10.33,0.972767,-0.12395,10.3272,0.946074,-0.160921,10.3276,0.896167,-0.178626,10.3084,0.833852,-0.182601,10.3064,0.757577,-0.179675,10.3069,0.693868,-0.176643,10.3076,0.623469,-0.178743,10.3064,0.552858,-1.36247e-14,10.33,1.00834,-1.36247e-14,10.33,0.98194,-0.0599612,10.325,1.00717,-0.130511,10.325,0.978815,-0.172526,10.2868,0.925894,-0.213094,10.3005,0.852416,-0.225418,10.2998,0.775609,-0.230729,10.2968,0.7075,-0.230053,10.3007,0.636742,-0.226517,10.2981,0.566605,-0.0174944,10.325,1.01244,0.0174944,10.325,1.01244,-0.0890758,10.325,0.999323,-0.154575,10.2867,0.948063,-0.197371,10.2997,0.899073,-0.217654,10.3002,0.826091,-0.228385,10.2968,0.747641,-0.232098,10.3006,0.679071,-0.230783,10.2983,0.608771,-0.0512325,10.325,0.970882,-0.109723,10.3245,0.947819,-0.152192,10.3201,0.910004,-0.170002,10.3006,0.84341,-0.177003,10.2998,0.773009,-0.173861,10.2968,0.707885,-0.170574,10.3007,0.637768,-0.171326,10.2981,0.567006,0.00840897,10.325,0.97587,-0.00840897,10.325,0.97587,-0.0100681,10.325,0.97587,0.0100681,10.325,0.97587,-0.0763215,10.325,0.964248,-0.134273,10.32,0.932191,-0.159273,10.2988,0.882956,-0.175784,10.3003,0.819536,-0.176251,10.2968,0.746345,-0.171747,10.3006,0.679955,-0.167906,10.2983,0.609388,-1.36247e-14,10.33,1.00878,-0.00184509,10.33,1.00878,0.00184509,10.33,1.00878,-0.0740821,10.33,0.998077,-0.141685,10.3273,0.966305,-0.186171,10.3278,0.909262,-0.211986,10.3084,0.838449,-0.222137,10.3062,0.757812,-0.225927,10.307,0.692295,-0.223661,10.3075,0.621841,-1.36247e-14,10.33,0.981732,-0.00185591,10.33,0.981732,0.00185591,10.33,0.981732,-0.0661791,10.33,0.972209,-0.124558,10.3271,0.94537,-0.160938,10.3277,0.895186,-0.178542,10.3085,0.8328,-0.182072,10.3062,0.756473,-0.179001,10.307,0.692862,-0.17595,10.3075,0.62245,-0.0717223,10.33,0.998814,-0.139563,10.3276,0.967674,-0.185206,10.3275,0.91119,-0.211652,10.3084,0.840889,-0.221936,10.3065,0.760432,-0.225837,10.3067,0.694671,-0.223791,10.3077,0.624182,-0.219987,10.3064,0.553896,-0.0640071,10.33,0.972682,-0.122624,10.3273,0.946333,-0.160094,10.3275,0.897059,-0.177683,10.3085,0.834988,-0.182021,10.3065,0.758997,-0.17907,10.3067,0.695199,-0.175993,10.3077,0.62482,-0.178079,10.3064,0.554197,-0.223045,10.3076,0.622865,-0.221511,10.3063,0.75891,-0.211388,10.3084,0.839436,-0.399454,10.1912,0.82599,-0.452448,11.5694,0.616933,-0.426792,11.5367,-0.348324,-0.132732,10.1853,-0.400425,-1.43325e-14,9.9315,1.13895,-0.255323,9.89616,1.10514,-0.38941,10.0171,0.925418,-0.443333,10.1314,0.659111,-0.392419,10.1217,0.395387,-0.380406,10.0928,0.138624,-0.378999,10.1807,-0.089564,-0.366665,10.1909,-0.159978,-0.425401,10.2982,0.753833,-0.416764,10.4044,0.755624,-0.371068,10.6271,0.80898,-0.461082,11.2445,0.645257,-0.462439,11.4362,0.637338,-0.414528,10.371,-0.348619,-0.52239,10.6349,-0.451086,-0.551502,10.8753,-0.486473,-0.522967,11.3342,-0.428964,-0.459395,11.472,-0.373482,-1.12849e-14,11.6472,-0.455321,-0.217016,11.6155,-0.432179,-0.342097,11.5759,-0.390496,-1.12079e-14,11.6905,0.746098,-0.17906,11.6697,0.728054,-0.335935,11.6223,0.684665,-0.47637,11.6109,0.494521,-0.514765,11.6364,0.279343,-0.515404,11.639,0.149359,-0.495261,11.6079,-0.117871,-0.456745,11.569,-0.25749,2.82318e-14,9.90307,0.405319,-4.68144e-15,9.8353,0.694383,-1.44116e-14,9.88699,1.14111,-0.168114,9.92578,0.365245,-0.209143,9.8656,0.638926,-0.285437,9.83993,1.09844,-0.294308,9.96785,0.280378,-0.329722,9.97209,0.513292,-0.41753,9.98085,0.885168,-1.11021e-14,11.7501,-0.323595,-0.215544,11.7115,-0.307005,-0.35726,11.6542,-0.276448,-1.08951e-14,11.8666,-0.148027,-0.203216,11.8247,-0.135543,-0.399297,11.7413,-0.108161,-1.07807e-14,11.931,0.152039,-0.211692,11.8918,0.16615,-0.419436,11.7798,0.163066,-1.07609e-14,11.9422,0.366983,-0.226603,11.8865,0.365015,-0.410207,11.782,0.317379,-1.0939e-14,11.8419,0.595099,-0.192763,11.8107,0.574473,-0.355605,11.7368,0.534284,-1.17373e-14,11.3925,0.926989,-1.15136e-14,11.5184,0.846887,-0.134471,10.7204,1.00746,-0.242234,11.3217,0.924598,-0.188895,11.4656,0.849156,-0.219585,10.6295,0.90955,-0.37953,11.2583,0.838598,-0.356523,11.4284,0.787248,-0.463262,10.2992,0.600177,-0.481286,10.4454,0.631333,-0.477137,10.6648,0.695305,-0.502096,11.2526,0.513941,-0.516038,11.4654,0.487412,-0.470139,10.3437,0.351654,-0.583408,10.6233,0.269269,-0.595596,10.7462,0.313027,-0.584441,11.2912,0.282267,-0.561977,11.4981,0.266841,-0.47537,10.2758,0.150212,-0.558481,10.4999,0.135879,-0.616291,11.3373,0.119779,-0.576561,11.5103,0.139566,-0.45109,10.3343,-0.114076,-0.609468,10.6043,-0.0796962,-0.665762,10.8138,-0.185119,-0.618417,11.3431,-0.170431,-0.567669,11.4973,-0.132473,-0.450826,10.3559,-0.225601,-0.564394,10.6269,-0.310792,-0.613202,10.855,-0.36269,-0.585796,11.3334,-0.312326,-0.533168,11.4747,-0.271723,-1.14644e-14,11.5461,-0.535241,-1.17733e-14,11.3722,-0.621512,-1.26533e-14,10.8768,-0.714553,-1.3195e-14,10.5719,-0.681045,-1.36114e-14,10.3375,-0.554951,-0.225215,11.5182,-0.499819,-0.234709,11.3588,-0.576113,-0.241441,10.8801,-0.674925,-0.219562,10.5853,-0.633742,-0.172581,10.35,-0.524528,-0.353519,11.4917,-0.44716,-0.390978,11.3424,-0.514406,-0.436582,10.8831,-0.588709,-0.39383,10.6186,-0.551646,-0.312326,10.3689,-0.452937,-0.375512,10.4836,0.802358,-0.527557,10.7042,-0.46155,-1.32964e-14,10.5148,1.03189,-0.0746281,10.5004,1.03672,-0.239311,10.5124,0.915533,-0.473743,10.5466,0.665379,-0.586791,10.6745,0.302855,-0.631247,10.6764,-0.102343,-0.582711,10.6981,-0.321279,-1.30564e-14,10.6499,-0.689956,-0.226577,10.661,-0.647556,-0.408647,10.6856,-0.565365,-0.429672,10.9069,0.790537,-0.434034,10.9295,0.775519,-0.557404,10.977,-0.48969,-0.556589,11.0769,-0.484563,-0.164002,10.9147,0.956207,-0.340487,10.9081,0.880304,-0.346012,10.9256,0.87657,-0.511805,10.9219,0.664659,-0.510421,10.9436,0.651184,-0.614866,10.8841,0.291385,-0.618445,10.9572,0.2917,-0.683845,10.958,-0.244369,-0.681679,11.0684,-0.226367,-0.624711,10.9688,-0.379683,-0.629442,11.0717,-0.37189,-1.2276e-14,11.0892,-0.69889,-1.24457e-14,10.9937,-0.709996,-0.245583,11.0951,-0.65788,-0.244428,10.9908,-0.669796,-0.440576,11.0939,-0.578723,-0.440186,10.9818,-0.584458,-0.201537,10.4382,0.975121,-0.108843,10.439,1.07459,-1.34218e-14,10.4442,1.05601,-0.308051,10.4264,0.884971,-0.355054,10.3744,0.852871,-0.364427,10.3059,0.863021,-0.271216,10.1545,1.05667,-0.142921,10.1031,1.11827,-1.40354e-14,10.0988,1.11347,-0.342999,10.2345,0.924549,-0.163353,10.3127,1.07007,-1.37021e-14,10.2864,1.13076,-0.0558012,10.2926,1.11897,-0.110627,10.3011,1.09951,-0.209292,10.3204,1.01188,-0.221127,10.3236,1.00561,-0.200393,10.3099,1.05337,-1.36783e-14,10.2998,1.15783,-0.0737163,10.3056,1.15238,-0.143327,10.3143,1.11248,-1.23666e-14,11.0382,1.07358,-0.080455,11.0282,0.968881,-0.0797285,10.9429,1.03352,-0.0666131,10.6966,1.20725,-0.0847347,10.5991,1.22891,-0.193469,10.5752,1.12581,7.12331e-05,10.599,1.26563,-0.191561,10.6352,1.08716,-1.25269e-14,10.948,1.12485,5.41494e-06,10.695,1.24467,-0.17557,10.9276,0.929765,-1.19732e-14,11.2597,0.966229,-0.104687,11.2253,0.899282,-0.444006,10.9854,0.729617,-0.551947,11.1574,-0.472197,-0.389445,10.9889,0.783373,-0.500521,11.0151,0.618519,-0.645483,11.1319,0.154283,-0.665504,11.1914,0.017294,-0.67612,11.1399,-0.163789,-0.624597,11.1555,-0.349557,-1.2144e-14,11.1635,-0.686251,-0.245075,11.1624,-0.644418,-0.438935,11.1617,-0.570013,-1.38331e-14,10.2126,1.1688,-0.0875737,10.2184,1.15434,-0.172363,10.2711,1.10676,-0.258891,10.2877,1.0266,-0.310081,10.3164,0.953602,-0.3173,10.3358,0.940072,-0.28089,10.3491,0.997137,-0.0951129,10.3845,1.17147,-1.35594e-14,10.3667,1.18683,-0.189253,10.3586,1.08553,-0.365985,11.009,0.787728,-0.120678,11.2114,0.857063,-0.17886,10.9494,0.887645,-0.0847581,11.0566,0.901111,-0.28845,10.9537,0.87209,-0.345076,11.2088,0.787867,-0.246251,11.2582,0.81763,-0.220332,11.2338,0.765134,-0.322139,11.1739,0.73378,-0.27647,10.9598,0.818784,-0.0628091,11.0781,0.849971,-0.17706,10.9623,0.8427,-0.106058,11.203,0.806999,-0.349806,11.0095,0.772671,-0.350653,11.0241,0.734151,-0.0954312,11.2208,0.761477,-0.148003,10.968,0.806174,-0.0297216,11.1079,0.799739,-0.277907,10.9516,0.781051,-0.329779,11.1829,0.698248,-0.222629,11.2486,0.721882,-0.226299,11.2523,0.667157,-0.324742,11.182,0.664605,-0.273201,10.9615,0.723778,-0.0276449,11.1172,0.731768,-0.145532,10.9552,0.74653,-0.0959922,11.224,0.696627,-0.34852,11.0256,0.690244,-0.553638,10.706,0.498157,-0.524777,10.5042,0.433283,-0.539238,10.599,0.472243,-0.571565,10.9092,0.513722,-0.57351,10.9546,0.507771,-0.554867,11.0504,0.470302,-0.563604,10.5585,0.211453,-0.624448,11.0348,0.275171,-0.665355,11.0257,0.210262,-0.619018,10.571,0.176682,-0.792715,11.143,-0.173748,-0.726978,11.2028,0.010407,-0.688244,11.1384,0.141538,-0.804249,11.0396,-0.255922,-0.808829,10.9159,-0.27337,-0.684608,10.9614,0.184497,-0.767663,10.6706,-0.1131,-0.62165,10.7204,0.196969,-0.805125,10.8097,-0.223616,-0.736733,10.5743,-0.0728808,-0.624058,10.5162,0.130889,-0.611291,10.659,0.206254,-0.698892,10.9688,0.160044,-0.791194,10.9101,-0.199463,-0.782406,11.004,-0.197145,-0.643064,10.5959,0.123046,-1.39254e-14,10.1607,1.10548,-0.114988,10.1662,1.12446,-0.218483,10.2091,1.06793,-0.296664,10.2629,0.973748,-0.328988,10.3106,0.92367,-0.327741,10.3543,0.911523,-0.298275,10.3926,0.932793,-0.103236,10.4141,1.11741,-1.34869e-14,10.4076,1.10157,-0.193333,10.396,1.03188,-0.152956,10.3295,1.01524,-0.0733876,10.324,1.04324,-1.36295e-14,10.3273,1.04689,-0.205792,10.3296,0.987933,-0.226919,10.3235,0.977459,-0.214168,10.3026,0.980081,-0.110411,10.2744,1.02057,-0.052524,10.2632,1.03307,-1.37435e-14,10.2631,1.03678,-0.17657,10.2881,0.998247,-0.202636,10.3148,1.01855,-0.145937,10.3025,1.06869,-0.0757857,10.293,1.10036,-1.36991e-14,10.2881,1.10454,-0.221201,10.3216,0.99253,-0.209041,10.3179,0.995313,-0.164482,10.3175,1.03504,-0.11032,10.3114,1.062,-0.0559177,10.3061,1.07749,-1.36663e-14,10.3066,1.08655,-1.38485e-14,10.204,1.16627,-0.0894155,10.2108,1.15418,-0.175529,10.2667,1.10377,-0.263028,10.2859,1.02136,-0.313183,10.3161,0.950864,-0.319437,10.3369,0.937709,-0.281958,10.3526,0.992235,-0.0956182,10.3867,1.16771,-1.3554e-14,10.3698,1.18328,-0.189492,10.361,1.0819,-0.252671,9.77079,0.288281,-0.162125,9.75374,0.328641,-9.08122e-09,9.72609,0.464248,-0.356487,9.87513,-0.17497,-0.387756,9.86153,-0.0925043,-0.348683,9.80152,0.206011,-0.233851,9.89524,-0.361654,-0.116009,9.90109,-0.421934,5.61898e-14,9.90886,-0.461296,-0.304767,9.88925,-0.274581,-0.422755,9.50869,-0.353824,-1.9812e-09,9.54597,-0.634602,-0.204347,9.53733,-0.566356,-0.321508,9.51335,-0.452169,-0.419412,9.48431,0.269811,-0.544903,9.51407,-0.150143,-0.482752,9.51155,-0.265337,-2.5313e-08,9.3268,0.43295,-0.137342,9.34716,0.407325,-0.302715,9.46059,0.417372,6.45004e-14,9.73536,-0.53064,-0.157355,9.71999,-0.479324,-0.269655,9.71141,-0.401103,-0.339643,9.69807,-0.312836,-0.439502,9.66681,-0.113468,-0.367949,9.61995,0.238593,-0.409912,9.67975,-0.200566,-0.115462,9.52801,0.363312,-2.2321e-08,9.53695,0.451493,-0.247966,9.60504,0.347553,-0.352463,10.0147,-0.158968,-0.221249,10.0117,-0.339442,-1.21695e-14,11.1492,1.02055,-0.0829814,11.1317,0.929662,-0.0926938,11.138,0.880209,-0.070862,11.1503,0.82516,-0.0484494,11.1726,0.781049,-0.0591887,11.177,0.711778,-0.452531,11.0749,0.678757,-0.401231,11.1015,0.754424,-0.488835,11.1222,0.555562,-0.379924,11.0927,0.755029,-0.359399,11.0926,0.73821,-0.371697,11.0941,0.717259,-0.355616,11.0938,0.674933,-0.570062,11.1721,0.382147,-0.631332,11.0907,0.234523,-0.672029,11.0681,0.19401,-0.477474,10.5353,-0.409513,-0.520347,10.438,0.11689,-0.522838,10.5056,-0.148459,-0.518917,10.5182,-0.277649,-1.33616e-14,10.4781,-0.636822,-0.2022,10.4973,-0.600333,-0.363514,10.532,-0.518593,-0.535467,11.241,-0.451351,-0.615496,11.2182,0.211317,-0.641511,11.2592,0.0775873,-0.647995,11.2504,-0.188306,-0.605029,11.2447,-0.333,-1.19544e-14,11.2703,-0.658587,-0.231329,11.2532,-0.618527,-0.422362,11.2394,-0.548997,-0.575224,10.7238,0.397726,-0.549992,10.5628,0.32868,-0.56433,10.635,0.373522,-0.594298,10.8928,0.394905,-0.598062,10.9497,0.378241,-0.519475,10.4921,0.237282,-0.596076,11.0451,0.333038,-0.606307,11.1496,0.276202,-0.104556,11.637,-0.452158,-0.0810043,11.6856,0.740934,-0.102978,11.7363,-0.321285,-0.102023,11.8457,-0.141785,-0.106261,11.9175,0.155022,-0.114512,11.9191,0.365999,-0.0897977,11.8349,0.58744,-0.0947687,11.4734,0.862457,-0.120671,11.37,0.925794,-0.086705,10.347,-0.541123,-0.110196,10.5786,-0.657394,-0.121135,10.8784,-0.694739,-0.110796,11.3685,-0.605683,-0.108349,11.536,-0.526789,-0.113703,10.6554,-0.668756,-0.123206,11.0921,-0.678385,-0.122629,10.9922,-0.689896,-0.122952,11.1629,-0.665335,-0.0456086,9.90349,-0.444072,-0.0818424,9.5345,-0.611983,-0.0404314,9.72569,-0.517485,-0.101515,10.4892,-0.619215,-0.116079,11.2617,-0.638557,-0.155487,11.2881,0.889681,-0.176341,11.2487,0.839736,-0.164725,11.2199,0.786467,-0.158635,11.2454,0.743145,-0.160591,11.248,0.6832,-1.18433e-14,11.3328,0.940846,-0.0931579,11.3196,0.911592,-0.0602381,11.241,0.935437,-0.064217,10.5023,1.03627,-0.0966303,10.4394,1.07284,-0.0671636,10.3046,1.15284,-0.0411314,11.0379,1.02767,-0.0363106,10.5965,1.26088,-0.0392611,10.949,1.08328,-0.0302731,10.6938,1.23041,-0.0863593,10.3825,1.17288,-0.0933653,10.4134,1.11593,-0.0387729,10.3283,1.045,-0.044513,10.2904,1.10084,-0.086801,10.3849,1.16914,-0.0440056,11.1401,0.979394,-0.510536,11.627,0.0092895,-0.415348,11.7633,-0.0014057,-0.207564,11.8602,-0.00689002,-1.08383e-14,11.8986,-0.00767155,-0.58388,11.5109,0.00176961,-0.629859,11.3501,-0.0274971,-0.668748,11.1714,-0.0848714,-0.767713,11.1942,-0.0755102,-0.750287,11.1399,-0.0654209,-0.651396,11.263,-0.0557948,-0.104197,11.8794,-0.00728078,-0.71024,11.0828,0.126623,-0.68804,11.0174,0.164007,-0.645955,10.686,0.139051,-0.652307,10.5689,0.106154,-0.767096,11.091,-0.143253,-0.729809,11.1359,0.0157568,-0.787169,10.8341,-0.153945,-0.766174,10.715,-0.0743866,-0.75185,10.6582,-0.0369792,-0.638572,10.7274,0.158951,-0.695855,11.0491,0.147974,-0.701235,10.917,0.127829,-0.686508,10.8899,0.146719,-0.652296,10.7752,0.13451,-0.632861,10.7665,0.177561,-0.384596,10.1327,0.0524655,-0.567372,10.4946,0.0631254,-0.451005,10.2975,0.032203,-0.673685,10.4607,0.0561098,-0.408104,9.83161,0.0616258,-0.552404,9.5045,0.0358535,-0.46998,9.64566,0.0489649,-0.519454,10.4519,0.0266493,-0.675461,10.5793,0.0614854,-0.422514,10.3521,0.754728,-0.471173,10.3767,0.597881,-0.359741,10.3401,0.857946,-0.215355,10.3229,1.00849,-0.31369,10.3261,0.946837,-0.503327,10.4187,0.382881,-0.573506,10.5923,0.240061,-0.619214,10.637,0.208596,-0.328365,10.3325,0.917597,-0.224926,10.3144,0.977509,-0.215294,10.3187,0.993958,-0.31631,10.3265,0.944287,-0.534734,10.5284,0.283341,-0.678201,10.6832,0.154186,-0.389915,10.738,0.808349,-0.135413,10.7858,0.988593,-0.263819,10.7245,0.907632,-0.494763,10.7716,0.696993,-0.605187,10.8135,0.306467,-0.078288,10.7773,1.12311,-1.2797e-14,10.796,1.19573,-0.56524,10.7921,0.508561,-0.58534,10.8055,0.402182,-0.0283156,10.7894,1.171,-0.651476,10.8273,0.158056,-0.579509,10.5136,0.016258,-0.451246,10.3191,-0.0498534,-0.702187,10.4986,-0.0203015,-0.407297,9.84936,-0.0260794,-0.58061,9.51567,-0.0488354,-0.460001,9.65729,-0.0427455,-0.52134,10.4868,-0.0592735,-0.724198,10.6118,0.00814378,-0.661323,11.1347,0.147841,-0.642032,11.0324,0.2388,-0.641289,10.9656,0.201458,-0.602735,10.6387,0.237416,-0.583054,10.5868,0.204947,-0.587988,10.551,0.134747,-0.711682,11.1156,-0.143362,-0.696241,11.1719,0.013335,-0.719063,11.0595,-0.212123,-0.721965,10.9451,-0.230062,-0.708268,10.8148,-0.170336,-0.673587,10.6658,-0.072383,-0.649904,10.5942,-0.037935,-0.604266,10.701,0.247903,-0.647658,11.0773,0.215766,-0.718231,11.1575,-0.0815112,-0.612797,10.7648,0.242064,-0.641331,10.894,0.187727,-0.624977,10.506,0.0630326,-0.592894,10.6004,0.220809,-0.625475,10.8259,0.223558,-0.623004,10.5217,0.0147998,-0.460656,11.2741,0.644036,-0.500072,11.4036,-0.404726,-1.16632e-14,11.4342,0.892014,-0.23398,11.3439,0.912965,-0.37007,11.2935,0.830679,-0.512733,11.3445,0.493842,-0.575948,11.3986,0.270054,-0.602634,11.4263,0.13474,-0.599982,11.4244,-0.148575,-0.56708,11.4096,-0.289856,-1.16205e-14,11.4582,-0.590967,-0.228757,11.4377,-0.547593,-0.374168,11.4167,-0.488579,-0.119331,11.3912,0.916027,-0.108016,11.4514,-0.57715,-0.613788,11.4334,-0.00775994,-0.137521,10.9131,0.968562,-0.130821,10.7189,1.01856,-0.0401914,10.5278,1.07935,-0.233485,10.5164,0.94433,-1.32774e-14,10.5255,1.06941,-0.217914,10.6294,0.91916,-0.136935,10.9475,0.936697,-0.126494,10.9741,0.895146,-0.12342,10.9917,0.850724,-0.124244,10.9906,0.808526,-0.120997,10.9774,0.74701,-0.0351689,10.5183,1.07784,-0.127906,10.7864,0.996213,-0.404245,10.1327,0.429594,-0.504914,11.63,0.386099,-3.88688e-09,9.7896,0.817192,-0.236144,9.81615,0.741243,-0.358849,9.96274,0.568984,-0.389451,11.7719,0.421173,-0.216638,11.857,0.46152,-1.08329e-14,11.9016,0.475742,-0.547929,11.485,0.373463,-0.541634,11.2746,0.405494,-0.482063,10.3433,0.362299,-0.552703,10.6988,0.541043,-0.523456,10.5016,0.441584,-0.5373,10.5971,0.479398,-0.547223,10.9156,0.593866,-0.544784,10.9535,0.584453,-0.527694,11.0328,0.54441,-0.529448,11.1472,0.468855,-0.10258,11.8863,0.4718,-0.502899,10.4158,0.395472,-0.547713,10.7848,0.574532,-0.549136,11.3765,0.380214,-0.680623,11.1373,0.143322,-0.658752,11.0276,0.218341,-0.661412,10.9632,0.18864,-0.609031,10.6538,0.221445,-0.596998,10.5713,0.200415,-0.608952,10.5111,0.138736,-0.776212,11.1425,-0.172821,-0.718277,11.2012,0.0112359,-0.7869,11.0436,-0.252317,-0.791139,10.9218,-0.269892,-0.7854,10.8124,-0.215631,-0.750146,10.6708,-0.105534,-0.72383,10.5705,-0.0656742,-0.616729,10.7151,0.213672,-0.66513,11.0707,0.200169,-0.753705,11.1909,-0.077209,-0.62787,10.7681,0.193286,-0.667607,10.8853,0.162465,-0.662067,10.4721,0.05665,-0.605895,10.6209,0.214813,-0.642448,10.8262,0.180083,-0.689514,10.5074,-0.0132382,-0.648295,11.1324,0.153139,-0.627569,11.0344,0.268714,-0.6225,10.9587,0.275673,-0.586839,10.6263,0.263667,-0.567057,10.5632,0.210228,-0.570832,10.5193,0.137849,-0.686469,11.1149,-0.164975,-0.67096,11.1673,0.0165912,-0.692558,11.0658,-0.229353,-0.694938,10.9543,-0.247337,-0.678132,10.8142,-0.187734,-0.643037,10.6658,-0.100323,-0.619887,10.5976,-0.073352,-0.589893,10.6791,0.294138,-0.63423,11.0883,0.231194,-0.677532,11.1482,-0.0842749,-0.59865,10.7493,0.301786,-0.619564,10.8865,0.272008,-0.586366,10.505,0.0674749,-0.576948,10.5938,0.236649,-0.608789,10.8161,0.291847,-0.587649,10.5186,0.0147628,-0.690262,10.8168,0.0443389,-0.698211,10.8539,0.0381383,-0.652295,10.8172,0.134702,-0.731763,10.7139,0.0666362,-0.690132,10.6981,0.123304,-0.675461,10.5959,0.0649202,-0.715106,10.6144,0.0165672,-0.638753,10.691,0.123788,-0.700284,10.7022,0.0616478,-0.735362,10.7052,-0.00538407,-0.749447,10.7401,-0.0465187,-0.737426,10.6659,-0.0385318,-0.751306,10.727,-0.0769062,-0.751786,10.8575,-0.105106,-0.742845,10.8406,-0.0579251,-0.732326,10.8819,-0.0258034,-0.733486,10.9169,-0.0692055,-0.732016,10.9554,-0.0247638,-0.728453,10.9107,0.0198262,-0.718742,10.8665,-0.0127313,-0.708696,10.888,0.0305672,-0.711174,10.7415,-0.044398,-0.720938,10.8357,-0.0503472,-0.721681,10.7021,-0.00937895,-0.762661,11.0085,-0.0687209,-0.771348,10.9597,-0.115726,-0.73949,10.9114,-0.139477,-0.748139,10.8078,-0.0622364,-0.709492,10.8123,-0.0559991,-0.751107,10.8314,-0.158436,-0.753243,10.912,-0.205976,-0.749498,11.0055,-0.191622,-0.733251,11.0908,-0.140437,-0.715413,11.1357,-0.06538,-0.693682,11.1361,0.0126437,-0.692406,11.0489,0.142496,-0.685947,11.0153,0.15218,-0.679899,10.9711,0.145924,-0.687567,11.0798,0.123717,-0.41266,10.8282,0.799444,-0.149707,10.8502,0.9724,-0.308922,10.8197,0.893968,-0.511886,10.8506,0.680826,-0.610026,10.8488,0.298926,-0.0831169,10.864,1.07915,-1.26657e-14,10.8698,1.15985,-0.568014,10.8547,0.515562,-0.589819,10.8492,0.398544,-0.03369,10.8678,1.13634,-0.650336,10.8406,0.151253,-0.633403,10.8599,0.205642,-0.135137,10.8566,0.982404,-0.550912,10.8585,0.586865,-0.643729,10.8463,0.172516,-0.614176,10.8513,0.281927,-0.634146,10.8226,0.133344,-0.673339,10.8112,0.0730934,-0.672532,10.7667,0.100891,-0.691208,10.7616,0.0365957,-0.686134,10.7438,0.0824198,-0.620101,10.7293,0.153769,-0.630552,10.7646,0.132385,-0.694856,10.7991,-0.000749676,-0.699695,10.8339,-0.00587305,-0.673149,10.9341,0.111901,-0.700465,11.0464,0.0841271,-0.703234,10.9672,0.106715,-0.701355,11.0139,0.0962658,-0.736907,11.054,0.0360562,-0.70987,10.9477,0.0844722,-0.713396,10.9997,0.058729,-0.685604,10.919,0.0938407,-0.693887,10.8684,0.119749,-0.709115,10.8966,0.104323,-0.673228,10.8302,0.103724,-0.749707,11.041,-0.01575,-0.721114,10.9306,0.0513706,-0.723086,10.9823,0.0177463,-0.695762,10.9026,0.0674903,-0.693935,10.8514,0.0866304,-0.701632,10.8761,0.0755774,-0.673652,10.7783,0.0693107,-0.694919,10.7684,-0.000299593,-0.708718,10.776,-0.0532533,-0.540278,10.7867,-0.474951,-0.648505,10.7451,-0.143731,-0.598658,10.7726,-0.34249,-1.28549e-14,10.7633,-0.702254,-0.234009,10.7705,-0.66124,-0.422615,10.7843,-0.577037,-0.786394,10.7401,-0.168358,-0.117419,10.7669,-0.681747,-0.776599,10.7734,-0.113603,-0.690927,10.7403,-0.12136,-0.767773,10.7416,-0.160582,-0.660585,10.74,-0.144029,-0.76003,10.7735,-0.116831,-0.753437,10.7901,-0.0862972,-0.747974,10.7757,-0.0580357,-0.75013,10.7618,-0.0736133,-0.594223,10.7796,0.079863,-0.59239,10.8226,0.105135,-0.590312,10.7713,0.125581,-0.591702,10.7724,0.105406,-0.594189,10.8121,0.0837459,-0.591097,10.8153,0.126207,-0.10981,10.9255,0.996866,-0.0987208,10.706,1.11618,-0.0397788,10.5576,1.13564,-0.213013,10.5326,1.04454,3.3617e-06,10.5493,1.16577,-0.20367,10.6301,1.00368,-0.10602,10.9769,0.951272,-0.0926093,11.0101,0.902334,-0.0853769,11.0247,0.848527,-0.0672203,11.042,0.807893,-0.0624198,11.0423,0.740533,-0.0318004,10.5562,1.14203,-0.103097,10.7819,1.05966,-0.109127,10.8603,1.03078,-0.175842,10.6732,0.958505,-0.166629,10.5089,0.976128,-0.23654,10.9055,0.918255,-0.157137,10.4415,1.02486,-0.109225,10.3097,1.13213,-0.132885,10.5853,1.1733,-0.129065,10.6634,1.15101,-0.239962,10.9252,0.903168,-0.143002,10.3709,1.12815,-0.23806,10.9423,0.879472,-0.227251,10.9488,0.832923,-0.213729,10.9515,0.798215,-0.21169,10.943,0.739148,-0.148294,10.4066,1.07465,-0.110994,10.3244,1.0338,-0.111228,10.2982,1.08437,-0.143334,10.3732,1.12447,-0.186187,10.7367,0.948112,-0.157427,10.5152,1.0285,-0.173326,10.6726,0.968859,-0.216893,10.8216,0.933184,-0.142299,10.5337,1.09552,-0.151196,10.668,1.05993,-0.0978939,10.6854,1.06053,-0.0939712,10.6621,0.978184,-0.0524107,10.6918,1.0773,-0.0476334,10.665,0.995607,-0.0574576,10.6268,1.12429,-0.0553495,10.5928,1.02847,-0.177612,10.596,1.00174,-0.178195,10.6251,1.0985,-1.391e-14,10.1694,1.01519,-0.0394381,10.1692,1.01097,-0.241828,10.2858,0.943414,-0.250902,10.3433,0.939997,-1.35081e-14,10.3956,1.00991,-0.16732,10.3805,0.974832,-0.0586161,10.3913,1.01158,-0.223326,10.3604,0.950324,-0.10163,10.1917,0.993811,-0.22354,10.2323,0.955849,-0.0286463,10.3972,1.01356,-0.253877,10.3213,0.938548,-0.104391,10.3751,1.0003,-0.145697,10.4487,0.816518,-0.263806,10.2891,0.811724,-0.0421492,10.4442,0.816366,-0.195139,10.1666,0.813551,-1.39902e-14,10.1242,0.817029,-0.0513,10.1255,0.816865,-0.117556,10.1357,0.815838,-0.247324,10.2226,0.811345,-0.263334,10.3619,0.813794,-0.241704,10.4152,0.815076,-1.34269e-14,10.4414,0.816519,-0.0891039,10.4479,0.816681,-0.202505,10.4398,0.815921,-0.211328,10.4418,0.482295,-0.0902159,10.4473,0.471235,-1.34365e-14,10.4359,0.473359,-0.243899,10.4209,0.482371,-0.248375,10.3701,0.480286,-0.211108,10.2532,0.472559,-0.115512,10.1634,0.458181,-0.0527663,10.173,0.46396,-1.38979e-14,10.1762,0.463935,-0.172066,10.1982,0.462861,-0.0422708,10.4409,0.469801,-0.234289,10.3105,0.477969,-0.151055,10.4503,0.477849,-0.106746,10.4044,0.383907,-0.180663,10.3141,0.402206,-0.0300477,10.3977,0.382492,-0.132566,10.2405,0.387593,-1.38902e-14,10.1805,0.381336,-0.0374266,10.182,0.381688,-0.082032,10.1977,0.375535,-0.160964,10.2787,0.394712,-0.196317,10.3551,0.412009,-0.172206,10.3839,0.395286,-1.35106e-14,10.3942,0.386154,-0.0638514,10.4022,0.380147,-0.149242,10.3983,0.391901,-0.0337372,10.2938,0.352247,-1.36874e-14,10.2947,0.352385,-0.0729417,10.3071,0.351893,-0.118441,10.3271,0.362759,-0.134558,10.3366,0.370138,-0.154695,10.3425,0.379841,-0.243899,10.4209,0.749809,-0.243899,10.4209,0.682949,-0.243899,10.4209,0.61609,-0.243899,10.4209,0.549231,-0.211328,10.4418,0.749793,-0.211328,10.4418,0.682919,-0.211328,10.4418,0.616044,-0.211328,10.4418,0.549169,-0.263446,10.3594,0.748244,-0.261445,10.3625,0.681927,-0.259458,10.366,0.615388,-0.260396,10.3716,0.548855,-0.194968,10.1628,0.743984,-0.193579,10.1546,0.672167,-0.188229,10.1673,0.600696,-0.184861,10.1778,0.532505,-0.247174,10.2111,0.743963,-0.245873,10.2068,0.676649,-0.23831,10.219,0.608753,-0.231547,10.2329,0.542132,-0.118733,10.1408,0.744121,-0.11842,10.1358,0.668817,-0.116694,10.1464,0.590886,-0.115322,10.1497,0.524354,-0.0525052,10.1276,0.744881,-0.0530738,10.1277,0.670208,-0.0533342,10.1433,0.601175,-1.39881e-14,10.1254,0.744688,-1.39848e-14,10.1273,0.670636,-1.39535e-14,10.1449,0.60426,-0.0913876,10.4469,0.747698,-0.0910947,10.447,0.678582,-0.0908017,10.4471,0.609466,-0.0905088,10.4472,0.540351,-0.0431541,10.4413,0.747307,-0.0416607,10.4402,0.677712,-0.0418641,10.4404,0.608409,-0.0420674,10.4406,0.539105,-1.34331e-14,10.4378,0.747819,-1.34365e-14,10.4359,0.679344,-1.34365e-14,10.4359,0.610682,-1.34365e-14,10.4359,0.542021,-0.263461,10.2792,0.745829,-0.260614,10.283,0.679577,-0.256365,10.2921,0.613192,-0.252771,10.301,0.547317,-0.151055,10.4503,0.748904,-0.151055,10.4503,0.681141,-0.151055,10.4503,0.613377,-0.151055,10.4503,0.545613,-0.129014,10.45,0.882277,-0.0771839,10.4544,0.884508,-0.189687,10.4391,0.877803,-0.243497,10.257,0.869308,-0.26089,10.3139,0.867099,-0.258923,10.3652,0.868102,-0.0376292,10.4486,0.884154,-1.34179e-14,10.4464,0.884075,-1.39789e-14,10.1306,0.897189,-0.0475267,10.135,0.894163,-0.114516,10.1493,0.889364,-0.204964,10.1976,0.880507,-0.233415,10.405,0.870074,-0.0540869,10.1941,0.573131,-1.38659e-14,10.1942,0.573049,-0.113031,10.1963,0.571311,-0.0927196,10.2871,0.481887,-0.109,10.2361,0.528889,-0.0531513,10.291,0.486262,-1.36827e-14,10.2973,0.486244,-0.0536445,10.3358,0.5562,-0.0934903,10.3251,0.554205,-1.36076e-14,10.3396,0.556192,-0.119859,10.2323,0.593451,-0.120582,10.2789,0.574944,-0.0697161,10.2282,0.594774,-1.38053e-14,10.2283,0.594776,-0.0758246,10.236,0.626537,-1.37977e-14,10.2326,0.626843,-0.113494,10.2465,0.625696,-0.128092,10.2867,0.616656,-0.102105,10.3284,0.607489,-1.36156e-14,10.3351,0.608721,-0.0602482,10.3326,0.608664,-0.103604,10.3267,0.673093,-0.0615983,10.3291,0.674167,-1.36262e-14,10.3291,0.674295,-0.113494,10.2513,0.680324,-0.128092,10.2885,0.67655,-0.0759438,10.242,0.68112,-1.37796e-14,10.2428,0.677037,-1.37608e-14,10.2534,0.758614,-0.0761353,10.2529,0.760278,-0.113494,10.2601,0.759416,-0.113494,10.3184,0.756909,-0.126964,10.2889,0.757853,-0.0779899,10.3203,0.757988,-1.36419e-14,10.3203,0.758148,-0.111236,10.3034,0.864413,-0.0782463,10.3099,0.86245,-1.36579e-14,10.3113,0.862133,-0.12172,10.2833,0.859643,-0.112429,10.26,0.855025,-0.0765025,10.2528,0.855079,-1.37617e-14,10.2528,0.855215,-0.073097,10.2554,0.894419,-1.37571e-14,10.2554,0.894488,-0.102923,10.2648,0.894354,-0.108893,10.2833,0.896556,-0.102133,10.2996,0.89882,-1.36692e-14,10.3049,0.897818,-0.0728805,10.304,0.897967,-0.0902195,10.2883,0.922299,-0.0631656,10.2896,0.944965,-1.36958e-14,10.2899,0.944965,-0.0902016,10.2743,0.922299,-0.0916436,10.2817,0.925139,-0.0646987,10.2685,0.944965,-1.3734e-14,10.2684,0.944965,-0.0636431,10.2796,0.952236,-1.37149e-14,10.2792,0.952944,-0.116967,10.4296,0.941053,-0.06832,10.4393,0.947865,-0.261104,10.3222,0.904768,-0.0331772,10.4358,0.948837,-0.108073,10.166,0.941588,-0.214252,10.2143,0.918178,-0.229728,10.3868,0.912631,-0.0434824,10.1488,0.952568,-1.39498e-14,10.147,0.956192,-1.34386e-14,10.4347,0.948062,-0.257884,10.3581,0.906257,-0.24588,10.2747,0.908379,-0.178983,10.4158,0.927398,-0.565606,10.7726,0.145421,-0.556043,10.7733,0.129054,-0.555927,10.8218,0.128854,-0.566035,10.8144,0.146156,-0.545193,10.8121,0.11048,-0.543231,10.7796,0.107122,-0.505215,10.8121,0.17736,-0.502137,10.7796,0.174983,-0.522237,10.7733,0.190511,-0.537912,10.8144,0.20262,-0.537238,10.7726,0.2021,-0.522054,10.8218,0.190369,-0.197283,10.9605,0.638722,-0.0807695,11.0368,0.640881,-0.12649,10.9861,0.645937,-0.157394,11.1973,0.596132,-0.309613,11.077,0.589679,-0.0782476,11.1419,0.618438,-0.304075,11.0238,0.60163,-0.106973,11.1786,0.606612,-0.147233,10.9713,0.642955,-0.0536272,11.0952,0.63404,-0.245229,10.9738,0.627722,-0.285516,11.1458,0.581619,-0.208476,11.1979,0.583176,-0.20441,11.15,0.535694,-0.258772,11.1112,0.534285,-0.23031,10.9894,0.566961,-0.0947102,11.0754,0.571373,-0.159809,10.9859,0.579525,-0.132453,11.1344,0.551968,-0.271903,11.0249,0.548443,-0.112129,11.1084,0.560335,-0.275821,11.0625,0.539988,-0.168125,11.1477,0.544553,-0.146261,10.9982,0.57979,-0.113913,11.0341,0.576213,-0.196343,10.9792,0.575449,-0.326267,10.2053,-0.265618,-0.245154,10.1854,-0.342259,-1.38736e-14,10.1899,-0.436339,-0.0671483,10.1876,-0.418382,-0.383831,10.1631,-0.0274031,-0.357489,9.91883,0.16852,-0.274223,9.85766,0.274844,-0.156274,9.82288,0.340451,3.04379e-14,9.80198,0.446641,-0.300982,10.0205,-0.262537,-0.372244,9.99644,-0.0836739,-0.115069,10.0148,-0.397971,4.37794e-14,10.0221,-0.433781,-0.0519322,10.0182,-0.415898,-0.385338,9.95555,0.0533378,-0.38213,9.97927,-0.0218729,6.16662e-14,9.80912,-0.497066,-0.130963,9.7992,-0.450577,-0.255697,9.79283,-0.380673,-0.320107,9.78071,-0.292285,-0.410926,9.74826,-0.10315,-0.354287,9.69448,0.221694,-0.378747,9.76182,-0.188379,-0.131973,9.65556,0.334844,-1.26745e-08,9.62446,0.463766,-0.248036,9.67531,0.317779,-0.0410956,9.80278,-0.481335,-0.433838,9.7226,0.0628111,-0.434421,9.73748,-0.0339391,-1.24971e-10,9.63501,-0.582608,-0.164556,9.62046,-0.523274,-0.296227,9.61899,-0.423644,-0.368818,9.59499,-0.331992,-0.491356,9.579,-0.130489,-0.380992,9.54437,0.255593,-0.443525,9.58778,-0.216391,-0.13278,9.41483,0.408378,-2.59521e-08,9.44552,0.378801,-0.257239,9.52379,0.386033,-0.048137,9.62104,-0.566386,-0.51391,9.56452,0.0370312,-0.515342,9.57445,-0.053678,-1.97281e-08,9.30618,0.487465,-0.151626,9.31552,0.460271,-0.314217,9.40151,0.486047,-0.637388,9.49272,0.0427428,-0.669475,9.53021,-0.060785,-0.630328,9.5261,-0.171552,-0.571138,9.51347,-0.30568,-0.479333,9.46972,0.312565,-0.10844,9.44769,-0.669188,-0.399588,9.42503,-0.488905,-0.243613,9.46105,-0.596024,-0.503418,9.47107,-0.406336,-0.308745,9.78999,0.24471,-0.366563,9.47599,0.330982,-0.311485,9.61346,0.286625,-0.308802,9.68818,0.272209,-0.321471,9.53352,0.312602,-0.398998,9.43395,0.393863,-0.373174,9.81313,0.154787,-0.388581,9.82025,0.11773,-0.398342,9.82593,0.089678,-0.462669,9.49171,0.195261,-0.492548,9.49505,0.142579,-0.522208,9.50118,0.0893293,-0.400375,9.62936,0.178369,-0.424238,9.63433,0.135593,-0.447286,9.64065,0.092317,-0.386425,9.70686,0.166862,-0.40534,9.71261,0.127893,-0.419654,9.71787,0.0953723,-0.421512,9.55072,0.187313,-0.453303,9.55487,0.135073,-0.483621,9.56096,0.086071,-0.598211,9.48924,0.108607,-0.56077,9.48228,0.174045,-0.532305,9.48062,0.223316,-0.308934,9.83946,0.240261,-0.361204,9.8864,0.168093,-0.387742,9.90697,0.0896456,-0.336656,9.83527,0.201874,-0.375281,9.86145,0.117755,-0.370832,9.856,0.16459,-3.53271,8.93966,0.0385299,-3.55728,9.14192,-0.0518263,-3.51973,8.76309,-0.0055576,-3.5172,8.78074,-0.516791,-3.52086,8.72862,-0.386739,-3.52307,8.69472,-0.231988,-3.509,9.2781,-0.621314,-3.53936,9.36413,-0.0735251,-3.51792,9.47331,-0.261818,-3.50592,9.41089,-0.540366,-3.5219,8.69284,-0.103315,-3.55315,9.18472,-0.597015,-3.52054,8.85,-0.574394,-3.49364,8.88432,-0.632916,-3.51269,9.13992,-0.683629,-3.52354,8.99726,-0.694871,-3.23579,8.68577,-0.2146,-3.23538,8.69125,-0.0765202,-3.23631,8.77053,0.0289004,-3.24047,9.43861,-0.285127,-3.21866,9.3612,-0.562044,-3.22256,9.24069,-0.637826,-3.25659,9.33905,-0.0648301,-3.26334,9.14622,0.00442942,-3.22626,8.96547,-0.698667,-3.22886,8.74969,-0.526909,-3.23263,8.71305,-0.373209,-3.2426,8.95916,0.0879961,-3.22998,9.12495,-0.698015,-3.2226,8.86217,-0.632182,-3.29302,9.17904,-0.648379,-3.26939,8.8245,-0.58246,-1.78248,9.01659,0.283178,-1.84517,9.336,0.29064,-1.73691,8.78354,0.0882704,-1.59461,8.62454,-0.549366,-1.65518,8.55291,-0.400243,-1.71381,8.58756,-0.272841,-1.57701,8.82525,-0.613852,-1.56785,9.12862,-0.650022,-1.86091,9.5127,0.0594057,-1.83571,9.5246,-0.248507,-1.69284,9.39824,-0.510833,-1.71955,8.64968,-0.0726239,-2.05894,8.57005,0.117433,-2.09829,9.47765,-0.584879,-2.10676,9.60547,-0.256922,-2.10825,9.58872,0.100713,-2.09163,9.20236,-0.763438,-2.09531,8.88584,-0.674857,-2.08566,8.48161,-0.241345,-2.09935,8.50216,-0.407392,-2.09976,8.63861,-0.572406,-2.06993,8.74388,0.268335,-2.1053,9.36029,0.35293,-2.10379,9.01036,0.412135,-2.48504,9.09681,0.391659,-2.48504,9.37692,0.32779,-2.47507,8.79479,0.219333,-2.48363,8.58477,-0.573036,-2.48504,8.43115,-0.409061,-2.48457,8.42307,-0.26147,-2.47682,8.92267,-0.689248,-2.46824,9.23494,-0.797659,-2.48505,9.56622,0.0916448,-2.47897,9.59016,-0.274964,-2.46795,9.49763,-0.620191,-2.47158,8.53764,0.0709101,-8.19318e-10,8.98407,0.871272,-6.07399e-10,8.85124,0.954692,-0.618597,9.21616,0.655142,-1.09254,9.63558,0.199241,-1.05371,9.52471,0.347742,-0.0906458,9.17252,-0.838391,-0.922976,9.55129,-0.423603,-1.18876,9.61026,-0.490904,-0.169381,9.01186,0.862073,-1.24826,9.32032,0.483796,-1.37013,9.56234,0.335526,-0.718483,9.13784,0.745622,-0.850847,8.51603,1.00426,-0.22855,8.41494,1.08291,-0.262885,8.01715,1.07267,-0.864353,8.16147,0.972893,-0.92076,7.94654,0.843309,-0.252318,7.80842,1.0226,-0.265432,7.1721,0.998005,-0.728284,7.18612,0.722623,-1.30488,8.16219,0.465497,-1.32706,8.11728,0.146963,-0.200992,8.25777,-0.888076,-0.316013,7.74242,-0.717755,-5.4328e-16,7.68038,-0.660519,-0.948509,7.24015,0.456993,-1.00503,7.25226,0.209026,-1.19241,7.89059,0.504508,-1.17143,7.84008,0.182274,-3.32622e-15,7.7911,1.03263,-8.15617e-15,7.16593,1.01818,-0.471197,9.31293,0.505497,-0.861986,9.55216,0.180823,-0.604638,9.36104,-0.621002,-0.103068,8.71073,-0.944721,-8.88178e-16,8.71168,-0.93566,-0.797872,9.30228,-0.675607,-0.88092,9.34697,0.479899,-1.10168,9.16654,0.605672,-0.69891,9.45723,0.314125,-1.1424,8.61768,0.793672,-1.27056,8.53547,0.654985,-1.04553,8.35566,0.872794,-1.1406,8.26092,0.743623,-1.00606,9.68638,-0.251181,-1.28303,9.73166,-0.22218,-1.06072,8.76975,-0.815829,-1.21818,8.9126,-0.769601,-0.852679,9.42988,-0.559455,-1.3905,9.17398,-0.724091,-0.889176,9.01608,-0.812752,-0.999182,9.21922,-0.74199,-1.05691,9.3772,-0.646555,-1.07229,9.74688,-0.0190133,-1.37129,9.74182,0.0165571,-0.507836,9.17665,-0.816529,-0.367471,9.16778,-0.821654,-0.745335,8.88067,-0.9204,-0.477007,8.78956,-0.966174,-0.606028,8.42124,-0.930858,-0.860672,8.63326,-0.914979,-0.982482,8.30248,-0.798095,-0.758455,8.00985,-0.811834,-0.714566,9.17224,-0.763963,-0.873829,7.68193,-0.49337,-1.04316,8.03528,-0.465609,-1.12593,7.81484,-0.104985,-1.01567,7.52358,-0.0865537,-1.05949,7.50266,0.19325,-0.234837,7.49952,0.965813,-0.828629,7.55758,0.713552,-1.01447,7.53504,0.477333,-0.559309,9.27079,-0.734196,-0.182087,9.08699,0.785045,-0.45559,9.06154,0.806098,-0.558247,8.45665,1.04947,-0.56777,8.06453,1.0451,-0.567862,7.85681,0.965143,-0.484936,7.18898,0.906272,-0.515032,7.53017,0.891048,-0.403789,9.14058,0.727263,-0.783121,9.29154,0.550171,-0.954559,9.14327,0.720381,-0.608269,9.39758,0.402321,-1.01094,8.59025,0.913065,-0.607378,9.07176,-0.86116,-0.398363,9.00024,-0.909699,-0.0887395,8.98237,-0.90744,-0.232527,8.21765,1.11596,-0.863969,8.33394,1.01853,-0.56358,8.26013,1.07643,-0.992909,8.44226,0.932308,-1.19979,8.24159,-0.417019,-1.21638,8.10159,-0.128938,-1.38987,8.43047,0.417023,-1.46463,8.37332,0.141409,-1.39627,8.33312,-0.119721,-1.34001,8.35168,-0.373651,-1.16026,8.48528,-0.694675,-1.3072,8.55617,-0.64236,-0.20758,8.68362,1.03038,-0.839249,8.74289,0.960703,-1.14759,8.81277,0.709865,-1.3092,8.76886,0.568811,-0.537619,8.69624,0.987843,-1.0327,8.803,0.84225,-1.5876,8.65186,0.253153,-1.43932,8.67641,0.3971,-1.54885,8.49739,-0.292294,-1.6003,8.51595,-0.0509229,-1.45176,8.58162,-0.594108,-0.815225,7.41915,-0.443015,-0.970838,7.30016,-0.0672741,-0.610025,7.70142,-0.680558,-1.69621,9.61648,-0.254011,-1.50167,9.47892,-0.560166,-1.70901,9.43589,0.377568,-1.7465,9.61705,0.0812753,-0.258205,7.91397,1.05016,-0.898415,8.06171,0.910976,-0.990808,9.44559,0.406973,-1.17979,9.21309,0.549524,-0.801039,9.51348,0.238317,-1.20544,8.58174,0.723446,-1.09552,8.31258,0.80783,-0.22636,9.15867,-0.824132,-0.257731,8.73454,-0.998635,-0.371786,8.32256,-0.94746,-0.574213,7.96376,1.01037,-0.245345,8.98247,-0.908579,-1.23275,8.79765,0.638089,-0.522385,7.41134,-0.611081,-0.798038,7.18603,-0.370506,-0.971148,7.09784,-0.0471689,-0.960401,6.98901,0.470768,-0.935818,8.45668,-0.852145,-0.698927,8.18901,-0.865266,-1.10419,8.64118,-0.749019,-1.27293,8.71021,-0.703803,-1.42062,8.82416,-0.674693,-0.504542,7.97065,-0.799103,-1.01471,8.17649,-0.656909,-0.819289,7.84342,-0.648312,-1.18726,8.35591,-0.575959,-1.32451,8.43518,-0.509965,-1.53579,8.46618,-0.421397,-0.705493,7.55552,-0.563379,-0.65491,7.28619,-0.530877,-0.177838,8.88435,0.967381,-0.82788,8.95955,0.880941,-1.13439,9.01736,0.651603,-1.28256,8.98719,0.516388,-0.513964,8.89403,0.915619,-1.00399,9.00809,0.781245,-1.64145,8.96327,0.368933,-1.41351,8.95905,0.375316,-1.21024,9.00673,0.584812,-1.81993,8.95177,0.360869,-1.85467,9.32555,0.3659,-1.82011,8.64204,0.202237,-1.61943,8.58434,-0.575143,-1.66481,8.48348,-0.409546,-1.79511,8.48038,-0.261805,-1.60846,8.82187,-0.652062,-1.608,9.16564,-0.705058,-1.86654,9.58748,0.10279,-1.8593,9.60172,-0.251078,-1.77095,9.45245,-0.535592,-1.82121,8.54297,-0.0260319,-0.970252,8.90029,-0.813846,-1.11807,9.05514,-0.758393,-1.22002,9.28452,-0.692597,-0.802856,8.75936,-0.919906,-0.536914,8.60508,-0.952896,-0.145288,8.48292,-0.92326,-1.49932,8.66958,0.319192,-1.43378,9.6893,-0.250121,-1.33299,9.55011,-0.529988,-1.56116,9.69332,0.0300362,-1.54408,9.52013,0.3618,-1.43457,8.39928,0.280311,-1.32032,8.12928,0.306118,-1.18604,7.86996,0.340799,-1.0362,7.51748,0.331735,-0.974182,7.24445,0.330853,-0.310687,8.52797,-0.978733,-1.51523,8.95676,0.372896,-0.851851,9.67307,-0.0437346,-0.866859,9.58929,0.110889,-0.733266,9.53676,-0.348153,-0.799932,9.61766,-0.208885,-8.76554e-09,9.30618,0.487465,-0.151626,9.31552,0.460271,-0.314217,9.40151,0.486047,-0.637388,9.50151,0.0427428,-0.669475,9.54345,-0.060785,-0.630328,9.53867,-0.171552,-0.571138,9.52347,-0.30568,-0.479333,9.47108,0.312565,-0.139753,9.2423,0.609396,-0.329472,9.26354,0.562307,-0.10844,9.44769,-0.669188,-0.399588,9.42619,-0.488905,-0.243613,9.46107,-0.596024,-0.503418,9.47536,-0.406336,-0.664017,9.45742,-0.481642,-0.246828,9.32886,-0.71279,-0.374307,9.33519,-0.673419,-0.0977115,9.33731,-0.735932,-0.398998,9.43408,0.393863,-0.598211,9.49595,0.108607,-0.56077,9.48735,0.174045,-0.532305,9.48402,0.223316,-1.71937,8.96306,0.369122,-1.78471,9.37463,0.371941,-1.70738,8.65331,0.216071,-1.53408,8.58232,-0.5865,-1.59986,8.47613,-0.41578,-1.67366,8.49145,-0.2774,-1.5126,8.82016,-0.665839,-1.49742,9.16811,-0.715766,-1.80433,9.60384,0.0928304,-1.78273,9.60801,-0.251324,-1.63496,9.46452,-0.547151,-1.71726,8.52479,-0.0302415,-0.367577,6.70699,-0.785996,-1.13219,6.71618,0.192697,-0.732011,6.61523,0.781144,-0.487225,6.64342,1.00061,-0.271903,6.63544,1.12986,-1.02254,7.05858,0.160365,-0.506697,6.91513,0.913512,-0.731084,6.90726,0.706487,-0.303206,6.89754,1.02826,-0.8025,7.02448,-0.307462,-1.03283,6.91368,0.172281,-0.977618,6.97039,-0.0397057,-0.496861,6.74064,0.928604,-0.708718,6.73924,0.714857,-0.277676,6.72203,1.07149,-0.952463,6.82124,0.482546,-0.466521,7.19184,-0.500415,-0.294004,7.29163,-0.538483,-0.224773,6.71501,-0.756213,-0.227926,6.66473,-0.708539,-0.272078,6.60231,1.11593,-0.486071,6.60906,0.982563,-0.715166,6.6132,0.7565,-0.929331,6.62044,0.572599,-1.02334,6.68109,-0.0259075,-1.0766,6.67381,0.19997,-0.346767,6.66372,-0.745008,-0.845289,6.68373,-0.315271,-0.647233,7.08678,-0.469545,-0.655507,6.69252,-0.525745,-0.999533,7.02082,0.348442,-1.00217,6.85347,0.362794,-1.02232,6.64105,0.434575,-0.681695,6.22055,-0.855183,-0.926205,6.21985,-0.638132,-1.16124,6.21119,0.050662,-1.09325,6.22234,-0.229896,-0.726963,6.12999,0.87296,-0.461095,6.13849,1.08957,-0.255237,6.13625,1.21081,-0.178541,5.73657,-1.08288,-1.17804,5.67567,0.610916,-1.26503,5.73984,-0.232151,-1.30224,5.73446,0.0217269,-0.397678,5.72853,-1.13379,-1.06841,5.7395,-0.658196,-0.765679,5.71977,-1.01185,-1.24897,5.697,0.36991,-1.36071,5.11135,0.313643,-0.853828,5.11714,-1.02233,-1.08837,5.09765,-0.704467,-0.446578,5.11554,-1.23537,-1.35993,5.09839,0.0273816,-1.28329,5.06251,0.492917,-0.233533,5.11976,-1.14972,-1.32009,5.42961,0.349206,-1.35631,5.42242,0.01696,-1.23934,5.40271,0.572962,-1.08942,5.41713,-0.688869,-0.81134,5.41502,-1.03399,-0.421292,5.41853,-1.20187,-1.28358,5.41015,-0.258139,-0.205234,5.42479,-1.1329,-0.162589,6.21369,-0.936682,-0.36018,6.21461,-0.94897,-1.01361,6.15668,0.624701,-1.08977,6.18053,0.406884,-0.98177,6.68191,0.580725,-1.07766,6.7143,-0.048989,-0.891727,6.72057,-0.350138,-0.690351,6.7125,-0.562442,-1.07573,6.68357,0.448924,-1.05112,6.81126,0.182972,-0.49182,6.69191,0.952462,-0.711387,6.68813,0.73197,-0.274207,6.67838,1.08612,-0.409713,6.94256,-0.613091,-0.262455,6.99614,-0.616323,-1.01111,6.76316,0.39053,-0.648124,6.89749,-0.49172,-0.9437,6.74439,0.510492,-0.821604,6.87168,-0.309366,-1.07129,6.74567,0.187075,-0.474779,6.66035,0.942653,-0.706244,6.63555,0.753988,-0.267113,6.65146,1.07499,-0.381204,6.8112,-0.676563,-0.243553,6.84275,-0.661705,-1.02779,6.70325,0.40882,-0.65309,6.79298,-0.508038,-0.949824,6.6936,0.530815,-1.0162,6.76215,-0.0324279,-0.836952,6.78329,-0.315113,-0.161363,6.19845,-0.986543,-1.14582,6.20722,-0.244097,-1.06136,6.13777,0.641876,-0.367274,6.19986,-1.00107,-1.14034,6.16307,0.42092,-1.21282,6.19646,0.0476117,-0.709273,6.2048,-0.899131,-0.971039,6.20484,-0.662127,-1.26709,5.0859,-0.286424,-0.997849,6.84066,-0.0323348,-1.00627e-14,6.59227,1.20877,9.01124e-15,6.21157,-0.93585,-2.23373,9.37149,0.338598,-2.35941,9.37771,0.333127,-2.23385,9.58161,0.0976901,-2.35945,9.57305,0.0946675,-2.22117,9.48501,-0.598431,-2.34441,9.49061,-0.610113,-2.23083,9.59821,-0.262936,-2.3549,9.59278,-0.26895,-2.1968,8.54409,0.0998606,-2.33419,8.534,0.0853853,-2.21594,9.21303,-0.781189,-2.34152,9.22654,-0.792372,-2.23149,9.04053,0.403325,-2.35826,9.07305,0.397492,-2.22792,8.46541,-0.407949,-2.35648,8.45283,-0.408505,-2.21863,8.44783,-0.248053,-2.3516,8.44189,-0.254762,-2.22643,8.62966,-0.579279,-2.3548,8.61096,-0.577336,-2.22124,8.90964,-0.686083,-2.34844,8.92102,-0.690678,-2.20598,8.75423,0.245373,-2.34058,8.76794,0.231984,-2.60457,9.58733,-0.268709,-2.60873,8.42076,-0.261646,-2.60049,8.92105,-0.693973,-2.60905,9.56578,0.0916437,-2.59586,9.49384,-0.600038,-2.60008,8.54649,0.0658484,-2.59402,9.23511,-0.789906,-2.60802,8.57212,-0.571043,-2.60905,8.42806,-0.409061,-2.6024,8.80305,0.215583,-2.60905,9.37914,0.32779,-2.60905,9.10036,0.391659,-1.98882,8.48392,-0.248227,-1.89196,8.46702,-0.255008,-1.9418,8.60853,-0.568608,-1.78196,8.58228,-0.569603,-1.98934,9.46772,-0.568116,-1.88039,9.45964,-0.551353,-2.02427,9.60286,-0.254974,-1.94179,9.60144,-0.253026,-1.97919,8.54627,0.0714825,-1.89885,8.54097,0.030426,-1.93552,9.19093,-0.729577,-1.77283,9.17751,-0.714814,-2.02884,9.58476,0.097689,-1.94843,9.58378,0.0978452,-1.9546,8.46815,-0.407949,-1.80985,8.45321,-0.408505,-2.0216,9.34156,0.357759,-1.93779,9.3305,0.362946,-2.00977,8.98858,0.39247,-1.9146,8.96545,0.377458,-1.93787,8.86512,-0.653567,-1.77368,8.84649,-0.651601,-1.9879,8.70721,0.231965,-1.90453,8.66796,0.209837,2.05894,8.57005,0.117433,2.09829,9.47765,-0.584879,2.10676,9.60547,-0.256922,2.10825,9.58872,0.100713,2.09163,9.20236,-0.763438,2.09531,8.88584,-0.674857,2.08566,8.48161,-0.241345,2.09935,8.50216,-0.407392,2.09976,8.63861,-0.572406,2.06993,8.74388,0.268335,2.1053,9.36029,0.35293,2.10379,9.01036,0.412135,2.48504,9.09681,0.391659,2.48504,9.37692,0.32779,2.47507,8.79479,0.219333,2.48363,8.58477,-0.573036,2.48504,8.43115,-0.409061,2.48457,8.42307,-0.26147,2.47682,8.92267,-0.689248,2.46824,9.23494,-0.797659,2.48505,9.56622,0.0916448,2.47897,9.59016,-0.274964,2.46795,9.49763,-0.620191,2.47158,8.53765,0.07091,-1.20097e-09,9.17002,-0.871893,-8.88178e-16,8.25647,-0.865325,-7.41921e-10,8.0029,1.07248,-8.38191e-10,8.98812,-0.942948,-1.37447e-09,9.05867,0.802701,-8.88178e-16,8.48441,-0.907443,-3.68277e-09,9.23205,0.622448,-6.76077e-10,9.47258,-0.688676,-1.04838e-09,9.35025,-0.752065,0.618597,9.21616,0.655142,1.09254,9.63558,0.199241,1.05371,9.52471,0.347742,0.0906458,9.17252,-0.838391,0.922976,9.55129,-0.423603,1.18876,9.61026,-0.490904,0.169381,9.01186,0.862073,1.24826,9.32032,0.483796,1.37013,9.56234,0.335526,0.718483,9.13784,0.745622,0.850847,8.51603,1.00426,0.22855,8.41494,1.08291,-6.35154e-10,8.40235,1.05394,0.262885,8.01715,1.07267,0.864353,8.16147,0.972893,0.92076,7.94654,0.843309,0.252318,7.80842,1.0226,0.265432,7.1721,0.998005,0.728284,7.18612,0.722623,1.30488,8.16219,0.465497,1.32706,8.11728,0.146963,0.200992,8.25777,-0.888076,0.316013,7.74242,-0.717755,0.948509,7.24015,0.456993,1.00503,7.25226,0.209026,1.19241,7.89059,0.504508,1.17143,7.84008,0.182274,0.471197,9.31293,0.505497,0.861986,9.55216,0.180824,0.604638,9.36104,-0.621001,0.103068,8.71073,-0.944721,0.797872,9.30228,-0.675607,0.88092,9.34697,0.479899,1.10168,9.16654,0.605672,0.69891,9.45723,0.314126,1.1424,8.61768,0.793672,1.27056,8.53547,0.654985,1.04553,8.35566,0.872794,1.1406,8.26092,0.743623,1.00606,9.68638,-0.251181,1.28303,9.73166,-0.22218,1.06072,8.76975,-0.815829,1.21818,8.9126,-0.769601,0.852679,9.42988,-0.559455,1.3905,9.17398,-0.724091,0.889176,9.01608,-0.812752,0.999182,9.21922,-0.74199,1.05691,9.3772,-0.646555,1.07229,9.74688,-0.0190131,1.37129,9.74182,0.0165573,0.507836,9.17665,-0.816529,0.367471,9.16778,-0.821654,0.745335,8.88067,-0.9204,0.477007,8.78956,-0.966174,0.606028,8.42124,-0.930858,0.860672,8.63326,-0.914979,0.982482,8.30248,-0.798095,0.758455,8.00985,-0.811834,0.714566,9.17224,-0.763963,0.873829,7.68193,-0.49337,1.04316,8.03528,-0.465609,1.12593,7.81484,-0.104985,1.01567,7.52358,-0.0865537,1.05949,7.50266,0.19325,0.234837,7.49952,0.965813,0.828629,7.55758,0.713552,1.01447,7.53504,0.477333,-4.18777e-15,7.49655,0.975803,0.559309,9.27079,-0.734196,0.182087,9.08699,0.785045,0.45559,9.06154,0.806098,0.558247,8.45665,1.04947,0.56777,8.06453,1.0451,0.567862,7.85681,0.965143,0.484936,7.18898,0.906272,0.515032,7.53017,0.891048,0.403789,9.14058,0.727263,0.783121,9.29154,0.550171,0.954559,9.14327,0.720381,0.608269,9.39758,0.402321,1.01094,8.59025,0.913065,0.607378,9.07176,-0.86116,0.398363,9.00024,-0.909699,0.0887395,8.98237,-0.90744,0.232527,8.21765,1.11596,0.863969,8.33394,1.01853,-4.45956e-10,8.2074,1.09795,0.56358,8.26013,1.07643,0.992909,8.44226,0.932308,1.19979,8.24159,-0.417019,1.21638,8.10159,-0.128938,1.38987,8.43047,0.417023,1.46463,8.37332,0.141409,1.39627,8.33312,-0.119721,1.34001,8.35168,-0.373651,1.16026,8.48528,-0.694675,1.3072,8.55617,-0.64236,0.20758,8.68362,1.03038,0.839249,8.74289,0.960703,-4.42818e-10,8.67329,0.996979,1.14759,8.81277,0.709865,1.3092,8.76886,0.568811,0.537619,8.69624,0.987843,1.0327,8.803,0.84225,1.5876,8.65186,0.253153,1.43932,8.67641,0.3971,1.54885,8.49739,-0.292294,1.6003,8.51595,-0.0509229,1.45176,8.58162,-0.594108,0.815225,7.41915,-0.443015,0.970838,7.30016,-0.0672741,0.610025,7.70142,-0.680558,1.69621,9.61649,-0.254011,1.50167,9.47893,-0.560166,1.70901,9.43589,0.377568,1.7465,9.61705,0.0812753,0.258205,7.91397,1.05016,0.898415,8.06171,0.910976,-6.88693e-10,7.89839,1.05546,0.990808,9.44559,0.406973,1.17979,9.21309,0.549524,0.801039,9.51348,0.238317,1.20544,8.58174,0.723446,1.09552,8.31258,0.80783,0.22636,9.15867,-0.824132,0.257731,8.73454,-0.998635,0.371786,8.32256,-0.94746,0.574213,7.96376,1.01037,0.245345,8.98247,-0.908579,1.23275,8.79765,0.638089,0.522385,7.41134,-0.611081,0.798038,7.18603,-0.370506,0.971148,7.09784,-0.0471689,0.960401,6.98901,0.470768,0.935818,8.45668,-0.852145,0.698927,8.18901,-0.865266,1.10419,8.64118,-0.749018,1.27293,8.71021,-0.703803,1.42062,8.82416,-0.674693,0.504542,7.97065,-0.799103,1.01471,8.17649,-0.656909,0.819289,7.84342,-0.648312,1.18726,8.35591,-0.575959,1.32451,8.43518,-0.509965,1.53579,8.46618,-0.421397,0.705493,7.55552,-0.563379,0.65491,7.28619,-0.530877,0.177838,8.88435,0.967381,0.82788,8.95955,0.880941,1.13439,9.01736,0.651603,1.28256,8.98719,0.516389,0.513964,8.89403,0.915619,1.00399,9.00809,0.781245,1.64145,8.96327,0.368933,1.41351,8.95905,0.375316,1.21024,9.00673,0.584812,1.81993,8.95177,0.360869,1.85467,9.32555,0.3659,1.82011,8.64204,0.202237,1.61943,8.58434,-0.575143,1.66481,8.48348,-0.409546,1.79511,8.48038,-0.261805,1.60846,8.82187,-0.652062,1.608,9.16564,-0.705058,1.86654,9.58749,0.10279,1.8593,9.60172,-0.251078,1.77095,9.45245,-0.535592,1.82121,8.54297,-0.0260319,0.970252,8.90029,-0.813846,1.11807,9.05514,-0.758393,1.22002,9.28452,-0.692597,0.802856,8.75936,-0.919906,0.536914,8.60508,-0.952896,0.145288,8.48292,-0.92326,1.49932,8.66958,0.319192,1.43378,9.6893,-0.25012,1.33299,9.55011,-0.529988,1.56116,9.69332,0.0300363,1.54408,9.52013,0.3618,1.43457,8.39928,0.280311,1.32032,8.12928,0.306118,1.18604,7.86996,0.340799,1.0362,7.51748,0.331735,0.974182,7.24445,0.330853,0.310687,8.52797,-0.978733,1.51523,8.95676,0.372896,0.851851,9.67307,-0.0437344,0.866859,9.58929,0.110889,0.733266,9.53676,-0.348152,0.799932,9.61766,-0.208885,0.151626,9.31552,0.460271,0.314217,9.4015,0.486048,0.637388,9.50151,0.042743,0.669475,9.54344,-0.0607849,0.630327,9.53866,-0.171552,0.571138,9.52347,-0.30568,0.479333,9.47108,0.312565,0.139752,9.2423,0.609396,0.329472,9.26354,0.562307,0.10844,9.44769,-0.669188,0.399588,9.42619,-0.488904,0.243613,9.46107,-0.596024,0.503418,9.47536,-0.406336,0.664017,9.45742,-0.481642,0.246828,9.32886,-0.71279,0.374307,9.33519,-0.673419,0.0977115,9.33731,-0.735932,0.398998,9.43408,0.393864,0.598211,9.49595,0.108608,0.56077,9.48735,0.174045,0.532305,9.48402,0.223316,1.71937,8.96306,0.369122,1.78471,9.37463,0.371941,1.70738,8.65331,0.216071,1.53408,8.58232,-0.5865,1.59986,8.47613,-0.41578,1.67366,8.49146,-0.2774,1.5126,8.82016,-0.665839,1.49742,9.16811,-0.715766,1.80434,9.60384,0.0928304,1.78273,9.60801,-0.251324,1.63496,9.46452,-0.547151,1.71726,8.5248,-0.0302415,0.367577,6.70699,-0.785996,1.13219,6.71618,0.192697,0.732011,6.61523,0.781144,0.487225,6.64342,1.00061,0.271903,6.63544,1.12986,1.02254,7.05858,0.160365,0.506697,6.91513,0.913512,0.731084,6.90726,0.706487,0.303206,6.89754,1.02826,0.8025,7.02448,-0.307462,1.03283,6.91368,0.172281,0.977618,6.97039,-0.0397057,0.496861,6.74064,0.928604,0.708718,6.73924,0.714857,0.277676,6.72203,1.07149,0.952463,6.82124,0.482546,0.466521,7.19184,-0.500415,0.294004,7.29163,-0.538483,0.224773,6.71501,-0.756213,6.74064e-15,6.66814,-0.683338,0.227926,6.66473,-0.708539,0.272078,6.60231,1.11593,0.486071,6.60906,0.982563,0.715166,6.6132,0.7565,0.929331,6.62044,0.572599,1.02334,6.68109,-0.0259075,1.0766,6.67381,0.19997,0.346767,6.66372,-0.745008,0.845289,6.68373,-0.315271,0.647233,7.08678,-0.469545,0.655507,6.69252,-0.525745,0.999533,7.02082,0.348442,1.00217,6.85347,0.362794,1.02232,6.64105,0.434575,0.681695,6.22055,-0.855183,0.926205,6.21985,-0.638132,1.16124,6.21119,0.050662,1.09325,6.22234,-0.229896,0.726963,6.12999,0.87296,0.461095,6.13849,1.08957,0.255237,6.13625,1.21081,-7.71965e-15,6.13355,1.25585,0.178541,5.73657,-1.08288,1.17804,5.67567,0.610916,1.26503,5.73984,-0.232151,1.30224,5.73446,0.0217269,0.397678,5.72853,-1.13379,1.06841,5.7395,-0.658196,0.765679,5.71977,-1.01185,1.24897,5.697,0.36991,1.36071,5.11135,0.313643,0.853828,5.11714,-1.02233,1.08837,5.09765,-0.704467,0.446578,5.11554,-1.23537,1.35993,5.09839,0.0273816,1.28329,5.06251,0.492917,0.233533,5.11976,-1.14972,1.32009,5.42961,0.349206,1.35631,5.42242,0.01696,1.23934,5.40271,0.572962,1.08942,5.41713,-0.688869,0.81134,5.41502,-1.03399,0.421292,5.41853,-1.20187,1.28358,5.41015,-0.258139,0.205234,5.42479,-1.1329,4.11304e-15,5.42448,-1.07731,0.162589,6.21369,-0.936682,0.36018,6.21461,-0.94897,1.01361,6.15668,0.624701,1.08977,6.18053,0.406884,6.9796e-15,6.71463,-0.733891,0.98177,6.68191,0.580725,1.07766,6.7143,-0.048989,0.891727,6.72057,-0.350138,0.690351,6.7125,-0.562442,1.07573,6.68357,0.448924,1.05112,6.81126,0.182972,0.49182,6.69191,0.952462,0.711387,6.68813,0.73197,0.274207,6.67838,1.08612,0.409713,6.94256,-0.613091,0.262455,6.99614,-0.616323,1.01111,6.76316,0.39053,0.648124,6.89749,-0.49172,0.9437,6.74439,0.510492,0.821604,6.87168,-0.309366,1.07129,6.74567,0.187075,0.474779,6.66035,0.942653,0.706244,6.63555,0.753988,0.267113,6.65146,1.07499,0.381204,6.8112,-0.676563,0.243553,6.84275,-0.661705,1.02779,6.70325,0.40882,0.65309,6.79298,-0.508038,0.949824,6.6936,0.530815,1.0162,6.76215,-0.0324279,0.836952,6.78329,-0.315113,0.161363,6.19845,-0.986543,1.14582,6.20722,-0.244097,1.06136,6.13777,0.641876,0.367274,6.19986,-1.00107,1.14034,6.16307,0.42092,1.21282,6.19646,0.0476117,0.709273,6.2048,-0.899131,0.971039,6.20484,-0.662127,1.26709,5.0859,-0.286424,0.997849,6.84066,-0.0323348,-9.36183e-15,6.62819,1.20255,-9.35666e-15,6.89382,1.09201,-8.92507e-15,6.71781,1.14328,1.10043e-16,7.27995,-0.576382,6.33792e-15,5.72635,-1.04813,4.74728e-15,5.12952,-1.07245,-8.88199e-15,6.673,1.15264,3.88569e-15,6.99212,-0.623633,-9.13107e-15,6.64662,1.13908,4.22107e-15,6.84201,-0.653509,1.00257e-14,6.19514,-0.985807,2.23373,9.37149,0.338598,2.35941,9.37771,0.333127,2.23385,9.58161,0.0976901,2.35945,9.57305,0.0946674,2.22117,9.48501,-0.598431,2.34441,9.49061,-0.610113,2.23083,9.59821,-0.262936,2.3549,9.59278,-0.26895,2.1968,8.5441,0.0998605,2.33419,8.534,0.0853853,2.21594,9.21303,-0.781189,2.34152,9.22654,-0.792372,2.23149,9.04053,0.403325,2.35826,9.07306,0.397492,2.22792,8.46541,-0.407949,2.35648,8.45284,-0.408505,2.21863,8.44783,-0.248053,2.3516,8.44189,-0.254762,2.22643,8.62966,-0.579279,2.3548,8.61096,-0.577336,2.22124,8.90964,-0.686083,2.34844,8.92102,-0.690678,2.20598,8.75423,0.245373,2.34058,8.76794,0.231984,2.60457,9.58733,-0.268709,2.60873,8.42076,-0.261646,2.60049,8.92105,-0.693973,2.60905,9.56578,0.0916436,2.59586,9.49384,-0.600038,2.60008,8.54649,0.0658483,2.59402,9.23511,-0.789906,2.60802,8.57212,-0.571043,2.60905,8.42806,-0.409061,2.6024,8.80305,0.215583,2.60905,9.37915,0.327789,2.60905,9.10036,0.391659,1.98882,8.48392,-0.248227,1.89196,8.46702,-0.255008,1.9418,8.60853,-0.568608,1.78196,8.58228,-0.569603,1.98934,9.46773,-0.568116,1.88039,9.45964,-0.551353,2.02427,9.60286,-0.254974,1.94179,9.60144,-0.253026,1.97919,8.54627,0.0714825,1.89885,8.54097,0.030426,1.93552,9.19093,-0.729577,1.77283,9.17751,-0.714814,2.02884,9.58476,0.0976889,1.94843,9.58378,0.0978452,1.9546,8.46815,-0.407949,1.80985,8.45321,-0.408505,2.0216,9.34156,0.357759,1.93779,9.3305,0.362946,2.00977,8.98858,0.39247,1.9146,8.96545,0.377458,1.93787,8.86512,-0.653567,1.77368,8.84649,-0.651601,1.9879,8.70721,0.231965,1.90453,8.66796,0.209837,-0.931365,6.60925,0.573856,-0.656139,6.68113,-0.533694,-0.485468,6.59771,0.985639,-0.271671,6.59106,1.11723,-1.02395,6.62993,0.433906,-0.347091,6.65289,-0.74993,-1.07865,6.66265,0.196367,-1.02503,6.67002,-0.0308296,-0.715451,6.60154,0.759311,-0.847241,6.67254,-0.323061,-0.226349,6.65385,-0.714044,0.931365,6.60925,0.573856,0.656139,6.68113,-0.533694,0.485468,6.59771,0.985639,0.271671,6.59106,1.11723,1.02395,6.62993,0.433906,0.347091,6.65289,-0.74993,1.07865,6.66265,0.196367,1.02503,6.67002,-0.0308296,0.715451,6.60154,0.759311,0.847241,6.67254,-0.323061,0.226349,6.65385,-0.714044,5.86747e-15,6.65712,-0.689431,-7.17864e-15,6.5812,1.20915,-1.01152,6.16816,0.623411,-0.681047,6.23223,-0.847026,-0.461713,6.15015,1.08677,-0.255654,6.14779,1.20851,-1.0881,6.19193,0.40757,-0.359848,6.22573,-0.94392,-1.15915,6.22265,0.0543588,-1.09152,6.2337,-0.224846,-0.726671,6.14196,0.870076,-0.924201,6.23134,-0.630138,-0.164207,6.22486,-0.931033,1.01152,6.16816,0.623411,0.681047,6.23223,-0.847026,0.461713,6.15015,1.08677,0.255654,6.14779,1.20851,1.0881,6.19193,0.40757,0.359848,6.22573,-0.94392,1.15915,6.22265,0.0543588,1.09152,6.2337,-0.224846,0.726671,6.14196,0.870076,0.924201,6.23134,-0.630138,0.164207,6.22486,-0.931033,9.22271e-15,6.22287,-0.929598,-7.43932e-15,6.14491,1.25392,-0.00079876,9.20369,-0.952232,0.110415,9.20476,-0.941415,0.170982,8.34011,-1.11114,0.680396,9.46887,-0.766509,0.123656,8.73339,-1.08355,0.821324,9.32095,-0.86592,0.927493,8.64377,-0.997871,1.05366,8.78855,-0.946924,0.893843,9.47686,-0.746422,1.19251,8.96017,-0.890161,0.804801,8.9928,-0.972846,0.933813,9.14568,-0.931299,1.03434,9.3284,-0.856747,0.499207,9.19367,-0.92603,0.384956,9.20593,-0.9375,0.629831,8.86297,-1.02243,0.450522,8.78759,-1.05682,0.586384,8.4291,-1.07028,0.784301,8.51491,-1.05216,0.699268,9.17322,-0.927875,0.582527,9.31737,-0.865289,0.566969,9.05805,-0.990182,0.396552,9.00199,-1.00243,0.109946,8.9849,-1.02042,0.245002,9.20505,-0.933132,0.27482,8.7497,-1.06596,0.36915,8.37405,-1.08551,0.240044,8.9849,-1.00861,0.871547,8.828,-0.996039,0.997043,8.95811,-0.951943,1.14048,9.12084,-0.887402,0.70099,8.6835,-1.04348,0.525557,8.58812,-1.07396,0.149755,8.50507,-1.11453,0.328565,8.54726,-1.08896,0.605694,9.63223,-0.466861,0.294361,9.53559,-0.685965,0.457827,9.56855,-0.602733,0.12819,9.53043,-0.722264,0.137541,9.49879,-0.755275,0.513855,9.55303,-0.647673,0.334338,9.51679,-0.710329,0.642864,9.6118,-0.580928,0.743575,9.57224,-0.651023,0.290947,9.40695,-0.806906,0.455937,9.39862,-0.807285,0.131849,9.39301,-0.831094,0.127483,9.54955,-0.728612,0.291584,9.55247,-0.691916,0.6015,9.6469,-0.472186,0.45473,9.58416,-0.607544,1.25033,4.96474,1.02898,0.877237,4.62352,1.3875,0.891178,4.6347,1.37495,1.2456,4.9399,1.04456,1.12633,5.66778,1.0149,0.75172,5.46538,1.46281,0.736256,5.4606,1.47931,1.24077,4.9552,1.04209,0.888548,4.65291,1.37226,1.2454,4.97991,1.02652,0.87469,4.64184,1.3848,0.827886,6.60746,0.875119,0.506001,6.60736,1.16291,0.491997,6.60361,1.17681,0.817116,6.59997,0.896015,1.05947,6.62574,0.564463,0.825834,6.60367,0.880266,1.04986,6.62059,0.582814,1.2783,4.90092,1.12836,1.56943,5.20454,0.67757,1.28856,4.91162,1.11247,1.55763,5.19223,0.695855,1.17182,5.64865,1.15767,1.50002,5.86362,0.682478,1.18442,5.65406,1.14147,1.48897,5.85018,0.702933,1.56427,5.1777,0.698759,1.29337,4.89406,1.11628,1.28304,4.88325,1.13219,1.57616,5.19015,0.680435,1.68882,5.46584,0.181691,1.63895,5.21169,0.744793,1.6395,5.22077,0.724939,1.67102,5.45718,0.204351,1.55801,5.87868,0.736724,1.5398,6.04746,0.168506,1.55219,5.87345,0.755003,1.66184,5.47054,0.203425,1.63113,5.23712,0.722077,1.67961,5.47907,0.180849,1.63061,5.22815,0.741858,1.07221,6.62836,0.564614,1.15849,6.68783,0.10321,1.06936,6.62285,0.580096,1.17685,6.69609,0.0816336,0.951408,6.67944,-0.324539,1.16828,6.70077,0.0739547,0.960667,6.68182,-0.308288,1.74615,5.5146,0.190843,1.47843,5.59385,-0.308831,1.73672,5.51739,0.173237,1.48929,5.59064,-0.288563,1.6003,6.06615,0.170243,1.35431,6.06153,-0.315273,1.59291,6.06423,0.153119,1.36708,6.05788,-0.295615,1.49723,5.57783,-0.288321,1.74503,5.50255,0.176167,1.75448,5.49968,0.193876,1.48635,5.58113,-0.308707,0.819472,6.28741,0.932342,0.501447,6.15795,1.25212,0.826,6.30916,0.916876,0.488884,6.15533,1.26409,1.11805,5.68681,1.01028,0.745716,5.48644,1.45784,0.730356,5.4817,1.47434,0.937882,6.11333,0.922594,1.1781,6.28319,0.507031,0.947031,6.11749,0.908223,1.16985,6.27234,0.524478,1.1634,5.67108,1.15104,1.4892,5.88327,0.676562,1.1759,5.67644,1.13485,1.47819,5.87006,0.696959,1.24736,6.33482,0.0944334,1.22942,6.22334,0.550693,1.25882,6.34231,0.07431,1.22831,6.22066,0.567996,1.51542,6.04529,0.184462,1.55094,5.89146,0.734093,1.53165,6.05848,0.166709,1.54517,5.88626,0.752343,1.28375,6.3669,0.0582388,1.04292,6.3498,-0.348212,1.27612,6.36469,0.044025,1.05455,6.34699,-0.33149,1.58265,6.09013,0.167558,1.33665,6.0831,-0.314151,1.57522,6.08818,0.150568,1.34932,6.07969,-0.294646,0.868343,6.3446,0.863753,0.503776,6.20361,1.25413,0.489193,6.19821,1.26862,1.11758,5.66097,1.03834,0.815896,6.60246,0.890225,1.10739,5.67964,1.03214,0.853386,6.33849,0.879719,0.910362,6.13553,1.02353,1.19444,6.2545,0.620513,0.920967,6.14006,1.00756,1.18412,6.24533,0.639886,1.52347,6.03414,0.186272,1.14809,6.68129,0.120245,1.28308,6.22276,0.648709,1.31658,6.336,0.134315,1.27877,6.2174,0.665575,1.30326,6.32613,0.151709,1.36006,6.39311,0.134204,1.114,6.35514,-0.300004,1.35183,6.39447,0.122144,1.12546,6.35462,-0.282431,0.499423,6.20379,1.35803,0.268936,5.35218,1.3434,0.0646213,4.90934,1.17005,0.120561,5.02152,1.11971,0.218392,6.19625,1.46693,0.509744,5.80987,1.4208,0.198819,5.80294,1.52383,0.147569,5.38177,1.49517,0.0444574,4.58788,-0.0197704,0.0722725,4.4032,-0.00955448,0.293725,4.62057,-0.398998,0.302145,4.43853,-0.392149,0.606163,4.88381,0.929928,0.635438,4.72223,0.872027,0.199632,4.71973,0.76073,0.223388,4.54895,0.720406,0.0543837,4.62354,0.380688,0.0846645,4.46278,0.37462,0.204422,4.07157,0.074744,0.164837,4.24889,0.0489647,0.188476,4.09036,0.361041,0.160319,4.26425,0.364965,0.308082,4.04819,-0.232104,0.277003,4.22296,-0.293455,0.462387,4.13957,0.806038,0.440977,4.3103,0.804237,0.291547,4.11259,0.652618,0.270885,4.27826,0.667174,0.399681,4.82931,0.899179,0.429243,4.65907,0.872248,0.680171,4.18541,0.77273,0.661525,4.33198,0.796903,0.3487,4.62409,-0.434135,0.357184,4.44208,-0.427301,0.373046,4.04185,-0.283085,0.341966,4.21662,-0.344436,0.582336,1.90616,-0.44386,0.590163,1.72859,-0.40078,0.495096,2.60839,-0.433261,0.473149,2.74853,-0.412047,0.578025,2.63147,0.586306,0.592278,2.79903,0.622303,0.449951,2.64686,0.513139,0.483379,2.46384,0.520976,0.624026,2.79959,0.618494,0.645615,2.61212,0.625388,0.522034,1.91882,-0.385586,0.519019,1.74218,-0.330723,0.352407,2.38746,0.273148,0.397992,2.19527,0.285345,0.335365,2.11818,-0.0375792,0.365057,1.92326,-0.00555976,0.312757,2.58601,0.138641,0.288356,2.72218,0.144872,0.431228,2.61782,0.454169,0.407343,2.74112,0.50524,0.456637,2.60399,-0.394551,0.434497,2.74265,-0.37321,0.350283,2.5908,-0.150365,0.323977,2.72632,-0.13475,0.366183,1.8064,-0.112716,0.435951,1.66305,-0.18443,0.453147,1.89489,-0.308375,0.501964,1.73145,-0.360659,0.541821,1.70995,0.47196,0.543616,1.56686,0.436717,0.376836,1.69303,0.213406,0.384128,1.56759,0.096269,0.715472,1.73794,0.614496,0.698905,1.56777,0.579624,0.490905,1.94014,-0.384198,0.547458,1.78292,-0.446229,0.429385,4.85199,1.03074,0.725963,5.04707,1.08353,1.0785,5.37978,0.933946,1.36058,5.54079,0.583187,1.02869,3.98086,0.657097,1.39224,4.00945,0.250249,0.50332,3.88588,0.852239,0.744606,3.92793,0.825235,1.05315,4.60377,0.747587,1.31093,4.68073,0.435861,0.466874,4.3484,0.876012,0.738292,4.44843,0.87528,1.30829,5.80494,0.583008,1.08368,5.63191,0.937578,0.725161,5.23373,1.13612,0.413324,4.99181,1.07694,1.25428,5.46743,0.759061,1.16755,4.00075,0.454234,1.21081,4.64246,0.597919,1.20544,5.72585,0.761699,1.32132,3.92324,-0.0452496,1.42302,5.19948,-0.100099,0.190716,3.90931,-0.127151,0.138593,4.82539,-0.335386,1.16511,3.98957,-0.292657,0.846592,4.946,-0.589549,0.6091,4.88499,-0.596224,0.324149,4.83646,-0.524914,1.22295,5.0603,-0.361775,0.797646,4.00471,-0.45982,0.344533,3.95459,-0.299691,0.558956,3.99392,-0.419747,1.26115,4.74756,-0.251257,1.26115,4.95802,-0.268192,1.22132,5.0284,0.565756,1.21111,4.8389,0.541027,1.3184,4.78197,-0.0142018,1.31104,4.82193,0.270942,1.3184,4.98789,-0.0221026,1.31104,5.01842,0.281784,1.22359,4.83678,0.507288,1.23252,5.02716,0.530283,1.26135,5.0285,0.530283,1.25242,4.83774,0.507288,1.34792,5.01495,0.281065,1.4202,4.95673,-0.0254527,1.34792,4.8157,0.270071,1.4202,4.75018,-0.0175519,1.23994,4.83953,0.541027,1.25015,5.02936,0.565756,1.34269,4.9823,0.10295,1.34269,4.7786,0.102925,1.37213,4.75022,0.176607,1.37213,5.04679,0.174201,1.37736,4.76061,0.260651,1.37736,5.05284,0.266223,1.20446,5.04681,0.17237,1.19325,5.05158,0.263933,1.22532,4.7505,0.174188,1.21419,4.75934,0.25787,1.36023,4.76049,0.260392,1.35618,4.75025,0.176382,1.35003,5.04679,0.173976,1.35384,5.05268,0.265942,1.37438,4.47863,0.251982,1.36838,4.48595,0.160235,1.34052,4.19309,0.122308,1.34711,4.19112,0.206757,1.20188,4.2066,0.208811,1.21053,4.20822,0.124388,1.21471,4.4957,0.255018,1.22377,4.5024,0.163339,1.39776,4.47612,0.251523,1.36414,4.1893,0.206478,1.39034,4.48345,0.159745,1.35636,4.19126,0.122014,1.32919,4.23262,0.0538649,1.35252,4.43311,0.0814129,1.45044,4.19083,-0.0391414,1.34138,4.2455,0.224207,1.474,4.39521,-0.0190261,1.36442,4.44006,0.262045,1.17187,4.26709,0.458369,1.20264,4.45613,0.476149,1.17385,4.45801,0.477113,1.14313,4.26935,0.459323,1.3282,4.44749,0.264415,1.30062,4.46153,-0.0400316,1.30547,4.25561,0.227101,1.27713,4.25778,-0.0600609,1.25708,4.46967,-0.18908,1.19814,4.267,-0.194724,0.59087,9.31707,0.780982,0.975657,9.40122,0.649788,0.178412,9.1013,1.02887,1.12511,9.21987,0.777692,0.672408,9.1871,0.907806,0.879266,8.5229,1.10949,0.205575,8.45756,1.32372,0.245447,8.05611,1.30867,0.907052,8.124,1.07087,0.995036,7.88309,0.923886,0.233134,7.88313,1.29375,0.238394,7.44382,1.37362,0.898735,7.21664,0.940536,1.38974,8.09608,0.41755,1.13471,7.19123,0.556943,1.15017,7.25744,0.063476,1.31053,7.81961,0.540716,1.2767,7.78147,0.0252519,0.502287,9.50766,0.665323,0.839546,9.52555,0.566444,0.864415,9.36822,0.707973,0.988083,9.2315,0.834762,0.740764,9.52079,0.607061,1.2047,8.54104,0.93856,1.37559,8.42643,0.729743,1.11353,8.30117,0.949475,1.21507,8.19091,0.786984,0.909937,8.19784,-0.928899,0.817802,8.00145,-0.89299,0.958795,7.66587,-0.551799,1.12571,7.86685,-0.490467,1.20993,7.80075,-0.229638,1.08717,7.53779,-0.228871,1.15867,7.48191,0.0434332,0.200032,7.6738,1.28343,0.934561,7.51216,0.8044,1.15427,7.47509,0.529141,0.193369,9.21212,0.957453,0.43263,9.1549,0.927797,0.547534,8.48582,1.20432,0.576955,8.05165,1.20399,0.599787,7.84668,1.12325,0.543666,7.30867,1.17307,0.553912,7.57348,1.06614,0.397439,9.26676,0.842158,0.753483,9.3466,0.738413,0.857684,9.21958,0.877431,0.643793,9.51818,0.634965,0.216757,8.24749,1.35328,0.900649,8.31823,1.12305,0.560121,8.26653,1.23379,1.05149,8.41163,1.0203,1.45777,8.23468,0.402283,0.186252,8.74835,1.27128,0.852379,8.76402,1.08877,1.17055,8.74578,0.960714,1.30096,8.68131,0.865188,0.520143,8.74765,1.1399,1.05464,8.7848,1.04681,0.945732,7.39888,-0.516642,1.07401,7.31324,-0.215062,0.700664,7.67601,-0.79159,1.16622,6.93132,-0.260588,0.826563,7.01239,-0.545932,1.31307,6.84663,0.148804,1.2613,6.89241,-0.0710742,1.3349,6.60681,0.772069,1.10794,6.4845,1.22683,0.699047,6.61087,1.47556,0.320833,6.81869,1.55225,0.240498,7.96804,1.2987,0.954252,8.01004,0.997964,0.930759,9.39004,0.672431,1.07706,9.22383,0.80643,0.79884,9.52422,0.576475,1.27971,8.47658,0.864396,1.16543,8.24462,0.867181,0.594819,7.94705,1.16782,1.24365,8.70737,0.920553,0.703141,7.41564,-0.663405,0.969368,7.19475,-0.394569,1.18478,7.08871,0.0917449,1.08706,7.13503,-0.151225,0.560498,7.06125,1.22961,0.934993,6.99261,1.01244,0.267376,7.22903,1.39312,1.17711,6.99923,0.618257,1.05774,7.06568,-0.297569,1.2319,6.98787,0.129224,1.17761,7.02504,-0.104756,0.639062,6.84012,1.31989,1.04642,6.69813,1.1118,0.292941,7.04109,1.44131,1.29848,6.83092,0.689394,0.790782,7.19468,-0.56465,0.321855,6.57238,1.51538,0.710574,6.33621,1.42924,1.0759,6.24974,1.21848,1.3154,6.38668,0.82238,1.2518,6.73739,-0.0526351,1.33274,6.67645,0.172437,0.965045,6.79898,-0.659187,1.16145,6.76823,-0.24826,1.0402,8.04031,-0.725703,0.887699,7.83016,-0.720408,0.813586,7.53556,-0.661134,1.0209,6.95991,-0.448313,0.838444,7.29121,-0.569719,0.926177,7.11983,-0.477516,1.07452,6.81925,-0.437895,0.173445,8.96122,1.15467,0.774099,8.99148,1.02389,1.09957,8.97056,0.948887,1.23043,8.92922,0.887784,0.493793,8.9681,1.05204,0.965995,9.00804,0.985898,1.17982,8.94411,0.923428,1.35555,6.76253,0.450005,1.31566,7.79585,0.286169,1.17631,7.46502,0.297415,1.16083,7.21808,0.321872,1.19333,7.05459,0.359919,1.26287,6.93962,0.413147,1.34476,6.55454,0.464748,0.159492,9.41359,0.745023,0.342696,9.49027,0.689146,0.675147,7.64167,-0.722921,0.915877,7.37232,-0.455065,1.10358,7.2298,0.0771934,1.02469,7.28742,-0.180088,0.518864,7.25655,1.14181,0.854859,7.17429,0.910439,0.230755,7.39005,1.32832,1.08356,7.16112,0.546589,0.791081,7.50321,-0.600448,1.10716,7.18688,0.321011,0.959971,7.17386,-0.333773,1.15382,7.06434,0.109545,1.06877,7.1128,-0.115166,0.545908,7.00318,1.20819,0.937342,6.91266,1.00982,0.255208,7.1745,1.35712,1.1692,6.96174,0.613631,0.711382,7.38666,-0.571905,0.847845,7.2667,-0.496213,1.1715,7.02463,0.364214,1.05939,7.03105,-0.252805,1.21746,6.95149,0.143825,1.17433,6.98884,-0.0666063,0.629174,6.76969,1.32405,1.02836,6.6315,1.10665,0.282022,6.97429,1.42014,1.28022,6.76248,0.687934,0.792862,7.13732,-0.519086,0.936811,7.0869,-0.412607,1.24864,6.89149,0.408689,0.841249,6.96322,-0.529245,1.08359,6.4402,1.20862,1.30226,6.55834,0.760303,0.308085,6.77537,1.5221,0.677455,6.56105,1.44783,1.28178,6.8088,0.159271,1.22904,6.86257,-0.0494058,1.14139,6.90272,-0.2336,1.00929,6.93804,-0.436165,1.32308,6.7156,0.434031,0.96489,6.88944,-0.662043,1.12124,6.29905,1.26301,1.36376,6.4354,0.856044,0.328864,6.61567,1.5711,0.739449,6.38407,1.48289,1.37222,6.71032,0.16355,1.28809,6.77344,-0.0766489,1.19466,6.81476,-0.280234,1.10215,6.86125,-0.47201,1.39558,6.59706,0.482024,0.233633,7.47132,1.36164,0.906589,7.25042,0.924419,1.13717,7.22168,0.551769,1.14979,7.28492,0.0607913,0.545114,7.33975,1.15959,1.07471,7.3409,-0.217797,0.943895,7.43034,-0.522548,0.709137,7.71498,-0.806462,0.817573,7.57032,-0.67045,1.16242,7.24767,0.318401,0.696672,7.44916,-0.673081,0.956683,7.22082,-0.405539,1.17125,7.10969,0.0882902,1.07284,7.15761,-0.156917,0.55161,7.09071,1.21451,0.908883,7.03001,0.990166,0.261818,7.25295,1.38103,1.15249,7.02355,0.603724,0.828717,7.32241,-0.574991,1.17429,7.07319,0.351326,1.03406,7.08481,-0.306851,1.21856,7.00233,0.124455,1.15209,7.04061,-0.109213,0.620687,6.87204,1.29827,1.02922,6.73386,1.0897,0.284266,7.0652,1.42421,1.27957,6.85841,0.678488,0.783486,7.2316,-0.570055,0.909019,7.15094,-0.47834,1.24925,6.95828,0.405289,1.1496,6.94082,-0.261502,1.30286,6.85874,0.147486,1.25242,6.90274,-0.0705539,0.691807,6.62713,1.45406,1.09964,6.49994,1.21258,0.316649,6.83528,1.53663,1.32979,6.62377,0.764289,0.822843,7.03559,-0.535506,1.01531,6.97267,-0.436458,1.34485,6.77673,0.447066,0.962371,6.90355,-0.654128,1.12068,6.31348,1.26457,1.35781,6.44736,0.849536,0.325411,6.63083,1.56843,0.737402,6.40205,1.48726,1.36482,6.71787,0.162345,1.28265,6.78178,-0.0757,1.19108,6.82549,-0.277918,1.09924,6.8705,-0.466266,1.39188,6.60734,0.479457,0.0558476,9.06589,1.07596,0.0241488,8.45041,1.41067,0.0385714,7.89495,1.3594,0.0399887,7.50822,1.43541,0.0380603,8.06368,1.37764,0.0335346,7.70347,1.36272,0.0602664,9.16291,1.01615,0.029935,8.24878,1.41519,0.0232522,8.74402,1.34334,0.0467371,7.00374,1.58227,0.0377553,7.97728,1.36948,0.0447745,7.34045,1.45496,0.0481064,7.19395,1.49377,0.0480841,6.71555,1.56313,0.0397342,8.93213,1.19589,0.0451413,9.39002,0.764039,0.0387268,7.46265,1.38745,0.0427114,7.29598,1.41452,0.0444185,7.13448,1.4657,0.0447774,6.95039,1.54622,0.0498117,6.76639,1.63178,0.0391978,7.53178,1.42397,0.043865,7.35868,1.44402,0.0471173,7.21253,1.47887,0.0464097,7.01768,1.5689,0.0499256,6.78368,1.62794,0.0936353,9.604,0.741989,0.39601,9.7545,0.66084,0.209719,9.65492,0.721058,0.723087,9.73189,0.404503,0.628159,9.7657,0.540556,0.685638,9.75102,0.500355,0.754673,9.71353,0.400203,0.521056,9.77686,0.609638,1.48322,8.18389,-0.00708664,1.40678,8.07636,0.0197476,1.31351,8.13244,-0.418219,1.41904,8.28835,-0.385392,1.28776,8.52024,-0.762104,1.0222,8.34777,-0.896207,1.17447,8.20133,-0.668468,1.34993,8.39418,-0.583078,1.40152,8.07553,0.218831,1.47436,8.19444,0.177145,1.36417,8.09084,-0.197264,1.46709,8.21433,-0.194595,0.164457,9.43744,0.743553,0.0499347,9.41117,0.761998,0.488439,9.57101,0.639293,0.348266,9.51627,0.688662,0.800352,9.57309,0.537277,0.763088,9.56799,0.552318,0.715198,9.56974,0.584876,0.621404,9.58063,0.613716,0.407302,-6.39854e-06,0.0436082,1.27562,-6.3981e-06,0.0147574,1.26702,-6.39045e-06,0.283082,0.412871,-6.36729e-06,0.751201,0.455625,-6.38256e-06,0.430463,1.25394,-0.000216926,-0.257378,0.990348,-6.40333e-06,-0.277655,0.723394,-6.40389e-06,-0.27566,0.403003,-6.40449e-06,-0.277721,0.69384,-6.39845e-06,0.0344672,1.01717,-6.39819e-06,0.0314385,1.02178,-6.38793e-06,0.331851,0.734753,-6.38346e-06,0.423031,1.46942,-6.36627e-06,0.774537,0.729295,-6.36699e-06,0.758025,1.15139,-6.36811e-06,0.73235,0.673916,-6.35316e-06,1.07443,1.22315,-6.35416e-06,1.05154,1.55626,-6.35314e-06,1.07473,0.330255,-6.35258e-06,1.08758,1.30588,2.33173,0.0149183,1.29989,2.33905,-0.0768289,1.27202,2.04619,-0.114756,1.27862,2.04422,-0.0303068,1.13338,2.0597,-0.0282529,1.14203,2.06132,-0.112676,1.14621,2.3488,0.0179544,1.15527,2.3555,-0.0737248,1.32926,2.32922,0.0144592,1.29564,2.0424,-0.0305864,1.32184,2.33655,-0.0773194,1.28786,2.04436,-0.11505,1.26493,2.08701,-0.137056,1.28993,2.28735,-0.114403,1.38559,2.0433,-0.214713,1.26395,2.09859,-0.00404445,1.41583,2.2475,-0.226286,1.28627,2.29316,0.0321208,1.20938,2.11892,0.225171,1.21863,2.31049,0.23707,1.21046,2.30789,0.208324,1.17973,2.11923,0.190534,1.25996,2.30109,0.027811,1.21243,2.31507,-0.245045,1.23692,2.10875,-0.00992647,1.18819,2.11044,-0.24671,1.20899,2.71904,-0.165393,1.25207,2.84022,0.0717215,1.19652,2.92392,-0.174488,1.23982,3.00787,0.0992935,1.18958,2.92535,0.270598,1.18596,3.05168,0.278547,1.19291,2.9451,0.30721,1.21804,2.75459,0.305566,1.26701,2.92967,0.104351,1.40822,2.89126,-0.0852738,1.28034,2.73266,0.0784783,1.41442,2.68468,-0.0909279,1.27484,2.91513,-0.0324875,1.28626,2.71129,-0.0461999,1.3159,2.67797,-0.0291299,1.2967,2.97308,-0.00682441,1.32207,2.68173,0.0554066,1.3033,2.97188,0.085301,1.12937,2.96219,-0.0063242,1.11965,2.95866,0.0854639,1.16936,2.66876,-0.0294838,1.1593,2.66994,0.05479,1.30499,2.68051,0.055376,1.29999,2.67696,-0.0291312,1.27465,2.97164,-0.0067417,1.27984,2.97019,0.0853341,0.461164,0.781121,0.844178,0.466477,0.837335,0.688042,0.429261,0.774019,0.539136,0.371317,0.628263,0.484688,0.326587,0.48545,0.556593,0.321223,0.428178,0.712927,0.35849,0.492552,0.861635,0.416434,0.638307,0.916083,0.443962,0.743327,0.807418,0.410667,0.637023,0.86094,0.367537,0.52853,0.820412,0.339835,0.4814,0.709574,0.34379,0.523243,0.593353,0.377084,0.629547,0.539831,0.420215,0.73804,0.580359,0.447916,0.78517,0.691197,0.385811,0.746055,0.797038,0.389201,0.781923,0.697414,0.365455,0.741524,0.602403,0.328483,0.648523,0.567662,0.299943,0.557399,0.613542,0.296553,0.521532,0.713166,0.320299,0.561931,0.808177,0.357271,0.654932,0.842918,0.315158,0.713868,0.753441,0.301618,0.670637,0.775207,0.284078,0.626516,0.758726,0.272813,0.60735,0.713651,0.274421,0.624365,0.666387,0.287961,0.667596,0.644621,0.305501,0.711718,0.661103,0.316766,0.730884,0.706178,0.279671,0.654099,0.732429,0.272635,0.677128,0.712045,0.289114,0.691654,0.689399,0.436877,0.743749,0.806231,0.440766,0.784893,0.691952,0.413526,0.73855,0.582965,0.371116,0.631869,0.543113,0.338378,0.527341,0.595742,0.334489,0.486197,0.710021,0.361728,0.532539,0.819009,0.404138,0.63922,0.858859,0.465692,0.620495,0.911346,0.407747,0.474734,0.856899,0.370454,0.409833,0.708289,0.375845,0.467637,0.551856,0.420574,0.61045,0.479951,0.478518,0.756206,0.534399,0.515734,0.819522,0.683305,0.510421,0.763309,0.839442,1.26657,0.808306,0.493823,1.30452,0.795641,0.654964,1.38426,0.683912,0.748372,1.45908,0.538569,0.719329,1.48516,0.444751,0.584849,1.44722,0.457416,0.423708,1.36748,0.569144,0.3303,1.29265,0.714488,0.359343,1.3661,0.719199,0.397776,1.42087,0.612819,0.376519,1.47923,0.531042,0.444886,1.507,0.521772,0.562829,1.48792,0.59044,0.661258,1.43315,0.696819,0.682515,1.37479,0.778595,0.614148,1.34702,0.787865,0.496205,1.52325,0.715093,0.539144,1.53296,0.713429,0.509174,1.52101,0.69978,0.483363,1.49095,0.753329,0.548094,1.51509,0.719508,0.57637,1.53774,0.675511,0.567578,1.54563,0.647112,0.52687,1.53415,0.650945,0.478091,1.51001,0.684767,0.449816,1.48736,0.728763,0.458608,1.47946,0.757162,0.499316,1.41514,0.733751,0.406753,1.46289,0.641013,0.388223,1.51377,0.569723,0.447822,1.53798,0.561643,0.55064,1.52134,0.621504,0.636446,1.4736,0.714242,0.654978,1.42272,0.785531,0.595378,1.39851,0.793612,0.49256,1.36814,0.777514,0.61669,1.4275,0.694348,0.686219,1.48319,0.586161,0.664601,1.5026,0.516327,0.5645,1.47436,0.525755,0.444554,1.41501,0.60892,0.375026,1.35931,0.717108,0.396643,1.3399,0.786941,0.496744,1.33804,0.739594,0.350629,1.41286,0.594251,0.321586,1.4926,0.482522,0.414994,1.53055,0.469857,0.576135,1.50447,0.563675,0.710616,1.42964,0.709018,0.739658,1.3499,0.820746,0.646251,1.31196,0.833411,0.485109,1.16743,3.63709,0.45992,1.25339,3.6302,0.24893,1.21704,3.41321,0.210638,0.409975,3.22617,0.628592,0.452868,3.55902,0.754518,0.521659,3.56624,0.842614,1.15807,2.62835,0.482627,1.13544,3.39457,0.38724,1.10083,3.29414,0.608465,0.633614,3.25811,0.782164,0.822326,3.26655,0.786012,1.31883,3.6035,0.683238,1.16906,3.46589,0.442108,0.672544,3.53397,1.06609,0.675962,3.32046,0.833728,1.14153,3.34873,0.66131,0.859432,3.32157,0.840278,1.21479,3.59922,0.919327,0.933091,3.56936,1.07473,1.17698,4.30296,1.02018,1.15537,4.28856,0.8564,0.781133,4.24829,1.07809,0.924487,4.27631,1.1604,0.735761,4.22188,1.03088,1.11,4.26215,0.809183,1.10469,4.26201,0.947081,0.860104,4.2366,1.0774,1.29172,3.97562,0.750202,1.20478,3.95905,0.973674,0.927878,3.92879,1.12692,0.683455,3.91018,1.11053,0.571008,3.89956,0.967287,1.18677,3.96581,0.602518,1.20517,3.62899,0.515782,1.13983,3.42266,0.402131,0.64673,3.27723,0.793751,0.559533,3.55839,0.898404,1.11085,3.30859,0.621734,0.831793,3.28057,0.79948,0.747104,4.22848,1.04268,1.12134,4.26875,0.820988,1.12276,4.27225,0.965357,0.8762,4.24652,1.09815,0.59912,3.90221,1.0031,1.21301,3.96826,0.639439,1.16424,4.26821,0.849495,1.17878,4.2806,1.01716,0.924708,4.25371,1.15822,0.774781,4.2263,1.0802,0.725048,4.20092,1.02674,1.11499,4.24288,0.795745,0.857282,4.21645,1.07082,1.1037,4.24225,0.939208,0.737481,4.20727,1.04011,1.1273,4.24921,0.809182,1.24914,1.96197,-0.178952,0.414986,1.95607,-0.353849,1.28376,2.96007,-0.136769,0.381791,2.8367,-0.325976,0.84911,1.96677,-0.537138,0.683368,1.96515,-0.538737,0.527617,1.96233,-0.478635,1.14343,1.96536,-0.366156,0.838194,2.793,-0.542682,0.652923,2.78046,-0.54043,0.494247,2.787,-0.466766,1.16961,2.86858,-0.363455,0.466213,0.566633,-0.251176,0.413674,0.504901,0.450504,1.07804,1.09479,0.91748,0.972649,0.619688,-0.398664,1.28759,0.448976,0.196158,1.32343,0.453802,0.488573,0.671957,0.615671,-0.427715,0.652786,1.07731,0.909115,0.390529,0.502167,0.0759872,0.476147,0.780562,0.714817,1.30345,0.762581,0.670227,1.20731,0.54949,-0.163031,0.464309,0.808765,-0.235687,0.437274,0.774509,0.374743,1.07148,1.14133,0.829282,0.958492,0.84315,-0.387696,1.25625,0.719717,0.109607,1.29782,0.807912,0.324189,0.680504,0.841521,-0.417657,0.667357,1.12984,0.845017,0.416793,0.769458,0.0544677,0.536195,0.980873,0.624159,1.23895,1.00907,0.588485,1.18758,0.793045,-0.164153,0.968392,-6.294e-06,2.42773,1.1441,-6.29557e-06,2.39185,0.8184,-6.29493e-06,2.40657,0.801587,0.0505963,2.35725,1.08176,0.0701109,2.33737,0.890931,0.145089,2.31329,1.02854,0.13252,2.3114,0.832714,0.114053,2.32496,0.964131,0.154172,2.30611,0.971979,0.285007,2.15851,0.71427,0.225009,2.17975,1.10225,0.243271,2.1704,0.835338,0.276072,2.16167,1.20318,0.133201,2.20716,0.630897,0.113277,2.2351,0.589592,-6.29875e-06,2.319,1.29444,-6.30107e-06,2.266,1.44789,-6.30973e-06,2.06794,0.421114,-6.30859e-06,2.09388,0.475809,0.183392,2.00463,1.34196,0.202167,1.9735,0.784409,0.392911,1.90943,1.19976,0.348498,1.92005,0.601867,0.33381,1.93754,0.99199,0.399469,1.90264,1.01738,0.569816,1.38984,0.506817,0.4964,1.41779,1.3146,0.497983,1.37315,0.744881,0.566407,1.4049,1.46956,0.318749,1.36428,0.354124,0.308194,1.42584,0.26314,-6.33758e-06,1.43071,1.55957,-6.34093e-06,1.35415,1.2887,1.69807,0.0281047,1.19949,1.56805,-0.282824,0.653916,1.3929,-0.572765,0.497036,1.82688,0.533305,0.338087,1.47174,-0.00428325,0.943288,1.41049,-0.499542,0.960838,1.85411,0.671443,0.357301,1.53833,0.290341,0.423546,1.43296,-0.359208,0.681087,1.23294,0.807091,1.02017,1.24765,0.776912,1.20848,1.13355,0.55713,1.29194,0.995964,0.254819,1.25333,0.900427,0.0506986,1.18087,0.93394,-0.176781,0.995851,1.05349,-0.371852,0.632236,1.04932,-0.425182,0.469837,0.934325,-0.22873,0.423958,0.895668,0.0517108,0.451267,0.9146,0.339187,0.534933,1.16431,0.629688,1.0362,0.60384,1.4622,0.455305,0.521127,1.495,1.35918,0.503442,1.44406,0.712728,0.600226,1.48063,1.52751,0.328219,1.44453,0.29468,0.32384,1.50364,0.21341,-6.33422e-06,1.50767,1.63445,-6.33774e-06,1.42714,1.52252,-6.35434e-06,1.04733,0.325205,-6.35136e-06,1.11555,0.383664,0.418815,1.11613,1.42003,0.431597,1.05905,0.757723,0.745841,1.1041,1.2804,0.655761,1.07239,0.534034,0.65369,1.11361,1.00917,0.750392,1.09034,1.01789,0.797933,1.13509,0.51403,0.714169,1.16152,1.2966,0.706732,1.11635,0.748159,0.797843,1.15074,1.45928,0.471866,1.09756,0.348892,0.458985,1.15844,0.238958,-6.34966e-06,1.15446,1.61756,-6.35282e-06,1.08204,1.45385,-6.37076e-06,0.671785,0.357481,-6.3681e-06,0.732485,0.454366,0.537002,0.728539,1.33558,0.551557,0.679545,0.773866,0.950002,0.711719,1.1697,0.836612,0.689676,0.583844,0.833725,0.722093,0.970559,0.956002,0.700918,0.389841,-6.3191e-06,1.85357,1.48126,-6.32173e-06,1.7934,0.455792,0.198496,1.84994,1.36566,0.215076,1.79978,0.777808,0.412404,1.83219,0.585643,0.353642,1.84278,1.22499,0.364608,1.80753,0.99746,0.417735,1.82008,1.00628,0.440574,1.90489,1.24628,0.384858,1.89165,0.571896,0.374279,1.92883,0.774568,0.434946,1.91766,1.39466,0.23027,1.88347,0.434929,0.212833,1.93639,1.51659,-6.31809e-06,1.87675,0.365363,-6.31531e-06,1.94022,0.458766,0.920013,-0.279056,0.377877,0.646653,0.436606,0.984125,0.947877,-0.421465,1.335,0.780741,0.0538123,1.33756,0.67928,0.29422,0.687114,0.948182,-0.436876,0.338575,0.774375,0.0937054,0.417733,0.529508,0.82856,1.46447,0.539726,0.776228,1.22369,0.872684,-0.232796,0.679799,-6.40663e-06,-0.558904,1.3209,-6.40149e-06,-0.275525,1.34382,-6.39741e-06,0.0148652,1.45233,-6.39365e-06,0.271039,0.347842,-6.40394e-06,-0.320981,0.354973,-6.39882e-06,0.0463635,0.343373,-6.39276e-06,0.420584,1.0995,-6.40548e-06,-0.532634,0.3815,0.286745,0.411504,0.328315,0.419292,0.0678628,0.360253,0.448133,-0.289848,1.37471,0.315882,0.267116,1.38291,0.385162,0.0294302,1.32163,0.435526,-0.241994,1.01941,0.442244,-0.529966,0.642546,0.443918,-0.55495,0.680701,0.670339,-0.512596,1.23705,0.657457,-0.230208,1.34139,0.616799,0.048312,1.3511,0.52074,0.289046,0.455213,0.647485,-0.246533,0.340822,0.629119,0.0865085,0.383378,0.510413,0.402604,0.986721,0.671239,-0.496278,1.66156,-6.38636e-06,0.766654,1.59493,0.19435,0.767512,1.54321,0.363,0.771696,0.299942,0.124877,0.832711,0.261975,-6.38808e-06,0.830366,0.356749,0.337334,0.831458,1.0599,1.25993,-0.257421,0.550692,1.21598,-0.325752,0.669049,1.22476,-0.353293,0.80809,1.23755,-0.372266,0.473327,1.20894,-0.162654,1.14666,1.26385,-0.121516,1.288,2.98129,0.151112,0.39296,2.93195,0.574378,1.30675,2.18167,0.0601634,0.713301,1.55512,0.793565,1.00134,1.54714,0.768441,1.22627,1.49728,0.538229,1.32868,1.38533,0.243616,1.31877,1.31927,0.0309145,1.23678,1.20167,-0.247409,1.00347,1.22472,-0.471722,0.609174,1.2087,-0.533566,0.403778,1.17313,-0.317377,0.331647,1.17628,0.0210544,0.356412,1.22168,0.328454,0.47867,1.49451,0.613209,0.680793,2.21897,0.688619,0.948268,2.21406,0.661509,0.458263,2.22159,0.531065,1.3149,2.65733,0.0982695,0.416363,2.64812,0.528645,1.13173,2.95465,0.540582,0.647282,2.92592,0.733413,1.26359,2.63935,0.272165,0.660102,2.61634,0.692064,0.908575,2.60999,0.671023,1.22546,2.97363,0.323267,0.880001,2.92756,0.714355,1.15319,2.20431,0.479808,1.27255,2.18968,0.243315,0.72809,1.52228,0.751425,0.981452,1.51392,0.728655,1.18576,1.46226,0.516509,1.28043,1.3512,0.23734,1.26792,1.28522,0.0388945,1.1929,1.18389,-0.21823,0.971801,1.21683,-0.430276,0.642155,1.20652,-0.492709,0.448657,1.16247,-0.28843,0.384668,1.15925,0.0260909,0.408276,1.20004,0.316838,0.519075,1.46584,0.585588,0.699941,1.85125,0.685431,1.15592,1.83559,0.476767,1.26685,1.77356,0.216617,0.71209,1.58518,0.782475,0.997158,1.57818,0.758493,1.21903,1.53149,0.531925,1.32233,1.42492,0.240847,1.31568,1.35812,0.0306263,1.23296,1.23925,-0.251042,0.997298,1.24377,-0.474575,0.613762,1.22759,-0.537586,0.405806,1.19978,-0.321667,0.332308,1.20659,0.0184557,0.356503,1.25415,0.324545,0.480537,1.5283,0.605013,0.807728,-6.40687e-06,-0.492708,0.942668,-6.40618e-06,-0.481073,0.359224,-6.33562e-06,1.47569,1.47985,-6.33844e-06,1.41111,1.17537,-6.33767e-06,1.42866,0.673346,-6.33641e-06,1.45759,0.725063,-6.31887e-06,1.85888,1.16295,-6.31997e-06,1.83365,1.42853,-6.32064e-06,1.81834,0.451072,-6.31818e-06,1.87467,1.05377,-6.29799e-06,2.33644,0.85912,-6.29758e-06,2.34584,0.770581,-6.3078e-06,2.11211,0.542757,-6.30722e-06,2.12524,1.35552,-6.30927e-06,2.0784,1.13469,-6.30872e-06,2.09113,0.434958,-6.40403e-06,-0.277515,0.435881,-6.39854e-06,0.0426965,0.483464,-6.38303e-06,0.429721,0.44443,-6.36726e-06,0.751881,0.364531,-6.35264e-06,1.08626,0.390553,-6.3357e-06,1.47388,0.478399,-6.31825e-06,1.8731,0.565479,-6.30728e-06,2.12393,1.23193,-6.40255e-06,-0.259724,1.2441,-6.3981e-06,0.0167917,1.23711,-6.39035e-06,0.289029,1.43064,-6.36649e-06,0.769393,1.51564,-6.35327e-06,1.0719,1.44272,-6.33835e-06,1.41325,1.39614,-6.32056e-06,1.82021,1.32859,-6.3092e-06,2.07996,0.838476,-6.29896e-06,2.31438,0.671883,-0.000328881,2.27822,1.20979,0.000349658,2.25983,1.06825,-6.29939e-06,2.30452,0.687832,-6.30128e-06,2.26116,1.1936,-6.30201e-06,2.24455,0.628361,-0.000325411,-0.451699,0.802078,-6.40649e-06,-0.478166,0.945862,-6.40613e-06,-0.467444,1.07654,-0.000176875,-0.445314,0.634663,4.03235e-05,-0.439184,1.06913,-2.47629e-05,-0.433537,1.15281,7.84932,0.732566,1.02884,7.18582,0.760986,1.04633,7.48992,0.667375,1.29936,8.14217,0.594306,1.42385,8.32208,0.564128,1.2312,6.53935,0.999114,1.06941,6.98126,0.815587,1.19895,6.75151,0.907431,1.1999,6.31595,1.01771,0.973239,7.16111,0.735,1.067,6.929,0.814452,1.17962,6.68462,0.903839,1.19332,6.49855,0.985018,1.25149,6.36621,1.06466,1.0338,7.21744,0.749622,1.04287,7.01417,0.797031,1.18023,6.78344,0.891745,1.22743,6.55474,0.988965,1.24673,6.37937,1.0599,1.0848,8.57531,1.02869,1.26645,2.46102,-0.157861,0.407579,2.39966,-0.332246,0.843652,2.37989,-0.53991,0.668146,2.3728,-0.539584,0.515147,2.37617,-0.469185,1.15652,2.41697,-0.364806,0.814202,1.59412,-0.4577,1.09287,1.60773,-0.31362,1.18929,1.6081,-0.152028,0.436538,1.58227,-0.255813,0.535312,1.58844,-0.401675,0.669081,1.59097,-0.447499,1.37217,4.55643,-0.124973,0.164654,4.36735,-0.254191,0.822119,4.47536,-0.645971,0.334341,4.39552,-0.53338,0.584028,4.43946,-0.629051,1.19403,4.52494,-0.448503,-0.000622508,9.37874,-0.849514,0.500149,6.17609,1.36244,0.217016,6.16859,1.47093,0.114675,5.00972,1.12501,0.469853,6.20299,1.36949,0.256166,5.35529,1.35937,0.477028,5.80914,1.43164,0.470357,6.1753,1.37386,-8.88178e-16,8.32545,-1.12727,0.000291177,8.98316,-1.02914,0,5.40598,1.53086,-8.88178e-16,9.06125,1.07932,-8.88178e-16,7.89621,1.3649,-8.88178e-16,8.06404,1.38275,-8.88178e-16,9.15783,1.02045,-8.88178e-16,8.74224,1.34093,-8.88178e-16,7.36021,1.45886,-8.88178e-16,6.74395,1.56781,-8.88178e-16,8.92671,1.19733,-8.88178e-16,7.54203,1.42804,-8.88178e-16,7.23914,1.48214,0.00079876,9.20369,-0.952232,-0.110415,9.20476,-0.941415,-0.170982,8.34011,-1.11114,-0.680396,9.46887,-0.766509,-0.123656,8.73339,-1.08355,-0.821324,9.32095,-0.86592,-0.927493,8.64377,-0.997871,-1.05366,8.78855,-0.946924,-0.893843,9.47686,-0.746422,-1.19251,8.96017,-0.890161,-0.804801,8.9928,-0.972846,-0.933813,9.14568,-0.931299,-1.03434,9.3284,-0.856747,-0.499207,9.19367,-0.92603,-0.384956,9.20593,-0.9375,-0.629831,8.86297,-1.02243,-0.450522,8.78759,-1.05682,-0.586384,8.4291,-1.07028,-0.784301,8.51491,-1.05216,-0.699268,9.17322,-0.927875,-0.582527,9.31737,-0.865289,-0.566969,9.05805,-0.990182,-0.396552,9.00199,-1.00243,-0.109946,8.9849,-1.02042,-0.245002,9.20505,-0.933132,-0.27482,8.7497,-1.06596,-0.36915,8.37405,-1.08551,-0.240044,8.9849,-1.00861,-0.871547,8.828,-0.996039,-0.997043,8.95811,-0.951943,-1.14048,9.12084,-0.887402,-0.70099,8.6835,-1.04348,-0.525557,8.58812,-1.07396,-0.149755,8.50507,-1.11453,-0.328565,8.54726,-1.08896,-0.605694,9.63223,-0.466861,-0.294361,9.53559,-0.685965,-0.457827,9.56855,-0.602733,-0.12819,9.53043,-0.722264,-0.137541,9.49879,-0.755275,-0.513855,9.55303,-0.647673,-0.334338,9.51679,-0.710329,-0.642864,9.6118,-0.580928,-0.743575,9.57224,-0.651023,-0.290947,9.40695,-0.806906,-0.455937,9.39862,-0.807285,-0.131849,9.39301,-0.831094,-0.127483,9.54955,-0.728612,-0.291584,9.55247,-0.691916,-0.6015,9.6469,-0.472186,-0.45473,9.58416,-0.607544,-1.25033,4.96474,1.02898,-0.877237,4.62352,1.3875,-0.891178,4.6347,1.37495,-1.2456,4.9399,1.04456,-1.12633,5.66778,1.0149,-0.75172,5.46538,1.46281,-0.736256,5.4606,1.47931,-1.24077,4.9552,1.04209,-0.888548,4.65291,1.37226,-1.2454,4.97991,1.02652,-0.87469,4.64184,1.3848,-0.827886,6.60746,0.875119,-0.506001,6.60736,1.16291,-0.491997,6.60361,1.17681,-0.817116,6.59997,0.896015,-1.05947,6.62574,0.564463,-0.825834,6.60367,0.880266,-1.04986,6.62059,0.582814,-1.2783,4.90092,1.12836,-1.56943,5.20454,0.67757,-1.28856,4.91162,1.11247,-1.55763,5.19223,0.695855,-1.17182,5.64865,1.15767,-1.50002,5.86362,0.682478,-1.18442,5.65406,1.14147,-1.48897,5.85018,0.702933,-1.56427,5.1777,0.698759,-1.29337,4.89406,1.11628,-1.28304,4.88325,1.13219,-1.57616,5.19015,0.680435,-1.68882,5.46584,0.181691,-1.63895,5.21169,0.744793,-1.6395,5.22077,0.724939,-1.67102,5.45718,0.204351,-1.55801,5.87868,0.736724,-1.5398,6.04746,0.168506,-1.55219,5.87345,0.755003,-1.66184,5.47054,0.203425,-1.63113,5.23712,0.722077,-1.67961,5.47907,0.180849,-1.63061,5.22815,0.741858,-1.07221,6.62836,0.564614,-1.15849,6.68783,0.10321,-1.06936,6.62285,0.580096,-1.17685,6.69609,0.0816336,-0.951408,6.67944,-0.324539,-1.16828,6.70077,0.0739547,-0.960667,6.68182,-0.308288,-1.74615,5.5146,0.190843,-1.47843,5.59385,-0.308831,-1.73672,5.51739,0.173237,-1.48929,5.59064,-0.288563,-1.6003,6.06615,0.170243,-1.35431,6.06153,-0.315273,-1.59291,6.06423,0.153119,-1.36708,6.05788,-0.295615,-1.49723,5.57783,-0.288321,-1.74503,5.50255,0.176167,-1.75448,5.49968,0.193876,-1.48635,5.58113,-0.308707,-0.819472,6.28741,0.932342,-0.501447,6.15795,1.25212,-0.826,6.30916,0.916876,-0.488884,6.15533,1.26409,-1.11805,5.68681,1.01028,-0.745716,5.48644,1.45784,-0.730356,5.4817,1.47434,-0.937882,6.11333,0.922594,-1.1781,6.28319,0.507031,-0.947031,6.11749,0.908223,-1.16985,6.27234,0.524478,-1.1634,5.67108,1.15104,-1.4892,5.88327,0.676562,-1.1759,5.67644,1.13485,-1.47819,5.87006,0.696959,-1.24736,6.33482,0.0944334,-1.22942,6.22334,0.550693,-1.25882,6.34231,0.07431,-1.22831,6.22066,0.567996,-1.51542,6.04529,0.184462,-1.55094,5.89146,0.734093,-1.53165,6.05848,0.166709,-1.54517,5.88626,0.752343,-1.28375,6.3669,0.0582388,-1.04292,6.3498,-0.348212,-1.27612,6.36469,0.044025,-1.05455,6.34699,-0.33149,-1.58265,6.09013,0.167558,-1.33665,6.0831,-0.314151,-1.57522,6.08818,0.150568,-1.34932,6.07969,-0.294646,-0.868343,6.3446,0.863753,-0.503776,6.20361,1.25413,-0.489193,6.19821,1.26862,-1.11758,5.66097,1.03834,-0.815896,6.60246,0.890225,-1.10739,5.67964,1.03214,-0.853386,6.33849,0.879719,-0.910362,6.13553,1.02353,-1.19444,6.2545,0.620513,-0.920967,6.14006,1.00756,-1.18412,6.24533,0.639886,-1.52347,6.03414,0.186272,-1.14809,6.68129,0.120245,-1.28308,6.22276,0.648709,-1.31658,6.336,0.134315,-1.27877,6.2174,0.665575,-1.30326,6.32613,0.151709,-1.36006,6.39311,0.134204,-1.114,6.35514,-0.300004,-1.35183,6.39447,0.122144,-1.12546,6.35462,-0.282431,-0.499423,6.20379,1.35803,-0.268936,5.35218,1.3434,-0.0646213,4.90934,1.17005,0,4.88882,1.16613,-0.120561,5.02152,1.11971,-0.218392,6.19625,1.46693,0,6.18975,1.48059,-0.509744,5.80987,1.4208,-0.198819,5.80294,1.52383,-0.147569,5.38177,1.49517,0,5.81389,1.50029,-0.0444574,4.58788,-0.0197704,-0.0722725,4.4032,-0.00955448,-0.293725,4.62057,-0.398998,-0.302145,4.43853,-0.392149,-0.606163,4.88381,0.929928,-0.635438,4.72223,0.872027,-0.199632,4.71973,0.76073,-0.223388,4.54895,0.720406,-0.0543837,4.62354,0.380688,-0.0846645,4.46278,0.37462,-0.204422,4.07157,0.074744,-0.164837,4.24889,0.0489647,-0.188476,4.09036,0.361041,-0.160319,4.26425,0.364965,-0.308082,4.04819,-0.232104,-0.277003,4.22296,-0.293455,-0.462387,4.13957,0.806038,-0.440977,4.3103,0.804237,-0.291547,4.11259,0.652618,-0.270885,4.27826,0.667174,-0.399681,4.82931,0.899179,-0.429243,4.65907,0.872248,-0.680171,4.18541,0.77273,-0.661525,4.33198,0.796903,-0.3487,4.62409,-0.434135,-0.357184,4.44208,-0.427301,-0.373046,4.04185,-0.283085,-0.341966,4.21662,-0.344436,-0.582336,1.90616,-0.44386,-0.590163,1.72859,-0.40078,-0.495096,2.60839,-0.433261,-0.473149,2.74853,-0.412047,-0.578025,2.63147,0.586306,-0.592278,2.79903,0.622303,-0.449951,2.64686,0.513139,-0.483379,2.46384,0.520976,-0.624026,2.79959,0.618494,-0.645615,2.61212,0.625388,-0.522034,1.91882,-0.385586,-0.519019,1.74218,-0.330723,-0.352407,2.38746,0.273148,-0.397992,2.19527,0.285345,-0.335365,2.11818,-0.0375792,-0.365057,1.92326,-0.00555976,-0.312757,2.58601,0.138641,-0.288356,2.72218,0.144872,-0.431228,2.61782,0.454169,-0.407343,2.74112,0.50524,-0.456637,2.60399,-0.394551,-0.434497,2.74265,-0.37321,-0.350283,2.5908,-0.150365,-0.323977,2.72632,-0.13475,-0.366183,1.8064,-0.112716,-0.435951,1.66305,-0.18443,-0.453147,1.89489,-0.308375,-0.501964,1.73145,-0.360659,-0.541821,1.70995,0.47196,-0.543616,1.56686,0.436717,-0.376836,1.69303,0.213406,-0.384128,1.56759,0.096269,-0.715472,1.73794,0.614496,-0.698905,1.56777,0.579624,-0.490905,1.94014,-0.384198,-0.547458,1.78292,-0.446229,-0.429385,4.85199,1.03074,-0.725963,5.04707,1.08353,-1.0785,5.37978,0.933946,-1.36058,5.54079,0.583187,-1.02869,3.98086,0.657097,-1.39224,4.00945,0.250249,-0.50332,3.88588,0.852239,-0.744606,3.92793,0.825235,-1.05315,4.60377,0.747587,-1.31093,4.68073,0.435861,-0.466874,4.3484,0.876012,-0.738292,4.44843,0.87528,-1.30829,5.80494,0.583008,-1.08368,5.63191,0.937578,-0.725161,5.23373,1.13612,-0.413324,4.99181,1.07694,-1.25428,5.46743,0.759061,-1.16755,4.00075,0.454234,-1.21081,4.64246,0.597919,-1.20544,5.72585,0.761699,-1.32132,3.92324,-0.0452496,-1.42302,5.19948,-0.100099,-0.190716,3.90931,-0.127151,-0.138593,4.82539,-0.335386,-1.16511,3.98957,-0.292657,-0.846592,4.946,-0.589549,-0.6091,4.88499,-0.596224,-0.324149,4.83646,-0.524914,-1.22295,5.0603,-0.361775,-0.797646,4.00471,-0.45982,-0.344533,3.95459,-0.299691,-0.558956,3.99392,-0.419747,-1.26115,4.74756,-0.251257,-1.26115,4.95802,-0.268192,-1.22132,5.0284,0.565756,-1.21111,4.8389,0.541027,-1.3184,4.78197,-0.0142018,-1.31104,4.82193,0.270942,-1.3184,4.98789,-0.0221026,-1.31104,5.01842,0.281784,-1.22359,4.83678,0.507288,-1.23252,5.02716,0.530283,-1.26135,5.0285,0.530283,-1.25242,4.83774,0.507288,-1.34792,5.01495,0.281065,-1.4202,4.95673,-0.0254527,-1.34792,4.8157,0.270071,-1.4202,4.75018,-0.0175519,-1.23994,4.83953,0.541027,-1.25015,5.02936,0.565756,-1.34269,4.9823,0.10295,-1.34269,4.7786,0.102925,-1.37213,4.75022,0.176607,-1.37213,5.04679,0.174201,-1.37736,4.76061,0.260651,-1.37736,5.05284,0.266223,-1.20446,5.04681,0.17237,-1.19325,5.05158,0.263933,-1.22532,4.7505,0.174188,-1.21419,4.75934,0.25787,-1.36023,4.76049,0.260392,-1.35618,4.75025,0.176382,-1.35003,5.04679,0.173976,-1.35384,5.05268,0.265942,-1.37438,4.47863,0.251982,-1.36838,4.48595,0.160235,-1.34052,4.19309,0.122308,-1.34711,4.19112,0.206757,-1.20188,4.2066,0.208811,-1.21053,4.20822,0.124388,-1.21471,4.4957,0.255018,-1.22377,4.5024,0.163339,-1.39776,4.47612,0.251523,-1.36414,4.1893,0.206478,-1.39034,4.48345,0.159745,-1.35636,4.19126,0.122014,-1.32919,4.23262,0.0538649,-1.35252,4.43311,0.0814129,-1.45044,4.19083,-0.0391414,-1.34138,4.2455,0.224207,-1.474,4.39521,-0.0190261,-1.36442,4.44006,0.262045,-1.17187,4.26709,0.458369,-1.20264,4.45613,0.476149,-1.17385,4.45801,0.477113,-1.14313,4.26935,0.459323,-1.3282,4.44749,0.264415,-1.30062,4.46153,-0.0400316,-1.30547,4.25561,0.227101,-1.27713,4.25778,-0.0600609,-1.25708,4.46967,-0.18908,-1.19814,4.267,-0.194724,-0.59087,9.31707,0.780982,-0.975657,9.40122,0.649788,-0.178412,9.1013,1.02887,-1.12511,9.21987,0.777692,-0.672408,9.1871,0.907806,-0.879266,8.5229,1.10949,-0.205575,8.45756,1.32372,-8.88178e-16,8.44854,1.40953,-0.245447,8.05611,1.30867,-0.907052,8.124,1.07087,-0.995036,7.88309,0.923886,-0.233134,7.88313,1.29375,-0.238394,7.44382,1.37362,-0.898735,7.21664,0.940536,-1.38974,8.09608,0.41755,-1.13471,7.19123,0.556943,-1.15017,7.25744,0.063476,-1.31053,7.81961,0.540716,-1.2767,7.78147,0.0252519,-0.502287,9.50766,0.665323,-0.839546,9.52555,0.566444,-0.864415,9.36822,0.707973,-0.988083,9.2315,0.834762,-0.740764,9.52079,0.607061,-1.2047,8.54104,0.93856,-1.37559,8.42643,0.729743,-1.11353,8.30117,0.949475,-1.21507,8.19091,0.786984,-0.909937,8.19784,-0.928899,-0.817802,8.00145,-0.89299,-0.958795,7.66587,-0.551799,-1.12571,7.86685,-0.490467,-1.20993,7.80075,-0.229638,-1.08717,7.53779,-0.228871,-1.15867,7.48191,0.0434332,-0.200032,7.6738,1.28343,-0.934561,7.51216,0.8044,-1.15427,7.47509,0.529141,-8.88178e-16,7.70845,1.36647,-0.193369,9.21212,0.957453,-0.43263,9.1549,0.927797,-0.547534,8.48582,1.20432,-0.576955,8.05165,1.20399,-0.599787,7.84668,1.12325,-0.543666,7.30867,1.17307,-0.553912,7.57348,1.06614,-0.397439,9.26676,0.842158,-0.753483,9.3466,0.738413,-0.857684,9.21958,0.877431,-0.643793,9.51818,0.634965,-0.216757,8.24749,1.35328,-0.900649,8.31823,1.12305,-0.560121,8.26653,1.23379,-1.05149,8.41163,1.0203,-1.45777,8.23468,0.402283,-0.186252,8.74835,1.27128,-0.852379,8.76402,1.08877,-1.17055,8.74578,0.960714,-1.30096,8.68131,0.865188,-0.520143,8.74765,1.1399,-1.05464,8.7848,1.04681,-0.945732,7.39888,-0.516642,-1.07401,7.31324,-0.215062,-0.700664,7.67601,-0.79159,-1.16622,6.93132,-0.260588,-0.826563,7.01239,-0.545932,-1.31307,6.84663,0.148804,-1.2613,6.89241,-0.0710742,-1.3349,6.60681,0.772069,-1.10794,6.4845,1.22683,-0.699047,6.61087,1.47556,-0.320833,6.81869,1.55225,-8.88178e-16,7.03758,1.58475,-0.240498,7.96804,1.2987,-0.954252,8.01004,0.997964,-0.930759,9.39004,0.672431,-1.07706,9.22383,0.80643,-0.79884,9.52422,0.576475,-1.27971,8.47658,0.864396,-1.16543,8.24462,0.867181,-0.594819,7.94705,1.16782,-1.24365,8.70737,0.920553,-0.703141,7.41564,-0.663405,-0.969368,7.19475,-0.394569,-1.18478,7.08871,0.0917449,-1.08706,7.13503,-0.151225,-0.560498,7.06125,1.22961,-0.934993,6.99261,1.01244,-0.267376,7.22903,1.39312,-1.17711,6.99923,0.618257,-1.05774,7.06568,-0.297569,-1.2319,6.98787,0.129224,-1.17761,7.02504,-0.104756,-0.639062,6.84012,1.31989,-1.04642,6.69813,1.1118,-0.292941,7.04109,1.44131,-8.88178e-16,7.22165,1.497,-1.29848,6.83092,0.689394,-0.790782,7.19468,-0.56465,-0.321855,6.57238,1.51538,-0.710574,6.33621,1.42924,-1.0759,6.24974,1.21848,-1.3154,6.38668,0.82238,-1.2518,6.73739,-0.0526351,-1.33274,6.67645,0.172437,-0.965045,6.79898,-0.659187,-1.16145,6.76823,-0.24826,-1.0402,8.04031,-0.725703,-0.887699,7.83016,-0.720408,-0.813586,7.53556,-0.661134,-1.0209,6.95991,-0.448313,-0.838444,7.29121,-0.569719,-0.926177,7.11983,-0.477516,-1.07452,6.81925,-0.437895,-0.173445,8.96122,1.15467,-0.774099,8.99148,1.02389,-1.09957,8.97056,0.948887,-1.23043,8.92922,0.887784,-0.493793,8.9681,1.05204,-0.965995,9.00804,0.985898,-1.17982,8.94411,0.923428,-1.35555,6.76253,0.450005,-1.31566,7.79585,0.286169,-1.17631,7.46502,0.297415,-1.16083,7.21808,0.321872,-1.19333,7.05459,0.359919,-1.26287,6.93962,0.413147,-1.34476,6.55454,0.464748,-0.159492,9.41359,0.745023,-0.342696,9.49027,0.689146,-0.675147,7.64167,-0.722921,-0.915877,7.37232,-0.455065,-1.10358,7.2298,0.0771934,-1.02469,7.28742,-0.180088,-0.518864,7.25655,1.14181,-0.854859,7.17429,0.910439,-0.230755,7.39005,1.32832,-8.88178e-16,7.47513,1.3911,-1.08356,7.16112,0.546589,-0.791081,7.50321,-0.600448,-1.10716,7.18688,0.321011,-0.959971,7.17386,-0.333773,-1.15382,7.06434,0.109545,-1.06877,7.1128,-0.115166,-0.545908,7.00318,1.20819,-0.937342,6.91266,1.00982,-0.255208,7.1745,1.35712,-8.88178e-16,7.31764,1.41773,-1.1692,6.96174,0.613631,-0.711382,7.38666,-0.571905,-0.847845,7.2667,-0.496213,-1.1715,7.02463,0.364214,-1.05939,7.03105,-0.252805,-1.21746,6.95149,0.143825,-1.17433,6.98884,-0.0666063,-0.629174,6.76969,1.32405,-1.02836,6.6315,1.10665,-0.282022,6.97429,1.42014,-1.28022,6.76248,0.687934,-0.792862,7.13732,-0.519086,-0.936811,7.0869,-0.412607,-1.24864,6.89149,0.408689,-0.841249,6.96322,-0.529245,-1.08359,6.4402,1.20862,-1.30226,6.55834,0.760303,-8.88178e-16,6.98216,1.54723,-0.308085,6.77537,1.5221,-0.677455,6.56105,1.44783,-1.28178,6.8088,0.159271,-1.22904,6.86257,-0.0494058,-1.14139,6.90272,-0.2336,-1.00929,6.93804,-0.436165,-1.32308,6.7156,0.434031,-0.96489,6.88944,-0.662043,-1.12124,6.29905,1.26301,-1.36376,6.4354,0.856044,-0.328864,6.61567,1.5711,-0.739449,6.38407,1.48289,-1.37222,6.71032,0.16355,-1.28809,6.77344,-0.0766489,-1.19466,6.81476,-0.280234,-1.10215,6.86125,-0.47201,-1.39558,6.59706,0.482024,-0.233633,7.47132,1.36164,-0.906589,7.25042,0.924419,-1.13717,7.22168,0.551769,-1.14979,7.28492,0.0607913,-0.545114,7.33975,1.15959,-1.07471,7.3409,-0.217797,-0.943895,7.43034,-0.522548,-0.709137,7.71498,-0.806462,-0.817573,7.57032,-0.67045,-1.16242,7.24767,0.318401,-0.696672,7.44916,-0.673081,-0.956683,7.22082,-0.405539,-1.17125,7.10969,0.0882902,-1.07284,7.15761,-0.156917,-0.55161,7.09071,1.21451,-0.908883,7.03001,0.990166,-0.261818,7.25295,1.38103,-1.15249,7.02355,0.603724,-0.828717,7.32241,-0.574991,-1.17429,7.07319,0.351326,-1.03406,7.08481,-0.306851,-1.21856,7.00233,0.124455,-1.15209,7.04061,-0.109213,-0.620687,6.87204,1.29827,-1.02922,6.73386,1.0897,-0.284266,7.0652,1.42421,-1.27957,6.85841,0.678488,-0.783486,7.2316,-0.570055,-0.909019,7.15094,-0.47834,-1.24925,6.95828,0.405289,-1.1496,6.94082,-0.261502,-1.30286,6.85874,0.147486,-1.25242,6.90274,-0.0705539,-0.691807,6.62713,1.45406,-1.09964,6.49994,1.21258,-0.316649,6.83528,1.53663,-1.32979,6.62377,0.764289,-0.822843,7.03559,-0.535506,-1.01531,6.97267,-0.436458,-1.34485,6.77673,0.447066,-0.962371,6.90355,-0.654128,-1.12068,6.31348,1.26457,-1.35781,6.44736,0.849536,-0.325411,6.63083,1.56843,-0.737402,6.40205,1.48726,-1.36482,6.71787,0.162345,-1.28265,6.78178,-0.0757,-1.19108,6.82549,-0.277918,-1.09924,6.8705,-0.466266,-1.39188,6.60734,0.479457,-0.0558476,9.06589,1.07596,-0.0241488,8.45041,1.41067,-0.0385714,7.89495,1.3594,-0.0399887,7.50822,1.43541,-0.0380603,8.06368,1.37764,-0.0335346,7.70347,1.36272,-0.0602664,9.16291,1.01615,-0.029935,8.24878,1.41519,-0.0232522,8.74402,1.34334,-0.0467371,7.00374,1.58227,-0.0377553,7.97728,1.36948,-0.0447745,7.34045,1.45496,-0.0481064,7.19395,1.49377,-0.0480841,6.71555,1.56313,-0.0397342,8.93213,1.19589,-0.0451413,9.39002,0.764039,-0.0387268,7.46265,1.38745,-0.0427114,7.29598,1.41452,-0.0444185,7.13448,1.4657,-0.0447774,6.95039,1.54622,-0.0498117,6.76639,1.63178,-0.0391978,7.53178,1.42397,-0.043865,7.35868,1.44402,-0.0471173,7.21253,1.47887,-0.0464097,7.01768,1.5689,-0.0499256,6.78368,1.62794,-0.0936353,9.604,0.741989,-0.39601,9.7545,0.66084,-0.209719,9.65492,0.721058,-0.723087,9.73189,0.404503,-0.628159,9.7657,0.540556,-0.685638,9.75102,0.500355,-0.754673,9.71353,0.400203,-0.521056,9.77686,0.609638,-1.48322,8.18389,-0.00708664,-1.40678,8.07636,0.0197476,-1.31351,8.13244,-0.418219,-1.41904,8.28835,-0.385392,-1.28776,8.52024,-0.762104,-1.0222,8.34777,-0.896207,-1.17447,8.20133,-0.668468,-1.34993,8.39418,-0.583078,-1.40152,8.07553,0.218831,-1.47436,8.19444,0.177145,-1.36417,8.09084,-0.197264,-1.46709,8.21433,-0.194595,-0.164457,9.43744,0.743553,-0.0499347,9.41117,0.761998,-8.88178e-16,9.40925,0.764248,-0.488439,9.57101,0.639293,-0.348266,9.51627,0.688662,-0.800352,9.57309,0.537277,-0.763088,9.56799,0.552318,-0.715198,9.56974,0.584876,-0.621404,9.58063,0.613716,-0.407302,-6.3965e-06,0.0436081,-1.27562,-6.39579e-06,0.0147574,-1.26702,-6.38189e-06,0.283082,-0.412871,-6.36729e-06,0.751201,-0.455625,-6.37978e-06,0.430463,-1.25394,-0.000216938,-0.257379,-0.990348,-6.4163e-06,-0.277655,-0.723394,-6.41695e-06,-0.27566,-0.403003,-6.41809e-06,-0.277721,-0.69384,-6.39638e-06,0.0344671,-1.01717,-6.39599e-06,0.0314384,-1.02178,-6.38164e-06,0.331851,-0.734753,-6.37913e-06,0.423031,-1.46942,-6.36627e-06,0.774537,-0.729295,-6.36699e-06,0.758025,-1.15139,-6.36811e-06,0.73235,-0.673916,-6.35316e-06,1.07443,-1.22315,-6.35416e-06,1.05154,-1.55626,-6.35314e-06,1.07473,-0.330255,-6.35258e-06,1.08758,-1.30588,2.33173,0.0149183,-1.29989,2.33905,-0.0768289,-1.27202,2.04619,-0.114756,-1.27862,2.04422,-0.0303068,-1.13338,2.0597,-0.0282529,-1.14203,2.06132,-0.112676,-1.14621,2.3488,0.0179544,-1.15527,2.3555,-0.0737248,-1.32926,2.32922,0.0144592,-1.29564,2.0424,-0.0305864,-1.32184,2.33655,-0.0773194,-1.28786,2.04436,-0.11505,-1.26493,2.08701,-0.137056,-1.28993,2.28735,-0.114403,-1.38559,2.0433,-0.214713,-1.26395,2.09859,-0.00404445,-1.41583,2.2475,-0.226286,-1.28627,2.29316,0.0321208,-1.20938,2.11892,0.225171,-1.21863,2.31049,0.23707,-1.21046,2.30789,0.208324,-1.17973,2.11923,0.190534,-1.25996,2.30109,0.027811,-1.21243,2.31507,-0.245045,-1.23692,2.10875,-0.00992647,-1.18819,2.11044,-0.24671,-1.20899,2.71904,-0.165393,-1.25207,2.84022,0.0717215,-1.19652,2.92392,-0.174488,-1.23982,3.00787,0.0992935,-1.18958,2.92535,0.270598,-1.18596,3.05168,0.278547,-1.19291,2.9451,0.30721,-1.21804,2.75459,0.305566,-1.26701,2.92967,0.104351,-1.40822,2.89126,-0.0852738,-1.28034,2.73266,0.0784783,-1.41442,2.68468,-0.0909279,-1.27484,2.91513,-0.0324875,-1.28626,2.71129,-0.0461999,-1.3159,2.67797,-0.0291299,-1.2967,2.97308,-0.00682441,-1.32207,2.68173,0.0554066,-1.3033,2.97188,0.085301,-1.12937,2.96219,-0.0063242,-1.11965,2.95866,0.0854639,-1.16936,2.66876,-0.0294838,-1.1593,2.66994,0.05479,-1.30499,2.68051,0.055376,-1.29999,2.67696,-0.0291312,-1.27465,2.97164,-0.0067417,-1.27984,2.97019,0.0853341,-0.461164,0.781121,0.844178,-0.466477,0.837335,0.688042,-0.429261,0.774019,0.539136,-0.371317,0.628263,0.484688,-0.326587,0.48545,0.556593,-0.321223,0.428178,0.712927,-0.35849,0.492552,0.861635,-0.416434,0.638307,0.916083,-0.443962,0.743327,0.807418,-0.410667,0.637023,0.86094,-0.367537,0.52853,0.820412,-0.339835,0.4814,0.709574,-0.34379,0.523243,0.593353,-0.377084,0.629547,0.539831,-0.420215,0.73804,0.580359,-0.447916,0.78517,0.691197,-0.385811,0.746055,0.797038,-0.389201,0.781923,0.697414,-0.365455,0.741524,0.602403,-0.328483,0.648523,0.567662,-0.299943,0.557399,0.613542,-0.296553,0.521532,0.713166,-0.320299,0.561931,0.808177,-0.357271,0.654932,0.842918,-0.315158,0.713868,0.753441,-0.301618,0.670637,0.775207,-0.284078,0.626516,0.758726,-0.272813,0.60735,0.713651,-0.274421,0.624365,0.666387,-0.287961,0.667596,0.644621,-0.305501,0.711718,0.661103,-0.316766,0.730884,0.706178,-0.279671,0.654099,0.732429,-0.272635,0.677128,0.712045,-0.289114,0.691654,0.689399,-0.436877,0.743749,0.806231,-0.440766,0.784893,0.691952,-0.413526,0.73855,0.582965,-0.371116,0.631869,0.543113,-0.338378,0.527341,0.595742,-0.334489,0.486197,0.710021,-0.361728,0.532539,0.819009,-0.404138,0.63922,0.858859,-0.465692,0.620495,0.911346,-0.407747,0.474734,0.856899,-0.370454,0.409833,0.708289,-0.375845,0.467637,0.551856,-0.420574,0.61045,0.479951,-0.478518,0.756206,0.534399,-0.515734,0.819522,0.683305,-0.510421,0.763309,0.839442,-1.26657,0.808306,0.493823,-1.30452,0.795641,0.654964,-1.38426,0.683912,0.748372,-1.45908,0.538569,0.719329,-1.48516,0.444751,0.584849,-1.44722,0.457416,0.423708,-1.36748,0.569144,0.3303,-1.29265,0.714488,0.359343,-1.3661,0.719199,0.397776,-1.42087,0.612819,0.376519,-1.47923,0.531042,0.444886,-1.507,0.521772,0.562829,-1.48792,0.59044,0.661258,-1.43315,0.696819,0.682515,-1.37479,0.778595,0.614148,-1.34702,0.787865,0.496205,-1.52325,0.715093,0.539144,-1.53296,0.713429,0.509174,-1.52101,0.69978,0.483363,-1.49095,0.753329,0.548094,-1.51509,0.719508,0.57637,-1.53774,0.675511,0.567578,-1.54563,0.647112,0.52687,-1.53415,0.650945,0.478091,-1.51001,0.684767,0.449816,-1.48736,0.728763,0.458608,-1.47946,0.757162,0.499316,-1.41514,0.733751,0.406753,-1.46289,0.641013,0.388223,-1.51377,0.569723,0.447822,-1.53798,0.561643,0.55064,-1.52134,0.621504,0.636446,-1.4736,0.714242,0.654978,-1.42272,0.785531,0.595378,-1.39851,0.793612,0.49256,-1.36814,0.777514,0.61669,-1.4275,0.694348,0.686219,-1.48319,0.586161,0.664601,-1.5026,0.516327,0.5645,-1.47436,0.525755,0.444554,-1.41501,0.60892,0.375026,-1.35931,0.717108,0.396643,-1.3399,0.786941,0.496744,-1.33804,0.739594,0.350629,-1.41286,0.594251,0.321586,-1.4926,0.482522,0.414994,-1.53055,0.469857,0.576135,-1.50447,0.563675,0.710616,-1.42964,0.709018,0.739658,-1.3499,0.820746,0.646251,-1.31196,0.833411,0.485109,-1.16743,3.63709,0.45992,-1.25339,3.6302,0.24893,-1.21704,3.41321,0.210638,-0.409975,3.22617,0.628592,-0.452868,3.55902,0.754518,-0.521659,3.56624,0.842614,-1.15807,2.62835,0.482627,-1.13544,3.39457,0.38724,-1.10083,3.29414,0.608465,-0.633614,3.25811,0.782164,-0.822326,3.26655,0.786012,-1.31883,3.6035,0.683238,-1.16906,3.46589,0.442108,-0.672544,3.53397,1.06609,-0.675962,3.32046,0.833728,-1.14153,3.34873,0.66131,-0.859432,3.32157,0.840278,-1.21479,3.59922,0.919327,-0.933091,3.56936,1.07473,-1.17698,4.30296,1.02018,-1.15537,4.28856,0.8564,-0.781133,4.24829,1.07809,-0.924487,4.27631,1.1604,-0.735761,4.22188,1.03088,-1.11,4.26215,0.809183,-1.10469,4.26201,0.947081,-0.860104,4.2366,1.0774,-1.29172,3.97562,0.750202,-1.20478,3.95905,0.973674,-0.927878,3.92879,1.12692,-0.683455,3.91018,1.11053,-0.571008,3.89956,0.967287,-1.18677,3.96581,0.602518,-1.20517,3.62899,0.515782,-1.13983,3.42266,0.402131,-0.64673,3.27723,0.793751,-0.559533,3.55839,0.898404,-1.11085,3.30859,0.621734,-0.831793,3.28057,0.79948,-0.747104,4.22848,1.04268,-1.12134,4.26875,0.820988,-1.12276,4.27225,0.965357,-0.8762,4.24652,1.09815,-0.59912,3.90221,1.0031,-1.21301,3.96826,0.639439,-1.16424,4.26821,0.849495,-1.17878,4.2806,1.01716,-0.924708,4.25371,1.15822,-0.774781,4.2263,1.0802,-0.725048,4.20092,1.02674,-1.11499,4.24288,0.795745,-0.857282,4.21645,1.07082,-1.1037,4.24225,0.939208,-0.737481,4.20727,1.04011,-1.1273,4.24921,0.809182,-1.24914,1.96197,-0.178952,-0.414986,1.95607,-0.353849,-1.28376,2.96007,-0.136769,-0.381791,2.8367,-0.325976,-0.84911,1.96677,-0.537138,-0.683368,1.96515,-0.538737,-0.527617,1.96233,-0.478635,-1.14343,1.96536,-0.366156,-0.838194,2.793,-0.542682,-0.652923,2.78046,-0.54043,-0.494247,2.787,-0.466766,-1.16961,2.86858,-0.363455,-0.466213,0.566633,-0.251176,-0.413674,0.504901,0.450504,-1.07804,1.09479,0.91748,-0.972649,0.619688,-0.398664,-1.28759,0.448976,0.196158,-1.32343,0.453802,0.488573,-0.671957,0.615671,-0.427715,-0.652786,1.07731,0.909115,-0.390529,0.502167,0.0759872,-0.476147,0.780562,0.714817,-1.30345,0.762581,0.670227,-1.20731,0.54949,-0.163031,-0.464309,0.808765,-0.235687,-0.437274,0.774509,0.374743,-1.07148,1.14133,0.829282,-0.958492,0.84315,-0.387696,-1.25625,0.719717,0.109607,-1.29782,0.807912,0.324189,-0.680504,0.841521,-0.417657,-0.667357,1.12984,0.845017,-0.416793,0.769458,0.0544677,-0.536195,0.980873,0.624159,-1.23895,1.00907,0.588485,-1.18758,0.793045,-0.164153,-0.968392,-6.294e-06,2.42773,-1.1441,-6.29557e-06,2.39185,-0.8184,-6.29493e-06,2.40657,-0.801587,0.0505963,2.35725,-1.08176,0.0701109,2.33737,-0.890931,0.145089,2.31329,-1.02854,0.13252,2.3114,-0.832714,0.114053,2.32496,-0.964131,0.154172,2.30611,-0.971979,0.285007,2.15851,-0.71427,0.225009,2.17975,-1.10225,0.243271,2.1704,-0.835338,0.276072,2.16167,-1.20318,0.133201,2.20716,-0.630897,0.113277,2.2351,-0.589592,-6.29875e-06,2.319,-1.29444,-6.30107e-06,2.266,-1.44789,-6.30973e-06,2.06794,-0.421114,-6.30859e-06,2.09388,-0.475809,0.183392,2.00463,-1.34196,0.202167,1.9735,-0.784409,0.392911,1.90943,-1.19976,0.348498,1.92005,-0.601867,0.33381,1.93754,-0.99199,0.399469,1.90264,-1.01738,0.569816,1.38984,-0.506817,0.4964,1.41779,-1.3146,0.497983,1.37315,-0.744881,0.566407,1.4049,-1.46956,0.318749,1.36428,-0.354124,0.308194,1.42584,-0.26314,-6.33758e-06,1.43071,-1.55957,-6.34093e-06,1.35415,-1.2887,1.69807,0.0281047,-1.19949,1.56805,-0.282824,-0.653916,1.3929,-0.572765,-0.497036,1.82688,0.533305,-0.338087,1.47174,-0.00428325,-0.943288,1.41049,-0.499542,-0.960838,1.85411,0.671443,-0.357301,1.53833,0.290341,-0.423546,1.43296,-0.359208,-0.681087,1.23294,0.807091,-1.02017,1.24765,0.776912,-1.20848,1.13355,0.55713,-1.29194,0.995964,0.254819,-1.25333,0.900427,0.0506986,-1.18087,0.93394,-0.176781,-0.995851,1.05349,-0.371852,-0.632236,1.04932,-0.425182,-0.469837,0.934325,-0.22873,-0.423958,0.895668,0.0517108,-0.451267,0.9146,0.339187,-0.534933,1.16431,0.629688,-1.0362,0.60384,1.4622,-0.455305,0.521127,1.495,-1.35918,0.503442,1.44406,-0.712728,0.600226,1.48063,-1.52751,0.328219,1.44453,-0.29468,0.32384,1.50364,-0.21341,-6.33422e-06,1.50767,-1.63445,-6.33774e-06,1.42714,-1.52252,-6.35434e-06,1.04733,-0.325205,-6.35136e-06,1.11555,-0.383664,0.418815,1.11613,-1.42003,0.431597,1.05905,-0.757723,0.745841,1.1041,-1.2804,0.655761,1.07239,-0.534034,0.65369,1.11361,-1.00917,0.750392,1.09034,-1.01789,0.797933,1.13509,-0.51403,0.714169,1.16152,-1.2966,0.706732,1.11635,-0.748159,0.797843,1.15074,-1.45928,0.471866,1.09756,-0.348892,0.458985,1.15844,-0.238958,-6.34966e-06,1.15446,-1.61756,-6.35282e-06,1.08204,-1.45385,-6.37076e-06,0.671785,-0.357481,-6.3681e-06,0.732485,-0.454366,0.537002,0.728539,-1.33558,0.551557,0.679545,-0.773866,0.950002,0.711719,-1.1697,0.836612,0.689676,-0.583844,0.833725,0.722093,-0.970559,0.956002,0.700918,-0.389841,-6.3191e-06,1.85357,-1.48126,-6.32173e-06,1.7934,-0.455792,0.198496,1.84994,-1.36566,0.215076,1.79978,-0.777808,0.412404,1.83219,-0.585643,0.353642,1.84278,-1.22499,0.364608,1.80753,-0.99746,0.417735,1.82008,-1.00628,0.440574,1.90489,-1.24628,0.384858,1.89165,-0.571896,0.374279,1.92883,-0.774568,0.434946,1.91766,-1.39466,0.23027,1.88347,-0.434929,0.212833,1.93639,-1.51659,-6.31809e-06,1.87675,-0.365363,-6.31531e-06,1.94022,-0.458766,0.920013,-0.279056,-0.377877,0.646653,0.436606,-0.984125,0.947877,-0.421465,-1.335,0.780741,0.0538123,-1.33756,0.67928,0.29422,-0.687114,0.948182,-0.436876,-0.338575,0.774375,0.0937054,-0.417733,0.529508,0.82856,-1.46447,0.539726,0.776228,-1.22369,0.872684,-0.232796,-0.679799,-6.43868e-06,-0.558904,-1.3209,-6.41546e-06,-0.275525,-1.34382,-6.39402e-06,0.0148651,-1.45233,-6.37479e-06,0.271039,-0.347842,-6.42242e-06,-0.320981,-0.354973,-6.39539e-06,0.0463634,-0.343373,-6.36893e-06,0.420584,-1.0995,-6.43518e-06,-0.532634,-0.3815,0.286745,0.411504,-0.328315,0.419292,0.0678627,-0.360253,0.448133,-0.289848,-1.37471,0.315882,0.267116,-1.38291,0.385162,0.0294301,-1.32163,0.435526,-0.241994,-1.01941,0.442244,-0.529966,-0.642546,0.443917,-0.554951,-0.680701,0.670339,-0.512596,-1.23705,0.657457,-0.230208,-1.34139,0.616799,0.048312,-1.3511,0.52074,0.289046,-0.455213,0.647485,-0.246533,-0.340822,0.629119,0.0865085,-0.383378,0.510413,0.402604,-0.986721,0.671239,-0.496278,-1.66156,-6.33757e-06,0.766654,-1.59493,0.19435,0.767512,-1.54321,0.363,0.771696,-0.299942,0.124877,0.832711,-0.261975,-6.3381e-06,0.830366,-0.356749,0.337334,0.831458,-1.0599,1.25993,-0.257421,-0.550692,1.21598,-0.325752,-0.669049,1.22476,-0.353293,-0.80809,1.23755,-0.372266,-0.473327,1.20894,-0.162654,-1.14666,1.26385,-0.121516,-1.288,2.98129,0.151112,-0.39296,2.93195,0.574378,-1.30675,2.18167,0.0601634,-0.713301,1.55512,0.793565,-1.00134,1.54714,0.768441,-1.22627,1.49728,0.538229,-1.32868,1.38533,0.243616,-1.31877,1.31927,0.0309145,-1.23678,1.20167,-0.247409,-1.00347,1.22472,-0.471722,-0.609174,1.2087,-0.533566,-0.403778,1.17313,-0.317377,-0.331647,1.17628,0.0210544,-0.356412,1.22168,0.328454,-0.47867,1.49451,0.613209,-0.680793,2.21897,0.688619,-0.948268,2.21406,0.661509,-0.458263,2.22159,0.531065,-1.3149,2.65733,0.0982695,-0.416363,2.64812,0.528645,-1.13173,2.95465,0.540582,-0.647282,2.92592,0.733413,-1.26359,2.63935,0.272165,-0.660102,2.61634,0.692064,-0.908575,2.60999,0.671023,-1.22546,2.97363,0.323267,-0.880001,2.92756,0.714355,-1.15319,2.20431,0.479808,-1.27255,2.18968,0.243315,-0.72809,1.52228,0.751425,-0.981452,1.51392,0.728655,-1.18576,1.46226,0.516509,-1.28043,1.3512,0.23734,-1.26792,1.28522,0.0388945,-1.1929,1.18389,-0.21823,-0.971801,1.21683,-0.430276,-0.642155,1.20652,-0.492709,-0.448657,1.16247,-0.28843,-0.384668,1.15925,0.0260909,-0.408276,1.20004,0.316838,-0.519075,1.46584,0.585588,-0.699941,1.85125,0.685431,-1.15592,1.83559,0.476767,-1.26685,1.77356,0.216617,-0.71209,1.58518,0.782475,-0.997158,1.57818,0.758493,-1.21903,1.53149,0.531925,-1.32233,1.42492,0.240847,-1.31568,1.35812,0.0306263,-1.23296,1.23925,-0.251042,-0.997298,1.24377,-0.474575,-0.613762,1.22759,-0.537586,-0.405806,1.19978,-0.321667,-0.332308,1.20659,0.0184557,-0.356503,1.25415,0.324545,-0.480537,1.5283,0.605013,-0.807728,-6.43232e-06,-0.492708,-0.942668,-6.43122e-06,-0.481073,-0.359224,-6.33562e-06,1.47569,-1.47985,-6.33844e-06,1.41111,-1.17537,-6.33767e-06,1.42866,-0.673346,-6.33641e-06,1.45759,-0.725063,-6.31887e-06,1.85888,-1.16295,-6.31997e-06,1.83365,-1.42853,-6.32064e-06,1.81834,-0.451072,-6.31818e-06,1.87467,-1.05377,-6.29799e-06,2.33644,-0.85912,-6.29758e-06,2.34584,-0.770581,-6.3078e-06,2.11211,-0.542757,-6.30722e-06,2.12524,-1.35552,-6.30927e-06,2.0784,-1.13469,-6.30872e-06,2.09113,-0.434958,-6.41827e-06,-0.277515,-0.435881,-6.39645e-06,0.0426964,-0.483464,-6.37926e-06,0.429721,-0.44443,-6.36726e-06,0.751881,-0.364531,-6.35264e-06,1.08626,-0.390553,-6.3357e-06,1.47388,-0.478399,-6.31825e-06,1.8731,-0.565479,-6.30728e-06,2.12393,-1.23193,-6.41428e-06,-0.259724,-1.2441,-6.39573e-06,0.0167916,-1.23711,-6.38149e-06,0.289029,-1.43064,-6.36649e-06,0.769393,-1.51564,-6.35327e-06,1.0719,-1.44272,-6.33835e-06,1.41325,-1.39614,-6.32056e-06,1.82021,-1.32859,-6.3092e-06,2.07996,-0.838476,-6.29896e-06,2.31438,-0.671883,-0.000328881,2.27822,-1.20979,0.000349658,2.25983,-1.06825,-6.29939e-06,2.30452,-0.687832,-6.30128e-06,2.26116,-1.1936,-6.30201e-06,2.24455,-0.628361,-0.000325434,-0.4517,-0.802078,-6.43142e-06,-0.478167,-0.945862,-6.43012e-06,-0.467444,-1.07654,-0.000176897,-0.445314,-0.634663,4.03011e-05,-0.439184,-1.06913,-2.47859e-05,-0.433538,-1.15281,7.84932,0.732566,-1.02884,7.18582,0.760986,-1.04633,7.48992,0.667375,-1.29936,8.14217,0.594306,-1.42385,8.32208,0.564128,-1.2312,6.53935,0.999114,-1.06941,6.98126,0.815587,-1.19895,6.75151,0.907431,-1.1999,6.31595,1.01771,-0.973239,7.16111,0.735,-1.067,6.929,0.814452,-1.17962,6.68462,0.903839,-1.19332,6.49855,0.985018,-1.25149,6.36621,1.06466,-1.0338,7.21744,0.749622,-1.04287,7.01417,0.797031,-1.18023,6.78344,0.891745,-1.22743,6.55474,0.988965,-1.24673,6.37937,1.0599,-1.0848,8.57531,1.02869,-1.26645,2.46102,-0.157861,-0.407579,2.39966,-0.332246,-0.843652,2.37989,-0.53991,-0.668146,2.3728,-0.539584,-0.515147,2.37617,-0.469185,-1.15652,2.41697,-0.364806,-0.814202,1.59412,-0.4577,-1.09287,1.60773,-0.31362,-1.18929,1.6081,-0.152028,-0.436538,1.58227,-0.255813,-0.535312,1.58844,-0.401675,-0.669081,1.59097,-0.447499,-1.37217,4.55643,-0.124973,-0.164654,4.36735,-0.254191,-0.822119,4.47536,-0.645971,-0.334341,4.39552,-0.53338,-0.584028,4.43946,-0.629051,-1.19403,4.52494,-0.448503,0.000622508,9.37874,-0.849514,-8.88178e-16,9.49208,-0.771903,4.7793e-05,9.55431,-0.73164,9.81142e-05,9.53471,-0.725491,-8.88178e-16,8.73048,-1.0934,-8.88178e-16,8.50387,-1.12801,-8.88178e-16,9.59146,0.74638,-8.88178e-16,7.05105,1.57154,-8.88178e-16,8.24821,1.41598,-8.88178e-16,7.51918,1.43929,-8.88178e-16,6.81377,1.6327,-8.88178e-16,7.37736,1.448,-8.88178e-16,6.79603,1.63658,-8.88178e-16,7.16361,1.46898,-8.88178e-16,9.38926,0.766208,-8.88178e-16,7.97805,1.37499,-0.500149,6.17609,1.36244,-0.217016,6.16859,1.47093,0,6.16333,1.48198,-0.114675,5.00972,1.12501,-0.469853,6.20299,1.36949,-0.256166,5.35529,1.35937,-0.477028,5.80914,1.43164,-0.470357,6.1753,1.37386,-0.003073,9.1912,-0.925051,0.108215,9.19215,-0.914283,0.167592,8.34013,-1.08133,0.681061,9.44915,-0.743908,0.121073,8.72755,-1.05424,0.82083,9.30647,-0.839652,0.920417,8.64071,-0.968879,1.04516,8.78605,-0.918264,0.892716,9.45877,-0.722519,1.18353,8.95742,-0.861669,0.801336,8.98608,-0.943815,0.930281,9.13709,-0.902773,1.03166,9.31619,-0.829477,0.498321,9.18067,-0.899012,0.384714,9.19285,-0.910507,0.626642,8.85707,-0.993186,0.448973,8.78231,-1.02733,0.583776,8.42817,-1.04041,0.779697,8.51237,-1.02262,0.697926,9.16216,-0.900021,0.582664,9.30172,-0.839698,0.56488,9.0488,-0.96172,0.396103,8.99359,-0.973637,0.10763,8.97622,-0.991797,0.243976,9.19223,-0.906027,0.273,8.74414,-1.03653,0.366069,8.37397,-1.05567,0.238852,8.97641,-0.979858,0.865658,8.82401,-0.966894,0.990117,8.95397,-0.923049,1.13288,9.11555,-0.858868,0.696694,8.67986,-1.01401,0.523102,8.58589,-1.04414,0.146644,8.50307,-1.08476,0.325939,8.54529,-1.05914,0.592728,9.6172,-0.444366,0.286892,9.52368,-0.659464,0.448305,9.55169,-0.579823,0.124942,9.5217,-0.69375,0.135287,9.47847,-0.733327,0.515985,9.5281,-0.631134,0.332567,9.49373,-0.69122,0.646708,9.58573,-0.566581,0.744367,9.55013,-0.630761,0.28909,9.3893,-0.782715,0.455795,9.38012,-0.783675,0.129615,9.3766,-0.806083,0.124244,9.55866,-0.700216,0.281518,9.56012,-0.664711,0.58073,9.64911,-0.450652,0.437166,9.58836,-0.583589,1.23111,4.95519,1.00802,0.860301,4.61757,1.36347,0.874464,4.62829,1.35088,1.22862,4.93203,1.02112,1.10431,5.65297,1.0009,0.733346,5.45398,1.44201,0.717196,5.45033,1.45855,1.22227,4.94697,1.01996,0.87131,4.64614,1.34865,1.22481,4.97141,1.00643,0.857345,4.6357,1.36111,0.805736,6.60502,0.855035,0.485687,6.6032,1.14123,0.471918,6.59881,1.15504,0.79388,6.59071,0.879455,1.03658,6.61503,0.548304,0.803338,6.59402,0.862927,1.02741,6.61025,0.565817,1.25749,4.8913,1.10901,1.54941,5.19326,0.658291,1.26788,4.90153,1.09322,1.53761,5.18116,0.676439,1.15266,5.63575,1.13854,1.48276,5.84839,0.66323,1.16556,5.64067,1.12238,1.47098,5.83565,0.683817,1.54531,5.16607,0.678623,1.27336,4.88382,1.0964,1.26272,4.87345,1.11242,1.5579,5.17766,0.660169,1.6707,5.45201,0.162186,1.61352,5.19747,0.737636,1.61444,5.20614,0.717345,1.64903,5.44214,0.190558,1.53393,5.86292,0.72827,1.52606,6.03371,0.145654,1.52907,5.8583,0.743335,1.63856,5.45681,0.190405,1.60523,5.22352,0.715458,1.66037,5.46608,0.161849,1.60459,5.21469,0.735428,1.04664,6.61438,0.557526,1.13807,6.67709,0.0840332,1.04526,6.60822,0.569838,1.15404,6.68501,0.0976604,0.927779,6.66873,-0.309474,1.14467,6.68938,0.088545,0.936918,6.67077,-0.293666,1.72123,5.50301,0.202874,1.45445,5.58012,-0.29714,1.71209,5.50522,0.185297,1.46509,5.57728,-0.276893,1.57747,6.05059,0.181926,1.33285,6.0435,-0.304587,1.57037,6.04819,0.164711,1.34521,6.04065,-0.284453,1.47287,5.56405,-0.277508,1.7201,5.49034,0.187538,1.72938,5.48797,0.205414,1.4624,5.56639,-0.298266,0.799654,6.27963,0.911206,0.483485,6.15123,1.22905,0.805083,6.30092,0.897014,0.470829,6.14887,1.24102,1.09679,5.67361,0.993743,0.727738,5.47457,1.43697,0.711882,5.47066,1.45344,0.916151,6.10406,0.904104,1.15709,6.27265,0.488399,0.925481,6.10787,0.889704,1.14867,6.26206,0.505881,1.14447,5.65717,1.13238,1.47199,5.86736,0.657831,1.15738,5.66197,1.11621,1.46055,5.85471,0.678163,1.22376,6.32215,0.0809327,1.20262,6.21103,0.545251,1.23851,6.33019,0.0558579,1.2012,6.20879,0.563074,1.49512,6.02832,0.170325,1.52783,5.8739,0.726507,1.51722,6.04457,0.144386,1.52329,5.86935,0.740704,1.25919,6.35556,0.071204,1.01897,6.33669,-0.335784,1.25173,6.35286,0.056883,1.03047,6.33425,-0.318922,1.55992,6.07469,0.179586,1.31544,6.06523,-0.302733,1.55288,6.07217,0.162582,1.32769,6.06243,-0.283055,0.846593,6.33774,0.844265,0.484563,6.19536,1.23262,0.4704,6.189,1.24712,1.0981,5.64714,1.0202,0.794565,6.59939,0.869356,1.08766,5.66654,1.01371,0.832785,6.33083,0.859301,0.889645,6.12276,1.00598,1.17381,6.24125,0.603225,0.900333,6.12749,0.989776,1.1642,6.23189,0.621931,1.50163,6.01768,0.173938,1.12413,6.66889,0.107133,1.25946,6.20598,0.640932,1.29853,6.32366,0.113777,1.25699,6.19999,0.654515,1.2808,6.31118,0.138614,1.33731,6.37921,0.147945,1.09117,6.34153,-0.28609,1.32903,6.38095,0.136189,1.10278,6.34021,-0.269099,0.488873,6.19916,1.33033,0.25033,5.36706,1.32517,0.0542856,4.92698,1.14809,0.099046,5.03876,1.10788,0.211915,6.19269,1.43786,0.497832,5.81178,1.39333,0.192268,5.80326,1.49456,0.137399,5.39236,1.46901,0.0731335,4.59217,-0.0120733,0.100917,4.40748,-0.00173656,0.314639,4.62306,-0.377636,0.323407,4.44108,-0.37114,0.606193,4.89125,0.900865,0.635467,4.72966,0.842964,0.21943,4.72685,0.739344,0.246582,4.55575,0.702634,0.0829097,4.62919,0.373319,0.11349,4.46831,0.368416,0.233284,4.07833,0.0793629,0.193658,4.25569,0.0537732,0.217643,4.09561,0.356387,0.189429,4.26947,0.359929,0.332088,4.05768,-0.21682,0.300387,4.23265,-0.277352,0.471438,4.14229,0.777566,0.44958,4.31299,0.775623,0.316056,4.11667,0.635807,0.294851,4.28226,0.649578,0.40585,4.83688,0.870815,0.437631,4.66662,0.844451,0.677144,4.18713,0.742934,0.658498,4.33369,0.767106,0.364748,4.62579,-0.408845,0.373232,4.44378,-0.402012,0.39098,4.05259,-0.261568,0.3599,4.22736,-0.32292,0.603477,1.9121,-0.423421,0.611304,1.73453,-0.380341,0.51636,2.60852,-0.4121,0.494412,2.74866,-0.390885,0.594355,2.63918,0.562351,0.608609,2.80675,0.598348,0.468806,2.64917,0.48992,0.506257,2.46745,0.501908,0.639104,2.8008,0.592587,0.660693,2.61333,0.59948,0.546858,1.92416,-0.36961,0.543625,1.74757,-0.31443,0.379231,2.39217,0.260569,0.426134,2.20008,0.276134,0.364949,2.12315,-0.0378521,0.394168,1.92814,-0.000206508,0.341923,2.59239,0.135694,0.317452,2.72863,0.141434,0.45498,2.62563,0.437593,0.428913,2.74901,0.485939,0.480975,2.6055,-0.377078,0.459352,2.74443,-0.356505,0.378742,2.59491,-0.14181,0.352606,2.73059,-0.126871,0.394545,1.81181,-0.104572,0.464011,1.66839,-0.175256,0.479311,1.8989,-0.294257,0.528147,1.7355,-0.346588,0.563943,1.71612,0.45266,0.566577,1.57368,0.418656,0.404593,1.70103,0.205313,0.413268,1.57448,0.0944608,0.734736,1.74209,0.591877,0.718168,1.57192,0.557004,0.516637,1.94321,-0.369086,0.573191,1.78599,-0.431116,0.427614,4.86104,1.0022,0.717274,5.05475,1.05587,1.05952,5.38334,0.910986,1.33512,5.53984,0.56735,1.00986,3.98499,0.634113,1.36975,4.01367,0.23084,0.501112,3.88802,0.822398,0.736715,3.93073,0.796428,1.03413,4.60923,0.725036,1.2866,4.68491,0.418816,0.46465,4.35353,0.846539,0.729448,4.45428,0.847219,1.28369,5.80026,0.566486,1.06291,5.63168,0.915936,0.713315,5.23881,1.10903,0.412403,5.00045,1.04823,1.23023,5.46826,0.74114,1.14479,4.00519,0.435202,1.18749,4.64706,0.579617,1.18166,5.72239,0.74374,1.2959,3.92804,-0.030067,1.3978,5.19965,-0.0838505,0.213585,3.91733,-0.109469,0.162325,4.82782,-0.317196,1.14414,3.99656,-0.272366,0.838192,4.94292,-0.560915,0.613729,4.88263,-0.566678,0.34107,4.83686,-0.500145,1.20101,5.05931,-0.341341,0.792062,4.01562,-0.432439,0.363157,3.96462,-0.27842,0.565495,4.00626,-0.393196,1.23195,4.74797,-0.244392,1.23195,4.95843,-0.261327,1.19308,5.03106,0.555964,1.18287,4.84155,0.531235,1.28859,4.7822,-0.010871,1.28145,4.82262,0.26605,1.28854,4.98809,-0.0191948,1.28159,5.01925,0.276103,1.1953,4.8388,0.497508,1.20424,5.02929,0.5205,1.23321,5.03065,0.520132,1.22429,4.83979,0.497058,1.31846,5.01582,0.275463,1.39471,4.95643,-0.0412652,1.31822,4.81639,0.265868,1.39471,4.74988,-0.0333644,1.2117,4.84217,0.531258,1.2219,5.03201,0.555988,1.31348,4.98215,0.096143,1.31405,4.77841,0.0939912,1.3522,4.77259,0.175044,1.35109,5.02557,0.176828,1.35469,4.78024,0.259587,1.35636,5.03157,0.268851,1.22581,5.0261,0.176259,1.21518,5.03148,0.26786,1.24426,4.77376,0.174007,1.23616,4.77975,0.258406,1.3602,4.79028,0.256864,1.35615,4.78004,0.172864,1.35011,5.01685,0.175815,1.35392,5.02274,0.267787,1.37105,4.4489,0.249758,1.36506,4.45622,0.158003,1.34384,4.2229,0.122854,1.35044,4.22093,0.207293,1.22606,4.22417,0.211395,1.23201,4.22902,0.126743,1.23425,4.47294,0.255482,1.24266,4.4791,0.163701,1.37451,4.45717,0.251925,1.34386,4.21128,0.208809,1.36705,4.46455,0.160155,1.3391,4.21571,0.124133,1.30345,4.23731,0.0391949,1.32479,4.43753,0.0708511,1.43297,4.19567,-0.0630484,1.3126,4.25013,0.21711,1.45654,4.40004,-0.042933,1.33651,4.44506,0.25226,1.14845,4.27296,0.440566,1.17922,4.462,0.458346,1.15003,4.46385,0.459839,1.11931,4.2752,0.442049,1.29989,4.45237,0.255765,1.2718,4.46544,-0.0326934,1.27656,4.26021,0.220533,1.24844,4.26178,-0.052253,1.22999,4.47441,-0.177091,1.17105,4.27173,-0.182735,0.589011,9.2982,0.757734,0.968417,9.3801,0.629753,0.172975,9.08376,1.00515,1.11182,9.20222,0.757404,0.671429,9.16864,0.884182,0.869969,8.52034,1.08108,0.194862,8.45262,1.29614,0.236057,8.06072,1.28055,0.891635,8.13091,1.04608,0.97619,7.89185,0.902251,0.22199,7.88761,1.26626,0.227349,7.44857,1.34614,0.880644,7.22653,0.918749,1.36269,8.10565,0.408798,1.10984,7.20651,0.550029,1.12541,7.27308,0.0699728,1.28386,7.82749,0.529445,1.24953,7.79308,0.0304257,0.498327,9.49397,0.638924,0.834085,9.50592,0.544423,0.859379,9.3472,0.687163,0.980931,9.21246,0.81271,0.732881,9.50294,0.584278,1.18664,8.54439,0.914838,1.35306,8.43613,0.71247,1.09453,8.30782,0.927236,1.19253,8.19992,0.76936,0.890903,8.20898,-0.908566,0.800113,8.01378,-0.872131,0.935784,7.67491,-0.534809,1.10293,7.87978,-0.475855,1.18457,7.81345,-0.219872,1.06015,7.54515,-0.218112,1.12998,7.48865,0.0490511,0.186149,7.67058,1.25703,0.913936,7.51374,0.782674,1.12685,7.48103,0.518527,0.18954,9.19297,0.934677,0.429015,9.13679,0.904154,0.539081,8.48078,1.17598,0.566313,8.05767,1.17659,0.586686,7.85494,1.09756,0.529227,7.31502,1.14755,0.537573,7.57239,1.04101,0.394313,9.24802,0.818941,0.750643,9.32668,0.716161,0.854026,9.20056,0.854527,0.638432,9.50309,0.609592,0.206841,8.24815,1.32497,0.887388,8.32012,1.09621,0.550453,8.2669,1.20539,1.03503,8.41506,0.995456,1.43243,8.24784,0.393074,0.176537,8.73775,1.24495,0.846725,8.75738,1.06007,1.15466,8.74266,0.935459,1.2788,8.68174,0.844964,0.513106,8.73871,1.11214,1.04285,8.77912,1.01982,0.932261,7.41761,-0.497468,1.05229,7.33026,-0.203314,0.69186,7.69165,-0.767552,1.14046,6.93059,-0.245228,0.811228,7.00456,-0.521365,1.2836,6.84667,0.154413,1.23317,6.89359,-0.0607293,1.30581,6.60931,0.765183,1.08568,6.48592,1.20677,0.687515,6.6081,1.448,0.314802,6.81543,1.52305,0.230696,7.97296,1.27077,0.937014,8.0185,0.974915,0.924134,9.3689,0.652205,1.06637,9.20562,0.785124,0.791482,9.50486,0.554772,1.25878,8.48235,0.843693,1.14495,8.25266,0.846793,0.583064,7.95528,1.14148,1.22478,8.70617,0.897263,0.692775,7.42502,-0.63686,0.95157,7.21071,-0.376445,1.15588,7.09308,0.0984715,1.06222,7.145,-0.137691,0.546368,7.05915,1.20323,0.91508,6.98458,0.99149,0.25672,7.23028,1.3651,1.14929,6.99214,0.609552,1.03346,7.06657,-0.279971,1.20271,6.98229,0.133325,1.15026,7.0211,-0.0930879,0.625259,6.83243,1.29439,1.02652,6.69311,1.08992,0.282361,7.03528,1.41385,1.26968,6.82536,0.68308,0.774579,7.19811,-0.539638,0.330003,6.59398,1.49624,0.711216,6.35879,1.40951,1.06313,6.27388,1.20606,1.29446,6.40808,0.824194,1.23559,6.75978,-0.0409673,1.31512,6.69841,0.182793,0.940637,6.80818,-0.644368,1.14478,6.78995,-0.235995,1.02024,8.05218,-0.706718,0.868818,7.84163,-0.700118,0.808934,7.55411,-0.638027,1.00193,6.95834,-0.425126,0.831451,7.30991,-0.54733,0.908157,7.12696,-0.454619,1.05434,6.83627,-0.423652,0.167267,8.9442,1.13075,0.771291,8.97858,0.996947,1.08729,8.95915,0.924009,1.21152,8.92093,0.866027,0.489176,8.95347,1.02626,0.958527,8.9951,0.959881,1.16458,8.9348,0.899325,1.32557,6.76139,0.450172,1.28756,7.80635,0.286186,1.14708,7.47177,0.297376,1.13507,7.2334,0.322921,1.1635,7.05157,0.358837,1.23359,6.93323,0.414473,1.32442,6.57503,0.472904,0.155448,9.40137,0.717925,0.337052,9.47998,0.661537,0.679866,7.66309,-0.702449,0.898228,7.38792,-0.436486,1.07601,7.23938,0.084137,1.0005,7.30012,-0.167694,0.503135,7.25927,1.11641,0.83523,7.17886,0.88822,0.219325,7.3944,1.30092,1.05583,7.1691,0.538388,0.783733,7.51921,-0.576162,1.07808,7.19423,0.320775,0.93697,7.1834,-0.317043,1.12439,7.06483,0.115345,1.042,7.11701,-0.102311,0.530226,6.99686,1.18341,0.918139,6.90277,0.989007,0.243686,7.17357,1.32944,1.14278,6.95132,0.603968,0.725306,7.41031,-0.559789,0.83916,7.28221,-0.472046,1.1418,7.02045,0.36393,1.03447,7.03062,-0.236105,1.18815,6.94612,0.147282,1.14606,6.9844,-0.0575972,0.614463,6.75929,1.30007,1.00917,6.62092,1.08617,0.270915,6.96703,1.39323,1.25176,6.75671,0.680396,0.782923,7.15066,-0.494125,0.918406,7.09296,-0.389705,1.21913,6.88638,0.410284,0.825819,6.9578,-0.504094,1.06245,6.43991,1.18734,1.27345,6.55644,0.75215,0.304593,6.77759,1.49239,0.667741,6.56268,1.41949,1.25238,6.80935,0.16521,1.2012,6.86596,-0.0387643,1.1152,6.90531,-0.219195,0.98818,6.93087,-0.416094,1.29312,6.71469,0.435314,0.939426,6.8873,-0.646328,1.10259,6.31261,1.24382,1.33514,6.4399,0.848253,0.329653,6.62747,1.54353,0.734202,6.39819,1.45694,1.34303,6.71314,0.169846,1.26059,6.77682,-0.0651624,1.16847,6.8203,-0.266691,1.07616,6.86121,-0.45702,1.36574,6.60012,0.482586,0.21855,7.46036,1.33814,0.885475,7.24448,0.903953,1.10858,7.22193,0.542685,1.12024,7.28635,0.0657454,0.527528,7.33053,1.1371,1.04654,7.34268,-0.207625,0.919939,7.43468,-0.505019,0.692159,7.72592,-0.784285,0.79925,7.57905,-0.648359,1.13247,7.24911,0.317742,0.678278,7.45086,-0.649443,0.930509,7.21482,-0.392164,1.14567,7.09426,0.0910084,1.04627,7.14661,-0.148366,0.534427,7.0757,1.19504,0.891022,7.01232,0.973791,0.245747,7.23939,1.35963,1.13178,7.00383,0.594668,0.807859,7.32202,-0.553433,1.15067,7.05507,0.347638,1.01193,7.06662,-0.297921,1.19847,6.98006,0.124579,1.13264,7.01816,-0.105035,0.604641,6.85332,1.28118,1.01314,6.7152,1.07257,0.268027,7.04729,1.40645,1.25983,6.83795,0.668892,0.764029,7.22437,-0.548398,0.886795,7.14053,-0.461085,1.22841,6.93697,0.401891,1.13033,6.91947,-0.252952,1.2802,6.83908,0.147095,1.23149,6.88154,-0.0670583,0.67662,6.60589,1.4393,1.08312,6.47964,1.19791,0.301531,6.81564,1.51972,1.30708,6.60803,0.752604,0.806472,7.02145,-0.514719,0.997158,6.95401,-0.421549,1.32128,6.75885,0.442053,0.943919,6.88282,-0.642732,1.10124,6.30657,1.24279,1.33616,6.43058,0.837306,0.315616,6.62323,1.54111,0.725527,6.39735,1.46011,1.34112,6.69949,0.161932,1.25864,6.76462,-0.0703238,1.16742,6.80889,-0.269895,1.07814,6.85145,-0.456705,1.36822,6.59017,0.472702,0.0541062,9.04783,1.05207,0.0190693,8.44623,1.3814,0.0313257,7.89689,1.33035,0.0357982,7.51317,1.40612,0.0316047,8.06791,1.34865,0.0251408,7.69839,1.33437,0.058384,9.14426,0.99273,0.0241899,8.25056,1.3858,0.0195397,8.73195,1.31614,0.0432287,7.00168,1.55255,0.0309115,7.98043,1.34044,0.0409209,7.34298,1.42532,0.042126,7.19029,1.4646,0.0577734,6.73802,1.54577,0.0376769,8.91359,1.1724,0.0438769,9.37623,0.737428,0.033878,7.46765,1.35827,0.0376126,7.29725,1.38498,0.0374016,7.13036,1.43683,0.0438206,6.95225,1.51629,0.0510184,6.77636,1.60351,0.030163,7.52005,1.39788,0.0331118,7.34446,1.41989,0.0338994,7.19519,1.45826,0.0318652,6.99931,1.55017,0.040847,6.77458,1.60083,0.0904382,9.6016,0.712257,0.386443,9.75279,0.632459,0.202615,9.65323,0.691961,0.705939,9.71403,0.387562,0.616068,9.75676,0.514598,0.666692,9.73809,0.481023,0.745211,9.6927,0.380798,0.510492,9.77254,0.581895,1.45907,8.20151,-0.00456246,1.38078,8.09101,0.0227845,1.29011,8.14606,-0.4053,1.39613,8.30283,-0.372536,1.26802,8.53277,-0.743305,1.00234,8.35881,-0.876623,1.15337,8.21318,-0.650733,1.32877,8.40688,-0.566032,1.37411,8.08766,0.217564,1.44857,8.20957,0.17477,1.33959,8.10596,-0.18909,1.44386,8.23159,-0.186708,0.157857,9.43656,0.714302,0.0470983,9.40895,0.732215,0.480487,9.56438,0.611138,0.340707,9.51255,0.65987,0.792714,9.5535,0.515884,0.749223,9.54984,0.532876,0.701014,9.55517,0.562817,0.612175,9.57013,0.587174,0.407302,0.0299936,0.0436082,1.27568,0.0299927,0.0147483,1.26702,0.0299936,0.283082,0.412871,0.0299927,0.751201,0.455625,0.0299936,0.430463,1.25411,0.0297822,-0.257468,0.990348,0.0299936,-0.277655,0.723395,0.0299936,-0.275658,0.402945,0.0299927,-0.277802,0.69384,0.0299936,0.0344672,1.01717,0.0299936,0.0314385,1.02178,0.0299936,0.331851,0.734753,0.0299936,0.423031,1.46942,0.0299936,0.774537,0.729295,0.0299936,0.758025,1.15139,0.0299936,0.73235,0.673916,0.0299936,1.07443,1.22315,0.0299936,1.05154,1.55626,0.0299936,1.07473,0.330255,0.0299927,1.08758,1.30256,2.302,0.0126935,1.29656,2.30931,-0.079061,1.27534,2.076,-0.11421,1.28194,2.07403,-0.0297712,1.15756,2.07727,-0.0256692,1.16351,2.08212,-0.110321,1.16575,2.32604,0.0184177,1.17417,2.3322,-0.0733632,1.30602,2.31027,0.0148611,1.27537,2.06438,-0.0282554,1.29855,2.31765,-0.0769092,1.27061,2.06881,-0.112931,1.2396,2.09071,-0.152696,1.26284,2.29113,-0.126716,1.36806,2.04635,-0.238864,1.23443,2.10217,-0.00800606,1.3983,2.25056,-0.250438,1.25692,2.29669,0.0270147,1.18076,2.1223,0.216823,1.19001,2.31387,0.228722,1.18207,2.31309,0.200138,1.15135,2.12443,0.182348,1.23035,2.3054,0.0257135,1.18311,2.318,-0.239417,1.20719,2.11278,-0.0103211,1.15887,2.11337,-0.241082,1.17965,2.7168,-0.159535,1.22215,2.83848,0.0730289,1.16718,2.92168,-0.168629,1.21004,3.0067,0.0958107,1.16086,2.92485,0.261934,1.15725,3.05118,0.269884,1.16434,2.94289,0.298338,1.18947,2.75239,0.296694,1.23763,2.92766,0.0986492,1.3979,2.89215,-0.113426,1.25075,2.73072,0.0739701,1.4041,2.68556,-0.11908,1.24915,2.91443,-0.0479668,1.26408,2.71104,-0.0663925,1.29455,2.69903,-0.0285485,1.27713,2.95037,-0.0056818,1.29817,2.69984,0.0562947,1.28378,2.94912,0.086439,1.15209,2.94268,-0.0044702,1.1429,2.93981,0.0873985,1.18676,2.69316,-0.0279896,1.17992,2.69164,0.05672,1.30296,2.71042,0.0543414,1.29796,2.70687,-0.0301548,1.2767,2.94172,-0.00740456,1.28189,2.94027,0.0846777,0.471648,0.758845,0.827037,0.47639,0.809023,0.687664,0.44317,0.752505,0.554745,0.391447,0.622398,0.506143,0.351536,0.494843,0.570351,0.346713,0.443704,0.709899,0.380011,0.501168,0.842593,0.43172,0.631364,0.891222,0.464907,0.725081,0.79609,0.434385,0.62763,0.845154,0.394847,0.528202,0.808002,0.369445,0.485022,0.706393,0.373077,0.523354,0.599848,0.403598,0.620776,0.550785,0.443138,0.720235,0.587939,0.468532,0.763438,0.689547,0.395136,0.723591,0.779479,0.397937,0.753225,0.697168,0.378318,0.719847,0.61867,0.347772,0.643009,0.589967,0.324192,0.567722,0.627872,0.321391,0.538089,0.710183,0.341011,0.571466,0.788681,0.371556,0.648304,0.817385,0.335795,0.695423,0.741872,0.325095,0.661926,0.758686,0.311177,0.626698,0.745858,0.302248,0.611731,0.709864,0.303643,0.62478,0.673162,0.313985,0.658408,0.656381,0.327999,0.693601,0.669202,0.336831,0.708603,0.705205,0.308094,0.649179,0.724188,0.300732,0.666968,0.709343,0.315067,0.676912,0.69241,0.43903,0.720972,0.786826,0.44224,0.754934,0.692495,0.419755,0.716681,0.602533,0.384749,0.628623,0.569638,0.357726,0.542341,0.61308,0.354516,0.50838,0.70741,0.376999,0.546632,0.797372,0.412007,0.634692,0.830267,0.462573,0.619801,0.881517,0.412683,0.494099,0.834525,0.38063,0.438,0.706543,0.385199,0.488,0.571801,0.423693,0.611144,0.50978,0.473626,0.736744,0.556699,0.505694,0.791304,0.685012,0.501116,0.742864,0.819557,1.28169,0.783167,0.500116,1.31439,0.772254,0.638974,1.3831,0.675977,0.719465,1.44758,0.550733,0.694438,1.47005,0.46989,0.578555,1.43735,0.480803,0.439698,1.36864,0.57708,0.359208,1.30416,0.702324,0.384234,1.36683,0.702481,0.422674,1.41203,0.61467,0.405129,1.46021,0.54717,0.461561,1.48313,0.539518,0.558915,1.46738,0.596199,0.640162,1.42217,0.684008,0.657709,1.374,0.751509,0.601276,1.35107,0.759161,0.503921,1.4979,0.699234,0.536661,1.50707,0.699109,0.514144,1.49625,0.687925,0.495466,1.47258,0.729899,0.544411,1.49169,0.703137,0.567166,1.50969,0.66818,0.559864,1.51569,0.646001,0.528376,1.50691,0.649146,0.490532,1.4877,0.675858,0.467794,1.4698,0.710866,0.475079,1.46347,0.732861,0.506629,1.4089,0.715441,0.429682,1.44835,0.63882,0.414373,1.49039,0.57992,0.463614,1.51039,0.573244,0.548563,1.49664,0.622702,0.619456,1.4572,0.699322,0.634768,1.41516,0.758222,0.585525,1.39516,0.764899,0.500577,1.34943,0.754229,0.613967,1.40384,0.67799,0.677704,1.45489,0.578813,0.657887,1.47269,0.514795,0.566121,1.4468,0.523437,0.456165,1.39238,0.599677,0.392427,1.34133,0.698854,0.412243,1.32353,0.762872,0.504008,1.33065,0.721124,0.373086,1.39744,0.591386,0.347162,1.46862,0.491653,0.430541,1.50249,0.480347,0.574382,1.47922,0.564093,0.694423,1.41243,0.693832,0.720347,1.34125,0.793563,0.636969,1.30738,0.804869,0.493128,1.1387,3.6371,0.468567,1.22649,3.63696,0.237505,1.18945,3.41472,0.198948,0.426742,3.23194,0.604395,0.470508,3.56753,0.731794,0.542733,3.57427,0.822832,1.13453,2.62872,0.464041,1.10653,3.39736,0.379742,1.07581,3.30326,0.594643,0.644835,3.26747,0.755962,0.815241,3.28029,0.760304,1.28952,3.60918,0.686216,1.14181,3.47319,0.452306,0.684705,3.54608,1.04149,0.685484,3.34015,0.81319,1.12105,3.36915,0.653331,0.852567,3.34372,0.821244,1.19299,3.61027,0.901944,0.925588,3.58213,1.04864,1.16063,4.27985,1.01026,1.14546,4.2619,0.865962,0.794313,4.22245,1.07045,0.927245,4.25489,1.13958,0.752132,4.20086,1.04467,1.1268,4.24356,0.825684,1.12281,4.2403,0.957099,0.862456,4.2154,1.0985,1.2631,3.96815,0.755207,1.18127,3.95905,0.955049,0.922362,3.93108,1.09752,0.698909,3.90903,1.08484,0.595228,3.89835,0.949626,1.1641,3.95603,0.619554,1.18042,3.6254,0.532356,1.11199,3.42796,0.411991,0.658016,3.29435,0.771852,0.582632,3.56636,0.881002,1.08919,3.32815,0.614797,0.825785,3.3026,0.780029,0.762319,4.20267,1.04122,1.12175,4.24207,0.834693,1.13386,4.24472,0.969683,0.878053,4.21923,1.11046,0.623161,3.89911,0.985424,1.19094,3.95745,0.656643,1.13884,4.25579,0.859541,1.15323,4.27779,1.0017,0.922825,4.25418,1.12829,0.792154,4.22123,1.05628,0.750212,4.1889,1.01569,1.10624,4.22432,0.817632,0.858358,4.20892,1.09984,1.13018,4.23842,0.952766,0.760449,4.19896,1.02268,1.11101,4.23299,0.828461,1.22313,1.96501,-0.164316,0.438147,1.95874,-0.334969,1.25705,2.9606,-0.12313,0.405432,2.83781,-0.307541,0.84157,1.97014,-0.508298,0.688881,1.96842,-0.509431,0.544934,1.96521,-0.45431,1.12238,1.96858,-0.345025,0.830269,2.79316,-0.513749,0.659552,2.78079,-0.511174,0.513543,2.78787,-0.443813,1.14695,2.86898,-0.343794,0.492567,0.56513,-0.236922,0.443228,0.500372,0.448055,1.06365,1.07321,0.902392,0.958949,0.617847,-0.372038,1.25808,0.447811,0.201422,1.29364,0.451291,0.491077,0.681836,0.614064,-0.399434,0.670351,1.05663,0.896327,0.420401,0.499821,0.0774494,0.504655,0.77233,0.710401,1.27436,0.755856,0.667344,1.1803,0.547528,-0.150128,0.49063,0.808224,-0.221302,0.46682,0.770671,0.371242,1.05464,1.12361,0.811898,0.942941,0.842551,-0.36205,1.22685,0.719301,0.115581,1.26795,0.805694,0.325799,0.693526,0.841422,-0.390631,0.683853,1.11407,0.825546,0.446668,0.76729,0.0561294,0.564421,0.974904,0.615938,1.211,1.00049,0.58177,1.16147,0.792742,-0.149371,0.967188,-0.018647,2.40426,1.13453,-0.0203847,2.37202,0.823457,-0.0198748,2.38467,0.809005,0.0325416,2.33447,1.07209,0.0510701,2.3163,0.893923,0.125016,2.29119,1.02074,0.113292,2.28974,0.839676,0.0959581,2.30207,0.961976,0.133399,2.28458,0.969559,0.259861,2.14233,0.724543,0.203432,2.16162,1.09201,0.220801,2.15336,0.839232,0.251446,2.14499,1.18806,0.113996,2.18976,0.645202,0.0951669,2.21594,0.603427,-0.0179201,2.29931,1.27847,-0.0189629,2.2491,1.42552,-0.0169413,2.05732,0.444914,-0.0139401,2.08208,0.49856,0.166917,1.99409,1.32063,0.183475,1.96372,0.788687,0.365008,1.89927,1.18661,0.323398,1.9102,0.616103,0.309686,1.9268,0.989071,0.371171,1.89312,1.01374,0.540953,1.38251,0.522205,0.471839,1.41005,1.2993,0.473228,1.36588,0.748818,0.537647,1.39732,1.44443,0.303328,1.35873,0.379578,0.293797,1.41914,0.29123,-0.00875905,1.42486,1.53179,-0.010603,1.35011,1.2588,1.69611,0.0295458,1.17364,1.56637,-0.267685,0.674915,1.39376,-0.551358,0.518049,1.824,0.512089,0.368004,1.47116,-0.00213536,0.923451,1.40956,-0.477056,0.948356,1.84885,0.644676,0.386267,1.53637,0.282788,0.449576,1.43313,-0.344297,0.693519,1.22565,0.78078,1.00643,1.2379,0.752093,1.1813,1.12686,0.546332,1.26198,0.994609,0.254501,1.2241,0.901522,0.057362,1.15526,0.936109,-0.161304,0.975422,1.05707,-0.350177,0.652624,1.05513,-0.403956,0.496434,0.937528,-0.215228,0.453919,0.89661,0.052879,0.4807,0.914508,0.333385,0.561114,1.16262,0.615138,1.03114,0.576117,1.45191,0.474913,0.498672,1.49164,1.34022,0.480573,1.43986,0.717959,0.572311,1.47096,1.5005,0.315859,1.44872,0.322473,0.313381,1.50789,0.242143,-0.00538064,1.51441,1.60639,-0.00800738,1.4341,1.49446,-0.00800739,1.05429,0.353938,-0.00538066,1.1223,0.410575,0.405881,1.11904,1.39389,0.417132,1.06175,0.761604,0.717829,1.09409,1.26454,0.631052,1.06623,0.549899,0.628829,1.10812,1.00451,0.722621,1.08,1.01121,0.769896,1.12677,0.535931,0.693736,1.15985,1.27562,0.685301,1.11579,0.754899,0.769875,1.14223,1.43233,0.460483,1.10423,0.376909,0.449494,1.16343,0.267527,-0.00593823,1.16142,1.58994,-0.00767138,1.09089,1.42623,-0.0076714,0.680632,0.38605,-0.00593825,0.739454,0.482041,0.526223,0.732762,1.30903,0.538864,0.685368,0.779184,0.92184,0.702853,1.1516,0.81285,0.686929,0.602827,0.810763,0.718585,0.964778,0.927848,0.692324,0.417894,-0.00984579,1.84956,1.4553,-0.0145746,1.78968,0.48113,0.183269,1.84483,1.34194,0.197319,1.79506,0.78208,0.383604,1.82495,0.601048,0.328858,1.83582,1.20989,0.339412,1.80145,0.994081,0.38865,1.81355,1.00287,0.411684,1.89756,1.23143,0.359827,1.88437,0.587912,0.350116,1.92111,0.778677,0.406213,1.91008,1.3694,0.215038,1.87798,0.460796,0.199147,1.92979,1.48882,-0.010603,1.87271,0.393452,-0.00875902,1.93436,0.483061,0.918893,-0.261493,0.407709,0.645055,0.433872,0.972583,0.941604,-0.394494,1.30573,0.779052,0.0601763,1.30801,0.674926,0.297017,0.697485,0.942773,-0.409251,0.368221,0.775207,0.0982228,0.447269,0.524723,0.826392,1.43636,0.531792,0.783078,1.19947,0.869701,-0.215343,0.688416,-0.000471508,-0.530173,1.29418,-0.000954001,-0.261905,1.31427,-0.000216975,0.0199878,1.42396,-0.00487806,0.279502,0.374554,5.49852e-06,-0.307325,0.384971,-4.56765e-06,0.0460229,0.373184,-0.00298744,0.422124,1.0859,-0.00188329,-0.505957,0.41139,0.284188,0.411641,0.358221,0.416938,0.0677703,0.386812,0.443307,-0.276759,1.34579,0.311081,0.273482,1.35331,0.381952,0.0331711,1.2952,0.430867,-0.228576,1.00734,0.438138,-0.502808,0.652995,0.439546,-0.527172,0.690495,0.66343,-0.485095,1.21198,0.652108,-0.214627,1.31194,0.61275,0.0523661,1.32183,0.515338,0.292823,0.480923,0.642125,-0.232034,0.370712,0.627356,0.0883579,0.413214,0.508401,0.400209,0.975312,0.664804,-0.469289,1.63458,-0.00756979,0.777364,1.56767,0.187303,0.77787,1.51534,0.356098,0.780409,0.329314,0.120074,0.836475,0.291127,-0.00531844,0.835047,0.386437,0.333067,0.832039,1.03999,1.2655,-0.235683,0.569513,1.22225,-0.303251,0.674518,1.23169,-0.32462,0.8029,1.24442,-0.343529,0.498908,1.21409,-0.14785,1.1214,1.26855,-0.10603,1.25997,2.97898,0.140663,0.409203,2.93628,0.549532,1.27732,2.18247,0.0543973,0.720471,1.56232,0.765338,0.989275,1.55424,0.741906,1.2027,1.50543,0.521559,1.30173,1.39626,0.236243,1.29136,1.33146,0.0314089,1.21453,1.21887,-0.236961,0.986465,1.23956,-0.451962,0.625595,1.2253,-0.514734,0.424713,1.19141,-0.306086,0.356149,1.19359,0.0213254,0.377923,1.23808,0.315482,0.498865,1.50303,0.592724,0.68866,2.21967,0.659677,0.936335,2.21373,0.633986,0.475573,2.22294,0.506601,1.28604,2.65693,0.0900661,0.433065,2.65125,0.503923,1.10805,2.95503,0.522165,0.654891,2.93057,0.70477,1.23554,2.63909,0.261535,0.667739,2.61901,0.663177,0.897602,2.6115,0.643142,1.19757,2.97153,0.312404,0.869892,2.93121,0.686346,1.12935,2.20427,0.461606,1.24412,2.19031,0.233759,0.734359,1.53595,0.725466,0.971002,1.52656,0.703538,1.1644,1.47498,0.499725,1.2548,1.36474,0.229623,1.24203,1.30037,0.0383351,1.17166,1.20257,-0.208238,0.959975,1.23972,-0.414895,0.651475,1.23152,-0.47898,0.464981,1.18531,-0.277857,0.4072,1.17905,0.0259123,0.430778,1.21579,0.30477,0.53366,1.4805,0.563857,0.70882,1.84701,0.65709,1.13096,1.83192,0.46053,1.23768,1.77156,0.20991,0.720842,1.57616,0.755234,0.984541,1.5684,0.733096,1.19371,1.52398,0.517696,1.29295,1.42001,0.237227,1.2863,1.35528,0.0359704,1.20773,1.23761,-0.234894,0.977103,1.24274,-0.452415,0.634996,1.22837,-0.516409,0.432152,1.19985,-0.30732,0.362222,1.20599,0.0206402,0.385806,1.2525,0.31833,0.504674,1.52329,0.587916,0.807689,0.0299927,-0.492846,0.942691,0.0299927,-0.481133,0.359224,0.0299937,1.47569,1.47985,0.0299937,1.41111,1.17537,0.0299937,1.42866,0.673346,0.0299937,1.45759,0.725063,0.0299937,1.85888,1.16295,0.0299937,1.83365,1.42853,0.0299937,1.81834,0.451072,0.0299937,1.87467,1.05374,0.0299928,2.33639,0.859097,0.0299928,2.34589,0.770581,0.0299937,2.11211,0.542702,0.0299928,2.1253,1.35546,0.0299928,2.07835,1.13469,0.0299937,2.09113,0.434882,0.0299927,-0.277621,0.435881,0.0299936,0.0426965,0.483464,0.0299936,0.429721,0.44443,0.0299936,0.751881,0.364531,0.0299936,1.08626,0.390553,0.0299937,1.47388,0.478399,0.0299937,1.8731,0.565421,0.0299928,2.12399,1.23207,0.0299927,-0.259831,1.24413,0.0299927,0.0167871,1.23711,0.0299936,0.289029,1.43064,0.0299936,0.769393,1.51564,0.0299936,1.0719,1.44272,0.0299937,1.41325,1.39614,0.0299937,1.82021,1.32852,0.0299928,2.07989,0.838436,0.0299928,2.31446,0.671746,0.0296693,2.27841,1.20962,0.0303478,2.25963,1.0682,0.0299928,2.30443,0.687756,0.0299928,2.26127,1.1935,0.0299928,2.24444,0.628204,0.0296718,-0.452035,0.802039,0.0299927,-0.478304,0.945884,0.0299927,-0.4675,1.07671,0.0298213,-0.445532,0.634576,0.0300394,-0.439375,1.06924,0.0299743,-0.433666,1.12995,7.8569,0.714685,1.00714,7.20072,0.746596,1.02269,7.49328,0.649214,1.27514,8.15058,0.578731,1.40046,8.33476,0.55027,1.20424,6.54073,0.986012,1.04514,6.97139,0.800967,1.17416,6.74623,0.891382,1.18057,6.33855,1.01379,0.948971,7.16841,0.718945,1.04401,6.9186,0.798224,1.15495,6.6788,0.887791,1.16664,6.49928,0.971315,1.22552,6.37398,1.05179,1.00855,7.21509,0.733584,1.023,6.99536,0.784728,1.16298,6.7643,0.876388,1.2078,6.53778,0.973894,1.22603,6.36473,1.04386,1.07007,8.57608,1.00257,1.2399,2.46154,-0.143916,0.430924,2.4002,-0.313413,0.836087,2.38005,-0.510881,0.674363,2.37302,-0.510236,0.533351,2.37653,-0.445343,1.13506,2.41733,-0.34384,0.808101,1.60089,-0.429119,1.07265,1.61361,-0.292247,1.16391,1.61326,-0.136877,0.461127,1.58745,-0.239428,0.552853,1.59455,-0.378117,0.674513,1.59767,-0.418766,1.34678,4.5588,-0.109181,0.187992,4.37302,-0.236215,0.816057,4.4791,-0.61683,0.351011,4.40152,-0.509169,0.589679,4.44448,-0.600021,1.17418,4.5277,-0.426184,-0.00264589,9.36275,-0.824212,0.489939,6.17145,1.33462,0.211612,6.16503,1.44164,0.0926574,5.02553,1.11216,0.459281,6.19865,1.34175,0.237441,5.36835,1.3399,0.464685,5.81186,1.40443,0.46014,6.17095,1.34599,-8.88178e-16,8.32564,-1.09727,0.000287515,8.97448,-1.00042,0,5.41383,1.5019,-8.88178e-16,9.04323,1.05533,-8.88178e-16,7.89791,1.33495,-8.88178e-16,8.06825,1.35305,-8.88178e-16,9.13891,0.997167,-8.88178e-16,8.72937,1.31383,-8.88178e-16,7.35835,1.42892,-8.88178e-16,6.76788,1.54973,-8.88178e-16,8.90752,1.17427,-8.88178e-16,7.53041,1.40038,-8.88178e-16,7.2201,1.45895,0.00307025,9.19121,-0.925049,-0.108216,9.19215,-0.914283,-0.167592,8.34013,-1.08133,-0.681061,9.44915,-0.743908,-0.121074,8.72755,-1.05424,-0.82083,9.30647,-0.839652,-0.920417,8.64071,-0.968879,-1.04516,8.78605,-0.918264,-0.892716,9.45877,-0.722519,-1.18353,8.95742,-0.861669,-0.801336,8.98608,-0.943815,-0.930281,9.13709,-0.902773,-1.03166,9.31619,-0.829477,-0.498321,9.18067,-0.899012,-0.384714,9.19285,-0.910507,-0.626642,8.85707,-0.993186,-0.448973,8.78231,-1.02733,-0.583776,8.42817,-1.04041,-0.779697,8.51237,-1.02262,-0.697926,9.16216,-0.900021,-0.582664,9.30172,-0.839698,-0.56488,9.0488,-0.96172,-0.396103,8.99359,-0.973637,-0.107633,8.97622,-0.991796,-0.243976,9.19223,-0.906027,-0.273,8.74414,-1.03653,-0.366069,8.37397,-1.05567,-0.238852,8.97641,-0.979858,-0.865658,8.82401,-0.966894,-0.990117,8.95397,-0.923049,-1.13288,9.11555,-0.858868,-0.696694,8.67986,-1.01401,-0.523102,8.58589,-1.04414,-0.146644,8.50307,-1.08476,-0.325939,8.54529,-1.05914,-0.592728,9.6172,-0.444366,-0.286892,9.52368,-0.659464,-0.448305,9.55169,-0.579823,-0.124943,9.5217,-0.69375,-0.135287,9.47846,-0.733327,-0.515985,9.5281,-0.631134,-0.332567,9.49373,-0.69122,-0.646708,9.58573,-0.566581,-0.744367,9.55013,-0.630761,-0.28909,9.3893,-0.782715,-0.455795,9.38012,-0.783675,-0.129615,9.3766,-0.806083,-0.124245,9.55867,-0.700216,-0.281518,9.56012,-0.664711,-0.58073,9.64911,-0.450652,-0.437166,9.58836,-0.583589,-1.23111,4.95519,1.00802,-0.860301,4.61757,1.36347,-0.874464,4.62829,1.35088,-1.22862,4.93203,1.02112,-1.10431,5.65297,1.0009,-0.733346,5.45398,1.44201,-0.717196,5.45033,1.45855,-1.22227,4.94697,1.01996,-0.87131,4.64614,1.34865,-1.22481,4.97141,1.00643,-0.857345,4.6357,1.36111,-0.805736,6.60502,0.855035,-0.485687,6.6032,1.14123,-0.471918,6.59881,1.15504,-0.79388,6.59071,0.879455,-1.03658,6.61503,0.548304,-0.803338,6.59402,0.862927,-1.02741,6.61025,0.565817,-1.25749,4.8913,1.10901,-1.54941,5.19326,0.658291,-1.26788,4.90153,1.09322,-1.53761,5.18116,0.676439,-1.15266,5.63575,1.13854,-1.48276,5.84839,0.66323,-1.16556,5.64067,1.12238,-1.47098,5.83565,0.683817,-1.54531,5.16607,0.678623,-1.27336,4.88382,1.0964,-1.26272,4.87345,1.11242,-1.5579,5.17766,0.660169,-1.6707,5.45201,0.162186,-1.61352,5.19747,0.737636,-1.61444,5.20614,0.717345,-1.64903,5.44214,0.190558,-1.53393,5.86292,0.72827,-1.52606,6.03371,0.145654,-1.52907,5.8583,0.743335,-1.63856,5.45681,0.190405,-1.60523,5.22352,0.715458,-1.66037,5.46608,0.161849,-1.60459,5.21469,0.735428,-1.04664,6.61438,0.557526,-1.13807,6.67709,0.0840332,-1.04526,6.60822,0.569838,-1.15404,6.68501,0.0976604,-0.927779,6.66873,-0.309474,-1.14467,6.68938,0.088545,-0.936918,6.67077,-0.293666,-1.72123,5.50301,0.202874,-1.45445,5.58012,-0.29714,-1.71209,5.50522,0.185297,-1.46509,5.57728,-0.276893,-1.57747,6.05059,0.181926,-1.33285,6.0435,-0.304587,-1.57037,6.04819,0.164711,-1.34521,6.04065,-0.284453,-1.47287,5.56405,-0.277508,-1.7201,5.49034,0.187538,-1.72938,5.48797,0.205414,-1.4624,5.56639,-0.298266,-0.799654,6.27963,0.911206,-0.483485,6.15123,1.22905,-0.805083,6.30092,0.897014,-0.470829,6.14887,1.24102,-1.09679,5.67361,0.993743,-0.727738,5.47457,1.43697,-0.711882,5.47066,1.45344,-0.916151,6.10406,0.904104,-1.15709,6.27265,0.488399,-0.925481,6.10787,0.889704,-1.14867,6.26206,0.505881,-1.14447,5.65717,1.13238,-1.47199,5.86736,0.657831,-1.15738,5.66197,1.11621,-1.46055,5.85471,0.678163,-1.22376,6.32215,0.0809327,-1.20262,6.21103,0.545251,-1.23851,6.33019,0.0558579,-1.2012,6.20879,0.563074,-1.49512,6.02832,0.170325,-1.52783,5.8739,0.726507,-1.51722,6.04457,0.144386,-1.52329,5.86935,0.740704,-1.25919,6.35556,0.071204,-1.01897,6.33669,-0.335784,-1.25173,6.35286,0.056883,-1.03047,6.33425,-0.318922,-1.55992,6.07469,0.179586,-1.31544,6.06523,-0.302733,-1.55288,6.07217,0.162582,-1.32769,6.06243,-0.283055,-0.846593,6.33774,0.844265,-0.484563,6.19536,1.23262,-0.4704,6.189,1.24712,-1.0981,5.64714,1.0202,-0.794565,6.59939,0.869356,-1.08766,5.66654,1.01371,-0.832785,6.33083,0.859301,-0.889645,6.12276,1.00598,-1.17381,6.24125,0.603225,-0.900333,6.12749,0.989776,-1.1642,6.23189,0.621931,-1.50163,6.01768,0.173938,-1.12413,6.66889,0.107133,-1.25946,6.20598,0.640932,-1.29853,6.32366,0.113777,-1.25699,6.19999,0.654515,-1.2808,6.31118,0.138614,-1.33731,6.37921,0.147945,-1.09117,6.34153,-0.28609,-1.32903,6.38095,0.136189,-1.10278,6.34021,-0.269099,-0.488873,6.19916,1.33033,-0.25033,5.36706,1.32517,-0.0542856,4.92698,1.14809,0,4.90616,1.14165,-0.099046,5.03876,1.10788,-0.211915,6.19269,1.43786,0,6.18682,1.45073,-0.497832,5.81178,1.39333,-0.192268,5.80326,1.49456,-0.137399,5.39236,1.46901,0,5.81233,1.47033,-0.0731335,4.59217,-0.0120733,-0.100917,4.40748,-0.00173656,-0.314639,4.62306,-0.377636,-0.323407,4.44108,-0.37114,-0.606193,4.89125,0.900865,-0.635467,4.72966,0.842964,-0.21943,4.72685,0.739344,-0.246582,4.55575,0.702634,-0.0829097,4.62919,0.373319,-0.11349,4.46831,0.368416,-0.233284,4.07833,0.0793629,-0.193658,4.25569,0.0537732,-0.217643,4.09561,0.356387,-0.189429,4.26947,0.359929,-0.332088,4.05768,-0.21682,-0.300387,4.23265,-0.277352,-0.471438,4.14229,0.777566,-0.44958,4.31299,0.775623,-0.316056,4.11667,0.635807,-0.294851,4.28226,0.649578,-0.40585,4.83688,0.870815,-0.437631,4.66662,0.844451,-0.677144,4.18713,0.742934,-0.658498,4.33369,0.767106,-0.364748,4.62579,-0.408845,-0.373232,4.44378,-0.402012,-0.39098,4.05259,-0.261568,-0.3599,4.22736,-0.32292,-0.603477,1.9121,-0.423421,-0.611304,1.73453,-0.380341,-0.51636,2.60852,-0.4121,-0.494412,2.74866,-0.390885,-0.594355,2.63918,0.562351,-0.608609,2.80675,0.598348,-0.468806,2.64917,0.48992,-0.506257,2.46745,0.501908,-0.639104,2.8008,0.592587,-0.660693,2.61333,0.59948,-0.546858,1.92416,-0.36961,-0.543625,1.74757,-0.31443,-0.379231,2.39217,0.260569,-0.426134,2.20008,0.276134,-0.364949,2.12315,-0.0378521,-0.394168,1.92814,-0.000206508,-0.341923,2.59239,0.135694,-0.317452,2.72863,0.141434,-0.45498,2.62563,0.437593,-0.428913,2.74901,0.485939,-0.480975,2.6055,-0.377078,-0.459352,2.74443,-0.356505,-0.378742,2.59491,-0.14181,-0.352606,2.73059,-0.126871,-0.394545,1.81181,-0.104572,-0.464011,1.66839,-0.175256,-0.479311,1.8989,-0.294257,-0.528147,1.7355,-0.346588,-0.563943,1.71612,0.45266,-0.566577,1.57368,0.418656,-0.404593,1.70103,0.205313,-0.413268,1.57448,0.0944608,-0.734736,1.74209,0.591877,-0.718168,1.57192,0.557004,-0.516637,1.94321,-0.369086,-0.573191,1.78599,-0.431116,-0.427614,4.86104,1.0022,-0.717274,5.05475,1.05587,-1.05952,5.38334,0.910986,-1.33512,5.53984,0.56735,-1.00986,3.98499,0.634113,-1.36975,4.01367,0.23084,-0.501112,3.88802,0.822398,-0.736715,3.93073,0.796428,-1.03413,4.60923,0.725036,-1.2866,4.68491,0.418816,-0.46465,4.35353,0.846539,-0.729448,4.45428,0.847219,-1.28369,5.80026,0.566486,-1.06291,5.63168,0.915936,-0.713315,5.23881,1.10903,-0.412403,5.00045,1.04823,-1.23023,5.46826,0.74114,-1.14479,4.00519,0.435202,-1.18749,4.64706,0.579617,-1.18166,5.72239,0.74374,-1.2959,3.92804,-0.030067,-1.3978,5.19965,-0.0838505,-0.213585,3.91733,-0.109469,-0.162325,4.82782,-0.317196,-1.14414,3.99656,-0.272366,-0.838192,4.94292,-0.560915,-0.613729,4.88263,-0.566678,-0.34107,4.83686,-0.500145,-1.20101,5.05931,-0.341341,-0.792062,4.01562,-0.432439,-0.363157,3.96462,-0.27842,-0.565495,4.00626,-0.393196,-1.23195,4.74797,-0.244392,-1.23195,4.95843,-0.261327,-1.19308,5.03106,0.555964,-1.18287,4.84155,0.531235,-1.28859,4.7822,-0.010871,-1.28145,4.82262,0.26605,-1.28854,4.98809,-0.0191948,-1.28159,5.01925,0.276103,-1.1953,4.8388,0.497508,-1.20424,5.02929,0.5205,-1.23321,5.03065,0.520132,-1.22429,4.83979,0.497058,-1.31846,5.01582,0.275463,-1.39471,4.95643,-0.0412652,-1.31822,4.81639,0.265868,-1.39471,4.74988,-0.0333644,-1.2117,4.84217,0.531258,-1.2219,5.03201,0.555988,-1.31348,4.98215,0.096143,-1.31405,4.77841,0.0939912,-1.3522,4.77259,0.175044,-1.35109,5.02557,0.176828,-1.35469,4.78024,0.259587,-1.35636,5.03157,0.268851,-1.22581,5.0261,0.176259,-1.21518,5.03148,0.26786,-1.24426,4.77376,0.174007,-1.23616,4.77975,0.258406,-1.3602,4.79028,0.256864,-1.35615,4.78004,0.172864,-1.35011,5.01685,0.175815,-1.35392,5.02274,0.267787,-1.37105,4.4489,0.249758,-1.36506,4.45622,0.158003,-1.34384,4.2229,0.122854,-1.35044,4.22093,0.207293,-1.22606,4.22417,0.211395,-1.23201,4.22902,0.126743,-1.23425,4.47294,0.255482,-1.24266,4.4791,0.163701,-1.37451,4.45717,0.251925,-1.34386,4.21128,0.208809,-1.36705,4.46455,0.160155,-1.3391,4.21571,0.124133,-1.30345,4.23731,0.0391949,-1.32479,4.43753,0.0708511,-1.43297,4.19567,-0.0630484,-1.3126,4.25013,0.21711,-1.45654,4.40004,-0.042933,-1.33651,4.44506,0.25226,-1.14845,4.27296,0.440566,-1.17922,4.462,0.458346,-1.15003,4.46385,0.459839,-1.11931,4.2752,0.442049,-1.29989,4.45237,0.255765,-1.2718,4.46544,-0.0326934,-1.27656,4.26021,0.220533,-1.24844,4.26178,-0.052253,-1.22999,4.47441,-0.177091,-1.17105,4.27173,-0.182735,-0.589011,9.2982,0.757734,-0.968417,9.3801,0.629753,-0.172975,9.08376,1.00515,-1.11182,9.20222,0.757404,-0.671429,9.16864,0.884182,-0.869969,8.52034,1.08108,-0.194862,8.45262,1.29614,-8.88178e-16,8.44487,1.37976,-0.236057,8.06072,1.28055,-0.891635,8.13091,1.04608,-0.97619,7.89185,0.902251,-0.22199,7.88761,1.26626,-0.227349,7.44857,1.34614,-0.880644,7.22653,0.918749,-1.36269,8.10565,0.408798,-1.10984,7.20651,0.550029,-1.12541,7.27308,0.0699728,-1.28386,7.82749,0.529445,-1.24953,7.79308,0.0304257,-0.498327,9.49397,0.638924,-0.834085,9.50592,0.544423,-0.859379,9.3472,0.687163,-0.980931,9.21246,0.81271,-0.732881,9.50294,0.584278,-1.18664,8.54439,0.914838,-1.35306,8.43613,0.71247,-1.09453,8.30782,0.927236,-1.19253,8.19992,0.76936,-0.890903,8.20898,-0.908566,-0.800113,8.01378,-0.872131,-0.935784,7.67491,-0.534809,-1.10293,7.87978,-0.475855,-1.18457,7.81345,-0.219872,-1.06015,7.54515,-0.218112,-1.12998,7.48865,0.0490511,-0.186149,7.67058,1.25703,-0.913936,7.51374,0.782674,-1.12685,7.48103,0.518527,-8.88178e-16,7.70346,1.33689,-0.18954,9.19297,0.934677,-0.429015,9.13679,0.904154,-0.539081,8.48078,1.17598,-0.566313,8.05767,1.17659,-0.586686,7.85494,1.09756,-0.529227,7.31502,1.14755,-0.537573,7.57239,1.04101,-0.394313,9.24802,0.818941,-0.750643,9.32668,0.716161,-0.854026,9.20056,0.854527,-0.638432,9.50309,0.609592,-0.206841,8.24815,1.32497,-0.887388,8.32012,1.09621,-0.550453,8.2669,1.20539,-1.03503,8.41506,0.995456,-1.43243,8.24784,0.393074,-0.176537,8.73775,1.24495,-0.846725,8.75738,1.06007,-1.15466,8.74266,0.935459,-1.2788,8.68174,0.844964,-0.513106,8.73871,1.11214,-1.04285,8.77912,1.01982,-0.932261,7.41761,-0.497468,-1.05229,7.33026,-0.203314,-0.69186,7.69165,-0.767552,-1.14046,6.93059,-0.245228,-0.811228,7.00456,-0.521365,-1.2836,6.84667,0.154413,-1.23317,6.89359,-0.0607293,-1.30581,6.60931,0.765183,-1.08568,6.48592,1.20677,-0.687515,6.6081,1.448,-0.314802,6.81543,1.52305,-8.88178e-16,7.02825,1.55624,-0.230696,7.97296,1.27077,-0.937014,8.0185,0.974915,-0.924134,9.3689,0.652205,-1.06637,9.20562,0.785124,-0.791482,9.50486,0.554772,-1.25878,8.48235,0.843693,-1.14495,8.25266,0.846793,-0.583064,7.95528,1.14148,-1.22478,8.70617,0.897263,-0.692775,7.42502,-0.63686,-0.95157,7.21071,-0.376445,-1.15588,7.09308,0.0984715,-1.06222,7.145,-0.137691,-0.546368,7.05915,1.20323,-0.91508,6.98458,0.99149,-0.25672,7.23028,1.3651,-1.14929,6.99214,0.609552,-1.03346,7.06657,-0.279971,-1.20271,6.98229,0.133325,-1.15026,7.0211,-0.0930879,-0.625259,6.83243,1.29439,-1.02652,6.69311,1.08992,-0.282361,7.03528,1.41385,-8.88178e-16,7.21308,1.46825,-1.26968,6.82536,0.68308,-0.774579,7.19811,-0.539638,-0.330003,6.59398,1.49624,-0.711216,6.35879,1.40951,-1.06313,6.27388,1.20606,-1.29446,6.40808,0.824194,-1.23559,6.75978,-0.0409673,-1.31512,6.69841,0.182793,-0.940637,6.80818,-0.644368,-1.14478,6.78995,-0.235995,-1.02024,8.05218,-0.706718,-0.868818,7.84163,-0.700118,-0.808934,7.55411,-0.638027,-1.00193,6.95834,-0.425126,-0.831451,7.30991,-0.54733,-0.908157,7.12696,-0.454619,-1.05434,6.83627,-0.423652,-0.167267,8.9442,1.13075,-0.771291,8.97858,0.996947,-1.08729,8.95915,0.924009,-1.21152,8.92093,0.866027,-0.489176,8.95347,1.02626,-0.958527,8.9951,0.959881,-1.16458,8.9348,0.899325,-1.32557,6.76139,0.450172,-1.28756,7.80635,0.286186,-1.14708,7.47177,0.297376,-1.13507,7.2334,0.322921,-1.1635,7.05157,0.358837,-1.23359,6.93323,0.414473,-1.32442,6.57503,0.472904,-0.155448,9.40137,0.717925,-0.337052,9.47998,0.661537,-0.679866,7.66309,-0.702449,-0.898228,7.38792,-0.436486,-1.07601,7.23938,0.084137,-1.0005,7.30012,-0.167694,-0.503135,7.25927,1.11641,-0.83523,7.17886,0.88822,-0.219325,7.3944,1.30092,-8.88178e-16,7.48345,1.36228,-1.05583,7.1691,0.538388,-0.783733,7.51921,-0.576162,-1.07808,7.19423,0.320775,-0.93697,7.1834,-0.317043,-1.12439,7.06483,0.115345,-1.042,7.11701,-0.102311,-0.530226,6.99686,1.18341,-0.918139,6.90277,0.989007,-0.243686,7.17357,1.32944,-8.88178e-16,7.3246,1.38855,-1.14278,6.95132,0.603968,-0.725306,7.41031,-0.559789,-0.83916,7.28221,-0.472046,-1.1418,7.02045,0.36393,-1.03447,7.03062,-0.236105,-1.18815,6.94612,0.147282,-1.14606,6.9844,-0.0575972,-0.614463,6.75929,1.30007,-1.00917,6.62092,1.08617,-0.270915,6.96703,1.39323,-1.25176,6.75671,0.680396,-0.782923,7.15066,-0.494125,-0.918406,7.09296,-0.389705,-1.21913,6.88638,0.410284,-0.825819,6.9578,-0.504094,-1.06245,6.43991,1.18734,-1.27345,6.55644,0.75215,-8.88178e-16,6.98965,1.51818,-0.304593,6.77759,1.49239,-0.667741,6.56268,1.41949,-1.25238,6.80935,0.16521,-1.2012,6.86596,-0.0387643,-1.1152,6.90531,-0.219195,-0.98818,6.93087,-0.416094,-1.29312,6.71469,0.435314,-0.939426,6.8873,-0.646328,-1.10259,6.31261,1.24382,-1.33514,6.4399,0.848253,-0.329653,6.62747,1.54353,-0.734202,6.39819,1.45694,-1.34303,6.71314,0.169846,-1.26059,6.77682,-0.0651624,-1.16847,6.8203,-0.266691,-1.07616,6.86121,-0.45702,-1.36574,6.60012,0.482586,-0.21855,7.46036,1.33814,-0.885475,7.24448,0.903953,-1.10858,7.22193,0.542685,-1.12024,7.28635,0.0657454,-0.527528,7.33053,1.1371,-1.04654,7.34268,-0.207625,-0.919939,7.43468,-0.505019,-0.692159,7.72592,-0.784285,-0.79925,7.57905,-0.648359,-1.13247,7.24911,0.317742,-0.678278,7.45086,-0.649443,-0.930509,7.21482,-0.392164,-1.14567,7.09426,0.0910084,-1.04627,7.14661,-0.148366,-0.534427,7.0757,1.19504,-0.891022,7.01232,0.973791,-0.245747,7.23939,1.35963,-1.13178,7.00383,0.594668,-0.807859,7.32202,-0.553433,-1.15067,7.05507,0.347638,-1.01193,7.06662,-0.297921,-1.19847,6.98006,0.124579,-1.13264,7.01816,-0.105035,-0.604641,6.85332,1.28118,-1.01314,6.7152,1.07257,-0.268027,7.04729,1.40645,-1.25983,6.83795,0.668892,-0.764029,7.22437,-0.548398,-0.886795,7.14053,-0.461085,-1.22841,6.93697,0.401891,-1.13033,6.91947,-0.252952,-1.2802,6.83908,0.147095,-1.23149,6.88154,-0.0670583,-0.67662,6.60589,1.4393,-1.08312,6.47964,1.19791,-0.301531,6.81564,1.51972,-1.30708,6.60803,0.752604,-0.806472,7.02145,-0.514719,-0.997158,6.95401,-0.421549,-1.32128,6.75885,0.442053,-0.943919,6.88282,-0.642732,-1.10124,6.30657,1.24279,-1.33616,6.43058,0.837306,-0.315616,6.62323,1.54111,-0.725527,6.39735,1.46011,-1.34112,6.69949,0.161932,-1.25864,6.76462,-0.0703238,-1.16742,6.80889,-0.269895,-1.07814,6.85145,-0.456705,-1.36822,6.59017,0.472702,-0.0541062,9.04783,1.05207,-0.0190693,8.44623,1.3814,-0.0313257,7.89689,1.33035,-0.0357982,7.51317,1.40612,-0.0316047,8.06791,1.34865,-0.0251408,7.69839,1.33437,-0.058384,9.14426,0.99273,-0.0241899,8.25056,1.3858,-0.0195397,8.73195,1.31614,-0.0432287,7.00168,1.55255,-0.0309115,7.98043,1.34044,-0.0409209,7.34298,1.42532,-0.042126,7.19029,1.4646,-0.0577734,6.73802,1.54577,-0.0376769,8.91359,1.1724,-0.0438769,9.37623,0.737428,-0.033878,7.46765,1.35827,-0.0376126,7.29725,1.38498,-0.0374016,7.13036,1.43683,-0.0438206,6.95225,1.51629,-0.0510184,6.77636,1.60351,-0.030163,7.52005,1.39788,-0.0331118,7.34446,1.41989,-0.0338994,7.19519,1.45826,-0.0318652,6.99931,1.55017,-0.040847,6.77458,1.60083,-0.0904382,9.6016,0.712257,-0.386443,9.75279,0.632459,-0.202615,9.65323,0.691961,-0.705939,9.71403,0.387562,-0.616068,9.75676,0.514598,-0.666692,9.73809,0.481023,-0.745211,9.6927,0.380798,-0.510492,9.77254,0.581895,-1.45907,8.20151,-0.00456246,-1.38078,8.09101,0.0227845,-1.29011,8.14606,-0.4053,-1.39613,8.30283,-0.372536,-1.26802,8.53277,-0.743305,-1.00234,8.35881,-0.876623,-1.15337,8.21318,-0.650733,-1.32877,8.40688,-0.566032,-1.37411,8.08766,0.217564,-1.44857,8.20957,0.17477,-1.33959,8.10596,-0.18909,-1.44386,8.23159,-0.186708,-0.157857,9.43656,0.714302,-0.0470983,9.40895,0.732215,-8.88178e-16,9.40643,0.734381,-0.480487,9.56438,0.611138,-0.340707,9.51255,0.65987,-0.792714,9.5535,0.515884,-0.749223,9.54984,0.532876,-0.701014,9.55517,0.562817,-0.612175,9.57013,0.587174,-0.407302,0.0299936,0.0436081,-1.27568,0.0299927,0.0147482,-1.26702,0.0299936,0.283082,-0.412871,0.0299927,0.751201,-0.455625,0.0299936,0.430463,-1.25411,0.0297821,-0.257468,-0.990348,0.0299936,-0.277655,-0.723395,0.0299936,-0.275658,-0.402945,0.0299927,-0.277803,-0.69384,0.0299936,0.0344671,-1.01717,0.0299936,0.0314384,-1.02178,0.0299936,0.331851,-0.734753,0.0299936,0.423031,-1.46942,0.0299936,0.774537,-0.729295,0.0299936,0.758025,-1.15139,0.0299936,0.73235,-0.673916,0.0299936,1.07443,-1.22315,0.0299936,1.05154,-1.55626,0.0299936,1.07473,-0.330255,0.0299927,1.08758,-1.30256,2.302,0.0126935,-1.29656,2.30931,-0.079061,-1.27534,2.076,-0.11421,-1.28194,2.07403,-0.0297712,-1.15756,2.07727,-0.0256692,-1.16351,2.08212,-0.110321,-1.16575,2.32604,0.0184177,-1.17417,2.3322,-0.0733632,-1.30602,2.31027,0.0148611,-1.27537,2.06438,-0.0282554,-1.29855,2.31765,-0.0769092,-1.27061,2.06881,-0.112931,-1.2396,2.09071,-0.152696,-1.26284,2.29113,-0.126716,-1.36806,2.04635,-0.238864,-1.23443,2.10217,-0.00800606,-1.3983,2.25056,-0.250438,-1.25692,2.29669,0.0270147,-1.18076,2.1223,0.216823,-1.19001,2.31387,0.228722,-1.18207,2.31309,0.200138,-1.15135,2.12443,0.182348,-1.23035,2.3054,0.0257135,-1.18311,2.318,-0.239417,-1.20719,2.11278,-0.0103211,-1.15887,2.11337,-0.241082,-1.17965,2.7168,-0.159535,-1.22215,2.83848,0.0730289,-1.16718,2.92168,-0.168629,-1.21004,3.0067,0.0958107,-1.16086,2.92485,0.261934,-1.15725,3.05118,0.269884,-1.16434,2.94289,0.298338,-1.18947,2.75239,0.296694,-1.23763,2.92766,0.0986492,-1.3979,2.89215,-0.113426,-1.25075,2.73072,0.0739701,-1.4041,2.68556,-0.11908,-1.24915,2.91443,-0.0479668,-1.26408,2.71104,-0.0663925,-1.29455,2.69903,-0.0285485,-1.27713,2.95037,-0.0056818,-1.29817,2.69984,0.0562947,-1.28378,2.94912,0.086439,-1.15209,2.94268,-0.0044702,-1.1429,2.93981,0.0873985,-1.18676,2.69316,-0.0279896,-1.17992,2.69164,0.05672,-1.30296,2.71042,0.0543414,-1.29796,2.70687,-0.0301548,-1.2767,2.94172,-0.00740456,-1.28189,2.94027,0.0846777,-0.471648,0.758845,0.827037,-0.47639,0.809023,0.687664,-0.44317,0.752505,0.554745,-0.391447,0.622398,0.506143,-0.351536,0.494843,0.570351,-0.346713,0.443704,0.709899,-0.380011,0.501168,0.842593,-0.43172,0.631364,0.891222,-0.464907,0.725081,0.79609,-0.434385,0.62763,0.845154,-0.394847,0.528202,0.808002,-0.369445,0.485022,0.706393,-0.373077,0.523354,0.599848,-0.403598,0.620776,0.550785,-0.443138,0.720235,0.587939,-0.468532,0.763438,0.689547,-0.395136,0.723591,0.779479,-0.397937,0.753225,0.697168,-0.378318,0.719847,0.61867,-0.347772,0.643009,0.589967,-0.324192,0.567722,0.627872,-0.321391,0.538089,0.710183,-0.341011,0.571466,0.788681,-0.371556,0.648304,0.817385,-0.335795,0.695423,0.741872,-0.325095,0.661926,0.758686,-0.311177,0.626698,0.745858,-0.302248,0.611731,0.709864,-0.303643,0.62478,0.673162,-0.313985,0.658408,0.656381,-0.327999,0.693601,0.669202,-0.336831,0.708603,0.705205,-0.308094,0.649179,0.724188,-0.300732,0.666968,0.709343,-0.315067,0.676912,0.69241,-0.43903,0.720972,0.786826,-0.44224,0.754934,0.692495,-0.419755,0.716681,0.602533,-0.384749,0.628623,0.569638,-0.357726,0.542341,0.61308,-0.354516,0.50838,0.70741,-0.376999,0.546632,0.797372,-0.412007,0.634692,0.830267,-0.462573,0.619801,0.881517,-0.412683,0.494099,0.834525,-0.38063,0.438,0.706543,-0.385199,0.488,0.571801,-0.423693,0.611144,0.50978,-0.473626,0.736744,0.556699,-0.505694,0.791304,0.685012,-0.501116,0.742864,0.819557,-1.28169,0.783167,0.500116,-1.31439,0.772254,0.638974,-1.3831,0.675977,0.719465,-1.44758,0.550733,0.694438,-1.47005,0.46989,0.578555,-1.43735,0.480803,0.439698,-1.36864,0.57708,0.359208,-1.30416,0.702324,0.384234,-1.36683,0.702481,0.422674,-1.41203,0.61467,0.405129,-1.46021,0.54717,0.461561,-1.48313,0.539518,0.558915,-1.46738,0.596199,0.640162,-1.42217,0.684008,0.657709,-1.374,0.751509,0.601276,-1.35107,0.759161,0.503921,-1.4979,0.699234,0.536661,-1.50707,0.699109,0.514144,-1.49625,0.687925,0.495466,-1.47258,0.729899,0.544411,-1.49169,0.703137,0.567166,-1.50969,0.66818,0.559864,-1.51569,0.646001,0.528376,-1.50691,0.649146,0.490532,-1.4877,0.675858,0.467794,-1.4698,0.710866,0.475079,-1.46347,0.732861,0.506629,-1.4089,0.715441,0.429682,-1.44835,0.63882,0.414373,-1.49039,0.57992,0.463614,-1.51039,0.573244,0.548563,-1.49664,0.622702,0.619456,-1.4572,0.699322,0.634768,-1.41516,0.758222,0.585525,-1.39516,0.764899,0.500577,-1.34943,0.754229,0.613967,-1.40384,0.67799,0.677704,-1.45489,0.578813,0.657887,-1.47269,0.514795,0.566121,-1.4468,0.523437,0.456165,-1.39238,0.599677,0.392427,-1.34133,0.698854,0.412243,-1.32353,0.762872,0.504008,-1.33065,0.721124,0.373086,-1.39744,0.591386,0.347162,-1.46862,0.491653,0.430541,-1.50249,0.480347,0.574382,-1.47922,0.564093,0.694423,-1.41243,0.693832,0.720347,-1.34125,0.793563,0.636969,-1.30738,0.804869,0.493128,-1.1387,3.6371,0.468567,-1.22649,3.63696,0.237505,-1.18945,3.41472,0.198948,-0.426742,3.23194,0.604395,-0.470508,3.56753,0.731794,-0.542733,3.57427,0.822832,-1.13453,2.62872,0.464041,-1.10653,3.39736,0.379742,-1.07581,3.30326,0.594643,-0.644835,3.26747,0.755962,-0.815241,3.28029,0.760304,-1.28952,3.60918,0.686216,-1.14181,3.47319,0.452306,-0.684705,3.54608,1.04149,-0.685484,3.34015,0.81319,-1.12105,3.36915,0.653331,-0.852567,3.34372,0.821244,-1.19299,3.61027,0.901944,-0.925588,3.58213,1.04864,-1.16063,4.27985,1.01026,-1.14546,4.2619,0.865962,-0.794313,4.22245,1.07045,-0.927245,4.25489,1.13958,-0.752132,4.20086,1.04467,-1.1268,4.24356,0.825684,-1.12281,4.2403,0.957099,-0.862456,4.2154,1.0985,-1.2631,3.96815,0.755207,-1.18127,3.95905,0.955049,-0.922362,3.93108,1.09752,-0.698909,3.90903,1.08484,-0.595228,3.89835,0.949626,-1.1641,3.95603,0.619554,-1.18042,3.6254,0.532356,-1.11199,3.42796,0.411991,-0.658016,3.29435,0.771852,-0.582632,3.56636,0.881002,-1.08919,3.32815,0.614797,-0.825785,3.3026,0.780029,-0.762319,4.20267,1.04122,-1.12175,4.24207,0.834693,-1.13386,4.24472,0.969683,-0.878053,4.21923,1.11046,-0.623161,3.89911,0.985424,-1.19094,3.95745,0.656643,-1.13884,4.25579,0.859541,-1.15323,4.27779,1.0017,-0.922825,4.25418,1.12829,-0.792154,4.22123,1.05628,-0.750212,4.1889,1.01569,-1.10624,4.22432,0.817632,-0.858358,4.20892,1.09984,-1.13018,4.23842,0.952766,-0.760449,4.19896,1.02268,-1.11101,4.23299,0.828461,-1.22313,1.96501,-0.164316,-0.438147,1.95874,-0.334969,-1.25705,2.9606,-0.12313,-0.405432,2.83781,-0.307541,-0.84157,1.97014,-0.508298,-0.688881,1.96842,-0.509431,-0.544934,1.96521,-0.45431,-1.12238,1.96858,-0.345025,-0.830269,2.79316,-0.513749,-0.659552,2.78079,-0.511174,-0.513543,2.78787,-0.443813,-1.14695,2.86898,-0.343794,-0.492567,0.56513,-0.236922,-0.443228,0.500372,0.448055,-1.06365,1.07321,0.902392,-0.958949,0.617847,-0.372038,-1.25808,0.447811,0.201422,-1.29364,0.451291,0.491077,-0.681836,0.614064,-0.399434,-0.670351,1.05663,0.896327,-0.420401,0.499821,0.0774494,-0.504655,0.77233,0.710401,-1.27436,0.755856,0.667344,-1.1803,0.547528,-0.150128,-0.49063,0.808224,-0.221302,-0.46682,0.770671,0.371242,-1.05464,1.12361,0.811898,-0.942941,0.842551,-0.36205,-1.22685,0.719301,0.115581,-1.26795,0.805694,0.325799,-0.693526,0.841422,-0.390631,-0.683853,1.11407,0.825546,-0.446668,0.76729,0.0561294,-0.564421,0.974904,0.615938,-1.211,1.00049,0.58177,-1.16147,0.792742,-0.149371,-0.967188,-0.018647,2.40426,-1.13453,-0.0203847,2.37202,-0.823457,-0.0198748,2.38467,-0.809005,0.0325416,2.33447,-1.07209,0.0510701,2.3163,-0.893923,0.125016,2.29119,-1.02074,0.113292,2.28974,-0.839676,0.0959581,2.30207,-0.961976,0.133399,2.28458,-0.969559,0.259861,2.14233,-0.724543,0.203432,2.16162,-1.09201,0.220801,2.15336,-0.839232,0.251446,2.14499,-1.18806,0.113996,2.18976,-0.645202,0.0951669,2.21594,-0.603427,-0.0179201,2.29931,-1.27847,-0.0189629,2.2491,-1.42552,-0.0169413,2.05732,-0.444914,-0.0139401,2.08208,-0.49856,0.166917,1.99409,-1.32063,0.183475,1.96372,-0.788687,0.365008,1.89927,-1.18661,0.323398,1.9102,-0.616103,0.309686,1.9268,-0.989071,0.371171,1.89312,-1.01374,0.540953,1.38251,-0.522205,0.471839,1.41005,-1.2993,0.473228,1.36588,-0.748818,0.537647,1.39732,-1.44443,0.303328,1.35873,-0.379578,0.293797,1.41914,-0.29123,-0.00875905,1.42486,-1.53179,-0.010603,1.35011,-1.2588,1.69611,0.0295458,-1.17364,1.56637,-0.267685,-0.674915,1.39376,-0.551358,-0.518049,1.824,0.512089,-0.368004,1.47116,-0.00213536,-0.923451,1.40956,-0.477056,-0.948356,1.84885,0.644676,-0.386267,1.53637,0.282788,-0.449576,1.43313,-0.344297,-0.693519,1.22565,0.78078,-1.00643,1.2379,0.752093,-1.1813,1.12686,0.546332,-1.26198,0.994609,0.254501,-1.2241,0.901522,0.057362,-1.15526,0.936109,-0.161304,-0.975422,1.05707,-0.350177,-0.652624,1.05513,-0.403956,-0.496434,0.937528,-0.215228,-0.453919,0.89661,0.052879,-0.4807,0.914508,0.333385,-0.561114,1.16262,0.615138,-1.03114,0.576117,1.45191,-0.474913,0.498672,1.49164,-1.34022,0.480573,1.43986,-0.717959,0.572311,1.47096,-1.5005,0.315859,1.44872,-0.322473,0.313381,1.50789,-0.242143,-0.00538064,1.51441,-1.60639,-0.00800738,1.4341,-1.49446,-0.00800739,1.05429,-0.353938,-0.00538066,1.1223,-0.410575,0.405881,1.11904,-1.39389,0.417132,1.06175,-0.761604,0.717829,1.09409,-1.26454,0.631052,1.06623,-0.549899,0.628829,1.10812,-1.00451,0.722621,1.08,-1.01121,0.769896,1.12677,-0.535931,0.693736,1.15985,-1.27562,0.685301,1.11579,-0.754899,0.769875,1.14223,-1.43233,0.460483,1.10423,-0.376909,0.449494,1.16343,-0.267527,-0.00593823,1.16142,-1.58994,-0.00767138,1.09089,-1.42623,-0.0076714,0.680632,-0.38605,-0.00593825,0.739454,-0.482041,0.526223,0.732762,-1.30903,0.538864,0.685368,-0.779184,0.92184,0.702853,-1.1516,0.81285,0.686929,-0.602827,0.810763,0.718585,-0.964778,0.927848,0.692324,-0.417894,-0.00984579,1.84956,-1.4553,-0.0145746,1.78968,-0.48113,0.183269,1.84483,-1.34194,0.197319,1.79506,-0.78208,0.383604,1.82495,-0.601048,0.328858,1.83582,-1.20989,0.339412,1.80145,-0.994081,0.38865,1.81355,-1.00287,0.411684,1.89756,-1.23143,0.359827,1.88437,-0.587912,0.350116,1.92111,-0.778677,0.406213,1.91008,-1.3694,0.215038,1.87798,-0.460796,0.199147,1.92979,-1.48882,-0.010603,1.87271,-0.393452,-0.00875902,1.93436,-0.483061,0.918893,-0.261493,-0.407708,0.645055,0.433872,-0.972583,0.941604,-0.394494,-1.30573,0.779052,0.0601763,-1.30801,0.674926,0.297017,-0.697485,0.942773,-0.409251,-0.368221,0.775207,0.0982228,-0.447269,0.524723,0.826392,-1.43636,0.531792,0.783078,-1.19947,0.869701,-0.215343,-0.688416,-0.000471539,-0.530173,-1.29418,-0.000954014,-0.261905,-1.31427,-0.000216971,0.0199876,-1.42396,-0.00487804,0.279502,-0.374554,5.4809e-06,-0.307325,-0.384971,-4.56419e-06,0.0460228,-0.373184,-0.00298742,0.422124,-1.0859,-0.00188332,-0.505957,-0.41139,0.284188,0.411641,-0.358221,0.416938,0.0677702,-0.386812,0.443307,-0.27676,-1.34579,0.311081,0.273482,-1.35331,0.381952,0.0331711,-1.2952,0.430867,-0.228576,-1.00734,0.438138,-0.502808,-0.652995,0.439546,-0.527172,-0.690495,0.66343,-0.485095,-1.21198,0.652108,-0.214627,-1.31194,0.61275,0.0523661,-1.32183,0.515338,0.292823,-0.480923,0.642125,-0.232034,-0.370712,0.627356,0.0883579,-0.413214,0.508401,0.400208,-0.975312,0.664804,-0.469289,-1.63458,-0.00756974,0.777364,-1.56767,0.187303,0.77787,-1.51534,0.356098,0.780409,-0.329314,0.120074,0.836475,-0.291127,-0.00531839,0.835047,-0.386437,0.333067,0.832039,-1.03999,1.2655,-0.235683,-0.569513,1.22225,-0.303251,-0.674518,1.23169,-0.32462,-0.8029,1.24442,-0.343529,-0.498908,1.21409,-0.14785,-1.1214,1.26855,-0.10603,-1.25997,2.97898,0.140663,-0.409203,2.93628,0.549532,-1.27732,2.18247,0.0543973,-0.720471,1.56232,0.765338,-0.989275,1.55424,0.741906,-1.2027,1.50543,0.521559,-1.30173,1.39626,0.236243,-1.29136,1.33146,0.0314089,-1.21453,1.21887,-0.236961,-0.986465,1.23956,-0.451962,-0.625595,1.2253,-0.514734,-0.424713,1.19141,-0.306086,-0.356149,1.19359,0.0213254,-0.377923,1.23808,0.315482,-0.498865,1.50303,0.592724,-0.68866,2.21967,0.659677,-0.936335,2.21373,0.633986,-0.475573,2.22294,0.506601,-1.28604,2.65693,0.0900661,-0.433065,2.65125,0.503923,-1.10805,2.95503,0.522165,-0.654891,2.93057,0.70477,-1.23554,2.63909,0.261535,-0.667739,2.61901,0.663177,-0.897602,2.6115,0.643142,-1.19757,2.97153,0.312404,-0.869892,2.93121,0.686346,-1.12935,2.20427,0.461606,-1.24412,2.19031,0.233759,-0.734359,1.53595,0.725466,-0.971002,1.52656,0.703538,-1.1644,1.47498,0.499725,-1.2548,1.36474,0.229623,-1.24203,1.30037,0.0383351,-1.17166,1.20257,-0.208238,-0.959975,1.23972,-0.414895,-0.651475,1.23152,-0.47898,-0.464981,1.18531,-0.277857,-0.4072,1.17905,0.0259123,-0.430778,1.21579,0.30477,-0.53366,1.4805,0.563857,-0.70882,1.84701,0.65709,-1.13096,1.83192,0.46053,-1.23768,1.77156,0.20991,-0.720842,1.57616,0.755234,-0.984541,1.5684,0.733096,-1.19371,1.52398,0.517696,-1.29295,1.42001,0.237227,-1.2863,1.35528,0.0359704,-1.20773,1.23761,-0.234894,-0.977103,1.24274,-0.452415,-0.634996,1.22837,-0.516409,-0.432152,1.19985,-0.30732,-0.362222,1.20599,0.0206402,-0.385806,1.2525,0.31833,-0.504674,1.52329,0.587916,-0.807689,0.0299927,-0.492847,-0.942691,0.0299927,-0.481133,-0.359224,0.0299937,1.47569,-1.47985,0.0299937,1.41111,-1.17537,0.0299937,1.42866,-0.673346,0.0299937,1.45759,-0.725063,0.0299937,1.85888,-1.16295,0.0299937,1.83365,-1.42853,0.0299937,1.81834,-0.451072,0.0299937,1.87467,-1.05374,0.0299928,2.33639,-0.859097,0.0299928,2.34589,-0.770581,0.0299937,2.11211,-0.542702,0.0299928,2.1253,-1.35546,0.0299928,2.07835,-1.13469,0.0299937,2.09113,-0.434882,0.0299927,-0.277621,-0.435881,0.0299936,0.0426964,-0.483464,0.0299936,0.429721,-0.44443,0.0299936,0.751881,-0.364531,0.0299936,1.08626,-0.390553,0.0299937,1.47388,-0.478399,0.0299937,1.8731,-0.565421,0.0299928,2.12399,-1.23207,0.0299927,-0.259831,-1.24413,0.0299927,0.0167871,-1.23711,0.0299936,0.289029,-1.43064,0.0299936,0.769393,-1.51564,0.0299936,1.0719,-1.44272,0.0299937,1.41325,-1.39614,0.0299937,1.82021,-1.32852,0.0299928,2.07989,-0.838436,0.0299928,2.31446,-0.671746,0.0296693,2.27841,-1.20962,0.0303478,2.25963,-1.0682,0.0299928,2.30443,-0.687756,0.0299928,2.26127,-1.1935,0.0299928,2.24444,-0.628204,0.0296718,-0.452036,-0.802039,0.0299927,-0.478304,-0.945884,0.0299927,-0.4675,-1.07671,0.0298213,-0.445532,-0.634576,0.0300394,-0.439375,-1.06924,0.0299743,-0.433666,-1.12995,7.8569,0.714685,-1.00714,7.20072,0.746596,-1.02269,7.49328,0.649214,-1.27514,8.15058,0.578731,-1.40046,8.33476,0.55027,-1.20424,6.54073,0.986012,-1.04514,6.97139,0.800967,-1.17416,6.74623,0.891382,-1.18057,6.33855,1.01379,-0.948971,7.16841,0.718945,-1.04401,6.9186,0.798224,-1.15495,6.6788,0.887791,-1.16664,6.49928,0.971315,-1.22552,6.37398,1.05179,-1.00855,7.21509,0.733584,-1.023,6.99536,0.784728,-1.16298,6.7643,0.876388,-1.2078,6.53778,0.973894,-1.22603,6.36473,1.04386,-1.07007,8.57608,1.00257,-1.2399,2.46154,-0.143916,-0.430924,2.4002,-0.313413,-0.836087,2.38005,-0.510881,-0.674363,2.37302,-0.510236,-0.533351,2.37653,-0.445343,-1.13506,2.41733,-0.34384,-0.808101,1.60089,-0.429119,-1.07265,1.61361,-0.292247,-1.16391,1.61326,-0.136877,-0.461127,1.58745,-0.239428,-0.552853,1.59455,-0.378117,-0.674513,1.59767,-0.418766,-1.34678,4.5588,-0.109181,-0.187992,4.37302,-0.236215,-0.816057,4.4791,-0.61683,-0.351011,4.40152,-0.509169,-0.589679,4.44448,-0.600021,-1.17418,4.5277,-0.426184,0.00264589,9.36275,-0.824212,-8.88178e-16,9.47257,-0.749116,4.7793e-05,9.56352,-0.703089,9.71987e-05,9.5274,-0.696397,-8.88178e-16,8.7246,-1.06399,-8.88178e-16,8.50177,-1.09809,-8.88178e-16,9.58858,0.71652,-8.88178e-16,7.03062,1.54958,-8.88178e-16,8.25064,1.38608,-8.88178e-16,7.5215,1.40938,-8.88178e-16,6.80268,1.60483,-8.88178e-16,7.36207,1.42218,-8.88178e-16,6.80099,1.60699,-8.88178e-16,7.16549,1.43903,-8.88178e-16,9.37562,0.739489,-8.88178e-16,7.98125,1.34516,-0.489939,6.17145,1.33462,-0.211612,6.16503,1.44164,0,6.16036,1.45212,-0.0926574,5.02553,1.11216,-0.459281,6.19865,1.34175,-0.237441,5.36835,1.3399,-0.464685,5.81186,1.40443,-0.46014,6.17095,1.34599,0.958961,7.50396,-0.42415,0.907277,7.2516,-0.396789,0.480256,7.39369,-0.715444,0.562134,7.63184,-0.782478,0.122297,7.50542,-0.73986,0.2145,7.74688,-0.821681,-0.217269,7.62049,-0.807362,-0.125763,7.8621,-0.831242,-0.555768,7.73631,-0.856878,-0.506037,7.97933,-0.891732,-0.980121,8.17969,-0.747162,-1.02029,7.97131,-0.598804,-0.869736,7.8666,-0.735697,-0.828094,8.07838,-0.876193,0.891237,7.25797,-0.40195,0.943918,7.50953,-0.434534,-0.887215,7.50953,-0.510176,-0.81285,7.25418,-0.460016,0.828094,8.07838,-0.876193,0.869736,7.8666,-0.735697,1.02029,7.97131,-0.598804,0.987291,8.16005,-0.729402,0.506037,7.97933,-0.891732,0.555768,7.73631,-0.791342,0.125763,7.8621,-0.785117,0.217269,7.62049,-0.761238,-0.214039,7.7468,-0.769206,-0.122013,7.50534,-0.687385,-0.576891,7.60804,-0.792883,-0.483288,7.36705,-0.709315,-0.829049,7.24781,-0.455338,-0.902413,7.50396,-0.502548,-0.00149369,7.12352,-0.669808,0.00257322,6.86799,-0.759762,0.630834,7.12862,-0.543915,0.635149,6.87205,-0.586496,-0.69347,6.84615,-0.547242,-0.697537,7.10167,-0.506357,0.31467,7.12607,-0.64413,0.318861,6.87002,-0.711233,-0.377977,6.85605,-0.715733,-0.382044,7.11157,-0.627503,-1.07567,8.24793,-0.746741,-1.26486,8.41599,-0.644328,-0.932359,8.52427,-0.96859,-1.11276,8.70169,-0.87151,-0.929247,8.95635,-0.84102,-0.74885,8.77894,-0.937249,0.763104,8.7652,-0.995331,0.943501,8.94262,-0.899102,1.11506,8.69738,-0.881548,0.934661,8.51996,-0.978628,1.27156,8.41397,-0.625966,1.08236,8.24591,-0.728379,1.16576,8.60215,-0.839401,0.982431,8.42785,-0.938258,-0.978103,8.43606,-0.935005,-1.16131,8.6105,-0.835039,0.907404,6.86516,-0.385721,0.903089,7.12172,-0.342586,-0.952604,7.09753,-0.286948,-0.948537,6.84201,-0.329097,0.947527,7.50956,-0.396987,0.895842,7.2572,-0.369625,0.471442,7.40314,-0.688373,0.554161,7.64127,-0.755139,0.121909,7.51322,-0.710892,0.214123,7.75469,-0.792719,-0.219324,7.62611,-0.777965,-0.12778,7.86776,-0.801851,-0.553271,7.74286,-0.827711,-0.502592,7.98622,-0.862738,-0.958089,8.18814,-0.728635,-0.99826,7.97976,-0.580278,-0.853484,7.87548,-0.712097,-0.811997,8.08727,-0.852488,0.877485,7.26524,-0.3763,0.92959,7.51722,-0.409325,-0.875017,7.51935,-0.484588,-0.801318,7.26366,-0.433994,0.81301,8.08933,-0.852687,0.854419,7.87749,-0.712313,0.998254,7.97974,-0.58028,0.965253,8.16848,-0.710878,0.503247,7.99001,-0.863836,0.553852,7.74662,-0.763236,0.127902,7.86966,-0.756164,0.21943,7.62807,-0.732291,-0.215754,7.75428,-0.740206,-0.123699,7.51282,-0.658382,-0.571725,7.6183,-0.76517,-0.477223,7.37746,-0.681844,-0.82102,7.25543,-0.427457,-0.894384,7.51159,-0.474667,-0.00138016,7.11418,-0.6413,0.00270323,6.85865,-0.731255,0.616788,7.1234,-0.517925,0.621382,6.86677,-0.56037,-0.677578,6.84107,-0.522309,-0.681295,7.09675,-0.481619,0.307999,7.11861,-0.61585,0.312394,6.86248,-0.682928,-0.370175,6.84772,-0.687989,-0.373824,7.1034,-0.599834,-1.05578,8.25757,-0.726455,-1.24497,8.42563,-0.624042,-0.920388,8.52146,-0.941226,-1.10169,8.69784,-0.843894,-0.922423,8.94804,-0.813016,-0.742026,8.77062,-0.909245,0.753134,8.76017,-0.967488,0.933531,8.93759,-0.871259,1.10208,8.69585,-0.854545,0.921176,8.51906,-0.951845,1.25125,8.42473,-0.606686,1.06205,8.25667,-0.709099,1.14725,8.60895,-0.816791,0.963906,8.43468,-0.915672,-0.960035,8.44197,-0.911796,-1.14334,8.61622,-0.811711,0.889696,6.86088,-0.361887,0.88538,7.11744,-0.318753,-0.933165,7.09417,-0.264348,-0.929098,6.83865,-0.306496,5.18959,9.35857,-0.102872,5.13196,8.67238,-0.168157,5.18907,9.36588,-0.115429,5.17987,9.26979,0.0354708,5.19694,9.36792,-0.380305,5.16548,9.15789,0.105614,5.16123,9.16407,-0.612637,5.12678,8.86793,-0.583085,5.12154,8.70727,-0.409684,5.16946,9.00376,0.154364,4.96705,8.87567,0.111074,5.05708,8.9247,0.116063,4.8426,9.13069,0.127892,4.74615,9.08004,0.129151,5.0577,8.78045,0.0279813,5.13568,8.82825,0.0379982,4.87903,8.97089,0.155275,4.97703,9.02115,0.155726,5.20922,8.72843,-0.135429,5.08716,8.71381,-0.156249,5.12652,8.73566,-0.281169,5.21304,8.75202,-0.271068,4.94294,9.12019,0.0826645,5.03123,9.06974,0.0825777,4.793,8.69017,0.0247716,4.68174,8.71687,0.0577376,4.92014,8.89338,0.103624,4.82593,8.94347,0.137803,4.57997,8.62508,-0.132276,4.6918,8.63047,-0.158464,4.57643,8.66027,-0.279749,4.45999,8.67663,-0.269648,4.7408,8.67073,-0.271068,4.62647,8.65437,-0.281169,4.57036,8.63924,-0.15502,4.72527,8.64714,-0.135429,4.45273,8.92293,0.134624,4.35668,8.87284,0.133019,4.6287,8.74695,0.0219037,4.53028,8.69916,0.012151,4.14358,9.08807,0.132303,4.23756,9.13853,0.13239,3.95027,8.6535,-0.32502,4.08195,8.65116,-0.322612,4.12279,9.11246,0.038473,4.00368,9.11124,0.0257229,4.00751,8.6549,-0.00387725,4.01114,8.84191,0.109665,4.13577,8.66689,-0.00453606,4.13152,8.85519,0.115487,4.02086,9.06641,0.0277219,4.14051,9.06698,0.0390865,4.14769,9.05713,0.136526,4.02699,9.05656,0.124554,4.13103,8.84166,0.137565,4.11899,8.55616,0.0512316,4.0088,8.82819,0.131661,3.99064,8.55402,0.051442,4.0094,9.1013,0.118953,4.12912,9.10251,0.132024,4.12744,8.73499,0.0697622,4.00131,8.72695,0.0668861,3.97255,8.76966,0.119836,4.15719,8.77253,0.12758,3.97323,8.82479,0.141118,4.15413,8.83292,0.150402,4.15971,8.80654,0.0151694,4.15596,8.87006,0.0268802,3.97566,8.7989,0.0212496,3.97568,8.8572,0.0314823,3.97368,8.82822,0.129619,3.97304,8.77286,0.109135,4.15782,8.77703,0.112764,4.15458,8.83768,0.134624,3.97415,8.6455,-0.224151,4.10457,8.65411,-0.222644,4.1357,8.97038,0.155297,4.0149,8.96648,0.145355,4.14072,8.65155,0.0457747,4.01275,8.64628,0.0448837,4.78039,9.40658,-0.0758903,4.76216,8.60106,-0.158204,4.78223,9.41594,-0.0897542,4.78764,9.3185,0.0524774,4.80853,9.45278,-0.399189,4.80446,9.19037,0.120447,4.78208,9.20776,-0.664155,4.74916,8.84774,-0.630498,4.73625,8.63754,-0.432423,4.82671,9.00896,0.193148,5.81292,8.9698,0.231106,5.85223,8.89834,0.193407,6.09238,8.86075,0.441783,6.05889,8.91491,0.479462,6.13263,9.06693,0.434664,6.1976,9.05422,0.378486,5.97695,9.12428,0.12241,5.90066,9.13654,0.188919,4.31381,9.44199,-0.0618918,4.2985,9.44424,-0.0635358,4.05855,9.47121,-0.017392,4.51904,9.44486,-0.0581054,5.49535,9.29461,-0.130617,4.27963,9.03584,0.195479,4.12353,8.67239,-0.488393,3.94936,8.97942,-0.793941,3.96388,9.17557,-0.811735,4.27259,9.20613,0.123737,4.2338,9.47144,-0.430466,4.28524,9.33671,0.0495489,4.31738,9.45015,-0.0705113,4.159,8.6346,-0.188733,3.18435,8.94545,-0.802984,3.21318,9.28523,-0.834873,3.83697,9.5561,-0.411871,4.04619,9.50936,-0.0266839,3.90232,8.95371,-0.951788,3.91709,9.17944,-0.972256,4.3553,9.49459,-0.085989,4.29335,9.54822,-0.481011,3.44224,8.74425,-0.601675,3.59093,8.65176,-0.336891,4.19712,8.58747,-0.19124,4.15014,8.58921,-0.556903,5.42449,8.74371,-0.178109,4.52216,8.5898,-0.152909,4.1348,8.63906,-0.191443,4.30552,9.45117,-0.0699893,4.272,9.33513,0.0510349,4.20998,9.46862,-0.431985,4.25321,9.20597,0.121319,3.92268,9.17111,-0.820164,3.90956,8.99009,-0.803735,4.09708,8.67762,-0.490771,4.25988,9.03723,0.188107,4.06171,9.48015,-0.0290835,3.97984,9.33767,0.102296,3.92329,9.21192,0.140946,3.88343,9.06108,0.143446,4.52157,9.45551,-0.0728152,4.53049,9.35201,0.0649886,4.55752,9.50919,-0.411319,4.55611,9.21338,0.134445,4.52887,9.236,-0.69745,4.49537,8.83469,-0.66114,4.49929,8.62569,-0.450121,4.58325,9.01254,0.203868,5.48857,9.28069,-0.361534,5.4981,9.29899,-0.14191,5.48819,9.21409,0.0183646,5.46127,9.12224,0.0913291,5.44745,8.88813,-0.535673,5.42456,8.77699,-0.386944,5.45184,8.99878,0.118106,5.4647,9.12043,-0.561116,5.44332,8.73495,0.100872,5.4565,9.24885,0.103988,5.47256,9.3663,-0.392541,5.47533,9.29927,-0.502092,5.46829,9.39265,-0.175882,5.47086,9.39611,-0.276114,5.4609,9.31769,0.031806,5.46352,9.35818,-0.0476925,5.42713,8.61162,-0.0998135,5.42938,8.67674,-0.00595385,5.43057,8.58601,-0.337064,5.42848,8.58258,-0.239573,5.44278,8.69157,-0.529697,5.43492,8.62755,-0.447478,5.46988,8.82451,-0.641673,5.48026,8.99049,-0.658712,5.49064,9.13993,-0.675752,5.45197,9.13692,0.208964,5.44097,8.9996,0.236854,5.43933,8.84832,0.213619,5.70189,8.81395,0.0898769,5.26142,8.67462,0.147307,5.2978,9.30073,0.147513,5.3165,9.40985,-0.414438,5.31507,9.33484,-0.543873,5.72037,9.23602,-0.384707,5.73113,9.18198,-0.488114,5.71384,9.25262,-0.163536,5.71649,9.25468,-0.268192,5.3125,9.43769,-0.177545,5.31544,9.44164,-0.290299,5.30225,9.35829,0.0489659,5.3071,9.40189,-0.0432082,5.71136,9.1967,0.0395035,5.71064,9.23203,-0.0382047,5.69757,8.75679,-0.103305,5.69943,8.78288,-0.000410627,5.26265,8.54643,-0.0961424,5.27375,8.57597,0.018465,5.26856,8.53709,-0.354748,5.26592,8.5312,-0.242787,5.70042,8.74722,-0.331948,5.69836,8.74489,-0.226228,5.71808,8.80561,-0.513113,5.70528,8.75953,-0.433351,5.28843,8.62652,-0.56972,5.27526,8.57773,-0.471744,5.7576,9.05903,-0.598629,5.74801,8.96286,-0.605562,5.74124,8.89017,-0.59075,5.29574,9.16957,-0.732011,5.29996,9.00274,-0.750165,5.30059,8.79493,-0.723831,5.70433,8.98179,0.205973,5.70898,8.9085,0.179451,5.26641,8.84434,0.276775,5.27168,9.01464,0.300472,5.28855,9.17683,0.273982,5.7149,9.14698,0.102829,5.70846,9.05461,0.174994,6.49213,9.15533,-0.598623,6.63174,9.20955,-0.623172,6.35115,9.24484,-0.568174,6.36484,9.28955,-0.464205,6.62843,9.15688,-0.509625,6.5005,9.17354,-0.490761,6.37074,9.33473,-0.0411153,6.63864,9.1471,-0.0269347,6.51655,9.20652,-0.0405739,6.33858,9.19705,-0.668319,6.38117,9.35441,-0.26453,6.32958,9.2457,0.166441,6.3763,9.33593,-0.352561,6.37937,9.35739,-0.161182,6.35642,9.29934,0.0591969,6.63882,9.13101,-0.255033,6.6254,9.13459,0.148849,6.62114,9.17414,-0.756287,6.65038,9.2252,-0.387692,6.66092,9.23647,-0.126912,6.64802,9.21131,0.0554855,6.50947,9.19346,0.0601968,6.5183,9.22651,-0.364727,6.52363,9.23131,-0.264977,6.52777,9.24857,-0.153468,6.48991,9.14388,0.181109,6.48133,9.11854,-0.699323,5.85292,9.11706,-0.603598,5.84196,9.28774,-0.0520971,5.85306,9.22159,-0.472468,5.84789,9.29808,-0.261897,5.80412,9.18633,0.10529,5.85052,9.28612,-0.368465,5.84551,9.29688,-0.1644,5.83273,9.24755,0.0295016,5.56568,9.31331,0.0178463,5.56798,9.36499,-0.169827,5.57401,9.34965,-0.374259,5.5744,9.25228,0.0650122,5.61725,9.18174,-0.571995,5.58396,9.2997,-0.469839,5.56502,9.34596,-0.0539808,5.57043,9.3669,-0.266562,6.0664,9.10222,-0.630811,6.07967,9.25926,-0.0521186,6.08104,9.18121,-0.482696,6.0857,9.27234,-0.266513,6.04353,9.15957,0.161724,6.08459,9.2439,-0.376418,6.08344,9.27356,-0.1691,6.07326,9.22566,0.0439849,6.22167,9.15742,-0.656728,6.21845,9.15845,0.177487,6.23878,9.24226,-0.0678524,6.23575,9.21565,-0.507124,6.24619,9.25935,-0.286629,6.24214,9.24625,-0.402638,6.24314,9.26177,-0.191188,6.23656,9.21994,0.0338962,6.42794,9.18863,0.0274598,6.4339,9.21064,-0.201778,6.43326,9.18191,-0.421409,6.4124,9.13205,-0.628701,6.41613,9.16458,0.144365,6.42667,9.15868,-0.52689,6.43812,9.2078,-0.302182,6.42868,9.19644,-0.0800807,5.99311,9.30921,0.0445054,6.00352,9.35822,-0.173533,6.0047,9.32788,-0.385671,5.96269,9.24158,0.164982,6.00584,9.35698,-0.273211,6.00106,9.26373,-0.49442,5.99967,9.34359,-0.0538324,5.98609,9.1829,-0.645979,6.2104,8.84002,0.724453,6.21749,8.78246,0.659902,6.43923,8.65151,0.846311,6.43643,8.69617,0.903928,6.5391,8.85896,0.881638,6.57943,8.86248,0.809321,6.36445,8.99023,0.614545,6.31786,8.99066,0.701284,6.11645,9.06197,0.465565,6.18315,9.05462,0.399779,6.39091,8.94457,0.61417,6.33424,8.95295,0.670056,6.25802,8.8133,0.695426,6.28369,8.76673,0.652726,6.05614,8.84742,0.442227,6.02628,8.91009,0.487378,6.87585,9.06778,-0.791544,6.84365,8.99127,-0.807368,7.08247,8.92813,-0.835309,7.10613,8.98433,-0.823686,7.14027,8.9992,-0.695546,7.12795,8.95612,-0.66872,6.89473,9.0189,-0.608766,6.90559,9.08013,-0.649746,6.70099,9.08903,-0.59733,6.70134,9.02357,-0.56182,6.94195,9.00881,-0.62361,6.94632,9.05554,-0.646529,6.9152,9.04583,-0.77593,6.90198,8.98751,-0.792583,6.65575,9.00435,-0.762736,6.67375,9.08375,-0.740065,6.47443,9.1191,-0.696952,6.45314,9.04075,-0.720381,6.69862,9.0133,-0.74851,6.71426,9.07086,-0.731301,6.74476,9.07822,-0.601598,6.73816,9.03156,-0.57908,6.49796,9.05643,-0.518983,6.50077,9.1221,-0.55398,6.58706,9.15406,-0.453753,6.57254,9.08894,-0.481253,6.83646,9.07548,-0.514881,6.84915,9.13488,-0.490829,6.86946,9.1306,-0.356757,6.86242,9.07927,-0.338955,6.59735,9.0856,-0.293673,6.60037,9.14429,-0.317964,6.85562,9.1751,-0.363666,6.85296,9.10481,-0.32911,7.18971,9.0529,-0.393175,7.19611,9.1007,-0.415388,7.17596,9.09254,-0.549306,7.16408,9.03348,-0.568102,6.82671,9.08891,-0.531748,6.84263,9.1734,-0.506579,7.16306,9.12089,-0.569436,7.13837,9.04366,-0.593231,7.43031,8.99038,-0.61034,7.44875,9.04806,-0.59257,7.46923,9.05641,-0.458715,7.45737,9.01007,-0.43566,7.16802,9.06084,-0.374282,7.17827,9.12535,-0.410032,6.6323,9.16951,-0.219275,6.61537,9.09984,-0.24958,6.93433,9.07476,-0.267459,6.94806,9.1344,-0.242888,6.96143,9.12979,-0.107957,6.95154,9.07832,-0.0904558,6.63177,9.09589,-0.0461437,6.63887,9.15893,-0.0722469,6.95379,9.15256,-0.0997597,6.94609,9.0779,-0.0714212,7.25376,9.04465,-0.122943,7.26365,9.09656,-0.140444,7.25028,9.10117,-0.275375,7.23656,9.04093,-0.299946,6.92828,9.08072,-0.292278,6.94666,9.16405,-0.259377,7.24563,9.1381,-0.2868,7.22551,9.05706,-0.31916,7.57112,8.99473,-0.328901,7.58614,9.05106,-0.304734,7.59845,9.04732,-0.169675,7.58716,8.99861,-0.15181,7.24166,9.05538,-0.0981512,7.25134,9.12787,-0.127039,7.19866,9.06718,0.191334,7.18132,9.00008,0.218576,7.48993,8.94429,0.217909,7.50621,8.99221,0.201864,7.51516,8.99511,0.0665205,7.50133,8.93931,0.0346215,7.19972,9.00127,-0.00813474,7.21824,9.07599,0.0325902,6.94976,9.10364,0.0243505,6.93776,9.02612,-0.0222611,7.2448,8.99976,0.0182315,7.25426,9.05746,0.0560114,7.24669,9.05338,0.191409,7.23615,9.00337,0.207469,6.92318,9.02279,0.210435,6.93247,9.09244,0.18321,6.63324,9.14165,0.168271,6.6532,9.07284,0.195496,6.94227,9.03516,0.192953,6.95614,9.08504,0.176893,6.96396,9.0886,0.0414958,6.95455,9.03059,0.00567061,6.65446,9.08003,-0.0432736,6.65123,9.15168,0.00941143,-5.18958,9.35857,-0.102872,-5.13196,8.67238,-0.168157,-5.18907,9.36588,-0.115429,-5.17987,9.26979,0.0354708,-5.19694,9.36792,-0.380305,-5.16548,9.15789,0.105615,-5.16123,9.16407,-0.612637,-5.12678,8.86793,-0.583085,-5.12154,8.70726,-0.409684,-5.16946,9.00376,0.154364,-4.96705,8.87567,0.111074,-5.05708,8.9247,0.116063,-4.8426,9.13069,0.127892,-4.74615,9.08004,0.129151,-5.0577,8.78045,0.0279814,-5.13568,8.82825,0.0379983,-4.87903,8.97089,0.155275,-4.97703,9.02115,0.155726,-5.20922,8.72843,-0.135429,-5.08716,8.71381,-0.156249,-5.12652,8.73566,-0.281169,-5.21304,8.75202,-0.271068,-4.94294,9.12019,0.0826646,-5.03123,9.06973,0.0825777,-4.793,8.69017,0.0247716,-4.68174,8.71687,0.0577377,-4.92014,8.89338,0.103624,-4.82593,8.94347,0.137803,-4.57997,8.62508,-0.132276,-4.6918,8.63046,-0.158464,-4.57643,8.66027,-0.279749,-4.45999,8.67663,-0.269648,-4.7408,8.67073,-0.271068,-4.62647,8.65437,-0.281169,-4.57036,8.63924,-0.15502,-4.72527,8.64714,-0.135429,-4.45273,8.92293,0.134624,-4.35668,8.87284,0.133019,-4.6287,8.74695,0.0219038,-4.53028,8.69915,0.0121511,-4.14358,9.08807,0.132303,-4.23756,9.13853,0.13239,-3.95027,8.6535,-0.32502,-4.08195,8.65116,-0.322612,-4.12279,9.11246,0.0384731,-4.00368,9.11124,0.0257229,-4.00751,8.6549,-0.00387723,-4.01114,8.84191,0.109665,-4.13577,8.66689,-0.00453603,-4.13152,8.85519,0.115487,-4.02086,9.06641,0.027722,-4.14051,9.06698,0.0390866,-4.14769,9.05713,0.136526,-4.02699,9.05656,0.124554,-4.13103,8.84166,0.137565,-4.11899,8.55616,0.0512317,-4.0088,8.82819,0.131661,-3.99064,8.55402,0.051442,-4.0094,9.1013,0.118953,-4.12912,9.10251,0.132024,-4.12744,8.73499,0.0697623,-4.00131,8.72695,0.0668862,-3.97255,8.76966,0.119836,-4.15719,8.77253,0.12758,-3.97323,8.82479,0.141118,-4.15413,8.83292,0.150402,-4.15971,8.80654,0.0151694,-4.15596,8.87006,0.0268803,-3.97566,8.7989,0.0212496,-3.97568,8.8572,0.0314823,-3.97368,8.82822,0.129619,-3.97304,8.77286,0.109135,-4.15781,8.77703,0.112765,-4.15458,8.83768,0.134624,-3.97415,8.6455,-0.224151,-4.10457,8.65411,-0.222644,-4.1357,8.97038,0.155297,-4.0149,8.96648,0.145355,-4.14072,8.65155,0.0457747,-4.01275,8.64628,0.0448838,-4.78039,9.40658,-0.0758903,-4.76216,8.60105,-0.158204,-4.78223,9.41594,-0.0897541,-4.78764,9.3185,0.0524774,-4.80853,9.45278,-0.399189,-4.80445,9.19037,0.120447,-4.78208,9.20776,-0.664155,-4.74916,8.84774,-0.630498,-4.73625,8.63754,-0.432423,-4.82671,9.00896,0.193148,-5.81292,8.9698,0.231106,-5.85224,8.89834,0.193407,-6.09238,8.86075,0.441783,-6.05889,8.91491,0.479462,-6.13263,9.06693,0.434664,-6.1976,9.05422,0.378486,-5.97696,9.12428,0.12241,-5.90066,9.13654,0.188919,-4.31381,9.44199,-0.0618918,-4.2985,9.44424,-0.0635357,-4.05855,9.47121,-0.017392,-4.51904,9.44486,-0.0581053,-5.49535,9.29461,-0.130617,-4.27963,9.03584,0.195479,-4.12353,8.67239,-0.488393,-3.94936,8.97942,-0.793941,-3.96388,9.17557,-0.811735,-4.27259,9.20613,0.123737,-4.2338,9.47144,-0.430466,-4.28524,9.33671,0.049549,-4.31738,9.45015,-0.0705113,-4.159,8.6346,-0.188733,-3.18435,8.94545,-0.802984,-3.21318,9.28523,-0.834873,-3.83697,9.5561,-0.411871,-4.04619,9.50936,-0.0266839,-3.90232,8.95371,-0.951788,-3.91709,9.17944,-0.972256,-4.3553,9.49459,-0.085989,-4.29335,9.54822,-0.481011,-3.44224,8.74425,-0.601675,-3.59093,8.65176,-0.336891,-4.19712,8.58747,-0.19124,-4.15014,8.58921,-0.556903,-5.42449,8.74371,-0.178109,-4.52216,8.5898,-0.152908,-4.1348,8.63906,-0.191443,-4.30552,9.45117,-0.0699892,-4.27199,9.33513,0.0510349,-4.20998,9.46862,-0.431985,-4.25321,9.20597,0.121319,-3.92268,9.17111,-0.820164,-3.90955,8.99009,-0.803735,-4.09708,8.67762,-0.490771,-4.25988,9.03723,0.188107,-4.06171,9.48015,-0.0290835,-3.97984,9.33767,0.102297,-3.92329,9.21192,0.140946,-3.88343,9.06108,0.143446,-4.52157,9.45551,-0.0728152,-4.53049,9.352,0.0649886,-4.55752,9.50919,-0.411319,-4.55611,9.21338,0.134445,-4.52887,9.236,-0.69745,-4.49537,8.83469,-0.66114,-4.49929,8.62569,-0.450121,-4.58325,9.01253,0.203868,-5.48857,9.28069,-0.361534,-5.4981,9.29899,-0.14191,-5.48819,9.21408,0.0183646,-5.46127,9.12223,0.0913291,-5.44745,8.88813,-0.535673,-5.42456,8.77699,-0.386944,-5.45184,8.99878,0.118106,-5.4647,9.12043,-0.561116,-5.44332,8.73495,0.100872,-5.4565,9.24885,0.103988,-5.47256,9.3663,-0.392541,-5.47533,9.29927,-0.502092,-5.46829,9.39265,-0.175882,-5.47086,9.39612,-0.276114,-5.4609,9.31769,0.0318061,-5.46352,9.35818,-0.0476925,-5.42713,8.61162,-0.0998135,-5.42938,8.67674,-0.0059538,-5.43057,8.58601,-0.337064,-5.42848,8.58258,-0.239573,-5.44278,8.69157,-0.529697,-5.43492,8.62755,-0.447478,-5.46988,8.82451,-0.641673,-5.48026,8.99049,-0.658712,-5.49064,9.13993,-0.675752,-5.45197,9.13692,0.208964,-5.44097,8.9996,0.236854,-5.43933,8.84832,0.213619,-5.70189,8.81395,0.089877,-5.26142,8.67462,0.147307,-5.2978,9.30073,0.147513,-5.3165,9.40985,-0.414438,-5.31507,9.33485,-0.543872,-5.72037,9.23602,-0.384707,-5.73113,9.18198,-0.488114,-5.71384,9.25262,-0.163536,-5.71649,9.25468,-0.268192,-5.3125,9.4377,-0.177545,-5.31544,9.44164,-0.290299,-5.30225,9.35829,0.048966,-5.3071,9.40189,-0.0432081,-5.71136,9.19671,0.0395036,-5.71064,9.23203,-0.0382047,-5.69757,8.75679,-0.103305,-5.69943,8.78288,-0.000410574,-5.26265,8.54643,-0.0961423,-5.27375,8.57597,0.0184651,-5.26856,8.53709,-0.354748,-5.26592,8.53121,-0.242787,-5.70042,8.74722,-0.331948,-5.69836,8.74489,-0.226228,-5.71808,8.80561,-0.513113,-5.70528,8.75953,-0.433351,-5.28843,8.62652,-0.56972,-5.27527,8.57773,-0.471744,-5.7576,9.05904,-0.598629,-5.74801,8.96286,-0.605562,-5.74124,8.89017,-0.59075,-5.29574,9.16957,-0.732011,-5.29996,9.00274,-0.750165,-5.30059,8.79493,-0.723831,-5.70433,8.98179,0.205973,-5.70898,8.9085,0.179451,-5.26641,8.84434,0.276775,-5.27168,9.01464,0.300472,-5.28855,9.17684,0.273982,-5.7149,9.14698,0.10283,-5.70846,9.05461,0.174994,-6.49213,9.15533,-0.598624,-6.63174,9.20955,-0.623172,-6.35115,9.24484,-0.568174,-6.36484,9.28955,-0.464205,-6.62843,9.15688,-0.509625,-6.5005,9.17354,-0.490761,-6.37074,9.33473,-0.0411153,-6.63864,9.1471,-0.0269347,-6.51655,9.20652,-0.0405739,-6.33858,9.19705,-0.668319,-6.38117,9.35441,-0.26453,-6.32958,9.2457,0.166441,-6.3763,9.33593,-0.352561,-6.37937,9.35739,-0.161182,-6.35642,9.29934,0.0591969,-6.63882,9.13101,-0.255033,-6.6254,9.1346,0.148849,-6.62114,9.17414,-0.756287,-6.65038,9.2252,-0.387692,-6.66092,9.23647,-0.126912,-6.64802,9.21131,0.0554855,-6.50947,9.19346,0.0601969,-6.5183,9.22651,-0.364727,-6.52363,9.23132,-0.264977,-6.52777,9.24857,-0.153468,-6.48991,9.14388,0.181109,-6.48133,9.11854,-0.699323,-5.85292,9.11706,-0.603598,-5.84196,9.28774,-0.0520971,-5.85306,9.22159,-0.472468,-5.84788,9.29808,-0.261897,-5.80412,9.18633,0.10529,-5.85051,9.28612,-0.368465,-5.84551,9.29688,-0.1644,-5.83273,9.24755,0.0295016,-5.56568,9.31331,0.0178462,-5.56797,9.36499,-0.169827,-5.57401,9.34965,-0.374259,-5.5744,9.25228,0.0650121,-5.61725,9.18174,-0.571995,-5.58396,9.2997,-0.469839,-5.56502,9.34596,-0.0539808,-5.57043,9.3669,-0.266562,-6.0664,9.10222,-0.630811,-6.07967,9.25926,-0.0521187,-6.08104,9.18121,-0.482696,-6.0857,9.27234,-0.266513,-6.04353,9.15957,0.161724,-6.08459,9.2439,-0.376418,-6.08344,9.27356,-0.1691,-6.07326,9.22566,0.0439848,-6.22167,9.15742,-0.656728,-6.21845,9.15845,0.177487,-6.23878,9.24226,-0.0678524,-6.23575,9.21565,-0.507124,-6.24619,9.25935,-0.286629,-6.24214,9.24625,-0.402638,-6.24314,9.26177,-0.191188,-6.23656,9.21994,0.0338962,-6.42794,9.18863,0.0274598,-6.4339,9.21064,-0.201778,-6.43326,9.18191,-0.421409,-6.4124,9.13205,-0.628701,-6.41613,9.16458,0.144365,-6.42667,9.15869,-0.52689,-6.43812,9.2078,-0.302182,-6.42868,9.19644,-0.0800808,-5.99311,9.30921,0.0445054,-6.00352,9.35822,-0.173533,-6.0047,9.32788,-0.385671,-5.96269,9.24158,0.164982,-6.00584,9.35698,-0.273211,-6.00106,9.26373,-0.49442,-5.99966,9.34359,-0.0538325,-5.98609,9.1829,-0.645979,-6.2104,8.84001,0.724453,-6.21749,8.78246,0.659902,-6.43923,8.65151,0.846311,-6.43643,8.69616,0.903927,-6.5391,8.85896,0.881638,-6.57943,8.86248,0.809321,-6.36445,8.99023,0.614545,-6.31786,8.99065,0.701284,-6.11645,9.06197,0.465566,-6.18315,9.05461,0.399779,-6.39091,8.94457,0.61417,-6.33424,8.95295,0.670057,-6.25802,8.81329,0.695426,-6.28369,8.76673,0.652726,-6.05614,8.84742,0.442227,-6.02628,8.91009,0.487378,-6.87585,9.06778,-0.791544,-6.84365,8.99127,-0.807368,-7.08247,8.92813,-0.835309,-7.10613,8.98433,-0.823686,-7.14028,8.9992,-0.695546,-7.12795,8.95612,-0.66872,-6.89473,9.0189,-0.608766,-6.90559,9.08013,-0.649746,-6.70099,9.08903,-0.59733,-6.70134,9.02357,-0.56182,-6.94195,9.00881,-0.62361,-6.94632,9.05554,-0.646529,-6.9152,9.04583,-0.77593,-6.90198,8.98751,-0.792583,-6.65575,9.00436,-0.762736,-6.67375,9.08375,-0.740065,-6.47443,9.1191,-0.696952,-6.45314,9.04075,-0.720381,-6.69862,9.01331,-0.74851,-6.71426,9.07086,-0.731301,-6.74476,9.07822,-0.601598,-6.73816,9.03156,-0.57908,-6.49796,9.05643,-0.518983,-6.50077,9.1221,-0.55398,-6.58706,9.15406,-0.453753,-6.57255,9.08894,-0.481253,-6.83646,9.07548,-0.514881,-6.84915,9.13488,-0.490829,-6.86946,9.1306,-0.356757,-6.86242,9.07927,-0.338955,-6.59735,9.0856,-0.293673,-6.60038,9.14429,-0.317964,-6.85562,9.1751,-0.363666,-6.85296,9.10481,-0.32911,-7.18971,9.0529,-0.393175,-7.19611,9.1007,-0.415388,-7.17596,9.09255,-0.549306,-7.16408,9.03348,-0.568102,-6.82671,9.08891,-0.531748,-6.84263,9.17341,-0.506579,-7.16306,9.12089,-0.569436,-7.13837,9.04366,-0.593231,-7.43031,8.99038,-0.610341,-7.44875,9.04806,-0.59257,-7.46923,9.05641,-0.458715,-7.45737,9.01007,-0.43566,-7.16802,9.06084,-0.374282,-7.17827,9.12535,-0.410032,-6.6323,9.16951,-0.219275,-6.61537,9.09984,-0.24958,-6.93433,9.07476,-0.267459,-6.94806,9.1344,-0.242888,-6.96143,9.12979,-0.107957,-6.95154,9.07832,-0.0904557,-6.63177,9.09589,-0.0461436,-6.63887,9.15893,-0.0722468,-6.95379,9.15256,-0.0997596,-6.94609,9.0779,-0.0714212,-7.25376,9.04465,-0.122943,-7.26365,9.09656,-0.140444,-7.25028,9.10117,-0.275375,-7.23656,9.04093,-0.299946,-6.92828,9.08071,-0.292278,-6.94666,9.16405,-0.259377,-7.24563,9.1381,-0.2868,-7.22551,9.05706,-0.31916,-7.57112,8.99473,-0.3289,-7.58614,9.05106,-0.304733,-7.59845,9.04732,-0.169674,-7.58716,8.99861,-0.151809,-7.24166,9.05538,-0.098151,-7.25134,9.12788,-0.127039,-7.19866,9.06718,0.191334,-7.18132,9.00008,0.218576,-7.48993,8.94429,0.217909,-7.50621,8.99221,0.201864,-7.51516,8.99511,0.0665206,-7.50133,8.93931,0.0346216,-7.19972,9.00127,-0.00813469,-7.21825,9.07599,0.0325903,-6.94976,9.10364,0.0243506,-6.93776,9.02612,-0.0222611,-7.2448,8.99976,0.0182316,-7.25426,9.05746,0.0560114,-7.24669,9.05338,0.191409,-7.23615,9.00337,0.207469,-6.92318,9.02279,0.210435,-6.93248,9.09244,0.18321,-6.63324,9.14165,0.168271,-6.6532,9.07284,0.195496,-6.94227,9.03515,0.192953,-6.95614,9.08504,0.176893,-6.96397,9.0886,0.0414958,-6.95455,9.03059,0.00567066,-6.65446,9.08003,-0.0432736,-6.65123,9.15168,0.00941147,5.18438,9.33327,-0.118125,5.12575,8.70139,-0.163683,5.18314,9.33758,-0.123425,5.17566,9.24884,0.0144121,5.19023,9.34052,-0.370095,5.16241,9.14532,0.0785516,5.15544,9.15377,-0.585062,5.12197,8.88143,-0.556729,5.11577,8.73383,-0.396992,5.16658,8.99469,0.125915,4.96195,8.88746,0.0839641,5.05168,8.9372,0.089335,4.84484,9.12614,0.0983246,4.74839,9.07548,0.0995836,5.05122,8.80182,0.00795356,5.12921,8.8496,0.0179448,4.8788,8.97176,0.125289,4.9755,9.02489,0.126,5.20347,8.75747,-0.140332,5.08139,8.74276,-0.161586,5.12153,8.76494,-0.276889,5.20806,8.7813,-0.266788,4.93634,9.11816,0.0534711,5.02463,9.0677,0.0533843,4.79041,8.71103,0.00336406,4.67958,8.73948,0.0381356,4.91458,8.89865,0.0746189,4.82046,8.94929,0.108884,4.58143,8.65504,-0.132492,4.69255,8.66007,-0.163249,4.57892,8.68936,-0.272867,4.46248,8.70572,-0.262766,4.73774,8.70036,-0.267523,4.62341,8.684,-0.277624,4.56657,8.66817,-0.161994,4.72161,8.67656,-0.14001,4.44983,8.93079,0.105817,4.35475,8.8783,0.103584,4.62407,8.76819,0.00123049,4.52556,8.71904,-0.00981038,4.14383,9.08811,0.102305,4.2378,9.13857,0.102392,3.94954,8.68348,-0.324097,4.08122,8.68114,-0.321689,4.1258,9.11276,0.00862684,4.00669,9.11154,-0.00412329,4.0055,8.68135,-0.0178862,4.01182,8.84621,0.0799824,4.13387,8.69223,-0.0204786,4.13251,8.85724,0.0855738,4.02374,9.06187,-0.00179189,4.14334,9.06121,0.00978235,4.15062,9.05238,0.10705,4.02995,9.05224,0.095015,4.13175,8.85109,0.109096,4.11912,8.55421,0.0212957,4.00929,8.83894,0.103657,3.99078,8.55207,0.0215061,4.01251,9.09922,0.0891886,4.13224,9.10043,0.10226,4.12719,8.74725,0.0423862,4.00106,8.73912,0.039468,3.99529,8.77643,0.101468,4.1361,8.77914,0.107301,3.9942,8.83225,0.121004,4.13404,8.83992,0.129256,4.13779,8.80176,0.0350937,4.13573,8.86507,0.0484681,3.99793,8.7952,0.0409981,3.99588,8.85315,0.053289,4.00366,8.82766,0.130469,4.00303,8.77232,0.109969,4.12786,8.77578,0.111634,4.12463,8.83644,0.133478,3.9727,8.67546,-0.224141,4.10291,8.68406,-0.222897,4.138,8.96827,0.125461,4.01712,8.96511,0.115469,4.14079,8.65495,0.0159688,4.01283,8.64914,0.0150202,4.77612,9.3821,-0.0926917,4.75855,8.63054,-0.154028,4.77727,9.38825,-0.100191,4.78407,9.29849,0.030418,4.80264,9.42487,-0.389886,4.80189,9.17781,0.093326,4.777,9.19761,-0.636387,4.7452,8.86051,-0.603645,4.73251,8.66426,-0.419306,4.82436,8.99846,0.165144,5.83428,8.97207,0.210165,5.87044,8.91745,0.179148,6.11058,8.87986,0.427523,6.0803,8.91848,0.458746,6.13885,9.04079,0.421326,6.19076,9.02507,0.376544,5.97012,9.09513,0.120468,5.90706,9.11051,0.175451,4.31388,9.41983,-0.0821137,4.29479,9.42366,-0.0850431,4.053,9.45149,-0.0393077,4.51752,9.42113,-0.0764027,5.48896,9.26898,-0.144837,4.28285,9.02507,0.167665,4.12632,8.69939,-0.47561,3.9466,8.99261,-0.767142,3.96015,9.16393,-0.784336,4.2753,9.19353,0.096643,4.23468,9.44284,-0.421464,4.28635,9.31796,0.0261537,4.31832,9.42269,-0.08255,4.16317,8.66413,-0.1855,3.18989,8.95704,-0.775878,3.21775,9.27612,-0.806659,3.83683,9.52798,-0.401437,4.04257,9.48404,-0.0423555,3.88774,8.96341,-0.927427,3.90187,9.17252,-0.947354,4.32831,9.48841,-0.0975369,4.26848,9.53579,-0.469736,3.44633,8.76999,-0.586819,3.59542,8.68127,-0.333874,4.16867,8.59464,-0.184963,4.12835,8.60512,-0.54379,5.41756,8.77255,-0.173586,4.52287,8.61957,-0.149262,4.1103,8.65488,-0.184405,4.29698,9.43486,-0.0936793,4.2701,9.31823,0.0263204,4.18523,9.46613,-0.415226,4.25441,9.19518,0.0933516,3.89807,9.17933,-0.805097,3.88445,8.98952,-0.787328,4.07289,8.68377,-0.474124,4.26385,9.02827,0.159754,4.05556,9.46871,-0.0561236,3.97584,9.32371,0.0760503,3.92246,9.2037,0.112105,3.88419,9.05465,0.114154,4.51977,9.42782,-0.0842175,4.5296,9.33252,0.0421958,4.55497,9.48053,-0.402838,4.55543,9.20096,0.107147,4.52473,9.22444,-0.670079,4.49237,8.84848,-0.63467,4.49917,8.65278,-0.437229,4.58243,9.00189,0.175833,5.48088,9.25372,-0.350867,5.49077,9.27046,-0.1476,5.48312,9.19252,-0.00186827,5.45778,9.10972,0.06429,5.44213,8.90174,-0.509476,5.41822,8.80357,-0.374549,5.44877,8.991,0.0892952,5.45815,9.10996,-0.533777,5.43307,8.75737,0.0837704,5.44659,9.22828,0.084529,5.46128,9.3403,-0.382712,5.46481,9.27633,-0.485869,5.45699,9.36515,-0.179924,5.45922,9.36857,-0.273719,5.45106,9.29373,0.0166645,5.45308,9.33178,-0.0574047,5.41441,8.63772,-0.10737,5.41711,8.70129,-0.018084,5.41852,8.61317,-0.332913,5.41622,8.6099,-0.241345,5.43122,8.71338,-0.512657,5.42306,8.65293,-0.43674,5.45879,8.83716,-0.616833,5.4709,8.99291,-0.630313,5.48012,9.12855,-0.650065,5.44228,9.12389,0.18374,5.433,8.99938,0.207934,5.43097,8.86173,0.188118,5.69361,8.83742,0.0731222,5.24942,8.6952,0.129077,5.28675,9.28003,0.128825,5.30749,9.38342,-0.403481,5.30589,9.31197,-0.526775,5.70695,9.21091,-0.375238,5.71945,9.15986,-0.471562,5.6995,9.22653,-0.167228,5.70179,9.22861,-0.266146,5.30429,9.40919,-0.182022,5.30681,9.41307,-0.287261,5.29336,9.33399,0.0337695,5.29916,9.37489,-0.0536016,5.70098,9.17367,0.0233303,5.69784,9.20658,-0.0476212,5.68438,8.78251,-0.111329,5.68904,8.80866,-0.0116793,5.25083,8.57302,-0.103444,5.26001,8.5996,0.00608579,5.25927,8.56513,-0.349503,5.25644,8.55962,-0.24449,5.68556,8.77308,-0.328677,5.68329,8.77075,-0.228171,5.70799,8.82714,-0.494826,5.69244,8.78439,-0.42252,5.27615,8.64836,-0.553225,5.26473,8.60339,-0.460305,5.74806,9.05004,-0.571645,5.74167,8.96591,-0.576399,5.73365,8.90154,-0.564046,5.2848,9.15833,-0.706438,5.2878,9.00444,-0.722791,5.28689,8.80646,-0.699761,5.69968,8.98141,0.176339,5.70327,8.92188,0.153211,5.25597,8.85568,0.251039,5.26083,9.01477,0.272503,5.27639,9.16518,0.24916,5.70629,9.12709,0.0820848,5.70184,9.04165,0.148763,6.48896,9.12622,-0.592101,6.64043,9.1809,-0.621268,6.33673,9.22052,-0.55813,6.34853,9.26658,-0.453883,6.63041,9.12722,-0.505571,6.49275,9.14564,-0.482916,6.35277,9.31195,-0.0487547,6.63356,9.11779,-0.0308505,6.50461,9.17984,-0.0473252,6.32648,9.17228,-0.65648,6.36246,9.33116,-0.261418,6.31516,9.22295,0.153219,6.35839,9.31298,-0.345331,6.36073,9.33403,-0.163759,6.34007,9.27636,0.0489536,6.62578,9.1041,-0.252648,6.62412,9.10888,0.133444,6.63356,9.14775,-0.749273,6.64477,9.19584,-0.385183,6.6514,9.20819,-0.12997,6.6446,9.18169,0.0521739,6.49925,9.1665,0.0518928,6.50557,9.19979,-0.359899,6.50763,9.20605,-0.262618,6.51269,9.22267,-0.154977,6.48137,9.11911,0.166492,6.48319,9.09032,-0.6893,5.84986,9.09336,-0.585462,5.83738,9.25919,-0.0601054,5.84874,9.19711,-0.455673,5.84253,9.26864,-0.259806,5.80239,9.16321,0.0862437,5.84496,9.25832,-0.358657,5.84047,9.26737,-0.166335,5.82989,9.22218,0.0137458,5.5609,9.28883,0.00118502,5.56109,9.33588,-0.172021,5.56703,9.32181,-0.365512,5.57109,9.23141,0.0437218,5.61245,9.15998,-0.551916,5.57795,9.27546,-0.453218,5.55878,9.31781,-0.0622446,5.56333,9.33779,-0.26505,6.06468,9.07723,-0.614298,6.07673,9.23034,-0.0595383,6.07825,9.15599,-0.466697,6.0821,9.24269,-0.263754,6.04343,9.13452,0.145215,6.08053,9.21623,-0.365579,6.08027,9.24377,-0.170664,6.07189,9.1992,0.0299119,6.21687,9.13013,-0.645231,6.21245,9.13163,0.165464,6.22968,9.21416,-0.0730857,6.22962,9.18828,-0.496486,6.23688,9.23097,-0.283853,6.23392,9.21843,-0.394996,6.23353,9.23342,-0.193142,6.2294,9.19226,0.0248065,6.4234,9.15979,0.0205913,6.42622,9.18169,-0.203537,6.42514,9.15376,-0.414978,6.40623,9.10445,-0.618689,6.41333,9.1363,0.134756,6.41958,9.13092,-0.517999,6.43014,9.17903,-0.299259,6.42182,9.16755,-0.084339,5.98327,9.28313,0.0334181,5.99208,9.33057,-0.175654,5.99613,9.3004,-0.377222,5.95406,9.21642,0.151097,5.99511,9.32909,-0.270596,5.99591,9.23692,-0.481964,5.98837,9.31649,-0.0600005,5.98252,9.15599,-0.633209,6.23036,8.84339,0.702314,6.23848,8.79971,0.647172,6.46022,8.66876,0.833581,6.45621,8.69892,0.881539,6.54115,8.83614,0.862266,6.56871,8.8352,0.802928,6.35373,8.96296,0.608152,6.31814,8.96666,0.683284,6.12036,9.03769,0.448388,6.17413,9.02654,0.394262,6.38189,8.9165,0.608654,6.33798,8.92856,0.653001,6.27875,8.81827,0.674316,6.30263,8.78638,0.640271,6.07508,8.86707,0.429772,6.04685,8.91382,0.465872,6.87144,9.04686,-0.770505,6.84528,8.98455,-0.778178,7.08411,8.92141,-0.806119,7.10138,8.96275,-0.803396,7.12893,8.97401,-0.707226,7.1181,8.94225,-0.693429,6.88489,9.00503,-0.633475,6.89424,9.05495,-0.661461,6.69433,9.06332,-0.611286,6.69411,9.01033,-0.587747,6.93471,8.99557,-0.649537,6.93966,9.02981,-0.660451,6.91443,9.02209,-0.757603,6.90483,8.97871,-0.764045,6.6586,8.99556,-0.734199,6.67319,9.06065,-0.72093,6.4727,9.0959,-0.678004,6.45538,9.03162,-0.691892,6.70086,9.00418,-0.720022,6.7123,9.04704,-0.713167,6.73708,9.05292,-0.615771,6.73055,9.01884,-0.605163,6.49035,9.04371,-0.545066,6.49309,9.09682,-0.568187,6.58764,9.12874,-0.437678,6.57548,9.07698,-0.4539,6.83939,9.06351,-0.487527,6.84961,9.10911,-0.475478,6.86545,9.10609,-0.373587,6.85766,9.06907,-0.366763,6.59259,9.07539,-0.32148,6.59625,9.1206,-0.335906,6.84766,9.15015,-0.378299,6.84614,9.09258,-0.355641,7.18289,9.04067,-0.419706,7.18814,9.07585,-0.430185,7.17304,9.06942,-0.530414,7.16561,9.02444,-0.53954,6.82824,9.07986,-0.503186,6.83941,9.14955,-0.488679,7.15897,9.09797,-0.550514,7.13843,9.03481,-0.564567,7.43037,8.98153,-0.581676,7.44448,9.02464,-0.574319,7.46061,9.03121,-0.47252,7.44983,8.99766,-0.461906,7.16048,9.04842,-0.400528,7.16963,9.1008,-0.424944,6.63085,9.14437,-0.20298,6.61605,9.08799,-0.222029,6.93501,9.0629,-0.239908,6.94649,9.10866,-0.227564,6.95706,9.10537,-0.124827,6.94733,9.0683,-0.118416,6.62756,9.08587,-0.0741038,6.63444,9.1355,-0.0904555,6.94696,9.12941,-0.117566,6.94056,9.06854,-0.0993823,7.24824,9.03529,-0.150904,7.25682,9.07293,-0.157619,7.2462,9.07619,-0.259275,7.23579,9.02993,-0.272045,6.92751,9.06972,-0.264377,6.94262,9.13925,-0.242989,7.24042,9.11345,-0.270523,7.22421,9.04594,-0.291328,7.56982,8.98361,-0.301069,7.58093,9.02638,-0.288501,7.59065,9.02379,-0.186574,7.58137,8.9889,-0.179595,7.23587,9.04567,-0.125936,7.24357,9.10468,-0.144407,7.19333,9.04406,0.172986,7.17962,8.98997,0.190383,7.48824,8.93417,0.189716,7.5007,8.96845,0.184403,7.50694,8.9699,0.0805496,7.49486,8.9263,0.0608714,7.19326,8.98827,0.0181151,7.21005,9.05114,0.0472638,6.94464,9.07765,0.0384208,6.93296,9.01099,0.00319681,7.24,8.98463,0.0436894,7.24916,9.03099,0.069178,7.24383,9.0292,0.173883,7.23544,8.99327,0.179229,6.92247,9.0127,0.182195,6.92972,9.06891,0.164813,6.6289,9.11644,0.152591,6.65188,9.06252,0.167361,6.94096,9.02483,0.164818,6.95203,9.06089,0.159576,6.9573,9.0622,0.0540865,6.94833,9.01425,0.0300464,6.64824,9.06369,-0.0188979,6.64458,9.12511,0.0216588,-5.18438,9.33326,-0.118125,-5.12575,8.70139,-0.163683,-5.18314,9.33758,-0.123425,-5.17566,9.24884,0.0144121,-5.19023,9.34052,-0.370095,-5.16241,9.14532,0.0785517,-5.15544,9.15377,-0.585062,-5.12197,8.88143,-0.556729,-5.11577,8.73383,-0.396992,-5.16658,8.99468,0.125915,-4.96195,8.88746,0.0839641,-5.05167,8.9372,0.089335,-4.84484,9.12614,0.0983247,-4.74839,9.07548,0.0995836,-5.05122,8.80182,0.0079536,-5.1292,8.8496,0.0179449,-4.8788,8.97176,0.125289,-4.9755,9.02489,0.126,-5.20347,8.75746,-0.140332,-5.08139,8.74276,-0.161586,-5.12153,8.76493,-0.276889,-5.20806,8.78129,-0.266788,-4.93634,9.11816,0.0534712,-5.02463,9.0677,0.0533843,-4.79041,8.71103,0.00336409,-4.67958,8.73948,0.0381356,-4.91458,8.89865,0.0746189,-4.82046,8.94929,0.108884,-4.58143,8.65504,-0.132492,-4.69255,8.66007,-0.163249,-4.57892,8.68936,-0.272867,-4.46248,8.70572,-0.262766,-4.73774,8.70036,-0.267523,-4.62341,8.684,-0.277624,-4.56657,8.66817,-0.161994,-4.72161,8.67656,-0.14001,-4.44983,8.93079,0.105818,-4.35475,8.8783,0.103584,-4.62407,8.76819,0.00123052,-4.52556,8.71904,-0.00981034,-4.14383,9.08811,0.102305,-4.2378,9.13857,0.102392,-3.94954,8.68348,-0.324097,-4.08122,8.68114,-0.321689,-4.1258,9.11276,0.00862687,-4.00669,9.11154,-0.00412326,-4.0055,8.68135,-0.0178861,-4.01182,8.84621,0.0799824,-4.13387,8.69223,-0.0204786,-4.13251,8.85724,0.0855739,-4.02374,9.06187,-0.00179186,-4.14334,9.06121,0.00978238,-4.15062,9.05238,0.10705,-4.02995,9.05224,0.0950151,-4.13175,8.85109,0.109096,-4.11912,8.55421,0.0212958,-4.00929,8.83894,0.103657,-3.99078,8.55207,0.0215061,-4.01251,9.09922,0.0891887,-4.13224,9.10043,0.10226,-4.12719,8.74725,0.0423862,-4.00106,8.73912,0.039468,-3.99529,8.77643,0.101468,-4.1361,8.77914,0.107301,-3.9942,8.83225,0.121004,-4.13404,8.83992,0.129256,-4.13779,8.80176,0.0350937,-4.13573,8.86507,0.0484681,-3.99793,8.7952,0.0409981,-3.99588,8.85315,0.053289,-4.00366,8.82766,0.130469,-4.00303,8.77232,0.109969,-4.12786,8.77578,0.111634,-4.12463,8.83644,0.133478,-3.9727,8.67546,-0.224141,-4.10291,8.68406,-0.222897,-4.138,8.96827,0.125461,-4.01712,8.96511,0.115469,-4.14079,8.65495,0.0159688,-4.01283,8.64914,0.0150202,-4.77612,9.38209,-0.0926916,-4.75855,8.63054,-0.154028,-4.77727,9.38825,-0.100191,-4.78407,9.29849,0.030418,-4.80264,9.42487,-0.389886,-4.80189,9.1778,0.093326,-4.777,9.19761,-0.636387,-4.7452,8.86051,-0.603645,-4.73251,8.66426,-0.419306,-4.82436,8.99846,0.165144,-5.83428,8.97207,0.210165,-5.87044,8.91745,0.179148,-6.11059,8.87986,0.427523,-6.0803,8.91848,0.458746,-6.13885,9.04079,0.421326,-6.19076,9.02507,0.376544,-5.97012,9.09513,0.120468,-5.90706,9.11051,0.175451,-4.31388,9.41983,-0.0821136,-4.29479,9.42366,-0.085043,-4.053,9.45149,-0.0393077,-4.51752,9.42113,-0.0764027,-5.48896,9.26898,-0.144837,-4.28285,9.02507,0.167665,-4.12632,8.69939,-0.47561,-3.9466,8.99261,-0.767142,-3.96015,9.16393,-0.784336,-4.2753,9.19353,0.096643,-4.23468,9.44284,-0.421464,-4.28635,9.31796,0.0261538,-4.31832,9.42269,-0.0825499,-4.16317,8.66413,-0.1855,-3.18989,8.95704,-0.775878,-3.21775,9.27612,-0.806659,-3.83683,9.52798,-0.401437,-4.04257,9.48404,-0.0423555,-3.88774,8.96341,-0.927427,-3.90187,9.17252,-0.947354,-4.32831,9.48841,-0.0975369,-4.26848,9.53579,-0.469736,-3.44633,8.76999,-0.586819,-3.59542,8.68127,-0.333874,-4.16867,8.59464,-0.184963,-4.12835,8.60512,-0.54379,-5.41756,8.77255,-0.173586,-4.52287,8.61957,-0.149262,-4.1103,8.65488,-0.184405,-4.29698,9.43486,-0.0936792,-4.2701,9.31823,0.0263204,-4.18523,9.46613,-0.415226,-4.25441,9.19518,0.0933517,-3.89807,9.17933,-0.805097,-3.88445,8.98952,-0.787328,-4.07289,8.68377,-0.474124,-4.26385,9.02827,0.159754,-4.05556,9.46871,-0.0561235,-3.97584,9.32371,0.0760503,-3.92246,9.2037,0.112105,-3.88419,9.05465,0.114154,-4.51977,9.42782,-0.0842175,-4.5296,9.33252,0.0421958,-4.55497,9.48053,-0.402838,-4.55543,9.20096,0.107147,-4.52473,9.22444,-0.670079,-4.49237,8.84848,-0.63467,-4.49917,8.65278,-0.437229,-4.58243,9.00189,0.175833,-5.48088,9.25372,-0.350867,-5.49077,9.27046,-0.1476,-5.48312,9.19252,-0.00186821,-5.45778,9.10972,0.06429,-5.44213,8.90174,-0.509476,-5.41822,8.80357,-0.374549,-5.44877,8.991,0.0892953,-5.45815,9.10996,-0.533777,-5.43307,8.75737,0.0837705,-5.44659,9.22828,0.084529,-5.46128,9.3403,-0.382712,-5.46481,9.27633,-0.485869,-5.45699,9.36515,-0.179924,-5.45922,9.36857,-0.273718,-5.45106,9.29373,0.0166646,-5.45308,9.33178,-0.0574047,-5.41441,8.63772,-0.10737,-5.41711,8.70129,-0.018084,-5.41852,8.61317,-0.332913,-5.41622,8.6099,-0.241345,-5.43122,8.71338,-0.512657,-5.42306,8.65293,-0.43674,-5.45879,8.83716,-0.616833,-5.4709,8.99291,-0.630313,-5.48012,9.12855,-0.650065,-5.44228,9.12389,0.18374,-5.433,8.99938,0.207934,-5.43097,8.86173,0.188118,-5.69361,8.83742,0.0731223,-5.24942,8.69521,0.129077,-5.28675,9.28003,0.128825,-5.30749,9.38342,-0.403481,-5.30589,9.31197,-0.526774,-5.70695,9.21091,-0.375238,-5.71945,9.15986,-0.471562,-5.6995,9.22653,-0.167228,-5.70179,9.22861,-0.266146,-5.30429,9.40919,-0.182022,-5.30681,9.41307,-0.287261,-5.29336,9.334,0.0337696,-5.29916,9.3749,-0.0536015,-5.70098,9.17367,0.0233303,-5.69784,9.20658,-0.0476211,-5.68438,8.78251,-0.111329,-5.68904,8.80866,-0.0116792,-5.25083,8.57302,-0.103444,-5.26001,8.5996,0.00608584,-5.25928,8.56513,-0.349503,-5.25644,8.55962,-0.24449,-5.68556,8.77308,-0.328677,-5.68329,8.77075,-0.228171,-5.70799,8.82714,-0.494826,-5.69244,8.78439,-0.42252,-5.27615,8.64836,-0.553225,-5.26473,8.60339,-0.460305,-5.74806,9.05004,-0.571645,-5.74167,8.96591,-0.576398,-5.73365,8.90154,-0.564046,-5.2848,9.15833,-0.706438,-5.2878,9.00444,-0.722791,-5.28689,8.80647,-0.699761,-5.69968,8.98142,0.176339,-5.70327,8.92188,0.153211,-5.25597,8.85568,0.251039,-5.26083,9.01477,0.272503,-5.27639,9.16518,0.24916,-5.70629,9.12709,0.0820849,-5.70184,9.04165,0.148763,-6.48896,9.12623,-0.592101,-6.64043,9.1809,-0.621268,-6.33673,9.22052,-0.558131,-6.34853,9.26658,-0.453883,-6.63041,9.12722,-0.505571,-6.49275,9.14564,-0.482916,-6.35277,9.31195,-0.0487547,-6.63356,9.1178,-0.0308505,-6.50461,9.17984,-0.0473252,-6.32648,9.17228,-0.65648,-6.36246,9.33117,-0.261418,-6.31516,9.22295,0.153219,-6.35839,9.31298,-0.345331,-6.36073,9.33403,-0.163759,-6.34007,9.27637,0.0489536,-6.62578,9.1041,-0.252648,-6.62412,9.10888,0.133444,-6.63356,9.14775,-0.749273,-6.64477,9.19584,-0.385183,-6.6514,9.20819,-0.12997,-6.6446,9.18169,0.052174,-6.49925,9.1665,0.0518928,-6.50557,9.19979,-0.359899,-6.50763,9.20605,-0.262618,-6.51269,9.22267,-0.154977,-6.48137,9.11911,0.166492,-6.48319,9.09032,-0.6893,-5.84986,9.09336,-0.585462,-5.83738,9.25919,-0.0601055,-5.84874,9.19711,-0.455673,-5.84253,9.26864,-0.259806,-5.80239,9.16321,0.0862436,-5.84496,9.25832,-0.358658,-5.84047,9.26737,-0.166335,-5.82988,9.22218,0.0137458,-5.5609,9.28883,0.00118495,-5.56109,9.33588,-0.172021,-5.56703,9.32181,-0.365512,-5.57109,9.23141,0.0437218,-5.61245,9.15998,-0.551916,-5.57795,9.27546,-0.453218,-5.55878,9.31781,-0.0622446,-5.56333,9.33779,-0.26505,-6.06468,9.07723,-0.614298,-6.07673,9.23034,-0.0595383,-6.07825,9.15599,-0.466697,-6.0821,9.24269,-0.263754,-6.04343,9.13452,0.145215,-6.08053,9.21623,-0.365579,-6.08027,9.24377,-0.170665,-6.07189,9.1992,0.0299118,-6.21687,9.13013,-0.645231,-6.21245,9.13163,0.165464,-6.22968,9.21416,-0.0730857,-6.22962,9.18828,-0.496486,-6.23688,9.23097,-0.283853,-6.23392,9.21843,-0.394996,-6.23353,9.23342,-0.193142,-6.2294,9.19226,0.0248065,-6.4234,9.15979,0.0205913,-6.42622,9.18169,-0.203537,-6.42514,9.15376,-0.414978,-6.40623,9.10445,-0.618689,-6.41333,9.1363,0.134756,-6.41958,9.13093,-0.517999,-6.43014,9.17904,-0.299259,-6.42182,9.16755,-0.084339,-5.98327,9.28313,0.0334181,-5.99208,9.33057,-0.175654,-5.99613,9.3004,-0.377222,-5.95406,9.21643,0.151097,-5.9951,9.32909,-0.270596,-5.99591,9.23693,-0.481964,-5.98837,9.3165,-0.0600006,-5.98252,9.15599,-0.633209,-6.23036,8.84339,0.702313,-6.23848,8.79971,0.647172,-6.46022,8.66876,0.833581,-6.45621,8.69892,0.881539,-6.54115,8.83614,0.862265,-6.56871,8.8352,0.802927,-6.35373,8.96296,0.608152,-6.31814,8.96666,0.683284,-6.12036,9.03768,0.448389,-6.17413,9.02654,0.394263,-6.38189,8.91649,0.608654,-6.33798,8.92855,0.653001,-6.27875,8.81827,0.674316,-6.30263,8.78638,0.640271,-6.07508,8.86707,0.429772,-6.04685,8.91382,0.465872,-6.87144,9.04686,-0.770505,-6.84528,8.98455,-0.778178,-7.08411,8.92141,-0.806119,-7.10138,8.96275,-0.803396,-7.12893,8.97401,-0.707226,-7.1181,8.94225,-0.693429,-6.88489,9.00503,-0.633475,-6.89424,9.05495,-0.661461,-6.69433,9.06332,-0.611286,-6.69411,9.01033,-0.587746,-6.93471,8.99557,-0.649536,-6.93966,9.02981,-0.660451,-6.91443,9.02209,-0.757603,-6.90483,8.97871,-0.764045,-6.6586,8.99556,-0.734199,-6.67319,9.06065,-0.72093,-6.47271,9.09591,-0.678004,-6.45538,9.03162,-0.691892,-6.70086,9.00418,-0.720022,-6.7123,9.04704,-0.713167,-6.73708,9.05292,-0.615771,-6.73055,9.01885,-0.605163,-6.49035,9.04371,-0.545066,-6.49309,9.09682,-0.568187,-6.58764,9.12874,-0.437678,-6.57548,9.07698,-0.4539,-6.83939,9.06351,-0.487527,-6.84961,9.10911,-0.475478,-6.86545,9.10609,-0.373587,-6.85766,9.06907,-0.366763,-6.59259,9.07539,-0.32148,-6.59625,9.1206,-0.335906,-6.84766,9.15015,-0.378298,-6.84614,9.09258,-0.355641,-7.18289,9.04067,-0.419706,-7.18814,9.07585,-0.430185,-7.17304,9.06943,-0.530414,-7.16561,9.02444,-0.53954,-6.82824,9.07987,-0.503186,-6.83941,9.14955,-0.488679,-7.15897,9.09797,-0.550514,-7.13843,9.03481,-0.564567,-7.43037,8.98153,-0.581676,-7.44448,9.02464,-0.574319,-7.46061,9.03121,-0.47252,-7.44983,8.99766,-0.461906,-7.16048,9.04842,-0.400528,-7.16963,9.1008,-0.424944,-6.63085,9.14437,-0.20298,-6.61605,9.08799,-0.222029,-6.93501,9.06291,-0.239908,-6.94649,9.10866,-0.227564,-6.95706,9.10537,-0.124827,-6.94733,9.0683,-0.118416,-6.62756,9.08587,-0.0741037,-6.63444,9.1355,-0.0904554,-6.94697,9.1294,-0.117566,-6.94056,9.06854,-0.0993822,-7.24824,9.03529,-0.150904,-7.25682,9.07293,-0.157619,-7.2462,9.07619,-0.259275,-7.23579,9.02993,-0.272045,-6.92751,9.06972,-0.264377,-6.94262,9.13925,-0.242989,-7.24042,9.11345,-0.270523,-7.22421,9.04594,-0.291328,-7.56982,8.98361,-0.301069,-7.58093,9.02638,-0.288501,-7.59065,9.02379,-0.186574,-7.58137,8.9889,-0.179595,-7.23587,9.04567,-0.125936,-7.24357,9.10468,-0.144406,-7.19333,9.04406,0.172986,-7.17962,8.98997,0.190383,-7.48824,8.93417,0.189716,-7.5007,8.96845,0.184403,-7.50694,8.9699,0.0805496,-7.49486,8.9263,0.0608715,-7.19326,8.98827,0.0181152,-7.21005,9.05114,0.0472639,-6.94464,9.07765,0.0384208,-6.93297,9.01099,0.00319687,-7.24,8.98463,0.0436895,-7.24916,9.03099,0.069178,-7.24383,9.0292,0.173883,-7.23544,8.99327,0.179229,-6.92247,9.0127,0.182195,-6.92972,9.06891,0.164813,-6.6289,9.11644,0.152591,-6.65188,9.06252,0.167361,-6.94096,9.02483,0.164818,-6.95203,9.06089,0.159576,-6.9573,9.0622,0.0540865,-6.94833,9.01424,0.0300464,-6.64824,9.06369,-0.0188978,-6.64458,9.12511,0.0216589,-1.24805,8.68975,2.96493,-1.24805,8.68975,3.26056,-1.24805,8.68975,3.11274,-1.24805,8.37057,2.96493,-1.24805,8.37057,3.26056,-1.24805,8.37057,3.11274,-1.1133,8.68975,3.11274,-1.1133,8.68975,2.95743,-1.1133,8.68975,3.26806,-1.1133,8.37057,3.11274,-1.1133,8.37057,2.95743,-1.1133,8.37057,3.26806,-0.988544,8.68975,3.11274,-0.988543,8.68975,2.95049,-0.988543,8.68975,3.275,-0.988543,8.37057,3.11274,-0.988543,8.37057,2.95049,-0.988543,8.37057,3.275,-0.988543,8.39135,3.11274,-0.987713,8.385,2.96542,-0.987713,8.385,3.26007,-0.988544,8.66897,3.11274,-0.987713,8.67532,2.96542,-0.987713,8.67532,3.26007,-1.1133,8.39135,3.11274,-1.1125,8.38552,2.97184,-1.1125,8.38552,3.25365,-1.1133,8.66897,3.11274,-1.1125,8.6748,2.97184,-1.1125,8.6748,3.25365,-1.23083,8.68975,3.11274,-1.23083,8.68975,2.96397,-1.23083,8.68975,3.26152,-1.23083,8.37057,3.11274,-1.23083,8.37057,2.96397,-1.23083,8.37057,3.26152,-0.995469,8.39135,3.11274,-0.99464,8.38503,2.96578,-0.994639,8.38503,3.25971,-0.995469,8.66897,3.11274,-0.99464,8.6753,2.96578,-0.994639,8.6753,3.25971,-1.10316,8.39135,3.11274,-1.10235,8.38548,2.97132,-1.10235,8.38548,3.25417,-1.10316,8.66897,3.11274,-1.10235,8.67485,2.97132,-1.10235,8.67485,3.25417,-1.1239,8.68975,3.11274,-1.1239,8.68975,2.95802,-1.1239,8.68975,3.26747,-1.1239,8.37057,3.11274,-1.1239,8.37057,2.95802,-1.1239,8.37057,3.26747,-0.980477,8.68975,3.11274,-0.980477,8.68975,2.95004,-0.980477,8.68975,3.27545,-0.980477,8.37057,3.11274,-0.980477,8.37057,2.95004,-0.980477,8.37057,3.27545,-0.181385,8.68975,3.11274,-0.181385,8.68975,2.92774,-0.181385,8.68975,3.29775,-0.275705,8.37057,3.11274,-0.181385,8.37057,2.92774,-0.181385,8.37057,3.29775,-1.24805,8.68975,3.02581,-1.24805,8.68975,3.19967,-1.24805,8.37057,3.02581,-1.24805,8.37057,3.19967,-1.1133,8.68975,3.0214,-1.1133,8.68975,3.20408,-1.1133,8.37057,3.0214,-1.1133,8.37057,3.20408,-0.988544,8.68975,3.01732,-0.988543,8.68975,3.20817,-0.988543,8.37057,3.01732,-0.988543,8.37057,3.20817,-0.988055,8.38761,3.0261,-0.988055,8.38761,3.19939,-0.988055,8.67271,3.0261,-0.988055,8.67271,3.19939,-1.11283,8.38792,3.02988,-1.11283,8.38792,3.19561,-1.11283,8.6724,3.02988,-1.11283,8.6724,3.19561,-1.23083,8.68975,3.02525,-1.23083,8.68975,3.20024,-1.23083,8.37057,3.02525,-1.23083,8.37057,3.20024,-0.994981,8.38763,3.02631,-0.994981,8.38763,3.19918,-0.994981,8.67269,3.02631,-0.994981,8.67269,3.19918,-1.10268,8.3879,3.02957,-1.10268,8.3879,3.19592,-1.10268,8.67243,3.02957,-1.10268,8.67243,3.19592,-1.1239,8.68975,3.02175,-1.1239,8.68975,3.20374,-1.1239,8.37057,3.02175,-1.1239,8.37057,3.20374,-0.980477,8.68975,3.01706,-0.980477,8.68975,3.20843,-0.980477,8.37057,3.01706,-0.980477,8.37057,3.20843,-0.181385,8.68975,3.00394,-0.181385,8.68975,3.22155,-0.275705,8.37057,3.00394,-0.275705,8.37057,3.22155,-0.185107,11.39,3.00394,-0.185107,11.39,3.22155,-0.185107,11.39,3.11274,-0.181432,8.70603,3.00394,-0.181432,8.70603,3.22155,-0.181432,8.70603,3.11274,-0.193048,8.68975,3.11274,-0.193048,8.68975,2.92827,-0.193048,8.68975,3.29722,-0.285146,8.37057,3.11274,-0.193048,8.37057,2.92827,-0.193048,8.37057,3.29722,-0.193048,8.68975,3.00425,-0.193048,8.68975,3.22124,-0.285146,8.37057,3.00425,-0.285146,8.37057,3.22124,-0.184617,11.138,3.00394,-0.184617,11.138,3.22155,-0.184617,11.138,3.11274,-0.348447,11.1377,2.84791,-0.348447,11.1377,3.37757,-0.348447,11.1377,3.11274,-0.348937,11.3896,2.84791,-0.348937,11.3896,3.37757,-0.348937,11.3896,3.11274,-0.184543,11.1,3.00394,-0.184543,11.1,3.22155,-0.184543,11.1,3.11274,-0.348867,11.3538,3.11274,-0.348868,11.3538,2.84791,-0.348867,11.3538,3.37757,-0.348541,11.1859,3.11274,-0.348541,11.1859,2.84791,-0.348541,11.1859,3.37757,-0.389264,8.45383,3.11274,-0.0735999,0.0229048,3.11275,-0.389264,7.65073,3.11274,-0.389264,6.04454,3.11274,-0.389264,5.24145,3.11274,-0.389264,3.63526,3.11274,-0.389264,2.83216,3.11274,-0.389258,1.22595,3.11275,-0.210429,0.184926,3.11275,-0.309314,0.500653,3.11275,-0.368924,0.877873,3.11275,-0.0476012,0.0198015,3.1113,-0.0476012,0.0198015,3.11419,-0.0225872,0.0114912,3.11139,-0.0225872,0.0114912,3.1141,-0.128252,8.45383,3.07353,-0.258758,7.65073,3.09831,-0.128252,7.65073,3.07353,-0.258754,1.22595,3.09831,-0.258754,1.22595,3.12718,-0.12825,1.22595,3.07353,-0.12825,1.22595,3.15196,-0.245198,0.877873,3.09601,-0.245198,0.877873,3.12948,-0.121472,0.877873,3.07209,-0.121472,0.877873,3.1534,-0.205459,0.500654,3.09072,-0.205459,0.500654,3.13477,-0.101603,0.500653,3.07228,-0.101603,0.500653,3.15321,-0.169913,0.184926,3.10116,-0.169913,0.184926,3.12433,-0.0889168,0.184926,3.09337,-0.0889168,0.184926,3.13212,-0.00236305,4.18559e-06,3.11129,-0.00236305,4.18594e-06,3.1142,-0.022,8.45383,3.17687,-0.0220001,7.65073,3.04862,-0.022,6.04454,3.04862,-0.022,6.04454,3.17687,-0.022,3.63526,3.04862,-0.022,3.63526,3.17687,-0.0219996,1.22595,3.04862,-0.0219996,1.22595,3.17687,-0.02074,0.877873,3.04835,-0.0207399,0.877873,3.17714,-0.0170474,0.500653,3.05468,-0.0170473,0.500653,3.17081,-0.0155793,0.184926,3.08645,-0.0155793,0.184926,3.13904,-0.069979,0.0226377,3.11177,-0.069979,0.0226377,3.11372,-0.371277,8.45383,3.11473,-0.371277,7.65073,3.11076,-0.371277,7.65073,3.11473,-0.371277,6.04454,3.11076,-0.371277,6.04454,3.11473,-0.371277,5.24145,3.11473,-0.371277,3.63526,3.11076,-0.371277,3.63526,3.11473,-0.371277,2.83216,3.11473,-0.371271,1.22595,3.11076,-0.371271,1.22595,3.11473,-0.351872,0.877873,3.11044,-0.351872,0.877873,3.11505,-0.295001,0.500653,3.10439,-0.295001,0.500653,3.1211,-0.208455,0.184926,3.10953,-0.208455,0.184926,3.11596,-0.00236305,4.18576e-06,3.11275,-0.0225872,0.0104317,3.11275,-0.0476012,0.018742,3.11275,-0.0669816,0.0212606,3.11275,-0.123247,0.0816931,3.11275,-0.0466542,0.0744203,3.10485,-0.0466542,0.0744203,3.12064,-0.0919809,0.0797151,3.10762,-0.0919809,0.0797151,3.11787,-0.00715842,0.0671018,3.10228,-0.00715841,0.0671018,3.12321,-0.120223,0.0815224,3.11096,-0.120223,0.0815224,3.11453,-0.258758,8.45383,3.09831,-0.258758,8.45383,3.12717,-0.258758,7.65073,3.12717,-0.128252,8.45383,3.15195,-0.128252,7.65073,3.15195,-0.0220001,8.45383,3.04862,-0.022,7.65074,3.17687,-0.371277,8.45383,3.11075,-0.389264,6.84764,3.11274,-0.128252,6.84764,3.07353,-0.128252,6.84764,3.15195,-0.258758,6.84764,3.09831,-0.258758,6.84764,3.12717,-0.0220001,6.84764,3.04862,-0.022,6.84764,3.17687,-0.371277,6.84764,3.11076,-0.371277,6.84764,3.11473,-0.128252,6.04454,3.07353,-0.128252,5.24145,3.07353,-0.128252,6.04454,3.15195,-0.128252,5.24145,3.15195,-0.258758,6.04454,3.09831,-0.258758,5.24145,3.09831,-0.258758,6.04454,3.12717,-0.258758,5.24145,3.12717,-0.022,5.24145,3.04862,-0.022,5.24145,3.17687,-0.371277,5.24145,3.11076,-0.389264,4.43835,3.11274,-0.128252,4.43835,3.07353,-0.128252,4.43835,3.15196,-0.258758,4.43835,3.09831,-0.258758,4.43835,3.12717,-0.022,4.43835,3.04862,-0.022,4.43835,3.17687,-0.371277,4.43835,3.11076,-0.371277,4.43835,3.11473,-0.128252,3.63526,3.07353,-0.128252,2.83216,3.07353,-0.128252,3.63526,3.15196,-0.128252,2.83216,3.15196,-0.258758,3.63526,3.09831,-0.258758,2.83216,3.09831,-0.258758,3.63526,3.12717,-0.258758,2.83216,3.12718,-0.022,2.83216,3.04862,-0.0219999,2.83216,3.17687,-0.371277,2.83216,3.11076,-0.389262,2.02906,3.11275,-0.128252,2.02906,3.07353,-0.128252,2.02906,3.15196,-0.258757,2.02906,3.09831,-0.258757,2.02906,3.12718,-0.0219998,2.02906,3.04862,-0.0219998,2.02906,3.17687,-0.371275,2.02906,3.11076,-0.371275,2.02906,3.11473,-0.106945,9.08023,3.00394,-0.107723,9.903,3.00394,-0.10845,10.7372,3.00394,-0.106945,9.08023,3.22155,-0.107723,9.903,3.22155,-0.10845,10.7372,3.22155,-0.106945,9.08023,3.11274,-0.107723,9.903,3.11274,-0.10845,10.7372,3.11274,-0.181529,8.7804,3.00394,-0.181529,8.7804,3.22155,-0.181529,8.7804,3.11274,-0.184462,11.0377,3.00394,-0.184462,11.0377,3.22155,-0.184462,11.0377,3.11274,2.79574e-06,8.68975,2.9124,2.92631e-06,8.68975,3.31309,1.24806,8.68975,2.96493,1.24806,8.68975,3.26056,1.24806,8.68975,3.11274,2.86102e-06,8.37057,3.11274,2.79574e-06,8.37057,2.9124,2.92631e-06,8.37057,3.31309,1.24806,8.37057,2.96493,1.24806,8.37057,3.26056,1.24806,8.37057,3.11274,1.11331,8.68975,3.11274,1.11331,8.68975,2.95743,1.11331,8.68975,3.26806,1.11331,8.37057,3.11274,1.11331,8.37057,2.95743,1.11331,8.37057,3.26806,0.988551,8.68975,3.11274,0.988551,8.68975,2.95049,0.988551,8.68975,3.275,0.988551,8.37057,3.11274,0.988551,8.37057,2.95049,0.988551,8.37057,3.275,0.988551,8.39135,3.11274,0.98772,8.385,2.96542,0.98772,8.385,3.26007,0.988551,8.66897,3.11274,0.98772,8.67532,2.96542,0.98772,8.67532,3.26007,1.11331,8.39135,3.11274,1.1125,8.38552,2.97184,1.1125,8.38552,3.25365,1.11331,8.66897,3.11274,1.1125,8.6748,2.97184,1.1125,8.6748,3.25365,1.23084,8.68975,3.11274,1.23084,8.68975,2.96397,1.23084,8.68975,3.26151,1.23084,8.37057,3.11274,1.23084,8.37057,2.96397,1.23084,8.37057,3.26151,0.995476,8.39135,3.11274,0.994647,8.38503,2.96577,0.994647,8.38503,3.25971,0.995476,8.66897,3.11274,0.994647,8.6753,2.96577,0.994647,8.6753,3.25971,1.10316,8.39135,3.11274,1.10236,8.38548,2.97132,1.10236,8.38548,3.25417,1.10316,8.66897,3.11274,1.10236,8.67485,2.97132,1.10236,8.67485,3.25417,1.1239,8.68975,3.11274,1.1239,8.68975,2.95802,1.1239,8.68975,3.26747,1.1239,8.37057,3.11274,1.1239,8.37057,2.95802,1.1239,8.37057,3.26747,0.980485,8.68975,3.11274,0.980485,8.68975,2.95004,0.980485,8.68975,3.27545,0.980485,8.37057,3.11274,0.980485,8.37057,2.95004,0.980485,8.37057,3.27545,0.181393,8.68975,3.11274,0.181392,8.68975,2.92774,0.181393,8.68975,3.29775,0.275713,8.37057,3.11274,0.181392,8.37057,2.92774,0.181393,8.37057,3.29775,2.82263e-06,8.68975,2.99492,2.89942e-06,8.68975,3.23057,1.24806,8.68975,3.02581,1.24806,8.68975,3.19967,2.82263e-06,8.37057,2.99492,2.89942e-06,8.37057,3.23057,1.24806,8.37057,3.02581,1.24806,8.37057,3.19967,1.11331,8.68975,3.0214,1.11331,8.68975,3.20408,1.11331,8.37057,3.0214,1.11331,8.37057,3.20408,0.988551,8.68975,3.01732,0.988551,8.68975,3.20817,0.988551,8.37057,3.01732,0.988551,8.37057,3.20817,0.988063,8.38761,3.0261,0.988063,8.38761,3.19939,0.988063,8.67271,3.0261,0.988063,8.67271,3.19939,1.11283,8.38792,3.02988,1.11283,8.38792,3.19561,1.11283,8.6724,3.02988,1.11283,8.6724,3.19561,1.23084,8.68975,3.02525,1.23084,8.68975,3.20024,1.23084,8.37057,3.02525,1.23084,8.37057,3.20024,0.994989,8.38763,3.02631,0.994989,8.38763,3.19918,0.994989,8.67269,3.02631,0.994989,8.67269,3.19918,1.10269,8.3879,3.02957,1.10269,8.3879,3.19592,1.10269,8.67243,3.02957,1.10269,8.67243,3.19592,1.1239,8.68975,3.02175,1.1239,8.68975,3.20374,1.1239,8.37057,3.02175,1.1239,8.37057,3.20374,0.980485,8.68975,3.01706,0.980485,8.68975,3.20843,0.980485,8.37057,3.01706,0.980485,8.37057,3.20843,0.181393,8.68975,3.00394,0.181393,8.68975,3.22155,0.275713,8.37057,3.00394,0.275713,8.37057,3.22155,0.185115,11.39,3.00394,0.185115,11.39,3.22155,2.74067e-06,11.39,2.99492,2.81746e-06,11.39,3.23057,0.185115,11.39,3.11274,2.77907e-06,11.39,3.11274,0.18144,8.70603,3.00394,0.18144,8.70603,3.22155,2.82263e-06,8.70603,2.99492,2.89942e-06,8.70603,3.23057,0.18144,8.70603,3.11274,0.193056,8.68975,3.11274,0.193055,8.68975,2.92827,0.193056,8.68975,3.29722,0.285154,8.37057,3.11274,0.193055,8.37057,2.92827,0.193056,8.37057,3.29722,0.193056,8.68975,3.00425,0.193056,8.68975,3.22124,0.285154,8.37057,3.00425,0.285154,8.37057,3.22124,0.184625,11.138,3.00394,0.184625,11.138,3.22155,2.74067e-06,11.138,2.99492,2.81746e-06,11.138,3.23057,0.184625,11.138,3.11274,0.348455,11.1377,2.84791,0.348455,11.1377,3.37757,0.348455,11.1377,3.11274,2.68983e-06,11.1377,2.83889,2.8683e-06,11.1377,3.3866,0.348945,11.3896,2.84791,0.348945,11.3896,3.37757,0.348945,11.3896,3.11274,2.68983e-06,11.3896,2.83889,2.8683e-06,11.3896,3.3866,0.184551,11.1,3.00394,0.184551,11.1,3.22155,2.74067e-06,11.1,2.99492,2.81746e-06,11.1,3.23057,0.184551,11.1,3.11274,0.348875,11.3538,3.11274,0.348875,11.3538,2.84791,0.348875,11.3538,3.37757,2.68983e-06,11.3538,2.83889,2.8683e-06,11.3538,3.3866,0.348549,11.1859,3.11274,0.348548,11.1859,2.84791,0.348549,11.1859,3.37757,2.68983e-06,11.1859,2.83889,2.8683e-06,11.1859,3.3866,0.389271,8.45383,3.11274,0.0736076,0.0229048,3.11275,0.389271,7.65073,3.11274,0.389271,6.04454,3.11274,0.389271,5.24145,3.11274,0.389271,3.63526,3.11274,0.389271,2.83216,3.11274,0.389265,1.22595,3.11275,0.210437,0.184926,3.11275,0.309322,0.500653,3.11275,0.368932,0.877873,3.11275,3.81419e-06,4.18558e-06,3.11117,3.81521e-06,4.18595e-06,3.11432,3.83745e-06,6.04454,3.18256,3.79195e-06,5.24145,3.04293,3.83745e-06,3.63526,3.18256,3.79195e-06,2.83216,3.04293,3.79195e-06,1.22595,3.04293,3.83745e-06,1.22595,3.18256,3.79195e-06,0.877873,3.04293,3.83745e-06,0.877873,3.18256,3.79445e-06,0.500653,3.05059,3.83495e-06,0.500653,3.1749,3.80547e-06,0.184926,3.08442,3.82393e-06,0.184926,3.14107,0.0476088,0.0198015,3.1113,0.0476088,0.0198015,3.11419,0.0225948,0.0114912,3.11139,0.0225948,0.0114912,3.1141,0.12826,8.45383,3.07353,0.258766,7.65073,3.09831,0.12826,7.65073,3.07353,0.258762,1.22595,3.09831,0.258762,1.22595,3.12718,0.128258,1.22595,3.07353,0.128258,1.22595,3.15196,0.245206,0.877873,3.09601,0.245206,0.877873,3.12948,0.12148,0.877873,3.07209,0.12148,0.877873,3.1534,0.205466,0.500654,3.09072,0.205466,0.500654,3.13477,0.10161,0.500653,3.07228,0.10161,0.500653,3.15321,0.169921,0.184926,3.10116,0.169921,0.184926,3.12433,0.0889244,0.184926,3.09337,0.0889244,0.184926,3.13212,0.00237068,4.18559e-06,3.11129,0.00237068,4.18594e-06,3.1142,0.0220077,8.45383,3.17687,0.0220077,7.65073,3.04862,0.0220076,6.04454,3.04862,0.0220077,6.04454,3.17687,0.0220076,3.63526,3.04862,0.0220077,3.63526,3.17687,0.0220072,1.22595,3.04862,0.0220072,1.22595,3.17687,0.0207476,0.877873,3.04835,0.0207476,0.877873,3.17714,0.017055,0.500653,3.05468,0.017055,0.500653,3.17081,0.0155869,0.184926,3.08645,0.0155869,0.184926,3.13904,0.0699866,0.0226377,3.11177,0.0699866,0.0226377,3.11372,0.371285,8.45383,3.11473,0.371285,7.65073,3.11076,0.371285,7.65073,3.11473,0.371285,6.04454,3.11076,0.371285,6.04454,3.11473,0.371285,5.24145,3.11473,0.371285,3.63526,3.11076,0.371285,3.63526,3.11473,0.371285,2.83216,3.11473,0.371279,1.22595,3.11076,0.371279,1.22595,3.11473,0.35188,0.877873,3.11044,0.35188,0.877873,3.11505,0.295009,0.500653,3.10439,0.295009,0.500653,3.1211,0.208462,0.184926,3.10953,0.208462,0.184926,3.11596,3.8147e-06,4.18576e-06,3.11275,0.00237068,4.18576e-06,3.11275,0.0225948,0.0104317,3.11275,0.0476088,0.018742,3.11275,0.0669892,0.0212606,3.11275,0.123255,0.0816931,3.11275,3.81102e-06,0.0671018,3.10147,3.81837e-06,0.0671018,3.12402,0.0466618,0.0744203,3.10485,0.0466618,0.0744203,3.12064,0.0919886,0.0797151,3.10762,0.0919886,0.0797151,3.11787,0.00716604,0.0671018,3.10228,0.00716605,0.0671018,3.12321,0.120231,0.0815224,3.11096,0.120231,0.0815224,3.11453,3.79195e-06,8.45383,3.04293,3.79195e-06,7.65074,3.04293,3.83745e-06,8.45383,3.18256,3.83745e-06,7.65074,3.18256,0.258766,8.45383,3.09831,0.258766,8.45383,3.12717,0.258766,7.65073,3.12717,0.12826,8.45383,3.15195,0.12826,7.65073,3.15195,0.0220077,8.45383,3.04862,0.0220077,7.65074,3.17687,0.371285,8.45383,3.11075,0.389271,6.84764,3.11274,3.79195e-06,6.84764,3.04293,3.83745e-06,6.84764,3.18256,0.12826,6.84764,3.07353,0.12826,6.84764,3.15195,0.258766,6.84764,3.09831,0.258766,6.84764,3.12717,0.0220077,6.84764,3.04862,0.0220077,6.84764,3.17687,0.371285,6.84764,3.11076,0.371285,6.84764,3.11473,3.79195e-06,6.04454,3.04293,3.83745e-06,5.24145,3.18256,0.12826,6.04454,3.07353,0.12826,5.24145,3.07353,0.12826,6.04454,3.15195,0.12826,5.24145,3.15195,0.258766,6.04454,3.09831,0.258766,5.24145,3.09831,0.258766,6.04454,3.12717,0.258766,5.24145,3.12717,0.0220076,5.24145,3.04862,0.0220077,5.24145,3.17687,0.371285,5.24145,3.11076,0.389271,4.43835,3.11274,3.79195e-06,4.43835,3.04293,3.83745e-06,4.43835,3.18256,0.12826,4.43835,3.07353,0.12826,4.43835,3.15195,0.258766,4.43835,3.09831,0.258766,4.43835,3.12717,0.0220076,4.43835,3.04862,0.0220076,4.43835,3.17687,0.371285,4.43835,3.11076,0.371285,4.43835,3.11473,3.79195e-06,3.63526,3.04293,3.83745e-06,2.83216,3.18256,0.12826,3.63526,3.07353,0.12826,2.83216,3.07353,0.12826,3.63526,3.15196,0.12826,2.83216,3.15196,0.258766,3.63526,3.09831,0.258766,2.83216,3.09831,0.258766,3.63526,3.12717,0.258766,2.83216,3.12717,0.0220076,2.83216,3.04862,0.0220076,2.83216,3.17687,0.371285,2.83216,3.11076,0.389269,2.02906,3.11275,3.79195e-06,2.02906,3.04293,3.83745e-06,2.02906,3.18256,0.128259,2.02906,3.07353,0.128259,2.02906,3.15196,0.258764,2.02906,3.09831,0.258764,2.02906,3.12718,0.0220074,2.02906,3.04862,0.0220075,2.02906,3.17687,0.371283,2.02906,3.11076,0.371283,2.02906,3.11473,0.106953,9.08023,3.00394,0.107731,9.903,3.00394,0.108457,10.7372,3.00394,0.106953,9.08023,3.22155,0.107731,9.903,3.22155,0.108457,10.7372,3.22155,3.77631e-06,9.08023,2.99492,2.78165e-06,9.903,2.99492,3.77631e-06,10.7372,2.99492,3.85309e-06,9.08023,3.23057,2.85844e-06,9.903,3.23057,3.85309e-06,10.7372,3.23057,0.106953,9.08023,3.11274,0.107731,9.903,3.11274,0.108457,10.7372,3.11274,0.181536,8.7804,3.00394,0.181536,8.7804,3.22155,3.77631e-06,8.7804,2.99492,3.85309e-06,8.7804,3.23057,0.181536,8.7804,3.11274,0.18447,11.0377,3.00394,0.18447,11.0377,3.22155,3.77631e-06,11.0377,2.99492,3.85309e-06,11.0377,3.23057,0.18447,11.0377,3.11274], - - "morphTargets": [{ "name": "animation_000000", "vertices": [5.58012,8.89256,-0.47301,5.57979,9.06534,-0.490937,5.57983,9.12742,-0.46554,5.57984,9.18197,-0.397213,5.57949,9.22038,-0.304712,5.57887,9.22515,-0.188612,5.57874,9.11086,0.0581205,5.57926,8.97509,0.0700323,5.57995,8.84946,-0.0363218,5.58076,8.77634,-0.18167,5.58135,8.81545,-0.43113,5.58183,8.76374,-0.338404,5.58379,8.98717,-0.499288,5.58124,9.21781,-0.0782947,5.65799,8.99372,-0.499144,5.66043,9.18671,-0.0662581,6.31627,8.86666,0.375431,6.27009,8.78069,0.369749,6.29209,8.88516,0.358448,6.30867,8.81863,0.372625,6.24232,8.78848,0.35739,6.20552,8.93813,0.558678,6.15728,8.85334,0.561713,6.17718,8.95595,0.517656,6.12286,8.86859,0.522483,6.17244,8.90226,0.569123,6.23387,8.97638,0.502002,6.28062,8.97605,0.448436,6.30109,8.92418,0.385186,6.27537,8.8332,0.338711,6.22274,8.75358,0.376716,6.17147,8.74127,0.439205,6.14036,8.92078,0.528682,6.13675,8.81129,0.514987,6.30343,8.71619,0.662258,6.32831,8.68177,0.615231,6.36816,8.7072,0.566649,6.42938,8.76786,0.541738,6.44764,8.85511,0.562607,6.44754,8.90592,0.607801,6.40275,8.90854,0.642789,6.48557,8.85195,0.786139,6.56092,8.84851,0.728565,6.59653,8.78326,0.652722,6.57694,8.69148,0.619722,6.51053,8.6259,0.643673,6.43015,8.62306,0.714874,6.41688,8.78654,0.802317,6.39469,8.69874,0.788091,6.40587,8.8934,0.710933,6.47616,8.88999,0.645445,6.49348,8.83286,0.590535,6.46957,8.74873,0.565916,6.41468,8.68328,0.590113,6.35731,8.6694,0.650672,6.34689,8.82415,0.729643,6.31968,8.73641,0.715443,6.248,8.76261,0.646943,6.27662,8.85415,0.660477,6.29209,8.69059,0.575551,6.35659,8.69691,0.521267,6.42029,8.76298,0.494468,6.44245,8.85937,0.518982,6.41278,8.92164,0.570127,6.33497,8.92807,0.644168,6.46226,8.84807,0.586785,6.44419,8.76375,0.565965,6.38373,8.69715,0.593593,6.43593,8.76379,0.553027,6.37992,8.70873,0.580795,6.45204,8.84287,0.577999,6.18443,8.79035,0.563498,6.1964,8.89258,0.600093,6.22505,8.71778,0.488625,6.26997,8.73133,0.420759,6.3424,8.80291,0.408935,6.3508,8.89154,0.428225,6.33499,8.9519,0.492173,6.26672,8.95473,0.562339,6.28745,8.85188,0.690412,6.33547,8.89716,0.66658,6.27603,8.78499,0.669264,6.37686,8.89934,0.663723,6.30034,8.75675,0.669459,6.37216,8.8793,0.698199,6.32137,8.83722,0.718447,6.31202,8.77157,0.70014,6.3416,8.88135,0.691885,6.35462,8.87334,0.699403,6.30138,8.78776,0.684174,6.30715,8.78926,0.699743,6.32612,8.83305,0.703634,6.28481,8.79764,0.680693,6.32983,8.88483,0.678654,6.30321,8.84261,0.683364,6.30718,8.84271,0.705099,5.89059,8.93225,0.258988,6.3021,8.90113,0.225419,6.27973,8.96582,0.26786,5.91813,9.03856,0.270519,6.0249,9.05491,0.274883,6.21932,9.03027,0.267854,6.12089,9.05673,0.280311,5.89072,8.79661,0.197299,6.29875,8.84062,0.167394,5.97409,8.76088,0.177057,6.08543,8.77489,0.154466,6.18587,8.79994,0.153445,6.04271,8.89365,0.436758,6.03227,8.7991,0.380597,6.07773,8.96511,0.453802,6.11468,8.99783,0.442941,6.25881,8.94642,0.322981,6.22476,8.99314,0.377259,6.23288,8.84258,0.278447,6.27198,8.89537,0.298958,6.17542,9.00065,0.412544,6.06591,8.74895,0.319883,6.18818,8.79545,0.270882,6.13636,8.75047,0.273416,6.04856,8.7859,-0.131984,6.04892,8.77613,0.0322466,6.04358,8.76489,-0.0502018,6.19385,8.78295,0.0415062,5.89185,8.75302,-0.151009,5.89328,8.74627,0.0214233,5.87255,8.73938,-0.0653098,6.1931,8.80831,-0.0397358,6.17826,8.81557,-0.12146,5.96314,8.81839,-0.201593,6.15312,8.82718,-0.180653,6.06874,8.81328,-0.192491,6.09818,9.2012,-0.0854787,6.102,9.19976,-0.168481,6.06339,9.19627,-0.269989,6.03331,9.17737,-0.367568,6.08018,9.17751,0.00409766,6.06583,9.14528,0.106176,6.00175,9.14381,-0.458081,5.97228,9.10327,-0.539013,5.97885,8.80604,-0.509287,5.95855,8.85561,-0.581041,5.95459,8.97064,-0.607211,5.95866,9.06995,-0.578147,5.99206,9.12511,-0.500575,6.07347,9.10814,0.160347,6.074,9.16417,0.0554987,6.01569,9.16255,-0.412919,6.05404,9.19225,-0.322691,6.08285,9.19618,-0.214603,6.09844,9.20331,-0.126625,6.09363,9.19167,-0.0444263,6.06848,8.85539,-0.241599,6.06515,8.81693,-0.322016,6.01075,8.7868,-0.431159,5.79561,9.14829,0.0164901,5.7957,9.194,-0.116816,5.78764,9.18242,-0.0573881,5.85359,9.15634,0.0370836,5.84192,9.19379,-0.0935425,6.38458,8.81991,-0.466921,6.33493,8.81803,-0.463687,6.50385,8.82739,-0.25513,6.41103,8.8406,-0.25227,6.52154,8.82392,-0.0658188,6.46466,8.85619,-0.0869274,6.36443,8.81831,-0.510274,6.28383,8.81618,-0.495272,6.40977,8.8174,-0.432826,6.29383,8.82705,-0.415568,6.48477,8.82565,-0.296597,6.34329,8.82864,-0.276254,6.50856,8.82428,-0.226445,6.37161,8.83835,-0.212967,6.51956,8.81021,-0.00405117,6.43219,8.83374,-0.0384029,6.518,8.80213,-0.108916,6.43006,8.828,-0.13259,6.22815,8.84918,-0.453469,6.29063,8.84909,-0.335376,6.31624,8.82054,-0.34229,6.3193,8.85726,-0.240596,6.36414,8.85218,-0.178294,6.39503,8.84059,-0.173056,6.38672,8.85294,-0.0920703,6.32453,9.15871,-0.0420658,6.41578,9.1435,-0.0430815,6.32792,9.18807,-0.133045,6.41198,9.17979,-0.137786,6.31075,9.1683,-0.220974,6.40169,9.14924,-0.227028,6.28314,9.18674,-0.344259,6.38081,9.17639,-0.351198,6.23888,9.15238,-0.433263,6.33236,9.14608,-0.444205,6.29227,9.15629,0.099451,6.4017,9.15692,0.106755,6.34106,8.95629,0.219245,6.39965,8.95242,0.217866,6.31347,9.04786,0.197632,6.39139,9.04305,0.194881,6.3666,8.8456,0.04723,6.42638,8.84183,0.0655556,6.3451,8.87762,0.139048,6.413,8.87564,0.154894,6.18396,9.1218,-0.531998,6.26466,9.12543,-0.543392,6.14432,9.07395,-0.608842,6.21842,9.07436,-0.621766,6.12791,8.95907,-0.647511,6.19712,8.95263,-0.662688,6.14648,8.85281,-0.614299,6.21742,8.84702,-0.628914,6.18363,8.81538,-0.543788,6.24941,8.80757,-0.547403,6.16002,9.09961,-0.572795,6.23543,9.09868,-0.589468,6.21136,9.13818,-0.479012,6.29113,9.1399,-0.493672,6.2928,9.10734,0.15872,6.3997,9.10591,0.154256,6.3095,9.15268,0.0271218,6.41005,9.14005,0.0353636,6.25653,9.16568,-0.393035,6.35741,9.16166,-0.402826,6.29923,9.17436,-0.269258,6.39081,9.15817,-0.273045,6.32205,9.17692,-0.176667,6.40787,9.1637,-0.184169,6.32992,9.17647,-0.087707,6.41284,9.16698,-0.0950447,6.5753,9.15759,-0.119801,6.56594,9.14773,-0.18449,6.23536,9.18242,-0.0870571,6.2296,9.19063,-0.17032,5.9606,9.19946,-0.0820734,5.99693,9.20389,-0.166145,6.50509,9.1532,-0.0993213,6.51424,9.1516,-0.190992,6.56974,9.16165,-0.155475,6.53271,9.14245,-0.419036,6.55416,9.13534,-0.306907,6.19238,9.18185,-0.265325,6.1439,9.17791,-0.380612,5.95537,9.20103,-0.269504,5.93507,9.18948,-0.346231,6.50786,9.13859,-0.28524,6.46463,9.15401,-0.41458,6.56607,9.14924,-0.374932,5.96668,9.174,0.00029377,6.57155,9.09396,0.158523,6.57139,9.12365,0.0534876,6.20381,9.15999,0.00785887,6.18088,9.13351,0.139238,5.95678,9.15122,0.0672859,6.51434,9.13172,0.0353894,6.501,9.06699,0.161214,6.5852,9.11427,0.104555,6.37003,9.10702,-0.612219,6.41871,9.12683,-0.537028,6.10626,9.14032,-0.467825,6.06692,9.09944,-0.554977,5.90256,9.14662,-0.455376,5.87519,9.11299,-0.521895,6.38129,9.12867,-0.512335,6.30615,9.09553,-0.607001,6.41183,9.11693,-0.576703,5.70453,8.77755,-0.270471,5.6946,8.79901,-0.127961,5.76198,8.7617,-0.272573,5.73791,8.78693,-0.106468,5.69771,8.78147,-0.199921,5.82832,8.76072,-0.287901,5.7903,8.75099,-0.0710156,5.73733,8.82022,-0.451534,5.74605,9.1735,-0.0604976,5.75378,9.09937,0.0550136,5.73619,8.96837,0.064211,5.73328,8.90578,-0.49582,5.73048,9.00664,-0.510541,5.74486,8.7763,-0.363744,5.75941,8.77823,-0.19633,5.72396,8.84422,-0.0170677,5.76147,9.2061,-0.1681,5.72999,9.0834,-0.497354,5.75506,9.21465,-0.289203,5.73785,9.14154,-0.459136,5.74386,9.18766,-0.386816,6.08209,8.83472,-0.524408,6.05364,8.85655,-0.599104,6.04511,8.96496,-0.625226,6.05225,9.06554,-0.594583,6.08626,9.12292,-0.513861,6.31577,8.88548,0.161645,6.30412,8.82818,0.0338926,6.18334,9.07236,0.203259,6.29855,8.963,0.235825,6.18423,9.15194,0.073589,6.12621,9.15753,-0.423661,6.16636,9.19217,-0.329686,6.21566,9.18115,-0.212798,6.23401,9.19641,-0.12845,6.22512,9.1688,-0.0458232,6.30588,8.85752,-0.0730598,6.26338,8.8543,-0.153386,6.20874,8.8573,-0.226064,6.19843,8.82342,-0.327937,6.131,8.79628,-0.44292,5.96981,9.2019,-0.131031,5.93262,8.79469,-0.316082,5.97333,9.19521,-0.314102,5.99189,9.16092,0.0377313,5.94662,9.12129,0.129623,5.86343,9.07607,-0.557718,5.86133,8.97975,-0.583961,5.86203,8.85161,-0.561491,5.87495,8.791,-0.495112,5.9191,9.12817,-0.491675,5.96243,9.19278,-0.0415124,5.96427,9.20225,-0.204925,5.9544,8.83007,-0.234021,5.90973,9.17255,-0.40223,5.89196,8.76891,-0.421779,6.59076,8.81431,-0.156141,6.64937,8.84076,-0.158743,6.53134,8.82673,-0.381509,6.59199,8.85756,-0.37597,6.59966,8.82716,0.109235,6.64856,8.82331,0.0867191,6.33914,8.86113,-0.651946,6.39436,8.86784,-0.6499,6.36648,8.82328,-0.589503,6.42311,8.84726,-0.596841,6.59191,8.82133,-0.0836785,6.65575,8.85763,-0.0897303,6.6006,8.84715,-0.0436867,6.65042,8.85609,-0.0464401,6.59043,8.81471,0.0203602,6.65389,8.84064,0.0173764,6.58519,8.83969,-0.229741,6.64948,8.87498,-0.230561,6.55995,8.84613,-0.300755,6.61876,8.87286,-0.305636,6.57751,8.85502,-0.260405,6.63457,8.88331,-0.26764,6.50121,8.83126,-0.440133,6.57065,8.87586,-0.451241,6.4216,8.81714,-0.520615,6.4918,8.85225,-0.535255,6.46643,8.82481,-0.476235,6.53997,8.8719,-0.490515,6.50843,9.16308,-0.143188,6.51566,8.81443,-0.173204,6.44324,8.80617,-0.366737,6.48091,9.16746,-0.358935,6.5065,9.13878,0.108062,6.48566,9.03755,0.20189,6.48619,8.9649,0.21625,6.50999,8.87238,0.17066,6.51336,8.82628,0.0864485,6.28839,9.07207,-0.63554,6.25815,8.95144,-0.676418,6.28413,8.84419,-0.641676,6.32749,8.81539,-0.570869,6.34323,9.12434,-0.55455,6.53033,9.12477,-0.0436474,6.52603,9.12644,-0.240445,6.44818,9.1339,-0.463507,6.61491,9.00758,-0.509292,6.61883,8.98857,-0.507461,6.59233,8.91914,-0.497036,6.58931,9.05587,-0.509106,6.60807,9.02151,-0.509477,6.69219,9.02211,-0.287135,6.69685,9.00426,-0.285605,6.68443,8.92731,-0.274019,6.68041,9.08126,-0.285904,6.68609,9.03535,-0.28603,6.71844,9.00968,-0.0433992,6.71662,8.9904,-0.0418454,6.69752,8.90841,-0.0436209,6.72015,9.03027,-0.0446858,6.70531,9.08794,-0.0481734,6.71794,9.00707,-0.0563274,6.71583,9.00451,-0.0305125,6.68339,9.02501,-0.288084,6.70098,9.01592,-0.277661,6.59646,9.00109,-0.517002,6.63359,8.9948,-0.495574,6.58894,9.02124,-0.516741,6.63125,9.01173,-0.497273,6.67807,9.03783,-0.28866,6.69611,9.03341,-0.278083,6.7038,8.99658,-0.275947,6.7134,9.03351,-0.0596774,6.71269,8.9856,-0.0299887,6.71357,9.02757,-0.0318105,6.47112,9.10081,-0.595068,6.53632,9.07378,-0.529707,6.5984,8.97788,-0.516331,6.55293,8.89139,-0.524276,6.474,8.86996,-0.596531,6.42941,8.88556,-0.651155,6.39643,8.93071,-0.675108,6.41841,9.03796,-0.664108,6.93101,8.95299,-0.653789,6.69512,9.00434,-0.577603,6.93825,8.91401,-0.625459,6.69704,8.9651,-0.550838,6.92534,8.87376,-0.648649,6.68362,8.91709,-0.57623,6.90667,8.83984,-0.710875,6.65988,8.86354,-0.637835,6.89029,8.86502,-0.777629,6.64584,8.88386,-0.702405,6.88767,8.90246,-0.809211,6.64419,8.92772,-0.736414,6.89742,8.94195,-0.785244,6.64782,8.98505,-0.725033,7.01247,8.95709,-0.810406,6.99842,8.89493,-0.829209,7.00363,8.83671,-0.801382,7.02122,8.81601,-0.742759,7.03656,8.84444,-0.686802,7.04471,8.90568,-0.667864,7.02713,8.98629,-0.75347,7.04374,8.96424,-0.698565,6.73944,9.02877,-0.594465,6.72066,9.04993,-0.662629,6.7414,8.95269,-0.558114,6.72532,8.87951,-0.579609,6.70182,8.83617,-0.643044,6.68555,8.8578,-0.713319,6.68442,8.92553,-0.749195,6.69935,9.02075,-0.728621,6.64981,9.05052,-0.57487,6.63355,9.0684,-0.646077,6.65278,8.98144,-0.533824,6.63979,8.89963,-0.559775,6.61984,8.8497,-0.623409,6.60298,8.86945,-0.690697,6.59864,8.93641,-0.72676,6.61288,9.03434,-0.705346,6.94209,8.97412,-0.797966,6.92869,8.9011,-0.816705,6.93004,8.8452,-0.78478,6.94619,8.82176,-0.721376,6.9653,8.85327,-0.662488,6.97792,8.91162,-0.641708,6.959,8.99897,-0.736826,6.97551,8.9809,-0.673425,6.89354,8.99663,-0.646728,6.87483,9.01253,-0.715185,6.89477,8.92023,-0.611416,6.88241,8.85982,-0.634371,6.86066,8.82479,-0.698059,6.84334,8.84944,-0.767373,6.83988,8.90699,-0.801173,6.85459,8.98888,-0.781559,6.8989,8.86479,-0.779171,6.91227,8.83997,-0.711572,6.93478,8.87336,-0.65062,6.90971,8.83924,-0.711303,6.92767,8.87178,-0.65727,6.8969,8.86494,-0.76986,6.65248,8.88311,-0.706147,6.66601,8.86282,-0.638294,6.69085,8.91478,-0.579093,6.65142,8.88309,-0.693858,6.66293,8.86215,-0.637752,6.68421,8.91241,-0.586819,6.81999,9.00757,-0.620724,6.80115,9.04796,-0.692122,6.82263,8.93103,-0.585073,6.80818,8.86628,-0.606976,6.7843,8.82982,-0.670698,6.76468,8.85363,-0.741204,6.76029,8.91411,-0.775554,6.77584,9.00139,-0.75574,6.5857,9.06571,-0.543452,6.54625,9.10182,-0.615889,6.62057,8.99563,-0.521933,6.57627,8.90096,-0.535082,6.53151,8.85772,-0.603043,6.50652,8.87552,-0.670605,6.50189,8.94055,-0.706076,6.51804,9.03902,-0.685022,6.89857,9.01968,-0.721192,6.8833,8.99289,-0.765108,6.90919,8.9978,-0.672916,6.89785,8.96772,-0.783617,6.9313,8.97504,-0.665807,6.92732,8.98349,-0.775181,6.93807,9.01134,-0.731648,6.95043,8.98831,-0.686023,6.90976,8.99847,-0.761587,6.92337,8.99307,-0.763869,6.92865,8.99182,-0.688002,6.94057,8.99643,-0.69409,6.93145,9.00078,-0.728463,6.91521,9.00246,-0.686182,6.89469,8.99937,-0.756586,6.90476,9.00554,-0.721036,6.92043,9.01393,-0.726034,6.65467,9.07737,-0.651782,6.6369,9.03587,-0.697847,6.66721,9.04926,-0.593367,6.65692,9.02162,-0.710284,6.69276,9.0326,-0.592902,6.69925,9.06763,-0.65875,6.68538,9.03239,-0.703385,6.71133,9.04121,-0.615126,6.70151,9.04659,-0.621379,6.68827,9.05542,-0.61601,6.66574,9.0429,-0.690221,6.67973,9.03737,-0.69223,6.69089,9.05801,-0.658486,6.67227,9.05039,-0.609773,6.64901,9.0379,-0.688369,6.66355,9.06189,-0.652768,6.67791,9.06951,-0.655819,7.00161,9.07016,0.0948462,6.98366,9.06373,0.0924703,6.98071,9.03116,0.0412012,6.97412,9.04053,0.143887,7.01806,9.05332,0.0953327,7.01811,9.02665,0.0502422,7.00109,9.03598,0.0464938,6.9955,9.04682,0.144247,7.01396,9.03358,0.141821,7.02211,9.02722,0.151104,7.02823,9.02053,0.0400347,7.02781,9.06191,0.0966463,6.99007,9.0228,0.16839,6.99758,9.01222,0.0195882,6.96135,9.04218,0.158391,6.97009,9.03183,0.025836,6.97194,9.08246,0.0919762,7.31003,9.01593,0.117786,7.2908,9.00625,0.116297,7.29239,9.00172,0.0724442,7.2889,9.00169,0.158989,7.32162,9.00004,0.118564,7.31814,8.99499,0.160089,7.30358,8.98937,0.161649,7.32494,8.99448,0.0756162,7.31025,9.00081,0.0729574,7.32466,8.98582,0.172793,7.3291,9.01299,0.118497,7.33213,8.98471,0.0635678,7.298,8.96994,0.1868,7.30437,8.96804,0.0408517,7.27765,8.99591,0.171401,7.28314,8.99525,0.0585167,7.28462,9.02338,0.115349,6.8375,9.05095,0.00559874,6.82875,8.96033,-0.0256551,6.81406,8.86932,0.00584153,6.80232,8.82022,0.0909672,6.79547,8.85216,0.178684,6.80155,8.94362,0.207866,6.8351,9.09919,0.082893,6.8154,9.045,0.165552,7.15844,9.0012,0.0270987,7.14636,8.90318,-0.00549894,7.1349,8.82447,0.0269039,7.12628,8.78646,0.105828,7.12573,8.82541,0.184485,7.13386,8.90445,0.217061,7.1599,9.05012,0.106308,7.14924,9.0021,0.185265,6.97484,8.85323,0.160419,6.97221,8.822,0.0928469,6.98421,8.86967,0.0269517,6.97993,8.85478,0.173037,6.97743,8.82153,0.0933597,6.99003,8.87109,0.0148856,7.29785,8.83743,0.047663,7.28915,8.83765,0.187714,7.29076,8.80239,0.117536,7.2936,8.83539,0.198235,7.29325,8.8028,0.118387,7.30313,8.834,0.037819,7.25816,8.99352,0.0313041,7.24778,8.90054,-0.00227053,7.23749,8.82613,0.0316756,7.23023,8.79009,0.113231,7.22801,8.82713,0.194092,7.23461,8.90181,0.228226,7.25532,9.0144,0.113442,7.24896,8.99456,0.195178,7.34558,8.97829,0.19805,7.35245,8.99912,0.120116,7.33509,8.8828,0.230601,7.32956,8.79711,0.197129,7.33232,8.76901,0.119667,7.33848,8.79609,0.0414227,7.34763,8.88174,0.00849236,7.35458,8.97725,0.0415349,6.94637,9.02817,0.0123083,6.93831,8.92988,-0.0189614,6.92839,8.85633,0.013072,6.92001,8.81653,0.0890713,6.91927,8.84932,0.166001,6.92526,8.93268,0.199085,6.94523,9.07142,0.0895439,6.93712,9.03948,0.167727,7.05441,9.0076,0.0169452,7.04445,8.91637,-0.0163903,7.03047,8.83452,0.016911,7.02036,8.79188,0.0975456,7.02096,8.82921,0.178389,7.03118,8.91551,0.212257,7.0523,9.03625,0.0978706,7.04485,9.0126,0.179843,7.43014,8.9619,0.201487,7.42872,8.99897,0.125037,7.41852,8.8681,0.232416,7.41652,8.7817,0.201823,7.42257,8.76728,0.125628,7.42537,8.78077,0.0484707,7.43093,8.86686,0.0172997,7.43772,8.9651,0.0517244,6.99328,8.97449,-0.00114947,7.30425,8.93933,0.0375656,6.99212,8.92205,-0.0176071,7.30169,8.89229,0.00202675,6.9804,8.87235,0.0160168,7.29329,8.83736,0.0359974,6.96743,8.82396,0.0926262,7.28778,8.80389,0.116639,6.96818,8.8567,0.172338,7.28338,8.83857,0.196444,6.97835,8.91646,0.205396,7.28863,8.89348,0.231117,6.98659,8.98121,0.181593,7.29339,8.94433,0.19827,6.69581,9.10126,-0.00985292,6.70023,8.88235,-0.00465699,6.6958,8.83155,0.117055,6.65929,8.89105,0.167966,6.68857,8.94742,0.198485,6.69276,9.05548,0.17453,6.70713,9.11213,0.0796777,6.65261,9.13293,-0.390651,6.65269,9.09555,-0.310408,6.68731,9.00524,-0.287527,6.66722,8.91434,-0.305607,6.6447,8.86808,-0.383592,6.62493,8.90113,-0.463642,6.63316,8.97945,-0.49322,6.62493,9.08706,-0.475592,7.22454,9.0016,-0.405821,6.92601,9.05519,-0.352561,7.22598,8.95862,-0.375769,6.92658,9.0028,-0.330678,7.21511,8.91797,-0.407055,6.91622,8.9471,-0.359431,7.20383,8.88755,-0.481646,6.90513,8.90627,-0.433716,7.19341,8.92018,-0.555301,6.9012,8.95174,-0.507043,7.19435,8.96194,-0.587362,6.90367,9.00531,-0.538654,7.20321,9.00022,-0.554956,6.90348,9.05728,-0.522403,7.33757,9.01653,-0.57243,7.32393,8.94808,-0.603332,7.32549,8.87855,-0.57476,7.33816,8.849,-0.503496,7.3475,8.87638,-0.43086,7.35508,8.94497,-0.401144,7.35893,9.01432,-0.432594,6.98069,9.08814,-0.367273,6.97314,9.1088,-0.442634,6.9769,8.99605,-0.336763,6.96683,8.91175,-0.367503,6.95566,8.87068,-0.442541,6.95117,8.91563,-0.517932,6.9547,8.99827,-0.548984,6.96445,9.08227,-0.517726,6.87576,9.09699,-0.353099,6.8688,9.11998,-0.425758,6.87613,9.01135,-0.322509,6.86844,8.92765,-0.353322,6.85841,8.88562,-0.426399,6.85181,8.92947,-0.499202,6.85103,9.01192,-0.529086,6.85871,9.09915,-0.498039,7.25261,9.03343,-0.561688,7.23933,8.95896,-0.592222,7.23687,8.89594,-0.561143,7.24667,8.86529,-0.488786,7.25891,8.89373,-0.41589,7.27021,8.95572,-0.385134,7.26658,9.05269,-0.488869,7.27514,9.03129,-0.416253,7.1797,9.04889,-0.398472,7.16933,9.06772,-0.473322,7.17457,8.96509,-0.367309,7.16457,8.90306,-0.398725,7.15147,8.8713,-0.473501,7.14296,8.90513,-0.548164,7.14409,8.96829,-0.579531,7.15573,9.05112,-0.54828,7.20306,8.91943,-0.555906,7.20998,8.88744,-0.481412,7.22522,8.91739,-0.40737,7.20707,8.88677,-0.481576,7.21907,8.9167,-0.416333,7.20012,8.91937,-0.545717,6.91018,8.95096,-0.510073,6.91362,8.90516,-0.43581,6.9268,8.94549,-0.361695,6.90644,8.94893,-0.497492,6.90927,8.90485,-0.434767,6.92013,8.94271,-0.371603,7.08336,9.0642,-0.383395,7.07583,9.10651,-0.457821,7.0785,8.9791,-0.352893,7.06721,8.90209,-0.383586,7.05566,8.86357,-0.458717,7.05061,8.90364,-0.534012,7.05234,8.98178,-0.564525,7.06236,9.06636,-0.532815,6.78922,9.09618,-0.333,6.77133,9.1357,-0.409074,6.79246,9.02121,-0.298622,6.77842,8.92466,-0.330499,6.75415,8.87579,-0.407684,6.74507,8.91366,-0.486407,6.74751,9.00604,-0.520374,6.75714,9.08909,-0.486969,7.19791,9.07371,-0.477818,7.1857,9.05018,-0.5293,7.20313,9.04858,-0.426393,7.20313,9.02613,-0.550813,7.22613,9.02502,-0.417055,7.23476,9.04025,-0.536296,7.24363,9.06476,-0.485084,7.25004,9.03914,-0.435024,7.21477,9.05427,-0.52231,7.2301,9.04872,-0.523384,7.22651,9.04261,-0.440743,7.24096,9.04754,-0.445143,7.23606,9.05344,-0.483672,7.21131,9.05353,-0.439668,7.1972,9.05527,-0.518714,7.20458,9.05864,-0.478709,7.224,9.06681,-0.481411,6.89296,9.13309,-0.428599,6.88292,9.10115,-0.490243,6.89565,9.09858,-0.367067,6.90987,9.08788,-0.502739,6.9251,9.08847,-0.364907,6.94785,9.12879,-0.437754,6.94175,9.09522,-0.490331,6.95165,9.09941,-0.387567,6.94195,9.10348,-0.39418,6.92446,9.10973,-0.387328,6.91569,9.10728,-0.477652,6.93283,9.10025,-0.478364,6.93779,9.11822,-0.436691,6.90471,9.10175,-0.38285,6.8951,9.10354,-0.478167,6.90403,9.11957,-0.430861,6.92203,9.12887,-0.432926,7.03794,9.12201,-0.194396,7.01875,9.11218,-0.193122,7.01158,9.09467,-0.243276,7.01551,9.09256,-0.142514,7.05453,9.11034,-0.197006,7.05117,9.09443,-0.241408,7.03308,9.09978,-0.241742,7.03718,9.10161,-0.145891,7.05641,9.09471,-0.151785,7.067,9.09038,-0.14372,7.06133,9.09042,-0.254016,7.06564,9.12293,-0.197781,7.03722,9.07875,-0.121398,7.02766,9.07718,-0.268724,7.00516,9.09007,-0.125988,6.9992,9.09211,-0.256487,7.00716,9.12799,-0.19136,7.37326,9.0674,-0.225993,7.35215,9.05848,-0.224348,7.34698,9.05421,-0.268172,7.3571,9.05287,-0.181603,7.38705,9.0519,-0.227549,7.3907,9.04554,-0.186057,7.37451,9.04042,-0.182089,7.3839,9.0463,-0.270482,7.36701,9.0528,-0.270589,7.39988,9.03617,-0.174918,7.39549,9.06389,-0.228667,7.38988,9.03675,-0.283664,7.37277,9.02101,-0.156661,7.35658,9.02138,-0.301866,7.34727,9.047,-0.167494,7.33496,9.04809,-0.280582,7.34505,9.07481,-0.223905,6.84759,9.08817,-0.251574,6.83632,9.00725,-0.292701,6.83077,8.90731,-0.258935,6.82903,8.85458,-0.174914,6.84299,8.8933,-0.0922879,6.85619,8.98661,-0.0598055,6.86162,9.12986,-0.175449,6.85856,9.08246,-0.100682,7.19951,9.05621,-0.290908,7.18828,8.96518,-0.323641,7.18254,8.88409,-0.290917,7.18386,8.84091,-0.211244,7.19437,8.88283,-0.131693,7.20722,8.96337,-0.0988344,7.20951,9.10163,-0.211201,7.21211,9.05483,-0.131585,7.03076,8.93061,-0.12792,7.01986,8.88746,-0.194972,7.02088,8.93483,-0.261922,7.03754,8.92992,-0.116889,7.02352,8.88783,-0.195679,7.02501,8.93367,-0.275022,7.35207,8.90359,-0.296327,7.36463,8.90174,-0.155362,7.35601,8.86152,-0.22629,7.37127,8.90105,-0.145958,7.35943,8.86183,-0.225924,7.35654,8.90213,-0.306583,7.30375,9.04691,-0.30351,7.29401,8.95833,-0.337448,7.28956,8.88314,-0.303317,7.29462,8.84066,-0.22131,7.30384,8.88171,-0.139291,7.31349,8.95609,-0.105121,7.31379,9.0665,-0.221034,7.32019,9.04537,-0.138933,7.42603,9.02745,-0.153967,7.42056,9.05021,-0.231169,7.42026,8.94562,-0.121242,7.4083,8.87154,-0.153639,7.40018,8.83446,-0.231318,7.39259,8.87307,-0.308776,7.39888,8.94781,-0.341533,7.41105,9.02884,-0.309002,6.97302,9.08947,-0.264964,6.96436,9.00146,-0.296042,6.96127,8.9085,-0.264505,6.96352,8.86429,-0.188521,6.97266,8.90076,-0.112638,6.98111,8.98738,-0.0813244,6.97941,9.11418,-0.188825,6.98226,9.08691,-0.112633,7.08799,9.07758,-0.282301,7.07732,8.98273,-0.315384,7.06965,8.89628,-0.281829,7.06923,8.85305,-0.200581,7.08156,8.89486,-0.119452,7.09556,8.97815,-0.0856488,7.09278,9.10204,-0.201128,7.09816,9.07613,-0.119247,7.51806,9.00911,-0.166591,7.51132,8.93557,-0.133654,7.50516,8.85767,-0.16446,7.50021,8.81576,-0.241312,7.48976,8.85916,-0.317297,7.4898,8.93767,-0.347261,7.50319,9.01057,-0.31463,7.02216,9.04512,-0.289079,7.35653,8.99368,-0.30582,7.02175,8.99515,-0.305999,7.35129,8.9528,-0.341198,7.01592,8.93417,-0.27211,7.34658,8.90423,-0.307103,7.01578,8.88843,-0.194297,7.35342,8.86315,-0.22671,7.02693,8.93032,-0.115433,7.36052,8.90276,-0.145818,7.03918,8.98824,-0.0835585,7.37185,8.95054,-0.112323,7.03827,9.04164,-0.108034,7.37002,8.99608,-0.144699,6.68163,9.0928,-0.244473,6.69546,8.90641,-0.235676,6.69217,8.85604,-0.158524,6.7017,8.89696,-0.0844171,6.7142,8.98471,-0.0540639,6.6837,9.12411,-0.092907,6.71845,9.1424,-0.16431,5.86951,9.21105,-0.175842,5.79701,8.7662,-0.385583,5.7693,8.89384,-0.520211,5.77502,8.8033,-0.473093,5.7638,9.0921,-0.519892,5.82602,9.09622,0.123908,5.84427,9.18123,-0.0339205,5.7776,8.80159,0.0195716,5.79618,8.96692,0.117804,5.80296,9.18845,-0.393334,5.76522,9.01153,-0.537836,5.83294,8.77518,-0.191201,5.85582,9.2116,-0.294326,5.79599,9.14183,-0.474346,5.65632,9.13004,-0.454535,5.65902,9.20945,-0.291129,5.64104,8.78012,-0.203751,5.6575,9.17883,-0.385474,5.65666,8.96326,0.047487,5.64214,8.84798,-0.0553137,5.65935,9.09078,0.0433801,5.65577,9.06951,-0.488133,5.6575,8.82591,-0.437451,5.65646,8.90377,-0.480968,5.65655,8.78119,-0.333467,5.66001,9.21195,-0.17825,7.51619,9.04902,-0.243385,7.35843,9.04923,-0.507929,-5.58013,8.89256,-0.473009,-5.57979,9.06534,-0.490937,-5.57983,9.12742,-0.465539,-5.57984,9.18197,-0.397213,-5.57949,9.22038,-0.304712,-5.57887,9.22515,-0.188612,-5.57874,9.11086,0.0581205,-5.57926,8.97509,0.0700324,-5.57995,8.84946,-0.0363217,-5.58076,8.77634,-0.18167,-5.58135,8.81546,-0.43113,-5.58183,8.76374,-0.338404,-5.58379,8.98717,-0.499288,-5.58124,9.21781,-0.0782947,-5.65799,8.99372,-0.499144,-5.66043,9.18671,-0.0662581,-6.31627,8.86665,0.375432,-6.27009,8.78069,0.369749,-6.2921,8.88516,0.358448,-6.30867,8.81862,0.372625,-6.24232,8.78848,0.35739,-6.20552,8.93813,0.558679,-6.15728,8.85334,0.561713,-6.17718,8.95595,0.517657,-6.12286,8.86859,0.522483,-6.17244,8.90226,0.569123,-6.23387,8.97638,0.502003,-6.28062,8.97605,0.448437,-6.30109,8.92418,0.385186,-6.27538,8.8332,0.338711,-6.22274,8.75358,0.376716,-6.17147,8.74127,0.439205,-6.14036,8.92078,0.528682,-6.13675,8.81129,0.514987,-6.30343,8.71619,0.662258,-6.32831,8.68177,0.615231,-6.36816,8.7072,0.566649,-6.42938,8.76786,0.541738,-6.44764,8.85511,0.562607,-6.44754,8.90591,0.607801,-6.40275,8.90854,0.642789,-6.48557,8.85195,0.786139,-6.56092,8.84851,0.728565,-6.59653,8.78326,0.652722,-6.57694,8.69148,0.619722,-6.51053,8.6259,0.643673,-6.43015,8.62306,0.714874,-6.41688,8.78654,0.802317,-6.39469,8.69873,0.788091,-6.40587,8.8934,0.710933,-6.47616,8.88998,0.645445,-6.49348,8.83286,0.590535,-6.46957,8.74872,0.565916,-6.41468,8.68328,0.590113,-6.35731,8.6694,0.650672,-6.34689,8.82415,0.729643,-6.31968,8.73641,0.715443,-6.248,8.76261,0.646943,-6.27663,8.85415,0.660478,-6.29209,8.69059,0.575552,-6.3566,8.69691,0.521268,-6.42029,8.76298,0.494468,-6.44245,8.85937,0.518982,-6.41278,8.92164,0.570128,-6.33497,8.92807,0.644168,-6.46226,8.84807,0.586785,-6.44419,8.76374,0.565965,-6.38373,8.69715,0.593593,-6.43593,8.76379,0.553027,-6.37992,8.70872,0.580795,-6.45204,8.84287,0.577999,-6.18443,8.79035,0.563499,-6.1964,8.89258,0.600093,-6.22506,8.71778,0.488625,-6.26997,8.73132,0.42076,-6.3424,8.80291,0.408936,-6.3508,8.89153,0.428226,-6.33499,8.9519,0.492173,-6.26672,8.95473,0.56234,-6.28745,8.85188,0.690412,-6.33547,8.89716,0.666581,-6.27603,8.78499,0.669265,-6.37686,8.89934,0.663724,-6.30034,8.75675,0.669459,-6.37216,8.8793,0.698199,-6.32137,8.83722,0.718447,-6.31202,8.77157,0.70014,-6.3416,8.88135,0.691885,-6.35462,8.87334,0.699403,-6.30138,8.78776,0.684174,-6.30715,8.78925,0.699743,-6.32612,8.83305,0.703634,-6.28481,8.79764,0.680693,-6.32983,8.88483,0.678654,-6.30321,8.84261,0.683364,-6.30718,8.84271,0.705099,-5.8906,8.93225,0.258988,-6.3021,8.90113,0.225419,-6.27973,8.96582,0.26786,-5.91813,9.03856,0.270519,-6.0249,9.05491,0.274883,-6.21932,9.03027,0.267854,-6.1209,9.05673,0.280311,-5.89072,8.79661,0.197299,-6.29875,8.84062,0.167394,-5.97409,8.76088,0.177057,-6.08543,8.77489,0.154466,-6.18587,8.79994,0.153445,-6.04271,8.89365,0.436758,-6.03227,8.7991,0.380597,-6.07773,8.96511,0.453802,-6.11468,8.99783,0.442941,-6.25881,8.94642,0.322981,-6.22476,8.99314,0.377259,-6.23288,8.84258,0.278447,-6.27198,8.89537,0.298958,-6.17542,9.00065,0.412544,-6.06591,8.74895,0.319883,-6.18818,8.79545,0.270882,-6.13636,8.75047,0.273416,-6.04856,8.7859,-0.131984,-6.04893,8.77613,0.0322465,-6.04358,8.76489,-0.0502018,-6.19385,8.78295,0.0415062,-5.89185,8.75302,-0.15101,-5.89328,8.74627,0.0214232,-5.87255,8.73938,-0.0653099,-6.1931,8.80832,-0.0397358,-6.17826,8.81557,-0.12146,-5.96314,8.81839,-0.201593,-6.15312,8.82718,-0.180653,-6.06874,8.81328,-0.192491,-6.09818,9.20121,-0.0854787,-6.102,9.19976,-0.168481,-6.06339,9.19627,-0.269989,-6.03331,9.17737,-0.367568,-6.08018,9.17751,0.00409763,-6.06583,9.14528,0.106176,-6.00175,9.14381,-0.458081,-5.97228,9.10328,-0.539013,-5.97885,8.80604,-0.509287,-5.95854,8.85561,-0.581041,-5.95459,8.97064,-0.607211,-5.95865,9.06995,-0.578147,-5.99206,9.12511,-0.500575,-6.07347,9.10814,0.160347,-6.074,9.16417,0.0554986,-6.01569,9.16255,-0.412919,-6.05404,9.19225,-0.322691,-6.08285,9.19618,-0.214603,-6.09844,9.20331,-0.126625,-6.09363,9.19167,-0.0444263,-6.06848,8.85539,-0.241599,-6.06515,8.81693,-0.322016,-6.01075,8.7868,-0.431159,-5.79561,9.14829,0.01649,-5.7957,9.194,-0.116816,-5.78764,9.18242,-0.0573881,-5.85359,9.15634,0.0370836,-5.84192,9.19379,-0.0935425,-6.38458,8.81991,-0.466921,-6.33493,8.81804,-0.463687,-6.50385,8.8274,-0.25513,-6.41103,8.8406,-0.25227,-6.52154,8.82392,-0.0658187,-6.46466,8.85619,-0.0869274,-6.36443,8.81831,-0.510274,-6.28383,8.81618,-0.495272,-6.40977,8.8174,-0.432826,-6.29383,8.82705,-0.415568,-6.48477,8.82565,-0.296597,-6.34329,8.82864,-0.276254,-6.50856,8.82428,-0.226445,-6.37161,8.83836,-0.212967,-6.51956,8.81021,-0.00405114,-6.43219,8.83374,-0.0384028,-6.518,8.80213,-0.108916,-6.43006,8.828,-0.13259,-6.22815,8.84919,-0.453469,-6.29063,8.84909,-0.335376,-6.31624,8.82054,-0.34229,-6.3193,8.85726,-0.240596,-6.36414,8.85218,-0.178294,-6.39503,8.84059,-0.173056,-6.38672,8.85294,-0.0920703,-6.32453,9.15871,-0.0420658,-6.41578,9.1435,-0.0430815,-6.32792,9.18807,-0.133045,-6.41198,9.17979,-0.137786,-6.31075,9.1683,-0.220974,-6.40169,9.14924,-0.227028,-6.28314,9.18674,-0.344259,-6.38081,9.17639,-0.351198,-6.23888,9.15238,-0.433263,-6.33236,9.14608,-0.444205,-6.29227,9.15629,0.099451,-6.4017,9.15692,0.106755,-6.34106,8.95629,0.219245,-6.39965,8.95242,0.217866,-6.31347,9.04787,0.197632,-6.39139,9.04305,0.194881,-6.3666,8.8456,0.04723,-6.42638,8.84183,0.0655556,-6.3451,8.87762,0.139048,-6.413,8.87564,0.154894,-6.18396,9.1218,-0.531998,-6.26466,9.12543,-0.543392,-6.14432,9.07395,-0.608842,-6.21842,9.07436,-0.621766,-6.12791,8.95908,-0.647511,-6.19712,8.95263,-0.662688,-6.14648,8.85281,-0.614299,-6.21742,8.84702,-0.628914,-6.18363,8.81538,-0.543788,-6.24941,8.80757,-0.547403,-6.16002,9.09961,-0.572795,-6.23543,9.09868,-0.589468,-6.21136,9.13818,-0.479012,-6.29113,9.1399,-0.493672,-6.2928,9.10734,0.15872,-6.3997,9.10591,0.154256,-6.3095,9.15268,0.0271218,-6.41005,9.14005,0.0353637,-6.25653,9.16568,-0.393035,-6.35741,9.16166,-0.402826,-6.29923,9.17436,-0.269258,-6.39081,9.15817,-0.273045,-6.32205,9.17692,-0.176667,-6.40787,9.1637,-0.184169,-6.32992,9.17647,-0.087707,-6.41284,9.16698,-0.0950447,-6.5753,9.15759,-0.119801,-6.56594,9.14773,-0.18449,-6.23536,9.18242,-0.0870572,-6.2296,9.19063,-0.17032,-5.96059,9.19946,-0.0820735,-5.99693,9.20389,-0.166145,-6.50509,9.1532,-0.0993212,-6.51424,9.1516,-0.190992,-6.56974,9.16165,-0.155475,-6.53271,9.14245,-0.419036,-6.55417,9.13534,-0.306908,-6.19238,9.18185,-0.265325,-6.1439,9.17791,-0.380612,-5.95537,9.20103,-0.269504,-5.93507,9.18948,-0.346231,-6.50786,9.13859,-0.28524,-6.46464,9.15401,-0.41458,-6.56607,9.14924,-0.374932,-5.96668,9.174,0.000293727,-6.57155,9.09396,0.158523,-6.57139,9.12365,0.0534876,-6.20381,9.15999,0.00785885,-6.18088,9.13351,0.139238,-5.95678,9.15122,0.0672859,-6.51434,9.13172,0.0353895,-6.501,9.06699,0.161214,-6.58521,9.11426,0.104555,-6.37003,9.10702,-0.612219,-6.41871,9.12683,-0.537028,-6.10626,9.14032,-0.467825,-6.06692,9.09944,-0.554977,-5.90256,9.14662,-0.455376,-5.87519,9.11299,-0.521896,-6.38129,9.12867,-0.512335,-6.30615,9.09553,-0.607001,-6.41183,9.11693,-0.576703,-5.70453,8.77755,-0.270471,-5.6946,8.79901,-0.127961,-5.76198,8.7617,-0.272573,-5.73791,8.78693,-0.106468,-5.69771,8.78147,-0.199921,-5.82832,8.76072,-0.287901,-5.7903,8.75099,-0.0710157,-5.73733,8.82022,-0.451534,-5.74605,9.1735,-0.0604976,-5.75378,9.09937,0.0550136,-5.73619,8.96837,0.064211,-5.73328,8.90578,-0.49582,-5.73048,9.00664,-0.510541,-5.74486,8.7763,-0.363744,-5.75941,8.77823,-0.19633,-5.72396,8.84422,-0.0170676,-5.76147,9.2061,-0.1681,-5.72999,9.0834,-0.497354,-5.75505,9.21465,-0.289203,-5.73785,9.14155,-0.459136,-5.74386,9.18766,-0.386816,-6.08209,8.83472,-0.524408,-6.05364,8.85655,-0.599104,-6.04511,8.96496,-0.625226,-6.05225,9.06554,-0.594584,-6.08626,9.12292,-0.513861,-6.31577,8.88548,0.161645,-6.30412,8.82818,0.0338926,-6.18334,9.07236,0.203259,-6.29855,8.963,0.235825,-6.18423,9.15194,0.0735889,-6.12621,9.15753,-0.423661,-6.16636,9.19218,-0.329686,-6.21566,9.18115,-0.212798,-6.23401,9.19641,-0.12845,-6.22512,9.1688,-0.0458232,-6.30588,8.85752,-0.0730598,-6.26338,8.8543,-0.153386,-6.20874,8.8573,-0.226064,-6.19843,8.82342,-0.327937,-6.131,8.79628,-0.44292,-5.96981,9.2019,-0.131031,-5.93262,8.79469,-0.316082,-5.97333,9.19522,-0.314102,-5.99189,9.16092,0.0377313,-5.94662,9.12129,0.129622,-5.86343,9.07607,-0.557718,-5.86133,8.97975,-0.583961,-5.86203,8.85161,-0.561491,-5.87495,8.791,-0.495112,-5.9191,9.12817,-0.491675,-5.96243,9.19278,-0.0415124,-5.96427,9.20225,-0.204925,-5.9544,8.83007,-0.234021,-5.90973,9.17255,-0.40223,-5.89196,8.76891,-0.421779,-6.59076,8.81431,-0.156141,-6.64937,8.84076,-0.158743,-6.53134,8.82673,-0.381509,-6.59199,8.85756,-0.37597,-6.59966,8.82716,0.109235,-6.64856,8.82331,0.0867191,-6.33914,8.86113,-0.651946,-6.39436,8.86785,-0.6499,-6.36648,8.82328,-0.589503,-6.42311,8.84726,-0.596841,-6.59191,8.82133,-0.0836785,-6.65575,8.85763,-0.0897302,-6.6006,8.84715,-0.0436866,-6.65042,8.85609,-0.0464401,-6.59043,8.81471,0.0203602,-6.65389,8.84064,0.0173764,-6.58519,8.83969,-0.229741,-6.64948,8.87498,-0.230561,-6.55995,8.84613,-0.300755,-6.61876,8.87286,-0.305636,-6.57751,8.85502,-0.260405,-6.63457,8.88331,-0.26764,-6.50121,8.83126,-0.440133,-6.57065,8.87586,-0.451241,-6.4216,8.81715,-0.520615,-6.4918,8.85225,-0.535255,-6.46643,8.82481,-0.476235,-6.53997,8.8719,-0.490515,-6.50843,9.16308,-0.143188,-6.51566,8.81443,-0.173204,-6.44324,8.80617,-0.366737,-6.48091,9.16746,-0.358935,-6.5065,9.13878,0.108062,-6.48566,9.03755,0.20189,-6.48619,8.9649,0.21625,-6.50999,8.87238,0.17066,-6.51336,8.82628,0.0864486,-6.28839,9.07207,-0.63554,-6.25815,8.95144,-0.676418,-6.28413,8.8442,-0.641676,-6.32749,8.81539,-0.570869,-6.34323,9.12434,-0.55455,-6.53033,9.12477,-0.0436473,-6.52603,9.12645,-0.240445,-6.44818,9.1339,-0.463507,-6.61491,9.00758,-0.509292,-6.61883,8.98857,-0.507461,-6.59233,8.91914,-0.497036,-6.58931,9.05587,-0.509106,-6.60807,9.02151,-0.509477,-6.69219,9.02211,-0.287135,-6.69685,9.00427,-0.285605,-6.68443,8.92731,-0.274019,-6.68041,9.08127,-0.285904,-6.68609,9.03535,-0.28603,-6.71844,9.00968,-0.0433991,-6.71662,8.9904,-0.0418453,-6.69752,8.90841,-0.0436208,-6.72015,9.03027,-0.0446858,-6.70531,9.08794,-0.0481733,-6.71794,9.00707,-0.0563274,-6.71583,9.00451,-0.0305125,-6.68339,9.02501,-0.288084,-6.70098,9.01592,-0.277661,-6.59646,9.00109,-0.517002,-6.63359,8.9948,-0.495574,-6.58894,9.02125,-0.516741,-6.63125,9.01173,-0.497273,-6.67807,9.03783,-0.28866,-6.69611,9.03342,-0.278082,-6.7038,8.99658,-0.275947,-6.7134,9.03351,-0.0596773,-6.71269,8.9856,-0.0299886,-6.71357,9.02757,-0.0318104,-6.47112,9.10081,-0.595068,-6.53632,9.07378,-0.529707,-6.5984,8.97788,-0.516331,-6.55293,8.89139,-0.524276,-6.474,8.86997,-0.596531,-6.42941,8.88557,-0.651155,-6.39643,8.93071,-0.675108,-6.41841,9.03796,-0.664108,-6.93101,8.95299,-0.653788,-6.69512,9.00434,-0.577603,-6.93825,8.91402,-0.625458,-6.69704,8.9651,-0.550838,-6.92534,8.87376,-0.648649,-6.68362,8.9171,-0.57623,-6.90667,8.83984,-0.710875,-6.65988,8.86354,-0.637835,-6.89029,8.86502,-0.777629,-6.64584,8.88387,-0.702405,-6.88767,8.90246,-0.809211,-6.64419,8.92772,-0.736414,-6.89742,8.94196,-0.785243,-6.64782,8.98505,-0.725033,-7.01247,8.95709,-0.810406,-6.99842,8.89493,-0.829209,-7.00363,8.83671,-0.801382,-7.02122,8.81601,-0.742759,-7.03657,8.84444,-0.686802,-7.04471,8.90568,-0.667864,-7.02713,8.98629,-0.75347,-7.04374,8.96424,-0.698565,-6.73944,9.02877,-0.594465,-6.72066,9.04993,-0.662629,-6.7414,8.95269,-0.558114,-6.72532,8.87951,-0.579609,-6.70182,8.83617,-0.643044,-6.68555,8.8578,-0.713319,-6.68442,8.92553,-0.749195,-6.69935,9.02075,-0.728621,-6.64981,9.05052,-0.57487,-6.63355,9.0684,-0.646077,-6.65278,8.98145,-0.533824,-6.63979,8.89964,-0.559775,-6.61984,8.8497,-0.623409,-6.60298,8.86946,-0.690697,-6.59864,8.93642,-0.72676,-6.61288,9.03434,-0.705346,-6.94209,8.97413,-0.797966,-6.92869,8.9011,-0.816705,-6.93004,8.8452,-0.78478,-6.94619,8.82176,-0.721376,-6.9653,8.85327,-0.662488,-6.97792,8.91162,-0.641708,-6.959,8.99898,-0.736826,-6.97551,8.9809,-0.673425,-6.89354,8.99663,-0.646728,-6.87483,9.01253,-0.715185,-6.89477,8.92023,-0.611416,-6.88241,8.85982,-0.634371,-6.86066,8.82479,-0.698059,-6.84334,8.84944,-0.767373,-6.83988,8.90699,-0.801172,-6.85459,8.98888,-0.781559,-6.8989,8.86479,-0.779171,-6.91227,8.83997,-0.711572,-6.93478,8.87337,-0.65062,-6.90971,8.83924,-0.711303,-6.92767,8.87178,-0.65727,-6.8969,8.86494,-0.76986,-6.65248,8.88311,-0.706147,-6.66601,8.86282,-0.638294,-6.69085,8.91478,-0.579093,-6.65142,8.88309,-0.693858,-6.66293,8.86215,-0.637752,-6.68421,8.91241,-0.586819,-6.81999,9.00758,-0.620724,-6.80115,9.04796,-0.692122,-6.82263,8.93103,-0.585073,-6.80818,8.86628,-0.606976,-6.7843,8.82982,-0.670698,-6.76468,8.85364,-0.741204,-6.76029,8.91411,-0.775554,-6.77584,9.00139,-0.75574,-6.5857,9.06571,-0.543452,-6.54625,9.10182,-0.615889,-6.62057,8.99563,-0.521933,-6.57627,8.90096,-0.535082,-6.53151,8.85772,-0.603043,-6.50652,8.87552,-0.670605,-6.50189,8.94055,-0.706076,-6.51804,9.03903,-0.685022,-6.89857,9.01968,-0.721192,-6.8833,8.99289,-0.765108,-6.90919,8.9978,-0.672916,-6.89785,8.96772,-0.783617,-6.9313,8.97504,-0.665807,-6.92732,8.9835,-0.775181,-6.93807,9.01134,-0.731648,-6.95043,8.98831,-0.686023,-6.90976,8.99848,-0.761587,-6.92337,8.99307,-0.763869,-6.92865,8.99182,-0.688002,-6.94057,8.99643,-0.69409,-6.93145,9.00078,-0.728463,-6.91521,9.00246,-0.686182,-6.89468,8.99937,-0.756586,-6.90476,9.00554,-0.721036,-6.92043,9.01393,-0.726034,-6.65467,9.07737,-0.651782,-6.6369,9.03587,-0.697847,-6.66721,9.04926,-0.593367,-6.65692,9.02162,-0.710284,-6.69276,9.03261,-0.592902,-6.69925,9.06763,-0.65875,-6.68538,9.03239,-0.703385,-6.71133,9.04121,-0.615126,-6.70152,9.0466,-0.621379,-6.68827,9.05542,-0.61601,-6.66574,9.04291,-0.690221,-6.67973,9.03737,-0.69223,-6.69089,9.05802,-0.658486,-6.67227,9.05039,-0.609773,-6.64901,9.0379,-0.688369,-6.66355,9.06189,-0.652768,-6.67791,9.06951,-0.655819,-7.00161,9.07015,0.0948462,-6.98367,9.06373,0.0924703,-6.98071,9.03116,0.0412013,-6.97412,9.04053,0.143888,-7.01806,9.05332,0.0953328,-7.01811,9.02665,0.0502423,-7.00109,9.03598,0.0464938,-6.9955,9.04682,0.144247,-7.01396,9.03358,0.141821,-7.02211,9.02722,0.151104,-7.02823,9.02053,0.0400348,-7.02781,9.06191,0.0966464,-6.99007,9.02279,0.16839,-6.99758,9.01222,0.0195882,-6.96135,9.04218,0.158391,-6.97009,9.03183,0.0258361,-6.97194,9.08246,0.0919762,-7.31003,9.01593,0.117786,-7.2908,9.00625,0.116297,-7.29239,9.00172,0.0724442,-7.2889,9.00169,0.158989,-7.32162,9.00004,0.118564,-7.31814,8.99499,0.160089,-7.30358,8.98937,0.161649,-7.32494,8.99448,0.0756162,-7.31025,9.00081,0.0729575,-7.32466,8.98582,0.172793,-7.3291,9.01299,0.118497,-7.33213,8.98471,0.0635678,-7.29801,8.96995,0.1868,-7.30437,8.96804,0.0408518,-7.27765,8.99591,0.171401,-7.28314,8.99525,0.0585167,-7.28462,9.02338,0.115349,-6.8375,9.05095,0.00559878,-6.82875,8.96033,-0.0256551,-6.81406,8.86932,0.00584157,-6.80232,8.82022,0.0909673,-6.79547,8.85216,0.178684,-6.80155,8.94362,0.207866,-6.8351,9.09919,0.0828931,-6.8154,9.045,0.165552,-7.15844,9.00121,0.0270987,-7.14637,8.90318,-0.00549888,-7.1349,8.82447,0.0269039,-7.12628,8.78646,0.105828,-7.12573,8.82541,0.184485,-7.13386,8.90445,0.217061,-7.1599,9.05012,0.106309,-7.14925,9.0021,0.185266,-6.97485,8.85324,0.160419,-6.97221,8.82201,0.0928469,-6.98421,8.86968,0.0269517,-6.97993,8.85478,0.173037,-6.97743,8.82154,0.0933598,-6.99003,8.87109,0.0148857,-7.29785,8.83743,0.0476631,-7.28915,8.83765,0.187715,-7.29076,8.80239,0.117536,-7.2936,8.83539,0.198235,-7.29325,8.8028,0.118387,-7.30313,8.834,0.037819,-7.25816,8.99352,0.0313041,-7.24778,8.90054,-0.00227047,-7.23749,8.82613,0.0316757,-7.23023,8.79009,0.113231,-7.22802,8.82713,0.194092,-7.23461,8.90181,0.228226,-7.25532,9.0144,0.113443,-7.24897,8.99456,0.195178,-7.34558,8.97829,0.19805,-7.35245,8.99912,0.120116,-7.33509,8.8828,0.230601,-7.32956,8.79711,0.197129,-7.33232,8.76901,0.119667,-7.33848,8.79609,0.0414228,-7.34763,8.88174,0.00849241,-7.35458,8.97725,0.0415349,-6.94637,9.02817,0.0123083,-6.93831,8.92988,-0.0189614,-6.9284,8.85633,0.0130721,-6.92001,8.81653,0.0890713,-6.91927,8.84932,0.166001,-6.92526,8.93268,0.199085,-6.94523,9.07142,0.0895439,-6.93712,9.03948,0.167727,-7.05441,9.00761,0.0169452,-7.04445,8.91637,-0.0163902,-7.03047,8.83452,0.0169111,-7.02036,8.79188,0.0975457,-7.02096,8.82921,0.178389,-7.03118,8.91551,0.212257,-7.0523,9.03625,0.0978707,-7.04485,9.0126,0.179843,-7.43014,8.9619,0.201487,-7.42872,8.99897,0.125037,-7.41852,8.8681,0.232416,-7.41652,8.7817,0.201823,-7.42257,8.76728,0.125628,-7.42537,8.78077,0.0484707,-7.43093,8.86686,0.0172997,-7.43772,8.9651,0.0517245,-6.99329,8.97449,-0.00114942,-7.30425,8.93933,0.0375656,-6.99212,8.92205,-0.017607,-7.30169,8.89229,0.00202681,-6.9804,8.87235,0.0160168,-7.29329,8.83736,0.0359974,-6.96743,8.82396,0.0926262,-7.28778,8.80389,0.116639,-6.96818,8.8567,0.172338,-7.28338,8.83858,0.196444,-6.97835,8.91646,0.205396,-7.28863,8.89349,0.231117,-6.98659,8.98121,0.181593,-7.2934,8.94433,0.19827,-6.69581,9.10126,-0.00985286,-6.70023,8.88235,-0.00465694,-6.6958,8.83154,0.117055,-6.65929,8.89105,0.167966,-6.68857,8.94742,0.198485,-6.69277,9.05548,0.17453,-6.70713,9.11213,0.0796777,-6.65261,9.13293,-0.390651,-6.65269,9.09555,-0.310408,-6.68731,9.00524,-0.287527,-6.66722,8.91434,-0.305607,-6.6447,8.86808,-0.383592,-6.62493,8.90113,-0.463642,-6.63316,8.97945,-0.49322,-6.62493,9.08706,-0.475592,-7.22454,9.0016,-0.405821,-6.92601,9.05519,-0.352561,-7.22598,8.95862,-0.375769,-6.92658,9.0028,-0.330678,-7.21511,8.91797,-0.407055,-6.91622,8.9471,-0.359431,-7.20383,8.88756,-0.481646,-6.90513,8.90627,-0.433716,-7.19341,8.92018,-0.555301,-6.9012,8.95174,-0.507043,-7.19435,8.96194,-0.587362,-6.90368,9.00531,-0.538654,-7.20321,9.00022,-0.554956,-6.90348,9.05728,-0.522403,-7.33757,9.01653,-0.57243,-7.32393,8.94808,-0.603332,-7.32549,8.87855,-0.57476,-7.33816,8.849,-0.503496,-7.3475,8.87638,-0.43086,-7.35508,8.94497,-0.401144,-7.35893,9.01432,-0.432594,-6.98069,9.08815,-0.367273,-6.97314,9.1088,-0.442634,-6.97691,8.99605,-0.336763,-6.96683,8.91175,-0.367503,-6.95566,8.87068,-0.442541,-6.95117,8.91563,-0.517932,-6.9547,8.99828,-0.548983,-6.96445,9.08227,-0.517726,-6.87576,9.09699,-0.353099,-6.8688,9.11998,-0.425758,-6.87613,9.01135,-0.322509,-6.86844,8.92765,-0.353322,-6.85841,8.88562,-0.426399,-6.85181,8.92947,-0.499202,-6.85103,9.01192,-0.529086,-6.85871,9.09915,-0.498039,-7.25261,9.03343,-0.561688,-7.23934,8.95896,-0.592222,-7.23687,8.89594,-0.561143,-7.24667,8.86529,-0.488786,-7.25891,8.89373,-0.41589,-7.27021,8.95572,-0.385134,-7.26658,9.05269,-0.488869,-7.27514,9.03129,-0.416253,-7.1797,9.04889,-0.398471,-7.16933,9.06772,-0.473322,-7.17457,8.96509,-0.367309,-7.16457,8.90307,-0.398725,-7.15147,8.8713,-0.4735,-7.14296,8.90513,-0.548164,-7.14409,8.96829,-0.579531,-7.15573,9.05112,-0.54828,-7.20306,8.91943,-0.555906,-7.20998,8.88744,-0.481412,-7.22522,8.91739,-0.40737,-7.20707,8.88678,-0.481576,-7.21907,8.91671,-0.416333,-7.20012,8.91938,-0.545717,-6.91018,8.95096,-0.510073,-6.91362,8.90516,-0.43581,-6.9268,8.94549,-0.361695,-6.90644,8.94893,-0.497492,-6.90927,8.90485,-0.434767,-6.92013,8.94271,-0.371603,-7.08336,9.0642,-0.383395,-7.07583,9.10651,-0.457821,-7.0785,8.97911,-0.352893,-7.06721,8.90209,-0.383586,-7.05566,8.86357,-0.458717,-7.05061,8.90364,-0.534012,-7.05234,8.98179,-0.564525,-7.06236,9.06636,-0.532815,-6.78922,9.09618,-0.333,-6.77133,9.1357,-0.409074,-6.79246,9.02121,-0.298622,-6.77842,8.92466,-0.330499,-6.75415,8.87579,-0.407684,-6.74507,8.91366,-0.486408,-6.74751,9.00604,-0.520374,-6.75714,9.08909,-0.486969,-7.19791,9.07371,-0.477818,-7.1857,9.05018,-0.5293,-7.20313,9.04858,-0.426393,-7.20313,9.02613,-0.550813,-7.22613,9.02502,-0.417055,-7.23476,9.04025,-0.536296,-7.24363,9.06476,-0.485084,-7.25004,9.03915,-0.435024,-7.21477,9.05427,-0.52231,-7.2301,9.04872,-0.523384,-7.22651,9.04261,-0.440743,-7.24096,9.04754,-0.445143,-7.23606,9.05344,-0.483672,-7.21131,9.05353,-0.439668,-7.1972,9.05527,-0.518714,-7.20459,9.05864,-0.478709,-7.224,9.06681,-0.481411,-6.89296,9.13309,-0.428599,-6.88292,9.10115,-0.490243,-6.89565,9.09858,-0.367067,-6.90987,9.08788,-0.502739,-6.92511,9.08847,-0.364907,-6.94786,9.1288,-0.437754,-6.94175,9.09522,-0.490331,-6.95165,9.09941,-0.387567,-6.94195,9.10348,-0.39418,-6.92446,9.10973,-0.387328,-6.91569,9.10728,-0.477652,-6.93283,9.10025,-0.478364,-6.93779,9.11823,-0.436691,-6.90471,9.10175,-0.38285,-6.8951,9.10354,-0.478167,-6.90403,9.11957,-0.430861,-6.92203,9.12887,-0.432926,-7.03794,9.12201,-0.194396,-7.01875,9.11218,-0.193122,-7.01158,9.09467,-0.243276,-7.01551,9.09256,-0.142514,-7.05453,9.11034,-0.197006,-7.05117,9.09443,-0.241408,-7.03308,9.09978,-0.241741,-7.03718,9.10161,-0.145891,-7.05641,9.09471,-0.151785,-7.067,9.09038,-0.14372,-7.06133,9.09042,-0.254016,-7.06564,9.12293,-0.197781,-7.03722,9.07875,-0.121398,-7.02766,9.07718,-0.268723,-7.00516,9.09007,-0.125988,-6.9992,9.09211,-0.256487,-7.00716,9.12799,-0.19136,-7.37326,9.0674,-0.225992,-7.35215,9.05847,-0.224348,-7.34698,9.05421,-0.268172,-7.3571,9.05287,-0.181603,-7.38706,9.0519,-0.227549,-7.3907,9.04554,-0.186057,-7.37451,9.04042,-0.182089,-7.3839,9.0463,-0.270482,-7.36701,9.0528,-0.270589,-7.39988,9.03617,-0.174918,-7.3955,9.06389,-0.228667,-7.38988,9.03675,-0.283664,-7.37277,9.02101,-0.156661,-7.35659,9.02138,-0.301866,-7.34727,9.047,-0.167494,-7.33496,9.04809,-0.280582,-7.34505,9.07481,-0.223905,-6.84759,9.08817,-0.251574,-6.83632,9.00725,-0.2927,-6.83077,8.90731,-0.258935,-6.82903,8.85459,-0.174914,-6.84299,8.8933,-0.0922878,-6.85619,8.98661,-0.0598054,-6.86162,9.12986,-0.175449,-6.85855,9.08246,-0.100682,-7.19951,9.0562,-0.290908,-7.18828,8.96518,-0.323641,-7.18254,8.88409,-0.290917,-7.18386,8.84091,-0.211243,-7.19437,8.88283,-0.131693,-7.20722,8.96337,-0.0988343,-7.20951,9.10163,-0.211201,-7.21211,9.05483,-0.131584,-7.03076,8.93061,-0.12792,-7.01986,8.88746,-0.194972,-7.02088,8.93483,-0.261921,-7.03754,8.92992,-0.116889,-7.02352,8.88783,-0.195679,-7.02501,8.93367,-0.275022,-7.35207,8.90359,-0.296327,-7.36463,8.90174,-0.155362,-7.35601,8.86152,-0.22629,-7.37127,8.90105,-0.145958,-7.35944,8.86183,-0.225924,-7.35654,8.90213,-0.306583,-7.30375,9.04691,-0.30351,-7.29401,8.95833,-0.337448,-7.28956,8.88314,-0.303316,-7.29462,8.84066,-0.22131,-7.30385,8.88171,-0.139291,-7.31349,8.95609,-0.105121,-7.3138,9.0665,-0.221034,-7.32019,9.04537,-0.138933,-7.42603,9.02745,-0.153967,-7.42056,9.05021,-0.231169,-7.42026,8.94562,-0.121241,-7.4083,8.87154,-0.153639,-7.40018,8.83446,-0.231318,-7.39259,8.87307,-0.308776,-7.39888,8.94781,-0.341533,-7.41105,9.02884,-0.309002,-6.97302,9.08947,-0.264964,-6.96436,9.00146,-0.296041,-6.96127,8.9085,-0.264505,-6.96352,8.86429,-0.188521,-6.97266,8.90076,-0.112638,-6.98111,8.98738,-0.0813243,-6.97941,9.11418,-0.188825,-6.98226,9.08691,-0.112633,-7.08799,9.07758,-0.282301,-7.07732,8.98273,-0.315384,-7.06965,8.89628,-0.281829,-7.06923,8.85305,-0.200581,-7.08156,8.89486,-0.119452,-7.09556,8.97815,-0.0856487,-7.09278,9.10203,-0.201128,-7.09816,9.07613,-0.119247,-7.51806,9.00911,-0.16659,-7.51132,8.93557,-0.133654,-7.50516,8.85767,-0.16446,-7.50021,8.81576,-0.241312,-7.48976,8.85916,-0.317297,-7.4898,8.93767,-0.347261,-7.50319,9.01057,-0.31463,-7.02216,9.04512,-0.289079,-7.35653,8.99368,-0.30582,-7.02175,8.99515,-0.305998,-7.35129,8.9528,-0.341197,-7.01592,8.93417,-0.27211,-7.34658,8.90423,-0.307103,-7.01578,8.88843,-0.194297,-7.35342,8.86315,-0.22671,-7.02693,8.93032,-0.115433,-7.36052,8.90276,-0.145818,-7.03918,8.98824,-0.0835584,-7.37185,8.95054,-0.112323,-7.03827,9.04164,-0.108034,-7.37002,8.99608,-0.144699,-6.68163,9.0928,-0.244472,-6.69546,8.90642,-0.235676,-6.69217,8.85604,-0.158524,-6.7017,8.89696,-0.0844171,-6.7142,8.98471,-0.0540638,-6.6837,9.12411,-0.0929069,-6.71845,9.1424,-0.16431,-5.86951,9.21105,-0.175842,-5.79701,8.7662,-0.385583,-5.7693,8.89384,-0.520211,-5.77502,8.8033,-0.473093,-5.7638,9.0921,-0.519892,-5.82602,9.09622,0.123908,-5.84427,9.18123,-0.0339205,-5.7776,8.80159,0.0195716,-5.79618,8.96692,0.117803,-5.80296,9.18845,-0.393334,-5.76522,9.01153,-0.537836,-5.83294,8.77518,-0.191201,-5.85582,9.2116,-0.294326,-5.79599,9.14183,-0.474346,-5.65632,9.13004,-0.454535,-5.65902,9.20945,-0.291129,-5.64104,8.78012,-0.203751,-5.6575,9.17884,-0.385474,-5.65666,8.96326,0.047487,-5.64214,8.84798,-0.0553137,-5.65935,9.09078,0.0433802,-5.65577,9.06951,-0.488133,-5.6575,8.82591,-0.437451,-5.65646,8.90378,-0.480968,-5.65656,8.78119,-0.333467,-5.66001,9.21195,-0.17825,-7.51619,9.04903,-0.243385,-7.35843,9.04923,-0.507929,0.202102,6.11933,1.254,0.446821,6.12823,1.15857,0.161361,5.41375,1.28956,0.348257,5.38625,1.15124,0.236799,5.07566,0.940041,0.102598,4.96493,1.00327,0.0590471,4.93477,0.463749,0.0741056,4.93663,0.436198,0.0424693,4.96785,0.0189382,0.0585403,4.96849,0.0181274,0.0865388,5.1676,-0.62113,0.288026,5.10933,-0.571061,0.0695111,5.7645,-0.954723,0.256058,5.79184,-0.970809,0.137647,6.23887,-0.893728,0.259631,6.25827,-0.898473,0.181505,6.51102,-0.738394,0.301089,6.49741,-0.776265,0.64021,5.67636,1.00573,0.690757,6.13792,0.957668,0.944315,6.16301,0.638179,0.919392,5.9986,0.668535,1.09125,6.14465,0.323183,1.10442,6.28075,0.297585,1.07077,6.32757,-0.0292253,1.12205,6.16962,-0.0313013,0.963433,6.18372,-0.484513,0.916064,6.43732,-0.386607,1.10798,6.00133,0.328105,1.15554,5.83177,-0.0662757,0.956103,5.84381,0.682891,0.648029,5.48664,0.95671,0.359276,5.15571,0.942199,0.070438,4.94782,0.0189545,0.666496,6.47578,-0.651394,0.660952,6.24078,-0.811685,0.978748,5.85941,-0.597422,0.647369,5.84801,-0.92455,0.572932,5.18486,-0.677777,0.562285,5.01806,-0.502835,1.04584,5.518,-0.342138,0.946532,5.5397,-0.639306,0.819297,5.30781,-0.607615,0.796208,5.13157,-0.532105,0.0726687,5.43525,-0.855582,0.260682,5.42461,-0.897157,0.606812,5.39572,-0.879982,0.0699445,4.99571,-0.351735,0.143512,5.01101,-0.329955,0.170606,4.93753,-0.315606,0.310897,4.97461,-0.409768,0.19909,5.02238,0.838455,0.0878535,4.91708,0.415256,0.12448,4.55149,0.0181447,0.115702,4.62273,0.372547,0.226214,4.73136,0.745392,0.426023,4.51121,-0.432349,0.275576,4.46358,-0.315785,0.38757,4.87645,0.900632,0.662752,5.08603,0.929042,0.983684,5.4039,0.745963,1.20041,5.52334,0.390292,0.815288,4.81196,-0.465501,1.11883,5.13812,-0.226201,1.28055,5.35383,0.0454625,0.630278,4.66024,-0.492527,0.254271,3.83209,0.129459,0.250389,3.82865,0.358449,0.795948,3.85284,-0.335438,0.628853,3.83925,-0.288805,0.46377,3.83253,-0.241123,0.342778,3.82889,-0.136905,1.09728,3.91271,-0.215706,1.2133,3.95082,0.0102213,0.999159,3.97884,0.625147,1.20407,3.98226,0.24126,0.510677,3.87856,0.768608,0.738215,3.93231,0.771509,0.346094,3.85219,0.613938,0.199479,4.14468,0.0883186,0.193785,4.19581,0.358346,0.810146,4.24782,-0.493108,0.637454,4.18818,-0.436087,0.453529,4.14645,-0.349782,0.316204,4.1275,-0.216993,1.27196,4.54605,-0.0488473,1.11923,4.43283,-0.344665,0.994705,4.61423,0.664226,1.23858,4.66028,0.360957,0.451476,4.34676,0.762432,0.704863,4.46273,0.784615,0.296074,4.26346,0.647497,0.279469,3.56695,0.350919,0.378077,3.57362,0.610081,0.763179,3.61205,0.784711,0.545154,3.58,0.778151,1.18789,3.63743,0.225322,1.01171,3.63763,0.649606,1.18469,3.63596,0.0462727,1.08639,3.63214,-0.164758,0.36396,3.61962,-0.106701,0.472547,3.61998,-0.200527,0.622069,3.61981,-0.245861,0.785805,3.62062,-0.287858,0.280482,3.59457,0.136712,0.310794,3.27408,0.108858,0.315972,3.24404,0.332647,0.79169,3.31854,-0.322428,0.631584,3.32079,-0.284445,0.499508,3.31581,-0.230491,0.39861,3.30815,-0.13043,1.07389,3.31289,-0.176051,1.1448,3.30703,0.0271583,1.04977,3.28812,0.564466,1.15477,3.30832,0.188918,0.631233,3.24059,0.727644,0.796811,3.26964,0.722389,0.410378,3.24519,0.57402,0.431057,2.70669,-0.269775,0.482634,1.96936,-0.280789,0.370175,2.69611,-0.00644183,0.435417,1.9614,-0.0356348,0.394159,2.68494,0.253601,0.456676,1.95738,0.217004,0.454505,2.69049,0.473117,0.54573,1.96253,0.383198,0.679279,2.65864,0.62635,0.716692,1.95707,0.537311,0.865036,2.66224,0.621741,0.852243,1.96137,0.530134,1.10692,2.70714,0.441119,1.08408,1.96329,0.368997,1.22931,2.7028,0.084996,1.19821,1.95717,0.0291508,1.22047,2.71112,-0.107447,1.18772,1.96511,-0.14552,1.12006,2.71904,-0.3145,1.09527,1.96898,-0.31548,0.829777,2.72009,-0.456138,0.841005,1.97159,-0.44557,0.531299,2.71268,-0.369004,0.573089,1.97167,-0.371144,0.672642,2.71717,-0.418103,0.702698,1.97078,-0.415205,0.211812,4.88229,0.794346,0.366024,4.76033,-0.433107,0.0940014,4.7621,0.00924449,0.595508,4.8517,-0.502284,1.08069,5.33433,-0.269866,1.21841,5.59105,-0.00684149,1.18354,5.76689,0.354678,0.973092,5.63022,0.71916,0.648027,5.27274,0.957871,0.804901,4.97857,-0.489809,0.365631,5.01798,0.92737,0.100592,4.77644,0.394224,0.219783,4.71699,-0.335171,1.01176,6.06811,0.499433,1.03346,6.21848,0.47404,1.0393,5.91432,0.508831,1.14744,5.47181,0.570297,1.12732,3.97978,0.434445,1.14211,4.63931,0.521308,1.10201,3.63979,0.43657,1.10403,3.29961,0.354832,1.19054,2.69697,0.252778,1.16215,1.95254,0.187774,1.08553,5.70212,0.539432,0.524795,1.38504,-0.215873,0.508905,1.3895,0.00448297,0.604984,1.38355,0.361719,0.751792,1.39469,0.468996,0.864594,1.38785,0.464007,1.05606,1.37976,0.351734,1.16385,1.36978,0.0208227,1.16201,1.38369,-0.152291,1.08332,1.39486,-0.28458,0.861087,1.39585,-0.385702,0.61014,1.38849,-0.306111,0.737518,1.39455,-0.357141,0.509709,1.37048,0.202719,1.12139,1.36702,0.187705,0.179747,5.80113,1.31062,0.455499,5.81434,1.22207,0.159882,6.37777,-0.814831,0.280389,6.38007,-0.836331,0.665675,5.93489,0.981412,0.931643,6.13581,0.650616,1.09764,6.25382,0.308271,1.09609,6.30008,-0.0304753,0.939227,6.31168,-0.435489,0.66373,6.36004,-0.730744,1.01766,6.18784,0.48132,0.353369,3.72426,-0.121803,0.267377,3.71333,0.133085,0.362085,3.7129,0.612009,0.527915,3.72928,0.77338,0.750697,3.77218,0.77811,1.00544,3.80824,0.637377,1.19598,3.80985,0.233291,1.19899,3.79339,0.028247,1.09183,3.77243,-0.190232,0.790876,3.73673,-0.311648,0.468159,3.72626,-0.220825,0.625461,3.72953,-0.267333,0.264929,3.6978,0.354684,1.11467,3.80978,0.435507,0.295638,3.43433,0.122785,0.788747,3.46958,-0.305143,0.626826,3.4703,-0.265153,0.486028,3.46789,-0.215509,0.381285,3.46388,-0.118565,1.16474,3.4715,0.0367155,1.08014,3.47251,-0.170404,1.03074,3.46287,0.607036,1.17133,3.47287,0.20712,0.588193,3.41029,0.752897,0.779995,3.44085,0.75355,0.394227,3.4094,0.59205,0.29772,3.40549,0.341783,1.10302,3.4697,0.395701,1.10793,0.294454,0.180335,0.524089,0.297754,0.194666,0.741532,0.320729,-0.339718,0.61995,0.314945,-0.29101,0.859478,0.321968,-0.366979,1.0716,0.321021,-0.270458,1.14671,0.310359,-0.144189,1.14846,0.297085,0.0210469,1.04558,0.306614,0.3369,0.862826,0.314334,0.444064,0.755156,0.32086,0.448826,0.615029,0.310232,0.34643,0.523322,0.315905,0.00545075,0.538488,0.311654,-0.204878,-0.202102,6.11933,1.254,-0.446821,6.12823,1.15857,2.66684e-15,6.11519,1.26609,0,5.43088,1.31914,-0.161361,5.41375,1.28956,-0.348257,5.38625,1.15124,-0.236799,5.07566,0.940041,-0.102598,4.96493,1.00327,0,4.94287,1.00406,0,4.92531,0.467763,-0.0590471,4.93477,0.463749,-0.0741056,4.93663,0.436198,-0.0424693,4.96785,0.0189382,-0.0585403,4.96849,0.0181274,0,4.96605,0.0185854,0,5.21195,-0.625146,-0.0865388,5.1676,-0.62113,-0.288026,5.10933,-0.571061,-0.0695111,5.7645,-0.954723,-1.77997e-15,5.74233,-0.922814,-0.256058,5.79184,-0.970809,-0.137647,6.23887,-0.893728,-0.259631,6.25827,-0.898473,3.55608e-15,6.26041,-0.838631,-0.181505,6.51102,-0.738394,4.44397e-15,6.49838,-0.691591,-0.301089,6.49741,-0.776265,-0.64021,5.67636,1.00573,-0.690757,6.13792,0.957668,-0.944315,6.16301,0.638179,-0.919392,5.9986,0.668535,-1.09125,6.14465,0.323183,-1.10442,6.28075,0.297585,-1.07077,6.32757,-0.0292253,-1.12205,6.16962,-0.0313013,-0.963433,6.18372,-0.484513,-0.916064,6.43732,-0.386607,-1.10798,6.00133,0.328105,-1.15554,5.83177,-0.0662757,-0.956103,5.84381,0.682891,-0.648029,5.48664,0.95671,-0.359276,5.15571,0.942199,-0.070438,4.94782,0.0189545,-0.666496,6.47578,-0.651394,-0.660952,6.24078,-0.811685,-0.978748,5.85941,-0.597422,-0.647369,5.84801,-0.92455,-0.572932,5.18486,-0.677777,-0.562285,5.01806,-0.502835,-1.04584,5.518,-0.342138,-0.946532,5.5397,-0.639306,-0.819297,5.30781,-0.607615,-0.796208,5.13157,-0.532105,9.05965e-16,5.45268,-0.830096,-0.0726687,5.43525,-0.855582,-0.260682,5.42461,-0.897157,-0.606812,5.39572,-0.879982,0,5.01691,-0.354513,-0.0699445,4.99571,-0.351735,-0.143512,5.01101,-0.329955,-0.170606,4.93753,-0.315606,-0.310897,4.97461,-0.409768,-0.19909,5.02238,0.838455,-0.0878535,4.91708,0.415256,-0.12448,4.55149,0.0181447,-0.115702,4.62273,0.372547,-0.226214,4.73136,0.745392,-0.426023,4.51121,-0.432349,-0.275576,4.46358,-0.315785,-0.38757,4.87645,0.900632,-0.662752,5.08603,0.929042,-0.983684,5.4039,0.745963,-1.20041,5.52334,0.390292,-0.815288,4.81196,-0.465501,-1.11883,5.13812,-0.226201,-1.28055,5.35383,0.0454625,-0.630278,4.66024,-0.492527,-0.254271,3.83209,0.129459,-0.250389,3.82865,0.358449,-0.795948,3.85284,-0.335438,-0.628853,3.83925,-0.288805,-0.46377,3.83253,-0.241123,-0.342778,3.82889,-0.136905,-1.09728,3.91271,-0.215706,-1.2133,3.95082,0.0102213,-0.999159,3.97884,0.625147,-1.20407,3.98226,0.24126,-0.510677,3.87856,0.768608,-0.738215,3.93231,0.771509,-0.346094,3.85219,0.613938,-0.199479,4.14468,0.0883186,-0.193785,4.19581,0.358346,-0.810146,4.24782,-0.493108,-0.637454,4.18818,-0.436087,-0.453529,4.14645,-0.349782,-0.316204,4.1275,-0.216993,-1.27196,4.54605,-0.0488473,-1.11923,4.43283,-0.344665,-0.994705,4.61423,0.664226,-1.23858,4.66028,0.360957,-0.451476,4.34676,0.762432,-0.704863,4.46273,0.784615,-0.296074,4.26346,0.647497,-0.279469,3.56695,0.350919,-0.378077,3.57362,0.610081,-0.763179,3.61205,0.784711,-0.545154,3.58,0.778151,-1.18789,3.63743,0.225322,-1.01171,3.63763,0.649606,-1.18469,3.63596,0.0462727,-1.08639,3.63214,-0.164758,-0.36396,3.61962,-0.106701,-0.472547,3.61998,-0.200527,-0.622069,3.61981,-0.245861,-0.785805,3.62062,-0.287858,-0.280482,3.59457,0.136712,-0.310794,3.27408,0.108858,-0.315972,3.24404,0.332647,-0.79169,3.31854,-0.322428,-0.631584,3.32079,-0.284445,-0.499508,3.31581,-0.230491,-0.39861,3.30815,-0.13043,-1.07389,3.31289,-0.176051,-1.1448,3.30703,0.0271583,-1.04977,3.28812,0.564466,-1.15477,3.30832,0.188918,-0.631233,3.24059,0.727644,-0.796811,3.26964,0.722389,-0.410378,3.24519,0.57402,-0.431057,2.70669,-0.269775,-0.482634,1.96936,-0.280789,-0.370175,2.69611,-0.00644183,-0.435417,1.9614,-0.0356348,-0.394159,2.68494,0.253601,-0.456676,1.95738,0.217004,-0.454505,2.69049,0.473117,-0.54573,1.96253,0.383198,-0.679279,2.65864,0.62635,-0.716692,1.95707,0.537311,-0.865036,2.66224,0.621741,-0.852243,1.96137,0.530134,-1.10692,2.70714,0.441119,-1.08408,1.96329,0.368997,-1.22931,2.7028,0.084996,-1.19821,1.95717,0.0291508,-1.22047,2.71112,-0.107447,-1.18772,1.96511,-0.14552,-1.12006,2.71904,-0.3145,-1.09527,1.96898,-0.31548,-0.829777,2.72009,-0.456138,-0.841005,1.97159,-0.44557,-0.531299,2.71268,-0.369004,-0.573089,1.97167,-0.371144,-0.672642,2.71717,-0.418103,-0.702698,1.97078,-0.415205,-0.211812,4.88229,0.794346,-0.366024,4.76033,-0.433107,-0.0940014,4.7621,0.00924449,-0.595508,4.8517,-0.502284,-1.08069,5.33433,-0.269866,-1.21841,5.59105,-0.00684149,-1.18354,5.76689,0.354678,-0.973092,5.63022,0.71916,-0.648027,5.27274,0.957871,-0.804901,4.97857,-0.489809,-0.365631,5.01798,0.92737,-0.100592,4.77644,0.394224,-0.219783,4.71699,-0.335171,-1.01176,6.06811,0.499433,-1.03346,6.21848,0.47404,-1.0393,5.91432,0.508831,-1.14744,5.47181,0.570297,-1.12732,3.97978,0.434445,-1.14211,4.63931,0.521308,-1.10201,3.63979,0.43657,-1.10403,3.29961,0.354832,-1.19054,2.69697,0.252778,-1.16215,1.95254,0.187774,-1.08553,5.70212,0.539432,-0.524795,1.38504,-0.215873,-0.508905,1.3895,0.00448297,-0.604984,1.38355,0.361719,-0.751792,1.39469,0.468996,-0.864594,1.38785,0.464007,-1.05606,1.37976,0.351734,-1.16385,1.36978,0.0208227,-1.16201,1.38369,-0.152291,-1.08332,1.39486,-0.28458,-0.861087,1.39585,-0.385702,-0.61014,1.38849,-0.306111,-0.737518,1.39455,-0.357141,-0.509709,1.37048,0.202719,-1.12139,1.36702,0.187705,-8.89076e-16,5.80808,1.2854,-0.179747,5.80113,1.31062,-0.455499,5.81434,1.22207,4.88856e-15,6.38153,-0.76427,-0.159882,6.37777,-0.814831,-0.280389,6.38007,-0.836331,-0.665675,5.93489,0.981412,-0.931643,6.13581,0.650616,-1.09764,6.25382,0.308271,-1.09609,6.30008,-0.0304753,-0.939227,6.31168,-0.435489,-0.66373,6.36004,-0.730744,-1.01766,6.18784,0.48132,-0.353369,3.72426,-0.121803,-0.267377,3.71333,0.133085,-0.362085,3.7129,0.612009,-0.527915,3.72928,0.77338,-0.750697,3.77218,0.77811,-1.00544,3.80824,0.637377,-1.19598,3.80985,0.233291,-1.19899,3.79339,0.028247,-1.09183,3.77243,-0.190232,-0.790876,3.73673,-0.311648,-0.468159,3.72626,-0.220825,-0.625461,3.72953,-0.267333,-0.264929,3.6978,0.354684,-1.11467,3.80978,0.435507,-0.295638,3.43433,0.122785,-0.788747,3.46958,-0.305143,-0.626826,3.4703,-0.265153,-0.486028,3.46789,-0.215509,-0.381285,3.46388,-0.118565,-1.16474,3.4715,0.0367155,-1.08014,3.47251,-0.170404,-1.03074,3.46287,0.607036,-1.17133,3.47287,0.20712,-0.588193,3.41029,0.752897,-0.779995,3.44085,0.75355,-0.394227,3.4094,0.59205,-0.29772,3.40549,0.341783,-1.10302,3.4697,0.395701,-1.10793,0.294454,0.180335,-0.524089,0.297754,0.194666,-0.741532,0.320729,-0.339718,-0.61995,0.314945,-0.29101,-0.859478,0.321968,-0.366979,-1.0716,0.321021,-0.270458,-1.14671,0.310359,-0.144189,-1.14846,0.297085,0.0210469,-1.04558,0.306614,0.3369,-0.862826,0.314334,0.444064,-0.755156,0.32086,0.448826,-0.615029,0.310232,0.34643,-0.523322,0.315905,0.00545075,-0.538488,0.311654,-0.204878,-0.192241,10.3794,-0.743572,-0.0197206,10.3091,-0.766787,0.201106,9.79205,0.538102,-0.620924,10.3055,-0.144583,0.607833,10.1717,-0.104929,0.533473,10.2292,-0.411271,0.358467,10.2701,-0.689836,0.158504,10.2714,-0.758145,0.525118,10.1549,0.0445123,-0.395702,10.4227,-0.67413,-0.559998,10.37,-0.398389,-0.557157,10.2158,0.0762444,-0.522547,10.1434,0.28518,-0.368166,10.0216,0.394988,0.468227,10.1117,0.131367,0.332485,9.84833,0.43429,0.4276,10.0292,0.229741,-0.0424529,9.8035,0.5692,-0.29824,9.92511,0.465696,-0.185903,9.86678,0.515466,-0.543499,10.154,-0.138455,0.520575,10.0201,-0.147968,-0.0190935,10.0576,-0.738599,-0.380643,10.1461,-0.649498,0.344579,9.97681,-0.664602,-0.538634,10.1396,-0.384341,0.512868,9.93755,-0.396728,0.434113,10.0551,0.11098,-0.511419,10.1311,0.0552057,0.466966,10.0736,0.0104088,-0.184992,10.1045,-0.716275,0.152291,10.0006,-0.730289,0.181343,9.76696,0.480314,-0.0432173,9.77945,0.517603,-0.286314,9.89996,0.42006,-0.488971,10.0662,0.217173,0.309044,9.82852,0.378949,0.381365,10.0016,0.193109,-0.363157,9.99407,0.351247,-0.176063,9.84126,0.465752,-0.258325,9.76307,0.672439,-0.268667,9.76452,0.617345,-0.331039,9.68016,0.436026,-0.287666,9.82746,0.49627,-0.298112,9.81855,0.452347,-0.195744,9.8923,0.56518,-0.232779,9.82498,0.684348,-0.340318,9.70072,0.436046,-0.35139,9.52749,0.48094,-0.294157,9.8064,0.428414,-0.298364,9.82642,0.471419,-0.293029,9.82602,0.488563,-0.2964,9.81677,0.4302,-0.295964,9.77442,0.416508,-0.291307,9.81306,0.538657,-0.379929,9.59025,0.489731,-0.322943,9.72961,0.428446,-0.357578,9.63057,0.467797,-0.327499,9.74802,0.429718,-0.262457,9.76469,0.636347,-0.27988,9.82885,0.512443,-0.48762,9.80961,0.312314,-0.482854,9.9048,0.464051,-0.660099,9.62325,0.350099,-0.538058,9.77054,0.303843,-0.60721,9.66821,0.326059,-0.560239,9.78263,0.31914,-0.424937,9.88342,0.55409,-0.467596,9.90937,0.444241,-0.602741,9.82752,0.124501,-0.660318,9.85885,0.177725,-0.792466,9.61789,-0.0243661,-0.816871,9.73648,0.0295829,-0.634775,9.93625,0.315278,-0.373175,10.0491,0.438728,-0.701767,9.7468,0.0131154,-0.63052,9.94386,0.314136,-0.505399,10.0261,0.51595,-0.796093,9.716,0.0370114,-0.52442,10.027,0.457758,-0.607239,9.9831,0.354788,-0.913534,9.6918,0.05754,-0.677815,9.78142,0.0634265,-0.532187,10.026,0.444873,-0.758482,9.8044,0.10812,-0.506402,10.0511,0.543827,-0.647384,9.88329,0.23038,-0.609456,10.0032,0.363669,-0.646144,9.87572,0.192378,-0.640002,9.91478,0.299149,0.612371,9.772,-0.371671,0.593483,9.76332,-0.0614647,0.674537,9.62545,-0.133485,0.788426,9.65384,-0.113125,0.725368,9.69754,-0.11998,0.682017,9.68629,-0.415289,0.66275,9.683,-0.123176,0.572987,9.73047,-0.441778,0.545471,9.71926,-0.125758,0.665431,9.85454,-0.183909,0.623227,9.85051,0.0579934,0.658441,9.86838,0.0927399,0.661063,9.83787,0.0410357,0.739287,9.75804,-0.320577,0.716445,9.753,-0.0372122,0.577416,9.82976,-0.00512039,0.656151,9.9866,0.163366,0.747325,9.89092,-0.141548,0.728352,9.89066,0.120091,0.701168,9.93727,-0.0940868,0.686178,9.93706,0.149316,0.678376,9.94652,0.151284,0.627932,10.0024,-0.0439428,0.653378,10.0069,0.165356,0.625329,10.0789,0.0863175,0.590567,10.0434,0.240136,0.626209,10.0885,0.100655,0.591078,10.0724,0.261621,0.473835,10.0568,0.266374,0.619095,10.1594,0.1683,0.600279,10.1262,0.316575,0.568876,10.1247,0.33938,0.446485,9.75199,0.315358,0.53749,9.54851,0.377587,0.507838,9.60876,0.347823,0.476758,9.71717,0.306545,0.483528,9.63591,0.322048,0.451278,9.69487,0.29575,0.425526,9.83389,0.352051,0.427385,9.857,0.37301,0.424755,9.81493,0.339976,0.439136,9.77349,0.328576,0.434673,9.79756,0.331725,0.436351,9.92214,0.459388,0.461983,9.8819,0.415148,0.455456,9.89986,0.437735,0.446945,9.91136,0.450685,0.447105,9.92308,0.485832,0.491176,9.8955,0.492412,0.355927,9.86814,0.48963,0.427878,9.90428,0.576285,-0.696225,9.80713,-0.367239,-0.803908,9.61928,-0.386288,-0.959361,9.69365,-0.414351,-0.719748,9.76698,-0.409719,-0.827246,9.72887,-0.408421,-0.673449,9.91829,-0.217221,-0.639176,9.89809,-0.262859,-0.667133,9.8607,-0.328016,-0.77346,9.81256,-0.394308,-0.644496,9.9851,-0.0128183,-0.690045,9.92698,-0.194245,-0.65159,9.92768,-0.0839027,-0.677941,10.2002,0.339069,-0.641412,9.99157,0.0217382,-0.616479,10.1857,0.246132,-0.613733,10.1649,0.242645,-0.556124,10.2205,0.353187,-0.679228,10.227,0.410003,-0.55348,9.72268,0.293558,-0.482288,9.89991,0.421459,-0.417526,9.8839,0.603793,-0.43497,9.87999,0.546982,-0.601346,9.57268,0.298101,-0.588771,9.73729,0.301665,-0.499457,9.87569,0.36371,-0.496963,9.86765,0.342725,-0.496858,9.85443,0.334305,-0.498337,9.89203,0.396565,-0.490226,9.89667,0.415778,-0.310167,9.95026,0.511332,-0.383552,9.93287,0.635975,0.483407,9.90432,0.522957,0.45359,9.89826,0.540269,0.240678,9.70379,0.492114,-0.0416884,9.73283,0.550112,0.219953,9.70588,0.448748,-0.0416884,9.73308,0.513944,0.235436,9.66588,0.45631,-0.0416884,9.66964,0.52868,0.256079,9.50078,0.576614,-0.0416884,9.50553,0.627771,0.229565,9.6818,0.453221,-0.0416884,9.69154,0.519589,0.250381,9.64063,0.461776,-0.0416884,9.64311,0.539113,0.258381,9.58918,0.497106,-0.0416884,9.59043,0.575694,0.26337,9.55913,0.514623,-0.0416884,9.56561,0.592957,0.242806,9.62264,0.469237,-0.0416884,9.62199,0.548445,0.235307,9.70669,0.470643,-0.0416884,9.73223,0.538465,0.23103,9.70465,0.465169,-0.0416884,9.74044,0.507813,0.217536,9.69765,0.443949,-0.0416884,9.7155,0.505522,-0.0420899,9.71246,0.615796,0.230936,9.70849,0.545575,-0.0416884,9.7849,0.720469,-0.0416884,9.732,0.58387,0.228567,9.70319,0.521806,-0.0416884,9.73152,0.571002,0.231431,9.70141,0.5136,-0.0433006,9.71805,0.732557,-0.0416884,9.73117,0.56281,0.233583,9.70063,0.507318,0.230709,9.75618,0.662566,-0.0483091,9.70225,0.723667,0.233463,9.74546,0.653521,-0.0476851,9.69417,0.686055,0.235838,9.70884,0.611723,-0.0416884,9.82755,0.620796,0.220869,9.81713,0.595889,0.242416,9.79455,0.682266,-0.0249139,10.6685,-1.02245,0.598196,10.1839,0.222701,-0.855797,10.4714,-0.133852,-0.519882,10.8443,-0.887818,0.164718,10.5421,-0.786002,-0.19949,10.6543,-0.770869,0.583271,10.2362,0.0786157,-0.602894,10.3004,0.097283,0.50234,10.1683,0.151753,0.554079,10.5209,-0.425814,-0.581362,10.6005,-0.412437,0.372356,10.5633,-0.715071,-0.41076,10.6992,-0.698761,-0.0203478,10.5606,-0.794975,0.695091,10.3233,-0.0618889,-0.698349,10.4569,-0.15071,0.17381,10.3197,-0.999362,0.633326,10.0978,-0.0616496,-0.6666,10.1205,-0.0354692,-0.656479,10.2675,-0.342737,0.639416,10.2199,-0.638709,-0.569912,10.3662,-0.882442,0.767497,10.1422,-0.33165,-0.0353277,10.4344,-1.09467,-0.214703,10.5235,-1.33517,-0.390166,10.5185,-1.2094,0.398251,10.2871,-0.954468,0.179708,10.3391,-1.08094,0.632942,10.1101,-0.0476796,-0.663268,10.1394,-0.0161691,-0.649825,10.2714,-0.336666,0.643092,10.2515,-0.725472,-0.563592,10.37,-0.876061,0.768119,10.1524,-0.318485,-0.0329243,10.4502,-1.07316,-0.213639,10.5391,-1.34072,-0.38563,10.5313,-1.20007,0.403537,10.3088,-1.02366,0.737327,10.0784,-0.448235,-0.0598781,10.2728,-1.31429,-0.225577,10.3633,-1.27847,-0.436503,10.3875,-1.3058,0.344262,10.0653,-1.32837,-0.535634,10.3868,-0.846946,0.667437,10.5003,-0.693895,-0.620532,10.2887,-0.307596,0.635148,10.1897,0.023018,0.822558,10.2853,-0.182061,-0.212257,10.5723,-1.33338,-0.365562,10.555,-1.15847,0.447262,10.5486,-0.991641,0.191314,10.4762,-1.08667,0.141683,9.93648,-1.42751,-0.000190979,10.0576,-1.34754,-0.177683,10.0922,-1.31086,0.747842,9.92456,-0.243755,-0.684167,10.0151,-0.271306,-0.657919,9.92183,-0.0979201,0.707687,9.93682,-0.590067,-0.740857,10.0711,-0.547746,0.503926,9.86542,-1.04188,0.320817,9.89973,-1.31959,-0.38373,10.0241,-1.18439,-0.569291,10.1427,-0.882946,-0.651024,10.2274,0.0671914,-0.0258682,10.5054,-1.11521,0.135039,9.94872,-1.40749,-0.0302296,10.0449,-1.38024,-0.222688,10.0702,-1.37947,0.692718,9.94672,-0.0874986,0.740021,9.93341,-0.227898,-0.680032,10.0146,-0.256444,0.701863,9.95179,-0.552432,-0.745389,10.088,-0.513048,0.499479,9.86676,-1.01568,0.315023,9.90766,-1.29876,-0.43522,10.0046,-1.26088,-0.602186,10.1203,-0.94007,0.111574,10.1174,-1.39577,-0.0536488,10.2484,-1.41964,-0.204236,10.3517,-1.38805,0.646334,9.98488,-0.050721,0.741729,10.0176,-0.197392,-0.690427,10.0812,-0.186356,0.715095,10.0631,-0.467266,-0.709572,10.2113,-0.419907,0.500551,9.96927,-0.997358,0.312148,10.0257,-1.29336,-0.420833,10.3319,-1.26609,-0.606106,10.2946,-0.934136,0.873553,10.3672,-0.140417,0.472959,10.672,-0.908823,-0.736173,10.7191,-0.577402,0.70335,10.6182,-0.595762,-0.66017,10.3123,0.138235,0.690109,10.2363,0.0879279,-0.252032,10.7873,-0.990222,0.209714,10.6451,-1.00526,0.113565,10.1206,-1.28537,0.747346,10.0267,-0.186011,-0.701578,10.0788,-0.176381,0.530153,9.9979,-1.01428,-0.634467,10.3273,-0.94927,-0.724671,10.2275,-0.404712,-0.459751,9.66598,-1.03592,0.340411,9.73648,-1.07636,0.593542,9.83051,-0.265798,-0.555117,9.76219,-0.743168,0.537519,9.71721,-0.826327,-0.636999,9.81877,-0.489072,0.60768,9.79123,-0.513109,-0.0313179,9.65044,-1.30734,-0.27951,9.59555,-1.20135,0.184525,9.72007,-1.22938,-0.14418,9.62538,-1.27994,0.0698515,9.68019,-1.29099,-0.0163831,9.77928,-1.3649,-0.137204,9.74887,-1.33475,0.101484,9.78634,-1.34463,-0.657115,9.89571,-0.430914,0.655538,9.84164,-0.407443,-0.592833,9.85352,-0.697053,0.596661,9.79166,-0.764358,-0.295363,9.65189,-1.24153,0.228697,9.79587,-1.27481,-0.504645,9.74653,-1.03093,0.392029,9.79405,-1.08968,-0.00173437,9.76095,-1.41842,-0.142004,9.71917,-1.38465,0.130891,9.77446,-1.39394,0.69182,9.85561,-0.173129,-0.680041,9.90936,-0.417169,0.695882,9.82034,-0.39432,-0.628205,9.87967,-0.701242,0.642336,9.77554,-0.784873,-0.301992,9.6329,-1.28685,0.265446,9.78674,-1.31224,-0.542701,9.75255,-1.06893,0.437511,9.78613,-1.11368,-0.0140289,8.99192,-1.24624,-0.125271,9.02779,-1.22492,0.0928789,9.03023,-1.23042,-0.694023,9.59899,-0.680932,0.632437,9.60185,-0.735909,-0.582589,9.39442,-0.890996,0.519659,9.48926,-0.929486,-0.261573,9.10537,-1.1613,0.213119,9.13698,-1.17715,-0.426122,9.17758,-1.04045,0.346674,9.32487,-1.0645,-0.00894995,8.55837,-1.30413,-0.249749,8.51351,-1.2734,0.25134,8.605,-1.27203,0.816867,9.65301,-0.371601,-0.95262,9.47232,-0.796524,0.911374,9.5498,-0.725978,-0.873762,9.20785,-1.00201,0.86504,9.37662,-0.937361,-0.496526,8.52894,-1.17276,0.508358,8.73763,-1.17858,-0.716877,8.84222,-1.05872,0.713102,8.99926,-1.03391,-0.00711289,8.74462,-1.23275,-0.16713,8.78278,-1.20915,0.172865,8.78028,-1.21027,-0.811548,9.5318,-0.770524,0.756538,9.58542,-0.764939,-0.718454,9.29084,-0.957958,0.689869,9.4333,-0.94619,-0.343117,8.87836,-1.13077,0.352703,8.89042,-1.14098,-0.546884,9.01011,-1.03691,0.53344,9.13627,-1.02559,-0.0123506,8.84576,-1.37816,-0.174944,8.9033,-1.34565,0.164328,8.88346,-1.36554,-0.848548,9.74968,-0.426032,0.754624,9.71502,-0.427946,-0.856201,9.52718,-0.770012,0.8143,9.62215,-0.748507,-0.753848,9.30691,-0.984293,0.663675,9.50861,-0.973239,-0.348299,9.04174,-1.2567,0.31407,9.02861,-1.30205,-0.573278,9.08041,-1.1265,0.470137,9.31318,-1.15522,-0.635387,9.4435,-1.06352,0.536177,9.56072,-1.09435,-0.764123,9.57083,-0.86449,0.710015,9.63287,-0.929135,-0.795232,9.70753,-0.599381,0.784098,9.71599,-0.65947,-0.0194991,9.29034,-1.39314,-0.449183,9.33794,-1.24429,0.332813,9.49067,-1.27034,-0.219644,9.27925,-1.35629,0.150049,9.37282,-1.36865,-0.174565,8.65158,-1.07132,0.176058,8.71488,-1.07271,-0.783763,9.49074,-0.709644,0.730805,9.51369,-0.752101,0.676243,9.63359,-0.376644,-0.533001,8.9239,-0.928315,0.531938,9.04527,-0.912461,-0.356395,8.7114,-1.00306,0.367158,8.82447,-1.01255,-0.00635651,8.66683,-1.09171,-0.77773,9.1879,-0.864416,0.67086,9.33867,-0.858618,-0.627545,9.59959,-0.772288,0.573011,9.64773,-0.864843,-0.03157,9.35785,-1.24259,-0.344578,9.38058,-1.12738,0.233348,9.51363,-1.15791,-0.500991,9.4718,-0.972831,0.398608,9.58556,-1.02566,-0.682959,9.73757,-0.525867,0.645528,9.72512,-0.615347,-0.169056,9.3381,-1.21202,0.0903418,9.41872,-1.22396,-0.154779,9.59189,-1.37056,0.118548,9.65379,-1.38089,-0.706833,9.87106,-0.461265,0.709876,9.79288,-0.462235,-0.660297,9.88311,-0.29564,0.660852,9.82515,-0.197694,-0.536181,9.66162,-1.08207,0.433097,9.74197,-1.12149,-0.320723,9.55027,-1.27464,0.251472,9.71576,-1.30146,-0.00735954,9.6146,-1.40423,-0.624868,9.79976,-0.743375,0.643912,9.72709,-0.836435,-0.714904,9.97125,-0.712415,0.735316,9.85589,-0.77226,-0.00194463,9.84459,-1.56953,-0.369803,9.67669,-1.41213,0.350985,9.85691,-1.42949,-0.634666,9.84911,-1.14084,0.521799,9.8581,-1.18423,-0.706991,9.9755,-0.368519,0.791056,9.87972,-0.335052,-0.178,9.77838,-1.53085,0.177574,9.87033,-1.5356,5.64066,8.78992,-0.205702,7.67367,8.98887,-0.257284,7.67785,8.98177,-0.195032,7.66119,8.93969,-0.168375,7.64233,8.89347,-0.192492,7.63468,8.86767,-0.25454,7.62984,8.89469,-0.316354,7.64359,8.9414,-0.342848,7.66534,8.983,-0.31926,7.36813,8.99103,-0.153122,7.37048,8.95092,-0.122221,7.35905,8.90997,-0.152585,7.35028,8.87263,-0.226288,7.3459,8.91132,-0.300081,7.35183,8.95288,-0.331212,7.35643,8.98862,-0.2972,7.68212,8.93162,-0.258698,7.50006,9.0028,-0.309173,7.49028,8.93774,-0.337273,7.49004,8.86605,-0.310058,7.49957,8.82574,-0.241167,7.50402,8.86469,-0.171491,7.50982,8.93583,-0.143537,7.48931,9.02914,-0.237117,7.51388,9.00146,-0.171497,7.50828,8.9919,-0.303046,7.49858,9.01534,-0.238331,7.52074,8.99069,-0.179359,7.66615,8.97468,-0.200177,7.65489,8.97579,-0.312017,7.66549,8.98986,-0.256449,7.67931,8.98573,-0.201559,7.68684,9.00343,-0.258468,7.66808,8.98684,-0.313078,7.51031,9.00683,-0.303224,7.5228,9.00563,-0.179259,7.49764,9.0311,-0.237917,7.41098,9.02169,-0.302008,7.40034,8.94765,-0.331642,7.39581,8.87986,-0.302179,7.40377,8.84379,-0.231577,7.41008,8.87847,-0.160617,7.41957,8.94571,-0.131217,7.4183,9.04047,-0.231052,7.42471,9.0203,-0.160831,7.35981,8.90884,-0.299924,7.36493,8.87016,-0.226516,7.37328,8.90771,-0.15314,7.35761,8.87139,-0.2264,7.36572,8.90999,-0.160907,7.35314,8.9119,-0.290874,7.58355,8.98861,-0.319821,7.56884,8.93649,-0.340851,7.5611,8.88014,-0.313708,7.5682,8.85187,-0.247987,7.57442,8.87885,-0.181643,7.58745,8.93466,-0.155815,7.59712,8.98694,-0.178143,7.5951,8.97801,-0.18531,7.58293,8.9795,-0.31258,7.58586,8.99385,-0.313324,7.59812,8.99232,-0.184682,7.5938,9.01355,-0.248995,7.35581,9.01553,-0.293789,7.3707,9.01439,-0.16387,7.38961,9.02875,-0.277662,7.396,9.0539,-0.22882,7.39954,9.02785,-0.180452,7.36547,9.04415,-0.265814,7.3837,9.03736,-0.266001,7.37227,9.0321,-0.187161,7.39133,9.03664,-0.190574,7.38672,9.04192,-0.228059,7.37112,9.05764,-0.226512,7.22199,9.05703,-0.481868,7.2361,9.04345,-0.484244,7.24164,9.03862,-0.449619,7.22417,9.0342,-0.445616,7.23048,9.03968,-0.519118,7.21371,9.0455,-0.517628,7.2496,9.03079,-0.440498,7.24437,9.05479,-0.485362,7.23509,9.03215,-0.530447,7.22367,9.01834,-0.424075,7.20292,9.02012,-0.542822,7.42713,9.01878,-0.51498,7.43482,8.9984,-0.454332,7.41603,9.00055,-0.575662,7.41329,8.98704,-0.574873,7.43192,8.98493,-0.454839,7.43422,8.99319,-0.448104,7.42634,8.94419,-0.426681,7.41264,8.89244,-0.450764,7.40309,8.86803,-0.513487,7.39264,8.89438,-0.575284,7.39838,8.94693,-0.601148,7.41346,8.99552,-0.581726,7.20117,8.92805,-0.540859,7.21949,8.92543,-0.421197,7.20789,8.89674,-0.481568,7.22654,8.92458,-0.414196,7.21458,8.89629,-0.482093,7.20631,8.9266,-0.549742,7.27355,9.02413,-0.423046,7.26445,9.04292,-0.488691,7.26915,8.95598,-0.395074,7.26034,8.90111,-0.422494,7.25015,8.87466,-0.489152,7.24037,8.90309,-0.555085,7.2416,8.95886,-0.582484,7.25311,9.02619,-0.554814,7.33648,9.03499,-0.499217,7.36266,9.01079,-0.445092,7.34484,9.0126,-0.561798,7.4941,8.99395,-0.57974,7.5148,9.00905,-0.52901,7.51091,8.9923,-0.474891,7.49453,8.99636,-0.525996,7.48171,8.98368,-0.578128,7.49857,8.98203,-0.472899,7.36064,8.99677,-0.445139,7.33752,9.02026,-0.499767,7.34294,8.99858,-0.561602,7.35455,9.00668,-0.437318,7.32889,9.03298,-0.498068,7.35313,8.94542,-0.410942,7.34656,8.88388,-0.437412,7.33835,8.859,-0.503372,7.32665,8.88585,-0.56802,7.32511,8.94823,-0.593403,7.33482,9.00869,-0.566864,7.51001,8.94193,-0.529288,7.20387,8.99504,-0.546426,7.19573,8.96231,-0.577465,7.19326,8.92766,-0.548665,7.20123,8.89719,-0.481048,7.21348,8.92564,-0.41327,7.22424,8.95938,-0.385587,7.22232,8.99654,-0.414157,7.49116,8.99035,-0.585461,7.46928,8.95143,-0.606858,7.45778,8.90774,-0.581315,7.46585,8.88228,-0.52321,7.4765,8.90592,-0.464756,7.49563,8.94887,-0.44273,7.50989,8.98852,-0.468659,7.50216,8.99541,-0.527219,7.58741,8.93709,0.134064,7.58186,8.93051,0.196565,7.56181,8.88586,0.221065,7.54728,8.83614,0.194925,7.54908,8.80787,0.132604,7.55445,8.83544,0.0701572,7.57191,8.88488,0.045287,7.58908,8.92982,0.071403,7.29306,8.93653,0.189577,7.28796,8.8947,0.221162,7.28015,8.85436,0.189642,7.28162,8.81904,0.116503,7.28858,8.85353,0.0425592,7.2997,8.89355,0.0119873,7.30298,8.9317,0.0462981,7.59413,8.87617,0.134796,7.43542,8.94914,0.0556602,7.42946,8.87999,0.0271865,7.4242,8.8096,0.0551961,7.42196,8.78057,0.125455,7.41618,8.81038,0.194793,7.41824,8.88108,0.222372,7.41527,8.97763,0.125096,7.42746,8.94993,0.194379,7.44196,8.93751,0.063173,7.42369,8.9631,0.125522,7.43478,8.93822,0.18779,7.57174,8.92268,0.189761,7.57824,8.92206,0.0770924,7.57977,8.93804,0.133619,7.58425,8.93468,0.190256,7.60003,8.95288,0.134704,7.59073,8.93406,0.0778993,7.44407,8.95336,0.0630857,7.43688,8.95407,0.187982,7.4229,8.98001,0.125548,7.35346,8.9679,0.0486799,7.3462,8.89034,0.0185215,7.33678,8.82737,0.0481969,7.33208,8.79603,0.119909,7.32859,8.82818,0.190707,7.33469,8.89144,0.220683,7.35004,8.98857,0.120022,7.34547,8.96868,0.191059,7.30189,8.85296,0.0447409,7.29523,8.81884,0.118549,7.29342,8.8538,0.191496,7.28841,8.81894,0.117527,7.28793,8.85431,0.182598,7.295,8.85456,0.0527968,7.51382,8.93487,0.0581881,7.50255,8.87929,0.0358514,7.49032,8.82014,0.0624209,7.48645,8.79168,0.129102,7.48268,8.82088,0.19545,7.49179,8.88031,0.22223,7.50495,8.93538,0.200794,7.50405,8.92558,0.19351,7.51203,8.92513,0.0654096,7.51506,8.9404,0.0649085,7.50694,8.94083,0.194382,7.51296,8.96247,0.129625,7.30232,8.96043,0.0489974,7.29716,8.96133,0.179229,7.33085,8.97523,0.0697237,7.32991,9.00228,0.118601,7.32537,8.97584,0.167253,7.30789,8.99112,0.0777162,7.3242,8.98432,0.0803173,7.30212,8.97966,0.15621,7.31988,8.98477,0.15581,7.32162,8.98932,0.118131,7.30787,9.00557,0.117038,6.9185,9.00413,-0.725684,6.93103,8.99079,-0.728392,6.94033,8.98744,-0.698472,6.92554,8.98343,-0.692468,6.92423,8.98468,-0.758502,6.90937,8.9903,-0.755847,6.94896,8.97993,-0.691279,6.93851,9.00136,-0.731245,6.92827,8.97626,-0.768344,6.92787,8.96836,-0.672414,6.89849,8.96288,-0.774891,7.08432,8.96365,-0.770892,7.09622,8.9494,-0.72297,7.07009,8.94338,-0.8158,7.06826,8.93175,-0.814033,7.09414,8.93773,-0.7222,7.09645,8.94523,-0.717721,7.09326,8.90487,-0.697125,7.08122,8.8597,-0.711246,7.06805,8.83525,-0.757554,7.05389,8.85328,-0.80644,7.05501,8.89589,-0.830508,7.06763,8.93857,-0.819947,6.89805,8.87387,-0.765508,6.92681,8.87999,-0.662905,6.90984,8.84921,-0.712029,6.93443,8.87996,-0.658124,6.91599,8.84908,-0.713347,6.90224,8.87238,-0.773585,6.9727,8.97357,-0.679621,6.95652,8.98936,-0.735639,6.97496,8.91127,-0.651253,6.9649,8.86013,-0.669749,6.94867,8.83136,-0.722698,6.93345,8.85287,-0.779347,6.93151,8.90196,-0.807151,6.94313,8.96781,-0.790281,7.01724,8.97842,-0.751598,7.04381,8.95979,-0.709522,7.01826,8.9539,-0.800676,7.12792,8.94025,-0.826398,7.14903,8.95753,-0.789047,7.15146,8.94578,-0.744372,7.13499,8.94627,-0.784255,7.11865,8.93075,-0.823014,7.14215,8.93627,-0.741142,7.04248,8.94753,-0.708459,7.01757,8.96571,-0.750969,7.01699,8.94157,-0.799364,7.03844,8.95654,-0.702113,7.01031,8.97766,-0.749553,7.04108,8.90537,-0.677177,7.03397,8.85124,-0.69366,7.02052,8.82598,-0.743226,7.00485,8.84439,-0.795096,7.0003,8.89594,-0.819441,7.01002,8.95006,-0.803734,7.14789,8.89696,-0.784633,6.89881,8.93798,-0.776174,6.8895,8.90379,-0.799472,6.89027,8.87285,-0.771404,6.90375,8.84941,-0.710721,6.92252,8.88074,-0.655222,6.93485,8.91409,-0.634863,6.92751,8.94766,-0.661492,7.1251,8.9362,-0.830384,7.10668,8.90018,-0.842517,7.10105,8.86384,-0.818182,7.11326,8.84598,-0.771253,7.12705,8.86996,-0.727604,7.14339,8.90881,-0.714643,7.15132,8.94236,-0.739034,7.14101,8.94555,-0.785936,6.48998,8.7564,0.865961,6.46722,8.68488,0.852216,6.54609,8.80882,0.851895,6.55622,8.80221,0.840759,6.47558,8.68075,0.839265,6.46589,8.67697,0.847064,6.48167,8.63833,0.800025,6.53391,8.64287,0.755223,6.5992,8.6927,0.742157,6.62125,8.76636,0.759728,6.60448,8.81224,0.806317,6.55366,8.81314,0.847421,6.32748,8.74005,0.709919,6.35223,8.82097,0.721814,6.36035,8.68477,0.651814,6.41012,8.69564,0.602493,6.46305,8.75357,0.578757,6.48581,8.83036,0.599296,6.47095,8.88149,0.646876,6.40717,8.88474,0.70612,6.4109,8.79216,0.788117,6.4085,8.71301,0.791551,6.48538,8.83694,0.790339,6.59284,8.77462,0.91993,6.56108,8.72354,0.947204,6.53359,8.66719,0.924406,6.55398,8.72546,0.9165,6.59282,8.77418,0.90039,6.52987,8.66719,0.902945,6.41884,8.70731,0.779712,6.42432,8.78481,0.778594,6.49683,8.83005,0.779279,6.40111,8.70694,0.780282,6.40673,8.79388,0.778853,6.42628,8.65755,0.727389,6.48666,8.66028,0.680364,6.54453,8.71651,0.661859,6.56966,8.79193,0.680227,6.55189,8.84124,0.732692,6.48635,8.84522,0.778782,6.60418,8.69767,0.891154,6.59789,8.77969,0.915192,6.6333,8.79025,0.871189,6.64581,8.75014,0.828429,6.62506,8.68232,0.808568,6.56832,8.63516,0.825169,6.5307,8.62595,0.871525,6.53111,8.66018,0.91966,6.56074,8.72234,0.92385,1.21737,9.53133,-0.448082,1.40162,9.47178,0.262551,1.30654,9.63357,-0.206991,1.46176,9.13475,-0.650022,1.08078,9.33628,-0.602687,1.39849,9.63128,-0.00197868,1.62297,8.80308,0.0993095,1.42615,8.79005,0.356225,1.60033,8.58477,-0.287381,1.61991,8.63059,-0.0815446,1.50952,8.62187,-0.55945,1.74763,9.52214,-0.250404,1.56093,9.39883,-0.511213,1.76818,9.37851,0.292151,1.80179,9.51701,0.049988,1.48199,8.83394,-0.625891,1.5896,8.5393,-0.40615,1.69956,9.02634,0.285672,1.44712,9.01548,0.322602,3.09687,8.95932,0.14535,3.08718,8.70514,-0.368344,3.07203,8.94841,-0.668311,3.11801,9.32407,-0.0429022,3.11668,9.14076,0.0716837,3.07562,9.34108,-0.550414,3.10482,9.42212,-0.283003,3.08379,8.73221,-0.539643,3.09132,8.68293,-0.055541,3.09109,8.67669,-0.205581,3.09544,8.76411,0.0682914,3.07723,9.22892,-0.625634,3.36671,9.25246,-0.650018,3.37855,8.77694,-0.0104906,3.38181,8.69485,-0.223619,3.38079,8.69957,-0.0974994,3.37528,8.76717,-0.514176,3.37729,9.4551,-0.28725,3.36303,9.38132,-0.573674,3.41171,9.15168,-0.062825,3.39639,9.35403,-0.0867581,3.38207,8.98253,-0.729022,3.37941,8.72097,-0.378073,3.38992,8.95899,0.0306416,3.67677,8.92032,0.0464183,3.66354,8.73627,-0.395405,3.72276,9.01041,-0.663786,3.68358,9.37423,-0.0602922,3.70415,9.13216,-0.0408277,3.6502,9.44046,-0.507057,3.65983,9.49152,-0.236385,3.66036,8.79432,-0.519406,3.66423,8.68611,-0.10913,3.66553,8.69458,-0.240357,3.66213,8.74923,-0.000624639,3.65391,9.30373,-0.592611,2.12035,8.95443,0.312094,2.75305,8.94448,0.260216,2.16271,9.24464,0.287933,2.77786,9.16575,0.206228,2.07626,8.73634,0.17369,2.73451,8.72889,0.164155,1.96736,8.6939,-0.554391,2.68385,8.72217,-0.526497,1.99516,8.60825,-0.41789,2.69115,8.68961,-0.4107,2.01594,8.57385,-0.25797,2.70093,8.63924,-0.244334,1.95311,8.91474,-0.627429,2.66799,8.94808,-0.654772,1.93176,9.16286,-0.650022,2.66683,9.16658,-0.644515,2.17526,9.47259,0.0604886,2.78538,9.37328,0.0133864,2.11494,9.51083,-0.250259,2.76784,9.46297,-0.262635,1.99683,9.40619,-0.511213,2.69077,9.37026,-0.520064,2.02916,8.63061,-0.0048831,2.70828,8.64084,-0.00291803,4.52807,8.7375,-0.382488,5.09983,8.84914,-0.41521,4.52471,8.66704,-0.276249,5.10077,8.77179,-0.350961,4.52052,8.65553,-0.139298,5.09616,8.73323,-0.245183,4.5198,9.35512,-0.0195722,5.06645,9.20669,0.0332032,4.52124,9.40164,-0.250677,5.06891,9.29213,-0.137966,4.52469,9.33567,-0.368075,5.07334,9.28151,-0.244325,4.53143,9.19359,0.0886739,5.0736,9.05948,0.0881668,4.54947,8.93939,0.0451699,5.08254,8.89592,0.0238059,4.52699,9.13609,-0.548565,5.08579,9.1881,-0.435938,4.525,8.94031,-0.546353,5.09371,9.03931,-0.488755,4.52656,8.84329,-0.485265,5.0956,8.95223,-0.467176,4.53099,8.7583,-0.00825124,5.08897,8.78147,-0.0957502,1.8845,8.99403,0.280685,1.91614,9.29815,0.287264,1.85305,8.77042,0.0772314,1.68028,8.62722,-0.539282,1.72112,8.56653,-0.394336,1.82966,8.59072,-0.258301,1.67277,8.81657,-0.601814,1.67484,9.1225,-0.650022,1.92429,9.50662,0.0688235,1.91382,9.52706,-0.248198,1.82611,9.39765,-0.510453,1.81626,8.66679,-0.0637031,4.07704,8.71165,-0.306155,4.07424,8.67358,-0.185196,4.07252,8.70179,-0.0614413,4.06888,9.43301,-0.133696,4.06918,9.42688,-0.386892,4.07176,9.32186,-0.487957,4.08696,9.29436,0.0117633,4.10634,9.04203,0.00221113,4.07357,9.05848,-0.610871,4.07477,8.86157,-0.533149,4.07552,8.78435,-0.438063,4.08584,8.84215,0.0248275,3.08146,9.1045,-0.684916,3.38072,9.14539,-0.711113,3.07649,8.86627,-0.621626,3.37006,8.85808,-0.642737,3.19366,9.1712,-0.675955,3.39306,9.18687,-0.620804,3.71482,9.18257,-0.573226,4.52613,9.24514,-0.485524,5.08041,9.25126,-0.357614,4.07331,9.19131,-0.580949,3.17298,8.82723,-0.600068,3.36641,8.82177,-0.564851,3.67616,8.87822,-0.583936,4.52609,9.02983,-0.572456,5.09036,9.11299,-0.484586,4.07299,8.94309,-0.592349,3.61373,8.91056,-0.623096,3.64025,9.13445,-0.656145,3.66633,9.012,-0.660721,2.42859,8.95404,0.291979,2.45874,9.1947,0.252357,2.39964,8.73532,0.17919,2.30919,8.72175,-0.543404,2.32652,8.65817,-0.417001,2.34131,8.60763,-0.250857,2.29334,8.93877,-0.641359,2.28827,9.16701,-0.647533,2.4664,9.42954,0.0409799,2.45192,9.48577,-0.255204,2.33209,9.38896,-0.515213,2.35503,8.63533,0.00310197,5.57868,9.20879,-0.0817853,5.58386,8.98781,-0.489309,5.58018,8.77341,-0.336416,5.58052,8.82284,-0.424443,5.57914,8.7858,-0.184473,5.57835,8.85716,-0.0425029,5.57709,8.97779,0.0606541,5.57611,9.10623,0.0496596,5.57691,9.21536,-0.189068,5.57803,9.21069,-0.302691,5.5787,9.1733,-0.392374,5.57906,9.12122,-0.45773,5.57943,9.06255,-0.48134,5.58031,8.8963,-0.463737,1.27288,9.23853,-0.626354,1.50399,8.81033,0.228623,1.47326,9.58016,-0.236267,1.37966,9.46321,-0.480229,1.60657,9.56804,0.00531996,1.59537,9.4347,0.272245,1.56173,9.03012,0.304752,0.184512,10.9534,0.648641,0.0625059,11.0536,0.686716,0.130586,10.9714,0.653319,0.0877434,11.0066,0.666689,0.241311,10.9554,0.653367,0.292336,10.9771,0.666778,0.329818,11.0151,0.686832,0.0633538,11.0584,0.751761,0.0918354,11.034,0.794749,0.136845,11.014,0.823484,0.191529,11.0014,0.833591,0.247564,10.998,0.823532,0.296418,11.0045,0.794838,0.330654,11.0198,0.751877,0.0581236,11.1013,0.708867,0.347447,11.0596,0.708993,0.333042,11.0378,0.75968,0.298806,11.0225,0.80264,0.249952,11.016,0.831334,0.193917,11.0193,0.841393,0.139232,11.032,0.831286,0.094223,11.052,0.802551,0.0657414,11.0763,0.759564,0.0423543,11.0741,0.767425,0.0756519,11.0457,0.817681,0.128272,11.0223,0.851275,0.192203,11.0075,0.863091,0.257713,11.0036,0.851331,0.314828,11.0112,0.817785,0.354853,11.0291,0.76756,0.371694,11.0546,0.708303,0.0334484,11.1033,0.708156,0.0455516,11.0245,0.740042,0.073461,10.9752,0.70334,0.121232,10.9432,0.668057,0.181593,10.9332,0.639564,0.13413,10.9321,0.687524,0.0972931,10.9548,0.73931,0.0766898,10.9979,0.787039,0.125897,10.976,0.818454,0.134955,10.9381,0.763354,0.154512,10.9231,0.700536,0.179276,10.9173,0.705113,0.180712,10.9275,0.771812,0.185682,10.9622,0.829504,0.246944,10.9585,0.818507,0.2276,10.9247,0.763394,0.204652,10.9158,0.700558,0.226775,10.9188,0.687564,0.268479,10.9302,0.739384,0.300355,10.9656,0.787136,0.337784,10.9824,0.740169,0.297126,10.943,0.703437,0.242279,10.9257,0.668109,0.248802,10.9356,0.645156,0.30918,10.9612,0.661025,0.353533,11.0062,0.684754,0.117782,10.9545,0.645099,0.0670867,10.9961,0.66092,0.0372232,11.0518,0.684617,0.349584,11.0768,0.707206,0.111559,11.1965,0.658165,0.073027,11.1591,0.682735,0.222962,11.2192,0.635944,0.278873,11.2011,0.641675,0.32343,11.166,0.658056,0.349849,11.1192,0.682592,0.164209,11.2176,0.641734,0.344487,11.1211,0.746112,0.316597,11.1491,0.787098,0.272042,11.1715,0.814497,0.217607,11.1849,0.824138,0.161578,11.1874,0.814554,0.112485,11.1785,0.787203,0.0778026,11.1596,0.746249,0.0759193,11.1445,0.755676,0.110602,11.1634,0.79663,0.314713,11.1339,0.796525,0.342604,11.106,0.755539,0.0609269,11.1184,0.707355,0.270159,11.1563,0.823924,0.215724,11.1698,0.833565,0.159695,11.1722,0.823981,0.054254,11.1538,0.76303,0.0948013,11.1759,0.810909,0.152195,11.1863,0.842885,0.217698,11.1834,0.85409,0.281338,11.1677,0.842818,0.333427,11.1415,0.810786,0.366033,11.1088,0.76287,0.374193,11.0747,0.706365,0.0367266,11.1234,0.706538,0.158122,11.2348,0.632816,0.164927,11.2466,0.654748,0.110536,11.2325,0.692117,0.070362,11.1964,0.732615,0.108367,11.2171,0.777492,0.139624,11.2483,0.726464,0.18067,11.2552,0.673337,0.202952,11.2592,0.685751,0.180797,11.2558,0.749403,0.162163,11.2269,0.807463,0.223559,11.2242,0.817965,0.227788,11.2537,0.757441,0.228384,11.2581,0.690102,0.253091,11.252,0.685726,0.273442,11.2424,0.749355,0.283208,11.2094,0.8074,0.332031,11.1849,0.777377,0.310808,11.2237,0.726376,0.273314,11.2418,0.673289,0.285973,11.2291,0.654686,0.3342,11.2002,0.692002,0.362593,11.1543,0.732465,0.370242,11.1223,0.679502,0.340054,11.1758,0.651466,0.289142,11.2159,0.632748,0.225256,11.2366,0.626199,0.0539335,11.1679,0.679665,0.097962,11.2107,0.65159,0.136852,11.0884,0.849572,0.156724,11.1112,0.566051,0.1083,11.1305,0.597234,0.0744349,11.1434,0.645992,0.0602837,11.148,0.704899,0.0680009,11.1434,0.76499,0.0964115,11.1305,0.817114,0.141381,11.1112,0.849817,0.154279,11.1305,0.850515,0.120243,11.1662,0.818403,0.0991388,11.1901,0.766673,0.0939872,11.1985,0.706722,0.105573,11.1901,0.647675,0.132132,11.1662,0.598523,0.169621,11.1305,0.566748,0.188924,11.1434,0.567792,0.167799,11.1901,0.600452,0.152174,11.2213,0.650195,0.144428,11.2322,0.709449,0.14574,11.2213,0.769193,0.155911,11.1901,0.820331,0.173581,11.1434,0.851558,0.196351,11.148,0.852789,0.197983,11.1985,0.822606,0.20071,11.2322,0.772165,0.203927,11.2441,0.712666,0.207144,11.2322,0.653167,0.209871,11.1985,0.602726,0.211694,11.148,0.569023,0.234463,11.1434,0.570254,0.251943,11.1901,0.605001,0.262114,11.2213,0.656139,0.263426,11.2322,0.715883,0.25568,11.2213,0.775137,0.240055,11.1901,0.824881,0.21912,11.1434,0.854021,0.238423,11.1305,0.855064,0.275722,11.1662,0.826809,0.302281,11.1901,0.777657,0.313867,11.1985,0.71861,0.308715,11.1901,0.658659,0.28761,11.1662,0.606929,0.253766,11.1305,0.571298,0.266663,11.1112,0.571995,0.311442,11.1305,0.608218,0.339853,11.1434,0.660342,0.34757,11.148,0.720433,0.333419,11.1434,0.77934,0.299554,11.1305,0.828098,0.251321,11.1112,0.855761,0.25585,11.0884,0.856006,0.307922,11.0884,0.82855,0.344353,11.0884,0.779932,0.359405,11.0884,0.721073,0.350787,11.0884,0.660934,0.319811,11.0884,0.608671,0.271193,11.0884,0.57224,0.212334,11.0884,0.557188,0.266663,11.0656,0.571995,0.311442,11.0463,0.608218,0.339853,11.0333,0.660342,0.34757,11.0288,0.720433,0.333419,11.0333,0.77934,0.299554,11.0463,0.828098,0.251321,11.0656,0.855761,0.238423,11.0463,0.855064,0.275722,11.0105,0.826809,0.302281,10.9867,0.777657,0.313867,10.9783,0.71861,0.308715,10.9867,0.658659,0.28761,11.0105,0.606929,0.253766,11.0463,0.571298,0.234463,11.0333,0.570254,0.251943,10.9867,0.605001,0.262114,10.9555,0.656139,0.263426,10.9445,0.715883,0.25568,10.9555,0.775137,0.240055,10.9867,0.824881,0.21912,11.0333,0.854021,0.196351,11.0288,0.852789,0.197983,10.9783,0.822606,0.20071,10.9445,0.772165,0.203927,10.9327,0.712666,0.207144,10.9445,0.653167,0.209871,10.9783,0.602726,0.211694,11.0288,0.569023,0.188924,11.0333,0.567792,0.167799,10.9867,0.600452,0.152174,10.9555,0.650195,0.144428,10.9445,0.709449,0.14574,10.9555,0.769193,0.155911,10.9867,0.820331,0.173581,11.0333,0.851558,0.154279,11.0463,0.850515,0.120244,11.0105,0.818403,0.0991388,10.9867,0.766673,0.0939872,10.9783,0.706722,0.105573,10.9867,0.647675,0.132132,11.0105,0.598523,0.169621,11.0463,0.566748,0.156724,11.0656,0.566051,0.1083,11.0463,0.597234,0.074435,11.0333,0.645992,0.0602838,11.0288,0.7049,0.0680009,11.0333,0.76499,0.0964116,11.0463,0.817114,0.141381,11.0656,0.849817,0.0880429,11.0884,0.816662,0.0570667,11.0884,0.764398,0.0484487,11.0884,0.70426,0.0635008,11.0884,0.6454,0.0999315,11.0884,0.596782,0.152195,11.0884,0.565806,0.177035,11.0803,0.847026,0.181627,11.0734,0.847275,0.188499,11.0688,0.847646,0.196605,11.0672,0.848084,0.204711,11.0688,0.848523,0.211583,11.0734,0.848894,0.216175,11.0803,0.849142,0.217787,11.0884,0.84923,0.216175,11.0965,0.849142,0.211583,11.1034,0.848894,0.204711,11.108,0.848523,0.196605,11.1096,0.848084,0.188499,11.108,0.847646,0.181627,11.1034,0.847275,0.177035,11.0965,0.847026,0.175423,11.0884,0.846939,0.165666,11.0884,0.845582,0.168025,11.1003,0.845709,0.174741,11.1103,0.846073,0.184793,11.1171,0.846616,0.19665,11.1194,0.847257,0.208507,11.1171,0.847898,0.218558,11.1103,0.848442,0.225275,11.1003,0.848805,0.227633,11.0884,0.848933,0.225275,11.0765,0.848805,0.218558,11.0664,0.848442,0.208507,11.0597,0.847898,0.19665,11.0574,0.847257,0.184793,11.0597,0.846616,0.174741,11.0664,0.846073,0.168025,11.0765,0.845709,0.19665,11.0884,0.847257,0.138652,11.1123,0.851284,0.152169,11.1325,0.852014,0.1724,11.1461,0.853108,0.196264,11.1508,0.854399,0.220127,11.1461,0.855689,0.240358,11.1325,0.856783,0.253875,11.1123,0.857513,0.258622,11.0884,0.85777,0.253875,11.0645,0.857513,0.240358,11.0442,0.856783,0.220127,11.0307,0.855689,0.196264,11.0259,0.854399,0.1724,11.0307,0.853108,0.15217,11.0442,0.852014,0.138652,11.0645,0.851284,0.133905,11.0884,0.851027,0.0619781,10.2846,0.956831,0.117528,10.2898,0.931531,0.151428,10.289,0.885222,0.169091,10.2823,0.825039,0.173168,10.2846,0.75253,0.170341,10.2841,0.692479,0.167581,10.2833,0.625752,0.169464,10.2846,0.558823,0.0691909,10.2846,0.98079,0.133247,10.2894,0.950998,0.17582,10.2889,0.896847,0.200442,10.2824,0.830861,0.210127,10.2846,0.753815,0.21365,10.284,0.691972,0.211296,10.2833,0.625179,0.207948,10.2846,0.558547,0.0619781,10.2208,0.956831,0.117528,10.2208,0.931531,0.153709,10.2208,0.883235,0.171067,10.2208,0.825951,0.172664,10.2208,0.755081,0.17024,10.2208,0.692479,0.166777,10.2208,0.625752,0.169464,10.2208,0.558823,0.0680708,10.2208,0.976534,0.130261,10.2208,0.949878,0.172491,10.2208,0.896208,0.205483,10.2208,0.691972,0.201333,10.2208,0.558547,0.196275,10.2208,0.82703,0.202888,10.2208,0.756357,0.204317,10.2208,0.625179,0.0566604,10.2936,0.988537,0.123231,10.2936,0.961794,0.16225,10.3029,0.912605,0.20185,10.2909,0.84315,0.21338,10.2917,0.769939,0.218354,10.295,0.705403,0.217689,10.2907,0.63834,0.214369,10.2936,0.571856,0.0164408,10.2936,0.993532,-0.0164408,10.2936,0.993532,0.0841565,10.2936,0.981131,0.146449,10.3031,0.93212,0.186856,10.2918,0.886873,0.206023,10.2913,0.817819,0.216377,10.295,0.743097,0.219977,10.2909,0.67846,0.218361,10.2933,0.611824,0.0488204,10.2936,0.955946,0.10456,10.2946,0.933954,0.145216,10.3028,0.903216,0.160889,10.2908,0.834098,0.16846,10.2917,0.76751,0.165553,10.2949,0.705762,0.162125,10.2907,0.639298,0.162811,10.2936,0.57223,-0.00811154,10.2936,0.960681,0.00811154,10.2936,0.960681,0.00977064,10.2936,0.960681,-0.00977064,10.2936,0.960681,0.0727008,10.2936,0.949628,0.133068,10.3031,0.918368,0.150671,10.2928,0.872028,0.166911,10.2911,0.811521,0.167319,10.2949,0.741888,0.162937,10.2909,0.679285,0.159614,10.2934,0.612401,0.0553502,10.2208,0.986848,0.121734,10.2208,0.959217,0.172513,10.2208,0.909532,0.199633,10.2208,0.839568,0.21022,10.2208,0.77008,0.214646,10.2208,0.705382,0.213782,10.2208,0.638284,0.210748,10.2208,0.571834,0.0150628,10.2208,0.991858,-0.0150628,10.2208,0.991858,0.0822409,10.2208,0.978766,0.144598,10.2208,0.944006,0.185327,10.2208,0.886978,0.203584,10.2208,0.817506,0.211645,10.2208,0.745655,0.213892,10.2208,0.678412,0.214303,10.2208,0.611791,0.0483653,10.2208,0.954054,0.103475,10.2208,0.932338,0.143299,10.2208,0.891421,0.162988,10.2208,0.835006,0.163228,10.2208,0.767369,0.159764,10.2208,0.705783,0.158917,10.2208,0.639354,0.159817,10.2208,0.572252,-0.00772425,10.2208,0.958773,0.00772425,10.2208,0.958773,0.00938335,10.2208,0.958773,-0.00938335,10.2208,0.958773,0.0720357,10.2208,0.947799,0.121494,10.2208,0.91831,0.153146,10.2208,0.869546,0.164905,10.2208,0.812041,0.165546,10.2208,0.74438,0.161999,10.2208,0.679333,0.156271,10.2208,0.612434,0.00180238,10.2846,0.965329,-0.00180238,10.2846,0.965329,0.0627708,10.2846,0.956302,0.118104,10.29,0.930863,0.151369,10.2889,0.884318,0.16903,10.2823,0.824015,0.172645,10.2847,0.751456,0.169675,10.2839,0.691525,0.166932,10.2834,0.624785,0.00180238,10.2208,0.965329,-0.00180238,10.2208,0.965329,0.0627708,10.2208,0.956302,0.118104,10.2208,0.930863,0.153801,10.2208,0.882279,0.170875,10.2208,0.825131,0.172301,10.2208,0.754213,0.169779,10.2208,0.691525,0.166076,10.2208,0.624785,0.00179212,10.2208,0.990967,-0.00179212,10.2208,0.990967,0.0691415,10.2208,0.976565,0.131352,10.2208,0.949586,0.173205,10.2208,0.8956,0.196927,10.2208,0.826328,0.203377,10.2208,0.7555,0.20601,10.2208,0.690988,0.204916,10.2208,0.624209,0.00179213,10.2846,0.990967,-0.00179213,10.2846,0.990967,0.0702616,10.2846,0.980821,0.134338,10.2897,0.950706,0.17655,10.2886,0.896223,0.200998,10.2824,0.829887,0.210739,10.2848,0.752737,0.214311,10.2839,0.690988,0.21188,10.2834,0.624209,0.0680248,10.2846,0.98152,0.132327,10.2891,0.952004,0.175642,10.2892,0.898067,0.200708,10.2823,0.832283,0.21051,10.2844,0.755307,0.214184,10.2842,0.69324,0.212003,10.2831,0.626427,0.208556,10.2846,0.559807,0.060712,10.2846,0.956751,0.116272,10.2897,0.931776,0.150689,10.2892,0.886035,0.168159,10.2823,0.826127,0.172651,10.2844,0.75393,0.169811,10.2842,0.69374,0.166971,10.2831,0.627032,0.168834,10.2846,0.560093,0.0669047,10.2208,0.977264,0.129341,10.2208,0.950884,0.172338,10.2208,0.897441,0.196438,10.2208,0.828114,0.203445,10.2208,0.757438,0.206197,10.2208,0.69324,0.205086,10.2208,0.626427,0.201941,10.2208,0.559807,0.0607121,10.2208,0.956751,0.116272,10.2208,0.931776,0.152884,10.2208,0.884111,0.170425,10.2208,0.826957,0.171897,10.2208,0.756067,0.16938,10.2208,0.69374,0.166122,10.2208,0.627032,0.168834,10.2208,0.560093,0.0603696,10.1093,0.934996,0.0652662,10.1093,0.933409,0.113624,10.1093,0.910282,0.118359,10.1093,0.907353,0.1435,10.1093,0.865146,0.145787,10.1093,0.859342,0.16148,10.1093,0.802526,0.163702,10.1093,0.798261,0.163021,10.1093,0.736203,0.163782,10.1093,0.732521,0.159798,10.1093,0.676213,0.160364,10.1093,0.671421,0.161005,10.1093,0.609506,0.160335,10.1093,0.603496,0.0708864,10.1093,0.96993,0.0786179,10.1093,0.968047,0.137237,10.1093,0.939525,0.144583,10.1093,0.935402,0.181195,10.1093,0.883854,0.185541,10.1093,0.874809,0.224421,10.1093,0.675475,0.223422,10.1093,0.670468,0.207766,10.1093,0.811774,0.207934,10.1093,0.820616,0.21976,10.1093,0.7383,0.22195,10.1093,0.74353,0.218139,10.1093,0.608657,0.219818,10.1093,0.61672,0.159817,10.1093,0.555916,0.170188,10.1093,0.543756,0.162785,10.1093,0.623017,0.160586,10.1093,0.615982,0.158134,10.1093,0.689447,0.15757,10.1093,0.681452,0.161581,10.1093,0.748302,0.160664,10.1093,0.740997,0.156534,10.1093,0.815024,0.157666,10.1093,0.807887,0.139036,10.1093,0.87683,0.140443,10.1093,0.870708,0.103475,10.1093,0.916002,0.107867,10.1093,0.912577,0.0483653,10.1093,0.937717,0.0547826,10.1093,0.935694,0.171007,10.1093,0.542487,0.217489,10.1093,0.566984,0.204863,10.1093,0.543471,0.219498,10.1093,0.628694,0.226845,10.1093,0.689046,0.227086,10.1093,0.680896,0.220477,10.1093,0.751013,0.205526,10.1093,0.826506,0.175067,10.1093,0.897282,0.177778,10.1093,0.892961,0.124315,10.1093,0.947074,0.130147,10.1093,0.944721,0.0571156,10.1093,0.974093,0.0630157,10.1093,0.972922,0.204078,10.1093,0.54221,0.217848,10.1093,0.590233,0.218077,10.1093,0.597439,0.21784,10.1093,0.652631,0.217618,10.1093,0.729157,0.219057,10.1093,0.734341,0.208102,10.1093,0.799362,0.208586,10.1093,0.804968,0.188957,10.1093,0.868674,0.147584,10.1093,0.928789,0.0848217,10.1093,0.966624,0.0168281,10.1093,0.979102,-0.0168281,10.1093,0.979102,-0.00582987,10.1093,0.980618,0.00582987,10.1093,0.980618,0.00748897,10.1093,0.980618,-0.00748897,10.1093,0.980618,0.160185,10.1093,0.596098,0.161976,10.1093,0.662997,0.165546,10.1093,0.727781,0.164792,10.1093,0.792642,0.14857,10.1093,0.852106,0.121494,10.1093,0.901974,0.0720357,10.1093,0.931462,-0.0077243,10.1093,0.942437,0.0077243,10.1093,0.942437,0.0093834,10.1093,0.942437,-0.0093834,10.1093,0.942437,-0.00428974,10.1093,0.942442,0.00428974,10.1093,0.942442,0.00594884,10.1093,0.942442,-0.00594884,10.1093,0.942442,0.0616581,10.165,0.947879,0.0659687,10.165,0.945681,0.11682,10.165,0.922562,0.119623,10.165,0.91886,0.152678,10.165,0.874832,0.153873,10.165,0.870037,0.169089,10.165,0.818348,0.169074,10.165,0.812431,0.171977,10.165,0.747727,0.171532,10.165,0.743878,0.169791,10.165,0.684361,0.169349,10.165,0.679163,0.164965,10.165,0.617645,0.16432,10.165,0.61239,0.0748679,10.165,0.972133,0.0693325,10.165,0.973153,0.138057,10.165,0.939759,0.1334,10.165,0.943083,0.179292,10.165,0.885226,0.175967,10.165,0.890538,0.214051,10.165,0.678554,0.213972,10.165,0.683849,0.200581,10.165,0.821081,0.200366,10.165,0.825632,0.210249,10.165,0.749294,0.21179,10.165,0.75352,0.214218,10.165,0.617043,0.216301,10.165,0.622342,0.162675,10.165,0.57047,0.169149,10.165,0.556344,0.161119,10.165,0.637442,0.16335,10.165,0.623026,0.163138,10.165,0.703813,0.167655,10.165,0.689654,0.165174,10.165,0.764956,0.169961,10.165,0.751597,0.161659,10.165,0.834162,0.166988,10.165,0.823561,0.140627,10.165,0.887863,0.149878,10.165,0.878554,0.0992112,10.165,0.927642,0.112318,10.165,0.924321,0.0425417,10.165,0.947732,0.056584,10.165,0.948202,0.17722,10.165,0.55216,0.208249,10.165,0.55605,0.214757,10.165,0.570042,0.219434,10.165,0.636521,0.215947,10.165,0.689237,0.219424,10.165,0.703681,0.214376,10.165,0.768093,0.199069,10.165,0.838135,0.173819,10.165,0.895705,0.169055,10.165,0.907118,0.128976,10.165,0.94681,0.117128,10.165,0.956757,0.0641137,10.165,0.975239,0.0503588,10.165,0.981188,0.200175,10.165,0.55199,0.216064,10.165,0.597389,0.214515,10.165,0.611807,0.21501,10.165,0.664011,0.215112,10.165,0.73156,0.21079,10.165,0.745285,0.206947,10.165,0.80107,0.201845,10.165,0.816646,0.189048,10.165,0.869907,0.150575,10.165,0.930211,0.0903151,10.165,0.969733,0.0225354,10.165,0.984835,-0.0225354,10.165,0.984835,-0.0048991,10.165,0.983314,0.0048991,10.165,0.983314,0.0065582,10.165,0.983314,-0.0065582,10.165,0.983314,0.162015,10.165,0.597965,0.166863,10.165,0.664858,0.167839,10.165,0.730852,0.167182,10.165,0.795737,0.155813,10.165,0.856243,0.12573,10.165,0.906829,0.077206,10.165,0.938174,-0.00338802,10.165,0.955607,0.00338802,10.165,0.955607,0.00504712,10.165,0.955607,-0.00504712,10.165,0.955607,0.01645,10.165,0.951123,-0.01645,10.165,0.951123,0.061963,10.2181,0.956408,0.0629219,10.2181,0.9558,0.117495,10.2181,0.931107,0.118176,10.2181,0.930296,0.153677,10.2181,0.882827,0.153818,10.2181,0.881694,0.171012,10.2181,0.825568,0.170805,10.2181,0.824556,0.17258,10.2181,0.754718,0.172215,10.2181,0.75369,0.170162,10.2181,0.692095,0.16969,10.2181,0.690941,0.16673,10.2181,0.625369,0.165984,10.2181,0.624199,0.0704793,10.2181,0.980411,0.0691976,10.2181,0.980429,0.134514,10.2181,0.950189,0.133255,10.2181,0.950624,0.176579,10.2181,0.896579,0.175724,10.2181,0.897358,0.213471,10.2181,0.6904,0.212957,10.2181,0.691588,0.200218,10.2181,0.827494,0.200332,10.2181,0.828731,0.209238,10.2181,0.755844,0.209792,10.2181,0.757118,0.21262,10.2181,0.624795,0.213366,10.2181,0.626234,0.159952,10.2181,0.572168,0.168849,10.2181,0.559915,0.159068,10.2181,0.639263,0.166049,10.2181,0.626843,0.159805,10.2181,0.70569,0.169237,10.2181,0.693547,0.163204,10.2181,0.767255,0.171747,10.2181,0.755853,0.162975,10.2181,0.834886,0.170318,10.2181,0.826731,0.143172,10.2181,0.891253,0.152748,10.2181,0.883844,0.103274,10.2181,0.932116,0.116085,10.2181,0.931424,0.04809,10.2181,0.953755,0.0605169,10.2181,0.956347,0.169821,10.2181,0.558508,0.208542,10.2181,0.559629,0.21724,10.2181,0.57175,0.220604,10.2181,0.638201,0.213683,10.2181,0.693051,0.221142,10.2181,0.705302,0.215748,10.2181,0.769986,0.203074,10.2181,0.840127,0.175459,10.2181,0.898719,0.175213,10.2181,0.910478,0.132169,10.2181,0.951759,0.123975,10.2181,0.963096,0.0678399,10.2181,0.981223,0.0567961,10.2181,0.989993,0.207591,10.2181,0.558237,0.221434,10.2181,0.61111,0.213237,10.2181,0.623623,0.220256,10.2181,0.677731,0.217392,10.2181,0.745152,0.20973,10.2181,0.754886,0.208412,10.2181,0.817048,0.200909,10.2181,0.826647,0.188961,10.2181,0.886892,0.147726,10.2181,0.944421,0.0850813,10.2181,0.982335,0.0170979,10.2181,0.994938,-0.0170979,10.2181,0.994938,0.00201743,10.2181,0.990605,-0.00201743,10.2181,0.990605,0.156589,10.2181,0.61175,0.162264,10.2181,0.678649,0.165696,10.2181,0.743825,0.165014,10.2181,0.811271,0.153272,10.2181,0.868917,0.121694,10.2181,0.917768,0.0722801,10.2181,0.947344,0.00195577,10.2181,0.96487,-0.00195577,10.2181,0.96487,-0.00805831,10.2181,0.958412,0.00805831,10.2181,0.958412,0.00971741,10.2181,0.958412,-0.00971741,10.2181,0.958412,0.0691909,10.2238,0.98079,0.133247,10.2238,0.950998,0.175714,10.2238,0.897666,0.212872,10.2238,0.691972,0.207948,10.2238,0.558547,0.0619781,10.2238,0.956831,0.117528,10.2238,0.931531,0.153714,10.2238,0.883231,0.171065,10.2238,0.825966,0.17281,10.2238,0.755063,0.170386,10.2238,0.692479,0.166764,10.2238,0.625752,0.169464,10.2238,0.558823,0.0570939,10.2242,0.99034,0.124263,10.2242,0.963334,0.175436,10.2242,0.910592,0.203161,10.2242,0.840183,0.215831,10.2242,0.770073,0.22126,10.2242,0.705383,0.220779,10.2242,0.638287,0.21722,10.2242,0.571836,0.0168096,10.2242,0.995348,-0.0168096,10.2242,0.995348,0.08479,10.2242,0.982873,0.14752,10.2242,0.945059,0.188856,10.2242,0.887694,0.208456,10.2242,0.817717,0.217432,10.2242,0.745743,0.220423,10.2242,0.678414,0.221594,10.2242,0.611792,0.0483869,10.2242,0.954144,0.103527,10.2242,0.932415,0.143379,10.2242,0.891468,0.163082,10.2242,0.835026,0.163577,10.2242,0.767376,0.160141,10.2242,0.705782,0.15907,10.2242,0.639351,0.15996,10.2242,0.572251,-0.0077427,10.2242,0.958864,0.0077427,10.2242,0.958864,0.0094018,10.2242,0.958864,-0.0094018,10.2242,0.958864,0.0720674,10.2242,0.947886,0.121558,10.2242,0.918377,0.153232,10.2242,0.869581,0.165012,10.2242,0.812057,0.165677,10.2242,0.744384,0.162149,10.2242,0.679331,0.15643,10.2242,0.612433,0.00179212,10.2238,0.990967,-0.00179212,10.2238,0.990967,0.0702616,10.2238,0.980821,0.134338,10.2238,0.950706,0.176458,10.2238,0.897054,0.200812,10.2238,0.827102,0.209641,10.2238,0.755383,0.213369,10.2238,0.690988,0.213079,10.2238,0.624209,0.00180238,10.2238,0.965329,-0.00180238,10.2238,0.965329,0.0627708,10.2238,0.956302,0.118104,10.2238,0.930863,0.153806,10.2238,0.882275,0.170872,10.2238,0.825142,0.172452,10.2238,0.754196,0.16993,10.2238,0.691525,0.166063,10.2238,0.624785,0.0680248,10.2238,0.98152,0.132327,10.2238,0.952005,0.175538,10.2238,0.898866,0.200316,10.2238,0.82887,0.20971,10.2238,0.757297,0.213557,10.2238,0.69324,0.213201,10.2238,0.626427,0.208556,10.2238,0.559807,0.0607121,10.2238,0.956751,0.116272,10.2238,0.931776,0.152885,10.2238,0.88411,0.170424,10.2238,0.82697,0.172048,10.2238,0.75605,0.169531,10.2238,0.69374,0.16611,10.2238,0.627032,0.168834,10.2238,0.560093,0.212495,10.2238,0.625179,0.209177,10.2238,0.756183,0.200174,10.2238,0.82779,0.0691909,10.2542,0.98079,0.133247,10.2566,0.950998,0.175767,10.2563,0.897257,0.213547,10.2761,0.691972,0.207948,10.2765,0.558547,0.0619781,10.2542,0.956831,0.117528,10.2568,0.931531,0.152571,10.2564,0.884226,0.169353,10.2746,0.825162,0.173121,10.2765,0.752865,0.170347,10.2761,0.692479,0.167473,10.2754,0.625752,0.169464,10.2765,0.558823,0.0568771,10.2589,0.989438,0.123747,10.2589,0.962564,0.163571,10.2951,0.912403,0.202023,10.2821,0.842758,0.213704,10.2827,0.769957,0.218739,10.2856,0.7054,0.218098,10.2819,0.638333,0.214746,10.2844,0.571853,0.0166252,10.2589,0.99444,-0.0166252,10.2589,0.99444,0.0844732,10.2589,0.982002,0.146556,10.2952,0.933416,0.18712,10.2829,0.886982,0.206345,10.2824,0.817805,0.216517,10.2857,0.743447,0.220036,10.282,0.678454,0.218789,10.2842,0.61182,0.0486037,10.2589,0.955045,0.104043,10.2594,0.933185,0.144297,10.2635,0.897342,0.161179,10.282,0.834221,0.167814,10.2828,0.767492,0.164836,10.2856,0.705765,0.161721,10.2819,0.639305,0.162433,10.2844,0.572233,-0.00792712,10.2589,0.959773,0.00792712,10.2589,0.959773,0.00958622,10.2589,0.959773,-0.00958622,10.2589,0.959773,0.0723841,10.2589,0.948757,0.127313,10.2637,0.918372,0.15101,10.2837,0.871705,0.16666,10.2823,0.811592,0.167102,10.2856,0.742218,0.162833,10.2821,0.679291,0.159192,10.2842,0.612405,0.00179212,10.2542,0.990967,-0.00179212,10.2542,0.990967,0.0702616,10.2542,0.980821,0.134338,10.2567,0.950706,0.176504,10.2562,0.896638,0.200973,10.2746,0.829519,0.210594,10.2767,0.753087,0.214186,10.2759,0.690988,0.212039,10.2755,0.624209,0.00180238,10.2542,0.965329,-0.00180238,10.2542,0.965329,0.0627708,10.2542,0.956302,0.118104,10.2569,0.930863,0.152588,10.2563,0.883296,0.169274,10.2746,0.824164,0.172619,10.2767,0.751819,0.169709,10.2759,0.691525,0.166817,10.2755,0.624785,0.0680248,10.2542,0.98152,0.132327,10.2565,0.952004,0.17559,10.2565,0.898466,0.200656,10.2746,0.831832,0.210404,10.2764,0.755571,0.214101,10.2762,0.69324,0.212162,10.2753,0.626427,0.208556,10.2765,0.559807,0.0607121,10.2542,0.956751,0.116272,10.2567,0.931776,0.151787,10.2565,0.885072,0.168459,10.2745,0.826239,0.172571,10.2764,0.754211,0.169774,10.2762,0.69374,0.166857,10.2753,0.627032,0.168834,10.2765,0.560093,0.211455,10.2754,0.625179,0.210001,10.2766,0.754128,0.200406,10.2746,0.830454,0.0653429,10.2979,0.972767,0.12395,10.2923,0.946074,0.159715,10.2932,0.897217,0.17835,10.3003,0.833723,0.182651,10.2979,0.757224,0.179668,10.2984,0.693868,0.176757,10.2992,0.623469,0.178743,10.2979,0.552858,0.0729526,10.2979,0.998044,0.140534,10.2928,0.966612,0.185449,10.2934,0.909482,0.211426,10.3002,0.839865,0.221643,10.2978,0.758579,0.22536,10.2985,0.693333,0.222878,10.2992,0.622865,0.219345,10.2979,0.552566,0.0653429,10.3652,0.972767,0.12395,10.3652,0.946074,0.162122,10.3652,0.895121,0.180434,10.3652,0.834685,0.182119,10.3652,0.759915,0.179562,10.3652,0.693868,0.175909,10.3652,0.623469,0.178743,10.3652,0.552858,0.0717709,10.3652,0.993553,0.137383,10.3652,0.965431,0.181937,10.3652,0.908808,0.216745,10.3652,0.693333,0.212366,10.3652,0.552566,0.20703,10.3652,0.835823,0.214006,10.3652,0.761261,0.215514,10.3652,0.622865,0.0597325,10.2884,1.00622,0.129966,10.2884,0.978003,0.171133,10.2785,0.926107,0.212911,10.2912,0.852831,0.225075,10.2904,0.775591,0.230324,10.2869,0.707503,0.229622,10.2914,0.63675,0.226119,10.2884,0.566608,0.0172999,10.2884,1.01149,-0.0172999,10.2884,1.01149,0.0887417,10.2884,0.998404,0.154462,10.2784,0.946695,0.197092,10.2902,0.898959,0.217314,10.2908,0.826105,0.228238,10.2869,0.747271,0.232036,10.2913,0.679078,0.230331,10.2887,0.608775,0.0514612,10.2884,0.971833,0.110267,10.2873,0.948631,0.153161,10.2787,0.916202,0.169696,10.2914,0.84328,0.177684,10.2904,0.773028,0.174617,10.287,0.707883,0.171001,10.2914,0.637761,0.171724,10.2884,0.567003,-0.00860354,10.2884,0.976828,0.00860354,10.2884,0.976828,0.0102626,10.2884,0.976828,-0.0102626,10.2884,0.976828,0.0766556,10.2884,0.965167,0.140345,10.2784,0.932187,0.158916,10.2892,0.883298,0.17605,10.291,0.819461,0.176481,10.287,0.745996,0.171858,10.2913,0.679948,0.168351,10.2886,0.609384,0.0583503,10.3652,1.00444,0.128387,10.3652,0.975284,0.18196,10.3652,0.922865,0.210573,10.3652,0.849051,0.221741,10.3652,0.775739,0.226411,10.3652,0.707481,0.2255,10.3652,0.636691,0.222299,10.3652,0.566585,0.015846,10.3652,1.00972,-0.015846,10.3652,1.00972,0.0867206,10.3652,0.995909,0.152509,10.3652,0.959236,0.195479,10.3652,0.89907,0.214741,10.3652,0.825775,0.223246,10.3652,0.74997,0.225616,10.3652,0.679027,0.22605,10.3652,0.60874,0.050981,10.3652,0.969836,0.109124,10.3652,0.946926,0.151138,10.3652,0.903758,0.171911,10.3652,0.844238,0.172164,10.3652,0.772879,0.16851,10.3652,0.707905,0.167616,10.3652,0.637819,0.168566,10.3652,0.567026,-0.00819493,10.3652,0.974816,0.00819493,10.3652,0.974816,0.00985403,10.3652,0.974816,-0.00985403,10.3652,0.974816,0.0759539,10.3652,0.963237,0.128133,10.3652,0.932126,0.161527,10.3652,0.880678,0.173933,10.3652,0.820009,0.17461,10.3652,0.748625,0.170868,10.3652,0.679999,0.164825,10.3652,0.609419,0.00185591,10.2979,0.981732,-0.00185591,10.2979,0.981732,0.0661791,10.2979,0.972209,0.124558,10.2922,0.94537,0.159653,10.2934,0.896263,0.178285,10.3003,0.832642,0.182099,10.2977,0.756091,0.178966,10.2986,0.692862,0.176072,10.2992,0.62245,0.00185591,10.3652,0.981732,-0.00185591,10.3652,0.981732,0.0661791,10.3652,0.972209,0.124558,10.3652,0.94537,0.162219,10.3652,0.894112,0.180231,10.3652,0.833819,0.181736,10.3652,0.758999,0.179075,10.3652,0.692862,0.175168,10.3652,0.62245,0.00184508,10.3652,1.00878,-0.00184508,10.3652,1.00878,0.0729004,10.3652,0.993586,0.138534,10.3652,0.965123,0.18269,10.3652,0.908166,0.207718,10.3652,0.835082,0.214523,10.3652,0.760357,0.2173,10.3652,0.692295,0.216147,10.3652,0.621841,0.00184509,10.2979,1.00878,-0.00184509,10.2979,1.00878,0.0740821,10.2979,0.998077,0.141685,10.2925,0.966305,0.18622,10.2936,0.908824,0.212012,10.3002,0.838838,0.22229,10.2977,0.757442,0.226058,10.2987,0.692295,0.223493,10.2992,0.621841,0.0717223,10.2979,0.998814,0.139563,10.2931,0.967674,0.185261,10.2931,0.910768,0.211707,10.3003,0.841366,0.222048,10.298,0.760154,0.225925,10.2983,0.694671,0.223623,10.2994,0.624182,0.219987,10.2979,0.553896,0.0640071,10.2979,0.972682,0.122624,10.2925,0.946333,0.158935,10.293,0.898075,0.177367,10.3003,0.83487,0.182105,10.2981,0.758701,0.17911,10.2982,0.695199,0.176113,10.2994,0.62482,0.178079,10.2979,0.554197,0.0705406,10.3652,0.994324,0.136412,10.3652,0.966493,0.181775,10.3652,0.910108,0.207202,10.3652,0.836967,0.214594,10.3652,0.762402,0.217497,10.3652,0.694671,0.216326,10.3652,0.624182,0.213008,10.3652,0.553896,0.0640072,10.3652,0.972682,0.122624,10.3652,0.946333,0.161251,10.3652,0.896045,0.179758,10.3652,0.835746,0.18131,10.3652,0.760955,0.178654,10.3652,0.695199,0.175218,10.3652,0.62482,0.178079,10.3652,0.554197,0.0636458,10.4828,0.94973,0.0688119,10.4828,0.948056,0.119831,10.4828,0.923656,0.124827,10.4828,0.920566,0.151351,10.4828,0.876037,0.153764,10.4828,0.869913,0.17032,10.4828,0.809971,0.172664,10.4828,0.805471,0.171946,10.4828,0.739999,0.172749,10.4828,0.736113,0.168546,10.4828,0.676707,0.169143,10.4828,0.671652,0.169819,10.4828,0.60633,0.169112,10.4828,0.599988,0.0747414,10.4828,0.986586,0.0828983,10.4828,0.9846,0.144743,10.4828,0.954508,0.152494,10.4828,0.950159,0.19112,10.4828,0.895774,0.195705,10.4828,0.886231,0.236724,10.4828,0.675929,0.23567,10.4828,0.670646,0.219153,10.4828,0.819728,0.21933,10.4828,0.829056,0.231807,10.4828,0.74221,0.234117,10.4828,0.747729,0.230097,10.4828,0.605434,0.231868,10.4828,0.61394,0.168566,10.4828,0.54979,0.179508,10.4828,0.536962,0.171697,10.4828,0.620584,0.169376,10.4828,0.613162,0.16679,10.4828,0.690669,0.166194,10.4828,0.682235,0.170427,10.4828,0.752763,0.169459,10.4828,0.745057,0.165102,10.4828,0.823156,0.166296,10.4828,0.815627,0.146641,10.4828,0.888363,0.148125,10.4828,0.881904,0.109124,10.4828,0.92969,0.113757,10.4828,0.926078,0.050981,10.4828,0.952601,0.0577514,10.4828,0.950466,0.180371,10.4828,0.535623,0.22941,10.4828,0.561467,0.21609,10.4828,0.53666,0.231531,10.4828,0.626574,0.239282,10.4828,0.690246,0.239536,10.4828,0.681648,0.232563,10.4828,0.755623,0.21679,10.4828,0.83527,0.184654,10.4828,0.909941,0.187515,10.4828,0.905382,0.13111,10.4828,0.962473,0.137263,10.4828,0.95999,0.0602128,10.4828,0.990979,0.0664376,10.4828,0.989742,0.215262,10.4828,0.535331,0.22979,10.4828,0.585996,0.230031,10.4828,0.593599,0.229781,10.4828,0.651828,0.229547,10.4828,0.732565,0.231065,10.4828,0.738033,0.219508,10.4828,0.806632,0.220018,10.4828,0.812548,0.199308,10.4828,0.879758,0.15566,10.4828,0.943182,0.0894434,10.4828,0.983098,0.0177085,10.4828,0.996264,-0.0177085,10.4828,0.996264,-0.00619631,10.4828,0.997862,0.00619631,10.4828,0.997862,0.00785541,10.4828,0.997862,-0.00785541,10.4828,0.997862,0.168954,10.4828,0.592183,0.170843,10.4828,0.662764,0.17461,10.4828,0.731113,0.173814,10.4828,0.799543,0.156699,10.4828,0.862279,0.128133,10.4828,0.914891,0.0759539,10.4828,0.946002,-0.00819498,10.4828,0.95758,0.00819498,10.4828,0.95758,0.00985408,10.4828,0.95758,-0.00985408,10.4828,0.95758,-0.00457143,10.4828,0.957586,0.00457143,10.4828,0.957586,0.00623053,10.4828,0.957586,-0.00623053,10.4828,0.957586,0.0650053,10.424,0.963322,0.069553,10.424,0.961003,0.123203,10.424,0.936612,0.12616,10.424,0.932706,0.161034,10.424,0.886255,0.162295,10.424,0.881196,0.178347,10.424,0.826663,0.178332,10.424,0.820421,0.181394,10.424,0.752156,0.180925,10.424,0.748096,0.179088,10.424,0.685303,0.178622,10.424,0.679819,0.173997,10.424,0.614917,0.173316,10.424,0.609372,0.078942,10.424,0.988911,0.073102,10.424,0.989986,0.145608,10.424,0.954755,0.140695,10.424,0.958262,0.189112,10.424,0.897222,0.185604,10.424,0.902825,0.225784,10.424,0.679177,0.2257,10.424,0.684763,0.211573,10.424,0.829547,0.211345,10.424,0.834348,0.221773,10.424,0.75381,0.223398,10.424,0.758268,0.22596,10.424,0.614282,0.228157,10.424,0.619872,0.17158,10.424,0.565145,0.178411,10.424,0.550243,0.169939,10.424,0.635803,0.172293,10.424,0.620593,0.172069,10.424,0.705826,0.176835,10.424,0.690887,0.174217,10.424,0.770334,0.179268,10.424,0.756239,0.170509,10.424,0.843348,0.176131,10.424,0.832163,0.14832,10.424,0.900004,0.15808,10.424,0.890182,0.104625,10.424,0.941971,0.118453,10.424,0.938467,0.044837,10.424,0.963167,0.059652,10.424,0.963662,0.186926,10.424,0.545828,0.219663,10.424,0.549933,0.226529,10.424,0.564694,0.231463,10.424,0.634831,0.227784,10.424,0.690448,0.231452,10.424,0.705686,0.226126,10.424,0.773643,0.209977,10.424,0.847539,0.183338,10.424,0.908277,0.178312,10.424,0.920318,0.136028,10.424,0.962194,0.123527,10.424,0.972689,0.0675959,10.424,0.992187,0.0530842,10.424,0.998464,0.211144,10.424,0.545648,0.227908,10.424,0.593546,0.226273,10.424,0.608757,0.226796,10.424,0.663834,0.226903,10.424,0.735099,0.222344,10.424,0.74958,0.218289,10.424,0.808435,0.212907,10.424,0.824867,0.199405,10.424,0.88106,0.158815,10.424,0.944681,0.0952392,10.424,0.986378,0.0237298,10.424,1.00231,-0.0237298,10.424,1.00231,-0.00521432,10.424,1.00071,0.00521432,10.424,1.00071,0.00687343,10.424,1.00071,-0.00687343,10.424,1.00071,0.170885,10.424,0.594154,0.176,10.424,0.664727,0.177029,10.424,0.734353,0.176336,10.424,0.802808,0.164341,10.424,0.866644,0.132602,10.424,0.920013,0.0814086,10.424,0.953083,-0.0036201,10.424,0.971476,0.0036201,10.424,0.971476,0.0052792,10.424,0.971476,-0.0052792,10.424,0.971476,0.0173095,10.424,0.966744,-0.0173095,10.424,0.966744,0.0653269,10.368,0.97232,0.0663386,10.368,0.971679,0.123915,10.368,0.945627,0.124633,10.368,0.944771,0.162088,10.368,0.894691,0.162236,10.368,0.893495,0.180377,10.368,0.83428,0.180158,10.368,0.833213,0.182031,10.368,0.759532,0.181646,10.368,0.758447,0.179479,10.368,0.693463,0.178981,10.368,0.692245,0.175859,10.368,0.623065,0.175072,10.368,0.621831,0.0743119,10.368,0.997643,0.0729596,10.368,0.997663,0.14187,10.368,0.965759,0.140541,10.368,0.966218,0.18625,10.368,0.909199,0.185348,10.368,0.910021,0.225172,10.368,0.691675,0.22463,10.368,0.692928,0.211189,10.368,0.836312,0.21131,10.368,0.837617,0.220706,10.368,0.76072,0.22129,10.368,0.762064,0.224274,10.368,0.622459,0.225061,10.368,0.623978,0.168708,10.368,0.566937,0.178094,10.368,0.55401,0.167775,10.368,0.637724,0.175141,10.368,0.624621,0.168553,10.368,0.707806,0.178504,10.368,0.694995,0.172139,10.368,0.772759,0.181152,10.368,0.76073,0.171897,10.368,0.844112,0.179645,10.368,0.835507,0.151005,10.368,0.90358,0.161107,10.368,0.895763,0.108911,10.368,0.946692,0.122427,10.368,0.945961,0.0506905,10.368,0.969521,0.0638013,10.368,0.972256,0.17912,10.368,0.552526,0.219971,10.368,0.553708,0.229148,10.368,0.566496,0.232697,10.368,0.636603,0.225396,10.368,0.694472,0.233264,10.368,0.707396,0.227574,10.368,0.77564,0.214203,10.368,0.849641,0.185069,10.368,0.911456,0.184808,10.368,0.923863,0.139396,10.368,0.967415,0.130751,10.368,0.979376,0.0715272,10.368,0.998501,0.0598757,10.368,1.00775,0.218969,10.368,0.552239,0.233573,10.368,0.608022,0.224925,10.368,0.621223,0.23233,10.368,0.678309,0.229309,10.368,0.749439,0.221225,10.368,0.759709,0.219834,10.368,0.825292,0.211918,10.368,0.835419,0.199313,10.368,0.898979,0.155809,10.368,0.959673,0.0897174,10.368,0.999674,0.0179931,10.368,1.01297,-0.0179931,10.368,1.01297,0.00208279,10.368,1.0084,-0.00208279,10.368,1.0084,0.16516,10.368,0.608697,0.171147,10.368,0.679277,0.174768,10.368,0.74804,0.174048,10.368,0.819196,0.16166,10.368,0.880015,0.128345,10.368,0.931554,0.0762117,10.368,0.962757,0.00201774,10.368,0.981247,-0.00201774,10.368,0.981247,-0.00854738,10.368,0.974434,0.00854738,10.368,0.974434,0.0102065,10.368,0.974434,-0.0102065,10.368,0.974434,0.0729526,10.362,0.998044,0.140534,10.362,0.966612,0.185338,10.362,0.910346,0.22454,10.362,0.693333,0.219345,10.362,0.552566,0.0653429,10.362,0.972767,0.12395,10.362,0.946074,0.162126,10.362,0.895117,0.180432,10.362,0.834701,0.182274,10.362,0.759896,0.179716,10.362,0.693868,0.175895,10.362,0.623469,0.178743,10.362,0.552858,0.0601899,10.3616,1.00812,0.131055,10.3616,0.979627,0.185044,10.3616,0.923983,0.214294,10.3616,0.8497,0.227662,10.3616,0.775732,0.233389,10.3616,0.707482,0.232882,10.3616,0.636694,0.229127,10.3616,0.566586,0.017689,10.3616,1.0134,-0.017689,10.3616,1.0134,0.08941,10.3616,1.00024,0.155591,10.3616,0.960347,0.199203,10.3616,0.899825,0.219881,10.3616,0.825997,0.229351,10.3616,0.750063,0.232507,10.3616,0.67903,0.233742,10.3616,0.608742,0.0510038,10.3616,0.969931,0.109178,10.3616,0.947007,0.151223,10.3616,0.903807,0.17201,10.3616,0.844259,0.172533,10.3616,0.772886,0.168907,10.3616,0.707904,0.167777,10.3616,0.637817,0.168716,10.3616,0.567025,-0.0082144,10.3616,0.974912,0.0082144,10.3616,0.974912,0.0098735,10.3616,0.974912,-0.0098735,10.3616,0.974912,0.0759873,10.3616,0.963329,0.128201,10.3616,0.932196,0.161618,10.3616,0.880715,0.174046,10.3616,0.820026,0.174747,10.3616,0.74863,0.171026,10.3616,0.679996,0.164992,10.3616,0.609417,0.00184508,10.362,1.00878,-0.00184508,10.362,1.00878,0.0740821,10.362,0.998077,0.141685,10.362,0.966305,0.186123,10.362,0.9097,0.211817,10.362,0.835899,0.221131,10.362,0.760234,0.225064,10.362,0.692295,0.224758,10.362,0.621841,0.00185591,10.362,0.981732,-0.00185591,10.362,0.981732,0.0661791,10.362,0.972209,0.124558,10.362,0.94537,0.162224,10.362,0.894108,0.180229,10.362,0.833832,0.181896,10.362,0.758982,0.179235,10.362,0.692862,0.175155,10.362,0.62245,0.0717223,10.362,0.998814,0.139563,10.362,0.967674,0.185152,10.362,0.911611,0.211292,10.362,0.837764,0.221204,10.362,0.762253,0.225262,10.362,0.694671,0.224887,10.362,0.624182,0.219987,10.362,0.553896,0.0640072,10.362,0.972682,0.122624,10.362,0.946333,0.161252,10.362,0.896044,0.179756,10.362,0.83576,0.18147,10.362,0.760937,0.178814,10.362,0.695199,0.175204,10.362,0.62482,0.178079,10.362,0.554197,0.224142,10.362,0.622865,0.220642,10.362,0.761078,0.211143,10.362,0.836625,0.0729526,10.33,0.998044,0.140534,10.3274,0.966612,0.185393,10.3277,0.909914,0.225252,10.3069,0.693333,0.219345,10.3064,0.552566,0.0653429,10.33,0.972767,0.12395,10.3272,0.946074,0.160921,10.3276,0.896167,0.178626,10.3084,0.833852,0.182601,10.3064,0.757577,0.179675,10.3069,0.693868,0.176643,10.3076,0.623469,0.178743,10.3064,0.552858,0.0599612,10.325,1.00717,0.130511,10.325,0.978815,0.172526,10.2868,0.925894,0.213094,10.3005,0.852416,0.225418,10.2998,0.775609,0.230729,10.2968,0.7075,0.230053,10.3007,0.636742,0.226517,10.2981,0.566605,0.0174944,10.325,1.01244,-0.0174944,10.325,1.01244,0.0890758,10.325,0.999323,0.154575,10.2867,0.948063,0.197371,10.2997,0.899073,0.217654,10.3002,0.826091,0.228385,10.2968,0.747641,0.232098,10.3006,0.679071,0.230783,10.2983,0.608771,0.0512325,10.325,0.970882,0.109723,10.3245,0.947819,0.152192,10.3201,0.910004,0.170002,10.3006,0.84341,0.177003,10.2998,0.773009,0.173861,10.2968,0.707885,0.170574,10.3007,0.637768,0.171326,10.2981,0.567006,-0.00840897,10.325,0.97587,0.00840897,10.325,0.97587,0.0100681,10.325,0.97587,-0.0100681,10.325,0.97587,0.0763215,10.325,0.964248,0.134273,10.32,0.932191,0.159273,10.2988,0.882956,0.175784,10.3003,0.819536,0.176251,10.2968,0.746345,0.171747,10.3006,0.679955,0.167906,10.2983,0.609388,0.00184509,10.33,1.00878,-0.00184509,10.33,1.00878,0.0740821,10.33,0.998077,0.141685,10.3273,0.966305,0.186171,10.3278,0.909262,0.211986,10.3084,0.838449,0.222137,10.3062,0.757812,0.225927,10.307,0.692295,0.223661,10.3075,0.621841,0.00185591,10.33,0.981732,-0.00185591,10.33,0.981732,0.0661791,10.33,0.972209,0.124558,10.3271,0.94537,0.160938,10.3277,0.895186,0.178542,10.3085,0.8328,0.182072,10.3062,0.756473,0.179001,10.307,0.692862,0.17595,10.3075,0.62245,0.0717223,10.33,0.998814,0.139563,10.3276,0.967674,0.185206,10.3275,0.91119,0.211652,10.3084,0.840889,0.221936,10.3065,0.760432,0.225837,10.3067,0.694671,0.223791,10.3077,0.624182,0.219987,10.3064,0.553896,0.0640071,10.33,0.972682,0.122624,10.3273,0.946333,0.160094,10.3275,0.897059,0.177683,10.3085,0.834988,0.182021,10.3065,0.758997,0.17907,10.3067,0.695199,0.175993,10.3077,0.62482,0.178079,10.3064,0.554197,0.223045,10.3076,0.622865,0.221511,10.3063,0.75891,0.211388,10.3084,0.839436,0.399454,10.1912,0.82599,0.452448,11.5694,0.616933,0.426792,11.5367,-0.348324,0.132732,10.1853,-0.400425,0.255323,9.89616,1.10514,0.38941,10.0171,0.925418,0.443333,10.1314,0.659111,0.392419,10.1217,0.395387,0.380406,10.0928,0.138624,0.378999,10.1807,-0.089564,0.366665,10.1909,-0.159978,0.425401,10.2982,0.753833,0.416764,10.4044,0.755624,0.371068,10.6271,0.80898,0.461082,11.2445,0.645257,0.462439,11.4362,0.637338,0.414528,10.371,-0.348619,0.52239,10.6349,-0.451086,0.551502,10.8753,-0.486473,0.522967,11.3342,-0.428964,0.459395,11.472,-0.373482,0.217016,11.6155,-0.432179,0.342097,11.5759,-0.390496,0.17906,11.6697,0.728054,0.335935,11.6223,0.684665,0.47637,11.6109,0.494521,0.514765,11.6364,0.279343,0.515404,11.639,0.149359,0.495261,11.6079,-0.117871,0.456745,11.569,-0.25749,0.168114,9.92578,0.365245,0.209143,9.8656,0.638926,0.285437,9.83993,1.09844,0.294308,9.96785,0.280378,0.329722,9.97209,0.513292,0.41753,9.98085,0.885168,0.215544,11.7115,-0.307005,0.35726,11.6542,-0.276448,0.203216,11.8247,-0.135543,0.399297,11.7413,-0.108161,0.211692,11.8918,0.16615,0.419436,11.7798,0.163066,0.226603,11.8865,0.365015,0.410207,11.782,0.317379,0.192763,11.8107,0.574473,0.355605,11.7368,0.534284,0.134471,10.7204,1.00746,0.242234,11.3217,0.924598,0.188895,11.4656,0.849156,0.219585,10.6295,0.90955,0.37953,11.2583,0.838598,0.356523,11.4284,0.787248,0.463262,10.2992,0.600177,0.481286,10.4454,0.631333,0.477137,10.6648,0.695305,0.502096,11.2526,0.513941,0.516038,11.4654,0.487412,0.470139,10.3437,0.351654,0.583408,10.6233,0.269269,0.595596,10.7462,0.313027,0.584441,11.2912,0.282267,0.561977,11.4981,0.266841,0.47537,10.2758,0.150212,0.558481,10.4999,0.135879,0.616291,11.3373,0.119779,0.576561,11.5103,0.139566,0.45109,10.3343,-0.114076,0.609468,10.6043,-0.0796962,0.665762,10.8138,-0.185119,0.618417,11.3431,-0.170431,0.567669,11.4973,-0.132473,0.450826,10.3559,-0.225601,0.564394,10.6269,-0.310792,0.613202,10.855,-0.36269,0.585796,11.3334,-0.312326,0.533168,11.4747,-0.271723,0.225215,11.5182,-0.499819,0.234709,11.3588,-0.576113,0.241441,10.8801,-0.674925,0.219562,10.5853,-0.633742,0.172581,10.35,-0.524528,0.353519,11.4917,-0.44716,0.390978,11.3424,-0.514406,0.436582,10.8831,-0.588709,0.39383,10.6186,-0.551646,0.312326,10.3689,-0.452937,0.375512,10.4836,0.802358,0.527557,10.7042,-0.46155,0.0746281,10.5004,1.03672,0.239311,10.5124,0.915533,0.473743,10.5466,0.665379,0.586791,10.6745,0.302855,0.631247,10.6764,-0.102343,0.582711,10.6981,-0.321279,0.226577,10.661,-0.647556,0.408647,10.6856,-0.565365,0.429672,10.9069,0.790537,0.434034,10.9295,0.775519,0.557404,10.977,-0.48969,0.556589,11.0769,-0.484563,0.164002,10.9147,0.956207,0.340487,10.9081,0.880304,0.346012,10.9256,0.87657,0.511805,10.9219,0.664659,0.510421,10.9436,0.651184,0.614866,10.8841,0.291385,0.618445,10.9572,0.2917,0.683845,10.958,-0.244369,0.681679,11.0684,-0.226367,0.624711,10.9688,-0.379683,0.629442,11.0717,-0.37189,0.245583,11.0951,-0.65788,0.244428,10.9908,-0.669796,0.440576,11.0939,-0.578723,0.440186,10.9818,-0.584458,0.201537,10.4382,0.975121,0.108843,10.439,1.07459,0.308051,10.4264,0.884971,0.355054,10.3744,0.852871,0.364427,10.3059,0.863021,0.271216,10.1545,1.05667,0.142921,10.1031,1.11827,0.342999,10.2345,0.924549,0.163353,10.3127,1.07007,0.0558012,10.2926,1.11897,0.110627,10.3011,1.09951,0.209292,10.3204,1.01188,0.221127,10.3236,1.00561,0.200393,10.3099,1.05337,0.0737163,10.3056,1.15238,0.143327,10.3143,1.11248,0.080455,11.0282,0.968881,0.0797285,10.9429,1.03352,0.0666271,10.6966,1.20725,0.0884947,10.6024,1.2242,0.193448,10.584,1.12495,0.191561,10.6355,1.08713,0.17557,10.9276,0.929765,0.104687,11.2253,0.899282,0.444006,10.9854,0.729617,0.551947,11.1574,-0.472197,0.389445,10.9889,0.783373,0.500521,11.0151,0.618519,0.645483,11.1319,0.154283,0.665504,11.1914,0.017294,0.67612,11.1399,-0.163789,0.624597,11.1555,-0.349557,0.245075,11.1624,-0.644418,0.438935,11.1617,-0.570013,0.0875737,10.2184,1.15434,0.172363,10.2711,1.10676,0.258891,10.2877,1.0266,0.310081,10.3164,0.953602,0.3173,10.3358,0.940072,0.28089,10.3491,0.997137,0.0951129,10.3845,1.17147,0.189253,10.3586,1.08553,0.365985,11.009,0.787728,0.120678,11.2114,0.857063,0.17886,10.9494,0.887645,0.0847581,11.0566,0.901111,0.28845,10.9537,0.87209,0.345076,11.2088,0.787867,0.246251,11.2582,0.81763,0.220332,11.2338,0.765134,0.322139,11.1739,0.73378,0.27647,10.9598,0.818784,0.0628091,11.0781,0.849971,0.17706,10.9623,0.8427,0.106058,11.203,0.806999,0.349806,11.0095,0.772671,0.350653,11.0241,0.734151,0.0954312,11.2208,0.761477,0.148003,10.968,0.806174,0.0297216,11.1079,0.799739,0.277907,10.9516,0.781051,0.329779,11.1829,0.698248,0.222629,11.2486,0.721882,0.226299,11.2523,0.667157,0.324742,11.182,0.664605,0.273201,10.9615,0.723778,0.0276449,11.1172,0.731768,0.145532,10.9552,0.74653,0.0959922,11.224,0.696627,0.34852,11.0256,0.690244,0.553638,10.706,0.498157,0.524777,10.5042,0.433283,0.539238,10.599,0.472243,0.571565,10.9092,0.513722,0.57351,10.9546,0.507771,0.554867,11.0504,0.470302,0.563604,10.5585,0.211453,0.624448,11.0348,0.275171,0.665355,11.0257,0.210262,0.619018,10.571,0.176682,0.792715,11.143,-0.173748,0.726978,11.2028,0.010407,0.688244,11.1384,0.141538,0.804249,11.0396,-0.255922,0.808829,10.9159,-0.27337,0.684608,10.9614,0.184497,0.767663,10.6706,-0.1131,0.62165,10.7204,0.196969,0.805125,10.8097,-0.223616,0.736733,10.5743,-0.0728808,0.624058,10.5162,0.130889,0.611291,10.659,0.206254,0.698892,10.9688,0.160044,0.791194,10.9101,-0.199463,0.782406,11.004,-0.197145,0.643064,10.5959,0.123046,0.114988,10.1662,1.12446,0.218483,10.2091,1.06793,0.296664,10.2629,0.973748,0.328988,10.3106,0.92367,0.327741,10.3543,0.911523,0.298275,10.3926,0.932793,0.103236,10.4141,1.11741,0.193333,10.396,1.03188,0.152956,10.3295,1.01524,0.0733876,10.324,1.04324,0.205792,10.3296,0.987933,0.226919,10.3235,0.977459,0.214168,10.3026,0.980081,0.110411,10.2744,1.02057,0.052524,10.2632,1.03307,0.17657,10.2881,0.998247,0.202636,10.3148,1.01855,0.145937,10.3025,1.06869,0.0757857,10.293,1.10036,0.221201,10.3216,0.99253,0.209041,10.3179,0.995313,0.164482,10.3175,1.03504,0.11032,10.3114,1.062,0.0559177,10.3061,1.07749,0.0894155,10.2108,1.15418,0.175529,10.2667,1.10377,0.263028,10.2859,1.02136,0.313183,10.3161,0.950864,0.319437,10.3369,0.937709,0.281958,10.3526,0.992235,0.0956182,10.3867,1.16771,0.189492,10.361,1.0819,0.252671,9.77079,0.288281,0.162125,9.75374,0.328641,0.356487,9.87513,-0.17497,0.387756,9.86153,-0.0925043,0.348683,9.80152,0.206011,0.233851,9.89524,-0.361654,0.116009,9.90109,-0.421934,0.304767,9.88925,-0.274581,0.422755,9.50869,-0.353824,0.204347,9.53733,-0.566356,0.321508,9.51335,-0.452169,0.419412,9.48431,0.269811,0.544903,9.51407,-0.150143,0.482752,9.51155,-0.265337,0.137342,9.34716,0.407325,0.302715,9.46059,0.417372,0.157355,9.71999,-0.479324,0.269655,9.71141,-0.401103,0.339643,9.69807,-0.312836,0.439502,9.66681,-0.113468,0.367949,9.61994,0.238593,0.409912,9.67975,-0.200566,0.115462,9.52801,0.363312,0.247966,9.60504,0.347553,0.352463,10.0147,-0.158968,0.221249,10.0117,-0.339442,0.0829814,11.1317,0.929662,0.0926938,11.138,0.880209,0.070862,11.1503,0.82516,0.0484494,11.1726,0.781049,0.0591887,11.177,0.711778,0.452531,11.0749,0.678757,0.401231,11.1015,0.754424,0.488835,11.1222,0.555562,0.379924,11.0927,0.755029,0.359399,11.0926,0.73821,0.371697,11.0941,0.717259,0.355616,11.0938,0.674933,0.570062,11.1721,0.382147,0.631332,11.0907,0.234523,0.672029,11.0681,0.19401,0.477474,10.5353,-0.409513,0.520347,10.438,0.11689,0.522838,10.5056,-0.148459,0.518917,10.5182,-0.277649,0.2022,10.4973,-0.600333,0.363514,10.532,-0.518593,0.535467,11.241,-0.451351,0.615496,11.2182,0.211317,0.641511,11.2592,0.0775873,0.647995,11.2504,-0.188306,0.605029,11.2447,-0.333,0.231329,11.2532,-0.618527,0.422362,11.2394,-0.548997,0.575224,10.7238,0.397726,0.549992,10.5628,0.32868,0.56433,10.635,0.373522,0.594298,10.8928,0.394905,0.598062,10.9497,0.378241,0.519475,10.4921,0.237282,0.596076,11.0451,0.333038,0.606307,11.1496,0.276202,0.104556,11.637,-0.452158,0.0810043,11.6856,0.740934,0.102978,11.7363,-0.321285,0.102023,11.8457,-0.141785,0.106261,11.9175,0.155022,0.114512,11.9191,0.365999,0.0897977,11.8349,0.58744,0.0947687,11.4734,0.862457,0.120671,11.37,0.925794,0.086705,10.347,-0.541123,0.110196,10.5786,-0.657394,0.121135,10.8784,-0.694739,0.110796,11.3685,-0.605683,0.108349,11.536,-0.526789,0.113703,10.6554,-0.668756,0.123206,11.0921,-0.678385,0.122629,10.9922,-0.689896,0.122952,11.1629,-0.665335,0.0456086,9.90349,-0.444072,0.0818424,9.5345,-0.611983,0.0404314,9.72569,-0.517485,0.101515,10.4892,-0.619215,0.116079,11.2617,-0.638557,0.155487,11.2881,0.889681,0.176341,11.2487,0.839736,0.164725,11.2199,0.786467,0.158635,11.2454,0.743145,0.160591,11.248,0.6832,0.0931579,11.3196,0.911592,0.0602381,11.241,0.935437,0.064217,10.5023,1.03627,0.0966303,10.4394,1.07284,0.0671636,10.3046,1.15284,0.0411314,11.0379,1.02767,0.037377,10.5968,1.25974,0.0392611,10.949,1.08328,0.030281,10.6938,1.23041,0.0863593,10.3825,1.17288,0.0933653,10.4134,1.11593,0.0387729,10.3283,1.045,0.044513,10.2904,1.10084,0.086801,10.3849,1.16914,0.0440056,11.1401,0.979394,0.510536,11.627,0.0092895,0.415348,11.7633,-0.0014057,0.207564,11.8602,-0.00689002,0.58388,11.5109,0.00176961,0.629859,11.3501,-0.0274971,0.668748,11.1714,-0.0848714,0.767713,11.1942,-0.0755102,0.750287,11.1399,-0.0654209,0.651396,11.263,-0.0557948,0.104197,11.8794,-0.00728078,0.71024,11.0828,0.126623,0.68804,11.0174,0.164007,0.645955,10.686,0.139051,0.652307,10.5689,0.106154,0.767096,11.091,-0.143253,0.729809,11.1359,0.0157568,0.787169,10.8341,-0.153945,0.766174,10.715,-0.0743866,0.75185,10.6582,-0.0369792,0.638572,10.7274,0.158951,0.695855,11.0491,0.147974,0.701235,10.917,0.127829,0.686508,10.8899,0.146719,0.652296,10.7752,0.13451,0.632861,10.7665,0.177561,0.384596,10.1327,0.0524655,0.567372,10.4946,0.0631254,0.451005,10.2975,0.032203,0.673685,10.4607,0.0561098,0.408104,9.83161,0.0616258,0.552404,9.5045,0.0358536,0.46998,9.64565,0.048965,0.519454,10.4519,0.0266493,0.675461,10.5793,0.0614854,0.422514,10.3521,0.754728,0.471173,10.3767,0.597881,0.359741,10.3401,0.857946,0.215355,10.3229,1.00849,0.31369,10.3261,0.946837,0.503327,10.4187,0.382881,0.573506,10.5923,0.240061,0.619214,10.637,0.208596,0.328365,10.3325,0.917597,0.224926,10.3144,0.977509,0.215294,10.3187,0.993958,0.31631,10.3265,0.944287,0.534734,10.5284,0.283341,0.678201,10.6832,0.154186,0.389915,10.738,0.808349,0.135413,10.7858,0.988593,0.263819,10.7245,0.907632,0.494763,10.7716,0.696993,0.605187,10.8135,0.306467,0.078288,10.7773,1.12311,0.56524,10.7921,0.508561,0.58534,10.8055,0.402182,0.0283156,10.7894,1.171,0.651476,10.8273,0.158056,0.579509,10.5136,0.016258,0.451246,10.3191,-0.0498534,0.702187,10.4986,-0.0203015,0.407297,9.84936,-0.0260794,0.58061,9.51567,-0.0488353,0.460001,9.65729,-0.0427455,0.52134,10.4868,-0.0592735,0.724198,10.6118,0.00814378,0.661323,11.1347,0.147841,0.642032,11.0324,0.2388,0.641289,10.9656,0.201458,0.602735,10.6387,0.237416,0.583054,10.5868,0.204947,0.587988,10.551,0.134747,0.711682,11.1156,-0.143362,0.696241,11.1719,0.013335,0.719063,11.0595,-0.212123,0.721965,10.9451,-0.230062,0.708268,10.8148,-0.170336,0.673587,10.6658,-0.072383,0.649904,10.5942,-0.037935,0.604266,10.701,0.247903,0.647658,11.0773,0.215766,0.718231,11.1575,-0.0815112,0.612797,10.7648,0.242064,0.641331,10.894,0.187727,0.624977,10.506,0.0630326,0.592894,10.6004,0.220809,0.625475,10.8259,0.223558,0.623004,10.5217,0.0147998,0.460656,11.2741,0.644036,0.500072,11.4036,-0.404726,0.23398,11.3439,0.912965,0.37007,11.2935,0.830679,0.512733,11.3445,0.493842,0.575948,11.3986,0.270054,0.602634,11.4263,0.13474,0.599982,11.4244,-0.148575,0.56708,11.4096,-0.289856,0.228757,11.4377,-0.547593,0.374168,11.4167,-0.488579,0.119331,11.3912,0.916027,0.108016,11.4514,-0.57715,0.613788,11.4334,-0.00775994,0.137521,10.9131,0.968562,0.130821,10.7189,1.01856,0.0401914,10.5278,1.07935,0.233485,10.5164,0.94433,0.217914,10.6294,0.91916,0.136935,10.9475,0.936697,0.126494,10.9741,0.895146,0.12342,10.9917,0.850724,0.124244,10.9906,0.808526,0.120997,10.9774,0.74701,0.0351689,10.5183,1.07784,0.127906,10.7864,0.996213,0.404245,10.1327,0.429594,0.504914,11.63,0.386099,0.236144,9.81615,0.741243,0.358849,9.96274,0.568984,0.389451,11.7719,0.421173,0.216638,11.857,0.46152,0.547929,11.485,0.373463,0.541634,11.2746,0.405494,0.482063,10.3433,0.362299,0.552703,10.6988,0.541043,0.523456,10.5016,0.441584,0.5373,10.5971,0.479398,0.547223,10.9156,0.593866,0.544784,10.9535,0.584453,0.527694,11.0328,0.54441,0.529448,11.1472,0.468855,0.10258,11.8863,0.4718,0.502899,10.4158,0.395472,0.547713,10.7848,0.574532,0.549136,11.3765,0.380214,0.680623,11.1373,0.143322,0.658752,11.0276,0.218341,0.661412,10.9632,0.18864,0.609031,10.6538,0.221445,0.596998,10.5713,0.200415,0.608952,10.5111,0.138736,0.776212,11.1425,-0.172821,0.718277,11.2012,0.0112359,0.7869,11.0436,-0.252317,0.791139,10.9218,-0.269892,0.7854,10.8124,-0.215631,0.750146,10.6708,-0.105534,0.72383,10.5705,-0.0656742,0.616729,10.7151,0.213672,0.66513,11.0707,0.200169,0.753705,11.1909,-0.077209,0.62787,10.7681,0.193286,0.667607,10.8853,0.162465,0.662067,10.4721,0.05665,0.605895,10.6209,0.214813,0.642448,10.8262,0.180083,0.689514,10.5074,-0.0132382,0.648295,11.1324,0.153139,0.627569,11.0344,0.268714,0.6225,10.9587,0.275673,0.586839,10.6263,0.263667,0.567057,10.5632,0.210228,0.570832,10.5193,0.137849,0.686469,11.1149,-0.164975,0.67096,11.1673,0.0165912,0.692558,11.0658,-0.229353,0.694938,10.9543,-0.247337,0.678132,10.8142,-0.187734,0.643037,10.6658,-0.100323,0.619887,10.5976,-0.073352,0.589893,10.6791,0.294138,0.63423,11.0883,0.231194,0.677532,11.1482,-0.0842749,0.59865,10.7493,0.301786,0.619564,10.8865,0.272008,0.586366,10.505,0.0674749,0.576948,10.5938,0.236649,0.608789,10.8161,0.291847,0.587649,10.5186,0.0147628,0.690262,10.8168,0.0443389,0.698211,10.8539,0.0381383,0.652295,10.8172,0.134702,0.731763,10.7139,0.0666362,0.690132,10.6981,0.123304,0.675461,10.5959,0.0649202,0.715106,10.6144,0.0165672,0.638753,10.691,0.123788,0.700284,10.7022,0.0616478,0.735362,10.7052,-0.00538407,0.749447,10.7401,-0.0465187,0.737426,10.6659,-0.0385318,0.751306,10.727,-0.0769062,0.751786,10.8575,-0.105106,0.742845,10.8406,-0.0579251,0.732326,10.8819,-0.0258034,0.733486,10.9169,-0.0692055,0.732016,10.9554,-0.0247638,0.728453,10.9107,0.0198262,0.718742,10.8665,-0.0127313,0.708696,10.888,0.0305672,0.711174,10.7415,-0.044398,0.720938,10.8357,-0.0503472,0.721681,10.7021,-0.00937895,0.762661,11.0085,-0.0687209,0.771348,10.9597,-0.115726,0.73949,10.9114,-0.139477,0.748139,10.8078,-0.0622364,0.709492,10.8123,-0.0559991,0.751107,10.8314,-0.158436,0.753243,10.912,-0.205976,0.749498,11.0055,-0.191622,0.733251,11.0908,-0.140437,0.715413,11.1357,-0.06538,0.693682,11.1361,0.0126437,0.692406,11.0489,0.142496,0.685947,11.0153,0.15218,0.679899,10.9711,0.145924,0.687567,11.0798,0.123717,0.41266,10.8282,0.799444,0.149707,10.8502,0.9724,0.308922,10.8197,0.893968,0.511886,10.8506,0.680826,0.610026,10.8488,0.298926,0.0831169,10.864,1.07915,0.568014,10.8547,0.515562,0.589819,10.8492,0.398544,0.03369,10.8678,1.13634,0.650336,10.8406,0.151253,0.633403,10.8599,0.205642,0.135137,10.8566,0.982404,0.550912,10.8585,0.586865,0.643729,10.8463,0.172516,0.614176,10.8513,0.281927,0.634146,10.8226,0.133344,0.673339,10.8112,0.0730934,0.672532,10.7667,0.100891,0.691208,10.7616,0.0365957,0.686134,10.7438,0.0824198,0.620101,10.7293,0.153769,0.630552,10.7646,0.132385,0.694856,10.7991,-0.000749676,0.699695,10.8339,-0.00587305,0.673149,10.9341,0.111901,0.700465,11.0464,0.0841271,0.703234,10.9672,0.106715,0.701355,11.0139,0.0962658,0.736907,11.054,0.0360562,0.70987,10.9477,0.0844722,0.713396,10.9997,0.058729,0.685604,10.919,0.0938407,0.693887,10.8684,0.119749,0.709115,10.8966,0.104323,0.673228,10.8302,0.103724,0.749707,11.041,-0.01575,0.721114,10.9306,0.0513706,0.723086,10.9823,0.0177463,0.695762,10.9026,0.0674903,0.693935,10.8514,0.0866304,0.701632,10.8761,0.0755774,0.673652,10.7783,0.0693107,0.694919,10.7684,-0.000299593,0.708718,10.776,-0.0532533,0.540278,10.7867,-0.474951,0.648505,10.7451,-0.143731,0.598658,10.7726,-0.34249,0.234009,10.7705,-0.66124,0.422615,10.7843,-0.577037,0.786394,10.7401,-0.168358,0.117419,10.7669,-0.681747,0.776599,10.7734,-0.113603,0.690927,10.7403,-0.12136,0.767773,10.7416,-0.160582,0.660585,10.74,-0.144029,0.76003,10.7735,-0.116831,0.753437,10.7901,-0.0862972,0.747974,10.7757,-0.0580357,0.75013,10.7618,-0.0736133,0.594223,10.7796,0.079863,0.59239,10.8226,0.105135,0.590312,10.7713,0.125581,0.591702,10.7724,0.105406,0.594189,10.8121,0.0837459,0.591097,10.8153,0.126207,0.10981,10.9255,0.996866,0.0987208,10.706,1.11618,0.0397882,10.5576,1.13564,0.213013,10.533,1.0445,0.20367,10.6301,1.00368,0.10602,10.9769,0.951272,0.0926093,11.0101,0.902334,0.0853769,11.0247,0.848527,0.0672203,11.042,0.807893,0.0624198,11.0423,0.740533,0.0318051,10.5562,1.14203,0.103097,10.7819,1.05966,0.109127,10.8603,1.03078,0.175842,10.6732,0.958505,0.166629,10.5089,0.976128,0.23654,10.9055,0.918255,0.157137,10.4415,1.02486,0.109225,10.3097,1.13213,0.133436,10.5924,1.17177,0.12905,10.6647,1.15078,0.239962,10.9252,0.903168,0.143002,10.3709,1.12815,0.23806,10.9423,0.879472,0.227251,10.9488,0.832923,0.213729,10.9515,0.798215,0.21169,10.943,0.739148,0.148294,10.4066,1.07465,0.110994,10.3244,1.0338,0.111228,10.2982,1.08437,0.143334,10.3732,1.12447,0.186187,10.7367,0.948112,0.157427,10.5152,1.0285,0.173326,10.6726,0.968859,0.216893,10.8216,0.933184,0.142292,10.5343,1.09542,0.151196,10.668,1.05993,0.0978939,10.6854,1.06053,0.0939712,10.6621,0.978184,0.0524107,10.6918,1.0773,0.0476334,10.665,0.995607,0.0574576,10.6268,1.12429,0.0553495,10.5928,1.02847,0.177612,10.596,1.00174,0.178195,10.6251,1.0985,0.0394381,10.1692,1.01097,0.241828,10.2858,0.943414,0.250902,10.3433,0.939997,0.16732,10.3805,0.974832,0.0586161,10.3913,1.01158,0.223326,10.3604,0.950324,0.10163,10.1917,0.993811,0.22354,10.2323,0.955849,0.0286463,10.3972,1.01356,0.253877,10.3213,0.938548,0.104391,10.3751,1.0003,0.145697,10.4487,0.816518,0.263806,10.2891,0.811724,0.0421492,10.4442,0.816366,0.195139,10.1666,0.813551,0.0513,10.1255,0.816865,0.117556,10.1357,0.815838,0.247324,10.2226,0.811345,0.263334,10.3619,0.813794,0.241704,10.4152,0.815076,0.0891039,10.4479,0.816681,0.202505,10.4398,0.815921,0.211328,10.4418,0.482295,0.0902159,10.4473,0.471235,0.243899,10.4209,0.482371,0.248375,10.3701,0.480286,0.211108,10.2532,0.472559,0.115512,10.1634,0.458181,0.0527663,10.173,0.46396,0.172066,10.1982,0.462861,0.0422708,10.4409,0.469801,0.234289,10.3105,0.477969,0.151055,10.4503,0.477849,0.106746,10.4044,0.383907,0.180663,10.3141,0.402206,0.0300477,10.3977,0.382492,0.132566,10.2405,0.387593,0.0374266,10.182,0.381688,0.082032,10.1977,0.375535,0.160964,10.2787,0.394712,0.196317,10.3551,0.412009,0.172206,10.3839,0.395286,0.0638514,10.4022,0.380147,0.149242,10.3983,0.391901,0.0337372,10.2938,0.352247,0.0729417,10.3071,0.351893,0.118441,10.3271,0.362759,0.134558,10.3366,0.370138,0.154695,10.3425,0.379841,0.243899,10.4209,0.749809,0.243899,10.4209,0.682949,0.243899,10.4209,0.61609,0.243899,10.4209,0.549231,0.211328,10.4418,0.749793,0.211328,10.4418,0.682919,0.211328,10.4418,0.616044,0.211328,10.4418,0.549169,0.263446,10.3594,0.748244,0.261445,10.3625,0.681927,0.259458,10.366,0.615388,0.260396,10.3716,0.548855,0.194968,10.1628,0.743984,0.193579,10.1546,0.672167,0.188229,10.1673,0.600696,0.184861,10.1778,0.532505,0.247174,10.2111,0.743963,0.245873,10.2068,0.676649,0.23831,10.219,0.608753,0.231547,10.2329,0.542132,0.118733,10.1408,0.744121,0.11842,10.1358,0.668817,0.116694,10.1464,0.590886,0.115322,10.1497,0.524354,0.0525052,10.1276,0.744881,0.0530738,10.1277,0.670208,0.0533342,10.1433,0.601175,0.0913876,10.4469,0.747698,0.0910947,10.447,0.678582,0.0908017,10.4471,0.609466,0.0905088,10.4472,0.540351,0.0431541,10.4413,0.747307,0.0416607,10.4402,0.677712,0.0418641,10.4404,0.608409,0.0420674,10.4406,0.539105,0.263461,10.2792,0.745829,0.260614,10.283,0.679577,0.256365,10.2921,0.613192,0.252771,10.301,0.547317,0.151055,10.4503,0.748904,0.151055,10.4503,0.681141,0.151055,10.4503,0.613377,0.151055,10.4503,0.545613,0.129014,10.45,0.882277,0.0771839,10.4544,0.884508,0.189687,10.4391,0.877803,0.243497,10.257,0.869308,0.26089,10.3139,0.867099,0.258923,10.3652,0.868102,0.0376292,10.4486,0.884154,0.0475267,10.135,0.894163,0.114516,10.1493,0.889364,0.204964,10.1976,0.880507,0.233415,10.405,0.870074,0.0540869,10.1941,0.573131,0.113031,10.1963,0.571311,0.0927196,10.2871,0.481887,0.109,10.2361,0.528889,0.0531513,10.291,0.486262,0.0536445,10.3358,0.5562,0.0934903,10.3251,0.554205,0.119859,10.2323,0.593451,0.120582,10.2789,0.574944,0.0697161,10.2282,0.594774,0.0758246,10.236,0.626537,0.113494,10.2465,0.625696,0.128092,10.2867,0.616656,0.102105,10.3284,0.607489,0.0602482,10.3326,0.608664,0.103604,10.3267,0.673093,0.0615983,10.3291,0.674167,0.113494,10.2513,0.680324,0.128092,10.2885,0.67655,0.0759438,10.242,0.68112,0.0761353,10.2529,0.760278,0.113494,10.2601,0.759416,0.113494,10.3184,0.756909,0.126964,10.2889,0.757853,0.0779899,10.3203,0.757988,0.111236,10.3034,0.864413,0.0782463,10.3099,0.86245,0.12172,10.2833,0.859643,0.112429,10.26,0.855025,0.0765025,10.2528,0.855079,0.073097,10.2554,0.894419,0.102923,10.2648,0.894354,0.108893,10.2833,0.896556,0.102133,10.2996,0.89882,0.0728805,10.304,0.897967,0.0902195,10.2883,0.922299,0.0631656,10.2896,0.944965,0.0902016,10.2743,0.922299,0.0916436,10.2817,0.925139,0.0646987,10.2685,0.944965,0.0636431,10.2796,0.952236,0.116967,10.4296,0.941053,0.06832,10.4393,0.947865,0.261104,10.3222,0.904768,0.0331772,10.4358,0.948837,0.108073,10.166,0.941588,0.214252,10.2143,0.918178,0.229728,10.3868,0.912631,0.0434824,10.1488,0.952568,0.257884,10.3581,0.906257,0.24588,10.2747,0.908379,0.178983,10.4158,0.927398,0.565606,10.7726,0.145421,0.556043,10.7733,0.129054,0.555927,10.8218,0.128854,0.566035,10.8144,0.146156,0.545193,10.8121,0.11048,0.543231,10.7796,0.107122,0.505215,10.8121,0.17736,0.502137,10.7796,0.174983,0.522237,10.7733,0.190511,0.537912,10.8144,0.20262,0.537238,10.7726,0.2021,0.522054,10.8218,0.190369,0.197283,10.9605,0.638722,0.0807695,11.0368,0.640881,0.12649,10.9861,0.645937,0.157394,11.1973,0.596132,0.309613,11.077,0.589679,0.0782476,11.1419,0.618438,0.304075,11.0238,0.60163,0.106973,11.1786,0.606612,0.147233,10.9713,0.642955,0.0536272,11.0952,0.63404,0.245229,10.9738,0.627722,0.285516,11.1458,0.581619,0.208476,11.1979,0.583176,0.20441,11.15,0.535694,0.258772,11.1112,0.534285,0.23031,10.9894,0.566961,0.0947102,11.0754,0.571373,0.159809,10.9859,0.579525,0.132453,11.1344,0.551968,0.271903,11.0249,0.548443,0.112129,11.1084,0.560335,0.275821,11.0625,0.539988,0.168125,11.1477,0.544553,0.146261,10.9982,0.57979,0.113913,11.0341,0.576213,0.196343,10.9792,0.575449,0.326267,10.2053,-0.265618,0.245154,10.1854,-0.342259,0.0671483,10.1876,-0.418382,0.383831,10.1631,-0.0274031,0.357489,9.91883,0.16852,0.274223,9.85766,0.274844,0.156274,9.82288,0.340451,0.300982,10.0205,-0.262537,0.372244,9.99644,-0.0836739,0.115069,10.0148,-0.397971,0.0519322,10.0182,-0.415898,0.385338,9.95555,0.0533378,0.38213,9.97927,-0.0218729,0.130963,9.7992,-0.450577,0.255697,9.79283,-0.380673,0.320107,9.78071,-0.292285,0.410926,9.74826,-0.10315,0.354287,9.69448,0.221694,0.378747,9.76182,-0.188379,0.131973,9.65556,0.334844,0.248036,9.67531,0.317779,0.0410956,9.80278,-0.481335,0.433838,9.7226,0.0628111,0.434421,9.73748,-0.0339391,0.164556,9.62046,-0.523274,0.296227,9.61899,-0.423644,0.368818,9.59499,-0.331992,0.491356,9.579,-0.130488,0.380992,9.54437,0.255593,0.443525,9.58778,-0.216391,0.13278,9.41483,0.408378,0.257239,9.52379,0.386033,0.048137,9.62104,-0.566386,0.51391,9.56452,0.0370314,0.515341,9.57445,-0.0536779,0.151626,9.31552,0.460271,0.314217,9.4015,0.486048,0.637388,9.49272,0.042743,0.669475,9.53021,-0.0607849,0.630327,9.5261,-0.171552,0.571138,9.51346,-0.30568,0.479333,9.46972,0.312565,0.10844,9.44769,-0.669188,0.399588,9.42503,-0.488904,0.243613,9.46105,-0.596024,0.503418,9.47107,-0.406336,0.308745,9.78999,0.24471,0.366563,9.47599,0.330983,0.311485,9.61346,0.286626,0.308802,9.68818,0.272209,0.321471,9.53351,0.312603,0.398998,9.43395,0.393864,0.373174,9.81313,0.154787,0.388581,9.82025,0.11773,0.398342,9.82593,0.089678,0.462669,9.49171,0.195261,0.492548,9.49505,0.142579,0.522208,9.50117,0.0893295,0.400375,9.62936,0.178369,0.424238,9.63433,0.135593,0.447286,9.64064,0.0923171,0.386425,9.70686,0.166862,0.40534,9.71261,0.127893,0.419654,9.71787,0.0953723,0.421512,9.55072,0.187313,0.453303,9.55487,0.135074,0.483621,9.56096,0.0860712,0.598211,9.48924,0.108608,0.56077,9.48228,0.174045,0.532305,9.48062,0.223316,0.308934,9.83946,0.240261,0.361204,9.8864,0.168093,0.387742,9.90697,0.0896456,0.336656,9.83527,0.201874,0.375281,9.86145,0.117755,0.370832,9.856,0.16459,3.53271,8.93966,0.0385299,3.55728,9.14192,-0.0518264,3.51973,8.76309,-0.00555762,3.5172,8.78074,-0.516791,3.52086,8.72862,-0.386739,3.52307,8.69472,-0.231988,3.509,9.2781,-0.621314,3.53936,9.36413,-0.0735252,3.51792,9.47331,-0.261818,3.50592,9.41089,-0.540366,3.5219,8.69284,-0.103315,3.55315,9.18472,-0.597015,3.52054,8.85,-0.574394,3.49364,8.88432,-0.632917,3.51269,9.13992,-0.683629,3.52354,8.99726,-0.694871,3.23579,8.68577,-0.2146,3.23538,8.69125,-0.0765202,3.23631,8.77053,0.0289004,3.24047,9.43861,-0.285127,3.21866,9.3612,-0.562044,3.22256,9.24069,-0.637826,3.25659,9.33905,-0.0648301,3.26334,9.14622,0.00442938,3.22626,8.96547,-0.698667,3.22886,8.74969,-0.52691,3.23263,8.71305,-0.373209,3.2426,8.95916,0.087996,3.22998,9.12495,-0.698015,3.2226,8.86217,-0.632182,3.29302,9.17904,-0.648379,3.26939,8.8245,-0.58246,1.78248,9.01659,0.283178,1.84517,9.336,0.29064,1.73691,8.78354,0.0882705,1.59461,8.62454,-0.549366,1.65518,8.55291,-0.400243,1.71381,8.58756,-0.272841,1.57701,8.82525,-0.613852,1.56785,9.12862,-0.650022,1.86091,9.5127,0.0594057,1.83571,9.5246,-0.248507,1.69284,9.39824,-0.510833,1.71955,8.64968,-0.0726238,-2.71754e-09,9.47258,-0.688676,-5.64066,8.78992,-0.205702,-7.67367,8.98887,-0.257284,-7.67785,8.98177,-0.195032,-7.66119,8.93969,-0.168375,-7.64233,8.89347,-0.192492,-7.63468,8.86767,-0.25454,-7.62984,8.89469,-0.316353,-7.64359,8.9414,-0.342848,-7.66534,8.983,-0.31926,-7.36813,8.99103,-0.153122,-7.37048,8.95092,-0.122221,-7.35905,8.90997,-0.152585,-7.35028,8.87263,-0.226288,-7.3459,8.91132,-0.30008,-7.35183,8.95288,-0.331212,-7.35643,8.98862,-0.2972,-7.68212,8.93163,-0.258698,-7.50006,9.0028,-0.309173,-7.49028,8.93774,-0.337273,-7.49004,8.86605,-0.310057,-7.49957,8.82574,-0.241167,-7.50402,8.86469,-0.171491,-7.50982,8.93583,-0.143537,-7.48931,9.02914,-0.237117,-7.51388,9.00146,-0.171497,-7.50828,8.9919,-0.303046,-7.49858,9.01534,-0.238331,-7.52074,8.99069,-0.179359,-7.66615,8.97468,-0.200177,-7.65489,8.97579,-0.312017,-7.66549,8.98986,-0.256449,-7.67931,8.98573,-0.201559,-7.68684,9.00343,-0.258468,-7.66809,8.98684,-0.313078,-7.51031,9.00683,-0.303224,-7.5228,9.00563,-0.179259,-7.49764,9.0311,-0.237917,-7.41098,9.02169,-0.302007,-7.40034,8.94765,-0.331642,-7.39581,8.87986,-0.302179,-7.40377,8.84379,-0.231577,-7.41008,8.87847,-0.160617,-7.41957,8.94571,-0.131217,-7.41831,9.04047,-0.231052,-7.42471,9.0203,-0.160831,-7.35981,8.90884,-0.299924,-7.36493,8.87016,-0.226516,-7.37328,8.90771,-0.15314,-7.35761,8.87139,-0.226399,-7.36572,8.90999,-0.160906,-7.35314,8.9119,-0.290873,-7.58355,8.98861,-0.319821,-7.56884,8.9365,-0.34085,-7.5611,8.88014,-0.313708,-7.5682,8.85187,-0.247987,-7.57442,8.87885,-0.181643,-7.58745,8.93466,-0.155815,-7.59712,8.98694,-0.178143,-7.5951,8.97801,-0.185309,-7.58293,8.97951,-0.312579,-7.58586,8.99385,-0.313324,-7.59812,8.99232,-0.184682,-7.5938,9.01355,-0.248995,-7.35581,9.01553,-0.293788,-7.3707,9.01439,-0.16387,-7.38961,9.02875,-0.277662,-7.396,9.0539,-0.22882,-7.39954,9.02785,-0.180452,-7.36547,9.04415,-0.265814,-7.3837,9.03736,-0.266001,-7.37227,9.0321,-0.187161,-7.39134,9.03664,-0.190574,-7.38672,9.04192,-0.228059,-7.37112,9.05765,-0.226512,-7.22199,9.05703,-0.481868,-7.2361,9.04345,-0.484244,-7.24164,9.03862,-0.449619,-7.22417,9.0342,-0.445616,-7.23048,9.03968,-0.519118,-7.21371,9.0455,-0.517628,-7.2496,9.03079,-0.440498,-7.24437,9.05479,-0.485362,-7.23509,9.03215,-0.530447,-7.22367,9.01834,-0.424075,-7.20292,9.02012,-0.542822,-7.42713,9.01878,-0.51498,-7.43482,8.9984,-0.454332,-7.41603,9.00055,-0.575662,-7.41329,8.98704,-0.574873,-7.43192,8.98493,-0.454839,-7.43422,8.99319,-0.448105,-7.42634,8.94419,-0.426681,-7.41264,8.89244,-0.450764,-7.40309,8.86803,-0.513487,-7.39264,8.89438,-0.575284,-7.39838,8.94693,-0.601148,-7.41346,8.99552,-0.581727,-7.20117,8.92805,-0.540859,-7.21949,8.92543,-0.421197,-7.20789,8.89674,-0.481569,-7.22654,8.92458,-0.414196,-7.21458,8.89629,-0.482093,-7.20631,8.9266,-0.549742,-7.27355,9.02413,-0.423046,-7.26445,9.04292,-0.488692,-7.26915,8.95598,-0.395074,-7.26034,8.90111,-0.422494,-7.25015,8.87466,-0.489152,-7.24037,8.90309,-0.555085,-7.2416,8.95886,-0.582484,-7.25311,9.02619,-0.554814,-7.33648,9.03499,-0.499217,-7.36266,9.01079,-0.445092,-7.34484,9.0126,-0.561798,-7.4941,8.99395,-0.57974,-7.5148,9.00905,-0.52901,-7.51091,8.9923,-0.474891,-7.49453,8.99636,-0.525996,-7.48171,8.98368,-0.578129,-7.49857,8.98203,-0.472899,-7.36064,8.99677,-0.44514,-7.33752,9.02026,-0.499767,-7.34294,8.99858,-0.561603,-7.35455,9.00668,-0.437318,-7.32889,9.03298,-0.498068,-7.35313,8.94542,-0.410942,-7.34656,8.88388,-0.437412,-7.33835,8.859,-0.503372,-7.32665,8.88585,-0.56802,-7.32511,8.94823,-0.593403,-7.33482,9.00869,-0.566864,-7.51001,8.94193,-0.529288,-7.20387,8.99505,-0.546426,-7.19573,8.96231,-0.577465,-7.19326,8.92766,-0.548665,-7.20123,8.89719,-0.481048,-7.21348,8.92564,-0.41327,-7.22424,8.95938,-0.385587,-7.22232,8.99654,-0.414158,-7.49116,8.99035,-0.585461,-7.46928,8.95143,-0.606858,-7.45778,8.90774,-0.581315,-7.46585,8.88228,-0.52321,-7.4765,8.90592,-0.464756,-7.49563,8.94887,-0.442731,-7.50989,8.98852,-0.468659,-7.50216,8.99541,-0.527219,-7.58741,8.93709,0.134064,-7.58186,8.93051,0.196565,-7.56181,8.88586,0.221065,-7.54728,8.83614,0.194925,-7.54908,8.80787,0.132604,-7.55445,8.83544,0.0701572,-7.57191,8.88488,0.045287,-7.58908,8.92982,0.0714031,-7.29306,8.93653,0.189577,-7.28796,8.8947,0.221162,-7.28015,8.85436,0.189642,-7.28162,8.81904,0.116503,-7.28858,8.85353,0.0425593,-7.29971,8.89355,0.0119873,-7.30298,8.9317,0.0462982,-7.59413,8.87617,0.134796,-7.43542,8.94914,0.0556602,-7.42946,8.87999,0.0271865,-7.4242,8.8096,0.0551961,-7.42196,8.78057,0.125455,-7.41618,8.81038,0.194794,-7.41824,8.88108,0.222372,-7.41527,8.97763,0.125096,-7.42746,8.94993,0.194379,-7.44196,8.93751,0.063173,-7.42369,8.9631,0.125523,-7.43479,8.93822,0.18779,-7.57174,8.92268,0.189761,-7.57824,8.92206,0.0770924,-7.57977,8.93804,0.133619,-7.58425,8.93468,0.190256,-7.60003,8.95288,0.134704,-7.59073,8.93406,0.0778993,-7.44407,8.95336,0.0630857,-7.43688,8.95407,0.187982,-7.4229,8.98001,0.125548,-7.35346,8.9679,0.0486799,-7.3462,8.89034,0.0185216,-7.33678,8.82737,0.0481969,-7.33208,8.79603,0.119909,-7.32859,8.82818,0.190707,-7.33469,8.89144,0.220683,-7.35004,8.98857,0.120022,-7.34547,8.96868,0.191059,-7.3019,8.85296,0.0447409,-7.29523,8.81884,0.118549,-7.29342,8.8538,0.191497,-7.28841,8.81894,0.117527,-7.28793,8.85431,0.182598,-7.295,8.85456,0.0527968,-7.51382,8.93487,0.0581882,-7.50255,8.87929,0.0358514,-7.49032,8.82014,0.062421,-7.48645,8.79168,0.129102,-7.48268,8.82088,0.19545,-7.49179,8.88031,0.22223,-7.50495,8.93538,0.200794,-7.50405,8.92558,0.19351,-7.51203,8.92513,0.0654096,-7.51506,8.9404,0.0649086,-7.50694,8.94083,0.194382,-7.51296,8.96247,0.129625,-7.30232,8.96043,0.0489975,-7.29716,8.96133,0.179229,-7.33085,8.97523,0.0697237,-7.32991,9.00228,0.118601,-7.32538,8.97584,0.167253,-7.30789,8.99112,0.0777162,-7.3242,8.98432,0.0803173,-7.30212,8.97966,0.15621,-7.31988,8.98477,0.15581,-7.32162,8.98932,0.118131,-7.30787,9.00557,0.117038,-6.9185,9.00413,-0.725684,-6.93103,8.99079,-0.728392,-6.94033,8.98744,-0.698472,-6.92554,8.98343,-0.692467,-6.92423,8.98468,-0.758502,-6.90937,8.9903,-0.755847,-6.94896,8.97993,-0.691279,-6.93851,9.00136,-0.731245,-6.92827,8.97626,-0.768344,-6.92787,8.96836,-0.672414,-6.89849,8.96288,-0.774891,-7.08432,8.96365,-0.770892,-7.09622,8.9494,-0.72297,-7.07009,8.94338,-0.8158,-7.06826,8.93175,-0.814033,-7.09414,8.93773,-0.7222,-7.09645,8.94523,-0.717721,-7.09326,8.90488,-0.697125,-7.08122,8.8597,-0.711246,-7.06805,8.83525,-0.757554,-7.05389,8.85328,-0.80644,-7.05501,8.89589,-0.830508,-7.06763,8.93857,-0.819947,-6.89805,8.87387,-0.765508,-6.92681,8.87999,-0.662905,-6.90984,8.84921,-0.712029,-6.93443,8.87997,-0.658124,-6.91599,8.84908,-0.713347,-6.90224,8.87238,-0.773585,-6.9727,8.97357,-0.679621,-6.95652,8.98936,-0.735639,-6.97496,8.91127,-0.651253,-6.9649,8.86013,-0.669749,-6.94867,8.83136,-0.722698,-6.93345,8.85287,-0.779347,-6.93151,8.90196,-0.807151,-6.94313,8.96781,-0.790281,-7.01724,8.97842,-0.751598,-7.04381,8.95979,-0.709522,-7.01826,8.9539,-0.800676,-7.12792,8.94025,-0.826398,-7.14903,8.95753,-0.789047,-7.15146,8.94578,-0.744372,-7.13499,8.94627,-0.784255,-7.11865,8.93075,-0.823014,-7.14215,8.93627,-0.741142,-7.04248,8.94753,-0.708459,-7.01757,8.96571,-0.750969,-7.01699,8.94157,-0.799364,-7.03844,8.95654,-0.702113,-7.01031,8.97767,-0.749553,-7.04108,8.90538,-0.677177,-7.03397,8.85124,-0.69366,-7.02052,8.82598,-0.743226,-7.00485,8.84439,-0.795096,-7.0003,8.89594,-0.819441,-7.01002,8.95006,-0.803734,-7.14789,8.89696,-0.784633,-6.89881,8.93798,-0.776174,-6.8895,8.90379,-0.799472,-6.89027,8.87285,-0.771404,-6.90375,8.84941,-0.710721,-6.92252,8.88074,-0.655222,-6.93485,8.91409,-0.634863,-6.92751,8.94766,-0.661492,-7.1251,8.9362,-0.830384,-7.10668,8.90019,-0.842517,-7.10105,8.86385,-0.818182,-7.11326,8.84598,-0.771253,-7.12705,8.86996,-0.727604,-7.14339,8.90881,-0.714643,-7.15132,8.94236,-0.739034,-7.14101,8.94555,-0.785936,-6.48998,8.7564,0.865961,-6.46722,8.68488,0.852216,-6.54609,8.80882,0.851895,-6.55622,8.80221,0.840759,-6.47558,8.68075,0.839264,-6.46589,8.67697,0.847063,-6.48167,8.63833,0.800025,-6.53391,8.64287,0.755222,-6.5992,8.6927,0.742157,-6.62125,8.76636,0.759728,-6.60448,8.81224,0.806317,-6.55366,8.81314,0.847421,-6.32748,8.74005,0.709919,-6.35223,8.82097,0.721813,-6.36035,8.68477,0.651814,-6.41012,8.69564,0.602493,-6.46305,8.75357,0.578757,-6.48581,8.83036,0.599296,-6.47095,8.88149,0.646876,-6.40717,8.88474,0.70612,-6.4109,8.79216,0.788117,-6.4085,8.71301,0.79155,-6.48538,8.83694,0.790338,-6.59284,8.77462,0.91993,-6.56108,8.72354,0.947204,-6.53359,8.66719,0.924406,-6.55398,8.72546,0.916499,-6.59282,8.77418,0.90039,-6.52987,8.66719,0.902944,-6.41884,8.70731,0.779711,-6.42432,8.78481,0.778594,-6.49683,8.83005,0.779279,-6.40111,8.70694,0.780282,-6.40673,8.79388,0.778853,-6.42628,8.65755,0.727389,-6.48666,8.66028,0.680364,-6.54453,8.71651,0.661859,-6.56966,8.79193,0.680226,-6.55189,8.84124,0.732692,-6.48635,8.84522,0.778782,-6.60418,8.69766,0.891154,-6.59789,8.77969,0.915191,-6.6333,8.79025,0.871189,-6.64581,8.75014,0.828429,-6.62506,8.68232,0.808567,-6.56832,8.63516,0.825169,-6.5307,8.62595,0.871524,-6.53111,8.66018,0.919659,-6.56074,8.72233,0.92385,-1.21737,9.53133,-0.448082,-1.40162,9.47178,0.262551,-1.30654,9.63357,-0.206991,-1.46176,9.13475,-0.650022,-1.08078,9.33628,-0.602687,-1.39849,9.63128,-0.00197884,-1.62297,8.80308,0.0993095,-1.42615,8.79005,0.356225,-1.60033,8.58477,-0.287381,-1.61991,8.63059,-0.0815447,-1.50952,8.62187,-0.55945,-1.74763,9.52214,-0.250404,-1.56093,9.39883,-0.511213,-1.76818,9.37851,0.292151,-1.80179,9.51701,0.049988,-1.48199,8.83394,-0.625891,-1.5896,8.5393,-0.40615,-1.69956,9.02634,0.285672,-1.44712,9.01548,0.322602,-3.09687,8.95932,0.145351,-3.08718,8.70514,-0.368344,-3.07203,8.94841,-0.668311,-3.11801,9.32407,-0.0429021,-3.11668,9.14076,0.0716838,-3.07562,9.34108,-0.550414,-3.10482,9.42212,-0.283003,-3.08379,8.7322,-0.539643,-3.09132,8.68293,-0.055541,-3.09109,8.67669,-0.205581,-3.09543,8.76411,0.0682914,-3.07723,9.22892,-0.625634,-3.36671,9.25246,-0.650017,-3.37855,8.77694,-0.0104906,-3.38181,8.69485,-0.223619,-3.38079,8.69957,-0.0974994,-3.37528,8.76717,-0.514176,-3.37729,9.4551,-0.28725,-3.36303,9.38131,-0.573674,-3.41171,9.15168,-0.0628249,-3.39639,9.35403,-0.0867581,-3.38207,8.98253,-0.729022,-3.37941,8.72097,-0.378073,-3.38992,8.95899,0.0306416,-3.67677,8.92032,0.0464183,-3.66354,8.73627,-0.395405,-3.72276,9.01041,-0.663786,-3.68358,9.37423,-0.0602922,-3.70415,9.13216,-0.0408277,-3.6502,9.44046,-0.507057,-3.65983,9.49152,-0.236385,-3.66036,8.79432,-0.519406,-3.66423,8.68611,-0.10913,-3.66553,8.69458,-0.240357,-3.66213,8.74923,-0.000624619,-3.65391,9.30373,-0.592611,-2.12035,8.95442,0.312094,-2.75305,8.94448,0.260216,-2.16271,9.24464,0.287933,-2.77786,9.16575,0.206228,-2.07626,8.73634,0.17369,-2.73451,8.72889,0.164155,-1.96736,8.6939,-0.554391,-2.68385,8.72217,-0.526497,-1.99516,8.60825,-0.41789,-2.69115,8.68961,-0.4107,-2.01594,8.57385,-0.25797,-2.70093,8.63924,-0.244334,-1.95311,8.91474,-0.627429,-2.66799,8.94808,-0.654772,-1.93176,9.16286,-0.650022,-2.66683,9.16658,-0.644515,-2.17526,9.47259,0.0604887,-2.78538,9.37328,0.0133864,-2.11494,9.51083,-0.250259,-2.76784,9.46297,-0.262635,-1.99683,9.40619,-0.511213,-2.69077,9.37026,-0.520064,-2.02916,8.63061,-0.0048831,-2.70828,8.64084,-0.00291799,-4.52806,8.7375,-0.382488,-5.09983,8.84914,-0.41521,-4.52471,8.66704,-0.276249,-5.10077,8.77178,-0.350961,-4.52052,8.65553,-0.139298,-5.09616,8.73323,-0.245183,-4.5198,9.35512,-0.0195722,-5.06645,9.20669,0.0332032,-4.52124,9.40164,-0.250677,-5.06891,9.29213,-0.137965,-4.52469,9.33567,-0.368075,-5.07334,9.28151,-0.244325,-4.53143,9.19359,0.0886739,-5.0736,9.05948,0.0881668,-4.54947,8.93939,0.04517,-5.08254,8.89591,0.023806,-4.52699,9.13609,-0.548565,-5.08579,9.1881,-0.435938,-4.525,8.94031,-0.546353,-5.09371,9.03931,-0.488755,-4.52656,8.84329,-0.485265,-5.0956,8.95223,-0.467176,-4.53099,8.7583,-0.00825121,-5.08897,8.78147,-0.0957501,-1.8845,8.99403,0.280685,-1.91614,9.29815,0.287265,-1.85305,8.77042,0.0772314,-1.68028,8.62722,-0.539282,-1.72112,8.56653,-0.394336,-1.82966,8.59072,-0.258301,-1.67277,8.81656,-0.601814,-1.67484,9.1225,-0.650022,-1.92429,9.50662,0.0688235,-1.91382,9.52706,-0.248198,-1.8261,9.39765,-0.510453,-1.81626,8.66679,-0.0637031,-4.07704,8.71165,-0.306155,-4.07424,8.67358,-0.185196,-4.07252,8.70179,-0.0614413,-4.06888,9.43301,-0.133696,-4.06918,9.42688,-0.386892,-4.07176,9.32186,-0.487957,-4.08696,9.29436,0.0117633,-4.10634,9.04203,0.00221116,-4.07357,9.05848,-0.610871,-4.07477,8.86157,-0.533149,-4.07552,8.78435,-0.438063,-4.08584,8.84215,0.0248276,-3.08146,9.1045,-0.684916,-3.38072,9.14539,-0.711113,-3.07649,8.86626,-0.621626,-3.37006,8.85808,-0.642737,-3.19366,9.1712,-0.675955,-3.39306,9.18687,-0.620804,-3.71482,9.18257,-0.573226,-4.52613,9.24514,-0.485524,-5.08041,9.25126,-0.357613,-4.07331,9.19131,-0.580949,-3.17298,8.82723,-0.600068,-3.36641,8.82177,-0.564851,-3.67616,8.87822,-0.583936,-4.52609,9.02983,-0.572456,-5.09036,9.11299,-0.484585,-4.07299,8.94309,-0.592349,-3.61373,8.91056,-0.623096,-3.64025,9.13445,-0.656145,-3.66633,9.012,-0.660721,-2.42859,8.95404,0.291979,-2.45874,9.1947,0.252357,-2.39964,8.73531,0.17919,-2.30919,8.72175,-0.543404,-2.32652,8.65817,-0.417001,-2.34131,8.60763,-0.250857,-2.29334,8.93877,-0.641359,-2.28827,9.16701,-0.647533,-2.4664,9.42954,0.0409799,-2.45192,9.48577,-0.255204,-2.33209,9.38896,-0.515213,-2.35503,8.63533,0.003102,-5.57868,9.20879,-0.0817853,-5.58386,8.98781,-0.489309,-5.58018,8.77341,-0.336416,-5.58052,8.82284,-0.424443,-5.57914,8.7858,-0.184473,-5.57835,8.85716,-0.0425029,-5.57709,8.97779,0.0606541,-5.57611,9.10623,0.0496596,-5.57691,9.21536,-0.189068,-5.57803,9.21069,-0.302691,-5.5787,9.1733,-0.392374,-5.57906,9.12122,-0.45773,-5.57943,9.06255,-0.48134,-5.58031,8.8963,-0.463737,-1.27288,9.23853,-0.626354,-1.50399,8.81033,0.228623,-1.47326,9.58016,-0.236267,-1.37966,9.46321,-0.480229,-1.60657,9.56804,0.00531986,-1.59537,9.4347,0.272244,-1.56173,9.03012,0.304752,-0.184512,10.9534,0.648641,-0.0625059,11.0536,0.686716,-0.130586,10.9714,0.653319,-0.0877434,11.0066,0.666689,-0.241311,10.9554,0.653367,-0.292336,10.9771,0.666778,-0.329818,11.0151,0.686832,-0.0633538,11.0584,0.751761,-0.0918354,11.034,0.794749,-0.136845,11.014,0.823484,-0.191529,11.0014,0.833591,-0.247564,10.998,0.823532,-0.296418,11.0045,0.794838,-0.330654,11.0198,0.751877,-0.0581236,11.1013,0.708867,-0.347447,11.0596,0.708993,-0.333042,11.0378,0.75968,-0.298806,11.0225,0.80264,-0.249952,11.016,0.831334,-0.193917,11.0193,0.841393,-0.139232,11.032,0.831286,-0.094223,11.052,0.802551,-0.0657414,11.0763,0.759564,-0.0423543,11.0741,0.767425,-0.0756519,11.0457,0.817681,-0.128272,11.0223,0.851275,-0.192203,11.0075,0.863091,-0.257713,11.0036,0.851331,-0.314828,11.0112,0.817785,-0.354853,11.0291,0.76756,-0.371694,11.0546,0.708303,-0.0334484,11.1033,0.708156,-0.0455516,11.0245,0.740042,-0.073461,10.9752,0.70334,-0.121232,10.9432,0.668057,-0.181593,10.9332,0.639564,-0.13413,10.9321,0.687524,-0.0972931,10.9548,0.73931,-0.0766898,10.9979,0.787039,-0.125897,10.976,0.818454,-0.134955,10.9381,0.763354,-0.154512,10.9231,0.700536,-0.179276,10.9173,0.705113,-0.180712,10.9275,0.771812,-0.185682,10.9622,0.829504,-0.246944,10.9585,0.818507,-0.2276,10.9247,0.763394,-0.204652,10.9158,0.700558,-0.226775,10.9188,0.687564,-0.268479,10.9302,0.739384,-0.300355,10.9656,0.787136,-0.337784,10.9824,0.740169,-0.297126,10.943,0.703437,-0.242279,10.9257,0.668109,-0.248802,10.9356,0.645156,-0.30918,10.9612,0.661025,-0.353533,11.0062,0.684754,-0.117782,10.9545,0.645099,-0.0670867,10.9961,0.66092,-0.0372232,11.0518,0.684617,-0.349584,11.0768,0.707206,-0.111559,11.1965,0.658165,-0.073027,11.1591,0.682735,-0.222962,11.2192,0.635944,-0.278873,11.2011,0.641675,-0.32343,11.166,0.658056,-0.349849,11.1192,0.682592,-0.164209,11.2176,0.641734,-0.344487,11.1211,0.746112,-0.316597,11.1491,0.787098,-0.272042,11.1715,0.814497,-0.217607,11.1849,0.824138,-0.161578,11.1874,0.814554,-0.112485,11.1785,0.787203,-0.0778026,11.1596,0.746249,-0.0759193,11.1445,0.755676,-0.110602,11.1634,0.79663,-0.314713,11.1339,0.796525,-0.342604,11.106,0.755539,-0.0609269,11.1184,0.707355,-0.270159,11.1563,0.823924,-0.215724,11.1698,0.833565,-0.159695,11.1722,0.823981,-0.054254,11.1538,0.76303,-0.0948013,11.1759,0.810909,-0.152195,11.1863,0.842885,-0.217698,11.1834,0.85409,-0.281338,11.1677,0.842818,-0.333427,11.1415,0.810786,-0.366033,11.1088,0.76287,-0.374193,11.0747,0.706365,-0.0367266,11.1234,0.706538,-0.158122,11.2348,0.632816,-0.164927,11.2466,0.654748,-0.110536,11.2325,0.692117,-0.070362,11.1964,0.732615,-0.108367,11.2171,0.777492,-0.139624,11.2483,0.726464,-0.18067,11.2552,0.673337,-0.202952,11.2592,0.685751,-0.180797,11.2558,0.749403,-0.162163,11.2269,0.807463,-0.223559,11.2242,0.817965,-0.227788,11.2537,0.757441,-0.228384,11.2581,0.690102,-0.253091,11.252,0.685726,-0.273442,11.2424,0.749355,-0.283208,11.2094,0.8074,-0.332031,11.1849,0.777377,-0.310808,11.2237,0.726376,-0.273314,11.2418,0.673289,-0.285973,11.2291,0.654686,-0.3342,11.2002,0.692002,-0.362593,11.1543,0.732465,-0.370242,11.1223,0.679502,-0.340054,11.1758,0.651466,-0.289142,11.2159,0.632748,-0.225256,11.2366,0.626199,-0.0539335,11.1679,0.679665,-0.097962,11.2107,0.65159,-0.136852,11.0884,0.849572,-0.156724,11.1112,0.566051,-0.1083,11.1305,0.597234,-0.0744349,11.1434,0.645992,-0.0602837,11.148,0.704899,-0.0680009,11.1434,0.76499,-0.0964115,11.1305,0.817114,-0.141381,11.1112,0.849817,-0.154279,11.1305,0.850515,-0.120243,11.1662,0.818403,-0.0991388,11.1901,0.766673,-0.0939872,11.1985,0.706722,-0.105573,11.1901,0.647675,-0.132132,11.1662,0.598523,-0.169621,11.1305,0.566748,-0.188924,11.1434,0.567792,-0.167799,11.1901,0.600452,-0.152174,11.2213,0.650195,-0.144428,11.2322,0.709449,-0.14574,11.2213,0.769193,-0.155911,11.1901,0.820331,-0.173581,11.1434,0.851558,-0.196351,11.148,0.852789,-0.197983,11.1985,0.822606,-0.20071,11.2322,0.772165,-0.203927,11.2441,0.712666,-0.207144,11.2322,0.653167,-0.209871,11.1985,0.602726,-0.211694,11.148,0.569023,-0.234463,11.1434,0.570254,-0.251943,11.1901,0.605001,-0.262114,11.2213,0.656139,-0.263426,11.2322,0.715883,-0.25568,11.2213,0.775137,-0.240055,11.1901,0.824881,-0.21912,11.1434,0.854021,-0.238423,11.1305,0.855064,-0.275722,11.1662,0.826809,-0.302281,11.1901,0.777657,-0.313867,11.1985,0.71861,-0.308715,11.1901,0.658659,-0.28761,11.1662,0.606929,-0.253766,11.1305,0.571298,-0.266663,11.1112,0.571995,-0.311442,11.1305,0.608218,-0.339853,11.1434,0.660342,-0.34757,11.148,0.720433,-0.333419,11.1434,0.77934,-0.299554,11.1305,0.828098,-0.251321,11.1112,0.855761,-0.25585,11.0884,0.856006,-0.307922,11.0884,0.82855,-0.344353,11.0884,0.779932,-0.359405,11.0884,0.721073,-0.350787,11.0884,0.660934,-0.319811,11.0884,0.608671,-0.271193,11.0884,0.57224,-0.212334,11.0884,0.557188,-0.266663,11.0656,0.571995,-0.311442,11.0463,0.608218,-0.339853,11.0333,0.660342,-0.34757,11.0288,0.720433,-0.333419,11.0333,0.77934,-0.299554,11.0463,0.828098,-0.251321,11.0656,0.855761,-0.238423,11.0463,0.855064,-0.275722,11.0105,0.826809,-0.302281,10.9867,0.777657,-0.313867,10.9783,0.71861,-0.308715,10.9867,0.658659,-0.28761,11.0105,0.606929,-0.253766,11.0463,0.571298,-0.234463,11.0333,0.570254,-0.251943,10.9867,0.605001,-0.262114,10.9555,0.656139,-0.263426,10.9445,0.715883,-0.25568,10.9555,0.775137,-0.240055,10.9867,0.824881,-0.21912,11.0333,0.854021,-0.196351,11.0288,0.852789,-0.197983,10.9783,0.822606,-0.20071,10.9445,0.772165,-0.203927,10.9327,0.712666,-0.207144,10.9445,0.653167,-0.209871,10.9783,0.602726,-0.211694,11.0288,0.569023,-0.188924,11.0333,0.567792,-0.167799,10.9867,0.600452,-0.152174,10.9555,0.650195,-0.144428,10.9445,0.709449,-0.14574,10.9555,0.769193,-0.155911,10.9867,0.820331,-0.173581,11.0333,0.851558,-0.154279,11.0463,0.850515,-0.120244,11.0105,0.818403,-0.0991388,10.9867,0.766673,-0.0939872,10.9783,0.706722,-0.105573,10.9867,0.647675,-0.132132,11.0105,0.598523,-0.169621,11.0463,0.566748,-0.156724,11.0656,0.566051,-0.1083,11.0463,0.597234,-0.074435,11.0333,0.645992,-0.0602838,11.0288,0.7049,-0.0680009,11.0333,0.76499,-0.0964116,11.0463,0.817114,-0.141381,11.0656,0.849817,-0.0880429,11.0884,0.816662,-0.0570667,11.0884,0.764398,-0.0484487,11.0884,0.70426,-0.0635008,11.0884,0.6454,-0.0999315,11.0884,0.596782,-0.152195,11.0884,0.565806,-0.177035,11.0803,0.847026,-0.181627,11.0734,0.847275,-0.188499,11.0688,0.847646,-0.196605,11.0672,0.848084,-0.204711,11.0688,0.848523,-0.211583,11.0734,0.848894,-0.216175,11.0803,0.849142,-0.217787,11.0884,0.84923,-0.216175,11.0965,0.849142,-0.211583,11.1034,0.848894,-0.204711,11.108,0.848523,-0.196605,11.1096,0.848084,-0.188499,11.108,0.847646,-0.181627,11.1034,0.847275,-0.177035,11.0965,0.847026,-0.175423,11.0884,0.846939,-0.165666,11.0884,0.845582,-0.168025,11.1003,0.845709,-0.174741,11.1103,0.846073,-0.184793,11.1171,0.846616,-0.19665,11.1194,0.847257,-0.208507,11.1171,0.847898,-0.218558,11.1103,0.848442,-0.225275,11.1003,0.848805,-0.227633,11.0884,0.848933,-0.225275,11.0765,0.848805,-0.218558,11.0664,0.848442,-0.208507,11.0597,0.847898,-0.19665,11.0574,0.847257,-0.184793,11.0597,0.846616,-0.174741,11.0664,0.846073,-0.168025,11.0765,0.845709,-0.19665,11.0884,0.847257,-0.138652,11.1123,0.851284,-0.152169,11.1325,0.852014,-0.1724,11.1461,0.853108,-0.196264,11.1508,0.854399,-0.220127,11.1461,0.855689,-0.240358,11.1325,0.856783,-0.253875,11.1123,0.857513,-0.258622,11.0884,0.85777,-0.253875,11.0645,0.857513,-0.240358,11.0442,0.856783,-0.220127,11.0307,0.855689,-0.196264,11.0259,0.854399,-0.1724,11.0307,0.853108,-0.15217,11.0442,0.852014,-0.138652,11.0645,0.851284,-0.133905,11.0884,0.851027,-0.0619781,10.2846,0.956831,-0.117528,10.2898,0.931531,-0.151428,10.289,0.885222,-0.169091,10.2823,0.825039,-0.173168,10.2846,0.75253,-0.170341,10.2841,0.692479,-0.167581,10.2833,0.625752,-0.169464,10.2846,0.558823,-0.0691909,10.2846,0.98079,-0.133247,10.2894,0.950998,-0.17582,10.2889,0.896847,-0.200442,10.2824,0.830861,-0.210127,10.2846,0.753815,-0.21365,10.284,0.691972,-0.211296,10.2833,0.625179,-0.207948,10.2846,0.558547,-1.37054e-14,10.2846,0.990547,-1.37054e-14,10.2846,0.965526,-0.0619781,10.2208,0.956831,-0.117528,10.2208,0.931531,-0.153709,10.2208,0.883235,-0.171067,10.2208,0.825951,-0.172664,10.2208,0.755081,-0.17024,10.2208,0.692479,-0.166777,10.2208,0.625752,-0.169464,10.2208,0.558823,-0.0680708,10.2208,0.976534,-0.130261,10.2208,0.949878,-0.172491,10.2208,0.896208,-0.205483,10.2208,0.691972,-0.201333,10.2208,0.558547,-1.38187e-14,10.2208,0.990547,-0.196275,10.2208,0.82703,-0.202888,10.2208,0.756357,-0.204317,10.2208,0.625179,-1.38187e-14,10.2208,0.965526,-0.0566604,10.2936,0.988537,-0.123231,10.2936,0.961794,-0.16225,10.3029,0.912605,-0.20185,10.2909,0.84315,-0.21338,10.2917,0.769939,-0.218354,10.295,0.705403,-0.217689,10.2907,0.63834,-0.214369,10.2936,0.571856,-0.0164408,10.2936,0.993532,0.0164408,10.2936,0.993532,-0.0841565,10.2936,0.981131,-0.146449,10.3031,0.93212,-0.186856,10.2918,0.886873,-0.206023,10.2913,0.817819,-0.216377,10.295,0.743097,-0.219977,10.2909,0.67846,-0.218361,10.2933,0.611824,-0.0488204,10.2936,0.955946,-0.10456,10.2946,0.933954,-0.145216,10.3028,0.903216,-0.160889,10.2908,0.834098,-0.16846,10.2917,0.76751,-0.165553,10.2949,0.705762,-0.162125,10.2907,0.639298,-0.162811,10.2936,0.57223,0.00811154,10.2936,0.960681,-0.00811154,10.2936,0.960681,-0.00977064,10.2936,0.960681,0.00977064,10.2936,0.960681,-0.0727008,10.2936,0.949628,-0.133068,10.3031,0.918368,-0.150671,10.2928,0.872028,-0.166911,10.2911,0.811521,-0.167319,10.2949,0.741888,-0.162937,10.2909,0.679285,-0.159614,10.2934,0.612401,-0.0553502,10.2208,0.986848,-0.121734,10.2208,0.959217,-0.172513,10.2208,0.909532,-0.199633,10.2208,0.839568,-0.21022,10.2208,0.77008,-0.214646,10.2208,0.705382,-0.213782,10.2208,0.638284,-0.210748,10.2208,0.571834,-0.0150628,10.2208,0.991858,0.0150628,10.2208,0.991858,-0.0822409,10.2208,0.978766,-0.144598,10.2208,0.944006,-0.185327,10.2208,0.886978,-0.203584,10.2208,0.817506,-0.211645,10.2208,0.745655,-0.213892,10.2208,0.678412,-0.214303,10.2208,0.611791,-0.0483653,10.2208,0.954054,-0.103475,10.2208,0.932338,-0.143299,10.2208,0.891421,-0.162988,10.2208,0.835006,-0.163228,10.2208,0.767369,-0.159764,10.2208,0.705783,-0.158917,10.2208,0.639354,-0.159817,10.2208,0.572252,0.00772425,10.2208,0.958773,-0.00772425,10.2208,0.958773,-0.00938335,10.2208,0.958773,0.00938335,10.2208,0.958773,-0.0720357,10.2208,0.947799,-0.121494,10.2208,0.91831,-0.153146,10.2208,0.869546,-0.164905,10.2208,0.812041,-0.165546,10.2208,0.74438,-0.161999,10.2208,0.679333,-0.156271,10.2208,0.612434,-1.37054e-14,10.2846,0.965329,-0.00180238,10.2846,0.965329,0.00180238,10.2846,0.965329,-0.0627708,10.2846,0.956302,-0.118104,10.29,0.930863,-0.151369,10.2889,0.884318,-0.16903,10.2823,0.824015,-0.172645,10.2847,0.751456,-0.169675,10.2839,0.691525,-0.166932,10.2834,0.624785,-1.38187e-14,10.2208,0.965329,-0.00180238,10.2208,0.965329,0.00180238,10.2208,0.965329,-0.0627708,10.2208,0.956302,-0.118104,10.2208,0.930863,-0.153801,10.2208,0.882279,-0.170875,10.2208,0.825131,-0.172301,10.2208,0.754213,-0.169779,10.2208,0.691525,-0.166076,10.2208,0.624785,-1.38187e-14,10.2208,0.990967,-0.00179212,10.2208,0.990967,0.00179212,10.2208,0.990967,-0.0691415,10.2208,0.976565,-0.131352,10.2208,0.949586,-0.173205,10.2208,0.8956,-0.196927,10.2208,0.826328,-0.203377,10.2208,0.7555,-0.20601,10.2208,0.690988,-0.204916,10.2208,0.624209,-1.37054e-14,10.2846,0.990967,-0.00179213,10.2846,0.990967,0.00179213,10.2846,0.990967,-0.0702616,10.2846,0.980821,-0.134338,10.2897,0.950706,-0.17655,10.2886,0.896223,-0.200998,10.2824,0.829887,-0.210739,10.2848,0.752737,-0.214311,10.2839,0.690988,-0.21188,10.2834,0.624209,-0.0680248,10.2846,0.98152,-0.132327,10.2891,0.952004,-0.175642,10.2892,0.898067,-0.200708,10.2823,0.832283,-0.21051,10.2844,0.755307,-0.214184,10.2842,0.69324,-0.212003,10.2831,0.626427,-0.208556,10.2846,0.559807,-0.060712,10.2846,0.956751,-0.116272,10.2897,0.931776,-0.150689,10.2892,0.886035,-0.168159,10.2823,0.826127,-0.172651,10.2844,0.75393,-0.169811,10.2842,0.69374,-0.166971,10.2831,0.627032,-0.168834,10.2846,0.560093,-0.0669047,10.2208,0.977264,-0.129341,10.2208,0.950884,-0.172338,10.2208,0.897441,-0.196438,10.2208,0.828114,-0.203445,10.2208,0.757438,-0.206197,10.2208,0.69324,-0.205086,10.2208,0.626427,-0.201941,10.2208,0.559807,-0.0607121,10.2208,0.956751,-0.116272,10.2208,0.931776,-0.152884,10.2208,0.884111,-0.170425,10.2208,0.826957,-0.171897,10.2208,0.756067,-0.16938,10.2208,0.69374,-0.166122,10.2208,0.627032,-0.168834,10.2208,0.560093,-0.0603696,10.1093,0.934996,-0.0652662,10.1093,0.933409,-0.113624,10.1093,0.910282,-0.118359,10.1093,0.907353,-0.1435,10.1093,0.865146,-0.145787,10.1093,0.859342,-0.16148,10.1093,0.802526,-0.163702,10.1093,0.798261,-0.163021,10.1093,0.736203,-0.163782,10.1093,0.732521,-0.159798,10.1093,0.676213,-0.160364,10.1093,0.671421,-0.161005,10.1093,0.609506,-0.160335,10.1093,0.603496,-0.0708864,10.1093,0.96993,-0.0786179,10.1093,0.968047,-0.137237,10.1093,0.939525,-0.144583,10.1093,0.935402,-0.181195,10.1093,0.883854,-0.185541,10.1093,0.874809,-0.224421,10.1093,0.675475,-0.223422,10.1093,0.670468,-0.207766,10.1093,0.811774,-0.207934,10.1093,0.820616,-0.21976,10.1093,0.7383,-0.22195,10.1093,0.74353,-0.218139,10.1093,0.608657,-0.219818,10.1093,0.61672,-0.159817,10.1093,0.555916,-0.170188,10.1093,0.543756,-0.162785,10.1093,0.623017,-0.160586,10.1093,0.615982,-0.158134,10.1093,0.689447,-0.15757,10.1093,0.681452,-0.161581,10.1093,0.748302,-0.160664,10.1093,0.740997,-0.156534,10.1093,0.815024,-0.157666,10.1093,0.807887,-0.139036,10.1093,0.87683,-0.140443,10.1093,0.870708,-0.103475,10.1093,0.916002,-0.107867,10.1093,0.912577,-0.0483653,10.1093,0.937717,-0.0547826,10.1093,0.935694,-0.171007,10.1093,0.542487,-0.217489,10.1093,0.566984,-0.204863,10.1093,0.543471,-0.219498,10.1093,0.628694,-0.226845,10.1093,0.689046,-0.227086,10.1093,0.680896,-0.220477,10.1093,0.751013,-0.205526,10.1093,0.826506,-0.175067,10.1093,0.897282,-0.177778,10.1093,0.892961,-0.124315,10.1093,0.947074,-0.130147,10.1093,0.944721,-0.0571156,10.1093,0.974093,-0.0630157,10.1093,0.972922,-0.204078,10.1093,0.54221,-0.217848,10.1093,0.590233,-0.218077,10.1093,0.597439,-0.21784,10.1093,0.652631,-0.217618,10.1093,0.729157,-0.219057,10.1093,0.734341,-0.208102,10.1093,0.799362,-0.208586,10.1093,0.804968,-0.188957,10.1093,0.868674,-0.147584,10.1093,0.928789,-0.0848217,10.1093,0.966624,-0.0168281,10.1093,0.979102,0.0168281,10.1093,0.979102,0.00582987,10.1093,0.980618,-0.00582987,10.1093,0.980618,-0.00748897,10.1093,0.980618,0.00748897,10.1093,0.980618,-1.40168e-14,10.1093,0.980755,-0.160185,10.1093,0.596098,-0.161976,10.1093,0.662997,-0.165546,10.1093,0.727781,-0.164792,10.1093,0.792642,-0.14857,10.1093,0.852106,-0.121494,10.1093,0.901974,-0.0720357,10.1093,0.931462,0.0077243,10.1093,0.942437,-0.0077243,10.1093,0.942437,-0.0093834,10.1093,0.942437,0.0093834,10.1093,0.942437,0.00428974,10.1093,0.942442,-0.00428974,10.1093,0.942442,-0.00594884,10.1093,0.942442,0.00594884,10.1093,0.942442,-1.40168e-14,10.1093,0.942586,-0.0616581,10.165,0.947879,-0.0659687,10.165,0.945681,-0.11682,10.165,0.922562,-0.119623,10.165,0.91886,-0.152678,10.165,0.874832,-0.153873,10.165,0.870037,-0.169089,10.165,0.818348,-0.169074,10.165,0.812431,-0.171977,10.165,0.747727,-0.171532,10.165,0.743878,-0.169791,10.165,0.684361,-0.169349,10.165,0.679163,-0.164965,10.165,0.617645,-0.16432,10.165,0.61239,-0.0748679,10.165,0.972133,-0.0693325,10.165,0.973153,-0.138057,10.165,0.939759,-0.1334,10.165,0.943083,-0.179292,10.165,0.885226,-0.175967,10.165,0.890538,-0.214051,10.165,0.678554,-0.213972,10.165,0.683849,-0.200581,10.165,0.821081,-0.200366,10.165,0.825632,-0.210249,10.165,0.749294,-0.21179,10.165,0.75352,-0.214218,10.165,0.617043,-0.216301,10.165,0.622342,-0.162675,10.165,0.57047,-0.169149,10.165,0.556344,-0.161119,10.165,0.637442,-0.16335,10.165,0.623026,-0.163138,10.165,0.703813,-0.167655,10.165,0.689654,-0.165174,10.165,0.764956,-0.169961,10.165,0.751597,-0.161659,10.165,0.834162,-0.166988,10.165,0.823561,-0.140627,10.165,0.887863,-0.149878,10.165,0.878554,-0.0992112,10.165,0.927642,-0.112318,10.165,0.924321,-0.0425417,10.165,0.947732,-0.056584,10.165,0.948202,-0.17722,10.165,0.55216,-0.208249,10.165,0.55605,-0.214757,10.165,0.570042,-0.219434,10.165,0.636521,-0.215947,10.165,0.689237,-0.219424,10.165,0.703681,-0.214376,10.165,0.768093,-0.199069,10.165,0.838135,-0.173819,10.165,0.895705,-0.169055,10.165,0.907118,-0.128976,10.165,0.94681,-0.117128,10.165,0.956757,-0.0641137,10.165,0.975239,-0.0503588,10.165,0.981188,-0.200175,10.165,0.55199,-0.216064,10.165,0.597389,-0.214515,10.165,0.611807,-0.21501,10.165,0.664011,-0.215112,10.165,0.73156,-0.21079,10.165,0.745285,-0.206947,10.165,0.80107,-0.201845,10.165,0.816646,-0.189048,10.165,0.869907,-0.150575,10.165,0.930211,-0.0903151,10.165,0.969733,-0.0225354,10.165,0.984835,0.0225354,10.165,0.984835,0.0048991,10.165,0.983314,-0.0048991,10.165,0.983314,-0.0065582,10.165,0.983314,0.0065582,10.165,0.983314,-1.39177e-14,10.165,0.982693,-0.162015,10.165,0.597965,-0.166863,10.165,0.664858,-0.167839,10.165,0.730852,-0.167182,10.165,0.795737,-0.155813,10.165,0.856243,-0.12573,10.165,0.906829,-0.077206,10.165,0.938174,0.00338802,10.165,0.955607,-0.00338802,10.165,0.955607,-0.00504712,10.165,0.955607,0.00504712,10.165,0.955607,-0.01645,10.165,0.951123,0.01645,10.165,0.951123,-1.39177e-14,10.165,0.956822,-0.061963,10.2181,0.956408,-0.0629219,10.2181,0.9558,-0.117495,10.2181,0.931107,-0.118176,10.2181,0.930296,-0.153677,10.2181,0.882827,-0.153818,10.2181,0.881694,-0.171012,10.2181,0.825568,-0.170805,10.2181,0.824556,-0.17258,10.2181,0.754718,-0.172215,10.2181,0.75369,-0.170162,10.2181,0.692095,-0.16969,10.2181,0.690941,-0.16673,10.2181,0.625369,-0.165984,10.2181,0.624199,-0.0704793,10.2181,0.980411,-0.0691976,10.2181,0.980429,-0.134514,10.2181,0.950189,-0.133255,10.2181,0.950624,-0.176579,10.2181,0.896579,-0.175724,10.2181,0.897358,-0.213471,10.2181,0.6904,-0.212957,10.2181,0.691588,-0.200218,10.2181,0.827494,-0.200332,10.2181,0.828731,-0.209238,10.2181,0.755844,-0.209792,10.2181,0.757118,-0.21262,10.2181,0.624795,-0.213366,10.2181,0.626234,-0.159952,10.2181,0.572168,-0.168849,10.2181,0.559915,-0.159068,10.2181,0.639263,-0.166049,10.2181,0.626843,-0.159805,10.2181,0.70569,-0.169237,10.2181,0.693547,-0.163204,10.2181,0.767255,-0.171747,10.2181,0.755853,-0.162975,10.2181,0.834886,-0.170318,10.2181,0.826731,-0.143172,10.2181,0.891253,-0.152748,10.2181,0.883844,-0.103274,10.2181,0.932116,-0.116085,10.2181,0.931424,-0.04809,10.2181,0.953755,-0.0605169,10.2181,0.956347,-0.169821,10.2181,0.558508,-0.208542,10.2181,0.559629,-0.21724,10.2181,0.57175,-0.220604,10.2181,0.638201,-0.213683,10.2181,0.693051,-0.221142,10.2181,0.705302,-0.215748,10.2181,0.769986,-0.203074,10.2181,0.840127,-0.175459,10.2181,0.898719,-0.175213,10.2181,0.910478,-0.132169,10.2181,0.951759,-0.123975,10.2181,0.963096,-0.0678399,10.2181,0.981223,-0.0567961,10.2181,0.989993,-0.207591,10.2181,0.558237,-0.221434,10.2181,0.61111,-0.213237,10.2181,0.623623,-0.220256,10.2181,0.677731,-0.217392,10.2181,0.745152,-0.20973,10.2181,0.754886,-0.208412,10.2181,0.817048,-0.200909,10.2181,0.826647,-0.188961,10.2181,0.886892,-0.147726,10.2181,0.944421,-0.0850813,10.2181,0.982335,-0.0170979,10.2181,0.994938,0.0170979,10.2181,0.994938,-1.38234e-14,10.2181,0.990605,-0.00201743,10.2181,0.990605,0.00201743,10.2181,0.990605,-1.38234e-14,10.2181,0.990175,-0.156589,10.2181,0.61175,-0.162264,10.2181,0.678649,-0.165696,10.2181,0.743825,-0.165014,10.2181,0.811271,-0.153272,10.2181,0.868917,-0.121694,10.2181,0.917768,-0.0722801,10.2181,0.947344,-1.38234e-14,10.2181,0.96487,-0.00195577,10.2181,0.96487,0.00195577,10.2181,0.96487,0.00805831,10.2181,0.958412,-0.00805831,10.2181,0.958412,-0.00971741,10.2181,0.958412,0.00971741,10.2181,0.958412,-1.38234e-14,10.2181,0.965114,-0.0691909,10.2238,0.98079,-0.133247,10.2238,0.950998,-0.175714,10.2238,0.897666,-0.212872,10.2238,0.691972,-0.207948,10.2238,0.558547,-0.0619781,10.2238,0.956831,-0.117528,10.2238,0.931531,-0.153714,10.2238,0.883231,-0.171065,10.2238,0.825966,-0.17281,10.2238,0.755063,-0.170386,10.2238,0.692479,-0.166764,10.2238,0.625752,-0.169464,10.2238,0.558823,-1.38133e-14,10.2238,0.990547,-1.38133e-14,10.2238,0.965526,-0.0570939,10.2242,0.99034,-0.124263,10.2242,0.963334,-0.175436,10.2242,0.910592,-0.203161,10.2242,0.840183,-0.215831,10.2242,0.770073,-0.22126,10.2242,0.705383,-0.220779,10.2242,0.638287,-0.21722,10.2242,0.571836,-0.0168096,10.2242,0.995348,0.0168096,10.2242,0.995348,-0.08479,10.2242,0.982873,-0.14752,10.2242,0.945059,-0.188856,10.2242,0.887694,-0.208456,10.2242,0.817717,-0.217432,10.2242,0.745743,-0.220423,10.2242,0.678414,-0.221594,10.2242,0.611792,-0.0483869,10.2242,0.954144,-0.103527,10.2242,0.932415,-0.143379,10.2242,0.891468,-0.163082,10.2242,0.835026,-0.163577,10.2242,0.767376,-0.160141,10.2242,0.705782,-0.15907,10.2242,0.639351,-0.15996,10.2242,0.572251,0.0077427,10.2242,0.958864,-0.0077427,10.2242,0.958864,-0.0094018,10.2242,0.958864,0.0094018,10.2242,0.958864,-0.0720674,10.2242,0.947886,-0.121558,10.2242,0.918377,-0.153232,10.2242,0.869581,-0.165012,10.2242,0.812057,-0.165677,10.2242,0.744384,-0.162149,10.2242,0.679331,-0.15643,10.2242,0.612433,-1.38133e-14,10.2238,0.990967,-0.00179212,10.2238,0.990967,0.00179212,10.2238,0.990967,-0.0702616,10.2238,0.980821,-0.134338,10.2238,0.950706,-0.176458,10.2238,0.897054,-0.200812,10.2238,0.827102,-0.209641,10.2238,0.755383,-0.213369,10.2238,0.690988,-0.213079,10.2238,0.624209,-1.38133e-14,10.2238,0.965329,-0.00180238,10.2238,0.965329,0.00180238,10.2238,0.965329,-0.0627708,10.2238,0.956302,-0.118104,10.2238,0.930863,-0.153806,10.2238,0.882275,-0.170872,10.2238,0.825142,-0.172452,10.2238,0.754196,-0.16993,10.2238,0.691525,-0.166063,10.2238,0.624785,-0.0680248,10.2238,0.98152,-0.132327,10.2238,0.952005,-0.175538,10.2238,0.898866,-0.200316,10.2238,0.82887,-0.20971,10.2238,0.757297,-0.213557,10.2238,0.69324,-0.213201,10.2238,0.626427,-0.208556,10.2238,0.559807,-0.0607121,10.2238,0.956751,-0.116272,10.2238,0.931776,-0.152885,10.2238,0.88411,-0.170424,10.2238,0.82697,-0.172048,10.2238,0.75605,-0.169531,10.2238,0.69374,-0.16611,10.2238,0.627032,-0.168834,10.2238,0.560093,-0.212495,10.2238,0.625179,-0.209177,10.2238,0.756183,-0.200174,10.2238,0.82779,-0.0691909,10.2542,0.98079,-0.133247,10.2566,0.950998,-0.175767,10.2563,0.897257,-0.213547,10.2761,0.691972,-0.207948,10.2765,0.558547,-0.0619781,10.2542,0.956831,-0.117528,10.2568,0.931531,-0.152571,10.2564,0.884226,-0.169353,10.2746,0.825162,-0.173121,10.2765,0.752865,-0.170347,10.2761,0.692479,-0.167473,10.2754,0.625752,-0.169464,10.2765,0.558823,-1.37593e-14,10.2542,0.990547,-1.37593e-14,10.2542,0.965526,-0.0568771,10.2589,0.989438,-0.123747,10.2589,0.962564,-0.163571,10.2951,0.912403,-0.202023,10.2821,0.842758,-0.213704,10.2827,0.769957,-0.218739,10.2856,0.7054,-0.218098,10.2819,0.638333,-0.214746,10.2844,0.571853,-0.0166252,10.2589,0.99444,0.0166252,10.2589,0.99444,-0.0844732,10.2589,0.982002,-0.146556,10.2952,0.933416,-0.18712,10.2829,0.886982,-0.206345,10.2824,0.817805,-0.216517,10.2857,0.743447,-0.220036,10.282,0.678454,-0.218789,10.2842,0.61182,-0.0486037,10.2589,0.955045,-0.104043,10.2594,0.933185,-0.144297,10.2635,0.897342,-0.161179,10.282,0.834221,-0.167814,10.2828,0.767492,-0.164836,10.2856,0.705765,-0.161721,10.2819,0.639305,-0.162433,10.2844,0.572233,0.00792712,10.2589,0.959773,-0.00792712,10.2589,0.959773,-0.00958622,10.2589,0.959773,0.00958622,10.2589,0.959773,-0.0723841,10.2589,0.948757,-0.127313,10.2637,0.918372,-0.15101,10.2837,0.871705,-0.16666,10.2823,0.811592,-0.167102,10.2856,0.742218,-0.162833,10.2821,0.679291,-0.159192,10.2842,0.612405,-1.37593e-14,10.2542,0.990967,-0.00179212,10.2542,0.990967,0.00179212,10.2542,0.990967,-0.0702616,10.2542,0.980821,-0.134338,10.2567,0.950706,-0.176504,10.2562,0.896638,-0.200973,10.2746,0.829519,-0.210594,10.2767,0.753087,-0.214186,10.2759,0.690988,-0.212039,10.2755,0.624209,-1.37593e-14,10.2542,0.965329,-0.00180238,10.2542,0.965329,0.00180238,10.2542,0.965329,-0.0627708,10.2542,0.956302,-0.118104,10.2569,0.930863,-0.152588,10.2563,0.883296,-0.169274,10.2746,0.824164,-0.172619,10.2767,0.751819,-0.169709,10.2759,0.691525,-0.166817,10.2755,0.624785,-0.0680248,10.2542,0.98152,-0.132327,10.2565,0.952004,-0.17559,10.2565,0.898466,-0.200656,10.2746,0.831832,-0.210404,10.2764,0.755571,-0.214101,10.2762,0.69324,-0.212162,10.2753,0.626427,-0.208556,10.2765,0.559807,-0.0607121,10.2542,0.956751,-0.116272,10.2567,0.931776,-0.151787,10.2565,0.885072,-0.168459,10.2745,0.826239,-0.172571,10.2764,0.754211,-0.169774,10.2762,0.69374,-0.166857,10.2753,0.627032,-0.168834,10.2765,0.560093,-0.211455,10.2754,0.625179,-0.210001,10.2766,0.754128,-0.200406,10.2746,0.830454,-0.0653429,10.2979,0.972767,-0.12395,10.2923,0.946074,-0.159715,10.2932,0.897217,-0.17835,10.3003,0.833723,-0.182651,10.2979,0.757224,-0.179668,10.2984,0.693868,-0.176757,10.2992,0.623469,-0.178743,10.2979,0.552858,-0.0729526,10.2979,0.998044,-0.140534,10.2928,0.966612,-0.185449,10.2934,0.909482,-0.211426,10.3002,0.839865,-0.221643,10.2978,0.758579,-0.22536,10.2985,0.693333,-0.222878,10.2992,0.622865,-0.219345,10.2979,0.552566,-1.36817e-14,10.2979,1.00834,-1.36817e-14,10.2979,0.98194,-0.0653429,10.3652,0.972767,-0.12395,10.3652,0.946074,-0.162122,10.3652,0.895121,-0.180434,10.3652,0.834685,-0.182119,10.3652,0.759915,-0.179562,10.3652,0.693868,-0.175909,10.3652,0.623469,-0.178743,10.3652,0.552858,-0.0717709,10.3652,0.993553,-0.137383,10.3652,0.965431,-0.181937,10.3652,0.908808,-0.216745,10.3652,0.693333,-0.212366,10.3652,0.552566,-1.35621e-14,10.3652,1.00834,-0.20703,10.3652,0.835823,-0.214006,10.3652,0.761261,-0.215514,10.3652,0.622865,-1.35621e-14,10.3652,0.98194,-0.0597325,10.2884,1.00622,-0.129966,10.2884,0.978003,-0.171133,10.2785,0.926107,-0.212911,10.2912,0.852831,-0.225075,10.2904,0.775591,-0.230324,10.2869,0.707503,-0.229622,10.2914,0.63675,-0.226119,10.2884,0.566608,-0.0172999,10.2884,1.01149,0.0172999,10.2884,1.01149,-0.0887417,10.2884,0.998404,-0.154462,10.2784,0.946695,-0.197092,10.2902,0.898959,-0.217314,10.2908,0.826105,-0.228238,10.2869,0.747271,-0.232036,10.2913,0.679078,-0.230331,10.2887,0.608775,-0.0514612,10.2884,0.971833,-0.110267,10.2873,0.948631,-0.153161,10.2787,0.916202,-0.169696,10.2914,0.84328,-0.177684,10.2904,0.773028,-0.174617,10.287,0.707883,-0.171001,10.2914,0.637761,-0.171724,10.2884,0.567003,0.00860354,10.2884,0.976828,-0.00860354,10.2884,0.976828,-0.0102626,10.2884,0.976828,0.0102626,10.2884,0.976828,-0.0766556,10.2884,0.965167,-0.140345,10.2784,0.932187,-0.158916,10.2892,0.883298,-0.17605,10.291,0.819461,-0.176481,10.287,0.745996,-0.171858,10.2913,0.679948,-0.168351,10.2886,0.609384,-0.0583503,10.3652,1.00444,-0.128387,10.3652,0.975284,-0.18196,10.3652,0.922865,-0.210573,10.3652,0.849051,-0.221741,10.3652,0.775739,-0.226411,10.3652,0.707481,-0.2255,10.3652,0.636691,-0.222299,10.3652,0.566585,-0.015846,10.3652,1.00972,0.015846,10.3652,1.00972,-0.0867206,10.3652,0.995909,-0.152509,10.3652,0.959236,-0.195479,10.3652,0.89907,-0.214741,10.3652,0.825775,-0.223246,10.3652,0.74997,-0.225616,10.3652,0.679027,-0.22605,10.3652,0.60874,-0.050981,10.3652,0.969836,-0.109124,10.3652,0.946926,-0.151138,10.3652,0.903758,-0.171911,10.3652,0.844238,-0.172164,10.3652,0.772879,-0.16851,10.3652,0.707905,-0.167616,10.3652,0.637819,-0.168566,10.3652,0.567026,0.00819493,10.3652,0.974816,-0.00819493,10.3652,0.974816,-0.00985403,10.3652,0.974816,0.00985403,10.3652,0.974816,-0.0759539,10.3652,0.963237,-0.128133,10.3652,0.932126,-0.161527,10.3652,0.880678,-0.173933,10.3652,0.820009,-0.17461,10.3652,0.748625,-0.170868,10.3652,0.679999,-0.164825,10.3652,0.609419,-1.36817e-14,10.2979,0.981732,-0.00185591,10.2979,0.981732,0.00185591,10.2979,0.981732,-0.0661791,10.2979,0.972209,-0.124558,10.2922,0.94537,-0.159653,10.2934,0.896263,-0.178285,10.3003,0.832642,-0.182099,10.2977,0.756091,-0.178966,10.2986,0.692862,-0.176072,10.2992,0.62245,-1.35621e-14,10.3652,0.981732,-0.00185591,10.3652,0.981732,0.00185591,10.3652,0.981732,-0.0661791,10.3652,0.972209,-0.124558,10.3652,0.94537,-0.162219,10.3652,0.894112,-0.180231,10.3652,0.833819,-0.181736,10.3652,0.758999,-0.179075,10.3652,0.692862,-0.175168,10.3652,0.62245,-1.35621e-14,10.3652,1.00878,-0.00184508,10.3652,1.00878,0.00184508,10.3652,1.00878,-0.0729004,10.3652,0.993586,-0.138534,10.3652,0.965123,-0.18269,10.3652,0.908166,-0.207718,10.3652,0.835082,-0.214523,10.3652,0.760357,-0.2173,10.3652,0.692295,-0.216147,10.3652,0.621841,-1.36817e-14,10.2979,1.00878,-0.00184509,10.2979,1.00878,0.00184509,10.2979,1.00878,-0.0740821,10.2979,0.998077,-0.141685,10.2925,0.966305,-0.18622,10.2936,0.908824,-0.212012,10.3002,0.838838,-0.22229,10.2977,0.757442,-0.226058,10.2987,0.692295,-0.223493,10.2992,0.621841,-0.0717223,10.2979,0.998814,-0.139563,10.2931,0.967674,-0.185261,10.2931,0.910768,-0.211707,10.3003,0.841366,-0.222048,10.298,0.760154,-0.225925,10.2983,0.694671,-0.223623,10.2994,0.624182,-0.219987,10.2979,0.553896,-0.0640071,10.2979,0.972682,-0.122624,10.2925,0.946333,-0.158935,10.293,0.898075,-0.177367,10.3003,0.83487,-0.182105,10.2981,0.758701,-0.17911,10.2982,0.695199,-0.176113,10.2994,0.62482,-0.178079,10.2979,0.554197,-0.0705406,10.3652,0.994324,-0.136412,10.3652,0.966493,-0.181775,10.3652,0.910108,-0.207202,10.3652,0.836967,-0.214594,10.3652,0.762402,-0.217497,10.3652,0.694671,-0.216326,10.3652,0.624182,-0.213008,10.3652,0.553896,-0.0640072,10.3652,0.972682,-0.122624,10.3652,0.946333,-0.161251,10.3652,0.896045,-0.179758,10.3652,0.835746,-0.18131,10.3652,0.760955,-0.178654,10.3652,0.695199,-0.175218,10.3652,0.62482,-0.178079,10.3652,0.554197,-0.0636458,10.4828,0.94973,-0.0688119,10.4828,0.948056,-0.119831,10.4828,0.923656,-0.124827,10.4828,0.920566,-0.151351,10.4828,0.876037,-0.153764,10.4828,0.869913,-0.17032,10.4828,0.809971,-0.172664,10.4828,0.805471,-0.171946,10.4828,0.739999,-0.172749,10.4828,0.736113,-0.168546,10.4828,0.676707,-0.169143,10.4828,0.671652,-0.169819,10.4828,0.60633,-0.169112,10.4828,0.599988,-0.0747414,10.4828,0.986586,-0.0828983,10.4828,0.9846,-0.144743,10.4828,0.954508,-0.152494,10.4828,0.950159,-0.19112,10.4828,0.895774,-0.195705,10.4828,0.886231,-0.236724,10.4828,0.675929,-0.23567,10.4828,0.670646,-0.219153,10.4828,0.819728,-0.21933,10.4828,0.829056,-0.231807,10.4828,0.74221,-0.234117,10.4828,0.747729,-0.230097,10.4828,0.605434,-0.231868,10.4828,0.61394,-0.168566,10.4828,0.54979,-0.179508,10.4828,0.536962,-0.171697,10.4828,0.620584,-0.169376,10.4828,0.613162,-0.16679,10.4828,0.690669,-0.166194,10.4828,0.682235,-0.170427,10.4828,0.752763,-0.169459,10.4828,0.745057,-0.165102,10.4828,0.823156,-0.166296,10.4828,0.815627,-0.146641,10.4828,0.888363,-0.148125,10.4828,0.881904,-0.109124,10.4828,0.92969,-0.113757,10.4828,0.926078,-0.050981,10.4828,0.952601,-0.0577514,10.4828,0.950466,-0.180371,10.4828,0.535623,-0.22941,10.4828,0.561467,-0.21609,10.4828,0.53666,-0.231531,10.4828,0.626574,-0.239282,10.4828,0.690246,-0.239536,10.4828,0.681648,-0.232563,10.4828,0.755623,-0.21679,10.4828,0.83527,-0.184654,10.4828,0.909941,-0.187515,10.4828,0.905382,-0.13111,10.4828,0.962473,-0.137263,10.4828,0.95999,-0.0602128,10.4828,0.990979,-0.0664376,10.4828,0.989742,-0.215262,10.4828,0.535331,-0.22979,10.4828,0.585996,-0.230031,10.4828,0.593599,-0.229781,10.4828,0.651828,-0.229547,10.4828,0.732565,-0.231065,10.4828,0.738033,-0.219508,10.4828,0.806632,-0.220018,10.4828,0.812548,-0.199308,10.4828,0.879758,-0.15566,10.4828,0.943182,-0.0894434,10.4828,0.983098,-0.0177085,10.4828,0.996264,0.0177085,10.4828,0.996264,0.00619631,10.4828,0.997862,-0.00619631,10.4828,0.997862,-0.00785541,10.4828,0.997862,0.00785541,10.4828,0.997862,-1.33531e-14,10.4828,0.998007,-0.168954,10.4828,0.592183,-0.170843,10.4828,0.662764,-0.17461,10.4828,0.731113,-0.173814,10.4828,0.799543,-0.156699,10.4828,0.862279,-0.128133,10.4828,0.914891,-0.0759539,10.4828,0.946002,0.00819498,10.4828,0.95758,-0.00819498,10.4828,0.95758,-0.00985408,10.4828,0.95758,0.00985408,10.4828,0.95758,0.00457143,10.4828,0.957586,-0.00457143,10.4828,0.957586,-0.00623053,10.4828,0.957586,0.00623053,10.4828,0.957586,-1.33531e-14,10.4828,0.957738,-0.0650053,10.424,0.963322,-0.069553,10.424,0.961003,-0.123203,10.424,0.936612,-0.12616,10.424,0.932706,-0.161034,10.424,0.886255,-0.162295,10.424,0.881196,-0.178347,10.424,0.826663,-0.178332,10.424,0.820421,-0.181394,10.424,0.752156,-0.180925,10.424,0.748096,-0.179088,10.424,0.685303,-0.178622,10.424,0.679819,-0.173997,10.424,0.614917,-0.173316,10.424,0.609372,-0.078942,10.424,0.988911,-0.073102,10.424,0.989986,-0.145608,10.424,0.954755,-0.140695,10.424,0.958262,-0.189112,10.424,0.897222,-0.185604,10.424,0.902825,-0.225784,10.424,0.679177,-0.2257,10.424,0.684763,-0.211573,10.424,0.829547,-0.211345,10.424,0.834348,-0.221773,10.424,0.75381,-0.223398,10.424,0.758268,-0.22596,10.424,0.614282,-0.228157,10.424,0.619872,-0.17158,10.424,0.565145,-0.178411,10.424,0.550243,-0.169939,10.424,0.635803,-0.172293,10.424,0.620593,-0.172069,10.424,0.705826,-0.176835,10.424,0.690887,-0.174217,10.424,0.770334,-0.179268,10.424,0.756239,-0.170509,10.424,0.843348,-0.176131,10.424,0.832163,-0.14832,10.424,0.900004,-0.15808,10.424,0.890182,-0.104625,10.424,0.941971,-0.118453,10.424,0.938467,-0.044837,10.424,0.963167,-0.059652,10.424,0.963662,-0.186926,10.424,0.545828,-0.219663,10.424,0.549933,-0.226529,10.424,0.564694,-0.231463,10.424,0.634831,-0.227784,10.424,0.690448,-0.231452,10.424,0.705686,-0.226126,10.424,0.773643,-0.209977,10.424,0.847539,-0.183338,10.424,0.908277,-0.178312,10.424,0.920318,-0.136028,10.424,0.962194,-0.123527,10.424,0.972689,-0.0675959,10.424,0.992187,-0.0530842,10.424,0.998464,-0.211144,10.424,0.545648,-0.227908,10.424,0.593546,-0.226273,10.424,0.608757,-0.226796,10.424,0.663834,-0.226903,10.424,0.735099,-0.222344,10.424,0.74958,-0.218289,10.424,0.808435,-0.212907,10.424,0.824867,-0.199405,10.424,0.88106,-0.158815,10.424,0.944681,-0.0952392,10.424,0.986378,-0.0237298,10.424,1.00231,0.0237298,10.424,1.00231,0.00521432,10.424,1.00071,-0.00521432,10.424,1.00071,-0.00687343,10.424,1.00071,0.00687343,10.424,1.00071,-1.34576e-14,10.424,1.00005,-0.170885,10.424,0.594154,-0.176,10.424,0.664727,-0.177029,10.424,0.734353,-0.176336,10.424,0.802808,-0.164341,10.424,0.866644,-0.132602,10.424,0.920013,-0.0814086,10.424,0.953083,0.0036201,10.424,0.971476,-0.0036201,10.424,0.971476,-0.0052792,10.424,0.971476,0.0052792,10.424,0.971476,-0.0173095,10.424,0.966744,0.0173095,10.424,0.966744,-1.34576e-14,10.424,0.972758,-0.0653269,10.368,0.97232,-0.0663386,10.368,0.971679,-0.123915,10.368,0.945627,-0.124633,10.368,0.944771,-0.162088,10.368,0.894691,-0.162236,10.368,0.893495,-0.180377,10.368,0.83428,-0.180158,10.368,0.833213,-0.182031,10.368,0.759532,-0.181646,10.368,0.758447,-0.179479,10.368,0.693463,-0.178981,10.368,0.692245,-0.175859,10.368,0.623065,-0.175072,10.368,0.621831,-0.0743119,10.368,0.997643,-0.0729596,10.368,0.997663,-0.14187,10.368,0.965759,-0.140541,10.368,0.966218,-0.18625,10.368,0.909199,-0.185348,10.368,0.910021,-0.225172,10.368,0.691675,-0.22463,10.368,0.692928,-0.211189,10.368,0.836312,-0.21131,10.368,0.837617,-0.220706,10.368,0.76072,-0.22129,10.368,0.762064,-0.224274,10.368,0.622459,-0.225061,10.368,0.623978,-0.168708,10.368,0.566937,-0.178094,10.368,0.55401,-0.167775,10.368,0.637724,-0.175141,10.368,0.624621,-0.168553,10.368,0.707806,-0.178504,10.368,0.694995,-0.172139,10.368,0.772759,-0.181152,10.368,0.76073,-0.171897,10.368,0.844112,-0.179645,10.368,0.835507,-0.151005,10.368,0.90358,-0.161107,10.368,0.895763,-0.108911,10.368,0.946692,-0.122427,10.368,0.945961,-0.0506905,10.368,0.969521,-0.0638013,10.368,0.972256,-0.17912,10.368,0.552526,-0.219971,10.368,0.553708,-0.229148,10.368,0.566496,-0.232697,10.368,0.636603,-0.225396,10.368,0.694472,-0.233264,10.368,0.707396,-0.227574,10.368,0.77564,-0.214203,10.368,0.849641,-0.185069,10.368,0.911456,-0.184808,10.368,0.923863,-0.139396,10.368,0.967415,-0.130751,10.368,0.979376,-0.0715272,10.368,0.998501,-0.0598757,10.368,1.00775,-0.218969,10.368,0.552239,-0.233573,10.368,0.608022,-0.224925,10.368,0.621223,-0.23233,10.368,0.678309,-0.229309,10.368,0.749439,-0.221225,10.368,0.759709,-0.219834,10.368,0.825292,-0.211918,10.368,0.835419,-0.199313,10.368,0.898979,-0.155809,10.368,0.959673,-0.0897174,10.368,0.999674,-0.0179931,10.368,1.01297,0.0179931,10.368,1.01297,-1.35572e-14,10.368,1.0084,-0.00208279,10.368,1.0084,0.00208279,10.368,1.0084,-1.35572e-14,10.368,1.00795,-0.16516,10.368,0.608697,-0.171147,10.368,0.679277,-0.174768,10.368,0.74804,-0.174048,10.368,0.819196,-0.16166,10.368,0.880015,-0.128345,10.368,0.931554,-0.0762117,10.368,0.962757,-1.35572e-14,10.368,0.981247,-0.00201774,10.368,0.981247,0.00201774,10.368,0.981247,0.00854738,10.368,0.974434,-0.00854738,10.368,0.974434,-0.0102065,10.368,0.974434,0.0102065,10.368,0.974434,-1.35572e-14,10.368,0.981506,-0.0729526,10.362,0.998044,-0.140534,10.362,0.966612,-0.185338,10.362,0.910346,-0.22454,10.362,0.693333,-0.219345,10.362,0.552566,-0.0653429,10.362,0.972767,-0.12395,10.362,0.946074,-0.162126,10.362,0.895117,-0.180432,10.362,0.834701,-0.182274,10.362,0.759896,-0.179716,10.362,0.693868,-0.175895,10.362,0.623469,-0.178743,10.362,0.552858,-1.35678e-14,10.362,1.00834,-1.35678e-14,10.362,0.98194,-0.0601899,10.3616,1.00812,-0.131055,10.3616,0.979627,-0.185044,10.3616,0.923983,-0.214294,10.3616,0.8497,-0.227662,10.3616,0.775732,-0.233389,10.3616,0.707482,-0.232882,10.3616,0.636694,-0.229127,10.3616,0.566586,-0.017689,10.3616,1.0134,0.017689,10.3616,1.0134,-0.08941,10.3616,1.00024,-0.155591,10.3616,0.960347,-0.199203,10.3616,0.899825,-0.219881,10.3616,0.825997,-0.229351,10.3616,0.750063,-0.232507,10.3616,0.67903,-0.233742,10.3616,0.608742,-0.0510038,10.3616,0.969931,-0.109178,10.3616,0.947007,-0.151223,10.3616,0.903807,-0.17201,10.3616,0.844259,-0.172533,10.3616,0.772886,-0.168907,10.3616,0.707904,-0.167777,10.3616,0.637817,-0.168716,10.3616,0.567025,0.0082144,10.3616,0.974912,-0.0082144,10.3616,0.974912,-0.0098735,10.3616,0.974912,0.0098735,10.3616,0.974912,-0.0759873,10.3616,0.963329,-0.128201,10.3616,0.932196,-0.161618,10.3616,0.880715,-0.174046,10.3616,0.820026,-0.174747,10.3616,0.74863,-0.171026,10.3616,0.679996,-0.164992,10.3616,0.609417,-1.35678e-14,10.362,1.00878,-0.00184508,10.362,1.00878,0.00184508,10.362,1.00878,-0.0740821,10.362,0.998077,-0.141685,10.362,0.966305,-0.186123,10.362,0.9097,-0.211817,10.362,0.835899,-0.221131,10.362,0.760234,-0.225064,10.362,0.692295,-0.224758,10.362,0.621841,-1.35678e-14,10.362,0.981732,-0.00185591,10.362,0.981732,0.00185591,10.362,0.981732,-0.0661791,10.362,0.972209,-0.124558,10.362,0.94537,-0.162224,10.362,0.894108,-0.180229,10.362,0.833832,-0.181896,10.362,0.758982,-0.179235,10.362,0.692862,-0.175155,10.362,0.62245,-0.0717223,10.362,0.998814,-0.139563,10.362,0.967674,-0.185152,10.362,0.911611,-0.211292,10.362,0.837764,-0.221204,10.362,0.762253,-0.225262,10.362,0.694671,-0.224887,10.362,0.624182,-0.219987,10.362,0.553896,-0.0640072,10.362,0.972682,-0.122624,10.362,0.946333,-0.161252,10.362,0.896044,-0.179756,10.362,0.83576,-0.18147,10.362,0.760937,-0.178814,10.362,0.695199,-0.175204,10.362,0.62482,-0.178079,10.362,0.554197,-0.224142,10.362,0.622865,-0.220642,10.362,0.761078,-0.211143,10.362,0.836625,-0.0729526,10.33,0.998044,-0.140534,10.3274,0.966612,-0.185393,10.3277,0.909914,-0.225252,10.3069,0.693333,-0.219345,10.3064,0.552566,-0.0653429,10.33,0.972767,-0.12395,10.3272,0.946074,-0.160921,10.3276,0.896167,-0.178626,10.3084,0.833852,-0.182601,10.3064,0.757577,-0.179675,10.3069,0.693868,-0.176643,10.3076,0.623469,-0.178743,10.3064,0.552858,-1.36247e-14,10.33,1.00834,-1.36247e-14,10.33,0.98194,-0.0599612,10.325,1.00717,-0.130511,10.325,0.978815,-0.172526,10.2868,0.925894,-0.213094,10.3005,0.852416,-0.225418,10.2998,0.775609,-0.230729,10.2968,0.7075,-0.230053,10.3007,0.636742,-0.226517,10.2981,0.566605,-0.0174944,10.325,1.01244,0.0174944,10.325,1.01244,-0.0890758,10.325,0.999323,-0.154575,10.2867,0.948063,-0.197371,10.2997,0.899073,-0.217654,10.3002,0.826091,-0.228385,10.2968,0.747641,-0.232098,10.3006,0.679071,-0.230783,10.2983,0.608771,-0.0512325,10.325,0.970882,-0.109723,10.3245,0.947819,-0.152192,10.3201,0.910004,-0.170002,10.3006,0.84341,-0.177003,10.2998,0.773009,-0.173861,10.2968,0.707885,-0.170574,10.3007,0.637768,-0.171326,10.2981,0.567006,0.00840897,10.325,0.97587,-0.00840897,10.325,0.97587,-0.0100681,10.325,0.97587,0.0100681,10.325,0.97587,-0.0763215,10.325,0.964248,-0.134273,10.32,0.932191,-0.159273,10.2988,0.882956,-0.175784,10.3003,0.819536,-0.176251,10.2968,0.746345,-0.171747,10.3006,0.679955,-0.167906,10.2983,0.609388,-1.36247e-14,10.33,1.00878,-0.00184509,10.33,1.00878,0.00184509,10.33,1.00878,-0.0740821,10.33,0.998077,-0.141685,10.3273,0.966305,-0.186171,10.3278,0.909262,-0.211986,10.3084,0.838449,-0.222137,10.3062,0.757812,-0.225927,10.307,0.692295,-0.223661,10.3075,0.621841,-1.36247e-14,10.33,0.981732,-0.00185591,10.33,0.981732,0.00185591,10.33,0.981732,-0.0661791,10.33,0.972209,-0.124558,10.3271,0.94537,-0.160938,10.3277,0.895186,-0.178542,10.3085,0.8328,-0.182072,10.3062,0.756473,-0.179001,10.307,0.692862,-0.17595,10.3075,0.62245,-0.0717223,10.33,0.998814,-0.139563,10.3276,0.967674,-0.185206,10.3275,0.91119,-0.211652,10.3084,0.840889,-0.221936,10.3065,0.760432,-0.225837,10.3067,0.694671,-0.223791,10.3077,0.624182,-0.219987,10.3064,0.553896,-0.0640071,10.33,0.972682,-0.122624,10.3273,0.946333,-0.160094,10.3275,0.897059,-0.177683,10.3085,0.834988,-0.182021,10.3065,0.758997,-0.17907,10.3067,0.695199,-0.175993,10.3077,0.62482,-0.178079,10.3064,0.554197,-0.223045,10.3076,0.622865,-0.221511,10.3063,0.75891,-0.211388,10.3084,0.839436,-0.399454,10.1912,0.82599,-0.452448,11.5694,0.616933,-0.426792,11.5367,-0.348324,-0.132732,10.1853,-0.400425,-1.43325e-14,9.9315,1.13895,-0.255323,9.89616,1.10514,-0.38941,10.0171,0.925418,-0.443333,10.1314,0.659111,-0.392419,10.1217,0.395387,-0.380406,10.0928,0.138624,-0.378999,10.1807,-0.089564,-0.366665,10.1909,-0.159978,-0.425401,10.2982,0.753833,-0.416764,10.4044,0.755624,-0.371068,10.6271,0.80898,-0.461082,11.2445,0.645257,-0.462439,11.4362,0.637338,-0.414528,10.371,-0.348619,-0.52239,10.6349,-0.451086,-0.551502,10.8753,-0.486473,-0.522967,11.3342,-0.428964,-0.459395,11.472,-0.373482,-1.12849e-14,11.6472,-0.455321,-0.217016,11.6155,-0.432179,-0.342097,11.5759,-0.390496,-1.12079e-14,11.6905,0.746098,-0.17906,11.6697,0.728054,-0.335935,11.6223,0.684665,-0.47637,11.6109,0.494521,-0.514765,11.6364,0.279343,-0.515404,11.639,0.149359,-0.495261,11.6079,-0.117871,-0.456745,11.569,-0.25749,2.82318e-14,9.90307,0.405319,-4.68144e-15,9.8353,0.694383,-1.44116e-14,9.88699,1.14111,-0.168114,9.92578,0.365245,-0.209143,9.8656,0.638926,-0.285437,9.83993,1.09844,-0.294308,9.96785,0.280378,-0.329722,9.97209,0.513292,-0.41753,9.98085,0.885168,-1.11021e-14,11.7501,-0.323595,-0.215544,11.7115,-0.307005,-0.35726,11.6542,-0.276448,-1.08951e-14,11.8666,-0.148027,-0.203216,11.8247,-0.135543,-0.399297,11.7413,-0.108161,-1.07807e-14,11.931,0.152039,-0.211692,11.8918,0.16615,-0.419436,11.7798,0.163066,-1.07609e-14,11.9422,0.366983,-0.226603,11.8865,0.365015,-0.410207,11.782,0.317379,-1.0939e-14,11.8419,0.595099,-0.192763,11.8107,0.574473,-0.355605,11.7368,0.534284,-1.17373e-14,11.3925,0.926989,-1.15136e-14,11.5184,0.846887,-0.134471,10.7204,1.00746,-0.242234,11.3217,0.924598,-0.188895,11.4656,0.849156,-0.219585,10.6295,0.90955,-0.37953,11.2583,0.838598,-0.356523,11.4284,0.787248,-0.463262,10.2992,0.600177,-0.481286,10.4454,0.631333,-0.477137,10.6648,0.695305,-0.502096,11.2526,0.513941,-0.516038,11.4654,0.487412,-0.470139,10.3437,0.351654,-0.583408,10.6233,0.269269,-0.595596,10.7462,0.313027,-0.584441,11.2912,0.282267,-0.561977,11.4981,0.266841,-0.47537,10.2758,0.150212,-0.558481,10.4999,0.135879,-0.616291,11.3373,0.119779,-0.576561,11.5103,0.139566,-0.45109,10.3343,-0.114076,-0.609468,10.6043,-0.0796962,-0.665762,10.8138,-0.185119,-0.618417,11.3431,-0.170431,-0.567669,11.4973,-0.132473,-0.450826,10.3559,-0.225601,-0.564394,10.6269,-0.310792,-0.613202,10.855,-0.36269,-0.585796,11.3334,-0.312326,-0.533168,11.4747,-0.271723,-1.14644e-14,11.5461,-0.535241,-1.17733e-14,11.3722,-0.621512,-1.26533e-14,10.8768,-0.714553,-1.3195e-14,10.5719,-0.681045,-1.36114e-14,10.3375,-0.554951,-0.225215,11.5182,-0.499819,-0.234709,11.3588,-0.576113,-0.241441,10.8801,-0.674925,-0.219562,10.5853,-0.633742,-0.172581,10.35,-0.524528,-0.353519,11.4917,-0.44716,-0.390978,11.3424,-0.514406,-0.436582,10.8831,-0.588709,-0.39383,10.6186,-0.551646,-0.312326,10.3689,-0.452937,-0.375512,10.4836,0.802358,-0.527557,10.7042,-0.46155,-1.32964e-14,10.5148,1.03189,-0.0746281,10.5004,1.03672,-0.239311,10.5124,0.915533,-0.473743,10.5466,0.665379,-0.586791,10.6745,0.302855,-0.631247,10.6764,-0.102343,-0.582711,10.6981,-0.321279,-1.30564e-14,10.6499,-0.689956,-0.226577,10.661,-0.647556,-0.408647,10.6856,-0.565365,-0.429672,10.9069,0.790537,-0.434034,10.9295,0.775519,-0.557404,10.977,-0.48969,-0.556589,11.0769,-0.484563,-0.164002,10.9147,0.956207,-0.340487,10.9081,0.880304,-0.346012,10.9256,0.87657,-0.511805,10.9219,0.664659,-0.510421,10.9436,0.651184,-0.614866,10.8841,0.291385,-0.618445,10.9572,0.2917,-0.683845,10.958,-0.244369,-0.681679,11.0684,-0.226367,-0.624711,10.9688,-0.379683,-0.629442,11.0717,-0.37189,-1.2276e-14,11.0892,-0.69889,-1.24457e-14,10.9937,-0.709996,-0.245583,11.0951,-0.65788,-0.244428,10.9908,-0.669796,-0.440576,11.0939,-0.578723,-0.440186,10.9818,-0.584458,-0.201537,10.4382,0.975121,-0.108843,10.439,1.07459,-1.34218e-14,10.4442,1.05601,-0.308051,10.4264,0.884971,-0.355054,10.3744,0.852871,-0.364427,10.3059,0.863021,-0.271216,10.1545,1.05667,-0.142921,10.1031,1.11827,-1.40354e-14,10.0988,1.11347,-0.342999,10.2345,0.924549,-0.163353,10.3127,1.07007,-1.37021e-14,10.2864,1.13076,-0.0558012,10.2926,1.11897,-0.110627,10.3011,1.09951,-0.209292,10.3204,1.01188,-0.221127,10.3236,1.00561,-0.200393,10.3099,1.05337,-1.36783e-14,10.2998,1.15783,-0.0737163,10.3056,1.15238,-0.143327,10.3143,1.11248,-1.23666e-14,11.0382,1.07358,-0.080455,11.0282,0.968881,-0.0797285,10.9429,1.03352,-0.0666131,10.6966,1.20725,-0.0847347,10.5991,1.22891,-0.193469,10.5752,1.12581,7.12331e-05,10.599,1.26563,-0.191561,10.6352,1.08716,-1.25269e-14,10.948,1.12485,5.41494e-06,10.695,1.24467,-0.17557,10.9276,0.929765,-1.19732e-14,11.2597,0.966229,-0.104687,11.2253,0.899282,-0.444006,10.9854,0.729617,-0.551947,11.1574,-0.472197,-0.389445,10.9889,0.783373,-0.500521,11.0151,0.618519,-0.645483,11.1319,0.154283,-0.665504,11.1914,0.017294,-0.67612,11.1399,-0.163789,-0.624597,11.1555,-0.349557,-1.2144e-14,11.1635,-0.686251,-0.245075,11.1624,-0.644418,-0.438935,11.1617,-0.570013,-1.38331e-14,10.2126,1.1688,-0.0875737,10.2184,1.15434,-0.172363,10.2711,1.10676,-0.258891,10.2877,1.0266,-0.310081,10.3164,0.953602,-0.3173,10.3358,0.940072,-0.28089,10.3491,0.997137,-0.0951129,10.3845,1.17147,-1.35594e-14,10.3667,1.18683,-0.189253,10.3586,1.08553,-0.365985,11.009,0.787728,-0.120678,11.2114,0.857063,-0.17886,10.9494,0.887645,-0.0847581,11.0566,0.901111,-0.28845,10.9537,0.87209,-0.345076,11.2088,0.787867,-0.246251,11.2582,0.81763,-0.220332,11.2338,0.765134,-0.322139,11.1739,0.73378,-0.27647,10.9598,0.818784,-0.0628091,11.0781,0.849971,-0.17706,10.9623,0.8427,-0.106058,11.203,0.806999,-0.349806,11.0095,0.772671,-0.350653,11.0241,0.734151,-0.0954312,11.2208,0.761477,-0.148003,10.968,0.806174,-0.0297216,11.1079,0.799739,-0.277907,10.9516,0.781051,-0.329779,11.1829,0.698248,-0.222629,11.2486,0.721882,-0.226299,11.2523,0.667157,-0.324742,11.182,0.664605,-0.273201,10.9615,0.723778,-0.0276449,11.1172,0.731768,-0.145532,10.9552,0.74653,-0.0959922,11.224,0.696627,-0.34852,11.0256,0.690244,-0.553638,10.706,0.498157,-0.524777,10.5042,0.433283,-0.539238,10.599,0.472243,-0.571565,10.9092,0.513722,-0.57351,10.9546,0.507771,-0.554867,11.0504,0.470302,-0.563604,10.5585,0.211453,-0.624448,11.0348,0.275171,-0.665355,11.0257,0.210262,-0.619018,10.571,0.176682,-0.792715,11.143,-0.173748,-0.726978,11.2028,0.010407,-0.688244,11.1384,0.141538,-0.804249,11.0396,-0.255922,-0.808829,10.9159,-0.27337,-0.684608,10.9614,0.184497,-0.767663,10.6706,-0.1131,-0.62165,10.7204,0.196969,-0.805125,10.8097,-0.223616,-0.736733,10.5743,-0.0728808,-0.624058,10.5162,0.130889,-0.611291,10.659,0.206254,-0.698892,10.9688,0.160044,-0.791194,10.9101,-0.199463,-0.782406,11.004,-0.197145,-0.643064,10.5959,0.123046,-1.39254e-14,10.1607,1.10548,-0.114988,10.1662,1.12446,-0.218483,10.2091,1.06793,-0.296664,10.2629,0.973748,-0.328988,10.3106,0.92367,-0.327741,10.3543,0.911523,-0.298275,10.3926,0.932793,-0.103236,10.4141,1.11741,-1.34869e-14,10.4076,1.10157,-0.193333,10.396,1.03188,-0.152956,10.3295,1.01524,-0.0733876,10.324,1.04324,-1.36295e-14,10.3273,1.04689,-0.205792,10.3296,0.987933,-0.226919,10.3235,0.977459,-0.214168,10.3026,0.980081,-0.110411,10.2744,1.02057,-0.052524,10.2632,1.03307,-1.37435e-14,10.2631,1.03678,-0.17657,10.2881,0.998247,-0.202636,10.3148,1.01855,-0.145937,10.3025,1.06869,-0.0757857,10.293,1.10036,-1.36991e-14,10.2881,1.10454,-0.221201,10.3216,0.99253,-0.209041,10.3179,0.995313,-0.164482,10.3175,1.03504,-0.11032,10.3114,1.062,-0.0559177,10.3061,1.07749,-1.36663e-14,10.3066,1.08655,-1.38485e-14,10.204,1.16627,-0.0894155,10.2108,1.15418,-0.175529,10.2667,1.10377,-0.263028,10.2859,1.02136,-0.313183,10.3161,0.950864,-0.319437,10.3369,0.937709,-0.281958,10.3526,0.992235,-0.0956182,10.3867,1.16771,-1.3554e-14,10.3698,1.18328,-0.189492,10.361,1.0819,-0.252671,9.77079,0.288281,-0.162125,9.75374,0.328641,-9.08122e-09,9.72609,0.464248,-0.356487,9.87513,-0.17497,-0.387756,9.86153,-0.0925043,-0.348683,9.80152,0.206011,-0.233851,9.89524,-0.361654,-0.116009,9.90109,-0.421934,5.61898e-14,9.90886,-0.461296,-0.304767,9.88925,-0.274581,-0.422755,9.50869,-0.353824,-1.9812e-09,9.54597,-0.634602,-0.204347,9.53733,-0.566356,-0.321508,9.51335,-0.452169,-0.419412,9.48431,0.269811,-0.544903,9.51407,-0.150143,-0.482752,9.51155,-0.265337,-2.5313e-08,9.3268,0.43295,-0.137342,9.34716,0.407325,-0.302715,9.46059,0.417372,6.45004e-14,9.73536,-0.53064,-0.157355,9.71999,-0.479324,-0.269655,9.71141,-0.401103,-0.339643,9.69807,-0.312836,-0.439502,9.66681,-0.113468,-0.367949,9.61995,0.238593,-0.409912,9.67975,-0.200566,-0.115462,9.52801,0.363312,-2.2321e-08,9.53695,0.451493,-0.247966,9.60504,0.347553,-0.352463,10.0147,-0.158968,-0.221249,10.0117,-0.339442,-1.21695e-14,11.1492,1.02055,-0.0829814,11.1317,0.929662,-0.0926938,11.138,0.880209,-0.070862,11.1503,0.82516,-0.0484494,11.1726,0.781049,-0.0591887,11.177,0.711778,-0.452531,11.0749,0.678757,-0.401231,11.1015,0.754424,-0.488835,11.1222,0.555562,-0.379924,11.0927,0.755029,-0.359399,11.0926,0.73821,-0.371697,11.0941,0.717259,-0.355616,11.0938,0.674933,-0.570062,11.1721,0.382147,-0.631332,11.0907,0.234523,-0.672029,11.0681,0.19401,-0.477474,10.5353,-0.409513,-0.520347,10.438,0.11689,-0.522838,10.5056,-0.148459,-0.518917,10.5182,-0.277649,-1.33616e-14,10.4781,-0.636822,-0.2022,10.4973,-0.600333,-0.363514,10.532,-0.518593,-0.535467,11.241,-0.451351,-0.615496,11.2182,0.211317,-0.641511,11.2592,0.0775873,-0.647995,11.2504,-0.188306,-0.605029,11.2447,-0.333,-1.19544e-14,11.2703,-0.658587,-0.231329,11.2532,-0.618527,-0.422362,11.2394,-0.548997,-0.575224,10.7238,0.397726,-0.549992,10.5628,0.32868,-0.56433,10.635,0.373522,-0.594298,10.8928,0.394905,-0.598062,10.9497,0.378241,-0.519475,10.4921,0.237282,-0.596076,11.0451,0.333038,-0.606307,11.1496,0.276202,-0.104556,11.637,-0.452158,-0.0810043,11.6856,0.740934,-0.102978,11.7363,-0.321285,-0.102023,11.8457,-0.141785,-0.106261,11.9175,0.155022,-0.114512,11.9191,0.365999,-0.0897977,11.8349,0.58744,-0.0947687,11.4734,0.862457,-0.120671,11.37,0.925794,-0.086705,10.347,-0.541123,-0.110196,10.5786,-0.657394,-0.121135,10.8784,-0.694739,-0.110796,11.3685,-0.605683,-0.108349,11.536,-0.526789,-0.113703,10.6554,-0.668756,-0.123206,11.0921,-0.678385,-0.122629,10.9922,-0.689896,-0.122952,11.1629,-0.665335,-0.0456086,9.90349,-0.444072,-0.0818424,9.5345,-0.611983,-0.0404314,9.72569,-0.517485,-0.101515,10.4892,-0.619215,-0.116079,11.2617,-0.638557,-0.155487,11.2881,0.889681,-0.176341,11.2487,0.839736,-0.164725,11.2199,0.786467,-0.158635,11.2454,0.743145,-0.160591,11.248,0.6832,-1.18433e-14,11.3328,0.940846,-0.0931579,11.3196,0.911592,-0.0602381,11.241,0.935437,-0.064217,10.5023,1.03627,-0.0966303,10.4394,1.07284,-0.0671636,10.3046,1.15284,-0.0411314,11.0379,1.02767,-0.0363106,10.5965,1.26088,-0.0392611,10.949,1.08328,-0.0302731,10.6938,1.23041,-0.0863593,10.3825,1.17288,-0.0933653,10.4134,1.11593,-0.0387729,10.3283,1.045,-0.044513,10.2904,1.10084,-0.086801,10.3849,1.16914,-0.0440056,11.1401,0.979394,-0.510536,11.627,0.0092895,-0.415348,11.7633,-0.0014057,-0.207564,11.8602,-0.00689002,-1.08383e-14,11.8986,-0.00767155,-0.58388,11.5109,0.00176961,-0.629859,11.3501,-0.0274971,-0.668748,11.1714,-0.0848714,-0.767713,11.1942,-0.0755102,-0.750287,11.1399,-0.0654209,-0.651396,11.263,-0.0557948,-0.104197,11.8794,-0.00728078,-0.71024,11.0828,0.126623,-0.68804,11.0174,0.164007,-0.645955,10.686,0.139051,-0.652307,10.5689,0.106154,-0.767096,11.091,-0.143253,-0.729809,11.1359,0.0157568,-0.787169,10.8341,-0.153945,-0.766174,10.715,-0.0743866,-0.75185,10.6582,-0.0369792,-0.638572,10.7274,0.158951,-0.695855,11.0491,0.147974,-0.701235,10.917,0.127829,-0.686508,10.8899,0.146719,-0.652296,10.7752,0.13451,-0.632861,10.7665,0.177561,-0.384596,10.1327,0.0524655,-0.567372,10.4946,0.0631254,-0.451005,10.2975,0.032203,-0.673685,10.4607,0.0561098,-0.408104,9.83161,0.0616258,-0.552404,9.5045,0.0358535,-0.46998,9.64566,0.0489649,-0.519454,10.4519,0.0266493,-0.675461,10.5793,0.0614854,-0.422514,10.3521,0.754728,-0.471173,10.3767,0.597881,-0.359741,10.3401,0.857946,-0.215355,10.3229,1.00849,-0.31369,10.3261,0.946837,-0.503327,10.4187,0.382881,-0.573506,10.5923,0.240061,-0.619214,10.637,0.208596,-0.328365,10.3325,0.917597,-0.224926,10.3144,0.977509,-0.215294,10.3187,0.993958,-0.31631,10.3265,0.944287,-0.534734,10.5284,0.283341,-0.678201,10.6832,0.154186,-0.389915,10.738,0.808349,-0.135413,10.7858,0.988593,-0.263819,10.7245,0.907632,-0.494763,10.7716,0.696993,-0.605187,10.8135,0.306467,-0.078288,10.7773,1.12311,-1.2797e-14,10.796,1.19573,-0.56524,10.7921,0.508561,-0.58534,10.8055,0.402182,-0.0283156,10.7894,1.171,-0.651476,10.8273,0.158056,-0.579509,10.5136,0.016258,-0.451246,10.3191,-0.0498534,-0.702187,10.4986,-0.0203015,-0.407297,9.84936,-0.0260794,-0.58061,9.51567,-0.0488354,-0.460001,9.65729,-0.0427455,-0.52134,10.4868,-0.0592735,-0.724198,10.6118,0.00814378,-0.661323,11.1347,0.147841,-0.642032,11.0324,0.2388,-0.641289,10.9656,0.201458,-0.602735,10.6387,0.237416,-0.583054,10.5868,0.204947,-0.587988,10.551,0.134747,-0.711682,11.1156,-0.143362,-0.696241,11.1719,0.013335,-0.719063,11.0595,-0.212123,-0.721965,10.9451,-0.230062,-0.708268,10.8148,-0.170336,-0.673587,10.6658,-0.072383,-0.649904,10.5942,-0.037935,-0.604266,10.701,0.247903,-0.647658,11.0773,0.215766,-0.718231,11.1575,-0.0815112,-0.612797,10.7648,0.242064,-0.641331,10.894,0.187727,-0.624977,10.506,0.0630326,-0.592894,10.6004,0.220809,-0.625475,10.8259,0.223558,-0.623004,10.5217,0.0147998,-0.460656,11.2741,0.644036,-0.500072,11.4036,-0.404726,-1.16632e-14,11.4342,0.892014,-0.23398,11.3439,0.912965,-0.37007,11.2935,0.830679,-0.512733,11.3445,0.493842,-0.575948,11.3986,0.270054,-0.602634,11.4263,0.13474,-0.599982,11.4244,-0.148575,-0.56708,11.4096,-0.289856,-1.16205e-14,11.4582,-0.590967,-0.228757,11.4377,-0.547593,-0.374168,11.4167,-0.488579,-0.119331,11.3912,0.916027,-0.108016,11.4514,-0.57715,-0.613788,11.4334,-0.00775994,-0.137521,10.9131,0.968562,-0.130821,10.7189,1.01856,-0.0401914,10.5278,1.07935,-0.233485,10.5164,0.94433,-1.32774e-14,10.5255,1.06941,-0.217914,10.6294,0.91916,-0.136935,10.9475,0.936697,-0.126494,10.9741,0.895146,-0.12342,10.9917,0.850724,-0.124244,10.9906,0.808526,-0.120997,10.9774,0.74701,-0.0351689,10.5183,1.07784,-0.127906,10.7864,0.996213,-0.404245,10.1327,0.429594,-0.504914,11.63,0.386099,-3.88688e-09,9.7896,0.817192,-0.236144,9.81615,0.741243,-0.358849,9.96274,0.568984,-0.389451,11.7719,0.421173,-0.216638,11.857,0.46152,-1.08329e-14,11.9016,0.475742,-0.547929,11.485,0.373463,-0.541634,11.2746,0.405494,-0.482063,10.3433,0.362299,-0.552703,10.6988,0.541043,-0.523456,10.5016,0.441584,-0.5373,10.5971,0.479398,-0.547223,10.9156,0.593866,-0.544784,10.9535,0.584453,-0.527694,11.0328,0.54441,-0.529448,11.1472,0.468855,-0.10258,11.8863,0.4718,-0.502899,10.4158,0.395472,-0.547713,10.7848,0.574532,-0.549136,11.3765,0.380214,-0.680623,11.1373,0.143322,-0.658752,11.0276,0.218341,-0.661412,10.9632,0.18864,-0.609031,10.6538,0.221445,-0.596998,10.5713,0.200415,-0.608952,10.5111,0.138736,-0.776212,11.1425,-0.172821,-0.718277,11.2012,0.0112359,-0.7869,11.0436,-0.252317,-0.791139,10.9218,-0.269892,-0.7854,10.8124,-0.215631,-0.750146,10.6708,-0.105534,-0.72383,10.5705,-0.0656742,-0.616729,10.7151,0.213672,-0.66513,11.0707,0.200169,-0.753705,11.1909,-0.077209,-0.62787,10.7681,0.193286,-0.667607,10.8853,0.162465,-0.662067,10.4721,0.05665,-0.605895,10.6209,0.214813,-0.642448,10.8262,0.180083,-0.689514,10.5074,-0.0132382,-0.648295,11.1324,0.153139,-0.627569,11.0344,0.268714,-0.6225,10.9587,0.275673,-0.586839,10.6263,0.263667,-0.567057,10.5632,0.210228,-0.570832,10.5193,0.137849,-0.686469,11.1149,-0.164975,-0.67096,11.1673,0.0165912,-0.692558,11.0658,-0.229353,-0.694938,10.9543,-0.247337,-0.678132,10.8142,-0.187734,-0.643037,10.6658,-0.100323,-0.619887,10.5976,-0.073352,-0.589893,10.6791,0.294138,-0.63423,11.0883,0.231194,-0.677532,11.1482,-0.0842749,-0.59865,10.7493,0.301786,-0.619564,10.8865,0.272008,-0.586366,10.505,0.0674749,-0.576948,10.5938,0.236649,-0.608789,10.8161,0.291847,-0.587649,10.5186,0.0147628,-0.690262,10.8168,0.0443389,-0.698211,10.8539,0.0381383,-0.652295,10.8172,0.134702,-0.731763,10.7139,0.0666362,-0.690132,10.6981,0.123304,-0.675461,10.5959,0.0649202,-0.715106,10.6144,0.0165672,-0.638753,10.691,0.123788,-0.700284,10.7022,0.0616478,-0.735362,10.7052,-0.00538407,-0.749447,10.7401,-0.0465187,-0.737426,10.6659,-0.0385318,-0.751306,10.727,-0.0769062,-0.751786,10.8575,-0.105106,-0.742845,10.8406,-0.0579251,-0.732326,10.8819,-0.0258034,-0.733486,10.9169,-0.0692055,-0.732016,10.9554,-0.0247638,-0.728453,10.9107,0.0198262,-0.718742,10.8665,-0.0127313,-0.708696,10.888,0.0305672,-0.711174,10.7415,-0.044398,-0.720938,10.8357,-0.0503472,-0.721681,10.7021,-0.00937895,-0.762661,11.0085,-0.0687209,-0.771348,10.9597,-0.115726,-0.73949,10.9114,-0.139477,-0.748139,10.8078,-0.0622364,-0.709492,10.8123,-0.0559991,-0.751107,10.8314,-0.158436,-0.753243,10.912,-0.205976,-0.749498,11.0055,-0.191622,-0.733251,11.0908,-0.140437,-0.715413,11.1357,-0.06538,-0.693682,11.1361,0.0126437,-0.692406,11.0489,0.142496,-0.685947,11.0153,0.15218,-0.679899,10.9711,0.145924,-0.687567,11.0798,0.123717,-0.41266,10.8282,0.799444,-0.149707,10.8502,0.9724,-0.308922,10.8197,0.893968,-0.511886,10.8506,0.680826,-0.610026,10.8488,0.298926,-0.0831169,10.864,1.07915,-1.26657e-14,10.8698,1.15985,-0.568014,10.8547,0.515562,-0.589819,10.8492,0.398544,-0.03369,10.8678,1.13634,-0.650336,10.8406,0.151253,-0.633403,10.8599,0.205642,-0.135137,10.8566,0.982404,-0.550912,10.8585,0.586865,-0.643729,10.8463,0.172516,-0.614176,10.8513,0.281927,-0.634146,10.8226,0.133344,-0.673339,10.8112,0.0730934,-0.672532,10.7667,0.100891,-0.691208,10.7616,0.0365957,-0.686134,10.7438,0.0824198,-0.620101,10.7293,0.153769,-0.630552,10.7646,0.132385,-0.694856,10.7991,-0.000749676,-0.699695,10.8339,-0.00587305,-0.673149,10.9341,0.111901,-0.700465,11.0464,0.0841271,-0.703234,10.9672,0.106715,-0.701355,11.0139,0.0962658,-0.736907,11.054,0.0360562,-0.70987,10.9477,0.0844722,-0.713396,10.9997,0.058729,-0.685604,10.919,0.0938407,-0.693887,10.8684,0.119749,-0.709115,10.8966,0.104323,-0.673228,10.8302,0.103724,-0.749707,11.041,-0.01575,-0.721114,10.9306,0.0513706,-0.723086,10.9823,0.0177463,-0.695762,10.9026,0.0674903,-0.693935,10.8514,0.0866304,-0.701632,10.8761,0.0755774,-0.673652,10.7783,0.0693107,-0.694919,10.7684,-0.000299593,-0.708718,10.776,-0.0532533,-0.540278,10.7867,-0.474951,-0.648505,10.7451,-0.143731,-0.598658,10.7726,-0.34249,-1.28549e-14,10.7633,-0.702254,-0.234009,10.7705,-0.66124,-0.422615,10.7843,-0.577037,-0.786394,10.7401,-0.168358,-0.117419,10.7669,-0.681747,-0.776599,10.7734,-0.113603,-0.690927,10.7403,-0.12136,-0.767773,10.7416,-0.160582,-0.660585,10.74,-0.144029,-0.76003,10.7735,-0.116831,-0.753437,10.7901,-0.0862972,-0.747974,10.7757,-0.0580357,-0.75013,10.7618,-0.0736133,-0.594223,10.7796,0.079863,-0.59239,10.8226,0.105135,-0.590312,10.7713,0.125581,-0.591702,10.7724,0.105406,-0.594189,10.8121,0.0837459,-0.591097,10.8153,0.126207,-0.10981,10.9255,0.996866,-0.0987208,10.706,1.11618,-0.0397788,10.5576,1.13564,-0.213013,10.5326,1.04454,3.3617e-06,10.5493,1.16577,-0.20367,10.6301,1.00368,-0.10602,10.9769,0.951272,-0.0926093,11.0101,0.902334,-0.0853769,11.0247,0.848527,-0.0672203,11.042,0.807893,-0.0624198,11.0423,0.740533,-0.0318004,10.5562,1.14203,-0.103097,10.7819,1.05966,-0.109127,10.8603,1.03078,-0.175842,10.6732,0.958505,-0.166629,10.5089,0.976128,-0.23654,10.9055,0.918255,-0.157137,10.4415,1.02486,-0.109225,10.3097,1.13213,-0.132885,10.5853,1.1733,-0.129065,10.6634,1.15101,-0.239962,10.9252,0.903168,-0.143002,10.3709,1.12815,-0.23806,10.9423,0.879472,-0.227251,10.9488,0.832923,-0.213729,10.9515,0.798215,-0.21169,10.943,0.739148,-0.148294,10.4066,1.07465,-0.110994,10.3244,1.0338,-0.111228,10.2982,1.08437,-0.143334,10.3732,1.12447,-0.186187,10.7367,0.948112,-0.157427,10.5152,1.0285,-0.173326,10.6726,0.968859,-0.216893,10.8216,0.933184,-0.142299,10.5337,1.09552,-0.151196,10.668,1.05993,-0.0978939,10.6854,1.06053,-0.0939712,10.6621,0.978184,-0.0524107,10.6918,1.0773,-0.0476334,10.665,0.995607,-0.0574576,10.6268,1.12429,-0.0553495,10.5928,1.02847,-0.177612,10.596,1.00174,-0.178195,10.6251,1.0985,-1.391e-14,10.1694,1.01519,-0.0394381,10.1692,1.01097,-0.241828,10.2858,0.943414,-0.250902,10.3433,0.939997,-1.35081e-14,10.3956,1.00991,-0.16732,10.3805,0.974832,-0.0586161,10.3913,1.01158,-0.223326,10.3604,0.950324,-0.10163,10.1917,0.993811,-0.22354,10.2323,0.955849,-0.0286463,10.3972,1.01356,-0.253877,10.3213,0.938548,-0.104391,10.3751,1.0003,-0.145697,10.4487,0.816518,-0.263806,10.2891,0.811724,-0.0421492,10.4442,0.816366,-0.195139,10.1666,0.813551,-1.39902e-14,10.1242,0.817029,-0.0513,10.1255,0.816865,-0.117556,10.1357,0.815838,-0.247324,10.2226,0.811345,-0.263334,10.3619,0.813794,-0.241704,10.4152,0.815076,-1.34269e-14,10.4414,0.816519,-0.0891039,10.4479,0.816681,-0.202505,10.4398,0.815921,-0.211328,10.4418,0.482295,-0.0902159,10.4473,0.471235,-1.34365e-14,10.4359,0.473359,-0.243899,10.4209,0.482371,-0.248375,10.3701,0.480286,-0.211108,10.2532,0.472559,-0.115512,10.1634,0.458181,-0.0527663,10.173,0.46396,-1.38979e-14,10.1762,0.463935,-0.172066,10.1982,0.462861,-0.0422708,10.4409,0.469801,-0.234289,10.3105,0.477969,-0.151055,10.4503,0.477849,-0.106746,10.4044,0.383907,-0.180663,10.3141,0.402206,-0.0300477,10.3977,0.382492,-0.132566,10.2405,0.387593,-1.38902e-14,10.1805,0.381336,-0.0374266,10.182,0.381688,-0.082032,10.1977,0.375535,-0.160964,10.2787,0.394712,-0.196317,10.3551,0.412009,-0.172206,10.3839,0.395286,-1.35106e-14,10.3942,0.386154,-0.0638514,10.4022,0.380147,-0.149242,10.3983,0.391901,-0.0337372,10.2938,0.352247,-1.36874e-14,10.2947,0.352385,-0.0729417,10.3071,0.351893,-0.118441,10.3271,0.362759,-0.134558,10.3366,0.370138,-0.154695,10.3425,0.379841,-0.243899,10.4209,0.749809,-0.243899,10.4209,0.682949,-0.243899,10.4209,0.61609,-0.243899,10.4209,0.549231,-0.211328,10.4418,0.749793,-0.211328,10.4418,0.682919,-0.211328,10.4418,0.616044,-0.211328,10.4418,0.549169,-0.263446,10.3594,0.748244,-0.261445,10.3625,0.681927,-0.259458,10.366,0.615388,-0.260396,10.3716,0.548855,-0.194968,10.1628,0.743984,-0.193579,10.1546,0.672167,-0.188229,10.1673,0.600696,-0.184861,10.1778,0.532505,-0.247174,10.2111,0.743963,-0.245873,10.2068,0.676649,-0.23831,10.219,0.608753,-0.231547,10.2329,0.542132,-0.118733,10.1408,0.744121,-0.11842,10.1358,0.668817,-0.116694,10.1464,0.590886,-0.115322,10.1497,0.524354,-0.0525052,10.1276,0.744881,-0.0530738,10.1277,0.670208,-0.0533342,10.1433,0.601175,-1.39881e-14,10.1254,0.744688,-1.39848e-14,10.1273,0.670636,-1.39535e-14,10.1449,0.60426,-0.0913876,10.4469,0.747698,-0.0910947,10.447,0.678582,-0.0908017,10.4471,0.609466,-0.0905088,10.4472,0.540351,-0.0431541,10.4413,0.747307,-0.0416607,10.4402,0.677712,-0.0418641,10.4404,0.608409,-0.0420674,10.4406,0.539105,-1.34331e-14,10.4378,0.747819,-1.34365e-14,10.4359,0.679344,-1.34365e-14,10.4359,0.610682,-1.34365e-14,10.4359,0.542021,-0.263461,10.2792,0.745829,-0.260614,10.283,0.679577,-0.256365,10.2921,0.613192,-0.252771,10.301,0.547317,-0.151055,10.4503,0.748904,-0.151055,10.4503,0.681141,-0.151055,10.4503,0.613377,-0.151055,10.4503,0.545613,-0.129014,10.45,0.882277,-0.0771839,10.4544,0.884508,-0.189687,10.4391,0.877803,-0.243497,10.257,0.869308,-0.26089,10.3139,0.867099,-0.258923,10.3652,0.868102,-0.0376292,10.4486,0.884154,-1.34179e-14,10.4464,0.884075,-1.39789e-14,10.1306,0.897189,-0.0475267,10.135,0.894163,-0.114516,10.1493,0.889364,-0.204964,10.1976,0.880507,-0.233415,10.405,0.870074,-0.0540869,10.1941,0.573131,-1.38659e-14,10.1942,0.573049,-0.113031,10.1963,0.571311,-0.0927196,10.2871,0.481887,-0.109,10.2361,0.528889,-0.0531513,10.291,0.486262,-1.36827e-14,10.2973,0.486244,-0.0536445,10.3358,0.5562,-0.0934903,10.3251,0.554205,-1.36076e-14,10.3396,0.556192,-0.119859,10.2323,0.593451,-0.120582,10.2789,0.574944,-0.0697161,10.2282,0.594774,-1.38053e-14,10.2283,0.594776,-0.0758246,10.236,0.626537,-1.37977e-14,10.2326,0.626843,-0.113494,10.2465,0.625696,-0.128092,10.2867,0.616656,-0.102105,10.3284,0.607489,-1.36156e-14,10.3351,0.608721,-0.0602482,10.3326,0.608664,-0.103604,10.3267,0.673093,-0.0615983,10.3291,0.674167,-1.36262e-14,10.3291,0.674295,-0.113494,10.2513,0.680324,-0.128092,10.2885,0.67655,-0.0759438,10.242,0.68112,-1.37796e-14,10.2428,0.677037,-1.37608e-14,10.2534,0.758614,-0.0761353,10.2529,0.760278,-0.113494,10.2601,0.759416,-0.113494,10.3184,0.756909,-0.126964,10.2889,0.757853,-0.0779899,10.3203,0.757988,-1.36419e-14,10.3203,0.758148,-0.111236,10.3034,0.864413,-0.0782463,10.3099,0.86245,-1.36579e-14,10.3113,0.862133,-0.12172,10.2833,0.859643,-0.112429,10.26,0.855025,-0.0765025,10.2528,0.855079,-1.37617e-14,10.2528,0.855215,-0.073097,10.2554,0.894419,-1.37571e-14,10.2554,0.894488,-0.102923,10.2648,0.894354,-0.108893,10.2833,0.896556,-0.102133,10.2996,0.89882,-1.36692e-14,10.3049,0.897818,-0.0728805,10.304,0.897967,-0.0902195,10.2883,0.922299,-0.0631656,10.2896,0.944965,-1.36958e-14,10.2899,0.944965,-0.0902016,10.2743,0.922299,-0.0916436,10.2817,0.925139,-0.0646987,10.2685,0.944965,-1.3734e-14,10.2684,0.944965,-0.0636431,10.2796,0.952236,-1.37149e-14,10.2792,0.952944,-0.116967,10.4296,0.941053,-0.06832,10.4393,0.947865,-0.261104,10.3222,0.904768,-0.0331772,10.4358,0.948837,-0.108073,10.166,0.941588,-0.214252,10.2143,0.918178,-0.229728,10.3868,0.912631,-0.0434824,10.1488,0.952568,-1.39498e-14,10.147,0.956192,-1.34386e-14,10.4347,0.948062,-0.257884,10.3581,0.906257,-0.24588,10.2747,0.908379,-0.178983,10.4158,0.927398,-0.565606,10.7726,0.145421,-0.556043,10.7733,0.129054,-0.555927,10.8218,0.128854,-0.566035,10.8144,0.146156,-0.545193,10.8121,0.11048,-0.543231,10.7796,0.107122,-0.505215,10.8121,0.17736,-0.502137,10.7796,0.174983,-0.522237,10.7733,0.190511,-0.537912,10.8144,0.20262,-0.537238,10.7726,0.2021,-0.522054,10.8218,0.190369,-0.197283,10.9605,0.638722,-0.0807695,11.0368,0.640881,-0.12649,10.9861,0.645937,-0.157394,11.1973,0.596132,-0.309613,11.077,0.589679,-0.0782476,11.1419,0.618438,-0.304075,11.0238,0.60163,-0.106973,11.1786,0.606612,-0.147233,10.9713,0.642955,-0.0536272,11.0952,0.63404,-0.245229,10.9738,0.627722,-0.285516,11.1458,0.581619,-0.208476,11.1979,0.583176,-0.20441,11.15,0.535694,-0.258772,11.1112,0.534285,-0.23031,10.9894,0.566961,-0.0947102,11.0754,0.571373,-0.159809,10.9859,0.579525,-0.132453,11.1344,0.551968,-0.271903,11.0249,0.548443,-0.112129,11.1084,0.560335,-0.275821,11.0625,0.539988,-0.168125,11.1477,0.544553,-0.146261,10.9982,0.57979,-0.113913,11.0341,0.576213,-0.196343,10.9792,0.575449,-0.326267,10.2053,-0.265618,-0.245154,10.1854,-0.342259,-1.38736e-14,10.1899,-0.436339,-0.0671483,10.1876,-0.418382,-0.383831,10.1631,-0.0274031,-0.357489,9.91883,0.16852,-0.274223,9.85766,0.274844,-0.156274,9.82288,0.340451,3.04379e-14,9.80198,0.446641,-0.300982,10.0205,-0.262537,-0.372244,9.99644,-0.0836739,-0.115069,10.0148,-0.397971,4.37794e-14,10.0221,-0.433781,-0.0519322,10.0182,-0.415898,-0.385338,9.95555,0.0533378,-0.38213,9.97927,-0.0218729,6.16662e-14,9.80912,-0.497066,-0.130963,9.7992,-0.450577,-0.255697,9.79283,-0.380673,-0.320107,9.78071,-0.292285,-0.410926,9.74826,-0.10315,-0.354287,9.69448,0.221694,-0.378747,9.76182,-0.188379,-0.131973,9.65556,0.334844,-1.26745e-08,9.62446,0.463766,-0.248036,9.67531,0.317779,-0.0410956,9.80278,-0.481335,-0.433838,9.7226,0.0628111,-0.434421,9.73748,-0.0339391,-1.24971e-10,9.63501,-0.582608,-0.164556,9.62046,-0.523274,-0.296227,9.61899,-0.423644,-0.368818,9.59499,-0.331992,-0.491356,9.579,-0.130489,-0.380992,9.54437,0.255593,-0.443525,9.58778,-0.216391,-0.13278,9.41483,0.408378,-2.59521e-08,9.44552,0.378801,-0.257239,9.52379,0.386033,-0.048137,9.62104,-0.566386,-0.51391,9.56452,0.0370312,-0.515342,9.57445,-0.053678,-1.97281e-08,9.30618,0.487465,-0.151626,9.31552,0.460271,-0.314217,9.40151,0.486047,-0.637388,9.49272,0.0427428,-0.669475,9.53021,-0.060785,-0.630328,9.5261,-0.171552,-0.571138,9.51347,-0.30568,-0.479333,9.46972,0.312565,-0.10844,9.44769,-0.669188,-0.399588,9.42503,-0.488905,-0.243613,9.46105,-0.596024,-0.503418,9.47107,-0.406336,-0.308745,9.78999,0.24471,-0.366563,9.47599,0.330982,-0.311485,9.61346,0.286625,-0.308802,9.68818,0.272209,-0.321471,9.53352,0.312602,-0.398998,9.43395,0.393863,-0.373174,9.81313,0.154787,-0.388581,9.82025,0.11773,-0.398342,9.82593,0.089678,-0.462669,9.49171,0.195261,-0.492548,9.49505,0.142579,-0.522208,9.50118,0.0893293,-0.400375,9.62936,0.178369,-0.424238,9.63433,0.135593,-0.447286,9.64065,0.092317,-0.386425,9.70686,0.166862,-0.40534,9.71261,0.127893,-0.419654,9.71787,0.0953723,-0.421512,9.55072,0.187313,-0.453303,9.55487,0.135073,-0.483621,9.56096,0.086071,-0.598211,9.48924,0.108607,-0.56077,9.48228,0.174045,-0.532305,9.48062,0.223316,-0.308934,9.83946,0.240261,-0.361204,9.8864,0.168093,-0.387742,9.90697,0.0896456,-0.336656,9.83527,0.201874,-0.375281,9.86145,0.117755,-0.370832,9.856,0.16459,-3.53271,8.93966,0.0385299,-3.55728,9.14192,-0.0518263,-3.51973,8.76309,-0.0055576,-3.5172,8.78074,-0.516791,-3.52086,8.72862,-0.386739,-3.52307,8.69472,-0.231988,-3.509,9.2781,-0.621314,-3.53936,9.36413,-0.0735251,-3.51792,9.47331,-0.261818,-3.50592,9.41089,-0.540366,-3.5219,8.69284,-0.103315,-3.55315,9.18472,-0.597015,-3.52054,8.85,-0.574394,-3.49364,8.88432,-0.632916,-3.51269,9.13992,-0.683629,-3.52354,8.99726,-0.694871,-3.23579,8.68577,-0.2146,-3.23538,8.69125,-0.0765202,-3.23631,8.77053,0.0289004,-3.24047,9.43861,-0.285127,-3.21866,9.3612,-0.562044,-3.22256,9.24069,-0.637826,-3.25659,9.33905,-0.0648301,-3.26334,9.14622,0.00442942,-3.22626,8.96547,-0.698667,-3.22886,8.74969,-0.526909,-3.23263,8.71305,-0.373209,-3.2426,8.95916,0.0879961,-3.22998,9.12495,-0.698015,-3.2226,8.86217,-0.632182,-3.29302,9.17904,-0.648379,-3.26939,8.8245,-0.58246,-1.78248,9.01659,0.283178,-1.84517,9.336,0.29064,-1.73691,8.78354,0.0882704,-1.59461,8.62454,-0.549366,-1.65518,8.55291,-0.400243,-1.71381,8.58756,-0.272841,-1.57701,8.82525,-0.613852,-1.56785,9.12862,-0.650022,-1.86091,9.5127,0.0594057,-1.83571,9.5246,-0.248507,-1.69284,9.39824,-0.510833,-1.71955,8.64968,-0.0726239,-2.05894,8.57005,0.117433,-2.09829,9.47765,-0.584879,-2.10676,9.60547,-0.256922,-2.10825,9.58872,0.100713,-2.09163,9.20236,-0.763438,-2.09531,8.88584,-0.674857,-2.08566,8.48161,-0.241345,-2.09935,8.50216,-0.407392,-2.09976,8.63861,-0.572406,-2.06993,8.74388,0.268335,-2.1053,9.36029,0.35293,-2.10379,9.01036,0.412135,-2.48504,9.09681,0.391659,-2.48504,9.37692,0.32779,-2.47507,8.79479,0.219333,-2.48363,8.58477,-0.573036,-2.48504,8.43115,-0.409061,-2.48457,8.42307,-0.26147,-2.47682,8.92267,-0.689248,-2.46824,9.23494,-0.797659,-2.48505,9.56622,0.0916448,-2.47897,9.59016,-0.274964,-2.46795,9.49763,-0.620191,-2.47158,8.53764,0.0709101,-8.19318e-10,8.98407,0.871272,-6.07399e-10,8.85124,0.954692,-0.618597,9.21616,0.655142,-1.09254,9.63558,0.199241,-1.05371,9.52471,0.347742,-0.0906458,9.17252,-0.838391,-0.922976,9.55129,-0.423603,-1.18876,9.61026,-0.490904,-0.169381,9.01186,0.862073,-1.24826,9.32032,0.483796,-1.37013,9.56234,0.335526,-0.718483,9.13784,0.745622,-0.850847,8.51603,1.00426,-0.22855,8.41494,1.08291,-0.262885,8.01715,1.07267,-0.864353,8.16147,0.972893,-0.92076,7.94654,0.843309,-0.252318,7.80842,1.0226,-0.265432,7.1721,0.998005,-0.728284,7.18612,0.722623,-1.30488,8.16219,0.465497,-1.32706,8.11728,0.146963,-0.200992,8.25777,-0.888076,-0.316013,7.74242,-0.717755,-5.4328e-16,7.68038,-0.660519,-0.948509,7.24015,0.456993,-1.00503,7.25226,0.209026,-1.19241,7.89059,0.504508,-1.17143,7.84008,0.182274,-3.32622e-15,7.7911,1.03263,-8.15617e-15,7.16593,1.01818,-0.471197,9.31293,0.505497,-0.861986,9.55216,0.180823,-0.604638,9.36104,-0.621002,-0.103068,8.71073,-0.944721,-8.88178e-16,8.71168,-0.93566,-0.797872,9.30228,-0.675607,-0.88092,9.34697,0.479899,-1.10168,9.16654,0.605672,-0.69891,9.45723,0.314125,-1.1424,8.61768,0.793672,-1.27056,8.53547,0.654985,-1.04553,8.35566,0.872794,-1.1406,8.26092,0.743623,-1.00606,9.68638,-0.251181,-1.28303,9.73166,-0.22218,-1.06072,8.76975,-0.815829,-1.21818,8.9126,-0.769601,-0.852679,9.42988,-0.559455,-1.3905,9.17398,-0.724091,-0.889176,9.01608,-0.812752,-0.999182,9.21922,-0.74199,-1.05691,9.3772,-0.646555,-1.07229,9.74688,-0.0190133,-1.37129,9.74182,0.0165571,-0.507836,9.17665,-0.816529,-0.367471,9.16778,-0.821654,-0.745335,8.88067,-0.9204,-0.477007,8.78956,-0.966174,-0.606028,8.42124,-0.930858,-0.860672,8.63326,-0.914979,-0.982482,8.30248,-0.798095,-0.758455,8.00985,-0.811834,-0.714566,9.17224,-0.763963,-0.873829,7.68193,-0.49337,-1.04316,8.03528,-0.465609,-1.12593,7.81484,-0.104985,-1.01567,7.52358,-0.0865537,-1.05949,7.50266,0.19325,-0.234837,7.49952,0.965813,-0.828629,7.55758,0.713552,-1.01447,7.53504,0.477333,-0.559309,9.27079,-0.734196,-0.182087,9.08699,0.785045,-0.45559,9.06154,0.806098,-0.558247,8.45665,1.04947,-0.56777,8.06453,1.0451,-0.567862,7.85681,0.965143,-0.484936,7.18898,0.906272,-0.515032,7.53017,0.891048,-0.403789,9.14058,0.727263,-0.783121,9.29154,0.550171,-0.954559,9.14327,0.720381,-0.608269,9.39758,0.402321,-1.01094,8.59025,0.913065,-0.607378,9.07176,-0.86116,-0.398363,9.00024,-0.909699,-0.0887395,8.98237,-0.90744,-0.232527,8.21765,1.11596,-0.863969,8.33394,1.01853,-0.56358,8.26013,1.07643,-0.992909,8.44226,0.932308,-1.19979,8.24159,-0.417019,-1.21638,8.10159,-0.128938,-1.38987,8.43047,0.417023,-1.46463,8.37332,0.141409,-1.39627,8.33312,-0.119721,-1.34001,8.35168,-0.373651,-1.16026,8.48528,-0.694675,-1.3072,8.55617,-0.64236,-0.20758,8.68362,1.03038,-0.839249,8.74289,0.960703,-1.14759,8.81277,0.709865,-1.3092,8.76886,0.568811,-0.537619,8.69624,0.987843,-1.0327,8.803,0.84225,-1.5876,8.65186,0.253153,-1.43932,8.67641,0.3971,-1.54885,8.49739,-0.292294,-1.6003,8.51595,-0.0509229,-1.45176,8.58162,-0.594108,-0.815225,7.41915,-0.443015,-0.970838,7.30016,-0.0672741,-0.610025,7.70142,-0.680558,-1.69621,9.61648,-0.254011,-1.50167,9.47892,-0.560166,-1.70901,9.43589,0.377568,-1.7465,9.61705,0.0812753,-0.258205,7.91397,1.05016,-0.898415,8.06171,0.910976,-0.990808,9.44559,0.406973,-1.17979,9.21309,0.549524,-0.801039,9.51348,0.238317,-1.20544,8.58174,0.723446,-1.09552,8.31258,0.80783,-0.22636,9.15867,-0.824132,-0.257731,8.73454,-0.998635,-0.371786,8.32256,-0.94746,-0.574213,7.96376,1.01037,-0.245345,8.98247,-0.908579,-1.23275,8.79765,0.638089,-0.522385,7.41134,-0.611081,-0.798038,7.18603,-0.370506,-0.971148,7.09784,-0.0471689,-0.960401,6.98901,0.470768,-0.935818,8.45668,-0.852145,-0.698927,8.18901,-0.865266,-1.10419,8.64118,-0.749019,-1.27293,8.71021,-0.703803,-1.42062,8.82416,-0.674693,-0.504542,7.97065,-0.799103,-1.01471,8.17649,-0.656909,-0.819289,7.84342,-0.648312,-1.18726,8.35591,-0.575959,-1.32451,8.43518,-0.509965,-1.53579,8.46618,-0.421397,-0.705493,7.55552,-0.563379,-0.65491,7.28619,-0.530877,-0.177838,8.88435,0.967381,-0.82788,8.95955,0.880941,-1.13439,9.01736,0.651603,-1.28256,8.98719,0.516388,-0.513964,8.89403,0.915619,-1.00399,9.00809,0.781245,-1.64145,8.96327,0.368933,-1.41351,8.95905,0.375316,-1.21024,9.00673,0.584812,-1.81993,8.95177,0.360869,-1.85467,9.32555,0.3659,-1.82011,8.64204,0.202237,-1.61943,8.58434,-0.575143,-1.66481,8.48348,-0.409546,-1.79511,8.48038,-0.261805,-1.60846,8.82187,-0.652062,-1.608,9.16564,-0.705058,-1.86654,9.58748,0.10279,-1.8593,9.60172,-0.251078,-1.77095,9.45245,-0.535592,-1.82121,8.54297,-0.0260319,-0.970252,8.90029,-0.813846,-1.11807,9.05514,-0.758393,-1.22002,9.28452,-0.692597,-0.802856,8.75936,-0.919906,-0.536914,8.60508,-0.952896,-0.145288,8.48292,-0.92326,-1.49932,8.66958,0.319192,-1.43378,9.6893,-0.250121,-1.33299,9.55011,-0.529988,-1.56116,9.69332,0.0300362,-1.54408,9.52013,0.3618,-1.43457,8.39928,0.280311,-1.32032,8.12928,0.306118,-1.18604,7.86996,0.340799,-1.0362,7.51748,0.331735,-0.974182,7.24445,0.330853,-0.310687,8.52797,-0.978733,-1.51523,8.95676,0.372896,-0.851851,9.67307,-0.0437346,-0.866859,9.58929,0.110889,-0.733266,9.53676,-0.348153,-0.799932,9.61766,-0.208885,-8.76554e-09,9.30618,0.487465,-0.151626,9.31552,0.460271,-0.314217,9.40151,0.486047,-0.637388,9.50151,0.0427428,-0.669475,9.54345,-0.060785,-0.630328,9.53867,-0.171552,-0.571138,9.52347,-0.30568,-0.479333,9.47108,0.312565,-0.139753,9.2423,0.609396,-0.329472,9.26354,0.562307,-0.10844,9.44769,-0.669188,-0.399588,9.42619,-0.488905,-0.243613,9.46107,-0.596024,-0.503418,9.47536,-0.406336,-0.664017,9.45742,-0.481642,-0.246828,9.32886,-0.71279,-0.374307,9.33519,-0.673419,-0.0977115,9.33731,-0.735932,-0.398998,9.43408,0.393863,-0.598211,9.49595,0.108607,-0.56077,9.48735,0.174045,-0.532305,9.48402,0.223316,-1.71937,8.96306,0.369122,-1.78471,9.37463,0.371941,-1.70738,8.65331,0.216071,-1.53408,8.58232,-0.5865,-1.59986,8.47613,-0.41578,-1.67366,8.49145,-0.2774,-1.5126,8.82016,-0.665839,-1.49742,9.16811,-0.715766,-1.80433,9.60384,0.0928304,-1.78273,9.60801,-0.251324,-1.63496,9.46452,-0.547151,-1.71726,8.52479,-0.0302415,-0.367577,6.70699,-0.785996,-1.13219,6.71618,0.192697,-0.732011,6.61523,0.781144,-0.487225,6.64342,1.00061,-0.271903,6.63544,1.12986,-1.02254,7.05858,0.160365,-0.506697,6.91513,0.913512,-0.731084,6.90726,0.706487,-0.303206,6.89754,1.02826,-0.8025,7.02448,-0.307462,-1.03283,6.91368,0.172281,-0.977618,6.97039,-0.0397057,-0.496861,6.74064,0.928604,-0.708718,6.73924,0.714857,-0.277676,6.72203,1.07149,-0.952463,6.82124,0.482546,-0.466521,7.19184,-0.500415,-0.294004,7.29163,-0.538483,-0.224773,6.71501,-0.756213,-0.227926,6.66473,-0.708539,-0.272078,6.60231,1.11593,-0.486071,6.60906,0.982563,-0.715166,6.6132,0.7565,-0.929331,6.62044,0.572599,-1.02334,6.68109,-0.0259075,-1.0766,6.67381,0.19997,-0.346767,6.66372,-0.745008,-0.845289,6.68373,-0.315271,-0.647233,7.08678,-0.469545,-0.655507,6.69252,-0.525745,-0.999533,7.02082,0.348442,-1.00217,6.85347,0.362794,-1.02232,6.64105,0.434575,-0.681695,6.22055,-0.855183,-0.926205,6.21985,-0.638132,-1.16124,6.21119,0.050662,-1.09325,6.22234,-0.229896,-0.726963,6.12999,0.87296,-0.461095,6.13849,1.08957,-0.255237,6.13625,1.21081,-0.178541,5.73657,-1.08288,-1.17804,5.67567,0.610916,-1.26503,5.73984,-0.232151,-1.30224,5.73446,0.0217269,-0.397678,5.72853,-1.13379,-1.06841,5.7395,-0.658196,-0.765679,5.71977,-1.01185,-1.24897,5.697,0.36991,-1.36071,5.11135,0.313643,-0.853828,5.11714,-1.02233,-1.08837,5.09765,-0.704467,-0.446578,5.11554,-1.23537,-1.35993,5.09839,0.0273816,-1.28329,5.06251,0.492917,-0.233533,5.11976,-1.14972,-1.32009,5.42961,0.349206,-1.35631,5.42242,0.01696,-1.23934,5.40271,0.572962,-1.08942,5.41713,-0.688869,-0.81134,5.41502,-1.03399,-0.421292,5.41853,-1.20187,-1.28358,5.41015,-0.258139,-0.205234,5.42479,-1.1329,-0.162589,6.21369,-0.936682,-0.36018,6.21461,-0.94897,-1.01361,6.15668,0.624701,-1.08977,6.18053,0.406884,-0.98177,6.68191,0.580725,-1.07766,6.7143,-0.048989,-0.891727,6.72057,-0.350138,-0.690351,6.7125,-0.562442,-1.07573,6.68357,0.448924,-1.05112,6.81126,0.182972,-0.49182,6.69191,0.952462,-0.711387,6.68813,0.73197,-0.274207,6.67838,1.08612,-0.409713,6.94256,-0.613091,-0.262455,6.99614,-0.616323,-1.01111,6.76316,0.39053,-0.648124,6.89749,-0.49172,-0.9437,6.74439,0.510492,-0.821604,6.87168,-0.309366,-1.07129,6.74567,0.187075,-0.474779,6.66035,0.942653,-0.706244,6.63555,0.753988,-0.267113,6.65146,1.07499,-0.381204,6.8112,-0.676563,-0.243553,6.84275,-0.661705,-1.02779,6.70325,0.40882,-0.65309,6.79298,-0.508038,-0.949824,6.6936,0.530815,-1.0162,6.76215,-0.0324279,-0.836952,6.78329,-0.315113,-0.161363,6.19845,-0.986543,-1.14582,6.20722,-0.244097,-1.06136,6.13777,0.641876,-0.367274,6.19986,-1.00107,-1.14034,6.16307,0.42092,-1.21282,6.19646,0.0476117,-0.709273,6.2048,-0.899131,-0.971039,6.20484,-0.662127,-1.26709,5.0859,-0.286424,-0.997849,6.84066,-0.0323348,-1.00627e-14,6.59227,1.20877,9.01124e-15,6.21157,-0.93585,-2.23373,9.37149,0.338598,-2.35941,9.37771,0.333127,-2.23385,9.58161,0.0976901,-2.35945,9.57305,0.0946675,-2.22117,9.48501,-0.598431,-2.34441,9.49061,-0.610113,-2.23083,9.59821,-0.262936,-2.3549,9.59278,-0.26895,-2.1968,8.54409,0.0998606,-2.33419,8.534,0.0853853,-2.21594,9.21303,-0.781189,-2.34152,9.22654,-0.792372,-2.23149,9.04053,0.403325,-2.35826,9.07305,0.397492,-2.22792,8.46541,-0.407949,-2.35648,8.45283,-0.408505,-2.21863,8.44783,-0.248053,-2.3516,8.44189,-0.254762,-2.22643,8.62966,-0.579279,-2.3548,8.61096,-0.577336,-2.22124,8.90964,-0.686083,-2.34844,8.92102,-0.690678,-2.20598,8.75423,0.245373,-2.34058,8.76794,0.231984,-2.60457,9.58733,-0.268709,-2.60873,8.42076,-0.261646,-2.60049,8.92105,-0.693973,-2.60905,9.56578,0.0916437,-2.59586,9.49384,-0.600038,-2.60008,8.54649,0.0658484,-2.59402,9.23511,-0.789906,-2.60802,8.57212,-0.571043,-2.60905,8.42806,-0.409061,-2.6024,8.80305,0.215583,-2.60905,9.37914,0.32779,-2.60905,9.10036,0.391659,-1.98882,8.48392,-0.248227,-1.89196,8.46702,-0.255008,-1.9418,8.60853,-0.568608,-1.78196,8.58228,-0.569603,-1.98934,9.46772,-0.568116,-1.88039,9.45964,-0.551353,-2.02427,9.60286,-0.254974,-1.94179,9.60144,-0.253026,-1.97919,8.54627,0.0714825,-1.89885,8.54097,0.030426,-1.93552,9.19093,-0.729577,-1.77283,9.17751,-0.714814,-2.02884,9.58476,0.097689,-1.94843,9.58378,0.0978452,-1.9546,8.46815,-0.407949,-1.80985,8.45321,-0.408505,-2.0216,9.34156,0.357759,-1.93779,9.3305,0.362946,-2.00977,8.98858,0.39247,-1.9146,8.96545,0.377458,-1.93787,8.86512,-0.653567,-1.77368,8.84649,-0.651601,-1.9879,8.70721,0.231965,-1.90453,8.66796,0.209837,2.05894,8.57005,0.117433,2.09829,9.47765,-0.584879,2.10676,9.60547,-0.256922,2.10825,9.58872,0.100713,2.09163,9.20236,-0.763438,2.09531,8.88584,-0.674857,2.08566,8.48161,-0.241345,2.09935,8.50216,-0.407392,2.09976,8.63861,-0.572406,2.06993,8.74388,0.268335,2.1053,9.36029,0.35293,2.10379,9.01036,0.412135,2.48504,9.09681,0.391659,2.48504,9.37692,0.32779,2.47507,8.79479,0.219333,2.48363,8.58477,-0.573036,2.48504,8.43115,-0.409061,2.48457,8.42307,-0.26147,2.47682,8.92267,-0.689248,2.46824,9.23494,-0.797659,2.48505,9.56622,0.0916448,2.47897,9.59016,-0.274964,2.46795,9.49763,-0.620191,2.47158,8.53765,0.07091,-1.20097e-09,9.17002,-0.871893,-8.88178e-16,8.25647,-0.865325,-7.41921e-10,8.0029,1.07248,-8.38191e-10,8.98812,-0.942948,-1.37447e-09,9.05867,0.802701,-8.88178e-16,8.48441,-0.907443,-3.68277e-09,9.23205,0.622448,-6.76077e-10,9.47258,-0.688676,-1.04838e-09,9.35025,-0.752065,0.618597,9.21616,0.655142,1.09254,9.63558,0.199241,1.05371,9.52471,0.347742,0.0906458,9.17252,-0.838391,0.922976,9.55129,-0.423603,1.18876,9.61026,-0.490904,0.169381,9.01186,0.862073,1.24826,9.32032,0.483796,1.37013,9.56234,0.335526,0.718483,9.13784,0.745622,0.850847,8.51603,1.00426,0.22855,8.41494,1.08291,-6.35154e-10,8.40235,1.05394,0.262885,8.01715,1.07267,0.864353,8.16147,0.972893,0.92076,7.94654,0.843309,0.252318,7.80842,1.0226,0.265432,7.1721,0.998005,0.728284,7.18612,0.722623,1.30488,8.16219,0.465497,1.32706,8.11728,0.146963,0.200992,8.25777,-0.888076,0.316013,7.74242,-0.717755,0.948509,7.24015,0.456993,1.00503,7.25226,0.209026,1.19241,7.89059,0.504508,1.17143,7.84008,0.182274,0.471197,9.31293,0.505497,0.861986,9.55216,0.180824,0.604638,9.36104,-0.621001,0.103068,8.71073,-0.944721,0.797872,9.30228,-0.675607,0.88092,9.34697,0.479899,1.10168,9.16654,0.605672,0.69891,9.45723,0.314126,1.1424,8.61768,0.793672,1.27056,8.53547,0.654985,1.04553,8.35566,0.872794,1.1406,8.26092,0.743623,1.00606,9.68638,-0.251181,1.28303,9.73166,-0.22218,1.06072,8.76975,-0.815829,1.21818,8.9126,-0.769601,0.852679,9.42988,-0.559455,1.3905,9.17398,-0.724091,0.889176,9.01608,-0.812752,0.999182,9.21922,-0.74199,1.05691,9.3772,-0.646555,1.07229,9.74688,-0.0190131,1.37129,9.74182,0.0165573,0.507836,9.17665,-0.816529,0.367471,9.16778,-0.821654,0.745335,8.88067,-0.9204,0.477007,8.78956,-0.966174,0.606028,8.42124,-0.930858,0.860672,8.63326,-0.914979,0.982482,8.30248,-0.798095,0.758455,8.00985,-0.811834,0.714566,9.17224,-0.763963,0.873829,7.68193,-0.49337,1.04316,8.03528,-0.465609,1.12593,7.81484,-0.104985,1.01567,7.52358,-0.0865537,1.05949,7.50266,0.19325,0.234837,7.49952,0.965813,0.828629,7.55758,0.713552,1.01447,7.53504,0.477333,-4.18777e-15,7.49655,0.975803,0.559309,9.27079,-0.734196,0.182087,9.08699,0.785045,0.45559,9.06154,0.806098,0.558247,8.45665,1.04947,0.56777,8.06453,1.0451,0.567862,7.85681,0.965143,0.484936,7.18898,0.906272,0.515032,7.53017,0.891048,0.403789,9.14058,0.727263,0.783121,9.29154,0.550171,0.954559,9.14327,0.720381,0.608269,9.39758,0.402321,1.01094,8.59025,0.913065,0.607378,9.07176,-0.86116,0.398363,9.00024,-0.909699,0.0887395,8.98237,-0.90744,0.232527,8.21765,1.11596,0.863969,8.33394,1.01853,-4.45956e-10,8.2074,1.09795,0.56358,8.26013,1.07643,0.992909,8.44226,0.932308,1.19979,8.24159,-0.417019,1.21638,8.10159,-0.128938,1.38987,8.43047,0.417023,1.46463,8.37332,0.141409,1.39627,8.33312,-0.119721,1.34001,8.35168,-0.373651,1.16026,8.48528,-0.694675,1.3072,8.55617,-0.64236,0.20758,8.68362,1.03038,0.839249,8.74289,0.960703,-4.42818e-10,8.67329,0.996979,1.14759,8.81277,0.709865,1.3092,8.76886,0.568811,0.537619,8.69624,0.987843,1.0327,8.803,0.84225,1.5876,8.65186,0.253153,1.43932,8.67641,0.3971,1.54885,8.49739,-0.292294,1.6003,8.51595,-0.0509229,1.45176,8.58162,-0.594108,0.815225,7.41915,-0.443015,0.970838,7.30016,-0.0672741,0.610025,7.70142,-0.680558,1.69621,9.61649,-0.254011,1.50167,9.47893,-0.560166,1.70901,9.43589,0.377568,1.7465,9.61705,0.0812753,0.258205,7.91397,1.05016,0.898415,8.06171,0.910976,-6.88693e-10,7.89839,1.05546,0.990808,9.44559,0.406973,1.17979,9.21309,0.549524,0.801039,9.51348,0.238317,1.20544,8.58174,0.723446,1.09552,8.31258,0.80783,0.22636,9.15867,-0.824132,0.257731,8.73454,-0.998635,0.371786,8.32256,-0.94746,0.574213,7.96376,1.01037,0.245345,8.98247,-0.908579,1.23275,8.79765,0.638089,0.522385,7.41134,-0.611081,0.798038,7.18603,-0.370506,0.971148,7.09784,-0.0471689,0.960401,6.98901,0.470768,0.935818,8.45668,-0.852145,0.698927,8.18901,-0.865266,1.10419,8.64118,-0.749018,1.27293,8.71021,-0.703803,1.42062,8.82416,-0.674693,0.504542,7.97065,-0.799103,1.01471,8.17649,-0.656909,0.819289,7.84342,-0.648312,1.18726,8.35591,-0.575959,1.32451,8.43518,-0.509965,1.53579,8.46618,-0.421397,0.705493,7.55552,-0.563379,0.65491,7.28619,-0.530877,0.177838,8.88435,0.967381,0.82788,8.95955,0.880941,1.13439,9.01736,0.651603,1.28256,8.98719,0.516389,0.513964,8.89403,0.915619,1.00399,9.00809,0.781245,1.64145,8.96327,0.368933,1.41351,8.95905,0.375316,1.21024,9.00673,0.584812,1.81993,8.95177,0.360869,1.85467,9.32555,0.3659,1.82011,8.64204,0.202237,1.61943,8.58434,-0.575143,1.66481,8.48348,-0.409546,1.79511,8.48038,-0.261805,1.60846,8.82187,-0.652062,1.608,9.16564,-0.705058,1.86654,9.58749,0.10279,1.8593,9.60172,-0.251078,1.77095,9.45245,-0.535592,1.82121,8.54297,-0.0260319,0.970252,8.90029,-0.813846,1.11807,9.05514,-0.758393,1.22002,9.28452,-0.692597,0.802856,8.75936,-0.919906,0.536914,8.60508,-0.952896,0.145288,8.48292,-0.92326,1.49932,8.66958,0.319192,1.43378,9.6893,-0.25012,1.33299,9.55011,-0.529988,1.56116,9.69332,0.0300363,1.54408,9.52013,0.3618,1.43457,8.39928,0.280311,1.32032,8.12928,0.306118,1.18604,7.86996,0.340799,1.0362,7.51748,0.331735,0.974182,7.24445,0.330853,0.310687,8.52797,-0.978733,1.51523,8.95676,0.372896,0.851851,9.67307,-0.0437344,0.866859,9.58929,0.110889,0.733266,9.53676,-0.348152,0.799932,9.61766,-0.208885,0.151626,9.31552,0.460271,0.314217,9.4015,0.486048,0.637388,9.50151,0.042743,0.669475,9.54344,-0.0607849,0.630327,9.53866,-0.171552,0.571138,9.52347,-0.30568,0.479333,9.47108,0.312565,0.139752,9.2423,0.609396,0.329472,9.26354,0.562307,0.10844,9.44769,-0.669188,0.399588,9.42619,-0.488904,0.243613,9.46107,-0.596024,0.503418,9.47536,-0.406336,0.664017,9.45742,-0.481642,0.246828,9.32886,-0.71279,0.374307,9.33519,-0.673419,0.0977115,9.33731,-0.735932,0.398998,9.43408,0.393864,0.598211,9.49595,0.108608,0.56077,9.48735,0.174045,0.532305,9.48402,0.223316,1.71937,8.96306,0.369122,1.78471,9.37463,0.371941,1.70738,8.65331,0.216071,1.53408,8.58232,-0.5865,1.59986,8.47613,-0.41578,1.67366,8.49146,-0.2774,1.5126,8.82016,-0.665839,1.49742,9.16811,-0.715766,1.80434,9.60384,0.0928304,1.78273,9.60801,-0.251324,1.63496,9.46452,-0.547151,1.71726,8.5248,-0.0302415,0.367577,6.70699,-0.785996,1.13219,6.71618,0.192697,0.732011,6.61523,0.781144,0.487225,6.64342,1.00061,0.271903,6.63544,1.12986,1.02254,7.05858,0.160365,0.506697,6.91513,0.913512,0.731084,6.90726,0.706487,0.303206,6.89754,1.02826,0.8025,7.02448,-0.307462,1.03283,6.91368,0.172281,0.977618,6.97039,-0.0397057,0.496861,6.74064,0.928604,0.708718,6.73924,0.714857,0.277676,6.72203,1.07149,0.952463,6.82124,0.482546,0.466521,7.19184,-0.500415,0.294004,7.29163,-0.538483,0.224773,6.71501,-0.756213,6.74064e-15,6.66814,-0.683338,0.227926,6.66473,-0.708539,0.272078,6.60231,1.11593,0.486071,6.60906,0.982563,0.715166,6.6132,0.7565,0.929331,6.62044,0.572599,1.02334,6.68109,-0.0259075,1.0766,6.67381,0.19997,0.346767,6.66372,-0.745008,0.845289,6.68373,-0.315271,0.647233,7.08678,-0.469545,0.655507,6.69252,-0.525745,0.999533,7.02082,0.348442,1.00217,6.85347,0.362794,1.02232,6.64105,0.434575,0.681695,6.22055,-0.855183,0.926205,6.21985,-0.638132,1.16124,6.21119,0.050662,1.09325,6.22234,-0.229896,0.726963,6.12999,0.87296,0.461095,6.13849,1.08957,0.255237,6.13625,1.21081,-7.71965e-15,6.13355,1.25585,0.178541,5.73657,-1.08288,1.17804,5.67567,0.610916,1.26503,5.73984,-0.232151,1.30224,5.73446,0.0217269,0.397678,5.72853,-1.13379,1.06841,5.7395,-0.658196,0.765679,5.71977,-1.01185,1.24897,5.697,0.36991,1.36071,5.11135,0.313643,0.853828,5.11714,-1.02233,1.08837,5.09765,-0.704467,0.446578,5.11554,-1.23537,1.35993,5.09839,0.0273816,1.28329,5.06251,0.492917,0.233533,5.11976,-1.14972,1.32009,5.42961,0.349206,1.35631,5.42242,0.01696,1.23934,5.40271,0.572962,1.08942,5.41713,-0.688869,0.81134,5.41502,-1.03399,0.421292,5.41853,-1.20187,1.28358,5.41015,-0.258139,0.205234,5.42479,-1.1329,4.11304e-15,5.42448,-1.07731,0.162589,6.21369,-0.936682,0.36018,6.21461,-0.94897,1.01361,6.15668,0.624701,1.08977,6.18053,0.406884,6.9796e-15,6.71463,-0.733891,0.98177,6.68191,0.580725,1.07766,6.7143,-0.048989,0.891727,6.72057,-0.350138,0.690351,6.7125,-0.562442,1.07573,6.68357,0.448924,1.05112,6.81126,0.182972,0.49182,6.69191,0.952462,0.711387,6.68813,0.73197,0.274207,6.67838,1.08612,0.409713,6.94256,-0.613091,0.262455,6.99614,-0.616323,1.01111,6.76316,0.39053,0.648124,6.89749,-0.49172,0.9437,6.74439,0.510492,0.821604,6.87168,-0.309366,1.07129,6.74567,0.187075,0.474779,6.66035,0.942653,0.706244,6.63555,0.753988,0.267113,6.65146,1.07499,0.381204,6.8112,-0.676563,0.243553,6.84275,-0.661705,1.02779,6.70325,0.40882,0.65309,6.79298,-0.508038,0.949824,6.6936,0.530815,1.0162,6.76215,-0.0324279,0.836952,6.78329,-0.315113,0.161363,6.19845,-0.986543,1.14582,6.20722,-0.244097,1.06136,6.13777,0.641876,0.367274,6.19986,-1.00107,1.14034,6.16307,0.42092,1.21282,6.19646,0.0476117,0.709273,6.2048,-0.899131,0.971039,6.20484,-0.662127,1.26709,5.0859,-0.286424,0.997849,6.84066,-0.0323348,-9.36183e-15,6.62819,1.20255,-9.35666e-15,6.89382,1.09201,-8.92507e-15,6.71781,1.14328,1.10043e-16,7.27995,-0.576382,6.33792e-15,5.72635,-1.04813,4.74728e-15,5.12952,-1.07245,-8.88199e-15,6.673,1.15264,3.88569e-15,6.99212,-0.623633,-9.13107e-15,6.64662,1.13908,4.22107e-15,6.84201,-0.653509,1.00257e-14,6.19514,-0.985807,2.23373,9.37149,0.338598,2.35941,9.37771,0.333127,2.23385,9.58161,0.0976901,2.35945,9.57305,0.0946674,2.22117,9.48501,-0.598431,2.34441,9.49061,-0.610113,2.23083,9.59821,-0.262936,2.3549,9.59278,-0.26895,2.1968,8.5441,0.0998605,2.33419,8.534,0.0853853,2.21594,9.21303,-0.781189,2.34152,9.22654,-0.792372,2.23149,9.04053,0.403325,2.35826,9.07306,0.397492,2.22792,8.46541,-0.407949,2.35648,8.45284,-0.408505,2.21863,8.44783,-0.248053,2.3516,8.44189,-0.254762,2.22643,8.62966,-0.579279,2.3548,8.61096,-0.577336,2.22124,8.90964,-0.686083,2.34844,8.92102,-0.690678,2.20598,8.75423,0.245373,2.34058,8.76794,0.231984,2.60457,9.58733,-0.268709,2.60873,8.42076,-0.261646,2.60049,8.92105,-0.693973,2.60905,9.56578,0.0916436,2.59586,9.49384,-0.600038,2.60008,8.54649,0.0658483,2.59402,9.23511,-0.789906,2.60802,8.57212,-0.571043,2.60905,8.42806,-0.409061,2.6024,8.80305,0.215583,2.60905,9.37915,0.327789,2.60905,9.10036,0.391659,1.98882,8.48392,-0.248227,1.89196,8.46702,-0.255008,1.9418,8.60853,-0.568608,1.78196,8.58228,-0.569603,1.98934,9.46773,-0.568116,1.88039,9.45964,-0.551353,2.02427,9.60286,-0.254974,1.94179,9.60144,-0.253026,1.97919,8.54627,0.0714825,1.89885,8.54097,0.030426,1.93552,9.19093,-0.729577,1.77283,9.17751,-0.714814,2.02884,9.58476,0.0976889,1.94843,9.58378,0.0978452,1.9546,8.46815,-0.407949,1.80985,8.45321,-0.408505,2.0216,9.34156,0.357759,1.93779,9.3305,0.362946,2.00977,8.98858,0.39247,1.9146,8.96545,0.377458,1.93787,8.86512,-0.653567,1.77368,8.84649,-0.651601,1.9879,8.70721,0.231965,1.90453,8.66796,0.209837,-0.931365,6.60925,0.573856,-0.656139,6.68113,-0.533694,-0.485468,6.59771,0.985639,-0.271671,6.59106,1.11723,-1.02395,6.62993,0.433906,-0.347091,6.65289,-0.74993,-1.07865,6.66265,0.196367,-1.02503,6.67002,-0.0308296,-0.715451,6.60154,0.759311,-0.847241,6.67254,-0.323061,-0.226349,6.65385,-0.714044,0.931365,6.60925,0.573856,0.656139,6.68113,-0.533694,0.485468,6.59771,0.985639,0.271671,6.59106,1.11723,1.02395,6.62993,0.433906,0.347091,6.65289,-0.74993,1.07865,6.66265,0.196367,1.02503,6.67002,-0.0308296,0.715451,6.60154,0.759311,0.847241,6.67254,-0.323061,0.226349,6.65385,-0.714044,5.86747e-15,6.65712,-0.689431,-7.17864e-15,6.5812,1.20915,-1.01152,6.16816,0.623411,-0.681047,6.23223,-0.847026,-0.461713,6.15015,1.08677,-0.255654,6.14779,1.20851,-1.0881,6.19193,0.40757,-0.359848,6.22573,-0.94392,-1.15915,6.22265,0.0543588,-1.09152,6.2337,-0.224846,-0.726671,6.14196,0.870076,-0.924201,6.23134,-0.630138,-0.164207,6.22486,-0.931033,1.01152,6.16816,0.623411,0.681047,6.23223,-0.847026,0.461713,6.15015,1.08677,0.255654,6.14779,1.20851,1.0881,6.19193,0.40757,0.359848,6.22573,-0.94392,1.15915,6.22265,0.0543588,1.09152,6.2337,-0.224846,0.726671,6.14196,0.870076,0.924201,6.23134,-0.630138,0.164207,6.22486,-0.931033,9.22271e-15,6.22287,-0.929598,-7.43932e-15,6.14491,1.25392,-0.00079876,9.20369,-0.952232,0.110415,9.20476,-0.941415,0.170982,8.34011,-1.11114,0.680396,9.46887,-0.766509,0.123656,8.73339,-1.08355,0.821324,9.32095,-0.86592,0.927493,8.64377,-0.997871,1.05366,8.78855,-0.946924,0.893843,9.47686,-0.746422,1.19251,8.96017,-0.890161,0.804801,8.9928,-0.972846,0.933813,9.14568,-0.931299,1.03434,9.3284,-0.856747,0.499207,9.19367,-0.92603,0.384956,9.20593,-0.9375,0.629831,8.86297,-1.02243,0.450522,8.78759,-1.05682,0.586384,8.4291,-1.07028,0.784301,8.51491,-1.05216,0.699268,9.17322,-0.927875,0.582527,9.31737,-0.865289,0.566969,9.05805,-0.990182,0.396552,9.00199,-1.00243,0.109946,8.9849,-1.02042,0.245002,9.20505,-0.933132,0.27482,8.7497,-1.06596,0.36915,8.37405,-1.08551,0.240044,8.9849,-1.00861,0.871547,8.828,-0.996039,0.997043,8.95811,-0.951943,1.14048,9.12084,-0.887402,0.70099,8.6835,-1.04348,0.525557,8.58812,-1.07396,0.149755,8.50507,-1.11453,0.328565,8.54726,-1.08896,0.605694,9.63223,-0.466861,0.294361,9.53559,-0.685965,0.457827,9.56855,-0.602733,0.12819,9.53043,-0.722264,0.137541,9.49879,-0.755275,0.513855,9.55303,-0.647673,0.334338,9.51679,-0.710329,0.642864,9.6118,-0.580928,0.743575,9.57224,-0.651023,0.290947,9.40695,-0.806906,0.455937,9.39862,-0.807285,0.131849,9.39301,-0.831094,0.127483,9.54955,-0.728612,0.291584,9.55247,-0.691916,0.6015,9.6469,-0.472186,0.45473,9.58416,-0.607544,1.25033,4.96474,1.02898,0.877237,4.62352,1.3875,0.891178,4.6347,1.37495,1.2456,4.9399,1.04456,1.12633,5.66778,1.0149,0.75172,5.46538,1.46281,0.736256,5.4606,1.47931,1.24077,4.9552,1.04209,0.888548,4.65291,1.37226,1.2454,4.97991,1.02652,0.87469,4.64184,1.3848,0.827886,6.60746,0.875119,0.506001,6.60736,1.16291,0.491997,6.60361,1.17681,0.817116,6.59997,0.896015,1.05947,6.62574,0.564463,0.825834,6.60367,0.880266,1.04986,6.62059,0.582814,1.2783,4.90092,1.12836,1.56943,5.20454,0.67757,1.28856,4.91162,1.11247,1.55763,5.19223,0.695855,1.17182,5.64865,1.15767,1.50002,5.86362,0.682478,1.18442,5.65406,1.14147,1.48897,5.85018,0.702933,1.56427,5.1777,0.698759,1.29337,4.89406,1.11628,1.28304,4.88325,1.13219,1.57616,5.19015,0.680435,1.68882,5.46584,0.181691,1.63895,5.21169,0.744793,1.6395,5.22077,0.724939,1.67102,5.45718,0.204351,1.55801,5.87868,0.736724,1.5398,6.04746,0.168506,1.55219,5.87345,0.755003,1.66184,5.47054,0.203425,1.63113,5.23712,0.722077,1.67961,5.47907,0.180849,1.63061,5.22815,0.741858,1.07221,6.62836,0.564614,1.15849,6.68783,0.10321,1.06936,6.62285,0.580096,1.17685,6.69609,0.0816336,0.951408,6.67944,-0.324539,1.16828,6.70077,0.0739547,0.960667,6.68182,-0.308288,1.74615,5.5146,0.190843,1.47843,5.59385,-0.308831,1.73672,5.51739,0.173237,1.48929,5.59064,-0.288563,1.6003,6.06615,0.170243,1.35431,6.06153,-0.315273,1.59291,6.06423,0.153119,1.36708,6.05788,-0.295615,1.49723,5.57783,-0.288321,1.74503,5.50255,0.176167,1.75448,5.49968,0.193876,1.48635,5.58113,-0.308707,0.819472,6.28741,0.932342,0.501447,6.15795,1.25212,0.826,6.30916,0.916876,0.488884,6.15533,1.26409,1.11805,5.68681,1.01028,0.745716,5.48644,1.45784,0.730356,5.4817,1.47434,0.937882,6.11333,0.922594,1.1781,6.28319,0.507031,0.947031,6.11749,0.908223,1.16985,6.27234,0.524478,1.1634,5.67108,1.15104,1.4892,5.88327,0.676562,1.1759,5.67644,1.13485,1.47819,5.87006,0.696959,1.24736,6.33482,0.0944334,1.22942,6.22334,0.550693,1.25882,6.34231,0.07431,1.22831,6.22066,0.567996,1.51542,6.04529,0.184462,1.55094,5.89146,0.734093,1.53165,6.05848,0.166709,1.54517,5.88626,0.752343,1.28375,6.3669,0.0582388,1.04292,6.3498,-0.348212,1.27612,6.36469,0.044025,1.05455,6.34699,-0.33149,1.58265,6.09013,0.167558,1.33665,6.0831,-0.314151,1.57522,6.08818,0.150568,1.34932,6.07969,-0.294646,0.868343,6.3446,0.863753,0.503776,6.20361,1.25413,0.489193,6.19821,1.26862,1.11758,5.66097,1.03834,0.815896,6.60246,0.890225,1.10739,5.67964,1.03214,0.853386,6.33849,0.879719,0.910362,6.13553,1.02353,1.19444,6.2545,0.620513,0.920967,6.14006,1.00756,1.18412,6.24533,0.639886,1.52347,6.03414,0.186272,1.14809,6.68129,0.120245,1.28308,6.22276,0.648709,1.31658,6.336,0.134315,1.27877,6.2174,0.665575,1.30326,6.32613,0.151709,1.36006,6.39311,0.134204,1.114,6.35514,-0.300004,1.35183,6.39447,0.122144,1.12546,6.35462,-0.282431,0.499423,6.20379,1.35803,0.268936,5.35218,1.3434,0.0646213,4.90934,1.17005,0.120561,5.02152,1.11971,0.218392,6.19625,1.46693,0.509744,5.80987,1.4208,0.198819,5.80294,1.52383,0.147569,5.38177,1.49517,0.0444574,4.58788,-0.0197704,0.0722725,4.4032,-0.00955448,0.293725,4.62057,-0.398998,0.302145,4.43853,-0.392149,0.606163,4.88381,0.929928,0.635438,4.72223,0.872027,0.199632,4.71973,0.76073,0.223388,4.54895,0.720406,0.0543837,4.62354,0.380688,0.0846645,4.46278,0.37462,0.204422,4.07157,0.074744,0.164837,4.24889,0.0489647,0.188476,4.09036,0.361041,0.160319,4.26425,0.364965,0.308082,4.04819,-0.232104,0.277003,4.22296,-0.293455,0.462387,4.13957,0.806038,0.440977,4.3103,0.804237,0.291547,4.11259,0.652618,0.270885,4.27826,0.667174,0.399681,4.82931,0.899179,0.429243,4.65907,0.872248,0.680171,4.18541,0.77273,0.661525,4.33198,0.796903,0.3487,4.62409,-0.434135,0.357184,4.44208,-0.427301,0.373046,4.04185,-0.283085,0.341966,4.21662,-0.344436,0.582336,1.90616,-0.44386,0.590163,1.72859,-0.40078,0.495096,2.60839,-0.433261,0.473149,2.74853,-0.412047,0.578025,2.63147,0.586306,0.592278,2.79903,0.622303,0.449951,2.64686,0.513139,0.483379,2.46384,0.520976,0.624026,2.79959,0.618494,0.645615,2.61212,0.625388,0.522034,1.91882,-0.385586,0.519019,1.74218,-0.330723,0.352407,2.38746,0.273148,0.397992,2.19527,0.285345,0.335365,2.11818,-0.0375792,0.365057,1.92326,-0.00555976,0.312757,2.58601,0.138641,0.288356,2.72218,0.144872,0.431228,2.61782,0.454169,0.407343,2.74112,0.50524,0.456637,2.60399,-0.394551,0.434497,2.74265,-0.37321,0.350283,2.5908,-0.150365,0.323977,2.72632,-0.13475,0.366183,1.8064,-0.112716,0.435951,1.66305,-0.18443,0.453147,1.89489,-0.308375,0.501964,1.73145,-0.360659,0.541821,1.70995,0.47196,0.543616,1.56686,0.436717,0.376836,1.69303,0.213406,0.384128,1.56759,0.096269,0.715472,1.73794,0.614496,0.698905,1.56777,0.579624,0.490905,1.94014,-0.384198,0.547458,1.78292,-0.446229,0.429385,4.85199,1.03074,0.725963,5.04707,1.08353,1.0785,5.37978,0.933946,1.36058,5.54079,0.583187,1.02869,3.98086,0.657097,1.39224,4.00945,0.250249,0.50332,3.88588,0.852239,0.744606,3.92793,0.825235,1.05315,4.60377,0.747587,1.31093,4.68073,0.435861,0.466874,4.3484,0.876012,0.738292,4.44843,0.87528,1.30829,5.80494,0.583008,1.08368,5.63191,0.937578,0.725161,5.23373,1.13612,0.413324,4.99181,1.07694,1.25428,5.46743,0.759061,1.16755,4.00075,0.454234,1.21081,4.64246,0.597919,1.20544,5.72585,0.761699,1.32132,3.92324,-0.0452496,1.42302,5.19948,-0.100099,0.190716,3.90931,-0.127151,0.138593,4.82539,-0.335386,1.16511,3.98957,-0.292657,0.846592,4.946,-0.589549,0.6091,4.88499,-0.596224,0.324149,4.83646,-0.524914,1.22295,5.0603,-0.361775,0.797646,4.00471,-0.45982,0.344533,3.95459,-0.299691,0.558956,3.99392,-0.419747,1.26115,4.74756,-0.251257,1.26115,4.95802,-0.268192,1.22132,5.0284,0.565756,1.21111,4.8389,0.541027,1.3184,4.78197,-0.0142018,1.31104,4.82193,0.270942,1.3184,4.98789,-0.0221026,1.31104,5.01842,0.281784,1.22359,4.83678,0.507288,1.23252,5.02716,0.530283,1.26135,5.0285,0.530283,1.25242,4.83774,0.507288,1.34792,5.01495,0.281065,1.4202,4.95673,-0.0254527,1.34792,4.8157,0.270071,1.4202,4.75018,-0.0175519,1.23994,4.83953,0.541027,1.25015,5.02936,0.565756,1.34269,4.9823,0.10295,1.34269,4.7786,0.102925,1.37213,4.75022,0.176607,1.37213,5.04679,0.174201,1.37736,4.76061,0.260651,1.37736,5.05284,0.266223,1.20446,5.04681,0.17237,1.19325,5.05158,0.263933,1.22532,4.7505,0.174188,1.21419,4.75934,0.25787,1.36023,4.76049,0.260392,1.35618,4.75025,0.176382,1.35003,5.04679,0.173976,1.35384,5.05268,0.265942,1.37438,4.47863,0.251982,1.36838,4.48595,0.160235,1.34052,4.19309,0.122308,1.34711,4.19112,0.206757,1.20188,4.2066,0.208811,1.21053,4.20822,0.124388,1.21471,4.4957,0.255018,1.22377,4.5024,0.163339,1.39776,4.47612,0.251523,1.36414,4.1893,0.206478,1.39034,4.48345,0.159745,1.35636,4.19126,0.122014,1.32919,4.23262,0.0538649,1.35252,4.43311,0.0814129,1.45044,4.19083,-0.0391414,1.34138,4.2455,0.224207,1.474,4.39521,-0.0190261,1.36442,4.44006,0.262045,1.17187,4.26709,0.458369,1.20264,4.45613,0.476149,1.17385,4.45801,0.477113,1.14313,4.26935,0.459323,1.3282,4.44749,0.264415,1.30062,4.46153,-0.0400316,1.30547,4.25561,0.227101,1.27713,4.25778,-0.0600609,1.25708,4.46967,-0.18908,1.19814,4.267,-0.194724,0.59087,9.31707,0.780982,0.975657,9.40122,0.649788,0.178412,9.1013,1.02887,1.12511,9.21987,0.777692,0.672408,9.1871,0.907806,0.879266,8.5229,1.10949,0.205575,8.45756,1.32372,0.245447,8.05611,1.30867,0.907052,8.124,1.07087,0.995036,7.88309,0.923886,0.233134,7.88313,1.29375,0.238394,7.44382,1.37362,0.898735,7.21664,0.940536,1.38974,8.09608,0.41755,1.13471,7.19123,0.556943,1.15017,7.25744,0.063476,1.31053,7.81961,0.540716,1.2767,7.78147,0.0252519,0.502287,9.50766,0.665323,0.839546,9.52555,0.566444,0.864415,9.36822,0.707973,0.988083,9.2315,0.834762,0.740764,9.52079,0.607061,1.2047,8.54104,0.93856,1.37559,8.42643,0.729743,1.11353,8.30117,0.949475,1.21507,8.19091,0.786984,0.909937,8.19784,-0.928899,0.817802,8.00145,-0.89299,0.958795,7.66587,-0.551799,1.12571,7.86685,-0.490467,1.20993,7.80075,-0.229638,1.08717,7.53779,-0.228871,1.15867,7.48191,0.0434332,0.200032,7.6738,1.28343,0.934561,7.51216,0.8044,1.15427,7.47509,0.529141,0.193369,9.21212,0.957453,0.43263,9.1549,0.927797,0.547534,8.48582,1.20432,0.576955,8.05165,1.20399,0.599787,7.84668,1.12325,0.543666,7.30867,1.17307,0.553912,7.57348,1.06614,0.397439,9.26676,0.842158,0.753483,9.3466,0.738413,0.857684,9.21958,0.877431,0.643793,9.51818,0.634965,0.216757,8.24749,1.35328,0.900649,8.31823,1.12305,0.560121,8.26653,1.23379,1.05149,8.41163,1.0203,1.45777,8.23468,0.402283,0.186252,8.74835,1.27128,0.852379,8.76402,1.08877,1.17055,8.74578,0.960714,1.30096,8.68131,0.865188,0.520143,8.74765,1.1399,1.05464,8.7848,1.04681,0.945732,7.39888,-0.516642,1.07401,7.31324,-0.215062,0.700664,7.67601,-0.79159,1.16622,6.93132,-0.260588,0.826563,7.01239,-0.545932,1.31307,6.84663,0.148804,1.2613,6.89241,-0.0710742,1.3349,6.60681,0.772069,1.10794,6.4845,1.22683,0.699047,6.61087,1.47556,0.320833,6.81869,1.55225,0.240498,7.96804,1.2987,0.954252,8.01004,0.997964,0.930759,9.39004,0.672431,1.07706,9.22383,0.80643,0.79884,9.52422,0.576475,1.27971,8.47658,0.864396,1.16543,8.24462,0.867181,0.594819,7.94705,1.16782,1.24365,8.70737,0.920553,0.703141,7.41564,-0.663405,0.969368,7.19475,-0.394569,1.18478,7.08871,0.0917449,1.08706,7.13503,-0.151225,0.560498,7.06125,1.22961,0.934993,6.99261,1.01244,0.267376,7.22903,1.39312,1.17711,6.99923,0.618257,1.05774,7.06568,-0.297569,1.2319,6.98787,0.129224,1.17761,7.02504,-0.104756,0.639062,6.84012,1.31989,1.04642,6.69813,1.1118,0.292941,7.04109,1.44131,1.29848,6.83092,0.689394,0.790782,7.19468,-0.56465,0.321855,6.57238,1.51538,0.710574,6.33621,1.42924,1.0759,6.24974,1.21848,1.3154,6.38668,0.82238,1.2518,6.73739,-0.0526351,1.33274,6.67645,0.172437,0.965045,6.79898,-0.659187,1.16145,6.76823,-0.24826,1.0402,8.04031,-0.725703,0.887699,7.83016,-0.720408,0.813586,7.53556,-0.661134,1.0209,6.95991,-0.448313,0.838444,7.29121,-0.569719,0.926177,7.11983,-0.477516,1.07452,6.81925,-0.437895,0.173445,8.96122,1.15467,0.774099,8.99148,1.02389,1.09957,8.97056,0.948887,1.23043,8.92922,0.887784,0.493793,8.9681,1.05204,0.965995,9.00804,0.985898,1.17982,8.94411,0.923428,1.35555,6.76253,0.450005,1.31566,7.79585,0.286169,1.17631,7.46502,0.297415,1.16083,7.21808,0.321872,1.19333,7.05459,0.359919,1.26287,6.93962,0.413147,1.34476,6.55454,0.464748,0.159492,9.41359,0.745023,0.342696,9.49027,0.689146,0.675147,7.64167,-0.722921,0.915877,7.37232,-0.455065,1.10358,7.2298,0.0771934,1.02469,7.28742,-0.180088,0.518864,7.25655,1.14181,0.854859,7.17429,0.910439,0.230755,7.39005,1.32832,1.08356,7.16112,0.546589,0.791081,7.50321,-0.600448,1.10716,7.18688,0.321011,0.959971,7.17386,-0.333773,1.15382,7.06434,0.109545,1.06877,7.1128,-0.115166,0.545908,7.00318,1.20819,0.937342,6.91266,1.00982,0.255208,7.1745,1.35712,1.1692,6.96174,0.613631,0.711382,7.38666,-0.571905,0.847845,7.2667,-0.496213,1.1715,7.02463,0.364214,1.05939,7.03105,-0.252805,1.21746,6.95149,0.143825,1.17433,6.98884,-0.0666063,0.629174,6.76969,1.32405,1.02836,6.6315,1.10665,0.282022,6.97429,1.42014,1.28022,6.76248,0.687934,0.792862,7.13732,-0.519086,0.936811,7.0869,-0.412607,1.24864,6.89149,0.408689,0.841249,6.96322,-0.529245,1.08359,6.4402,1.20862,1.30226,6.55834,0.760303,0.308085,6.77537,1.5221,0.677455,6.56105,1.44783,1.28178,6.8088,0.159271,1.22904,6.86257,-0.0494058,1.14139,6.90272,-0.2336,1.00929,6.93804,-0.436165,1.32308,6.7156,0.434031,0.96489,6.88944,-0.662043,1.12124,6.29905,1.26301,1.36376,6.4354,0.856044,0.328864,6.61567,1.5711,0.739449,6.38407,1.48289,1.37222,6.71032,0.16355,1.28809,6.77344,-0.0766489,1.19466,6.81476,-0.280234,1.10215,6.86125,-0.47201,1.39558,6.59706,0.482024,0.233633,7.47132,1.36164,0.906589,7.25042,0.924419,1.13717,7.22168,0.551769,1.14979,7.28492,0.0607913,0.545114,7.33975,1.15959,1.07471,7.3409,-0.217797,0.943895,7.43034,-0.522548,0.709137,7.71498,-0.806462,0.817573,7.57032,-0.67045,1.16242,7.24767,0.318401,0.696672,7.44916,-0.673081,0.956683,7.22082,-0.405539,1.17125,7.10969,0.0882902,1.07284,7.15761,-0.156917,0.55161,7.09071,1.21451,0.908883,7.03001,0.990166,0.261818,7.25295,1.38103,1.15249,7.02355,0.603724,0.828717,7.32241,-0.574991,1.17429,7.07319,0.351326,1.03406,7.08481,-0.306851,1.21856,7.00233,0.124455,1.15209,7.04061,-0.109213,0.620687,6.87204,1.29827,1.02922,6.73386,1.0897,0.284266,7.0652,1.42421,1.27957,6.85841,0.678488,0.783486,7.2316,-0.570055,0.909019,7.15094,-0.47834,1.24925,6.95828,0.405289,1.1496,6.94082,-0.261502,1.30286,6.85874,0.147486,1.25242,6.90274,-0.0705539,0.691807,6.62713,1.45406,1.09964,6.49994,1.21258,0.316649,6.83528,1.53663,1.32979,6.62377,0.764289,0.822843,7.03559,-0.535506,1.01531,6.97267,-0.436458,1.34485,6.77673,0.447066,0.962371,6.90355,-0.654128,1.12068,6.31348,1.26457,1.35781,6.44736,0.849536,0.325411,6.63083,1.56843,0.737402,6.40205,1.48726,1.36482,6.71787,0.162345,1.28265,6.78178,-0.0757,1.19108,6.82549,-0.277918,1.09924,6.8705,-0.466266,1.39188,6.60734,0.479457,0.0558476,9.06589,1.07596,0.0241488,8.45041,1.41067,0.0385714,7.89495,1.3594,0.0399887,7.50822,1.43541,0.0380603,8.06368,1.37764,0.0335346,7.70347,1.36272,0.0602664,9.16291,1.01615,0.029935,8.24878,1.41519,0.0232522,8.74402,1.34334,0.0467371,7.00374,1.58227,0.0377553,7.97728,1.36948,0.0447745,7.34045,1.45496,0.0481064,7.19395,1.49377,0.0480841,6.71555,1.56313,0.0397342,8.93213,1.19589,0.0451413,9.39002,0.764039,0.0387268,7.46265,1.38745,0.0427114,7.29598,1.41452,0.0444185,7.13448,1.4657,0.0447774,6.95039,1.54622,0.0498117,6.76639,1.63178,0.0391978,7.53178,1.42397,0.043865,7.35868,1.44402,0.0471173,7.21253,1.47887,0.0464097,7.01768,1.5689,0.0499256,6.78368,1.62794,0.0936353,9.604,0.741989,0.39601,9.7545,0.66084,0.209719,9.65492,0.721058,0.723087,9.73189,0.404503,0.628159,9.7657,0.540556,0.685638,9.75102,0.500355,0.754673,9.71353,0.400203,0.521056,9.77686,0.609638,1.48322,8.18389,-0.00708664,1.40678,8.07636,0.0197476,1.31351,8.13244,-0.418219,1.41904,8.28835,-0.385392,1.28776,8.52024,-0.762104,1.0222,8.34777,-0.896207,1.17447,8.20133,-0.668468,1.34993,8.39418,-0.583078,1.40152,8.07553,0.218831,1.47436,8.19444,0.177145,1.36417,8.09084,-0.197264,1.46709,8.21433,-0.194595,0.164457,9.43744,0.743553,0.0499347,9.41117,0.761998,0.488439,9.57101,0.639293,0.348266,9.51627,0.688662,0.800352,9.57309,0.537277,0.763088,9.56799,0.552318,0.715198,9.56974,0.584876,0.621404,9.58063,0.613716,0.407302,-6.39854e-06,0.0436082,1.27562,-6.3981e-06,0.0147574,1.26702,-6.39045e-06,0.283082,0.412871,-6.36729e-06,0.751201,0.455625,-6.38256e-06,0.430463,1.25394,-0.000216926,-0.257378,0.990348,-6.40333e-06,-0.277655,0.723394,-6.40389e-06,-0.27566,0.403003,-6.40449e-06,-0.277721,0.69384,-6.39845e-06,0.0344672,1.01717,-6.39819e-06,0.0314385,1.02178,-6.38793e-06,0.331851,0.734753,-6.38346e-06,0.423031,1.46942,-6.36627e-06,0.774537,0.729295,-6.36699e-06,0.758025,1.15139,-6.36811e-06,0.73235,0.673916,-6.35316e-06,1.07443,1.22315,-6.35416e-06,1.05154,1.55626,-6.35314e-06,1.07473,0.330255,-6.35258e-06,1.08758,1.30588,2.33173,0.0149183,1.29989,2.33905,-0.0768289,1.27202,2.04619,-0.114756,1.27862,2.04422,-0.0303068,1.13338,2.0597,-0.0282529,1.14203,2.06132,-0.112676,1.14621,2.3488,0.0179544,1.15527,2.3555,-0.0737248,1.32926,2.32922,0.0144592,1.29564,2.0424,-0.0305864,1.32184,2.33655,-0.0773194,1.28786,2.04436,-0.11505,1.26493,2.08701,-0.137056,1.28993,2.28735,-0.114403,1.38559,2.0433,-0.214713,1.26395,2.09859,-0.00404445,1.41583,2.2475,-0.226286,1.28627,2.29316,0.0321208,1.20938,2.11892,0.225171,1.21863,2.31049,0.23707,1.21046,2.30789,0.208324,1.17973,2.11923,0.190534,1.25996,2.30109,0.027811,1.21243,2.31507,-0.245045,1.23692,2.10875,-0.00992647,1.18819,2.11044,-0.24671,1.20899,2.71904,-0.165393,1.25207,2.84022,0.0717215,1.19652,2.92392,-0.174488,1.23982,3.00787,0.0992935,1.18958,2.92535,0.270598,1.18596,3.05168,0.278547,1.19291,2.9451,0.30721,1.21804,2.75459,0.305566,1.26701,2.92967,0.104351,1.40822,2.89126,-0.0852738,1.28034,2.73266,0.0784783,1.41442,2.68468,-0.0909279,1.27484,2.91513,-0.0324875,1.28626,2.71129,-0.0461999,1.3159,2.67797,-0.0291299,1.2967,2.97308,-0.00682441,1.32207,2.68173,0.0554066,1.3033,2.97188,0.085301,1.12937,2.96219,-0.0063242,1.11965,2.95866,0.0854639,1.16936,2.66876,-0.0294838,1.1593,2.66994,0.05479,1.30499,2.68051,0.055376,1.29999,2.67696,-0.0291312,1.27465,2.97164,-0.0067417,1.27984,2.97019,0.0853341,0.461164,0.781121,0.844178,0.466477,0.837335,0.688042,0.429261,0.774019,0.539136,0.371317,0.628263,0.484688,0.326587,0.48545,0.556593,0.321223,0.428178,0.712927,0.35849,0.492552,0.861635,0.416434,0.638307,0.916083,0.443962,0.743327,0.807418,0.410667,0.637023,0.86094,0.367537,0.52853,0.820412,0.339835,0.4814,0.709574,0.34379,0.523243,0.593353,0.377084,0.629547,0.539831,0.420215,0.73804,0.580359,0.447916,0.78517,0.691197,0.385811,0.746055,0.797038,0.389201,0.781923,0.697414,0.365455,0.741524,0.602403,0.328483,0.648523,0.567662,0.299943,0.557399,0.613542,0.296553,0.521532,0.713166,0.320299,0.561931,0.808177,0.357271,0.654932,0.842918,0.315158,0.713868,0.753441,0.301618,0.670637,0.775207,0.284078,0.626516,0.758726,0.272813,0.60735,0.713651,0.274421,0.624365,0.666387,0.287961,0.667596,0.644621,0.305501,0.711718,0.661103,0.316766,0.730884,0.706178,0.279671,0.654099,0.732429,0.272635,0.677128,0.712045,0.289114,0.691654,0.689399,0.436877,0.743749,0.806231,0.440766,0.784893,0.691952,0.413526,0.73855,0.582965,0.371116,0.631869,0.543113,0.338378,0.527341,0.595742,0.334489,0.486197,0.710021,0.361728,0.532539,0.819009,0.404138,0.63922,0.858859,0.465692,0.620495,0.911346,0.407747,0.474734,0.856899,0.370454,0.409833,0.708289,0.375845,0.467637,0.551856,0.420574,0.61045,0.479951,0.478518,0.756206,0.534399,0.515734,0.819522,0.683305,0.510421,0.763309,0.839442,1.26657,0.808306,0.493823,1.30452,0.795641,0.654964,1.38426,0.683912,0.748372,1.45908,0.538569,0.719329,1.48516,0.444751,0.584849,1.44722,0.457416,0.423708,1.36748,0.569144,0.3303,1.29265,0.714488,0.359343,1.3661,0.719199,0.397776,1.42087,0.612819,0.376519,1.47923,0.531042,0.444886,1.507,0.521772,0.562829,1.48792,0.59044,0.661258,1.43315,0.696819,0.682515,1.37479,0.778595,0.614148,1.34702,0.787865,0.496205,1.52325,0.715093,0.539144,1.53296,0.713429,0.509174,1.52101,0.69978,0.483363,1.49095,0.753329,0.548094,1.51509,0.719508,0.57637,1.53774,0.675511,0.567578,1.54563,0.647112,0.52687,1.53415,0.650945,0.478091,1.51001,0.684767,0.449816,1.48736,0.728763,0.458608,1.47946,0.757162,0.499316,1.41514,0.733751,0.406753,1.46289,0.641013,0.388223,1.51377,0.569723,0.447822,1.53798,0.561643,0.55064,1.52134,0.621504,0.636446,1.4736,0.714242,0.654978,1.42272,0.785531,0.595378,1.39851,0.793612,0.49256,1.36814,0.777514,0.61669,1.4275,0.694348,0.686219,1.48319,0.586161,0.664601,1.5026,0.516327,0.5645,1.47436,0.525755,0.444554,1.41501,0.60892,0.375026,1.35931,0.717108,0.396643,1.3399,0.786941,0.496744,1.33804,0.739594,0.350629,1.41286,0.594251,0.321586,1.4926,0.482522,0.414994,1.53055,0.469857,0.576135,1.50447,0.563675,0.710616,1.42964,0.709018,0.739658,1.3499,0.820746,0.646251,1.31196,0.833411,0.485109,1.16743,3.63709,0.45992,1.25339,3.6302,0.24893,1.21704,3.41321,0.210638,0.409975,3.22617,0.628592,0.452868,3.55902,0.754518,0.521659,3.56624,0.842614,1.15807,2.62835,0.482627,1.13544,3.39457,0.38724,1.10083,3.29414,0.608465,0.633614,3.25811,0.782164,0.822326,3.26655,0.786012,1.31883,3.6035,0.683238,1.16906,3.46589,0.442108,0.672544,3.53397,1.06609,0.675962,3.32046,0.833728,1.14153,3.34873,0.66131,0.859432,3.32157,0.840278,1.21479,3.59922,0.919327,0.933091,3.56936,1.07473,1.17698,4.30296,1.02018,1.15537,4.28856,0.8564,0.781133,4.24829,1.07809,0.924487,4.27631,1.1604,0.735761,4.22188,1.03088,1.11,4.26215,0.809183,1.10469,4.26201,0.947081,0.860104,4.2366,1.0774,1.29172,3.97562,0.750202,1.20478,3.95905,0.973674,0.927878,3.92879,1.12692,0.683455,3.91018,1.11053,0.571008,3.89956,0.967287,1.18677,3.96581,0.602518,1.20517,3.62899,0.515782,1.13983,3.42266,0.402131,0.64673,3.27723,0.793751,0.559533,3.55839,0.898404,1.11085,3.30859,0.621734,0.831793,3.28057,0.79948,0.747104,4.22848,1.04268,1.12134,4.26875,0.820988,1.12276,4.27225,0.965357,0.8762,4.24652,1.09815,0.59912,3.90221,1.0031,1.21301,3.96826,0.639439,1.16424,4.26821,0.849495,1.17878,4.2806,1.01716,0.924708,4.25371,1.15822,0.774781,4.2263,1.0802,0.725048,4.20092,1.02674,1.11499,4.24288,0.795745,0.857282,4.21645,1.07082,1.1037,4.24225,0.939208,0.737481,4.20727,1.04011,1.1273,4.24921,0.809182,1.24914,1.96197,-0.178952,0.414986,1.95607,-0.353849,1.28376,2.96007,-0.136769,0.381791,2.8367,-0.325976,0.84911,1.96677,-0.537138,0.683368,1.96515,-0.538737,0.527617,1.96233,-0.478635,1.14343,1.96536,-0.366156,0.838194,2.793,-0.542682,0.652923,2.78046,-0.54043,0.494247,2.787,-0.466766,1.16961,2.86858,-0.363455,0.466213,0.566633,-0.251176,0.413674,0.504901,0.450504,1.07804,1.09479,0.91748,0.972649,0.619688,-0.398664,1.28759,0.448976,0.196158,1.32343,0.453802,0.488573,0.671957,0.615671,-0.427715,0.652786,1.07731,0.909115,0.390529,0.502167,0.0759872,0.476147,0.780562,0.714817,1.30345,0.762581,0.670227,1.20731,0.54949,-0.163031,0.464309,0.808765,-0.235687,0.437274,0.774509,0.374743,1.07148,1.14133,0.829282,0.958492,0.84315,-0.387696,1.25625,0.719717,0.109607,1.29782,0.807912,0.324189,0.680504,0.841521,-0.417657,0.667357,1.12984,0.845017,0.416793,0.769458,0.0544677,0.536195,0.980873,0.624159,1.23895,1.00907,0.588485,1.18758,0.793045,-0.164153,0.968392,-6.294e-06,2.42773,1.1441,-6.29557e-06,2.39185,0.8184,-6.29493e-06,2.40657,0.801587,0.0505963,2.35725,1.08176,0.0701109,2.33737,0.890931,0.145089,2.31329,1.02854,0.13252,2.3114,0.832714,0.114053,2.32496,0.964131,0.154172,2.30611,0.971979,0.285007,2.15851,0.71427,0.225009,2.17975,1.10225,0.243271,2.1704,0.835338,0.276072,2.16167,1.20318,0.133201,2.20716,0.630897,0.113277,2.2351,0.589592,-6.29875e-06,2.319,1.29444,-6.30107e-06,2.266,1.44789,-6.30973e-06,2.06794,0.421114,-6.30859e-06,2.09388,0.475809,0.183392,2.00463,1.34196,0.202167,1.9735,0.784409,0.392911,1.90943,1.19976,0.348498,1.92005,0.601867,0.33381,1.93754,0.99199,0.399469,1.90264,1.01738,0.569816,1.38984,0.506817,0.4964,1.41779,1.3146,0.497983,1.37315,0.744881,0.566407,1.4049,1.46956,0.318749,1.36428,0.354124,0.308194,1.42584,0.26314,-6.33758e-06,1.43071,1.55957,-6.34093e-06,1.35415,1.2887,1.69807,0.0281047,1.19949,1.56805,-0.282824,0.653916,1.3929,-0.572765,0.497036,1.82688,0.533305,0.338087,1.47174,-0.00428325,0.943288,1.41049,-0.499542,0.960838,1.85411,0.671443,0.357301,1.53833,0.290341,0.423546,1.43296,-0.359208,0.681087,1.23294,0.807091,1.02017,1.24765,0.776912,1.20848,1.13355,0.55713,1.29194,0.995964,0.254819,1.25333,0.900427,0.0506986,1.18087,0.93394,-0.176781,0.995851,1.05349,-0.371852,0.632236,1.04932,-0.425182,0.469837,0.934325,-0.22873,0.423958,0.895668,0.0517108,0.451267,0.9146,0.339187,0.534933,1.16431,0.629688,1.0362,0.60384,1.4622,0.455305,0.521127,1.495,1.35918,0.503442,1.44406,0.712728,0.600226,1.48063,1.52751,0.328219,1.44453,0.29468,0.32384,1.50364,0.21341,-6.33422e-06,1.50767,1.63445,-6.33774e-06,1.42714,1.52252,-6.35434e-06,1.04733,0.325205,-6.35136e-06,1.11555,0.383664,0.418815,1.11613,1.42003,0.431597,1.05905,0.757723,0.745841,1.1041,1.2804,0.655761,1.07239,0.534034,0.65369,1.11361,1.00917,0.750392,1.09034,1.01789,0.797933,1.13509,0.51403,0.714169,1.16152,1.2966,0.706732,1.11635,0.748159,0.797843,1.15074,1.45928,0.471866,1.09756,0.348892,0.458985,1.15844,0.238958,-6.34966e-06,1.15446,1.61756,-6.35282e-06,1.08204,1.45385,-6.37076e-06,0.671785,0.357481,-6.3681e-06,0.732485,0.454366,0.537002,0.728539,1.33558,0.551557,0.679545,0.773866,0.950002,0.711719,1.1697,0.836612,0.689676,0.583844,0.833725,0.722093,0.970559,0.956002,0.700918,0.389841,-6.3191e-06,1.85357,1.48126,-6.32173e-06,1.7934,0.455792,0.198496,1.84994,1.36566,0.215076,1.79978,0.777808,0.412404,1.83219,0.585643,0.353642,1.84278,1.22499,0.364608,1.80753,0.99746,0.417735,1.82008,1.00628,0.440574,1.90489,1.24628,0.384858,1.89165,0.571896,0.374279,1.92883,0.774568,0.434946,1.91766,1.39466,0.23027,1.88347,0.434929,0.212833,1.93639,1.51659,-6.31809e-06,1.87675,0.365363,-6.31531e-06,1.94022,0.458766,0.920013,-0.279056,0.377877,0.646653,0.436606,0.984125,0.947877,-0.421465,1.335,0.780741,0.0538123,1.33756,0.67928,0.29422,0.687114,0.948182,-0.436876,0.338575,0.774375,0.0937054,0.417733,0.529508,0.82856,1.46447,0.539726,0.776228,1.22369,0.872684,-0.232796,0.679799,-6.40663e-06,-0.558904,1.3209,-6.40149e-06,-0.275525,1.34382,-6.39741e-06,0.0148652,1.45233,-6.39365e-06,0.271039,0.347842,-6.40394e-06,-0.320981,0.354973,-6.39882e-06,0.0463635,0.343373,-6.39276e-06,0.420584,1.0995,-6.40548e-06,-0.532634,0.3815,0.286745,0.411504,0.328315,0.419292,0.0678628,0.360253,0.448133,-0.289848,1.37471,0.315882,0.267116,1.38291,0.385162,0.0294302,1.32163,0.435526,-0.241994,1.01941,0.442244,-0.529966,0.642546,0.443918,-0.55495,0.680701,0.670339,-0.512596,1.23705,0.657457,-0.230208,1.34139,0.616799,0.048312,1.3511,0.52074,0.289046,0.455213,0.647485,-0.246533,0.340822,0.629119,0.0865085,0.383378,0.510413,0.402604,0.986721,0.671239,-0.496278,1.66156,-6.38636e-06,0.766654,1.59493,0.19435,0.767512,1.54321,0.363,0.771696,0.299942,0.124877,0.832711,0.261975,-6.38808e-06,0.830366,0.356749,0.337334,0.831458,1.0599,1.25993,-0.257421,0.550692,1.21598,-0.325752,0.669049,1.22476,-0.353293,0.80809,1.23755,-0.372266,0.473327,1.20894,-0.162654,1.14666,1.26385,-0.121516,1.288,2.98129,0.151112,0.39296,2.93195,0.574378,1.30675,2.18167,0.0601634,0.713301,1.55512,0.793565,1.00134,1.54714,0.768441,1.22627,1.49728,0.538229,1.32868,1.38533,0.243616,1.31877,1.31927,0.0309145,1.23678,1.20167,-0.247409,1.00347,1.22472,-0.471722,0.609174,1.2087,-0.533566,0.403778,1.17313,-0.317377,0.331647,1.17628,0.0210544,0.356412,1.22168,0.328454,0.47867,1.49451,0.613209,0.680793,2.21897,0.688619,0.948268,2.21406,0.661509,0.458263,2.22159,0.531065,1.3149,2.65733,0.0982695,0.416363,2.64812,0.528645,1.13173,2.95465,0.540582,0.647282,2.92592,0.733413,1.26359,2.63935,0.272165,0.660102,2.61634,0.692064,0.908575,2.60999,0.671023,1.22546,2.97363,0.323267,0.880001,2.92756,0.714355,1.15319,2.20431,0.479808,1.27255,2.18968,0.243315,0.72809,1.52228,0.751425,0.981452,1.51392,0.728655,1.18576,1.46226,0.516509,1.28043,1.3512,0.23734,1.26792,1.28522,0.0388945,1.1929,1.18389,-0.21823,0.971801,1.21683,-0.430276,0.642155,1.20652,-0.492709,0.448657,1.16247,-0.28843,0.384668,1.15925,0.0260909,0.408276,1.20004,0.316838,0.519075,1.46584,0.585588,0.699941,1.85125,0.685431,1.15592,1.83559,0.476767,1.26685,1.77356,0.216617,0.71209,1.58518,0.782475,0.997158,1.57818,0.758493,1.21903,1.53149,0.531925,1.32233,1.42492,0.240847,1.31568,1.35812,0.0306263,1.23296,1.23925,-0.251042,0.997298,1.24377,-0.474575,0.613762,1.22759,-0.537586,0.405806,1.19978,-0.321667,0.332308,1.20659,0.0184557,0.356503,1.25415,0.324545,0.480537,1.5283,0.605013,0.807728,-6.40687e-06,-0.492708,0.942668,-6.40618e-06,-0.481073,0.359224,-6.33562e-06,1.47569,1.47985,-6.33844e-06,1.41111,1.17537,-6.33767e-06,1.42866,0.673346,-6.33641e-06,1.45759,0.725063,-6.31887e-06,1.85888,1.16295,-6.31997e-06,1.83365,1.42853,-6.32064e-06,1.81834,0.451072,-6.31818e-06,1.87467,1.05377,-6.29799e-06,2.33644,0.85912,-6.29758e-06,2.34584,0.770581,-6.3078e-06,2.11211,0.542757,-6.30722e-06,2.12524,1.35552,-6.30927e-06,2.0784,1.13469,-6.30872e-06,2.09113,0.434958,-6.40403e-06,-0.277515,0.435881,-6.39854e-06,0.0426965,0.483464,-6.38303e-06,0.429721,0.44443,-6.36726e-06,0.751881,0.364531,-6.35264e-06,1.08626,0.390553,-6.3357e-06,1.47388,0.478399,-6.31825e-06,1.8731,0.565479,-6.30728e-06,2.12393,1.23193,-6.40255e-06,-0.259724,1.2441,-6.3981e-06,0.0167917,1.23711,-6.39035e-06,0.289029,1.43064,-6.36649e-06,0.769393,1.51564,-6.35327e-06,1.0719,1.44272,-6.33835e-06,1.41325,1.39614,-6.32056e-06,1.82021,1.32859,-6.3092e-06,2.07996,0.838476,-6.29896e-06,2.31438,0.671883,-0.000328881,2.27822,1.20979,0.000349658,2.25983,1.06825,-6.29939e-06,2.30452,0.687832,-6.30128e-06,2.26116,1.1936,-6.30201e-06,2.24455,0.628361,-0.000325411,-0.451699,0.802078,-6.40649e-06,-0.478166,0.945862,-6.40613e-06,-0.467444,1.07654,-0.000176875,-0.445314,0.634663,4.03235e-05,-0.439184,1.06913,-2.47629e-05,-0.433537,1.15281,7.84932,0.732566,1.02884,7.18582,0.760986,1.04633,7.48992,0.667375,1.29936,8.14217,0.594306,1.42385,8.32208,0.564128,1.2312,6.53935,0.999114,1.06941,6.98126,0.815587,1.19895,6.75151,0.907431,1.1999,6.31595,1.01771,0.973239,7.16111,0.735,1.067,6.929,0.814452,1.17962,6.68462,0.903839,1.19332,6.49855,0.985018,1.25149,6.36621,1.06466,1.0338,7.21744,0.749622,1.04287,7.01417,0.797031,1.18023,6.78344,0.891745,1.22743,6.55474,0.988965,1.24673,6.37937,1.0599,1.0848,8.57531,1.02869,1.26645,2.46102,-0.157861,0.407579,2.39966,-0.332246,0.843652,2.37989,-0.53991,0.668146,2.3728,-0.539584,0.515147,2.37617,-0.469185,1.15652,2.41697,-0.364806,0.814202,1.59412,-0.4577,1.09287,1.60773,-0.31362,1.18929,1.6081,-0.152028,0.436538,1.58227,-0.255813,0.535312,1.58844,-0.401675,0.669081,1.59097,-0.447499,1.37217,4.55643,-0.124973,0.164654,4.36735,-0.254191,0.822119,4.47536,-0.645971,0.334341,4.39552,-0.53338,0.584028,4.43946,-0.629051,1.19403,4.52494,-0.448503,-0.000622508,9.37874,-0.849514,0.500149,6.17609,1.36244,0.217016,6.16859,1.47093,0.114675,5.00972,1.12501,0.469853,6.20299,1.36949,0.256166,5.35529,1.35937,0.477028,5.80914,1.43164,0.470357,6.1753,1.37386,-8.88178e-16,8.32545,-1.12727,0.000291177,8.98316,-1.02914,0,5.40598,1.53086,-8.88178e-16,9.06125,1.07932,-8.88178e-16,7.89621,1.3649,-8.88178e-16,8.06404,1.38275,-8.88178e-16,9.15783,1.02045,-8.88178e-16,8.74224,1.34093,-8.88178e-16,7.36021,1.45886,-8.88178e-16,6.74395,1.56781,-8.88178e-16,8.92671,1.19733,-8.88178e-16,7.54203,1.42804,-8.88178e-16,7.23914,1.48214,0.00079876,9.20369,-0.952232,-0.110415,9.20476,-0.941415,-0.170982,8.34011,-1.11114,-0.680396,9.46887,-0.766509,-0.123656,8.73339,-1.08355,-0.821324,9.32095,-0.86592,-0.927493,8.64377,-0.997871,-1.05366,8.78855,-0.946924,-0.893843,9.47686,-0.746422,-1.19251,8.96017,-0.890161,-0.804801,8.9928,-0.972846,-0.933813,9.14568,-0.931299,-1.03434,9.3284,-0.856747,-0.499207,9.19367,-0.92603,-0.384956,9.20593,-0.9375,-0.629831,8.86297,-1.02243,-0.450522,8.78759,-1.05682,-0.586384,8.4291,-1.07028,-0.784301,8.51491,-1.05216,-0.699268,9.17322,-0.927875,-0.582527,9.31737,-0.865289,-0.566969,9.05805,-0.990182,-0.396552,9.00199,-1.00243,-0.109946,8.9849,-1.02042,-0.245002,9.20505,-0.933132,-0.27482,8.7497,-1.06596,-0.36915,8.37405,-1.08551,-0.240044,8.9849,-1.00861,-0.871547,8.828,-0.996039,-0.997043,8.95811,-0.951943,-1.14048,9.12084,-0.887402,-0.70099,8.6835,-1.04348,-0.525557,8.58812,-1.07396,-0.149755,8.50507,-1.11453,-0.328565,8.54726,-1.08896,-0.605694,9.63223,-0.466861,-0.294361,9.53559,-0.685965,-0.457827,9.56855,-0.602733,-0.12819,9.53043,-0.722264,-0.137541,9.49879,-0.755275,-0.513855,9.55303,-0.647673,-0.334338,9.51679,-0.710329,-0.642864,9.6118,-0.580928,-0.743575,9.57224,-0.651023,-0.290947,9.40695,-0.806906,-0.455937,9.39862,-0.807285,-0.131849,9.39301,-0.831094,-0.127483,9.54955,-0.728612,-0.291584,9.55247,-0.691916,-0.6015,9.6469,-0.472186,-0.45473,9.58416,-0.607544,-1.25033,4.96474,1.02898,-0.877237,4.62352,1.3875,-0.891178,4.6347,1.37495,-1.2456,4.9399,1.04456,-1.12633,5.66778,1.0149,-0.75172,5.46538,1.46281,-0.736256,5.4606,1.47931,-1.24077,4.9552,1.04209,-0.888548,4.65291,1.37226,-1.2454,4.97991,1.02652,-0.87469,4.64184,1.3848,-0.827886,6.60746,0.875119,-0.506001,6.60736,1.16291,-0.491997,6.60361,1.17681,-0.817116,6.59997,0.896015,-1.05947,6.62574,0.564463,-0.825834,6.60367,0.880266,-1.04986,6.62059,0.582814,-1.2783,4.90092,1.12836,-1.56943,5.20454,0.67757,-1.28856,4.91162,1.11247,-1.55763,5.19223,0.695855,-1.17182,5.64865,1.15767,-1.50002,5.86362,0.682478,-1.18442,5.65406,1.14147,-1.48897,5.85018,0.702933,-1.56427,5.1777,0.698759,-1.29337,4.89406,1.11628,-1.28304,4.88325,1.13219,-1.57616,5.19015,0.680435,-1.68882,5.46584,0.181691,-1.63895,5.21169,0.744793,-1.6395,5.22077,0.724939,-1.67102,5.45718,0.204351,-1.55801,5.87868,0.736724,-1.5398,6.04746,0.168506,-1.55219,5.87345,0.755003,-1.66184,5.47054,0.203425,-1.63113,5.23712,0.722077,-1.67961,5.47907,0.180849,-1.63061,5.22815,0.741858,-1.07221,6.62836,0.564614,-1.15849,6.68783,0.10321,-1.06936,6.62285,0.580096,-1.17685,6.69609,0.0816336,-0.951408,6.67944,-0.324539,-1.16828,6.70077,0.0739547,-0.960667,6.68182,-0.308288,-1.74615,5.5146,0.190843,-1.47843,5.59385,-0.308831,-1.73672,5.51739,0.173237,-1.48929,5.59064,-0.288563,-1.6003,6.06615,0.170243,-1.35431,6.06153,-0.315273,-1.59291,6.06423,0.153119,-1.36708,6.05788,-0.295615,-1.49723,5.57783,-0.288321,-1.74503,5.50255,0.176167,-1.75448,5.49968,0.193876,-1.48635,5.58113,-0.308707,-0.819472,6.28741,0.932342,-0.501447,6.15795,1.25212,-0.826,6.30916,0.916876,-0.488884,6.15533,1.26409,-1.11805,5.68681,1.01028,-0.745716,5.48644,1.45784,-0.730356,5.4817,1.47434,-0.937882,6.11333,0.922594,-1.1781,6.28319,0.507031,-0.947031,6.11749,0.908223,-1.16985,6.27234,0.524478,-1.1634,5.67108,1.15104,-1.4892,5.88327,0.676562,-1.1759,5.67644,1.13485,-1.47819,5.87006,0.696959,-1.24736,6.33482,0.0944334,-1.22942,6.22334,0.550693,-1.25882,6.34231,0.07431,-1.22831,6.22066,0.567996,-1.51542,6.04529,0.184462,-1.55094,5.89146,0.734093,-1.53165,6.05848,0.166709,-1.54517,5.88626,0.752343,-1.28375,6.3669,0.0582388,-1.04292,6.3498,-0.348212,-1.27612,6.36469,0.044025,-1.05455,6.34699,-0.33149,-1.58265,6.09013,0.167558,-1.33665,6.0831,-0.314151,-1.57522,6.08818,0.150568,-1.34932,6.07969,-0.294646,-0.868343,6.3446,0.863753,-0.503776,6.20361,1.25413,-0.489193,6.19821,1.26862,-1.11758,5.66097,1.03834,-0.815896,6.60246,0.890225,-1.10739,5.67964,1.03214,-0.853386,6.33849,0.879719,-0.910362,6.13553,1.02353,-1.19444,6.2545,0.620513,-0.920967,6.14006,1.00756,-1.18412,6.24533,0.639886,-1.52347,6.03414,0.186272,-1.14809,6.68129,0.120245,-1.28308,6.22276,0.648709,-1.31658,6.336,0.134315,-1.27877,6.2174,0.665575,-1.30326,6.32613,0.151709,-1.36006,6.39311,0.134204,-1.114,6.35514,-0.300004,-1.35183,6.39447,0.122144,-1.12546,6.35462,-0.282431,-0.499423,6.20379,1.35803,-0.268936,5.35218,1.3434,-0.0646213,4.90934,1.17005,0,4.88882,1.16613,-0.120561,5.02152,1.11971,-0.218392,6.19625,1.46693,0,6.18975,1.48059,-0.509744,5.80987,1.4208,-0.198819,5.80294,1.52383,-0.147569,5.38177,1.49517,0,5.81389,1.50029,-0.0444574,4.58788,-0.0197704,-0.0722725,4.4032,-0.00955448,-0.293725,4.62057,-0.398998,-0.302145,4.43853,-0.392149,-0.606163,4.88381,0.929928,-0.635438,4.72223,0.872027,-0.199632,4.71973,0.76073,-0.223388,4.54895,0.720406,-0.0543837,4.62354,0.380688,-0.0846645,4.46278,0.37462,-0.204422,4.07157,0.074744,-0.164837,4.24889,0.0489647,-0.188476,4.09036,0.361041,-0.160319,4.26425,0.364965,-0.308082,4.04819,-0.232104,-0.277003,4.22296,-0.293455,-0.462387,4.13957,0.806038,-0.440977,4.3103,0.804237,-0.291547,4.11259,0.652618,-0.270885,4.27826,0.667174,-0.399681,4.82931,0.899179,-0.429243,4.65907,0.872248,-0.680171,4.18541,0.77273,-0.661525,4.33198,0.796903,-0.3487,4.62409,-0.434135,-0.357184,4.44208,-0.427301,-0.373046,4.04185,-0.283085,-0.341966,4.21662,-0.344436,-0.582336,1.90616,-0.44386,-0.590163,1.72859,-0.40078,-0.495096,2.60839,-0.433261,-0.473149,2.74853,-0.412047,-0.578025,2.63147,0.586306,-0.592278,2.79903,0.622303,-0.449951,2.64686,0.513139,-0.483379,2.46384,0.520976,-0.624026,2.79959,0.618494,-0.645615,2.61212,0.625388,-0.522034,1.91882,-0.385586,-0.519019,1.74218,-0.330723,-0.352407,2.38746,0.273148,-0.397992,2.19527,0.285345,-0.335365,2.11818,-0.0375792,-0.365057,1.92326,-0.00555976,-0.312757,2.58601,0.138641,-0.288356,2.72218,0.144872,-0.431228,2.61782,0.454169,-0.407343,2.74112,0.50524,-0.456637,2.60399,-0.394551,-0.434497,2.74265,-0.37321,-0.350283,2.5908,-0.150365,-0.323977,2.72632,-0.13475,-0.366183,1.8064,-0.112716,-0.435951,1.66305,-0.18443,-0.453147,1.89489,-0.308375,-0.501964,1.73145,-0.360659,-0.541821,1.70995,0.47196,-0.543616,1.56686,0.436717,-0.376836,1.69303,0.213406,-0.384128,1.56759,0.096269,-0.715472,1.73794,0.614496,-0.698905,1.56777,0.579624,-0.490905,1.94014,-0.384198,-0.547458,1.78292,-0.446229,-0.429385,4.85199,1.03074,-0.725963,5.04707,1.08353,-1.0785,5.37978,0.933946,-1.36058,5.54079,0.583187,-1.02869,3.98086,0.657097,-1.39224,4.00945,0.250249,-0.50332,3.88588,0.852239,-0.744606,3.92793,0.825235,-1.05315,4.60377,0.747587,-1.31093,4.68073,0.435861,-0.466874,4.3484,0.876012,-0.738292,4.44843,0.87528,-1.30829,5.80494,0.583008,-1.08368,5.63191,0.937578,-0.725161,5.23373,1.13612,-0.413324,4.99181,1.07694,-1.25428,5.46743,0.759061,-1.16755,4.00075,0.454234,-1.21081,4.64246,0.597919,-1.20544,5.72585,0.761699,-1.32132,3.92324,-0.0452496,-1.42302,5.19948,-0.100099,-0.190716,3.90931,-0.127151,-0.138593,4.82539,-0.335386,-1.16511,3.98957,-0.292657,-0.846592,4.946,-0.589549,-0.6091,4.88499,-0.596224,-0.324149,4.83646,-0.524914,-1.22295,5.0603,-0.361775,-0.797646,4.00471,-0.45982,-0.344533,3.95459,-0.299691,-0.558956,3.99392,-0.419747,-1.26115,4.74756,-0.251257,-1.26115,4.95802,-0.268192,-1.22132,5.0284,0.565756,-1.21111,4.8389,0.541027,-1.3184,4.78197,-0.0142018,-1.31104,4.82193,0.270942,-1.3184,4.98789,-0.0221026,-1.31104,5.01842,0.281784,-1.22359,4.83678,0.507288,-1.23252,5.02716,0.530283,-1.26135,5.0285,0.530283,-1.25242,4.83774,0.507288,-1.34792,5.01495,0.281065,-1.4202,4.95673,-0.0254527,-1.34792,4.8157,0.270071,-1.4202,4.75018,-0.0175519,-1.23994,4.83953,0.541027,-1.25015,5.02936,0.565756,-1.34269,4.9823,0.10295,-1.34269,4.7786,0.102925,-1.37213,4.75022,0.176607,-1.37213,5.04679,0.174201,-1.37736,4.76061,0.260651,-1.37736,5.05284,0.266223,-1.20446,5.04681,0.17237,-1.19325,5.05158,0.263933,-1.22532,4.7505,0.174188,-1.21419,4.75934,0.25787,-1.36023,4.76049,0.260392,-1.35618,4.75025,0.176382,-1.35003,5.04679,0.173976,-1.35384,5.05268,0.265942,-1.37438,4.47863,0.251982,-1.36838,4.48595,0.160235,-1.34052,4.19309,0.122308,-1.34711,4.19112,0.206757,-1.20188,4.2066,0.208811,-1.21053,4.20822,0.124388,-1.21471,4.4957,0.255018,-1.22377,4.5024,0.163339,-1.39776,4.47612,0.251523,-1.36414,4.1893,0.206478,-1.39034,4.48345,0.159745,-1.35636,4.19126,0.122014,-1.32919,4.23262,0.0538649,-1.35252,4.43311,0.0814129,-1.45044,4.19083,-0.0391414,-1.34138,4.2455,0.224207,-1.474,4.39521,-0.0190261,-1.36442,4.44006,0.262045,-1.17187,4.26709,0.458369,-1.20264,4.45613,0.476149,-1.17385,4.45801,0.477113,-1.14313,4.26935,0.459323,-1.3282,4.44749,0.264415,-1.30062,4.46153,-0.0400316,-1.30547,4.25561,0.227101,-1.27713,4.25778,-0.0600609,-1.25708,4.46967,-0.18908,-1.19814,4.267,-0.194724,-0.59087,9.31707,0.780982,-0.975657,9.40122,0.649788,-0.178412,9.1013,1.02887,-1.12511,9.21987,0.777692,-0.672408,9.1871,0.907806,-0.879266,8.5229,1.10949,-0.205575,8.45756,1.32372,-8.88178e-16,8.44854,1.40953,-0.245447,8.05611,1.30867,-0.907052,8.124,1.07087,-0.995036,7.88309,0.923886,-0.233134,7.88313,1.29375,-0.238394,7.44382,1.37362,-0.898735,7.21664,0.940536,-1.38974,8.09608,0.41755,-1.13471,7.19123,0.556943,-1.15017,7.25744,0.063476,-1.31053,7.81961,0.540716,-1.2767,7.78147,0.0252519,-0.502287,9.50766,0.665323,-0.839546,9.52555,0.566444,-0.864415,9.36822,0.707973,-0.988083,9.2315,0.834762,-0.740764,9.52079,0.607061,-1.2047,8.54104,0.93856,-1.37559,8.42643,0.729743,-1.11353,8.30117,0.949475,-1.21507,8.19091,0.786984,-0.909937,8.19784,-0.928899,-0.817802,8.00145,-0.89299,-0.958795,7.66587,-0.551799,-1.12571,7.86685,-0.490467,-1.20993,7.80075,-0.229638,-1.08717,7.53779,-0.228871,-1.15867,7.48191,0.0434332,-0.200032,7.6738,1.28343,-0.934561,7.51216,0.8044,-1.15427,7.47509,0.529141,-8.88178e-16,7.70845,1.36647,-0.193369,9.21212,0.957453,-0.43263,9.1549,0.927797,-0.547534,8.48582,1.20432,-0.576955,8.05165,1.20399,-0.599787,7.84668,1.12325,-0.543666,7.30867,1.17307,-0.553912,7.57348,1.06614,-0.397439,9.26676,0.842158,-0.753483,9.3466,0.738413,-0.857684,9.21958,0.877431,-0.643793,9.51818,0.634965,-0.216757,8.24749,1.35328,-0.900649,8.31823,1.12305,-0.560121,8.26653,1.23379,-1.05149,8.41163,1.0203,-1.45777,8.23468,0.402283,-0.186252,8.74835,1.27128,-0.852379,8.76402,1.08877,-1.17055,8.74578,0.960714,-1.30096,8.68131,0.865188,-0.520143,8.74765,1.1399,-1.05464,8.7848,1.04681,-0.945732,7.39888,-0.516642,-1.07401,7.31324,-0.215062,-0.700664,7.67601,-0.79159,-1.16622,6.93132,-0.260588,-0.826563,7.01239,-0.545932,-1.31307,6.84663,0.148804,-1.2613,6.89241,-0.0710742,-1.3349,6.60681,0.772069,-1.10794,6.4845,1.22683,-0.699047,6.61087,1.47556,-0.320833,6.81869,1.55225,-8.88178e-16,7.03758,1.58475,-0.240498,7.96804,1.2987,-0.954252,8.01004,0.997964,-0.930759,9.39004,0.672431,-1.07706,9.22383,0.80643,-0.79884,9.52422,0.576475,-1.27971,8.47658,0.864396,-1.16543,8.24462,0.867181,-0.594819,7.94705,1.16782,-1.24365,8.70737,0.920553,-0.703141,7.41564,-0.663405,-0.969368,7.19475,-0.394569,-1.18478,7.08871,0.0917449,-1.08706,7.13503,-0.151225,-0.560498,7.06125,1.22961,-0.934993,6.99261,1.01244,-0.267376,7.22903,1.39312,-1.17711,6.99923,0.618257,-1.05774,7.06568,-0.297569,-1.2319,6.98787,0.129224,-1.17761,7.02504,-0.104756,-0.639062,6.84012,1.31989,-1.04642,6.69813,1.1118,-0.292941,7.04109,1.44131,-8.88178e-16,7.22165,1.497,-1.29848,6.83092,0.689394,-0.790782,7.19468,-0.56465,-0.321855,6.57238,1.51538,-0.710574,6.33621,1.42924,-1.0759,6.24974,1.21848,-1.3154,6.38668,0.82238,-1.2518,6.73739,-0.0526351,-1.33274,6.67645,0.172437,-0.965045,6.79898,-0.659187,-1.16145,6.76823,-0.24826,-1.0402,8.04031,-0.725703,-0.887699,7.83016,-0.720408,-0.813586,7.53556,-0.661134,-1.0209,6.95991,-0.448313,-0.838444,7.29121,-0.569719,-0.926177,7.11983,-0.477516,-1.07452,6.81925,-0.437895,-0.173445,8.96122,1.15467,-0.774099,8.99148,1.02389,-1.09957,8.97056,0.948887,-1.23043,8.92922,0.887784,-0.493793,8.9681,1.05204,-0.965995,9.00804,0.985898,-1.17982,8.94411,0.923428,-1.35555,6.76253,0.450005,-1.31566,7.79585,0.286169,-1.17631,7.46502,0.297415,-1.16083,7.21808,0.321872,-1.19333,7.05459,0.359919,-1.26287,6.93962,0.413147,-1.34476,6.55454,0.464748,-0.159492,9.41359,0.745023,-0.342696,9.49027,0.689146,-0.675147,7.64167,-0.722921,-0.915877,7.37232,-0.455065,-1.10358,7.2298,0.0771934,-1.02469,7.28742,-0.180088,-0.518864,7.25655,1.14181,-0.854859,7.17429,0.910439,-0.230755,7.39005,1.32832,-8.88178e-16,7.47513,1.3911,-1.08356,7.16112,0.546589,-0.791081,7.50321,-0.600448,-1.10716,7.18688,0.321011,-0.959971,7.17386,-0.333773,-1.15382,7.06434,0.109545,-1.06877,7.1128,-0.115166,-0.545908,7.00318,1.20819,-0.937342,6.91266,1.00982,-0.255208,7.1745,1.35712,-8.88178e-16,7.31764,1.41773,-1.1692,6.96174,0.613631,-0.711382,7.38666,-0.571905,-0.847845,7.2667,-0.496213,-1.1715,7.02463,0.364214,-1.05939,7.03105,-0.252805,-1.21746,6.95149,0.143825,-1.17433,6.98884,-0.0666063,-0.629174,6.76969,1.32405,-1.02836,6.6315,1.10665,-0.282022,6.97429,1.42014,-1.28022,6.76248,0.687934,-0.792862,7.13732,-0.519086,-0.936811,7.0869,-0.412607,-1.24864,6.89149,0.408689,-0.841249,6.96322,-0.529245,-1.08359,6.4402,1.20862,-1.30226,6.55834,0.760303,-8.88178e-16,6.98216,1.54723,-0.308085,6.77537,1.5221,-0.677455,6.56105,1.44783,-1.28178,6.8088,0.159271,-1.22904,6.86257,-0.0494058,-1.14139,6.90272,-0.2336,-1.00929,6.93804,-0.436165,-1.32308,6.7156,0.434031,-0.96489,6.88944,-0.662043,-1.12124,6.29905,1.26301,-1.36376,6.4354,0.856044,-0.328864,6.61567,1.5711,-0.739449,6.38407,1.48289,-1.37222,6.71032,0.16355,-1.28809,6.77344,-0.0766489,-1.19466,6.81476,-0.280234,-1.10215,6.86125,-0.47201,-1.39558,6.59706,0.482024,-0.233633,7.47132,1.36164,-0.906589,7.25042,0.924419,-1.13717,7.22168,0.551769,-1.14979,7.28492,0.0607913,-0.545114,7.33975,1.15959,-1.07471,7.3409,-0.217797,-0.943895,7.43034,-0.522548,-0.709137,7.71498,-0.806462,-0.817573,7.57032,-0.67045,-1.16242,7.24767,0.318401,-0.696672,7.44916,-0.673081,-0.956683,7.22082,-0.405539,-1.17125,7.10969,0.0882902,-1.07284,7.15761,-0.156917,-0.55161,7.09071,1.21451,-0.908883,7.03001,0.990166,-0.261818,7.25295,1.38103,-1.15249,7.02355,0.603724,-0.828717,7.32241,-0.574991,-1.17429,7.07319,0.351326,-1.03406,7.08481,-0.306851,-1.21856,7.00233,0.124455,-1.15209,7.04061,-0.109213,-0.620687,6.87204,1.29827,-1.02922,6.73386,1.0897,-0.284266,7.0652,1.42421,-1.27957,6.85841,0.678488,-0.783486,7.2316,-0.570055,-0.909019,7.15094,-0.47834,-1.24925,6.95828,0.405289,-1.1496,6.94082,-0.261502,-1.30286,6.85874,0.147486,-1.25242,6.90274,-0.0705539,-0.691807,6.62713,1.45406,-1.09964,6.49994,1.21258,-0.316649,6.83528,1.53663,-1.32979,6.62377,0.764289,-0.822843,7.03559,-0.535506,-1.01531,6.97267,-0.436458,-1.34485,6.77673,0.447066,-0.962371,6.90355,-0.654128,-1.12068,6.31348,1.26457,-1.35781,6.44736,0.849536,-0.325411,6.63083,1.56843,-0.737402,6.40205,1.48726,-1.36482,6.71787,0.162345,-1.28265,6.78178,-0.0757,-1.19108,6.82549,-0.277918,-1.09924,6.8705,-0.466266,-1.39188,6.60734,0.479457,-0.0558476,9.06589,1.07596,-0.0241488,8.45041,1.41067,-0.0385714,7.89495,1.3594,-0.0399887,7.50822,1.43541,-0.0380603,8.06368,1.37764,-0.0335346,7.70347,1.36272,-0.0602664,9.16291,1.01615,-0.029935,8.24878,1.41519,-0.0232522,8.74402,1.34334,-0.0467371,7.00374,1.58227,-0.0377553,7.97728,1.36948,-0.0447745,7.34045,1.45496,-0.0481064,7.19395,1.49377,-0.0480841,6.71555,1.56313,-0.0397342,8.93213,1.19589,-0.0451413,9.39002,0.764039,-0.0387268,7.46265,1.38745,-0.0427114,7.29598,1.41452,-0.0444185,7.13448,1.4657,-0.0447774,6.95039,1.54622,-0.0498117,6.76639,1.63178,-0.0391978,7.53178,1.42397,-0.043865,7.35868,1.44402,-0.0471173,7.21253,1.47887,-0.0464097,7.01768,1.5689,-0.0499256,6.78368,1.62794,-0.0936353,9.604,0.741989,-0.39601,9.7545,0.66084,-0.209719,9.65492,0.721058,-0.723087,9.73189,0.404503,-0.628159,9.7657,0.540556,-0.685638,9.75102,0.500355,-0.754673,9.71353,0.400203,-0.521056,9.77686,0.609638,-1.48322,8.18389,-0.00708664,-1.40678,8.07636,0.0197476,-1.31351,8.13244,-0.418219,-1.41904,8.28835,-0.385392,-1.28776,8.52024,-0.762104,-1.0222,8.34777,-0.896207,-1.17447,8.20133,-0.668468,-1.34993,8.39418,-0.583078,-1.40152,8.07553,0.218831,-1.47436,8.19444,0.177145,-1.36417,8.09084,-0.197264,-1.46709,8.21433,-0.194595,-0.164457,9.43744,0.743553,-0.0499347,9.41117,0.761998,-8.88178e-16,9.40925,0.764248,-0.488439,9.57101,0.639293,-0.348266,9.51627,0.688662,-0.800352,9.57309,0.537277,-0.763088,9.56799,0.552318,-0.715198,9.56974,0.584876,-0.621404,9.58063,0.613716,-0.407302,-6.3965e-06,0.0436081,-1.27562,-6.39579e-06,0.0147574,-1.26702,-6.38189e-06,0.283082,-0.412871,-6.36729e-06,0.751201,-0.455625,-6.37978e-06,0.430463,-1.25394,-0.000216938,-0.257379,-0.990348,-6.4163e-06,-0.277655,-0.723394,-6.41695e-06,-0.27566,-0.403003,-6.41809e-06,-0.277721,-0.69384,-6.39638e-06,0.0344671,-1.01717,-6.39599e-06,0.0314384,-1.02178,-6.38164e-06,0.331851,-0.734753,-6.37913e-06,0.423031,-1.46942,-6.36627e-06,0.774537,-0.729295,-6.36699e-06,0.758025,-1.15139,-6.36811e-06,0.73235,-0.673916,-6.35316e-06,1.07443,-1.22315,-6.35416e-06,1.05154,-1.55626,-6.35314e-06,1.07473,-0.330255,-6.35258e-06,1.08758,-1.30588,2.33173,0.0149183,-1.29989,2.33905,-0.0768289,-1.27202,2.04619,-0.114756,-1.27862,2.04422,-0.0303068,-1.13338,2.0597,-0.0282529,-1.14203,2.06132,-0.112676,-1.14621,2.3488,0.0179544,-1.15527,2.3555,-0.0737248,-1.32926,2.32922,0.0144592,-1.29564,2.0424,-0.0305864,-1.32184,2.33655,-0.0773194,-1.28786,2.04436,-0.11505,-1.26493,2.08701,-0.137056,-1.28993,2.28735,-0.114403,-1.38559,2.0433,-0.214713,-1.26395,2.09859,-0.00404445,-1.41583,2.2475,-0.226286,-1.28627,2.29316,0.0321208,-1.20938,2.11892,0.225171,-1.21863,2.31049,0.23707,-1.21046,2.30789,0.208324,-1.17973,2.11923,0.190534,-1.25996,2.30109,0.027811,-1.21243,2.31507,-0.245045,-1.23692,2.10875,-0.00992647,-1.18819,2.11044,-0.24671,-1.20899,2.71904,-0.165393,-1.25207,2.84022,0.0717215,-1.19652,2.92392,-0.174488,-1.23982,3.00787,0.0992935,-1.18958,2.92535,0.270598,-1.18596,3.05168,0.278547,-1.19291,2.9451,0.30721,-1.21804,2.75459,0.305566,-1.26701,2.92967,0.104351,-1.40822,2.89126,-0.0852738,-1.28034,2.73266,0.0784783,-1.41442,2.68468,-0.0909279,-1.27484,2.91513,-0.0324875,-1.28626,2.71129,-0.0461999,-1.3159,2.67797,-0.0291299,-1.2967,2.97308,-0.00682441,-1.32207,2.68173,0.0554066,-1.3033,2.97188,0.085301,-1.12937,2.96219,-0.0063242,-1.11965,2.95866,0.0854639,-1.16936,2.66876,-0.0294838,-1.1593,2.66994,0.05479,-1.30499,2.68051,0.055376,-1.29999,2.67696,-0.0291312,-1.27465,2.97164,-0.0067417,-1.27984,2.97019,0.0853341,-0.461164,0.781121,0.844178,-0.466477,0.837335,0.688042,-0.429261,0.774019,0.539136,-0.371317,0.628263,0.484688,-0.326587,0.48545,0.556593,-0.321223,0.428178,0.712927,-0.35849,0.492552,0.861635,-0.416434,0.638307,0.916083,-0.443962,0.743327,0.807418,-0.410667,0.637023,0.86094,-0.367537,0.52853,0.820412,-0.339835,0.4814,0.709574,-0.34379,0.523243,0.593353,-0.377084,0.629547,0.539831,-0.420215,0.73804,0.580359,-0.447916,0.78517,0.691197,-0.385811,0.746055,0.797038,-0.389201,0.781923,0.697414,-0.365455,0.741524,0.602403,-0.328483,0.648523,0.567662,-0.299943,0.557399,0.613542,-0.296553,0.521532,0.713166,-0.320299,0.561931,0.808177,-0.357271,0.654932,0.842918,-0.315158,0.713868,0.753441,-0.301618,0.670637,0.775207,-0.284078,0.626516,0.758726,-0.272813,0.60735,0.713651,-0.274421,0.624365,0.666387,-0.287961,0.667596,0.644621,-0.305501,0.711718,0.661103,-0.316766,0.730884,0.706178,-0.279671,0.654099,0.732429,-0.272635,0.677128,0.712045,-0.289114,0.691654,0.689399,-0.436877,0.743749,0.806231,-0.440766,0.784893,0.691952,-0.413526,0.73855,0.582965,-0.371116,0.631869,0.543113,-0.338378,0.527341,0.595742,-0.334489,0.486197,0.710021,-0.361728,0.532539,0.819009,-0.404138,0.63922,0.858859,-0.465692,0.620495,0.911346,-0.407747,0.474734,0.856899,-0.370454,0.409833,0.708289,-0.375845,0.467637,0.551856,-0.420574,0.61045,0.479951,-0.478518,0.756206,0.534399,-0.515734,0.819522,0.683305,-0.510421,0.763309,0.839442,-1.26657,0.808306,0.493823,-1.30452,0.795641,0.654964,-1.38426,0.683912,0.748372,-1.45908,0.538569,0.719329,-1.48516,0.444751,0.584849,-1.44722,0.457416,0.423708,-1.36748,0.569144,0.3303,-1.29265,0.714488,0.359343,-1.3661,0.719199,0.397776,-1.42087,0.612819,0.376519,-1.47923,0.531042,0.444886,-1.507,0.521772,0.562829,-1.48792,0.59044,0.661258,-1.43315,0.696819,0.682515,-1.37479,0.778595,0.614148,-1.34702,0.787865,0.496205,-1.52325,0.715093,0.539144,-1.53296,0.713429,0.509174,-1.52101,0.69978,0.483363,-1.49095,0.753329,0.548094,-1.51509,0.719508,0.57637,-1.53774,0.675511,0.567578,-1.54563,0.647112,0.52687,-1.53415,0.650945,0.478091,-1.51001,0.684767,0.449816,-1.48736,0.728763,0.458608,-1.47946,0.757162,0.499316,-1.41514,0.733751,0.406753,-1.46289,0.641013,0.388223,-1.51377,0.569723,0.447822,-1.53798,0.561643,0.55064,-1.52134,0.621504,0.636446,-1.4736,0.714242,0.654978,-1.42272,0.785531,0.595378,-1.39851,0.793612,0.49256,-1.36814,0.777514,0.61669,-1.4275,0.694348,0.686219,-1.48319,0.586161,0.664601,-1.5026,0.516327,0.5645,-1.47436,0.525755,0.444554,-1.41501,0.60892,0.375026,-1.35931,0.717108,0.396643,-1.3399,0.786941,0.496744,-1.33804,0.739594,0.350629,-1.41286,0.594251,0.321586,-1.4926,0.482522,0.414994,-1.53055,0.469857,0.576135,-1.50447,0.563675,0.710616,-1.42964,0.709018,0.739658,-1.3499,0.820746,0.646251,-1.31196,0.833411,0.485109,-1.16743,3.63709,0.45992,-1.25339,3.6302,0.24893,-1.21704,3.41321,0.210638,-0.409975,3.22617,0.628592,-0.452868,3.55902,0.754518,-0.521659,3.56624,0.842614,-1.15807,2.62835,0.482627,-1.13544,3.39457,0.38724,-1.10083,3.29414,0.608465,-0.633614,3.25811,0.782164,-0.822326,3.26655,0.786012,-1.31883,3.6035,0.683238,-1.16906,3.46589,0.442108,-0.672544,3.53397,1.06609,-0.675962,3.32046,0.833728,-1.14153,3.34873,0.66131,-0.859432,3.32157,0.840278,-1.21479,3.59922,0.919327,-0.933091,3.56936,1.07473,-1.17698,4.30296,1.02018,-1.15537,4.28856,0.8564,-0.781133,4.24829,1.07809,-0.924487,4.27631,1.1604,-0.735761,4.22188,1.03088,-1.11,4.26215,0.809183,-1.10469,4.26201,0.947081,-0.860104,4.2366,1.0774,-1.29172,3.97562,0.750202,-1.20478,3.95905,0.973674,-0.927878,3.92879,1.12692,-0.683455,3.91018,1.11053,-0.571008,3.89956,0.967287,-1.18677,3.96581,0.602518,-1.20517,3.62899,0.515782,-1.13983,3.42266,0.402131,-0.64673,3.27723,0.793751,-0.559533,3.55839,0.898404,-1.11085,3.30859,0.621734,-0.831793,3.28057,0.79948,-0.747104,4.22848,1.04268,-1.12134,4.26875,0.820988,-1.12276,4.27225,0.965357,-0.8762,4.24652,1.09815,-0.59912,3.90221,1.0031,-1.21301,3.96826,0.639439,-1.16424,4.26821,0.849495,-1.17878,4.2806,1.01716,-0.924708,4.25371,1.15822,-0.774781,4.2263,1.0802,-0.725048,4.20092,1.02674,-1.11499,4.24288,0.795745,-0.857282,4.21645,1.07082,-1.1037,4.24225,0.939208,-0.737481,4.20727,1.04011,-1.1273,4.24921,0.809182,-1.24914,1.96197,-0.178952,-0.414986,1.95607,-0.353849,-1.28376,2.96007,-0.136769,-0.381791,2.8367,-0.325976,-0.84911,1.96677,-0.537138,-0.683368,1.96515,-0.538737,-0.527617,1.96233,-0.478635,-1.14343,1.96536,-0.366156,-0.838194,2.793,-0.542682,-0.652923,2.78046,-0.54043,-0.494247,2.787,-0.466766,-1.16961,2.86858,-0.363455,-0.466213,0.566633,-0.251176,-0.413674,0.504901,0.450504,-1.07804,1.09479,0.91748,-0.972649,0.619688,-0.398664,-1.28759,0.448976,0.196158,-1.32343,0.453802,0.488573,-0.671957,0.615671,-0.427715,-0.652786,1.07731,0.909115,-0.390529,0.502167,0.0759872,-0.476147,0.780562,0.714817,-1.30345,0.762581,0.670227,-1.20731,0.54949,-0.163031,-0.464309,0.808765,-0.235687,-0.437274,0.774509,0.374743,-1.07148,1.14133,0.829282,-0.958492,0.84315,-0.387696,-1.25625,0.719717,0.109607,-1.29782,0.807912,0.324189,-0.680504,0.841521,-0.417657,-0.667357,1.12984,0.845017,-0.416793,0.769458,0.0544677,-0.536195,0.980873,0.624159,-1.23895,1.00907,0.588485,-1.18758,0.793045,-0.164153,-0.968392,-6.294e-06,2.42773,-1.1441,-6.29557e-06,2.39185,-0.8184,-6.29493e-06,2.40657,-0.801587,0.0505963,2.35725,-1.08176,0.0701109,2.33737,-0.890931,0.145089,2.31329,-1.02854,0.13252,2.3114,-0.832714,0.114053,2.32496,-0.964131,0.154172,2.30611,-0.971979,0.285007,2.15851,-0.71427,0.225009,2.17975,-1.10225,0.243271,2.1704,-0.835338,0.276072,2.16167,-1.20318,0.133201,2.20716,-0.630897,0.113277,2.2351,-0.589592,-6.29875e-06,2.319,-1.29444,-6.30107e-06,2.266,-1.44789,-6.30973e-06,2.06794,-0.421114,-6.30859e-06,2.09388,-0.475809,0.183392,2.00463,-1.34196,0.202167,1.9735,-0.784409,0.392911,1.90943,-1.19976,0.348498,1.92005,-0.601867,0.33381,1.93754,-0.99199,0.399469,1.90264,-1.01738,0.569816,1.38984,-0.506817,0.4964,1.41779,-1.3146,0.497983,1.37315,-0.744881,0.566407,1.4049,-1.46956,0.318749,1.36428,-0.354124,0.308194,1.42584,-0.26314,-6.33758e-06,1.43071,-1.55957,-6.34093e-06,1.35415,-1.2887,1.69807,0.0281047,-1.19949,1.56805,-0.282824,-0.653916,1.3929,-0.572765,-0.497036,1.82688,0.533305,-0.338087,1.47174,-0.00428325,-0.943288,1.41049,-0.499542,-0.960838,1.85411,0.671443,-0.357301,1.53833,0.290341,-0.423546,1.43296,-0.359208,-0.681087,1.23294,0.807091,-1.02017,1.24765,0.776912,-1.20848,1.13355,0.55713,-1.29194,0.995964,0.254819,-1.25333,0.900427,0.0506986,-1.18087,0.93394,-0.176781,-0.995851,1.05349,-0.371852,-0.632236,1.04932,-0.425182,-0.469837,0.934325,-0.22873,-0.423958,0.895668,0.0517108,-0.451267,0.9146,0.339187,-0.534933,1.16431,0.629688,-1.0362,0.60384,1.4622,-0.455305,0.521127,1.495,-1.35918,0.503442,1.44406,-0.712728,0.600226,1.48063,-1.52751,0.328219,1.44453,-0.29468,0.32384,1.50364,-0.21341,-6.33422e-06,1.50767,-1.63445,-6.33774e-06,1.42714,-1.52252,-6.35434e-06,1.04733,-0.325205,-6.35136e-06,1.11555,-0.383664,0.418815,1.11613,-1.42003,0.431597,1.05905,-0.757723,0.745841,1.1041,-1.2804,0.655761,1.07239,-0.534034,0.65369,1.11361,-1.00917,0.750392,1.09034,-1.01789,0.797933,1.13509,-0.51403,0.714169,1.16152,-1.2966,0.706732,1.11635,-0.748159,0.797843,1.15074,-1.45928,0.471866,1.09756,-0.348892,0.458985,1.15844,-0.238958,-6.34966e-06,1.15446,-1.61756,-6.35282e-06,1.08204,-1.45385,-6.37076e-06,0.671785,-0.357481,-6.3681e-06,0.732485,-0.454366,0.537002,0.728539,-1.33558,0.551557,0.679545,-0.773866,0.950002,0.711719,-1.1697,0.836612,0.689676,-0.583844,0.833725,0.722093,-0.970559,0.956002,0.700918,-0.389841,-6.3191e-06,1.85357,-1.48126,-6.32173e-06,1.7934,-0.455792,0.198496,1.84994,-1.36566,0.215076,1.79978,-0.777808,0.412404,1.83219,-0.585643,0.353642,1.84278,-1.22499,0.364608,1.80753,-0.99746,0.417735,1.82008,-1.00628,0.440574,1.90489,-1.24628,0.384858,1.89165,-0.571896,0.374279,1.92883,-0.774568,0.434946,1.91766,-1.39466,0.23027,1.88347,-0.434929,0.212833,1.93639,-1.51659,-6.31809e-06,1.87675,-0.365363,-6.31531e-06,1.94022,-0.458766,0.920013,-0.279056,-0.377877,0.646653,0.436606,-0.984125,0.947877,-0.421465,-1.335,0.780741,0.0538123,-1.33756,0.67928,0.29422,-0.687114,0.948182,-0.436876,-0.338575,0.774375,0.0937054,-0.417733,0.529508,0.82856,-1.46447,0.539726,0.776228,-1.22369,0.872684,-0.232796,-0.679799,-6.43868e-06,-0.558904,-1.3209,-6.41546e-06,-0.275525,-1.34382,-6.39402e-06,0.0148651,-1.45233,-6.37479e-06,0.271039,-0.347842,-6.42242e-06,-0.320981,-0.354973,-6.39539e-06,0.0463634,-0.343373,-6.36893e-06,0.420584,-1.0995,-6.43518e-06,-0.532634,-0.3815,0.286745,0.411504,-0.328315,0.419292,0.0678627,-0.360253,0.448133,-0.289848,-1.37471,0.315882,0.267116,-1.38291,0.385162,0.0294301,-1.32163,0.435526,-0.241994,-1.01941,0.442244,-0.529966,-0.642546,0.443917,-0.554951,-0.680701,0.670339,-0.512596,-1.23705,0.657457,-0.230208,-1.34139,0.616799,0.048312,-1.3511,0.52074,0.289046,-0.455213,0.647485,-0.246533,-0.340822,0.629119,0.0865085,-0.383378,0.510413,0.402604,-0.986721,0.671239,-0.496278,-1.66156,-6.33757e-06,0.766654,-1.59493,0.19435,0.767512,-1.54321,0.363,0.771696,-0.299942,0.124877,0.832711,-0.261975,-6.3381e-06,0.830366,-0.356749,0.337334,0.831458,-1.0599,1.25993,-0.257421,-0.550692,1.21598,-0.325752,-0.669049,1.22476,-0.353293,-0.80809,1.23755,-0.372266,-0.473327,1.20894,-0.162654,-1.14666,1.26385,-0.121516,-1.288,2.98129,0.151112,-0.39296,2.93195,0.574378,-1.30675,2.18167,0.0601634,-0.713301,1.55512,0.793565,-1.00134,1.54714,0.768441,-1.22627,1.49728,0.538229,-1.32868,1.38533,0.243616,-1.31877,1.31927,0.0309145,-1.23678,1.20167,-0.247409,-1.00347,1.22472,-0.471722,-0.609174,1.2087,-0.533566,-0.403778,1.17313,-0.317377,-0.331647,1.17628,0.0210544,-0.356412,1.22168,0.328454,-0.47867,1.49451,0.613209,-0.680793,2.21897,0.688619,-0.948268,2.21406,0.661509,-0.458263,2.22159,0.531065,-1.3149,2.65733,0.0982695,-0.416363,2.64812,0.528645,-1.13173,2.95465,0.540582,-0.647282,2.92592,0.733413,-1.26359,2.63935,0.272165,-0.660102,2.61634,0.692064,-0.908575,2.60999,0.671023,-1.22546,2.97363,0.323267,-0.880001,2.92756,0.714355,-1.15319,2.20431,0.479808,-1.27255,2.18968,0.243315,-0.72809,1.52228,0.751425,-0.981452,1.51392,0.728655,-1.18576,1.46226,0.516509,-1.28043,1.3512,0.23734,-1.26792,1.28522,0.0388945,-1.1929,1.18389,-0.21823,-0.971801,1.21683,-0.430276,-0.642155,1.20652,-0.492709,-0.448657,1.16247,-0.28843,-0.384668,1.15925,0.0260909,-0.408276,1.20004,0.316838,-0.519075,1.46584,0.585588,-0.699941,1.85125,0.685431,-1.15592,1.83559,0.476767,-1.26685,1.77356,0.216617,-0.71209,1.58518,0.782475,-0.997158,1.57818,0.758493,-1.21903,1.53149,0.531925,-1.32233,1.42492,0.240847,-1.31568,1.35812,0.0306263,-1.23296,1.23925,-0.251042,-0.997298,1.24377,-0.474575,-0.613762,1.22759,-0.537586,-0.405806,1.19978,-0.321667,-0.332308,1.20659,0.0184557,-0.356503,1.25415,0.324545,-0.480537,1.5283,0.605013,-0.807728,-6.43232e-06,-0.492708,-0.942668,-6.43122e-06,-0.481073,-0.359224,-6.33562e-06,1.47569,-1.47985,-6.33844e-06,1.41111,-1.17537,-6.33767e-06,1.42866,-0.673346,-6.33641e-06,1.45759,-0.725063,-6.31887e-06,1.85888,-1.16295,-6.31997e-06,1.83365,-1.42853,-6.32064e-06,1.81834,-0.451072,-6.31818e-06,1.87467,-1.05377,-6.29799e-06,2.33644,-0.85912,-6.29758e-06,2.34584,-0.770581,-6.3078e-06,2.11211,-0.542757,-6.30722e-06,2.12524,-1.35552,-6.30927e-06,2.0784,-1.13469,-6.30872e-06,2.09113,-0.434958,-6.41827e-06,-0.277515,-0.435881,-6.39645e-06,0.0426964,-0.483464,-6.37926e-06,0.429721,-0.44443,-6.36726e-06,0.751881,-0.364531,-6.35264e-06,1.08626,-0.390553,-6.3357e-06,1.47388,-0.478399,-6.31825e-06,1.8731,-0.565479,-6.30728e-06,2.12393,-1.23193,-6.41428e-06,-0.259724,-1.2441,-6.39573e-06,0.0167916,-1.23711,-6.38149e-06,0.289029,-1.43064,-6.36649e-06,0.769393,-1.51564,-6.35327e-06,1.0719,-1.44272,-6.33835e-06,1.41325,-1.39614,-6.32056e-06,1.82021,-1.32859,-6.3092e-06,2.07996,-0.838476,-6.29896e-06,2.31438,-0.671883,-0.000328881,2.27822,-1.20979,0.000349658,2.25983,-1.06825,-6.29939e-06,2.30452,-0.687832,-6.30128e-06,2.26116,-1.1936,-6.30201e-06,2.24455,-0.628361,-0.000325434,-0.4517,-0.802078,-6.43142e-06,-0.478167,-0.945862,-6.43012e-06,-0.467444,-1.07654,-0.000176897,-0.445314,-0.634663,4.03011e-05,-0.439184,-1.06913,-2.47859e-05,-0.433538,-1.15281,7.84932,0.732566,-1.02884,7.18582,0.760986,-1.04633,7.48992,0.667375,-1.29936,8.14217,0.594306,-1.42385,8.32208,0.564128,-1.2312,6.53935,0.999114,-1.06941,6.98126,0.815587,-1.19895,6.75151,0.907431,-1.1999,6.31595,1.01771,-0.973239,7.16111,0.735,-1.067,6.929,0.814452,-1.17962,6.68462,0.903839,-1.19332,6.49855,0.985018,-1.25149,6.36621,1.06466,-1.0338,7.21744,0.749622,-1.04287,7.01417,0.797031,-1.18023,6.78344,0.891745,-1.22743,6.55474,0.988965,-1.24673,6.37937,1.0599,-1.0848,8.57531,1.02869,-1.26645,2.46102,-0.157861,-0.407579,2.39966,-0.332246,-0.843652,2.37989,-0.53991,-0.668146,2.3728,-0.539584,-0.515147,2.37617,-0.469185,-1.15652,2.41697,-0.364806,-0.814202,1.59412,-0.4577,-1.09287,1.60773,-0.31362,-1.18929,1.6081,-0.152028,-0.436538,1.58227,-0.255813,-0.535312,1.58844,-0.401675,-0.669081,1.59097,-0.447499,-1.37217,4.55643,-0.124973,-0.164654,4.36735,-0.254191,-0.822119,4.47536,-0.645971,-0.334341,4.39552,-0.53338,-0.584028,4.43946,-0.629051,-1.19403,4.52494,-0.448503,0.000622508,9.37874,-0.849514,-8.88178e-16,9.49208,-0.771903,4.7793e-05,9.55431,-0.73164,9.81142e-05,9.53471,-0.725491,-8.88178e-16,8.73048,-1.0934,-8.88178e-16,8.50387,-1.12801,-8.88178e-16,9.59146,0.74638,-8.88178e-16,7.05105,1.57154,-8.88178e-16,8.24821,1.41598,-8.88178e-16,7.51918,1.43929,-8.88178e-16,6.81377,1.6327,-8.88178e-16,7.37736,1.448,-8.88178e-16,6.79603,1.63658,-8.88178e-16,7.16361,1.46898,-8.88178e-16,9.38926,0.766208,-8.88178e-16,7.97805,1.37499,-0.500149,6.17609,1.36244,-0.217016,6.16859,1.47093,0,6.16333,1.48198,-0.114675,5.00972,1.12501,-0.469853,6.20299,1.36949,-0.256166,5.35529,1.35937,-0.477028,5.80914,1.43164,-0.470357,6.1753,1.37386,-0.003073,9.1912,-0.925051,0.108215,9.19215,-0.914283,0.167592,8.34013,-1.08133,0.681061,9.44915,-0.743908,0.121073,8.72755,-1.05424,0.82083,9.30647,-0.839652,0.920417,8.64071,-0.968879,1.04516,8.78605,-0.918264,0.892716,9.45877,-0.722519,1.18353,8.95742,-0.861669,0.801336,8.98608,-0.943815,0.930281,9.13709,-0.902773,1.03166,9.31619,-0.829477,0.498321,9.18067,-0.899012,0.384714,9.19285,-0.910507,0.626642,8.85707,-0.993186,0.448973,8.78231,-1.02733,0.583776,8.42817,-1.04041,0.779697,8.51237,-1.02262,0.697926,9.16216,-0.900021,0.582664,9.30172,-0.839698,0.56488,9.0488,-0.96172,0.396103,8.99359,-0.973637,0.10763,8.97622,-0.991797,0.243976,9.19223,-0.906027,0.273,8.74414,-1.03653,0.366069,8.37397,-1.05567,0.238852,8.97641,-0.979858,0.865658,8.82401,-0.966894,0.990117,8.95397,-0.923049,1.13288,9.11555,-0.858868,0.696694,8.67986,-1.01401,0.523102,8.58589,-1.04414,0.146644,8.50307,-1.08476,0.325939,8.54529,-1.05914,0.592728,9.6172,-0.444366,0.286892,9.52368,-0.659464,0.448305,9.55169,-0.579823,0.124942,9.5217,-0.69375,0.135287,9.47847,-0.733327,0.515985,9.5281,-0.631134,0.332567,9.49373,-0.69122,0.646708,9.58573,-0.566581,0.744367,9.55013,-0.630761,0.28909,9.3893,-0.782715,0.455795,9.38012,-0.783675,0.129615,9.3766,-0.806083,0.124244,9.55866,-0.700216,0.281518,9.56012,-0.664711,0.58073,9.64911,-0.450652,0.437166,9.58836,-0.583589,1.23111,4.95519,1.00802,0.860301,4.61757,1.36347,0.874464,4.62829,1.35088,1.22862,4.93203,1.02112,1.10431,5.65297,1.0009,0.733346,5.45398,1.44201,0.717196,5.45033,1.45855,1.22227,4.94697,1.01996,0.87131,4.64614,1.34865,1.22481,4.97141,1.00643,0.857345,4.6357,1.36111,0.805736,6.60502,0.855035,0.485687,6.6032,1.14123,0.471918,6.59881,1.15504,0.79388,6.59071,0.879455,1.03658,6.61503,0.548304,0.803338,6.59402,0.862927,1.02741,6.61025,0.565817,1.25749,4.8913,1.10901,1.54941,5.19326,0.658291,1.26788,4.90153,1.09322,1.53761,5.18116,0.676439,1.15266,5.63575,1.13854,1.48276,5.84839,0.66323,1.16556,5.64067,1.12238,1.47098,5.83565,0.683817,1.54531,5.16607,0.678623,1.27336,4.88382,1.0964,1.26272,4.87345,1.11242,1.5579,5.17766,0.660169,1.6707,5.45201,0.162186,1.61352,5.19747,0.737636,1.61444,5.20614,0.717345,1.64903,5.44214,0.190558,1.53393,5.86292,0.72827,1.52606,6.03371,0.145654,1.52907,5.8583,0.743335,1.63856,5.45681,0.190405,1.60523,5.22352,0.715458,1.66037,5.46608,0.161849,1.60459,5.21469,0.735428,1.04664,6.61438,0.557526,1.13807,6.67709,0.0840332,1.04526,6.60822,0.569838,1.15404,6.68501,0.0976604,0.927779,6.66873,-0.309474,1.14467,6.68938,0.088545,0.936918,6.67077,-0.293666,1.72123,5.50301,0.202874,1.45445,5.58012,-0.29714,1.71209,5.50522,0.185297,1.46509,5.57728,-0.276893,1.57747,6.05059,0.181926,1.33285,6.0435,-0.304587,1.57037,6.04819,0.164711,1.34521,6.04065,-0.284453,1.47287,5.56405,-0.277508,1.7201,5.49034,0.187538,1.72938,5.48797,0.205414,1.4624,5.56639,-0.298266,0.799654,6.27963,0.911206,0.483485,6.15123,1.22905,0.805083,6.30092,0.897014,0.470829,6.14887,1.24102,1.09679,5.67361,0.993743,0.727738,5.47457,1.43697,0.711882,5.47066,1.45344,0.916151,6.10406,0.904104,1.15709,6.27265,0.488399,0.925481,6.10787,0.889704,1.14867,6.26206,0.505881,1.14447,5.65717,1.13238,1.47199,5.86736,0.657831,1.15738,5.66197,1.11621,1.46055,5.85471,0.678163,1.22376,6.32215,0.0809327,1.20262,6.21103,0.545251,1.23851,6.33019,0.0558579,1.2012,6.20879,0.563074,1.49512,6.02832,0.170325,1.52783,5.8739,0.726507,1.51722,6.04457,0.144386,1.52329,5.86935,0.740704,1.25919,6.35556,0.071204,1.01897,6.33669,-0.335784,1.25173,6.35286,0.056883,1.03047,6.33425,-0.318922,1.55992,6.07469,0.179586,1.31544,6.06523,-0.302733,1.55288,6.07217,0.162582,1.32769,6.06243,-0.283055,0.846593,6.33774,0.844265,0.484563,6.19536,1.23262,0.4704,6.189,1.24712,1.0981,5.64714,1.0202,0.794565,6.59939,0.869356,1.08766,5.66654,1.01371,0.832785,6.33083,0.859301,0.889645,6.12276,1.00598,1.17381,6.24125,0.603225,0.900333,6.12749,0.989776,1.1642,6.23189,0.621931,1.50163,6.01768,0.173938,1.12413,6.66889,0.107133,1.25946,6.20598,0.640932,1.29853,6.32366,0.113777,1.25699,6.19999,0.654515,1.2808,6.31118,0.138614,1.33731,6.37921,0.147945,1.09117,6.34153,-0.28609,1.32903,6.38095,0.136189,1.10278,6.34021,-0.269099,0.488873,6.19916,1.33033,0.25033,5.36706,1.32517,0.0542856,4.92698,1.14809,0.099046,5.03876,1.10788,0.211915,6.19269,1.43786,0.497832,5.81178,1.39333,0.192268,5.80326,1.49456,0.137399,5.39236,1.46901,0.0731335,4.59217,-0.0120733,0.100917,4.40748,-0.00173656,0.314639,4.62306,-0.377636,0.323407,4.44108,-0.37114,0.606193,4.89125,0.900865,0.635467,4.72966,0.842964,0.21943,4.72685,0.739344,0.246582,4.55575,0.702634,0.0829097,4.62919,0.373319,0.11349,4.46831,0.368416,0.233284,4.07833,0.0793629,0.193658,4.25569,0.0537732,0.217643,4.09561,0.356387,0.189429,4.26947,0.359929,0.332088,4.05768,-0.21682,0.300387,4.23265,-0.277352,0.471438,4.14229,0.777566,0.44958,4.31299,0.775623,0.316056,4.11667,0.635807,0.294851,4.28226,0.649578,0.40585,4.83688,0.870815,0.437631,4.66662,0.844451,0.677144,4.18713,0.742934,0.658498,4.33369,0.767106,0.364748,4.62579,-0.408845,0.373232,4.44378,-0.402012,0.39098,4.05259,-0.261568,0.3599,4.22736,-0.32292,0.603477,1.9121,-0.423421,0.611304,1.73453,-0.380341,0.51636,2.60852,-0.4121,0.494412,2.74866,-0.390885,0.594355,2.63918,0.562351,0.608609,2.80675,0.598348,0.468806,2.64917,0.48992,0.506257,2.46745,0.501908,0.639104,2.8008,0.592587,0.660693,2.61333,0.59948,0.546858,1.92416,-0.36961,0.543625,1.74757,-0.31443,0.379231,2.39217,0.260569,0.426134,2.20008,0.276134,0.364949,2.12315,-0.0378521,0.394168,1.92814,-0.000206508,0.341923,2.59239,0.135694,0.317452,2.72863,0.141434,0.45498,2.62563,0.437593,0.428913,2.74901,0.485939,0.480975,2.6055,-0.377078,0.459352,2.74443,-0.356505,0.378742,2.59491,-0.14181,0.352606,2.73059,-0.126871,0.394545,1.81181,-0.104572,0.464011,1.66839,-0.175256,0.479311,1.8989,-0.294257,0.528147,1.7355,-0.346588,0.563943,1.71612,0.45266,0.566577,1.57368,0.418656,0.404593,1.70103,0.205313,0.413268,1.57448,0.0944608,0.734736,1.74209,0.591877,0.718168,1.57192,0.557004,0.516637,1.94321,-0.369086,0.573191,1.78599,-0.431116,0.427614,4.86104,1.0022,0.717274,5.05475,1.05587,1.05952,5.38334,0.910986,1.33512,5.53984,0.56735,1.00986,3.98499,0.634113,1.36975,4.01367,0.23084,0.501112,3.88802,0.822398,0.736715,3.93073,0.796428,1.03413,4.60923,0.725036,1.2866,4.68491,0.418816,0.46465,4.35353,0.846539,0.729448,4.45428,0.847219,1.28369,5.80026,0.566486,1.06291,5.63168,0.915936,0.713315,5.23881,1.10903,0.412403,5.00045,1.04823,1.23023,5.46826,0.74114,1.14479,4.00519,0.435202,1.18749,4.64706,0.579617,1.18166,5.72239,0.74374,1.2959,3.92804,-0.030067,1.3978,5.19965,-0.0838505,0.213585,3.91733,-0.109469,0.162325,4.82782,-0.317196,1.14414,3.99656,-0.272366,0.838192,4.94292,-0.560915,0.613729,4.88263,-0.566678,0.34107,4.83686,-0.500145,1.20101,5.05931,-0.341341,0.792062,4.01562,-0.432439,0.363157,3.96462,-0.27842,0.565495,4.00626,-0.393196,1.23195,4.74797,-0.244392,1.23195,4.95843,-0.261327,1.19308,5.03106,0.555964,1.18287,4.84155,0.531235,1.28859,4.7822,-0.010871,1.28145,4.82262,0.26605,1.28854,4.98809,-0.0191948,1.28159,5.01925,0.276103,1.1953,4.8388,0.497508,1.20424,5.02929,0.5205,1.23321,5.03065,0.520132,1.22429,4.83979,0.497058,1.31846,5.01582,0.275463,1.39471,4.95643,-0.0412652,1.31822,4.81639,0.265868,1.39471,4.74988,-0.0333644,1.2117,4.84217,0.531258,1.2219,5.03201,0.555988,1.31348,4.98215,0.096143,1.31405,4.77841,0.0939912,1.3522,4.77259,0.175044,1.35109,5.02557,0.176828,1.35469,4.78024,0.259587,1.35636,5.03157,0.268851,1.22581,5.0261,0.176259,1.21518,5.03148,0.26786,1.24426,4.77376,0.174007,1.23616,4.77975,0.258406,1.3602,4.79028,0.256864,1.35615,4.78004,0.172864,1.35011,5.01685,0.175815,1.35392,5.02274,0.267787,1.37105,4.4489,0.249758,1.36506,4.45622,0.158003,1.34384,4.2229,0.122854,1.35044,4.22093,0.207293,1.22606,4.22417,0.211395,1.23201,4.22902,0.126743,1.23425,4.47294,0.255482,1.24266,4.4791,0.163701,1.37451,4.45717,0.251925,1.34386,4.21128,0.208809,1.36705,4.46455,0.160155,1.3391,4.21571,0.124133,1.30345,4.23731,0.0391949,1.32479,4.43753,0.0708511,1.43297,4.19567,-0.0630484,1.3126,4.25013,0.21711,1.45654,4.40004,-0.042933,1.33651,4.44506,0.25226,1.14845,4.27296,0.440566,1.17922,4.462,0.458346,1.15003,4.46385,0.459839,1.11931,4.2752,0.442049,1.29989,4.45237,0.255765,1.2718,4.46544,-0.0326934,1.27656,4.26021,0.220533,1.24844,4.26178,-0.052253,1.22999,4.47441,-0.177091,1.17105,4.27173,-0.182735,0.589011,9.2982,0.757734,0.968417,9.3801,0.629753,0.172975,9.08376,1.00515,1.11182,9.20222,0.757404,0.671429,9.16864,0.884182,0.869969,8.52034,1.08108,0.194862,8.45262,1.29614,0.236057,8.06072,1.28055,0.891635,8.13091,1.04608,0.97619,7.89185,0.902251,0.22199,7.88761,1.26626,0.227349,7.44857,1.34614,0.880644,7.22653,0.918749,1.36269,8.10565,0.408798,1.10984,7.20651,0.550029,1.12541,7.27308,0.0699728,1.28386,7.82749,0.529445,1.24953,7.79308,0.0304257,0.498327,9.49397,0.638924,0.834085,9.50592,0.544423,0.859379,9.3472,0.687163,0.980931,9.21246,0.81271,0.732881,9.50294,0.584278,1.18664,8.54439,0.914838,1.35306,8.43613,0.71247,1.09453,8.30782,0.927236,1.19253,8.19992,0.76936,0.890903,8.20898,-0.908566,0.800113,8.01378,-0.872131,0.935784,7.67491,-0.534809,1.10293,7.87978,-0.475855,1.18457,7.81345,-0.219872,1.06015,7.54515,-0.218112,1.12998,7.48865,0.0490511,0.186149,7.67058,1.25703,0.913936,7.51374,0.782674,1.12685,7.48103,0.518527,0.18954,9.19297,0.934677,0.429015,9.13679,0.904154,0.539081,8.48078,1.17598,0.566313,8.05767,1.17659,0.586686,7.85494,1.09756,0.529227,7.31502,1.14755,0.537573,7.57239,1.04101,0.394313,9.24802,0.818941,0.750643,9.32668,0.716161,0.854026,9.20056,0.854527,0.638432,9.50309,0.609592,0.206841,8.24815,1.32497,0.887388,8.32012,1.09621,0.550453,8.2669,1.20539,1.03503,8.41506,0.995456,1.43243,8.24784,0.393074,0.176537,8.73775,1.24495,0.846725,8.75738,1.06007,1.15466,8.74266,0.935459,1.2788,8.68174,0.844964,0.513106,8.73871,1.11214,1.04285,8.77912,1.01982,0.932261,7.41761,-0.497468,1.05229,7.33026,-0.203314,0.69186,7.69165,-0.767552,1.14046,6.93059,-0.245228,0.811228,7.00456,-0.521365,1.2836,6.84667,0.154413,1.23317,6.89359,-0.0607293,1.30581,6.60931,0.765183,1.08568,6.48592,1.20677,0.687515,6.6081,1.448,0.314802,6.81543,1.52305,0.230696,7.97296,1.27077,0.937014,8.0185,0.974915,0.924134,9.3689,0.652205,1.06637,9.20562,0.785124,0.791482,9.50486,0.554772,1.25878,8.48235,0.843693,1.14495,8.25266,0.846793,0.583064,7.95528,1.14148,1.22478,8.70617,0.897263,0.692775,7.42502,-0.63686,0.95157,7.21071,-0.376445,1.15588,7.09308,0.0984715,1.06222,7.145,-0.137691,0.546368,7.05915,1.20323,0.91508,6.98458,0.99149,0.25672,7.23028,1.3651,1.14929,6.99214,0.609552,1.03346,7.06657,-0.279971,1.20271,6.98229,0.133325,1.15026,7.0211,-0.0930879,0.625259,6.83243,1.29439,1.02652,6.69311,1.08992,0.282361,7.03528,1.41385,1.26968,6.82536,0.68308,0.774579,7.19811,-0.539638,0.330003,6.59398,1.49624,0.711216,6.35879,1.40951,1.06313,6.27388,1.20606,1.29446,6.40808,0.824194,1.23559,6.75978,-0.0409673,1.31512,6.69841,0.182793,0.940637,6.80818,-0.644368,1.14478,6.78995,-0.235995,1.02024,8.05218,-0.706718,0.868818,7.84163,-0.700118,0.808934,7.55411,-0.638027,1.00193,6.95834,-0.425126,0.831451,7.30991,-0.54733,0.908157,7.12696,-0.454619,1.05434,6.83627,-0.423652,0.167267,8.9442,1.13075,0.771291,8.97858,0.996947,1.08729,8.95915,0.924009,1.21152,8.92093,0.866027,0.489176,8.95347,1.02626,0.958527,8.9951,0.959881,1.16458,8.9348,0.899325,1.32557,6.76139,0.450172,1.28756,7.80635,0.286186,1.14708,7.47177,0.297376,1.13507,7.2334,0.322921,1.1635,7.05157,0.358837,1.23359,6.93323,0.414473,1.32442,6.57503,0.472904,0.155448,9.40137,0.717925,0.337052,9.47998,0.661537,0.679866,7.66309,-0.702449,0.898228,7.38792,-0.436486,1.07601,7.23938,0.084137,1.0005,7.30012,-0.167694,0.503135,7.25927,1.11641,0.83523,7.17886,0.88822,0.219325,7.3944,1.30092,1.05583,7.1691,0.538388,0.783733,7.51921,-0.576162,1.07808,7.19423,0.320775,0.93697,7.1834,-0.317043,1.12439,7.06483,0.115345,1.042,7.11701,-0.102311,0.530226,6.99686,1.18341,0.918139,6.90277,0.989007,0.243686,7.17357,1.32944,1.14278,6.95132,0.603968,0.725306,7.41031,-0.559789,0.83916,7.28221,-0.472046,1.1418,7.02045,0.36393,1.03447,7.03062,-0.236105,1.18815,6.94612,0.147282,1.14606,6.9844,-0.0575972,0.614463,6.75929,1.30007,1.00917,6.62092,1.08617,0.270915,6.96703,1.39323,1.25176,6.75671,0.680396,0.782923,7.15066,-0.494125,0.918406,7.09296,-0.389705,1.21913,6.88638,0.410284,0.825819,6.9578,-0.504094,1.06245,6.43991,1.18734,1.27345,6.55644,0.75215,0.304593,6.77759,1.49239,0.667741,6.56268,1.41949,1.25238,6.80935,0.16521,1.2012,6.86596,-0.0387643,1.1152,6.90531,-0.219195,0.98818,6.93087,-0.416094,1.29312,6.71469,0.435314,0.939426,6.8873,-0.646328,1.10259,6.31261,1.24382,1.33514,6.4399,0.848253,0.329653,6.62747,1.54353,0.734202,6.39819,1.45694,1.34303,6.71314,0.169846,1.26059,6.77682,-0.0651624,1.16847,6.8203,-0.266691,1.07616,6.86121,-0.45702,1.36574,6.60012,0.482586,0.21855,7.46036,1.33814,0.885475,7.24448,0.903953,1.10858,7.22193,0.542685,1.12024,7.28635,0.0657454,0.527528,7.33053,1.1371,1.04654,7.34268,-0.207625,0.919939,7.43468,-0.505019,0.692159,7.72592,-0.784285,0.79925,7.57905,-0.648359,1.13247,7.24911,0.317742,0.678278,7.45086,-0.649443,0.930509,7.21482,-0.392164,1.14567,7.09426,0.0910084,1.04627,7.14661,-0.148366,0.534427,7.0757,1.19504,0.891022,7.01232,0.973791,0.245747,7.23939,1.35963,1.13178,7.00383,0.594668,0.807859,7.32202,-0.553433,1.15067,7.05507,0.347638,1.01193,7.06662,-0.297921,1.19847,6.98006,0.124579,1.13264,7.01816,-0.105035,0.604641,6.85332,1.28118,1.01314,6.7152,1.07257,0.268027,7.04729,1.40645,1.25983,6.83795,0.668892,0.764029,7.22437,-0.548398,0.886795,7.14053,-0.461085,1.22841,6.93697,0.401891,1.13033,6.91947,-0.252952,1.2802,6.83908,0.147095,1.23149,6.88154,-0.0670583,0.67662,6.60589,1.4393,1.08312,6.47964,1.19791,0.301531,6.81564,1.51972,1.30708,6.60803,0.752604,0.806472,7.02145,-0.514719,0.997158,6.95401,-0.421549,1.32128,6.75885,0.442053,0.943919,6.88282,-0.642732,1.10124,6.30657,1.24279,1.33616,6.43058,0.837306,0.315616,6.62323,1.54111,0.725527,6.39735,1.46011,1.34112,6.69949,0.161932,1.25864,6.76462,-0.0703238,1.16742,6.80889,-0.269895,1.07814,6.85145,-0.456705,1.36822,6.59017,0.472702,0.0541062,9.04783,1.05207,0.0190693,8.44623,1.3814,0.0313257,7.89689,1.33035,0.0357982,7.51317,1.40612,0.0316047,8.06791,1.34865,0.0251408,7.69839,1.33437,0.058384,9.14426,0.99273,0.0241899,8.25056,1.3858,0.0195397,8.73195,1.31614,0.0432287,7.00168,1.55255,0.0309115,7.98043,1.34044,0.0409209,7.34298,1.42532,0.042126,7.19029,1.4646,0.0577734,6.73802,1.54577,0.0376769,8.91359,1.1724,0.0438769,9.37623,0.737428,0.033878,7.46765,1.35827,0.0376126,7.29725,1.38498,0.0374016,7.13036,1.43683,0.0438206,6.95225,1.51629,0.0510184,6.77636,1.60351,0.030163,7.52005,1.39788,0.0331118,7.34446,1.41989,0.0338994,7.19519,1.45826,0.0318652,6.99931,1.55017,0.040847,6.77458,1.60083,0.0904382,9.6016,0.712257,0.386443,9.75279,0.632459,0.202615,9.65323,0.691961,0.705939,9.71403,0.387562,0.616068,9.75676,0.514598,0.666692,9.73809,0.481023,0.745211,9.6927,0.380798,0.510492,9.77254,0.581895,1.45907,8.20151,-0.00456246,1.38078,8.09101,0.0227845,1.29011,8.14606,-0.4053,1.39613,8.30283,-0.372536,1.26802,8.53277,-0.743305,1.00234,8.35881,-0.876623,1.15337,8.21318,-0.650733,1.32877,8.40688,-0.566032,1.37411,8.08766,0.217564,1.44857,8.20957,0.17477,1.33959,8.10596,-0.18909,1.44386,8.23159,-0.186708,0.157857,9.43656,0.714302,0.0470983,9.40895,0.732215,0.480487,9.56438,0.611138,0.340707,9.51255,0.65987,0.792714,9.5535,0.515884,0.749223,9.54984,0.532876,0.701014,9.55517,0.562817,0.612175,9.57013,0.587174,0.407302,0.0299936,0.0436082,1.27568,0.0299927,0.0147483,1.26702,0.0299936,0.283082,0.412871,0.0299927,0.751201,0.455625,0.0299936,0.430463,1.25411,0.0297822,-0.257468,0.990348,0.0299936,-0.277655,0.723395,0.0299936,-0.275658,0.402945,0.0299927,-0.277802,0.69384,0.0299936,0.0344672,1.01717,0.0299936,0.0314385,1.02178,0.0299936,0.331851,0.734753,0.0299936,0.423031,1.46942,0.0299936,0.774537,0.729295,0.0299936,0.758025,1.15139,0.0299936,0.73235,0.673916,0.0299936,1.07443,1.22315,0.0299936,1.05154,1.55626,0.0299936,1.07473,0.330255,0.0299927,1.08758,1.30256,2.302,0.0126935,1.29656,2.30931,-0.079061,1.27534,2.076,-0.11421,1.28194,2.07403,-0.0297712,1.15756,2.07727,-0.0256692,1.16351,2.08212,-0.110321,1.16575,2.32604,0.0184177,1.17417,2.3322,-0.0733632,1.30602,2.31027,0.0148611,1.27537,2.06438,-0.0282554,1.29855,2.31765,-0.0769092,1.27061,2.06881,-0.112931,1.2396,2.09071,-0.152696,1.26284,2.29113,-0.126716,1.36806,2.04635,-0.238864,1.23443,2.10217,-0.00800606,1.3983,2.25056,-0.250438,1.25692,2.29669,0.0270147,1.18076,2.1223,0.216823,1.19001,2.31387,0.228722,1.18207,2.31309,0.200138,1.15135,2.12443,0.182348,1.23035,2.3054,0.0257135,1.18311,2.318,-0.239417,1.20719,2.11278,-0.0103211,1.15887,2.11337,-0.241082,1.17965,2.7168,-0.159535,1.22215,2.83848,0.0730289,1.16718,2.92168,-0.168629,1.21004,3.0067,0.0958107,1.16086,2.92485,0.261934,1.15725,3.05118,0.269884,1.16434,2.94289,0.298338,1.18947,2.75239,0.296694,1.23763,2.92766,0.0986492,1.3979,2.89215,-0.113426,1.25075,2.73072,0.0739701,1.4041,2.68556,-0.11908,1.24915,2.91443,-0.0479668,1.26408,2.71104,-0.0663925,1.29455,2.69903,-0.0285485,1.27713,2.95037,-0.0056818,1.29817,2.69984,0.0562947,1.28378,2.94912,0.086439,1.15209,2.94268,-0.0044702,1.1429,2.93981,0.0873985,1.18676,2.69316,-0.0279896,1.17992,2.69164,0.05672,1.30296,2.71042,0.0543414,1.29796,2.70687,-0.0301548,1.2767,2.94172,-0.00740456,1.28189,2.94027,0.0846777,0.471648,0.758845,0.827037,0.47639,0.809023,0.687664,0.44317,0.752505,0.554745,0.391447,0.622398,0.506143,0.351536,0.494843,0.570351,0.346713,0.443704,0.709899,0.380011,0.501168,0.842593,0.43172,0.631364,0.891222,0.464907,0.725081,0.79609,0.434385,0.62763,0.845154,0.394847,0.528202,0.808002,0.369445,0.485022,0.706393,0.373077,0.523354,0.599848,0.403598,0.620776,0.550785,0.443138,0.720235,0.587939,0.468532,0.763438,0.689547,0.395136,0.723591,0.779479,0.397937,0.753225,0.697168,0.378318,0.719847,0.61867,0.347772,0.643009,0.589967,0.324192,0.567722,0.627872,0.321391,0.538089,0.710183,0.341011,0.571466,0.788681,0.371556,0.648304,0.817385,0.335795,0.695423,0.741872,0.325095,0.661926,0.758686,0.311177,0.626698,0.745858,0.302248,0.611731,0.709864,0.303643,0.62478,0.673162,0.313985,0.658408,0.656381,0.327999,0.693601,0.669202,0.336831,0.708603,0.705205,0.308094,0.649179,0.724188,0.300732,0.666968,0.709343,0.315067,0.676912,0.69241,0.43903,0.720972,0.786826,0.44224,0.754934,0.692495,0.419755,0.716681,0.602533,0.384749,0.628623,0.569638,0.357726,0.542341,0.61308,0.354516,0.50838,0.70741,0.376999,0.546632,0.797372,0.412007,0.634692,0.830267,0.462573,0.619801,0.881517,0.412683,0.494099,0.834525,0.38063,0.438,0.706543,0.385199,0.488,0.571801,0.423693,0.611144,0.50978,0.473626,0.736744,0.556699,0.505694,0.791304,0.685012,0.501116,0.742864,0.819557,1.28169,0.783167,0.500116,1.31439,0.772254,0.638974,1.3831,0.675977,0.719465,1.44758,0.550733,0.694438,1.47005,0.46989,0.578555,1.43735,0.480803,0.439698,1.36864,0.57708,0.359208,1.30416,0.702324,0.384234,1.36683,0.702481,0.422674,1.41203,0.61467,0.405129,1.46021,0.54717,0.461561,1.48313,0.539518,0.558915,1.46738,0.596199,0.640162,1.42217,0.684008,0.657709,1.374,0.751509,0.601276,1.35107,0.759161,0.503921,1.4979,0.699234,0.536661,1.50707,0.699109,0.514144,1.49625,0.687925,0.495466,1.47258,0.729899,0.544411,1.49169,0.703137,0.567166,1.50969,0.66818,0.559864,1.51569,0.646001,0.528376,1.50691,0.649146,0.490532,1.4877,0.675858,0.467794,1.4698,0.710866,0.475079,1.46347,0.732861,0.506629,1.4089,0.715441,0.429682,1.44835,0.63882,0.414373,1.49039,0.57992,0.463614,1.51039,0.573244,0.548563,1.49664,0.622702,0.619456,1.4572,0.699322,0.634768,1.41516,0.758222,0.585525,1.39516,0.764899,0.500577,1.34943,0.754229,0.613967,1.40384,0.67799,0.677704,1.45489,0.578813,0.657887,1.47269,0.514795,0.566121,1.4468,0.523437,0.456165,1.39238,0.599677,0.392427,1.34133,0.698854,0.412243,1.32353,0.762872,0.504008,1.33065,0.721124,0.373086,1.39744,0.591386,0.347162,1.46862,0.491653,0.430541,1.50249,0.480347,0.574382,1.47922,0.564093,0.694423,1.41243,0.693832,0.720347,1.34125,0.793563,0.636969,1.30738,0.804869,0.493128,1.1387,3.6371,0.468567,1.22649,3.63696,0.237505,1.18945,3.41472,0.198948,0.426742,3.23194,0.604395,0.470508,3.56753,0.731794,0.542733,3.57427,0.822832,1.13453,2.62872,0.464041,1.10653,3.39736,0.379742,1.07581,3.30326,0.594643,0.644835,3.26747,0.755962,0.815241,3.28029,0.760304,1.28952,3.60918,0.686216,1.14181,3.47319,0.452306,0.684705,3.54608,1.04149,0.685484,3.34015,0.81319,1.12105,3.36915,0.653331,0.852567,3.34372,0.821244,1.19299,3.61027,0.901944,0.925588,3.58213,1.04864,1.16063,4.27985,1.01026,1.14546,4.2619,0.865962,0.794313,4.22245,1.07045,0.927245,4.25489,1.13958,0.752132,4.20086,1.04467,1.1268,4.24356,0.825684,1.12281,4.2403,0.957099,0.862456,4.2154,1.0985,1.2631,3.96815,0.755207,1.18127,3.95905,0.955049,0.922362,3.93108,1.09752,0.698909,3.90903,1.08484,0.595228,3.89835,0.949626,1.1641,3.95603,0.619554,1.18042,3.6254,0.532356,1.11199,3.42796,0.411991,0.658016,3.29435,0.771852,0.582632,3.56636,0.881002,1.08919,3.32815,0.614797,0.825785,3.3026,0.780029,0.762319,4.20267,1.04122,1.12175,4.24207,0.834693,1.13386,4.24472,0.969683,0.878053,4.21923,1.11046,0.623161,3.89911,0.985424,1.19094,3.95745,0.656643,1.13884,4.25579,0.859541,1.15323,4.27779,1.0017,0.922825,4.25418,1.12829,0.792154,4.22123,1.05628,0.750212,4.1889,1.01569,1.10624,4.22432,0.817632,0.858358,4.20892,1.09984,1.13018,4.23842,0.952766,0.760449,4.19896,1.02268,1.11101,4.23299,0.828461,1.22313,1.96501,-0.164316,0.438147,1.95874,-0.334969,1.25705,2.9606,-0.12313,0.405432,2.83781,-0.307541,0.84157,1.97014,-0.508298,0.688881,1.96842,-0.509431,0.544934,1.96521,-0.45431,1.12238,1.96858,-0.345025,0.830269,2.79316,-0.513749,0.659552,2.78079,-0.511174,0.513543,2.78787,-0.443813,1.14695,2.86898,-0.343794,0.492567,0.56513,-0.236922,0.443228,0.500372,0.448055,1.06365,1.07321,0.902392,0.958949,0.617847,-0.372038,1.25808,0.447811,0.201422,1.29364,0.451291,0.491077,0.681836,0.614064,-0.399434,0.670351,1.05663,0.896327,0.420401,0.499821,0.0774494,0.504655,0.77233,0.710401,1.27436,0.755856,0.667344,1.1803,0.547528,-0.150128,0.49063,0.808224,-0.221302,0.46682,0.770671,0.371242,1.05464,1.12361,0.811898,0.942941,0.842551,-0.36205,1.22685,0.719301,0.115581,1.26795,0.805694,0.325799,0.693526,0.841422,-0.390631,0.683853,1.11407,0.825546,0.446668,0.76729,0.0561294,0.564421,0.974904,0.615938,1.211,1.00049,0.58177,1.16147,0.792742,-0.149371,0.967188,-0.018647,2.40426,1.13453,-0.0203847,2.37202,0.823457,-0.0198748,2.38467,0.809005,0.0325416,2.33447,1.07209,0.0510701,2.3163,0.893923,0.125016,2.29119,1.02074,0.113292,2.28974,0.839676,0.0959581,2.30207,0.961976,0.133399,2.28458,0.969559,0.259861,2.14233,0.724543,0.203432,2.16162,1.09201,0.220801,2.15336,0.839232,0.251446,2.14499,1.18806,0.113996,2.18976,0.645202,0.0951669,2.21594,0.603427,-0.0179201,2.29931,1.27847,-0.0189629,2.2491,1.42552,-0.0169413,2.05732,0.444914,-0.0139401,2.08208,0.49856,0.166917,1.99409,1.32063,0.183475,1.96372,0.788687,0.365008,1.89927,1.18661,0.323398,1.9102,0.616103,0.309686,1.9268,0.989071,0.371171,1.89312,1.01374,0.540953,1.38251,0.522205,0.471839,1.41005,1.2993,0.473228,1.36588,0.748818,0.537647,1.39732,1.44443,0.303328,1.35873,0.379578,0.293797,1.41914,0.29123,-0.00875905,1.42486,1.53179,-0.010603,1.35011,1.2588,1.69611,0.0295458,1.17364,1.56637,-0.267685,0.674915,1.39376,-0.551358,0.518049,1.824,0.512089,0.368004,1.47116,-0.00213536,0.923451,1.40956,-0.477056,0.948356,1.84885,0.644676,0.386267,1.53637,0.282788,0.449576,1.43313,-0.344297,0.693519,1.22565,0.78078,1.00643,1.2379,0.752093,1.1813,1.12686,0.546332,1.26198,0.994609,0.254501,1.2241,0.901522,0.057362,1.15526,0.936109,-0.161304,0.975422,1.05707,-0.350177,0.652624,1.05513,-0.403956,0.496434,0.937528,-0.215228,0.453919,0.89661,0.052879,0.4807,0.914508,0.333385,0.561114,1.16262,0.615138,1.03114,0.576117,1.45191,0.474913,0.498672,1.49164,1.34022,0.480573,1.43986,0.717959,0.572311,1.47096,1.5005,0.315859,1.44872,0.322473,0.313381,1.50789,0.242143,-0.00538064,1.51441,1.60639,-0.00800738,1.4341,1.49446,-0.00800739,1.05429,0.353938,-0.00538066,1.1223,0.410575,0.405881,1.11904,1.39389,0.417132,1.06175,0.761604,0.717829,1.09409,1.26454,0.631052,1.06623,0.549899,0.628829,1.10812,1.00451,0.722621,1.08,1.01121,0.769896,1.12677,0.535931,0.693736,1.15985,1.27562,0.685301,1.11579,0.754899,0.769875,1.14223,1.43233,0.460483,1.10423,0.376909,0.449494,1.16343,0.267527,-0.00593823,1.16142,1.58994,-0.00767138,1.09089,1.42623,-0.0076714,0.680632,0.38605,-0.00593825,0.739454,0.482041,0.526223,0.732762,1.30903,0.538864,0.685368,0.779184,0.92184,0.702853,1.1516,0.81285,0.686929,0.602827,0.810763,0.718585,0.964778,0.927848,0.692324,0.417894,-0.00984579,1.84956,1.4553,-0.0145746,1.78968,0.48113,0.183269,1.84483,1.34194,0.197319,1.79506,0.78208,0.383604,1.82495,0.601048,0.328858,1.83582,1.20989,0.339412,1.80145,0.994081,0.38865,1.81355,1.00287,0.411684,1.89756,1.23143,0.359827,1.88437,0.587912,0.350116,1.92111,0.778677,0.406213,1.91008,1.3694,0.215038,1.87798,0.460796,0.199147,1.92979,1.48882,-0.010603,1.87271,0.393452,-0.00875902,1.93436,0.483061,0.918893,-0.261493,0.407709,0.645055,0.433872,0.972583,0.941604,-0.394494,1.30573,0.779052,0.0601763,1.30801,0.674926,0.297017,0.697485,0.942773,-0.409251,0.368221,0.775207,0.0982228,0.447269,0.524723,0.826392,1.43636,0.531792,0.783078,1.19947,0.869701,-0.215343,0.688416,-0.000471508,-0.530173,1.29418,-0.000954001,-0.261905,1.31427,-0.000216975,0.0199878,1.42396,-0.00487806,0.279502,0.374554,5.49852e-06,-0.307325,0.384971,-4.56765e-06,0.0460229,0.373184,-0.00298744,0.422124,1.0859,-0.00188329,-0.505957,0.41139,0.284188,0.411641,0.358221,0.416938,0.0677703,0.386812,0.443307,-0.276759,1.34579,0.311081,0.273482,1.35331,0.381952,0.0331711,1.2952,0.430867,-0.228576,1.00734,0.438138,-0.502808,0.652995,0.439546,-0.527172,0.690495,0.66343,-0.485095,1.21198,0.652108,-0.214627,1.31194,0.61275,0.0523661,1.32183,0.515338,0.292823,0.480923,0.642125,-0.232034,0.370712,0.627356,0.0883579,0.413214,0.508401,0.400209,0.975312,0.664804,-0.469289,1.63458,-0.00756979,0.777364,1.56767,0.187303,0.77787,1.51534,0.356098,0.780409,0.329314,0.120074,0.836475,0.291127,-0.00531844,0.835047,0.386437,0.333067,0.832039,1.03999,1.2655,-0.235683,0.569513,1.22225,-0.303251,0.674518,1.23169,-0.32462,0.8029,1.24442,-0.343529,0.498908,1.21409,-0.14785,1.1214,1.26855,-0.10603,1.25997,2.97898,0.140663,0.409203,2.93628,0.549532,1.27732,2.18247,0.0543973,0.720471,1.56232,0.765338,0.989275,1.55424,0.741906,1.2027,1.50543,0.521559,1.30173,1.39626,0.236243,1.29136,1.33146,0.0314089,1.21453,1.21887,-0.236961,0.986465,1.23956,-0.451962,0.625595,1.2253,-0.514734,0.424713,1.19141,-0.306086,0.356149,1.19359,0.0213254,0.377923,1.23808,0.315482,0.498865,1.50303,0.592724,0.68866,2.21967,0.659677,0.936335,2.21373,0.633986,0.475573,2.22294,0.506601,1.28604,2.65693,0.0900661,0.433065,2.65125,0.503923,1.10805,2.95503,0.522165,0.654891,2.93057,0.70477,1.23554,2.63909,0.261535,0.667739,2.61901,0.663177,0.897602,2.6115,0.643142,1.19757,2.97153,0.312404,0.869892,2.93121,0.686346,1.12935,2.20427,0.461606,1.24412,2.19031,0.233759,0.734359,1.53595,0.725466,0.971002,1.52656,0.703538,1.1644,1.47498,0.499725,1.2548,1.36474,0.229623,1.24203,1.30037,0.0383351,1.17166,1.20257,-0.208238,0.959975,1.23972,-0.414895,0.651475,1.23152,-0.47898,0.464981,1.18531,-0.277857,0.4072,1.17905,0.0259123,0.430778,1.21579,0.30477,0.53366,1.4805,0.563857,0.70882,1.84701,0.65709,1.13096,1.83192,0.46053,1.23768,1.77156,0.20991,0.720842,1.57616,0.755234,0.984541,1.5684,0.733096,1.19371,1.52398,0.517696,1.29295,1.42001,0.237227,1.2863,1.35528,0.0359704,1.20773,1.23761,-0.234894,0.977103,1.24274,-0.452415,0.634996,1.22837,-0.516409,0.432152,1.19985,-0.30732,0.362222,1.20599,0.0206402,0.385806,1.2525,0.31833,0.504674,1.52329,0.587916,0.807689,0.0299927,-0.492846,0.942691,0.0299927,-0.481133,0.359224,0.0299937,1.47569,1.47985,0.0299937,1.41111,1.17537,0.0299937,1.42866,0.673346,0.0299937,1.45759,0.725063,0.0299937,1.85888,1.16295,0.0299937,1.83365,1.42853,0.0299937,1.81834,0.451072,0.0299937,1.87467,1.05374,0.0299928,2.33639,0.859097,0.0299928,2.34589,0.770581,0.0299937,2.11211,0.542702,0.0299928,2.1253,1.35546,0.0299928,2.07835,1.13469,0.0299937,2.09113,0.434882,0.0299927,-0.277621,0.435881,0.0299936,0.0426965,0.483464,0.0299936,0.429721,0.44443,0.0299936,0.751881,0.364531,0.0299936,1.08626,0.390553,0.0299937,1.47388,0.478399,0.0299937,1.8731,0.565421,0.0299928,2.12399,1.23207,0.0299927,-0.259831,1.24413,0.0299927,0.0167871,1.23711,0.0299936,0.289029,1.43064,0.0299936,0.769393,1.51564,0.0299936,1.0719,1.44272,0.0299937,1.41325,1.39614,0.0299937,1.82021,1.32852,0.0299928,2.07989,0.838436,0.0299928,2.31446,0.671746,0.0296693,2.27841,1.20962,0.0303478,2.25963,1.0682,0.0299928,2.30443,0.687756,0.0299928,2.26127,1.1935,0.0299928,2.24444,0.628204,0.0296718,-0.452035,0.802039,0.0299927,-0.478304,0.945884,0.0299927,-0.4675,1.07671,0.0298213,-0.445532,0.634576,0.0300394,-0.439375,1.06924,0.0299743,-0.433666,1.12995,7.8569,0.714685,1.00714,7.20072,0.746596,1.02269,7.49328,0.649214,1.27514,8.15058,0.578731,1.40046,8.33476,0.55027,1.20424,6.54073,0.986012,1.04514,6.97139,0.800967,1.17416,6.74623,0.891382,1.18057,6.33855,1.01379,0.948971,7.16841,0.718945,1.04401,6.9186,0.798224,1.15495,6.6788,0.887791,1.16664,6.49928,0.971315,1.22552,6.37398,1.05179,1.00855,7.21509,0.733584,1.023,6.99536,0.784728,1.16298,6.7643,0.876388,1.2078,6.53778,0.973894,1.22603,6.36473,1.04386,1.07007,8.57608,1.00257,1.2399,2.46154,-0.143916,0.430924,2.4002,-0.313413,0.836087,2.38005,-0.510881,0.674363,2.37302,-0.510236,0.533351,2.37653,-0.445343,1.13506,2.41733,-0.34384,0.808101,1.60089,-0.429119,1.07265,1.61361,-0.292247,1.16391,1.61326,-0.136877,0.461127,1.58745,-0.239428,0.552853,1.59455,-0.378117,0.674513,1.59767,-0.418766,1.34678,4.5588,-0.109181,0.187992,4.37302,-0.236215,0.816057,4.4791,-0.61683,0.351011,4.40152,-0.509169,0.589679,4.44448,-0.600021,1.17418,4.5277,-0.426184,-0.00264589,9.36275,-0.824212,0.489939,6.17145,1.33462,0.211612,6.16503,1.44164,0.0926574,5.02553,1.11216,0.459281,6.19865,1.34175,0.237441,5.36835,1.3399,0.464685,5.81186,1.40443,0.46014,6.17095,1.34599,-8.88178e-16,8.32564,-1.09727,0.000287515,8.97448,-1.00042,0,5.41383,1.5019,-8.88178e-16,9.04323,1.05533,-8.88178e-16,7.89791,1.33495,-8.88178e-16,8.06825,1.35305,-8.88178e-16,9.13891,0.997167,-8.88178e-16,8.72937,1.31383,-8.88178e-16,7.35835,1.42892,-8.88178e-16,6.76788,1.54973,-8.88178e-16,8.90752,1.17427,-8.88178e-16,7.53041,1.40038,-8.88178e-16,7.2201,1.45895,0.00307025,9.19121,-0.925049,-0.108216,9.19215,-0.914283,-0.167592,8.34013,-1.08133,-0.681061,9.44915,-0.743908,-0.121074,8.72755,-1.05424,-0.82083,9.30647,-0.839652,-0.920417,8.64071,-0.968879,-1.04516,8.78605,-0.918264,-0.892716,9.45877,-0.722519,-1.18353,8.95742,-0.861669,-0.801336,8.98608,-0.943815,-0.930281,9.13709,-0.902773,-1.03166,9.31619,-0.829477,-0.498321,9.18067,-0.899012,-0.384714,9.19285,-0.910507,-0.626642,8.85707,-0.993186,-0.448973,8.78231,-1.02733,-0.583776,8.42817,-1.04041,-0.779697,8.51237,-1.02262,-0.697926,9.16216,-0.900021,-0.582664,9.30172,-0.839698,-0.56488,9.0488,-0.96172,-0.396103,8.99359,-0.973637,-0.107633,8.97622,-0.991796,-0.243976,9.19223,-0.906027,-0.273,8.74414,-1.03653,-0.366069,8.37397,-1.05567,-0.238852,8.97641,-0.979858,-0.865658,8.82401,-0.966894,-0.990117,8.95397,-0.923049,-1.13288,9.11555,-0.858868,-0.696694,8.67986,-1.01401,-0.523102,8.58589,-1.04414,-0.146644,8.50307,-1.08476,-0.325939,8.54529,-1.05914,-0.592728,9.6172,-0.444366,-0.286892,9.52368,-0.659464,-0.448305,9.55169,-0.579823,-0.124943,9.5217,-0.69375,-0.135287,9.47846,-0.733327,-0.515985,9.5281,-0.631134,-0.332567,9.49373,-0.69122,-0.646708,9.58573,-0.566581,-0.744367,9.55013,-0.630761,-0.28909,9.3893,-0.782715,-0.455795,9.38012,-0.783675,-0.129615,9.3766,-0.806083,-0.124245,9.55867,-0.700216,-0.281518,9.56012,-0.664711,-0.58073,9.64911,-0.450652,-0.437166,9.58836,-0.583589,-1.23111,4.95519,1.00802,-0.860301,4.61757,1.36347,-0.874464,4.62829,1.35088,-1.22862,4.93203,1.02112,-1.10431,5.65297,1.0009,-0.733346,5.45398,1.44201,-0.717196,5.45033,1.45855,-1.22227,4.94697,1.01996,-0.87131,4.64614,1.34865,-1.22481,4.97141,1.00643,-0.857345,4.6357,1.36111,-0.805736,6.60502,0.855035,-0.485687,6.6032,1.14123,-0.471918,6.59881,1.15504,-0.79388,6.59071,0.879455,-1.03658,6.61503,0.548304,-0.803338,6.59402,0.862927,-1.02741,6.61025,0.565817,-1.25749,4.8913,1.10901,-1.54941,5.19326,0.658291,-1.26788,4.90153,1.09322,-1.53761,5.18116,0.676439,-1.15266,5.63575,1.13854,-1.48276,5.84839,0.66323,-1.16556,5.64067,1.12238,-1.47098,5.83565,0.683817,-1.54531,5.16607,0.678623,-1.27336,4.88382,1.0964,-1.26272,4.87345,1.11242,-1.5579,5.17766,0.660169,-1.6707,5.45201,0.162186,-1.61352,5.19747,0.737636,-1.61444,5.20614,0.717345,-1.64903,5.44214,0.190558,-1.53393,5.86292,0.72827,-1.52606,6.03371,0.145654,-1.52907,5.8583,0.743335,-1.63856,5.45681,0.190405,-1.60523,5.22352,0.715458,-1.66037,5.46608,0.161849,-1.60459,5.21469,0.735428,-1.04664,6.61438,0.557526,-1.13807,6.67709,0.0840332,-1.04526,6.60822,0.569838,-1.15404,6.68501,0.0976604,-0.927779,6.66873,-0.309474,-1.14467,6.68938,0.088545,-0.936918,6.67077,-0.293666,-1.72123,5.50301,0.202874,-1.45445,5.58012,-0.29714,-1.71209,5.50522,0.185297,-1.46509,5.57728,-0.276893,-1.57747,6.05059,0.181926,-1.33285,6.0435,-0.304587,-1.57037,6.04819,0.164711,-1.34521,6.04065,-0.284453,-1.47287,5.56405,-0.277508,-1.7201,5.49034,0.187538,-1.72938,5.48797,0.205414,-1.4624,5.56639,-0.298266,-0.799654,6.27963,0.911206,-0.483485,6.15123,1.22905,-0.805083,6.30092,0.897014,-0.470829,6.14887,1.24102,-1.09679,5.67361,0.993743,-0.727738,5.47457,1.43697,-0.711882,5.47066,1.45344,-0.916151,6.10406,0.904104,-1.15709,6.27265,0.488399,-0.925481,6.10787,0.889704,-1.14867,6.26206,0.505881,-1.14447,5.65717,1.13238,-1.47199,5.86736,0.657831,-1.15738,5.66197,1.11621,-1.46055,5.85471,0.678163,-1.22376,6.32215,0.0809327,-1.20262,6.21103,0.545251,-1.23851,6.33019,0.0558579,-1.2012,6.20879,0.563074,-1.49512,6.02832,0.170325,-1.52783,5.8739,0.726507,-1.51722,6.04457,0.144386,-1.52329,5.86935,0.740704,-1.25919,6.35556,0.071204,-1.01897,6.33669,-0.335784,-1.25173,6.35286,0.056883,-1.03047,6.33425,-0.318922,-1.55992,6.07469,0.179586,-1.31544,6.06523,-0.302733,-1.55288,6.07217,0.162582,-1.32769,6.06243,-0.283055,-0.846593,6.33774,0.844265,-0.484563,6.19536,1.23262,-0.4704,6.189,1.24712,-1.0981,5.64714,1.0202,-0.794565,6.59939,0.869356,-1.08766,5.66654,1.01371,-0.832785,6.33083,0.859301,-0.889645,6.12276,1.00598,-1.17381,6.24125,0.603225,-0.900333,6.12749,0.989776,-1.1642,6.23189,0.621931,-1.50163,6.01768,0.173938,-1.12413,6.66889,0.107133,-1.25946,6.20598,0.640932,-1.29853,6.32366,0.113777,-1.25699,6.19999,0.654515,-1.2808,6.31118,0.138614,-1.33731,6.37921,0.147945,-1.09117,6.34153,-0.28609,-1.32903,6.38095,0.136189,-1.10278,6.34021,-0.269099,-0.488873,6.19916,1.33033,-0.25033,5.36706,1.32517,-0.0542856,4.92698,1.14809,0,4.90616,1.14165,-0.099046,5.03876,1.10788,-0.211915,6.19269,1.43786,0,6.18682,1.45073,-0.497832,5.81178,1.39333,-0.192268,5.80326,1.49456,-0.137399,5.39236,1.46901,0,5.81233,1.47033,-0.0731335,4.59217,-0.0120733,-0.100917,4.40748,-0.00173656,-0.314639,4.62306,-0.377636,-0.323407,4.44108,-0.37114,-0.606193,4.89125,0.900865,-0.635467,4.72966,0.842964,-0.21943,4.72685,0.739344,-0.246582,4.55575,0.702634,-0.0829097,4.62919,0.373319,-0.11349,4.46831,0.368416,-0.233284,4.07833,0.0793629,-0.193658,4.25569,0.0537732,-0.217643,4.09561,0.356387,-0.189429,4.26947,0.359929,-0.332088,4.05768,-0.21682,-0.300387,4.23265,-0.277352,-0.471438,4.14229,0.777566,-0.44958,4.31299,0.775623,-0.316056,4.11667,0.635807,-0.294851,4.28226,0.649578,-0.40585,4.83688,0.870815,-0.437631,4.66662,0.844451,-0.677144,4.18713,0.742934,-0.658498,4.33369,0.767106,-0.364748,4.62579,-0.408845,-0.373232,4.44378,-0.402012,-0.39098,4.05259,-0.261568,-0.3599,4.22736,-0.32292,-0.603477,1.9121,-0.423421,-0.611304,1.73453,-0.380341,-0.51636,2.60852,-0.4121,-0.494412,2.74866,-0.390885,-0.594355,2.63918,0.562351,-0.608609,2.80675,0.598348,-0.468806,2.64917,0.48992,-0.506257,2.46745,0.501908,-0.639104,2.8008,0.592587,-0.660693,2.61333,0.59948,-0.546858,1.92416,-0.36961,-0.543625,1.74757,-0.31443,-0.379231,2.39217,0.260569,-0.426134,2.20008,0.276134,-0.364949,2.12315,-0.0378521,-0.394168,1.92814,-0.000206508,-0.341923,2.59239,0.135694,-0.317452,2.72863,0.141434,-0.45498,2.62563,0.437593,-0.428913,2.74901,0.485939,-0.480975,2.6055,-0.377078,-0.459352,2.74443,-0.356505,-0.378742,2.59491,-0.14181,-0.352606,2.73059,-0.126871,-0.394545,1.81181,-0.104572,-0.464011,1.66839,-0.175256,-0.479311,1.8989,-0.294257,-0.528147,1.7355,-0.346588,-0.563943,1.71612,0.45266,-0.566577,1.57368,0.418656,-0.404593,1.70103,0.205313,-0.413268,1.57448,0.0944608,-0.734736,1.74209,0.591877,-0.718168,1.57192,0.557004,-0.516637,1.94321,-0.369086,-0.573191,1.78599,-0.431116,-0.427614,4.86104,1.0022,-0.717274,5.05475,1.05587,-1.05952,5.38334,0.910986,-1.33512,5.53984,0.56735,-1.00986,3.98499,0.634113,-1.36975,4.01367,0.23084,-0.501112,3.88802,0.822398,-0.736715,3.93073,0.796428,-1.03413,4.60923,0.725036,-1.2866,4.68491,0.418816,-0.46465,4.35353,0.846539,-0.729448,4.45428,0.847219,-1.28369,5.80026,0.566486,-1.06291,5.63168,0.915936,-0.713315,5.23881,1.10903,-0.412403,5.00045,1.04823,-1.23023,5.46826,0.74114,-1.14479,4.00519,0.435202,-1.18749,4.64706,0.579617,-1.18166,5.72239,0.74374,-1.2959,3.92804,-0.030067,-1.3978,5.19965,-0.0838505,-0.213585,3.91733,-0.109469,-0.162325,4.82782,-0.317196,-1.14414,3.99656,-0.272366,-0.838192,4.94292,-0.560915,-0.613729,4.88263,-0.566678,-0.34107,4.83686,-0.500145,-1.20101,5.05931,-0.341341,-0.792062,4.01562,-0.432439,-0.363157,3.96462,-0.27842,-0.565495,4.00626,-0.393196,-1.23195,4.74797,-0.244392,-1.23195,4.95843,-0.261327,-1.19308,5.03106,0.555964,-1.18287,4.84155,0.531235,-1.28859,4.7822,-0.010871,-1.28145,4.82262,0.26605,-1.28854,4.98809,-0.0191948,-1.28159,5.01925,0.276103,-1.1953,4.8388,0.497508,-1.20424,5.02929,0.5205,-1.23321,5.03065,0.520132,-1.22429,4.83979,0.497058,-1.31846,5.01582,0.275463,-1.39471,4.95643,-0.0412652,-1.31822,4.81639,0.265868,-1.39471,4.74988,-0.0333644,-1.2117,4.84217,0.531258,-1.2219,5.03201,0.555988,-1.31348,4.98215,0.096143,-1.31405,4.77841,0.0939912,-1.3522,4.77259,0.175044,-1.35109,5.02557,0.176828,-1.35469,4.78024,0.259587,-1.35636,5.03157,0.268851,-1.22581,5.0261,0.176259,-1.21518,5.03148,0.26786,-1.24426,4.77376,0.174007,-1.23616,4.77975,0.258406,-1.3602,4.79028,0.256864,-1.35615,4.78004,0.172864,-1.35011,5.01685,0.175815,-1.35392,5.02274,0.267787,-1.37105,4.4489,0.249758,-1.36506,4.45622,0.158003,-1.34384,4.2229,0.122854,-1.35044,4.22093,0.207293,-1.22606,4.22417,0.211395,-1.23201,4.22902,0.126743,-1.23425,4.47294,0.255482,-1.24266,4.4791,0.163701,-1.37451,4.45717,0.251925,-1.34386,4.21128,0.208809,-1.36705,4.46455,0.160155,-1.3391,4.21571,0.124133,-1.30345,4.23731,0.0391949,-1.32479,4.43753,0.0708511,-1.43297,4.19567,-0.0630484,-1.3126,4.25013,0.21711,-1.45654,4.40004,-0.042933,-1.33651,4.44506,0.25226,-1.14845,4.27296,0.440566,-1.17922,4.462,0.458346,-1.15003,4.46385,0.459839,-1.11931,4.2752,0.442049,-1.29989,4.45237,0.255765,-1.2718,4.46544,-0.0326934,-1.27656,4.26021,0.220533,-1.24844,4.26178,-0.052253,-1.22999,4.47441,-0.177091,-1.17105,4.27173,-0.182735,-0.589011,9.2982,0.757734,-0.968417,9.3801,0.629753,-0.172975,9.08376,1.00515,-1.11182,9.20222,0.757404,-0.671429,9.16864,0.884182,-0.869969,8.52034,1.08108,-0.194862,8.45262,1.29614,-8.88178e-16,8.44487,1.37976,-0.236057,8.06072,1.28055,-0.891635,8.13091,1.04608,-0.97619,7.89185,0.902251,-0.22199,7.88761,1.26626,-0.227349,7.44857,1.34614,-0.880644,7.22653,0.918749,-1.36269,8.10565,0.408798,-1.10984,7.20651,0.550029,-1.12541,7.27308,0.0699728,-1.28386,7.82749,0.529445,-1.24953,7.79308,0.0304257,-0.498327,9.49397,0.638924,-0.834085,9.50592,0.544423,-0.859379,9.3472,0.687163,-0.980931,9.21246,0.81271,-0.732881,9.50294,0.584278,-1.18664,8.54439,0.914838,-1.35306,8.43613,0.71247,-1.09453,8.30782,0.927236,-1.19253,8.19992,0.76936,-0.890903,8.20898,-0.908566,-0.800113,8.01378,-0.872131,-0.935784,7.67491,-0.534809,-1.10293,7.87978,-0.475855,-1.18457,7.81345,-0.219872,-1.06015,7.54515,-0.218112,-1.12998,7.48865,0.0490511,-0.186149,7.67058,1.25703,-0.913936,7.51374,0.782674,-1.12685,7.48103,0.518527,-8.88178e-16,7.70346,1.33689,-0.18954,9.19297,0.934677,-0.429015,9.13679,0.904154,-0.539081,8.48078,1.17598,-0.566313,8.05767,1.17659,-0.586686,7.85494,1.09756,-0.529227,7.31502,1.14755,-0.537573,7.57239,1.04101,-0.394313,9.24802,0.818941,-0.750643,9.32668,0.716161,-0.854026,9.20056,0.854527,-0.638432,9.50309,0.609592,-0.206841,8.24815,1.32497,-0.887388,8.32012,1.09621,-0.550453,8.2669,1.20539,-1.03503,8.41506,0.995456,-1.43243,8.24784,0.393074,-0.176537,8.73775,1.24495,-0.846725,8.75738,1.06007,-1.15466,8.74266,0.935459,-1.2788,8.68174,0.844964,-0.513106,8.73871,1.11214,-1.04285,8.77912,1.01982,-0.932261,7.41761,-0.497468,-1.05229,7.33026,-0.203314,-0.69186,7.69165,-0.767552,-1.14046,6.93059,-0.245228,-0.811228,7.00456,-0.521365,-1.2836,6.84667,0.154413,-1.23317,6.89359,-0.0607293,-1.30581,6.60931,0.765183,-1.08568,6.48592,1.20677,-0.687515,6.6081,1.448,-0.314802,6.81543,1.52305,-8.88178e-16,7.02825,1.55624,-0.230696,7.97296,1.27077,-0.937014,8.0185,0.974915,-0.924134,9.3689,0.652205,-1.06637,9.20562,0.785124,-0.791482,9.50486,0.554772,-1.25878,8.48235,0.843693,-1.14495,8.25266,0.846793,-0.583064,7.95528,1.14148,-1.22478,8.70617,0.897263,-0.692775,7.42502,-0.63686,-0.95157,7.21071,-0.376445,-1.15588,7.09308,0.0984715,-1.06222,7.145,-0.137691,-0.546368,7.05915,1.20323,-0.91508,6.98458,0.99149,-0.25672,7.23028,1.3651,-1.14929,6.99214,0.609552,-1.03346,7.06657,-0.279971,-1.20271,6.98229,0.133325,-1.15026,7.0211,-0.0930879,-0.625259,6.83243,1.29439,-1.02652,6.69311,1.08992,-0.282361,7.03528,1.41385,-8.88178e-16,7.21308,1.46825,-1.26968,6.82536,0.68308,-0.774579,7.19811,-0.539638,-0.330003,6.59398,1.49624,-0.711216,6.35879,1.40951,-1.06313,6.27388,1.20606,-1.29446,6.40808,0.824194,-1.23559,6.75978,-0.0409673,-1.31512,6.69841,0.182793,-0.940637,6.80818,-0.644368,-1.14478,6.78995,-0.235995,-1.02024,8.05218,-0.706718,-0.868818,7.84163,-0.700118,-0.808934,7.55411,-0.638027,-1.00193,6.95834,-0.425126,-0.831451,7.30991,-0.54733,-0.908157,7.12696,-0.454619,-1.05434,6.83627,-0.423652,-0.167267,8.9442,1.13075,-0.771291,8.97858,0.996947,-1.08729,8.95915,0.924009,-1.21152,8.92093,0.866027,-0.489176,8.95347,1.02626,-0.958527,8.9951,0.959881,-1.16458,8.9348,0.899325,-1.32557,6.76139,0.450172,-1.28756,7.80635,0.286186,-1.14708,7.47177,0.297376,-1.13507,7.2334,0.322921,-1.1635,7.05157,0.358837,-1.23359,6.93323,0.414473,-1.32442,6.57503,0.472904,-0.155448,9.40137,0.717925,-0.337052,9.47998,0.661537,-0.679866,7.66309,-0.702449,-0.898228,7.38792,-0.436486,-1.07601,7.23938,0.084137,-1.0005,7.30012,-0.167694,-0.503135,7.25927,1.11641,-0.83523,7.17886,0.88822,-0.219325,7.3944,1.30092,-8.88178e-16,7.48345,1.36228,-1.05583,7.1691,0.538388,-0.783733,7.51921,-0.576162,-1.07808,7.19423,0.320775,-0.93697,7.1834,-0.317043,-1.12439,7.06483,0.115345,-1.042,7.11701,-0.102311,-0.530226,6.99686,1.18341,-0.918139,6.90277,0.989007,-0.243686,7.17357,1.32944,-8.88178e-16,7.3246,1.38855,-1.14278,6.95132,0.603968,-0.725306,7.41031,-0.559789,-0.83916,7.28221,-0.472046,-1.1418,7.02045,0.36393,-1.03447,7.03062,-0.236105,-1.18815,6.94612,0.147282,-1.14606,6.9844,-0.0575972,-0.614463,6.75929,1.30007,-1.00917,6.62092,1.08617,-0.270915,6.96703,1.39323,-1.25176,6.75671,0.680396,-0.782923,7.15066,-0.494125,-0.918406,7.09296,-0.389705,-1.21913,6.88638,0.410284,-0.825819,6.9578,-0.504094,-1.06245,6.43991,1.18734,-1.27345,6.55644,0.75215,-8.88178e-16,6.98965,1.51818,-0.304593,6.77759,1.49239,-0.667741,6.56268,1.41949,-1.25238,6.80935,0.16521,-1.2012,6.86596,-0.0387643,-1.1152,6.90531,-0.219195,-0.98818,6.93087,-0.416094,-1.29312,6.71469,0.435314,-0.939426,6.8873,-0.646328,-1.10259,6.31261,1.24382,-1.33514,6.4399,0.848253,-0.329653,6.62747,1.54353,-0.734202,6.39819,1.45694,-1.34303,6.71314,0.169846,-1.26059,6.77682,-0.0651624,-1.16847,6.8203,-0.266691,-1.07616,6.86121,-0.45702,-1.36574,6.60012,0.482586,-0.21855,7.46036,1.33814,-0.885475,7.24448,0.903953,-1.10858,7.22193,0.542685,-1.12024,7.28635,0.0657454,-0.527528,7.33053,1.1371,-1.04654,7.34268,-0.207625,-0.919939,7.43468,-0.505019,-0.692159,7.72592,-0.784285,-0.79925,7.57905,-0.648359,-1.13247,7.24911,0.317742,-0.678278,7.45086,-0.649443,-0.930509,7.21482,-0.392164,-1.14567,7.09426,0.0910084,-1.04627,7.14661,-0.148366,-0.534427,7.0757,1.19504,-0.891022,7.01232,0.973791,-0.245747,7.23939,1.35963,-1.13178,7.00383,0.594668,-0.807859,7.32202,-0.553433,-1.15067,7.05507,0.347638,-1.01193,7.06662,-0.297921,-1.19847,6.98006,0.124579,-1.13264,7.01816,-0.105035,-0.604641,6.85332,1.28118,-1.01314,6.7152,1.07257,-0.268027,7.04729,1.40645,-1.25983,6.83795,0.668892,-0.764029,7.22437,-0.548398,-0.886795,7.14053,-0.461085,-1.22841,6.93697,0.401891,-1.13033,6.91947,-0.252952,-1.2802,6.83908,0.147095,-1.23149,6.88154,-0.0670583,-0.67662,6.60589,1.4393,-1.08312,6.47964,1.19791,-0.301531,6.81564,1.51972,-1.30708,6.60803,0.752604,-0.806472,7.02145,-0.514719,-0.997158,6.95401,-0.421549,-1.32128,6.75885,0.442053,-0.943919,6.88282,-0.642732,-1.10124,6.30657,1.24279,-1.33616,6.43058,0.837306,-0.315616,6.62323,1.54111,-0.725527,6.39735,1.46011,-1.34112,6.69949,0.161932,-1.25864,6.76462,-0.0703238,-1.16742,6.80889,-0.269895,-1.07814,6.85145,-0.456705,-1.36822,6.59017,0.472702,-0.0541062,9.04783,1.05207,-0.0190693,8.44623,1.3814,-0.0313257,7.89689,1.33035,-0.0357982,7.51317,1.40612,-0.0316047,8.06791,1.34865,-0.0251408,7.69839,1.33437,-0.058384,9.14426,0.99273,-0.0241899,8.25056,1.3858,-0.0195397,8.73195,1.31614,-0.0432287,7.00168,1.55255,-0.0309115,7.98043,1.34044,-0.0409209,7.34298,1.42532,-0.042126,7.19029,1.4646,-0.0577734,6.73802,1.54577,-0.0376769,8.91359,1.1724,-0.0438769,9.37623,0.737428,-0.033878,7.46765,1.35827,-0.0376126,7.29725,1.38498,-0.0374016,7.13036,1.43683,-0.0438206,6.95225,1.51629,-0.0510184,6.77636,1.60351,-0.030163,7.52005,1.39788,-0.0331118,7.34446,1.41989,-0.0338994,7.19519,1.45826,-0.0318652,6.99931,1.55017,-0.040847,6.77458,1.60083,-0.0904382,9.6016,0.712257,-0.386443,9.75279,0.632459,-0.202615,9.65323,0.691961,-0.705939,9.71403,0.387562,-0.616068,9.75676,0.514598,-0.666692,9.73809,0.481023,-0.745211,9.6927,0.380798,-0.510492,9.77254,0.581895,-1.45907,8.20151,-0.00456246,-1.38078,8.09101,0.0227845,-1.29011,8.14606,-0.4053,-1.39613,8.30283,-0.372536,-1.26802,8.53277,-0.743305,-1.00234,8.35881,-0.876623,-1.15337,8.21318,-0.650733,-1.32877,8.40688,-0.566032,-1.37411,8.08766,0.217564,-1.44857,8.20957,0.17477,-1.33959,8.10596,-0.18909,-1.44386,8.23159,-0.186708,-0.157857,9.43656,0.714302,-0.0470983,9.40895,0.732215,-8.88178e-16,9.40643,0.734381,-0.480487,9.56438,0.611138,-0.340707,9.51255,0.65987,-0.792714,9.5535,0.515884,-0.749223,9.54984,0.532876,-0.701014,9.55517,0.562817,-0.612175,9.57013,0.587174,-0.407302,0.0299936,0.0436081,-1.27568,0.0299927,0.0147482,-1.26702,0.0299936,0.283082,-0.412871,0.0299927,0.751201,-0.455625,0.0299936,0.430463,-1.25411,0.0297821,-0.257468,-0.990348,0.0299936,-0.277655,-0.723395,0.0299936,-0.275658,-0.402945,0.0299927,-0.277803,-0.69384,0.0299936,0.0344671,-1.01717,0.0299936,0.0314384,-1.02178,0.0299936,0.331851,-0.734753,0.0299936,0.423031,-1.46942,0.0299936,0.774537,-0.729295,0.0299936,0.758025,-1.15139,0.0299936,0.73235,-0.673916,0.0299936,1.07443,-1.22315,0.0299936,1.05154,-1.55626,0.0299936,1.07473,-0.330255,0.0299927,1.08758,-1.30256,2.302,0.0126935,-1.29656,2.30931,-0.079061,-1.27534,2.076,-0.11421,-1.28194,2.07403,-0.0297712,-1.15756,2.07727,-0.0256692,-1.16351,2.08212,-0.110321,-1.16575,2.32604,0.0184177,-1.17417,2.3322,-0.0733632,-1.30602,2.31027,0.0148611,-1.27537,2.06438,-0.0282554,-1.29855,2.31765,-0.0769092,-1.27061,2.06881,-0.112931,-1.2396,2.09071,-0.152696,-1.26284,2.29113,-0.126716,-1.36806,2.04635,-0.238864,-1.23443,2.10217,-0.00800606,-1.3983,2.25056,-0.250438,-1.25692,2.29669,0.0270147,-1.18076,2.1223,0.216823,-1.19001,2.31387,0.228722,-1.18207,2.31309,0.200138,-1.15135,2.12443,0.182348,-1.23035,2.3054,0.0257135,-1.18311,2.318,-0.239417,-1.20719,2.11278,-0.0103211,-1.15887,2.11337,-0.241082,-1.17965,2.7168,-0.159535,-1.22215,2.83848,0.0730289,-1.16718,2.92168,-0.168629,-1.21004,3.0067,0.0958107,-1.16086,2.92485,0.261934,-1.15725,3.05118,0.269884,-1.16434,2.94289,0.298338,-1.18947,2.75239,0.296694,-1.23763,2.92766,0.0986492,-1.3979,2.89215,-0.113426,-1.25075,2.73072,0.0739701,-1.4041,2.68556,-0.11908,-1.24915,2.91443,-0.0479668,-1.26408,2.71104,-0.0663925,-1.29455,2.69903,-0.0285485,-1.27713,2.95037,-0.0056818,-1.29817,2.69984,0.0562947,-1.28378,2.94912,0.086439,-1.15209,2.94268,-0.0044702,-1.1429,2.93981,0.0873985,-1.18676,2.69316,-0.0279896,-1.17992,2.69164,0.05672,-1.30296,2.71042,0.0543414,-1.29796,2.70687,-0.0301548,-1.2767,2.94172,-0.00740456,-1.28189,2.94027,0.0846777,-0.471648,0.758845,0.827037,-0.47639,0.809023,0.687664,-0.44317,0.752505,0.554745,-0.391447,0.622398,0.506143,-0.351536,0.494843,0.570351,-0.346713,0.443704,0.709899,-0.380011,0.501168,0.842593,-0.43172,0.631364,0.891222,-0.464907,0.725081,0.79609,-0.434385,0.62763,0.845154,-0.394847,0.528202,0.808002,-0.369445,0.485022,0.706393,-0.373077,0.523354,0.599848,-0.403598,0.620776,0.550785,-0.443138,0.720235,0.587939,-0.468532,0.763438,0.689547,-0.395136,0.723591,0.779479,-0.397937,0.753225,0.697168,-0.378318,0.719847,0.61867,-0.347772,0.643009,0.589967,-0.324192,0.567722,0.627872,-0.321391,0.538089,0.710183,-0.341011,0.571466,0.788681,-0.371556,0.648304,0.817385,-0.335795,0.695423,0.741872,-0.325095,0.661926,0.758686,-0.311177,0.626698,0.745858,-0.302248,0.611731,0.709864,-0.303643,0.62478,0.673162,-0.313985,0.658408,0.656381,-0.327999,0.693601,0.669202,-0.336831,0.708603,0.705205,-0.308094,0.649179,0.724188,-0.300732,0.666968,0.709343,-0.315067,0.676912,0.69241,-0.43903,0.720972,0.786826,-0.44224,0.754934,0.692495,-0.419755,0.716681,0.602533,-0.384749,0.628623,0.569638,-0.357726,0.542341,0.61308,-0.354516,0.50838,0.70741,-0.376999,0.546632,0.797372,-0.412007,0.634692,0.830267,-0.462573,0.619801,0.881517,-0.412683,0.494099,0.834525,-0.38063,0.438,0.706543,-0.385199,0.488,0.571801,-0.423693,0.611144,0.50978,-0.473626,0.736744,0.556699,-0.505694,0.791304,0.685012,-0.501116,0.742864,0.819557,-1.28169,0.783167,0.500116,-1.31439,0.772254,0.638974,-1.3831,0.675977,0.719465,-1.44758,0.550733,0.694438,-1.47005,0.46989,0.578555,-1.43735,0.480803,0.439698,-1.36864,0.57708,0.359208,-1.30416,0.702324,0.384234,-1.36683,0.702481,0.422674,-1.41203,0.61467,0.405129,-1.46021,0.54717,0.461561,-1.48313,0.539518,0.558915,-1.46738,0.596199,0.640162,-1.42217,0.684008,0.657709,-1.374,0.751509,0.601276,-1.35107,0.759161,0.503921,-1.4979,0.699234,0.536661,-1.50707,0.699109,0.514144,-1.49625,0.687925,0.495466,-1.47258,0.729899,0.544411,-1.49169,0.703137,0.567166,-1.50969,0.66818,0.559864,-1.51569,0.646001,0.528376,-1.50691,0.649146,0.490532,-1.4877,0.675858,0.467794,-1.4698,0.710866,0.475079,-1.46347,0.732861,0.506629,-1.4089,0.715441,0.429682,-1.44835,0.63882,0.414373,-1.49039,0.57992,0.463614,-1.51039,0.573244,0.548563,-1.49664,0.622702,0.619456,-1.4572,0.699322,0.634768,-1.41516,0.758222,0.585525,-1.39516,0.764899,0.500577,-1.34943,0.754229,0.613967,-1.40384,0.67799,0.677704,-1.45489,0.578813,0.657887,-1.47269,0.514795,0.566121,-1.4468,0.523437,0.456165,-1.39238,0.599677,0.392427,-1.34133,0.698854,0.412243,-1.32353,0.762872,0.504008,-1.33065,0.721124,0.373086,-1.39744,0.591386,0.347162,-1.46862,0.491653,0.430541,-1.50249,0.480347,0.574382,-1.47922,0.564093,0.694423,-1.41243,0.693832,0.720347,-1.34125,0.793563,0.636969,-1.30738,0.804869,0.493128,-1.1387,3.6371,0.468567,-1.22649,3.63696,0.237505,-1.18945,3.41472,0.198948,-0.426742,3.23194,0.604395,-0.470508,3.56753,0.731794,-0.542733,3.57427,0.822832,-1.13453,2.62872,0.464041,-1.10653,3.39736,0.379742,-1.07581,3.30326,0.594643,-0.644835,3.26747,0.755962,-0.815241,3.28029,0.760304,-1.28952,3.60918,0.686216,-1.14181,3.47319,0.452306,-0.684705,3.54608,1.04149,-0.685484,3.34015,0.81319,-1.12105,3.36915,0.653331,-0.852567,3.34372,0.821244,-1.19299,3.61027,0.901944,-0.925588,3.58213,1.04864,-1.16063,4.27985,1.01026,-1.14546,4.2619,0.865962,-0.794313,4.22245,1.07045,-0.927245,4.25489,1.13958,-0.752132,4.20086,1.04467,-1.1268,4.24356,0.825684,-1.12281,4.2403,0.957099,-0.862456,4.2154,1.0985,-1.2631,3.96815,0.755207,-1.18127,3.95905,0.955049,-0.922362,3.93108,1.09752,-0.698909,3.90903,1.08484,-0.595228,3.89835,0.949626,-1.1641,3.95603,0.619554,-1.18042,3.6254,0.532356,-1.11199,3.42796,0.411991,-0.658016,3.29435,0.771852,-0.582632,3.56636,0.881002,-1.08919,3.32815,0.614797,-0.825785,3.3026,0.780029,-0.762319,4.20267,1.04122,-1.12175,4.24207,0.834693,-1.13386,4.24472,0.969683,-0.878053,4.21923,1.11046,-0.623161,3.89911,0.985424,-1.19094,3.95745,0.656643,-1.13884,4.25579,0.859541,-1.15323,4.27779,1.0017,-0.922825,4.25418,1.12829,-0.792154,4.22123,1.05628,-0.750212,4.1889,1.01569,-1.10624,4.22432,0.817632,-0.858358,4.20892,1.09984,-1.13018,4.23842,0.952766,-0.760449,4.19896,1.02268,-1.11101,4.23299,0.828461,-1.22313,1.96501,-0.164316,-0.438147,1.95874,-0.334969,-1.25705,2.9606,-0.12313,-0.405432,2.83781,-0.307541,-0.84157,1.97014,-0.508298,-0.688881,1.96842,-0.509431,-0.544934,1.96521,-0.45431,-1.12238,1.96858,-0.345025,-0.830269,2.79316,-0.513749,-0.659552,2.78079,-0.511174,-0.513543,2.78787,-0.443813,-1.14695,2.86898,-0.343794,-0.492567,0.56513,-0.236922,-0.443228,0.500372,0.448055,-1.06365,1.07321,0.902392,-0.958949,0.617847,-0.372038,-1.25808,0.447811,0.201422,-1.29364,0.451291,0.491077,-0.681836,0.614064,-0.399434,-0.670351,1.05663,0.896327,-0.420401,0.499821,0.0774494,-0.504655,0.77233,0.710401,-1.27436,0.755856,0.667344,-1.1803,0.547528,-0.150128,-0.49063,0.808224,-0.221302,-0.46682,0.770671,0.371242,-1.05464,1.12361,0.811898,-0.942941,0.842551,-0.36205,-1.22685,0.719301,0.115581,-1.26795,0.805694,0.325799,-0.693526,0.841422,-0.390631,-0.683853,1.11407,0.825546,-0.446668,0.76729,0.0561294,-0.564421,0.974904,0.615938,-1.211,1.00049,0.58177,-1.16147,0.792742,-0.149371,-0.967188,-0.018647,2.40426,-1.13453,-0.0203847,2.37202,-0.823457,-0.0198748,2.38467,-0.809005,0.0325416,2.33447,-1.07209,0.0510701,2.3163,-0.893923,0.125016,2.29119,-1.02074,0.113292,2.28974,-0.839676,0.0959581,2.30207,-0.961976,0.133399,2.28458,-0.969559,0.259861,2.14233,-0.724543,0.203432,2.16162,-1.09201,0.220801,2.15336,-0.839232,0.251446,2.14499,-1.18806,0.113996,2.18976,-0.645202,0.0951669,2.21594,-0.603427,-0.0179201,2.29931,-1.27847,-0.0189629,2.2491,-1.42552,-0.0169413,2.05732,-0.444914,-0.0139401,2.08208,-0.49856,0.166917,1.99409,-1.32063,0.183475,1.96372,-0.788687,0.365008,1.89927,-1.18661,0.323398,1.9102,-0.616103,0.309686,1.9268,-0.989071,0.371171,1.89312,-1.01374,0.540953,1.38251,-0.522205,0.471839,1.41005,-1.2993,0.473228,1.36588,-0.748818,0.537647,1.39732,-1.44443,0.303328,1.35873,-0.379578,0.293797,1.41914,-0.29123,-0.00875905,1.42486,-1.53179,-0.010603,1.35011,-1.2588,1.69611,0.0295458,-1.17364,1.56637,-0.267685,-0.674915,1.39376,-0.551358,-0.518049,1.824,0.512089,-0.368004,1.47116,-0.00213536,-0.923451,1.40956,-0.477056,-0.948356,1.84885,0.644676,-0.386267,1.53637,0.282788,-0.449576,1.43313,-0.344297,-0.693519,1.22565,0.78078,-1.00643,1.2379,0.752093,-1.1813,1.12686,0.546332,-1.26198,0.994609,0.254501,-1.2241,0.901522,0.057362,-1.15526,0.936109,-0.161304,-0.975422,1.05707,-0.350177,-0.652624,1.05513,-0.403956,-0.496434,0.937528,-0.215228,-0.453919,0.89661,0.052879,-0.4807,0.914508,0.333385,-0.561114,1.16262,0.615138,-1.03114,0.576117,1.45191,-0.474913,0.498672,1.49164,-1.34022,0.480573,1.43986,-0.717959,0.572311,1.47096,-1.5005,0.315859,1.44872,-0.322473,0.313381,1.50789,-0.242143,-0.00538064,1.51441,-1.60639,-0.00800738,1.4341,-1.49446,-0.00800739,1.05429,-0.353938,-0.00538066,1.1223,-0.410575,0.405881,1.11904,-1.39389,0.417132,1.06175,-0.761604,0.717829,1.09409,-1.26454,0.631052,1.06623,-0.549899,0.628829,1.10812,-1.00451,0.722621,1.08,-1.01121,0.769896,1.12677,-0.535931,0.693736,1.15985,-1.27562,0.685301,1.11579,-0.754899,0.769875,1.14223,-1.43233,0.460483,1.10423,-0.376909,0.449494,1.16343,-0.267527,-0.00593823,1.16142,-1.58994,-0.00767138,1.09089,-1.42623,-0.0076714,0.680632,-0.38605,-0.00593825,0.739454,-0.482041,0.526223,0.732762,-1.30903,0.538864,0.685368,-0.779184,0.92184,0.702853,-1.1516,0.81285,0.686929,-0.602827,0.810763,0.718585,-0.964778,0.927848,0.692324,-0.417894,-0.00984579,1.84956,-1.4553,-0.0145746,1.78968,-0.48113,0.183269,1.84483,-1.34194,0.197319,1.79506,-0.78208,0.383604,1.82495,-0.601048,0.328858,1.83582,-1.20989,0.339412,1.80145,-0.994081,0.38865,1.81355,-1.00287,0.411684,1.89756,-1.23143,0.359827,1.88437,-0.587912,0.350116,1.92111,-0.778677,0.406213,1.91008,-1.3694,0.215038,1.87798,-0.460796,0.199147,1.92979,-1.48882,-0.010603,1.87271,-0.393452,-0.00875902,1.93436,-0.483061,0.918893,-0.261493,-0.407708,0.645055,0.433872,-0.972583,0.941604,-0.394494,-1.30573,0.779052,0.0601763,-1.30801,0.674926,0.297017,-0.697485,0.942773,-0.409251,-0.368221,0.775207,0.0982228,-0.447269,0.524723,0.826392,-1.43636,0.531792,0.783078,-1.19947,0.869701,-0.215343,-0.688416,-0.000471539,-0.530173,-1.29418,-0.000954014,-0.261905,-1.31427,-0.000216971,0.0199876,-1.42396,-0.00487804,0.279502,-0.374554,5.4809e-06,-0.307325,-0.384971,-4.56419e-06,0.0460228,-0.373184,-0.00298742,0.422124,-1.0859,-0.00188332,-0.505957,-0.41139,0.284188,0.411641,-0.358221,0.416938,0.0677702,-0.386812,0.443307,-0.27676,-1.34579,0.311081,0.273482,-1.35331,0.381952,0.0331711,-1.2952,0.430867,-0.228576,-1.00734,0.438138,-0.502808,-0.652995,0.439546,-0.527172,-0.690495,0.66343,-0.485095,-1.21198,0.652108,-0.214627,-1.31194,0.61275,0.0523661,-1.32183,0.515338,0.292823,-0.480923,0.642125,-0.232034,-0.370712,0.627356,0.0883579,-0.413214,0.508401,0.400208,-0.975312,0.664804,-0.469289,-1.63458,-0.00756974,0.777364,-1.56767,0.187303,0.77787,-1.51534,0.356098,0.780409,-0.329314,0.120074,0.836475,-0.291127,-0.00531839,0.835047,-0.386437,0.333067,0.832039,-1.03999,1.2655,-0.235683,-0.569513,1.22225,-0.303251,-0.674518,1.23169,-0.32462,-0.8029,1.24442,-0.343529,-0.498908,1.21409,-0.14785,-1.1214,1.26855,-0.10603,-1.25997,2.97898,0.140663,-0.409203,2.93628,0.549532,-1.27732,2.18247,0.0543973,-0.720471,1.56232,0.765338,-0.989275,1.55424,0.741906,-1.2027,1.50543,0.521559,-1.30173,1.39626,0.236243,-1.29136,1.33146,0.0314089,-1.21453,1.21887,-0.236961,-0.986465,1.23956,-0.451962,-0.625595,1.2253,-0.514734,-0.424713,1.19141,-0.306086,-0.356149,1.19359,0.0213254,-0.377923,1.23808,0.315482,-0.498865,1.50303,0.592724,-0.68866,2.21967,0.659677,-0.936335,2.21373,0.633986,-0.475573,2.22294,0.506601,-1.28604,2.65693,0.0900661,-0.433065,2.65125,0.503923,-1.10805,2.95503,0.522165,-0.654891,2.93057,0.70477,-1.23554,2.63909,0.261535,-0.667739,2.61901,0.663177,-0.897602,2.6115,0.643142,-1.19757,2.97153,0.312404,-0.869892,2.93121,0.686346,-1.12935,2.20427,0.461606,-1.24412,2.19031,0.233759,-0.734359,1.53595,0.725466,-0.971002,1.52656,0.703538,-1.1644,1.47498,0.499725,-1.2548,1.36474,0.229623,-1.24203,1.30037,0.0383351,-1.17166,1.20257,-0.208238,-0.959975,1.23972,-0.414895,-0.651475,1.23152,-0.47898,-0.464981,1.18531,-0.277857,-0.4072,1.17905,0.0259123,-0.430778,1.21579,0.30477,-0.53366,1.4805,0.563857,-0.70882,1.84701,0.65709,-1.13096,1.83192,0.46053,-1.23768,1.77156,0.20991,-0.720842,1.57616,0.755234,-0.984541,1.5684,0.733096,-1.19371,1.52398,0.517696,-1.29295,1.42001,0.237227,-1.2863,1.35528,0.0359704,-1.20773,1.23761,-0.234894,-0.977103,1.24274,-0.452415,-0.634996,1.22837,-0.516409,-0.432152,1.19985,-0.30732,-0.362222,1.20599,0.0206402,-0.385806,1.2525,0.31833,-0.504674,1.52329,0.587916,-0.807689,0.0299927,-0.492847,-0.942691,0.0299927,-0.481133,-0.359224,0.0299937,1.47569,-1.47985,0.0299937,1.41111,-1.17537,0.0299937,1.42866,-0.673346,0.0299937,1.45759,-0.725063,0.0299937,1.85888,-1.16295,0.0299937,1.83365,-1.42853,0.0299937,1.81834,-0.451072,0.0299937,1.87467,-1.05374,0.0299928,2.33639,-0.859097,0.0299928,2.34589,-0.770581,0.0299937,2.11211,-0.542702,0.0299928,2.1253,-1.35546,0.0299928,2.07835,-1.13469,0.0299937,2.09113,-0.434882,0.0299927,-0.277621,-0.435881,0.0299936,0.0426964,-0.483464,0.0299936,0.429721,-0.44443,0.0299936,0.751881,-0.364531,0.0299936,1.08626,-0.390553,0.0299937,1.47388,-0.478399,0.0299937,1.8731,-0.565421,0.0299928,2.12399,-1.23207,0.0299927,-0.259831,-1.24413,0.0299927,0.0167871,-1.23711,0.0299936,0.289029,-1.43064,0.0299936,0.769393,-1.51564,0.0299936,1.0719,-1.44272,0.0299937,1.41325,-1.39614,0.0299937,1.82021,-1.32852,0.0299928,2.07989,-0.838436,0.0299928,2.31446,-0.671746,0.0296693,2.27841,-1.20962,0.0303478,2.25963,-1.0682,0.0299928,2.30443,-0.687756,0.0299928,2.26127,-1.1935,0.0299928,2.24444,-0.628204,0.0296718,-0.452036,-0.802039,0.0299927,-0.478304,-0.945884,0.0299927,-0.4675,-1.07671,0.0298213,-0.445532,-0.634576,0.0300394,-0.439375,-1.06924,0.0299743,-0.433666,-1.12995,7.8569,0.714685,-1.00714,7.20072,0.746596,-1.02269,7.49328,0.649214,-1.27514,8.15058,0.578731,-1.40046,8.33476,0.55027,-1.20424,6.54073,0.986012,-1.04514,6.97139,0.800967,-1.17416,6.74623,0.891382,-1.18057,6.33855,1.01379,-0.948971,7.16841,0.718945,-1.04401,6.9186,0.798224,-1.15495,6.6788,0.887791,-1.16664,6.49928,0.971315,-1.22552,6.37398,1.05179,-1.00855,7.21509,0.733584,-1.023,6.99536,0.784728,-1.16298,6.7643,0.876388,-1.2078,6.53778,0.973894,-1.22603,6.36473,1.04386,-1.07007,8.57608,1.00257,-1.2399,2.46154,-0.143916,-0.430924,2.4002,-0.313413,-0.836087,2.38005,-0.510881,-0.674363,2.37302,-0.510236,-0.533351,2.37653,-0.445343,-1.13506,2.41733,-0.34384,-0.808101,1.60089,-0.429119,-1.07265,1.61361,-0.292247,-1.16391,1.61326,-0.136877,-0.461127,1.58745,-0.239428,-0.552853,1.59455,-0.378117,-0.674513,1.59767,-0.418766,-1.34678,4.5588,-0.109181,-0.187992,4.37302,-0.236215,-0.816057,4.4791,-0.61683,-0.351011,4.40152,-0.509169,-0.589679,4.44448,-0.600021,-1.17418,4.5277,-0.426184,0.00264589,9.36275,-0.824212,-8.88178e-16,9.47257,-0.749116,4.7793e-05,9.56352,-0.703089,9.71987e-05,9.5274,-0.696397,-8.88178e-16,8.7246,-1.06399,-8.88178e-16,8.50177,-1.09809,-8.88178e-16,9.58858,0.71652,-8.88178e-16,7.03062,1.54958,-8.88178e-16,8.25064,1.38608,-8.88178e-16,7.5215,1.40938,-8.88178e-16,6.80268,1.60483,-8.88178e-16,7.36207,1.42218,-8.88178e-16,6.80099,1.60699,-8.88178e-16,7.16549,1.43903,-8.88178e-16,9.37562,0.739489,-8.88178e-16,7.98125,1.34516,-0.489939,6.17145,1.33462,-0.211612,6.16503,1.44164,0,6.16036,1.45212,-0.0926574,5.02553,1.11216,-0.459281,6.19865,1.34175,-0.237441,5.36835,1.3399,-0.464685,5.81186,1.40443,-0.46014,6.17095,1.34599,0.958961,7.50396,-0.42415,0.907277,7.2516,-0.396789,0.480256,7.39369,-0.715444,0.562134,7.63184,-0.782478,0.122297,7.50542,-0.73986,0.2145,7.74688,-0.821681,-0.217269,7.62049,-0.807362,-0.125763,7.8621,-0.831242,-0.555768,7.73631,-0.856878,-0.506037,7.97933,-0.891732,-0.980121,8.17969,-0.747162,-1.02029,7.97131,-0.598804,-0.869736,7.8666,-0.735697,-0.828094,8.07838,-0.876193,0.891237,7.25797,-0.40195,0.943918,7.50953,-0.434534,-0.887215,7.50953,-0.510176,-0.81285,7.25418,-0.460016,0.828094,8.07838,-0.876193,0.869736,7.8666,-0.735697,1.02029,7.97131,-0.598804,0.987291,8.16005,-0.729402,0.506037,7.97933,-0.891732,0.555768,7.73631,-0.791342,0.125763,7.8621,-0.785117,0.217269,7.62049,-0.761238,-0.214039,7.7468,-0.769206,-0.122013,7.50534,-0.687385,-0.576891,7.60804,-0.792883,-0.483288,7.36705,-0.709315,-0.829049,7.24781,-0.455338,-0.902413,7.50396,-0.502548,-0.00149369,7.12352,-0.669808,0.00257322,6.86799,-0.759762,0.630834,7.12862,-0.543915,0.635149,6.87205,-0.586496,-0.69347,6.84615,-0.547242,-0.697537,7.10167,-0.506357,0.31467,7.12607,-0.64413,0.318861,6.87002,-0.711233,-0.377977,6.85605,-0.715733,-0.382044,7.11157,-0.627503,-1.07567,8.24793,-0.746741,-1.26486,8.41599,-0.644328,-0.932359,8.52427,-0.96859,-1.11276,8.70169,-0.87151,-0.929247,8.95635,-0.84102,-0.74885,8.77894,-0.937249,0.763104,8.7652,-0.995331,0.943501,8.94262,-0.899102,1.11506,8.69738,-0.881548,0.934661,8.51996,-0.978628,1.27156,8.41397,-0.625966,1.08236,8.24591,-0.728379,1.16576,8.60215,-0.839401,0.982431,8.42785,-0.938258,-0.978103,8.43606,-0.935005,-1.16131,8.6105,-0.835039,0.907404,6.86516,-0.385721,0.903089,7.12172,-0.342586,-0.952604,7.09753,-0.286948,-0.948537,6.84201,-0.329097,0.947527,7.50956,-0.396987,0.895842,7.2572,-0.369625,0.471442,7.40314,-0.688373,0.554161,7.64127,-0.755139,0.121909,7.51322,-0.710892,0.214123,7.75469,-0.792719,-0.219324,7.62611,-0.777965,-0.12778,7.86776,-0.801851,-0.553271,7.74286,-0.827711,-0.502592,7.98622,-0.862738,-0.958089,8.18814,-0.728635,-0.99826,7.97976,-0.580278,-0.853484,7.87548,-0.712097,-0.811997,8.08727,-0.852488,0.877485,7.26524,-0.3763,0.92959,7.51722,-0.409325,-0.875017,7.51935,-0.484588,-0.801318,7.26366,-0.433994,0.81301,8.08933,-0.852687,0.854419,7.87749,-0.712313,0.998254,7.97974,-0.58028,0.965253,8.16848,-0.710878,0.503247,7.99001,-0.863836,0.553852,7.74662,-0.763236,0.127902,7.86966,-0.756164,0.21943,7.62807,-0.732291,-0.215754,7.75428,-0.740206,-0.123699,7.51282,-0.658382,-0.571725,7.6183,-0.76517,-0.477223,7.37746,-0.681844,-0.82102,7.25543,-0.427457,-0.894384,7.51159,-0.474667,-0.00138016,7.11418,-0.6413,0.00270323,6.85865,-0.731255,0.616788,7.1234,-0.517925,0.621382,6.86677,-0.56037,-0.677578,6.84107,-0.522309,-0.681295,7.09675,-0.481619,0.307999,7.11861,-0.61585,0.312394,6.86248,-0.682928,-0.370175,6.84772,-0.687989,-0.373824,7.1034,-0.599834,-1.05578,8.25757,-0.726455,-1.24497,8.42563,-0.624042,-0.920388,8.52146,-0.941226,-1.10169,8.69784,-0.843894,-0.922423,8.94804,-0.813016,-0.742026,8.77062,-0.909245,0.753134,8.76017,-0.967488,0.933531,8.93759,-0.871259,1.10208,8.69585,-0.854545,0.921176,8.51906,-0.951845,1.25125,8.42473,-0.606686,1.06205,8.25667,-0.709099,1.14725,8.60895,-0.816791,0.963906,8.43468,-0.915672,-0.960035,8.44197,-0.911796,-1.14334,8.61622,-0.811711,0.889696,6.86088,-0.361887,0.88538,7.11744,-0.318753,-0.933165,7.09417,-0.264348,-0.929098,6.83865,-0.306496,5.18959,9.35857,-0.102872,5.13196,8.67238,-0.168157,5.18907,9.36588,-0.115429,5.17987,9.26979,0.0354708,5.19694,9.36792,-0.380305,5.16548,9.15789,0.105614,5.16123,9.16407,-0.612637,5.12678,8.86793,-0.583085,5.12154,8.70727,-0.409684,5.16946,9.00376,0.154364,4.96705,8.87567,0.111074,5.05708,8.9247,0.116063,4.8426,9.13069,0.127892,4.74615,9.08004,0.129151,5.0577,8.78045,0.0279813,5.13568,8.82825,0.0379982,4.87903,8.97089,0.155275,4.97703,9.02115,0.155726,5.20922,8.72843,-0.135429,5.08716,8.71381,-0.156249,5.12652,8.73566,-0.281169,5.21304,8.75202,-0.271068,4.94294,9.12019,0.0826645,5.03123,9.06974,0.0825777,4.793,8.69017,0.0247716,4.68174,8.71687,0.0577376,4.92014,8.89338,0.103624,4.82593,8.94347,0.137803,4.57997,8.62508,-0.132276,4.6918,8.63047,-0.158464,4.57643,8.66027,-0.279749,4.45999,8.67663,-0.269648,4.7408,8.67073,-0.271068,4.62647,8.65437,-0.281169,4.57036,8.63924,-0.15502,4.72527,8.64714,-0.135429,4.45273,8.92293,0.134624,4.35668,8.87284,0.133019,4.6287,8.74695,0.0219037,4.53028,8.69916,0.012151,4.14358,9.08807,0.132303,4.23756,9.13853,0.13239,3.95027,8.6535,-0.32502,4.08195,8.65116,-0.322612,4.12279,9.11246,0.038473,4.00368,9.11124,0.0257229,4.00751,8.6549,-0.00387725,4.01114,8.84191,0.109665,4.13577,8.66689,-0.00453606,4.13152,8.85519,0.115487,4.02086,9.06641,0.0277219,4.14051,9.06698,0.0390865,4.14769,9.05713,0.136526,4.02699,9.05656,0.124554,4.13103,8.84166,0.137565,4.11899,8.55616,0.0512316,4.0088,8.82819,0.131661,3.99064,8.55402,0.051442,4.0094,9.1013,0.118953,4.12912,9.10251,0.132024,4.12744,8.73499,0.0697622,4.00131,8.72695,0.0668861,3.97255,8.76966,0.119836,4.15719,8.77253,0.12758,3.97323,8.82479,0.141118,4.15413,8.83292,0.150402,4.15971,8.80654,0.0151694,4.15596,8.87006,0.0268802,3.97566,8.7989,0.0212496,3.97568,8.8572,0.0314823,3.97368,8.82822,0.129619,3.97304,8.77286,0.109135,4.15782,8.77703,0.112764,4.15458,8.83768,0.134624,3.97415,8.6455,-0.224151,4.10457,8.65411,-0.222644,4.1357,8.97038,0.155297,4.0149,8.96648,0.145355,4.14072,8.65155,0.0457747,4.01275,8.64628,0.0448837,4.78039,9.40658,-0.0758903,4.76216,8.60106,-0.158204,4.78223,9.41594,-0.0897542,4.78764,9.3185,0.0524774,4.80853,9.45278,-0.399189,4.80446,9.19037,0.120447,4.78208,9.20776,-0.664155,4.74916,8.84774,-0.630498,4.73625,8.63754,-0.432423,4.82671,9.00896,0.193148,5.81292,8.9698,0.231106,5.85223,8.89834,0.193407,6.09238,8.86075,0.441783,6.05889,8.91491,0.479462,6.13263,9.06693,0.434664,6.1976,9.05422,0.378486,5.97695,9.12428,0.12241,5.90066,9.13654,0.188919,4.31381,9.44199,-0.0618918,4.2985,9.44424,-0.0635358,4.05855,9.47121,-0.017392,4.51904,9.44486,-0.0581054,5.49535,9.29461,-0.130617,4.27963,9.03584,0.195479,4.12353,8.67239,-0.488393,3.94936,8.97942,-0.793941,3.96388,9.17557,-0.811735,4.27259,9.20613,0.123737,4.2338,9.47144,-0.430466,4.28524,9.33671,0.0495489,4.31738,9.45015,-0.0705113,4.159,8.6346,-0.188733,3.18435,8.94545,-0.802984,3.21318,9.28523,-0.834873,3.83697,9.5561,-0.411871,4.04619,9.50936,-0.0266839,3.90232,8.95371,-0.951788,3.91709,9.17944,-0.972256,4.3553,9.49459,-0.085989,4.29335,9.54822,-0.481011,3.44224,8.74425,-0.601675,3.59093,8.65176,-0.336891,4.19712,8.58747,-0.19124,4.15014,8.58921,-0.556903,5.42449,8.74371,-0.178109,4.52216,8.5898,-0.152909,4.1348,8.63906,-0.191443,4.30552,9.45117,-0.0699893,4.272,9.33513,0.0510349,4.20998,9.46862,-0.431985,4.25321,9.20597,0.121319,3.92268,9.17111,-0.820164,3.90956,8.99009,-0.803735,4.09708,8.67762,-0.490771,4.25988,9.03723,0.188107,4.06171,9.48015,-0.0290835,3.97984,9.33767,0.102296,3.92329,9.21192,0.140946,3.88343,9.06108,0.143446,4.52157,9.45551,-0.0728152,4.53049,9.35201,0.0649886,4.55752,9.50919,-0.411319,4.55611,9.21338,0.134445,4.52887,9.236,-0.69745,4.49537,8.83469,-0.66114,4.49929,8.62569,-0.450121,4.58325,9.01254,0.203868,5.48857,9.28069,-0.361534,5.4981,9.29899,-0.14191,5.48819,9.21409,0.0183646,5.46127,9.12224,0.0913291,5.44745,8.88813,-0.535673,5.42456,8.77699,-0.386944,5.45184,8.99878,0.118106,5.4647,9.12043,-0.561116,5.44332,8.73495,0.100872,5.4565,9.24885,0.103988,5.47256,9.3663,-0.392541,5.47533,9.29927,-0.502092,5.46829,9.39265,-0.175882,5.47086,9.39611,-0.276114,5.4609,9.31769,0.031806,5.46352,9.35818,-0.0476925,5.42713,8.61162,-0.0998135,5.42938,8.67674,-0.00595385,5.43057,8.58601,-0.337064,5.42848,8.58258,-0.239573,5.44278,8.69157,-0.529697,5.43492,8.62755,-0.447478,5.46988,8.82451,-0.641673,5.48026,8.99049,-0.658712,5.49064,9.13993,-0.675752,5.45197,9.13692,0.208964,5.44097,8.9996,0.236854,5.43933,8.84832,0.213619,5.70189,8.81395,0.0898769,5.26142,8.67462,0.147307,5.2978,9.30073,0.147513,5.3165,9.40985,-0.414438,5.31507,9.33484,-0.543873,5.72037,9.23602,-0.384707,5.73113,9.18198,-0.488114,5.71384,9.25262,-0.163536,5.71649,9.25468,-0.268192,5.3125,9.43769,-0.177545,5.31544,9.44164,-0.290299,5.30225,9.35829,0.0489659,5.3071,9.40189,-0.0432082,5.71136,9.1967,0.0395035,5.71064,9.23203,-0.0382047,5.69757,8.75679,-0.103305,5.69943,8.78288,-0.000410627,5.26265,8.54643,-0.0961424,5.27375,8.57597,0.018465,5.26856,8.53709,-0.354748,5.26592,8.5312,-0.242787,5.70042,8.74722,-0.331948,5.69836,8.74489,-0.226228,5.71808,8.80561,-0.513113,5.70528,8.75953,-0.433351,5.28843,8.62652,-0.56972,5.27526,8.57773,-0.471744,5.7576,9.05903,-0.598629,5.74801,8.96286,-0.605562,5.74124,8.89017,-0.59075,5.29574,9.16957,-0.732011,5.29996,9.00274,-0.750165,5.30059,8.79493,-0.723831,5.70433,8.98179,0.205973,5.70898,8.9085,0.179451,5.26641,8.84434,0.276775,5.27168,9.01464,0.300472,5.28855,9.17683,0.273982,5.7149,9.14698,0.102829,5.70846,9.05461,0.174994,6.49213,9.15533,-0.598623,6.63174,9.20955,-0.623172,6.35115,9.24484,-0.568174,6.36484,9.28955,-0.464205,6.62843,9.15688,-0.509625,6.5005,9.17354,-0.490761,6.37074,9.33473,-0.0411153,6.63864,9.1471,-0.0269347,6.51655,9.20652,-0.0405739,6.33858,9.19705,-0.668319,6.38117,9.35441,-0.26453,6.32958,9.2457,0.166441,6.3763,9.33593,-0.352561,6.37937,9.35739,-0.161182,6.35642,9.29934,0.0591969,6.63882,9.13101,-0.255033,6.6254,9.13459,0.148849,6.62114,9.17414,-0.756287,6.65038,9.2252,-0.387692,6.66092,9.23647,-0.126912,6.64802,9.21131,0.0554855,6.50947,9.19346,0.0601968,6.5183,9.22651,-0.364727,6.52363,9.23131,-0.264977,6.52777,9.24857,-0.153468,6.48991,9.14388,0.181109,6.48133,9.11854,-0.699323,5.85292,9.11706,-0.603598,5.84196,9.28774,-0.0520971,5.85306,9.22159,-0.472468,5.84789,9.29808,-0.261897,5.80412,9.18633,0.10529,5.85052,9.28612,-0.368465,5.84551,9.29688,-0.1644,5.83273,9.24755,0.0295016,5.56568,9.31331,0.0178463,5.56798,9.36499,-0.169827,5.57401,9.34965,-0.374259,5.5744,9.25228,0.0650122,5.61725,9.18174,-0.571995,5.58396,9.2997,-0.469839,5.56502,9.34596,-0.0539808,5.57043,9.3669,-0.266562,6.0664,9.10222,-0.630811,6.07967,9.25926,-0.0521186,6.08104,9.18121,-0.482696,6.0857,9.27234,-0.266513,6.04353,9.15957,0.161724,6.08459,9.2439,-0.376418,6.08344,9.27356,-0.1691,6.07326,9.22566,0.0439849,6.22167,9.15742,-0.656728,6.21845,9.15845,0.177487,6.23878,9.24226,-0.0678524,6.23575,9.21565,-0.507124,6.24619,9.25935,-0.286629,6.24214,9.24625,-0.402638,6.24314,9.26177,-0.191188,6.23656,9.21994,0.0338962,6.42794,9.18863,0.0274598,6.4339,9.21064,-0.201778,6.43326,9.18191,-0.421409,6.4124,9.13205,-0.628701,6.41613,9.16458,0.144365,6.42667,9.15868,-0.52689,6.43812,9.2078,-0.302182,6.42868,9.19644,-0.0800807,5.99311,9.30921,0.0445054,6.00352,9.35822,-0.173533,6.0047,9.32788,-0.385671,5.96269,9.24158,0.164982,6.00584,9.35698,-0.273211,6.00106,9.26373,-0.49442,5.99967,9.34359,-0.0538324,5.98609,9.1829,-0.645979,6.2104,8.84002,0.724453,6.21749,8.78246,0.659902,6.43923,8.65151,0.846311,6.43643,8.69617,0.903928,6.5391,8.85896,0.881638,6.57943,8.86248,0.809321,6.36445,8.99023,0.614545,6.31786,8.99066,0.701284,6.11645,9.06197,0.465565,6.18315,9.05462,0.399779,6.39091,8.94457,0.61417,6.33424,8.95295,0.670056,6.25802,8.8133,0.695426,6.28369,8.76673,0.652726,6.05614,8.84742,0.442227,6.02628,8.91009,0.487378,6.87585,9.06778,-0.791544,6.84365,8.99127,-0.807368,7.08247,8.92813,-0.835309,7.10613,8.98433,-0.823686,7.14027,8.9992,-0.695546,7.12795,8.95612,-0.66872,6.89473,9.0189,-0.608766,6.90559,9.08013,-0.649746,6.70099,9.08903,-0.59733,6.70134,9.02357,-0.56182,6.94195,9.00881,-0.62361,6.94632,9.05554,-0.646529,6.9152,9.04583,-0.77593,6.90198,8.98751,-0.792583,6.65575,9.00435,-0.762736,6.67375,9.08375,-0.740065,6.47443,9.1191,-0.696952,6.45314,9.04075,-0.720381,6.69862,9.0133,-0.74851,6.71426,9.07086,-0.731301,6.74476,9.07822,-0.601598,6.73816,9.03156,-0.57908,6.49796,9.05643,-0.518983,6.50077,9.1221,-0.55398,6.58706,9.15406,-0.453753,6.57254,9.08894,-0.481253,6.83646,9.07548,-0.514881,6.84915,9.13488,-0.490829,6.86946,9.1306,-0.356757,6.86242,9.07927,-0.338955,6.59735,9.0856,-0.293673,6.60037,9.14429,-0.317964,6.85562,9.1751,-0.363666,6.85296,9.10481,-0.32911,7.18971,9.0529,-0.393175,7.19611,9.1007,-0.415388,7.17596,9.09254,-0.549306,7.16408,9.03348,-0.568102,6.82671,9.08891,-0.531748,6.84263,9.1734,-0.506579,7.16306,9.12089,-0.569436,7.13837,9.04366,-0.593231,7.43031,8.99038,-0.61034,7.44875,9.04806,-0.59257,7.46923,9.05641,-0.458715,7.45737,9.01007,-0.43566,7.16802,9.06084,-0.374282,7.17827,9.12535,-0.410032,6.6323,9.16951,-0.219275,6.61537,9.09984,-0.24958,6.93433,9.07476,-0.267459,6.94806,9.1344,-0.242888,6.96143,9.12979,-0.107957,6.95154,9.07832,-0.0904558,6.63177,9.09589,-0.0461437,6.63887,9.15893,-0.0722469,6.95379,9.15256,-0.0997597,6.94609,9.0779,-0.0714212,7.25376,9.04465,-0.122943,7.26365,9.09656,-0.140444,7.25028,9.10117,-0.275375,7.23656,9.04093,-0.299946,6.92828,9.08072,-0.292278,6.94666,9.16405,-0.259377,7.24563,9.1381,-0.2868,7.22551,9.05706,-0.31916,7.57112,8.99473,-0.328901,7.58614,9.05106,-0.304734,7.59845,9.04732,-0.169675,7.58716,8.99861,-0.15181,7.24166,9.05538,-0.0981512,7.25134,9.12787,-0.127039,7.19866,9.06718,0.191334,7.18132,9.00008,0.218576,7.48993,8.94429,0.217909,7.50621,8.99221,0.201864,7.51516,8.99511,0.0665205,7.50133,8.93931,0.0346215,7.19972,9.00127,-0.00813474,7.21824,9.07599,0.0325902,6.94976,9.10364,0.0243505,6.93776,9.02612,-0.0222611,7.2448,8.99976,0.0182315,7.25426,9.05746,0.0560114,7.24669,9.05338,0.191409,7.23615,9.00337,0.207469,6.92318,9.02279,0.210435,6.93247,9.09244,0.18321,6.63324,9.14165,0.168271,6.6532,9.07284,0.195496,6.94227,9.03516,0.192953,6.95614,9.08504,0.176893,6.96396,9.0886,0.0414958,6.95455,9.03059,0.00567061,6.65446,9.08003,-0.0432736,6.65123,9.15168,0.00941143,-5.18958,9.35857,-0.102872,-5.13196,8.67238,-0.168157,-5.18907,9.36588,-0.115429,-5.17987,9.26979,0.0354708,-5.19694,9.36792,-0.380305,-5.16548,9.15789,0.105615,-5.16123,9.16407,-0.612637,-5.12678,8.86793,-0.583085,-5.12154,8.70726,-0.409684,-5.16946,9.00376,0.154364,-4.96705,8.87567,0.111074,-5.05708,8.9247,0.116063,-4.8426,9.13069,0.127892,-4.74615,9.08004,0.129151,-5.0577,8.78045,0.0279814,-5.13568,8.82825,0.0379983,-4.87903,8.97089,0.155275,-4.97703,9.02115,0.155726,-5.20922,8.72843,-0.135429,-5.08716,8.71381,-0.156249,-5.12652,8.73566,-0.281169,-5.21304,8.75202,-0.271068,-4.94294,9.12019,0.0826646,-5.03123,9.06973,0.0825777,-4.793,8.69017,0.0247716,-4.68174,8.71687,0.0577377,-4.92014,8.89338,0.103624,-4.82593,8.94347,0.137803,-4.57997,8.62508,-0.132276,-4.6918,8.63046,-0.158464,-4.57643,8.66027,-0.279749,-4.45999,8.67663,-0.269648,-4.7408,8.67073,-0.271068,-4.62647,8.65437,-0.281169,-4.57036,8.63924,-0.15502,-4.72527,8.64714,-0.135429,-4.45273,8.92293,0.134624,-4.35668,8.87284,0.133019,-4.6287,8.74695,0.0219038,-4.53028,8.69915,0.0121511,-4.14358,9.08807,0.132303,-4.23756,9.13853,0.13239,-3.95027,8.6535,-0.32502,-4.08195,8.65116,-0.322612,-4.12279,9.11246,0.0384731,-4.00368,9.11124,0.0257229,-4.00751,8.6549,-0.00387723,-4.01114,8.84191,0.109665,-4.13577,8.66689,-0.00453603,-4.13152,8.85519,0.115487,-4.02086,9.06641,0.027722,-4.14051,9.06698,0.0390866,-4.14769,9.05713,0.136526,-4.02699,9.05656,0.124554,-4.13103,8.84166,0.137565,-4.11899,8.55616,0.0512317,-4.0088,8.82819,0.131661,-3.99064,8.55402,0.051442,-4.0094,9.1013,0.118953,-4.12912,9.10251,0.132024,-4.12744,8.73499,0.0697623,-4.00131,8.72695,0.0668862,-3.97255,8.76966,0.119836,-4.15719,8.77253,0.12758,-3.97323,8.82479,0.141118,-4.15413,8.83292,0.150402,-4.15971,8.80654,0.0151694,-4.15596,8.87006,0.0268803,-3.97566,8.7989,0.0212496,-3.97568,8.8572,0.0314823,-3.97368,8.82822,0.129619,-3.97304,8.77286,0.109135,-4.15781,8.77703,0.112765,-4.15458,8.83768,0.134624,-3.97415,8.6455,-0.224151,-4.10457,8.65411,-0.222644,-4.1357,8.97038,0.155297,-4.0149,8.96648,0.145355,-4.14072,8.65155,0.0457747,-4.01275,8.64628,0.0448838,-4.78039,9.40658,-0.0758903,-4.76216,8.60105,-0.158204,-4.78223,9.41594,-0.0897541,-4.78764,9.3185,0.0524774,-4.80853,9.45278,-0.399189,-4.80445,9.19037,0.120447,-4.78208,9.20776,-0.664155,-4.74916,8.84774,-0.630498,-4.73625,8.63754,-0.432423,-4.82671,9.00896,0.193148,-5.81292,8.9698,0.231106,-5.85224,8.89834,0.193407,-6.09238,8.86075,0.441783,-6.05889,8.91491,0.479462,-6.13263,9.06693,0.434664,-6.1976,9.05422,0.378486,-5.97696,9.12428,0.12241,-5.90066,9.13654,0.188919,-4.31381,9.44199,-0.0618918,-4.2985,9.44424,-0.0635357,-4.05855,9.47121,-0.017392,-4.51904,9.44486,-0.0581053,-5.49535,9.29461,-0.130617,-4.27963,9.03584,0.195479,-4.12353,8.67239,-0.488393,-3.94936,8.97942,-0.793941,-3.96388,9.17557,-0.811735,-4.27259,9.20613,0.123737,-4.2338,9.47144,-0.430466,-4.28524,9.33671,0.049549,-4.31738,9.45015,-0.0705113,-4.159,8.6346,-0.188733,-3.18435,8.94545,-0.802984,-3.21318,9.28523,-0.834873,-3.83697,9.5561,-0.411871,-4.04619,9.50936,-0.0266839,-3.90232,8.95371,-0.951788,-3.91709,9.17944,-0.972256,-4.3553,9.49459,-0.085989,-4.29335,9.54822,-0.481011,-3.44224,8.74425,-0.601675,-3.59093,8.65176,-0.336891,-4.19712,8.58747,-0.19124,-4.15014,8.58921,-0.556903,-5.42449,8.74371,-0.178109,-4.52216,8.5898,-0.152908,-4.1348,8.63906,-0.191443,-4.30552,9.45117,-0.0699892,-4.27199,9.33513,0.0510349,-4.20998,9.46862,-0.431985,-4.25321,9.20597,0.121319,-3.92268,9.17111,-0.820164,-3.90955,8.99009,-0.803735,-4.09708,8.67762,-0.490771,-4.25988,9.03723,0.188107,-4.06171,9.48015,-0.0290835,-3.97984,9.33767,0.102297,-3.92329,9.21192,0.140946,-3.88343,9.06108,0.143446,-4.52157,9.45551,-0.0728152,-4.53049,9.352,0.0649886,-4.55752,9.50919,-0.411319,-4.55611,9.21338,0.134445,-4.52887,9.236,-0.69745,-4.49537,8.83469,-0.66114,-4.49929,8.62569,-0.450121,-4.58325,9.01253,0.203868,-5.48857,9.28069,-0.361534,-5.4981,9.29899,-0.14191,-5.48819,9.21408,0.0183646,-5.46127,9.12223,0.0913291,-5.44745,8.88813,-0.535673,-5.42456,8.77699,-0.386944,-5.45184,8.99878,0.118106,-5.4647,9.12043,-0.561116,-5.44332,8.73495,0.100872,-5.4565,9.24885,0.103988,-5.47256,9.3663,-0.392541,-5.47533,9.29927,-0.502092,-5.46829,9.39265,-0.175882,-5.47086,9.39612,-0.276114,-5.4609,9.31769,0.0318061,-5.46352,9.35818,-0.0476925,-5.42713,8.61162,-0.0998135,-5.42938,8.67674,-0.0059538,-5.43057,8.58601,-0.337064,-5.42848,8.58258,-0.239573,-5.44278,8.69157,-0.529697,-5.43492,8.62755,-0.447478,-5.46988,8.82451,-0.641673,-5.48026,8.99049,-0.658712,-5.49064,9.13993,-0.675752,-5.45197,9.13692,0.208964,-5.44097,8.9996,0.236854,-5.43933,8.84832,0.213619,-5.70189,8.81395,0.089877,-5.26142,8.67462,0.147307,-5.2978,9.30073,0.147513,-5.3165,9.40985,-0.414438,-5.31507,9.33485,-0.543872,-5.72037,9.23602,-0.384707,-5.73113,9.18198,-0.488114,-5.71384,9.25262,-0.163536,-5.71649,9.25468,-0.268192,-5.3125,9.4377,-0.177545,-5.31544,9.44164,-0.290299,-5.30225,9.35829,0.048966,-5.3071,9.40189,-0.0432081,-5.71136,9.19671,0.0395036,-5.71064,9.23203,-0.0382047,-5.69757,8.75679,-0.103305,-5.69943,8.78288,-0.000410574,-5.26265,8.54643,-0.0961423,-5.27375,8.57597,0.0184651,-5.26856,8.53709,-0.354748,-5.26592,8.53121,-0.242787,-5.70042,8.74722,-0.331948,-5.69836,8.74489,-0.226228,-5.71808,8.80561,-0.513113,-5.70528,8.75953,-0.433351,-5.28843,8.62652,-0.56972,-5.27527,8.57773,-0.471744,-5.7576,9.05904,-0.598629,-5.74801,8.96286,-0.605562,-5.74124,8.89017,-0.59075,-5.29574,9.16957,-0.732011,-5.29996,9.00274,-0.750165,-5.30059,8.79493,-0.723831,-5.70433,8.98179,0.205973,-5.70898,8.9085,0.179451,-5.26641,8.84434,0.276775,-5.27168,9.01464,0.300472,-5.28855,9.17684,0.273982,-5.7149,9.14698,0.10283,-5.70846,9.05461,0.174994,-6.49213,9.15533,-0.598624,-6.63174,9.20955,-0.623172,-6.35115,9.24484,-0.568174,-6.36484,9.28955,-0.464205,-6.62843,9.15688,-0.509625,-6.5005,9.17354,-0.490761,-6.37074,9.33473,-0.0411153,-6.63864,9.1471,-0.0269347,-6.51655,9.20652,-0.0405739,-6.33858,9.19705,-0.668319,-6.38117,9.35441,-0.26453,-6.32958,9.2457,0.166441,-6.3763,9.33593,-0.352561,-6.37937,9.35739,-0.161182,-6.35642,9.29934,0.0591969,-6.63882,9.13101,-0.255033,-6.6254,9.1346,0.148849,-6.62114,9.17414,-0.756287,-6.65038,9.2252,-0.387692,-6.66092,9.23647,-0.126912,-6.64802,9.21131,0.0554855,-6.50947,9.19346,0.0601969,-6.5183,9.22651,-0.364727,-6.52363,9.23132,-0.264977,-6.52777,9.24857,-0.153468,-6.48991,9.14388,0.181109,-6.48133,9.11854,-0.699323,-5.85292,9.11706,-0.603598,-5.84196,9.28774,-0.0520971,-5.85306,9.22159,-0.472468,-5.84788,9.29808,-0.261897,-5.80412,9.18633,0.10529,-5.85051,9.28612,-0.368465,-5.84551,9.29688,-0.1644,-5.83273,9.24755,0.0295016,-5.56568,9.31331,0.0178462,-5.56797,9.36499,-0.169827,-5.57401,9.34965,-0.374259,-5.5744,9.25228,0.0650121,-5.61725,9.18174,-0.571995,-5.58396,9.2997,-0.469839,-5.56502,9.34596,-0.0539808,-5.57043,9.3669,-0.266562,-6.0664,9.10222,-0.630811,-6.07967,9.25926,-0.0521187,-6.08104,9.18121,-0.482696,-6.0857,9.27234,-0.266513,-6.04353,9.15957,0.161724,-6.08459,9.2439,-0.376418,-6.08344,9.27356,-0.1691,-6.07326,9.22566,0.0439848,-6.22167,9.15742,-0.656728,-6.21845,9.15845,0.177487,-6.23878,9.24226,-0.0678524,-6.23575,9.21565,-0.507124,-6.24619,9.25935,-0.286629,-6.24214,9.24625,-0.402638,-6.24314,9.26177,-0.191188,-6.23656,9.21994,0.0338962,-6.42794,9.18863,0.0274598,-6.4339,9.21064,-0.201778,-6.43326,9.18191,-0.421409,-6.4124,9.13205,-0.628701,-6.41613,9.16458,0.144365,-6.42667,9.15869,-0.52689,-6.43812,9.2078,-0.302182,-6.42868,9.19644,-0.0800808,-5.99311,9.30921,0.0445054,-6.00352,9.35822,-0.173533,-6.0047,9.32788,-0.385671,-5.96269,9.24158,0.164982,-6.00584,9.35698,-0.273211,-6.00106,9.26373,-0.49442,-5.99966,9.34359,-0.0538325,-5.98609,9.1829,-0.645979,-6.2104,8.84001,0.724453,-6.21749,8.78246,0.659902,-6.43923,8.65151,0.846311,-6.43643,8.69616,0.903927,-6.5391,8.85896,0.881638,-6.57943,8.86248,0.809321,-6.36445,8.99023,0.614545,-6.31786,8.99065,0.701284,-6.11645,9.06197,0.465566,-6.18315,9.05461,0.399779,-6.39091,8.94457,0.61417,-6.33424,8.95295,0.670057,-6.25802,8.81329,0.695426,-6.28369,8.76673,0.652726,-6.05614,8.84742,0.442227,-6.02628,8.91009,0.487378,-6.87585,9.06778,-0.791544,-6.84365,8.99127,-0.807368,-7.08247,8.92813,-0.835309,-7.10613,8.98433,-0.823686,-7.14028,8.9992,-0.695546,-7.12795,8.95612,-0.66872,-6.89473,9.0189,-0.608766,-6.90559,9.08013,-0.649746,-6.70099,9.08903,-0.59733,-6.70134,9.02357,-0.56182,-6.94195,9.00881,-0.62361,-6.94632,9.05554,-0.646529,-6.9152,9.04583,-0.77593,-6.90198,8.98751,-0.792583,-6.65575,9.00436,-0.762736,-6.67375,9.08375,-0.740065,-6.47443,9.1191,-0.696952,-6.45314,9.04075,-0.720381,-6.69862,9.01331,-0.74851,-6.71426,9.07086,-0.731301,-6.74476,9.07822,-0.601598,-6.73816,9.03156,-0.57908,-6.49796,9.05643,-0.518983,-6.50077,9.1221,-0.55398,-6.58706,9.15406,-0.453753,-6.57255,9.08894,-0.481253,-6.83646,9.07548,-0.514881,-6.84915,9.13488,-0.490829,-6.86946,9.1306,-0.356757,-6.86242,9.07927,-0.338955,-6.59735,9.0856,-0.293673,-6.60038,9.14429,-0.317964,-6.85562,9.1751,-0.363666,-6.85296,9.10481,-0.32911,-7.18971,9.0529,-0.393175,-7.19611,9.1007,-0.415388,-7.17596,9.09255,-0.549306,-7.16408,9.03348,-0.568102,-6.82671,9.08891,-0.531748,-6.84263,9.17341,-0.506579,-7.16306,9.12089,-0.569436,-7.13837,9.04366,-0.593231,-7.43031,8.99038,-0.610341,-7.44875,9.04806,-0.59257,-7.46923,9.05641,-0.458715,-7.45737,9.01007,-0.43566,-7.16802,9.06084,-0.374282,-7.17827,9.12535,-0.410032,-6.6323,9.16951,-0.219275,-6.61537,9.09984,-0.24958,-6.93433,9.07476,-0.267459,-6.94806,9.1344,-0.242888,-6.96143,9.12979,-0.107957,-6.95154,9.07832,-0.0904557,-6.63177,9.09589,-0.0461436,-6.63887,9.15893,-0.0722468,-6.95379,9.15256,-0.0997596,-6.94609,9.0779,-0.0714212,-7.25376,9.04465,-0.122943,-7.26365,9.09656,-0.140444,-7.25028,9.10117,-0.275375,-7.23656,9.04093,-0.299946,-6.92828,9.08071,-0.292278,-6.94666,9.16405,-0.259377,-7.24563,9.1381,-0.2868,-7.22551,9.05706,-0.31916,-7.57112,8.99473,-0.3289,-7.58614,9.05106,-0.304733,-7.59845,9.04732,-0.169674,-7.58716,8.99861,-0.151809,-7.24166,9.05538,-0.098151,-7.25134,9.12788,-0.127039,-7.19866,9.06718,0.191334,-7.18132,9.00008,0.218576,-7.48993,8.94429,0.217909,-7.50621,8.99221,0.201864,-7.51516,8.99511,0.0665206,-7.50133,8.93931,0.0346216,-7.19972,9.00127,-0.00813469,-7.21825,9.07599,0.0325903,-6.94976,9.10364,0.0243506,-6.93776,9.02612,-0.0222611,-7.2448,8.99976,0.0182316,-7.25426,9.05746,0.0560114,-7.24669,9.05338,0.191409,-7.23615,9.00337,0.207469,-6.92318,9.02279,0.210435,-6.93248,9.09244,0.18321,-6.63324,9.14165,0.168271,-6.6532,9.07284,0.195496,-6.94227,9.03515,0.192953,-6.95614,9.08504,0.176893,-6.96397,9.0886,0.0414958,-6.95455,9.03059,0.00567066,-6.65446,9.08003,-0.0432736,-6.65123,9.15168,0.00941147,5.18438,9.33327,-0.118125,5.12575,8.70139,-0.163683,5.18314,9.33758,-0.123425,5.17566,9.24884,0.0144121,5.19023,9.34052,-0.370095,5.16241,9.14532,0.0785516,5.15544,9.15377,-0.585062,5.12197,8.88143,-0.556729,5.11577,8.73383,-0.396992,5.16658,8.99469,0.125915,4.96195,8.88746,0.0839641,5.05168,8.9372,0.089335,4.84484,9.12614,0.0983246,4.74839,9.07548,0.0995836,5.05122,8.80182,0.00795356,5.12921,8.8496,0.0179448,4.8788,8.97176,0.125289,4.9755,9.02489,0.126,5.20347,8.75747,-0.140332,5.08139,8.74276,-0.161586,5.12153,8.76494,-0.276889,5.20806,8.7813,-0.266788,4.93634,9.11816,0.0534711,5.02463,9.0677,0.0533843,4.79041,8.71103,0.00336406,4.67958,8.73948,0.0381356,4.91458,8.89865,0.0746189,4.82046,8.94929,0.108884,4.58143,8.65504,-0.132492,4.69255,8.66007,-0.163249,4.57892,8.68936,-0.272867,4.46248,8.70572,-0.262766,4.73774,8.70036,-0.267523,4.62341,8.684,-0.277624,4.56657,8.66817,-0.161994,4.72161,8.67656,-0.14001,4.44983,8.93079,0.105817,4.35475,8.8783,0.103584,4.62407,8.76819,0.00123049,4.52556,8.71904,-0.00981038,4.14383,9.08811,0.102305,4.2378,9.13857,0.102392,3.94954,8.68348,-0.324097,4.08122,8.68114,-0.321689,4.1258,9.11276,0.00862684,4.00669,9.11154,-0.00412329,4.0055,8.68135,-0.0178862,4.01182,8.84621,0.0799824,4.13387,8.69223,-0.0204786,4.13251,8.85724,0.0855738,4.02374,9.06187,-0.00179189,4.14334,9.06121,0.00978235,4.15062,9.05238,0.10705,4.02995,9.05224,0.095015,4.13175,8.85109,0.109096,4.11912,8.55421,0.0212957,4.00929,8.83894,0.103657,3.99078,8.55207,0.0215061,4.01251,9.09922,0.0891886,4.13224,9.10043,0.10226,4.12719,8.74725,0.0423862,4.00106,8.73912,0.039468,3.99529,8.77643,0.101468,4.1361,8.77914,0.107301,3.9942,8.83225,0.121004,4.13404,8.83992,0.129256,4.13779,8.80176,0.0350937,4.13573,8.86507,0.0484681,3.99793,8.7952,0.0409981,3.99588,8.85315,0.053289,4.00366,8.82766,0.130469,4.00303,8.77232,0.109969,4.12786,8.77578,0.111634,4.12463,8.83644,0.133478,3.9727,8.67546,-0.224141,4.10291,8.68406,-0.222897,4.138,8.96827,0.125461,4.01712,8.96511,0.115469,4.14079,8.65495,0.0159688,4.01283,8.64914,0.0150202,4.77612,9.3821,-0.0926917,4.75855,8.63054,-0.154028,4.77727,9.38825,-0.100191,4.78407,9.29849,0.030418,4.80264,9.42487,-0.389886,4.80189,9.17781,0.093326,4.777,9.19761,-0.636387,4.7452,8.86051,-0.603645,4.73251,8.66426,-0.419306,4.82436,8.99846,0.165144,5.83428,8.97207,0.210165,5.87044,8.91745,0.179148,6.11058,8.87986,0.427523,6.0803,8.91848,0.458746,6.13885,9.04079,0.421326,6.19076,9.02507,0.376544,5.97012,9.09513,0.120468,5.90706,9.11051,0.175451,4.31388,9.41983,-0.0821137,4.29479,9.42366,-0.0850431,4.053,9.45149,-0.0393077,4.51752,9.42113,-0.0764027,5.48896,9.26898,-0.144837,4.28285,9.02507,0.167665,4.12632,8.69939,-0.47561,3.9466,8.99261,-0.767142,3.96015,9.16393,-0.784336,4.2753,9.19353,0.096643,4.23468,9.44284,-0.421464,4.28635,9.31796,0.0261537,4.31832,9.42269,-0.08255,4.16317,8.66413,-0.1855,3.18989,8.95704,-0.775878,3.21775,9.27612,-0.806659,3.83683,9.52798,-0.401437,4.04257,9.48404,-0.0423555,3.88774,8.96341,-0.927427,3.90187,9.17252,-0.947354,4.32831,9.48841,-0.0975369,4.26848,9.53579,-0.469736,3.44633,8.76999,-0.586819,3.59542,8.68127,-0.333874,4.16867,8.59464,-0.184963,4.12835,8.60512,-0.54379,5.41756,8.77255,-0.173586,4.52287,8.61957,-0.149262,4.1103,8.65488,-0.184405,4.29698,9.43486,-0.0936793,4.2701,9.31823,0.0263204,4.18523,9.46613,-0.415226,4.25441,9.19518,0.0933516,3.89807,9.17933,-0.805097,3.88445,8.98952,-0.787328,4.07289,8.68377,-0.474124,4.26385,9.02827,0.159754,4.05556,9.46871,-0.0561236,3.97584,9.32371,0.0760503,3.92246,9.2037,0.112105,3.88419,9.05465,0.114154,4.51977,9.42782,-0.0842175,4.5296,9.33252,0.0421958,4.55497,9.48053,-0.402838,4.55543,9.20096,0.107147,4.52473,9.22444,-0.670079,4.49237,8.84848,-0.63467,4.49917,8.65278,-0.437229,4.58243,9.00189,0.175833,5.48088,9.25372,-0.350867,5.49077,9.27046,-0.1476,5.48312,9.19252,-0.00186827,5.45778,9.10972,0.06429,5.44213,8.90174,-0.509476,5.41822,8.80357,-0.374549,5.44877,8.991,0.0892952,5.45815,9.10996,-0.533777,5.43307,8.75737,0.0837704,5.44659,9.22828,0.084529,5.46128,9.3403,-0.382712,5.46481,9.27633,-0.485869,5.45699,9.36515,-0.179924,5.45922,9.36857,-0.273719,5.45106,9.29373,0.0166645,5.45308,9.33178,-0.0574047,5.41441,8.63772,-0.10737,5.41711,8.70129,-0.018084,5.41852,8.61317,-0.332913,5.41622,8.6099,-0.241345,5.43122,8.71338,-0.512657,5.42306,8.65293,-0.43674,5.45879,8.83716,-0.616833,5.4709,8.99291,-0.630313,5.48012,9.12855,-0.650065,5.44228,9.12389,0.18374,5.433,8.99938,0.207934,5.43097,8.86173,0.188118,5.69361,8.83742,0.0731222,5.24942,8.6952,0.129077,5.28675,9.28003,0.128825,5.30749,9.38342,-0.403481,5.30589,9.31197,-0.526775,5.70695,9.21091,-0.375238,5.71945,9.15986,-0.471562,5.6995,9.22653,-0.167228,5.70179,9.22861,-0.266146,5.30429,9.40919,-0.182022,5.30681,9.41307,-0.287261,5.29336,9.33399,0.0337695,5.29916,9.37489,-0.0536016,5.70098,9.17367,0.0233303,5.69784,9.20658,-0.0476212,5.68438,8.78251,-0.111329,5.68904,8.80866,-0.0116793,5.25083,8.57302,-0.103444,5.26001,8.5996,0.00608579,5.25927,8.56513,-0.349503,5.25644,8.55962,-0.24449,5.68556,8.77308,-0.328677,5.68329,8.77075,-0.228171,5.70799,8.82714,-0.494826,5.69244,8.78439,-0.42252,5.27615,8.64836,-0.553225,5.26473,8.60339,-0.460305,5.74806,9.05004,-0.571645,5.74167,8.96591,-0.576399,5.73365,8.90154,-0.564046,5.2848,9.15833,-0.706438,5.2878,9.00444,-0.722791,5.28689,8.80646,-0.699761,5.69968,8.98141,0.176339,5.70327,8.92188,0.153211,5.25597,8.85568,0.251039,5.26083,9.01477,0.272503,5.27639,9.16518,0.24916,5.70629,9.12709,0.0820848,5.70184,9.04165,0.148763,6.48896,9.12622,-0.592101,6.64043,9.1809,-0.621268,6.33673,9.22052,-0.55813,6.34853,9.26658,-0.453883,6.63041,9.12722,-0.505571,6.49275,9.14564,-0.482916,6.35277,9.31195,-0.0487547,6.63356,9.11779,-0.0308505,6.50461,9.17984,-0.0473252,6.32648,9.17228,-0.65648,6.36246,9.33116,-0.261418,6.31516,9.22295,0.153219,6.35839,9.31298,-0.345331,6.36073,9.33403,-0.163759,6.34007,9.27636,0.0489536,6.62578,9.1041,-0.252648,6.62412,9.10888,0.133444,6.63356,9.14775,-0.749273,6.64477,9.19584,-0.385183,6.6514,9.20819,-0.12997,6.6446,9.18169,0.0521739,6.49925,9.1665,0.0518928,6.50557,9.19979,-0.359899,6.50763,9.20605,-0.262618,6.51269,9.22267,-0.154977,6.48137,9.11911,0.166492,6.48319,9.09032,-0.6893,5.84986,9.09336,-0.585462,5.83738,9.25919,-0.0601054,5.84874,9.19711,-0.455673,5.84253,9.26864,-0.259806,5.80239,9.16321,0.0862437,5.84496,9.25832,-0.358657,5.84047,9.26737,-0.166335,5.82989,9.22218,0.0137458,5.5609,9.28883,0.00118502,5.56109,9.33588,-0.172021,5.56703,9.32181,-0.365512,5.57109,9.23141,0.0437218,5.61245,9.15998,-0.551916,5.57795,9.27546,-0.453218,5.55878,9.31781,-0.0622446,5.56333,9.33779,-0.26505,6.06468,9.07723,-0.614298,6.07673,9.23034,-0.0595383,6.07825,9.15599,-0.466697,6.0821,9.24269,-0.263754,6.04343,9.13452,0.145215,6.08053,9.21623,-0.365579,6.08027,9.24377,-0.170664,6.07189,9.1992,0.0299119,6.21687,9.13013,-0.645231,6.21245,9.13163,0.165464,6.22968,9.21416,-0.0730857,6.22962,9.18828,-0.496486,6.23688,9.23097,-0.283853,6.23392,9.21843,-0.394996,6.23353,9.23342,-0.193142,6.2294,9.19226,0.0248065,6.4234,9.15979,0.0205913,6.42622,9.18169,-0.203537,6.42514,9.15376,-0.414978,6.40623,9.10445,-0.618689,6.41333,9.1363,0.134756,6.41958,9.13092,-0.517999,6.43014,9.17903,-0.299259,6.42182,9.16755,-0.084339,5.98327,9.28313,0.0334181,5.99208,9.33057,-0.175654,5.99613,9.3004,-0.377222,5.95406,9.21642,0.151097,5.99511,9.32909,-0.270596,5.99591,9.23692,-0.481964,5.98837,9.31649,-0.0600005,5.98252,9.15599,-0.633209,6.23036,8.84339,0.702314,6.23848,8.79971,0.647172,6.46022,8.66876,0.833581,6.45621,8.69892,0.881539,6.54115,8.83614,0.862266,6.56871,8.8352,0.802928,6.35373,8.96296,0.608152,6.31814,8.96666,0.683284,6.12036,9.03769,0.448388,6.17413,9.02654,0.394262,6.38189,8.9165,0.608654,6.33798,8.92856,0.653001,6.27875,8.81827,0.674316,6.30263,8.78638,0.640271,6.07508,8.86707,0.429772,6.04685,8.91382,0.465872,6.87144,9.04686,-0.770505,6.84528,8.98455,-0.778178,7.08411,8.92141,-0.806119,7.10138,8.96275,-0.803396,7.12893,8.97401,-0.707226,7.1181,8.94225,-0.693429,6.88489,9.00503,-0.633475,6.89424,9.05495,-0.661461,6.69433,9.06332,-0.611286,6.69411,9.01033,-0.587747,6.93471,8.99557,-0.649537,6.93966,9.02981,-0.660451,6.91443,9.02209,-0.757603,6.90483,8.97871,-0.764045,6.6586,8.99556,-0.734199,6.67319,9.06065,-0.72093,6.4727,9.0959,-0.678004,6.45538,9.03162,-0.691892,6.70086,9.00418,-0.720022,6.7123,9.04704,-0.713167,6.73708,9.05292,-0.615771,6.73055,9.01884,-0.605163,6.49035,9.04371,-0.545066,6.49309,9.09682,-0.568187,6.58764,9.12874,-0.437678,6.57548,9.07698,-0.4539,6.83939,9.06351,-0.487527,6.84961,9.10911,-0.475478,6.86545,9.10609,-0.373587,6.85766,9.06907,-0.366763,6.59259,9.07539,-0.32148,6.59625,9.1206,-0.335906,6.84766,9.15015,-0.378299,6.84614,9.09258,-0.355641,7.18289,9.04067,-0.419706,7.18814,9.07585,-0.430185,7.17304,9.06942,-0.530414,7.16561,9.02444,-0.53954,6.82824,9.07986,-0.503186,6.83941,9.14955,-0.488679,7.15897,9.09797,-0.550514,7.13843,9.03481,-0.564567,7.43037,8.98153,-0.581676,7.44448,9.02464,-0.574319,7.46061,9.03121,-0.47252,7.44983,8.99766,-0.461906,7.16048,9.04842,-0.400528,7.16963,9.1008,-0.424944,6.63085,9.14437,-0.20298,6.61605,9.08799,-0.222029,6.93501,9.0629,-0.239908,6.94649,9.10866,-0.227564,6.95706,9.10537,-0.124827,6.94733,9.0683,-0.118416,6.62756,9.08587,-0.0741038,6.63444,9.1355,-0.0904555,6.94696,9.12941,-0.117566,6.94056,9.06854,-0.0993823,7.24824,9.03529,-0.150904,7.25682,9.07293,-0.157619,7.2462,9.07619,-0.259275,7.23579,9.02993,-0.272045,6.92751,9.06972,-0.264377,6.94262,9.13925,-0.242989,7.24042,9.11345,-0.270523,7.22421,9.04594,-0.291328,7.56982,8.98361,-0.301069,7.58093,9.02638,-0.288501,7.59065,9.02379,-0.186574,7.58137,8.9889,-0.179595,7.23587,9.04567,-0.125936,7.24357,9.10468,-0.144407,7.19333,9.04406,0.172986,7.17962,8.98997,0.190383,7.48824,8.93417,0.189716,7.5007,8.96845,0.184403,7.50694,8.9699,0.0805496,7.49486,8.9263,0.0608714,7.19326,8.98827,0.0181151,7.21005,9.05114,0.0472638,6.94464,9.07765,0.0384208,6.93296,9.01099,0.00319681,7.24,8.98463,0.0436894,7.24916,9.03099,0.069178,7.24383,9.0292,0.173883,7.23544,8.99327,0.179229,6.92247,9.0127,0.182195,6.92972,9.06891,0.164813,6.6289,9.11644,0.152591,6.65188,9.06252,0.167361,6.94096,9.02483,0.164818,6.95203,9.06089,0.159576,6.9573,9.0622,0.0540865,6.94833,9.01425,0.0300464,6.64824,9.06369,-0.0188979,6.64458,9.12511,0.0216588,-5.18438,9.33326,-0.118125,-5.12575,8.70139,-0.163683,-5.18314,9.33758,-0.123425,-5.17566,9.24884,0.0144121,-5.19023,9.34052,-0.370095,-5.16241,9.14532,0.0785517,-5.15544,9.15377,-0.585062,-5.12197,8.88143,-0.556729,-5.11577,8.73383,-0.396992,-5.16658,8.99468,0.125915,-4.96195,8.88746,0.0839641,-5.05167,8.9372,0.089335,-4.84484,9.12614,0.0983247,-4.74839,9.07548,0.0995836,-5.05122,8.80182,0.0079536,-5.1292,8.8496,0.0179449,-4.8788,8.97176,0.125289,-4.9755,9.02489,0.126,-5.20347,8.75746,-0.140332,-5.08139,8.74276,-0.161586,-5.12153,8.76493,-0.276889,-5.20806,8.78129,-0.266788,-4.93634,9.11816,0.0534712,-5.02463,9.0677,0.0533843,-4.79041,8.71103,0.00336409,-4.67958,8.73948,0.0381356,-4.91458,8.89865,0.0746189,-4.82046,8.94929,0.108884,-4.58143,8.65504,-0.132492,-4.69255,8.66007,-0.163249,-4.57892,8.68936,-0.272867,-4.46248,8.70572,-0.262766,-4.73774,8.70036,-0.267523,-4.62341,8.684,-0.277624,-4.56657,8.66817,-0.161994,-4.72161,8.67656,-0.14001,-4.44983,8.93079,0.105818,-4.35475,8.8783,0.103584,-4.62407,8.76819,0.00123052,-4.52556,8.71904,-0.00981034,-4.14383,9.08811,0.102305,-4.2378,9.13857,0.102392,-3.94954,8.68348,-0.324097,-4.08122,8.68114,-0.321689,-4.1258,9.11276,0.00862687,-4.00669,9.11154,-0.00412326,-4.0055,8.68135,-0.0178861,-4.01182,8.84621,0.0799824,-4.13387,8.69223,-0.0204786,-4.13251,8.85724,0.0855739,-4.02374,9.06187,-0.00179186,-4.14334,9.06121,0.00978238,-4.15062,9.05238,0.10705,-4.02995,9.05224,0.0950151,-4.13175,8.85109,0.109096,-4.11912,8.55421,0.0212958,-4.00929,8.83894,0.103657,-3.99078,8.55207,0.0215061,-4.01251,9.09922,0.0891887,-4.13224,9.10043,0.10226,-4.12719,8.74725,0.0423862,-4.00106,8.73912,0.039468,-3.99529,8.77643,0.101468,-4.1361,8.77914,0.107301,-3.9942,8.83225,0.121004,-4.13404,8.83992,0.129256,-4.13779,8.80176,0.0350937,-4.13573,8.86507,0.0484681,-3.99793,8.7952,0.0409981,-3.99588,8.85315,0.053289,-4.00366,8.82766,0.130469,-4.00303,8.77232,0.109969,-4.12786,8.77578,0.111634,-4.12463,8.83644,0.133478,-3.9727,8.67546,-0.224141,-4.10291,8.68406,-0.222897,-4.138,8.96827,0.125461,-4.01712,8.96511,0.115469,-4.14079,8.65495,0.0159688,-4.01283,8.64914,0.0150202,-4.77612,9.38209,-0.0926916,-4.75855,8.63054,-0.154028,-4.77727,9.38825,-0.100191,-4.78407,9.29849,0.030418,-4.80264,9.42487,-0.389886,-4.80189,9.1778,0.093326,-4.777,9.19761,-0.636387,-4.7452,8.86051,-0.603645,-4.73251,8.66426,-0.419306,-4.82436,8.99846,0.165144,-5.83428,8.97207,0.210165,-5.87044,8.91745,0.179148,-6.11059,8.87986,0.427523,-6.0803,8.91848,0.458746,-6.13885,9.04079,0.421326,-6.19076,9.02507,0.376544,-5.97012,9.09513,0.120468,-5.90706,9.11051,0.175451,-4.31388,9.41983,-0.0821136,-4.29479,9.42366,-0.085043,-4.053,9.45149,-0.0393077,-4.51752,9.42113,-0.0764027,-5.48896,9.26898,-0.144837,-4.28285,9.02507,0.167665,-4.12632,8.69939,-0.47561,-3.9466,8.99261,-0.767142,-3.96015,9.16393,-0.784336,-4.2753,9.19353,0.096643,-4.23468,9.44284,-0.421464,-4.28635,9.31796,0.0261538,-4.31832,9.42269,-0.0825499,-4.16317,8.66413,-0.1855,-3.18989,8.95704,-0.775878,-3.21775,9.27612,-0.806659,-3.83683,9.52798,-0.401437,-4.04257,9.48404,-0.0423555,-3.88774,8.96341,-0.927427,-3.90187,9.17252,-0.947354,-4.32831,9.48841,-0.0975369,-4.26848,9.53579,-0.469736,-3.44633,8.76999,-0.586819,-3.59542,8.68127,-0.333874,-4.16867,8.59464,-0.184963,-4.12835,8.60512,-0.54379,-5.41756,8.77255,-0.173586,-4.52287,8.61957,-0.149262,-4.1103,8.65488,-0.184405,-4.29698,9.43486,-0.0936792,-4.2701,9.31823,0.0263204,-4.18523,9.46613,-0.415226,-4.25441,9.19518,0.0933517,-3.89807,9.17933,-0.805097,-3.88445,8.98952,-0.787328,-4.07289,8.68377,-0.474124,-4.26385,9.02827,0.159754,-4.05556,9.46871,-0.0561235,-3.97584,9.32371,0.0760503,-3.92246,9.2037,0.112105,-3.88419,9.05465,0.114154,-4.51977,9.42782,-0.0842175,-4.5296,9.33252,0.0421958,-4.55497,9.48053,-0.402838,-4.55543,9.20096,0.107147,-4.52473,9.22444,-0.670079,-4.49237,8.84848,-0.63467,-4.49917,8.65278,-0.437229,-4.58243,9.00189,0.175833,-5.48088,9.25372,-0.350867,-5.49077,9.27046,-0.1476,-5.48312,9.19252,-0.00186821,-5.45778,9.10972,0.06429,-5.44213,8.90174,-0.509476,-5.41822,8.80357,-0.374549,-5.44877,8.991,0.0892953,-5.45815,9.10996,-0.533777,-5.43307,8.75737,0.0837705,-5.44659,9.22828,0.084529,-5.46128,9.3403,-0.382712,-5.46481,9.27633,-0.485869,-5.45699,9.36515,-0.179924,-5.45922,9.36857,-0.273718,-5.45106,9.29373,0.0166646,-5.45308,9.33178,-0.0574047,-5.41441,8.63772,-0.10737,-5.41711,8.70129,-0.018084,-5.41852,8.61317,-0.332913,-5.41622,8.6099,-0.241345,-5.43122,8.71338,-0.512657,-5.42306,8.65293,-0.43674,-5.45879,8.83716,-0.616833,-5.4709,8.99291,-0.630313,-5.48012,9.12855,-0.650065,-5.44228,9.12389,0.18374,-5.433,8.99938,0.207934,-5.43097,8.86173,0.188118,-5.69361,8.83742,0.0731223,-5.24942,8.69521,0.129077,-5.28675,9.28003,0.128825,-5.30749,9.38342,-0.403481,-5.30589,9.31197,-0.526774,-5.70695,9.21091,-0.375238,-5.71945,9.15986,-0.471562,-5.6995,9.22653,-0.167228,-5.70179,9.22861,-0.266146,-5.30429,9.40919,-0.182022,-5.30681,9.41307,-0.287261,-5.29336,9.334,0.0337696,-5.29916,9.3749,-0.0536015,-5.70098,9.17367,0.0233303,-5.69784,9.20658,-0.0476211,-5.68438,8.78251,-0.111329,-5.68904,8.80866,-0.0116792,-5.25083,8.57302,-0.103444,-5.26001,8.5996,0.00608584,-5.25928,8.56513,-0.349503,-5.25644,8.55962,-0.24449,-5.68556,8.77308,-0.328677,-5.68329,8.77075,-0.228171,-5.70799,8.82714,-0.494826,-5.69244,8.78439,-0.42252,-5.27615,8.64836,-0.553225,-5.26473,8.60339,-0.460305,-5.74806,9.05004,-0.571645,-5.74167,8.96591,-0.576398,-5.73365,8.90154,-0.564046,-5.2848,9.15833,-0.706438,-5.2878,9.00444,-0.722791,-5.28689,8.80647,-0.699761,-5.69968,8.98142,0.176339,-5.70327,8.92188,0.153211,-5.25597,8.85568,0.251039,-5.26083,9.01477,0.272503,-5.27639,9.16518,0.24916,-5.70629,9.12709,0.0820849,-5.70184,9.04165,0.148763,-6.48896,9.12623,-0.592101,-6.64043,9.1809,-0.621268,-6.33673,9.22052,-0.558131,-6.34853,9.26658,-0.453883,-6.63041,9.12722,-0.505571,-6.49275,9.14564,-0.482916,-6.35277,9.31195,-0.0487547,-6.63356,9.1178,-0.0308505,-6.50461,9.17984,-0.0473252,-6.32648,9.17228,-0.65648,-6.36246,9.33117,-0.261418,-6.31516,9.22295,0.153219,-6.35839,9.31298,-0.345331,-6.36073,9.33403,-0.163759,-6.34007,9.27637,0.0489536,-6.62578,9.1041,-0.252648,-6.62412,9.10888,0.133444,-6.63356,9.14775,-0.749273,-6.64477,9.19584,-0.385183,-6.6514,9.20819,-0.12997,-6.6446,9.18169,0.052174,-6.49925,9.1665,0.0518928,-6.50557,9.19979,-0.359899,-6.50763,9.20605,-0.262618,-6.51269,9.22267,-0.154977,-6.48137,9.11911,0.166492,-6.48319,9.09032,-0.6893,-5.84986,9.09336,-0.585462,-5.83738,9.25919,-0.0601055,-5.84874,9.19711,-0.455673,-5.84253,9.26864,-0.259806,-5.80239,9.16321,0.0862436,-5.84496,9.25832,-0.358658,-5.84047,9.26737,-0.166335,-5.82988,9.22218,0.0137458,-5.5609,9.28883,0.00118495,-5.56109,9.33588,-0.172021,-5.56703,9.32181,-0.365512,-5.57109,9.23141,0.0437218,-5.61245,9.15998,-0.551916,-5.57795,9.27546,-0.453218,-5.55878,9.31781,-0.0622446,-5.56333,9.33779,-0.26505,-6.06468,9.07723,-0.614298,-6.07673,9.23034,-0.0595383,-6.07825,9.15599,-0.466697,-6.0821,9.24269,-0.263754,-6.04343,9.13452,0.145215,-6.08053,9.21623,-0.365579,-6.08027,9.24377,-0.170665,-6.07189,9.1992,0.0299118,-6.21687,9.13013,-0.645231,-6.21245,9.13163,0.165464,-6.22968,9.21416,-0.0730857,-6.22962,9.18828,-0.496486,-6.23688,9.23097,-0.283853,-6.23392,9.21843,-0.394996,-6.23353,9.23342,-0.193142,-6.2294,9.19226,0.0248065,-6.4234,9.15979,0.0205913,-6.42622,9.18169,-0.203537,-6.42514,9.15376,-0.414978,-6.40623,9.10445,-0.618689,-6.41333,9.1363,0.134756,-6.41958,9.13093,-0.517999,-6.43014,9.17904,-0.299259,-6.42182,9.16755,-0.084339,-5.98327,9.28313,0.0334181,-5.99208,9.33057,-0.175654,-5.99613,9.3004,-0.377222,-5.95406,9.21643,0.151097,-5.9951,9.32909,-0.270596,-5.99591,9.23693,-0.481964,-5.98837,9.3165,-0.0600006,-5.98252,9.15599,-0.633209,-6.23036,8.84339,0.702313,-6.23848,8.79971,0.647172,-6.46022,8.66876,0.833581,-6.45621,8.69892,0.881539,-6.54115,8.83614,0.862265,-6.56871,8.8352,0.802927,-6.35373,8.96296,0.608152,-6.31814,8.96666,0.683284,-6.12036,9.03768,0.448389,-6.17413,9.02654,0.394263,-6.38189,8.91649,0.608654,-6.33798,8.92855,0.653001,-6.27875,8.81827,0.674316,-6.30263,8.78638,0.640271,-6.07508,8.86707,0.429772,-6.04685,8.91382,0.465872,-6.87144,9.04686,-0.770505,-6.84528,8.98455,-0.778178,-7.08411,8.92141,-0.806119,-7.10138,8.96275,-0.803396,-7.12893,8.97401,-0.707226,-7.1181,8.94225,-0.693429,-6.88489,9.00503,-0.633475,-6.89424,9.05495,-0.661461,-6.69433,9.06332,-0.611286,-6.69411,9.01033,-0.587746,-6.93471,8.99557,-0.649536,-6.93966,9.02981,-0.660451,-6.91443,9.02209,-0.757603,-6.90483,8.97871,-0.764045,-6.6586,8.99556,-0.734199,-6.67319,9.06065,-0.72093,-6.47271,9.09591,-0.678004,-6.45538,9.03162,-0.691892,-6.70086,9.00418,-0.720022,-6.7123,9.04704,-0.713167,-6.73708,9.05292,-0.615771,-6.73055,9.01885,-0.605163,-6.49035,9.04371,-0.545066,-6.49309,9.09682,-0.568187,-6.58764,9.12874,-0.437678,-6.57548,9.07698,-0.4539,-6.83939,9.06351,-0.487527,-6.84961,9.10911,-0.475478,-6.86545,9.10609,-0.373587,-6.85766,9.06907,-0.366763,-6.59259,9.07539,-0.32148,-6.59625,9.1206,-0.335906,-6.84766,9.15015,-0.378298,-6.84614,9.09258,-0.355641,-7.18289,9.04067,-0.419706,-7.18814,9.07585,-0.430185,-7.17304,9.06943,-0.530414,-7.16561,9.02444,-0.53954,-6.82824,9.07987,-0.503186,-6.83941,9.14955,-0.488679,-7.15897,9.09797,-0.550514,-7.13843,9.03481,-0.564567,-7.43037,8.98153,-0.581676,-7.44448,9.02464,-0.574319,-7.46061,9.03121,-0.47252,-7.44983,8.99766,-0.461906,-7.16048,9.04842,-0.400528,-7.16963,9.1008,-0.424944,-6.63085,9.14437,-0.20298,-6.61605,9.08799,-0.222029,-6.93501,9.06291,-0.239908,-6.94649,9.10866,-0.227564,-6.95706,9.10537,-0.124827,-6.94733,9.0683,-0.118416,-6.62756,9.08587,-0.0741037,-6.63444,9.1355,-0.0904554,-6.94697,9.1294,-0.117566,-6.94056,9.06854,-0.0993822,-7.24824,9.03529,-0.150904,-7.25682,9.07293,-0.157619,-7.2462,9.07619,-0.259275,-7.23579,9.02993,-0.272045,-6.92751,9.06972,-0.264377,-6.94262,9.13925,-0.242989,-7.24042,9.11345,-0.270523,-7.22421,9.04594,-0.291328,-7.56982,8.98361,-0.301069,-7.58093,9.02638,-0.288501,-7.59065,9.02379,-0.186574,-7.58137,8.9889,-0.179595,-7.23587,9.04567,-0.125936,-7.24357,9.10468,-0.144406,-7.19333,9.04406,0.172986,-7.17962,8.98997,0.190383,-7.48824,8.93417,0.189716,-7.5007,8.96845,0.184403,-7.50694,8.9699,0.0805496,-7.49486,8.9263,0.0608715,-7.19326,8.98827,0.0181152,-7.21005,9.05114,0.0472639,-6.94464,9.07765,0.0384208,-6.93297,9.01099,0.00319687,-7.24,8.98463,0.0436895,-7.24916,9.03099,0.069178,-7.24383,9.0292,0.173883,-7.23544,8.99327,0.179229,-6.92247,9.0127,0.182195,-6.92972,9.06891,0.164813,-6.6289,9.11644,0.152591,-6.65188,9.06252,0.167361,-6.94096,9.02483,0.164818,-6.95203,9.06089,0.159576,-6.9573,9.0622,0.0540865,-6.94833,9.01424,0.0300464,-6.64824,9.06369,-0.0188978,-6.64458,9.12511,0.0216589,-1.24805,8.68975,2.96493,-1.24805,8.68975,3.26056,-1.24805,8.68975,3.11274,-1.24805,8.37057,2.96493,-1.24805,8.37057,3.26056,-1.24805,8.37057,3.11274,-1.1133,8.68975,3.11274,-1.1133,8.68975,2.95743,-1.1133,8.68975,3.26806,-1.1133,8.37057,3.11274,-1.1133,8.37057,2.95743,-1.1133,8.37057,3.26806,-0.988544,8.68975,3.11274,-0.988543,8.68975,2.95049,-0.988543,8.68975,3.275,-0.988543,8.37057,3.11274,-0.988543,8.37057,2.95049,-0.988543,8.37057,3.275,-0.988543,8.39135,3.11274,-0.987713,8.385,2.96542,-0.987713,8.385,3.26007,-0.988544,8.66897,3.11274,-0.987713,8.67532,2.96542,-0.987713,8.67532,3.26007,-1.1133,8.39135,3.11274,-1.1125,8.38552,2.97184,-1.1125,8.38552,3.25365,-1.1133,8.66897,3.11274,-1.1125,8.6748,2.97184,-1.1125,8.6748,3.25365,-1.23083,8.68975,3.11274,-1.23083,8.68975,2.96397,-1.23083,8.68975,3.26152,-1.23083,8.37057,3.11274,-1.23083,8.37057,2.96397,-1.23083,8.37057,3.26152,-0.995469,8.39135,3.11274,-0.99464,8.38503,2.96578,-0.994639,8.38503,3.25971,-0.995469,8.66897,3.11274,-0.99464,8.6753,2.96578,-0.994639,8.6753,3.25971,-1.10316,8.39135,3.11274,-1.10235,8.38548,2.97132,-1.10235,8.38548,3.25417,-1.10316,8.66897,3.11274,-1.10235,8.67485,2.97132,-1.10235,8.67485,3.25417,-1.1239,8.68975,3.11274,-1.1239,8.68975,2.95802,-1.1239,8.68975,3.26747,-1.1239,8.37057,3.11274,-1.1239,8.37057,2.95802,-1.1239,8.37057,3.26747,-0.980477,8.68975,3.11274,-0.980477,8.68975,2.95004,-0.980477,8.68975,3.27545,-0.980477,8.37057,3.11274,-0.980477,8.37057,2.95004,-0.980477,8.37057,3.27545,-0.181385,8.68975,3.11274,-0.181385,8.68975,2.92774,-0.181385,8.68975,3.29775,-0.275705,8.37057,3.11274,-0.181385,8.37057,2.92774,-0.181385,8.37057,3.29775,-1.24805,8.68975,3.02581,-1.24805,8.68975,3.19967,-1.24805,8.37057,3.02581,-1.24805,8.37057,3.19967,-1.1133,8.68975,3.0214,-1.1133,8.68975,3.20408,-1.1133,8.37057,3.0214,-1.1133,8.37057,3.20408,-0.988544,8.68975,3.01732,-0.988543,8.68975,3.20817,-0.988543,8.37057,3.01732,-0.988543,8.37057,3.20817,-0.988055,8.38761,3.0261,-0.988055,8.38761,3.19939,-0.988055,8.67271,3.0261,-0.988055,8.67271,3.19939,-1.11283,8.38792,3.02988,-1.11283,8.38792,3.19561,-1.11283,8.6724,3.02988,-1.11283,8.6724,3.19561,-1.23083,8.68975,3.02525,-1.23083,8.68975,3.20024,-1.23083,8.37057,3.02525,-1.23083,8.37057,3.20024,-0.994981,8.38763,3.02631,-0.994981,8.38763,3.19918,-0.994981,8.67269,3.02631,-0.994981,8.67269,3.19918,-1.10268,8.3879,3.02957,-1.10268,8.3879,3.19592,-1.10268,8.67243,3.02957,-1.10268,8.67243,3.19592,-1.1239,8.68975,3.02175,-1.1239,8.68975,3.20374,-1.1239,8.37057,3.02175,-1.1239,8.37057,3.20374,-0.980477,8.68975,3.01706,-0.980477,8.68975,3.20843,-0.980477,8.37057,3.01706,-0.980477,8.37057,3.20843,-0.181385,8.68975,3.00394,-0.181385,8.68975,3.22155,-0.275705,8.37057,3.00394,-0.275705,8.37057,3.22155,-0.185107,11.39,3.00394,-0.185107,11.39,3.22155,-0.185107,11.39,3.11274,-0.181432,8.70603,3.00394,-0.181432,8.70603,3.22155,-0.181432,8.70603,3.11274,-0.193048,8.68975,3.11274,-0.193048,8.68975,2.92827,-0.193048,8.68975,3.29722,-0.285146,8.37057,3.11274,-0.193048,8.37057,2.92827,-0.193048,8.37057,3.29722,-0.193048,8.68975,3.00425,-0.193048,8.68975,3.22124,-0.285146,8.37057,3.00425,-0.285146,8.37057,3.22124,-0.184617,11.138,3.00394,-0.184617,11.138,3.22155,-0.184617,11.138,3.11274,-0.348447,11.1377,2.84791,-0.348447,11.1377,3.37757,-0.348447,11.1377,3.11274,-0.348937,11.3896,2.84791,-0.348937,11.3896,3.37757,-0.348937,11.3896,3.11274,-0.184543,11.1,3.00394,-0.184543,11.1,3.22155,-0.184543,11.1,3.11274,-0.348867,11.3538,3.11274,-0.348868,11.3538,2.84791,-0.348867,11.3538,3.37757,-0.348541,11.1859,3.11274,-0.348541,11.1859,2.84791,-0.348541,11.1859,3.37757,-0.389264,8.45383,3.11274,-0.0735999,0.0229048,3.11275,-0.389264,7.65073,3.11274,-0.389264,6.04454,3.11274,-0.389264,5.24145,3.11274,-0.389264,3.63526,3.11274,-0.389264,2.83216,3.11274,-0.389258,1.22595,3.11275,-0.210429,0.184926,3.11275,-0.309314,0.500653,3.11275,-0.368924,0.877873,3.11275,-0.0476012,0.0198015,3.1113,-0.0476012,0.0198015,3.11419,-0.0225872,0.0114912,3.11139,-0.0225872,0.0114912,3.1141,-0.128252,8.45383,3.07353,-0.258758,7.65073,3.09831,-0.128252,7.65073,3.07353,-0.258754,1.22595,3.09831,-0.258754,1.22595,3.12718,-0.12825,1.22595,3.07353,-0.12825,1.22595,3.15196,-0.245198,0.877873,3.09601,-0.245198,0.877873,3.12948,-0.121472,0.877873,3.07209,-0.121472,0.877873,3.1534,-0.205459,0.500654,3.09072,-0.205459,0.500654,3.13477,-0.101603,0.500653,3.07228,-0.101603,0.500653,3.15321,-0.169913,0.184926,3.10116,-0.169913,0.184926,3.12433,-0.0889168,0.184926,3.09337,-0.0889168,0.184926,3.13212,-0.00236305,4.18559e-06,3.11129,-0.00236305,4.18594e-06,3.1142,-0.022,8.45383,3.17687,-0.0220001,7.65073,3.04862,-0.022,6.04454,3.04862,-0.022,6.04454,3.17687,-0.022,3.63526,3.04862,-0.022,3.63526,3.17687,-0.0219996,1.22595,3.04862,-0.0219996,1.22595,3.17687,-0.02074,0.877873,3.04835,-0.0207399,0.877873,3.17714,-0.0170474,0.500653,3.05468,-0.0170473,0.500653,3.17081,-0.0155793,0.184926,3.08645,-0.0155793,0.184926,3.13904,-0.069979,0.0226377,3.11177,-0.069979,0.0226377,3.11372,-0.371277,8.45383,3.11473,-0.371277,7.65073,3.11076,-0.371277,7.65073,3.11473,-0.371277,6.04454,3.11076,-0.371277,6.04454,3.11473,-0.371277,5.24145,3.11473,-0.371277,3.63526,3.11076,-0.371277,3.63526,3.11473,-0.371277,2.83216,3.11473,-0.371271,1.22595,3.11076,-0.371271,1.22595,3.11473,-0.351872,0.877873,3.11044,-0.351872,0.877873,3.11505,-0.295001,0.500653,3.10439,-0.295001,0.500653,3.1211,-0.208455,0.184926,3.10953,-0.208455,0.184926,3.11596,-0.00236305,4.18576e-06,3.11275,-0.0225872,0.0104317,3.11275,-0.0476012,0.018742,3.11275,-0.0669816,0.0212606,3.11275,-0.123247,0.0816931,3.11275,-0.0466542,0.0744203,3.10485,-0.0466542,0.0744203,3.12064,-0.0919809,0.0797151,3.10762,-0.0919809,0.0797151,3.11787,-0.00715842,0.0671018,3.10228,-0.00715841,0.0671018,3.12321,-0.120223,0.0815224,3.11096,-0.120223,0.0815224,3.11453,-0.258758,8.45383,3.09831,-0.258758,8.45383,3.12717,-0.258758,7.65073,3.12717,-0.128252,8.45383,3.15195,-0.128252,7.65073,3.15195,-0.0220001,8.45383,3.04862,-0.022,7.65074,3.17687,-0.371277,8.45383,3.11075,-0.389264,6.84764,3.11274,-0.128252,6.84764,3.07353,-0.128252,6.84764,3.15195,-0.258758,6.84764,3.09831,-0.258758,6.84764,3.12717,-0.0220001,6.84764,3.04862,-0.022,6.84764,3.17687,-0.371277,6.84764,3.11076,-0.371277,6.84764,3.11473,-0.128252,6.04454,3.07353,-0.128252,5.24145,3.07353,-0.128252,6.04454,3.15195,-0.128252,5.24145,3.15195,-0.258758,6.04454,3.09831,-0.258758,5.24145,3.09831,-0.258758,6.04454,3.12717,-0.258758,5.24145,3.12717,-0.022,5.24145,3.04862,-0.022,5.24145,3.17687,-0.371277,5.24145,3.11076,-0.389264,4.43835,3.11274,-0.128252,4.43835,3.07353,-0.128252,4.43835,3.15196,-0.258758,4.43835,3.09831,-0.258758,4.43835,3.12717,-0.022,4.43835,3.04862,-0.022,4.43835,3.17687,-0.371277,4.43835,3.11076,-0.371277,4.43835,3.11473,-0.128252,3.63526,3.07353,-0.128252,2.83216,3.07353,-0.128252,3.63526,3.15196,-0.128252,2.83216,3.15196,-0.258758,3.63526,3.09831,-0.258758,2.83216,3.09831,-0.258758,3.63526,3.12717,-0.258758,2.83216,3.12718,-0.022,2.83216,3.04862,-0.0219999,2.83216,3.17687,-0.371277,2.83216,3.11076,-0.389262,2.02906,3.11275,-0.128252,2.02906,3.07353,-0.128252,2.02906,3.15196,-0.258757,2.02906,3.09831,-0.258757,2.02906,3.12718,-0.0219998,2.02906,3.04862,-0.0219998,2.02906,3.17687,-0.371275,2.02906,3.11076,-0.371275,2.02906,3.11473,-0.106945,9.08023,3.00394,-0.107723,9.903,3.00394,-0.10845,10.7372,3.00394,-0.106945,9.08023,3.22155,-0.107723,9.903,3.22155,-0.10845,10.7372,3.22155,-0.106945,9.08023,3.11274,-0.107723,9.903,3.11274,-0.10845,10.7372,3.11274,-0.181529,8.7804,3.00394,-0.181529,8.7804,3.22155,-0.181529,8.7804,3.11274,-0.184462,11.0377,3.00394,-0.184462,11.0377,3.22155,-0.184462,11.0377,3.11274,2.79574e-06,8.68975,2.9124,2.92631e-06,8.68975,3.31309,1.24806,8.68975,2.96493,1.24806,8.68975,3.26056,1.24806,8.68975,3.11274,2.86102e-06,8.37057,3.11274,2.79574e-06,8.37057,2.9124,2.92631e-06,8.37057,3.31309,1.24806,8.37057,2.96493,1.24806,8.37057,3.26056,1.24806,8.37057,3.11274,1.11331,8.68975,3.11274,1.11331,8.68975,2.95743,1.11331,8.68975,3.26806,1.11331,8.37057,3.11274,1.11331,8.37057,2.95743,1.11331,8.37057,3.26806,0.988551,8.68975,3.11274,0.988551,8.68975,2.95049,0.988551,8.68975,3.275,0.988551,8.37057,3.11274,0.988551,8.37057,2.95049,0.988551,8.37057,3.275,0.988551,8.39135,3.11274,0.98772,8.385,2.96542,0.98772,8.385,3.26007,0.988551,8.66897,3.11274,0.98772,8.67532,2.96542,0.98772,8.67532,3.26007,1.11331,8.39135,3.11274,1.1125,8.38552,2.97184,1.1125,8.38552,3.25365,1.11331,8.66897,3.11274,1.1125,8.6748,2.97184,1.1125,8.6748,3.25365,1.23084,8.68975,3.11274,1.23084,8.68975,2.96397,1.23084,8.68975,3.26151,1.23084,8.37057,3.11274,1.23084,8.37057,2.96397,1.23084,8.37057,3.26151,0.995476,8.39135,3.11274,0.994647,8.38503,2.96577,0.994647,8.38503,3.25971,0.995476,8.66897,3.11274,0.994647,8.6753,2.96577,0.994647,8.6753,3.25971,1.10316,8.39135,3.11274,1.10236,8.38548,2.97132,1.10236,8.38548,3.25417,1.10316,8.66897,3.11274,1.10236,8.67485,2.97132,1.10236,8.67485,3.25417,1.1239,8.68975,3.11274,1.1239,8.68975,2.95802,1.1239,8.68975,3.26747,1.1239,8.37057,3.11274,1.1239,8.37057,2.95802,1.1239,8.37057,3.26747,0.980485,8.68975,3.11274,0.980485,8.68975,2.95004,0.980485,8.68975,3.27545,0.980485,8.37057,3.11274,0.980485,8.37057,2.95004,0.980485,8.37057,3.27545,0.181393,8.68975,3.11274,0.181392,8.68975,2.92774,0.181393,8.68975,3.29775,0.275713,8.37057,3.11274,0.181392,8.37057,2.92774,0.181393,8.37057,3.29775,2.82263e-06,8.68975,2.99492,2.89942e-06,8.68975,3.23057,1.24806,8.68975,3.02581,1.24806,8.68975,3.19967,2.82263e-06,8.37057,2.99492,2.89942e-06,8.37057,3.23057,1.24806,8.37057,3.02581,1.24806,8.37057,3.19967,1.11331,8.68975,3.0214,1.11331,8.68975,3.20408,1.11331,8.37057,3.0214,1.11331,8.37057,3.20408,0.988551,8.68975,3.01732,0.988551,8.68975,3.20817,0.988551,8.37057,3.01732,0.988551,8.37057,3.20817,0.988063,8.38761,3.0261,0.988063,8.38761,3.19939,0.988063,8.67271,3.0261,0.988063,8.67271,3.19939,1.11283,8.38792,3.02988,1.11283,8.38792,3.19561,1.11283,8.6724,3.02988,1.11283,8.6724,3.19561,1.23084,8.68975,3.02525,1.23084,8.68975,3.20024,1.23084,8.37057,3.02525,1.23084,8.37057,3.20024,0.994989,8.38763,3.02631,0.994989,8.38763,3.19918,0.994989,8.67269,3.02631,0.994989,8.67269,3.19918,1.10269,8.3879,3.02957,1.10269,8.3879,3.19592,1.10269,8.67243,3.02957,1.10269,8.67243,3.19592,1.1239,8.68975,3.02175,1.1239,8.68975,3.20374,1.1239,8.37057,3.02175,1.1239,8.37057,3.20374,0.980485,8.68975,3.01706,0.980485,8.68975,3.20843,0.980485,8.37057,3.01706,0.980485,8.37057,3.20843,0.181393,8.68975,3.00394,0.181393,8.68975,3.22155,0.275713,8.37057,3.00394,0.275713,8.37057,3.22155,0.185115,11.39,3.00394,0.185115,11.39,3.22155,2.74067e-06,11.39,2.99492,2.81746e-06,11.39,3.23057,0.185115,11.39,3.11274,2.77907e-06,11.39,3.11274,0.18144,8.70603,3.00394,0.18144,8.70603,3.22155,2.82263e-06,8.70603,2.99492,2.89942e-06,8.70603,3.23057,0.18144,8.70603,3.11274,0.193056,8.68975,3.11274,0.193055,8.68975,2.92827,0.193056,8.68975,3.29722,0.285154,8.37057,3.11274,0.193055,8.37057,2.92827,0.193056,8.37057,3.29722,0.193056,8.68975,3.00425,0.193056,8.68975,3.22124,0.285154,8.37057,3.00425,0.285154,8.37057,3.22124,0.184625,11.138,3.00394,0.184625,11.138,3.22155,2.74067e-06,11.138,2.99492,2.81746e-06,11.138,3.23057,0.184625,11.138,3.11274,0.348455,11.1377,2.84791,0.348455,11.1377,3.37757,0.348455,11.1377,3.11274,2.68983e-06,11.1377,2.83889,2.8683e-06,11.1377,3.3866,0.348945,11.3896,2.84791,0.348945,11.3896,3.37757,0.348945,11.3896,3.11274,2.68983e-06,11.3896,2.83889,2.8683e-06,11.3896,3.3866,0.184551,11.1,3.00394,0.184551,11.1,3.22155,2.74067e-06,11.1,2.99492,2.81746e-06,11.1,3.23057,0.184551,11.1,3.11274,0.348875,11.3538,3.11274,0.348875,11.3538,2.84791,0.348875,11.3538,3.37757,2.68983e-06,11.3538,2.83889,2.8683e-06,11.3538,3.3866,0.348549,11.1859,3.11274,0.348548,11.1859,2.84791,0.348549,11.1859,3.37757,2.68983e-06,11.1859,2.83889,2.8683e-06,11.1859,3.3866,0.389271,8.45383,3.11274,0.0736076,0.0229048,3.11275,0.389271,7.65073,3.11274,0.389271,6.04454,3.11274,0.389271,5.24145,3.11274,0.389271,3.63526,3.11274,0.389271,2.83216,3.11274,0.389265,1.22595,3.11275,0.210437,0.184926,3.11275,0.309322,0.500653,3.11275,0.368932,0.877873,3.11275,3.81419e-06,4.18558e-06,3.11117,3.81521e-06,4.18595e-06,3.11432,3.83745e-06,6.04454,3.18256,3.79195e-06,5.24145,3.04293,3.83745e-06,3.63526,3.18256,3.79195e-06,2.83216,3.04293,3.79195e-06,1.22595,3.04293,3.83745e-06,1.22595,3.18256,3.79195e-06,0.877873,3.04293,3.83745e-06,0.877873,3.18256,3.79445e-06,0.500653,3.05059,3.83495e-06,0.500653,3.1749,3.80547e-06,0.184926,3.08442,3.82393e-06,0.184926,3.14107,0.0476088,0.0198015,3.1113,0.0476088,0.0198015,3.11419,0.0225948,0.0114912,3.11139,0.0225948,0.0114912,3.1141,0.12826,8.45383,3.07353,0.258766,7.65073,3.09831,0.12826,7.65073,3.07353,0.258762,1.22595,3.09831,0.258762,1.22595,3.12718,0.128258,1.22595,3.07353,0.128258,1.22595,3.15196,0.245206,0.877873,3.09601,0.245206,0.877873,3.12948,0.12148,0.877873,3.07209,0.12148,0.877873,3.1534,0.205466,0.500654,3.09072,0.205466,0.500654,3.13477,0.10161,0.500653,3.07228,0.10161,0.500653,3.15321,0.169921,0.184926,3.10116,0.169921,0.184926,3.12433,0.0889244,0.184926,3.09337,0.0889244,0.184926,3.13212,0.00237068,4.18559e-06,3.11129,0.00237068,4.18594e-06,3.1142,0.0220077,8.45383,3.17687,0.0220077,7.65073,3.04862,0.0220076,6.04454,3.04862,0.0220077,6.04454,3.17687,0.0220076,3.63526,3.04862,0.0220077,3.63526,3.17687,0.0220072,1.22595,3.04862,0.0220072,1.22595,3.17687,0.0207476,0.877873,3.04835,0.0207476,0.877873,3.17714,0.017055,0.500653,3.05468,0.017055,0.500653,3.17081,0.0155869,0.184926,3.08645,0.0155869,0.184926,3.13904,0.0699866,0.0226377,3.11177,0.0699866,0.0226377,3.11372,0.371285,8.45383,3.11473,0.371285,7.65073,3.11076,0.371285,7.65073,3.11473,0.371285,6.04454,3.11076,0.371285,6.04454,3.11473,0.371285,5.24145,3.11473,0.371285,3.63526,3.11076,0.371285,3.63526,3.11473,0.371285,2.83216,3.11473,0.371279,1.22595,3.11076,0.371279,1.22595,3.11473,0.35188,0.877873,3.11044,0.35188,0.877873,3.11505,0.295009,0.500653,3.10439,0.295009,0.500653,3.1211,0.208462,0.184926,3.10953,0.208462,0.184926,3.11596,3.8147e-06,4.18576e-06,3.11275,0.00237068,4.18576e-06,3.11275,0.0225948,0.0104317,3.11275,0.0476088,0.018742,3.11275,0.0669892,0.0212606,3.11275,0.123255,0.0816931,3.11275,3.81102e-06,0.0671018,3.10147,3.81837e-06,0.0671018,3.12402,0.0466618,0.0744203,3.10485,0.0466618,0.0744203,3.12064,0.0919886,0.0797151,3.10762,0.0919886,0.0797151,3.11787,0.00716604,0.0671018,3.10228,0.00716605,0.0671018,3.12321,0.120231,0.0815224,3.11096,0.120231,0.0815224,3.11453,3.79195e-06,8.45383,3.04293,3.79195e-06,7.65074,3.04293,3.83745e-06,8.45383,3.18256,3.83745e-06,7.65074,3.18256,0.258766,8.45383,3.09831,0.258766,8.45383,3.12717,0.258766,7.65073,3.12717,0.12826,8.45383,3.15195,0.12826,7.65073,3.15195,0.0220077,8.45383,3.04862,0.0220077,7.65074,3.17687,0.371285,8.45383,3.11075,0.389271,6.84764,3.11274,3.79195e-06,6.84764,3.04293,3.83745e-06,6.84764,3.18256,0.12826,6.84764,3.07353,0.12826,6.84764,3.15195,0.258766,6.84764,3.09831,0.258766,6.84764,3.12717,0.0220077,6.84764,3.04862,0.0220077,6.84764,3.17687,0.371285,6.84764,3.11076,0.371285,6.84764,3.11473,3.79195e-06,6.04454,3.04293,3.83745e-06,5.24145,3.18256,0.12826,6.04454,3.07353,0.12826,5.24145,3.07353,0.12826,6.04454,3.15195,0.12826,5.24145,3.15195,0.258766,6.04454,3.09831,0.258766,5.24145,3.09831,0.258766,6.04454,3.12717,0.258766,5.24145,3.12717,0.0220076,5.24145,3.04862,0.0220077,5.24145,3.17687,0.371285,5.24145,3.11076,0.389271,4.43835,3.11274,3.79195e-06,4.43835,3.04293,3.83745e-06,4.43835,3.18256,0.12826,4.43835,3.07353,0.12826,4.43835,3.15195,0.258766,4.43835,3.09831,0.258766,4.43835,3.12717,0.0220076,4.43835,3.04862,0.0220076,4.43835,3.17687,0.371285,4.43835,3.11076,0.371285,4.43835,3.11473,3.79195e-06,3.63526,3.04293,3.83745e-06,2.83216,3.18256,0.12826,3.63526,3.07353,0.12826,2.83216,3.07353,0.12826,3.63526,3.15196,0.12826,2.83216,3.15196,0.258766,3.63526,3.09831,0.258766,2.83216,3.09831,0.258766,3.63526,3.12717,0.258766,2.83216,3.12717,0.0220076,2.83216,3.04862,0.0220076,2.83216,3.17687,0.371285,2.83216,3.11076,0.389269,2.02906,3.11275,3.79195e-06,2.02906,3.04293,3.83745e-06,2.02906,3.18256,0.128259,2.02906,3.07353,0.128259,2.02906,3.15196,0.258764,2.02906,3.09831,0.258764,2.02906,3.12718,0.0220074,2.02906,3.04862,0.0220075,2.02906,3.17687,0.371283,2.02906,3.11076,0.371283,2.02906,3.11473,0.106953,9.08023,3.00394,0.107731,9.903,3.00394,0.108457,10.7372,3.00394,0.106953,9.08023,3.22155,0.107731,9.903,3.22155,0.108457,10.7372,3.22155,3.77631e-06,9.08023,2.99492,2.78165e-06,9.903,2.99492,3.77631e-06,10.7372,2.99492,3.85309e-06,9.08023,3.23057,2.85844e-06,9.903,3.23057,3.85309e-06,10.7372,3.23057,0.106953,9.08023,3.11274,0.107731,9.903,3.11274,0.108457,10.7372,3.11274,0.181536,8.7804,3.00394,0.181536,8.7804,3.22155,3.77631e-06,8.7804,2.99492,3.85309e-06,8.7804,3.23057,0.181536,8.7804,3.11274,0.18447,11.0377,3.00394,0.18447,11.0377,3.22155,3.77631e-06,11.0377,2.99492,3.85309e-06,11.0377,3.23057,0.18447,11.0377,3.11274] }, - { "name": "animation_000001", "vertices": [5.58012,8.89256,-0.47301,5.57979,9.06534,-0.490937,5.57983,9.12742,-0.46554,5.57984,9.18197,-0.397213,5.57949,9.22038,-0.304712,5.57887,9.22515,-0.188612,5.57874,9.11086,0.0581205,5.57926,8.97509,0.0700323,5.57995,8.84946,-0.0363218,5.58076,8.77634,-0.18167,5.58135,8.81545,-0.43113,5.58183,8.76374,-0.338404,5.58379,8.98717,-0.499288,5.58124,9.21781,-0.0782947,5.65799,8.99372,-0.499144,5.66043,9.18671,-0.0662581,6.31627,8.86666,0.375431,6.27009,8.78069,0.369749,6.29209,8.88516,0.358448,6.30867,8.81863,0.372625,6.24232,8.78848,0.35739,6.20552,8.93813,0.558678,6.15728,8.85334,0.561713,6.17718,8.95595,0.517656,6.12286,8.86859,0.522483,6.17244,8.90226,0.569123,6.23387,8.97638,0.502002,6.28062,8.97605,0.448436,6.30109,8.92418,0.385186,6.27537,8.8332,0.338711,6.22274,8.75358,0.376716,6.17147,8.74127,0.439205,6.14036,8.92078,0.528682,6.13675,8.81129,0.514987,6.30343,8.71619,0.662258,6.32831,8.68177,0.615231,6.36816,8.7072,0.566649,6.42938,8.76786,0.541738,6.44764,8.85511,0.562607,6.44754,8.90592,0.607801,6.40275,8.90854,0.642789,6.48557,8.85195,0.786139,6.56092,8.84851,0.728565,6.59653,8.78326,0.652722,6.57694,8.69148,0.619722,6.51053,8.6259,0.643673,6.43015,8.62306,0.714874,6.41688,8.78654,0.802317,6.39469,8.69874,0.788091,6.40587,8.8934,0.710933,6.47616,8.88999,0.645445,6.49348,8.83286,0.590535,6.46957,8.74873,0.565916,6.41468,8.68328,0.590113,6.35731,8.6694,0.650672,6.34689,8.82415,0.729643,6.31968,8.73641,0.715443,6.248,8.76261,0.646943,6.27662,8.85415,0.660477,6.29209,8.69059,0.575551,6.35659,8.69691,0.521267,6.42029,8.76298,0.494468,6.44245,8.85937,0.518982,6.41278,8.92164,0.570127,6.33497,8.92807,0.644168,6.46226,8.84807,0.586785,6.44419,8.76375,0.565965,6.38373,8.69715,0.593593,6.43593,8.76379,0.553027,6.37992,8.70873,0.580795,6.45204,8.84287,0.577999,6.18443,8.79035,0.563498,6.1964,8.89258,0.600093,6.22505,8.71778,0.488625,6.26997,8.73133,0.420759,6.3424,8.80291,0.408935,6.3508,8.89154,0.428225,6.33499,8.9519,0.492173,6.26672,8.95473,0.562339,6.28745,8.85188,0.690412,6.33547,8.89716,0.66658,6.27603,8.78499,0.669264,6.37686,8.89934,0.663723,6.30034,8.75675,0.669459,6.37216,8.8793,0.698199,6.32137,8.83722,0.718447,6.31202,8.77157,0.70014,6.3416,8.88135,0.691885,6.35462,8.87334,0.699403,6.30138,8.78776,0.684174,6.30715,8.78926,0.699743,6.32612,8.83305,0.703634,6.28481,8.79764,0.680693,6.32983,8.88483,0.678654,6.30321,8.84261,0.683364,6.30718,8.84271,0.705099,5.89059,8.93225,0.258988,6.3021,8.90113,0.225419,6.27973,8.96582,0.26786,5.91813,9.03856,0.270519,6.0249,9.05491,0.274883,6.21932,9.03027,0.267854,6.12089,9.05673,0.280311,5.89072,8.79661,0.197299,6.29875,8.84062,0.167394,5.97409,8.76088,0.177057,6.08543,8.77489,0.154466,6.18587,8.79994,0.153445,6.04271,8.89365,0.436758,6.03227,8.7991,0.380597,6.07773,8.96511,0.453802,6.11468,8.99783,0.442941,6.25881,8.94642,0.322981,6.22476,8.99314,0.377259,6.23288,8.84258,0.278447,6.27198,8.89537,0.298958,6.17542,9.00065,0.412544,6.06591,8.74895,0.319883,6.18818,8.79545,0.270882,6.13636,8.75047,0.273416,6.04856,8.7859,-0.131984,6.04892,8.77613,0.0322466,6.04358,8.76489,-0.0502018,6.19385,8.78295,0.0415062,5.89185,8.75302,-0.151009,5.89328,8.74627,0.0214233,5.87255,8.73938,-0.0653098,6.1931,8.80831,-0.0397358,6.17826,8.81557,-0.12146,5.96314,8.81839,-0.201593,6.15312,8.82718,-0.180653,6.06874,8.81328,-0.192491,6.09818,9.2012,-0.0854787,6.102,9.19976,-0.168481,6.06339,9.19627,-0.269989,6.03331,9.17737,-0.367568,6.08018,9.17751,0.00409766,6.06583,9.14528,0.106176,6.00175,9.14381,-0.458081,5.97228,9.10327,-0.539013,5.97885,8.80604,-0.509287,5.95855,8.85561,-0.581041,5.95459,8.97064,-0.607211,5.95866,9.06995,-0.578147,5.99206,9.12511,-0.500575,6.07347,9.10814,0.160347,6.074,9.16417,0.0554987,6.01569,9.16255,-0.412919,6.05404,9.19225,-0.322691,6.08285,9.19618,-0.214603,6.09844,9.20331,-0.126625,6.09363,9.19167,-0.0444263,6.06848,8.85539,-0.241599,6.06515,8.81693,-0.322016,6.01075,8.7868,-0.431159,5.79561,9.14829,0.0164901,5.7957,9.194,-0.116816,5.78764,9.18242,-0.0573881,5.85359,9.15634,0.0370836,5.84192,9.19379,-0.0935425,6.38458,8.81991,-0.466921,6.33493,8.81803,-0.463687,6.50385,8.82739,-0.25513,6.41103,8.8406,-0.25227,6.52154,8.82392,-0.0658188,6.46466,8.85619,-0.0869274,6.36443,8.81831,-0.510274,6.28383,8.81618,-0.495272,6.40977,8.8174,-0.432826,6.29383,8.82705,-0.415568,6.48477,8.82565,-0.296597,6.34329,8.82864,-0.276254,6.50856,8.82428,-0.226445,6.37161,8.83835,-0.212967,6.51956,8.81021,-0.00405117,6.43219,8.83374,-0.0384029,6.518,8.80213,-0.108916,6.43006,8.828,-0.13259,6.22815,8.84918,-0.453469,6.29063,8.84909,-0.335376,6.31624,8.82054,-0.34229,6.3193,8.85726,-0.240596,6.36414,8.85218,-0.178294,6.39503,8.84059,-0.173056,6.38672,8.85294,-0.0920703,6.32453,9.15871,-0.0420658,6.41578,9.1435,-0.0430815,6.32792,9.18807,-0.133045,6.41198,9.17979,-0.137786,6.31075,9.1683,-0.220974,6.40169,9.14924,-0.227028,6.28314,9.18674,-0.344259,6.38081,9.17639,-0.351198,6.23888,9.15238,-0.433263,6.33236,9.14608,-0.444205,6.29227,9.15629,0.099451,6.4017,9.15692,0.106755,6.34106,8.95629,0.219245,6.39965,8.95242,0.217866,6.31347,9.04786,0.197632,6.39139,9.04305,0.194881,6.3666,8.8456,0.04723,6.42638,8.84183,0.0655556,6.3451,8.87762,0.139048,6.413,8.87564,0.154894,6.18396,9.1218,-0.531998,6.26466,9.12543,-0.543392,6.14432,9.07395,-0.608842,6.21842,9.07436,-0.621766,6.12791,8.95907,-0.647511,6.19712,8.95263,-0.662688,6.14648,8.85281,-0.614299,6.21742,8.84702,-0.628914,6.18363,8.81538,-0.543788,6.24941,8.80757,-0.547403,6.16002,9.09961,-0.572795,6.23543,9.09868,-0.589468,6.21136,9.13818,-0.479012,6.29113,9.1399,-0.493672,6.2928,9.10734,0.15872,6.3997,9.10591,0.154256,6.3095,9.15268,0.0271218,6.41005,9.14005,0.0353636,6.25653,9.16568,-0.393035,6.35741,9.16166,-0.402826,6.29923,9.17436,-0.269258,6.39081,9.15817,-0.273045,6.32205,9.17692,-0.176667,6.40787,9.1637,-0.184169,6.32992,9.17647,-0.087707,6.41284,9.16698,-0.0950447,6.5753,9.15759,-0.119801,6.56594,9.14773,-0.18449,6.23536,9.18242,-0.0870571,6.2296,9.19063,-0.17032,5.9606,9.19946,-0.0820734,5.99693,9.20389,-0.166145,6.50509,9.1532,-0.0993213,6.51424,9.1516,-0.190992,6.56974,9.16165,-0.155475,6.53271,9.14245,-0.419036,6.55416,9.13534,-0.306907,6.19238,9.18185,-0.265325,6.1439,9.17791,-0.380612,5.95537,9.20103,-0.269504,5.93507,9.18948,-0.346231,6.50786,9.13859,-0.28524,6.46463,9.15401,-0.41458,6.56607,9.14924,-0.374932,5.96668,9.174,0.00029377,6.57155,9.09396,0.158523,6.57139,9.12365,0.0534876,6.20381,9.15999,0.00785887,6.18088,9.13351,0.139238,5.95678,9.15122,0.0672859,6.51434,9.13172,0.0353894,6.501,9.06699,0.161214,6.5852,9.11427,0.104555,6.37003,9.10702,-0.612219,6.41871,9.12683,-0.537028,6.10626,9.14032,-0.467825,6.06692,9.09944,-0.554977,5.90256,9.14662,-0.455376,5.87519,9.11299,-0.521895,6.38129,9.12867,-0.512335,6.30615,9.09553,-0.607001,6.41183,9.11693,-0.576703,5.70453,8.77755,-0.270471,5.6946,8.79901,-0.127961,5.76198,8.7617,-0.272573,5.73791,8.78693,-0.106468,5.69771,8.78147,-0.199921,5.82832,8.76072,-0.287901,5.7903,8.75099,-0.0710156,5.73733,8.82022,-0.451534,5.74605,9.1735,-0.0604976,5.75378,9.09937,0.0550136,5.73619,8.96837,0.064211,5.73328,8.90578,-0.49582,5.73048,9.00664,-0.510541,5.74486,8.7763,-0.363744,5.75941,8.77823,-0.19633,5.72396,8.84422,-0.0170677,5.76147,9.2061,-0.1681,5.72999,9.0834,-0.497354,5.75506,9.21465,-0.289203,5.73785,9.14154,-0.459136,5.74386,9.18766,-0.386816,6.08209,8.83472,-0.524408,6.05364,8.85655,-0.599104,6.04511,8.96496,-0.625226,6.05225,9.06554,-0.594583,6.08626,9.12292,-0.513861,6.31577,8.88548,0.161645,6.30412,8.82818,0.0338926,6.18334,9.07236,0.203259,6.29855,8.963,0.235825,6.18423,9.15194,0.073589,6.12621,9.15753,-0.423661,6.16636,9.19217,-0.329686,6.21566,9.18115,-0.212798,6.23401,9.19641,-0.12845,6.22512,9.1688,-0.0458232,6.30588,8.85752,-0.0730598,6.26338,8.8543,-0.153386,6.20874,8.8573,-0.226064,6.19843,8.82342,-0.327937,6.131,8.79628,-0.44292,5.96981,9.2019,-0.131031,5.93262,8.79469,-0.316082,5.97333,9.19521,-0.314102,5.99189,9.16092,0.0377313,5.94662,9.12129,0.129623,5.86343,9.07607,-0.557718,5.86133,8.97975,-0.583961,5.86203,8.85161,-0.561491,5.87495,8.791,-0.495112,5.9191,9.12817,-0.491675,5.96243,9.19278,-0.0415124,5.96427,9.20225,-0.204925,5.9544,8.83007,-0.234021,5.90973,9.17255,-0.40223,5.89196,8.76891,-0.421779,6.59076,8.81431,-0.156141,6.64937,8.84076,-0.158743,6.53134,8.82673,-0.381509,6.59199,8.85756,-0.37597,6.59966,8.82716,0.109235,6.64856,8.82331,0.0867191,6.33914,8.86113,-0.651946,6.39436,8.86784,-0.6499,6.36648,8.82328,-0.589503,6.42311,8.84726,-0.596841,6.59191,8.82133,-0.0836785,6.65575,8.85763,-0.0897303,6.6006,8.84715,-0.0436867,6.65042,8.85609,-0.0464401,6.59043,8.81471,0.0203602,6.65389,8.84064,0.0173764,6.58519,8.83969,-0.229741,6.64948,8.87498,-0.230561,6.55995,8.84613,-0.300755,6.61876,8.87286,-0.305636,6.57751,8.85502,-0.260405,6.63457,8.88331,-0.26764,6.50121,8.83126,-0.440133,6.57065,8.87586,-0.451241,6.4216,8.81714,-0.520615,6.4918,8.85225,-0.535255,6.46643,8.82481,-0.476235,6.53997,8.8719,-0.490515,6.50843,9.16308,-0.143188,6.51566,8.81443,-0.173204,6.44324,8.80617,-0.366737,6.48091,9.16746,-0.358935,6.5065,9.13878,0.108062,6.48566,9.03755,0.20189,6.48619,8.9649,0.21625,6.50999,8.87238,0.17066,6.51336,8.82628,0.0864485,6.28839,9.07207,-0.63554,6.25815,8.95144,-0.676418,6.28413,8.84419,-0.641676,6.32749,8.81539,-0.570869,6.34323,9.12434,-0.55455,6.53033,9.12477,-0.0436474,6.52603,9.12644,-0.240445,6.44818,9.1339,-0.463507,6.61491,9.00758,-0.509292,6.61883,8.98857,-0.507461,6.59233,8.91914,-0.497036,6.58931,9.05587,-0.509106,6.60807,9.02151,-0.509477,6.69219,9.02211,-0.287135,6.69685,9.00426,-0.285605,6.68443,8.92731,-0.274019,6.68041,9.08126,-0.285904,6.68609,9.03535,-0.28603,6.71844,9.00968,-0.0433992,6.71662,8.9904,-0.0418454,6.69752,8.90841,-0.0436209,6.72015,9.03027,-0.0446858,6.70531,9.08794,-0.0481734,6.71794,9.00707,-0.0563274,6.71583,9.00451,-0.0305125,6.68339,9.02501,-0.288084,6.70098,9.01592,-0.277661,6.59646,9.00109,-0.517002,6.63359,8.9948,-0.495574,6.58894,9.02124,-0.516741,6.63125,9.01173,-0.497273,6.67807,9.03783,-0.28866,6.69611,9.03341,-0.278083,6.7038,8.99658,-0.275947,6.7134,9.03351,-0.0596774,6.71269,8.9856,-0.0299887,6.71357,9.02757,-0.0318105,6.47112,9.10081,-0.595068,6.53632,9.07378,-0.529707,6.5984,8.97788,-0.516331,6.55293,8.89139,-0.524276,6.474,8.86996,-0.596531,6.42941,8.88556,-0.651155,6.39643,8.93071,-0.675108,6.41841,9.03796,-0.664108,6.93101,8.95299,-0.653789,6.69512,9.00434,-0.577603,6.93825,8.91401,-0.625459,6.69704,8.9651,-0.550838,6.92534,8.87376,-0.648649,6.68362,8.91709,-0.57623,6.90667,8.83984,-0.710875,6.65988,8.86354,-0.637835,6.89029,8.86502,-0.777629,6.64584,8.88386,-0.702405,6.88767,8.90246,-0.809211,6.64419,8.92772,-0.736414,6.89742,8.94195,-0.785244,6.64782,8.98505,-0.725033,7.01247,8.95709,-0.810406,6.99842,8.89493,-0.829209,7.00363,8.83671,-0.801382,7.02122,8.81601,-0.742759,7.03656,8.84444,-0.686802,7.04471,8.90568,-0.667864,7.02713,8.98629,-0.75347,7.04374,8.96424,-0.698565,6.73944,9.02877,-0.594465,6.72066,9.04993,-0.662629,6.7414,8.95269,-0.558114,6.72532,8.87951,-0.579609,6.70182,8.83617,-0.643044,6.68555,8.8578,-0.713319,6.68442,8.92553,-0.749195,6.69935,9.02075,-0.728621,6.64981,9.05052,-0.57487,6.63355,9.0684,-0.646077,6.65278,8.98144,-0.533824,6.63979,8.89963,-0.559775,6.61984,8.8497,-0.623409,6.60298,8.86945,-0.690697,6.59864,8.93641,-0.72676,6.61288,9.03434,-0.705346,6.94209,8.97412,-0.797966,6.92869,8.9011,-0.816705,6.93004,8.8452,-0.78478,6.94619,8.82176,-0.721376,6.9653,8.85327,-0.662488,6.97792,8.91162,-0.641708,6.959,8.99897,-0.736826,6.97551,8.9809,-0.673425,6.89354,8.99663,-0.646728,6.87483,9.01253,-0.715185,6.89477,8.92023,-0.611416,6.88241,8.85982,-0.634371,6.86066,8.82479,-0.698059,6.84334,8.84944,-0.767373,6.83988,8.90699,-0.801173,6.85459,8.98888,-0.781559,6.8989,8.86479,-0.779171,6.91227,8.83997,-0.711572,6.93478,8.87336,-0.65062,6.90971,8.83924,-0.711303,6.92767,8.87178,-0.65727,6.8969,8.86494,-0.76986,6.65248,8.88311,-0.706147,6.66601,8.86282,-0.638294,6.69085,8.91478,-0.579093,6.65142,8.88309,-0.693858,6.66293,8.86215,-0.637752,6.68421,8.91241,-0.586819,6.81999,9.00757,-0.620724,6.80115,9.04796,-0.692122,6.82263,8.93103,-0.585073,6.80818,8.86628,-0.606976,6.7843,8.82982,-0.670698,6.76468,8.85363,-0.741204,6.76029,8.91411,-0.775554,6.77584,9.00139,-0.75574,6.5857,9.06571,-0.543452,6.54625,9.10182,-0.615889,6.62057,8.99563,-0.521933,6.57627,8.90096,-0.535082,6.53151,8.85772,-0.603043,6.50652,8.87552,-0.670605,6.50189,8.94055,-0.706076,6.51804,9.03902,-0.685022,6.89857,9.01968,-0.721192,6.8833,8.99289,-0.765108,6.90919,8.9978,-0.672916,6.89785,8.96772,-0.783617,6.9313,8.97504,-0.665807,6.92732,8.98349,-0.775181,6.93807,9.01134,-0.731648,6.95043,8.98831,-0.686023,6.90976,8.99847,-0.761587,6.92337,8.99307,-0.763869,6.92865,8.99182,-0.688002,6.94057,8.99643,-0.69409,6.93145,9.00078,-0.728463,6.91521,9.00246,-0.686182,6.89469,8.99937,-0.756586,6.90476,9.00554,-0.721036,6.92043,9.01393,-0.726034,6.65467,9.07737,-0.651782,6.6369,9.03587,-0.697847,6.66721,9.04926,-0.593367,6.65692,9.02162,-0.710284,6.69276,9.0326,-0.592902,6.69925,9.06763,-0.65875,6.68538,9.03239,-0.703385,6.71133,9.04121,-0.615126,6.70151,9.04659,-0.621379,6.68827,9.05542,-0.61601,6.66574,9.0429,-0.690221,6.67973,9.03737,-0.69223,6.69089,9.05801,-0.658486,6.67227,9.05039,-0.609773,6.64901,9.0379,-0.688369,6.66355,9.06189,-0.652768,6.67791,9.06951,-0.655819,7.00161,9.07016,0.0948462,6.98366,9.06373,0.0924703,6.98071,9.03116,0.0412012,6.97412,9.04053,0.143887,7.01806,9.05332,0.0953327,7.01811,9.02665,0.0502422,7.00109,9.03598,0.0464938,6.9955,9.04682,0.144247,7.01396,9.03358,0.141821,7.02211,9.02722,0.151104,7.02823,9.02053,0.0400347,7.02781,9.06191,0.0966463,6.99007,9.0228,0.16839,6.99758,9.01222,0.0195882,6.96135,9.04218,0.158391,6.97009,9.03183,0.025836,6.97194,9.08246,0.0919762,7.31003,9.01593,0.117786,7.2908,9.00625,0.116297,7.29239,9.00172,0.0724442,7.2889,9.00169,0.158989,7.32162,9.00004,0.118564,7.31814,8.99499,0.160089,7.30358,8.98937,0.161649,7.32494,8.99448,0.0756162,7.31025,9.00081,0.0729574,7.32466,8.98582,0.172793,7.3291,9.01299,0.118497,7.33213,8.98471,0.0635678,7.298,8.96994,0.1868,7.30437,8.96804,0.0408517,7.27765,8.99591,0.171401,7.28314,8.99525,0.0585167,7.28462,9.02338,0.115349,6.8375,9.05095,0.00559874,6.82875,8.96033,-0.0256551,6.81406,8.86932,0.00584153,6.80232,8.82022,0.0909672,6.79547,8.85216,0.178684,6.80155,8.94362,0.207866,6.8351,9.09919,0.082893,6.8154,9.045,0.165552,7.15844,9.0012,0.0270987,7.14636,8.90318,-0.00549894,7.1349,8.82447,0.0269039,7.12628,8.78646,0.105828,7.12573,8.82541,0.184485,7.13386,8.90445,0.217061,7.1599,9.05012,0.106308,7.14924,9.0021,0.185265,6.97484,8.85323,0.160419,6.97221,8.822,0.0928469,6.98421,8.86967,0.0269517,6.97993,8.85478,0.173037,6.97743,8.82153,0.0933597,6.99003,8.87109,0.0148856,7.29785,8.83743,0.047663,7.28915,8.83765,0.187714,7.29076,8.80239,0.117536,7.2936,8.83539,0.198235,7.29325,8.8028,0.118387,7.30313,8.834,0.037819,7.25816,8.99352,0.0313041,7.24778,8.90054,-0.00227053,7.23749,8.82613,0.0316756,7.23023,8.79009,0.113231,7.22801,8.82713,0.194092,7.23461,8.90181,0.228226,7.25532,9.0144,0.113442,7.24896,8.99456,0.195178,7.34558,8.97829,0.19805,7.35245,8.99912,0.120116,7.33509,8.8828,0.230601,7.32956,8.79711,0.197129,7.33232,8.76901,0.119667,7.33848,8.79609,0.0414227,7.34763,8.88174,0.00849236,7.35458,8.97725,0.0415349,6.94637,9.02817,0.0123083,6.93831,8.92988,-0.0189614,6.92839,8.85633,0.013072,6.92001,8.81653,0.0890713,6.91927,8.84932,0.166001,6.92526,8.93268,0.199085,6.94523,9.07142,0.0895439,6.93712,9.03948,0.167727,7.05441,9.0076,0.0169452,7.04445,8.91637,-0.0163903,7.03047,8.83452,0.016911,7.02036,8.79188,0.0975456,7.02096,8.82921,0.178389,7.03118,8.91551,0.212257,7.0523,9.03625,0.0978706,7.04485,9.0126,0.179843,7.43014,8.9619,0.201487,7.42872,8.99897,0.125037,7.41852,8.8681,0.232416,7.41652,8.7817,0.201823,7.42257,8.76728,0.125628,7.42537,8.78077,0.0484707,7.43093,8.86686,0.0172997,7.43772,8.9651,0.0517244,6.99328,8.97449,-0.00114947,7.30425,8.93933,0.0375656,6.99212,8.92205,-0.0176071,7.30169,8.89229,0.00202675,6.9804,8.87235,0.0160168,7.29329,8.83736,0.0359974,6.96743,8.82396,0.0926262,7.28778,8.80389,0.116639,6.96818,8.8567,0.172338,7.28338,8.83857,0.196444,6.97835,8.91646,0.205396,7.28863,8.89348,0.231117,6.98659,8.98121,0.181593,7.29339,8.94433,0.19827,6.69581,9.10126,-0.00985292,6.70023,8.88235,-0.00465699,6.6958,8.83155,0.117055,6.65929,8.89105,0.167966,6.68857,8.94742,0.198485,6.69276,9.05548,0.17453,6.70713,9.11213,0.0796777,6.65261,9.13293,-0.390651,6.65269,9.09555,-0.310408,6.68731,9.00524,-0.287527,6.66722,8.91434,-0.305607,6.6447,8.86808,-0.383592,6.62493,8.90113,-0.463642,6.63316,8.97945,-0.49322,6.62493,9.08706,-0.475592,7.22454,9.0016,-0.405821,6.92601,9.05519,-0.352561,7.22598,8.95862,-0.375769,6.92658,9.0028,-0.330678,7.21511,8.91797,-0.407055,6.91622,8.9471,-0.359431,7.20383,8.88755,-0.481646,6.90513,8.90627,-0.433716,7.19341,8.92018,-0.555301,6.9012,8.95174,-0.507043,7.19435,8.96194,-0.587362,6.90367,9.00531,-0.538654,7.20321,9.00022,-0.554956,6.90348,9.05728,-0.522403,7.33757,9.01653,-0.57243,7.32393,8.94808,-0.603332,7.32549,8.87855,-0.57476,7.33816,8.849,-0.503496,7.3475,8.87638,-0.43086,7.35508,8.94497,-0.401144,7.35893,9.01432,-0.432594,6.98069,9.08814,-0.367273,6.97314,9.1088,-0.442634,6.9769,8.99605,-0.336763,6.96683,8.91175,-0.367503,6.95566,8.87068,-0.442541,6.95117,8.91563,-0.517932,6.9547,8.99827,-0.548984,6.96445,9.08227,-0.517726,6.87576,9.09699,-0.353099,6.8688,9.11998,-0.425758,6.87613,9.01135,-0.322509,6.86844,8.92765,-0.353322,6.85841,8.88562,-0.426399,6.85181,8.92947,-0.499202,6.85103,9.01192,-0.529086,6.85871,9.09915,-0.498039,7.25261,9.03343,-0.561688,7.23933,8.95896,-0.592222,7.23687,8.89594,-0.561143,7.24667,8.86529,-0.488786,7.25891,8.89373,-0.41589,7.27021,8.95572,-0.385134,7.26658,9.05269,-0.488869,7.27514,9.03129,-0.416253,7.1797,9.04889,-0.398472,7.16933,9.06772,-0.473322,7.17457,8.96509,-0.367309,7.16457,8.90306,-0.398725,7.15147,8.8713,-0.473501,7.14296,8.90513,-0.548164,7.14409,8.96829,-0.579531,7.15573,9.05112,-0.54828,7.20306,8.91943,-0.555906,7.20998,8.88744,-0.481412,7.22522,8.91739,-0.40737,7.20707,8.88677,-0.481576,7.21907,8.9167,-0.416333,7.20012,8.91937,-0.545717,6.91018,8.95096,-0.510073,6.91362,8.90516,-0.43581,6.9268,8.94549,-0.361695,6.90644,8.94893,-0.497492,6.90927,8.90485,-0.434767,6.92013,8.94271,-0.371603,7.08336,9.0642,-0.383395,7.07583,9.10651,-0.457821,7.0785,8.9791,-0.352893,7.06721,8.90209,-0.383586,7.05566,8.86357,-0.458717,7.05061,8.90364,-0.534012,7.05234,8.98178,-0.564525,7.06236,9.06636,-0.532815,6.78922,9.09618,-0.333,6.77133,9.1357,-0.409074,6.79246,9.02121,-0.298622,6.77842,8.92466,-0.330499,6.75415,8.87579,-0.407684,6.74507,8.91366,-0.486407,6.74751,9.00604,-0.520374,6.75714,9.08909,-0.486969,7.19791,9.07371,-0.477818,7.1857,9.05018,-0.5293,7.20313,9.04858,-0.426393,7.20313,9.02613,-0.550813,7.22613,9.02502,-0.417055,7.23476,9.04025,-0.536296,7.24363,9.06476,-0.485084,7.25004,9.03914,-0.435024,7.21477,9.05427,-0.52231,7.2301,9.04872,-0.523384,7.22651,9.04261,-0.440743,7.24096,9.04754,-0.445143,7.23606,9.05344,-0.483672,7.21131,9.05353,-0.439668,7.1972,9.05527,-0.518714,7.20458,9.05864,-0.478709,7.224,9.06681,-0.481411,6.89296,9.13309,-0.428599,6.88292,9.10115,-0.490243,6.89565,9.09858,-0.367067,6.90987,9.08788,-0.502739,6.9251,9.08847,-0.364907,6.94785,9.12879,-0.437754,6.94175,9.09522,-0.490331,6.95165,9.09941,-0.387567,6.94195,9.10348,-0.39418,6.92446,9.10973,-0.387328,6.91569,9.10728,-0.477652,6.93283,9.10025,-0.478364,6.93779,9.11822,-0.436691,6.90471,9.10175,-0.38285,6.8951,9.10354,-0.478167,6.90403,9.11957,-0.430861,6.92203,9.12887,-0.432926,7.03794,9.12201,-0.194396,7.01875,9.11218,-0.193122,7.01158,9.09467,-0.243276,7.01551,9.09256,-0.142514,7.05453,9.11034,-0.197006,7.05117,9.09443,-0.241408,7.03308,9.09978,-0.241742,7.03718,9.10161,-0.145891,7.05641,9.09471,-0.151785,7.067,9.09038,-0.14372,7.06133,9.09042,-0.254016,7.06564,9.12293,-0.197781,7.03722,9.07875,-0.121398,7.02766,9.07718,-0.268724,7.00516,9.09007,-0.125988,6.9992,9.09211,-0.256487,7.00716,9.12799,-0.19136,7.37326,9.0674,-0.225993,7.35215,9.05848,-0.224348,7.34698,9.05421,-0.268172,7.3571,9.05287,-0.181603,7.38705,9.0519,-0.227549,7.3907,9.04554,-0.186057,7.37451,9.04042,-0.182089,7.3839,9.0463,-0.270482,7.36701,9.0528,-0.270589,7.39988,9.03617,-0.174918,7.39549,9.06389,-0.228667,7.38988,9.03675,-0.283664,7.37277,9.02101,-0.156661,7.35658,9.02138,-0.301866,7.34727,9.047,-0.167494,7.33496,9.04809,-0.280582,7.34505,9.07481,-0.223905,6.84759,9.08817,-0.251574,6.83632,9.00725,-0.292701,6.83077,8.90731,-0.258935,6.82903,8.85458,-0.174914,6.84299,8.8933,-0.0922879,6.85619,8.98661,-0.0598055,6.86162,9.12986,-0.175449,6.85856,9.08246,-0.100682,7.19951,9.05621,-0.290908,7.18828,8.96518,-0.323641,7.18254,8.88409,-0.290917,7.18386,8.84091,-0.211244,7.19437,8.88283,-0.131693,7.20722,8.96337,-0.0988344,7.20951,9.10163,-0.211201,7.21211,9.05483,-0.131585,7.03076,8.93061,-0.12792,7.01986,8.88746,-0.194972,7.02088,8.93483,-0.261922,7.03754,8.92992,-0.116889,7.02352,8.88783,-0.195679,7.02501,8.93367,-0.275022,7.35207,8.90359,-0.296327,7.36463,8.90174,-0.155362,7.35601,8.86152,-0.22629,7.37127,8.90105,-0.145958,7.35943,8.86183,-0.225924,7.35654,8.90213,-0.306583,7.30375,9.04691,-0.30351,7.29401,8.95833,-0.337448,7.28956,8.88314,-0.303317,7.29462,8.84066,-0.22131,7.30384,8.88171,-0.139291,7.31349,8.95609,-0.105121,7.31379,9.0665,-0.221034,7.32019,9.04537,-0.138933,7.42603,9.02745,-0.153967,7.42056,9.05021,-0.231169,7.42026,8.94562,-0.121242,7.4083,8.87154,-0.153639,7.40018,8.83446,-0.231318,7.39259,8.87307,-0.308776,7.39888,8.94781,-0.341533,7.41105,9.02884,-0.309002,6.97302,9.08947,-0.264964,6.96436,9.00146,-0.296042,6.96127,8.9085,-0.264505,6.96352,8.86429,-0.188521,6.97266,8.90076,-0.112638,6.98111,8.98738,-0.0813244,6.97941,9.11418,-0.188825,6.98226,9.08691,-0.112633,7.08799,9.07758,-0.282301,7.07732,8.98273,-0.315384,7.06965,8.89628,-0.281829,7.06923,8.85305,-0.200581,7.08156,8.89486,-0.119452,7.09556,8.97815,-0.0856488,7.09278,9.10204,-0.201128,7.09816,9.07613,-0.119247,7.51806,9.00911,-0.166591,7.51132,8.93557,-0.133654,7.50516,8.85767,-0.16446,7.50021,8.81576,-0.241312,7.48976,8.85916,-0.317297,7.4898,8.93767,-0.347261,7.50319,9.01057,-0.31463,7.02216,9.04512,-0.289079,7.35653,8.99368,-0.30582,7.02175,8.99515,-0.305999,7.35129,8.9528,-0.341198,7.01592,8.93417,-0.27211,7.34658,8.90423,-0.307103,7.01578,8.88843,-0.194297,7.35342,8.86315,-0.22671,7.02693,8.93032,-0.115433,7.36052,8.90276,-0.145818,7.03918,8.98824,-0.0835585,7.37185,8.95054,-0.112323,7.03827,9.04164,-0.108034,7.37002,8.99608,-0.144699,6.68163,9.0928,-0.244473,6.69546,8.90641,-0.235676,6.69217,8.85604,-0.158524,6.7017,8.89696,-0.0844171,6.7142,8.98471,-0.0540639,6.6837,9.12411,-0.092907,6.71845,9.1424,-0.16431,5.86951,9.21105,-0.175842,5.79701,8.7662,-0.385583,5.7693,8.89384,-0.520211,5.77502,8.8033,-0.473093,5.7638,9.0921,-0.519892,5.82602,9.09622,0.123908,5.84427,9.18123,-0.0339205,5.7776,8.80159,0.0195716,5.79618,8.96692,0.117804,5.80296,9.18845,-0.393334,5.76522,9.01153,-0.537836,5.83294,8.77518,-0.191201,5.85582,9.2116,-0.294326,5.79599,9.14183,-0.474346,5.65632,9.13004,-0.454535,5.65902,9.20945,-0.291129,5.64104,8.78012,-0.203751,5.6575,9.17883,-0.385474,5.65666,8.96326,0.047487,5.64214,8.84798,-0.0553137,5.65935,9.09078,0.0433801,5.65577,9.06951,-0.488133,5.6575,8.82591,-0.437451,5.65646,8.90377,-0.480968,5.65655,8.78119,-0.333467,5.66001,9.21195,-0.17825,7.51619,9.04902,-0.243385,7.35843,9.04923,-0.507929,-5.58013,8.89256,-0.473009,-5.57979,9.06534,-0.490937,-5.57983,9.12742,-0.465539,-5.57984,9.18197,-0.397213,-5.57949,9.22038,-0.304712,-5.57887,9.22515,-0.188612,-5.57874,9.11086,0.0581205,-5.57926,8.97509,0.0700324,-5.57995,8.84946,-0.0363217,-5.58076,8.77634,-0.18167,-5.58135,8.81546,-0.43113,-5.58183,8.76374,-0.338404,-5.58379,8.98717,-0.499288,-5.58124,9.21781,-0.0782947,-5.65799,8.99372,-0.499144,-5.66043,9.18671,-0.0662581,-6.31627,8.86665,0.375432,-6.27009,8.78069,0.369749,-6.2921,8.88516,0.358448,-6.30867,8.81862,0.372625,-6.24232,8.78848,0.35739,-6.20552,8.93813,0.558679,-6.15728,8.85334,0.561713,-6.17718,8.95595,0.517657,-6.12286,8.86859,0.522483,-6.17244,8.90226,0.569123,-6.23387,8.97638,0.502003,-6.28062,8.97605,0.448437,-6.30109,8.92418,0.385186,-6.27538,8.8332,0.338711,-6.22274,8.75358,0.376716,-6.17147,8.74127,0.439205,-6.14036,8.92078,0.528682,-6.13675,8.81129,0.514987,-6.30343,8.71619,0.662258,-6.32831,8.68177,0.615231,-6.36816,8.7072,0.566649,-6.42938,8.76786,0.541738,-6.44764,8.85511,0.562607,-6.44754,8.90591,0.607801,-6.40275,8.90854,0.642789,-6.48557,8.85195,0.786139,-6.56092,8.84851,0.728565,-6.59653,8.78326,0.652722,-6.57694,8.69148,0.619722,-6.51053,8.6259,0.643673,-6.43015,8.62306,0.714874,-6.41688,8.78654,0.802317,-6.39469,8.69873,0.788091,-6.40587,8.8934,0.710933,-6.47616,8.88998,0.645445,-6.49348,8.83286,0.590535,-6.46957,8.74872,0.565916,-6.41468,8.68328,0.590113,-6.35731,8.6694,0.650672,-6.34689,8.82415,0.729643,-6.31968,8.73641,0.715443,-6.248,8.76261,0.646943,-6.27663,8.85415,0.660478,-6.29209,8.69059,0.575552,-6.3566,8.69691,0.521268,-6.42029,8.76298,0.494468,-6.44245,8.85937,0.518982,-6.41278,8.92164,0.570128,-6.33497,8.92807,0.644168,-6.46226,8.84807,0.586785,-6.44419,8.76374,0.565965,-6.38373,8.69715,0.593593,-6.43593,8.76379,0.553027,-6.37992,8.70872,0.580795,-6.45204,8.84287,0.577999,-6.18443,8.79035,0.563499,-6.1964,8.89258,0.600093,-6.22506,8.71778,0.488625,-6.26997,8.73132,0.42076,-6.3424,8.80291,0.408936,-6.3508,8.89153,0.428226,-6.33499,8.9519,0.492173,-6.26672,8.95473,0.56234,-6.28745,8.85188,0.690412,-6.33547,8.89716,0.666581,-6.27603,8.78499,0.669265,-6.37686,8.89934,0.663724,-6.30034,8.75675,0.669459,-6.37216,8.8793,0.698199,-6.32137,8.83722,0.718447,-6.31202,8.77157,0.70014,-6.3416,8.88135,0.691885,-6.35462,8.87334,0.699403,-6.30138,8.78776,0.684174,-6.30715,8.78925,0.699743,-6.32612,8.83305,0.703634,-6.28481,8.79764,0.680693,-6.32983,8.88483,0.678654,-6.30321,8.84261,0.683364,-6.30718,8.84271,0.705099,-5.8906,8.93225,0.258988,-6.3021,8.90113,0.225419,-6.27973,8.96582,0.26786,-5.91813,9.03856,0.270519,-6.0249,9.05491,0.274883,-6.21932,9.03027,0.267854,-6.1209,9.05673,0.280311,-5.89072,8.79661,0.197299,-6.29875,8.84062,0.167394,-5.97409,8.76088,0.177057,-6.08543,8.77489,0.154466,-6.18587,8.79994,0.153445,-6.04271,8.89365,0.436758,-6.03227,8.7991,0.380597,-6.07773,8.96511,0.453802,-6.11468,8.99783,0.442941,-6.25881,8.94642,0.322981,-6.22476,8.99314,0.377259,-6.23288,8.84258,0.278447,-6.27198,8.89537,0.298958,-6.17542,9.00065,0.412544,-6.06591,8.74895,0.319883,-6.18818,8.79545,0.270882,-6.13636,8.75047,0.273416,-6.04856,8.7859,-0.131984,-6.04893,8.77613,0.0322465,-6.04358,8.76489,-0.0502018,-6.19385,8.78295,0.0415062,-5.89185,8.75302,-0.15101,-5.89328,8.74627,0.0214232,-5.87255,8.73938,-0.0653099,-6.1931,8.80832,-0.0397358,-6.17826,8.81557,-0.12146,-5.96314,8.81839,-0.201593,-6.15312,8.82718,-0.180653,-6.06874,8.81328,-0.192491,-6.09818,9.20121,-0.0854787,-6.102,9.19976,-0.168481,-6.06339,9.19627,-0.269989,-6.03331,9.17737,-0.367568,-6.08018,9.17751,0.00409763,-6.06583,9.14528,0.106176,-6.00175,9.14381,-0.458081,-5.97228,9.10328,-0.539013,-5.97885,8.80604,-0.509287,-5.95854,8.85561,-0.581041,-5.95459,8.97064,-0.607211,-5.95865,9.06995,-0.578147,-5.99206,9.12511,-0.500575,-6.07347,9.10814,0.160347,-6.074,9.16417,0.0554986,-6.01569,9.16255,-0.412919,-6.05404,9.19225,-0.322691,-6.08285,9.19618,-0.214603,-6.09844,9.20331,-0.126625,-6.09363,9.19167,-0.0444263,-6.06848,8.85539,-0.241599,-6.06515,8.81693,-0.322016,-6.01075,8.7868,-0.431159,-5.79561,9.14829,0.01649,-5.7957,9.194,-0.116816,-5.78764,9.18242,-0.0573881,-5.85359,9.15634,0.0370836,-5.84192,9.19379,-0.0935425,-6.38458,8.81991,-0.466921,-6.33493,8.81804,-0.463687,-6.50385,8.8274,-0.25513,-6.41103,8.8406,-0.25227,-6.52154,8.82392,-0.0658187,-6.46466,8.85619,-0.0869274,-6.36443,8.81831,-0.510274,-6.28383,8.81618,-0.495272,-6.40977,8.8174,-0.432826,-6.29383,8.82705,-0.415568,-6.48477,8.82565,-0.296597,-6.34329,8.82864,-0.276254,-6.50856,8.82428,-0.226445,-6.37161,8.83836,-0.212967,-6.51956,8.81021,-0.00405114,-6.43219,8.83374,-0.0384028,-6.518,8.80213,-0.108916,-6.43006,8.828,-0.13259,-6.22815,8.84919,-0.453469,-6.29063,8.84909,-0.335376,-6.31624,8.82054,-0.34229,-6.3193,8.85726,-0.240596,-6.36414,8.85218,-0.178294,-6.39503,8.84059,-0.173056,-6.38672,8.85294,-0.0920703,-6.32453,9.15871,-0.0420658,-6.41578,9.1435,-0.0430815,-6.32792,9.18807,-0.133045,-6.41198,9.17979,-0.137786,-6.31075,9.1683,-0.220974,-6.40169,9.14924,-0.227028,-6.28314,9.18674,-0.344259,-6.38081,9.17639,-0.351198,-6.23888,9.15238,-0.433263,-6.33236,9.14608,-0.444205,-6.29227,9.15629,0.099451,-6.4017,9.15692,0.106755,-6.34106,8.95629,0.219245,-6.39965,8.95242,0.217866,-6.31347,9.04787,0.197632,-6.39139,9.04305,0.194881,-6.3666,8.8456,0.04723,-6.42638,8.84183,0.0655556,-6.3451,8.87762,0.139048,-6.413,8.87564,0.154894,-6.18396,9.1218,-0.531998,-6.26466,9.12543,-0.543392,-6.14432,9.07395,-0.608842,-6.21842,9.07436,-0.621766,-6.12791,8.95908,-0.647511,-6.19712,8.95263,-0.662688,-6.14648,8.85281,-0.614299,-6.21742,8.84702,-0.628914,-6.18363,8.81538,-0.543788,-6.24941,8.80757,-0.547403,-6.16002,9.09961,-0.572795,-6.23543,9.09868,-0.589468,-6.21136,9.13818,-0.479012,-6.29113,9.1399,-0.493672,-6.2928,9.10734,0.15872,-6.3997,9.10591,0.154256,-6.3095,9.15268,0.0271218,-6.41005,9.14005,0.0353637,-6.25653,9.16568,-0.393035,-6.35741,9.16166,-0.402826,-6.29923,9.17436,-0.269258,-6.39081,9.15817,-0.273045,-6.32205,9.17692,-0.176667,-6.40787,9.1637,-0.184169,-6.32992,9.17647,-0.087707,-6.41284,9.16698,-0.0950447,-6.5753,9.15759,-0.119801,-6.56594,9.14773,-0.18449,-6.23536,9.18242,-0.0870572,-6.2296,9.19063,-0.17032,-5.96059,9.19946,-0.0820735,-5.99693,9.20389,-0.166145,-6.50509,9.1532,-0.0993212,-6.51424,9.1516,-0.190992,-6.56974,9.16165,-0.155475,-6.53271,9.14245,-0.419036,-6.55417,9.13534,-0.306908,-6.19238,9.18185,-0.265325,-6.1439,9.17791,-0.380612,-5.95537,9.20103,-0.269504,-5.93507,9.18948,-0.346231,-6.50786,9.13859,-0.28524,-6.46464,9.15401,-0.41458,-6.56607,9.14924,-0.374932,-5.96668,9.174,0.000293727,-6.57155,9.09396,0.158523,-6.57139,9.12365,0.0534876,-6.20381,9.15999,0.00785885,-6.18088,9.13351,0.139238,-5.95678,9.15122,0.0672859,-6.51434,9.13172,0.0353895,-6.501,9.06699,0.161214,-6.58521,9.11426,0.104555,-6.37003,9.10702,-0.612219,-6.41871,9.12683,-0.537028,-6.10626,9.14032,-0.467825,-6.06692,9.09944,-0.554977,-5.90256,9.14662,-0.455376,-5.87519,9.11299,-0.521896,-6.38129,9.12867,-0.512335,-6.30615,9.09553,-0.607001,-6.41183,9.11693,-0.576703,-5.70453,8.77755,-0.270471,-5.6946,8.79901,-0.127961,-5.76198,8.7617,-0.272573,-5.73791,8.78693,-0.106468,-5.69771,8.78147,-0.199921,-5.82832,8.76072,-0.287901,-5.7903,8.75099,-0.0710157,-5.73733,8.82022,-0.451534,-5.74605,9.1735,-0.0604976,-5.75378,9.09937,0.0550136,-5.73619,8.96837,0.064211,-5.73328,8.90578,-0.49582,-5.73048,9.00664,-0.510541,-5.74486,8.7763,-0.363744,-5.75941,8.77823,-0.19633,-5.72396,8.84422,-0.0170676,-5.76147,9.2061,-0.1681,-5.72999,9.0834,-0.497354,-5.75505,9.21465,-0.289203,-5.73785,9.14155,-0.459136,-5.74386,9.18766,-0.386816,-6.08209,8.83472,-0.524408,-6.05364,8.85655,-0.599104,-6.04511,8.96496,-0.625226,-6.05225,9.06554,-0.594584,-6.08626,9.12292,-0.513861,-6.31577,8.88548,0.161645,-6.30412,8.82818,0.0338926,-6.18334,9.07236,0.203259,-6.29855,8.963,0.235825,-6.18423,9.15194,0.0735889,-6.12621,9.15753,-0.423661,-6.16636,9.19218,-0.329686,-6.21566,9.18115,-0.212798,-6.23401,9.19641,-0.12845,-6.22512,9.1688,-0.0458232,-6.30588,8.85752,-0.0730598,-6.26338,8.8543,-0.153386,-6.20874,8.8573,-0.226064,-6.19843,8.82342,-0.327937,-6.131,8.79628,-0.44292,-5.96981,9.2019,-0.131031,-5.93262,8.79469,-0.316082,-5.97333,9.19522,-0.314102,-5.99189,9.16092,0.0377313,-5.94662,9.12129,0.129622,-5.86343,9.07607,-0.557718,-5.86133,8.97975,-0.583961,-5.86203,8.85161,-0.561491,-5.87495,8.791,-0.495112,-5.9191,9.12817,-0.491675,-5.96243,9.19278,-0.0415124,-5.96427,9.20225,-0.204925,-5.9544,8.83007,-0.234021,-5.90973,9.17255,-0.40223,-5.89196,8.76891,-0.421779,-6.59076,8.81431,-0.156141,-6.64937,8.84076,-0.158743,-6.53134,8.82673,-0.381509,-6.59199,8.85756,-0.37597,-6.59966,8.82716,0.109235,-6.64856,8.82331,0.0867191,-6.33914,8.86113,-0.651946,-6.39436,8.86785,-0.6499,-6.36648,8.82328,-0.589503,-6.42311,8.84726,-0.596841,-6.59191,8.82133,-0.0836785,-6.65575,8.85763,-0.0897302,-6.6006,8.84715,-0.0436866,-6.65042,8.85609,-0.0464401,-6.59043,8.81471,0.0203602,-6.65389,8.84064,0.0173764,-6.58519,8.83969,-0.229741,-6.64948,8.87498,-0.230561,-6.55995,8.84613,-0.300755,-6.61876,8.87286,-0.305636,-6.57751,8.85502,-0.260405,-6.63457,8.88331,-0.26764,-6.50121,8.83126,-0.440133,-6.57065,8.87586,-0.451241,-6.4216,8.81715,-0.520615,-6.4918,8.85225,-0.535255,-6.46643,8.82481,-0.476235,-6.53997,8.8719,-0.490515,-6.50843,9.16308,-0.143188,-6.51566,8.81443,-0.173204,-6.44324,8.80617,-0.366737,-6.48091,9.16746,-0.358935,-6.5065,9.13878,0.108062,-6.48566,9.03755,0.20189,-6.48619,8.9649,0.21625,-6.50999,8.87238,0.17066,-6.51336,8.82628,0.0864486,-6.28839,9.07207,-0.63554,-6.25815,8.95144,-0.676418,-6.28413,8.8442,-0.641676,-6.32749,8.81539,-0.570869,-6.34323,9.12434,-0.55455,-6.53033,9.12477,-0.0436473,-6.52603,9.12645,-0.240445,-6.44818,9.1339,-0.463507,-6.61491,9.00758,-0.509292,-6.61883,8.98857,-0.507461,-6.59233,8.91914,-0.497036,-6.58931,9.05587,-0.509106,-6.60807,9.02151,-0.509477,-6.69219,9.02211,-0.287135,-6.69685,9.00427,-0.285605,-6.68443,8.92731,-0.274019,-6.68041,9.08127,-0.285904,-6.68609,9.03535,-0.28603,-6.71844,9.00968,-0.0433991,-6.71662,8.9904,-0.0418453,-6.69752,8.90841,-0.0436208,-6.72015,9.03027,-0.0446858,-6.70531,9.08794,-0.0481733,-6.71794,9.00707,-0.0563274,-6.71583,9.00451,-0.0305125,-6.68339,9.02501,-0.288084,-6.70098,9.01592,-0.277661,-6.59646,9.00109,-0.517002,-6.63359,8.9948,-0.495574,-6.58894,9.02125,-0.516741,-6.63125,9.01173,-0.497273,-6.67807,9.03783,-0.28866,-6.69611,9.03342,-0.278082,-6.7038,8.99658,-0.275947,-6.7134,9.03351,-0.0596773,-6.71269,8.9856,-0.0299886,-6.71357,9.02757,-0.0318104,-6.47112,9.10081,-0.595068,-6.53632,9.07378,-0.529707,-6.5984,8.97788,-0.516331,-6.55293,8.89139,-0.524276,-6.474,8.86997,-0.596531,-6.42941,8.88557,-0.651155,-6.39643,8.93071,-0.675108,-6.41841,9.03796,-0.664108,-6.93101,8.95299,-0.653788,-6.69512,9.00434,-0.577603,-6.93825,8.91402,-0.625458,-6.69704,8.9651,-0.550838,-6.92534,8.87376,-0.648649,-6.68362,8.9171,-0.57623,-6.90667,8.83984,-0.710875,-6.65988,8.86354,-0.637835,-6.89029,8.86502,-0.777629,-6.64584,8.88387,-0.702405,-6.88767,8.90246,-0.809211,-6.64419,8.92772,-0.736414,-6.89742,8.94196,-0.785243,-6.64782,8.98505,-0.725033,-7.01247,8.95709,-0.810406,-6.99842,8.89493,-0.829209,-7.00363,8.83671,-0.801382,-7.02122,8.81601,-0.742759,-7.03657,8.84444,-0.686802,-7.04471,8.90568,-0.667864,-7.02713,8.98629,-0.75347,-7.04374,8.96424,-0.698565,-6.73944,9.02877,-0.594465,-6.72066,9.04993,-0.662629,-6.7414,8.95269,-0.558114,-6.72532,8.87951,-0.579609,-6.70182,8.83617,-0.643044,-6.68555,8.8578,-0.713319,-6.68442,8.92553,-0.749195,-6.69935,9.02075,-0.728621,-6.64981,9.05052,-0.57487,-6.63355,9.0684,-0.646077,-6.65278,8.98145,-0.533824,-6.63979,8.89964,-0.559775,-6.61984,8.8497,-0.623409,-6.60298,8.86946,-0.690697,-6.59864,8.93642,-0.72676,-6.61288,9.03434,-0.705346,-6.94209,8.97413,-0.797966,-6.92869,8.9011,-0.816705,-6.93004,8.8452,-0.78478,-6.94619,8.82176,-0.721376,-6.9653,8.85327,-0.662488,-6.97792,8.91162,-0.641708,-6.959,8.99898,-0.736826,-6.97551,8.9809,-0.673425,-6.89354,8.99663,-0.646728,-6.87483,9.01253,-0.715185,-6.89477,8.92023,-0.611416,-6.88241,8.85982,-0.634371,-6.86066,8.82479,-0.698059,-6.84334,8.84944,-0.767373,-6.83988,8.90699,-0.801172,-6.85459,8.98888,-0.781559,-6.8989,8.86479,-0.779171,-6.91227,8.83997,-0.711572,-6.93478,8.87337,-0.65062,-6.90971,8.83924,-0.711303,-6.92767,8.87178,-0.65727,-6.8969,8.86494,-0.76986,-6.65248,8.88311,-0.706147,-6.66601,8.86282,-0.638294,-6.69085,8.91478,-0.579093,-6.65142,8.88309,-0.693858,-6.66293,8.86215,-0.637752,-6.68421,8.91241,-0.586819,-6.81999,9.00758,-0.620724,-6.80115,9.04796,-0.692122,-6.82263,8.93103,-0.585073,-6.80818,8.86628,-0.606976,-6.7843,8.82982,-0.670698,-6.76468,8.85364,-0.741204,-6.76029,8.91411,-0.775554,-6.77584,9.00139,-0.75574,-6.5857,9.06571,-0.543452,-6.54625,9.10182,-0.615889,-6.62057,8.99563,-0.521933,-6.57627,8.90096,-0.535082,-6.53151,8.85772,-0.603043,-6.50652,8.87552,-0.670605,-6.50189,8.94055,-0.706076,-6.51804,9.03903,-0.685022,-6.89857,9.01968,-0.721192,-6.8833,8.99289,-0.765108,-6.90919,8.9978,-0.672916,-6.89785,8.96772,-0.783617,-6.9313,8.97504,-0.665807,-6.92732,8.9835,-0.775181,-6.93807,9.01134,-0.731648,-6.95043,8.98831,-0.686023,-6.90976,8.99848,-0.761587,-6.92337,8.99307,-0.763869,-6.92865,8.99182,-0.688002,-6.94057,8.99643,-0.69409,-6.93145,9.00078,-0.728463,-6.91521,9.00246,-0.686182,-6.89468,8.99937,-0.756586,-6.90476,9.00554,-0.721036,-6.92043,9.01393,-0.726034,-6.65467,9.07737,-0.651782,-6.6369,9.03587,-0.697847,-6.66721,9.04926,-0.593367,-6.65692,9.02162,-0.710284,-6.69276,9.03261,-0.592902,-6.69925,9.06763,-0.65875,-6.68538,9.03239,-0.703385,-6.71133,9.04121,-0.615126,-6.70152,9.0466,-0.621379,-6.68827,9.05542,-0.61601,-6.66574,9.04291,-0.690221,-6.67973,9.03737,-0.69223,-6.69089,9.05802,-0.658486,-6.67227,9.05039,-0.609773,-6.64901,9.0379,-0.688369,-6.66355,9.06189,-0.652768,-6.67791,9.06951,-0.655819,-7.00161,9.07015,0.0948462,-6.98367,9.06373,0.0924703,-6.98071,9.03116,0.0412013,-6.97412,9.04053,0.143888,-7.01806,9.05332,0.0953328,-7.01811,9.02665,0.0502423,-7.00109,9.03598,0.0464938,-6.9955,9.04682,0.144247,-7.01396,9.03358,0.141821,-7.02211,9.02722,0.151104,-7.02823,9.02053,0.0400348,-7.02781,9.06191,0.0966464,-6.99007,9.02279,0.16839,-6.99758,9.01222,0.0195882,-6.96135,9.04218,0.158391,-6.97009,9.03183,0.0258361,-6.97194,9.08246,0.0919762,-7.31003,9.01593,0.117786,-7.2908,9.00625,0.116297,-7.29239,9.00172,0.0724442,-7.2889,9.00169,0.158989,-7.32162,9.00004,0.118564,-7.31814,8.99499,0.160089,-7.30358,8.98937,0.161649,-7.32494,8.99448,0.0756162,-7.31025,9.00081,0.0729575,-7.32466,8.98582,0.172793,-7.3291,9.01299,0.118497,-7.33213,8.98471,0.0635678,-7.29801,8.96995,0.1868,-7.30437,8.96804,0.0408518,-7.27765,8.99591,0.171401,-7.28314,8.99525,0.0585167,-7.28462,9.02338,0.115349,-6.8375,9.05095,0.00559878,-6.82875,8.96033,-0.0256551,-6.81406,8.86932,0.00584157,-6.80232,8.82022,0.0909673,-6.79547,8.85216,0.178684,-6.80155,8.94362,0.207866,-6.8351,9.09919,0.0828931,-6.8154,9.045,0.165552,-7.15844,9.00121,0.0270987,-7.14637,8.90318,-0.00549888,-7.1349,8.82447,0.0269039,-7.12628,8.78646,0.105828,-7.12573,8.82541,0.184485,-7.13386,8.90445,0.217061,-7.1599,9.05012,0.106309,-7.14925,9.0021,0.185266,-6.97485,8.85324,0.160419,-6.97221,8.82201,0.0928469,-6.98421,8.86968,0.0269517,-6.97993,8.85478,0.173037,-6.97743,8.82154,0.0933598,-6.99003,8.87109,0.0148857,-7.29785,8.83743,0.0476631,-7.28915,8.83765,0.187715,-7.29076,8.80239,0.117536,-7.2936,8.83539,0.198235,-7.29325,8.8028,0.118387,-7.30313,8.834,0.037819,-7.25816,8.99352,0.0313041,-7.24778,8.90054,-0.00227047,-7.23749,8.82613,0.0316757,-7.23023,8.79009,0.113231,-7.22802,8.82713,0.194092,-7.23461,8.90181,0.228226,-7.25532,9.0144,0.113443,-7.24897,8.99456,0.195178,-7.34558,8.97829,0.19805,-7.35245,8.99912,0.120116,-7.33509,8.8828,0.230601,-7.32956,8.79711,0.197129,-7.33232,8.76901,0.119667,-7.33848,8.79609,0.0414228,-7.34763,8.88174,0.00849241,-7.35458,8.97725,0.0415349,-6.94637,9.02817,0.0123083,-6.93831,8.92988,-0.0189614,-6.9284,8.85633,0.0130721,-6.92001,8.81653,0.0890713,-6.91927,8.84932,0.166001,-6.92526,8.93268,0.199085,-6.94523,9.07142,0.0895439,-6.93712,9.03948,0.167727,-7.05441,9.00761,0.0169452,-7.04445,8.91637,-0.0163902,-7.03047,8.83452,0.0169111,-7.02036,8.79188,0.0975457,-7.02096,8.82921,0.178389,-7.03118,8.91551,0.212257,-7.0523,9.03625,0.0978707,-7.04485,9.0126,0.179843,-7.43014,8.9619,0.201487,-7.42872,8.99897,0.125037,-7.41852,8.8681,0.232416,-7.41652,8.7817,0.201823,-7.42257,8.76728,0.125628,-7.42537,8.78077,0.0484707,-7.43093,8.86686,0.0172997,-7.43772,8.9651,0.0517245,-6.99329,8.97449,-0.00114942,-7.30425,8.93933,0.0375656,-6.99212,8.92205,-0.017607,-7.30169,8.89229,0.00202681,-6.9804,8.87235,0.0160168,-7.29329,8.83736,0.0359974,-6.96743,8.82396,0.0926262,-7.28778,8.80389,0.116639,-6.96818,8.8567,0.172338,-7.28338,8.83858,0.196444,-6.97835,8.91646,0.205396,-7.28863,8.89349,0.231117,-6.98659,8.98121,0.181593,-7.2934,8.94433,0.19827,-6.69581,9.10126,-0.00985286,-6.70023,8.88235,-0.00465694,-6.6958,8.83154,0.117055,-6.65929,8.89105,0.167966,-6.68857,8.94742,0.198485,-6.69277,9.05548,0.17453,-6.70713,9.11213,0.0796777,-6.65261,9.13293,-0.390651,-6.65269,9.09555,-0.310408,-6.68731,9.00524,-0.287527,-6.66722,8.91434,-0.305607,-6.6447,8.86808,-0.383592,-6.62493,8.90113,-0.463642,-6.63316,8.97945,-0.49322,-6.62493,9.08706,-0.475592,-7.22454,9.0016,-0.405821,-6.92601,9.05519,-0.352561,-7.22598,8.95862,-0.375769,-6.92658,9.0028,-0.330678,-7.21511,8.91797,-0.407055,-6.91622,8.9471,-0.359431,-7.20383,8.88756,-0.481646,-6.90513,8.90627,-0.433716,-7.19341,8.92018,-0.555301,-6.9012,8.95174,-0.507043,-7.19435,8.96194,-0.587362,-6.90368,9.00531,-0.538654,-7.20321,9.00022,-0.554956,-6.90348,9.05728,-0.522403,-7.33757,9.01653,-0.57243,-7.32393,8.94808,-0.603332,-7.32549,8.87855,-0.57476,-7.33816,8.849,-0.503496,-7.3475,8.87638,-0.43086,-7.35508,8.94497,-0.401144,-7.35893,9.01432,-0.432594,-6.98069,9.08815,-0.367273,-6.97314,9.1088,-0.442634,-6.97691,8.99605,-0.336763,-6.96683,8.91175,-0.367503,-6.95566,8.87068,-0.442541,-6.95117,8.91563,-0.517932,-6.9547,8.99828,-0.548983,-6.96445,9.08227,-0.517726,-6.87576,9.09699,-0.353099,-6.8688,9.11998,-0.425758,-6.87613,9.01135,-0.322509,-6.86844,8.92765,-0.353322,-6.85841,8.88562,-0.426399,-6.85181,8.92947,-0.499202,-6.85103,9.01192,-0.529086,-6.85871,9.09915,-0.498039,-7.25261,9.03343,-0.561688,-7.23934,8.95896,-0.592222,-7.23687,8.89594,-0.561143,-7.24667,8.86529,-0.488786,-7.25891,8.89373,-0.41589,-7.27021,8.95572,-0.385134,-7.26658,9.05269,-0.488869,-7.27514,9.03129,-0.416253,-7.1797,9.04889,-0.398471,-7.16933,9.06772,-0.473322,-7.17457,8.96509,-0.367309,-7.16457,8.90307,-0.398725,-7.15147,8.8713,-0.4735,-7.14296,8.90513,-0.548164,-7.14409,8.96829,-0.579531,-7.15573,9.05112,-0.54828,-7.20306,8.91943,-0.555906,-7.20998,8.88744,-0.481412,-7.22522,8.91739,-0.40737,-7.20707,8.88678,-0.481576,-7.21907,8.91671,-0.416333,-7.20012,8.91938,-0.545717,-6.91018,8.95096,-0.510073,-6.91362,8.90516,-0.43581,-6.9268,8.94549,-0.361695,-6.90644,8.94893,-0.497492,-6.90927,8.90485,-0.434767,-6.92013,8.94271,-0.371603,-7.08336,9.0642,-0.383395,-7.07583,9.10651,-0.457821,-7.0785,8.97911,-0.352893,-7.06721,8.90209,-0.383586,-7.05566,8.86357,-0.458717,-7.05061,8.90364,-0.534012,-7.05234,8.98179,-0.564525,-7.06236,9.06636,-0.532815,-6.78922,9.09618,-0.333,-6.77133,9.1357,-0.409074,-6.79246,9.02121,-0.298622,-6.77842,8.92466,-0.330499,-6.75415,8.87579,-0.407684,-6.74507,8.91366,-0.486408,-6.74751,9.00604,-0.520374,-6.75714,9.08909,-0.486969,-7.19791,9.07371,-0.477818,-7.1857,9.05018,-0.5293,-7.20313,9.04858,-0.426393,-7.20313,9.02613,-0.550813,-7.22613,9.02502,-0.417055,-7.23476,9.04025,-0.536296,-7.24363,9.06476,-0.485084,-7.25004,9.03915,-0.435024,-7.21477,9.05427,-0.52231,-7.2301,9.04872,-0.523384,-7.22651,9.04261,-0.440743,-7.24096,9.04754,-0.445143,-7.23606,9.05344,-0.483672,-7.21131,9.05353,-0.439668,-7.1972,9.05527,-0.518714,-7.20459,9.05864,-0.478709,-7.224,9.06681,-0.481411,-6.89296,9.13309,-0.428599,-6.88292,9.10115,-0.490243,-6.89565,9.09858,-0.367067,-6.90987,9.08788,-0.502739,-6.92511,9.08847,-0.364907,-6.94786,9.1288,-0.437754,-6.94175,9.09522,-0.490331,-6.95165,9.09941,-0.387567,-6.94195,9.10348,-0.39418,-6.92446,9.10973,-0.387328,-6.91569,9.10728,-0.477652,-6.93283,9.10025,-0.478364,-6.93779,9.11823,-0.436691,-6.90471,9.10175,-0.38285,-6.8951,9.10354,-0.478167,-6.90403,9.11957,-0.430861,-6.92203,9.12887,-0.432926,-7.03794,9.12201,-0.194396,-7.01875,9.11218,-0.193122,-7.01158,9.09467,-0.243276,-7.01551,9.09256,-0.142514,-7.05453,9.11034,-0.197006,-7.05117,9.09443,-0.241408,-7.03308,9.09978,-0.241741,-7.03718,9.10161,-0.145891,-7.05641,9.09471,-0.151785,-7.067,9.09038,-0.14372,-7.06133,9.09042,-0.254016,-7.06564,9.12293,-0.197781,-7.03722,9.07875,-0.121398,-7.02766,9.07718,-0.268723,-7.00516,9.09007,-0.125988,-6.9992,9.09211,-0.256487,-7.00716,9.12799,-0.19136,-7.37326,9.0674,-0.225992,-7.35215,9.05847,-0.224348,-7.34698,9.05421,-0.268172,-7.3571,9.05287,-0.181603,-7.38706,9.0519,-0.227549,-7.3907,9.04554,-0.186057,-7.37451,9.04042,-0.182089,-7.3839,9.0463,-0.270482,-7.36701,9.0528,-0.270589,-7.39988,9.03617,-0.174918,-7.3955,9.06389,-0.228667,-7.38988,9.03675,-0.283664,-7.37277,9.02101,-0.156661,-7.35659,9.02138,-0.301866,-7.34727,9.047,-0.167494,-7.33496,9.04809,-0.280582,-7.34505,9.07481,-0.223905,-6.84759,9.08817,-0.251574,-6.83632,9.00725,-0.2927,-6.83077,8.90731,-0.258935,-6.82903,8.85459,-0.174914,-6.84299,8.8933,-0.0922878,-6.85619,8.98661,-0.0598054,-6.86162,9.12986,-0.175449,-6.85855,9.08246,-0.100682,-7.19951,9.0562,-0.290908,-7.18828,8.96518,-0.323641,-7.18254,8.88409,-0.290917,-7.18386,8.84091,-0.211243,-7.19437,8.88283,-0.131693,-7.20722,8.96337,-0.0988343,-7.20951,9.10163,-0.211201,-7.21211,9.05483,-0.131584,-7.03076,8.93061,-0.12792,-7.01986,8.88746,-0.194972,-7.02088,8.93483,-0.261921,-7.03754,8.92992,-0.116889,-7.02352,8.88783,-0.195679,-7.02501,8.93367,-0.275022,-7.35207,8.90359,-0.296327,-7.36463,8.90174,-0.155362,-7.35601,8.86152,-0.22629,-7.37127,8.90105,-0.145958,-7.35944,8.86183,-0.225924,-7.35654,8.90213,-0.306583,-7.30375,9.04691,-0.30351,-7.29401,8.95833,-0.337448,-7.28956,8.88314,-0.303316,-7.29462,8.84066,-0.22131,-7.30385,8.88171,-0.139291,-7.31349,8.95609,-0.105121,-7.3138,9.0665,-0.221034,-7.32019,9.04537,-0.138933,-7.42603,9.02745,-0.153967,-7.42056,9.05021,-0.231169,-7.42026,8.94562,-0.121241,-7.4083,8.87154,-0.153639,-7.40018,8.83446,-0.231318,-7.39259,8.87307,-0.308776,-7.39888,8.94781,-0.341533,-7.41105,9.02884,-0.309002,-6.97302,9.08947,-0.264964,-6.96436,9.00146,-0.296041,-6.96127,8.9085,-0.264505,-6.96352,8.86429,-0.188521,-6.97266,8.90076,-0.112638,-6.98111,8.98738,-0.0813243,-6.97941,9.11418,-0.188825,-6.98226,9.08691,-0.112633,-7.08799,9.07758,-0.282301,-7.07732,8.98273,-0.315384,-7.06965,8.89628,-0.281829,-7.06923,8.85305,-0.200581,-7.08156,8.89486,-0.119452,-7.09556,8.97815,-0.0856487,-7.09278,9.10203,-0.201128,-7.09816,9.07613,-0.119247,-7.51806,9.00911,-0.16659,-7.51132,8.93557,-0.133654,-7.50516,8.85767,-0.16446,-7.50021,8.81576,-0.241312,-7.48976,8.85916,-0.317297,-7.4898,8.93767,-0.347261,-7.50319,9.01057,-0.31463,-7.02216,9.04512,-0.289079,-7.35653,8.99368,-0.30582,-7.02175,8.99515,-0.305998,-7.35129,8.9528,-0.341197,-7.01592,8.93417,-0.27211,-7.34658,8.90423,-0.307103,-7.01578,8.88843,-0.194297,-7.35342,8.86315,-0.22671,-7.02693,8.93032,-0.115433,-7.36052,8.90276,-0.145818,-7.03918,8.98824,-0.0835584,-7.37185,8.95054,-0.112323,-7.03827,9.04164,-0.108034,-7.37002,8.99608,-0.144699,-6.68163,9.0928,-0.244472,-6.69546,8.90642,-0.235676,-6.69217,8.85604,-0.158524,-6.7017,8.89696,-0.0844171,-6.7142,8.98471,-0.0540638,-6.6837,9.12411,-0.0929069,-6.71845,9.1424,-0.16431,-5.86951,9.21105,-0.175842,-5.79701,8.7662,-0.385583,-5.7693,8.89384,-0.520211,-5.77502,8.8033,-0.473093,-5.7638,9.0921,-0.519892,-5.82602,9.09622,0.123908,-5.84427,9.18123,-0.0339205,-5.7776,8.80159,0.0195716,-5.79618,8.96692,0.117803,-5.80296,9.18845,-0.393334,-5.76522,9.01153,-0.537836,-5.83294,8.77518,-0.191201,-5.85582,9.2116,-0.294326,-5.79599,9.14183,-0.474346,-5.65632,9.13004,-0.454535,-5.65902,9.20945,-0.291129,-5.64104,8.78012,-0.203751,-5.6575,9.17884,-0.385474,-5.65666,8.96326,0.047487,-5.64214,8.84798,-0.0553137,-5.65935,9.09078,0.0433802,-5.65577,9.06951,-0.488133,-5.6575,8.82591,-0.437451,-5.65646,8.90378,-0.480968,-5.65656,8.78119,-0.333467,-5.66001,9.21195,-0.17825,-7.51619,9.04903,-0.243385,-7.35843,9.04923,-0.507929,0.202102,6.11933,1.254,0.446821,6.12823,1.15857,0.161361,5.41375,1.28956,0.348257,5.38625,1.15124,0.236799,5.07566,0.940041,0.102598,4.96493,1.00327,0.0590471,4.93477,0.463749,0.0741056,4.93663,0.436198,0.0424693,4.96785,0.0189382,0.0585403,4.96849,0.0181274,0.0865388,5.1676,-0.62113,0.288026,5.10933,-0.571061,0.0695111,5.7645,-0.954723,0.256058,5.79184,-0.970809,0.137647,6.23887,-0.893728,0.259631,6.25827,-0.898473,0.181505,6.51102,-0.738394,0.301089,6.49741,-0.776265,0.64021,5.67636,1.00573,0.690757,6.13792,0.957668,0.944315,6.16301,0.638179,0.919392,5.9986,0.668535,1.09125,6.14465,0.323183,1.10442,6.28075,0.297585,1.07077,6.32757,-0.0292253,1.12205,6.16962,-0.0313013,0.963433,6.18372,-0.484513,0.916064,6.43732,-0.386607,1.10798,6.00133,0.328105,1.15554,5.83177,-0.0662757,0.956103,5.84381,0.682891,0.648029,5.48664,0.95671,0.359276,5.15571,0.942199,0.070438,4.94782,0.0189545,0.666496,6.47578,-0.651394,0.660952,6.24078,-0.811685,0.978748,5.85941,-0.597422,0.647369,5.84801,-0.92455,0.572932,5.18486,-0.677777,0.562285,5.01806,-0.502835,1.04584,5.518,-0.342138,0.946532,5.5397,-0.639306,0.819297,5.30781,-0.607615,0.796208,5.13157,-0.532105,0.0726687,5.43525,-0.855582,0.260682,5.42461,-0.897157,0.606812,5.39572,-0.879982,0.0699445,4.99571,-0.351735,0.143512,5.01101,-0.329955,0.170606,4.93753,-0.315606,0.310897,4.97461,-0.409768,0.19909,5.02238,0.838455,0.0878535,4.91708,0.415256,0.12448,4.55149,0.0181447,0.115702,4.62273,0.372547,0.226214,4.73136,0.745392,0.426023,4.51121,-0.432349,0.275576,4.46358,-0.315785,0.38757,4.87645,0.900632,0.662752,5.08603,0.929042,0.983684,5.4039,0.745963,1.20041,5.52334,0.390292,0.815288,4.81196,-0.465501,1.11883,5.13812,-0.226201,1.28055,5.35383,0.0454625,0.630278,4.66024,-0.492527,0.254271,3.83209,0.129459,0.250389,3.82865,0.358449,0.795948,3.85284,-0.335438,0.628853,3.83925,-0.288805,0.46377,3.83253,-0.241123,0.342778,3.82889,-0.136905,1.09728,3.91271,-0.215706,1.2133,3.95082,0.0102213,0.999159,3.97884,0.625147,1.20407,3.98226,0.24126,0.510677,3.87856,0.768608,0.738215,3.93231,0.771509,0.346094,3.85219,0.613938,0.199479,4.14468,0.0883186,0.193785,4.19581,0.358346,0.810146,4.24782,-0.493108,0.637454,4.18818,-0.436087,0.453529,4.14645,-0.349782,0.316204,4.1275,-0.216993,1.27196,4.54605,-0.0488473,1.11923,4.43283,-0.344665,0.994705,4.61423,0.664226,1.23858,4.66028,0.360957,0.451476,4.34676,0.762432,0.704863,4.46273,0.784615,0.296074,4.26346,0.647497,0.279469,3.56695,0.350919,0.378077,3.57362,0.610081,0.763179,3.61205,0.784711,0.545154,3.58,0.778151,1.18789,3.63743,0.225322,1.01171,3.63763,0.649606,1.18469,3.63596,0.0462727,1.08639,3.63214,-0.164758,0.36396,3.61962,-0.106701,0.472547,3.61998,-0.200527,0.622069,3.61981,-0.245861,0.785805,3.62062,-0.287858,0.280482,3.59457,0.136712,0.310794,3.27408,0.108858,0.315972,3.24404,0.332647,0.79169,3.31854,-0.322428,0.631584,3.32079,-0.284445,0.499508,3.31581,-0.230491,0.39861,3.30815,-0.13043,1.07389,3.31289,-0.176051,1.1448,3.30703,0.0271583,1.04977,3.28812,0.564466,1.15477,3.30832,0.188918,0.631233,3.24059,0.727644,0.796811,3.26964,0.722389,0.410378,3.24519,0.57402,0.431057,2.70669,-0.269775,0.482634,1.96936,-0.280789,0.370175,2.69611,-0.00644183,0.435417,1.9614,-0.0356348,0.394159,2.68494,0.253601,0.456676,1.95738,0.217004,0.454505,2.69049,0.473117,0.54573,1.96253,0.383198,0.679279,2.65864,0.62635,0.716692,1.95707,0.537311,0.865036,2.66224,0.621741,0.852243,1.96137,0.530134,1.10692,2.70714,0.441119,1.08408,1.96329,0.368997,1.22931,2.7028,0.084996,1.19821,1.95717,0.0291508,1.22047,2.71112,-0.107447,1.18772,1.96511,-0.14552,1.12006,2.71904,-0.3145,1.09527,1.96898,-0.31548,0.829777,2.72009,-0.456138,0.841005,1.97159,-0.44557,0.531299,2.71268,-0.369004,0.573089,1.97167,-0.371144,0.672642,2.71717,-0.418103,0.702698,1.97078,-0.415205,0.211812,4.88229,0.794346,0.366024,4.76033,-0.433107,0.0940014,4.7621,0.00924449,0.595508,4.8517,-0.502284,1.08069,5.33433,-0.269866,1.21841,5.59105,-0.00684149,1.18354,5.76689,0.354678,0.973092,5.63022,0.71916,0.648027,5.27274,0.957871,0.804901,4.97857,-0.489809,0.365631,5.01798,0.92737,0.100592,4.77644,0.394224,0.219783,4.71699,-0.335171,1.01176,6.06811,0.499433,1.03346,6.21848,0.47404,1.0393,5.91432,0.508831,1.14744,5.47181,0.570297,1.12732,3.97978,0.434445,1.14211,4.63931,0.521308,1.10201,3.63979,0.43657,1.10403,3.29961,0.354832,1.19054,2.69697,0.252778,1.16215,1.95254,0.187774,1.08553,5.70212,0.539432,0.524795,1.38504,-0.215873,0.508905,1.3895,0.00448297,0.604984,1.38355,0.361719,0.751792,1.39469,0.468996,0.864594,1.38785,0.464007,1.05606,1.37976,0.351734,1.16385,1.36978,0.0208227,1.16201,1.38369,-0.152291,1.08332,1.39486,-0.28458,0.861087,1.39585,-0.385702,0.61014,1.38849,-0.306111,0.737518,1.39455,-0.357141,0.509709,1.37048,0.202719,1.12139,1.36702,0.187705,0.179747,5.80113,1.31062,0.455499,5.81434,1.22207,0.159882,6.37777,-0.814831,0.280389,6.38007,-0.836331,0.665675,5.93489,0.981412,0.931643,6.13581,0.650616,1.09764,6.25382,0.308271,1.09609,6.30008,-0.0304753,0.939227,6.31168,-0.435489,0.66373,6.36004,-0.730744,1.01766,6.18784,0.48132,0.353369,3.72426,-0.121803,0.267377,3.71333,0.133085,0.362085,3.7129,0.612009,0.527915,3.72928,0.77338,0.750697,3.77218,0.77811,1.00544,3.80824,0.637377,1.19598,3.80985,0.233291,1.19899,3.79339,0.028247,1.09183,3.77243,-0.190232,0.790876,3.73673,-0.311648,0.468159,3.72626,-0.220825,0.625461,3.72953,-0.267333,0.264929,3.6978,0.354684,1.11467,3.80978,0.435507,0.295638,3.43433,0.122785,0.788747,3.46958,-0.305143,0.626826,3.4703,-0.265153,0.486028,3.46789,-0.215509,0.381285,3.46388,-0.118565,1.16474,3.4715,0.0367155,1.08014,3.47251,-0.170404,1.03074,3.46287,0.607036,1.17133,3.47287,0.20712,0.588193,3.41029,0.752897,0.779995,3.44085,0.75355,0.394227,3.4094,0.59205,0.29772,3.40549,0.341783,1.10302,3.4697,0.395701,1.10793,0.294454,0.180335,0.524089,0.297754,0.194666,0.741532,0.320729,-0.339718,0.61995,0.314945,-0.29101,0.859478,0.321968,-0.366979,1.0716,0.321021,-0.270458,1.14671,0.310359,-0.144189,1.14846,0.297085,0.0210469,1.04558,0.306614,0.3369,0.862826,0.314334,0.444064,0.755156,0.32086,0.448826,0.615029,0.310232,0.34643,0.523322,0.315905,0.00545075,0.538488,0.311654,-0.204878,-0.202102,6.11933,1.254,-0.446821,6.12823,1.15857,2.66684e-15,6.11519,1.26609,0,5.43088,1.31914,-0.161361,5.41375,1.28956,-0.348257,5.38625,1.15124,-0.236799,5.07566,0.940041,-0.102598,4.96493,1.00327,0,4.94287,1.00406,0,4.92531,0.467763,-0.0590471,4.93477,0.463749,-0.0741056,4.93663,0.436198,-0.0424693,4.96785,0.0189382,-0.0585403,4.96849,0.0181274,0,4.96605,0.0185854,0,5.21195,-0.625146,-0.0865388,5.1676,-0.62113,-0.288026,5.10933,-0.571061,-0.0695111,5.7645,-0.954723,-1.77997e-15,5.74233,-0.922814,-0.256058,5.79184,-0.970809,-0.137647,6.23887,-0.893728,-0.259631,6.25827,-0.898473,3.55608e-15,6.26041,-0.838631,-0.181505,6.51102,-0.738394,4.44397e-15,6.49838,-0.691591,-0.301089,6.49741,-0.776265,-0.64021,5.67636,1.00573,-0.690757,6.13792,0.957668,-0.944315,6.16301,0.638179,-0.919392,5.9986,0.668535,-1.09125,6.14465,0.323183,-1.10442,6.28075,0.297585,-1.07077,6.32757,-0.0292253,-1.12205,6.16962,-0.0313013,-0.963433,6.18372,-0.484513,-0.916064,6.43732,-0.386607,-1.10798,6.00133,0.328105,-1.15554,5.83177,-0.0662757,-0.956103,5.84381,0.682891,-0.648029,5.48664,0.95671,-0.359276,5.15571,0.942199,-0.070438,4.94782,0.0189545,-0.666496,6.47578,-0.651394,-0.660952,6.24078,-0.811685,-0.978748,5.85941,-0.597422,-0.647369,5.84801,-0.92455,-0.572932,5.18486,-0.677777,-0.562285,5.01806,-0.502835,-1.04584,5.518,-0.342138,-0.946532,5.5397,-0.639306,-0.819297,5.30781,-0.607615,-0.796208,5.13157,-0.532105,9.05965e-16,5.45268,-0.830096,-0.0726687,5.43525,-0.855582,-0.260682,5.42461,-0.897157,-0.606812,5.39572,-0.879982,0,5.01691,-0.354513,-0.0699445,4.99571,-0.351735,-0.143512,5.01101,-0.329955,-0.170606,4.93753,-0.315606,-0.310897,4.97461,-0.409768,-0.19909,5.02238,0.838455,-0.0878535,4.91708,0.415256,-0.12448,4.55149,0.0181447,-0.115702,4.62273,0.372547,-0.226214,4.73136,0.745392,-0.426023,4.51121,-0.432349,-0.275576,4.46358,-0.315785,-0.38757,4.87645,0.900632,-0.662752,5.08603,0.929042,-0.983684,5.4039,0.745963,-1.20041,5.52334,0.390292,-0.815288,4.81196,-0.465501,-1.11883,5.13812,-0.226201,-1.28055,5.35383,0.0454625,-0.630278,4.66024,-0.492527,-0.254271,3.83209,0.129459,-0.250389,3.82865,0.358449,-0.795948,3.85284,-0.335438,-0.628853,3.83925,-0.288805,-0.46377,3.83253,-0.241123,-0.342778,3.82889,-0.136905,-1.09728,3.91271,-0.215706,-1.2133,3.95082,0.0102213,-0.999159,3.97884,0.625147,-1.20407,3.98226,0.24126,-0.510677,3.87856,0.768608,-0.738215,3.93231,0.771509,-0.346094,3.85219,0.613938,-0.199479,4.14468,0.0883186,-0.193785,4.19581,0.358346,-0.810146,4.24782,-0.493108,-0.637454,4.18818,-0.436087,-0.453529,4.14645,-0.349782,-0.316204,4.1275,-0.216993,-1.27196,4.54605,-0.0488473,-1.11923,4.43283,-0.344665,-0.994705,4.61423,0.664226,-1.23858,4.66028,0.360957,-0.451476,4.34676,0.762432,-0.704863,4.46273,0.784615,-0.296074,4.26346,0.647497,-0.279469,3.56695,0.350919,-0.378077,3.57362,0.610081,-0.763179,3.61205,0.784711,-0.545154,3.58,0.778151,-1.18789,3.63743,0.225322,-1.01171,3.63763,0.649606,-1.18469,3.63596,0.0462727,-1.08639,3.63214,-0.164758,-0.36396,3.61962,-0.106701,-0.472547,3.61998,-0.200527,-0.622069,3.61981,-0.245861,-0.785805,3.62062,-0.287858,-0.280482,3.59457,0.136712,-0.310794,3.27408,0.108858,-0.315972,3.24404,0.332647,-0.79169,3.31854,-0.322428,-0.631584,3.32079,-0.284445,-0.499508,3.31581,-0.230491,-0.39861,3.30815,-0.13043,-1.07389,3.31289,-0.176051,-1.1448,3.30703,0.0271583,-1.04977,3.28812,0.564466,-1.15477,3.30832,0.188918,-0.631233,3.24059,0.727644,-0.796811,3.26964,0.722389,-0.410378,3.24519,0.57402,-0.431057,2.70669,-0.269775,-0.482634,1.96936,-0.280789,-0.370175,2.69611,-0.00644183,-0.435417,1.9614,-0.0356348,-0.394159,2.68494,0.253601,-0.456676,1.95738,0.217004,-0.454505,2.69049,0.473117,-0.54573,1.96253,0.383198,-0.679279,2.65864,0.62635,-0.716692,1.95707,0.537311,-0.865036,2.66224,0.621741,-0.852243,1.96137,0.530134,-1.10692,2.70714,0.441119,-1.08408,1.96329,0.368997,-1.22931,2.7028,0.084996,-1.19821,1.95717,0.0291508,-1.22047,2.71112,-0.107447,-1.18772,1.96511,-0.14552,-1.12006,2.71904,-0.3145,-1.09527,1.96898,-0.31548,-0.829777,2.72009,-0.456138,-0.841005,1.97159,-0.44557,-0.531299,2.71268,-0.369004,-0.573089,1.97167,-0.371144,-0.672642,2.71717,-0.418103,-0.702698,1.97078,-0.415205,-0.211812,4.88229,0.794346,-0.366024,4.76033,-0.433107,-0.0940014,4.7621,0.00924449,-0.595508,4.8517,-0.502284,-1.08069,5.33433,-0.269866,-1.21841,5.59105,-0.00684149,-1.18354,5.76689,0.354678,-0.973092,5.63022,0.71916,-0.648027,5.27274,0.957871,-0.804901,4.97857,-0.489809,-0.365631,5.01798,0.92737,-0.100592,4.77644,0.394224,-0.219783,4.71699,-0.335171,-1.01176,6.06811,0.499433,-1.03346,6.21848,0.47404,-1.0393,5.91432,0.508831,-1.14744,5.47181,0.570297,-1.12732,3.97978,0.434445,-1.14211,4.63931,0.521308,-1.10201,3.63979,0.43657,-1.10403,3.29961,0.354832,-1.19054,2.69697,0.252778,-1.16215,1.95254,0.187774,-1.08553,5.70212,0.539432,-0.524795,1.38504,-0.215873,-0.508905,1.3895,0.00448297,-0.604984,1.38355,0.361719,-0.751792,1.39469,0.468996,-0.864594,1.38785,0.464007,-1.05606,1.37976,0.351734,-1.16385,1.36978,0.0208227,-1.16201,1.38369,-0.152291,-1.08332,1.39486,-0.28458,-0.861087,1.39585,-0.385702,-0.61014,1.38849,-0.306111,-0.737518,1.39455,-0.357141,-0.509709,1.37048,0.202719,-1.12139,1.36702,0.187705,-8.89076e-16,5.80808,1.2854,-0.179747,5.80113,1.31062,-0.455499,5.81434,1.22207,4.88856e-15,6.38153,-0.76427,-0.159882,6.37777,-0.814831,-0.280389,6.38007,-0.836331,-0.665675,5.93489,0.981412,-0.931643,6.13581,0.650616,-1.09764,6.25382,0.308271,-1.09609,6.30008,-0.0304753,-0.939227,6.31168,-0.435489,-0.66373,6.36004,-0.730744,-1.01766,6.18784,0.48132,-0.353369,3.72426,-0.121803,-0.267377,3.71333,0.133085,-0.362085,3.7129,0.612009,-0.527915,3.72928,0.77338,-0.750697,3.77218,0.77811,-1.00544,3.80824,0.637377,-1.19598,3.80985,0.233291,-1.19899,3.79339,0.028247,-1.09183,3.77243,-0.190232,-0.790876,3.73673,-0.311648,-0.468159,3.72626,-0.220825,-0.625461,3.72953,-0.267333,-0.264929,3.6978,0.354684,-1.11467,3.80978,0.435507,-0.295638,3.43433,0.122785,-0.788747,3.46958,-0.305143,-0.626826,3.4703,-0.265153,-0.486028,3.46789,-0.215509,-0.381285,3.46388,-0.118565,-1.16474,3.4715,0.0367155,-1.08014,3.47251,-0.170404,-1.03074,3.46287,0.607036,-1.17133,3.47287,0.20712,-0.588193,3.41029,0.752897,-0.779995,3.44085,0.75355,-0.394227,3.4094,0.59205,-0.29772,3.40549,0.341783,-1.10302,3.4697,0.395701,-1.10793,0.294454,0.180335,-0.524089,0.297754,0.194666,-0.741532,0.320729,-0.339718,-0.61995,0.314945,-0.29101,-0.859478,0.321968,-0.366979,-1.0716,0.321021,-0.270458,-1.14671,0.310359,-0.144189,-1.14846,0.297085,0.0210469,-1.04558,0.306614,0.3369,-0.862826,0.314334,0.444064,-0.755156,0.32086,0.448826,-0.615029,0.310232,0.34643,-0.523322,0.315905,0.00545075,-0.538488,0.311654,-0.204878,-0.192241,10.3794,-0.743572,-0.0197206,10.3091,-0.766787,0.201106,9.79205,0.538102,-0.620924,10.3055,-0.144583,0.607833,10.1717,-0.104929,0.533473,10.2292,-0.411271,0.358467,10.2701,-0.689836,0.158504,10.2714,-0.758145,0.525118,10.1549,0.0445123,-0.395702,10.4227,-0.67413,-0.559998,10.37,-0.398389,-0.557157,10.2158,0.0762444,-0.522547,10.1434,0.28518,-0.368166,10.0216,0.394988,0.468227,10.1117,0.131367,0.332485,9.84833,0.43429,0.4276,10.0292,0.229741,-0.0424529,9.8035,0.5692,-0.29824,9.92511,0.465696,-0.185903,9.86678,0.515466,-0.543499,10.154,-0.138455,0.520575,10.0201,-0.147968,-0.0190935,10.0576,-0.738599,-0.380643,10.1461,-0.649498,0.344579,9.97681,-0.664602,-0.538634,10.1396,-0.384341,0.512868,9.93755,-0.396728,0.434113,10.0551,0.11098,-0.511419,10.1311,0.0552057,0.466966,10.0736,0.0104088,-0.184992,10.1045,-0.716275,0.152291,10.0006,-0.730289,0.181343,9.76696,0.480314,-0.0432173,9.77945,0.517603,-0.286314,9.89996,0.42006,-0.488971,10.0662,0.217173,0.309044,9.82852,0.378949,0.381365,10.0016,0.193109,-0.363157,9.99407,0.351247,-0.176063,9.84126,0.465752,-0.258325,9.76307,0.672439,-0.268667,9.76452,0.617345,-0.331039,9.68016,0.436026,-0.287666,9.82746,0.49627,-0.298112,9.81855,0.452347,-0.195744,9.8923,0.56518,-0.232779,9.82498,0.684348,-0.340318,9.70072,0.436046,-0.35139,9.52749,0.48094,-0.294157,9.8064,0.428414,-0.298364,9.82642,0.471419,-0.293029,9.82602,0.488563,-0.2964,9.81677,0.4302,-0.295964,9.77442,0.416508,-0.291307,9.81306,0.538657,-0.379929,9.59025,0.489731,-0.322943,9.72961,0.428446,-0.357578,9.63057,0.467797,-0.327499,9.74802,0.429718,-0.262457,9.76469,0.636347,-0.27988,9.82885,0.512443,-0.48762,9.80961,0.312314,-0.482854,9.9048,0.464051,-0.660099,9.62325,0.350099,-0.538058,9.77054,0.303843,-0.60721,9.66821,0.326059,-0.560239,9.78263,0.31914,-0.424937,9.88342,0.55409,-0.467596,9.90937,0.444241,-0.602741,9.82752,0.124501,-0.660318,9.85885,0.177725,-0.792466,9.61789,-0.0243661,-0.816871,9.73648,0.0295829,-0.634775,9.93625,0.315278,-0.373175,10.0491,0.438728,-0.701767,9.7468,0.0131154,-0.63052,9.94386,0.314136,-0.505399,10.0261,0.51595,-0.796093,9.716,0.0370114,-0.52442,10.027,0.457758,-0.607239,9.9831,0.354788,-0.913534,9.6918,0.05754,-0.677815,9.78142,0.0634265,-0.532187,10.026,0.444873,-0.758482,9.8044,0.10812,-0.506402,10.0511,0.543827,-0.647384,9.88329,0.23038,-0.609456,10.0032,0.363669,-0.646144,9.87572,0.192378,-0.640002,9.91478,0.299149,0.612371,9.772,-0.371671,0.593483,9.76332,-0.0614647,0.674537,9.62545,-0.133485,0.788426,9.65384,-0.113125,0.725368,9.69754,-0.11998,0.682017,9.68629,-0.415289,0.66275,9.683,-0.123176,0.572987,9.73047,-0.441778,0.545471,9.71926,-0.125758,0.665431,9.85454,-0.183909,0.623227,9.85051,0.0579934,0.658441,9.86838,0.0927399,0.661063,9.83787,0.0410357,0.739287,9.75804,-0.320577,0.716445,9.753,-0.0372122,0.577416,9.82976,-0.00512039,0.656151,9.9866,0.163366,0.747325,9.89092,-0.141548,0.728352,9.89066,0.120091,0.701168,9.93727,-0.0940868,0.686178,9.93706,0.149316,0.678376,9.94652,0.151284,0.627932,10.0024,-0.0439428,0.653378,10.0069,0.165356,0.625329,10.0789,0.0863175,0.590567,10.0434,0.240136,0.626209,10.0885,0.100655,0.591078,10.0724,0.261621,0.473835,10.0568,0.266374,0.619095,10.1594,0.1683,0.600279,10.1262,0.316575,0.568876,10.1247,0.33938,0.446485,9.75199,0.315358,0.53749,9.54851,0.377587,0.507838,9.60876,0.347823,0.476758,9.71717,0.306545,0.483528,9.63591,0.322048,0.451278,9.69487,0.29575,0.425526,9.83389,0.352051,0.427385,9.857,0.37301,0.424755,9.81493,0.339976,0.439136,9.77349,0.328576,0.434673,9.79756,0.331725,0.436351,9.92214,0.459388,0.461983,9.8819,0.415148,0.455456,9.89986,0.437735,0.446945,9.91136,0.450685,0.447105,9.92308,0.485832,0.491176,9.8955,0.492412,0.355927,9.86814,0.48963,0.427878,9.90428,0.576285,-0.696225,9.80713,-0.367239,-0.803908,9.61928,-0.386288,-0.959361,9.69365,-0.414351,-0.719748,9.76698,-0.409719,-0.827246,9.72887,-0.408421,-0.673449,9.91829,-0.217221,-0.639176,9.89809,-0.262859,-0.667133,9.8607,-0.328016,-0.77346,9.81256,-0.394308,-0.644496,9.9851,-0.0128183,-0.690045,9.92698,-0.194245,-0.65159,9.92768,-0.0839027,-0.677941,10.2002,0.339069,-0.641412,9.99157,0.0217382,-0.616479,10.1857,0.246132,-0.613733,10.1649,0.242645,-0.556124,10.2205,0.353187,-0.679228,10.227,0.410003,-0.55348,9.72268,0.293558,-0.482288,9.89991,0.421459,-0.417526,9.8839,0.603793,-0.43497,9.87999,0.546982,-0.601346,9.57268,0.298101,-0.588771,9.73729,0.301665,-0.499457,9.87569,0.36371,-0.496963,9.86765,0.342725,-0.496858,9.85443,0.334305,-0.498337,9.89203,0.396565,-0.490226,9.89667,0.415778,-0.310167,9.95026,0.511332,-0.383552,9.93287,0.635975,0.483407,9.90432,0.522957,0.45359,9.89826,0.540269,0.240678,9.70379,0.492114,-0.0416884,9.73283,0.550112,0.219953,9.70588,0.448748,-0.0416884,9.73308,0.513944,0.235436,9.66588,0.45631,-0.0416884,9.66964,0.52868,0.256079,9.50078,0.576614,-0.0416884,9.50553,0.627771,0.229565,9.6818,0.453221,-0.0416884,9.69154,0.519589,0.250381,9.64063,0.461776,-0.0416884,9.64311,0.539113,0.258381,9.58918,0.497106,-0.0416884,9.59043,0.575694,0.26337,9.55913,0.514623,-0.0416884,9.56561,0.592957,0.242806,9.62264,0.469237,-0.0416884,9.62199,0.548445,0.235307,9.70669,0.470643,-0.0416884,9.73223,0.538465,0.23103,9.70465,0.465169,-0.0416884,9.74044,0.507813,0.217536,9.69765,0.443949,-0.0416884,9.7155,0.505522,-0.0420899,9.71246,0.615796,0.230936,9.70849,0.545575,-0.0416884,9.7849,0.720469,-0.0416884,9.732,0.58387,0.228567,9.70319,0.521806,-0.0416884,9.73152,0.571002,0.231431,9.70141,0.5136,-0.0433006,9.71805,0.732557,-0.0416884,9.73117,0.56281,0.233583,9.70063,0.507318,0.230709,9.75618,0.662566,-0.0483091,9.70225,0.723667,0.233463,9.74546,0.653521,-0.0476851,9.69417,0.686055,0.235838,9.70884,0.611723,-0.0416884,9.82755,0.620796,0.220869,9.81713,0.595889,0.242416,9.79455,0.682266,-0.0249139,10.6685,-1.02245,0.598196,10.1839,0.222701,-0.855797,10.4714,-0.133852,-0.519882,10.8443,-0.887818,0.164718,10.5421,-0.786002,-0.19949,10.6543,-0.770869,0.583271,10.2362,0.0786157,-0.602894,10.3004,0.097283,0.50234,10.1683,0.151753,0.554079,10.5209,-0.425814,-0.581362,10.6005,-0.412437,0.372356,10.5633,-0.715071,-0.41076,10.6992,-0.698761,-0.0203478,10.5606,-0.794975,0.695091,10.3233,-0.0618889,-0.698349,10.4569,-0.15071,0.17381,10.3197,-0.999362,0.633326,10.0978,-0.0616496,-0.6666,10.1205,-0.0354692,-0.656479,10.2675,-0.342737,0.639416,10.2199,-0.638709,-0.569912,10.3662,-0.882442,0.767497,10.1422,-0.33165,-0.0353277,10.4344,-1.09467,-0.214703,10.5235,-1.33517,-0.390166,10.5185,-1.2094,0.398251,10.2871,-0.954468,0.179708,10.3391,-1.08094,0.632942,10.1101,-0.0476796,-0.663268,10.1394,-0.0161691,-0.649825,10.2714,-0.336666,0.643092,10.2515,-0.725472,-0.563592,10.37,-0.876061,0.768119,10.1524,-0.318485,-0.0329243,10.4502,-1.07316,-0.213639,10.5391,-1.34072,-0.38563,10.5313,-1.20007,0.403537,10.3088,-1.02366,0.737327,10.0784,-0.448235,-0.0598781,10.2728,-1.31429,-0.225577,10.3633,-1.27847,-0.436503,10.3875,-1.3058,0.344262,10.0653,-1.32837,-0.535634,10.3868,-0.846946,0.667437,10.5003,-0.693895,-0.620532,10.2887,-0.307596,0.635148,10.1897,0.023018,0.822558,10.2853,-0.182061,-0.212257,10.5723,-1.33338,-0.365562,10.555,-1.15847,0.447262,10.5486,-0.991641,0.191314,10.4762,-1.08667,0.141683,9.93648,-1.42751,-0.000190979,10.0576,-1.34754,-0.177683,10.0922,-1.31086,0.747842,9.92456,-0.243755,-0.684167,10.0151,-0.271306,-0.657919,9.92183,-0.0979201,0.707687,9.93682,-0.590067,-0.740857,10.0711,-0.547746,0.503926,9.86542,-1.04188,0.320817,9.89973,-1.31959,-0.38373,10.0241,-1.18439,-0.569291,10.1427,-0.882946,-0.651024,10.2274,0.0671914,-0.0258682,10.5054,-1.11521,0.135039,9.94872,-1.40749,-0.0302296,10.0449,-1.38024,-0.222688,10.0702,-1.37947,0.692718,9.94672,-0.0874986,0.740021,9.93341,-0.227898,-0.680032,10.0146,-0.256444,0.701863,9.95179,-0.552432,-0.745389,10.088,-0.513048,0.499479,9.86676,-1.01568,0.315023,9.90766,-1.29876,-0.43522,10.0046,-1.26088,-0.602186,10.1203,-0.94007,0.111574,10.1174,-1.39577,-0.0536488,10.2484,-1.41964,-0.204236,10.3517,-1.38805,0.646334,9.98488,-0.050721,0.741729,10.0176,-0.197392,-0.690427,10.0812,-0.186356,0.715095,10.0631,-0.467266,-0.709572,10.2113,-0.419907,0.500551,9.96927,-0.997358,0.312148,10.0257,-1.29336,-0.420833,10.3319,-1.26609,-0.606106,10.2946,-0.934136,0.873553,10.3672,-0.140417,0.472959,10.672,-0.908823,-0.736173,10.7191,-0.577402,0.70335,10.6182,-0.595762,-0.66017,10.3123,0.138235,0.690109,10.2363,0.0879279,-0.252032,10.7873,-0.990222,0.209714,10.6451,-1.00526,0.113565,10.1206,-1.28537,0.747346,10.0267,-0.186011,-0.701578,10.0788,-0.176381,0.530153,9.9979,-1.01428,-0.634467,10.3273,-0.94927,-0.724671,10.2275,-0.404712,-0.459751,9.66598,-1.03592,0.340411,9.73648,-1.07636,0.593542,9.83051,-0.265798,-0.555117,9.76219,-0.743168,0.537519,9.71721,-0.826327,-0.636999,9.81877,-0.489072,0.60768,9.79123,-0.513109,-0.0313179,9.65044,-1.30734,-0.27951,9.59555,-1.20135,0.184525,9.72007,-1.22938,-0.14418,9.62538,-1.27994,0.0698515,9.68019,-1.29099,-0.0163831,9.77928,-1.3649,-0.137204,9.74887,-1.33475,0.101484,9.78634,-1.34463,-0.657115,9.89571,-0.430914,0.655538,9.84164,-0.407443,-0.592833,9.85352,-0.697053,0.596661,9.79166,-0.764358,-0.295363,9.65189,-1.24153,0.228697,9.79587,-1.27481,-0.504645,9.74653,-1.03093,0.392029,9.79405,-1.08968,-0.00173437,9.76095,-1.41842,-0.142004,9.71917,-1.38465,0.130891,9.77446,-1.39394,0.69182,9.85561,-0.173129,-0.680041,9.90936,-0.417169,0.695882,9.82034,-0.39432,-0.628205,9.87967,-0.701242,0.642336,9.77554,-0.784873,-0.301992,9.6329,-1.28685,0.265446,9.78674,-1.31224,-0.542701,9.75255,-1.06893,0.437511,9.78613,-1.11368,-0.0140289,8.99192,-1.24624,-0.125271,9.02779,-1.22492,0.0928789,9.03023,-1.23042,-0.694023,9.59899,-0.680932,0.632437,9.60185,-0.735909,-0.582589,9.39442,-0.890996,0.519659,9.48926,-0.929486,-0.261573,9.10537,-1.1613,0.213119,9.13698,-1.17715,-0.426122,9.17758,-1.04045,0.346674,9.32487,-1.0645,-0.00894995,8.55837,-1.30413,-0.249749,8.51351,-1.2734,0.25134,8.605,-1.27203,0.816867,9.65301,-0.371601,-0.95262,9.47232,-0.796524,0.911374,9.5498,-0.725978,-0.873762,9.20785,-1.00201,0.86504,9.37662,-0.937361,-0.496526,8.52894,-1.17276,0.508358,8.73763,-1.17858,-0.716877,8.84222,-1.05872,0.713102,8.99926,-1.03391,-0.00711289,8.74462,-1.23275,-0.16713,8.78278,-1.20915,0.172865,8.78028,-1.21027,-0.811548,9.5318,-0.770524,0.756538,9.58542,-0.764939,-0.718454,9.29084,-0.957958,0.689869,9.4333,-0.94619,-0.343117,8.87836,-1.13077,0.352703,8.89042,-1.14098,-0.546884,9.01011,-1.03691,0.53344,9.13627,-1.02559,-0.0123506,8.84576,-1.37816,-0.174944,8.9033,-1.34565,0.164328,8.88346,-1.36554,-0.848548,9.74968,-0.426032,0.754624,9.71502,-0.427946,-0.856201,9.52718,-0.770012,0.8143,9.62215,-0.748507,-0.753848,9.30691,-0.984293,0.663675,9.50861,-0.973239,-0.348299,9.04174,-1.2567,0.31407,9.02861,-1.30205,-0.573278,9.08041,-1.1265,0.470137,9.31318,-1.15522,-0.635387,9.4435,-1.06352,0.536177,9.56072,-1.09435,-0.764123,9.57083,-0.86449,0.710015,9.63287,-0.929135,-0.795232,9.70753,-0.599381,0.784098,9.71599,-0.65947,-0.0194991,9.29034,-1.39314,-0.449183,9.33794,-1.24429,0.332813,9.49067,-1.27034,-0.219644,9.27925,-1.35629,0.150049,9.37282,-1.36865,-0.174565,8.65158,-1.07132,0.176058,8.71488,-1.07271,-0.783763,9.49074,-0.709644,0.730805,9.51369,-0.752101,0.676243,9.63359,-0.376644,-0.533001,8.9239,-0.928315,0.531938,9.04527,-0.912461,-0.356395,8.7114,-1.00306,0.367158,8.82447,-1.01255,-0.00635651,8.66683,-1.09171,-0.77773,9.1879,-0.864416,0.67086,9.33867,-0.858618,-0.627545,9.59959,-0.772288,0.573011,9.64773,-0.864843,-0.03157,9.35785,-1.24259,-0.344578,9.38058,-1.12738,0.233348,9.51363,-1.15791,-0.500991,9.4718,-0.972831,0.398608,9.58556,-1.02566,-0.682959,9.73757,-0.525867,0.645528,9.72512,-0.615347,-0.169056,9.3381,-1.21202,0.0903418,9.41872,-1.22396,-0.154779,9.59189,-1.37056,0.118548,9.65379,-1.38089,-0.706833,9.87106,-0.461265,0.709876,9.79288,-0.462235,-0.660297,9.88311,-0.29564,0.660852,9.82515,-0.197694,-0.536181,9.66162,-1.08207,0.433097,9.74197,-1.12149,-0.320723,9.55027,-1.27464,0.251472,9.71576,-1.30146,-0.00735954,9.6146,-1.40423,-0.624868,9.79976,-0.743375,0.643912,9.72709,-0.836435,-0.714904,9.97125,-0.712415,0.735316,9.85589,-0.77226,-0.00194463,9.84459,-1.56953,-0.369803,9.67669,-1.41213,0.350985,9.85691,-1.42949,-0.634666,9.84911,-1.14084,0.521799,9.8581,-1.18423,-0.706991,9.9755,-0.368519,0.791056,9.87972,-0.335052,-0.178,9.77838,-1.53085,0.177574,9.87033,-1.5356,5.64066,8.78992,-0.205702,7.67367,8.98887,-0.257284,7.67785,8.98177,-0.195032,7.66119,8.93969,-0.168375,7.64233,8.89347,-0.192492,7.63468,8.86767,-0.25454,7.62984,8.89469,-0.316354,7.64359,8.9414,-0.342848,7.66534,8.983,-0.31926,7.36813,8.99103,-0.153122,7.37048,8.95092,-0.122221,7.35905,8.90997,-0.152585,7.35028,8.87263,-0.226288,7.3459,8.91132,-0.300081,7.35183,8.95288,-0.331212,7.35643,8.98862,-0.2972,7.68212,8.93162,-0.258698,7.50006,9.0028,-0.309173,7.49028,8.93774,-0.337273,7.49004,8.86605,-0.310058,7.49957,8.82574,-0.241167,7.50402,8.86469,-0.171491,7.50982,8.93583,-0.143537,7.48931,9.02914,-0.237117,7.51388,9.00146,-0.171497,7.50828,8.9919,-0.303046,7.49858,9.01534,-0.238331,7.52074,8.99069,-0.179359,7.66615,8.97468,-0.200177,7.65489,8.97579,-0.312017,7.66549,8.98986,-0.256449,7.67931,8.98573,-0.201559,7.68684,9.00343,-0.258468,7.66808,8.98684,-0.313078,7.51031,9.00683,-0.303224,7.5228,9.00563,-0.179259,7.49764,9.0311,-0.237917,7.41098,9.02169,-0.302008,7.40034,8.94765,-0.331642,7.39581,8.87986,-0.302179,7.40377,8.84379,-0.231577,7.41008,8.87847,-0.160617,7.41957,8.94571,-0.131217,7.4183,9.04047,-0.231052,7.42471,9.0203,-0.160831,7.35981,8.90884,-0.299924,7.36493,8.87016,-0.226516,7.37328,8.90771,-0.15314,7.35761,8.87139,-0.2264,7.36572,8.90999,-0.160907,7.35314,8.9119,-0.290874,7.58355,8.98861,-0.319821,7.56884,8.93649,-0.340851,7.5611,8.88014,-0.313708,7.5682,8.85187,-0.247987,7.57442,8.87885,-0.181643,7.58745,8.93466,-0.155815,7.59712,8.98694,-0.178143,7.5951,8.97801,-0.18531,7.58293,8.9795,-0.31258,7.58586,8.99385,-0.313324,7.59812,8.99232,-0.184682,7.5938,9.01355,-0.248995,7.35581,9.01553,-0.293789,7.3707,9.01439,-0.16387,7.38961,9.02875,-0.277662,7.396,9.0539,-0.22882,7.39954,9.02785,-0.180452,7.36547,9.04415,-0.265814,7.3837,9.03736,-0.266001,7.37227,9.0321,-0.187161,7.39133,9.03664,-0.190574,7.38672,9.04192,-0.228059,7.37112,9.05764,-0.226512,7.22199,9.05703,-0.481868,7.2361,9.04345,-0.484244,7.24164,9.03862,-0.449619,7.22417,9.0342,-0.445616,7.23048,9.03968,-0.519118,7.21371,9.0455,-0.517628,7.2496,9.03079,-0.440498,7.24437,9.05479,-0.485362,7.23509,9.03215,-0.530447,7.22367,9.01834,-0.424075,7.20292,9.02012,-0.542822,7.42713,9.01878,-0.51498,7.43482,8.9984,-0.454332,7.41603,9.00055,-0.575662,7.41329,8.98704,-0.574873,7.43192,8.98493,-0.454839,7.43422,8.99319,-0.448104,7.42634,8.94419,-0.426681,7.41264,8.89244,-0.450764,7.40309,8.86803,-0.513487,7.39264,8.89438,-0.575284,7.39838,8.94693,-0.601148,7.41346,8.99552,-0.581726,7.20117,8.92805,-0.540859,7.21949,8.92543,-0.421197,7.20789,8.89674,-0.481568,7.22654,8.92458,-0.414196,7.21458,8.89629,-0.482093,7.20631,8.9266,-0.549742,7.27355,9.02413,-0.423046,7.26445,9.04292,-0.488691,7.26915,8.95598,-0.395074,7.26034,8.90111,-0.422494,7.25015,8.87466,-0.489152,7.24037,8.90309,-0.555085,7.2416,8.95886,-0.582484,7.25311,9.02619,-0.554814,7.33648,9.03499,-0.499217,7.36266,9.01079,-0.445092,7.34484,9.0126,-0.561798,7.4941,8.99395,-0.57974,7.5148,9.00905,-0.52901,7.51091,8.9923,-0.474891,7.49453,8.99636,-0.525996,7.48171,8.98368,-0.578128,7.49857,8.98203,-0.472899,7.36064,8.99677,-0.445139,7.33752,9.02026,-0.499767,7.34294,8.99858,-0.561602,7.35455,9.00668,-0.437318,7.32889,9.03298,-0.498068,7.35313,8.94542,-0.410942,7.34656,8.88388,-0.437412,7.33835,8.859,-0.503372,7.32665,8.88585,-0.56802,7.32511,8.94823,-0.593403,7.33482,9.00869,-0.566864,7.51001,8.94193,-0.529288,7.20387,8.99504,-0.546426,7.19573,8.96231,-0.577465,7.19326,8.92766,-0.548665,7.20123,8.89719,-0.481048,7.21348,8.92564,-0.41327,7.22424,8.95938,-0.385587,7.22232,8.99654,-0.414157,7.49116,8.99035,-0.585461,7.46928,8.95143,-0.606858,7.45778,8.90774,-0.581315,7.46585,8.88228,-0.52321,7.4765,8.90592,-0.464756,7.49563,8.94887,-0.44273,7.50989,8.98852,-0.468659,7.50216,8.99541,-0.527219,7.58741,8.93709,0.134064,7.58186,8.93051,0.196565,7.56181,8.88586,0.221065,7.54728,8.83614,0.194925,7.54908,8.80787,0.132604,7.55445,8.83544,0.0701572,7.57191,8.88488,0.045287,7.58908,8.92982,0.071403,7.29306,8.93653,0.189577,7.28796,8.8947,0.221162,7.28015,8.85436,0.189642,7.28162,8.81904,0.116503,7.28858,8.85353,0.0425592,7.2997,8.89355,0.0119873,7.30298,8.9317,0.0462981,7.59413,8.87617,0.134796,7.43542,8.94914,0.0556602,7.42946,8.87999,0.0271865,7.4242,8.8096,0.0551961,7.42196,8.78057,0.125455,7.41618,8.81038,0.194793,7.41824,8.88108,0.222372,7.41527,8.97763,0.125096,7.42746,8.94993,0.194379,7.44196,8.93751,0.063173,7.42369,8.9631,0.125522,7.43478,8.93822,0.18779,7.57174,8.92268,0.189761,7.57824,8.92206,0.0770924,7.57977,8.93804,0.133619,7.58425,8.93468,0.190256,7.60003,8.95288,0.134704,7.59073,8.93406,0.0778993,7.44407,8.95336,0.0630857,7.43688,8.95407,0.187982,7.4229,8.98001,0.125548,7.35346,8.9679,0.0486799,7.3462,8.89034,0.0185215,7.33678,8.82737,0.0481969,7.33208,8.79603,0.119909,7.32859,8.82818,0.190707,7.33469,8.89144,0.220683,7.35004,8.98857,0.120022,7.34547,8.96868,0.191059,7.30189,8.85296,0.0447409,7.29523,8.81884,0.118549,7.29342,8.8538,0.191496,7.28841,8.81894,0.117527,7.28793,8.85431,0.182598,7.295,8.85456,0.0527968,7.51382,8.93487,0.0581881,7.50255,8.87929,0.0358514,7.49032,8.82014,0.0624209,7.48645,8.79168,0.129102,7.48268,8.82088,0.19545,7.49179,8.88031,0.22223,7.50495,8.93538,0.200794,7.50405,8.92558,0.19351,7.51203,8.92513,0.0654096,7.51506,8.9404,0.0649085,7.50694,8.94083,0.194382,7.51296,8.96247,0.129625,7.30232,8.96043,0.0489974,7.29716,8.96133,0.179229,7.33085,8.97523,0.0697237,7.32991,9.00228,0.118601,7.32537,8.97584,0.167253,7.30789,8.99112,0.0777162,7.3242,8.98432,0.0803173,7.30212,8.97966,0.15621,7.31988,8.98477,0.15581,7.32162,8.98932,0.118131,7.30787,9.00557,0.117038,6.9185,9.00413,-0.725684,6.93103,8.99079,-0.728392,6.94033,8.98744,-0.698472,6.92554,8.98343,-0.692468,6.92423,8.98468,-0.758502,6.90937,8.9903,-0.755847,6.94896,8.97993,-0.691279,6.93851,9.00136,-0.731245,6.92827,8.97626,-0.768344,6.92787,8.96836,-0.672414,6.89849,8.96288,-0.774891,7.08432,8.96365,-0.770892,7.09622,8.9494,-0.72297,7.07009,8.94338,-0.8158,7.06826,8.93175,-0.814033,7.09414,8.93773,-0.7222,7.09645,8.94523,-0.717721,7.09326,8.90487,-0.697125,7.08122,8.8597,-0.711246,7.06805,8.83525,-0.757554,7.05389,8.85328,-0.80644,7.05501,8.89589,-0.830508,7.06763,8.93857,-0.819947,6.89805,8.87387,-0.765508,6.92681,8.87999,-0.662905,6.90984,8.84921,-0.712029,6.93443,8.87996,-0.658124,6.91599,8.84908,-0.713347,6.90224,8.87238,-0.773585,6.9727,8.97357,-0.679621,6.95652,8.98936,-0.735639,6.97496,8.91127,-0.651253,6.9649,8.86013,-0.669749,6.94867,8.83136,-0.722698,6.93345,8.85287,-0.779347,6.93151,8.90196,-0.807151,6.94313,8.96781,-0.790281,7.01724,8.97842,-0.751598,7.04381,8.95979,-0.709522,7.01826,8.9539,-0.800676,7.12792,8.94025,-0.826398,7.14903,8.95753,-0.789047,7.15146,8.94578,-0.744372,7.13499,8.94627,-0.784255,7.11865,8.93075,-0.823014,7.14215,8.93627,-0.741142,7.04248,8.94753,-0.708459,7.01757,8.96571,-0.750969,7.01699,8.94157,-0.799364,7.03844,8.95654,-0.702113,7.01031,8.97766,-0.749553,7.04108,8.90537,-0.677177,7.03397,8.85124,-0.69366,7.02052,8.82598,-0.743226,7.00485,8.84439,-0.795096,7.0003,8.89594,-0.819441,7.01002,8.95006,-0.803734,7.14789,8.89696,-0.784633,6.89881,8.93798,-0.776174,6.8895,8.90379,-0.799472,6.89027,8.87285,-0.771404,6.90375,8.84941,-0.710721,6.92252,8.88074,-0.655222,6.93485,8.91409,-0.634863,6.92751,8.94766,-0.661492,7.1251,8.9362,-0.830384,7.10668,8.90018,-0.842517,7.10105,8.86384,-0.818182,7.11326,8.84598,-0.771253,7.12705,8.86996,-0.727604,7.14339,8.90881,-0.714643,7.15132,8.94236,-0.739034,7.14101,8.94555,-0.785936,6.48998,8.7564,0.865961,6.46722,8.68488,0.852216,6.54609,8.80882,0.851895,6.55622,8.80221,0.840759,6.47558,8.68075,0.839265,6.46589,8.67697,0.847064,6.48167,8.63833,0.800025,6.53391,8.64287,0.755223,6.5992,8.6927,0.742157,6.62125,8.76636,0.759728,6.60448,8.81224,0.806317,6.55366,8.81314,0.847421,6.32748,8.74005,0.709919,6.35223,8.82097,0.721814,6.36035,8.68477,0.651814,6.41012,8.69564,0.602493,6.46305,8.75357,0.578757,6.48581,8.83036,0.599296,6.47095,8.88149,0.646876,6.40717,8.88474,0.70612,6.4109,8.79216,0.788117,6.4085,8.71301,0.791551,6.48538,8.83694,0.790339,6.59284,8.77462,0.91993,6.56108,8.72354,0.947204,6.53359,8.66719,0.924406,6.55398,8.72546,0.9165,6.59282,8.77418,0.90039,6.52987,8.66719,0.902945,6.41884,8.70731,0.779712,6.42432,8.78481,0.778594,6.49683,8.83005,0.779279,6.40111,8.70694,0.780282,6.40673,8.79388,0.778853,6.42628,8.65755,0.727389,6.48666,8.66028,0.680364,6.54453,8.71651,0.661859,6.56966,8.79193,0.680227,6.55189,8.84124,0.732692,6.48635,8.84522,0.778782,6.60418,8.69767,0.891154,6.59789,8.77969,0.915192,6.6333,8.79025,0.871189,6.64581,8.75014,0.828429,6.62506,8.68232,0.808568,6.56832,8.63516,0.825169,6.5307,8.62595,0.871525,6.53111,8.66018,0.91966,6.56074,8.72234,0.92385,1.21737,9.53133,-0.448082,1.40162,9.47178,0.262551,1.30654,9.63357,-0.206991,1.46176,9.13475,-0.650022,1.08078,9.33628,-0.602687,1.39849,9.63128,-0.00197868,1.62297,8.80308,0.0993095,1.42615,8.79005,0.356225,1.60033,8.58477,-0.287381,1.61991,8.63059,-0.0815446,1.50952,8.62187,-0.55945,1.74763,9.52214,-0.250404,1.56093,9.39883,-0.511213,1.76818,9.37851,0.292151,1.80179,9.51701,0.049988,1.48199,8.83394,-0.625891,1.5896,8.5393,-0.40615,1.69956,9.02634,0.285672,1.44712,9.01548,0.322602,3.09687,8.95932,0.14535,3.08718,8.70514,-0.368344,3.07203,8.94841,-0.668311,3.11801,9.32407,-0.0429022,3.11668,9.14076,0.0716837,3.07562,9.34108,-0.550414,3.10482,9.42212,-0.283003,3.08379,8.73221,-0.539643,3.09132,8.68293,-0.055541,3.09109,8.67669,-0.205581,3.09544,8.76411,0.0682914,3.07723,9.22892,-0.625634,3.36671,9.25246,-0.650018,3.37855,8.77694,-0.0104906,3.38181,8.69485,-0.223619,3.38079,8.69957,-0.0974994,3.37528,8.76717,-0.514176,3.37729,9.4551,-0.28725,3.36303,9.38132,-0.573674,3.41171,9.15168,-0.062825,3.39639,9.35403,-0.0867581,3.38207,8.98253,-0.729022,3.37941,8.72097,-0.378073,3.38992,8.95899,0.0306416,3.67677,8.92032,0.0464183,3.66354,8.73627,-0.395405,3.72276,9.01041,-0.663786,3.68358,9.37423,-0.0602922,3.70415,9.13216,-0.0408277,3.6502,9.44046,-0.507057,3.65983,9.49152,-0.236385,3.66036,8.79432,-0.519406,3.66423,8.68611,-0.10913,3.66553,8.69458,-0.240357,3.66213,8.74923,-0.000624639,3.65391,9.30373,-0.592611,2.12035,8.95443,0.312094,2.75305,8.94448,0.260216,2.16271,9.24464,0.287933,2.77786,9.16575,0.206228,2.07626,8.73634,0.17369,2.73451,8.72889,0.164155,1.96736,8.6939,-0.554391,2.68385,8.72217,-0.526497,1.99516,8.60825,-0.41789,2.69115,8.68961,-0.4107,2.01594,8.57385,-0.25797,2.70093,8.63924,-0.244334,1.95311,8.91474,-0.627429,2.66799,8.94808,-0.654772,1.93176,9.16286,-0.650022,2.66683,9.16658,-0.644515,2.17526,9.47259,0.0604886,2.78538,9.37328,0.0133864,2.11494,9.51083,-0.250259,2.76784,9.46297,-0.262635,1.99683,9.40619,-0.511213,2.69077,9.37026,-0.520064,2.02916,8.63061,-0.0048831,2.70828,8.64084,-0.00291803,4.52807,8.7375,-0.382488,5.09983,8.84914,-0.41521,4.52471,8.66704,-0.276249,5.10077,8.77179,-0.350961,4.52052,8.65553,-0.139298,5.09616,8.73323,-0.245183,4.5198,9.35512,-0.0195722,5.06645,9.20669,0.0332032,4.52124,9.40164,-0.250677,5.06891,9.29213,-0.137966,4.52469,9.33567,-0.368075,5.07334,9.28151,-0.244325,4.53143,9.19359,0.0886739,5.0736,9.05948,0.0881668,4.54947,8.93939,0.0451699,5.08254,8.89592,0.0238059,4.52699,9.13609,-0.548565,5.08579,9.1881,-0.435938,4.525,8.94031,-0.546353,5.09371,9.03931,-0.488755,4.52656,8.84329,-0.485265,5.0956,8.95223,-0.467176,4.53099,8.7583,-0.00825124,5.08897,8.78147,-0.0957502,1.8845,8.99403,0.280685,1.91614,9.29815,0.287264,1.85305,8.77042,0.0772314,1.68028,8.62722,-0.539282,1.72112,8.56653,-0.394336,1.82966,8.59072,-0.258301,1.67277,8.81657,-0.601814,1.67484,9.1225,-0.650022,1.92429,9.50662,0.0688235,1.91382,9.52706,-0.248198,1.82611,9.39765,-0.510453,1.81626,8.66679,-0.0637031,4.07704,8.71165,-0.306155,4.07424,8.67358,-0.185196,4.07252,8.70179,-0.0614413,4.06888,9.43301,-0.133696,4.06918,9.42688,-0.386892,4.07176,9.32186,-0.487957,4.08696,9.29436,0.0117633,4.10634,9.04203,0.00221113,4.07357,9.05848,-0.610871,4.07477,8.86157,-0.533149,4.07552,8.78435,-0.438063,4.08584,8.84215,0.0248275,3.08146,9.1045,-0.684916,3.38072,9.14539,-0.711113,3.07649,8.86627,-0.621626,3.37006,8.85808,-0.642737,3.19366,9.1712,-0.675955,3.39306,9.18687,-0.620804,3.71482,9.18257,-0.573226,4.52613,9.24514,-0.485524,5.08041,9.25126,-0.357614,4.07331,9.19131,-0.580949,3.17298,8.82723,-0.600068,3.36641,8.82177,-0.564851,3.67616,8.87822,-0.583936,4.52609,9.02983,-0.572456,5.09036,9.11299,-0.484586,4.07299,8.94309,-0.592349,3.61373,8.91056,-0.623096,3.64025,9.13445,-0.656145,3.66633,9.012,-0.660721,2.42859,8.95404,0.291979,2.45874,9.1947,0.252357,2.39964,8.73532,0.17919,2.30919,8.72175,-0.543404,2.32652,8.65817,-0.417001,2.34131,8.60763,-0.250857,2.29334,8.93877,-0.641359,2.28827,9.16701,-0.647533,2.4664,9.42954,0.0409799,2.45192,9.48577,-0.255204,2.33209,9.38896,-0.515213,2.35503,8.63533,0.00310197,5.57868,9.20879,-0.0817853,5.58386,8.98781,-0.489309,5.58018,8.77341,-0.336416,5.58052,8.82284,-0.424443,5.57914,8.7858,-0.184473,5.57835,8.85716,-0.0425029,5.57709,8.97779,0.0606541,5.57611,9.10623,0.0496596,5.57691,9.21536,-0.189068,5.57803,9.21069,-0.302691,5.5787,9.1733,-0.392374,5.57906,9.12122,-0.45773,5.57943,9.06255,-0.48134,5.58031,8.8963,-0.463737,1.27288,9.23853,-0.626354,1.50399,8.81033,0.228623,1.47326,9.58016,-0.236267,1.37966,9.46321,-0.480229,1.60657,9.56804,0.00531996,1.59537,9.4347,0.272245,1.56173,9.03012,0.304752,0.184512,10.9534,0.648641,0.0625059,11.0536,0.686716,0.130586,10.9714,0.653319,0.0877434,11.0066,0.666689,0.241311,10.9554,0.653367,0.292336,10.9771,0.666778,0.329818,11.0151,0.686832,0.0633538,11.0584,0.751761,0.0918354,11.034,0.794749,0.136845,11.014,0.823484,0.191529,11.0014,0.833591,0.247564,10.998,0.823532,0.296418,11.0045,0.794838,0.330654,11.0198,0.751877,0.0581236,11.1013,0.708867,0.347447,11.0596,0.708993,0.333042,11.0378,0.75968,0.298806,11.0225,0.80264,0.249952,11.016,0.831334,0.193917,11.0193,0.841393,0.139232,11.032,0.831286,0.094223,11.052,0.802551,0.0657414,11.0763,0.759564,0.0423543,11.0741,0.767425,0.0756519,11.0457,0.817681,0.128272,11.0223,0.851275,0.192203,11.0075,0.863091,0.257713,11.0036,0.851331,0.314828,11.0112,0.817785,0.354853,11.0291,0.76756,0.371694,11.0546,0.708303,0.0334484,11.1033,0.708156,0.0455516,11.0245,0.740042,0.073461,10.9752,0.70334,0.121232,10.9432,0.668057,0.181593,10.9332,0.639564,0.13413,10.9321,0.687524,0.0972931,10.9548,0.73931,0.0766898,10.9979,0.787039,0.125897,10.976,0.818454,0.134955,10.9381,0.763354,0.154512,10.9231,0.700536,0.179276,10.9173,0.705113,0.180712,10.9275,0.771812,0.185682,10.9622,0.829504,0.246944,10.9585,0.818507,0.2276,10.9247,0.763394,0.204652,10.9158,0.700558,0.226775,10.9188,0.687564,0.268479,10.9302,0.739384,0.300355,10.9656,0.787136,0.337784,10.9824,0.740169,0.297126,10.943,0.703437,0.242279,10.9257,0.668109,0.248802,10.9356,0.645156,0.30918,10.9612,0.661025,0.353533,11.0062,0.684754,0.117782,10.9545,0.645099,0.0670867,10.9961,0.66092,0.0372232,11.0518,0.684617,0.349584,11.0768,0.707206,0.111559,11.1965,0.658165,0.073027,11.1591,0.682735,0.222962,11.2192,0.635944,0.278873,11.2011,0.641675,0.32343,11.166,0.658056,0.349849,11.1192,0.682592,0.164209,11.2176,0.641734,0.344487,11.1211,0.746112,0.316597,11.1491,0.787098,0.272042,11.1715,0.814497,0.217607,11.1849,0.824138,0.161578,11.1874,0.814554,0.112485,11.1785,0.787203,0.0778026,11.1596,0.746249,0.0759193,11.1445,0.755676,0.110602,11.1634,0.79663,0.314713,11.1339,0.796525,0.342604,11.106,0.755539,0.0609269,11.1184,0.707355,0.270159,11.1563,0.823924,0.215724,11.1698,0.833565,0.159695,11.1722,0.823981,0.054254,11.1538,0.76303,0.0948013,11.1759,0.810909,0.152195,11.1863,0.842885,0.217698,11.1834,0.85409,0.281338,11.1677,0.842818,0.333427,11.1415,0.810786,0.366033,11.1088,0.76287,0.374193,11.0747,0.706365,0.0367266,11.1234,0.706538,0.158122,11.2348,0.632816,0.164927,11.2466,0.654748,0.110536,11.2325,0.692117,0.070362,11.1964,0.732615,0.108367,11.2171,0.777492,0.139624,11.2483,0.726464,0.18067,11.2552,0.673337,0.202952,11.2592,0.685751,0.180797,11.2558,0.749403,0.162163,11.2269,0.807463,0.223559,11.2242,0.817965,0.227788,11.2537,0.757441,0.228384,11.2581,0.690102,0.253091,11.252,0.685726,0.273442,11.2424,0.749355,0.283208,11.2094,0.8074,0.332031,11.1849,0.777377,0.310808,11.2237,0.726376,0.273314,11.2418,0.673289,0.285973,11.2291,0.654686,0.3342,11.2002,0.692002,0.362593,11.1543,0.732465,0.370242,11.1223,0.679502,0.340054,11.1758,0.651466,0.289142,11.2159,0.632748,0.225256,11.2366,0.626199,0.0539335,11.1679,0.679665,0.097962,11.2107,0.65159,0.136852,11.0884,0.849572,0.156724,11.1112,0.566051,0.1083,11.1305,0.597234,0.0744349,11.1434,0.645992,0.0602837,11.148,0.704899,0.0680009,11.1434,0.76499,0.0964115,11.1305,0.817114,0.141381,11.1112,0.849817,0.154279,11.1305,0.850515,0.120243,11.1662,0.818403,0.0991388,11.1901,0.766673,0.0939872,11.1985,0.706722,0.105573,11.1901,0.647675,0.132132,11.1662,0.598523,0.169621,11.1305,0.566748,0.188924,11.1434,0.567792,0.167799,11.1901,0.600452,0.152174,11.2213,0.650195,0.144428,11.2322,0.709449,0.14574,11.2213,0.769193,0.155911,11.1901,0.820331,0.173581,11.1434,0.851558,0.196351,11.148,0.852789,0.197983,11.1985,0.822606,0.20071,11.2322,0.772165,0.203927,11.2441,0.712666,0.207144,11.2322,0.653167,0.209871,11.1985,0.602726,0.211694,11.148,0.569023,0.234463,11.1434,0.570254,0.251943,11.1901,0.605001,0.262114,11.2213,0.656139,0.263426,11.2322,0.715883,0.25568,11.2213,0.775137,0.240055,11.1901,0.824881,0.21912,11.1434,0.854021,0.238423,11.1305,0.855064,0.275722,11.1662,0.826809,0.302281,11.1901,0.777657,0.313867,11.1985,0.71861,0.308715,11.1901,0.658659,0.28761,11.1662,0.606929,0.253766,11.1305,0.571298,0.266663,11.1112,0.571995,0.311442,11.1305,0.608218,0.339853,11.1434,0.660342,0.34757,11.148,0.720433,0.333419,11.1434,0.77934,0.299554,11.1305,0.828098,0.251321,11.1112,0.855761,0.25585,11.0884,0.856006,0.307922,11.0884,0.82855,0.344353,11.0884,0.779932,0.359405,11.0884,0.721073,0.350787,11.0884,0.660934,0.319811,11.0884,0.608671,0.271193,11.0884,0.57224,0.212334,11.0884,0.557188,0.266663,11.0656,0.571995,0.311442,11.0463,0.608218,0.339853,11.0333,0.660342,0.34757,11.0288,0.720433,0.333419,11.0333,0.77934,0.299554,11.0463,0.828098,0.251321,11.0656,0.855761,0.238423,11.0463,0.855064,0.275722,11.0105,0.826809,0.302281,10.9867,0.777657,0.313867,10.9783,0.71861,0.308715,10.9867,0.658659,0.28761,11.0105,0.606929,0.253766,11.0463,0.571298,0.234463,11.0333,0.570254,0.251943,10.9867,0.605001,0.262114,10.9555,0.656139,0.263426,10.9445,0.715883,0.25568,10.9555,0.775137,0.240055,10.9867,0.824881,0.21912,11.0333,0.854021,0.196351,11.0288,0.852789,0.197983,10.9783,0.822606,0.20071,10.9445,0.772165,0.203927,10.9327,0.712666,0.207144,10.9445,0.653167,0.209871,10.9783,0.602726,0.211694,11.0288,0.569023,0.188924,11.0333,0.567792,0.167799,10.9867,0.600452,0.152174,10.9555,0.650195,0.144428,10.9445,0.709449,0.14574,10.9555,0.769193,0.155911,10.9867,0.820331,0.173581,11.0333,0.851558,0.154279,11.0463,0.850515,0.120244,11.0105,0.818403,0.0991388,10.9867,0.766673,0.0939872,10.9783,0.706722,0.105573,10.9867,0.647675,0.132132,11.0105,0.598523,0.169621,11.0463,0.566748,0.156724,11.0656,0.566051,0.1083,11.0463,0.597234,0.074435,11.0333,0.645992,0.0602838,11.0288,0.7049,0.0680009,11.0333,0.76499,0.0964116,11.0463,0.817114,0.141381,11.0656,0.849817,0.0880429,11.0884,0.816662,0.0570667,11.0884,0.764398,0.0484487,11.0884,0.70426,0.0635008,11.0884,0.6454,0.0999315,11.0884,0.596782,0.152195,11.0884,0.565806,0.177035,11.0803,0.847026,0.181627,11.0734,0.847275,0.188499,11.0688,0.847646,0.196605,11.0672,0.848084,0.204711,11.0688,0.848523,0.211583,11.0734,0.848894,0.216175,11.0803,0.849142,0.217787,11.0884,0.84923,0.216175,11.0965,0.849142,0.211583,11.1034,0.848894,0.204711,11.108,0.848523,0.196605,11.1096,0.848084,0.188499,11.108,0.847646,0.181627,11.1034,0.847275,0.177035,11.0965,0.847026,0.175423,11.0884,0.846939,0.165666,11.0884,0.845582,0.168025,11.1003,0.845709,0.174741,11.1103,0.846073,0.184793,11.1171,0.846616,0.19665,11.1194,0.847257,0.208507,11.1171,0.847898,0.218558,11.1103,0.848442,0.225275,11.1003,0.848805,0.227633,11.0884,0.848933,0.225275,11.0765,0.848805,0.218558,11.0664,0.848442,0.208507,11.0597,0.847898,0.19665,11.0574,0.847257,0.184793,11.0597,0.846616,0.174741,11.0664,0.846073,0.168025,11.0765,0.845709,0.19665,11.0884,0.847257,0.138652,11.1123,0.851284,0.152169,11.1325,0.852014,0.1724,11.1461,0.853108,0.196264,11.1508,0.854399,0.220127,11.1461,0.855689,0.240358,11.1325,0.856783,0.253875,11.1123,0.857513,0.258622,11.0884,0.85777,0.253875,11.0645,0.857513,0.240358,11.0442,0.856783,0.220127,11.0307,0.855689,0.196264,11.0259,0.854399,0.1724,11.0307,0.853108,0.15217,11.0442,0.852014,0.138652,11.0645,0.851284,0.133905,11.0884,0.851027,0.0619781,10.146,0.961541,0.117528,10.157,0.938148,0.151428,10.1669,0.892909,0.169091,10.1743,0.832806,0.173168,10.1933,0.762789,0.170341,10.2067,0.704247,0.167581,10.2213,0.639152,0.169464,10.2381,0.574332,0.0691909,10.1404,0.98485,0.133247,10.1521,0.956993,0.17582,10.164,0.90418,0.200442,10.173,0.838483,0.210127,10.193,0.764049,0.21365,10.2067,0.703746,0.211296,10.2215,0.638595,0.207948,10.2381,0.574063,0.0619781,10.0839,0.946782,0.117528,10.0898,0.922168,0.153709,10.1009,0.875182,0.171067,10.1142,0.819453,0.172664,10.1306,0.750505,0.17024,10.1451,0.689602,0.166777,10.1605,0.624685,0.169464,10.176,0.559573,0.0680708,10.0794,0.96595,0.13026,10.0855,0.940017,0.172491,10.0979,0.887803,0.205483,10.1452,0.689109,0.201333,10.1761,0.559303,0.196275,10.1139,0.820503,0.202888,10.1303,0.751747,0.204317,10.1606,0.624128,0.0566604,10.1474,0.994468,0.123231,10.1536,0.968459,0.16225,10.1741,0.922767,0.20185,10.1785,0.852419,0.21338,10.1961,0.781363,0.218354,10.2143,0.719341,0.217689,10.2257,0.653122,0.214369,10.2438,0.589092,0.0164408,10.1462,0.999326,-0.0164408,10.1462,0.999326,0.0841565,10.1491,0.987262,0.146449,10.1697,0.941782,0.186856,10.1692,0.895167,0.206023,10.1847,0.827859,0.216377,10.2056,0.756026,0.219977,10.2165,0.692179,0.218361,10.2343,0.627922,0.0488204,10.1549,0.96276,0.10456,10.161,0.941601,0.145216,10.1761,0.913589,0.160889,10.1804,0.843577,0.16846,10.1967,0.779013,0.165553,10.2142,0.719684,0.162125,10.2255,0.654055,0.162811,10.2437,0.589456,-0.00811154,10.1538,0.967367,0.00811154,10.1538,0.967367,0.00977065,10.1538,0.967367,-0.00977065,10.1538,0.967367,0.0727008,10.1564,0.956614,0.133068,10.1729,0.928403,0.150671,10.1736,0.880947,0.166911,10.186,0.821689,0.167319,10.2058,0.754833,0.162937,10.2163,0.692985,0.159614,10.2342,0.628492,0.0553502,10.077,0.975984,0.121734,10.0834,0.949103,0.172513,10.0949,0.900766,0.199633,10.111,0.8327,0.21022,10.1271,0.765097,0.214646,10.1421,0.702155,0.213782,10.1576,0.636877,0.210748,10.173,0.572231,0.0150628,10.0758,0.980858,-0.0150628,10.0758,0.980858,0.0822409,10.0788,0.968122,0.144598,10.0869,0.934304,0.185327,10.1001,0.878824,0.203584,10.1161,0.811236,0.211645,10.1328,0.741335,0.213892,10.1483,0.675917,0.214303,10.1637,0.611103,0.0483653,10.0846,0.944079,0.103475,10.0896,0.922953,0.143299,10.099,0.883147,0.162988,10.1121,0.828262,0.163228,10.1277,0.76246,0.159764,10.142,0.702545,0.158917,10.1574,0.637918,0.159817,10.1729,0.572637,-0.00772426,10.0835,0.948671,0.00772426,10.0835,0.948671,0.00938335,10.0835,0.948671,-0.00938335,10.0835,0.948671,0.0720357,10.086,0.937994,0.121494,10.0928,0.909306,0.153146,10.1041,0.861864,0.164905,10.1174,0.80592,0.165546,10.1331,0.740095,0.161999,10.1481,0.676813,0.156271,10.1636,0.611729,0.00180238,10.144,0.969808,-0.00180238,10.144,0.969808,0.0627708,10.1461,0.961026,0.118104,10.1573,0.937534,0.151369,10.1669,0.891989,0.16903,10.1745,0.831808,0.172645,10.1937,0.761777,0.169675,10.2067,0.703278,0.166932,10.2216,0.638228,0.00180237,10.0819,0.955049,-0.00180237,10.0819,0.955049,0.0627708,10.084,0.946267,0.118104,10.0899,0.921518,0.153801,10.1012,0.874252,0.170875,10.1144,0.818654,0.172301,10.1308,0.749661,0.169779,10.1453,0.688674,0.166076,10.1607,0.623745,0.00179212,10.076,0.979991,-0.00179212,10.076,0.979991,0.0691415,10.0793,0.96598,0.131352,10.0856,0.939733,0.173205,10.0981,0.887212,0.196927,10.1141,0.819819,0.203377,10.1305,0.750913,0.20601,10.1454,0.688151,0.204916,10.1609,0.623184,0.00179213,10.1381,0.99475,-0.00179213,10.1381,0.99475,0.0702616,10.1404,0.98488,0.134338,10.1524,0.956765,0.17655,10.164,0.90352,0.200998,10.1732,0.837537,0.210739,10.1934,0.763035,0.214311,10.2068,0.702747,0.21188,10.2218,0.637668,0.0680248,10.1403,0.98556,0.132327,10.1515,0.957899,0.175642,10.164,0.905435,0.200708,10.1726,0.83986,0.21051,10.1925,0.765457,0.214184,10.2066,0.705025,0.212003,10.221,0.639773,0.208556,10.2378,0.575289,0.060712,10.146,0.961463,0.116272,10.1568,0.938351,0.150689,10.1669,0.893749,0.168159,10.174,0.833852,0.172651,10.1928,0.764109,0.169811,10.2065,0.705516,0.166971,10.2209,0.640361,0.168834,10.2378,0.575567,0.0669047,10.0792,0.96666,0.129341,10.0853,0.940996,0.172338,10.0976,0.889002,0.196438,10.1137,0.821557,0.203445,10.13,0.752799,0.206197,10.1449,0.690342,0.205086,10.1604,0.625342,0.201941,10.1758,0.56053,0.060712,10.0839,0.946704,0.116272,10.0897,0.922406,0.152884,10.1007,0.876034,0.170425,10.114,0.820431,0.171897,10.1304,0.751464,0.16938,10.1448,0.690829,0.166122,10.1602,0.625931,0.168834,10.1757,0.560807,0.0603696,9.98049,0.899742,0.0652662,9.98086,0.898199,0.113624,9.98621,0.8757,0.118359,9.98689,0.87285,0.1435,9.99665,0.831788,0.145787,9.99799,0.826142,0.16148,10.0111,0.770867,0.163702,10.0121,0.766718,0.163021,10.0265,0.706344,0.163782,10.0273,0.702761,0.159798,10.0404,0.647981,0.160364,10.0415,0.64332,0.161005,10.0558,0.583085,0.160335,10.0572,0.577237,0.0708864,9.97241,0.933729,0.078618,9.97284,0.931898,0.137237,9.97944,0.904149,0.144583,9.9804,0.900138,0.181195,9.99232,0.849989,0.185541,9.99442,0.841189,0.224421,10.0405,0.647264,0.223422,10.0417,0.642392,0.207766,10.009,0.779865,0.207934,10.007,0.788466,0.21976,10.026,0.708384,0.22195,10.0248,0.713472,0.218139,10.056,0.582258,0.219818,10.0541,0.590102,0.159817,10.0682,0.530948,0.170188,10.071,0.519119,0.162785,10.0527,0.596229,0.160585,10.0543,0.589385,0.158134,10.0373,0.660856,0.157569,10.0392,0.653078,0.161581,10.0237,0.718115,0.160664,10.0254,0.711008,0.156534,10.0082,0.783026,0.157666,10.0099,0.776083,0.139036,9.99395,0.843155,0.140443,9.99536,0.837199,0.103475,9.98489,0.881264,0.107867,9.98568,0.877932,0.0483653,9.97986,0.90239,0.0547826,9.98033,0.900422,0.171007,10.0713,0.517884,0.217489,10.0656,0.541716,0.204863,10.0711,0.51884,0.219498,10.0514,0.601752,0.226845,10.0374,0.660466,0.227086,10.0393,0.652537,0.220477,10.0231,0.720752,0.205526,10.0056,0.794196,0.175067,9.98922,0.863052,0.177778,9.99022,0.858849,0.124315,9.9777,0.911493,0.130147,9.97824,0.909204,0.0571156,9.97145,0.937779,0.0630157,9.97172,0.936639,0.204078,10.0714,0.517614,0.217848,10.0603,0.564334,0.218077,10.0586,0.571345,0.21784,10.0458,0.625039,0.217618,10.0281,0.699489,0.219057,10.0269,0.704532,0.208102,10.0119,0.767789,0.208586,10.0106,0.773243,0.188957,9.99583,0.83522,0.147584,9.98193,0.893705,0.0848217,9.97317,0.930512,0.0168281,9.97029,0.942653,-0.0168281,9.97029,0.942653,-0.00582987,9.96994,0.944127,0.00582987,9.96994,0.944127,0.00748897,9.96994,0.944127,-0.00748897,9.96994,0.944127,0.160185,10.0589,0.57004,0.161976,10.0434,0.635124,0.165546,10.0284,0.69815,0.164792,10.0134,0.761252,0.14857,9.99967,0.819102,0.121494,9.98813,0.867617,0.0720357,9.98131,0.896305,-0.0077243,9.97877,0.906982,0.0077243,9.97877,0.906982,0.0093834,9.97877,0.906982,-0.0093834,9.97877,0.906982,-0.00428973,9.97877,0.906987,0.00428973,9.97877,0.906987,0.00594884,9.97877,0.906987,-0.00594884,9.97877,0.906987,0.0616581,10.0317,0.925174,0.0659687,10.0323,0.923036,0.11682,10.0376,0.900545,0.119623,10.0385,0.896942,0.152678,10.0486,0.854109,0.153873,10.0498,0.849444,0.169089,10.0617,0.799158,0.169074,10.0631,0.793401,0.171977,10.0781,0.730453,0.171532,10.0789,0.726708,0.169791,10.0927,0.668806,0.169349,10.0939,0.663749,0.164965,10.1081,0.6039,0.16432,10.1094,0.598787,0.0748679,10.0261,0.94877,0.0693325,10.0259,0.949762,0.138057,10.0336,0.917274,0.1334,10.0329,0.920508,0.179292,10.0462,0.864221,0.175967,10.045,0.869389,0.214051,10.0941,0.663156,0.213972,10.0928,0.668307,0.200581,10.0611,0.801817,0.200366,10.06,0.806244,0.210249,10.0777,0.731977,0.21179,10.0767,0.736088,0.214218,10.1083,0.603315,0.216301,10.1071,0.60847,0.162675,10.1191,0.558005,0.169149,10.1223,0.544263,0.161119,10.1036,0.62316,0.16335,10.1069,0.609135,0.163138,10.0882,0.68773,0.167655,10.0915,0.673955,0.165174,10.0741,0.747215,0.169961,10.0772,0.734218,0.161659,10.0581,0.814543,0.166988,10.0605,0.804229,0.140627,10.0456,0.866787,0.149878,10.0478,0.857731,0.0992112,10.0364,0.905486,0.112318,10.0372,0.902255,0.0425417,10.0318,0.925031,0.056584,10.0317,0.925488,0.17722,10.1233,0.540192,0.208249,10.1224,0.543977,0.214757,10.1192,0.557589,0.219434,10.1038,0.622264,0.215947,10.0916,0.673549,0.219424,10.0882,0.687601,0.214376,10.0733,0.750266,0.199069,10.0571,0.818407,0.173819,10.0438,0.874416,0.169055,10.0412,0.88552,0.128976,10.032,0.924134,0.117128,10.0297,0.933812,0.0641137,10.0254,0.951792,0.0503588,10.024,0.95758,0.200175,10.1233,0.540026,0.216064,10.1128,0.584194,0.214515,10.1095,0.59822,0.21501,10.0974,0.649008,0.215112,10.0818,0.714724,0.21079,10.0786,0.728077,0.206947,10.0657,0.782349,0.201845,10.0621,0.797501,0.189048,10.0498,0.849318,0.150575,10.0358,0.907985,0.0903151,10.0267,0.946435,0.0225354,10.0232,0.961127,-0.0225354,10.0232,0.961127,-0.0048991,10.0235,0.959648,0.0048991,10.0235,0.959648,0.00655819,10.0235,0.959648,-0.00655819,10.0235,0.959648,0.162015,10.1127,0.584754,0.166863,10.0972,0.649832,0.167839,10.082,0.714036,0.167182,10.0669,0.77716,0.155813,10.0529,0.836024,0.12573,10.0412,0.885238,0.077206,10.034,0.915732,-0.00338802,10.03,0.932693,0.00338802,10.03,0.932693,0.00504713,10.03,0.932693,-0.00504713,10.03,0.932693,0.01645,10.031,0.92833,-0.01645,10.031,0.92833,0.061963,10.0814,0.94576,0.0629219,10.0816,0.945169,0.117495,10.0873,0.921146,0.118176,10.0875,0.920357,0.153677,10.0985,0.874176,0.153818,10.0987,0.873073,0.171012,10.1117,0.81847,0.170805,10.1119,0.817486,0.17258,10.1281,0.749543,0.172215,10.1283,0.748542,0.170162,10.1426,0.688619,0.16969,10.1429,0.687496,0.16673,10.158,0.623703,0.165984,10.1583,0.622565,0.0704793,10.0759,0.969112,0.0691976,10.0759,0.96913,0.134514,10.0829,0.93971,0.133255,10.0828,0.940133,0.176579,10.0953,0.887555,0.175724,10.0951,0.888312,0.213471,10.143,0.68697,0.212957,10.1427,0.688125,0.200218,10.1113,0.820343,0.200332,10.111,0.821547,0.209238,10.1278,0.750638,0.209792,10.1276,0.751877,0.21262,10.1582,0.623144,0.213366,10.1578,0.624545,0.159952,10.1703,0.571945,0.168849,10.1732,0.560025,0.159068,10.1548,0.63722,0.166049,10.1577,0.625137,0.159805,10.1395,0.701845,0.169237,10.1423,0.690031,0.163204,10.1252,0.761739,0.171747,10.1278,0.750647,0.162975,10.1096,0.827536,0.170318,10.1114,0.819601,0.143172,10.0965,0.882373,0.152748,10.0982,0.875165,0.103274,10.0871,0.922127,0.116085,10.0872,0.921454,0.04809,10.0821,0.943179,0.0605169,10.0815,0.945701,0.169821,10.1735,0.558657,0.208542,10.1732,0.559747,0.21724,10.1704,0.571538,0.220604,10.1551,0.636186,0.213683,10.1424,0.689549,0.221141,10.1395,0.701467,0.215748,10.1246,0.764396,0.203074,10.1083,0.832634,0.175459,10.0948,0.889636,0.175213,10.0921,0.901077,0.132169,10.0825,0.941237,0.123975,10.0799,0.952267,0.0678399,10.0757,0.969902,0.0567961,10.0737,0.978434,0.207591,10.1736,0.558392,0.221434,10.1613,0.609831,0.213237,10.1584,0.622004,0.220256,10.1459,0.674645,0.217392,10.1303,0.740236,0.20973,10.1281,0.749706,0.208412,10.1137,0.810181,0.200909,10.1115,0.81952,0.188961,10.0975,0.87813,0.147726,10.0842,0.934098,0.0850813,10.0754,0.970984,0.0170979,10.0725,0.983245,-0.0170979,10.0725,0.983245,0.00201742,10.0735,0.97903,-0.00201742,10.0735,0.97903,0.156589,10.1612,0.610454,0.162264,10.1457,0.675537,0.165696,10.1306,0.738945,0.165014,10.115,0.804561,0.153272,10.1017,0.860643,0.121694,10.0904,0.908168,0.0722801,10.0835,0.936942,0.00195576,10.0795,0.953992,-0.00195576,10.0795,0.953992,-0.00805831,10.081,0.94771,0.00805831,10.081,0.94771,0.00971742,10.081,0.94771,-0.00971742,10.081,0.94771,0.0691909,10.0813,0.970793,0.133247,10.0882,0.94181,0.175714,10.1006,0.889925,0.212872,10.1481,0.689812,0.207948,10.179,0.560007,0.0619781,10.0869,0.947485,0.117528,10.0927,0.922871,0.153714,10.1039,0.875882,0.171065,10.1171,0.82017,0.17281,10.1335,0.751191,0.170386,10.148,0.690305,0.166764,10.1635,0.625389,0.169464,10.1789,0.560276,0.0570939,10.0795,0.980183,0.124263,10.0858,0.95391,0.175436,10.098,0.902599,0.203161,10.1143,0.834101,0.215831,10.1305,0.765893,0.22126,10.1455,0.702958,0.220779,10.161,0.637682,0.21722,10.1764,0.573034,0.0168096,10.0784,0.985056,-0.0168096,10.0784,0.985056,0.08479,10.0813,0.972919,0.14752,10.09,0.936131,0.188856,10.1033,0.880322,0.208456,10.1195,0.812244,0.217432,10.1361,0.742223,0.220423,10.1517,0.676721,0.221594,10.1671,0.611907,0.0483869,10.0879,0.944969,0.103527,10.0929,0.92383,0.143379,10.1024,0.883995,0.163082,10.1155,0.829083,0.163577,10.1311,0.763269,0.160141,10.1454,0.703346,0.15907,10.1607,0.638717,0.15996,10.1763,0.573438,-0.0077427,10.0868,0.949562,0.0077427,10.0868,0.949562,0.0094018,10.0868,0.949562,-0.0094018,10.0868,0.949562,0.0720674,10.0894,0.938881,0.121558,10.0962,0.910173,0.153232,10.1075,0.862701,0.165012,10.1208,0.806738,0.165677,10.1364,0.740901,0.162149,10.1515,0.677613,0.15643,10.167,0.61253,0.00179212,10.079,0.980694,-0.00179212,10.079,0.980694,0.0702616,10.0813,0.970824,0.134338,10.0883,0.941526,0.176458,10.1007,0.889329,0.200812,10.1169,0.821276,0.209641,10.1335,0.751503,0.213369,10.1484,0.688855,0.213079,10.1638,0.623887,0.00180238,10.0849,0.955752,-0.00180238,10.0849,0.955752,0.0627708,10.087,0.94697,0.118104,10.0929,0.922222,0.153806,10.1041,0.874951,0.170872,10.1173,0.819369,0.172452,10.1337,0.750348,0.16993,10.1482,0.689377,0.166063,10.1637,0.624448,0.0680248,10.0812,0.971504,0.132327,10.088,0.942789,0.175538,10.1003,0.891092,0.200316,10.1165,0.822995,0.20971,10.133,0.753364,0.213557,10.1479,0.691046,0.213201,10.1633,0.626045,0.208556,10.1787,0.561233,0.060712,10.0869,0.947407,0.116272,10.0927,0.923109,0.152885,10.1037,0.876736,0.170424,10.1169,0.821147,0.172048,10.1333,0.752151,0.169531,10.1477,0.691532,0.16611,10.1632,0.626634,0.168834,10.1787,0.561511,0.212495,10.1636,0.624831,0.209177,10.1333,0.752281,0.200174,10.1167,0.821945,0.0691909,10.1109,0.977821,0.133247,10.1201,0.949402,0.175767,10.1323,0.897053,0.213547,10.199,0.701902,0.207948,10.2303,0.572202,0.0619781,10.1164,0.954513,0.117528,10.1248,0.930509,0.152571,10.1354,0.884395,0.169353,10.1667,0.831134,0.173121,10.1854,0.761254,0.170347,10.1989,0.702402,0.167473,10.2137,0.63733,0.169464,10.2302,0.572471,0.0568771,10.1135,0.987326,0.123747,10.1197,0.961185,0.163571,10.1665,0.920747,0.202023,10.17,0.849995,0.213704,10.1874,0.779315,0.218739,10.2052,0.717173,0.218098,10.2171,0.651078,0.214747,10.2349,0.586967,0.0166252,10.1123,0.992191,-0.0166252,10.1123,0.992191,0.0844732,10.1152,0.980091,0.146556,10.1617,0.941216,0.18712,10.1605,0.893202,0.206345,10.1761,0.825792,0.216517,10.1964,0.754199,0.220036,10.2079,0.690133,0.218789,10.2254,0.625803,0.0486037,10.1214,0.953865,0.104043,10.127,0.932716,0.144297,10.1392,0.898792,0.161179,10.1718,0.841659,0.167814,10.1881,0.776929,0.164836,10.205,0.717522,0.161721,10.2169,0.652024,0.162433,10.2348,0.587336,-0.00792712,10.1203,0.958465,0.00792712,10.1203,0.958465,0.00958623,10.1203,0.958465,-0.00958623,10.1203,0.958465,0.0723841,10.1229,0.947748,0.127313,10.1345,0.919288,0.15101,10.1649,0.878532,0.16666,10.1773,0.81971,0.167102,10.1966,0.752989,0.162833,10.2077,0.690951,0.159192,10.2253,0.626379,0.00179212,10.1085,0.987722,-0.00179212,10.1085,0.987722,0.0702616,10.1109,0.977852,0.134338,10.1203,0.949146,0.176504,10.1323,0.896424,0.200973,10.1658,0.835384,0.210594,10.1855,0.761509,0.214186,10.1991,0.700908,0.212039,10.2141,0.635844,0.00180238,10.1145,0.96278,-0.00180238,10.1145,0.96278,0.0627708,10.1165,0.953998,0.118104,10.1251,0.929878,0.152588,10.1355,0.88347,0.169274,10.1669,0.830162,0.172619,10.1857,0.760264,0.169709,10.199,0.701438,0.166817,10.214,0.636405,0.0680248,10.1107,0.978532,0.132327,10.1198,0.950344,0.17559,10.1322,0.898263,0.200656,10.1652,0.837628,0.210404,10.1846,0.763856,0.214101,10.1989,0.703174,0.212162,10.2134,0.637956,0.208556,10.23,0.573428,0.060712,10.1164,0.954435,0.116272,10.1247,0.93073,0.151787,10.1353,0.885243,0.168459,10.1664,0.832171,0.172571,10.1849,0.762527,0.169774,10.1988,0.703665,0.166857,10.2133,0.638544,0.168834,10.2299,0.573706,0.211455,10.2138,0.636773,0.210001,10.1851,0.762492,0.200406,10.1655,0.836294,0.0653429,10.2979,0.972767,0.12395,10.2923,0.946074,0.159715,10.2932,0.897217,0.17835,10.3003,0.833723,0.182651,10.2979,0.757224,0.179668,10.2984,0.693868,0.176757,10.2992,0.623469,0.178743,10.2979,0.552858,0.0729526,10.2979,0.998044,0.140534,10.2928,0.966612,0.185449,10.2934,0.909482,0.211426,10.3002,0.839865,0.221643,10.2978,0.758579,0.22536,10.2985,0.693333,0.222878,10.2992,0.622865,0.219345,10.2979,0.552566,0.0653429,10.3652,0.972767,0.12395,10.3652,0.946074,0.162122,10.3652,0.895121,0.180434,10.3652,0.834685,0.182119,10.3652,0.759915,0.179562,10.3652,0.693868,0.175909,10.3652,0.623469,0.178743,10.3652,0.552858,0.0717709,10.3652,0.993553,0.137383,10.3652,0.965431,0.181937,10.3652,0.908808,0.216745,10.3652,0.693333,0.212366,10.3652,0.552566,0.20703,10.3652,0.835823,0.214006,10.3652,0.761261,0.215514,10.3652,0.622865,0.0597325,10.2884,1.00622,0.129966,10.2884,0.978003,0.171133,10.2785,0.926107,0.212911,10.2912,0.852831,0.225075,10.2904,0.775591,0.230324,10.2869,0.707503,0.229622,10.2914,0.63675,0.226119,10.2884,0.566608,0.0172999,10.2884,1.01149,-0.0172999,10.2884,1.01149,0.0887417,10.2884,0.998404,0.154462,10.2784,0.946695,0.197092,10.2902,0.898959,0.217314,10.2908,0.826105,0.228238,10.2869,0.747271,0.232036,10.2913,0.679078,0.230331,10.2887,0.608775,0.0514612,10.2884,0.971833,0.110267,10.2873,0.948631,0.153161,10.2787,0.916202,0.169696,10.2914,0.84328,0.177684,10.2904,0.773028,0.174617,10.287,0.707883,0.171001,10.2914,0.637761,0.171724,10.2884,0.567003,-0.00860354,10.2884,0.976828,0.00860354,10.2884,0.976828,0.0102626,10.2884,0.976828,-0.0102626,10.2884,0.976828,0.0766556,10.2884,0.965167,0.140345,10.2784,0.932187,0.158916,10.2892,0.883298,0.17605,10.291,0.819461,0.176481,10.287,0.745996,0.171858,10.2913,0.679948,0.168351,10.2886,0.609384,0.0583503,10.3652,1.00444,0.128387,10.3652,0.975284,0.18196,10.3652,0.922865,0.210573,10.3652,0.849051,0.221741,10.3652,0.775739,0.226411,10.3652,0.707481,0.2255,10.3652,0.636691,0.222299,10.3652,0.566585,0.015846,10.3652,1.00972,-0.015846,10.3652,1.00972,0.0867206,10.3652,0.995909,0.152509,10.3652,0.959236,0.195479,10.3652,0.89907,0.214741,10.3652,0.825775,0.223246,10.3652,0.74997,0.225616,10.3652,0.679027,0.22605,10.3652,0.60874,0.050981,10.3652,0.969836,0.109124,10.3652,0.946926,0.151138,10.3652,0.903758,0.171911,10.3652,0.844238,0.172164,10.3652,0.772879,0.16851,10.3652,0.707905,0.167616,10.3652,0.637819,0.168566,10.3652,0.567026,-0.00819493,10.3652,0.974816,0.00819493,10.3652,0.974816,0.00985403,10.3652,0.974816,-0.00985403,10.3652,0.974816,0.0759539,10.3652,0.963237,0.128133,10.3652,0.932126,0.161527,10.3652,0.880678,0.173933,10.3652,0.820009,0.17461,10.3652,0.748625,0.170868,10.3652,0.679999,0.164825,10.3652,0.609419,0.00185591,10.2979,0.981732,-0.00185591,10.2979,0.981732,0.0661791,10.2979,0.972209,0.124558,10.2922,0.94537,0.159653,10.2934,0.896263,0.178285,10.3003,0.832642,0.182099,10.2977,0.756091,0.178966,10.2986,0.692862,0.176072,10.2992,0.62245,0.00185591,10.3652,0.981732,-0.00185591,10.3652,0.981732,0.0661791,10.3652,0.972209,0.124558,10.3652,0.94537,0.162219,10.3652,0.894112,0.180231,10.3652,0.833819,0.181736,10.3652,0.758999,0.179075,10.3652,0.692862,0.175168,10.3652,0.62245,0.00184508,10.3652,1.00878,-0.00184508,10.3652,1.00878,0.0729004,10.3652,0.993586,0.138534,10.3652,0.965123,0.18269,10.3652,0.908166,0.207718,10.3652,0.835082,0.214523,10.3652,0.760357,0.2173,10.3652,0.692295,0.216147,10.3652,0.621841,0.00184509,10.2979,1.00878,-0.00184509,10.2979,1.00878,0.0740821,10.2979,0.998077,0.141685,10.2925,0.966305,0.18622,10.2936,0.908824,0.212012,10.3002,0.838838,0.22229,10.2977,0.757442,0.226058,10.2987,0.692295,0.223493,10.2992,0.621841,0.0717223,10.2979,0.998814,0.139563,10.2931,0.967674,0.185261,10.2931,0.910768,0.211707,10.3003,0.841366,0.222048,10.298,0.760154,0.225925,10.2983,0.694671,0.223623,10.2994,0.624182,0.219987,10.2979,0.553896,0.0640071,10.2979,0.972682,0.122624,10.2925,0.946333,0.158935,10.293,0.898075,0.177367,10.3003,0.83487,0.182105,10.2981,0.758701,0.17911,10.2982,0.695199,0.176113,10.2994,0.62482,0.178079,10.2979,0.554197,0.0705406,10.3652,0.994324,0.136412,10.3652,0.966493,0.181775,10.3652,0.910108,0.207202,10.3652,0.836967,0.214594,10.3652,0.762402,0.217497,10.3652,0.694671,0.216326,10.3652,0.624182,0.213008,10.3652,0.553896,0.0640072,10.3652,0.972682,0.122624,10.3652,0.946333,0.161251,10.3652,0.896045,0.179758,10.3652,0.835746,0.18131,10.3652,0.760955,0.178654,10.3652,0.695199,0.175218,10.3652,0.62482,0.178079,10.3652,0.554197,0.0636458,10.4828,0.94973,0.0688119,10.4828,0.948056,0.119831,10.4828,0.923656,0.124827,10.4828,0.920566,0.151351,10.4828,0.876037,0.153764,10.4828,0.869913,0.17032,10.4828,0.809971,0.172664,10.4828,0.805471,0.171946,10.4828,0.739999,0.172749,10.4828,0.736113,0.168546,10.4828,0.676707,0.169143,10.4828,0.671652,0.169819,10.4828,0.60633,0.169112,10.4828,0.599988,0.0747414,10.4828,0.986586,0.0828983,10.4828,0.9846,0.144743,10.4828,0.954508,0.152494,10.4828,0.950159,0.19112,10.4828,0.895774,0.195705,10.4828,0.886231,0.236724,10.4828,0.675929,0.23567,10.4828,0.670646,0.219153,10.4828,0.819728,0.21933,10.4828,0.829056,0.231807,10.4828,0.74221,0.234117,10.4828,0.747729,0.230097,10.4828,0.605434,0.231868,10.4828,0.61394,0.168566,10.4828,0.54979,0.179508,10.4828,0.536962,0.171697,10.4828,0.620584,0.169376,10.4828,0.613162,0.16679,10.4828,0.690669,0.166194,10.4828,0.682235,0.170427,10.4828,0.752763,0.169459,10.4828,0.745057,0.165102,10.4828,0.823156,0.166296,10.4828,0.815627,0.146641,10.4828,0.888363,0.148125,10.4828,0.881904,0.109124,10.4828,0.92969,0.113757,10.4828,0.926078,0.050981,10.4828,0.952601,0.0577514,10.4828,0.950466,0.180371,10.4828,0.535623,0.22941,10.4828,0.561467,0.21609,10.4828,0.53666,0.231531,10.4828,0.626574,0.239282,10.4828,0.690246,0.239536,10.4828,0.681648,0.232563,10.4828,0.755623,0.21679,10.4828,0.83527,0.184654,10.4828,0.909941,0.187515,10.4828,0.905382,0.13111,10.4828,0.962473,0.137263,10.4828,0.95999,0.0602128,10.4828,0.990979,0.0664376,10.4828,0.989742,0.215262,10.4828,0.535331,0.22979,10.4828,0.585996,0.230031,10.4828,0.593599,0.229781,10.4828,0.651828,0.229547,10.4828,0.732565,0.231065,10.4828,0.738033,0.219508,10.4828,0.806632,0.220018,10.4828,0.812548,0.199308,10.4828,0.879758,0.15566,10.4828,0.943182,0.0894434,10.4828,0.983098,0.0177085,10.4828,0.996264,-0.0177085,10.4828,0.996264,-0.00619631,10.4828,0.997862,0.00619631,10.4828,0.997862,0.00785541,10.4828,0.997862,-0.00785541,10.4828,0.997862,0.168954,10.4828,0.592183,0.170843,10.4828,0.662764,0.17461,10.4828,0.731113,0.173814,10.4828,0.799543,0.156699,10.4828,0.862279,0.128133,10.4828,0.914891,0.0759539,10.4828,0.946002,-0.00819498,10.4828,0.95758,0.00819498,10.4828,0.95758,0.00985408,10.4828,0.95758,-0.00985408,10.4828,0.95758,-0.00457143,10.4828,0.957586,0.00457143,10.4828,0.957586,0.00623053,10.4828,0.957586,-0.00623053,10.4828,0.957586,0.0650053,10.424,0.963322,0.069553,10.424,0.961003,0.123203,10.424,0.936612,0.12616,10.424,0.932706,0.161034,10.424,0.886255,0.162295,10.424,0.881196,0.178347,10.424,0.826663,0.178332,10.424,0.820421,0.181394,10.424,0.752156,0.180925,10.424,0.748096,0.179088,10.424,0.685303,0.178622,10.424,0.679819,0.173997,10.424,0.614917,0.173316,10.424,0.609372,0.078942,10.424,0.988911,0.073102,10.424,0.989986,0.145608,10.424,0.954755,0.140695,10.424,0.958262,0.189112,10.424,0.897222,0.185604,10.424,0.902825,0.225784,10.424,0.679177,0.2257,10.424,0.684763,0.211573,10.424,0.829547,0.211345,10.424,0.834348,0.221773,10.424,0.75381,0.223398,10.424,0.758268,0.22596,10.424,0.614282,0.228157,10.424,0.619872,0.17158,10.424,0.565145,0.178411,10.424,0.550243,0.169939,10.424,0.635803,0.172293,10.424,0.620593,0.172069,10.424,0.705826,0.176835,10.424,0.690887,0.174217,10.424,0.770334,0.179268,10.424,0.756239,0.170509,10.424,0.843348,0.176131,10.424,0.832163,0.14832,10.424,0.900004,0.15808,10.424,0.890182,0.104625,10.424,0.941971,0.118453,10.424,0.938467,0.044837,10.424,0.963167,0.059652,10.424,0.963662,0.186926,10.424,0.545828,0.219663,10.424,0.549933,0.226529,10.424,0.564694,0.231463,10.424,0.634831,0.227784,10.424,0.690448,0.231452,10.424,0.705686,0.226126,10.424,0.773643,0.209977,10.424,0.847539,0.183338,10.424,0.908277,0.178312,10.424,0.920318,0.136028,10.424,0.962194,0.123527,10.424,0.972689,0.0675959,10.424,0.992187,0.0530842,10.424,0.998464,0.211144,10.424,0.545648,0.227908,10.424,0.593546,0.226273,10.424,0.608757,0.226796,10.424,0.663834,0.226903,10.424,0.735099,0.222344,10.424,0.74958,0.218289,10.424,0.808435,0.212907,10.424,0.824867,0.199405,10.424,0.88106,0.158815,10.424,0.944681,0.0952392,10.424,0.986378,0.0237298,10.424,1.00231,-0.0237298,10.424,1.00231,-0.00521432,10.424,1.00071,0.00521432,10.424,1.00071,0.00687343,10.424,1.00071,-0.00687343,10.424,1.00071,0.170885,10.424,0.594154,0.176,10.424,0.664727,0.177029,10.424,0.734353,0.176336,10.424,0.802808,0.164341,10.424,0.866644,0.132602,10.424,0.920013,0.0814086,10.424,0.953083,-0.0036201,10.424,0.971476,0.0036201,10.424,0.971476,0.0052792,10.424,0.971476,-0.0052792,10.424,0.971476,0.0173095,10.424,0.966744,-0.0173095,10.424,0.966744,0.0653269,10.368,0.97232,0.0663386,10.368,0.971679,0.123915,10.368,0.945627,0.124633,10.368,0.944771,0.162088,10.368,0.894691,0.162236,10.368,0.893495,0.180377,10.368,0.83428,0.180158,10.368,0.833213,0.182031,10.368,0.759532,0.181646,10.368,0.758447,0.179479,10.368,0.693463,0.178981,10.368,0.692245,0.175859,10.368,0.623065,0.175072,10.368,0.621831,0.0743119,10.368,0.997643,0.0729596,10.368,0.997663,0.14187,10.368,0.965759,0.140541,10.368,0.966218,0.18625,10.368,0.909199,0.185348,10.368,0.910021,0.225172,10.368,0.691675,0.22463,10.368,0.692928,0.211189,10.368,0.836312,0.21131,10.368,0.837617,0.220706,10.368,0.76072,0.22129,10.368,0.762064,0.224274,10.368,0.622459,0.225061,10.368,0.623978,0.168708,10.368,0.566937,0.178094,10.368,0.55401,0.167775,10.368,0.637724,0.175141,10.368,0.624621,0.168553,10.368,0.707806,0.178504,10.368,0.694995,0.172139,10.368,0.772759,0.181152,10.368,0.76073,0.171897,10.368,0.844112,0.179645,10.368,0.835507,0.151005,10.368,0.90358,0.161107,10.368,0.895763,0.108911,10.368,0.946692,0.122427,10.368,0.945961,0.0506905,10.368,0.969521,0.0638013,10.368,0.972256,0.17912,10.368,0.552526,0.219971,10.368,0.553708,0.229148,10.368,0.566496,0.232697,10.368,0.636603,0.225396,10.368,0.694472,0.233264,10.368,0.707396,0.227574,10.368,0.77564,0.214203,10.368,0.849641,0.185069,10.368,0.911456,0.184808,10.368,0.923863,0.139396,10.368,0.967415,0.130751,10.368,0.979376,0.0715272,10.368,0.998501,0.0598757,10.368,1.00775,0.218969,10.368,0.552239,0.233573,10.368,0.608022,0.224925,10.368,0.621223,0.23233,10.368,0.678309,0.229309,10.368,0.749439,0.221225,10.368,0.759709,0.219834,10.368,0.825292,0.211918,10.368,0.835419,0.199313,10.368,0.898979,0.155809,10.368,0.959673,0.0897174,10.368,0.999674,0.0179931,10.368,1.01297,-0.0179931,10.368,1.01297,0.00208279,10.368,1.0084,-0.00208279,10.368,1.0084,0.16516,10.368,0.608697,0.171147,10.368,0.679277,0.174768,10.368,0.74804,0.174048,10.368,0.819196,0.16166,10.368,0.880015,0.128345,10.368,0.931554,0.0762117,10.368,0.962757,0.00201774,10.368,0.981247,-0.00201774,10.368,0.981247,-0.00854738,10.368,0.974434,0.00854738,10.368,0.974434,0.0102065,10.368,0.974434,-0.0102065,10.368,0.974434,0.0729526,10.362,0.998044,0.140534,10.362,0.966612,0.185338,10.362,0.910346,0.22454,10.362,0.693333,0.219345,10.362,0.552566,0.0653429,10.362,0.972767,0.12395,10.362,0.946074,0.162126,10.362,0.895117,0.180432,10.362,0.834701,0.182274,10.362,0.759896,0.179716,10.362,0.693868,0.175895,10.362,0.623469,0.178743,10.362,0.552858,0.0601899,10.3616,1.00812,0.131055,10.3616,0.979627,0.185044,10.3616,0.923983,0.214294,10.3616,0.8497,0.227662,10.3616,0.775732,0.233389,10.3616,0.707482,0.232882,10.3616,0.636694,0.229127,10.3616,0.566586,0.017689,10.3616,1.0134,-0.017689,10.3616,1.0134,0.08941,10.3616,1.00024,0.155591,10.3616,0.960347,0.199203,10.3616,0.899825,0.219881,10.3616,0.825997,0.229351,10.3616,0.750063,0.232507,10.3616,0.67903,0.233742,10.3616,0.608742,0.0510038,10.3616,0.969931,0.109178,10.3616,0.947007,0.151223,10.3616,0.903807,0.17201,10.3616,0.844259,0.172533,10.3616,0.772886,0.168907,10.3616,0.707904,0.167777,10.3616,0.637817,0.168716,10.3616,0.567025,-0.0082144,10.3616,0.974912,0.0082144,10.3616,0.974912,0.0098735,10.3616,0.974912,-0.0098735,10.3616,0.974912,0.0759873,10.3616,0.963329,0.128201,10.3616,0.932196,0.161618,10.3616,0.880715,0.174046,10.3616,0.820026,0.174747,10.3616,0.74863,0.171026,10.3616,0.679996,0.164992,10.3616,0.609417,0.00184508,10.362,1.00878,-0.00184508,10.362,1.00878,0.0740821,10.362,0.998077,0.141685,10.362,0.966305,0.186123,10.362,0.9097,0.211817,10.362,0.835899,0.221131,10.362,0.760234,0.225064,10.362,0.692295,0.224758,10.362,0.621841,0.00185591,10.362,0.981732,-0.00185591,10.362,0.981732,0.0661791,10.362,0.972209,0.124558,10.362,0.94537,0.162224,10.362,0.894108,0.180229,10.362,0.833832,0.181896,10.362,0.758982,0.179235,10.362,0.692862,0.175155,10.362,0.62245,0.0717223,10.362,0.998814,0.139563,10.362,0.967674,0.185152,10.362,0.911611,0.211292,10.362,0.837764,0.221204,10.362,0.762253,0.225262,10.362,0.694671,0.224887,10.362,0.624182,0.219987,10.362,0.553896,0.0640072,10.362,0.972682,0.122624,10.362,0.946333,0.161252,10.362,0.896044,0.179756,10.362,0.83576,0.18147,10.362,0.760937,0.178814,10.362,0.695199,0.175204,10.362,0.62482,0.178079,10.362,0.554197,0.224142,10.362,0.622865,0.220642,10.362,0.761078,0.211143,10.362,0.836625,0.0729526,10.33,0.998044,0.140534,10.3274,0.966612,0.185393,10.3277,0.909914,0.225252,10.3069,0.693333,0.219345,10.3064,0.552566,0.0653429,10.33,0.972767,0.12395,10.3272,0.946074,0.160921,10.3276,0.896167,0.178626,10.3084,0.833852,0.182601,10.3064,0.757577,0.179675,10.3069,0.693868,0.176643,10.3076,0.623469,0.178743,10.3064,0.552858,0.0599612,10.325,1.00717,0.130511,10.325,0.978815,0.172526,10.2868,0.925894,0.213094,10.3005,0.852416,0.225418,10.2998,0.775609,0.230729,10.2968,0.7075,0.230053,10.3007,0.636742,0.226517,10.2981,0.566605,0.0174944,10.325,1.01244,-0.0174944,10.325,1.01244,0.0890758,10.325,0.999323,0.154575,10.2867,0.948063,0.197371,10.2997,0.899073,0.217654,10.3002,0.826091,0.228385,10.2968,0.747641,0.232098,10.3006,0.679071,0.230783,10.2983,0.608771,0.0512325,10.325,0.970882,0.109723,10.3245,0.947819,0.152192,10.3201,0.910004,0.170002,10.3006,0.84341,0.177003,10.2998,0.773009,0.173861,10.2968,0.707885,0.170574,10.3007,0.637768,0.171326,10.2981,0.567006,-0.00840897,10.325,0.97587,0.00840897,10.325,0.97587,0.0100681,10.325,0.97587,-0.0100681,10.325,0.97587,0.0763215,10.325,0.964248,0.134273,10.32,0.932191,0.159273,10.2988,0.882956,0.175784,10.3003,0.819536,0.176251,10.2968,0.746345,0.171747,10.3006,0.679955,0.167906,10.2983,0.609388,0.00184509,10.33,1.00878,-0.00184509,10.33,1.00878,0.0740821,10.33,0.998077,0.141685,10.3273,0.966305,0.186171,10.3278,0.909262,0.211986,10.3084,0.838449,0.222137,10.3062,0.757812,0.225927,10.307,0.692295,0.223661,10.3075,0.621841,0.00185591,10.33,0.981732,-0.00185591,10.33,0.981732,0.0661791,10.33,0.972209,0.124558,10.3271,0.94537,0.160938,10.3277,0.895186,0.178542,10.3085,0.8328,0.182072,10.3062,0.756473,0.179001,10.307,0.692862,0.17595,10.3075,0.62245,0.0717223,10.33,0.998814,0.139563,10.3276,0.967674,0.185206,10.3275,0.91119,0.211652,10.3084,0.840889,0.221936,10.3065,0.760432,0.225837,10.3067,0.694671,0.223791,10.3077,0.624182,0.219987,10.3064,0.553896,0.0640071,10.33,0.972682,0.122624,10.3273,0.946333,0.160094,10.3275,0.897059,0.177683,10.3085,0.834988,0.182021,10.3065,0.758997,0.17907,10.3067,0.695199,0.175993,10.3077,0.62482,0.178079,10.3064,0.554197,0.223045,10.3076,0.622865,0.221511,10.3063,0.75891,0.211388,10.3084,0.839436,0.405079,10.0818,0.772464,0.452448,11.5694,0.616933,0.426792,11.5367,-0.348324,0.132732,10.1853,-0.400425,0.255323,9.7346,1.0108,0.390698,9.92757,0.873314,0.452881,10.0524,0.621133,0.395284,10.0852,0.375199,0.383195,10.081,0.126595,0.380108,10.1763,-0.0922158,0.367342,10.1875,-0.161076,0.436241,10.1985,0.698547,0.43066,10.3197,0.709863,0.379839,10.6067,0.79819,0.461082,11.2445,0.645257,0.462439,11.4362,0.637338,0.414546,10.3708,-0.348675,0.52239,10.6349,-0.451086,0.551502,10.8753,-0.486473,0.522967,11.3342,-0.428964,0.459395,11.472,-0.373482,0.217016,11.6155,-0.432179,0.342097,11.5759,-0.390496,0.17906,11.6697,0.728054,0.335935,11.6223,0.684665,0.47637,11.6109,0.494521,0.514765,11.6364,0.279343,0.515404,11.639,0.149359,0.495261,11.6079,-0.117871,0.456745,11.569,-0.25749,0.168281,9.92516,0.365298,0.210038,9.84416,0.614075,0.285437,9.69388,1.0021,0.295531,9.96161,0.273946,0.332342,9.93811,0.493007,0.41805,9.9038,0.83287,0.215544,11.7115,-0.307005,0.35726,11.6542,-0.276448,0.203216,11.8247,-0.135543,0.399297,11.7413,-0.108161,0.211692,11.8918,0.16615,0.419436,11.7798,0.163066,0.226603,11.8865,0.365015,0.410207,11.782,0.317379,0.192763,11.8107,0.574473,0.355605,11.7368,0.534284,0.134473,10.7173,1.00568,0.242234,11.3217,0.924598,0.188895,11.4656,0.849156,0.221031,10.6168,0.902177,0.37953,11.2583,0.838598,0.356523,11.4284,0.787248,0.478483,10.2237,0.559827,0.498709,10.3839,0.599885,0.49326,10.6605,0.692833,0.502096,11.2526,0.513941,0.516038,11.4654,0.487412,0.477528,10.3092,0.330777,0.58913,10.616,0.265882,0.600548,10.7463,0.313119,0.584441,11.2912,0.282267,0.561977,11.4981,0.266841,0.477099,10.2625,0.140304,0.557685,10.4936,0.135158,0.616291,11.3373,0.119779,0.576561,11.5103,0.139566,0.451808,10.3317,-0.116969,0.609414,10.6047,-0.0790393,0.665762,10.8138,-0.185119,0.618417,11.3431,-0.170431,0.567669,11.4973,-0.132473,0.451176,10.3548,-0.226694,0.564394,10.6269,-0.310792,0.613202,10.855,-0.36269,0.585796,11.3334,-0.312326,0.533168,11.4747,-0.271723,0.225215,11.5182,-0.499819,0.234709,11.3588,-0.576113,0.241441,10.8801,-0.674925,0.219562,10.5853,-0.633742,0.172581,10.35,-0.524528,0.353519,11.4917,-0.44716,0.390978,11.3424,-0.514406,0.436582,10.8831,-0.588709,0.39383,10.6186,-0.551646,0.312326,10.3689,-0.452937,0.387736,10.432,0.775359,0.527557,10.7042,-0.46155,0.0748074,10.5062,1.02494,0.243449,10.4952,0.901038,0.491121,10.5169,0.649327,0.594263,10.672,0.300486,0.631246,10.6765,-0.102212,0.582711,10.6981,-0.321279,0.226577,10.661,-0.647556,0.408647,10.6856,-0.565365,0.43106,10.9068,0.790595,0.435005,10.9297,0.775693,0.557404,10.977,-0.48969,0.556589,11.0769,-0.484563,0.164002,10.9147,0.956207,0.340487,10.9081,0.880304,0.346012,10.9256,0.87657,0.518894,10.9281,0.665379,0.516415,10.9492,0.651475,0.614866,10.8841,0.291385,0.618445,10.9572,0.2917,0.683845,10.958,-0.244369,0.681679,11.0684,-0.226367,0.624711,10.9688,-0.379683,0.629442,11.0717,-0.37189,0.245583,11.0951,-0.65788,0.244428,10.9908,-0.669796,0.440576,11.0939,-0.578723,0.440186,10.9818,-0.584458,0.20343,10.425,0.947442,0.108971,10.465,1.0552,0.315119,10.3485,0.838083,0.364334,10.2673,0.790326,0.371394,10.1854,0.793002,0.298001,10.008,0.999887,0.146965,9.89996,1.05268,0.35147,10.1008,0.86223,0.176306,10.1121,1.01524,0.0605626,10.0568,1.07261,0.127324,10.0758,1.04986,0.210396,10.1869,0.948409,0.22282,10.2103,0.946233,0.201167,10.2516,1.00177,0.0737163,10.3568,1.12592,0.14335,10.3257,1.07191,0.080455,11.0282,0.968881,0.0797285,10.9429,1.03352,0.0666271,10.6966,1.20725,0.0884947,10.6015,1.22377,0.193578,10.5791,1.12176,0.191561,10.6342,1.0863,0.17557,10.9276,0.929765,0.104687,11.2253,0.899282,0.444161,10.9856,0.729653,0.551947,11.1574,-0.472197,0.389445,10.9889,0.783373,0.503488,11.0184,0.618472,0.645483,11.1319,0.154283,0.665504,11.1914,0.017294,0.67612,11.1399,-0.163789,0.624597,11.1555,-0.349557,0.245075,11.1624,-0.644418,0.438935,11.1617,-0.570013,0.0954038,9.96972,1.09943,0.212729,10.0659,1.0472,0.283569,10.1063,0.947138,0.321901,10.184,0.86395,0.327243,10.2163,0.857538,0.284072,10.2652,0.930613,0.0951129,10.4268,1.14006,0.189555,10.3613,1.03715,0.365985,11.009,0.787728,0.120678,11.2114,0.857063,0.17886,10.9494,0.887645,0.0847581,11.0566,0.901111,0.28845,10.9537,0.87209,0.345076,11.2088,0.787867,0.246251,11.2582,0.81763,0.220332,11.2338,0.765134,0.322139,11.1739,0.73378,0.27647,10.9598,0.818784,0.0628091,11.0781,0.849971,0.17706,10.9623,0.8427,0.106058,11.203,0.806999,0.349806,11.0095,0.772671,0.350653,11.0241,0.734151,0.0954312,11.2208,0.761477,0.148003,10.968,0.806174,0.0297216,11.1079,0.799739,0.277907,10.9516,0.781051,0.329779,11.1829,0.698248,0.222629,11.2486,0.721882,0.226299,11.2523,0.667157,0.324742,11.182,0.664605,0.273201,10.9615,0.723778,0.0276449,11.1172,0.731768,0.145532,10.9552,0.74653,0.0959922,11.224,0.696627,0.34852,11.0256,0.690244,0.563185,10.7,0.499029,0.538296,10.4715,0.415971,0.552795,10.5814,0.465329,0.572803,10.9081,0.516393,0.574004,10.954,0.509358,0.554867,11.0504,0.470302,0.563093,10.5476,0.210505,0.624448,11.0348,0.275171,0.665355,11.0257,0.210262,0.617584,10.564,0.177457,0.792715,11.143,-0.173748,0.726978,11.2028,0.010407,0.688244,11.1384,0.141538,0.804249,11.0396,-0.255922,0.808829,10.9159,-0.27337,0.684608,10.9614,0.184497,0.767663,10.6706,-0.1131,0.624668,10.7199,0.197331,0.805125,10.8097,-0.223616,0.736733,10.5744,-0.0728578,0.623425,10.5122,0.130935,0.614141,10.6548,0.205895,0.698892,10.9688,0.160044,0.791194,10.9101,-0.199463,0.782406,11.004,-0.197145,0.642045,10.5918,0.124443,0.121193,9.93946,1.06366,0.252931,10.0356,1.007,0.312706,10.1094,0.895305,0.337964,10.1801,0.840904,0.335807,10.2369,0.836416,0.30341,10.2986,0.869669,0.103246,10.451,1.09231,0.19418,10.3907,0.99322,0.152956,10.3137,0.980817,0.0733876,10.3454,1.02695,0.206646,10.243,0.936934,0.228251,10.217,0.922908,0.214781,10.1806,0.921621,0.118033,10.097,0.981652,0.0540031,10.0671,0.999085,0.180579,10.1224,0.945315,0.203564,10.2314,0.966025,0.145937,10.3043,1.03148,0.0757857,10.333,1.07853,0.222726,10.2074,0.935295,0.209929,10.1855,0.93447,0.17275,10.1316,0.979509,0.121806,10.1064,1.01604,0.0589609,10.0869,1.03758,0.097069,9.95968,1.09852,0.216637,10.062,1.04419,0.287464,10.1058,0.941819,0.324994,10.1824,0.861991,0.329279,10.2165,0.854686,0.285242,10.267,0.924783,0.0956182,10.4286,1.13581,0.18983,10.362,1.03299,0.252774,9.77065,0.288941,0.162125,9.75374,0.328641,0.356487,9.87513,-0.17497,0.387756,9.86153,-0.0925043,0.34917,9.80024,0.204207,0.233851,9.89524,-0.361654,0.116009,9.90109,-0.421934,0.304767,9.88925,-0.274581,0.422755,9.50869,-0.353824,0.204347,9.53733,-0.566356,0.321508,9.51335,-0.452169,0.419412,9.48431,0.269811,0.544903,9.51407,-0.150143,0.482752,9.51155,-0.265337,0.137342,9.34716,0.407325,0.302715,9.46059,0.417372,0.157355,9.71999,-0.479324,0.269655,9.71141,-0.401103,0.339643,9.69807,-0.312836,0.439502,9.66681,-0.113468,0.367949,9.61994,0.238593,0.409912,9.67975,-0.200566,0.115462,9.52801,0.363312,0.247966,9.60504,0.347553,0.352463,10.0147,-0.158968,0.221249,10.0117,-0.339442,0.0829814,11.1317,0.929662,0.0926938,11.138,0.880209,0.070862,11.1503,0.82516,0.0484494,11.1726,0.781049,0.0591887,11.177,0.711778,0.452531,11.0749,0.678757,0.401231,11.1015,0.754424,0.489042,11.1225,0.555532,0.379924,11.0927,0.755029,0.359399,11.0926,0.73821,0.371697,11.0941,0.717259,0.355616,11.0938,0.674933,0.570062,11.1721,0.382147,0.631332,11.0907,0.234523,0.672029,11.0681,0.19401,0.477474,10.5353,-0.409513,0.51993,10.4303,0.114261,0.522862,10.5062,-0.148283,0.518917,10.5182,-0.277646,0.2022,10.4973,-0.600333,0.363514,10.532,-0.518593,0.535467,11.241,-0.451351,0.615496,11.2182,0.211317,0.641511,11.2592,0.0775873,0.647995,11.2504,-0.188306,0.605029,11.2447,-0.333,0.231329,11.2532,-0.618527,0.422362,11.2394,-0.548997,0.582247,10.722,0.397857,0.559297,10.5482,0.319775,0.574969,10.6286,0.369355,0.594297,10.8925,0.39565,0.598062,10.9497,0.378241,0.521233,10.4769,0.231857,0.596076,11.0451,0.333038,0.606307,11.1496,0.276202,0.104556,11.637,-0.452158,0.0810043,11.6856,0.740934,0.102978,11.7363,-0.321285,0.102023,11.8457,-0.141785,0.106261,11.9175,0.155022,0.114512,11.9191,0.365999,0.0897977,11.8349,0.58744,0.0947687,11.4734,0.862457,0.120671,11.37,0.925794,0.086705,10.347,-0.541123,0.110196,10.5786,-0.657394,0.121135,10.8784,-0.694739,0.110796,11.3685,-0.605683,0.108349,11.536,-0.526789,0.113703,10.6554,-0.668756,0.123206,11.0921,-0.678385,0.122629,10.9922,-0.689896,0.122952,11.1629,-0.665335,0.0456086,9.90349,-0.444072,0.0818424,9.5345,-0.611983,0.0404314,9.72569,-0.517485,0.101515,10.4892,-0.619215,0.116079,11.2617,-0.638557,0.155487,11.2881,0.889681,0.176341,11.2487,0.839736,0.164725,11.2199,0.786467,0.158635,11.2454,0.743145,0.160591,11.248,0.6832,0.0931579,11.3196,0.911592,0.0602381,11.241,0.935437,0.0643418,10.5105,1.02508,0.0967082,10.4671,1.05441,0.0671636,10.3572,1.12706,0.0411314,11.0379,1.02767,0.037377,10.5963,1.25964,0.0392611,10.949,1.08328,0.030281,10.6938,1.23041,0.0863593,10.4251,1.1425,0.0933667,10.4509,1.09186,0.0387729,10.3474,1.03252,0.044513,10.3309,1.08068,0.086801,10.4272,1.13827,0.0440056,11.1401,0.979394,0.510536,11.627,0.0092895,0.415348,11.7633,-0.0014057,0.207564,11.8602,-0.00689002,0.58388,11.5109,0.00176961,0.629859,11.3501,-0.0274971,0.668748,11.1714,-0.0848714,0.767713,11.1942,-0.0755102,0.750287,11.1399,-0.0654209,0.651396,11.263,-0.0557948,0.104197,11.8794,-0.00728078,0.71024,11.0828,0.126623,0.68804,11.0174,0.164007,0.646905,10.6847,0.140335,0.651623,10.566,0.107171,0.767096,11.091,-0.143253,0.729809,11.1359,0.0157568,0.787169,10.8341,-0.153945,0.766174,10.715,-0.0743857,0.751807,10.6586,-0.0362352,0.640525,10.7277,0.159403,0.695855,11.0491,0.147974,0.701235,10.917,0.127829,0.686508,10.8899,0.146719,0.653043,10.7755,0.134231,0.634742,10.7673,0.177611,0.386697,10.1248,0.0447458,0.567022,10.4916,0.0628448,0.452083,10.2903,0.0259131,0.673609,10.46,0.0561444,0.40819,9.83136,0.061761,0.552404,9.5045,0.0358536,0.46998,9.64565,0.048965,0.519345,10.4484,0.025217,0.675042,10.578,0.0626926,0.434946,10.2586,0.703008,0.487816,10.3095,0.561449,0.367805,10.2239,0.789272,0.216897,10.2027,0.947745,0.324605,10.198,0.859467,0.513876,10.3835,0.362216,0.577008,10.5834,0.236986,0.621057,10.6316,0.208659,0.336913,10.2063,0.836272,0.226087,10.2023,0.921396,0.21666,10.1979,0.93525,0.327153,10.1974,0.85626,0.54118,10.5132,0.275272,0.678014,10.6808,0.156499,0.395361,10.7306,0.804164,0.135413,10.7849,0.988214,0.264079,10.719,0.904373,0.507967,10.7759,0.698627,0.605766,10.8136,0.307142,0.078288,10.7773,1.12311,0.570045,10.7887,0.511579,0.587505,10.8048,0.404014,0.0283156,10.7894,1.171,0.651476,10.8273,0.158056,0.579288,10.5123,0.0164813,0.452145,10.3149,-0.054109,0.702166,10.499,-0.0199249,0.407297,9.84936,-0.0260794,0.58061,9.51567,-0.0488353,0.460001,9.65729,-0.0427455,0.521316,10.4861,-0.0595706,0.723983,10.6118,0.00943872,0.661323,11.1347,0.147841,0.642032,11.0324,0.2388,0.641289,10.9656,0.201458,0.607016,10.6332,0.235607,0.58244,10.5774,0.204892,0.586965,10.5455,0.135233,0.711682,11.1156,-0.143362,0.696241,11.1719,0.013335,0.719063,11.0595,-0.212123,0.721965,10.9451,-0.230062,0.708268,10.8148,-0.170336,0.673586,10.6659,-0.0722475,0.649837,10.5945,-0.0372592,0.609291,10.6997,0.246983,0.647658,11.0773,0.215766,0.718231,11.1575,-0.0815112,0.61595,10.7657,0.242239,0.641331,10.894,0.187727,0.624662,10.504,0.0631728,0.594989,10.5922,0.219166,0.625475,10.8259,0.223558,0.622825,10.521,0.0152486,0.460656,11.2741,0.644036,0.500072,11.4036,-0.404726,0.23398,11.3439,0.912965,0.37007,11.2935,0.830679,0.512733,11.3445,0.493842,0.575948,11.3986,0.270054,0.602634,11.4263,0.13474,0.599982,11.4244,-0.148575,0.56708,11.4096,-0.289856,0.228757,11.4377,-0.547593,0.374168,11.4167,-0.488579,0.119331,11.3912,0.916027,0.108016,11.4514,-0.57715,0.613788,11.4334,-0.00775994,0.137521,10.9131,0.968562,0.130821,10.7163,1.01708,0.0402034,10.5233,1.071,0.236855,10.4993,0.932152,0.2192,10.6177,0.91226,0.136935,10.9475,0.936697,0.126494,10.9741,0.895146,0.12342,10.9917,0.850724,0.124244,10.9906,0.808526,0.120997,10.9774,0.74701,0.0351786,10.516,1.06966,0.127906,10.7861,0.996116,0.407475,10.0913,0.408142,0.504914,11.63,0.386099,0.23715,9.77971,0.700688,0.361411,9.922,0.544765,0.389451,11.7719,0.421173,0.216638,11.857,0.46152,0.547929,11.485,0.373463,0.541634,11.2746,0.405494,0.490375,10.3069,0.340254,0.562322,10.6912,0.542326,0.537217,10.4675,0.423664,0.550998,10.5785,0.472173,0.551149,10.9167,0.596132,0.548096,10.9555,0.585661,0.528596,11.0338,0.54427,0.529448,11.1472,0.468855,0.10258,11.8863,0.4718,0.513946,10.3785,0.373803,0.554698,10.7819,0.577619,0.549136,11.3765,0.380214,0.680623,11.1373,0.143322,0.658752,11.0276,0.218341,0.661412,10.9632,0.18864,0.612444,10.6492,0.22061,0.595592,10.5626,0.20081,0.608259,10.5063,0.138568,0.776212,11.1425,-0.172821,0.718277,11.2012,0.0112359,0.7869,11.0436,-0.252317,0.791139,10.9218,-0.269892,0.7854,10.8124,-0.215631,0.750146,10.6708,-0.105534,0.723828,10.5707,-0.0654751,0.620327,10.7142,0.21376,0.66513,11.0707,0.200169,0.753705,11.1909,-0.077209,0.630073,10.769,0.193397,0.667607,10.8853,0.162465,0.661951,10.4712,0.0567221,0.607783,10.6146,0.214469,0.642448,10.8262,0.180083,0.689475,10.5077,-0.0127986,0.648295,11.1324,0.153139,0.627569,11.0344,0.268714,0.6225,10.9587,0.275673,0.592298,10.6193,0.260587,0.56652,10.5526,0.209445,0.569884,10.5129,0.137551,0.686469,11.1149,-0.164975,0.67096,11.1673,0.0165912,0.692558,11.0658,-0.229353,0.694938,10.9543,-0.247337,0.678132,10.8142,-0.187734,0.643031,10.666,-0.100057,0.619816,10.598,-0.0726295,0.596965,10.6767,0.29199,0.63423,11.0883,0.231194,0.677532,11.1482,-0.0842749,0.60332,10.7495,0.301894,0.619564,10.8865,0.272008,0.58595,10.502,0.0674123,0.580198,10.585,0.233839,0.609182,10.8162,0.292288,0.587412,10.5174,0.0151146,0.690262,10.8168,0.0443389,0.698211,10.8539,0.0381383,0.652295,10.8172,0.134702,0.731515,10.7139,0.0687393,0.68966,10.6967,0.125933,0.67492,10.5943,0.0663607,0.71484,10.6143,0.0179496,0.639524,10.6907,0.125092,0.700168,10.7024,0.063122,0.73534,10.7057,-0.00447411,0.749447,10.7401,-0.0464885,0.737352,10.6663,-0.0375804,0.751306,10.7271,-0.076768,0.751786,10.8575,-0.105106,0.742845,10.8406,-0.0579251,0.732326,10.8819,-0.0258034,0.733486,10.9169,-0.0692055,0.732016,10.9554,-0.0247638,0.728453,10.9107,0.0198262,0.718742,10.8665,-0.0127313,0.708696,10.888,0.0305672,0.711174,10.7415,-0.044398,0.720938,10.8357,-0.0503472,0.721675,10.7024,-0.00874038,0.762661,11.0085,-0.0687209,0.771348,10.9597,-0.115726,0.73949,10.9114,-0.139477,0.748139,10.8078,-0.0622364,0.709492,10.8123,-0.0559991,0.751107,10.8314,-0.158436,0.753243,10.912,-0.205976,0.749498,11.0055,-0.191622,0.733251,11.0908,-0.140437,0.715413,11.1357,-0.06538,0.693682,11.1361,0.0126437,0.692406,11.0489,0.142496,0.685947,11.0153,0.15218,0.679899,10.9711,0.145924,0.687567,11.0798,0.123717,0.415717,10.826,0.798295,0.149707,10.8502,0.9724,0.308922,10.8184,0.893411,0.522162,10.8572,0.682669,0.610026,10.8488,0.298926,0.0831169,10.864,1.07915,0.570463,10.8525,0.518857,0.590458,10.8486,0.400189,0.03369,10.8678,1.13634,0.650336,10.8406,0.151253,0.633403,10.8599,0.205642,0.135137,10.8566,0.982404,0.556442,10.8585,0.589964,0.643729,10.8463,0.172516,0.614176,10.8513,0.281927,0.634146,10.8226,0.133344,0.673339,10.8112,0.0730934,0.672532,10.7667,0.100891,0.691208,10.7616,0.0365957,0.686143,10.7439,0.0826464,0.62152,10.7297,0.154412,0.631147,10.7649,0.132071,0.694856,10.7991,-0.000749676,0.699695,10.8339,-0.00587305,0.673149,10.9341,0.111901,0.700465,11.0464,0.0841271,0.703234,10.9672,0.106715,0.701355,11.0139,0.0962658,0.736907,11.054,0.0360562,0.70987,10.9477,0.0844722,0.713396,10.9997,0.058729,0.685604,10.919,0.0938407,0.693887,10.8684,0.119749,0.709115,10.8966,0.104323,0.673228,10.8302,0.103724,0.749707,11.041,-0.01575,0.721114,10.9306,0.0513706,0.723086,10.9823,0.0177463,0.695762,10.9026,0.0674903,0.693935,10.8514,0.0866304,0.701632,10.8761,0.0755774,0.673652,10.7783,0.0693107,0.694919,10.7684,-0.000299593,0.708718,10.776,-0.0532533,0.540278,10.7867,-0.474951,0.648505,10.7451,-0.143731,0.598658,10.7726,-0.34249,0.234009,10.7705,-0.66124,0.422615,10.7843,-0.577037,0.786394,10.7401,-0.168358,0.117419,10.7669,-0.681747,0.776599,10.7734,-0.113603,0.690927,10.7403,-0.12136,0.767773,10.7416,-0.160582,0.660585,10.74,-0.144029,0.76003,10.7735,-0.116831,0.753437,10.7901,-0.0862972,0.747974,10.7757,-0.0580357,0.75013,10.7618,-0.0736133,0.594223,10.7796,0.079863,0.59239,10.8226,0.105135,0.590312,10.7713,0.125581,0.591702,10.7724,0.105406,0.594189,10.8121,0.0837459,0.591097,10.8153,0.126207,0.10981,10.9255,0.996866,0.0987208,10.7059,1.11618,0.0397882,10.5493,1.13074,0.21424,10.5211,1.03804,0.203843,10.6249,1.00046,0.10602,10.9769,0.951272,0.0926093,11.0101,0.902334,0.0853769,11.0247,0.848527,0.0672203,11.042,0.807893,0.0624198,11.0423,0.740533,0.0318051,10.5482,1.13751,0.103097,10.7819,1.05966,0.109127,10.8603,1.03078,0.176181,10.6662,0.954373,0.168182,10.4937,0.962911,0.23654,10.9055,0.918255,0.157848,10.4488,1.00167,0.109225,10.3418,1.09777,0.133436,10.5896,1.16973,0.12905,10.6647,1.15077,0.239962,10.9252,0.903168,0.143002,10.402,1.08831,0.23806,10.9423,0.879472,0.227251,10.9488,0.832923,0.213729,10.9515,0.798215,0.21169,10.943,0.739148,0.148516,10.4276,1.04306,0.110994,10.3353,1.01177,0.111228,10.3211,1.05504,0.143336,10.4031,1.0841,0.186211,10.733,0.945977,0.158307,10.4983,1.01857,0.173587,10.6663,0.965071,0.216893,10.8215,0.933184,0.142524,10.5236,1.08872,0.151196,10.6664,1.05903,0.0978939,10.685,1.06032,0.0939712,10.659,0.976366,0.0524107,10.6915,1.07724,0.0476334,10.6623,0.994285,0.0574576,10.6231,1.12231,0.0553495,10.5857,1.02446,0.1778,10.5867,0.995837,0.178195,10.621,1.09574,0.0396682,9.9895,0.980526,0.242015,10.1869,0.891377,0.251655,10.2573,0.892551,0.16732,10.3598,0.948209,0.0586161,10.3906,1.00132,0.223621,10.2936,0.907683,0.105064,10.0509,0.967188,0.22354,10.1143,0.912849,0.0286463,10.3949,1.00609,0.254365,10.2302,0.889232,0.104391,10.3739,0.986371,0.145697,10.4439,0.812958,0.263806,10.2396,0.779044,0.0421492,10.4431,0.816118,0.195139,10.1034,0.788432,0.0513,9.99305,0.797245,0.117556,10.0393,0.79895,0.247324,10.1726,0.777663,0.263334,10.3138,0.783032,0.241704,10.3779,0.791304,0.0891039,10.4465,0.815862,0.202505,10.4191,0.80211,0.211328,10.4416,0.482124,0.0902159,10.4473,0.471235,0.243899,10.418,0.480049,0.248375,10.3648,0.475988,0.211108,10.2459,0.467965,0.115512,10.1363,0.458181,0.0527663,10.1585,0.464371,0.172066,10.1837,0.460953,0.0422708,10.4409,0.469801,0.234289,10.3046,0.473183,0.151055,10.4503,0.477849,0.106746,10.4044,0.383907,0.180663,10.3127,0.400694,0.0300477,10.3977,0.382492,0.132566,10.2374,0.387203,0.0374266,10.1766,0.381688,0.082032,10.189,0.375535,0.160964,10.2777,0.39342,0.196317,10.3535,0.410611,0.172206,10.3833,0.394719,0.0638514,10.4022,0.380147,0.149242,10.3983,0.391901,0.0337372,10.2935,0.352247,0.0729417,10.3061,0.351893,0.118441,10.3269,0.36271,0.134558,10.3364,0.36986,0.154695,10.3421,0.379256,0.243899,10.3948,0.732772,0.243899,10.4029,0.670866,0.243899,10.408,0.608105,0.243899,10.4144,0.544354,0.211328,10.4278,0.740009,0.211328,10.4337,0.676935,0.211328,10.4371,0.612944,0.211328,10.4402,0.547985,0.263446,10.323,0.72454,0.261445,10.3348,0.664463,0.259458,10.3439,0.603205,0.260396,10.3596,0.541069,0.194968,10.1128,0.725449,0.193579,10.1088,0.659439,0.188282,10.1218,0.593939,0.184861,10.1481,0.527965,0.247174,10.1699,0.717867,0.245873,10.1699,0.657151,0.23831,10.1839,0.595046,0.231547,10.2123,0.533364,0.118733,10.0674,0.735711,0.118571,10.0719,0.666966,0.119591,10.0831,0.599857,0.115387,10.1029,0.527159,0.0525065,10.0266,0.73692,0.0538605,10.0436,0.670937,0.0574245,10.0641,0.611153,0.0913876,10.4468,0.747667,0.0910947,10.447,0.678582,0.0908017,10.4471,0.609466,0.0905088,10.4472,0.540351,0.0431541,10.4409,0.747307,0.0416607,10.4401,0.677712,0.0418641,10.4404,0.608409,0.0420674,10.4406,0.539105,0.263461,10.2406,0.72044,0.260614,10.2508,0.660639,0.256365,10.2638,0.599807,0.252771,10.285,0.538612,0.151055,10.4486,0.747527,0.151055,10.4501,0.680896,0.151055,10.4503,0.613377,0.151055,10.4503,0.545613,0.129014,10.4414,0.876093,0.0771839,10.4499,0.881804,0.189687,10.4158,0.860303,0.243497,10.1851,0.827958,0.260921,10.2497,0.827367,0.259032,10.3059,0.830863,0.0376292,10.4452,0.88272,0.0475267,9.94714,0.854905,0.114677,10.0119,0.861382,0.204964,10.1049,0.847718,0.233415,10.3558,0.839205,0.0613206,10.1134,0.58625,0.118511,10.1319,0.585957,0.0931703,10.2559,0.491501,0.11111,10.1873,0.542067,0.0533918,10.2702,0.498298,0.0515477,10.3129,0.573956,0.093967,10.2905,0.572601,0.127414,10.1667,0.607719,0.124487,10.2302,0.592034,0.0778793,10.1452,0.605072,0.0860803,10.1516,0.634558,0.122924,10.1784,0.637446,0.133736,10.2376,0.631961,0.102691,10.2941,0.625264,0.0575386,10.3088,0.623891,0.105029,10.2863,0.684501,0.0587158,10.2965,0.681819,0.127165,10.1811,0.685284,0.136771,10.2358,0.68543,0.0908019,10.1539,0.68202,0.0976543,10.156,0.747893,0.133265,10.184,0.751723,0.118406,10.2716,0.755622,0.140348,10.2304,0.754336,0.0781518,10.2769,0.75507,0.127197,10.2173,0.846194,0.0869761,10.2197,0.842887,0.145457,10.2017,0.841061,0.143271,10.1682,0.83324,0.110169,10.1381,0.828771,0.111645,10.1144,0.863974,0.137132,10.1471,0.868117,0.136077,10.1678,0.872396,0.12197,10.1745,0.874496,0.0860104,10.1721,0.871963,0.110373,10.1452,0.895003,0.0822821,10.1044,0.914763,0.117918,10.1403,0.894715,0.116276,10.1427,0.898009,0.0941672,10.0997,0.914565,0.0877142,10.1013,0.922714,0.116967,10.4206,0.931793,0.06832,10.4311,0.942459,0.261288,10.2448,0.860112,0.0331772,10.4289,0.945292,0.109388,10.033,0.915779,0.214252,10.1097,0.880982,0.229777,10.3301,0.876023,0.0434849,9.96743,0.920641,0.258252,10.2865,0.864,0.245922,10.1898,0.86137,0.178983,10.3928,0.905714,0.565606,10.7726,0.145421,0.556043,10.7733,0.129054,0.555927,10.8218,0.128854,0.566035,10.8144,0.146156,0.545193,10.8121,0.11048,0.543231,10.7796,0.107122,0.505215,10.8121,0.17736,0.502137,10.7796,0.174983,0.522237,10.7733,0.190511,0.537912,10.8144,0.20262,0.537238,10.7726,0.2021,0.522054,10.8218,0.190369,0.197283,10.9605,0.638722,0.0807695,11.0368,0.640881,0.12649,10.9861,0.645937,0.157394,11.1973,0.596132,0.309613,11.077,0.589679,0.0782476,11.1419,0.618438,0.304075,11.0238,0.60163,0.106973,11.1786,0.606612,0.147233,10.9713,0.642955,0.0536272,11.0952,0.63404,0.245229,10.9738,0.627722,0.285516,11.1458,0.581619,0.208476,11.1979,0.583176,0.20441,11.15,0.535694,0.258772,11.1112,0.534285,0.23031,10.9894,0.566961,0.0947102,11.0754,0.571373,0.159809,10.9859,0.579525,0.132453,11.1344,0.551968,0.271903,11.0249,0.548443,0.112129,11.1084,0.560335,0.275821,11.0625,0.539988,0.168125,11.1477,0.544553,0.146261,10.9982,0.57979,0.113913,11.0341,0.576213,0.196343,10.9792,0.575449,0.326385,10.204,-0.265568,0.245154,10.1854,-0.342259,0.0671483,10.1876,-0.418382,0.385354,10.1575,-0.0319394,0.359532,9.91278,0.160903,0.274807,9.85561,0.272991,0.156274,9.82288,0.340451,0.300982,10.0205,-0.262537,0.372343,9.99592,-0.0834735,0.115069,10.0148,-0.397971,0.0519322,10.0182,-0.415898,0.386478,9.95274,0.0502795,0.38254,9.97806,-0.0223398,0.130963,9.7992,-0.450577,0.255697,9.79283,-0.380673,0.320107,9.78071,-0.292285,0.410926,9.74826,-0.10315,0.354288,9.69448,0.221702,0.378747,9.76182,-0.188379,0.131973,9.65556,0.334844,0.248036,9.67531,0.317779,0.0410956,9.80278,-0.481335,0.433838,9.7226,0.0628111,0.434421,9.73748,-0.0339391,0.164556,9.62046,-0.523274,0.296227,9.61899,-0.423644,0.368818,9.59499,-0.331992,0.491356,9.579,-0.130488,0.380992,9.54437,0.255593,0.443525,9.58778,-0.216391,0.13278,9.41483,0.408378,0.257239,9.52379,0.386033,0.048137,9.62104,-0.566386,0.51391,9.56452,0.0370314,0.515341,9.57445,-0.0536779,0.151626,9.31552,0.460271,0.314217,9.4015,0.486048,0.637388,9.49272,0.042743,0.669475,9.53021,-0.0607849,0.630327,9.5261,-0.171552,0.571138,9.51346,-0.30568,0.479333,9.46972,0.312565,0.10844,9.44769,-0.669188,0.399588,9.42503,-0.488904,0.243613,9.46105,-0.596024,0.503418,9.47107,-0.406336,0.308805,9.78988,0.245154,0.366563,9.47599,0.330983,0.311485,9.61346,0.286626,0.308802,9.68818,0.272209,0.321471,9.53351,0.312603,0.398998,9.43395,0.393864,0.374295,9.81054,0.151372,0.389338,9.81857,0.116077,0.398378,9.82581,0.089813,0.462669,9.49171,0.195261,0.492548,9.49505,0.142579,0.522208,9.50117,0.0893295,0.400375,9.62936,0.178369,0.424238,9.63433,0.135593,0.447286,9.64064,0.0923171,0.386653,9.7064,0.166398,0.405381,9.71253,0.127945,0.419654,9.71787,0.0953723,0.421512,9.55072,0.187313,0.453303,9.55487,0.135074,0.483621,9.56096,0.0860712,0.598211,9.48924,0.108608,0.56077,9.48228,0.174045,0.532305,9.48062,0.223316,0.309598,9.8373,0.237152,0.362987,9.88149,0.161692,0.388738,9.90447,0.0874404,0.337521,9.83286,0.198515,0.376363,9.85888,0.115002,0.372339,9.85214,0.15946,3.53271,8.93966,0.0385299,3.55728,9.14192,-0.0518264,3.51973,8.76309,-0.00555762,3.5172,8.78074,-0.516791,3.52086,8.72862,-0.386739,3.52307,8.69472,-0.231988,3.509,9.2781,-0.621314,3.53936,9.36413,-0.0735252,3.51792,9.47331,-0.261818,3.50592,9.41089,-0.540366,3.5219,8.69284,-0.103315,3.55315,9.18472,-0.597015,3.52054,8.85,-0.574394,3.49364,8.88432,-0.632917,3.51269,9.13992,-0.683629,3.52354,8.99726,-0.694871,3.23579,8.68577,-0.2146,3.23538,8.69125,-0.0765202,3.23631,8.77053,0.0289004,3.24047,9.43861,-0.285127,3.21866,9.3612,-0.562044,3.22256,9.24069,-0.637826,3.25659,9.33905,-0.0648301,3.26334,9.14622,0.00442938,3.22626,8.96547,-0.698667,3.22886,8.74969,-0.52691,3.23263,8.71305,-0.373209,3.2426,8.95916,0.087996,3.22998,9.12495,-0.698015,3.2226,8.86217,-0.632182,3.29302,9.17904,-0.648379,3.26939,8.8245,-0.58246,1.78248,9.01659,0.283178,1.84517,9.336,0.29064,1.73691,8.78354,0.0882705,1.59461,8.62454,-0.549366,1.65518,8.55291,-0.400243,1.71381,8.58756,-0.272841,1.57701,8.82525,-0.613852,1.56785,9.12862,-0.650022,1.86091,9.5127,0.0594057,1.83571,9.5246,-0.248507,1.69284,9.39824,-0.510833,1.71955,8.64968,-0.0726238,-2.71754e-09,9.47258,-0.688676,-5.64066,8.78992,-0.205702,-7.67367,8.98887,-0.257284,-7.67785,8.98177,-0.195032,-7.66119,8.93969,-0.168375,-7.64233,8.89347,-0.192492,-7.63468,8.86767,-0.25454,-7.62984,8.89469,-0.316353,-7.64359,8.9414,-0.342848,-7.66534,8.983,-0.31926,-7.36813,8.99103,-0.153122,-7.37048,8.95092,-0.122221,-7.35905,8.90997,-0.152585,-7.35028,8.87263,-0.226288,-7.3459,8.91132,-0.30008,-7.35183,8.95288,-0.331212,-7.35643,8.98862,-0.2972,-7.68212,8.93163,-0.258698,-7.50006,9.0028,-0.309173,-7.49028,8.93774,-0.337273,-7.49004,8.86605,-0.310057,-7.49957,8.82574,-0.241167,-7.50402,8.86469,-0.171491,-7.50982,8.93583,-0.143537,-7.48931,9.02914,-0.237117,-7.51388,9.00146,-0.171497,-7.50828,8.9919,-0.303046,-7.49858,9.01534,-0.238331,-7.52074,8.99069,-0.179359,-7.66615,8.97468,-0.200177,-7.65489,8.97579,-0.312017,-7.66549,8.98986,-0.256449,-7.67931,8.98573,-0.201559,-7.68684,9.00343,-0.258468,-7.66809,8.98684,-0.313078,-7.51031,9.00683,-0.303224,-7.5228,9.00563,-0.179259,-7.49764,9.0311,-0.237917,-7.41098,9.02169,-0.302007,-7.40034,8.94765,-0.331642,-7.39581,8.87986,-0.302179,-7.40377,8.84379,-0.231577,-7.41008,8.87847,-0.160617,-7.41957,8.94571,-0.131217,-7.41831,9.04047,-0.231052,-7.42471,9.0203,-0.160831,-7.35981,8.90884,-0.299924,-7.36493,8.87016,-0.226516,-7.37328,8.90771,-0.15314,-7.35761,8.87139,-0.226399,-7.36572,8.90999,-0.160906,-7.35314,8.9119,-0.290873,-7.58355,8.98861,-0.319821,-7.56884,8.9365,-0.34085,-7.5611,8.88014,-0.313708,-7.5682,8.85187,-0.247987,-7.57442,8.87885,-0.181643,-7.58745,8.93466,-0.155815,-7.59712,8.98694,-0.178143,-7.5951,8.97801,-0.185309,-7.58293,8.97951,-0.312579,-7.58586,8.99385,-0.313324,-7.59812,8.99232,-0.184682,-7.5938,9.01355,-0.248995,-7.35581,9.01553,-0.293788,-7.3707,9.01439,-0.16387,-7.38961,9.02875,-0.277662,-7.396,9.0539,-0.22882,-7.39954,9.02785,-0.180452,-7.36547,9.04415,-0.265814,-7.3837,9.03736,-0.266001,-7.37227,9.0321,-0.187161,-7.39134,9.03664,-0.190574,-7.38672,9.04192,-0.228059,-7.37112,9.05765,-0.226512,-7.22199,9.05703,-0.481868,-7.2361,9.04345,-0.484244,-7.24164,9.03862,-0.449619,-7.22417,9.0342,-0.445616,-7.23048,9.03968,-0.519118,-7.21371,9.0455,-0.517628,-7.2496,9.03079,-0.440498,-7.24437,9.05479,-0.485362,-7.23509,9.03215,-0.530447,-7.22367,9.01834,-0.424075,-7.20292,9.02012,-0.542822,-7.42713,9.01878,-0.51498,-7.43482,8.9984,-0.454332,-7.41603,9.00055,-0.575662,-7.41329,8.98704,-0.574873,-7.43192,8.98493,-0.454839,-7.43422,8.99319,-0.448105,-7.42634,8.94419,-0.426681,-7.41264,8.89244,-0.450764,-7.40309,8.86803,-0.513487,-7.39264,8.89438,-0.575284,-7.39838,8.94693,-0.601148,-7.41346,8.99552,-0.581727,-7.20117,8.92805,-0.540859,-7.21949,8.92543,-0.421197,-7.20789,8.89674,-0.481569,-7.22654,8.92458,-0.414196,-7.21458,8.89629,-0.482093,-7.20631,8.9266,-0.549742,-7.27355,9.02413,-0.423046,-7.26445,9.04292,-0.488692,-7.26915,8.95598,-0.395074,-7.26034,8.90111,-0.422494,-7.25015,8.87466,-0.489152,-7.24037,8.90309,-0.555085,-7.2416,8.95886,-0.582484,-7.25311,9.02619,-0.554814,-7.33648,9.03499,-0.499217,-7.36266,9.01079,-0.445092,-7.34484,9.0126,-0.561798,-7.4941,8.99395,-0.57974,-7.5148,9.00905,-0.52901,-7.51091,8.9923,-0.474891,-7.49453,8.99636,-0.525996,-7.48171,8.98368,-0.578129,-7.49857,8.98203,-0.472899,-7.36064,8.99677,-0.44514,-7.33752,9.02026,-0.499767,-7.34294,8.99858,-0.561603,-7.35455,9.00668,-0.437318,-7.32889,9.03298,-0.498068,-7.35313,8.94542,-0.410942,-7.34656,8.88388,-0.437412,-7.33835,8.859,-0.503372,-7.32665,8.88585,-0.56802,-7.32511,8.94823,-0.593403,-7.33482,9.00869,-0.566864,-7.51001,8.94193,-0.529288,-7.20387,8.99505,-0.546426,-7.19573,8.96231,-0.577465,-7.19326,8.92766,-0.548665,-7.20123,8.89719,-0.481048,-7.21348,8.92564,-0.41327,-7.22424,8.95938,-0.385587,-7.22232,8.99654,-0.414158,-7.49116,8.99035,-0.585461,-7.46928,8.95143,-0.606858,-7.45778,8.90774,-0.581315,-7.46585,8.88228,-0.52321,-7.4765,8.90592,-0.464756,-7.49563,8.94887,-0.442731,-7.50989,8.98852,-0.468659,-7.50216,8.99541,-0.527219,-7.58741,8.93709,0.134064,-7.58186,8.93051,0.196565,-7.56181,8.88586,0.221065,-7.54728,8.83614,0.194925,-7.54908,8.80787,0.132604,-7.55445,8.83544,0.0701572,-7.57191,8.88488,0.045287,-7.58908,8.92982,0.0714031,-7.29306,8.93653,0.189577,-7.28796,8.8947,0.221162,-7.28015,8.85436,0.189642,-7.28162,8.81904,0.116503,-7.28858,8.85353,0.0425593,-7.29971,8.89355,0.0119873,-7.30298,8.9317,0.0462982,-7.59413,8.87617,0.134796,-7.43542,8.94914,0.0556602,-7.42946,8.87999,0.0271865,-7.4242,8.8096,0.0551961,-7.42196,8.78057,0.125455,-7.41618,8.81038,0.194794,-7.41824,8.88108,0.222372,-7.41527,8.97763,0.125096,-7.42746,8.94993,0.194379,-7.44196,8.93751,0.063173,-7.42369,8.9631,0.125523,-7.43479,8.93822,0.18779,-7.57174,8.92268,0.189761,-7.57824,8.92206,0.0770924,-7.57977,8.93804,0.133619,-7.58425,8.93468,0.190256,-7.60003,8.95288,0.134704,-7.59073,8.93406,0.0778993,-7.44407,8.95336,0.0630857,-7.43688,8.95407,0.187982,-7.4229,8.98001,0.125548,-7.35346,8.9679,0.0486799,-7.3462,8.89034,0.0185216,-7.33678,8.82737,0.0481969,-7.33208,8.79603,0.119909,-7.32859,8.82818,0.190707,-7.33469,8.89144,0.220683,-7.35004,8.98857,0.120022,-7.34547,8.96868,0.191059,-7.3019,8.85296,0.0447409,-7.29523,8.81884,0.118549,-7.29342,8.8538,0.191497,-7.28841,8.81894,0.117527,-7.28793,8.85431,0.182598,-7.295,8.85456,0.0527968,-7.51382,8.93487,0.0581882,-7.50255,8.87929,0.0358514,-7.49032,8.82014,0.062421,-7.48645,8.79168,0.129102,-7.48268,8.82088,0.19545,-7.49179,8.88031,0.22223,-7.50495,8.93538,0.200794,-7.50405,8.92558,0.19351,-7.51203,8.92513,0.0654096,-7.51506,8.9404,0.0649086,-7.50694,8.94083,0.194382,-7.51296,8.96247,0.129625,-7.30232,8.96043,0.0489975,-7.29716,8.96133,0.179229,-7.33085,8.97523,0.0697237,-7.32991,9.00228,0.118601,-7.32538,8.97584,0.167253,-7.30789,8.99112,0.0777162,-7.3242,8.98432,0.0803173,-7.30212,8.97966,0.15621,-7.31988,8.98477,0.15581,-7.32162,8.98932,0.118131,-7.30787,9.00557,0.117038,-6.9185,9.00413,-0.725684,-6.93103,8.99079,-0.728392,-6.94033,8.98744,-0.698472,-6.92554,8.98343,-0.692467,-6.92423,8.98468,-0.758502,-6.90937,8.9903,-0.755847,-6.94896,8.97993,-0.691279,-6.93851,9.00136,-0.731245,-6.92827,8.97626,-0.768344,-6.92787,8.96836,-0.672414,-6.89849,8.96288,-0.774891,-7.08432,8.96365,-0.770892,-7.09622,8.9494,-0.72297,-7.07009,8.94338,-0.8158,-7.06826,8.93175,-0.814033,-7.09414,8.93773,-0.7222,-7.09645,8.94523,-0.717721,-7.09326,8.90488,-0.697125,-7.08122,8.8597,-0.711246,-7.06805,8.83525,-0.757554,-7.05389,8.85328,-0.80644,-7.05501,8.89589,-0.830508,-7.06763,8.93857,-0.819947,-6.89805,8.87387,-0.765508,-6.92681,8.87999,-0.662905,-6.90984,8.84921,-0.712029,-6.93443,8.87997,-0.658124,-6.91599,8.84908,-0.713347,-6.90224,8.87238,-0.773585,-6.9727,8.97357,-0.679621,-6.95652,8.98936,-0.735639,-6.97496,8.91127,-0.651253,-6.9649,8.86013,-0.669749,-6.94867,8.83136,-0.722698,-6.93345,8.85287,-0.779347,-6.93151,8.90196,-0.807151,-6.94313,8.96781,-0.790281,-7.01724,8.97842,-0.751598,-7.04381,8.95979,-0.709522,-7.01826,8.9539,-0.800676,-7.12792,8.94025,-0.826398,-7.14903,8.95753,-0.789047,-7.15146,8.94578,-0.744372,-7.13499,8.94627,-0.784255,-7.11865,8.93075,-0.823014,-7.14215,8.93627,-0.741142,-7.04248,8.94753,-0.708459,-7.01757,8.96571,-0.750969,-7.01699,8.94157,-0.799364,-7.03844,8.95654,-0.702113,-7.01031,8.97767,-0.749553,-7.04108,8.90538,-0.677177,-7.03397,8.85124,-0.69366,-7.02052,8.82598,-0.743226,-7.00485,8.84439,-0.795096,-7.0003,8.89594,-0.819441,-7.01002,8.95006,-0.803734,-7.14789,8.89696,-0.784633,-6.89881,8.93798,-0.776174,-6.8895,8.90379,-0.799472,-6.89027,8.87285,-0.771404,-6.90375,8.84941,-0.710721,-6.92252,8.88074,-0.655222,-6.93485,8.91409,-0.634863,-6.92751,8.94766,-0.661492,-7.1251,8.9362,-0.830384,-7.10668,8.90019,-0.842517,-7.10105,8.86385,-0.818182,-7.11326,8.84598,-0.771253,-7.12705,8.86996,-0.727604,-7.14339,8.90881,-0.714643,-7.15132,8.94236,-0.739034,-7.14101,8.94555,-0.785936,-6.48998,8.7564,0.865961,-6.46722,8.68488,0.852216,-6.54609,8.80882,0.851895,-6.55622,8.80221,0.840759,-6.47558,8.68075,0.839264,-6.46589,8.67697,0.847063,-6.48167,8.63833,0.800025,-6.53391,8.64287,0.755222,-6.5992,8.6927,0.742157,-6.62125,8.76636,0.759728,-6.60448,8.81224,0.806317,-6.55366,8.81314,0.847421,-6.32748,8.74005,0.709919,-6.35223,8.82097,0.721813,-6.36035,8.68477,0.651814,-6.41012,8.69564,0.602493,-6.46305,8.75357,0.578757,-6.48581,8.83036,0.599296,-6.47095,8.88149,0.646876,-6.40717,8.88474,0.70612,-6.4109,8.79216,0.788117,-6.4085,8.71301,0.79155,-6.48538,8.83694,0.790338,-6.59284,8.77462,0.91993,-6.56108,8.72354,0.947204,-6.53359,8.66719,0.924406,-6.55398,8.72546,0.916499,-6.59282,8.77418,0.90039,-6.52987,8.66719,0.902944,-6.41884,8.70731,0.779711,-6.42432,8.78481,0.778594,-6.49683,8.83005,0.779279,-6.40111,8.70694,0.780282,-6.40673,8.79388,0.778853,-6.42628,8.65755,0.727389,-6.48666,8.66028,0.680364,-6.54453,8.71651,0.661859,-6.56966,8.79193,0.680226,-6.55189,8.84124,0.732692,-6.48635,8.84522,0.778782,-6.60418,8.69766,0.891154,-6.59789,8.77969,0.915191,-6.6333,8.79025,0.871189,-6.64581,8.75014,0.828429,-6.62506,8.68232,0.808567,-6.56832,8.63516,0.825169,-6.5307,8.62595,0.871524,-6.53111,8.66018,0.919659,-6.56074,8.72233,0.92385,-1.21737,9.53133,-0.448082,-1.40162,9.47178,0.262551,-1.30654,9.63357,-0.206991,-1.46176,9.13475,-0.650022,-1.08078,9.33628,-0.602687,-1.39849,9.63128,-0.00197884,-1.62297,8.80308,0.0993095,-1.42615,8.79005,0.356225,-1.60033,8.58477,-0.287381,-1.61991,8.63059,-0.0815447,-1.50952,8.62187,-0.55945,-1.74763,9.52214,-0.250404,-1.56093,9.39883,-0.511213,-1.76818,9.37851,0.292151,-1.80179,9.51701,0.049988,-1.48199,8.83394,-0.625891,-1.5896,8.5393,-0.40615,-1.69956,9.02634,0.285672,-1.44712,9.01548,0.322602,-3.09687,8.95932,0.145351,-3.08718,8.70514,-0.368344,-3.07203,8.94841,-0.668311,-3.11801,9.32407,-0.0429021,-3.11668,9.14076,0.0716838,-3.07562,9.34108,-0.550414,-3.10482,9.42212,-0.283003,-3.08379,8.7322,-0.539643,-3.09132,8.68293,-0.055541,-3.09109,8.67669,-0.205581,-3.09543,8.76411,0.0682914,-3.07723,9.22892,-0.625634,-3.36671,9.25246,-0.650017,-3.37855,8.77694,-0.0104906,-3.38181,8.69485,-0.223619,-3.38079,8.69957,-0.0974994,-3.37528,8.76717,-0.514176,-3.37729,9.4551,-0.28725,-3.36303,9.38131,-0.573674,-3.41171,9.15168,-0.0628249,-3.39639,9.35403,-0.0867581,-3.38207,8.98253,-0.729022,-3.37941,8.72097,-0.378073,-3.38992,8.95899,0.0306416,-3.67677,8.92032,0.0464183,-3.66354,8.73627,-0.395405,-3.72276,9.01041,-0.663786,-3.68358,9.37423,-0.0602922,-3.70415,9.13216,-0.0408277,-3.6502,9.44046,-0.507057,-3.65983,9.49152,-0.236385,-3.66036,8.79432,-0.519406,-3.66423,8.68611,-0.10913,-3.66553,8.69458,-0.240357,-3.66213,8.74923,-0.000624619,-3.65391,9.30373,-0.592611,-2.12035,8.95442,0.312094,-2.75305,8.94448,0.260216,-2.16271,9.24464,0.287933,-2.77786,9.16575,0.206228,-2.07626,8.73634,0.17369,-2.73451,8.72889,0.164155,-1.96736,8.6939,-0.554391,-2.68385,8.72217,-0.526497,-1.99516,8.60825,-0.41789,-2.69115,8.68961,-0.4107,-2.01594,8.57385,-0.25797,-2.70093,8.63924,-0.244334,-1.95311,8.91474,-0.627429,-2.66799,8.94808,-0.654772,-1.93176,9.16286,-0.650022,-2.66683,9.16658,-0.644515,-2.17526,9.47259,0.0604887,-2.78538,9.37328,0.0133864,-2.11494,9.51083,-0.250259,-2.76784,9.46297,-0.262635,-1.99683,9.40619,-0.511213,-2.69077,9.37026,-0.520064,-2.02916,8.63061,-0.0048831,-2.70828,8.64084,-0.00291799,-4.52806,8.7375,-0.382488,-5.09983,8.84914,-0.41521,-4.52471,8.66704,-0.276249,-5.10077,8.77178,-0.350961,-4.52052,8.65553,-0.139298,-5.09616,8.73323,-0.245183,-4.5198,9.35512,-0.0195722,-5.06645,9.20669,0.0332032,-4.52124,9.40164,-0.250677,-5.06891,9.29213,-0.137965,-4.52469,9.33567,-0.368075,-5.07334,9.28151,-0.244325,-4.53143,9.19359,0.0886739,-5.0736,9.05948,0.0881668,-4.54947,8.93939,0.04517,-5.08254,8.89591,0.023806,-4.52699,9.13609,-0.548565,-5.08579,9.1881,-0.435938,-4.525,8.94031,-0.546353,-5.09371,9.03931,-0.488755,-4.52656,8.84329,-0.485265,-5.0956,8.95223,-0.467176,-4.53099,8.7583,-0.00825121,-5.08897,8.78147,-0.0957501,-1.8845,8.99403,0.280685,-1.91614,9.29815,0.287265,-1.85305,8.77042,0.0772314,-1.68028,8.62722,-0.539282,-1.72112,8.56653,-0.394336,-1.82966,8.59072,-0.258301,-1.67277,8.81656,-0.601814,-1.67484,9.1225,-0.650022,-1.92429,9.50662,0.0688235,-1.91382,9.52706,-0.248198,-1.8261,9.39765,-0.510453,-1.81626,8.66679,-0.0637031,-4.07704,8.71165,-0.306155,-4.07424,8.67358,-0.185196,-4.07252,8.70179,-0.0614413,-4.06888,9.43301,-0.133696,-4.06918,9.42688,-0.386892,-4.07176,9.32186,-0.487957,-4.08696,9.29436,0.0117633,-4.10634,9.04203,0.00221116,-4.07357,9.05848,-0.610871,-4.07477,8.86157,-0.533149,-4.07552,8.78435,-0.438063,-4.08584,8.84215,0.0248276,-3.08146,9.1045,-0.684916,-3.38072,9.14539,-0.711113,-3.07649,8.86626,-0.621626,-3.37006,8.85808,-0.642737,-3.19366,9.1712,-0.675955,-3.39306,9.18687,-0.620804,-3.71482,9.18257,-0.573226,-4.52613,9.24514,-0.485524,-5.08041,9.25126,-0.357613,-4.07331,9.19131,-0.580949,-3.17298,8.82723,-0.600068,-3.36641,8.82177,-0.564851,-3.67616,8.87822,-0.583936,-4.52609,9.02983,-0.572456,-5.09036,9.11299,-0.484585,-4.07299,8.94309,-0.592349,-3.61373,8.91056,-0.623096,-3.64025,9.13445,-0.656145,-3.66633,9.012,-0.660721,-2.42859,8.95404,0.291979,-2.45874,9.1947,0.252357,-2.39964,8.73531,0.17919,-2.30919,8.72175,-0.543404,-2.32652,8.65817,-0.417001,-2.34131,8.60763,-0.250857,-2.29334,8.93877,-0.641359,-2.28827,9.16701,-0.647533,-2.4664,9.42954,0.0409799,-2.45192,9.48577,-0.255204,-2.33209,9.38896,-0.515213,-2.35503,8.63533,0.003102,-5.57868,9.20879,-0.0817853,-5.58386,8.98781,-0.489309,-5.58018,8.77341,-0.336416,-5.58052,8.82284,-0.424443,-5.57914,8.7858,-0.184473,-5.57835,8.85716,-0.0425029,-5.57709,8.97779,0.0606541,-5.57611,9.10623,0.0496596,-5.57691,9.21536,-0.189068,-5.57803,9.21069,-0.302691,-5.5787,9.1733,-0.392374,-5.57906,9.12122,-0.45773,-5.57943,9.06255,-0.48134,-5.58031,8.8963,-0.463737,-1.27288,9.23853,-0.626354,-1.50399,8.81033,0.228623,-1.47326,9.58016,-0.236267,-1.37966,9.46321,-0.480229,-1.60657,9.56804,0.00531986,-1.59537,9.4347,0.272244,-1.56173,9.03012,0.304752,-0.184512,10.9534,0.648641,-0.0625059,11.0536,0.686716,-0.130586,10.9714,0.653319,-0.0877434,11.0066,0.666689,-0.241311,10.9554,0.653367,-0.292336,10.9771,0.666778,-0.329818,11.0151,0.686832,-0.0633538,11.0584,0.751761,-0.0918354,11.034,0.794749,-0.136845,11.014,0.823484,-0.191529,11.0014,0.833591,-0.247564,10.998,0.823532,-0.296418,11.0045,0.794838,-0.330654,11.0198,0.751877,-0.0581236,11.1013,0.708867,-0.347447,11.0596,0.708993,-0.333042,11.0378,0.75968,-0.298806,11.0225,0.80264,-0.249952,11.016,0.831334,-0.193917,11.0193,0.841393,-0.139232,11.032,0.831286,-0.094223,11.052,0.802551,-0.0657414,11.0763,0.759564,-0.0423543,11.0741,0.767425,-0.0756519,11.0457,0.817681,-0.128272,11.0223,0.851275,-0.192203,11.0075,0.863091,-0.257713,11.0036,0.851331,-0.314828,11.0112,0.817785,-0.354853,11.0291,0.76756,-0.371694,11.0546,0.708303,-0.0334484,11.1033,0.708156,-0.0455516,11.0245,0.740042,-0.073461,10.9752,0.70334,-0.121232,10.9432,0.668057,-0.181593,10.9332,0.639564,-0.13413,10.9321,0.687524,-0.0972931,10.9548,0.73931,-0.0766898,10.9979,0.787039,-0.125897,10.976,0.818454,-0.134955,10.9381,0.763354,-0.154512,10.9231,0.700536,-0.179276,10.9173,0.705113,-0.180712,10.9275,0.771812,-0.185682,10.9622,0.829504,-0.246944,10.9585,0.818507,-0.2276,10.9247,0.763394,-0.204652,10.9158,0.700558,-0.226775,10.9188,0.687564,-0.268479,10.9302,0.739384,-0.300355,10.9656,0.787136,-0.337784,10.9824,0.740169,-0.297126,10.943,0.703437,-0.242279,10.9257,0.668109,-0.248802,10.9356,0.645156,-0.30918,10.9612,0.661025,-0.353533,11.0062,0.684754,-0.117782,10.9545,0.645099,-0.0670867,10.9961,0.66092,-0.0372232,11.0518,0.684617,-0.349584,11.0768,0.707206,-0.111559,11.1965,0.658165,-0.073027,11.1591,0.682735,-0.222962,11.2192,0.635944,-0.278873,11.2011,0.641675,-0.32343,11.166,0.658056,-0.349849,11.1192,0.682592,-0.164209,11.2176,0.641734,-0.344487,11.1211,0.746112,-0.316597,11.1491,0.787098,-0.272042,11.1715,0.814497,-0.217607,11.1849,0.824138,-0.161578,11.1874,0.814554,-0.112485,11.1785,0.787203,-0.0778026,11.1596,0.746249,-0.0759193,11.1445,0.755676,-0.110602,11.1634,0.79663,-0.314713,11.1339,0.796525,-0.342604,11.106,0.755539,-0.0609269,11.1184,0.707355,-0.270159,11.1563,0.823924,-0.215724,11.1698,0.833565,-0.159695,11.1722,0.823981,-0.054254,11.1538,0.76303,-0.0948013,11.1759,0.810909,-0.152195,11.1863,0.842885,-0.217698,11.1834,0.85409,-0.281338,11.1677,0.842818,-0.333427,11.1415,0.810786,-0.366033,11.1088,0.76287,-0.374193,11.0747,0.706365,-0.0367266,11.1234,0.706538,-0.158122,11.2348,0.632816,-0.164927,11.2466,0.654748,-0.110536,11.2325,0.692117,-0.070362,11.1964,0.732615,-0.108367,11.2171,0.777492,-0.139624,11.2483,0.726464,-0.18067,11.2552,0.673337,-0.202952,11.2592,0.685751,-0.180797,11.2558,0.749403,-0.162163,11.2269,0.807463,-0.223559,11.2242,0.817965,-0.227788,11.2537,0.757441,-0.228384,11.2581,0.690102,-0.253091,11.252,0.685726,-0.273442,11.2424,0.749355,-0.283208,11.2094,0.8074,-0.332031,11.1849,0.777377,-0.310808,11.2237,0.726376,-0.273314,11.2418,0.673289,-0.285973,11.2291,0.654686,-0.3342,11.2002,0.692002,-0.362593,11.1543,0.732465,-0.370242,11.1223,0.679502,-0.340054,11.1758,0.651466,-0.289142,11.2159,0.632748,-0.225256,11.2366,0.626199,-0.0539335,11.1679,0.679665,-0.097962,11.2107,0.65159,-0.136852,11.0884,0.849572,-0.156724,11.1112,0.566051,-0.1083,11.1305,0.597234,-0.0744349,11.1434,0.645992,-0.0602837,11.148,0.704899,-0.0680009,11.1434,0.76499,-0.0964115,11.1305,0.817114,-0.141381,11.1112,0.849817,-0.154279,11.1305,0.850515,-0.120243,11.1662,0.818403,-0.0991388,11.1901,0.766673,-0.0939872,11.1985,0.706722,-0.105573,11.1901,0.647675,-0.132132,11.1662,0.598523,-0.169621,11.1305,0.566748,-0.188924,11.1434,0.567792,-0.167799,11.1901,0.600452,-0.152174,11.2213,0.650195,-0.144428,11.2322,0.709449,-0.14574,11.2213,0.769193,-0.155911,11.1901,0.820331,-0.173581,11.1434,0.851558,-0.196351,11.148,0.852789,-0.197983,11.1985,0.822606,-0.20071,11.2322,0.772165,-0.203927,11.2441,0.712666,-0.207144,11.2322,0.653167,-0.209871,11.1985,0.602726,-0.211694,11.148,0.569023,-0.234463,11.1434,0.570254,-0.251943,11.1901,0.605001,-0.262114,11.2213,0.656139,-0.263426,11.2322,0.715883,-0.25568,11.2213,0.775137,-0.240055,11.1901,0.824881,-0.21912,11.1434,0.854021,-0.238423,11.1305,0.855064,-0.275722,11.1662,0.826809,-0.302281,11.1901,0.777657,-0.313867,11.1985,0.71861,-0.308715,11.1901,0.658659,-0.28761,11.1662,0.606929,-0.253766,11.1305,0.571298,-0.266663,11.1112,0.571995,-0.311442,11.1305,0.608218,-0.339853,11.1434,0.660342,-0.34757,11.148,0.720433,-0.333419,11.1434,0.77934,-0.299554,11.1305,0.828098,-0.251321,11.1112,0.855761,-0.25585,11.0884,0.856006,-0.307922,11.0884,0.82855,-0.344353,11.0884,0.779932,-0.359405,11.0884,0.721073,-0.350787,11.0884,0.660934,-0.319811,11.0884,0.608671,-0.271193,11.0884,0.57224,-0.212334,11.0884,0.557188,-0.266663,11.0656,0.571995,-0.311442,11.0463,0.608218,-0.339853,11.0333,0.660342,-0.34757,11.0288,0.720433,-0.333419,11.0333,0.77934,-0.299554,11.0463,0.828098,-0.251321,11.0656,0.855761,-0.238423,11.0463,0.855064,-0.275722,11.0105,0.826809,-0.302281,10.9867,0.777657,-0.313867,10.9783,0.71861,-0.308715,10.9867,0.658659,-0.28761,11.0105,0.606929,-0.253766,11.0463,0.571298,-0.234463,11.0333,0.570254,-0.251943,10.9867,0.605001,-0.262114,10.9555,0.656139,-0.263426,10.9445,0.715883,-0.25568,10.9555,0.775137,-0.240055,10.9867,0.824881,-0.21912,11.0333,0.854021,-0.196351,11.0288,0.852789,-0.197983,10.9783,0.822606,-0.20071,10.9445,0.772165,-0.203927,10.9327,0.712666,-0.207144,10.9445,0.653167,-0.209871,10.9783,0.602726,-0.211694,11.0288,0.569023,-0.188924,11.0333,0.567792,-0.167799,10.9867,0.600452,-0.152174,10.9555,0.650195,-0.144428,10.9445,0.709449,-0.14574,10.9555,0.769193,-0.155911,10.9867,0.820331,-0.173581,11.0333,0.851558,-0.154279,11.0463,0.850515,-0.120244,11.0105,0.818403,-0.0991388,10.9867,0.766673,-0.0939872,10.9783,0.706722,-0.105573,10.9867,0.647675,-0.132132,11.0105,0.598523,-0.169621,11.0463,0.566748,-0.156724,11.0656,0.566051,-0.1083,11.0463,0.597234,-0.074435,11.0333,0.645992,-0.0602838,11.0288,0.7049,-0.0680009,11.0333,0.76499,-0.0964116,11.0463,0.817114,-0.141381,11.0656,0.849817,-0.0880429,11.0884,0.816662,-0.0570667,11.0884,0.764398,-0.0484487,11.0884,0.70426,-0.0635008,11.0884,0.6454,-0.0999315,11.0884,0.596782,-0.152195,11.0884,0.565806,-0.177035,11.0803,0.847026,-0.181627,11.0734,0.847275,-0.188499,11.0688,0.847646,-0.196605,11.0672,0.848084,-0.204711,11.0688,0.848523,-0.211583,11.0734,0.848894,-0.216175,11.0803,0.849142,-0.217787,11.0884,0.84923,-0.216175,11.0965,0.849142,-0.211583,11.1034,0.848894,-0.204711,11.108,0.848523,-0.196605,11.1096,0.848084,-0.188499,11.108,0.847646,-0.181627,11.1034,0.847275,-0.177035,11.0965,0.847026,-0.175423,11.0884,0.846939,-0.165666,11.0884,0.845582,-0.168025,11.1003,0.845709,-0.174741,11.1103,0.846073,-0.184793,11.1171,0.846616,-0.19665,11.1194,0.847257,-0.208507,11.1171,0.847898,-0.218558,11.1103,0.848442,-0.225275,11.1003,0.848805,-0.227633,11.0884,0.848933,-0.225275,11.0765,0.848805,-0.218558,11.0664,0.848442,-0.208507,11.0597,0.847898,-0.19665,11.0574,0.847257,-0.184793,11.0597,0.846616,-0.174741,11.0664,0.846073,-0.168025,11.0765,0.845709,-0.19665,11.0884,0.847257,-0.138652,11.1123,0.851284,-0.152169,11.1325,0.852014,-0.1724,11.1461,0.853108,-0.196264,11.1508,0.854399,-0.220127,11.1461,0.855689,-0.240358,11.1325,0.856783,-0.253875,11.1123,0.857513,-0.258622,11.0884,0.85777,-0.253875,11.0645,0.857513,-0.240358,11.0442,0.856783,-0.220127,11.0307,0.855689,-0.196264,11.0259,0.854399,-0.1724,11.0307,0.853108,-0.15217,11.0442,0.852014,-0.138652,11.0645,0.851284,-0.133905,11.0884,0.851027,-0.0619781,10.146,0.961541,-0.117528,10.157,0.938148,-0.151428,10.1669,0.892909,-0.169091,10.1743,0.832806,-0.173168,10.1933,0.762789,-0.170341,10.2067,0.704247,-0.167581,10.2213,0.639152,-0.169464,10.2381,0.574332,-0.0691909,10.1404,0.98485,-0.133247,10.1521,0.956993,-0.17582,10.164,0.90418,-0.200442,10.173,0.838483,-0.210127,10.193,0.764049,-0.21365,10.2067,0.703746,-0.211296,10.2215,0.638595,-0.207948,10.2381,0.574063,-1.39654e-14,10.1382,0.994342,-1.39551e-14,10.144,0.97,-0.0619781,10.0839,0.946782,-0.117528,10.0898,0.922168,-0.153709,10.1009,0.875182,-0.171067,10.1142,0.819453,-0.172664,10.1306,0.750505,-0.17024,10.1451,0.689602,-0.166777,10.1605,0.624685,-0.169464,10.176,0.559573,-0.0680708,10.0794,0.96595,-0.130261,10.0855,0.940017,-0.172491,10.0979,0.887803,-0.205483,10.1452,0.689109,-0.201333,10.1761,0.559303,-1.40757e-14,10.0761,0.979582,-0.196275,10.1139,0.820503,-0.202888,10.1303,0.751747,-0.204317,10.1606,0.624128,-1.40654e-14,10.0819,0.95524,-0.0566604,10.1474,0.994468,-0.123231,10.1536,0.968459,-0.16225,10.1741,0.922767,-0.20185,10.1785,0.852419,-0.21338,10.1961,0.781363,-0.218354,10.2143,0.719341,-0.217689,10.2257,0.653122,-0.214369,10.2438,0.589092,-0.0164408,10.1462,0.999326,0.0164408,10.1462,0.999326,-0.0841565,10.1491,0.987262,-0.146449,10.1697,0.941782,-0.186856,10.1692,0.895167,-0.206023,10.1847,0.827859,-0.216377,10.2056,0.756026,-0.219977,10.2165,0.692179,-0.218361,10.2343,0.627922,-0.0488204,10.1549,0.96276,-0.10456,10.161,0.941601,-0.145216,10.1761,0.913589,-0.160889,10.1804,0.843577,-0.16846,10.1967,0.779013,-0.165553,10.2142,0.719684,-0.162125,10.2255,0.654055,-0.162811,10.2437,0.589456,0.00811154,10.1538,0.967367,-0.00811154,10.1538,0.967367,-0.00977065,10.1538,0.967367,0.00977065,10.1538,0.967367,-0.0727008,10.1564,0.956614,-0.133068,10.1729,0.928403,-0.150671,10.1736,0.880947,-0.166911,10.186,0.821689,-0.167319,10.2058,0.754833,-0.162937,10.2163,0.692985,-0.159614,10.2342,0.628492,-0.0553502,10.077,0.975984,-0.121734,10.0834,0.949103,-0.172513,10.0949,0.900766,-0.199633,10.111,0.8327,-0.21022,10.1271,0.765097,-0.214646,10.1421,0.702155,-0.213782,10.1576,0.636877,-0.210748,10.173,0.572231,-0.0150628,10.0758,0.980858,0.0150628,10.0758,0.980858,-0.0822409,10.0788,0.968122,-0.144598,10.0869,0.934304,-0.185327,10.1001,0.878824,-0.203584,10.1161,0.811236,-0.211645,10.1328,0.741335,-0.213892,10.1483,0.675917,-0.214303,10.1637,0.611103,-0.0483653,10.0846,0.944079,-0.103475,10.0896,0.922953,-0.143299,10.099,0.883147,-0.162988,10.1121,0.828262,-0.163228,10.1277,0.76246,-0.159764,10.142,0.702545,-0.158917,10.1574,0.637918,-0.159817,10.1729,0.572637,0.00772426,10.0835,0.948671,-0.00772426,10.0835,0.948671,-0.00938335,10.0835,0.948671,0.00938335,10.0835,0.948671,-0.0720357,10.086,0.937994,-0.121494,10.0928,0.909306,-0.153146,10.1041,0.861864,-0.164905,10.1174,0.80592,-0.165546,10.1331,0.740095,-0.161999,10.1481,0.676813,-0.156271,10.1636,0.611729,-1.3955e-14,10.144,0.969808,-0.00180238,10.144,0.969808,0.00180238,10.144,0.969808,-0.0627708,10.1461,0.961026,-0.118104,10.1573,0.937534,-0.151369,10.1669,0.891989,-0.16903,10.1745,0.831808,-0.172645,10.1937,0.761777,-0.169675,10.2067,0.703278,-0.166932,10.2216,0.638228,-1.40653e-14,10.0819,0.955049,-0.00180237,10.0819,0.955049,0.00180237,10.0819,0.955049,-0.0627708,10.084,0.946267,-0.118104,10.0899,0.921518,-0.153801,10.1012,0.874252,-0.170875,10.1144,0.818654,-0.172301,10.1308,0.749661,-0.169779,10.1453,0.688674,-0.166076,10.1607,0.623745,-1.40758e-14,10.076,0.979991,-0.00179212,10.076,0.979991,0.00179212,10.076,0.979991,-0.0691415,10.0793,0.96598,-0.131352,10.0856,0.939733,-0.173205,10.0981,0.887212,-0.196927,10.1141,0.819819,-0.203377,10.1305,0.750913,-0.20601,10.1454,0.688151,-0.204916,10.1609,0.623184,-1.39656e-14,10.1381,0.99475,-0.00179213,10.1381,0.99475,0.00179213,10.1381,0.99475,-0.0702616,10.1404,0.98488,-0.134338,10.1524,0.956765,-0.17655,10.164,0.90352,-0.200998,10.1732,0.837537,-0.210739,10.1934,0.763035,-0.214311,10.2068,0.702747,-0.21188,10.2218,0.637668,-0.0680248,10.1403,0.98556,-0.132327,10.1515,0.957899,-0.175642,10.164,0.905435,-0.200708,10.1726,0.83986,-0.21051,10.1925,0.765457,-0.214184,10.2066,0.705025,-0.212003,10.221,0.639773,-0.208556,10.2378,0.575289,-0.060712,10.146,0.961463,-0.116272,10.1568,0.938351,-0.150689,10.1669,0.893749,-0.168159,10.174,0.833852,-0.172651,10.1928,0.764109,-0.169811,10.2065,0.705516,-0.166971,10.2209,0.640361,-0.168834,10.2378,0.575567,-0.0669047,10.0792,0.96666,-0.129341,10.0853,0.940996,-0.172338,10.0976,0.889002,-0.196438,10.1137,0.821557,-0.203445,10.13,0.752799,-0.206197,10.1449,0.690342,-0.205086,10.1604,0.625342,-0.201941,10.1758,0.56053,-0.0607121,10.0839,0.946704,-0.116272,10.0897,0.922406,-0.152884,10.1007,0.876034,-0.170425,10.114,0.820431,-0.171897,10.1304,0.751464,-0.16938,10.1448,0.690829,-0.166122,10.1602,0.625931,-0.168834,10.1757,0.560807,-0.0603696,9.98049,0.899742,-0.0652662,9.98086,0.898199,-0.113624,9.98621,0.8757,-0.118359,9.98689,0.87285,-0.1435,9.99665,0.831788,-0.145787,9.99799,0.826142,-0.16148,10.0111,0.770867,-0.163702,10.0121,0.766718,-0.163021,10.0265,0.706344,-0.163782,10.0273,0.702761,-0.159798,10.0404,0.647981,-0.160364,10.0415,0.64332,-0.161005,10.0558,0.583085,-0.160335,10.0572,0.577237,-0.0708864,9.97241,0.933729,-0.0786179,9.97284,0.931898,-0.137237,9.97944,0.904149,-0.144583,9.9804,0.900138,-0.181195,9.99232,0.849989,-0.185541,9.99442,0.841189,-0.224421,10.0405,0.647264,-0.223422,10.0417,0.642392,-0.207766,10.009,0.779865,-0.207934,10.007,0.788466,-0.21976,10.026,0.708384,-0.22195,10.0248,0.713472,-0.218139,10.056,0.582258,-0.219818,10.0541,0.590102,-0.159817,10.0682,0.530948,-0.170188,10.071,0.519119,-0.162785,10.0527,0.596229,-0.160586,10.0543,0.589385,-0.158134,10.0373,0.660856,-0.15757,10.0392,0.653078,-0.161581,10.0237,0.718115,-0.160664,10.0254,0.711008,-0.156534,10.0082,0.783026,-0.157666,10.0099,0.776083,-0.139036,9.99395,0.843155,-0.140443,9.99536,0.837199,-0.103475,9.98489,0.881264,-0.107867,9.98568,0.877932,-0.0483653,9.97986,0.90239,-0.0547826,9.98033,0.900422,-0.171007,10.0713,0.517884,-0.217489,10.0656,0.541716,-0.204863,10.0711,0.51884,-0.219498,10.0514,0.601752,-0.226845,10.0374,0.660466,-0.227086,10.0393,0.652537,-0.220477,10.0231,0.720752,-0.205526,10.0056,0.794196,-0.175067,9.98922,0.863052,-0.177778,9.99022,0.858849,-0.124315,9.9777,0.911493,-0.130147,9.97824,0.909204,-0.0571156,9.97145,0.937779,-0.0630157,9.97172,0.936639,-0.204078,10.0714,0.517614,-0.217848,10.0603,0.564334,-0.218077,10.0586,0.571345,-0.21784,10.0458,0.625039,-0.217618,10.0281,0.699489,-0.219057,10.0269,0.704532,-0.208102,10.0119,0.767789,-0.208586,10.0106,0.773243,-0.188957,9.99583,0.83522,-0.147584,9.98193,0.893705,-0.0848217,9.97317,0.930512,-0.0168281,9.97029,0.942653,0.0168281,9.97029,0.942653,0.00582987,9.96994,0.944127,-0.00582987,9.96994,0.944127,-0.00748897,9.96994,0.944127,0.00748897,9.96994,0.944127,-1.42643e-14,9.9699,0.94426,-0.160185,10.0589,0.57004,-0.161976,10.0434,0.635124,-0.165546,10.0284,0.69815,-0.164792,10.0134,0.761252,-0.14857,9.99967,0.819102,-0.121494,9.98813,0.867617,-0.0720357,9.98131,0.896305,0.0077243,9.97877,0.906982,-0.0077243,9.97877,0.906982,-0.0093834,9.97877,0.906982,0.0093834,9.97877,0.906982,0.00428973,9.97877,0.906987,-0.00428973,9.97877,0.906987,-0.00594884,9.97877,0.906987,0.00594884,9.97877,0.906987,-1.42486e-14,9.97873,0.907127,-0.0616581,10.0317,0.925174,-0.0659687,10.0323,0.923036,-0.11682,10.0376,0.900545,-0.119623,10.0385,0.896942,-0.152678,10.0486,0.854109,-0.153873,10.0498,0.849444,-0.169089,10.0617,0.799158,-0.169074,10.0631,0.793401,-0.171977,10.0781,0.730453,-0.171532,10.0789,0.726708,-0.169791,10.0927,0.668806,-0.169349,10.0939,0.663749,-0.164965,10.1081,0.6039,-0.16432,10.1094,0.598787,-0.0748679,10.0261,0.94877,-0.0693325,10.0259,0.949762,-0.138057,10.0336,0.917274,-0.1334,10.0329,0.920508,-0.179292,10.0462,0.864221,-0.175967,10.045,0.869389,-0.214051,10.0941,0.663156,-0.213972,10.0928,0.668307,-0.200581,10.0611,0.801817,-0.200366,10.06,0.806244,-0.210249,10.0777,0.731977,-0.21179,10.0767,0.736088,-0.214218,10.1083,0.603315,-0.216301,10.1071,0.60847,-0.162675,10.1191,0.558005,-0.169149,10.1223,0.544263,-0.161119,10.1036,0.62316,-0.16335,10.1069,0.609135,-0.163138,10.0882,0.68773,-0.167655,10.0915,0.673955,-0.165174,10.0741,0.747215,-0.169961,10.0772,0.734218,-0.161659,10.0581,0.814543,-0.166988,10.0605,0.804229,-0.140627,10.0456,0.866787,-0.149878,10.0478,0.857731,-0.0992112,10.0364,0.905486,-0.112318,10.0372,0.902255,-0.0425417,10.0318,0.925031,-0.056584,10.0317,0.925488,-0.17722,10.1233,0.540192,-0.208249,10.1224,0.543977,-0.214757,10.1192,0.557589,-0.219434,10.1038,0.622264,-0.215947,10.0916,0.673549,-0.219424,10.0882,0.687601,-0.214376,10.0733,0.750266,-0.199069,10.0571,0.818407,-0.173819,10.0438,0.874416,-0.169055,10.0412,0.88552,-0.128976,10.032,0.924134,-0.117128,10.0297,0.933812,-0.0641137,10.0254,0.951792,-0.0503588,10.024,0.95758,-0.200175,10.1233,0.540026,-0.216064,10.1128,0.584194,-0.214515,10.1095,0.59822,-0.21501,10.0974,0.649008,-0.215112,10.0818,0.714724,-0.21079,10.0786,0.728077,-0.206947,10.0657,0.782349,-0.201845,10.0621,0.797501,-0.189048,10.0498,0.849318,-0.150575,10.0358,0.907985,-0.0903151,10.0267,0.946435,-0.0225354,10.0232,0.961127,0.0225354,10.0232,0.961127,0.0048991,10.0235,0.959648,-0.0048991,10.0235,0.959648,-0.00655819,10.0235,0.959648,0.00655819,10.0235,0.959648,-1.41688e-14,10.0237,0.959043,-0.162015,10.1127,0.584754,-0.166863,10.0972,0.649832,-0.167839,10.082,0.714036,-0.167182,10.0669,0.77716,-0.155813,10.0529,0.836024,-0.12573,10.0412,0.885238,-0.077206,10.034,0.915732,0.00338802,10.03,0.932693,-0.00338802,10.03,0.932693,-0.00504713,10.03,0.932693,0.00504713,10.03,0.932693,-0.01645,10.031,0.92833,0.01645,10.031,0.92833,-1.41581e-14,10.0297,0.933875,-0.061963,10.0814,0.94576,-0.0629219,10.0816,0.945169,-0.117495,10.0873,0.921146,-0.118176,10.0875,0.920357,-0.153677,10.0985,0.874176,-0.153818,10.0987,0.873073,-0.171012,10.1117,0.81847,-0.170805,10.1119,0.817486,-0.17258,10.1281,0.749543,-0.172215,10.1283,0.748542,-0.170162,10.1426,0.688619,-0.16969,10.1429,0.687496,-0.16673,10.158,0.623703,-0.165984,10.1583,0.622565,-0.0704793,10.0759,0.969112,-0.0691976,10.0759,0.96913,-0.134514,10.0829,0.93971,-0.133255,10.0828,0.940133,-0.176579,10.0953,0.887555,-0.175724,10.0951,0.888312,-0.213471,10.143,0.68697,-0.212957,10.1427,0.688125,-0.200218,10.1113,0.820343,-0.200332,10.111,0.821547,-0.209238,10.1278,0.750638,-0.209792,10.1276,0.751877,-0.21262,10.1582,0.623144,-0.213366,10.1578,0.624545,-0.159952,10.1703,0.571945,-0.168849,10.1732,0.560025,-0.159068,10.1548,0.63722,-0.166049,10.1577,0.625137,-0.159805,10.1395,0.701845,-0.169237,10.1423,0.690031,-0.163204,10.1252,0.761739,-0.171747,10.1278,0.750647,-0.162975,10.1096,0.827536,-0.170318,10.1114,0.819601,-0.143172,10.0965,0.882373,-0.152748,10.0982,0.875165,-0.103274,10.0871,0.922127,-0.116085,10.0872,0.921454,-0.04809,10.0821,0.943179,-0.0605169,10.0815,0.945701,-0.169821,10.1735,0.558657,-0.208542,10.1732,0.559747,-0.21724,10.1704,0.571538,-0.220604,10.1551,0.636186,-0.213683,10.1424,0.689549,-0.221142,10.1395,0.701467,-0.215748,10.1246,0.764396,-0.203074,10.1083,0.832634,-0.175459,10.0948,0.889636,-0.175213,10.0921,0.901077,-0.132169,10.0825,0.941237,-0.123975,10.0799,0.952267,-0.0678399,10.0757,0.969902,-0.0567961,10.0737,0.978434,-0.207591,10.1736,0.558392,-0.221434,10.1613,0.609831,-0.213237,10.1584,0.622004,-0.220256,10.1459,0.674645,-0.217392,10.1303,0.740236,-0.20973,10.1281,0.749706,-0.208412,10.1137,0.810181,-0.200909,10.1115,0.81952,-0.188961,10.0975,0.87813,-0.147726,10.0842,0.934098,-0.0850813,10.0754,0.970984,-0.0170979,10.0725,0.983245,0.0170979,10.0725,0.983245,-1.40802e-14,10.0735,0.97903,-0.00201742,10.0735,0.97903,0.00201742,10.0735,0.97903,-1.40801e-14,10.0736,0.978612,-0.156589,10.1612,0.610454,-0.162264,10.1457,0.675537,-0.165696,10.1306,0.738945,-0.165014,10.115,0.804561,-0.153272,10.1017,0.860643,-0.121694,10.0904,0.908168,-0.0722801,10.0835,0.936942,-1.40697e-14,10.0795,0.953992,-0.00195576,10.0795,0.953992,0.00195576,10.0795,0.953992,0.00805831,10.081,0.94771,-0.00805831,10.081,0.94771,-0.00971742,10.081,0.94771,0.00971742,10.081,0.94771,-1.40698e-14,10.0794,0.95423,-0.0691909,10.0813,0.970793,-0.133247,10.0882,0.94181,-0.175714,10.1006,0.889925,-0.212872,10.1481,0.689812,-0.207948,10.179,0.560007,-0.0619781,10.0869,0.947485,-0.117528,10.0927,0.922871,-0.153714,10.1039,0.875882,-0.171065,10.1171,0.82017,-0.17281,10.1335,0.751191,-0.170386,10.148,0.690305,-0.166764,10.1635,0.625389,-0.169464,10.1789,0.560276,-1.40704e-14,10.0791,0.980286,-1.40601e-14,10.0849,0.955943,-0.0570939,10.0795,0.980183,-0.124263,10.0858,0.95391,-0.175436,10.098,0.902599,-0.203161,10.1143,0.834101,-0.215831,10.1305,0.765893,-0.22126,10.1455,0.702958,-0.220779,10.161,0.637682,-0.21722,10.1764,0.573034,-0.0168096,10.0784,0.985056,0.0168096,10.0784,0.985056,-0.08479,10.0813,0.972919,-0.14752,10.09,0.936131,-0.188856,10.1033,0.880322,-0.208456,10.1195,0.812244,-0.217432,10.1361,0.742223,-0.220423,10.1517,0.676721,-0.221594,10.1671,0.611907,-0.0483869,10.0879,0.944969,-0.103527,10.0929,0.92383,-0.143379,10.1024,0.883995,-0.163082,10.1155,0.829083,-0.163577,10.1311,0.763269,-0.160141,10.1454,0.703346,-0.15907,10.1607,0.638717,-0.15996,10.1763,0.573438,0.0077427,10.0868,0.949562,-0.0077427,10.0868,0.949562,-0.0094018,10.0868,0.949562,0.0094018,10.0868,0.949562,-0.0720674,10.0894,0.938881,-0.121558,10.0962,0.910173,-0.153232,10.1075,0.862701,-0.165012,10.1208,0.806738,-0.165677,10.1364,0.740901,-0.162149,10.1515,0.677613,-0.15643,10.167,0.61253,-1.40706e-14,10.079,0.980694,-0.00179212,10.079,0.980694,0.00179212,10.079,0.980694,-0.0702616,10.0813,0.970824,-0.134338,10.0883,0.941526,-0.176458,10.1007,0.889329,-0.200812,10.1169,0.821276,-0.209641,10.1335,0.751503,-0.213369,10.1484,0.688855,-0.213079,10.1638,0.623887,-1.406e-14,10.0849,0.955752,-0.00180238,10.0849,0.955752,0.00180238,10.0849,0.955752,-0.0627708,10.087,0.94697,-0.118104,10.0929,0.922222,-0.153806,10.1041,0.874951,-0.170872,10.1173,0.819369,-0.172452,10.1337,0.750348,-0.16993,10.1482,0.689377,-0.166063,10.1637,0.624448,-0.0680248,10.0812,0.971504,-0.132327,10.088,0.942789,-0.175538,10.1003,0.891092,-0.200316,10.1165,0.822995,-0.20971,10.133,0.753364,-0.213557,10.1479,0.691046,-0.213201,10.1633,0.626045,-0.208556,10.1787,0.561233,-0.0607121,10.0869,0.947407,-0.116272,10.0927,0.923109,-0.152885,10.1037,0.876736,-0.170424,10.1169,0.821147,-0.172048,10.1333,0.752151,-0.169531,10.1477,0.691532,-0.16611,10.1632,0.626634,-0.168834,10.1787,0.561511,-0.212495,10.1636,0.624831,-0.209177,10.1333,0.752281,-0.200174,10.1167,0.821945,-0.0691909,10.1109,0.977821,-0.133247,10.1201,0.949402,-0.175767,10.1323,0.897053,-0.213547,10.199,0.701902,-0.207948,10.2303,0.572202,-0.0619781,10.1164,0.954513,-0.117528,10.1248,0.930509,-0.152571,10.1354,0.884395,-0.169353,10.1667,0.831134,-0.173121,10.1854,0.761254,-0.170347,10.1989,0.702402,-0.167473,10.2137,0.63733,-0.169464,10.2302,0.572471,-1.40179e-14,10.1086,0.987314,-1.40076e-14,10.1144,0.962971,-0.0568771,10.1135,0.987326,-0.123747,10.1197,0.961185,-0.163571,10.1665,0.920747,-0.202023,10.17,0.849995,-0.213704,10.1874,0.779315,-0.218739,10.2052,0.717173,-0.218098,10.2171,0.651078,-0.214746,10.2349,0.586967,-0.0166252,10.1123,0.992191,0.0166252,10.1123,0.992191,-0.0844732,10.1152,0.980091,-0.146556,10.1617,0.941216,-0.18712,10.1605,0.893202,-0.206345,10.1761,0.825792,-0.216517,10.1964,0.754199,-0.220036,10.2079,0.690133,-0.218789,10.2254,0.625803,-0.0486037,10.1214,0.953865,-0.104043,10.127,0.932716,-0.144297,10.1392,0.898792,-0.161179,10.1718,0.841659,-0.167814,10.1881,0.776929,-0.164836,10.205,0.717522,-0.161721,10.2169,0.652024,-0.162433,10.2348,0.587336,0.00792712,10.1203,0.958465,-0.00792712,10.1203,0.958465,-0.00958623,10.1203,0.958465,0.00958623,10.1203,0.958465,-0.0723841,10.1229,0.947748,-0.127313,10.1345,0.919288,-0.15101,10.1649,0.878532,-0.16666,10.1773,0.81971,-0.167102,10.1966,0.752989,-0.162833,10.2077,0.690951,-0.159192,10.2253,0.626379,-1.40181e-14,10.1085,0.987722,-0.00179212,10.1085,0.987722,0.00179212,10.1085,0.987722,-0.0702616,10.1109,0.977852,-0.134338,10.1203,0.949146,-0.176504,10.1323,0.896424,-0.200973,10.1658,0.835384,-0.210594,10.1855,0.761509,-0.214186,10.1991,0.700908,-0.212039,10.2141,0.635844,-1.40075e-14,10.1145,0.96278,-0.00180238,10.1145,0.96278,0.00180238,10.1145,0.96278,-0.0627708,10.1165,0.953998,-0.118104,10.1251,0.929878,-0.152588,10.1355,0.88347,-0.169274,10.1669,0.830162,-0.172619,10.1857,0.760264,-0.169709,10.199,0.701438,-0.166817,10.214,0.636405,-0.0680248,10.1107,0.978532,-0.132327,10.1198,0.950344,-0.17559,10.1322,0.898263,-0.200656,10.1652,0.837628,-0.210404,10.1846,0.763856,-0.214101,10.1989,0.703174,-0.212162,10.2134,0.637956,-0.208556,10.23,0.573428,-0.0607121,10.1164,0.954435,-0.116272,10.1247,0.93073,-0.151787,10.1353,0.885243,-0.168459,10.1664,0.832171,-0.172571,10.1849,0.762527,-0.169774,10.1988,0.703665,-0.166857,10.2133,0.638544,-0.168834,10.2299,0.573706,-0.211455,10.2138,0.636773,-0.210001,10.1851,0.762492,-0.200406,10.1655,0.836294,-0.0653429,10.2979,0.972767,-0.12395,10.2923,0.946074,-0.159715,10.2932,0.897217,-0.17835,10.3003,0.833723,-0.182651,10.2979,0.757224,-0.179668,10.2984,0.693868,-0.176757,10.2992,0.623469,-0.178743,10.2979,0.552858,-0.0729526,10.2979,0.998044,-0.140534,10.2928,0.966612,-0.185449,10.2934,0.909482,-0.211426,10.3002,0.839865,-0.221643,10.2978,0.758579,-0.22536,10.2985,0.693333,-0.222878,10.2992,0.622865,-0.219345,10.2979,0.552566,-1.36817e-14,10.2979,1.00834,-1.36817e-14,10.2979,0.98194,-0.0653429,10.3652,0.972767,-0.12395,10.3652,0.946074,-0.162122,10.3652,0.895121,-0.180434,10.3652,0.834685,-0.182119,10.3652,0.759915,-0.179562,10.3652,0.693868,-0.175909,10.3652,0.623469,-0.178743,10.3652,0.552858,-0.0717709,10.3652,0.993553,-0.137383,10.3652,0.965431,-0.181937,10.3652,0.908808,-0.216745,10.3652,0.693333,-0.212366,10.3652,0.552566,-1.35621e-14,10.3652,1.00834,-0.20703,10.3652,0.835823,-0.214006,10.3652,0.761261,-0.215514,10.3652,0.622865,-1.35621e-14,10.3652,0.98194,-0.0597325,10.2884,1.00622,-0.129966,10.2884,0.978003,-0.171133,10.2785,0.926107,-0.212911,10.2912,0.852831,-0.225075,10.2904,0.775591,-0.230324,10.2869,0.707503,-0.229622,10.2914,0.63675,-0.226119,10.2884,0.566608,-0.0172999,10.2884,1.01149,0.0172999,10.2884,1.01149,-0.0887417,10.2884,0.998404,-0.154462,10.2784,0.946695,-0.197092,10.2902,0.898959,-0.217314,10.2908,0.826105,-0.228238,10.2869,0.747271,-0.232036,10.2913,0.679078,-0.230331,10.2887,0.608775,-0.0514612,10.2884,0.971833,-0.110267,10.2873,0.948631,-0.153161,10.2787,0.916202,-0.169696,10.2914,0.84328,-0.177684,10.2904,0.773028,-0.174617,10.287,0.707883,-0.171001,10.2914,0.637761,-0.171724,10.2884,0.567003,0.00860354,10.2884,0.976828,-0.00860354,10.2884,0.976828,-0.0102626,10.2884,0.976828,0.0102626,10.2884,0.976828,-0.0766556,10.2884,0.965167,-0.140345,10.2784,0.932187,-0.158916,10.2892,0.883298,-0.17605,10.291,0.819461,-0.176481,10.287,0.745996,-0.171858,10.2913,0.679948,-0.168351,10.2886,0.609384,-0.0583503,10.3652,1.00444,-0.128387,10.3652,0.975284,-0.18196,10.3652,0.922865,-0.210573,10.3652,0.849051,-0.221741,10.3652,0.775739,-0.226411,10.3652,0.707481,-0.2255,10.3652,0.636691,-0.222299,10.3652,0.566585,-0.015846,10.3652,1.00972,0.015846,10.3652,1.00972,-0.0867206,10.3652,0.995909,-0.152509,10.3652,0.959236,-0.195479,10.3652,0.89907,-0.214741,10.3652,0.825775,-0.223246,10.3652,0.74997,-0.225616,10.3652,0.679027,-0.22605,10.3652,0.60874,-0.050981,10.3652,0.969836,-0.109124,10.3652,0.946926,-0.151138,10.3652,0.903758,-0.171911,10.3652,0.844238,-0.172164,10.3652,0.772879,-0.16851,10.3652,0.707905,-0.167616,10.3652,0.637819,-0.168566,10.3652,0.567026,0.00819493,10.3652,0.974816,-0.00819493,10.3652,0.974816,-0.00985403,10.3652,0.974816,0.00985403,10.3652,0.974816,-0.0759539,10.3652,0.963237,-0.128133,10.3652,0.932126,-0.161527,10.3652,0.880678,-0.173933,10.3652,0.820009,-0.17461,10.3652,0.748625,-0.170868,10.3652,0.679999,-0.164825,10.3652,0.609419,-1.36817e-14,10.2979,0.981732,-0.00185591,10.2979,0.981732,0.00185591,10.2979,0.981732,-0.0661791,10.2979,0.972209,-0.124558,10.2922,0.94537,-0.159653,10.2934,0.896263,-0.178285,10.3003,0.832642,-0.182099,10.2977,0.756091,-0.178966,10.2986,0.692862,-0.176072,10.2992,0.62245,-1.35621e-14,10.3652,0.981732,-0.00185591,10.3652,0.981732,0.00185591,10.3652,0.981732,-0.0661791,10.3652,0.972209,-0.124558,10.3652,0.94537,-0.162219,10.3652,0.894112,-0.180231,10.3652,0.833819,-0.181736,10.3652,0.758999,-0.179075,10.3652,0.692862,-0.175168,10.3652,0.62245,-1.35621e-14,10.3652,1.00878,-0.00184508,10.3652,1.00878,0.00184508,10.3652,1.00878,-0.0729004,10.3652,0.993586,-0.138534,10.3652,0.965123,-0.18269,10.3652,0.908166,-0.207718,10.3652,0.835082,-0.214523,10.3652,0.760357,-0.2173,10.3652,0.692295,-0.216147,10.3652,0.621841,-1.36817e-14,10.2979,1.00878,-0.00184509,10.2979,1.00878,0.00184509,10.2979,1.00878,-0.0740821,10.2979,0.998077,-0.141685,10.2925,0.966305,-0.18622,10.2936,0.908824,-0.212012,10.3002,0.838838,-0.22229,10.2977,0.757442,-0.226058,10.2987,0.692295,-0.223493,10.2992,0.621841,-0.0717223,10.2979,0.998814,-0.139563,10.2931,0.967674,-0.185261,10.2931,0.910768,-0.211707,10.3003,0.841366,-0.222048,10.298,0.760154,-0.225925,10.2983,0.694671,-0.223623,10.2994,0.624182,-0.219987,10.2979,0.553896,-0.0640071,10.2979,0.972682,-0.122624,10.2925,0.946333,-0.158935,10.293,0.898075,-0.177367,10.3003,0.83487,-0.182105,10.2981,0.758701,-0.17911,10.2982,0.695199,-0.176113,10.2994,0.62482,-0.178079,10.2979,0.554197,-0.0705406,10.3652,0.994324,-0.136412,10.3652,0.966493,-0.181775,10.3652,0.910108,-0.207202,10.3652,0.836967,-0.214594,10.3652,0.762402,-0.217497,10.3652,0.694671,-0.216326,10.3652,0.624182,-0.213008,10.3652,0.553896,-0.0640072,10.3652,0.972682,-0.122624,10.3652,0.946333,-0.161251,10.3652,0.896045,-0.179758,10.3652,0.835746,-0.18131,10.3652,0.760955,-0.178654,10.3652,0.695199,-0.175218,10.3652,0.62482,-0.178079,10.3652,0.554197,-0.0636458,10.4828,0.94973,-0.0688119,10.4828,0.948056,-0.119831,10.4828,0.923656,-0.124827,10.4828,0.920566,-0.151351,10.4828,0.876037,-0.153764,10.4828,0.869913,-0.17032,10.4828,0.809971,-0.172664,10.4828,0.805471,-0.171946,10.4828,0.739999,-0.172749,10.4828,0.736113,-0.168546,10.4828,0.676707,-0.169143,10.4828,0.671652,-0.169819,10.4828,0.60633,-0.169112,10.4828,0.599988,-0.0747414,10.4828,0.986586,-0.0828983,10.4828,0.9846,-0.144743,10.4828,0.954508,-0.152494,10.4828,0.950159,-0.19112,10.4828,0.895774,-0.195705,10.4828,0.886231,-0.236724,10.4828,0.675929,-0.23567,10.4828,0.670646,-0.219153,10.4828,0.819728,-0.21933,10.4828,0.829056,-0.231807,10.4828,0.74221,-0.234117,10.4828,0.747729,-0.230097,10.4828,0.605434,-0.231868,10.4828,0.61394,-0.168566,10.4828,0.54979,-0.179508,10.4828,0.536962,-0.171697,10.4828,0.620584,-0.169376,10.4828,0.613162,-0.16679,10.4828,0.690669,-0.166194,10.4828,0.682235,-0.170427,10.4828,0.752763,-0.169459,10.4828,0.745057,-0.165102,10.4828,0.823156,-0.166296,10.4828,0.815627,-0.146641,10.4828,0.888363,-0.148125,10.4828,0.881904,-0.109124,10.4828,0.92969,-0.113757,10.4828,0.926078,-0.050981,10.4828,0.952601,-0.0577514,10.4828,0.950466,-0.180371,10.4828,0.535623,-0.22941,10.4828,0.561467,-0.21609,10.4828,0.53666,-0.231531,10.4828,0.626574,-0.239282,10.4828,0.690246,-0.239536,10.4828,0.681648,-0.232563,10.4828,0.755623,-0.21679,10.4828,0.83527,-0.184654,10.4828,0.909941,-0.187515,10.4828,0.905382,-0.13111,10.4828,0.962473,-0.137263,10.4828,0.95999,-0.0602128,10.4828,0.990979,-0.0664376,10.4828,0.989742,-0.215262,10.4828,0.535331,-0.22979,10.4828,0.585996,-0.230031,10.4828,0.593599,-0.229781,10.4828,0.651828,-0.229547,10.4828,0.732565,-0.231065,10.4828,0.738033,-0.219508,10.4828,0.806632,-0.220018,10.4828,0.812548,-0.199308,10.4828,0.879758,-0.15566,10.4828,0.943182,-0.0894434,10.4828,0.983098,-0.0177085,10.4828,0.996264,0.0177085,10.4828,0.996264,0.00619631,10.4828,0.997862,-0.00619631,10.4828,0.997862,-0.00785541,10.4828,0.997862,0.00785541,10.4828,0.997862,-1.33531e-14,10.4828,0.998007,-0.168954,10.4828,0.592183,-0.170843,10.4828,0.662764,-0.17461,10.4828,0.731113,-0.173814,10.4828,0.799543,-0.156699,10.4828,0.862279,-0.128133,10.4828,0.914891,-0.0759539,10.4828,0.946002,0.00819498,10.4828,0.95758,-0.00819498,10.4828,0.95758,-0.00985408,10.4828,0.95758,0.00985408,10.4828,0.95758,0.00457143,10.4828,0.957586,-0.00457143,10.4828,0.957586,-0.00623053,10.4828,0.957586,0.00623053,10.4828,0.957586,-1.33531e-14,10.4828,0.957738,-0.0650053,10.424,0.963322,-0.069553,10.424,0.961003,-0.123203,10.424,0.936612,-0.12616,10.424,0.932706,-0.161034,10.424,0.886255,-0.162295,10.424,0.881196,-0.178347,10.424,0.826663,-0.178332,10.424,0.820421,-0.181394,10.424,0.752156,-0.180925,10.424,0.748096,-0.179088,10.424,0.685303,-0.178622,10.424,0.679819,-0.173997,10.424,0.614917,-0.173316,10.424,0.609372,-0.078942,10.424,0.988911,-0.073102,10.424,0.989986,-0.145608,10.424,0.954755,-0.140695,10.424,0.958262,-0.189112,10.424,0.897222,-0.185604,10.424,0.902825,-0.225784,10.424,0.679177,-0.2257,10.424,0.684763,-0.211573,10.424,0.829547,-0.211345,10.424,0.834348,-0.221773,10.424,0.75381,-0.223398,10.424,0.758268,-0.22596,10.424,0.614282,-0.228157,10.424,0.619872,-0.17158,10.424,0.565145,-0.178411,10.424,0.550243,-0.169939,10.424,0.635803,-0.172293,10.424,0.620593,-0.172069,10.424,0.705826,-0.176835,10.424,0.690887,-0.174217,10.424,0.770334,-0.179268,10.424,0.756239,-0.170509,10.424,0.843348,-0.176131,10.424,0.832163,-0.14832,10.424,0.900004,-0.15808,10.424,0.890182,-0.104625,10.424,0.941971,-0.118453,10.424,0.938467,-0.044837,10.424,0.963167,-0.059652,10.424,0.963662,-0.186926,10.424,0.545828,-0.219663,10.424,0.549933,-0.226529,10.424,0.564694,-0.231463,10.424,0.634831,-0.227784,10.424,0.690448,-0.231452,10.424,0.705686,-0.226126,10.424,0.773643,-0.209977,10.424,0.847539,-0.183338,10.424,0.908277,-0.178312,10.424,0.920318,-0.136028,10.424,0.962194,-0.123527,10.424,0.972689,-0.0675959,10.424,0.992187,-0.0530842,10.424,0.998464,-0.211144,10.424,0.545648,-0.227908,10.424,0.593546,-0.226273,10.424,0.608757,-0.226796,10.424,0.663834,-0.226903,10.424,0.735099,-0.222344,10.424,0.74958,-0.218289,10.424,0.808435,-0.212907,10.424,0.824867,-0.199405,10.424,0.88106,-0.158815,10.424,0.944681,-0.0952392,10.424,0.986378,-0.0237298,10.424,1.00231,0.0237298,10.424,1.00231,0.00521432,10.424,1.00071,-0.00521432,10.424,1.00071,-0.00687343,10.424,1.00071,0.00687343,10.424,1.00071,-1.34576e-14,10.424,1.00005,-0.170885,10.424,0.594154,-0.176,10.424,0.664727,-0.177029,10.424,0.734353,-0.176336,10.424,0.802808,-0.164341,10.424,0.866644,-0.132602,10.424,0.920013,-0.0814086,10.424,0.953083,0.0036201,10.424,0.971476,-0.0036201,10.424,0.971476,-0.0052792,10.424,0.971476,0.0052792,10.424,0.971476,-0.0173095,10.424,0.966744,0.0173095,10.424,0.966744,-1.34576e-14,10.424,0.972758,-0.0653269,10.368,0.97232,-0.0663386,10.368,0.971679,-0.123915,10.368,0.945627,-0.124633,10.368,0.944771,-0.162088,10.368,0.894691,-0.162236,10.368,0.893495,-0.180377,10.368,0.83428,-0.180158,10.368,0.833213,-0.182031,10.368,0.759532,-0.181646,10.368,0.758447,-0.179479,10.368,0.693463,-0.178981,10.368,0.692245,-0.175859,10.368,0.623065,-0.175072,10.368,0.621831,-0.0743119,10.368,0.997643,-0.0729596,10.368,0.997663,-0.14187,10.368,0.965759,-0.140541,10.368,0.966218,-0.18625,10.368,0.909199,-0.185348,10.368,0.910021,-0.225172,10.368,0.691675,-0.22463,10.368,0.692928,-0.211189,10.368,0.836312,-0.21131,10.368,0.837617,-0.220706,10.368,0.76072,-0.22129,10.368,0.762064,-0.224274,10.368,0.622459,-0.225061,10.368,0.623978,-0.168708,10.368,0.566937,-0.178094,10.368,0.55401,-0.167775,10.368,0.637724,-0.175141,10.368,0.624621,-0.168553,10.368,0.707806,-0.178504,10.368,0.694995,-0.172139,10.368,0.772759,-0.181152,10.368,0.76073,-0.171897,10.368,0.844112,-0.179645,10.368,0.835507,-0.151005,10.368,0.90358,-0.161107,10.368,0.895763,-0.108911,10.368,0.946692,-0.122427,10.368,0.945961,-0.0506905,10.368,0.969521,-0.0638013,10.368,0.972256,-0.17912,10.368,0.552526,-0.219971,10.368,0.553708,-0.229148,10.368,0.566496,-0.232697,10.368,0.636603,-0.225396,10.368,0.694472,-0.233264,10.368,0.707396,-0.227574,10.368,0.77564,-0.214203,10.368,0.849641,-0.185069,10.368,0.911456,-0.184808,10.368,0.923863,-0.139396,10.368,0.967415,-0.130751,10.368,0.979376,-0.0715272,10.368,0.998501,-0.0598757,10.368,1.00775,-0.218969,10.368,0.552239,-0.233573,10.368,0.608022,-0.224925,10.368,0.621223,-0.23233,10.368,0.678309,-0.229309,10.368,0.749439,-0.221225,10.368,0.759709,-0.219834,10.368,0.825292,-0.211918,10.368,0.835419,-0.199313,10.368,0.898979,-0.155809,10.368,0.959673,-0.0897174,10.368,0.999674,-0.0179931,10.368,1.01297,0.0179931,10.368,1.01297,-1.35572e-14,10.368,1.0084,-0.00208279,10.368,1.0084,0.00208279,10.368,1.0084,-1.35572e-14,10.368,1.00795,-0.16516,10.368,0.608697,-0.171147,10.368,0.679277,-0.174768,10.368,0.74804,-0.174048,10.368,0.819196,-0.16166,10.368,0.880015,-0.128345,10.368,0.931554,-0.0762117,10.368,0.962757,-1.35572e-14,10.368,0.981247,-0.00201774,10.368,0.981247,0.00201774,10.368,0.981247,0.00854738,10.368,0.974434,-0.00854738,10.368,0.974434,-0.0102065,10.368,0.974434,0.0102065,10.368,0.974434,-1.35572e-14,10.368,0.981506,-0.0729526,10.362,0.998044,-0.140534,10.362,0.966612,-0.185338,10.362,0.910346,-0.22454,10.362,0.693333,-0.219345,10.362,0.552566,-0.0653429,10.362,0.972767,-0.12395,10.362,0.946074,-0.162126,10.362,0.895117,-0.180432,10.362,0.834701,-0.182274,10.362,0.759896,-0.179716,10.362,0.693868,-0.175895,10.362,0.623469,-0.178743,10.362,0.552858,-1.35678e-14,10.362,1.00834,-1.35678e-14,10.362,0.98194,-0.0601899,10.3616,1.00812,-0.131055,10.3616,0.979627,-0.185044,10.3616,0.923983,-0.214294,10.3616,0.8497,-0.227662,10.3616,0.775732,-0.233389,10.3616,0.707482,-0.232882,10.3616,0.636694,-0.229127,10.3616,0.566586,-0.017689,10.3616,1.0134,0.017689,10.3616,1.0134,-0.08941,10.3616,1.00024,-0.155591,10.3616,0.960347,-0.199203,10.3616,0.899825,-0.219881,10.3616,0.825997,-0.229351,10.3616,0.750063,-0.232507,10.3616,0.67903,-0.233742,10.3616,0.608742,-0.0510038,10.3616,0.969931,-0.109178,10.3616,0.947007,-0.151223,10.3616,0.903807,-0.17201,10.3616,0.844259,-0.172533,10.3616,0.772886,-0.168907,10.3616,0.707904,-0.167777,10.3616,0.637817,-0.168716,10.3616,0.567025,0.0082144,10.3616,0.974912,-0.0082144,10.3616,0.974912,-0.0098735,10.3616,0.974912,0.0098735,10.3616,0.974912,-0.0759873,10.3616,0.963329,-0.128201,10.3616,0.932196,-0.161618,10.3616,0.880715,-0.174046,10.3616,0.820026,-0.174747,10.3616,0.74863,-0.171026,10.3616,0.679996,-0.164992,10.3616,0.609417,-1.35678e-14,10.362,1.00878,-0.00184508,10.362,1.00878,0.00184508,10.362,1.00878,-0.0740821,10.362,0.998077,-0.141685,10.362,0.966305,-0.186123,10.362,0.9097,-0.211817,10.362,0.835899,-0.221131,10.362,0.760234,-0.225064,10.362,0.692295,-0.224758,10.362,0.621841,-1.35678e-14,10.362,0.981732,-0.00185591,10.362,0.981732,0.00185591,10.362,0.981732,-0.0661791,10.362,0.972209,-0.124558,10.362,0.94537,-0.162224,10.362,0.894108,-0.180229,10.362,0.833832,-0.181896,10.362,0.758982,-0.179235,10.362,0.692862,-0.175155,10.362,0.62245,-0.0717223,10.362,0.998814,-0.139563,10.362,0.967674,-0.185152,10.362,0.911611,-0.211292,10.362,0.837764,-0.221204,10.362,0.762253,-0.225262,10.362,0.694671,-0.224887,10.362,0.624182,-0.219987,10.362,0.553896,-0.0640072,10.362,0.972682,-0.122624,10.362,0.946333,-0.161252,10.362,0.896044,-0.179756,10.362,0.83576,-0.18147,10.362,0.760937,-0.178814,10.362,0.695199,-0.175204,10.362,0.62482,-0.178079,10.362,0.554197,-0.224142,10.362,0.622865,-0.220642,10.362,0.761078,-0.211143,10.362,0.836625,-0.0729526,10.33,0.998044,-0.140534,10.3274,0.966612,-0.185393,10.3277,0.909914,-0.225252,10.3069,0.693333,-0.219345,10.3064,0.552566,-0.0653429,10.33,0.972767,-0.12395,10.3272,0.946074,-0.160921,10.3276,0.896167,-0.178626,10.3084,0.833852,-0.182601,10.3064,0.757577,-0.179675,10.3069,0.693868,-0.176643,10.3076,0.623469,-0.178743,10.3064,0.552858,-1.36247e-14,10.33,1.00834,-1.36247e-14,10.33,0.98194,-0.0599612,10.325,1.00717,-0.130511,10.325,0.978815,-0.172526,10.2868,0.925894,-0.213094,10.3005,0.852416,-0.225418,10.2998,0.775609,-0.230729,10.2968,0.7075,-0.230053,10.3007,0.636742,-0.226517,10.2981,0.566605,-0.0174944,10.325,1.01244,0.0174944,10.325,1.01244,-0.0890758,10.325,0.999323,-0.154575,10.2867,0.948063,-0.197371,10.2997,0.899073,-0.217654,10.3002,0.826091,-0.228385,10.2968,0.747641,-0.232098,10.3006,0.679071,-0.230783,10.2983,0.608771,-0.0512325,10.325,0.970882,-0.109723,10.3245,0.947819,-0.152192,10.3201,0.910004,-0.170002,10.3006,0.84341,-0.177003,10.2998,0.773009,-0.173861,10.2968,0.707885,-0.170574,10.3007,0.637768,-0.171326,10.2981,0.567006,0.00840897,10.325,0.97587,-0.00840897,10.325,0.97587,-0.0100681,10.325,0.97587,0.0100681,10.325,0.97587,-0.0763215,10.325,0.964248,-0.134273,10.32,0.932191,-0.159273,10.2988,0.882956,-0.175784,10.3003,0.819536,-0.176251,10.2968,0.746345,-0.171747,10.3006,0.679955,-0.167906,10.2983,0.609388,-1.36247e-14,10.33,1.00878,-0.00184509,10.33,1.00878,0.00184509,10.33,1.00878,-0.0740821,10.33,0.998077,-0.141685,10.3273,0.966305,-0.186171,10.3278,0.909262,-0.211986,10.3084,0.838449,-0.222137,10.3062,0.757812,-0.225927,10.307,0.692295,-0.223661,10.3075,0.621841,-1.36247e-14,10.33,0.981732,-0.00185591,10.33,0.981732,0.00185591,10.33,0.981732,-0.0661791,10.33,0.972209,-0.124558,10.3271,0.94537,-0.160938,10.3277,0.895186,-0.178542,10.3085,0.8328,-0.182072,10.3062,0.756473,-0.179001,10.307,0.692862,-0.17595,10.3075,0.62245,-0.0717223,10.33,0.998814,-0.139563,10.3276,0.967674,-0.185206,10.3275,0.91119,-0.211652,10.3084,0.840889,-0.221936,10.3065,0.760432,-0.225837,10.3067,0.694671,-0.223791,10.3077,0.624182,-0.219987,10.3064,0.553896,-0.0640071,10.33,0.972682,-0.122624,10.3273,0.946333,-0.160094,10.3275,0.897059,-0.177683,10.3085,0.834988,-0.182021,10.3065,0.758997,-0.17907,10.3067,0.695199,-0.175993,10.3077,0.62482,-0.178079,10.3064,0.554197,-0.223045,10.3076,0.622865,-0.221511,10.3063,0.75891,-0.211388,10.3084,0.839436,-0.405807,10.0762,0.780308,-0.452448,11.5694,0.616933,-0.426792,11.5367,-0.348324,-0.132732,10.1853,-0.400425,4.44144e-12,9.75204,1.04844,-0.255323,9.73455,1.01137,-0.39065,9.92643,0.875905,-0.451493,10.043,0.616566,-0.390779,10.0741,0.369957,-0.377573,10.0736,0.12284,-0.377884,10.1737,-0.09365,-0.365987,10.1861,-0.161859,-0.438014,10.193,0.698165,-0.432513,10.316,0.706512,-0.379823,10.6063,0.797248,-0.461082,11.2445,0.645257,-0.462439,11.4362,0.637338,-0.41451,10.3707,-0.348703,-0.52239,10.6349,-0.451086,-0.551502,10.8753,-0.486473,-0.522967,11.3342,-0.428964,-0.459395,11.472,-0.373482,-1.12849e-14,11.6472,-0.455321,-0.217016,11.6155,-0.432179,-0.342097,11.5759,-0.390496,-1.12079e-14,11.6905,0.746098,-0.17906,11.6697,0.728054,-0.335935,11.6223,0.684665,-0.47637,11.6109,0.494521,-0.514765,11.6364,0.279343,-0.515404,11.639,0.149359,-0.495261,11.6079,-0.117871,-0.456745,11.569,-0.25749,4.43832e-14,9.90186,0.405145,1.80514e-12,9.81593,0.674556,4.44138e-12,9.71854,1.04875,-0.167946,9.92498,0.365203,-0.208244,9.84269,0.613393,-0.285437,9.69384,1.00255,-0.293078,9.95944,0.272803,-0.327054,9.93101,0.489366,-0.417587,9.9014,0.831883,-1.11021e-14,11.7501,-0.323595,-0.215544,11.7115,-0.307005,-0.35726,11.6542,-0.276448,-1.08951e-14,11.8666,-0.148027,-0.203216,11.8247,-0.135543,-0.399297,11.7413,-0.108161,-1.07807e-14,11.931,0.152039,-0.211692,11.8918,0.16615,-0.419436,11.7798,0.163066,-1.07609e-14,11.9422,0.366983,-0.226603,11.8865,0.365015,-0.410207,11.782,0.317379,-1.0939e-14,11.8419,0.595099,-0.192763,11.8107,0.574473,-0.355605,11.7368,0.534284,-1.17373e-14,11.3925,0.926989,-1.15136e-14,11.5184,0.846887,-0.134473,10.7173,1.00535,-0.242234,11.3217,0.924598,-0.188895,11.4656,0.849156,-0.221028,10.6167,0.901447,-0.37953,11.2583,0.838598,-0.356523,11.4284,0.787248,-0.480097,10.214,0.555768,-0.502422,10.376,0.594793,-0.495016,10.6589,0.691463,-0.502096,11.2526,0.513941,-0.516038,11.4654,0.487412,-0.478741,10.2959,0.324728,-0.593193,10.6084,0.261702,-0.601745,10.7448,0.312286,-0.584441,11.2912,0.282267,-0.561977,11.4981,0.266841,-0.474836,10.2517,0.13499,-0.559249,10.4866,0.131452,-0.616291,11.3373,0.119779,-0.576561,11.5103,0.139566,-0.450364,10.328,-0.118967,-0.609522,10.6041,-0.0793703,-0.665762,10.8138,-0.185119,-0.618417,11.3431,-0.170431,-0.567669,11.4973,-0.132473,-0.450477,10.3534,-0.227484,-0.564394,10.6269,-0.310792,-0.613202,10.855,-0.36269,-0.585796,11.3334,-0.312326,-0.533168,11.4747,-0.271723,-1.14644e-14,11.5461,-0.535241,-1.17733e-14,11.3722,-0.621512,-1.26533e-14,10.8768,-0.714553,-1.3195e-14,10.5719,-0.681045,-1.36114e-14,10.3375,-0.554951,-0.225215,11.5182,-0.499819,-0.234709,11.3588,-0.576113,-0.241441,10.8801,-0.674925,-0.219562,10.5853,-0.633742,-0.172581,10.35,-0.524528,-0.353519,11.4917,-0.44716,-0.390978,11.3424,-0.514406,-0.436582,10.8831,-0.588709,-0.39383,10.6186,-0.551646,-0.312326,10.3689,-0.452937,-0.388211,10.4309,0.773729,-0.527557,10.7042,-0.46155,1.08276e-12,10.5115,1.0237,-0.0748067,10.5073,1.02409,-0.243448,10.4945,0.89998,-0.494349,10.5126,0.646296,-0.597198,10.6675,0.298042,-0.631248,10.6765,-0.102215,-0.582711,10.6981,-0.321279,-1.30564e-14,10.6499,-0.689956,-0.226577,10.661,-0.647556,-0.408647,10.6856,-0.565365,-0.431051,10.9068,0.790417,-0.434996,10.9297,0.775583,-0.557404,10.977,-0.48969,-0.556589,11.0769,-0.484563,-0.164002,10.9147,0.956207,-0.340487,10.9081,0.880304,-0.346012,10.9256,0.87657,-0.51887,10.928,0.665388,-0.516392,10.9492,0.651474,-0.614866,10.8841,0.291385,-0.618445,10.9572,0.2917,-0.683845,10.958,-0.244369,-0.681679,11.0684,-0.226367,-0.624711,10.9688,-0.379683,-0.629442,11.0717,-0.37189,-1.2276e-14,11.0892,-0.69889,-1.24457e-14,10.9937,-0.709996,-0.245583,11.0951,-0.65788,-0.244428,10.9908,-0.669796,-0.440576,11.0939,-0.578723,-0.440186,10.9818,-0.584458,-0.203434,10.425,0.946127,-0.108971,10.4656,1.05414,-1.34111e-14,10.4502,1.04426,-0.315148,10.3477,0.836349,-0.365138,10.266,0.78774,-0.372683,10.1832,0.793342,-0.298062,10.0081,1.00428,-0.146965,9.89984,1.05713,4.00815e-12,9.89608,1.04429,-0.352328,10.0988,0.864428,-0.176304,10.1135,1.01395,2.35335e-12,10.0545,1.08869,-0.0605627,10.0578,1.07542,-0.127324,10.0769,1.05008,-0.210418,10.1867,0.951272,-0.222855,10.2091,0.941856,-0.201195,10.2494,0.9976,-1.36179e-14,10.3338,1.13605,-0.0737163,10.3552,1.12292,-0.143354,10.3234,1.06823,-1.23666e-14,11.0382,1.07358,-0.080455,11.0282,0.968881,-0.0797285,10.9429,1.03352,-0.0666131,10.6966,1.20725,-0.0847347,10.5982,1.22833,-0.193597,10.5703,1.12215,7.12331e-05,10.5983,1.26563,-0.191561,10.6338,1.0861,-1.25269e-14,10.948,1.12485,5.41494e-06,10.695,1.24467,-0.17557,10.9276,0.929765,-1.19732e-14,11.2597,0.966229,-0.104687,11.2253,0.899282,-0.444157,10.9856,0.729652,-0.551947,11.1574,-0.472197,-0.389445,10.9889,0.783373,-0.50347,11.0184,0.618472,-0.645483,11.1319,0.154283,-0.665504,11.1914,0.017294,-0.67612,11.1399,-0.163789,-0.624597,11.1555,-0.349557,-1.2144e-14,11.1635,-0.686251,-0.245075,11.1624,-0.644418,-0.438935,11.1617,-0.570013,3.16803e-12,9.96682,1.11112,-0.0954038,9.97011,1.10305,-0.212729,10.0667,1.05112,-0.283947,10.1059,0.949861,-0.322587,10.1828,0.866994,-0.327582,10.2158,0.853994,-0.284115,10.2643,0.927251,-0.0951129,10.4261,1.13785,-1.35018e-14,10.3992,1.16373,-0.189566,10.3597,1.03439,-0.365985,11.009,0.787728,-0.120678,11.2114,0.857063,-0.17886,10.9494,0.887645,-0.0847581,11.0566,0.901111,-0.28845,10.9537,0.87209,-0.345076,11.2088,0.787867,-0.246251,11.2582,0.81763,-0.220332,11.2338,0.765134,-0.322139,11.1739,0.73378,-0.27647,10.9598,0.818784,-0.0628091,11.0781,0.849971,-0.17706,10.9623,0.8427,-0.106058,11.203,0.806999,-0.349806,11.0095,0.772671,-0.350653,11.0241,0.734151,-0.0954312,11.2208,0.761477,-0.148003,10.968,0.806174,-0.0297216,11.1079,0.799739,-0.277907,10.9516,0.781051,-0.329779,11.1829,0.698248,-0.222629,11.2486,0.721882,-0.226299,11.2523,0.667157,-0.324742,11.182,0.664605,-0.273201,10.9615,0.723778,-0.0276449,11.1172,0.731768,-0.145532,10.9552,0.74653,-0.0959922,11.224,0.696627,-0.34852,11.0256,0.690244,-0.568132,10.6947,0.496109,-0.544077,10.4584,0.408879,-0.559428,10.5717,0.459921,-0.573398,10.9076,0.516148,-0.574095,10.954,0.509338,-0.554867,11.0504,0.470302,-0.567077,10.5373,0.205235,-0.624448,11.0348,0.275171,-0.665355,11.0257,0.210262,-0.620425,10.5559,0.173189,-0.792715,11.143,-0.173748,-0.726978,11.2028,0.010407,-0.688244,11.1384,0.141538,-0.804249,11.0396,-0.255922,-0.808829,10.9159,-0.27337,-0.684608,10.9614,0.184497,-0.767663,10.6706,-0.1131,-0.626067,10.7176,0.196083,-0.805125,10.8097,-0.223616,-0.736732,10.5744,-0.072858,-0.624674,10.5066,0.127923,-0.617259,10.6489,0.202712,-0.698892,10.9688,0.160044,-0.791194,10.9101,-0.199463,-0.782406,11.004,-0.197145,-0.644064,10.5858,0.12121,3.7264e-12,9.94103,1.04143,-0.121193,9.93975,1.06583,-0.252953,10.0361,1.00906,-0.313386,10.1086,0.896934,-0.338866,10.1783,0.842095,-0.336236,10.2356,0.833987,-0.303428,10.2975,0.867716,-0.103246,10.4508,1.09112,-1.34566e-14,10.4246,1.08532,-0.194182,10.3911,0.991718,-0.152956,10.312,0.977416,-0.0733876,10.3436,1.02459,-1.3619e-14,10.3332,1.03525,-0.206665,10.2418,0.932772,-0.228276,10.216,0.91853,-0.214798,10.1801,0.925614,-0.118033,10.0978,0.981791,-0.0540031,10.0677,1.00133,1.37324e-12,10.0595,1.00743,-0.180579,10.1231,0.947712,-0.203588,10.2297,0.961803,-0.145937,10.3021,1.02794,-0.0757857,10.331,1.0758,-1.36558e-14,10.3125,1.0876,-0.222755,10.2064,0.930873,-0.209945,10.1852,0.936888,-0.172744,10.1324,0.980323,-0.121806,10.107,1.01655,-0.0589609,10.0876,1.04011,1.8733e-12,10.0875,1.05247,3.26146e-12,9.95565,1.10746,-0.097069,9.9601,1.10038,-0.216639,10.063,1.04587,-0.287897,10.1056,0.942944,-0.325728,10.1808,0.86335,-0.329613,10.2156,0.852254,-0.285263,10.2665,0.922797,-0.0956182,10.4276,1.13447,-1.34989e-14,10.4008,1.16055,-0.189834,10.3629,1.03133,-0.252568,9.77055,0.288887,-0.162125,9.75374,0.328641,-9.08122e-09,9.72609,0.464248,-0.356487,9.87513,-0.17497,-0.387756,9.86153,-0.0925043,-0.348196,9.79961,0.203859,-0.233851,9.89524,-0.361654,-0.116009,9.90109,-0.421934,5.61898e-14,9.90886,-0.461296,-0.304767,9.88925,-0.274581,-0.422755,9.50869,-0.353824,-1.9812e-09,9.54597,-0.634602,-0.204347,9.53733,-0.566356,-0.321508,9.51335,-0.452169,-0.419412,9.48431,0.269811,-0.544903,9.51407,-0.150143,-0.482752,9.51155,-0.265337,-2.5313e-08,9.3268,0.43295,-0.137342,9.34716,0.407325,-0.302715,9.46059,0.417372,6.45004e-14,9.73536,-0.53064,-0.157355,9.71999,-0.479324,-0.269655,9.71141,-0.401103,-0.339643,9.69807,-0.312836,-0.439502,9.66681,-0.113468,-0.367949,9.61995,0.238593,-0.409912,9.67975,-0.200566,-0.115462,9.52801,0.363312,-2.2321e-08,9.53695,0.451493,-0.247966,9.60504,0.347553,-0.352463,10.0147,-0.158968,-0.221249,10.0117,-0.339442,-1.21695e-14,11.1492,1.02055,-0.0829814,11.1317,0.929662,-0.0926938,11.138,0.880209,-0.070862,11.1503,0.82516,-0.0484494,11.1726,0.781049,-0.0591887,11.177,0.711778,-0.452531,11.0749,0.678757,-0.401231,11.1015,0.754424,-0.489037,11.1225,0.555533,-0.379924,11.0927,0.755029,-0.359399,11.0926,0.73821,-0.371697,11.0941,0.717259,-0.355616,11.0938,0.674933,-0.570062,11.1721,0.382147,-0.631332,11.0907,0.234523,-0.672029,11.0681,0.19401,-0.477474,10.5353,-0.409513,-0.520724,10.4223,0.110081,-0.522815,10.5052,-0.148839,-0.518917,10.5182,-0.277646,-1.33616e-14,10.4781,-0.636822,-0.2022,10.4973,-0.600333,-0.363514,10.532,-0.518593,-0.535467,11.241,-0.451351,-0.615496,11.2182,0.211317,-0.641511,11.2592,0.0775873,-0.647995,11.2504,-0.188306,-0.605029,11.2447,-0.333,-1.19544e-14,11.2703,-0.658587,-0.231329,11.2532,-0.618527,-0.422362,11.2394,-0.548997,-0.584753,10.719,0.39624,-0.563998,10.5386,0.314427,-0.57913,10.6223,0.36583,-0.5943,10.8925,0.395666,-0.598062,10.9497,0.378241,-0.524842,10.4651,0.225947,-0.596076,11.0451,0.333038,-0.606307,11.1496,0.276202,-0.104556,11.637,-0.452158,-0.0810043,11.6856,0.740934,-0.102978,11.7363,-0.321285,-0.102023,11.8457,-0.141785,-0.106261,11.9175,0.155022,-0.114512,11.9191,0.365999,-0.0897977,11.8349,0.58744,-0.0947687,11.4734,0.862457,-0.120671,11.37,0.925794,-0.086705,10.347,-0.541123,-0.110196,10.5786,-0.657394,-0.121135,10.8784,-0.694739,-0.110796,11.3685,-0.605683,-0.108349,11.536,-0.526789,-0.113703,10.6554,-0.668756,-0.123206,11.0921,-0.678385,-0.122629,10.9922,-0.689896,-0.122952,11.1629,-0.665335,-0.0456086,9.90349,-0.444072,-0.0818424,9.5345,-0.611983,-0.0404314,9.72569,-0.517485,-0.101515,10.4892,-0.619215,-0.116079,11.2617,-0.638557,-0.155487,11.2881,0.889681,-0.176341,11.2487,0.839736,-0.164725,11.2199,0.786467,-0.158635,11.2454,0.743145,-0.160591,11.248,0.6832,-1.18433e-14,11.3328,0.940846,-0.0931579,11.3196,0.911592,-0.0602381,11.241,0.935437,-0.0643413,10.5117,1.02426,-0.0967084,10.4678,1.05338,-0.0671636,10.3558,1.12411,-0.0411314,11.0379,1.02767,-0.0363106,10.5959,1.26069,-0.0392611,10.949,1.08328,-0.0302731,10.6938,1.23041,-0.0863593,10.4245,1.14031,-0.0933666,10.4507,1.0907,-0.0387729,10.346,1.03044,-0.044513,10.3293,1.07806,-0.086801,10.4261,1.13696,-0.0440056,11.1401,0.979394,-0.510536,11.627,0.0092895,-0.415348,11.7633,-0.0014057,-0.207564,11.8602,-0.00689002,-1.08383e-14,11.8986,-0.00767155,-0.58388,11.5109,0.00176961,-0.629859,11.3501,-0.0274971,-0.668748,11.1714,-0.0848714,-0.767713,11.1942,-0.0755102,-0.750287,11.1399,-0.0654209,-0.651396,11.263,-0.0557948,-0.104197,11.8794,-0.00728078,-0.71024,11.0828,0.126623,-0.68804,11.0174,0.164007,-0.648308,10.6819,0.138759,-0.652979,10.5611,0.104502,-0.767096,11.091,-0.143253,-0.729809,11.1359,0.0157568,-0.787169,10.8341,-0.153945,-0.766174,10.715,-0.0743858,-0.751893,10.6582,-0.0364277,-0.641101,10.7267,0.158869,-0.695855,11.0491,0.147974,-0.701235,10.917,0.127829,-0.686508,10.8899,0.146719,-0.653056,10.7756,0.134242,-0.634838,10.7672,0.177556,-0.38247,10.1192,0.0418283,-0.567708,10.4869,0.0602818,-0.449889,10.2829,0.0220986,-0.673759,10.4577,0.054868,-0.40802,9.83124,0.0616952,-0.552404,9.5045,0.0358535,-0.46998,9.64566,0.0489649,-0.519547,10.4431,0.0223868,-0.675875,10.5746,0.0608352,-0.436995,10.2535,0.700553,-0.49091,10.2993,0.556599,-0.368941,10.222,0.788242,-0.216917,10.2015,0.945596,-0.325242,10.1973,0.859074,-0.517422,10.3692,0.355355,-0.581249,10.5743,0.232242,-0.624361,10.6248,0.205026,-0.337682,10.2046,0.835686,-0.226109,10.2011,0.920074,-0.216682,10.1969,0.933342,-0.327805,10.196,0.855791,-0.545581,10.5023,0.269712,-0.679959,10.6767,0.154258,-0.395349,10.7305,0.803533,-0.135413,10.7849,0.988056,-0.264077,10.719,0.903916,-0.50869,10.7753,0.698066,-0.605784,10.8135,0.307146,-0.078288,10.7773,1.12311,-1.2797e-14,10.796,1.19573,-0.573067,10.7859,0.510055,-0.588206,10.8041,0.403625,-0.0283156,10.7894,1.171,-0.651476,10.8273,0.158056,-0.579724,10.509,0.0146608,-0.450329,10.3096,-0.0569043,-0.702208,10.4982,-0.0203447,-0.407297,9.84936,-0.0260794,-0.58061,9.51567,-0.0488354,-0.460001,9.65729,-0.0427455,-0.521359,10.4832,-0.0611281,-0.724412,10.61,0.00841786,-0.661323,11.1347,0.147841,-0.642032,11.0324,0.2388,-0.641289,10.9656,0.201458,-0.610597,10.6263,0.23188,-0.586421,10.568,0.199986,-0.588986,10.5387,0.131645,-0.711682,11.1156,-0.143362,-0.696241,11.1719,0.013335,-0.719063,11.0595,-0.212123,-0.721965,10.9451,-0.230062,-0.708268,10.8148,-0.170336,-0.673587,10.6659,-0.07225,-0.64997,10.5938,-0.0376449,-0.611395,10.6964,0.245189,-0.647658,11.0773,0.215766,-0.718231,11.1575,-0.0815112,-0.616384,10.7651,0.241929,-0.641331,10.894,0.187727,-0.625282,10.4998,0.0609121,-0.599003,10.5833,0.214507,-0.625475,10.8259,0.223558,-0.623178,10.5184,0.0137846,-0.460656,11.2741,0.644036,-0.500072,11.4036,-0.404726,-1.16632e-14,11.4342,0.892014,-0.23398,11.3439,0.912965,-0.37007,11.2935,0.830679,-0.512733,11.3445,0.493842,-0.575948,11.3986,0.270054,-0.602634,11.4263,0.13474,-0.599982,11.4244,-0.148575,-0.56708,11.4096,-0.289856,-1.16205e-14,11.4582,-0.590967,-0.228757,11.4377,-0.547593,-0.374168,11.4167,-0.488579,-0.119331,11.3912,0.916027,-0.108016,11.4514,-0.57715,-0.613788,11.4334,-0.00775994,-0.137521,10.9131,0.968562,-0.130821,10.7163,1.01678,-0.0402034,10.5239,1.07031,-0.236853,10.4986,0.931169,-1.32892e-14,10.5189,1.06259,-0.219197,10.6176,0.911553,-0.136935,10.9475,0.936697,-0.126494,10.9741,0.895146,-0.12342,10.9917,0.850724,-0.124244,10.9906,0.808526,-0.120997,10.9774,0.74701,-0.0351785,10.5171,1.06897,-0.127906,10.7861,0.996029,-0.403572,10.0798,0.402737,-0.504914,11.63,0.386099,-4.03777e-09,9.7495,0.779161,-0.235132,9.77796,0.699866,-0.35623,9.91409,0.540698,-0.389451,11.7719,0.421173,-0.216638,11.857,0.46152,-1.08329e-14,11.9016,0.475742,-0.547929,11.485,0.373463,-0.541634,11.2746,0.405494,-0.491656,10.2932,0.334055,-0.56784,10.6854,0.539119,-0.543084,10.4541,0.416467,-0.557813,10.5686,0.46664,-0.551641,10.9163,0.595946,-0.548162,10.9554,0.585647,-0.528585,11.0337,0.544272,-0.529448,11.1472,0.468855,-0.10258,11.8863,0.4718,-0.517547,10.364,0.366874,-0.558106,10.779,0.576018,-0.549136,11.3765,0.380214,-0.680623,11.1373,0.143322,-0.658752,11.0276,0.218341,-0.661412,10.9632,0.18864,-0.6158,10.6429,0.217204,-0.599021,10.5536,0.196135,-0.609626,10.5003,0.135334,-0.776212,11.1425,-0.172821,-0.718277,11.2012,0.0112359,-0.7869,11.0436,-0.252317,-0.791139,10.9218,-0.269892,-0.7854,10.8124,-0.215631,-0.750146,10.6708,-0.105534,-0.723832,10.5707,-0.0654941,-0.622008,10.7115,0.212283,-0.66513,11.0707,0.200169,-0.753705,11.1909,-0.077209,-0.630232,10.7688,0.193292,-0.667607,10.8853,0.162465,-0.662178,10.4685,0.0552323,-0.611295,10.6071,0.210533,-0.642448,10.8262,0.180083,-0.689553,10.5067,-0.0133775,-0.648295,11.1324,0.153139,-0.627569,11.0344,0.268714,-0.6225,10.9587,0.275673,-0.596283,10.6119,0.256483,-0.570509,10.5424,0.204231,-0.571749,10.5056,0.133682,-0.686469,11.1149,-0.164975,-0.67096,11.1673,0.0165912,-0.692558,11.0658,-0.229353,-0.694938,10.9543,-0.247337,-0.678132,10.8142,-0.187734,-0.643044,10.6659,-0.100084,-0.619957,10.5972,-0.0730793,-0.599765,10.6724,0.28966,-0.63423,11.0883,0.231194,-0.677532,11.1482,-0.0842749,-0.604375,10.7482,0.301154,-0.619564,10.8865,0.272008,-0.586767,10.497,0.0646894,-0.584401,10.5759,0.229108,-0.609181,10.8162,0.292305,-0.587879,10.5139,0.0132445,-0.690262,10.8168,0.0443389,-0.698211,10.8539,0.0381383,-0.652295,10.8172,0.134702,-0.732013,10.7127,0.0680747,-0.691047,10.6937,0.124289,-0.675995,10.5904,0.064215,-0.715369,10.6121,0.0167605,-0.640292,10.6891,0.124297,-0.700401,10.7019,0.0628113,-0.735384,10.7055,-0.00453672,-0.749447,10.7401,-0.0464854,-0.737499,10.6657,-0.0378892,-0.751306,10.7271,-0.0767684,-0.751786,10.8575,-0.105106,-0.742845,10.8406,-0.0579251,-0.732326,10.8819,-0.0258034,-0.733486,10.9169,-0.0692055,-0.732016,10.9554,-0.0247638,-0.728453,10.9107,0.0198262,-0.718742,10.8665,-0.0127313,-0.708696,10.888,0.0305672,-0.711174,10.7415,-0.044398,-0.720938,10.8357,-0.0503472,-0.721689,10.7024,-0.00875534,-0.762661,11.0085,-0.0687209,-0.771348,10.9597,-0.115726,-0.73949,10.9114,-0.139477,-0.748139,10.8078,-0.0622364,-0.709492,10.8123,-0.0559991,-0.751107,10.8314,-0.158436,-0.753243,10.912,-0.205976,-0.749498,11.0055,-0.191622,-0.733251,11.0908,-0.140437,-0.715413,11.1357,-0.06538,-0.693682,11.1361,0.0126437,-0.692406,11.0489,0.142496,-0.685947,11.0153,0.15218,-0.679899,10.9711,0.145924,-0.687567,11.0798,0.123717,-0.415707,10.826,0.797911,-0.149707,10.8502,0.9724,-0.308922,10.8184,0.893223,-0.522269,10.8571,0.682571,-0.610026,10.8488,0.298926,-0.0831169,10.864,1.07915,-1.26657e-14,10.8698,1.15985,-0.572065,10.8512,0.518125,-0.590672,10.8483,0.400088,-0.03369,10.8678,1.13634,-0.650336,10.8406,0.151253,-0.633403,10.8599,0.205642,-0.135137,10.8566,0.982404,-0.558012,10.8572,0.589302,-0.643729,10.8463,0.172516,-0.614176,10.8513,0.281927,-0.634146,10.8226,0.133344,-0.673339,10.8112,0.0730934,-0.672532,10.7667,0.100891,-0.691208,10.7616,0.0365957,-0.686144,10.7439,0.0826705,-0.621856,10.7292,0.154115,-0.631159,10.7649,0.132077,-0.694856,10.7991,-0.000749676,-0.699695,10.8339,-0.00587305,-0.673149,10.9341,0.111901,-0.700465,11.0464,0.0841271,-0.703234,10.9672,0.106715,-0.701355,11.0139,0.0962658,-0.736907,11.054,0.0360562,-0.70987,10.9477,0.0844722,-0.713396,10.9997,0.058729,-0.685604,10.919,0.0938407,-0.693887,10.8684,0.119749,-0.709115,10.8966,0.104323,-0.673228,10.8302,0.103724,-0.749707,11.041,-0.01575,-0.721114,10.9306,0.0513706,-0.723086,10.9823,0.0177463,-0.695762,10.9026,0.0674903,-0.693935,10.8514,0.0866304,-0.701632,10.8761,0.0755774,-0.673652,10.7783,0.0693107,-0.694919,10.7684,-0.000299593,-0.708718,10.776,-0.0532533,-0.540278,10.7867,-0.474951,-0.648505,10.7451,-0.143731,-0.598658,10.7726,-0.34249,-1.28549e-14,10.7633,-0.702254,-0.234009,10.7705,-0.66124,-0.422615,10.7843,-0.577037,-0.786394,10.7401,-0.168358,-0.117419,10.7669,-0.681747,-0.776599,10.7734,-0.113603,-0.690927,10.7403,-0.12136,-0.767773,10.7416,-0.160582,-0.660585,10.74,-0.144029,-0.76003,10.7735,-0.116831,-0.753437,10.7901,-0.0862972,-0.747974,10.7757,-0.0580357,-0.75013,10.7618,-0.0736133,-0.594223,10.7796,0.079863,-0.59239,10.8226,0.105135,-0.590312,10.7713,0.125581,-0.591702,10.7724,0.105406,-0.594189,10.8121,0.0837459,-0.591097,10.8153,0.126207,-0.10981,10.9255,0.996866,-0.0987208,10.7059,1.11617,-0.0397788,10.5489,1.13021,-0.214235,10.5205,1.03735,3.3617e-06,10.543,1.16248,-0.20384,10.6249,0.999999,-0.10602,10.9769,0.951272,-0.0926093,11.0101,0.902334,-0.0853769,11.0247,0.848527,-0.0672203,11.042,0.807893,-0.0624198,11.0423,0.740533,-0.0318004,10.5482,1.137,-0.103097,10.7819,1.05966,-0.109127,10.8603,1.03078,-0.176179,10.6662,0.953843,-0.16818,10.4938,0.96194,-0.23654,10.9055,0.918255,-0.157849,10.4495,1.00048,-0.109225,10.3396,1.09437,-0.132885,10.5825,1.17091,-0.129065,10.6634,1.15097,-0.239962,10.9252,0.903168,-0.143002,10.4006,1.08581,-0.23806,10.9423,0.879472,-0.227251,10.9488,0.832923,-0.213729,10.9515,0.798215,-0.21169,10.943,0.739148,-0.148516,10.4279,1.04171,-0.110994,10.3335,1.00903,-0.111228,10.319,1.05189,-0.143336,10.403,1.0826,-0.186211,10.733,0.945617,-0.158305,10.4978,1.01773,-0.173585,10.6663,0.964566,-0.216893,10.8215,0.933172,-0.142528,10.5229,1.08816,-0.151196,10.6664,1.05879,-0.0978939,10.6849,1.0602,-0.0939712,10.6586,0.976037,-0.0524107,10.6913,1.07716,-0.0476334,10.6619,0.994002,-0.0574576,10.623,1.12197,-0.0553495,10.5852,1.02397,-0.177798,10.5866,0.995231,-0.178195,10.621,1.09534,6.85146e-13,9.97336,0.983524,-0.0396682,9.9901,0.982275,-0.242011,10.1869,0.895388,-0.251676,10.2568,0.888548,-1.3521e-14,10.3884,1.00276,-0.16732,10.3592,0.945208,-0.0586161,10.3892,0.99943,-0.223634,10.2929,0.903901,-0.105064,10.0516,0.968463,-0.22354,10.1144,0.916477,-0.0286463,10.3941,1.00447,-0.254383,10.2292,0.889248,-0.104391,10.3727,0.984178,-0.145697,10.4439,0.81181,-0.263806,10.2392,0.779042,-0.0421492,10.443,0.815756,-0.195139,10.1088,0.790971,-1.42435e-14,9.98161,0.791768,-0.0513,10.003,0.797969,-0.117556,10.0485,0.800376,-0.247324,10.1743,0.780833,-0.263334,10.3134,0.779812,-0.241704,10.3775,0.788464,-1.34292e-14,10.4401,0.816387,-0.0891039,10.4462,0.815269,-0.202505,10.4189,0.799926,-0.211328,10.4416,0.48181,-0.0902159,10.4473,0.471235,-1.34365e-14,10.4359,0.473359,-0.243899,10.418,0.479105,-0.248375,10.3647,0.474733,-0.211108,10.2485,0.46896,-0.115512,10.1463,0.458181,-0.0527663,10.1639,0.464446,0.000172981,10.1689,0.468321,-0.172066,10.1894,0.461512,-0.0422708,10.4409,0.469801,-0.234289,10.305,0.473151,-0.151055,10.4503,0.477849,-0.106746,10.4044,0.383907,-0.180663,10.3127,0.400675,-0.0300477,10.3977,0.382492,-0.132566,10.2381,0.387439,-1.38948e-14,10.1779,0.381336,-0.0374266,10.1788,0.381688,-0.082032,10.1915,0.375535,-0.160964,10.2778,0.393905,-0.196317,10.3535,0.40986,-0.172206,10.3833,0.394212,-1.35106e-14,10.3942,0.386154,-0.0638514,10.4022,0.380147,-0.149242,10.3983,0.391901,-0.0337372,10.2935,0.352247,-1.36874e-14,10.2947,0.352385,-0.0729417,10.3061,0.351893,-0.118441,10.3269,0.362759,-0.134558,10.3364,0.369851,-0.154695,10.3421,0.379244,-0.243899,10.3944,0.730355,-0.243899,10.4026,0.668736,-0.243899,10.4094,0.606283,-0.243899,10.4144,0.542961,-0.211328,10.4275,0.738158,-0.211328,10.4336,0.675466,-0.211328,10.4376,0.61184,-0.211328,10.4402,0.547287,-0.263446,10.3225,0.721704,-0.261445,10.3358,0.662037,-0.259458,10.3481,0.601198,-0.260396,10.3608,0.539412,-0.194968,10.1221,0.727535,-0.193579,10.1228,0.661125,-0.188229,10.1399,0.593889,-0.184861,10.1619,0.528915,-0.247174,10.1748,0.720631,-0.245873,10.1797,0.659531,-0.23831,10.198,0.597091,-0.231547,10.2219,0.534902,-0.118733,10.0817,0.737186,-0.11842,10.0896,0.666277,-0.116723,10.1021,0.593683,-0.115322,10.1212,0.52435,-0.0525054,10.0416,0.737842,-0.0527804,10.0614,0.671138,-0.0508501,10.0834,0.61156,0.000305661,10.0219,0.73428,0.00327671,10.0472,0.674332,0.00758373,10.0743,0.615715,-0.0913876,10.4467,0.747488,-0.0910947,10.447,0.678582,-0.0908017,10.4471,0.609466,-0.0905088,10.4472,0.540351,-0.0431541,10.4409,0.747302,-0.0416607,10.4401,0.677712,-0.0418641,10.4404,0.608409,-0.0420674,10.4406,0.539105,-1.34343e-14,10.4372,0.747819,-1.34369e-14,10.4357,0.679344,-1.34365e-14,10.4359,0.610682,-1.34365e-14,10.4359,0.542021,-0.263461,10.2411,0.720437,-0.260614,10.2553,0.660688,-0.256365,10.2724,0.599909,-0.252771,10.2897,0.53863,-0.151055,10.4487,0.746783,-0.151055,10.4501,0.680536,-0.151055,10.4503,0.613367,-0.151055,10.4503,0.545613,-0.129014,10.4413,0.874605,-0.0771839,10.4495,0.880792,-0.189687,10.4156,0.857855,-0.243497,10.1856,0.831522,-0.260928,10.2493,0.82737,-0.259042,10.3057,0.827331,-0.0376292,10.4451,0.881962,-1.3423e-14,10.4435,0.88288,1.50869e-14,9.92115,0.847192,-0.0475267,9.95321,0.855868,-0.114677,10.0166,0.862991,-0.204964,10.1057,0.850706,-0.233415,10.3557,0.83598,-0.0502267,10.1334,0.587216,0.00955693,10.1253,0.584378,-0.112513,10.1503,0.582209,-0.0931938,10.2695,0.488881,-0.109041,10.2043,0.530606,-0.0541616,10.2793,0.498528,-0.00147967,10.2879,0.504172,-0.0595707,10.321,0.573349,-0.0972374,10.3044,0.569548,-0.00767101,10.3286,0.5718,-0.119893,10.1837,0.606782,-0.121355,10.2448,0.58411,-0.0670729,10.1676,0.607991,0.00922159,10.1609,0.601372,-0.0733338,10.1738,0.637846,0.0105547,10.1642,0.628358,-0.11387,10.1937,0.639179,-0.130253,10.2484,0.630812,-0.108817,10.3036,0.623277,-0.0104847,10.3229,0.617844,-0.0692935,10.3164,0.623212,-0.114151,10.2913,0.684356,-0.0749048,10.3071,0.681252,-0.0128251,10.3087,0.672525,-0.114148,10.1916,0.690386,-0.132409,10.2407,0.691978,-0.0727539,10.1739,0.686864,0.0122279,10.1691,0.66968,0.0154156,10.1686,0.737146,-0.0718591,10.171,0.752659,-0.114537,10.185,0.75925,-0.127537,10.2638,0.757084,-0.134199,10.2237,0.761799,-0.094248,10.2787,0.752344,-0.0128292,10.2828,0.741787,-0.122757,10.2082,0.848046,-0.0946918,10.2287,0.842027,-0.00823915,10.1799,0.828458,-0.126804,10.1828,0.839121,-0.109604,10.1556,0.834589,-0.0661312,10.1447,0.832655,0.0246256,10.1071,0.820043,-0.0594532,10.1175,0.865695,0.0282642,10.0635,0.856507,-0.0974553,10.1374,0.869529,-0.111342,10.152,0.871296,-0.111325,10.1536,0.869773,-0.000721618,10.1198,0.860734,-0.0842665,10.1684,0.869943,-0.0980621,10.1291,0.8912,-0.0675785,10.1008,0.912804,0.00729576,10.0743,0.911406,-0.0899053,10.135,0.894661,-0.0960192,10.1269,0.894024,-0.058999,10.0984,0.914124,0.0182073,10.0514,0.911122,-0.0631756,10.0979,0.920758,0.0126306,10.0609,0.920279,-0.116967,10.4202,0.929991,-0.06832,10.4306,0.941063,-0.261304,10.2443,0.860125,-0.0331772,10.4289,0.944146,-0.109388,10.035,0.917724,-0.214252,10.11,0.884306,-0.229783,10.3299,0.87252,-0.0434849,9.97009,0.921571,2.60979e-13,9.94579,0.918534,-1.3449e-14,10.4289,0.944733,-0.258267,10.2864,0.860233,-0.24592,10.1903,0.865173,-0.178983,10.3925,0.902998,-0.565606,10.7726,0.145421,-0.556043,10.7733,0.129054,-0.555927,10.8218,0.128854,-0.566035,10.8144,0.146156,-0.545193,10.8121,0.11048,-0.543231,10.7796,0.107122,-0.505215,10.8121,0.17736,-0.502137,10.7796,0.174983,-0.522237,10.7733,0.190511,-0.537912,10.8144,0.20262,-0.537238,10.7726,0.2021,-0.522054,10.8218,0.190369,-0.197283,10.9605,0.638722,-0.0807695,11.0368,0.640881,-0.12649,10.9861,0.645937,-0.157394,11.1973,0.596132,-0.309613,11.077,0.589679,-0.0782476,11.1419,0.618438,-0.304075,11.0238,0.60163,-0.106973,11.1786,0.606612,-0.147233,10.9713,0.642955,-0.0536272,11.0952,0.63404,-0.245229,10.9738,0.627722,-0.285516,11.1458,0.581619,-0.208476,11.1979,0.583176,-0.20441,11.15,0.535694,-0.258772,11.1112,0.534285,-0.23031,10.9894,0.566961,-0.0947102,11.0754,0.571373,-0.159809,10.9859,0.579525,-0.132453,11.1344,0.551968,-0.271903,11.0249,0.548443,-0.112129,11.1084,0.560335,-0.275821,11.0625,0.539988,-0.168125,11.1477,0.544553,-0.146261,10.9982,0.57979,-0.113913,11.0341,0.576213,-0.196343,10.9792,0.575449,-0.326149,10.2038,-0.265677,-0.245154,10.1854,-0.342259,-1.38736e-14,10.1899,-0.436339,-0.0671483,10.1876,-0.418382,-0.382296,10.1536,-0.0340144,-0.355439,9.90948,0.159143,-0.273636,9.85489,0.272613,-0.156274,9.82288,0.340451,3.04379e-14,9.80198,0.446641,-0.300982,10.0205,-0.262537,-0.372146,9.99577,-0.0835548,-0.115069,10.0148,-0.397971,4.37794e-14,10.0221,-0.433781,-0.0519322,10.0182,-0.415898,-0.384197,9.95086,0.0492516,-0.381721,9.97742,-0.0226974,6.16662e-14,9.80912,-0.497066,-0.130963,9.7992,-0.450577,-0.255697,9.79283,-0.380673,-0.320107,9.78071,-0.292285,-0.410926,9.74826,-0.10315,-0.354286,9.69448,0.221701,-0.378747,9.76182,-0.188379,-0.131973,9.65556,0.334844,-1.26745e-08,9.62446,0.463766,-0.248036,9.67531,0.317779,-0.0410956,9.80278,-0.481335,-0.433838,9.7226,0.0628111,-0.434421,9.73748,-0.0339391,-1.24971e-10,9.63501,-0.582608,-0.164556,9.62046,-0.523274,-0.296227,9.61899,-0.423644,-0.368818,9.59499,-0.331992,-0.491356,9.579,-0.130489,-0.380992,9.54437,0.255593,-0.443525,9.58778,-0.216391,-0.13278,9.41483,0.408378,-2.59521e-08,9.44552,0.378801,-0.257239,9.52379,0.386033,-0.048137,9.62104,-0.566386,-0.51391,9.56452,0.0370312,-0.515342,9.57445,-0.053678,-1.97281e-08,9.30618,0.487465,-0.151626,9.31552,0.460271,-0.314217,9.40151,0.486047,-0.637388,9.49272,0.0427428,-0.669475,9.53021,-0.060785,-0.630328,9.5261,-0.171552,-0.571138,9.51347,-0.30568,-0.479333,9.46972,0.312565,-0.10844,9.44769,-0.669188,-0.399588,9.42503,-0.488905,-0.243613,9.46105,-0.596024,-0.503418,9.47107,-0.406336,-0.308685,9.78981,0.245116,-0.366563,9.47599,0.330982,-0.311485,9.61346,0.286625,-0.308802,9.68818,0.272209,-0.321471,9.53352,0.312602,-0.398998,9.43395,0.393863,-0.372052,9.80903,0.150546,-0.387825,9.81753,0.115506,-0.398307,9.82576,0.0897854,-0.462669,9.49171,0.195261,-0.492548,9.49505,0.142579,-0.522208,9.50118,0.0893293,-0.400375,9.62936,0.178369,-0.424238,9.63433,0.135593,-0.447286,9.64065,0.092317,-0.386198,9.70613,0.166251,-0.405299,9.71248,0.127918,-0.419654,9.71787,0.0953723,-0.421512,9.55072,0.187313,-0.453303,9.55487,0.135073,-0.483621,9.56096,0.086071,-0.598211,9.48924,0.108607,-0.56077,9.48228,0.174045,-0.532305,9.48062,0.223316,-0.308271,9.83645,0.236686,-0.359417,9.87877,0.160233,-0.386747,9.90291,0.0865865,-0.335791,9.83171,0.197886,-0.374199,9.85733,0.114157,-0.369323,9.84994,0.158263,-3.53271,8.93966,0.0385299,-3.55728,9.14192,-0.0518263,-3.51973,8.76309,-0.0055576,-3.5172,8.78074,-0.516791,-3.52086,8.72862,-0.386739,-3.52307,8.69472,-0.231988,-3.509,9.2781,-0.621314,-3.53936,9.36413,-0.0735251,-3.51792,9.47331,-0.261818,-3.50592,9.41089,-0.540366,-3.5219,8.69284,-0.103315,-3.55315,9.18472,-0.597015,-3.52054,8.85,-0.574394,-3.49364,8.88432,-0.632916,-3.51269,9.13992,-0.683629,-3.52354,8.99726,-0.694871,-3.23579,8.68577,-0.2146,-3.23538,8.69125,-0.0765202,-3.23631,8.77053,0.0289004,-3.24047,9.43861,-0.285127,-3.21866,9.3612,-0.562044,-3.22256,9.24069,-0.637826,-3.25659,9.33905,-0.0648301,-3.26334,9.14622,0.00442942,-3.22626,8.96547,-0.698667,-3.22886,8.74969,-0.526909,-3.23263,8.71305,-0.373209,-3.2426,8.95916,0.0879961,-3.22998,9.12495,-0.698015,-3.2226,8.86217,-0.632182,-3.29302,9.17904,-0.648379,-3.26939,8.8245,-0.58246,-1.78248,9.01659,0.283178,-1.84517,9.336,0.29064,-1.73691,8.78354,0.0882704,-1.59461,8.62454,-0.549366,-1.65518,8.55291,-0.400243,-1.71381,8.58756,-0.272841,-1.57701,8.82525,-0.613852,-1.56785,9.12862,-0.650022,-1.86091,9.5127,0.0594057,-1.83571,9.5246,-0.248507,-1.69284,9.39824,-0.510833,-1.71955,8.64968,-0.0726239,-2.05894,8.57005,0.117433,-2.09829,9.47765,-0.584879,-2.10676,9.60547,-0.256922,-2.10825,9.58872,0.100713,-2.09163,9.20236,-0.763438,-2.09531,8.88584,-0.674857,-2.08566,8.48161,-0.241345,-2.09935,8.50216,-0.407392,-2.09976,8.63861,-0.572406,-2.06993,8.74388,0.268335,-2.1053,9.36029,0.35293,-2.10379,9.01036,0.412135,-2.48504,9.09681,0.391659,-2.48504,9.37692,0.32779,-2.47507,8.79479,0.219333,-2.48363,8.58477,-0.573036,-2.48504,8.43115,-0.409061,-2.48457,8.42307,-0.26147,-2.47682,8.92267,-0.689248,-2.46824,9.23494,-0.797659,-2.48505,9.56622,0.0916448,-2.47897,9.59016,-0.274964,-2.46795,9.49763,-0.620191,-2.47158,8.53764,0.0709101,-8.19318e-10,8.98407,0.871272,-6.07399e-10,8.85124,0.954692,-0.618597,9.21616,0.655142,-1.09254,9.63558,0.199241,-1.05371,9.52471,0.347742,-0.0906458,9.17252,-0.838391,-0.922976,9.55129,-0.423603,-1.18876,9.61026,-0.490904,-0.169381,9.01186,0.862073,-1.24826,9.32032,0.483796,-1.37013,9.56234,0.335526,-0.718483,9.13784,0.745622,-0.850847,8.51603,1.00426,-0.22855,8.41494,1.08291,-0.262885,8.01715,1.07267,-0.864353,8.16147,0.972893,-0.92076,7.94654,0.843309,-0.252318,7.80842,1.0226,-0.265432,7.1721,0.998005,-0.728284,7.18612,0.722623,-1.30488,8.16219,0.465497,-1.32706,8.11728,0.146963,-0.200992,8.25777,-0.888076,-0.316013,7.74242,-0.717755,-5.4328e-16,7.68038,-0.660519,-0.948509,7.24015,0.456993,-1.00503,7.25226,0.209026,-1.19241,7.89059,0.504508,-1.17143,7.84008,0.182274,-3.32622e-15,7.7911,1.03263,-8.15617e-15,7.16593,1.01818,-0.471197,9.31293,0.505497,-0.861986,9.55216,0.180823,-0.604638,9.36104,-0.621002,-0.103068,8.71073,-0.944721,-8.88178e-16,8.71168,-0.93566,-0.797872,9.30228,-0.675607,-0.88092,9.34697,0.479899,-1.10168,9.16654,0.605672,-0.69891,9.45723,0.314125,-1.1424,8.61768,0.793672,-1.27056,8.53547,0.654985,-1.04553,8.35566,0.872794,-1.1406,8.26092,0.743623,-1.00606,9.68638,-0.251181,-1.28303,9.73166,-0.22218,-1.06072,8.76975,-0.815829,-1.21818,8.9126,-0.769601,-0.852679,9.42988,-0.559455,-1.3905,9.17398,-0.724091,-0.889176,9.01608,-0.812752,-0.999182,9.21922,-0.74199,-1.05691,9.3772,-0.646555,-1.07229,9.74688,-0.0190133,-1.37129,9.74182,0.0165571,-0.507836,9.17665,-0.816529,-0.367471,9.16778,-0.821654,-0.745335,8.88067,-0.9204,-0.477007,8.78956,-0.966174,-0.606028,8.42124,-0.930858,-0.860672,8.63326,-0.914979,-0.982482,8.30248,-0.798095,-0.758455,8.00985,-0.811834,-0.714566,9.17224,-0.763963,-0.873829,7.68193,-0.49337,-1.04316,8.03528,-0.465609,-1.12593,7.81484,-0.104985,-1.01567,7.52358,-0.0865537,-1.05949,7.50266,0.19325,-0.234837,7.49952,0.965813,-0.828629,7.55758,0.713552,-1.01447,7.53504,0.477333,-0.559309,9.27079,-0.734196,-0.182087,9.08699,0.785045,-0.45559,9.06154,0.806098,-0.558247,8.45665,1.04947,-0.56777,8.06453,1.0451,-0.567862,7.85681,0.965143,-0.484936,7.18898,0.906272,-0.515032,7.53017,0.891048,-0.403789,9.14058,0.727263,-0.783121,9.29154,0.550171,-0.954559,9.14327,0.720381,-0.608269,9.39758,0.402321,-1.01094,8.59025,0.913065,-0.607378,9.07176,-0.86116,-0.398363,9.00024,-0.909699,-0.0887395,8.98237,-0.90744,-0.232527,8.21765,1.11596,-0.863969,8.33394,1.01853,-0.56358,8.26013,1.07643,-0.992909,8.44226,0.932308,-1.19979,8.24159,-0.417019,-1.21638,8.10159,-0.128938,-1.38987,8.43047,0.417023,-1.46463,8.37332,0.141409,-1.39627,8.33312,-0.119721,-1.34001,8.35168,-0.373651,-1.16026,8.48528,-0.694675,-1.3072,8.55617,-0.64236,-0.20758,8.68362,1.03038,-0.839249,8.74289,0.960703,-1.14759,8.81277,0.709865,-1.3092,8.76886,0.568811,-0.537619,8.69624,0.987843,-1.0327,8.803,0.84225,-1.5876,8.65186,0.253153,-1.43932,8.67641,0.3971,-1.54885,8.49739,-0.292294,-1.6003,8.51595,-0.0509229,-1.45176,8.58162,-0.594108,-0.815225,7.41915,-0.443015,-0.970838,7.30016,-0.0672741,-0.610025,7.70142,-0.680558,-1.69621,9.61648,-0.254011,-1.50167,9.47892,-0.560166,-1.70901,9.43589,0.377568,-1.7465,9.61705,0.0812753,-0.258205,7.91397,1.05016,-0.898415,8.06171,0.910976,-0.990808,9.44559,0.406973,-1.17979,9.21309,0.549524,-0.801039,9.51348,0.238317,-1.20544,8.58174,0.723446,-1.09552,8.31258,0.80783,-0.22636,9.15867,-0.824132,-0.257731,8.73454,-0.998635,-0.371786,8.32256,-0.94746,-0.574213,7.96376,1.01037,-0.245345,8.98247,-0.908579,-1.23275,8.79765,0.638089,-0.522385,7.41134,-0.611081,-0.798038,7.18603,-0.370506,-0.971148,7.09784,-0.0471689,-0.960401,6.98901,0.470768,-0.935818,8.45668,-0.852145,-0.698927,8.18901,-0.865266,-1.10419,8.64118,-0.749019,-1.27293,8.71021,-0.703803,-1.42062,8.82416,-0.674693,-0.504542,7.97065,-0.799103,-1.01471,8.17649,-0.656909,-0.819289,7.84342,-0.648312,-1.18726,8.35591,-0.575959,-1.32451,8.43518,-0.509965,-1.53579,8.46618,-0.421397,-0.705493,7.55552,-0.563379,-0.65491,7.28619,-0.530877,-0.177838,8.88435,0.967381,-0.82788,8.95955,0.880941,-1.13439,9.01736,0.651603,-1.28256,8.98719,0.516388,-0.513964,8.89403,0.915619,-1.00399,9.00809,0.781245,-1.64145,8.96327,0.368933,-1.41351,8.95905,0.375316,-1.21024,9.00673,0.584812,-1.81993,8.95177,0.360869,-1.85467,9.32555,0.3659,-1.82011,8.64204,0.202237,-1.61943,8.58434,-0.575143,-1.66481,8.48348,-0.409546,-1.79511,8.48038,-0.261805,-1.60846,8.82187,-0.652062,-1.608,9.16564,-0.705058,-1.86654,9.58748,0.10279,-1.8593,9.60172,-0.251078,-1.77095,9.45245,-0.535592,-1.82121,8.54297,-0.0260319,-0.970252,8.90029,-0.813846,-1.11807,9.05514,-0.758393,-1.22002,9.28452,-0.692597,-0.802856,8.75936,-0.919906,-0.536914,8.60508,-0.952896,-0.145288,8.48292,-0.92326,-1.49932,8.66958,0.319192,-1.43378,9.6893,-0.250121,-1.33299,9.55011,-0.529988,-1.56116,9.69332,0.0300362,-1.54408,9.52013,0.3618,-1.43457,8.39928,0.280311,-1.32032,8.12928,0.306118,-1.18604,7.86996,0.340799,-1.0362,7.51748,0.331735,-0.974182,7.24445,0.330853,-0.310687,8.52797,-0.978733,-1.51523,8.95676,0.372896,-0.851851,9.67307,-0.0437346,-0.866859,9.58929,0.110889,-0.733266,9.53676,-0.348153,-0.799932,9.61766,-0.208885,-8.76554e-09,9.30618,0.487465,-0.151626,9.31552,0.460271,-0.314217,9.40151,0.486047,-0.637388,9.50151,0.0427428,-0.669475,9.54345,-0.060785,-0.630328,9.53867,-0.171552,-0.571138,9.52347,-0.30568,-0.479333,9.47108,0.312565,-0.139753,9.2423,0.609396,-0.329472,9.26354,0.562307,-0.10844,9.44769,-0.669188,-0.399588,9.42619,-0.488905,-0.243613,9.46107,-0.596024,-0.503418,9.47536,-0.406336,-0.664017,9.45742,-0.481642,-0.246828,9.32886,-0.71279,-0.374307,9.33519,-0.673419,-0.0977115,9.33731,-0.735932,-0.398998,9.43408,0.393863,-0.598211,9.49595,0.108607,-0.56077,9.48735,0.174045,-0.532305,9.48402,0.223316,-1.71937,8.96306,0.369122,-1.78471,9.37463,0.371941,-1.70738,8.65331,0.216071,-1.53408,8.58232,-0.5865,-1.59986,8.47613,-0.41578,-1.67366,8.49145,-0.2774,-1.5126,8.82016,-0.665839,-1.49742,9.16811,-0.715766,-1.80433,9.60384,0.0928304,-1.78273,9.60801,-0.251324,-1.63496,9.46452,-0.547151,-1.71726,8.52479,-0.0302415,-0.367577,6.70699,-0.785996,-1.13219,6.71618,0.192697,-0.732011,6.61523,0.781144,-0.487225,6.64342,1.00061,-0.271903,6.63544,1.12986,-1.02254,7.05858,0.160365,-0.506697,6.91513,0.913512,-0.731084,6.90726,0.706487,-0.303206,6.89754,1.02826,-0.8025,7.02448,-0.307462,-1.03283,6.91368,0.172281,-0.977618,6.97039,-0.0397057,-0.496861,6.74064,0.928604,-0.708718,6.73924,0.714857,-0.277676,6.72203,1.07149,-0.952463,6.82124,0.482546,-0.466521,7.19184,-0.500415,-0.294004,7.29163,-0.538483,-0.224773,6.71501,-0.756213,-0.227926,6.66473,-0.708539,-0.272078,6.60231,1.11593,-0.486071,6.60906,0.982563,-0.715166,6.6132,0.7565,-0.929331,6.62044,0.572599,-1.02334,6.68109,-0.0259075,-1.0766,6.67381,0.19997,-0.346767,6.66372,-0.745008,-0.845289,6.68373,-0.315271,-0.647233,7.08678,-0.469545,-0.655507,6.69252,-0.525745,-0.999533,7.02082,0.348442,-1.00217,6.85347,0.362794,-1.02232,6.64105,0.434575,-0.681695,6.22055,-0.855183,-0.926205,6.21985,-0.638132,-1.16124,6.21119,0.050662,-1.09325,6.22234,-0.229896,-0.726963,6.12999,0.87296,-0.461095,6.13849,1.08957,-0.255237,6.13625,1.21081,-0.178541,5.73657,-1.08288,-1.17804,5.67567,0.610916,-1.26503,5.73984,-0.232151,-1.30224,5.73446,0.0217269,-0.397678,5.72853,-1.13379,-1.06841,5.7395,-0.658196,-0.765679,5.71977,-1.01185,-1.24897,5.697,0.36991,-1.36071,5.11135,0.313643,-0.853828,5.11714,-1.02233,-1.08837,5.09765,-0.704467,-0.446578,5.11554,-1.23537,-1.35993,5.09839,0.0273816,-1.28329,5.06251,0.492917,-0.233533,5.11976,-1.14972,-1.32009,5.42961,0.349206,-1.35631,5.42242,0.01696,-1.23934,5.40271,0.572962,-1.08942,5.41713,-0.688869,-0.81134,5.41502,-1.03399,-0.421292,5.41853,-1.20187,-1.28358,5.41015,-0.258139,-0.205234,5.42479,-1.1329,-0.162589,6.21369,-0.936682,-0.36018,6.21461,-0.94897,-1.01361,6.15668,0.624701,-1.08977,6.18053,0.406884,-0.98177,6.68191,0.580725,-1.07766,6.7143,-0.048989,-0.891727,6.72057,-0.350138,-0.690351,6.7125,-0.562442,-1.07573,6.68357,0.448924,-1.05112,6.81126,0.182972,-0.49182,6.69191,0.952462,-0.711387,6.68813,0.73197,-0.274207,6.67838,1.08612,-0.409713,6.94256,-0.613091,-0.262455,6.99614,-0.616323,-1.01111,6.76316,0.39053,-0.648124,6.89749,-0.49172,-0.9437,6.74439,0.510492,-0.821604,6.87168,-0.309366,-1.07129,6.74567,0.187075,-0.474779,6.66035,0.942653,-0.706244,6.63555,0.753988,-0.267113,6.65146,1.07499,-0.381204,6.8112,-0.676563,-0.243553,6.84275,-0.661705,-1.02779,6.70325,0.40882,-0.65309,6.79298,-0.508038,-0.949824,6.6936,0.530815,-1.0162,6.76215,-0.0324279,-0.836952,6.78329,-0.315113,-0.161363,6.19845,-0.986543,-1.14582,6.20722,-0.244097,-1.06136,6.13777,0.641876,-0.367274,6.19986,-1.00107,-1.14034,6.16307,0.42092,-1.21282,6.19646,0.0476117,-0.709273,6.2048,-0.899131,-0.971039,6.20484,-0.662127,-1.26709,5.0859,-0.286424,-0.997849,6.84066,-0.0323348,-1.00627e-14,6.59227,1.20877,9.01124e-15,6.21157,-0.93585,-2.23373,9.37149,0.338598,-2.35941,9.37771,0.333127,-2.23385,9.58161,0.0976901,-2.35945,9.57305,0.0946675,-2.22117,9.48501,-0.598431,-2.34441,9.49061,-0.610113,-2.23083,9.59821,-0.262936,-2.3549,9.59278,-0.26895,-2.1968,8.54409,0.0998606,-2.33419,8.534,0.0853853,-2.21594,9.21303,-0.781189,-2.34152,9.22654,-0.792372,-2.23149,9.04053,0.403325,-2.35826,9.07305,0.397492,-2.22792,8.46541,-0.407949,-2.35648,8.45283,-0.408505,-2.21863,8.44783,-0.248053,-2.3516,8.44189,-0.254762,-2.22643,8.62966,-0.579279,-2.3548,8.61096,-0.577336,-2.22124,8.90964,-0.686083,-2.34844,8.92102,-0.690678,-2.20598,8.75423,0.245373,-2.34058,8.76794,0.231984,-2.60457,9.58733,-0.268709,-2.60873,8.42076,-0.261646,-2.60049,8.92105,-0.693973,-2.60905,9.56578,0.0916437,-2.59586,9.49384,-0.600038,-2.60008,8.54649,0.0658484,-2.59402,9.23511,-0.789906,-2.60802,8.57212,-0.571043,-2.60905,8.42806,-0.409061,-2.6024,8.80305,0.215583,-2.60905,9.37914,0.32779,-2.60905,9.10036,0.391659,-1.98882,8.48392,-0.248227,-1.89196,8.46702,-0.255008,-1.9418,8.60853,-0.568608,-1.78196,8.58228,-0.569603,-1.98934,9.46772,-0.568116,-1.88039,9.45964,-0.551353,-2.02427,9.60286,-0.254974,-1.94179,9.60144,-0.253026,-1.97919,8.54627,0.0714825,-1.89885,8.54097,0.030426,-1.93552,9.19093,-0.729577,-1.77283,9.17751,-0.714814,-2.02884,9.58476,0.097689,-1.94843,9.58378,0.0978452,-1.9546,8.46815,-0.407949,-1.80985,8.45321,-0.408505,-2.0216,9.34156,0.357759,-1.93779,9.3305,0.362946,-2.00977,8.98858,0.39247,-1.9146,8.96545,0.377458,-1.93787,8.86512,-0.653567,-1.77368,8.84649,-0.651601,-1.9879,8.70721,0.231965,-1.90453,8.66796,0.209837,2.05894,8.57005,0.117433,2.09829,9.47765,-0.584879,2.10676,9.60547,-0.256922,2.10825,9.58872,0.100713,2.09163,9.20236,-0.763438,2.09531,8.88584,-0.674857,2.08566,8.48161,-0.241345,2.09935,8.50216,-0.407392,2.09976,8.63861,-0.572406,2.06993,8.74388,0.268335,2.1053,9.36029,0.35293,2.10379,9.01036,0.412135,2.48504,9.09681,0.391659,2.48504,9.37692,0.32779,2.47507,8.79479,0.219333,2.48363,8.58477,-0.573036,2.48504,8.43115,-0.409061,2.48457,8.42307,-0.26147,2.47682,8.92267,-0.689248,2.46824,9.23494,-0.797659,2.48505,9.56622,0.0916448,2.47897,9.59016,-0.274964,2.46795,9.49763,-0.620191,2.47158,8.53765,0.07091,-1.20097e-09,9.17002,-0.871893,-8.88178e-16,8.25647,-0.865325,-7.41921e-10,8.0029,1.07248,-8.38191e-10,8.98812,-0.942948,-1.37447e-09,9.05867,0.802701,-8.88178e-16,8.48441,-0.907443,-3.68277e-09,9.23205,0.622448,-6.76077e-10,9.47258,-0.688676,-1.04838e-09,9.35025,-0.752065,0.618597,9.21616,0.655142,1.09254,9.63558,0.199241,1.05371,9.52471,0.347742,0.0906458,9.17252,-0.838391,0.922976,9.55129,-0.423603,1.18876,9.61026,-0.490904,0.169381,9.01186,0.862073,1.24826,9.32032,0.483796,1.37013,9.56234,0.335526,0.718483,9.13784,0.745622,0.850847,8.51603,1.00426,0.22855,8.41494,1.08291,-6.35154e-10,8.40235,1.05394,0.262885,8.01715,1.07267,0.864353,8.16147,0.972893,0.92076,7.94654,0.843309,0.252318,7.80842,1.0226,0.265432,7.1721,0.998005,0.728284,7.18612,0.722623,1.30488,8.16219,0.465497,1.32706,8.11728,0.146963,0.200992,8.25777,-0.888076,0.316013,7.74242,-0.717755,0.948509,7.24015,0.456993,1.00503,7.25226,0.209026,1.19241,7.89059,0.504508,1.17143,7.84008,0.182274,0.471197,9.31293,0.505497,0.861986,9.55216,0.180824,0.604638,9.36104,-0.621001,0.103068,8.71073,-0.944721,0.797872,9.30228,-0.675607,0.88092,9.34697,0.479899,1.10168,9.16654,0.605672,0.69891,9.45723,0.314126,1.1424,8.61768,0.793672,1.27056,8.53547,0.654985,1.04553,8.35566,0.872794,1.1406,8.26092,0.743623,1.00606,9.68638,-0.251181,1.28303,9.73166,-0.22218,1.06072,8.76975,-0.815829,1.21818,8.9126,-0.769601,0.852679,9.42988,-0.559455,1.3905,9.17398,-0.724091,0.889176,9.01608,-0.812752,0.999182,9.21922,-0.74199,1.05691,9.3772,-0.646555,1.07229,9.74688,-0.0190131,1.37129,9.74182,0.0165573,0.507836,9.17665,-0.816529,0.367471,9.16778,-0.821654,0.745335,8.88067,-0.9204,0.477007,8.78956,-0.966174,0.606028,8.42124,-0.930858,0.860672,8.63326,-0.914979,0.982482,8.30248,-0.798095,0.758455,8.00985,-0.811834,0.714566,9.17224,-0.763963,0.873829,7.68193,-0.49337,1.04316,8.03528,-0.465609,1.12593,7.81484,-0.104985,1.01567,7.52358,-0.0865537,1.05949,7.50266,0.19325,0.234837,7.49952,0.965813,0.828629,7.55758,0.713552,1.01447,7.53504,0.477333,-4.18777e-15,7.49655,0.975803,0.559309,9.27079,-0.734196,0.182087,9.08699,0.785045,0.45559,9.06154,0.806098,0.558247,8.45665,1.04947,0.56777,8.06453,1.0451,0.567862,7.85681,0.965143,0.484936,7.18898,0.906272,0.515032,7.53017,0.891048,0.403789,9.14058,0.727263,0.783121,9.29154,0.550171,0.954559,9.14327,0.720381,0.608269,9.39758,0.402321,1.01094,8.59025,0.913065,0.607378,9.07176,-0.86116,0.398363,9.00024,-0.909699,0.0887395,8.98237,-0.90744,0.232527,8.21765,1.11596,0.863969,8.33394,1.01853,-4.45956e-10,8.2074,1.09795,0.56358,8.26013,1.07643,0.992909,8.44226,0.932308,1.19979,8.24159,-0.417019,1.21638,8.10159,-0.128938,1.38987,8.43047,0.417023,1.46463,8.37332,0.141409,1.39627,8.33312,-0.119721,1.34001,8.35168,-0.373651,1.16026,8.48528,-0.694675,1.3072,8.55617,-0.64236,0.20758,8.68362,1.03038,0.839249,8.74289,0.960703,-4.42818e-10,8.67329,0.996979,1.14759,8.81277,0.709865,1.3092,8.76886,0.568811,0.537619,8.69624,0.987843,1.0327,8.803,0.84225,1.5876,8.65186,0.253153,1.43932,8.67641,0.3971,1.54885,8.49739,-0.292294,1.6003,8.51595,-0.0509229,1.45176,8.58162,-0.594108,0.815225,7.41915,-0.443015,0.970838,7.30016,-0.0672741,0.610025,7.70142,-0.680558,1.69621,9.61649,-0.254011,1.50167,9.47893,-0.560166,1.70901,9.43589,0.377568,1.7465,9.61705,0.0812753,0.258205,7.91397,1.05016,0.898415,8.06171,0.910976,-6.88693e-10,7.89839,1.05546,0.990808,9.44559,0.406973,1.17979,9.21309,0.549524,0.801039,9.51348,0.238317,1.20544,8.58174,0.723446,1.09552,8.31258,0.80783,0.22636,9.15867,-0.824132,0.257731,8.73454,-0.998635,0.371786,8.32256,-0.94746,0.574213,7.96376,1.01037,0.245345,8.98247,-0.908579,1.23275,8.79765,0.638089,0.522385,7.41134,-0.611081,0.798038,7.18603,-0.370506,0.971148,7.09784,-0.0471689,0.960401,6.98901,0.470768,0.935818,8.45668,-0.852145,0.698927,8.18901,-0.865266,1.10419,8.64118,-0.749018,1.27293,8.71021,-0.703803,1.42062,8.82416,-0.674693,0.504542,7.97065,-0.799103,1.01471,8.17649,-0.656909,0.819289,7.84342,-0.648312,1.18726,8.35591,-0.575959,1.32451,8.43518,-0.509965,1.53579,8.46618,-0.421397,0.705493,7.55552,-0.563379,0.65491,7.28619,-0.530877,0.177838,8.88435,0.967381,0.82788,8.95955,0.880941,1.13439,9.01736,0.651603,1.28256,8.98719,0.516389,0.513964,8.89403,0.915619,1.00399,9.00809,0.781245,1.64145,8.96327,0.368933,1.41351,8.95905,0.375316,1.21024,9.00673,0.584812,1.81993,8.95177,0.360869,1.85467,9.32555,0.3659,1.82011,8.64204,0.202237,1.61943,8.58434,-0.575143,1.66481,8.48348,-0.409546,1.79511,8.48038,-0.261805,1.60846,8.82187,-0.652062,1.608,9.16564,-0.705058,1.86654,9.58749,0.10279,1.8593,9.60172,-0.251078,1.77095,9.45245,-0.535592,1.82121,8.54297,-0.0260319,0.970252,8.90029,-0.813846,1.11807,9.05514,-0.758393,1.22002,9.28452,-0.692597,0.802856,8.75936,-0.919906,0.536914,8.60508,-0.952896,0.145288,8.48292,-0.92326,1.49932,8.66958,0.319192,1.43378,9.6893,-0.25012,1.33299,9.55011,-0.529988,1.56116,9.69332,0.0300363,1.54408,9.52013,0.3618,1.43457,8.39928,0.280311,1.32032,8.12928,0.306118,1.18604,7.86996,0.340799,1.0362,7.51748,0.331735,0.974182,7.24445,0.330853,0.310687,8.52797,-0.978733,1.51523,8.95676,0.372896,0.851851,9.67307,-0.0437344,0.866859,9.58929,0.110889,0.733266,9.53676,-0.348152,0.799932,9.61766,-0.208885,0.151626,9.31552,0.460271,0.314217,9.4015,0.486048,0.637388,9.50151,0.042743,0.669475,9.54344,-0.0607849,0.630327,9.53866,-0.171552,0.571138,9.52347,-0.30568,0.479333,9.47108,0.312565,0.139752,9.2423,0.609396,0.329472,9.26354,0.562307,0.10844,9.44769,-0.669188,0.399588,9.42619,-0.488904,0.243613,9.46107,-0.596024,0.503418,9.47536,-0.406336,0.664017,9.45742,-0.481642,0.246828,9.32886,-0.71279,0.374307,9.33519,-0.673419,0.0977115,9.33731,-0.735932,0.398998,9.43408,0.393864,0.598211,9.49595,0.108608,0.56077,9.48735,0.174045,0.532305,9.48402,0.223316,1.71937,8.96306,0.369122,1.78471,9.37463,0.371941,1.70738,8.65331,0.216071,1.53408,8.58232,-0.5865,1.59986,8.47613,-0.41578,1.67366,8.49146,-0.2774,1.5126,8.82016,-0.665839,1.49742,9.16811,-0.715766,1.80434,9.60384,0.0928304,1.78273,9.60801,-0.251324,1.63496,9.46452,-0.547151,1.71726,8.5248,-0.0302415,0.367577,6.70699,-0.785996,1.13219,6.71618,0.192697,0.732011,6.61523,0.781144,0.487225,6.64342,1.00061,0.271903,6.63544,1.12986,1.02254,7.05858,0.160365,0.506697,6.91513,0.913512,0.731084,6.90726,0.706487,0.303206,6.89754,1.02826,0.8025,7.02448,-0.307462,1.03283,6.91368,0.172281,0.977618,6.97039,-0.0397057,0.496861,6.74064,0.928604,0.708718,6.73924,0.714857,0.277676,6.72203,1.07149,0.952463,6.82124,0.482546,0.466521,7.19184,-0.500415,0.294004,7.29163,-0.538483,0.224773,6.71501,-0.756213,6.74064e-15,6.66814,-0.683338,0.227926,6.66473,-0.708539,0.272078,6.60231,1.11593,0.486071,6.60906,0.982563,0.715166,6.6132,0.7565,0.929331,6.62044,0.572599,1.02334,6.68109,-0.0259075,1.0766,6.67381,0.19997,0.346767,6.66372,-0.745008,0.845289,6.68373,-0.315271,0.647233,7.08678,-0.469545,0.655507,6.69252,-0.525745,0.999533,7.02082,0.348442,1.00217,6.85347,0.362794,1.02232,6.64105,0.434575,0.681695,6.22055,-0.855183,0.926205,6.21985,-0.638132,1.16124,6.21119,0.050662,1.09325,6.22234,-0.229896,0.726963,6.12999,0.87296,0.461095,6.13849,1.08957,0.255237,6.13625,1.21081,-7.71965e-15,6.13355,1.25585,0.178541,5.73657,-1.08288,1.17804,5.67567,0.610916,1.26503,5.73984,-0.232151,1.30224,5.73446,0.0217269,0.397678,5.72853,-1.13379,1.06841,5.7395,-0.658196,0.765679,5.71977,-1.01185,1.24897,5.697,0.36991,1.36071,5.11135,0.313643,0.853828,5.11714,-1.02233,1.08837,5.09765,-0.704467,0.446578,5.11554,-1.23537,1.35993,5.09839,0.0273816,1.28329,5.06251,0.492917,0.233533,5.11976,-1.14972,1.32009,5.42961,0.349206,1.35631,5.42242,0.01696,1.23934,5.40271,0.572962,1.08942,5.41713,-0.688869,0.81134,5.41502,-1.03399,0.421292,5.41853,-1.20187,1.28358,5.41015,-0.258139,0.205234,5.42479,-1.1329,4.11304e-15,5.42448,-1.07731,0.162589,6.21369,-0.936682,0.36018,6.21461,-0.94897,1.01361,6.15668,0.624701,1.08977,6.18053,0.406884,6.9796e-15,6.71463,-0.733891,0.98177,6.68191,0.580725,1.07766,6.7143,-0.048989,0.891727,6.72057,-0.350138,0.690351,6.7125,-0.562442,1.07573,6.68357,0.448924,1.05112,6.81126,0.182972,0.49182,6.69191,0.952462,0.711387,6.68813,0.73197,0.274207,6.67838,1.08612,0.409713,6.94256,-0.613091,0.262455,6.99614,-0.616323,1.01111,6.76316,0.39053,0.648124,6.89749,-0.49172,0.9437,6.74439,0.510492,0.821604,6.87168,-0.309366,1.07129,6.74567,0.187075,0.474779,6.66035,0.942653,0.706244,6.63555,0.753988,0.267113,6.65146,1.07499,0.381204,6.8112,-0.676563,0.243553,6.84275,-0.661705,1.02779,6.70325,0.40882,0.65309,6.79298,-0.508038,0.949824,6.6936,0.530815,1.0162,6.76215,-0.0324279,0.836952,6.78329,-0.315113,0.161363,6.19845,-0.986543,1.14582,6.20722,-0.244097,1.06136,6.13777,0.641876,0.367274,6.19986,-1.00107,1.14034,6.16307,0.42092,1.21282,6.19646,0.0476117,0.709273,6.2048,-0.899131,0.971039,6.20484,-0.662127,1.26709,5.0859,-0.286424,0.997849,6.84066,-0.0323348,-9.36183e-15,6.62819,1.20255,-9.35666e-15,6.89382,1.09201,-8.92507e-15,6.71781,1.14328,1.10043e-16,7.27995,-0.576382,6.33792e-15,5.72635,-1.04813,4.74728e-15,5.12952,-1.07245,-8.88199e-15,6.673,1.15264,3.88569e-15,6.99212,-0.623633,-9.13107e-15,6.64662,1.13908,4.22107e-15,6.84201,-0.653509,1.00257e-14,6.19514,-0.985807,2.23373,9.37149,0.338598,2.35941,9.37771,0.333127,2.23385,9.58161,0.0976901,2.35945,9.57305,0.0946674,2.22117,9.48501,-0.598431,2.34441,9.49061,-0.610113,2.23083,9.59821,-0.262936,2.3549,9.59278,-0.26895,2.1968,8.5441,0.0998605,2.33419,8.534,0.0853853,2.21594,9.21303,-0.781189,2.34152,9.22654,-0.792372,2.23149,9.04053,0.403325,2.35826,9.07306,0.397492,2.22792,8.46541,-0.407949,2.35648,8.45284,-0.408505,2.21863,8.44783,-0.248053,2.3516,8.44189,-0.254762,2.22643,8.62966,-0.579279,2.3548,8.61096,-0.577336,2.22124,8.90964,-0.686083,2.34844,8.92102,-0.690678,2.20598,8.75423,0.245373,2.34058,8.76794,0.231984,2.60457,9.58733,-0.268709,2.60873,8.42076,-0.261646,2.60049,8.92105,-0.693973,2.60905,9.56578,0.0916436,2.59586,9.49384,-0.600038,2.60008,8.54649,0.0658483,2.59402,9.23511,-0.789906,2.60802,8.57212,-0.571043,2.60905,8.42806,-0.409061,2.6024,8.80305,0.215583,2.60905,9.37915,0.327789,2.60905,9.10036,0.391659,1.98882,8.48392,-0.248227,1.89196,8.46702,-0.255008,1.9418,8.60853,-0.568608,1.78196,8.58228,-0.569603,1.98934,9.46773,-0.568116,1.88039,9.45964,-0.551353,2.02427,9.60286,-0.254974,1.94179,9.60144,-0.253026,1.97919,8.54627,0.0714825,1.89885,8.54097,0.030426,1.93552,9.19093,-0.729577,1.77283,9.17751,-0.714814,2.02884,9.58476,0.0976889,1.94843,9.58378,0.0978452,1.9546,8.46815,-0.407949,1.80985,8.45321,-0.408505,2.0216,9.34156,0.357759,1.93779,9.3305,0.362946,2.00977,8.98858,0.39247,1.9146,8.96545,0.377458,1.93787,8.86512,-0.653567,1.77368,8.84649,-0.651601,1.9879,8.70721,0.231965,1.90453,8.66796,0.209837,-0.931365,6.60925,0.573856,-0.656139,6.68113,-0.533694,-0.485468,6.59771,0.985639,-0.271671,6.59106,1.11723,-1.02395,6.62993,0.433906,-0.347091,6.65289,-0.74993,-1.07865,6.66265,0.196367,-1.02503,6.67002,-0.0308296,-0.715451,6.60154,0.759311,-0.847241,6.67254,-0.323061,-0.226349,6.65385,-0.714044,0.931365,6.60925,0.573856,0.656139,6.68113,-0.533694,0.485468,6.59771,0.985639,0.271671,6.59106,1.11723,1.02395,6.62993,0.433906,0.347091,6.65289,-0.74993,1.07865,6.66265,0.196367,1.02503,6.67002,-0.0308296,0.715451,6.60154,0.759311,0.847241,6.67254,-0.323061,0.226349,6.65385,-0.714044,5.86747e-15,6.65712,-0.689431,-7.17864e-15,6.5812,1.20915,-1.01152,6.16816,0.623411,-0.681047,6.23223,-0.847026,-0.461713,6.15015,1.08677,-0.255654,6.14779,1.20851,-1.0881,6.19193,0.40757,-0.359848,6.22573,-0.94392,-1.15915,6.22265,0.0543588,-1.09152,6.2337,-0.224846,-0.726671,6.14196,0.870076,-0.924201,6.23134,-0.630138,-0.164207,6.22486,-0.931033,1.01152,6.16816,0.623411,0.681047,6.23223,-0.847026,0.461713,6.15015,1.08677,0.255654,6.14779,1.20851,1.0881,6.19193,0.40757,0.359848,6.22573,-0.94392,1.15915,6.22265,0.0543588,1.09152,6.2337,-0.224846,0.726671,6.14196,0.870076,0.924201,6.23134,-0.630138,0.164207,6.22486,-0.931033,9.22271e-15,6.22287,-0.929598,-7.43932e-15,6.14491,1.25392,-0.00079876,9.20369,-0.952232,0.110415,9.20476,-0.941415,0.170982,8.34011,-1.11114,0.680396,9.46887,-0.766509,0.123656,8.73339,-1.08355,0.821324,9.32095,-0.86592,0.927493,8.64377,-0.997871,1.05366,8.78855,-0.946924,0.893843,9.47686,-0.746422,1.19251,8.96017,-0.890161,0.804801,8.9928,-0.972846,0.933813,9.14568,-0.931299,1.03434,9.3284,-0.856747,0.499207,9.19367,-0.92603,0.384956,9.20593,-0.9375,0.629831,8.86297,-1.02243,0.450522,8.78759,-1.05682,0.586384,8.4291,-1.07028,0.784301,8.51491,-1.05216,0.699268,9.17322,-0.927875,0.582527,9.31737,-0.865289,0.566969,9.05805,-0.990182,0.396552,9.00199,-1.00243,0.109946,8.9849,-1.02042,0.245002,9.20505,-0.933132,0.27482,8.7497,-1.06596,0.36915,8.37405,-1.08551,0.240044,8.9849,-1.00861,0.871547,8.828,-0.996039,0.997043,8.95811,-0.951943,1.14048,9.12084,-0.887402,0.70099,8.6835,-1.04348,0.525557,8.58812,-1.07396,0.149755,8.50507,-1.11453,0.328565,8.54726,-1.08896,0.605694,9.63223,-0.466861,0.294361,9.53559,-0.685965,0.457827,9.56855,-0.602733,0.12819,9.53043,-0.722264,0.137541,9.49879,-0.755275,0.513855,9.55303,-0.647673,0.334338,9.51679,-0.710329,0.642864,9.6118,-0.580928,0.743575,9.57224,-0.651023,0.290947,9.40695,-0.806906,0.455937,9.39862,-0.807285,0.131849,9.39301,-0.831094,0.127483,9.54955,-0.728612,0.291584,9.55247,-0.691916,0.6015,9.6469,-0.472186,0.45473,9.58416,-0.607544,1.25033,4.96474,1.02898,0.877237,4.62352,1.3875,0.891178,4.6347,1.37495,1.2456,4.9399,1.04456,1.12633,5.66778,1.0149,0.75172,5.46538,1.46281,0.736256,5.4606,1.47931,1.24077,4.9552,1.04209,0.888548,4.65291,1.37226,1.2454,4.97991,1.02652,0.87469,4.64184,1.3848,0.827886,6.60746,0.875119,0.506001,6.60736,1.16291,0.491997,6.60361,1.17681,0.817116,6.59997,0.896015,1.05947,6.62574,0.564463,0.825834,6.60367,0.880266,1.04986,6.62059,0.582814,1.2783,4.90092,1.12836,1.56943,5.20454,0.67757,1.28856,4.91162,1.11247,1.55763,5.19223,0.695855,1.17182,5.64865,1.15767,1.50002,5.86362,0.682478,1.18442,5.65406,1.14147,1.48897,5.85018,0.702933,1.56427,5.1777,0.698759,1.29337,4.89406,1.11628,1.28304,4.88325,1.13219,1.57616,5.19015,0.680435,1.68882,5.46584,0.181691,1.63895,5.21169,0.744793,1.6395,5.22077,0.724939,1.67102,5.45718,0.204351,1.55801,5.87868,0.736724,1.5398,6.04746,0.168506,1.55219,5.87345,0.755003,1.66184,5.47054,0.203425,1.63113,5.23712,0.722077,1.67961,5.47907,0.180849,1.63061,5.22815,0.741858,1.07221,6.62836,0.564614,1.15849,6.68783,0.10321,1.06936,6.62285,0.580096,1.17685,6.69609,0.0816336,0.951408,6.67944,-0.324539,1.16828,6.70077,0.0739547,0.960667,6.68182,-0.308288,1.74615,5.5146,0.190843,1.47843,5.59385,-0.308831,1.73672,5.51739,0.173237,1.48929,5.59064,-0.288563,1.6003,6.06615,0.170243,1.35431,6.06153,-0.315273,1.59291,6.06423,0.153119,1.36708,6.05788,-0.295615,1.49723,5.57783,-0.288321,1.74503,5.50255,0.176167,1.75448,5.49968,0.193876,1.48635,5.58113,-0.308707,0.819472,6.28741,0.932342,0.501447,6.15795,1.25212,0.826,6.30916,0.916876,0.488884,6.15533,1.26409,1.11805,5.68681,1.01028,0.745716,5.48644,1.45784,0.730356,5.4817,1.47434,0.937882,6.11333,0.922594,1.1781,6.28319,0.507031,0.947031,6.11749,0.908223,1.16985,6.27234,0.524478,1.1634,5.67108,1.15104,1.4892,5.88327,0.676562,1.1759,5.67644,1.13485,1.47819,5.87006,0.696959,1.24736,6.33482,0.0944334,1.22942,6.22334,0.550693,1.25882,6.34231,0.07431,1.22831,6.22066,0.567996,1.51542,6.04529,0.184462,1.55094,5.89146,0.734093,1.53165,6.05848,0.166709,1.54517,5.88626,0.752343,1.28375,6.3669,0.0582388,1.04292,6.3498,-0.348212,1.27612,6.36469,0.044025,1.05455,6.34699,-0.33149,1.58265,6.09013,0.167558,1.33665,6.0831,-0.314151,1.57522,6.08818,0.150568,1.34932,6.07969,-0.294646,0.868343,6.3446,0.863753,0.503776,6.20361,1.25413,0.489193,6.19821,1.26862,1.11758,5.66097,1.03834,0.815896,6.60246,0.890225,1.10739,5.67964,1.03214,0.853386,6.33849,0.879719,0.910362,6.13553,1.02353,1.19444,6.2545,0.620513,0.920967,6.14006,1.00756,1.18412,6.24533,0.639886,1.52347,6.03414,0.186272,1.14809,6.68129,0.120245,1.28308,6.22276,0.648709,1.31658,6.336,0.134315,1.27877,6.2174,0.665575,1.30326,6.32613,0.151709,1.36006,6.39311,0.134204,1.114,6.35514,-0.300004,1.35183,6.39447,0.122144,1.12546,6.35462,-0.282431,0.499423,6.20379,1.35803,0.268936,5.35218,1.3434,0.0646213,4.90934,1.17005,0.120561,5.02152,1.11971,0.218392,6.19625,1.46693,0.509744,5.80987,1.4208,0.198819,5.80294,1.52383,0.147569,5.38177,1.49517,0.0444574,4.58788,-0.0197704,0.0722725,4.4032,-0.00955448,0.293725,4.62057,-0.398998,0.302145,4.43853,-0.392149,0.606163,4.88381,0.929928,0.635438,4.72223,0.872027,0.199632,4.71973,0.76073,0.223388,4.54895,0.720406,0.0543837,4.62354,0.380688,0.0846645,4.46278,0.37462,0.204422,4.07157,0.074744,0.164837,4.24889,0.0489647,0.188476,4.09036,0.361041,0.160319,4.26425,0.364965,0.308082,4.04819,-0.232104,0.277003,4.22296,-0.293455,0.462387,4.13957,0.806038,0.440977,4.3103,0.804237,0.291547,4.11259,0.652618,0.270885,4.27826,0.667174,0.399681,4.82931,0.899179,0.429243,4.65907,0.872248,0.680171,4.18541,0.77273,0.661525,4.33198,0.796903,0.3487,4.62409,-0.434135,0.357184,4.44208,-0.427301,0.373046,4.04185,-0.283085,0.341966,4.21662,-0.344436,0.582336,1.90616,-0.44386,0.590163,1.72859,-0.40078,0.495096,2.60839,-0.433261,0.473149,2.74853,-0.412047,0.578025,2.63147,0.586306,0.592278,2.79903,0.622303,0.449951,2.64686,0.513139,0.483379,2.46384,0.520976,0.624026,2.79959,0.618494,0.645615,2.61212,0.625388,0.522034,1.91882,-0.385586,0.519019,1.74218,-0.330723,0.352407,2.38746,0.273148,0.397992,2.19527,0.285345,0.335365,2.11818,-0.0375792,0.365057,1.92326,-0.00555976,0.312757,2.58601,0.138641,0.288356,2.72218,0.144872,0.431228,2.61782,0.454169,0.407343,2.74112,0.50524,0.456637,2.60399,-0.394551,0.434497,2.74265,-0.37321,0.350283,2.5908,-0.150365,0.323977,2.72632,-0.13475,0.366183,1.8064,-0.112716,0.435951,1.66305,-0.18443,0.453147,1.89489,-0.308375,0.501964,1.73145,-0.360659,0.541821,1.70995,0.47196,0.543616,1.56686,0.436717,0.376836,1.69303,0.213406,0.384128,1.56759,0.096269,0.715472,1.73794,0.614496,0.698905,1.56777,0.579624,0.490905,1.94014,-0.384198,0.547458,1.78292,-0.446229,0.429385,4.85199,1.03074,0.725963,5.04707,1.08353,1.0785,5.37978,0.933946,1.36058,5.54079,0.583187,1.02869,3.98086,0.657097,1.39224,4.00945,0.250249,0.50332,3.88588,0.852239,0.744606,3.92793,0.825235,1.05315,4.60377,0.747587,1.31093,4.68073,0.435861,0.466874,4.3484,0.876012,0.738292,4.44843,0.87528,1.30829,5.80494,0.583008,1.08368,5.63191,0.937578,0.725161,5.23373,1.13612,0.413324,4.99181,1.07694,1.25428,5.46743,0.759061,1.16755,4.00075,0.454234,1.21081,4.64246,0.597919,1.20544,5.72585,0.761699,1.32132,3.92324,-0.0452496,1.42302,5.19948,-0.100099,0.190716,3.90931,-0.127151,0.138593,4.82539,-0.335386,1.16511,3.98957,-0.292657,0.846592,4.946,-0.589549,0.6091,4.88499,-0.596224,0.324149,4.83646,-0.524914,1.22295,5.0603,-0.361775,0.797646,4.00471,-0.45982,0.344533,3.95459,-0.299691,0.558956,3.99392,-0.419747,1.26115,4.74756,-0.251257,1.26115,4.95802,-0.268192,1.22132,5.0284,0.565756,1.21111,4.8389,0.541027,1.3184,4.78197,-0.0142018,1.31104,4.82193,0.270942,1.3184,4.98789,-0.0221026,1.31104,5.01842,0.281784,1.22359,4.83678,0.507288,1.23252,5.02716,0.530283,1.26135,5.0285,0.530283,1.25242,4.83774,0.507288,1.34792,5.01495,0.281065,1.4202,4.95673,-0.0254527,1.34792,4.8157,0.270071,1.4202,4.75018,-0.0175519,1.23994,4.83953,0.541027,1.25015,5.02936,0.565756,1.34269,4.9823,0.10295,1.34269,4.7786,0.102925,1.37213,4.75022,0.176607,1.37213,5.04679,0.174201,1.37736,4.76061,0.260651,1.37736,5.05284,0.266223,1.20446,5.04681,0.17237,1.19325,5.05158,0.263933,1.22532,4.7505,0.174188,1.21419,4.75934,0.25787,1.36023,4.76049,0.260392,1.35618,4.75025,0.176382,1.35003,5.04679,0.173976,1.35384,5.05268,0.265942,1.37438,4.47863,0.251982,1.36838,4.48595,0.160235,1.34052,4.19309,0.122308,1.34711,4.19112,0.206757,1.20188,4.2066,0.208811,1.21053,4.20822,0.124388,1.21471,4.4957,0.255018,1.22377,4.5024,0.163339,1.39776,4.47612,0.251523,1.36414,4.1893,0.206478,1.39034,4.48345,0.159745,1.35636,4.19126,0.122014,1.32919,4.23262,0.0538649,1.35252,4.43311,0.0814129,1.45044,4.19083,-0.0391414,1.34138,4.2455,0.224207,1.474,4.39521,-0.0190261,1.36442,4.44006,0.262045,1.17187,4.26709,0.458369,1.20264,4.45613,0.476149,1.17385,4.45801,0.477113,1.14313,4.26935,0.459323,1.3282,4.44749,0.264415,1.30062,4.46153,-0.0400316,1.30547,4.25561,0.227101,1.27713,4.25778,-0.0600609,1.25708,4.46967,-0.18908,1.19814,4.267,-0.194724,0.59087,9.31707,0.780982,0.975657,9.40122,0.649788,0.178412,9.1013,1.02887,1.12511,9.21987,0.777692,0.672408,9.1871,0.907806,0.879266,8.5229,1.10949,0.205575,8.45756,1.32372,0.245447,8.05611,1.30867,0.907052,8.124,1.07087,0.995036,7.88309,0.923886,0.233134,7.88313,1.29375,0.238394,7.44382,1.37362,0.898735,7.21664,0.940536,1.38974,8.09608,0.41755,1.13471,7.19123,0.556943,1.15017,7.25744,0.063476,1.31053,7.81961,0.540716,1.2767,7.78147,0.0252519,0.502287,9.50766,0.665323,0.839546,9.52555,0.566444,0.864415,9.36822,0.707973,0.988083,9.2315,0.834762,0.740764,9.52079,0.607061,1.2047,8.54104,0.93856,1.37559,8.42643,0.729743,1.11353,8.30117,0.949475,1.21507,8.19091,0.786984,0.909937,8.19784,-0.928899,0.817802,8.00145,-0.89299,0.958795,7.66587,-0.551799,1.12571,7.86685,-0.490467,1.20993,7.80075,-0.229638,1.08717,7.53779,-0.228871,1.15867,7.48191,0.0434332,0.200032,7.6738,1.28343,0.934561,7.51216,0.8044,1.15427,7.47509,0.529141,0.193369,9.21212,0.957453,0.43263,9.1549,0.927797,0.547534,8.48582,1.20432,0.576955,8.05165,1.20399,0.599787,7.84668,1.12325,0.543666,7.30867,1.17307,0.553912,7.57348,1.06614,0.397439,9.26676,0.842158,0.753483,9.3466,0.738413,0.857684,9.21958,0.877431,0.643793,9.51818,0.634965,0.216757,8.24749,1.35328,0.900649,8.31823,1.12305,0.560121,8.26653,1.23379,1.05149,8.41163,1.0203,1.45777,8.23468,0.402283,0.186252,8.74835,1.27128,0.852379,8.76402,1.08877,1.17055,8.74578,0.960714,1.30096,8.68131,0.865188,0.520143,8.74765,1.1399,1.05464,8.7848,1.04681,0.945732,7.39888,-0.516642,1.07401,7.31324,-0.215062,0.700664,7.67601,-0.79159,1.16622,6.93132,-0.260588,0.826563,7.01239,-0.545932,1.31307,6.84663,0.148804,1.2613,6.89241,-0.0710742,1.3349,6.60681,0.772069,1.10794,6.4845,1.22683,0.699047,6.61087,1.47556,0.320833,6.81869,1.55225,0.240498,7.96804,1.2987,0.954252,8.01004,0.997964,0.930759,9.39004,0.672431,1.07706,9.22383,0.80643,0.79884,9.52422,0.576475,1.27971,8.47658,0.864396,1.16543,8.24462,0.867181,0.594819,7.94705,1.16782,1.24365,8.70737,0.920553,0.703141,7.41564,-0.663405,0.969368,7.19475,-0.394569,1.18478,7.08871,0.0917449,1.08706,7.13503,-0.151225,0.560498,7.06125,1.22961,0.934993,6.99261,1.01244,0.267376,7.22903,1.39312,1.17711,6.99923,0.618257,1.05774,7.06568,-0.297569,1.2319,6.98787,0.129224,1.17761,7.02504,-0.104756,0.639062,6.84012,1.31989,1.04642,6.69813,1.1118,0.292941,7.04109,1.44131,1.29848,6.83092,0.689394,0.790782,7.19468,-0.56465,0.321855,6.57238,1.51538,0.710574,6.33621,1.42924,1.0759,6.24974,1.21848,1.3154,6.38668,0.82238,1.2518,6.73739,-0.0526351,1.33274,6.67645,0.172437,0.965045,6.79898,-0.659187,1.16145,6.76823,-0.24826,1.0402,8.04031,-0.725703,0.887699,7.83016,-0.720408,0.813586,7.53556,-0.661134,1.0209,6.95991,-0.448313,0.838444,7.29121,-0.569719,0.926177,7.11983,-0.477516,1.07452,6.81925,-0.437895,0.173445,8.96122,1.15467,0.774099,8.99148,1.02389,1.09957,8.97056,0.948887,1.23043,8.92922,0.887784,0.493793,8.9681,1.05204,0.965995,9.00804,0.985898,1.17982,8.94411,0.923428,1.35555,6.76253,0.450005,1.31566,7.79585,0.286169,1.17631,7.46502,0.297415,1.16083,7.21808,0.321872,1.19333,7.05459,0.359919,1.26287,6.93962,0.413147,1.34476,6.55454,0.464748,0.159492,9.41359,0.745023,0.342696,9.49027,0.689146,0.675147,7.64167,-0.722921,0.915877,7.37232,-0.455065,1.10358,7.2298,0.0771934,1.02469,7.28742,-0.180088,0.518864,7.25655,1.14181,0.854859,7.17429,0.910439,0.230755,7.39005,1.32832,1.08356,7.16112,0.546589,0.791081,7.50321,-0.600448,1.10716,7.18688,0.321011,0.959971,7.17386,-0.333773,1.15382,7.06434,0.109545,1.06877,7.1128,-0.115166,0.545908,7.00318,1.20819,0.937342,6.91266,1.00982,0.255208,7.1745,1.35712,1.1692,6.96174,0.613631,0.711382,7.38666,-0.571905,0.847845,7.2667,-0.496213,1.1715,7.02463,0.364214,1.05939,7.03105,-0.252805,1.21746,6.95149,0.143825,1.17433,6.98884,-0.0666063,0.629174,6.76969,1.32405,1.02836,6.6315,1.10665,0.282022,6.97429,1.42014,1.28022,6.76248,0.687934,0.792862,7.13732,-0.519086,0.936811,7.0869,-0.412607,1.24864,6.89149,0.408689,0.841249,6.96322,-0.529245,1.08359,6.4402,1.20862,1.30226,6.55834,0.760303,0.308085,6.77537,1.5221,0.677455,6.56105,1.44783,1.28178,6.8088,0.159271,1.22904,6.86257,-0.0494058,1.14139,6.90272,-0.2336,1.00929,6.93804,-0.436165,1.32308,6.7156,0.434031,0.96489,6.88944,-0.662043,1.12124,6.29905,1.26301,1.36376,6.4354,0.856044,0.328864,6.61567,1.5711,0.739449,6.38407,1.48289,1.37222,6.71032,0.16355,1.28809,6.77344,-0.0766489,1.19466,6.81476,-0.280234,1.10215,6.86125,-0.47201,1.39558,6.59706,0.482024,0.233633,7.47132,1.36164,0.906589,7.25042,0.924419,1.13717,7.22168,0.551769,1.14979,7.28492,0.0607913,0.545114,7.33975,1.15959,1.07471,7.3409,-0.217797,0.943895,7.43034,-0.522548,0.709137,7.71498,-0.806462,0.817573,7.57032,-0.67045,1.16242,7.24767,0.318401,0.696672,7.44916,-0.673081,0.956683,7.22082,-0.405539,1.17125,7.10969,0.0882902,1.07284,7.15761,-0.156917,0.55161,7.09071,1.21451,0.908883,7.03001,0.990166,0.261818,7.25295,1.38103,1.15249,7.02355,0.603724,0.828717,7.32241,-0.574991,1.17429,7.07319,0.351326,1.03406,7.08481,-0.306851,1.21856,7.00233,0.124455,1.15209,7.04061,-0.109213,0.620687,6.87204,1.29827,1.02922,6.73386,1.0897,0.284266,7.0652,1.42421,1.27957,6.85841,0.678488,0.783486,7.2316,-0.570055,0.909019,7.15094,-0.47834,1.24925,6.95828,0.405289,1.1496,6.94082,-0.261502,1.30286,6.85874,0.147486,1.25242,6.90274,-0.0705539,0.691807,6.62713,1.45406,1.09964,6.49994,1.21258,0.316649,6.83528,1.53663,1.32979,6.62377,0.764289,0.822843,7.03559,-0.535506,1.01531,6.97267,-0.436458,1.34485,6.77673,0.447066,0.962371,6.90355,-0.654128,1.12068,6.31348,1.26457,1.35781,6.44736,0.849536,0.325411,6.63083,1.56843,0.737402,6.40205,1.48726,1.36482,6.71787,0.162345,1.28265,6.78178,-0.0757,1.19108,6.82549,-0.277918,1.09924,6.8705,-0.466266,1.39188,6.60734,0.479457,0.0558476,9.06589,1.07596,0.0241488,8.45041,1.41067,0.0385714,7.89495,1.3594,0.0399887,7.50822,1.43541,0.0380603,8.06368,1.37764,0.0335346,7.70347,1.36272,0.0602664,9.16291,1.01615,0.029935,8.24878,1.41519,0.0232522,8.74402,1.34334,0.0467371,7.00374,1.58227,0.0377553,7.97728,1.36948,0.0447745,7.34045,1.45496,0.0481064,7.19395,1.49377,0.0480841,6.71555,1.56313,0.0397342,8.93213,1.19589,0.0451413,9.39002,0.764039,0.0387268,7.46265,1.38745,0.0427114,7.29598,1.41452,0.0444185,7.13448,1.4657,0.0447774,6.95039,1.54622,0.0498117,6.76639,1.63178,0.0391978,7.53178,1.42397,0.043865,7.35868,1.44402,0.0471173,7.21253,1.47887,0.0464097,7.01768,1.5689,0.0499256,6.78368,1.62794,0.0936353,9.604,0.741989,0.39601,9.7545,0.66084,0.209719,9.65492,0.721058,0.723087,9.73189,0.404503,0.628159,9.7657,0.540556,0.685638,9.75102,0.500355,0.754673,9.71353,0.400203,0.521056,9.77686,0.609638,1.48322,8.18389,-0.00708664,1.40678,8.07636,0.0197476,1.31351,8.13244,-0.418219,1.41904,8.28835,-0.385392,1.28776,8.52024,-0.762104,1.0222,8.34777,-0.896207,1.17447,8.20133,-0.668468,1.34993,8.39418,-0.583078,1.40152,8.07553,0.218831,1.47436,8.19444,0.177145,1.36417,8.09084,-0.197264,1.46709,8.21433,-0.194595,0.164457,9.43744,0.743553,0.0499347,9.41117,0.761998,0.488439,9.57101,0.639293,0.348266,9.51627,0.688662,0.800352,9.57309,0.537277,0.763088,9.56799,0.552318,0.715198,9.56974,0.584876,0.621404,9.58063,0.613716,0.407302,-6.39854e-06,0.0436082,1.27562,-6.3981e-06,0.0147574,1.26702,-6.39045e-06,0.283082,0.412871,-6.36729e-06,0.751201,0.455625,-6.38256e-06,0.430463,1.25394,-0.000216926,-0.257378,0.990348,-6.40333e-06,-0.277655,0.723394,-6.40389e-06,-0.27566,0.403003,-6.40449e-06,-0.277721,0.69384,-6.39845e-06,0.0344672,1.01717,-6.39819e-06,0.0314385,1.02178,-6.38793e-06,0.331851,0.734753,-6.38346e-06,0.423031,1.46942,-6.36627e-06,0.774537,0.729295,-6.36699e-06,0.758025,1.15139,-6.36811e-06,0.73235,0.673916,-6.35316e-06,1.07443,1.22315,-6.35416e-06,1.05154,1.55626,-6.35314e-06,1.07473,0.330255,-6.35258e-06,1.08758,1.30588,2.33173,0.0149183,1.29989,2.33905,-0.0768289,1.27202,2.04619,-0.114756,1.27862,2.04422,-0.0303068,1.13338,2.0597,-0.0282529,1.14203,2.06132,-0.112676,1.14621,2.3488,0.0179544,1.15527,2.3555,-0.0737248,1.32926,2.32922,0.0144592,1.29564,2.0424,-0.0305864,1.32184,2.33655,-0.0773194,1.28786,2.04436,-0.11505,1.26493,2.08701,-0.137056,1.28993,2.28735,-0.114403,1.38559,2.0433,-0.214713,1.26395,2.09859,-0.00404445,1.41583,2.2475,-0.226286,1.28627,2.29316,0.0321208,1.20938,2.11892,0.225171,1.21863,2.31049,0.23707,1.21046,2.30789,0.208324,1.17973,2.11923,0.190534,1.25996,2.30109,0.027811,1.21243,2.31507,-0.245045,1.23692,2.10875,-0.00992647,1.18819,2.11044,-0.24671,1.20899,2.71904,-0.165393,1.25207,2.84022,0.0717215,1.19652,2.92392,-0.174488,1.23982,3.00787,0.0992935,1.18958,2.92535,0.270598,1.18596,3.05168,0.278547,1.19291,2.9451,0.30721,1.21804,2.75459,0.305566,1.26701,2.92967,0.104351,1.40822,2.89126,-0.0852738,1.28034,2.73266,0.0784783,1.41442,2.68468,-0.0909279,1.27484,2.91513,-0.0324875,1.28626,2.71129,-0.0461999,1.3159,2.67797,-0.0291299,1.2967,2.97308,-0.00682441,1.32207,2.68173,0.0554066,1.3033,2.97188,0.085301,1.12937,2.96219,-0.0063242,1.11965,2.95866,0.0854639,1.16936,2.66876,-0.0294838,1.1593,2.66994,0.05479,1.30499,2.68051,0.055376,1.29999,2.67696,-0.0291312,1.27465,2.97164,-0.0067417,1.27984,2.97019,0.0853341,0.461164,0.781121,0.844178,0.466477,0.837335,0.688042,0.429261,0.774019,0.539136,0.371317,0.628263,0.484688,0.326587,0.48545,0.556593,0.321223,0.428178,0.712927,0.35849,0.492552,0.861635,0.416434,0.638307,0.916083,0.443962,0.743327,0.807418,0.410667,0.637023,0.86094,0.367537,0.52853,0.820412,0.339835,0.4814,0.709574,0.34379,0.523243,0.593353,0.377084,0.629547,0.539831,0.420215,0.73804,0.580359,0.447916,0.78517,0.691197,0.385811,0.746055,0.797038,0.389201,0.781923,0.697414,0.365455,0.741524,0.602403,0.328483,0.648523,0.567662,0.299943,0.557399,0.613542,0.296553,0.521532,0.713166,0.320299,0.561931,0.808177,0.357271,0.654932,0.842918,0.315158,0.713868,0.753441,0.301618,0.670637,0.775207,0.284078,0.626516,0.758726,0.272813,0.60735,0.713651,0.274421,0.624365,0.666387,0.287961,0.667596,0.644621,0.305501,0.711718,0.661103,0.316766,0.730884,0.706178,0.279671,0.654099,0.732429,0.272635,0.677128,0.712045,0.289114,0.691654,0.689399,0.436877,0.743749,0.806231,0.440766,0.784893,0.691952,0.413526,0.73855,0.582965,0.371116,0.631869,0.543113,0.338378,0.527341,0.595742,0.334489,0.486197,0.710021,0.361728,0.532539,0.819009,0.404138,0.63922,0.858859,0.465692,0.620495,0.911346,0.407747,0.474734,0.856899,0.370454,0.409833,0.708289,0.375845,0.467637,0.551856,0.420574,0.61045,0.479951,0.478518,0.756206,0.534399,0.515734,0.819522,0.683305,0.510421,0.763309,0.839442,1.26657,0.808306,0.493823,1.30452,0.795641,0.654964,1.38426,0.683912,0.748372,1.45908,0.538569,0.719329,1.48516,0.444751,0.584849,1.44722,0.457416,0.423708,1.36748,0.569144,0.3303,1.29265,0.714488,0.359343,1.3661,0.719199,0.397776,1.42087,0.612819,0.376519,1.47923,0.531042,0.444886,1.507,0.521772,0.562829,1.48792,0.59044,0.661258,1.43315,0.696819,0.682515,1.37479,0.778595,0.614148,1.34702,0.787865,0.496205,1.52325,0.715093,0.539144,1.53296,0.713429,0.509174,1.52101,0.69978,0.483363,1.49095,0.753329,0.548094,1.51509,0.719508,0.57637,1.53774,0.675511,0.567578,1.54563,0.647112,0.52687,1.53415,0.650945,0.478091,1.51001,0.684767,0.449816,1.48736,0.728763,0.458608,1.47946,0.757162,0.499316,1.41514,0.733751,0.406753,1.46289,0.641013,0.388223,1.51377,0.569723,0.447822,1.53798,0.561643,0.55064,1.52134,0.621504,0.636446,1.4736,0.714242,0.654978,1.42272,0.785531,0.595378,1.39851,0.793612,0.49256,1.36814,0.777514,0.61669,1.4275,0.694348,0.686219,1.48319,0.586161,0.664601,1.5026,0.516327,0.5645,1.47436,0.525755,0.444554,1.41501,0.60892,0.375026,1.35931,0.717108,0.396643,1.3399,0.786941,0.496744,1.33804,0.739594,0.350629,1.41286,0.594251,0.321586,1.4926,0.482522,0.414994,1.53055,0.469857,0.576135,1.50447,0.563675,0.710616,1.42964,0.709018,0.739658,1.3499,0.820746,0.646251,1.31196,0.833411,0.485109,1.16743,3.63709,0.45992,1.25339,3.6302,0.24893,1.21704,3.41321,0.210638,0.409975,3.22617,0.628592,0.452868,3.55902,0.754518,0.521659,3.56624,0.842614,1.15807,2.62835,0.482627,1.13544,3.39457,0.38724,1.10083,3.29414,0.608465,0.633614,3.25811,0.782164,0.822326,3.26655,0.786012,1.31883,3.6035,0.683238,1.16906,3.46589,0.442108,0.672544,3.53397,1.06609,0.675962,3.32046,0.833728,1.14153,3.34873,0.66131,0.859432,3.32157,0.840278,1.21479,3.59922,0.919327,0.933091,3.56936,1.07473,1.17698,4.30296,1.02018,1.15537,4.28856,0.8564,0.781133,4.24829,1.07809,0.924487,4.27631,1.1604,0.735761,4.22188,1.03088,1.11,4.26215,0.809183,1.10469,4.26201,0.947081,0.860104,4.2366,1.0774,1.29172,3.97562,0.750202,1.20478,3.95905,0.973674,0.927878,3.92879,1.12692,0.683455,3.91018,1.11053,0.571008,3.89956,0.967287,1.18677,3.96581,0.602518,1.20517,3.62899,0.515782,1.13983,3.42266,0.402131,0.64673,3.27723,0.793751,0.559533,3.55839,0.898404,1.11085,3.30859,0.621734,0.831793,3.28057,0.79948,0.747104,4.22848,1.04268,1.12134,4.26875,0.820988,1.12276,4.27225,0.965357,0.8762,4.24652,1.09815,0.59912,3.90221,1.0031,1.21301,3.96826,0.639439,1.16424,4.26821,0.849495,1.17878,4.2806,1.01716,0.924708,4.25371,1.15822,0.774781,4.2263,1.0802,0.725048,4.20092,1.02674,1.11499,4.24288,0.795745,0.857282,4.21645,1.07082,1.1037,4.24225,0.939208,0.737481,4.20727,1.04011,1.1273,4.24921,0.809182,1.24914,1.96197,-0.178952,0.414986,1.95607,-0.353849,1.28376,2.96007,-0.136769,0.381791,2.8367,-0.325976,0.84911,1.96677,-0.537138,0.683368,1.96515,-0.538737,0.527617,1.96233,-0.478635,1.14343,1.96536,-0.366156,0.838194,2.793,-0.542682,0.652923,2.78046,-0.54043,0.494247,2.787,-0.466766,1.16961,2.86858,-0.363455,0.466213,0.566633,-0.251176,0.413674,0.504901,0.450504,1.07804,1.09479,0.91748,0.972649,0.619688,-0.398664,1.28759,0.448976,0.196158,1.32343,0.453802,0.488573,0.671957,0.615671,-0.427715,0.652786,1.07731,0.909115,0.390529,0.502167,0.0759872,0.476147,0.780562,0.714817,1.30345,0.762581,0.670227,1.20731,0.54949,-0.163031,0.464309,0.808765,-0.235687,0.437274,0.774509,0.374743,1.07148,1.14133,0.829282,0.958492,0.84315,-0.387696,1.25625,0.719717,0.109607,1.29782,0.807912,0.324189,0.680504,0.841521,-0.417657,0.667357,1.12984,0.845017,0.416793,0.769458,0.0544677,0.536195,0.980873,0.624159,1.23895,1.00907,0.588485,1.18758,0.793045,-0.164153,0.968392,-6.294e-06,2.42773,1.1441,-6.29557e-06,2.39185,0.8184,-6.29493e-06,2.40657,0.801587,0.0505963,2.35725,1.08176,0.0701109,2.33737,0.890931,0.145089,2.31329,1.02854,0.13252,2.3114,0.832714,0.114053,2.32496,0.964131,0.154172,2.30611,0.971979,0.285007,2.15851,0.71427,0.225009,2.17975,1.10225,0.243271,2.1704,0.835338,0.276072,2.16167,1.20318,0.133201,2.20716,0.630897,0.113277,2.2351,0.589592,-6.29875e-06,2.319,1.29444,-6.30107e-06,2.266,1.44789,-6.30973e-06,2.06794,0.421114,-6.30859e-06,2.09388,0.475809,0.183392,2.00463,1.34196,0.202167,1.9735,0.784409,0.392911,1.90943,1.19976,0.348498,1.92005,0.601867,0.33381,1.93754,0.99199,0.399469,1.90264,1.01738,0.569816,1.38984,0.506817,0.4964,1.41779,1.3146,0.497983,1.37315,0.744881,0.566407,1.4049,1.46956,0.318749,1.36428,0.354124,0.308194,1.42584,0.26314,-6.33758e-06,1.43071,1.55957,-6.34093e-06,1.35415,1.2887,1.69807,0.0281047,1.19949,1.56805,-0.282824,0.653916,1.3929,-0.572765,0.497036,1.82688,0.533305,0.338087,1.47174,-0.00428325,0.943288,1.41049,-0.499542,0.960838,1.85411,0.671443,0.357301,1.53833,0.290341,0.423546,1.43296,-0.359208,0.681087,1.23294,0.807091,1.02017,1.24765,0.776912,1.20848,1.13355,0.55713,1.29194,0.995964,0.254819,1.25333,0.900427,0.0506986,1.18087,0.93394,-0.176781,0.995851,1.05349,-0.371852,0.632236,1.04932,-0.425182,0.469837,0.934325,-0.22873,0.423958,0.895668,0.0517108,0.451267,0.9146,0.339187,0.534933,1.16431,0.629688,1.0362,0.60384,1.4622,0.455305,0.521127,1.495,1.35918,0.503442,1.44406,0.712728,0.600226,1.48063,1.52751,0.328219,1.44453,0.29468,0.32384,1.50364,0.21341,-6.33422e-06,1.50767,1.63445,-6.33774e-06,1.42714,1.52252,-6.35434e-06,1.04733,0.325205,-6.35136e-06,1.11555,0.383664,0.418815,1.11613,1.42003,0.431597,1.05905,0.757723,0.745841,1.1041,1.2804,0.655761,1.07239,0.534034,0.65369,1.11361,1.00917,0.750392,1.09034,1.01789,0.797933,1.13509,0.51403,0.714169,1.16152,1.2966,0.706732,1.11635,0.748159,0.797843,1.15074,1.45928,0.471866,1.09756,0.348892,0.458985,1.15844,0.238958,-6.34966e-06,1.15446,1.61756,-6.35282e-06,1.08204,1.45385,-6.37076e-06,0.671785,0.357481,-6.3681e-06,0.732485,0.454366,0.537002,0.728539,1.33558,0.551557,0.679545,0.773866,0.950002,0.711719,1.1697,0.836612,0.689676,0.583844,0.833725,0.722093,0.970559,0.956002,0.700918,0.389841,-6.3191e-06,1.85357,1.48126,-6.32173e-06,1.7934,0.455792,0.198496,1.84994,1.36566,0.215076,1.79978,0.777808,0.412404,1.83219,0.585643,0.353642,1.84278,1.22499,0.364608,1.80753,0.99746,0.417735,1.82008,1.00628,0.440574,1.90489,1.24628,0.384858,1.89165,0.571896,0.374279,1.92883,0.774568,0.434946,1.91766,1.39466,0.23027,1.88347,0.434929,0.212833,1.93639,1.51659,-6.31809e-06,1.87675,0.365363,-6.31531e-06,1.94022,0.458766,0.920013,-0.279056,0.377877,0.646653,0.436606,0.984125,0.947877,-0.421465,1.335,0.780741,0.0538123,1.33756,0.67928,0.29422,0.687114,0.948182,-0.436876,0.338575,0.774375,0.0937054,0.417733,0.529508,0.82856,1.46447,0.539726,0.776228,1.22369,0.872684,-0.232796,0.679799,-6.40663e-06,-0.558904,1.3209,-6.40149e-06,-0.275525,1.34382,-6.39741e-06,0.0148652,1.45233,-6.39365e-06,0.271039,0.347842,-6.40394e-06,-0.320981,0.354973,-6.39882e-06,0.0463635,0.343373,-6.39276e-06,0.420584,1.0995,-6.40548e-06,-0.532634,0.3815,0.286745,0.411504,0.328315,0.419292,0.0678628,0.360253,0.448133,-0.289848,1.37471,0.315882,0.267116,1.38291,0.385162,0.0294302,1.32163,0.435526,-0.241994,1.01941,0.442244,-0.529966,0.642546,0.443918,-0.55495,0.680701,0.670339,-0.512596,1.23705,0.657457,-0.230208,1.34139,0.616799,0.048312,1.3511,0.52074,0.289046,0.455213,0.647485,-0.246533,0.340822,0.629119,0.0865085,0.383378,0.510413,0.402604,0.986721,0.671239,-0.496278,1.66156,-6.38636e-06,0.766654,1.59493,0.19435,0.767512,1.54321,0.363,0.771696,0.299942,0.124877,0.832711,0.261975,-6.38808e-06,0.830366,0.356749,0.337334,0.831458,1.0599,1.25993,-0.257421,0.550692,1.21598,-0.325752,0.669049,1.22476,-0.353293,0.80809,1.23755,-0.372266,0.473327,1.20894,-0.162654,1.14666,1.26385,-0.121516,1.288,2.98129,0.151112,0.39296,2.93195,0.574378,1.30675,2.18167,0.0601634,0.713301,1.55512,0.793565,1.00134,1.54714,0.768441,1.22627,1.49728,0.538229,1.32868,1.38533,0.243616,1.31877,1.31927,0.0309145,1.23678,1.20167,-0.247409,1.00347,1.22472,-0.471722,0.609174,1.2087,-0.533566,0.403778,1.17313,-0.317377,0.331647,1.17628,0.0210544,0.356412,1.22168,0.328454,0.47867,1.49451,0.613209,0.680793,2.21897,0.688619,0.948268,2.21406,0.661509,0.458263,2.22159,0.531065,1.3149,2.65733,0.0982695,0.416363,2.64812,0.528645,1.13173,2.95465,0.540582,0.647282,2.92592,0.733413,1.26359,2.63935,0.272165,0.660102,2.61634,0.692064,0.908575,2.60999,0.671023,1.22546,2.97363,0.323267,0.880001,2.92756,0.714355,1.15319,2.20431,0.479808,1.27255,2.18968,0.243315,0.72809,1.52228,0.751425,0.981452,1.51392,0.728655,1.18576,1.46226,0.516509,1.28043,1.3512,0.23734,1.26792,1.28522,0.0388945,1.1929,1.18389,-0.21823,0.971801,1.21683,-0.430276,0.642155,1.20652,-0.492709,0.448657,1.16247,-0.28843,0.384668,1.15925,0.0260909,0.408276,1.20004,0.316838,0.519075,1.46584,0.585588,0.699941,1.85125,0.685431,1.15592,1.83559,0.476767,1.26685,1.77356,0.216617,0.71209,1.58518,0.782475,0.997158,1.57818,0.758493,1.21903,1.53149,0.531925,1.32233,1.42492,0.240847,1.31568,1.35812,0.0306263,1.23296,1.23925,-0.251042,0.997298,1.24377,-0.474575,0.613762,1.22759,-0.537586,0.405806,1.19978,-0.321667,0.332308,1.20659,0.0184557,0.356503,1.25415,0.324545,0.480537,1.5283,0.605013,0.807728,-6.40687e-06,-0.492708,0.942668,-6.40618e-06,-0.481073,0.359224,-6.33562e-06,1.47569,1.47985,-6.33844e-06,1.41111,1.17537,-6.33767e-06,1.42866,0.673346,-6.33641e-06,1.45759,0.725063,-6.31887e-06,1.85888,1.16295,-6.31997e-06,1.83365,1.42853,-6.32064e-06,1.81834,0.451072,-6.31818e-06,1.87467,1.05377,-6.29799e-06,2.33644,0.85912,-6.29758e-06,2.34584,0.770581,-6.3078e-06,2.11211,0.542757,-6.30722e-06,2.12524,1.35552,-6.30927e-06,2.0784,1.13469,-6.30872e-06,2.09113,0.434958,-6.40403e-06,-0.277515,0.435881,-6.39854e-06,0.0426965,0.483464,-6.38303e-06,0.429721,0.44443,-6.36726e-06,0.751881,0.364531,-6.35264e-06,1.08626,0.390553,-6.3357e-06,1.47388,0.478399,-6.31825e-06,1.8731,0.565479,-6.30728e-06,2.12393,1.23193,-6.40255e-06,-0.259724,1.2441,-6.3981e-06,0.0167917,1.23711,-6.39035e-06,0.289029,1.43064,-6.36649e-06,0.769393,1.51564,-6.35327e-06,1.0719,1.44272,-6.33835e-06,1.41325,1.39614,-6.32056e-06,1.82021,1.32859,-6.3092e-06,2.07996,0.838476,-6.29896e-06,2.31438,0.671883,-0.000328881,2.27822,1.20979,0.000349658,2.25983,1.06825,-6.29939e-06,2.30452,0.687832,-6.30128e-06,2.26116,1.1936,-6.30201e-06,2.24455,0.628361,-0.000325411,-0.451699,0.802078,-6.40649e-06,-0.478166,0.945862,-6.40613e-06,-0.467444,1.07654,-0.000176875,-0.445314,0.634663,4.03235e-05,-0.439184,1.06913,-2.47629e-05,-0.433537,1.15281,7.84932,0.732566,1.02884,7.18582,0.760986,1.04633,7.48992,0.667375,1.29936,8.14217,0.594306,1.42385,8.32208,0.564128,1.2312,6.53935,0.999114,1.06941,6.98126,0.815587,1.19895,6.75151,0.907431,1.1999,6.31595,1.01771,0.973239,7.16111,0.735,1.067,6.929,0.814452,1.17962,6.68462,0.903839,1.19332,6.49855,0.985018,1.25149,6.36621,1.06466,1.0338,7.21744,0.749622,1.04287,7.01417,0.797031,1.18023,6.78344,0.891745,1.22743,6.55474,0.988965,1.24673,6.37937,1.0599,1.0848,8.57531,1.02869,1.26645,2.46102,-0.157861,0.407579,2.39966,-0.332246,0.843652,2.37989,-0.53991,0.668146,2.3728,-0.539584,0.515147,2.37617,-0.469185,1.15652,2.41697,-0.364806,0.814202,1.59412,-0.4577,1.09287,1.60773,-0.31362,1.18929,1.6081,-0.152028,0.436538,1.58227,-0.255813,0.535312,1.58844,-0.401675,0.669081,1.59097,-0.447499,1.37217,4.55643,-0.124973,0.164654,4.36735,-0.254191,0.822119,4.47536,-0.645971,0.334341,4.39552,-0.53338,0.584028,4.43946,-0.629051,1.19403,4.52494,-0.448503,-0.000622508,9.37874,-0.849514,0.500149,6.17609,1.36244,0.217016,6.16859,1.47093,0.114675,5.00972,1.12501,0.469853,6.20299,1.36949,0.256166,5.35529,1.35937,0.477028,5.80914,1.43164,0.470357,6.1753,1.37386,-8.88178e-16,8.32545,-1.12727,0.000291177,8.98316,-1.02914,0,5.40598,1.53086,-8.88178e-16,9.06125,1.07932,-8.88178e-16,7.89621,1.3649,-8.88178e-16,8.06404,1.38275,-8.88178e-16,9.15783,1.02045,-8.88178e-16,8.74224,1.34093,-8.88178e-16,7.36021,1.45886,-8.88178e-16,6.74395,1.56781,-8.88178e-16,8.92671,1.19733,-8.88178e-16,7.54203,1.42804,-8.88178e-16,7.23914,1.48214,0.00079876,9.20369,-0.952232,-0.110415,9.20476,-0.941415,-0.170982,8.34011,-1.11114,-0.680396,9.46887,-0.766509,-0.123656,8.73339,-1.08355,-0.821324,9.32095,-0.86592,-0.927493,8.64377,-0.997871,-1.05366,8.78855,-0.946924,-0.893843,9.47686,-0.746422,-1.19251,8.96017,-0.890161,-0.804801,8.9928,-0.972846,-0.933813,9.14568,-0.931299,-1.03434,9.3284,-0.856747,-0.499207,9.19367,-0.92603,-0.384956,9.20593,-0.9375,-0.629831,8.86297,-1.02243,-0.450522,8.78759,-1.05682,-0.586384,8.4291,-1.07028,-0.784301,8.51491,-1.05216,-0.699268,9.17322,-0.927875,-0.582527,9.31737,-0.865289,-0.566969,9.05805,-0.990182,-0.396552,9.00199,-1.00243,-0.109946,8.9849,-1.02042,-0.245002,9.20505,-0.933132,-0.27482,8.7497,-1.06596,-0.36915,8.37405,-1.08551,-0.240044,8.9849,-1.00861,-0.871547,8.828,-0.996039,-0.997043,8.95811,-0.951943,-1.14048,9.12084,-0.887402,-0.70099,8.6835,-1.04348,-0.525557,8.58812,-1.07396,-0.149755,8.50507,-1.11453,-0.328565,8.54726,-1.08896,-0.605694,9.63223,-0.466861,-0.294361,9.53559,-0.685965,-0.457827,9.56855,-0.602733,-0.12819,9.53043,-0.722264,-0.137541,9.49879,-0.755275,-0.513855,9.55303,-0.647673,-0.334338,9.51679,-0.710329,-0.642864,9.6118,-0.580928,-0.743575,9.57224,-0.651023,-0.290947,9.40695,-0.806906,-0.455937,9.39862,-0.807285,-0.131849,9.39301,-0.831094,-0.127483,9.54955,-0.728612,-0.291584,9.55247,-0.691916,-0.6015,9.6469,-0.472186,-0.45473,9.58416,-0.607544,-1.25033,4.96474,1.02898,-0.877237,4.62352,1.3875,-0.891178,4.6347,1.37495,-1.2456,4.9399,1.04456,-1.12633,5.66778,1.0149,-0.75172,5.46538,1.46281,-0.736256,5.4606,1.47931,-1.24077,4.9552,1.04209,-0.888548,4.65291,1.37226,-1.2454,4.97991,1.02652,-0.87469,4.64184,1.3848,-0.827886,6.60746,0.875119,-0.506001,6.60736,1.16291,-0.491997,6.60361,1.17681,-0.817116,6.59997,0.896015,-1.05947,6.62574,0.564463,-0.825834,6.60367,0.880266,-1.04986,6.62059,0.582814,-1.2783,4.90092,1.12836,-1.56943,5.20454,0.67757,-1.28856,4.91162,1.11247,-1.55763,5.19223,0.695855,-1.17182,5.64865,1.15767,-1.50002,5.86362,0.682478,-1.18442,5.65406,1.14147,-1.48897,5.85018,0.702933,-1.56427,5.1777,0.698759,-1.29337,4.89406,1.11628,-1.28304,4.88325,1.13219,-1.57616,5.19015,0.680435,-1.68882,5.46584,0.181691,-1.63895,5.21169,0.744793,-1.6395,5.22077,0.724939,-1.67102,5.45718,0.204351,-1.55801,5.87868,0.736724,-1.5398,6.04746,0.168506,-1.55219,5.87345,0.755003,-1.66184,5.47054,0.203425,-1.63113,5.23712,0.722077,-1.67961,5.47907,0.180849,-1.63061,5.22815,0.741858,-1.07221,6.62836,0.564614,-1.15849,6.68783,0.10321,-1.06936,6.62285,0.580096,-1.17685,6.69609,0.0816336,-0.951408,6.67944,-0.324539,-1.16828,6.70077,0.0739547,-0.960667,6.68182,-0.308288,-1.74615,5.5146,0.190843,-1.47843,5.59385,-0.308831,-1.73672,5.51739,0.173237,-1.48929,5.59064,-0.288563,-1.6003,6.06615,0.170243,-1.35431,6.06153,-0.315273,-1.59291,6.06423,0.153119,-1.36708,6.05788,-0.295615,-1.49723,5.57783,-0.288321,-1.74503,5.50255,0.176167,-1.75448,5.49968,0.193876,-1.48635,5.58113,-0.308707,-0.819472,6.28741,0.932342,-0.501447,6.15795,1.25212,-0.826,6.30916,0.916876,-0.488884,6.15533,1.26409,-1.11805,5.68681,1.01028,-0.745716,5.48644,1.45784,-0.730356,5.4817,1.47434,-0.937882,6.11333,0.922594,-1.1781,6.28319,0.507031,-0.947031,6.11749,0.908223,-1.16985,6.27234,0.524478,-1.1634,5.67108,1.15104,-1.4892,5.88327,0.676562,-1.1759,5.67644,1.13485,-1.47819,5.87006,0.696959,-1.24736,6.33482,0.0944334,-1.22942,6.22334,0.550693,-1.25882,6.34231,0.07431,-1.22831,6.22066,0.567996,-1.51542,6.04529,0.184462,-1.55094,5.89146,0.734093,-1.53165,6.05848,0.166709,-1.54517,5.88626,0.752343,-1.28375,6.3669,0.0582388,-1.04292,6.3498,-0.348212,-1.27612,6.36469,0.044025,-1.05455,6.34699,-0.33149,-1.58265,6.09013,0.167558,-1.33665,6.0831,-0.314151,-1.57522,6.08818,0.150568,-1.34932,6.07969,-0.294646,-0.868343,6.3446,0.863753,-0.503776,6.20361,1.25413,-0.489193,6.19821,1.26862,-1.11758,5.66097,1.03834,-0.815896,6.60246,0.890225,-1.10739,5.67964,1.03214,-0.853386,6.33849,0.879719,-0.910362,6.13553,1.02353,-1.19444,6.2545,0.620513,-0.920967,6.14006,1.00756,-1.18412,6.24533,0.639886,-1.52347,6.03414,0.186272,-1.14809,6.68129,0.120245,-1.28308,6.22276,0.648709,-1.31658,6.336,0.134315,-1.27877,6.2174,0.665575,-1.30326,6.32613,0.151709,-1.36006,6.39311,0.134204,-1.114,6.35514,-0.300004,-1.35183,6.39447,0.122144,-1.12546,6.35462,-0.282431,-0.499423,6.20379,1.35803,-0.268936,5.35218,1.3434,-0.0646213,4.90934,1.17005,0,4.88882,1.16613,-0.120561,5.02152,1.11971,-0.218392,6.19625,1.46693,0,6.18975,1.48059,-0.509744,5.80987,1.4208,-0.198819,5.80294,1.52383,-0.147569,5.38177,1.49517,0,5.81389,1.50029,-0.0444574,4.58788,-0.0197704,-0.0722725,4.4032,-0.00955448,-0.293725,4.62057,-0.398998,-0.302145,4.43853,-0.392149,-0.606163,4.88381,0.929928,-0.635438,4.72223,0.872027,-0.199632,4.71973,0.76073,-0.223388,4.54895,0.720406,-0.0543837,4.62354,0.380688,-0.0846645,4.46278,0.37462,-0.204422,4.07157,0.074744,-0.164837,4.24889,0.0489647,-0.188476,4.09036,0.361041,-0.160319,4.26425,0.364965,-0.308082,4.04819,-0.232104,-0.277003,4.22296,-0.293455,-0.462387,4.13957,0.806038,-0.440977,4.3103,0.804237,-0.291547,4.11259,0.652618,-0.270885,4.27826,0.667174,-0.399681,4.82931,0.899179,-0.429243,4.65907,0.872248,-0.680171,4.18541,0.77273,-0.661525,4.33198,0.796903,-0.3487,4.62409,-0.434135,-0.357184,4.44208,-0.427301,-0.373046,4.04185,-0.283085,-0.341966,4.21662,-0.344436,-0.582336,1.90616,-0.44386,-0.590163,1.72859,-0.40078,-0.495096,2.60839,-0.433261,-0.473149,2.74853,-0.412047,-0.578025,2.63147,0.586306,-0.592278,2.79903,0.622303,-0.449951,2.64686,0.513139,-0.483379,2.46384,0.520976,-0.624026,2.79959,0.618494,-0.645615,2.61212,0.625388,-0.522034,1.91882,-0.385586,-0.519019,1.74218,-0.330723,-0.352407,2.38746,0.273148,-0.397992,2.19527,0.285345,-0.335365,2.11818,-0.0375792,-0.365057,1.92326,-0.00555976,-0.312757,2.58601,0.138641,-0.288356,2.72218,0.144872,-0.431228,2.61782,0.454169,-0.407343,2.74112,0.50524,-0.456637,2.60399,-0.394551,-0.434497,2.74265,-0.37321,-0.350283,2.5908,-0.150365,-0.323977,2.72632,-0.13475,-0.366183,1.8064,-0.112716,-0.435951,1.66305,-0.18443,-0.453147,1.89489,-0.308375,-0.501964,1.73145,-0.360659,-0.541821,1.70995,0.47196,-0.543616,1.56686,0.436717,-0.376836,1.69303,0.213406,-0.384128,1.56759,0.096269,-0.715472,1.73794,0.614496,-0.698905,1.56777,0.579624,-0.490905,1.94014,-0.384198,-0.547458,1.78292,-0.446229,-0.429385,4.85199,1.03074,-0.725963,5.04707,1.08353,-1.0785,5.37978,0.933946,-1.36058,5.54079,0.583187,-1.02869,3.98086,0.657097,-1.39224,4.00945,0.250249,-0.50332,3.88588,0.852239,-0.744606,3.92793,0.825235,-1.05315,4.60377,0.747587,-1.31093,4.68073,0.435861,-0.466874,4.3484,0.876012,-0.738292,4.44843,0.87528,-1.30829,5.80494,0.583008,-1.08368,5.63191,0.937578,-0.725161,5.23373,1.13612,-0.413324,4.99181,1.07694,-1.25428,5.46743,0.759061,-1.16755,4.00075,0.454234,-1.21081,4.64246,0.597919,-1.20544,5.72585,0.761699,-1.32132,3.92324,-0.0452496,-1.42302,5.19948,-0.100099,-0.190716,3.90931,-0.127151,-0.138593,4.82539,-0.335386,-1.16511,3.98957,-0.292657,-0.846592,4.946,-0.589549,-0.6091,4.88499,-0.596224,-0.324149,4.83646,-0.524914,-1.22295,5.0603,-0.361775,-0.797646,4.00471,-0.45982,-0.344533,3.95459,-0.299691,-0.558956,3.99392,-0.419747,-1.26115,4.74756,-0.251257,-1.26115,4.95802,-0.268192,-1.22132,5.0284,0.565756,-1.21111,4.8389,0.541027,-1.3184,4.78197,-0.0142018,-1.31104,4.82193,0.270942,-1.3184,4.98789,-0.0221026,-1.31104,5.01842,0.281784,-1.22359,4.83678,0.507288,-1.23252,5.02716,0.530283,-1.26135,5.0285,0.530283,-1.25242,4.83774,0.507288,-1.34792,5.01495,0.281065,-1.4202,4.95673,-0.0254527,-1.34792,4.8157,0.270071,-1.4202,4.75018,-0.0175519,-1.23994,4.83953,0.541027,-1.25015,5.02936,0.565756,-1.34269,4.9823,0.10295,-1.34269,4.7786,0.102925,-1.37213,4.75022,0.176607,-1.37213,5.04679,0.174201,-1.37736,4.76061,0.260651,-1.37736,5.05284,0.266223,-1.20446,5.04681,0.17237,-1.19325,5.05158,0.263933,-1.22532,4.7505,0.174188,-1.21419,4.75934,0.25787,-1.36023,4.76049,0.260392,-1.35618,4.75025,0.176382,-1.35003,5.04679,0.173976,-1.35384,5.05268,0.265942,-1.37438,4.47863,0.251982,-1.36838,4.48595,0.160235,-1.34052,4.19309,0.122308,-1.34711,4.19112,0.206757,-1.20188,4.2066,0.208811,-1.21053,4.20822,0.124388,-1.21471,4.4957,0.255018,-1.22377,4.5024,0.163339,-1.39776,4.47612,0.251523,-1.36414,4.1893,0.206478,-1.39034,4.48345,0.159745,-1.35636,4.19126,0.122014,-1.32919,4.23262,0.0538649,-1.35252,4.43311,0.0814129,-1.45044,4.19083,-0.0391414,-1.34138,4.2455,0.224207,-1.474,4.39521,-0.0190261,-1.36442,4.44006,0.262045,-1.17187,4.26709,0.458369,-1.20264,4.45613,0.476149,-1.17385,4.45801,0.477113,-1.14313,4.26935,0.459323,-1.3282,4.44749,0.264415,-1.30062,4.46153,-0.0400316,-1.30547,4.25561,0.227101,-1.27713,4.25778,-0.0600609,-1.25708,4.46967,-0.18908,-1.19814,4.267,-0.194724,-0.59087,9.31707,0.780982,-0.975657,9.40122,0.649788,-0.178412,9.1013,1.02887,-1.12511,9.21987,0.777692,-0.672408,9.1871,0.907806,-0.879266,8.5229,1.10949,-0.205575,8.45756,1.32372,-8.88178e-16,8.44854,1.40953,-0.245447,8.05611,1.30867,-0.907052,8.124,1.07087,-0.995036,7.88309,0.923886,-0.233134,7.88313,1.29375,-0.238394,7.44382,1.37362,-0.898735,7.21664,0.940536,-1.38974,8.09608,0.41755,-1.13471,7.19123,0.556943,-1.15017,7.25744,0.063476,-1.31053,7.81961,0.540716,-1.2767,7.78147,0.0252519,-0.502287,9.50766,0.665323,-0.839546,9.52555,0.566444,-0.864415,9.36822,0.707973,-0.988083,9.2315,0.834762,-0.740764,9.52079,0.607061,-1.2047,8.54104,0.93856,-1.37559,8.42643,0.729743,-1.11353,8.30117,0.949475,-1.21507,8.19091,0.786984,-0.909937,8.19784,-0.928899,-0.817802,8.00145,-0.89299,-0.958795,7.66587,-0.551799,-1.12571,7.86685,-0.490467,-1.20993,7.80075,-0.229638,-1.08717,7.53779,-0.228871,-1.15867,7.48191,0.0434332,-0.200032,7.6738,1.28343,-0.934561,7.51216,0.8044,-1.15427,7.47509,0.529141,-8.88178e-16,7.70845,1.36647,-0.193369,9.21212,0.957453,-0.43263,9.1549,0.927797,-0.547534,8.48582,1.20432,-0.576955,8.05165,1.20399,-0.599787,7.84668,1.12325,-0.543666,7.30867,1.17307,-0.553912,7.57348,1.06614,-0.397439,9.26676,0.842158,-0.753483,9.3466,0.738413,-0.857684,9.21958,0.877431,-0.643793,9.51818,0.634965,-0.216757,8.24749,1.35328,-0.900649,8.31823,1.12305,-0.560121,8.26653,1.23379,-1.05149,8.41163,1.0203,-1.45777,8.23468,0.402283,-0.186252,8.74835,1.27128,-0.852379,8.76402,1.08877,-1.17055,8.74578,0.960714,-1.30096,8.68131,0.865188,-0.520143,8.74765,1.1399,-1.05464,8.7848,1.04681,-0.945732,7.39888,-0.516642,-1.07401,7.31324,-0.215062,-0.700664,7.67601,-0.79159,-1.16622,6.93132,-0.260588,-0.826563,7.01239,-0.545932,-1.31307,6.84663,0.148804,-1.2613,6.89241,-0.0710742,-1.3349,6.60681,0.772069,-1.10794,6.4845,1.22683,-0.699047,6.61087,1.47556,-0.320833,6.81869,1.55225,-8.88178e-16,7.03758,1.58475,-0.240498,7.96804,1.2987,-0.954252,8.01004,0.997964,-0.930759,9.39004,0.672431,-1.07706,9.22383,0.80643,-0.79884,9.52422,0.576475,-1.27971,8.47658,0.864396,-1.16543,8.24462,0.867181,-0.594819,7.94705,1.16782,-1.24365,8.70737,0.920553,-0.703141,7.41564,-0.663405,-0.969368,7.19475,-0.394569,-1.18478,7.08871,0.0917449,-1.08706,7.13503,-0.151225,-0.560498,7.06125,1.22961,-0.934993,6.99261,1.01244,-0.267376,7.22903,1.39312,-1.17711,6.99923,0.618257,-1.05774,7.06568,-0.297569,-1.2319,6.98787,0.129224,-1.17761,7.02504,-0.104756,-0.639062,6.84012,1.31989,-1.04642,6.69813,1.1118,-0.292941,7.04109,1.44131,-8.88178e-16,7.22165,1.497,-1.29848,6.83092,0.689394,-0.790782,7.19468,-0.56465,-0.321855,6.57238,1.51538,-0.710574,6.33621,1.42924,-1.0759,6.24974,1.21848,-1.3154,6.38668,0.82238,-1.2518,6.73739,-0.0526351,-1.33274,6.67645,0.172437,-0.965045,6.79898,-0.659187,-1.16145,6.76823,-0.24826,-1.0402,8.04031,-0.725703,-0.887699,7.83016,-0.720408,-0.813586,7.53556,-0.661134,-1.0209,6.95991,-0.448313,-0.838444,7.29121,-0.569719,-0.926177,7.11983,-0.477516,-1.07452,6.81925,-0.437895,-0.173445,8.96122,1.15467,-0.774099,8.99148,1.02389,-1.09957,8.97056,0.948887,-1.23043,8.92922,0.887784,-0.493793,8.9681,1.05204,-0.965995,9.00804,0.985898,-1.17982,8.94411,0.923428,-1.35555,6.76253,0.450005,-1.31566,7.79585,0.286169,-1.17631,7.46502,0.297415,-1.16083,7.21808,0.321872,-1.19333,7.05459,0.359919,-1.26287,6.93962,0.413147,-1.34476,6.55454,0.464748,-0.159492,9.41359,0.745023,-0.342696,9.49027,0.689146,-0.675147,7.64167,-0.722921,-0.915877,7.37232,-0.455065,-1.10358,7.2298,0.0771934,-1.02469,7.28742,-0.180088,-0.518864,7.25655,1.14181,-0.854859,7.17429,0.910439,-0.230755,7.39005,1.32832,-8.88178e-16,7.47513,1.3911,-1.08356,7.16112,0.546589,-0.791081,7.50321,-0.600448,-1.10716,7.18688,0.321011,-0.959971,7.17386,-0.333773,-1.15382,7.06434,0.109545,-1.06877,7.1128,-0.115166,-0.545908,7.00318,1.20819,-0.937342,6.91266,1.00982,-0.255208,7.1745,1.35712,-8.88178e-16,7.31764,1.41773,-1.1692,6.96174,0.613631,-0.711382,7.38666,-0.571905,-0.847845,7.2667,-0.496213,-1.1715,7.02463,0.364214,-1.05939,7.03105,-0.252805,-1.21746,6.95149,0.143825,-1.17433,6.98884,-0.0666063,-0.629174,6.76969,1.32405,-1.02836,6.6315,1.10665,-0.282022,6.97429,1.42014,-1.28022,6.76248,0.687934,-0.792862,7.13732,-0.519086,-0.936811,7.0869,-0.412607,-1.24864,6.89149,0.408689,-0.841249,6.96322,-0.529245,-1.08359,6.4402,1.20862,-1.30226,6.55834,0.760303,-8.88178e-16,6.98216,1.54723,-0.308085,6.77537,1.5221,-0.677455,6.56105,1.44783,-1.28178,6.8088,0.159271,-1.22904,6.86257,-0.0494058,-1.14139,6.90272,-0.2336,-1.00929,6.93804,-0.436165,-1.32308,6.7156,0.434031,-0.96489,6.88944,-0.662043,-1.12124,6.29905,1.26301,-1.36376,6.4354,0.856044,-0.328864,6.61567,1.5711,-0.739449,6.38407,1.48289,-1.37222,6.71032,0.16355,-1.28809,6.77344,-0.0766489,-1.19466,6.81476,-0.280234,-1.10215,6.86125,-0.47201,-1.39558,6.59706,0.482024,-0.233633,7.47132,1.36164,-0.906589,7.25042,0.924419,-1.13717,7.22168,0.551769,-1.14979,7.28492,0.0607913,-0.545114,7.33975,1.15959,-1.07471,7.3409,-0.217797,-0.943895,7.43034,-0.522548,-0.709137,7.71498,-0.806462,-0.817573,7.57032,-0.67045,-1.16242,7.24767,0.318401,-0.696672,7.44916,-0.673081,-0.956683,7.22082,-0.405539,-1.17125,7.10969,0.0882902,-1.07284,7.15761,-0.156917,-0.55161,7.09071,1.21451,-0.908883,7.03001,0.990166,-0.261818,7.25295,1.38103,-1.15249,7.02355,0.603724,-0.828717,7.32241,-0.574991,-1.17429,7.07319,0.351326,-1.03406,7.08481,-0.306851,-1.21856,7.00233,0.124455,-1.15209,7.04061,-0.109213,-0.620687,6.87204,1.29827,-1.02922,6.73386,1.0897,-0.284266,7.0652,1.42421,-1.27957,6.85841,0.678488,-0.783486,7.2316,-0.570055,-0.909019,7.15094,-0.47834,-1.24925,6.95828,0.405289,-1.1496,6.94082,-0.261502,-1.30286,6.85874,0.147486,-1.25242,6.90274,-0.0705539,-0.691807,6.62713,1.45406,-1.09964,6.49994,1.21258,-0.316649,6.83528,1.53663,-1.32979,6.62377,0.764289,-0.822843,7.03559,-0.535506,-1.01531,6.97267,-0.436458,-1.34485,6.77673,0.447066,-0.962371,6.90355,-0.654128,-1.12068,6.31348,1.26457,-1.35781,6.44736,0.849536,-0.325411,6.63083,1.56843,-0.737402,6.40205,1.48726,-1.36482,6.71787,0.162345,-1.28265,6.78178,-0.0757,-1.19108,6.82549,-0.277918,-1.09924,6.8705,-0.466266,-1.39188,6.60734,0.479457,-0.0558476,9.06589,1.07596,-0.0241488,8.45041,1.41067,-0.0385714,7.89495,1.3594,-0.0399887,7.50822,1.43541,-0.0380603,8.06368,1.37764,-0.0335346,7.70347,1.36272,-0.0602664,9.16291,1.01615,-0.029935,8.24878,1.41519,-0.0232522,8.74402,1.34334,-0.0467371,7.00374,1.58227,-0.0377553,7.97728,1.36948,-0.0447745,7.34045,1.45496,-0.0481064,7.19395,1.49377,-0.0480841,6.71555,1.56313,-0.0397342,8.93213,1.19589,-0.0451413,9.39002,0.764039,-0.0387268,7.46265,1.38745,-0.0427114,7.29598,1.41452,-0.0444185,7.13448,1.4657,-0.0447774,6.95039,1.54622,-0.0498117,6.76639,1.63178,-0.0391978,7.53178,1.42397,-0.043865,7.35868,1.44402,-0.0471173,7.21253,1.47887,-0.0464097,7.01768,1.5689,-0.0499256,6.78368,1.62794,-0.0936353,9.604,0.741989,-0.39601,9.7545,0.66084,-0.209719,9.65492,0.721058,-0.723087,9.73189,0.404503,-0.628159,9.7657,0.540556,-0.685638,9.75102,0.500355,-0.754673,9.71353,0.400203,-0.521056,9.77686,0.609638,-1.48322,8.18389,-0.00708664,-1.40678,8.07636,0.0197476,-1.31351,8.13244,-0.418219,-1.41904,8.28835,-0.385392,-1.28776,8.52024,-0.762104,-1.0222,8.34777,-0.896207,-1.17447,8.20133,-0.668468,-1.34993,8.39418,-0.583078,-1.40152,8.07553,0.218831,-1.47436,8.19444,0.177145,-1.36417,8.09084,-0.197264,-1.46709,8.21433,-0.194595,-0.164457,9.43744,0.743553,-0.0499347,9.41117,0.761998,-8.88178e-16,9.40925,0.764248,-0.488439,9.57101,0.639293,-0.348266,9.51627,0.688662,-0.800352,9.57309,0.537277,-0.763088,9.56799,0.552318,-0.715198,9.56974,0.584876,-0.621404,9.58063,0.613716,-0.407302,-6.3965e-06,0.0436081,-1.27562,-6.39579e-06,0.0147574,-1.26702,-6.38189e-06,0.283082,-0.412871,-6.36729e-06,0.751201,-0.455625,-6.37978e-06,0.430463,-1.25394,-0.000216938,-0.257379,-0.990348,-6.4163e-06,-0.277655,-0.723394,-6.41695e-06,-0.27566,-0.403003,-6.41809e-06,-0.277721,-0.69384,-6.39638e-06,0.0344671,-1.01717,-6.39599e-06,0.0314384,-1.02178,-6.38164e-06,0.331851,-0.734753,-6.37913e-06,0.423031,-1.46942,-6.36627e-06,0.774537,-0.729295,-6.36699e-06,0.758025,-1.15139,-6.36811e-06,0.73235,-0.673916,-6.35316e-06,1.07443,-1.22315,-6.35416e-06,1.05154,-1.55626,-6.35314e-06,1.07473,-0.330255,-6.35258e-06,1.08758,-1.30588,2.33173,0.0149183,-1.29989,2.33905,-0.0768289,-1.27202,2.04619,-0.114756,-1.27862,2.04422,-0.0303068,-1.13338,2.0597,-0.0282529,-1.14203,2.06132,-0.112676,-1.14621,2.3488,0.0179544,-1.15527,2.3555,-0.0737248,-1.32926,2.32922,0.0144592,-1.29564,2.0424,-0.0305864,-1.32184,2.33655,-0.0773194,-1.28786,2.04436,-0.11505,-1.26493,2.08701,-0.137056,-1.28993,2.28735,-0.114403,-1.38559,2.0433,-0.214713,-1.26395,2.09859,-0.00404445,-1.41583,2.2475,-0.226286,-1.28627,2.29316,0.0321208,-1.20938,2.11892,0.225171,-1.21863,2.31049,0.23707,-1.21046,2.30789,0.208324,-1.17973,2.11923,0.190534,-1.25996,2.30109,0.027811,-1.21243,2.31507,-0.245045,-1.23692,2.10875,-0.00992647,-1.18819,2.11044,-0.24671,-1.20899,2.71904,-0.165393,-1.25207,2.84022,0.0717215,-1.19652,2.92392,-0.174488,-1.23982,3.00787,0.0992935,-1.18958,2.92535,0.270598,-1.18596,3.05168,0.278547,-1.19291,2.9451,0.30721,-1.21804,2.75459,0.305566,-1.26701,2.92967,0.104351,-1.40822,2.89126,-0.0852738,-1.28034,2.73266,0.0784783,-1.41442,2.68468,-0.0909279,-1.27484,2.91513,-0.0324875,-1.28626,2.71129,-0.0461999,-1.3159,2.67797,-0.0291299,-1.2967,2.97308,-0.00682441,-1.32207,2.68173,0.0554066,-1.3033,2.97188,0.085301,-1.12937,2.96219,-0.0063242,-1.11965,2.95866,0.0854639,-1.16936,2.66876,-0.0294838,-1.1593,2.66994,0.05479,-1.30499,2.68051,0.055376,-1.29999,2.67696,-0.0291312,-1.27465,2.97164,-0.0067417,-1.27984,2.97019,0.0853341,-0.461164,0.781121,0.844178,-0.466477,0.837335,0.688042,-0.429261,0.774019,0.539136,-0.371317,0.628263,0.484688,-0.326587,0.48545,0.556593,-0.321223,0.428178,0.712927,-0.35849,0.492552,0.861635,-0.416434,0.638307,0.916083,-0.443962,0.743327,0.807418,-0.410667,0.637023,0.86094,-0.367537,0.52853,0.820412,-0.339835,0.4814,0.709574,-0.34379,0.523243,0.593353,-0.377084,0.629547,0.539831,-0.420215,0.73804,0.580359,-0.447916,0.78517,0.691197,-0.385811,0.746055,0.797038,-0.389201,0.781923,0.697414,-0.365455,0.741524,0.602403,-0.328483,0.648523,0.567662,-0.299943,0.557399,0.613542,-0.296553,0.521532,0.713166,-0.320299,0.561931,0.808177,-0.357271,0.654932,0.842918,-0.315158,0.713868,0.753441,-0.301618,0.670637,0.775207,-0.284078,0.626516,0.758726,-0.272813,0.60735,0.713651,-0.274421,0.624365,0.666387,-0.287961,0.667596,0.644621,-0.305501,0.711718,0.661103,-0.316766,0.730884,0.706178,-0.279671,0.654099,0.732429,-0.272635,0.677128,0.712045,-0.289114,0.691654,0.689399,-0.436877,0.743749,0.806231,-0.440766,0.784893,0.691952,-0.413526,0.73855,0.582965,-0.371116,0.631869,0.543113,-0.338378,0.527341,0.595742,-0.334489,0.486197,0.710021,-0.361728,0.532539,0.819009,-0.404138,0.63922,0.858859,-0.465692,0.620495,0.911346,-0.407747,0.474734,0.856899,-0.370454,0.409833,0.708289,-0.375845,0.467637,0.551856,-0.420574,0.61045,0.479951,-0.478518,0.756206,0.534399,-0.515734,0.819522,0.683305,-0.510421,0.763309,0.839442,-1.26657,0.808306,0.493823,-1.30452,0.795641,0.654964,-1.38426,0.683912,0.748372,-1.45908,0.538569,0.719329,-1.48516,0.444751,0.584849,-1.44722,0.457416,0.423708,-1.36748,0.569144,0.3303,-1.29265,0.714488,0.359343,-1.3661,0.719199,0.397776,-1.42087,0.612819,0.376519,-1.47923,0.531042,0.444886,-1.507,0.521772,0.562829,-1.48792,0.59044,0.661258,-1.43315,0.696819,0.682515,-1.37479,0.778595,0.614148,-1.34702,0.787865,0.496205,-1.52325,0.715093,0.539144,-1.53296,0.713429,0.509174,-1.52101,0.69978,0.483363,-1.49095,0.753329,0.548094,-1.51509,0.719508,0.57637,-1.53774,0.675511,0.567578,-1.54563,0.647112,0.52687,-1.53415,0.650945,0.478091,-1.51001,0.684767,0.449816,-1.48736,0.728763,0.458608,-1.47946,0.757162,0.499316,-1.41514,0.733751,0.406753,-1.46289,0.641013,0.388223,-1.51377,0.569723,0.447822,-1.53798,0.561643,0.55064,-1.52134,0.621504,0.636446,-1.4736,0.714242,0.654978,-1.42272,0.785531,0.595378,-1.39851,0.793612,0.49256,-1.36814,0.777514,0.61669,-1.4275,0.694348,0.686219,-1.48319,0.586161,0.664601,-1.5026,0.516327,0.5645,-1.47436,0.525755,0.444554,-1.41501,0.60892,0.375026,-1.35931,0.717108,0.396643,-1.3399,0.786941,0.496744,-1.33804,0.739594,0.350629,-1.41286,0.594251,0.321586,-1.4926,0.482522,0.414994,-1.53055,0.469857,0.576135,-1.50447,0.563675,0.710616,-1.42964,0.709018,0.739658,-1.3499,0.820746,0.646251,-1.31196,0.833411,0.485109,-1.16743,3.63709,0.45992,-1.25339,3.6302,0.24893,-1.21704,3.41321,0.210638,-0.409975,3.22617,0.628592,-0.452868,3.55902,0.754518,-0.521659,3.56624,0.842614,-1.15807,2.62835,0.482627,-1.13544,3.39457,0.38724,-1.10083,3.29414,0.608465,-0.633614,3.25811,0.782164,-0.822326,3.26655,0.786012,-1.31883,3.6035,0.683238,-1.16906,3.46589,0.442108,-0.672544,3.53397,1.06609,-0.675962,3.32046,0.833728,-1.14153,3.34873,0.66131,-0.859432,3.32157,0.840278,-1.21479,3.59922,0.919327,-0.933091,3.56936,1.07473,-1.17698,4.30296,1.02018,-1.15537,4.28856,0.8564,-0.781133,4.24829,1.07809,-0.924487,4.27631,1.1604,-0.735761,4.22188,1.03088,-1.11,4.26215,0.809183,-1.10469,4.26201,0.947081,-0.860104,4.2366,1.0774,-1.29172,3.97562,0.750202,-1.20478,3.95905,0.973674,-0.927878,3.92879,1.12692,-0.683455,3.91018,1.11053,-0.571008,3.89956,0.967287,-1.18677,3.96581,0.602518,-1.20517,3.62899,0.515782,-1.13983,3.42266,0.402131,-0.64673,3.27723,0.793751,-0.559533,3.55839,0.898404,-1.11085,3.30859,0.621734,-0.831793,3.28057,0.79948,-0.747104,4.22848,1.04268,-1.12134,4.26875,0.820988,-1.12276,4.27225,0.965357,-0.8762,4.24652,1.09815,-0.59912,3.90221,1.0031,-1.21301,3.96826,0.639439,-1.16424,4.26821,0.849495,-1.17878,4.2806,1.01716,-0.924708,4.25371,1.15822,-0.774781,4.2263,1.0802,-0.725048,4.20092,1.02674,-1.11499,4.24288,0.795745,-0.857282,4.21645,1.07082,-1.1037,4.24225,0.939208,-0.737481,4.20727,1.04011,-1.1273,4.24921,0.809182,-1.24914,1.96197,-0.178952,-0.414986,1.95607,-0.353849,-1.28376,2.96007,-0.136769,-0.381791,2.8367,-0.325976,-0.84911,1.96677,-0.537138,-0.683368,1.96515,-0.538737,-0.527617,1.96233,-0.478635,-1.14343,1.96536,-0.366156,-0.838194,2.793,-0.542682,-0.652923,2.78046,-0.54043,-0.494247,2.787,-0.466766,-1.16961,2.86858,-0.363455,-0.466213,0.566633,-0.251176,-0.413674,0.504901,0.450504,-1.07804,1.09479,0.91748,-0.972649,0.619688,-0.398664,-1.28759,0.448976,0.196158,-1.32343,0.453802,0.488573,-0.671957,0.615671,-0.427715,-0.652786,1.07731,0.909115,-0.390529,0.502167,0.0759872,-0.476147,0.780562,0.714817,-1.30345,0.762581,0.670227,-1.20731,0.54949,-0.163031,-0.464309,0.808765,-0.235687,-0.437274,0.774509,0.374743,-1.07148,1.14133,0.829282,-0.958492,0.84315,-0.387696,-1.25625,0.719717,0.109607,-1.29782,0.807912,0.324189,-0.680504,0.841521,-0.417657,-0.667357,1.12984,0.845017,-0.416793,0.769458,0.0544677,-0.536195,0.980873,0.624159,-1.23895,1.00907,0.588485,-1.18758,0.793045,-0.164153,-0.968392,-6.294e-06,2.42773,-1.1441,-6.29557e-06,2.39185,-0.8184,-6.29493e-06,2.40657,-0.801587,0.0505963,2.35725,-1.08176,0.0701109,2.33737,-0.890931,0.145089,2.31329,-1.02854,0.13252,2.3114,-0.832714,0.114053,2.32496,-0.964131,0.154172,2.30611,-0.971979,0.285007,2.15851,-0.71427,0.225009,2.17975,-1.10225,0.243271,2.1704,-0.835338,0.276072,2.16167,-1.20318,0.133201,2.20716,-0.630897,0.113277,2.2351,-0.589592,-6.29875e-06,2.319,-1.29444,-6.30107e-06,2.266,-1.44789,-6.30973e-06,2.06794,-0.421114,-6.30859e-06,2.09388,-0.475809,0.183392,2.00463,-1.34196,0.202167,1.9735,-0.784409,0.392911,1.90943,-1.19976,0.348498,1.92005,-0.601867,0.33381,1.93754,-0.99199,0.399469,1.90264,-1.01738,0.569816,1.38984,-0.506817,0.4964,1.41779,-1.3146,0.497983,1.37315,-0.744881,0.566407,1.4049,-1.46956,0.318749,1.36428,-0.354124,0.308194,1.42584,-0.26314,-6.33758e-06,1.43071,-1.55957,-6.34093e-06,1.35415,-1.2887,1.69807,0.0281047,-1.19949,1.56805,-0.282824,-0.653916,1.3929,-0.572765,-0.497036,1.82688,0.533305,-0.338087,1.47174,-0.00428325,-0.943288,1.41049,-0.499542,-0.960838,1.85411,0.671443,-0.357301,1.53833,0.290341,-0.423546,1.43296,-0.359208,-0.681087,1.23294,0.807091,-1.02017,1.24765,0.776912,-1.20848,1.13355,0.55713,-1.29194,0.995964,0.254819,-1.25333,0.900427,0.0506986,-1.18087,0.93394,-0.176781,-0.995851,1.05349,-0.371852,-0.632236,1.04932,-0.425182,-0.469837,0.934325,-0.22873,-0.423958,0.895668,0.0517108,-0.451267,0.9146,0.339187,-0.534933,1.16431,0.629688,-1.0362,0.60384,1.4622,-0.455305,0.521127,1.495,-1.35918,0.503442,1.44406,-0.712728,0.600226,1.48063,-1.52751,0.328219,1.44453,-0.29468,0.32384,1.50364,-0.21341,-6.33422e-06,1.50767,-1.63445,-6.33774e-06,1.42714,-1.52252,-6.35434e-06,1.04733,-0.325205,-6.35136e-06,1.11555,-0.383664,0.418815,1.11613,-1.42003,0.431597,1.05905,-0.757723,0.745841,1.1041,-1.2804,0.655761,1.07239,-0.534034,0.65369,1.11361,-1.00917,0.750392,1.09034,-1.01789,0.797933,1.13509,-0.51403,0.714169,1.16152,-1.2966,0.706732,1.11635,-0.748159,0.797843,1.15074,-1.45928,0.471866,1.09756,-0.348892,0.458985,1.15844,-0.238958,-6.34966e-06,1.15446,-1.61756,-6.35282e-06,1.08204,-1.45385,-6.37076e-06,0.671785,-0.357481,-6.3681e-06,0.732485,-0.454366,0.537002,0.728539,-1.33558,0.551557,0.679545,-0.773866,0.950002,0.711719,-1.1697,0.836612,0.689676,-0.583844,0.833725,0.722093,-0.970559,0.956002,0.700918,-0.389841,-6.3191e-06,1.85357,-1.48126,-6.32173e-06,1.7934,-0.455792,0.198496,1.84994,-1.36566,0.215076,1.79978,-0.777808,0.412404,1.83219,-0.585643,0.353642,1.84278,-1.22499,0.364608,1.80753,-0.99746,0.417735,1.82008,-1.00628,0.440574,1.90489,-1.24628,0.384858,1.89165,-0.571896,0.374279,1.92883,-0.774568,0.434946,1.91766,-1.39466,0.23027,1.88347,-0.434929,0.212833,1.93639,-1.51659,-6.31809e-06,1.87675,-0.365363,-6.31531e-06,1.94022,-0.458766,0.920013,-0.279056,-0.377877,0.646653,0.436606,-0.984125,0.947877,-0.421465,-1.335,0.780741,0.0538123,-1.33756,0.67928,0.29422,-0.687114,0.948182,-0.436876,-0.338575,0.774375,0.0937054,-0.417733,0.529508,0.82856,-1.46447,0.539726,0.776228,-1.22369,0.872684,-0.232796,-0.679799,-6.43868e-06,-0.558904,-1.3209,-6.41546e-06,-0.275525,-1.34382,-6.39402e-06,0.0148651,-1.45233,-6.37479e-06,0.271039,-0.347842,-6.42242e-06,-0.320981,-0.354973,-6.39539e-06,0.0463634,-0.343373,-6.36893e-06,0.420584,-1.0995,-6.43518e-06,-0.532634,-0.3815,0.286745,0.411504,-0.328315,0.419292,0.0678627,-0.360253,0.448133,-0.289848,-1.37471,0.315882,0.267116,-1.38291,0.385162,0.0294301,-1.32163,0.435526,-0.241994,-1.01941,0.442244,-0.529966,-0.642546,0.443917,-0.554951,-0.680701,0.670339,-0.512596,-1.23705,0.657457,-0.230208,-1.34139,0.616799,0.048312,-1.3511,0.52074,0.289046,-0.455213,0.647485,-0.246533,-0.340822,0.629119,0.0865085,-0.383378,0.510413,0.402604,-0.986721,0.671239,-0.496278,-1.66156,-6.33757e-06,0.766654,-1.59493,0.19435,0.767512,-1.54321,0.363,0.771696,-0.299942,0.124877,0.832711,-0.261975,-6.3381e-06,0.830366,-0.356749,0.337334,0.831458,-1.0599,1.25993,-0.257421,-0.550692,1.21598,-0.325752,-0.669049,1.22476,-0.353293,-0.80809,1.23755,-0.372266,-0.473327,1.20894,-0.162654,-1.14666,1.26385,-0.121516,-1.288,2.98129,0.151112,-0.39296,2.93195,0.574378,-1.30675,2.18167,0.0601634,-0.713301,1.55512,0.793565,-1.00134,1.54714,0.768441,-1.22627,1.49728,0.538229,-1.32868,1.38533,0.243616,-1.31877,1.31927,0.0309145,-1.23678,1.20167,-0.247409,-1.00347,1.22472,-0.471722,-0.609174,1.2087,-0.533566,-0.403778,1.17313,-0.317377,-0.331647,1.17628,0.0210544,-0.356412,1.22168,0.328454,-0.47867,1.49451,0.613209,-0.680793,2.21897,0.688619,-0.948268,2.21406,0.661509,-0.458263,2.22159,0.531065,-1.3149,2.65733,0.0982695,-0.416363,2.64812,0.528645,-1.13173,2.95465,0.540582,-0.647282,2.92592,0.733413,-1.26359,2.63935,0.272165,-0.660102,2.61634,0.692064,-0.908575,2.60999,0.671023,-1.22546,2.97363,0.323267,-0.880001,2.92756,0.714355,-1.15319,2.20431,0.479808,-1.27255,2.18968,0.243315,-0.72809,1.52228,0.751425,-0.981452,1.51392,0.728655,-1.18576,1.46226,0.516509,-1.28043,1.3512,0.23734,-1.26792,1.28522,0.0388945,-1.1929,1.18389,-0.21823,-0.971801,1.21683,-0.430276,-0.642155,1.20652,-0.492709,-0.448657,1.16247,-0.28843,-0.384668,1.15925,0.0260909,-0.408276,1.20004,0.316838,-0.519075,1.46584,0.585588,-0.699941,1.85125,0.685431,-1.15592,1.83559,0.476767,-1.26685,1.77356,0.216617,-0.71209,1.58518,0.782475,-0.997158,1.57818,0.758493,-1.21903,1.53149,0.531925,-1.32233,1.42492,0.240847,-1.31568,1.35812,0.0306263,-1.23296,1.23925,-0.251042,-0.997298,1.24377,-0.474575,-0.613762,1.22759,-0.537586,-0.405806,1.19978,-0.321667,-0.332308,1.20659,0.0184557,-0.356503,1.25415,0.324545,-0.480537,1.5283,0.605013,-0.807728,-6.43232e-06,-0.492708,-0.942668,-6.43122e-06,-0.481073,-0.359224,-6.33562e-06,1.47569,-1.47985,-6.33844e-06,1.41111,-1.17537,-6.33767e-06,1.42866,-0.673346,-6.33641e-06,1.45759,-0.725063,-6.31887e-06,1.85888,-1.16295,-6.31997e-06,1.83365,-1.42853,-6.32064e-06,1.81834,-0.451072,-6.31818e-06,1.87467,-1.05377,-6.29799e-06,2.33644,-0.85912,-6.29758e-06,2.34584,-0.770581,-6.3078e-06,2.11211,-0.542757,-6.30722e-06,2.12524,-1.35552,-6.30927e-06,2.0784,-1.13469,-6.30872e-06,2.09113,-0.434958,-6.41827e-06,-0.277515,-0.435881,-6.39645e-06,0.0426964,-0.483464,-6.37926e-06,0.429721,-0.44443,-6.36726e-06,0.751881,-0.364531,-6.35264e-06,1.08626,-0.390553,-6.3357e-06,1.47388,-0.478399,-6.31825e-06,1.8731,-0.565479,-6.30728e-06,2.12393,-1.23193,-6.41428e-06,-0.259724,-1.2441,-6.39573e-06,0.0167916,-1.23711,-6.38149e-06,0.289029,-1.43064,-6.36649e-06,0.769393,-1.51564,-6.35327e-06,1.0719,-1.44272,-6.33835e-06,1.41325,-1.39614,-6.32056e-06,1.82021,-1.32859,-6.3092e-06,2.07996,-0.838476,-6.29896e-06,2.31438,-0.671883,-0.000328881,2.27822,-1.20979,0.000349658,2.25983,-1.06825,-6.29939e-06,2.30452,-0.687832,-6.30128e-06,2.26116,-1.1936,-6.30201e-06,2.24455,-0.628361,-0.000325434,-0.4517,-0.802078,-6.43142e-06,-0.478167,-0.945862,-6.43012e-06,-0.467444,-1.07654,-0.000176897,-0.445314,-0.634663,4.03011e-05,-0.439184,-1.06913,-2.47859e-05,-0.433538,-1.15281,7.84932,0.732566,-1.02884,7.18582,0.760986,-1.04633,7.48992,0.667375,-1.29936,8.14217,0.594306,-1.42385,8.32208,0.564128,-1.2312,6.53935,0.999114,-1.06941,6.98126,0.815587,-1.19895,6.75151,0.907431,-1.1999,6.31595,1.01771,-0.973239,7.16111,0.735,-1.067,6.929,0.814452,-1.17962,6.68462,0.903839,-1.19332,6.49855,0.985018,-1.25149,6.36621,1.06466,-1.0338,7.21744,0.749622,-1.04287,7.01417,0.797031,-1.18023,6.78344,0.891745,-1.22743,6.55474,0.988965,-1.24673,6.37937,1.0599,-1.0848,8.57531,1.02869,-1.26645,2.46102,-0.157861,-0.407579,2.39966,-0.332246,-0.843652,2.37989,-0.53991,-0.668146,2.3728,-0.539584,-0.515147,2.37617,-0.469185,-1.15652,2.41697,-0.364806,-0.814202,1.59412,-0.4577,-1.09287,1.60773,-0.31362,-1.18929,1.6081,-0.152028,-0.436538,1.58227,-0.255813,-0.535312,1.58844,-0.401675,-0.669081,1.59097,-0.447499,-1.37217,4.55643,-0.124973,-0.164654,4.36735,-0.254191,-0.822119,4.47536,-0.645971,-0.334341,4.39552,-0.53338,-0.584028,4.43946,-0.629051,-1.19403,4.52494,-0.448503,0.000622508,9.37874,-0.849514,-8.88178e-16,9.49208,-0.771903,4.7793e-05,9.55431,-0.73164,9.81142e-05,9.53471,-0.725491,-8.88178e-16,8.73048,-1.0934,-8.88178e-16,8.50387,-1.12801,-8.88178e-16,9.59146,0.74638,-8.88178e-16,7.05105,1.57154,-8.88178e-16,8.24821,1.41598,-8.88178e-16,7.51918,1.43929,-8.88178e-16,6.81377,1.6327,-8.88178e-16,7.37736,1.448,-8.88178e-16,6.79603,1.63658,-8.88178e-16,7.16361,1.46898,-8.88178e-16,9.38926,0.766208,-8.88178e-16,7.97805,1.37499,-0.500149,6.17609,1.36244,-0.217016,6.16859,1.47093,0,6.16333,1.48198,-0.114675,5.00972,1.12501,-0.469853,6.20299,1.36949,-0.256166,5.35529,1.35937,-0.477028,5.80914,1.43164,-0.470357,6.1753,1.37386,-0.003073,9.1912,-0.925051,0.108215,9.19215,-0.914283,0.167592,8.34013,-1.08133,0.681061,9.44915,-0.743908,0.121073,8.72755,-1.05424,0.82083,9.30647,-0.839652,0.920417,8.64071,-0.968879,1.04516,8.78605,-0.918264,0.892716,9.45877,-0.722519,1.18353,8.95742,-0.861669,0.801336,8.98608,-0.943815,0.930281,9.13709,-0.902773,1.03166,9.31619,-0.829477,0.498321,9.18067,-0.899012,0.384714,9.19285,-0.910507,0.626642,8.85707,-0.993186,0.448973,8.78231,-1.02733,0.583776,8.42817,-1.04041,0.779697,8.51237,-1.02262,0.697926,9.16216,-0.900021,0.582664,9.30172,-0.839698,0.56488,9.0488,-0.96172,0.396103,8.99359,-0.973637,0.10763,8.97622,-0.991797,0.243976,9.19223,-0.906027,0.273,8.74414,-1.03653,0.366069,8.37397,-1.05567,0.238852,8.97641,-0.979858,0.865658,8.82401,-0.966894,0.990117,8.95397,-0.923049,1.13288,9.11555,-0.858868,0.696694,8.67986,-1.01401,0.523102,8.58589,-1.04414,0.146644,8.50307,-1.08476,0.325939,8.54529,-1.05914,0.592728,9.6172,-0.444366,0.286892,9.52368,-0.659464,0.448305,9.55169,-0.579823,0.124942,9.5217,-0.69375,0.135287,9.47847,-0.733327,0.515985,9.5281,-0.631134,0.332567,9.49373,-0.69122,0.646708,9.58573,-0.566581,0.744367,9.55013,-0.630761,0.28909,9.3893,-0.782715,0.455795,9.38012,-0.783675,0.129615,9.3766,-0.806083,0.124244,9.55866,-0.700216,0.281518,9.56012,-0.664711,0.58073,9.64911,-0.450652,0.437166,9.58836,-0.583589,1.23111,4.95519,1.00802,0.860301,4.61757,1.36347,0.874464,4.62829,1.35088,1.22862,4.93203,1.02112,1.10431,5.65297,1.0009,0.733346,5.45398,1.44201,0.717196,5.45033,1.45855,1.22227,4.94697,1.01996,0.87131,4.64614,1.34865,1.22481,4.97141,1.00643,0.857345,4.6357,1.36111,0.805736,6.60502,0.855035,0.485687,6.6032,1.14123,0.471918,6.59881,1.15504,0.79388,6.59071,0.879455,1.03658,6.61503,0.548304,0.803338,6.59402,0.862927,1.02741,6.61025,0.565817,1.25749,4.8913,1.10901,1.54941,5.19326,0.658291,1.26788,4.90153,1.09322,1.53761,5.18116,0.676439,1.15266,5.63575,1.13854,1.48276,5.84839,0.66323,1.16556,5.64067,1.12238,1.47098,5.83565,0.683817,1.54531,5.16607,0.678623,1.27336,4.88382,1.0964,1.26272,4.87345,1.11242,1.5579,5.17766,0.660169,1.6707,5.45201,0.162186,1.61352,5.19747,0.737636,1.61444,5.20614,0.717345,1.64903,5.44214,0.190558,1.53393,5.86292,0.72827,1.52606,6.03371,0.145654,1.52907,5.8583,0.743335,1.63856,5.45681,0.190405,1.60523,5.22352,0.715458,1.66037,5.46608,0.161849,1.60459,5.21469,0.735428,1.04664,6.61438,0.557526,1.13807,6.67709,0.0840332,1.04526,6.60822,0.569838,1.15404,6.68501,0.0976604,0.927779,6.66873,-0.309474,1.14467,6.68938,0.088545,0.936918,6.67077,-0.293666,1.72123,5.50301,0.202874,1.45445,5.58012,-0.29714,1.71209,5.50522,0.185297,1.46509,5.57728,-0.276893,1.57747,6.05059,0.181926,1.33285,6.0435,-0.304587,1.57037,6.04819,0.164711,1.34521,6.04065,-0.284453,1.47287,5.56405,-0.277508,1.7201,5.49034,0.187538,1.72938,5.48797,0.205414,1.4624,5.56639,-0.298266,0.799654,6.27963,0.911206,0.483485,6.15123,1.22905,0.805083,6.30092,0.897014,0.470829,6.14887,1.24102,1.09679,5.67361,0.993743,0.727738,5.47457,1.43697,0.711882,5.47066,1.45344,0.916151,6.10406,0.904104,1.15709,6.27265,0.488399,0.925481,6.10787,0.889704,1.14867,6.26206,0.505881,1.14447,5.65717,1.13238,1.47199,5.86736,0.657831,1.15738,5.66197,1.11621,1.46055,5.85471,0.678163,1.22376,6.32215,0.0809327,1.20262,6.21103,0.545251,1.23851,6.33019,0.0558579,1.2012,6.20879,0.563074,1.49512,6.02832,0.170325,1.52783,5.8739,0.726507,1.51722,6.04457,0.144386,1.52329,5.86935,0.740704,1.25919,6.35556,0.071204,1.01897,6.33669,-0.335784,1.25173,6.35286,0.056883,1.03047,6.33425,-0.318922,1.55992,6.07469,0.179586,1.31544,6.06523,-0.302733,1.55288,6.07217,0.162582,1.32769,6.06243,-0.283055,0.846593,6.33774,0.844265,0.484563,6.19536,1.23262,0.4704,6.189,1.24712,1.0981,5.64714,1.0202,0.794565,6.59939,0.869356,1.08766,5.66654,1.01371,0.832785,6.33083,0.859301,0.889645,6.12276,1.00598,1.17381,6.24125,0.603225,0.900333,6.12749,0.989776,1.1642,6.23189,0.621931,1.50163,6.01768,0.173938,1.12413,6.66889,0.107133,1.25946,6.20598,0.640932,1.29853,6.32366,0.113777,1.25699,6.19999,0.654515,1.2808,6.31118,0.138614,1.33731,6.37921,0.147945,1.09117,6.34153,-0.28609,1.32903,6.38095,0.136189,1.10278,6.34021,-0.269099,0.488873,6.19916,1.33033,0.25033,5.36706,1.32517,0.0542856,4.92698,1.14809,0.099046,5.03876,1.10788,0.211915,6.19269,1.43786,0.497832,5.81178,1.39333,0.192268,5.80326,1.49456,0.137399,5.39236,1.46901,0.0731335,4.59217,-0.0120733,0.100917,4.40748,-0.00173656,0.314639,4.62306,-0.377636,0.323407,4.44108,-0.37114,0.606193,4.89125,0.900865,0.635467,4.72966,0.842964,0.21943,4.72685,0.739344,0.246582,4.55575,0.702634,0.0829097,4.62919,0.373319,0.11349,4.46831,0.368416,0.233284,4.07833,0.0793629,0.193658,4.25569,0.0537732,0.217643,4.09561,0.356387,0.189429,4.26947,0.359929,0.332088,4.05768,-0.21682,0.300387,4.23265,-0.277352,0.471438,4.14229,0.777566,0.44958,4.31299,0.775623,0.316056,4.11667,0.635807,0.294851,4.28226,0.649578,0.40585,4.83688,0.870815,0.437631,4.66662,0.844451,0.677144,4.18713,0.742934,0.658498,4.33369,0.767106,0.364748,4.62579,-0.408845,0.373232,4.44378,-0.402012,0.39098,4.05259,-0.261568,0.3599,4.22736,-0.32292,0.603477,1.9121,-0.423421,0.611304,1.73453,-0.380341,0.51636,2.60852,-0.4121,0.494412,2.74866,-0.390885,0.594355,2.63918,0.562351,0.608609,2.80675,0.598348,0.468806,2.64917,0.48992,0.506257,2.46745,0.501908,0.639104,2.8008,0.592587,0.660693,2.61333,0.59948,0.546858,1.92416,-0.36961,0.543625,1.74757,-0.31443,0.379231,2.39217,0.260569,0.426134,2.20008,0.276134,0.364949,2.12315,-0.0378521,0.394168,1.92814,-0.000206508,0.341923,2.59239,0.135694,0.317452,2.72863,0.141434,0.45498,2.62563,0.437593,0.428913,2.74901,0.485939,0.480975,2.6055,-0.377078,0.459352,2.74443,-0.356505,0.378742,2.59491,-0.14181,0.352606,2.73059,-0.126871,0.394545,1.81181,-0.104572,0.464011,1.66839,-0.175256,0.479311,1.8989,-0.294257,0.528147,1.7355,-0.346588,0.563943,1.71612,0.45266,0.566577,1.57368,0.418656,0.404593,1.70103,0.205313,0.413268,1.57448,0.0944608,0.734736,1.74209,0.591877,0.718168,1.57192,0.557004,0.516637,1.94321,-0.369086,0.573191,1.78599,-0.431116,0.427614,4.86104,1.0022,0.717274,5.05475,1.05587,1.05952,5.38334,0.910986,1.33512,5.53984,0.56735,1.00986,3.98499,0.634113,1.36975,4.01367,0.23084,0.501112,3.88802,0.822398,0.736715,3.93073,0.796428,1.03413,4.60923,0.725036,1.2866,4.68491,0.418816,0.46465,4.35353,0.846539,0.729448,4.45428,0.847219,1.28369,5.80026,0.566486,1.06291,5.63168,0.915936,0.713315,5.23881,1.10903,0.412403,5.00045,1.04823,1.23023,5.46826,0.74114,1.14479,4.00519,0.435202,1.18749,4.64706,0.579617,1.18166,5.72239,0.74374,1.2959,3.92804,-0.030067,1.3978,5.19965,-0.0838505,0.213585,3.91733,-0.109469,0.162325,4.82782,-0.317196,1.14414,3.99656,-0.272366,0.838192,4.94292,-0.560915,0.613729,4.88263,-0.566678,0.34107,4.83686,-0.500145,1.20101,5.05931,-0.341341,0.792062,4.01562,-0.432439,0.363157,3.96462,-0.27842,0.565495,4.00626,-0.393196,1.23195,4.74797,-0.244392,1.23195,4.95843,-0.261327,1.19308,5.03106,0.555964,1.18287,4.84155,0.531235,1.28859,4.7822,-0.010871,1.28145,4.82262,0.26605,1.28854,4.98809,-0.0191948,1.28159,5.01925,0.276103,1.1953,4.8388,0.497508,1.20424,5.02929,0.5205,1.23321,5.03065,0.520132,1.22429,4.83979,0.497058,1.31846,5.01582,0.275463,1.39471,4.95643,-0.0412652,1.31822,4.81639,0.265868,1.39471,4.74988,-0.0333644,1.2117,4.84217,0.531258,1.2219,5.03201,0.555988,1.31348,4.98215,0.096143,1.31405,4.77841,0.0939912,1.3522,4.77259,0.175044,1.35109,5.02557,0.176828,1.35469,4.78024,0.259587,1.35636,5.03157,0.268851,1.22581,5.0261,0.176259,1.21518,5.03148,0.26786,1.24426,4.77376,0.174007,1.23616,4.77975,0.258406,1.3602,4.79028,0.256864,1.35615,4.78004,0.172864,1.35011,5.01685,0.175815,1.35392,5.02274,0.267787,1.37105,4.4489,0.249758,1.36506,4.45622,0.158003,1.34384,4.2229,0.122854,1.35044,4.22093,0.207293,1.22606,4.22417,0.211395,1.23201,4.22902,0.126743,1.23425,4.47294,0.255482,1.24266,4.4791,0.163701,1.37451,4.45717,0.251925,1.34386,4.21128,0.208809,1.36705,4.46455,0.160155,1.3391,4.21571,0.124133,1.30345,4.23731,0.0391949,1.32479,4.43753,0.0708511,1.43297,4.19567,-0.0630484,1.3126,4.25013,0.21711,1.45654,4.40004,-0.042933,1.33651,4.44506,0.25226,1.14845,4.27296,0.440566,1.17922,4.462,0.458346,1.15003,4.46385,0.459839,1.11931,4.2752,0.442049,1.29989,4.45237,0.255765,1.2718,4.46544,-0.0326934,1.27656,4.26021,0.220533,1.24844,4.26178,-0.052253,1.22999,4.47441,-0.177091,1.17105,4.27173,-0.182735,0.589011,9.2982,0.757734,0.968417,9.3801,0.629753,0.172975,9.08376,1.00515,1.11182,9.20222,0.757404,0.671429,9.16864,0.884182,0.869969,8.52034,1.08108,0.194862,8.45262,1.29614,0.236057,8.06072,1.28055,0.891635,8.13091,1.04608,0.97619,7.89185,0.902251,0.22199,7.88761,1.26626,0.227349,7.44857,1.34614,0.880644,7.22653,0.918749,1.36269,8.10565,0.408798,1.10984,7.20651,0.550029,1.12541,7.27308,0.0699728,1.28386,7.82749,0.529445,1.24953,7.79308,0.0304257,0.498327,9.49397,0.638924,0.834085,9.50592,0.544423,0.859379,9.3472,0.687163,0.980931,9.21246,0.81271,0.732881,9.50294,0.584278,1.18664,8.54439,0.914838,1.35306,8.43613,0.71247,1.09453,8.30782,0.927236,1.19253,8.19992,0.76936,0.890903,8.20898,-0.908566,0.800113,8.01378,-0.872131,0.935784,7.67491,-0.534809,1.10293,7.87978,-0.475855,1.18457,7.81345,-0.219872,1.06015,7.54515,-0.218112,1.12998,7.48865,0.0490511,0.186149,7.67058,1.25703,0.913936,7.51374,0.782674,1.12685,7.48103,0.518527,0.18954,9.19297,0.934677,0.429015,9.13679,0.904154,0.539081,8.48078,1.17598,0.566313,8.05767,1.17659,0.586686,7.85494,1.09756,0.529227,7.31502,1.14755,0.537573,7.57239,1.04101,0.394313,9.24802,0.818941,0.750643,9.32668,0.716161,0.854026,9.20056,0.854527,0.638432,9.50309,0.609592,0.206841,8.24815,1.32497,0.887388,8.32012,1.09621,0.550453,8.2669,1.20539,1.03503,8.41506,0.995456,1.43243,8.24784,0.393074,0.176537,8.73775,1.24495,0.846725,8.75738,1.06007,1.15466,8.74266,0.935459,1.2788,8.68174,0.844964,0.513106,8.73871,1.11214,1.04285,8.77912,1.01982,0.932261,7.41761,-0.497468,1.05229,7.33026,-0.203314,0.69186,7.69165,-0.767552,1.14046,6.93059,-0.245228,0.811228,7.00456,-0.521365,1.2836,6.84667,0.154413,1.23317,6.89359,-0.0607293,1.30581,6.60931,0.765183,1.08568,6.48592,1.20677,0.687515,6.6081,1.448,0.314802,6.81543,1.52305,0.230696,7.97296,1.27077,0.937014,8.0185,0.974915,0.924134,9.3689,0.652205,1.06637,9.20562,0.785124,0.791482,9.50486,0.554772,1.25878,8.48235,0.843693,1.14495,8.25266,0.846793,0.583064,7.95528,1.14148,1.22478,8.70617,0.897263,0.692775,7.42502,-0.63686,0.95157,7.21071,-0.376445,1.15588,7.09308,0.0984715,1.06222,7.145,-0.137691,0.546368,7.05915,1.20323,0.91508,6.98458,0.99149,0.25672,7.23028,1.3651,1.14929,6.99214,0.609552,1.03346,7.06657,-0.279971,1.20271,6.98229,0.133325,1.15026,7.0211,-0.0930879,0.625259,6.83243,1.29439,1.02652,6.69311,1.08992,0.282361,7.03528,1.41385,1.26968,6.82536,0.68308,0.774579,7.19811,-0.539638,0.330003,6.59398,1.49624,0.711216,6.35879,1.40951,1.06313,6.27388,1.20606,1.29446,6.40808,0.824194,1.23559,6.75978,-0.0409673,1.31512,6.69841,0.182793,0.940637,6.80818,-0.644368,1.14478,6.78995,-0.235995,1.02024,8.05218,-0.706718,0.868818,7.84163,-0.700118,0.808934,7.55411,-0.638027,1.00193,6.95834,-0.425126,0.831451,7.30991,-0.54733,0.908157,7.12696,-0.454619,1.05434,6.83627,-0.423652,0.167267,8.9442,1.13075,0.771291,8.97858,0.996947,1.08729,8.95915,0.924009,1.21152,8.92093,0.866027,0.489176,8.95347,1.02626,0.958527,8.9951,0.959881,1.16458,8.9348,0.899325,1.32557,6.76139,0.450172,1.28756,7.80635,0.286186,1.14708,7.47177,0.297376,1.13507,7.2334,0.322921,1.1635,7.05157,0.358837,1.23359,6.93323,0.414473,1.32442,6.57503,0.472904,0.155448,9.40137,0.717925,0.337052,9.47998,0.661537,0.679866,7.66309,-0.702449,0.898228,7.38792,-0.436486,1.07601,7.23938,0.084137,1.0005,7.30012,-0.167694,0.503135,7.25927,1.11641,0.83523,7.17886,0.88822,0.219325,7.3944,1.30092,1.05583,7.1691,0.538388,0.783733,7.51921,-0.576162,1.07808,7.19423,0.320775,0.93697,7.1834,-0.317043,1.12439,7.06483,0.115345,1.042,7.11701,-0.102311,0.530226,6.99686,1.18341,0.918139,6.90277,0.989007,0.243686,7.17357,1.32944,1.14278,6.95132,0.603968,0.725306,7.41031,-0.559789,0.83916,7.28221,-0.472046,1.1418,7.02045,0.36393,1.03447,7.03062,-0.236105,1.18815,6.94612,0.147282,1.14606,6.9844,-0.0575972,0.614463,6.75929,1.30007,1.00917,6.62092,1.08617,0.270915,6.96703,1.39323,1.25176,6.75671,0.680396,0.782923,7.15066,-0.494125,0.918406,7.09296,-0.389705,1.21913,6.88638,0.410284,0.825819,6.9578,-0.504094,1.06245,6.43991,1.18734,1.27345,6.55644,0.75215,0.304593,6.77759,1.49239,0.667741,6.56268,1.41949,1.25238,6.80935,0.16521,1.2012,6.86596,-0.0387643,1.1152,6.90531,-0.219195,0.98818,6.93087,-0.416094,1.29312,6.71469,0.435314,0.939426,6.8873,-0.646328,1.10259,6.31261,1.24382,1.33514,6.4399,0.848253,0.329653,6.62747,1.54353,0.734202,6.39819,1.45694,1.34303,6.71314,0.169846,1.26059,6.77682,-0.0651624,1.16847,6.8203,-0.266691,1.07616,6.86121,-0.45702,1.36574,6.60012,0.482586,0.21855,7.46036,1.33814,0.885475,7.24448,0.903953,1.10858,7.22193,0.542685,1.12024,7.28635,0.0657454,0.527528,7.33053,1.1371,1.04654,7.34268,-0.207625,0.919939,7.43468,-0.505019,0.692159,7.72592,-0.784285,0.79925,7.57905,-0.648359,1.13247,7.24911,0.317742,0.678278,7.45086,-0.649443,0.930509,7.21482,-0.392164,1.14567,7.09426,0.0910084,1.04627,7.14661,-0.148366,0.534427,7.0757,1.19504,0.891022,7.01232,0.973791,0.245747,7.23939,1.35963,1.13178,7.00383,0.594668,0.807859,7.32202,-0.553433,1.15067,7.05507,0.347638,1.01193,7.06662,-0.297921,1.19847,6.98006,0.124579,1.13264,7.01816,-0.105035,0.604641,6.85332,1.28118,1.01314,6.7152,1.07257,0.268027,7.04729,1.40645,1.25983,6.83795,0.668892,0.764029,7.22437,-0.548398,0.886795,7.14053,-0.461085,1.22841,6.93697,0.401891,1.13033,6.91947,-0.252952,1.2802,6.83908,0.147095,1.23149,6.88154,-0.0670583,0.67662,6.60589,1.4393,1.08312,6.47964,1.19791,0.301531,6.81564,1.51972,1.30708,6.60803,0.752604,0.806472,7.02145,-0.514719,0.997158,6.95401,-0.421549,1.32128,6.75885,0.442053,0.943919,6.88282,-0.642732,1.10124,6.30657,1.24279,1.33616,6.43058,0.837306,0.315616,6.62323,1.54111,0.725527,6.39735,1.46011,1.34112,6.69949,0.161932,1.25864,6.76462,-0.0703238,1.16742,6.80889,-0.269895,1.07814,6.85145,-0.456705,1.36822,6.59017,0.472702,0.0541062,9.04783,1.05207,0.0190693,8.44623,1.3814,0.0313257,7.89689,1.33035,0.0357982,7.51317,1.40612,0.0316047,8.06791,1.34865,0.0251408,7.69839,1.33437,0.058384,9.14426,0.99273,0.0241899,8.25056,1.3858,0.0195397,8.73195,1.31614,0.0432287,7.00168,1.55255,0.0309115,7.98043,1.34044,0.0409209,7.34298,1.42532,0.042126,7.19029,1.4646,0.0577734,6.73802,1.54577,0.0376769,8.91359,1.1724,0.0438769,9.37623,0.737428,0.033878,7.46765,1.35827,0.0376126,7.29725,1.38498,0.0374016,7.13036,1.43683,0.0438206,6.95225,1.51629,0.0510184,6.77636,1.60351,0.030163,7.52005,1.39788,0.0331118,7.34446,1.41989,0.0338994,7.19519,1.45826,0.0318652,6.99931,1.55017,0.040847,6.77458,1.60083,0.0904382,9.6016,0.712257,0.386443,9.75279,0.632459,0.202615,9.65323,0.691961,0.705939,9.71403,0.387562,0.616068,9.75676,0.514598,0.666692,9.73809,0.481023,0.745211,9.6927,0.380798,0.510492,9.77254,0.581895,1.45907,8.20151,-0.00456246,1.38078,8.09101,0.0227845,1.29011,8.14606,-0.4053,1.39613,8.30283,-0.372536,1.26802,8.53277,-0.743305,1.00234,8.35881,-0.876623,1.15337,8.21318,-0.650733,1.32877,8.40688,-0.566032,1.37411,8.08766,0.217564,1.44857,8.20957,0.17477,1.33959,8.10596,-0.18909,1.44386,8.23159,-0.186708,0.157857,9.43656,0.714302,0.0470983,9.40895,0.732215,0.480487,9.56438,0.611138,0.340707,9.51255,0.65987,0.792714,9.5535,0.515884,0.749223,9.54984,0.532876,0.701014,9.55517,0.562817,0.612175,9.57013,0.587174,0.407302,0.0299936,0.0436082,1.27568,0.0299927,0.0147483,1.26702,0.0299936,0.283082,0.412871,0.0299927,0.751201,0.455625,0.0299936,0.430463,1.25411,0.0297822,-0.257468,0.990348,0.0299936,-0.277655,0.723395,0.0299936,-0.275658,0.402945,0.0299927,-0.277802,0.69384,0.0299936,0.0344672,1.01717,0.0299936,0.0314385,1.02178,0.0299936,0.331851,0.734753,0.0299936,0.423031,1.46942,0.0299936,0.774537,0.729295,0.0299936,0.758025,1.15139,0.0299936,0.73235,0.673916,0.0299936,1.07443,1.22315,0.0299936,1.05154,1.55626,0.0299936,1.07473,0.330255,0.0299927,1.08758,1.30256,2.302,0.0126935,1.29656,2.30931,-0.079061,1.27534,2.076,-0.11421,1.28194,2.07403,-0.0297712,1.15756,2.07727,-0.0256692,1.16351,2.08212,-0.110321,1.16575,2.32604,0.0184177,1.17417,2.3322,-0.0733632,1.30602,2.31027,0.0148611,1.27537,2.06438,-0.0282554,1.29855,2.31765,-0.0769092,1.27061,2.06881,-0.112931,1.2396,2.09071,-0.152696,1.26284,2.29113,-0.126716,1.36806,2.04635,-0.238864,1.23443,2.10217,-0.00800606,1.3983,2.25056,-0.250438,1.25692,2.29669,0.0270147,1.18076,2.1223,0.216823,1.19001,2.31387,0.228722,1.18207,2.31309,0.200138,1.15135,2.12443,0.182348,1.23035,2.3054,0.0257135,1.18311,2.318,-0.239417,1.20719,2.11278,-0.0103211,1.15887,2.11337,-0.241082,1.17965,2.7168,-0.159535,1.22215,2.83848,0.0730289,1.16718,2.92168,-0.168629,1.21004,3.0067,0.0958107,1.16086,2.92485,0.261934,1.15725,3.05118,0.269884,1.16434,2.94289,0.298338,1.18947,2.75239,0.296694,1.23763,2.92766,0.0986492,1.3979,2.89215,-0.113426,1.25075,2.73072,0.0739701,1.4041,2.68556,-0.11908,1.24915,2.91443,-0.0479668,1.26408,2.71104,-0.0663925,1.29455,2.69903,-0.0285485,1.27713,2.95037,-0.0056818,1.29817,2.69984,0.0562947,1.28378,2.94912,0.086439,1.15209,2.94268,-0.0044702,1.1429,2.93981,0.0873985,1.18676,2.69316,-0.0279896,1.17992,2.69164,0.05672,1.30296,2.71042,0.0543414,1.29796,2.70687,-0.0301548,1.2767,2.94172,-0.00740456,1.28189,2.94027,0.0846777,0.471648,0.758845,0.827037,0.47639,0.809023,0.687664,0.44317,0.752505,0.554745,0.391447,0.622398,0.506143,0.351536,0.494843,0.570351,0.346713,0.443704,0.709899,0.380011,0.501168,0.842593,0.43172,0.631364,0.891222,0.464907,0.725081,0.79609,0.434385,0.62763,0.845154,0.394847,0.528202,0.808002,0.369445,0.485022,0.706393,0.373077,0.523354,0.599848,0.403598,0.620776,0.550785,0.443138,0.720235,0.587939,0.468532,0.763438,0.689547,0.395136,0.723591,0.779479,0.397937,0.753225,0.697168,0.378318,0.719847,0.61867,0.347772,0.643009,0.589967,0.324192,0.567722,0.627872,0.321391,0.538089,0.710183,0.341011,0.571466,0.788681,0.371556,0.648304,0.817385,0.335795,0.695423,0.741872,0.325095,0.661926,0.758686,0.311177,0.626698,0.745858,0.302248,0.611731,0.709864,0.303643,0.62478,0.673162,0.313985,0.658408,0.656381,0.327999,0.693601,0.669202,0.336831,0.708603,0.705205,0.308094,0.649179,0.724188,0.300732,0.666968,0.709343,0.315067,0.676912,0.69241,0.43903,0.720972,0.786826,0.44224,0.754934,0.692495,0.419755,0.716681,0.602533,0.384749,0.628623,0.569638,0.357726,0.542341,0.61308,0.354516,0.50838,0.70741,0.376999,0.546632,0.797372,0.412007,0.634692,0.830267,0.462573,0.619801,0.881517,0.412683,0.494099,0.834525,0.38063,0.438,0.706543,0.385199,0.488,0.571801,0.423693,0.611144,0.50978,0.473626,0.736744,0.556699,0.505694,0.791304,0.685012,0.501116,0.742864,0.819557,1.28169,0.783167,0.500116,1.31439,0.772254,0.638974,1.3831,0.675977,0.719465,1.44758,0.550733,0.694438,1.47005,0.46989,0.578555,1.43735,0.480803,0.439698,1.36864,0.57708,0.359208,1.30416,0.702324,0.384234,1.36683,0.702481,0.422674,1.41203,0.61467,0.405129,1.46021,0.54717,0.461561,1.48313,0.539518,0.558915,1.46738,0.596199,0.640162,1.42217,0.684008,0.657709,1.374,0.751509,0.601276,1.35107,0.759161,0.503921,1.4979,0.699234,0.536661,1.50707,0.699109,0.514144,1.49625,0.687925,0.495466,1.47258,0.729899,0.544411,1.49169,0.703137,0.567166,1.50969,0.66818,0.559864,1.51569,0.646001,0.528376,1.50691,0.649146,0.490532,1.4877,0.675858,0.467794,1.4698,0.710866,0.475079,1.46347,0.732861,0.506629,1.4089,0.715441,0.429682,1.44835,0.63882,0.414373,1.49039,0.57992,0.463614,1.51039,0.573244,0.548563,1.49664,0.622702,0.619456,1.4572,0.699322,0.634768,1.41516,0.758222,0.585525,1.39516,0.764899,0.500577,1.34943,0.754229,0.613967,1.40384,0.67799,0.677704,1.45489,0.578813,0.657887,1.47269,0.514795,0.566121,1.4468,0.523437,0.456165,1.39238,0.599677,0.392427,1.34133,0.698854,0.412243,1.32353,0.762872,0.504008,1.33065,0.721124,0.373086,1.39744,0.591386,0.347162,1.46862,0.491653,0.430541,1.50249,0.480347,0.574382,1.47922,0.564093,0.694423,1.41243,0.693832,0.720347,1.34125,0.793563,0.636969,1.30738,0.804869,0.493128,1.1387,3.6371,0.468567,1.22649,3.63696,0.237505,1.18945,3.41472,0.198948,0.426742,3.23194,0.604395,0.470508,3.56753,0.731794,0.542733,3.57427,0.822832,1.13453,2.62872,0.464041,1.10653,3.39736,0.379742,1.07581,3.30326,0.594643,0.644835,3.26747,0.755962,0.815241,3.28029,0.760304,1.28952,3.60918,0.686216,1.14181,3.47319,0.452306,0.684705,3.54608,1.04149,0.685484,3.34015,0.81319,1.12105,3.36915,0.653331,0.852567,3.34372,0.821244,1.19299,3.61027,0.901944,0.925588,3.58213,1.04864,1.16063,4.27985,1.01026,1.14546,4.2619,0.865962,0.794313,4.22245,1.07045,0.927245,4.25489,1.13958,0.752132,4.20086,1.04467,1.1268,4.24356,0.825684,1.12281,4.2403,0.957099,0.862456,4.2154,1.0985,1.2631,3.96815,0.755207,1.18127,3.95905,0.955049,0.922362,3.93108,1.09752,0.698909,3.90903,1.08484,0.595228,3.89835,0.949626,1.1641,3.95603,0.619554,1.18042,3.6254,0.532356,1.11199,3.42796,0.411991,0.658016,3.29435,0.771852,0.582632,3.56636,0.881002,1.08919,3.32815,0.614797,0.825785,3.3026,0.780029,0.762319,4.20267,1.04122,1.12175,4.24207,0.834693,1.13386,4.24472,0.969683,0.878053,4.21923,1.11046,0.623161,3.89911,0.985424,1.19094,3.95745,0.656643,1.13884,4.25579,0.859541,1.15323,4.27779,1.0017,0.922825,4.25418,1.12829,0.792154,4.22123,1.05628,0.750212,4.1889,1.01569,1.10624,4.22432,0.817632,0.858358,4.20892,1.09984,1.13018,4.23842,0.952766,0.760449,4.19896,1.02268,1.11101,4.23299,0.828461,1.22313,1.96501,-0.164316,0.438147,1.95874,-0.334969,1.25705,2.9606,-0.12313,0.405432,2.83781,-0.307541,0.84157,1.97014,-0.508298,0.688881,1.96842,-0.509431,0.544934,1.96521,-0.45431,1.12238,1.96858,-0.345025,0.830269,2.79316,-0.513749,0.659552,2.78079,-0.511174,0.513543,2.78787,-0.443813,1.14695,2.86898,-0.343794,0.492567,0.56513,-0.236922,0.443228,0.500372,0.448055,1.06365,1.07321,0.902392,0.958949,0.617847,-0.372038,1.25808,0.447811,0.201422,1.29364,0.451291,0.491077,0.681836,0.614064,-0.399434,0.670351,1.05663,0.896327,0.420401,0.499821,0.0774494,0.504655,0.77233,0.710401,1.27436,0.755856,0.667344,1.1803,0.547528,-0.150128,0.49063,0.808224,-0.221302,0.46682,0.770671,0.371242,1.05464,1.12361,0.811898,0.942941,0.842551,-0.36205,1.22685,0.719301,0.115581,1.26795,0.805694,0.325799,0.693526,0.841422,-0.390631,0.683853,1.11407,0.825546,0.446668,0.76729,0.0561294,0.564421,0.974904,0.615938,1.211,1.00049,0.58177,1.16147,0.792742,-0.149371,0.967188,-0.018647,2.40426,1.13453,-0.0203847,2.37202,0.823457,-0.0198748,2.38467,0.809005,0.0325416,2.33447,1.07209,0.0510701,2.3163,0.893923,0.125016,2.29119,1.02074,0.113292,2.28974,0.839676,0.0959581,2.30207,0.961976,0.133399,2.28458,0.969559,0.259861,2.14233,0.724543,0.203432,2.16162,1.09201,0.220801,2.15336,0.839232,0.251446,2.14499,1.18806,0.113996,2.18976,0.645202,0.0951669,2.21594,0.603427,-0.0179201,2.29931,1.27847,-0.0189629,2.2491,1.42552,-0.0169413,2.05732,0.444914,-0.0139401,2.08208,0.49856,0.166917,1.99409,1.32063,0.183475,1.96372,0.788687,0.365008,1.89927,1.18661,0.323398,1.9102,0.616103,0.309686,1.9268,0.989071,0.371171,1.89312,1.01374,0.540953,1.38251,0.522205,0.471839,1.41005,1.2993,0.473228,1.36588,0.748818,0.537647,1.39732,1.44443,0.303328,1.35873,0.379578,0.293797,1.41914,0.29123,-0.00875905,1.42486,1.53179,-0.010603,1.35011,1.2588,1.69611,0.0295458,1.17364,1.56637,-0.267685,0.674915,1.39376,-0.551358,0.518049,1.824,0.512089,0.368004,1.47116,-0.00213536,0.923451,1.40956,-0.477056,0.948356,1.84885,0.644676,0.386267,1.53637,0.282788,0.449576,1.43313,-0.344297,0.693519,1.22565,0.78078,1.00643,1.2379,0.752093,1.1813,1.12686,0.546332,1.26198,0.994609,0.254501,1.2241,0.901522,0.057362,1.15526,0.936109,-0.161304,0.975422,1.05707,-0.350177,0.652624,1.05513,-0.403956,0.496434,0.937528,-0.215228,0.453919,0.89661,0.052879,0.4807,0.914508,0.333385,0.561114,1.16262,0.615138,1.03114,0.576117,1.45191,0.474913,0.498672,1.49164,1.34022,0.480573,1.43986,0.717959,0.572311,1.47096,1.5005,0.315859,1.44872,0.322473,0.313381,1.50789,0.242143,-0.00538064,1.51441,1.60639,-0.00800738,1.4341,1.49446,-0.00800739,1.05429,0.353938,-0.00538066,1.1223,0.410575,0.405881,1.11904,1.39389,0.417132,1.06175,0.761604,0.717829,1.09409,1.26454,0.631052,1.06623,0.549899,0.628829,1.10812,1.00451,0.722621,1.08,1.01121,0.769896,1.12677,0.535931,0.693736,1.15985,1.27562,0.685301,1.11579,0.754899,0.769875,1.14223,1.43233,0.460483,1.10423,0.376909,0.449494,1.16343,0.267527,-0.00593823,1.16142,1.58994,-0.00767138,1.09089,1.42623,-0.0076714,0.680632,0.38605,-0.00593825,0.739454,0.482041,0.526223,0.732762,1.30903,0.538864,0.685368,0.779184,0.92184,0.702853,1.1516,0.81285,0.686929,0.602827,0.810763,0.718585,0.964778,0.927848,0.692324,0.417894,-0.00984579,1.84956,1.4553,-0.0145746,1.78968,0.48113,0.183269,1.84483,1.34194,0.197319,1.79506,0.78208,0.383604,1.82495,0.601048,0.328858,1.83582,1.20989,0.339412,1.80145,0.994081,0.38865,1.81355,1.00287,0.411684,1.89756,1.23143,0.359827,1.88437,0.587912,0.350116,1.92111,0.778677,0.406213,1.91008,1.3694,0.215038,1.87798,0.460796,0.199147,1.92979,1.48882,-0.010603,1.87271,0.393452,-0.00875902,1.93436,0.483061,0.918893,-0.261493,0.407709,0.645055,0.433872,0.972583,0.941604,-0.394494,1.30573,0.779052,0.0601763,1.30801,0.674926,0.297017,0.697485,0.942773,-0.409251,0.368221,0.775207,0.0982228,0.447269,0.524723,0.826392,1.43636,0.531792,0.783078,1.19947,0.869701,-0.215343,0.688416,-0.000471508,-0.530173,1.29418,-0.000954001,-0.261905,1.31427,-0.000216975,0.0199878,1.42396,-0.00487806,0.279502,0.374554,5.49852e-06,-0.307325,0.384971,-4.56765e-06,0.0460229,0.373184,-0.00298744,0.422124,1.0859,-0.00188329,-0.505957,0.41139,0.284188,0.411641,0.358221,0.416938,0.0677703,0.386812,0.443307,-0.276759,1.34579,0.311081,0.273482,1.35331,0.381952,0.0331711,1.2952,0.430867,-0.228576,1.00734,0.438138,-0.502808,0.652995,0.439546,-0.527172,0.690495,0.66343,-0.485095,1.21198,0.652108,-0.214627,1.31194,0.61275,0.0523661,1.32183,0.515338,0.292823,0.480923,0.642125,-0.232034,0.370712,0.627356,0.0883579,0.413214,0.508401,0.400209,0.975312,0.664804,-0.469289,1.63458,-0.00756979,0.777364,1.56767,0.187303,0.77787,1.51534,0.356098,0.780409,0.329314,0.120074,0.836475,0.291127,-0.00531844,0.835047,0.386437,0.333067,0.832039,1.03999,1.2655,-0.235683,0.569513,1.22225,-0.303251,0.674518,1.23169,-0.32462,0.8029,1.24442,-0.343529,0.498908,1.21409,-0.14785,1.1214,1.26855,-0.10603,1.25997,2.97898,0.140663,0.409203,2.93628,0.549532,1.27732,2.18247,0.0543973,0.720471,1.56232,0.765338,0.989275,1.55424,0.741906,1.2027,1.50543,0.521559,1.30173,1.39626,0.236243,1.29136,1.33146,0.0314089,1.21453,1.21887,-0.236961,0.986465,1.23956,-0.451962,0.625595,1.2253,-0.514734,0.424713,1.19141,-0.306086,0.356149,1.19359,0.0213254,0.377923,1.23808,0.315482,0.498865,1.50303,0.592724,0.68866,2.21967,0.659677,0.936335,2.21373,0.633986,0.475573,2.22294,0.506601,1.28604,2.65693,0.0900661,0.433065,2.65125,0.503923,1.10805,2.95503,0.522165,0.654891,2.93057,0.70477,1.23554,2.63909,0.261535,0.667739,2.61901,0.663177,0.897602,2.6115,0.643142,1.19757,2.97153,0.312404,0.869892,2.93121,0.686346,1.12935,2.20427,0.461606,1.24412,2.19031,0.233759,0.734359,1.53595,0.725466,0.971002,1.52656,0.703538,1.1644,1.47498,0.499725,1.2548,1.36474,0.229623,1.24203,1.30037,0.0383351,1.17166,1.20257,-0.208238,0.959975,1.23972,-0.414895,0.651475,1.23152,-0.47898,0.464981,1.18531,-0.277857,0.4072,1.17905,0.0259123,0.430778,1.21579,0.30477,0.53366,1.4805,0.563857,0.70882,1.84701,0.65709,1.13096,1.83192,0.46053,1.23768,1.77156,0.20991,0.720842,1.57616,0.755234,0.984541,1.5684,0.733096,1.19371,1.52398,0.517696,1.29295,1.42001,0.237227,1.2863,1.35528,0.0359704,1.20773,1.23761,-0.234894,0.977103,1.24274,-0.452415,0.634996,1.22837,-0.516409,0.432152,1.19985,-0.30732,0.362222,1.20599,0.0206402,0.385806,1.2525,0.31833,0.504674,1.52329,0.587916,0.807689,0.0299927,-0.492846,0.942691,0.0299927,-0.481133,0.359224,0.0299937,1.47569,1.47985,0.0299937,1.41111,1.17537,0.0299937,1.42866,0.673346,0.0299937,1.45759,0.725063,0.0299937,1.85888,1.16295,0.0299937,1.83365,1.42853,0.0299937,1.81834,0.451072,0.0299937,1.87467,1.05374,0.0299928,2.33639,0.859097,0.0299928,2.34589,0.770581,0.0299937,2.11211,0.542702,0.0299928,2.1253,1.35546,0.0299928,2.07835,1.13469,0.0299937,2.09113,0.434882,0.0299927,-0.277621,0.435881,0.0299936,0.0426965,0.483464,0.0299936,0.429721,0.44443,0.0299936,0.751881,0.364531,0.0299936,1.08626,0.390553,0.0299937,1.47388,0.478399,0.0299937,1.8731,0.565421,0.0299928,2.12399,1.23207,0.0299927,-0.259831,1.24413,0.0299927,0.0167871,1.23711,0.0299936,0.289029,1.43064,0.0299936,0.769393,1.51564,0.0299936,1.0719,1.44272,0.0299937,1.41325,1.39614,0.0299937,1.82021,1.32852,0.0299928,2.07989,0.838436,0.0299928,2.31446,0.671746,0.0296693,2.27841,1.20962,0.0303478,2.25963,1.0682,0.0299928,2.30443,0.687756,0.0299928,2.26127,1.1935,0.0299928,2.24444,0.628204,0.0296718,-0.452035,0.802039,0.0299927,-0.478304,0.945884,0.0299927,-0.4675,1.07671,0.0298213,-0.445532,0.634576,0.0300394,-0.439375,1.06924,0.0299743,-0.433666,1.12995,7.8569,0.714685,1.00714,7.20072,0.746596,1.02269,7.49328,0.649214,1.27514,8.15058,0.578731,1.40046,8.33476,0.55027,1.20424,6.54073,0.986012,1.04514,6.97139,0.800967,1.17416,6.74623,0.891382,1.18057,6.33855,1.01379,0.948971,7.16841,0.718945,1.04401,6.9186,0.798224,1.15495,6.6788,0.887791,1.16664,6.49928,0.971315,1.22552,6.37398,1.05179,1.00855,7.21509,0.733584,1.023,6.99536,0.784728,1.16298,6.7643,0.876388,1.2078,6.53778,0.973894,1.22603,6.36473,1.04386,1.07007,8.57608,1.00257,1.2399,2.46154,-0.143916,0.430924,2.4002,-0.313413,0.836087,2.38005,-0.510881,0.674363,2.37302,-0.510236,0.533351,2.37653,-0.445343,1.13506,2.41733,-0.34384,0.808101,1.60089,-0.429119,1.07265,1.61361,-0.292247,1.16391,1.61326,-0.136877,0.461127,1.58745,-0.239428,0.552853,1.59455,-0.378117,0.674513,1.59767,-0.418766,1.34678,4.5588,-0.109181,0.187992,4.37302,-0.236215,0.816057,4.4791,-0.61683,0.351011,4.40152,-0.509169,0.589679,4.44448,-0.600021,1.17418,4.5277,-0.426184,-0.00264589,9.36275,-0.824212,0.489939,6.17145,1.33462,0.211612,6.16503,1.44164,0.0926574,5.02553,1.11216,0.459281,6.19865,1.34175,0.237441,5.36835,1.3399,0.464685,5.81186,1.40443,0.46014,6.17095,1.34599,-8.88178e-16,8.32564,-1.09727,0.000287515,8.97448,-1.00042,0,5.41383,1.5019,-8.88178e-16,9.04323,1.05533,-8.88178e-16,7.89791,1.33495,-8.88178e-16,8.06825,1.35305,-8.88178e-16,9.13891,0.997167,-8.88178e-16,8.72937,1.31383,-8.88178e-16,7.35835,1.42892,-8.88178e-16,6.76788,1.54973,-8.88178e-16,8.90752,1.17427,-8.88178e-16,7.53041,1.40038,-8.88178e-16,7.2201,1.45895,0.00307025,9.19121,-0.925049,-0.108216,9.19215,-0.914283,-0.167592,8.34013,-1.08133,-0.681061,9.44915,-0.743908,-0.121074,8.72755,-1.05424,-0.82083,9.30647,-0.839652,-0.920417,8.64071,-0.968879,-1.04516,8.78605,-0.918264,-0.892716,9.45877,-0.722519,-1.18353,8.95742,-0.861669,-0.801336,8.98608,-0.943815,-0.930281,9.13709,-0.902773,-1.03166,9.31619,-0.829477,-0.498321,9.18067,-0.899012,-0.384714,9.19285,-0.910507,-0.626642,8.85707,-0.993186,-0.448973,8.78231,-1.02733,-0.583776,8.42817,-1.04041,-0.779697,8.51237,-1.02262,-0.697926,9.16216,-0.900021,-0.582664,9.30172,-0.839698,-0.56488,9.0488,-0.96172,-0.396103,8.99359,-0.973637,-0.107633,8.97622,-0.991796,-0.243976,9.19223,-0.906027,-0.273,8.74414,-1.03653,-0.366069,8.37397,-1.05567,-0.238852,8.97641,-0.979858,-0.865658,8.82401,-0.966894,-0.990117,8.95397,-0.923049,-1.13288,9.11555,-0.858868,-0.696694,8.67986,-1.01401,-0.523102,8.58589,-1.04414,-0.146644,8.50307,-1.08476,-0.325939,8.54529,-1.05914,-0.592728,9.6172,-0.444366,-0.286892,9.52368,-0.659464,-0.448305,9.55169,-0.579823,-0.124943,9.5217,-0.69375,-0.135287,9.47846,-0.733327,-0.515985,9.5281,-0.631134,-0.332567,9.49373,-0.69122,-0.646708,9.58573,-0.566581,-0.744367,9.55013,-0.630761,-0.28909,9.3893,-0.782715,-0.455795,9.38012,-0.783675,-0.129615,9.3766,-0.806083,-0.124245,9.55867,-0.700216,-0.281518,9.56012,-0.664711,-0.58073,9.64911,-0.450652,-0.437166,9.58836,-0.583589,-1.23111,4.95519,1.00802,-0.860301,4.61757,1.36347,-0.874464,4.62829,1.35088,-1.22862,4.93203,1.02112,-1.10431,5.65297,1.0009,-0.733346,5.45398,1.44201,-0.717196,5.45033,1.45855,-1.22227,4.94697,1.01996,-0.87131,4.64614,1.34865,-1.22481,4.97141,1.00643,-0.857345,4.6357,1.36111,-0.805736,6.60502,0.855035,-0.485687,6.6032,1.14123,-0.471918,6.59881,1.15504,-0.79388,6.59071,0.879455,-1.03658,6.61503,0.548304,-0.803338,6.59402,0.862927,-1.02741,6.61025,0.565817,-1.25749,4.8913,1.10901,-1.54941,5.19326,0.658291,-1.26788,4.90153,1.09322,-1.53761,5.18116,0.676439,-1.15266,5.63575,1.13854,-1.48276,5.84839,0.66323,-1.16556,5.64067,1.12238,-1.47098,5.83565,0.683817,-1.54531,5.16607,0.678623,-1.27336,4.88382,1.0964,-1.26272,4.87345,1.11242,-1.5579,5.17766,0.660169,-1.6707,5.45201,0.162186,-1.61352,5.19747,0.737636,-1.61444,5.20614,0.717345,-1.64903,5.44214,0.190558,-1.53393,5.86292,0.72827,-1.52606,6.03371,0.145654,-1.52907,5.8583,0.743335,-1.63856,5.45681,0.190405,-1.60523,5.22352,0.715458,-1.66037,5.46608,0.161849,-1.60459,5.21469,0.735428,-1.04664,6.61438,0.557526,-1.13807,6.67709,0.0840332,-1.04526,6.60822,0.569838,-1.15404,6.68501,0.0976604,-0.927779,6.66873,-0.309474,-1.14467,6.68938,0.088545,-0.936918,6.67077,-0.293666,-1.72123,5.50301,0.202874,-1.45445,5.58012,-0.29714,-1.71209,5.50522,0.185297,-1.46509,5.57728,-0.276893,-1.57747,6.05059,0.181926,-1.33285,6.0435,-0.304587,-1.57037,6.04819,0.164711,-1.34521,6.04065,-0.284453,-1.47287,5.56405,-0.277508,-1.7201,5.49034,0.187538,-1.72938,5.48797,0.205414,-1.4624,5.56639,-0.298266,-0.799654,6.27963,0.911206,-0.483485,6.15123,1.22905,-0.805083,6.30092,0.897014,-0.470829,6.14887,1.24102,-1.09679,5.67361,0.993743,-0.727738,5.47457,1.43697,-0.711882,5.47066,1.45344,-0.916151,6.10406,0.904104,-1.15709,6.27265,0.488399,-0.925481,6.10787,0.889704,-1.14867,6.26206,0.505881,-1.14447,5.65717,1.13238,-1.47199,5.86736,0.657831,-1.15738,5.66197,1.11621,-1.46055,5.85471,0.678163,-1.22376,6.32215,0.0809327,-1.20262,6.21103,0.545251,-1.23851,6.33019,0.0558579,-1.2012,6.20879,0.563074,-1.49512,6.02832,0.170325,-1.52783,5.8739,0.726507,-1.51722,6.04457,0.144386,-1.52329,5.86935,0.740704,-1.25919,6.35556,0.071204,-1.01897,6.33669,-0.335784,-1.25173,6.35286,0.056883,-1.03047,6.33425,-0.318922,-1.55992,6.07469,0.179586,-1.31544,6.06523,-0.302733,-1.55288,6.07217,0.162582,-1.32769,6.06243,-0.283055,-0.846593,6.33774,0.844265,-0.484563,6.19536,1.23262,-0.4704,6.189,1.24712,-1.0981,5.64714,1.0202,-0.794565,6.59939,0.869356,-1.08766,5.66654,1.01371,-0.832785,6.33083,0.859301,-0.889645,6.12276,1.00598,-1.17381,6.24125,0.603225,-0.900333,6.12749,0.989776,-1.1642,6.23189,0.621931,-1.50163,6.01768,0.173938,-1.12413,6.66889,0.107133,-1.25946,6.20598,0.640932,-1.29853,6.32366,0.113777,-1.25699,6.19999,0.654515,-1.2808,6.31118,0.138614,-1.33731,6.37921,0.147945,-1.09117,6.34153,-0.28609,-1.32903,6.38095,0.136189,-1.10278,6.34021,-0.269099,-0.488873,6.19916,1.33033,-0.25033,5.36706,1.32517,-0.0542856,4.92698,1.14809,0,4.90616,1.14165,-0.099046,5.03876,1.10788,-0.211915,6.19269,1.43786,0,6.18682,1.45073,-0.497832,5.81178,1.39333,-0.192268,5.80326,1.49456,-0.137399,5.39236,1.46901,0,5.81233,1.47033,-0.0731335,4.59217,-0.0120733,-0.100917,4.40748,-0.00173656,-0.314639,4.62306,-0.377636,-0.323407,4.44108,-0.37114,-0.606193,4.89125,0.900865,-0.635467,4.72966,0.842964,-0.21943,4.72685,0.739344,-0.246582,4.55575,0.702634,-0.0829097,4.62919,0.373319,-0.11349,4.46831,0.368416,-0.233284,4.07833,0.0793629,-0.193658,4.25569,0.0537732,-0.217643,4.09561,0.356387,-0.189429,4.26947,0.359929,-0.332088,4.05768,-0.21682,-0.300387,4.23265,-0.277352,-0.471438,4.14229,0.777566,-0.44958,4.31299,0.775623,-0.316056,4.11667,0.635807,-0.294851,4.28226,0.649578,-0.40585,4.83688,0.870815,-0.437631,4.66662,0.844451,-0.677144,4.18713,0.742934,-0.658498,4.33369,0.767106,-0.364748,4.62579,-0.408845,-0.373232,4.44378,-0.402012,-0.39098,4.05259,-0.261568,-0.3599,4.22736,-0.32292,-0.603477,1.9121,-0.423421,-0.611304,1.73453,-0.380341,-0.51636,2.60852,-0.4121,-0.494412,2.74866,-0.390885,-0.594355,2.63918,0.562351,-0.608609,2.80675,0.598348,-0.468806,2.64917,0.48992,-0.506257,2.46745,0.501908,-0.639104,2.8008,0.592587,-0.660693,2.61333,0.59948,-0.546858,1.92416,-0.36961,-0.543625,1.74757,-0.31443,-0.379231,2.39217,0.260569,-0.426134,2.20008,0.276134,-0.364949,2.12315,-0.0378521,-0.394168,1.92814,-0.000206508,-0.341923,2.59239,0.135694,-0.317452,2.72863,0.141434,-0.45498,2.62563,0.437593,-0.428913,2.74901,0.485939,-0.480975,2.6055,-0.377078,-0.459352,2.74443,-0.356505,-0.378742,2.59491,-0.14181,-0.352606,2.73059,-0.126871,-0.394545,1.81181,-0.104572,-0.464011,1.66839,-0.175256,-0.479311,1.8989,-0.294257,-0.528147,1.7355,-0.346588,-0.563943,1.71612,0.45266,-0.566577,1.57368,0.418656,-0.404593,1.70103,0.205313,-0.413268,1.57448,0.0944608,-0.734736,1.74209,0.591877,-0.718168,1.57192,0.557004,-0.516637,1.94321,-0.369086,-0.573191,1.78599,-0.431116,-0.427614,4.86104,1.0022,-0.717274,5.05475,1.05587,-1.05952,5.38334,0.910986,-1.33512,5.53984,0.56735,-1.00986,3.98499,0.634113,-1.36975,4.01367,0.23084,-0.501112,3.88802,0.822398,-0.736715,3.93073,0.796428,-1.03413,4.60923,0.725036,-1.2866,4.68491,0.418816,-0.46465,4.35353,0.846539,-0.729448,4.45428,0.847219,-1.28369,5.80026,0.566486,-1.06291,5.63168,0.915936,-0.713315,5.23881,1.10903,-0.412403,5.00045,1.04823,-1.23023,5.46826,0.74114,-1.14479,4.00519,0.435202,-1.18749,4.64706,0.579617,-1.18166,5.72239,0.74374,-1.2959,3.92804,-0.030067,-1.3978,5.19965,-0.0838505,-0.213585,3.91733,-0.109469,-0.162325,4.82782,-0.317196,-1.14414,3.99656,-0.272366,-0.838192,4.94292,-0.560915,-0.613729,4.88263,-0.566678,-0.34107,4.83686,-0.500145,-1.20101,5.05931,-0.341341,-0.792062,4.01562,-0.432439,-0.363157,3.96462,-0.27842,-0.565495,4.00626,-0.393196,-1.23195,4.74797,-0.244392,-1.23195,4.95843,-0.261327,-1.19308,5.03106,0.555964,-1.18287,4.84155,0.531235,-1.28859,4.7822,-0.010871,-1.28145,4.82262,0.26605,-1.28854,4.98809,-0.0191948,-1.28159,5.01925,0.276103,-1.1953,4.8388,0.497508,-1.20424,5.02929,0.5205,-1.23321,5.03065,0.520132,-1.22429,4.83979,0.497058,-1.31846,5.01582,0.275463,-1.39471,4.95643,-0.0412652,-1.31822,4.81639,0.265868,-1.39471,4.74988,-0.0333644,-1.2117,4.84217,0.531258,-1.2219,5.03201,0.555988,-1.31348,4.98215,0.096143,-1.31405,4.77841,0.0939912,-1.3522,4.77259,0.175044,-1.35109,5.02557,0.176828,-1.35469,4.78024,0.259587,-1.35636,5.03157,0.268851,-1.22581,5.0261,0.176259,-1.21518,5.03148,0.26786,-1.24426,4.77376,0.174007,-1.23616,4.77975,0.258406,-1.3602,4.79028,0.256864,-1.35615,4.78004,0.172864,-1.35011,5.01685,0.175815,-1.35392,5.02274,0.267787,-1.37105,4.4489,0.249758,-1.36506,4.45622,0.158003,-1.34384,4.2229,0.122854,-1.35044,4.22093,0.207293,-1.22606,4.22417,0.211395,-1.23201,4.22902,0.126743,-1.23425,4.47294,0.255482,-1.24266,4.4791,0.163701,-1.37451,4.45717,0.251925,-1.34386,4.21128,0.208809,-1.36705,4.46455,0.160155,-1.3391,4.21571,0.124133,-1.30345,4.23731,0.0391949,-1.32479,4.43753,0.0708511,-1.43297,4.19567,-0.0630484,-1.3126,4.25013,0.21711,-1.45654,4.40004,-0.042933,-1.33651,4.44506,0.25226,-1.14845,4.27296,0.440566,-1.17922,4.462,0.458346,-1.15003,4.46385,0.459839,-1.11931,4.2752,0.442049,-1.29989,4.45237,0.255765,-1.2718,4.46544,-0.0326934,-1.27656,4.26021,0.220533,-1.24844,4.26178,-0.052253,-1.22999,4.47441,-0.177091,-1.17105,4.27173,-0.182735,-0.589011,9.2982,0.757734,-0.968417,9.3801,0.629753,-0.172975,9.08376,1.00515,-1.11182,9.20222,0.757404,-0.671429,9.16864,0.884182,-0.869969,8.52034,1.08108,-0.194862,8.45262,1.29614,-8.88178e-16,8.44487,1.37976,-0.236057,8.06072,1.28055,-0.891635,8.13091,1.04608,-0.97619,7.89185,0.902251,-0.22199,7.88761,1.26626,-0.227349,7.44857,1.34614,-0.880644,7.22653,0.918749,-1.36269,8.10565,0.408798,-1.10984,7.20651,0.550029,-1.12541,7.27308,0.0699728,-1.28386,7.82749,0.529445,-1.24953,7.79308,0.0304257,-0.498327,9.49397,0.638924,-0.834085,9.50592,0.544423,-0.859379,9.3472,0.687163,-0.980931,9.21246,0.81271,-0.732881,9.50294,0.584278,-1.18664,8.54439,0.914838,-1.35306,8.43613,0.71247,-1.09453,8.30782,0.927236,-1.19253,8.19992,0.76936,-0.890903,8.20898,-0.908566,-0.800113,8.01378,-0.872131,-0.935784,7.67491,-0.534809,-1.10293,7.87978,-0.475855,-1.18457,7.81345,-0.219872,-1.06015,7.54515,-0.218112,-1.12998,7.48865,0.0490511,-0.186149,7.67058,1.25703,-0.913936,7.51374,0.782674,-1.12685,7.48103,0.518527,-8.88178e-16,7.70346,1.33689,-0.18954,9.19297,0.934677,-0.429015,9.13679,0.904154,-0.539081,8.48078,1.17598,-0.566313,8.05767,1.17659,-0.586686,7.85494,1.09756,-0.529227,7.31502,1.14755,-0.537573,7.57239,1.04101,-0.394313,9.24802,0.818941,-0.750643,9.32668,0.716161,-0.854026,9.20056,0.854527,-0.638432,9.50309,0.609592,-0.206841,8.24815,1.32497,-0.887388,8.32012,1.09621,-0.550453,8.2669,1.20539,-1.03503,8.41506,0.995456,-1.43243,8.24784,0.393074,-0.176537,8.73775,1.24495,-0.846725,8.75738,1.06007,-1.15466,8.74266,0.935459,-1.2788,8.68174,0.844964,-0.513106,8.73871,1.11214,-1.04285,8.77912,1.01982,-0.932261,7.41761,-0.497468,-1.05229,7.33026,-0.203314,-0.69186,7.69165,-0.767552,-1.14046,6.93059,-0.245228,-0.811228,7.00456,-0.521365,-1.2836,6.84667,0.154413,-1.23317,6.89359,-0.0607293,-1.30581,6.60931,0.765183,-1.08568,6.48592,1.20677,-0.687515,6.6081,1.448,-0.314802,6.81543,1.52305,-8.88178e-16,7.02825,1.55624,-0.230696,7.97296,1.27077,-0.937014,8.0185,0.974915,-0.924134,9.3689,0.652205,-1.06637,9.20562,0.785124,-0.791482,9.50486,0.554772,-1.25878,8.48235,0.843693,-1.14495,8.25266,0.846793,-0.583064,7.95528,1.14148,-1.22478,8.70617,0.897263,-0.692775,7.42502,-0.63686,-0.95157,7.21071,-0.376445,-1.15588,7.09308,0.0984715,-1.06222,7.145,-0.137691,-0.546368,7.05915,1.20323,-0.91508,6.98458,0.99149,-0.25672,7.23028,1.3651,-1.14929,6.99214,0.609552,-1.03346,7.06657,-0.279971,-1.20271,6.98229,0.133325,-1.15026,7.0211,-0.0930879,-0.625259,6.83243,1.29439,-1.02652,6.69311,1.08992,-0.282361,7.03528,1.41385,-8.88178e-16,7.21308,1.46825,-1.26968,6.82536,0.68308,-0.774579,7.19811,-0.539638,-0.330003,6.59398,1.49624,-0.711216,6.35879,1.40951,-1.06313,6.27388,1.20606,-1.29446,6.40808,0.824194,-1.23559,6.75978,-0.0409673,-1.31512,6.69841,0.182793,-0.940637,6.80818,-0.644368,-1.14478,6.78995,-0.235995,-1.02024,8.05218,-0.706718,-0.868818,7.84163,-0.700118,-0.808934,7.55411,-0.638027,-1.00193,6.95834,-0.425126,-0.831451,7.30991,-0.54733,-0.908157,7.12696,-0.454619,-1.05434,6.83627,-0.423652,-0.167267,8.9442,1.13075,-0.771291,8.97858,0.996947,-1.08729,8.95915,0.924009,-1.21152,8.92093,0.866027,-0.489176,8.95347,1.02626,-0.958527,8.9951,0.959881,-1.16458,8.9348,0.899325,-1.32557,6.76139,0.450172,-1.28756,7.80635,0.286186,-1.14708,7.47177,0.297376,-1.13507,7.2334,0.322921,-1.1635,7.05157,0.358837,-1.23359,6.93323,0.414473,-1.32442,6.57503,0.472904,-0.155448,9.40137,0.717925,-0.337052,9.47998,0.661537,-0.679866,7.66309,-0.702449,-0.898228,7.38792,-0.436486,-1.07601,7.23938,0.084137,-1.0005,7.30012,-0.167694,-0.503135,7.25927,1.11641,-0.83523,7.17886,0.88822,-0.219325,7.3944,1.30092,-8.88178e-16,7.48345,1.36228,-1.05583,7.1691,0.538388,-0.783733,7.51921,-0.576162,-1.07808,7.19423,0.320775,-0.93697,7.1834,-0.317043,-1.12439,7.06483,0.115345,-1.042,7.11701,-0.102311,-0.530226,6.99686,1.18341,-0.918139,6.90277,0.989007,-0.243686,7.17357,1.32944,-8.88178e-16,7.3246,1.38855,-1.14278,6.95132,0.603968,-0.725306,7.41031,-0.559789,-0.83916,7.28221,-0.472046,-1.1418,7.02045,0.36393,-1.03447,7.03062,-0.236105,-1.18815,6.94612,0.147282,-1.14606,6.9844,-0.0575972,-0.614463,6.75929,1.30007,-1.00917,6.62092,1.08617,-0.270915,6.96703,1.39323,-1.25176,6.75671,0.680396,-0.782923,7.15066,-0.494125,-0.918406,7.09296,-0.389705,-1.21913,6.88638,0.410284,-0.825819,6.9578,-0.504094,-1.06245,6.43991,1.18734,-1.27345,6.55644,0.75215,-8.88178e-16,6.98965,1.51818,-0.304593,6.77759,1.49239,-0.667741,6.56268,1.41949,-1.25238,6.80935,0.16521,-1.2012,6.86596,-0.0387643,-1.1152,6.90531,-0.219195,-0.98818,6.93087,-0.416094,-1.29312,6.71469,0.435314,-0.939426,6.8873,-0.646328,-1.10259,6.31261,1.24382,-1.33514,6.4399,0.848253,-0.329653,6.62747,1.54353,-0.734202,6.39819,1.45694,-1.34303,6.71314,0.169846,-1.26059,6.77682,-0.0651624,-1.16847,6.8203,-0.266691,-1.07616,6.86121,-0.45702,-1.36574,6.60012,0.482586,-0.21855,7.46036,1.33814,-0.885475,7.24448,0.903953,-1.10858,7.22193,0.542685,-1.12024,7.28635,0.0657454,-0.527528,7.33053,1.1371,-1.04654,7.34268,-0.207625,-0.919939,7.43468,-0.505019,-0.692159,7.72592,-0.784285,-0.79925,7.57905,-0.648359,-1.13247,7.24911,0.317742,-0.678278,7.45086,-0.649443,-0.930509,7.21482,-0.392164,-1.14567,7.09426,0.0910084,-1.04627,7.14661,-0.148366,-0.534427,7.0757,1.19504,-0.891022,7.01232,0.973791,-0.245747,7.23939,1.35963,-1.13178,7.00383,0.594668,-0.807859,7.32202,-0.553433,-1.15067,7.05507,0.347638,-1.01193,7.06662,-0.297921,-1.19847,6.98006,0.124579,-1.13264,7.01816,-0.105035,-0.604641,6.85332,1.28118,-1.01314,6.7152,1.07257,-0.268027,7.04729,1.40645,-1.25983,6.83795,0.668892,-0.764029,7.22437,-0.548398,-0.886795,7.14053,-0.461085,-1.22841,6.93697,0.401891,-1.13033,6.91947,-0.252952,-1.2802,6.83908,0.147095,-1.23149,6.88154,-0.0670583,-0.67662,6.60589,1.4393,-1.08312,6.47964,1.19791,-0.301531,6.81564,1.51972,-1.30708,6.60803,0.752604,-0.806472,7.02145,-0.514719,-0.997158,6.95401,-0.421549,-1.32128,6.75885,0.442053,-0.943919,6.88282,-0.642732,-1.10124,6.30657,1.24279,-1.33616,6.43058,0.837306,-0.315616,6.62323,1.54111,-0.725527,6.39735,1.46011,-1.34112,6.69949,0.161932,-1.25864,6.76462,-0.0703238,-1.16742,6.80889,-0.269895,-1.07814,6.85145,-0.456705,-1.36822,6.59017,0.472702,-0.0541062,9.04783,1.05207,-0.0190693,8.44623,1.3814,-0.0313257,7.89689,1.33035,-0.0357982,7.51317,1.40612,-0.0316047,8.06791,1.34865,-0.0251408,7.69839,1.33437,-0.058384,9.14426,0.99273,-0.0241899,8.25056,1.3858,-0.0195397,8.73195,1.31614,-0.0432287,7.00168,1.55255,-0.0309115,7.98043,1.34044,-0.0409209,7.34298,1.42532,-0.042126,7.19029,1.4646,-0.0577734,6.73802,1.54577,-0.0376769,8.91359,1.1724,-0.0438769,9.37623,0.737428,-0.033878,7.46765,1.35827,-0.0376126,7.29725,1.38498,-0.0374016,7.13036,1.43683,-0.0438206,6.95225,1.51629,-0.0510184,6.77636,1.60351,-0.030163,7.52005,1.39788,-0.0331118,7.34446,1.41989,-0.0338994,7.19519,1.45826,-0.0318652,6.99931,1.55017,-0.040847,6.77458,1.60083,-0.0904382,9.6016,0.712257,-0.386443,9.75279,0.632459,-0.202615,9.65323,0.691961,-0.705939,9.71403,0.387562,-0.616068,9.75676,0.514598,-0.666692,9.73809,0.481023,-0.745211,9.6927,0.380798,-0.510492,9.77254,0.581895,-1.45907,8.20151,-0.00456246,-1.38078,8.09101,0.0227845,-1.29011,8.14606,-0.4053,-1.39613,8.30283,-0.372536,-1.26802,8.53277,-0.743305,-1.00234,8.35881,-0.876623,-1.15337,8.21318,-0.650733,-1.32877,8.40688,-0.566032,-1.37411,8.08766,0.217564,-1.44857,8.20957,0.17477,-1.33959,8.10596,-0.18909,-1.44386,8.23159,-0.186708,-0.157857,9.43656,0.714302,-0.0470983,9.40895,0.732215,-8.88178e-16,9.40643,0.734381,-0.480487,9.56438,0.611138,-0.340707,9.51255,0.65987,-0.792714,9.5535,0.515884,-0.749223,9.54984,0.532876,-0.701014,9.55517,0.562817,-0.612175,9.57013,0.587174,-0.407302,0.0299936,0.0436081,-1.27568,0.0299927,0.0147482,-1.26702,0.0299936,0.283082,-0.412871,0.0299927,0.751201,-0.455625,0.0299936,0.430463,-1.25411,0.0297821,-0.257468,-0.990348,0.0299936,-0.277655,-0.723395,0.0299936,-0.275658,-0.402945,0.0299927,-0.277803,-0.69384,0.0299936,0.0344671,-1.01717,0.0299936,0.0314384,-1.02178,0.0299936,0.331851,-0.734753,0.0299936,0.423031,-1.46942,0.0299936,0.774537,-0.729295,0.0299936,0.758025,-1.15139,0.0299936,0.73235,-0.673916,0.0299936,1.07443,-1.22315,0.0299936,1.05154,-1.55626,0.0299936,1.07473,-0.330255,0.0299927,1.08758,-1.30256,2.302,0.0126935,-1.29656,2.30931,-0.079061,-1.27534,2.076,-0.11421,-1.28194,2.07403,-0.0297712,-1.15756,2.07727,-0.0256692,-1.16351,2.08212,-0.110321,-1.16575,2.32604,0.0184177,-1.17417,2.3322,-0.0733632,-1.30602,2.31027,0.0148611,-1.27537,2.06438,-0.0282554,-1.29855,2.31765,-0.0769092,-1.27061,2.06881,-0.112931,-1.2396,2.09071,-0.152696,-1.26284,2.29113,-0.126716,-1.36806,2.04635,-0.238864,-1.23443,2.10217,-0.00800606,-1.3983,2.25056,-0.250438,-1.25692,2.29669,0.0270147,-1.18076,2.1223,0.216823,-1.19001,2.31387,0.228722,-1.18207,2.31309,0.200138,-1.15135,2.12443,0.182348,-1.23035,2.3054,0.0257135,-1.18311,2.318,-0.239417,-1.20719,2.11278,-0.0103211,-1.15887,2.11337,-0.241082,-1.17965,2.7168,-0.159535,-1.22215,2.83848,0.0730289,-1.16718,2.92168,-0.168629,-1.21004,3.0067,0.0958107,-1.16086,2.92485,0.261934,-1.15725,3.05118,0.269884,-1.16434,2.94289,0.298338,-1.18947,2.75239,0.296694,-1.23763,2.92766,0.0986492,-1.3979,2.89215,-0.113426,-1.25075,2.73072,0.0739701,-1.4041,2.68556,-0.11908,-1.24915,2.91443,-0.0479668,-1.26408,2.71104,-0.0663925,-1.29455,2.69903,-0.0285485,-1.27713,2.95037,-0.0056818,-1.29817,2.69984,0.0562947,-1.28378,2.94912,0.086439,-1.15209,2.94268,-0.0044702,-1.1429,2.93981,0.0873985,-1.18676,2.69316,-0.0279896,-1.17992,2.69164,0.05672,-1.30296,2.71042,0.0543414,-1.29796,2.70687,-0.0301548,-1.2767,2.94172,-0.00740456,-1.28189,2.94027,0.0846777,-0.471648,0.758845,0.827037,-0.47639,0.809023,0.687664,-0.44317,0.752505,0.554745,-0.391447,0.622398,0.506143,-0.351536,0.494843,0.570351,-0.346713,0.443704,0.709899,-0.380011,0.501168,0.842593,-0.43172,0.631364,0.891222,-0.464907,0.725081,0.79609,-0.434385,0.62763,0.845154,-0.394847,0.528202,0.808002,-0.369445,0.485022,0.706393,-0.373077,0.523354,0.599848,-0.403598,0.620776,0.550785,-0.443138,0.720235,0.587939,-0.468532,0.763438,0.689547,-0.395136,0.723591,0.779479,-0.397937,0.753225,0.697168,-0.378318,0.719847,0.61867,-0.347772,0.643009,0.589967,-0.324192,0.567722,0.627872,-0.321391,0.538089,0.710183,-0.341011,0.571466,0.788681,-0.371556,0.648304,0.817385,-0.335795,0.695423,0.741872,-0.325095,0.661926,0.758686,-0.311177,0.626698,0.745858,-0.302248,0.611731,0.709864,-0.303643,0.62478,0.673162,-0.313985,0.658408,0.656381,-0.327999,0.693601,0.669202,-0.336831,0.708603,0.705205,-0.308094,0.649179,0.724188,-0.300732,0.666968,0.709343,-0.315067,0.676912,0.69241,-0.43903,0.720972,0.786826,-0.44224,0.754934,0.692495,-0.419755,0.716681,0.602533,-0.384749,0.628623,0.569638,-0.357726,0.542341,0.61308,-0.354516,0.50838,0.70741,-0.376999,0.546632,0.797372,-0.412007,0.634692,0.830267,-0.462573,0.619801,0.881517,-0.412683,0.494099,0.834525,-0.38063,0.438,0.706543,-0.385199,0.488,0.571801,-0.423693,0.611144,0.50978,-0.473626,0.736744,0.556699,-0.505694,0.791304,0.685012,-0.501116,0.742864,0.819557,-1.28169,0.783167,0.500116,-1.31439,0.772254,0.638974,-1.3831,0.675977,0.719465,-1.44758,0.550733,0.694438,-1.47005,0.46989,0.578555,-1.43735,0.480803,0.439698,-1.36864,0.57708,0.359208,-1.30416,0.702324,0.384234,-1.36683,0.702481,0.422674,-1.41203,0.61467,0.405129,-1.46021,0.54717,0.461561,-1.48313,0.539518,0.558915,-1.46738,0.596199,0.640162,-1.42217,0.684008,0.657709,-1.374,0.751509,0.601276,-1.35107,0.759161,0.503921,-1.4979,0.699234,0.536661,-1.50707,0.699109,0.514144,-1.49625,0.687925,0.495466,-1.47258,0.729899,0.544411,-1.49169,0.703137,0.567166,-1.50969,0.66818,0.559864,-1.51569,0.646001,0.528376,-1.50691,0.649146,0.490532,-1.4877,0.675858,0.467794,-1.4698,0.710866,0.475079,-1.46347,0.732861,0.506629,-1.4089,0.715441,0.429682,-1.44835,0.63882,0.414373,-1.49039,0.57992,0.463614,-1.51039,0.573244,0.548563,-1.49664,0.622702,0.619456,-1.4572,0.699322,0.634768,-1.41516,0.758222,0.585525,-1.39516,0.764899,0.500577,-1.34943,0.754229,0.613967,-1.40384,0.67799,0.677704,-1.45489,0.578813,0.657887,-1.47269,0.514795,0.566121,-1.4468,0.523437,0.456165,-1.39238,0.599677,0.392427,-1.34133,0.698854,0.412243,-1.32353,0.762872,0.504008,-1.33065,0.721124,0.373086,-1.39744,0.591386,0.347162,-1.46862,0.491653,0.430541,-1.50249,0.480347,0.574382,-1.47922,0.564093,0.694423,-1.41243,0.693832,0.720347,-1.34125,0.793563,0.636969,-1.30738,0.804869,0.493128,-1.1387,3.6371,0.468567,-1.22649,3.63696,0.237505,-1.18945,3.41472,0.198948,-0.426742,3.23194,0.604395,-0.470508,3.56753,0.731794,-0.542733,3.57427,0.822832,-1.13453,2.62872,0.464041,-1.10653,3.39736,0.379742,-1.07581,3.30326,0.594643,-0.644835,3.26747,0.755962,-0.815241,3.28029,0.760304,-1.28952,3.60918,0.686216,-1.14181,3.47319,0.452306,-0.684705,3.54608,1.04149,-0.685484,3.34015,0.81319,-1.12105,3.36915,0.653331,-0.852567,3.34372,0.821244,-1.19299,3.61027,0.901944,-0.925588,3.58213,1.04864,-1.16063,4.27985,1.01026,-1.14546,4.2619,0.865962,-0.794313,4.22245,1.07045,-0.927245,4.25489,1.13958,-0.752132,4.20086,1.04467,-1.1268,4.24356,0.825684,-1.12281,4.2403,0.957099,-0.862456,4.2154,1.0985,-1.2631,3.96815,0.755207,-1.18127,3.95905,0.955049,-0.922362,3.93108,1.09752,-0.698909,3.90903,1.08484,-0.595228,3.89835,0.949626,-1.1641,3.95603,0.619554,-1.18042,3.6254,0.532356,-1.11199,3.42796,0.411991,-0.658016,3.29435,0.771852,-0.582632,3.56636,0.881002,-1.08919,3.32815,0.614797,-0.825785,3.3026,0.780029,-0.762319,4.20267,1.04122,-1.12175,4.24207,0.834693,-1.13386,4.24472,0.969683,-0.878053,4.21923,1.11046,-0.623161,3.89911,0.985424,-1.19094,3.95745,0.656643,-1.13884,4.25579,0.859541,-1.15323,4.27779,1.0017,-0.922825,4.25418,1.12829,-0.792154,4.22123,1.05628,-0.750212,4.1889,1.01569,-1.10624,4.22432,0.817632,-0.858358,4.20892,1.09984,-1.13018,4.23842,0.952766,-0.760449,4.19896,1.02268,-1.11101,4.23299,0.828461,-1.22313,1.96501,-0.164316,-0.438147,1.95874,-0.334969,-1.25705,2.9606,-0.12313,-0.405432,2.83781,-0.307541,-0.84157,1.97014,-0.508298,-0.688881,1.96842,-0.509431,-0.544934,1.96521,-0.45431,-1.12238,1.96858,-0.345025,-0.830269,2.79316,-0.513749,-0.659552,2.78079,-0.511174,-0.513543,2.78787,-0.443813,-1.14695,2.86898,-0.343794,-0.492567,0.56513,-0.236922,-0.443228,0.500372,0.448055,-1.06365,1.07321,0.902392,-0.958949,0.617847,-0.372038,-1.25808,0.447811,0.201422,-1.29364,0.451291,0.491077,-0.681836,0.614064,-0.399434,-0.670351,1.05663,0.896327,-0.420401,0.499821,0.0774494,-0.504655,0.77233,0.710401,-1.27436,0.755856,0.667344,-1.1803,0.547528,-0.150128,-0.49063,0.808224,-0.221302,-0.46682,0.770671,0.371242,-1.05464,1.12361,0.811898,-0.942941,0.842551,-0.36205,-1.22685,0.719301,0.115581,-1.26795,0.805694,0.325799,-0.693526,0.841422,-0.390631,-0.683853,1.11407,0.825546,-0.446668,0.76729,0.0561294,-0.564421,0.974904,0.615938,-1.211,1.00049,0.58177,-1.16147,0.792742,-0.149371,-0.967188,-0.018647,2.40426,-1.13453,-0.0203847,2.37202,-0.823457,-0.0198748,2.38467,-0.809005,0.0325416,2.33447,-1.07209,0.0510701,2.3163,-0.893923,0.125016,2.29119,-1.02074,0.113292,2.28974,-0.839676,0.0959581,2.30207,-0.961976,0.133399,2.28458,-0.969559,0.259861,2.14233,-0.724543,0.203432,2.16162,-1.09201,0.220801,2.15336,-0.839232,0.251446,2.14499,-1.18806,0.113996,2.18976,-0.645202,0.0951669,2.21594,-0.603427,-0.0179201,2.29931,-1.27847,-0.0189629,2.2491,-1.42552,-0.0169413,2.05732,-0.444914,-0.0139401,2.08208,-0.49856,0.166917,1.99409,-1.32063,0.183475,1.96372,-0.788687,0.365008,1.89927,-1.18661,0.323398,1.9102,-0.616103,0.309686,1.9268,-0.989071,0.371171,1.89312,-1.01374,0.540953,1.38251,-0.522205,0.471839,1.41005,-1.2993,0.473228,1.36588,-0.748818,0.537647,1.39732,-1.44443,0.303328,1.35873,-0.379578,0.293797,1.41914,-0.29123,-0.00875905,1.42486,-1.53179,-0.010603,1.35011,-1.2588,1.69611,0.0295458,-1.17364,1.56637,-0.267685,-0.674915,1.39376,-0.551358,-0.518049,1.824,0.512089,-0.368004,1.47116,-0.00213536,-0.923451,1.40956,-0.477056,-0.948356,1.84885,0.644676,-0.386267,1.53637,0.282788,-0.449576,1.43313,-0.344297,-0.693519,1.22565,0.78078,-1.00643,1.2379,0.752093,-1.1813,1.12686,0.546332,-1.26198,0.994609,0.254501,-1.2241,0.901522,0.057362,-1.15526,0.936109,-0.161304,-0.975422,1.05707,-0.350177,-0.652624,1.05513,-0.403956,-0.496434,0.937528,-0.215228,-0.453919,0.89661,0.052879,-0.4807,0.914508,0.333385,-0.561114,1.16262,0.615138,-1.03114,0.576117,1.45191,-0.474913,0.498672,1.49164,-1.34022,0.480573,1.43986,-0.717959,0.572311,1.47096,-1.5005,0.315859,1.44872,-0.322473,0.313381,1.50789,-0.242143,-0.00538064,1.51441,-1.60639,-0.00800738,1.4341,-1.49446,-0.00800739,1.05429,-0.353938,-0.00538066,1.1223,-0.410575,0.405881,1.11904,-1.39389,0.417132,1.06175,-0.761604,0.717829,1.09409,-1.26454,0.631052,1.06623,-0.549899,0.628829,1.10812,-1.00451,0.722621,1.08,-1.01121,0.769896,1.12677,-0.535931,0.693736,1.15985,-1.27562,0.685301,1.11579,-0.754899,0.769875,1.14223,-1.43233,0.460483,1.10423,-0.376909,0.449494,1.16343,-0.267527,-0.00593823,1.16142,-1.58994,-0.00767138,1.09089,-1.42623,-0.0076714,0.680632,-0.38605,-0.00593825,0.739454,-0.482041,0.526223,0.732762,-1.30903,0.538864,0.685368,-0.779184,0.92184,0.702853,-1.1516,0.81285,0.686929,-0.602827,0.810763,0.718585,-0.964778,0.927848,0.692324,-0.417894,-0.00984579,1.84956,-1.4553,-0.0145746,1.78968,-0.48113,0.183269,1.84483,-1.34194,0.197319,1.79506,-0.78208,0.383604,1.82495,-0.601048,0.328858,1.83582,-1.20989,0.339412,1.80145,-0.994081,0.38865,1.81355,-1.00287,0.411684,1.89756,-1.23143,0.359827,1.88437,-0.587912,0.350116,1.92111,-0.778677,0.406213,1.91008,-1.3694,0.215038,1.87798,-0.460796,0.199147,1.92979,-1.48882,-0.010603,1.87271,-0.393452,-0.00875902,1.93436,-0.483061,0.918893,-0.261493,-0.407708,0.645055,0.433872,-0.972583,0.941604,-0.394494,-1.30573,0.779052,0.0601763,-1.30801,0.674926,0.297017,-0.697485,0.942773,-0.409251,-0.368221,0.775207,0.0982228,-0.447269,0.524723,0.826392,-1.43636,0.531792,0.783078,-1.19947,0.869701,-0.215343,-0.688416,-0.000471539,-0.530173,-1.29418,-0.000954014,-0.261905,-1.31427,-0.000216971,0.0199876,-1.42396,-0.00487804,0.279502,-0.374554,5.4809e-06,-0.307325,-0.384971,-4.56419e-06,0.0460228,-0.373184,-0.00298742,0.422124,-1.0859,-0.00188332,-0.505957,-0.41139,0.284188,0.411641,-0.358221,0.416938,0.0677702,-0.386812,0.443307,-0.27676,-1.34579,0.311081,0.273482,-1.35331,0.381952,0.0331711,-1.2952,0.430867,-0.228576,-1.00734,0.438138,-0.502808,-0.652995,0.439546,-0.527172,-0.690495,0.66343,-0.485095,-1.21198,0.652108,-0.214627,-1.31194,0.61275,0.0523661,-1.32183,0.515338,0.292823,-0.480923,0.642125,-0.232034,-0.370712,0.627356,0.0883579,-0.413214,0.508401,0.400208,-0.975312,0.664804,-0.469289,-1.63458,-0.00756974,0.777364,-1.56767,0.187303,0.77787,-1.51534,0.356098,0.780409,-0.329314,0.120074,0.836475,-0.291127,-0.00531839,0.835047,-0.386437,0.333067,0.832039,-1.03999,1.2655,-0.235683,-0.569513,1.22225,-0.303251,-0.674518,1.23169,-0.32462,-0.8029,1.24442,-0.343529,-0.498908,1.21409,-0.14785,-1.1214,1.26855,-0.10603,-1.25997,2.97898,0.140663,-0.409203,2.93628,0.549532,-1.27732,2.18247,0.0543973,-0.720471,1.56232,0.765338,-0.989275,1.55424,0.741906,-1.2027,1.50543,0.521559,-1.30173,1.39626,0.236243,-1.29136,1.33146,0.0314089,-1.21453,1.21887,-0.236961,-0.986465,1.23956,-0.451962,-0.625595,1.2253,-0.514734,-0.424713,1.19141,-0.306086,-0.356149,1.19359,0.0213254,-0.377923,1.23808,0.315482,-0.498865,1.50303,0.592724,-0.68866,2.21967,0.659677,-0.936335,2.21373,0.633986,-0.475573,2.22294,0.506601,-1.28604,2.65693,0.0900661,-0.433065,2.65125,0.503923,-1.10805,2.95503,0.522165,-0.654891,2.93057,0.70477,-1.23554,2.63909,0.261535,-0.667739,2.61901,0.663177,-0.897602,2.6115,0.643142,-1.19757,2.97153,0.312404,-0.869892,2.93121,0.686346,-1.12935,2.20427,0.461606,-1.24412,2.19031,0.233759,-0.734359,1.53595,0.725466,-0.971002,1.52656,0.703538,-1.1644,1.47498,0.499725,-1.2548,1.36474,0.229623,-1.24203,1.30037,0.0383351,-1.17166,1.20257,-0.208238,-0.959975,1.23972,-0.414895,-0.651475,1.23152,-0.47898,-0.464981,1.18531,-0.277857,-0.4072,1.17905,0.0259123,-0.430778,1.21579,0.30477,-0.53366,1.4805,0.563857,-0.70882,1.84701,0.65709,-1.13096,1.83192,0.46053,-1.23768,1.77156,0.20991,-0.720842,1.57616,0.755234,-0.984541,1.5684,0.733096,-1.19371,1.52398,0.517696,-1.29295,1.42001,0.237227,-1.2863,1.35528,0.0359704,-1.20773,1.23761,-0.234894,-0.977103,1.24274,-0.452415,-0.634996,1.22837,-0.516409,-0.432152,1.19985,-0.30732,-0.362222,1.20599,0.0206402,-0.385806,1.2525,0.31833,-0.504674,1.52329,0.587916,-0.807689,0.0299927,-0.492847,-0.942691,0.0299927,-0.481133,-0.359224,0.0299937,1.47569,-1.47985,0.0299937,1.41111,-1.17537,0.0299937,1.42866,-0.673346,0.0299937,1.45759,-0.725063,0.0299937,1.85888,-1.16295,0.0299937,1.83365,-1.42853,0.0299937,1.81834,-0.451072,0.0299937,1.87467,-1.05374,0.0299928,2.33639,-0.859097,0.0299928,2.34589,-0.770581,0.0299937,2.11211,-0.542702,0.0299928,2.1253,-1.35546,0.0299928,2.07835,-1.13469,0.0299937,2.09113,-0.434882,0.0299927,-0.277621,-0.435881,0.0299936,0.0426964,-0.483464,0.0299936,0.429721,-0.44443,0.0299936,0.751881,-0.364531,0.0299936,1.08626,-0.390553,0.0299937,1.47388,-0.478399,0.0299937,1.8731,-0.565421,0.0299928,2.12399,-1.23207,0.0299927,-0.259831,-1.24413,0.0299927,0.0167871,-1.23711,0.0299936,0.289029,-1.43064,0.0299936,0.769393,-1.51564,0.0299936,1.0719,-1.44272,0.0299937,1.41325,-1.39614,0.0299937,1.82021,-1.32852,0.0299928,2.07989,-0.838436,0.0299928,2.31446,-0.671746,0.0296693,2.27841,-1.20962,0.0303478,2.25963,-1.0682,0.0299928,2.30443,-0.687756,0.0299928,2.26127,-1.1935,0.0299928,2.24444,-0.628204,0.0296718,-0.452036,-0.802039,0.0299927,-0.478304,-0.945884,0.0299927,-0.4675,-1.07671,0.0298213,-0.445532,-0.634576,0.0300394,-0.439375,-1.06924,0.0299743,-0.433666,-1.12995,7.8569,0.714685,-1.00714,7.20072,0.746596,-1.02269,7.49328,0.649214,-1.27514,8.15058,0.578731,-1.40046,8.33476,0.55027,-1.20424,6.54073,0.986012,-1.04514,6.97139,0.800967,-1.17416,6.74623,0.891382,-1.18057,6.33855,1.01379,-0.948971,7.16841,0.718945,-1.04401,6.9186,0.798224,-1.15495,6.6788,0.887791,-1.16664,6.49928,0.971315,-1.22552,6.37398,1.05179,-1.00855,7.21509,0.733584,-1.023,6.99536,0.784728,-1.16298,6.7643,0.876388,-1.2078,6.53778,0.973894,-1.22603,6.36473,1.04386,-1.07007,8.57608,1.00257,-1.2399,2.46154,-0.143916,-0.430924,2.4002,-0.313413,-0.836087,2.38005,-0.510881,-0.674363,2.37302,-0.510236,-0.533351,2.37653,-0.445343,-1.13506,2.41733,-0.34384,-0.808101,1.60089,-0.429119,-1.07265,1.61361,-0.292247,-1.16391,1.61326,-0.136877,-0.461127,1.58745,-0.239428,-0.552853,1.59455,-0.378117,-0.674513,1.59767,-0.418766,-1.34678,4.5588,-0.109181,-0.187992,4.37302,-0.236215,-0.816057,4.4791,-0.61683,-0.351011,4.40152,-0.509169,-0.589679,4.44448,-0.600021,-1.17418,4.5277,-0.426184,0.00264589,9.36275,-0.824212,-8.88178e-16,9.47257,-0.749116,4.7793e-05,9.56352,-0.703089,9.71987e-05,9.5274,-0.696397,-8.88178e-16,8.7246,-1.06399,-8.88178e-16,8.50177,-1.09809,-8.88178e-16,9.58858,0.71652,-8.88178e-16,7.03062,1.54958,-8.88178e-16,8.25064,1.38608,-8.88178e-16,7.5215,1.40938,-8.88178e-16,6.80268,1.60483,-8.88178e-16,7.36207,1.42218,-8.88178e-16,6.80099,1.60699,-8.88178e-16,7.16549,1.43903,-8.88178e-16,9.37562,0.739489,-8.88178e-16,7.98125,1.34516,-0.489939,6.17145,1.33462,-0.211612,6.16503,1.44164,0,6.16036,1.45212,-0.0926574,5.02553,1.11216,-0.459281,6.19865,1.34175,-0.237441,5.36835,1.3399,-0.464685,5.81186,1.40443,-0.46014,6.17095,1.34599,0.958961,7.50396,-0.42415,0.907277,7.2516,-0.396789,0.480256,7.39369,-0.715444,0.562134,7.63184,-0.782478,0.122297,7.50542,-0.73986,0.2145,7.74688,-0.821681,-0.217269,7.62049,-0.807362,-0.125763,7.8621,-0.831242,-0.555768,7.73631,-0.856878,-0.506037,7.97933,-0.891732,-0.980121,8.17969,-0.747162,-1.02029,7.97131,-0.598804,-0.869736,7.8666,-0.735697,-0.828094,8.07838,-0.876193,0.891237,7.25797,-0.40195,0.943918,7.50953,-0.434534,-0.887215,7.50953,-0.510176,-0.81285,7.25418,-0.460016,0.828094,8.07838,-0.876193,0.869736,7.8666,-0.735697,1.02029,7.97131,-0.598804,0.987291,8.16005,-0.729402,0.506037,7.97933,-0.891732,0.555768,7.73631,-0.791342,0.125763,7.8621,-0.785117,0.217269,7.62049,-0.761238,-0.214039,7.7468,-0.769206,-0.122013,7.50534,-0.687385,-0.576891,7.60804,-0.792883,-0.483288,7.36705,-0.709315,-0.829049,7.24781,-0.455338,-0.902413,7.50396,-0.502548,-0.00149369,7.12352,-0.669808,0.00257322,6.86799,-0.759762,0.630834,7.12862,-0.543915,0.635149,6.87205,-0.586496,-0.69347,6.84615,-0.547242,-0.697537,7.10167,-0.506357,0.31467,7.12607,-0.64413,0.318861,6.87002,-0.711233,-0.377977,6.85605,-0.715733,-0.382044,7.11157,-0.627503,-1.07567,8.24793,-0.746741,-1.26486,8.41599,-0.644328,-0.932359,8.52427,-0.96859,-1.11276,8.70169,-0.87151,-0.929247,8.95635,-0.84102,-0.74885,8.77894,-0.937249,0.763104,8.7652,-0.995331,0.943501,8.94262,-0.899102,1.11506,8.69738,-0.881548,0.934661,8.51996,-0.978628,1.27156,8.41397,-0.625966,1.08236,8.24591,-0.728379,1.16576,8.60215,-0.839401,0.982431,8.42785,-0.938258,-0.978103,8.43606,-0.935005,-1.16131,8.6105,-0.835039,0.907404,6.86516,-0.385721,0.903089,7.12172,-0.342586,-0.952604,7.09753,-0.286948,-0.948537,6.84201,-0.329097,0.947527,7.50956,-0.396987,0.895842,7.2572,-0.369625,0.471442,7.40314,-0.688373,0.554161,7.64127,-0.755139,0.121909,7.51322,-0.710892,0.214123,7.75469,-0.792719,-0.219324,7.62611,-0.777965,-0.12778,7.86776,-0.801851,-0.553271,7.74286,-0.827711,-0.502592,7.98622,-0.862738,-0.958089,8.18814,-0.728635,-0.99826,7.97976,-0.580278,-0.853484,7.87548,-0.712097,-0.811997,8.08727,-0.852488,0.877485,7.26524,-0.3763,0.92959,7.51722,-0.409325,-0.875017,7.51935,-0.484588,-0.801318,7.26366,-0.433994,0.81301,8.08933,-0.852687,0.854419,7.87749,-0.712313,0.998254,7.97974,-0.58028,0.965253,8.16848,-0.710878,0.503247,7.99001,-0.863836,0.553852,7.74662,-0.763236,0.127902,7.86966,-0.756164,0.21943,7.62807,-0.732291,-0.215754,7.75428,-0.740206,-0.123699,7.51282,-0.658382,-0.571725,7.6183,-0.76517,-0.477223,7.37746,-0.681844,-0.82102,7.25543,-0.427457,-0.894384,7.51159,-0.474667,-0.00138016,7.11418,-0.6413,0.00270323,6.85865,-0.731255,0.616788,7.1234,-0.517925,0.621382,6.86677,-0.56037,-0.677578,6.84107,-0.522309,-0.681295,7.09675,-0.481619,0.307999,7.11861,-0.61585,0.312394,6.86248,-0.682928,-0.370175,6.84772,-0.687989,-0.373824,7.1034,-0.599834,-1.05578,8.25757,-0.726455,-1.24497,8.42563,-0.624042,-0.920388,8.52146,-0.941226,-1.10169,8.69784,-0.843894,-0.922423,8.94804,-0.813016,-0.742026,8.77062,-0.909245,0.753134,8.76017,-0.967488,0.933531,8.93759,-0.871259,1.10208,8.69585,-0.854545,0.921176,8.51906,-0.951845,1.25125,8.42473,-0.606686,1.06205,8.25667,-0.709099,1.14725,8.60895,-0.816791,0.963906,8.43468,-0.915672,-0.960035,8.44197,-0.911796,-1.14334,8.61622,-0.811711,0.889696,6.86088,-0.361887,0.88538,7.11744,-0.318753,-0.933165,7.09417,-0.264348,-0.929098,6.83865,-0.306496,5.18959,9.35857,-0.102872,5.13196,8.67238,-0.168157,5.18907,9.36588,-0.115429,5.17987,9.26979,0.0354708,5.19694,9.36792,-0.380305,5.16548,9.15789,0.105614,5.16123,9.16407,-0.612637,5.12678,8.86793,-0.583085,5.12154,8.70727,-0.409684,5.16946,9.00376,0.154364,4.96705,8.87567,0.111074,5.05708,8.9247,0.116063,4.8426,9.13069,0.127892,4.74615,9.08004,0.129151,5.0577,8.78045,0.0279813,5.13568,8.82825,0.0379982,4.87903,8.97089,0.155275,4.97703,9.02115,0.155726,5.20922,8.72843,-0.135429,5.08716,8.71381,-0.156249,5.12652,8.73566,-0.281169,5.21304,8.75202,-0.271068,4.94294,9.12019,0.0826645,5.03123,9.06974,0.0825777,4.793,8.69017,0.0247716,4.68174,8.71687,0.0577376,4.92014,8.89338,0.103624,4.82593,8.94347,0.137803,4.57997,8.62508,-0.132276,4.6918,8.63047,-0.158464,4.57643,8.66027,-0.279749,4.45999,8.67663,-0.269648,4.7408,8.67073,-0.271068,4.62647,8.65437,-0.281169,4.57036,8.63924,-0.15502,4.72527,8.64714,-0.135429,4.45273,8.92293,0.134624,4.35668,8.87284,0.133019,4.6287,8.74695,0.0219037,4.53028,8.69916,0.012151,4.14358,9.08807,0.132303,4.23756,9.13853,0.13239,3.95027,8.6535,-0.32502,4.08195,8.65116,-0.322612,4.12279,9.11246,0.038473,4.00368,9.11124,0.0257229,4.00751,8.6549,-0.00387725,4.01114,8.84191,0.109665,4.13577,8.66689,-0.00453606,4.13152,8.85519,0.115487,4.02086,9.06641,0.0277219,4.14051,9.06698,0.0390865,4.14769,9.05713,0.136526,4.02699,9.05656,0.124554,4.13103,8.84166,0.137565,4.11899,8.55616,0.0512316,4.0088,8.82819,0.131661,3.99064,8.55402,0.051442,4.0094,9.1013,0.118953,4.12912,9.10251,0.132024,4.12744,8.73499,0.0697622,4.00131,8.72695,0.0668861,3.97255,8.76966,0.119836,4.15719,8.77253,0.12758,3.97323,8.82479,0.141118,4.15413,8.83292,0.150402,4.15971,8.80654,0.0151694,4.15596,8.87006,0.0268802,3.97566,8.7989,0.0212496,3.97568,8.8572,0.0314823,3.97368,8.82822,0.129619,3.97304,8.77286,0.109135,4.15782,8.77703,0.112764,4.15458,8.83768,0.134624,3.97415,8.6455,-0.224151,4.10457,8.65411,-0.222644,4.1357,8.97038,0.155297,4.0149,8.96648,0.145355,4.14072,8.65155,0.0457747,4.01275,8.64628,0.0448837,4.78039,9.40658,-0.0758903,4.76216,8.60106,-0.158204,4.78223,9.41594,-0.0897542,4.78764,9.3185,0.0524774,4.80853,9.45278,-0.399189,4.80446,9.19037,0.120447,4.78208,9.20776,-0.664155,4.74916,8.84774,-0.630498,4.73625,8.63754,-0.432423,4.82671,9.00896,0.193148,5.81292,8.9698,0.231106,5.85223,8.89834,0.193407,6.09238,8.86075,0.441783,6.05889,8.91491,0.479462,6.13263,9.06693,0.434664,6.1976,9.05422,0.378486,5.97695,9.12428,0.12241,5.90066,9.13654,0.188919,4.31381,9.44199,-0.0618918,4.2985,9.44424,-0.0635358,4.05855,9.47121,-0.017392,4.51904,9.44486,-0.0581054,5.49535,9.29461,-0.130617,4.27963,9.03584,0.195479,4.12353,8.67239,-0.488393,3.94936,8.97942,-0.793941,3.96388,9.17557,-0.811735,4.27259,9.20613,0.123737,4.2338,9.47144,-0.430466,4.28524,9.33671,0.0495489,4.31738,9.45015,-0.0705113,4.159,8.6346,-0.188733,3.18435,8.94545,-0.802984,3.21318,9.28523,-0.834873,3.83697,9.5561,-0.411871,4.04619,9.50936,-0.0266839,3.90232,8.95371,-0.951788,3.91709,9.17944,-0.972256,4.3553,9.49459,-0.085989,4.29335,9.54822,-0.481011,3.44224,8.74425,-0.601675,3.59093,8.65176,-0.336891,4.19712,8.58747,-0.19124,4.15014,8.58921,-0.556903,5.42449,8.74371,-0.178109,4.52216,8.5898,-0.152909,4.1348,8.63906,-0.191443,4.30552,9.45117,-0.0699893,4.272,9.33513,0.0510349,4.20998,9.46862,-0.431985,4.25321,9.20597,0.121319,3.92268,9.17111,-0.820164,3.90956,8.99009,-0.803735,4.09708,8.67762,-0.490771,4.25988,9.03723,0.188107,4.06171,9.48015,-0.0290835,3.97984,9.33767,0.102296,3.92329,9.21192,0.140946,3.88343,9.06108,0.143446,4.52157,9.45551,-0.0728152,4.53049,9.35201,0.0649886,4.55752,9.50919,-0.411319,4.55611,9.21338,0.134445,4.52887,9.236,-0.69745,4.49537,8.83469,-0.66114,4.49929,8.62569,-0.450121,4.58325,9.01254,0.203868,5.48857,9.28069,-0.361534,5.4981,9.29899,-0.14191,5.48819,9.21409,0.0183646,5.46127,9.12224,0.0913291,5.44745,8.88813,-0.535673,5.42456,8.77699,-0.386944,5.45184,8.99878,0.118106,5.4647,9.12043,-0.561116,5.44332,8.73495,0.100872,5.4565,9.24885,0.103988,5.47256,9.3663,-0.392541,5.47533,9.29927,-0.502092,5.46829,9.39265,-0.175882,5.47086,9.39611,-0.276114,5.4609,9.31769,0.031806,5.46352,9.35818,-0.0476925,5.42713,8.61162,-0.0998135,5.42938,8.67674,-0.00595385,5.43057,8.58601,-0.337064,5.42848,8.58258,-0.239573,5.44278,8.69157,-0.529697,5.43492,8.62755,-0.447478,5.46988,8.82451,-0.641673,5.48026,8.99049,-0.658712,5.49064,9.13993,-0.675752,5.45197,9.13692,0.208964,5.44097,8.9996,0.236854,5.43933,8.84832,0.213619,5.70189,8.81395,0.0898769,5.26142,8.67462,0.147307,5.2978,9.30073,0.147513,5.3165,9.40985,-0.414438,5.31507,9.33484,-0.543873,5.72037,9.23602,-0.384707,5.73113,9.18198,-0.488114,5.71384,9.25262,-0.163536,5.71649,9.25468,-0.268192,5.3125,9.43769,-0.177545,5.31544,9.44164,-0.290299,5.30225,9.35829,0.0489659,5.3071,9.40189,-0.0432082,5.71136,9.1967,0.0395035,5.71064,9.23203,-0.0382047,5.69757,8.75679,-0.103305,5.69943,8.78288,-0.000410627,5.26265,8.54643,-0.0961424,5.27375,8.57597,0.018465,5.26856,8.53709,-0.354748,5.26592,8.5312,-0.242787,5.70042,8.74722,-0.331948,5.69836,8.74489,-0.226228,5.71808,8.80561,-0.513113,5.70528,8.75953,-0.433351,5.28843,8.62652,-0.56972,5.27526,8.57773,-0.471744,5.7576,9.05903,-0.598629,5.74801,8.96286,-0.605562,5.74124,8.89017,-0.59075,5.29574,9.16957,-0.732011,5.29996,9.00274,-0.750165,5.30059,8.79493,-0.723831,5.70433,8.98179,0.205973,5.70898,8.9085,0.179451,5.26641,8.84434,0.276775,5.27168,9.01464,0.300472,5.28855,9.17683,0.273982,5.7149,9.14698,0.102829,5.70846,9.05461,0.174994,6.49213,9.15533,-0.598623,6.63174,9.20955,-0.623172,6.35115,9.24484,-0.568174,6.36484,9.28955,-0.464205,6.62843,9.15688,-0.509625,6.5005,9.17354,-0.490761,6.37074,9.33473,-0.0411153,6.63864,9.1471,-0.0269347,6.51655,9.20652,-0.0405739,6.33858,9.19705,-0.668319,6.38117,9.35441,-0.26453,6.32958,9.2457,0.166441,6.3763,9.33593,-0.352561,6.37937,9.35739,-0.161182,6.35642,9.29934,0.0591969,6.63882,9.13101,-0.255033,6.6254,9.13459,0.148849,6.62114,9.17414,-0.756287,6.65038,9.2252,-0.387692,6.66092,9.23647,-0.126912,6.64802,9.21131,0.0554855,6.50947,9.19346,0.0601968,6.5183,9.22651,-0.364727,6.52363,9.23131,-0.264977,6.52777,9.24857,-0.153468,6.48991,9.14388,0.181109,6.48133,9.11854,-0.699323,5.85292,9.11706,-0.603598,5.84196,9.28774,-0.0520971,5.85306,9.22159,-0.472468,5.84789,9.29808,-0.261897,5.80412,9.18633,0.10529,5.85052,9.28612,-0.368465,5.84551,9.29688,-0.1644,5.83273,9.24755,0.0295016,5.56568,9.31331,0.0178463,5.56798,9.36499,-0.169827,5.57401,9.34965,-0.374259,5.5744,9.25228,0.0650122,5.61725,9.18174,-0.571995,5.58396,9.2997,-0.469839,5.56502,9.34596,-0.0539808,5.57043,9.3669,-0.266562,6.0664,9.10222,-0.630811,6.07967,9.25926,-0.0521186,6.08104,9.18121,-0.482696,6.0857,9.27234,-0.266513,6.04353,9.15957,0.161724,6.08459,9.2439,-0.376418,6.08344,9.27356,-0.1691,6.07326,9.22566,0.0439849,6.22167,9.15742,-0.656728,6.21845,9.15845,0.177487,6.23878,9.24226,-0.0678524,6.23575,9.21565,-0.507124,6.24619,9.25935,-0.286629,6.24214,9.24625,-0.402638,6.24314,9.26177,-0.191188,6.23656,9.21994,0.0338962,6.42794,9.18863,0.0274598,6.4339,9.21064,-0.201778,6.43326,9.18191,-0.421409,6.4124,9.13205,-0.628701,6.41613,9.16458,0.144365,6.42667,9.15868,-0.52689,6.43812,9.2078,-0.302182,6.42868,9.19644,-0.0800807,5.99311,9.30921,0.0445054,6.00352,9.35822,-0.173533,6.0047,9.32788,-0.385671,5.96269,9.24158,0.164982,6.00584,9.35698,-0.273211,6.00106,9.26373,-0.49442,5.99967,9.34359,-0.0538324,5.98609,9.1829,-0.645979,6.2104,8.84002,0.724453,6.21749,8.78246,0.659902,6.43923,8.65151,0.846311,6.43643,8.69617,0.903928,6.5391,8.85896,0.881638,6.57943,8.86248,0.809321,6.36445,8.99023,0.614545,6.31786,8.99066,0.701284,6.11645,9.06197,0.465565,6.18315,9.05462,0.399779,6.39091,8.94457,0.61417,6.33424,8.95295,0.670056,6.25802,8.8133,0.695426,6.28369,8.76673,0.652726,6.05614,8.84742,0.442227,6.02628,8.91009,0.487378,6.87585,9.06778,-0.791544,6.84365,8.99127,-0.807368,7.08247,8.92813,-0.835309,7.10613,8.98433,-0.823686,7.14027,8.9992,-0.695546,7.12795,8.95612,-0.66872,6.89473,9.0189,-0.608766,6.90559,9.08013,-0.649746,6.70099,9.08903,-0.59733,6.70134,9.02357,-0.56182,6.94195,9.00881,-0.62361,6.94632,9.05554,-0.646529,6.9152,9.04583,-0.77593,6.90198,8.98751,-0.792583,6.65575,9.00435,-0.762736,6.67375,9.08375,-0.740065,6.47443,9.1191,-0.696952,6.45314,9.04075,-0.720381,6.69862,9.0133,-0.74851,6.71426,9.07086,-0.731301,6.74476,9.07822,-0.601598,6.73816,9.03156,-0.57908,6.49796,9.05643,-0.518983,6.50077,9.1221,-0.55398,6.58706,9.15406,-0.453753,6.57254,9.08894,-0.481253,6.83646,9.07548,-0.514881,6.84915,9.13488,-0.490829,6.86946,9.1306,-0.356757,6.86242,9.07927,-0.338955,6.59735,9.0856,-0.293673,6.60037,9.14429,-0.317964,6.85562,9.1751,-0.363666,6.85296,9.10481,-0.32911,7.18971,9.0529,-0.393175,7.19611,9.1007,-0.415388,7.17596,9.09254,-0.549306,7.16408,9.03348,-0.568102,6.82671,9.08891,-0.531748,6.84263,9.1734,-0.506579,7.16306,9.12089,-0.569436,7.13837,9.04366,-0.593231,7.43031,8.99038,-0.61034,7.44875,9.04806,-0.59257,7.46923,9.05641,-0.458715,7.45737,9.01007,-0.43566,7.16802,9.06084,-0.374282,7.17827,9.12535,-0.410032,6.6323,9.16951,-0.219275,6.61537,9.09984,-0.24958,6.93433,9.07476,-0.267459,6.94806,9.1344,-0.242888,6.96143,9.12979,-0.107957,6.95154,9.07832,-0.0904558,6.63177,9.09589,-0.0461437,6.63887,9.15893,-0.0722469,6.95379,9.15256,-0.0997597,6.94609,9.0779,-0.0714212,7.25376,9.04465,-0.122943,7.26365,9.09656,-0.140444,7.25028,9.10117,-0.275375,7.23656,9.04093,-0.299946,6.92828,9.08072,-0.292278,6.94666,9.16405,-0.259377,7.24563,9.1381,-0.2868,7.22551,9.05706,-0.31916,7.57112,8.99473,-0.328901,7.58614,9.05106,-0.304734,7.59845,9.04732,-0.169675,7.58716,8.99861,-0.15181,7.24166,9.05538,-0.0981512,7.25134,9.12787,-0.127039,7.19866,9.06718,0.191334,7.18132,9.00008,0.218576,7.48993,8.94429,0.217909,7.50621,8.99221,0.201864,7.51516,8.99511,0.0665205,7.50133,8.93931,0.0346215,7.19972,9.00127,-0.00813474,7.21824,9.07599,0.0325902,6.94976,9.10364,0.0243505,6.93776,9.02612,-0.0222611,7.2448,8.99976,0.0182315,7.25426,9.05746,0.0560114,7.24669,9.05338,0.191409,7.23615,9.00337,0.207469,6.92318,9.02279,0.210435,6.93247,9.09244,0.18321,6.63324,9.14165,0.168271,6.6532,9.07284,0.195496,6.94227,9.03516,0.192953,6.95614,9.08504,0.176893,6.96396,9.0886,0.0414958,6.95455,9.03059,0.00567061,6.65446,9.08003,-0.0432736,6.65123,9.15168,0.00941143,-5.18958,9.35857,-0.102872,-5.13196,8.67238,-0.168157,-5.18907,9.36588,-0.115429,-5.17987,9.26979,0.0354708,-5.19694,9.36792,-0.380305,-5.16548,9.15789,0.105615,-5.16123,9.16407,-0.612637,-5.12678,8.86793,-0.583085,-5.12154,8.70726,-0.409684,-5.16946,9.00376,0.154364,-4.96705,8.87567,0.111074,-5.05708,8.9247,0.116063,-4.8426,9.13069,0.127892,-4.74615,9.08004,0.129151,-5.0577,8.78045,0.0279814,-5.13568,8.82825,0.0379983,-4.87903,8.97089,0.155275,-4.97703,9.02115,0.155726,-5.20922,8.72843,-0.135429,-5.08716,8.71381,-0.156249,-5.12652,8.73566,-0.281169,-5.21304,8.75202,-0.271068,-4.94294,9.12019,0.0826646,-5.03123,9.06973,0.0825777,-4.793,8.69017,0.0247716,-4.68174,8.71687,0.0577377,-4.92014,8.89338,0.103624,-4.82593,8.94347,0.137803,-4.57997,8.62508,-0.132276,-4.6918,8.63046,-0.158464,-4.57643,8.66027,-0.279749,-4.45999,8.67663,-0.269648,-4.7408,8.67073,-0.271068,-4.62647,8.65437,-0.281169,-4.57036,8.63924,-0.15502,-4.72527,8.64714,-0.135429,-4.45273,8.92293,0.134624,-4.35668,8.87284,0.133019,-4.6287,8.74695,0.0219038,-4.53028,8.69915,0.0121511,-4.14358,9.08807,0.132303,-4.23756,9.13853,0.13239,-3.95027,8.6535,-0.32502,-4.08195,8.65116,-0.322612,-4.12279,9.11246,0.0384731,-4.00368,9.11124,0.0257229,-4.00751,8.6549,-0.00387723,-4.01114,8.84191,0.109665,-4.13577,8.66689,-0.00453603,-4.13152,8.85519,0.115487,-4.02086,9.06641,0.027722,-4.14051,9.06698,0.0390866,-4.14769,9.05713,0.136526,-4.02699,9.05656,0.124554,-4.13103,8.84166,0.137565,-4.11899,8.55616,0.0512317,-4.0088,8.82819,0.131661,-3.99064,8.55402,0.051442,-4.0094,9.1013,0.118953,-4.12912,9.10251,0.132024,-4.12744,8.73499,0.0697623,-4.00131,8.72695,0.0668862,-3.97255,8.76966,0.119836,-4.15719,8.77253,0.12758,-3.97323,8.82479,0.141118,-4.15413,8.83292,0.150402,-4.15971,8.80654,0.0151694,-4.15596,8.87006,0.0268803,-3.97566,8.7989,0.0212496,-3.97568,8.8572,0.0314823,-3.97368,8.82822,0.129619,-3.97304,8.77286,0.109135,-4.15781,8.77703,0.112765,-4.15458,8.83768,0.134624,-3.97415,8.6455,-0.224151,-4.10457,8.65411,-0.222644,-4.1357,8.97038,0.155297,-4.0149,8.96648,0.145355,-4.14072,8.65155,0.0457747,-4.01275,8.64628,0.0448838,-4.78039,9.40658,-0.0758903,-4.76216,8.60105,-0.158204,-4.78223,9.41594,-0.0897541,-4.78764,9.3185,0.0524774,-4.80853,9.45278,-0.399189,-4.80445,9.19037,0.120447,-4.78208,9.20776,-0.664155,-4.74916,8.84774,-0.630498,-4.73625,8.63754,-0.432423,-4.82671,9.00896,0.193148,-5.81292,8.9698,0.231106,-5.85224,8.89834,0.193407,-6.09238,8.86075,0.441783,-6.05889,8.91491,0.479462,-6.13263,9.06693,0.434664,-6.1976,9.05422,0.378486,-5.97696,9.12428,0.12241,-5.90066,9.13654,0.188919,-4.31381,9.44199,-0.0618918,-4.2985,9.44424,-0.0635357,-4.05855,9.47121,-0.017392,-4.51904,9.44486,-0.0581053,-5.49535,9.29461,-0.130617,-4.27963,9.03584,0.195479,-4.12353,8.67239,-0.488393,-3.94936,8.97942,-0.793941,-3.96388,9.17557,-0.811735,-4.27259,9.20613,0.123737,-4.2338,9.47144,-0.430466,-4.28524,9.33671,0.049549,-4.31738,9.45015,-0.0705113,-4.159,8.6346,-0.188733,-3.18435,8.94545,-0.802984,-3.21318,9.28523,-0.834873,-3.83697,9.5561,-0.411871,-4.04619,9.50936,-0.0266839,-3.90232,8.95371,-0.951788,-3.91709,9.17944,-0.972256,-4.3553,9.49459,-0.085989,-4.29335,9.54822,-0.481011,-3.44224,8.74425,-0.601675,-3.59093,8.65176,-0.336891,-4.19712,8.58747,-0.19124,-4.15014,8.58921,-0.556903,-5.42449,8.74371,-0.178109,-4.52216,8.5898,-0.152908,-4.1348,8.63906,-0.191443,-4.30552,9.45117,-0.0699892,-4.27199,9.33513,0.0510349,-4.20998,9.46862,-0.431985,-4.25321,9.20597,0.121319,-3.92268,9.17111,-0.820164,-3.90955,8.99009,-0.803735,-4.09708,8.67762,-0.490771,-4.25988,9.03723,0.188107,-4.06171,9.48015,-0.0290835,-3.97984,9.33767,0.102297,-3.92329,9.21192,0.140946,-3.88343,9.06108,0.143446,-4.52157,9.45551,-0.0728152,-4.53049,9.352,0.0649886,-4.55752,9.50919,-0.411319,-4.55611,9.21338,0.134445,-4.52887,9.236,-0.69745,-4.49537,8.83469,-0.66114,-4.49929,8.62569,-0.450121,-4.58325,9.01253,0.203868,-5.48857,9.28069,-0.361534,-5.4981,9.29899,-0.14191,-5.48819,9.21408,0.0183646,-5.46127,9.12223,0.0913291,-5.44745,8.88813,-0.535673,-5.42456,8.77699,-0.386944,-5.45184,8.99878,0.118106,-5.4647,9.12043,-0.561116,-5.44332,8.73495,0.100872,-5.4565,9.24885,0.103988,-5.47256,9.3663,-0.392541,-5.47533,9.29927,-0.502092,-5.46829,9.39265,-0.175882,-5.47086,9.39612,-0.276114,-5.4609,9.31769,0.0318061,-5.46352,9.35818,-0.0476925,-5.42713,8.61162,-0.0998135,-5.42938,8.67674,-0.0059538,-5.43057,8.58601,-0.337064,-5.42848,8.58258,-0.239573,-5.44278,8.69157,-0.529697,-5.43492,8.62755,-0.447478,-5.46988,8.82451,-0.641673,-5.48026,8.99049,-0.658712,-5.49064,9.13993,-0.675752,-5.45197,9.13692,0.208964,-5.44097,8.9996,0.236854,-5.43933,8.84832,0.213619,-5.70189,8.81395,0.089877,-5.26142,8.67462,0.147307,-5.2978,9.30073,0.147513,-5.3165,9.40985,-0.414438,-5.31507,9.33485,-0.543872,-5.72037,9.23602,-0.384707,-5.73113,9.18198,-0.488114,-5.71384,9.25262,-0.163536,-5.71649,9.25468,-0.268192,-5.3125,9.4377,-0.177545,-5.31544,9.44164,-0.290299,-5.30225,9.35829,0.048966,-5.3071,9.40189,-0.0432081,-5.71136,9.19671,0.0395036,-5.71064,9.23203,-0.0382047,-5.69757,8.75679,-0.103305,-5.69943,8.78288,-0.000410574,-5.26265,8.54643,-0.0961423,-5.27375,8.57597,0.0184651,-5.26856,8.53709,-0.354748,-5.26592,8.53121,-0.242787,-5.70042,8.74722,-0.331948,-5.69836,8.74489,-0.226228,-5.71808,8.80561,-0.513113,-5.70528,8.75953,-0.433351,-5.28843,8.62652,-0.56972,-5.27527,8.57773,-0.471744,-5.7576,9.05904,-0.598629,-5.74801,8.96286,-0.605562,-5.74124,8.89017,-0.59075,-5.29574,9.16957,-0.732011,-5.29996,9.00274,-0.750165,-5.30059,8.79493,-0.723831,-5.70433,8.98179,0.205973,-5.70898,8.9085,0.179451,-5.26641,8.84434,0.276775,-5.27168,9.01464,0.300472,-5.28855,9.17684,0.273982,-5.7149,9.14698,0.10283,-5.70846,9.05461,0.174994,-6.49213,9.15533,-0.598624,-6.63174,9.20955,-0.623172,-6.35115,9.24484,-0.568174,-6.36484,9.28955,-0.464205,-6.62843,9.15688,-0.509625,-6.5005,9.17354,-0.490761,-6.37074,9.33473,-0.0411153,-6.63864,9.1471,-0.0269347,-6.51655,9.20652,-0.0405739,-6.33858,9.19705,-0.668319,-6.38117,9.35441,-0.26453,-6.32958,9.2457,0.166441,-6.3763,9.33593,-0.352561,-6.37937,9.35739,-0.161182,-6.35642,9.29934,0.0591969,-6.63882,9.13101,-0.255033,-6.6254,9.1346,0.148849,-6.62114,9.17414,-0.756287,-6.65038,9.2252,-0.387692,-6.66092,9.23647,-0.126912,-6.64802,9.21131,0.0554855,-6.50947,9.19346,0.0601969,-6.5183,9.22651,-0.364727,-6.52363,9.23132,-0.264977,-6.52777,9.24857,-0.153468,-6.48991,9.14388,0.181109,-6.48133,9.11854,-0.699323,-5.85292,9.11706,-0.603598,-5.84196,9.28774,-0.0520971,-5.85306,9.22159,-0.472468,-5.84788,9.29808,-0.261897,-5.80412,9.18633,0.10529,-5.85051,9.28612,-0.368465,-5.84551,9.29688,-0.1644,-5.83273,9.24755,0.0295016,-5.56568,9.31331,0.0178462,-5.56797,9.36499,-0.169827,-5.57401,9.34965,-0.374259,-5.5744,9.25228,0.0650121,-5.61725,9.18174,-0.571995,-5.58396,9.2997,-0.469839,-5.56502,9.34596,-0.0539808,-5.57043,9.3669,-0.266562,-6.0664,9.10222,-0.630811,-6.07967,9.25926,-0.0521187,-6.08104,9.18121,-0.482696,-6.0857,9.27234,-0.266513,-6.04353,9.15957,0.161724,-6.08459,9.2439,-0.376418,-6.08344,9.27356,-0.1691,-6.07326,9.22566,0.0439848,-6.22167,9.15742,-0.656728,-6.21845,9.15845,0.177487,-6.23878,9.24226,-0.0678524,-6.23575,9.21565,-0.507124,-6.24619,9.25935,-0.286629,-6.24214,9.24625,-0.402638,-6.24314,9.26177,-0.191188,-6.23656,9.21994,0.0338962,-6.42794,9.18863,0.0274598,-6.4339,9.21064,-0.201778,-6.43326,9.18191,-0.421409,-6.4124,9.13205,-0.628701,-6.41613,9.16458,0.144365,-6.42667,9.15869,-0.52689,-6.43812,9.2078,-0.302182,-6.42868,9.19644,-0.0800808,-5.99311,9.30921,0.0445054,-6.00352,9.35822,-0.173533,-6.0047,9.32788,-0.385671,-5.96269,9.24158,0.164982,-6.00584,9.35698,-0.273211,-6.00106,9.26373,-0.49442,-5.99966,9.34359,-0.0538325,-5.98609,9.1829,-0.645979,-6.2104,8.84001,0.724453,-6.21749,8.78246,0.659902,-6.43923,8.65151,0.846311,-6.43643,8.69616,0.903927,-6.5391,8.85896,0.881638,-6.57943,8.86248,0.809321,-6.36445,8.99023,0.614545,-6.31786,8.99065,0.701284,-6.11645,9.06197,0.465566,-6.18315,9.05461,0.399779,-6.39091,8.94457,0.61417,-6.33424,8.95295,0.670057,-6.25802,8.81329,0.695426,-6.28369,8.76673,0.652726,-6.05614,8.84742,0.442227,-6.02628,8.91009,0.487378,-6.87585,9.06778,-0.791544,-6.84365,8.99127,-0.807368,-7.08247,8.92813,-0.835309,-7.10613,8.98433,-0.823686,-7.14028,8.9992,-0.695546,-7.12795,8.95612,-0.66872,-6.89473,9.0189,-0.608766,-6.90559,9.08013,-0.649746,-6.70099,9.08903,-0.59733,-6.70134,9.02357,-0.56182,-6.94195,9.00881,-0.62361,-6.94632,9.05554,-0.646529,-6.9152,9.04583,-0.77593,-6.90198,8.98751,-0.792583,-6.65575,9.00436,-0.762736,-6.67375,9.08375,-0.740065,-6.47443,9.1191,-0.696952,-6.45314,9.04075,-0.720381,-6.69862,9.01331,-0.74851,-6.71426,9.07086,-0.731301,-6.74476,9.07822,-0.601598,-6.73816,9.03156,-0.57908,-6.49796,9.05643,-0.518983,-6.50077,9.1221,-0.55398,-6.58706,9.15406,-0.453753,-6.57255,9.08894,-0.481253,-6.83646,9.07548,-0.514881,-6.84915,9.13488,-0.490829,-6.86946,9.1306,-0.356757,-6.86242,9.07927,-0.338955,-6.59735,9.0856,-0.293673,-6.60038,9.14429,-0.317964,-6.85562,9.1751,-0.363666,-6.85296,9.10481,-0.32911,-7.18971,9.0529,-0.393175,-7.19611,9.1007,-0.415388,-7.17596,9.09255,-0.549306,-7.16408,9.03348,-0.568102,-6.82671,9.08891,-0.531748,-6.84263,9.17341,-0.506579,-7.16306,9.12089,-0.569436,-7.13837,9.04366,-0.593231,-7.43031,8.99038,-0.610341,-7.44875,9.04806,-0.59257,-7.46923,9.05641,-0.458715,-7.45737,9.01007,-0.43566,-7.16802,9.06084,-0.374282,-7.17827,9.12535,-0.410032,-6.6323,9.16951,-0.219275,-6.61537,9.09984,-0.24958,-6.93433,9.07476,-0.267459,-6.94806,9.1344,-0.242888,-6.96143,9.12979,-0.107957,-6.95154,9.07832,-0.0904557,-6.63177,9.09589,-0.0461436,-6.63887,9.15893,-0.0722468,-6.95379,9.15256,-0.0997596,-6.94609,9.0779,-0.0714212,-7.25376,9.04465,-0.122943,-7.26365,9.09656,-0.140444,-7.25028,9.10117,-0.275375,-7.23656,9.04093,-0.299946,-6.92828,9.08071,-0.292278,-6.94666,9.16405,-0.259377,-7.24563,9.1381,-0.2868,-7.22551,9.05706,-0.31916,-7.57112,8.99473,-0.3289,-7.58614,9.05106,-0.304733,-7.59845,9.04732,-0.169674,-7.58716,8.99861,-0.151809,-7.24166,9.05538,-0.098151,-7.25134,9.12788,-0.127039,-7.19866,9.06718,0.191334,-7.18132,9.00008,0.218576,-7.48993,8.94429,0.217909,-7.50621,8.99221,0.201864,-7.51516,8.99511,0.0665206,-7.50133,8.93931,0.0346216,-7.19972,9.00127,-0.00813469,-7.21825,9.07599,0.0325903,-6.94976,9.10364,0.0243506,-6.93776,9.02612,-0.0222611,-7.2448,8.99976,0.0182316,-7.25426,9.05746,0.0560114,-7.24669,9.05338,0.191409,-7.23615,9.00337,0.207469,-6.92318,9.02279,0.210435,-6.93248,9.09244,0.18321,-6.63324,9.14165,0.168271,-6.6532,9.07284,0.195496,-6.94227,9.03515,0.192953,-6.95614,9.08504,0.176893,-6.96397,9.0886,0.0414958,-6.95455,9.03059,0.00567066,-6.65446,9.08003,-0.0432736,-6.65123,9.15168,0.00941147,5.18438,9.33327,-0.118125,5.12575,8.70139,-0.163683,5.18314,9.33758,-0.123425,5.17566,9.24884,0.0144121,5.19023,9.34052,-0.370095,5.16241,9.14532,0.0785516,5.15544,9.15377,-0.585062,5.12197,8.88143,-0.556729,5.11577,8.73383,-0.396992,5.16658,8.99469,0.125915,4.96195,8.88746,0.0839641,5.05168,8.9372,0.089335,4.84484,9.12614,0.0983246,4.74839,9.07548,0.0995836,5.05122,8.80182,0.00795356,5.12921,8.8496,0.0179448,4.8788,8.97176,0.125289,4.9755,9.02489,0.126,5.20347,8.75747,-0.140332,5.08139,8.74276,-0.161586,5.12153,8.76494,-0.276889,5.20806,8.7813,-0.266788,4.93634,9.11816,0.0534711,5.02463,9.0677,0.0533843,4.79041,8.71103,0.00336406,4.67958,8.73948,0.0381356,4.91458,8.89865,0.0746189,4.82046,8.94929,0.108884,4.58143,8.65504,-0.132492,4.69255,8.66007,-0.163249,4.57892,8.68936,-0.272867,4.46248,8.70572,-0.262766,4.73774,8.70036,-0.267523,4.62341,8.684,-0.277624,4.56657,8.66817,-0.161994,4.72161,8.67656,-0.14001,4.44983,8.93079,0.105817,4.35475,8.8783,0.103584,4.62407,8.76819,0.00123049,4.52556,8.71904,-0.00981038,4.14383,9.08811,0.102305,4.2378,9.13857,0.102392,3.94954,8.68348,-0.324097,4.08122,8.68114,-0.321689,4.1258,9.11276,0.00862684,4.00669,9.11154,-0.00412329,4.0055,8.68135,-0.0178862,4.01182,8.84621,0.0799824,4.13387,8.69223,-0.0204786,4.13251,8.85724,0.0855738,4.02374,9.06187,-0.00179189,4.14334,9.06121,0.00978235,4.15062,9.05238,0.10705,4.02995,9.05224,0.095015,4.13175,8.85109,0.109096,4.11912,8.55421,0.0212957,4.00929,8.83894,0.103657,3.99078,8.55207,0.0215061,4.01251,9.09922,0.0891886,4.13224,9.10043,0.10226,4.12719,8.74725,0.0423862,4.00106,8.73912,0.039468,3.99529,8.77643,0.101468,4.1361,8.77914,0.107301,3.9942,8.83225,0.121004,4.13404,8.83992,0.129256,4.13779,8.80176,0.0350937,4.13573,8.86507,0.0484681,3.99793,8.7952,0.0409981,3.99588,8.85315,0.053289,4.00366,8.82766,0.130469,4.00303,8.77232,0.109969,4.12786,8.77578,0.111634,4.12463,8.83644,0.133478,3.9727,8.67546,-0.224141,4.10291,8.68406,-0.222897,4.138,8.96827,0.125461,4.01712,8.96511,0.115469,4.14079,8.65495,0.0159688,4.01283,8.64914,0.0150202,4.77612,9.3821,-0.0926917,4.75855,8.63054,-0.154028,4.77727,9.38825,-0.100191,4.78407,9.29849,0.030418,4.80264,9.42487,-0.389886,4.80189,9.17781,0.093326,4.777,9.19761,-0.636387,4.7452,8.86051,-0.603645,4.73251,8.66426,-0.419306,4.82436,8.99846,0.165144,5.83428,8.97207,0.210165,5.87044,8.91745,0.179148,6.11058,8.87986,0.427523,6.0803,8.91848,0.458746,6.13885,9.04079,0.421326,6.19076,9.02507,0.376544,5.97012,9.09513,0.120468,5.90706,9.11051,0.175451,4.31388,9.41983,-0.0821137,4.29479,9.42366,-0.0850431,4.053,9.45149,-0.0393077,4.51752,9.42113,-0.0764027,5.48896,9.26898,-0.144837,4.28285,9.02507,0.167665,4.12632,8.69939,-0.47561,3.9466,8.99261,-0.767142,3.96015,9.16393,-0.784336,4.2753,9.19353,0.096643,4.23468,9.44284,-0.421464,4.28635,9.31796,0.0261537,4.31832,9.42269,-0.08255,4.16317,8.66413,-0.1855,3.18989,8.95704,-0.775878,3.21775,9.27612,-0.806659,3.83683,9.52798,-0.401437,4.04257,9.48404,-0.0423555,3.88774,8.96341,-0.927427,3.90187,9.17252,-0.947354,4.32831,9.48841,-0.0975369,4.26848,9.53579,-0.469736,3.44633,8.76999,-0.586819,3.59542,8.68127,-0.333874,4.16867,8.59464,-0.184963,4.12835,8.60512,-0.54379,5.41756,8.77255,-0.173586,4.52287,8.61957,-0.149262,4.1103,8.65488,-0.184405,4.29698,9.43486,-0.0936793,4.2701,9.31823,0.0263204,4.18523,9.46613,-0.415226,4.25441,9.19518,0.0933516,3.89807,9.17933,-0.805097,3.88445,8.98952,-0.787328,4.07289,8.68377,-0.474124,4.26385,9.02827,0.159754,4.05556,9.46871,-0.0561236,3.97584,9.32371,0.0760503,3.92246,9.2037,0.112105,3.88419,9.05465,0.114154,4.51977,9.42782,-0.0842175,4.5296,9.33252,0.0421958,4.55497,9.48053,-0.402838,4.55543,9.20096,0.107147,4.52473,9.22444,-0.670079,4.49237,8.84848,-0.63467,4.49917,8.65278,-0.437229,4.58243,9.00189,0.175833,5.48088,9.25372,-0.350867,5.49077,9.27046,-0.1476,5.48312,9.19252,-0.00186827,5.45778,9.10972,0.06429,5.44213,8.90174,-0.509476,5.41822,8.80357,-0.374549,5.44877,8.991,0.0892952,5.45815,9.10996,-0.533777,5.43307,8.75737,0.0837704,5.44659,9.22828,0.084529,5.46128,9.3403,-0.382712,5.46481,9.27633,-0.485869,5.45699,9.36515,-0.179924,5.45922,9.36857,-0.273719,5.45106,9.29373,0.0166645,5.45308,9.33178,-0.0574047,5.41441,8.63772,-0.10737,5.41711,8.70129,-0.018084,5.41852,8.61317,-0.332913,5.41622,8.6099,-0.241345,5.43122,8.71338,-0.512657,5.42306,8.65293,-0.43674,5.45879,8.83716,-0.616833,5.4709,8.99291,-0.630313,5.48012,9.12855,-0.650065,5.44228,9.12389,0.18374,5.433,8.99938,0.207934,5.43097,8.86173,0.188118,5.69361,8.83742,0.0731222,5.24942,8.6952,0.129077,5.28675,9.28003,0.128825,5.30749,9.38342,-0.403481,5.30589,9.31197,-0.526775,5.70695,9.21091,-0.375238,5.71945,9.15986,-0.471562,5.6995,9.22653,-0.167228,5.70179,9.22861,-0.266146,5.30429,9.40919,-0.182022,5.30681,9.41307,-0.287261,5.29336,9.33399,0.0337695,5.29916,9.37489,-0.0536016,5.70098,9.17367,0.0233303,5.69784,9.20658,-0.0476212,5.68438,8.78251,-0.111329,5.68904,8.80866,-0.0116793,5.25083,8.57302,-0.103444,5.26001,8.5996,0.00608579,5.25927,8.56513,-0.349503,5.25644,8.55962,-0.24449,5.68556,8.77308,-0.328677,5.68329,8.77075,-0.228171,5.70799,8.82714,-0.494826,5.69244,8.78439,-0.42252,5.27615,8.64836,-0.553225,5.26473,8.60339,-0.460305,5.74806,9.05004,-0.571645,5.74167,8.96591,-0.576399,5.73365,8.90154,-0.564046,5.2848,9.15833,-0.706438,5.2878,9.00444,-0.722791,5.28689,8.80646,-0.699761,5.69968,8.98141,0.176339,5.70327,8.92188,0.153211,5.25597,8.85568,0.251039,5.26083,9.01477,0.272503,5.27639,9.16518,0.24916,5.70629,9.12709,0.0820848,5.70184,9.04165,0.148763,6.48896,9.12622,-0.592101,6.64043,9.1809,-0.621268,6.33673,9.22052,-0.55813,6.34853,9.26658,-0.453883,6.63041,9.12722,-0.505571,6.49275,9.14564,-0.482916,6.35277,9.31195,-0.0487547,6.63356,9.11779,-0.0308505,6.50461,9.17984,-0.0473252,6.32648,9.17228,-0.65648,6.36246,9.33116,-0.261418,6.31516,9.22295,0.153219,6.35839,9.31298,-0.345331,6.36073,9.33403,-0.163759,6.34007,9.27636,0.0489536,6.62578,9.1041,-0.252648,6.62412,9.10888,0.133444,6.63356,9.14775,-0.749273,6.64477,9.19584,-0.385183,6.6514,9.20819,-0.12997,6.6446,9.18169,0.0521739,6.49925,9.1665,0.0518928,6.50557,9.19979,-0.359899,6.50763,9.20605,-0.262618,6.51269,9.22267,-0.154977,6.48137,9.11911,0.166492,6.48319,9.09032,-0.6893,5.84986,9.09336,-0.585462,5.83738,9.25919,-0.0601054,5.84874,9.19711,-0.455673,5.84253,9.26864,-0.259806,5.80239,9.16321,0.0862437,5.84496,9.25832,-0.358657,5.84047,9.26737,-0.166335,5.82989,9.22218,0.0137458,5.5609,9.28883,0.00118502,5.56109,9.33588,-0.172021,5.56703,9.32181,-0.365512,5.57109,9.23141,0.0437218,5.61245,9.15998,-0.551916,5.57795,9.27546,-0.453218,5.55878,9.31781,-0.0622446,5.56333,9.33779,-0.26505,6.06468,9.07723,-0.614298,6.07673,9.23034,-0.0595383,6.07825,9.15599,-0.466697,6.0821,9.24269,-0.263754,6.04343,9.13452,0.145215,6.08053,9.21623,-0.365579,6.08027,9.24377,-0.170664,6.07189,9.1992,0.0299119,6.21687,9.13013,-0.645231,6.21245,9.13163,0.165464,6.22968,9.21416,-0.0730857,6.22962,9.18828,-0.496486,6.23688,9.23097,-0.283853,6.23392,9.21843,-0.394996,6.23353,9.23342,-0.193142,6.2294,9.19226,0.0248065,6.4234,9.15979,0.0205913,6.42622,9.18169,-0.203537,6.42514,9.15376,-0.414978,6.40623,9.10445,-0.618689,6.41333,9.1363,0.134756,6.41958,9.13092,-0.517999,6.43014,9.17903,-0.299259,6.42182,9.16755,-0.084339,5.98327,9.28313,0.0334181,5.99208,9.33057,-0.175654,5.99613,9.3004,-0.377222,5.95406,9.21642,0.151097,5.99511,9.32909,-0.270596,5.99591,9.23692,-0.481964,5.98837,9.31649,-0.0600005,5.98252,9.15599,-0.633209,6.23036,8.84339,0.702314,6.23848,8.79971,0.647172,6.46022,8.66876,0.833581,6.45621,8.69892,0.881539,6.54115,8.83614,0.862266,6.56871,8.8352,0.802928,6.35373,8.96296,0.608152,6.31814,8.96666,0.683284,6.12036,9.03769,0.448388,6.17413,9.02654,0.394262,6.38189,8.9165,0.608654,6.33798,8.92856,0.653001,6.27875,8.81827,0.674316,6.30263,8.78638,0.640271,6.07508,8.86707,0.429772,6.04685,8.91382,0.465872,6.87144,9.04686,-0.770505,6.84528,8.98455,-0.778178,7.08411,8.92141,-0.806119,7.10138,8.96275,-0.803396,7.12893,8.97401,-0.707226,7.1181,8.94225,-0.693429,6.88489,9.00503,-0.633475,6.89424,9.05495,-0.661461,6.69433,9.06332,-0.611286,6.69411,9.01033,-0.587747,6.93471,8.99557,-0.649537,6.93966,9.02981,-0.660451,6.91443,9.02209,-0.757603,6.90483,8.97871,-0.764045,6.6586,8.99556,-0.734199,6.67319,9.06065,-0.72093,6.4727,9.0959,-0.678004,6.45538,9.03162,-0.691892,6.70086,9.00418,-0.720022,6.7123,9.04704,-0.713167,6.73708,9.05292,-0.615771,6.73055,9.01884,-0.605163,6.49035,9.04371,-0.545066,6.49309,9.09682,-0.568187,6.58764,9.12874,-0.437678,6.57548,9.07698,-0.4539,6.83939,9.06351,-0.487527,6.84961,9.10911,-0.475478,6.86545,9.10609,-0.373587,6.85766,9.06907,-0.366763,6.59259,9.07539,-0.32148,6.59625,9.1206,-0.335906,6.84766,9.15015,-0.378299,6.84614,9.09258,-0.355641,7.18289,9.04067,-0.419706,7.18814,9.07585,-0.430185,7.17304,9.06942,-0.530414,7.16561,9.02444,-0.53954,6.82824,9.07986,-0.503186,6.83941,9.14955,-0.488679,7.15897,9.09797,-0.550514,7.13843,9.03481,-0.564567,7.43037,8.98153,-0.581676,7.44448,9.02464,-0.574319,7.46061,9.03121,-0.47252,7.44983,8.99766,-0.461906,7.16048,9.04842,-0.400528,7.16963,9.1008,-0.424944,6.63085,9.14437,-0.20298,6.61605,9.08799,-0.222029,6.93501,9.0629,-0.239908,6.94649,9.10866,-0.227564,6.95706,9.10537,-0.124827,6.94733,9.0683,-0.118416,6.62756,9.08587,-0.0741038,6.63444,9.1355,-0.0904555,6.94696,9.12941,-0.117566,6.94056,9.06854,-0.0993823,7.24824,9.03529,-0.150904,7.25682,9.07293,-0.157619,7.2462,9.07619,-0.259275,7.23579,9.02993,-0.272045,6.92751,9.06972,-0.264377,6.94262,9.13925,-0.242989,7.24042,9.11345,-0.270523,7.22421,9.04594,-0.291328,7.56982,8.98361,-0.301069,7.58093,9.02638,-0.288501,7.59065,9.02379,-0.186574,7.58137,8.9889,-0.179595,7.23587,9.04567,-0.125936,7.24357,9.10468,-0.144407,7.19333,9.04406,0.172986,7.17962,8.98997,0.190383,7.48824,8.93417,0.189716,7.5007,8.96845,0.184403,7.50694,8.9699,0.0805496,7.49486,8.9263,0.0608714,7.19326,8.98827,0.0181151,7.21005,9.05114,0.0472638,6.94464,9.07765,0.0384208,6.93296,9.01099,0.00319681,7.24,8.98463,0.0436894,7.24916,9.03099,0.069178,7.24383,9.0292,0.173883,7.23544,8.99327,0.179229,6.92247,9.0127,0.182195,6.92972,9.06891,0.164813,6.6289,9.11644,0.152591,6.65188,9.06252,0.167361,6.94096,9.02483,0.164818,6.95203,9.06089,0.159576,6.9573,9.0622,0.0540865,6.94833,9.01425,0.0300464,6.64824,9.06369,-0.0188979,6.64458,9.12511,0.0216588,-5.18438,9.33326,-0.118125,-5.12575,8.70139,-0.163683,-5.18314,9.33758,-0.123425,-5.17566,9.24884,0.0144121,-5.19023,9.34052,-0.370095,-5.16241,9.14532,0.0785517,-5.15544,9.15377,-0.585062,-5.12197,8.88143,-0.556729,-5.11577,8.73383,-0.396992,-5.16658,8.99468,0.125915,-4.96195,8.88746,0.0839641,-5.05167,8.9372,0.089335,-4.84484,9.12614,0.0983247,-4.74839,9.07548,0.0995836,-5.05122,8.80182,0.0079536,-5.1292,8.8496,0.0179449,-4.8788,8.97176,0.125289,-4.9755,9.02489,0.126,-5.20347,8.75746,-0.140332,-5.08139,8.74276,-0.161586,-5.12153,8.76493,-0.276889,-5.20806,8.78129,-0.266788,-4.93634,9.11816,0.0534712,-5.02463,9.0677,0.0533843,-4.79041,8.71103,0.00336409,-4.67958,8.73948,0.0381356,-4.91458,8.89865,0.0746189,-4.82046,8.94929,0.108884,-4.58143,8.65504,-0.132492,-4.69255,8.66007,-0.163249,-4.57892,8.68936,-0.272867,-4.46248,8.70572,-0.262766,-4.73774,8.70036,-0.267523,-4.62341,8.684,-0.277624,-4.56657,8.66817,-0.161994,-4.72161,8.67656,-0.14001,-4.44983,8.93079,0.105818,-4.35475,8.8783,0.103584,-4.62407,8.76819,0.00123052,-4.52556,8.71904,-0.00981034,-4.14383,9.08811,0.102305,-4.2378,9.13857,0.102392,-3.94954,8.68348,-0.324097,-4.08122,8.68114,-0.321689,-4.1258,9.11276,0.00862687,-4.00669,9.11154,-0.00412326,-4.0055,8.68135,-0.0178861,-4.01182,8.84621,0.0799824,-4.13387,8.69223,-0.0204786,-4.13251,8.85724,0.0855739,-4.02374,9.06187,-0.00179186,-4.14334,9.06121,0.00978238,-4.15062,9.05238,0.10705,-4.02995,9.05224,0.0950151,-4.13175,8.85109,0.109096,-4.11912,8.55421,0.0212958,-4.00929,8.83894,0.103657,-3.99078,8.55207,0.0215061,-4.01251,9.09922,0.0891887,-4.13224,9.10043,0.10226,-4.12719,8.74725,0.0423862,-4.00106,8.73912,0.039468,-3.99529,8.77643,0.101468,-4.1361,8.77914,0.107301,-3.9942,8.83225,0.121004,-4.13404,8.83992,0.129256,-4.13779,8.80176,0.0350937,-4.13573,8.86507,0.0484681,-3.99793,8.7952,0.0409981,-3.99588,8.85315,0.053289,-4.00366,8.82766,0.130469,-4.00303,8.77232,0.109969,-4.12786,8.77578,0.111634,-4.12463,8.83644,0.133478,-3.9727,8.67546,-0.224141,-4.10291,8.68406,-0.222897,-4.138,8.96827,0.125461,-4.01712,8.96511,0.115469,-4.14079,8.65495,0.0159688,-4.01283,8.64914,0.0150202,-4.77612,9.38209,-0.0926916,-4.75855,8.63054,-0.154028,-4.77727,9.38825,-0.100191,-4.78407,9.29849,0.030418,-4.80264,9.42487,-0.389886,-4.80189,9.1778,0.093326,-4.777,9.19761,-0.636387,-4.7452,8.86051,-0.603645,-4.73251,8.66426,-0.419306,-4.82436,8.99846,0.165144,-5.83428,8.97207,0.210165,-5.87044,8.91745,0.179148,-6.11059,8.87986,0.427523,-6.0803,8.91848,0.458746,-6.13885,9.04079,0.421326,-6.19076,9.02507,0.376544,-5.97012,9.09513,0.120468,-5.90706,9.11051,0.175451,-4.31388,9.41983,-0.0821136,-4.29479,9.42366,-0.085043,-4.053,9.45149,-0.0393077,-4.51752,9.42113,-0.0764027,-5.48896,9.26898,-0.144837,-4.28285,9.02507,0.167665,-4.12632,8.69939,-0.47561,-3.9466,8.99261,-0.767142,-3.96015,9.16393,-0.784336,-4.2753,9.19353,0.096643,-4.23468,9.44284,-0.421464,-4.28635,9.31796,0.0261538,-4.31832,9.42269,-0.0825499,-4.16317,8.66413,-0.1855,-3.18989,8.95704,-0.775878,-3.21775,9.27612,-0.806659,-3.83683,9.52798,-0.401437,-4.04257,9.48404,-0.0423555,-3.88774,8.96341,-0.927427,-3.90187,9.17252,-0.947354,-4.32831,9.48841,-0.0975369,-4.26848,9.53579,-0.469736,-3.44633,8.76999,-0.586819,-3.59542,8.68127,-0.333874,-4.16867,8.59464,-0.184963,-4.12835,8.60512,-0.54379,-5.41756,8.77255,-0.173586,-4.52287,8.61957,-0.149262,-4.1103,8.65488,-0.184405,-4.29698,9.43486,-0.0936792,-4.2701,9.31823,0.0263204,-4.18523,9.46613,-0.415226,-4.25441,9.19518,0.0933517,-3.89807,9.17933,-0.805097,-3.88445,8.98952,-0.787328,-4.07289,8.68377,-0.474124,-4.26385,9.02827,0.159754,-4.05556,9.46871,-0.0561235,-3.97584,9.32371,0.0760503,-3.92246,9.2037,0.112105,-3.88419,9.05465,0.114154,-4.51977,9.42782,-0.0842175,-4.5296,9.33252,0.0421958,-4.55497,9.48053,-0.402838,-4.55543,9.20096,0.107147,-4.52473,9.22444,-0.670079,-4.49237,8.84848,-0.63467,-4.49917,8.65278,-0.437229,-4.58243,9.00189,0.175833,-5.48088,9.25372,-0.350867,-5.49077,9.27046,-0.1476,-5.48312,9.19252,-0.00186821,-5.45778,9.10972,0.06429,-5.44213,8.90174,-0.509476,-5.41822,8.80357,-0.374549,-5.44877,8.991,0.0892953,-5.45815,9.10996,-0.533777,-5.43307,8.75737,0.0837705,-5.44659,9.22828,0.084529,-5.46128,9.3403,-0.382712,-5.46481,9.27633,-0.485869,-5.45699,9.36515,-0.179924,-5.45922,9.36857,-0.273718,-5.45106,9.29373,0.0166646,-5.45308,9.33178,-0.0574047,-5.41441,8.63772,-0.10737,-5.41711,8.70129,-0.018084,-5.41852,8.61317,-0.332913,-5.41622,8.6099,-0.241345,-5.43122,8.71338,-0.512657,-5.42306,8.65293,-0.43674,-5.45879,8.83716,-0.616833,-5.4709,8.99291,-0.630313,-5.48012,9.12855,-0.650065,-5.44228,9.12389,0.18374,-5.433,8.99938,0.207934,-5.43097,8.86173,0.188118,-5.69361,8.83742,0.0731223,-5.24942,8.69521,0.129077,-5.28675,9.28003,0.128825,-5.30749,9.38342,-0.403481,-5.30589,9.31197,-0.526774,-5.70695,9.21091,-0.375238,-5.71945,9.15986,-0.471562,-5.6995,9.22653,-0.167228,-5.70179,9.22861,-0.266146,-5.30429,9.40919,-0.182022,-5.30681,9.41307,-0.287261,-5.29336,9.334,0.0337696,-5.29916,9.3749,-0.0536015,-5.70098,9.17367,0.0233303,-5.69784,9.20658,-0.0476211,-5.68438,8.78251,-0.111329,-5.68904,8.80866,-0.0116792,-5.25083,8.57302,-0.103444,-5.26001,8.5996,0.00608584,-5.25928,8.56513,-0.349503,-5.25644,8.55962,-0.24449,-5.68556,8.77308,-0.328677,-5.68329,8.77075,-0.228171,-5.70799,8.82714,-0.494826,-5.69244,8.78439,-0.42252,-5.27615,8.64836,-0.553225,-5.26473,8.60339,-0.460305,-5.74806,9.05004,-0.571645,-5.74167,8.96591,-0.576398,-5.73365,8.90154,-0.564046,-5.2848,9.15833,-0.706438,-5.2878,9.00444,-0.722791,-5.28689,8.80647,-0.699761,-5.69968,8.98142,0.176339,-5.70327,8.92188,0.153211,-5.25597,8.85568,0.251039,-5.26083,9.01477,0.272503,-5.27639,9.16518,0.24916,-5.70629,9.12709,0.0820849,-5.70184,9.04165,0.148763,-6.48896,9.12623,-0.592101,-6.64043,9.1809,-0.621268,-6.33673,9.22052,-0.558131,-6.34853,9.26658,-0.453883,-6.63041,9.12722,-0.505571,-6.49275,9.14564,-0.482916,-6.35277,9.31195,-0.0487547,-6.63356,9.1178,-0.0308505,-6.50461,9.17984,-0.0473252,-6.32648,9.17228,-0.65648,-6.36246,9.33117,-0.261418,-6.31516,9.22295,0.153219,-6.35839,9.31298,-0.345331,-6.36073,9.33403,-0.163759,-6.34007,9.27637,0.0489536,-6.62578,9.1041,-0.252648,-6.62412,9.10888,0.133444,-6.63356,9.14775,-0.749273,-6.64477,9.19584,-0.385183,-6.6514,9.20819,-0.12997,-6.6446,9.18169,0.052174,-6.49925,9.1665,0.0518928,-6.50557,9.19979,-0.359899,-6.50763,9.20605,-0.262618,-6.51269,9.22267,-0.154977,-6.48137,9.11911,0.166492,-6.48319,9.09032,-0.6893,-5.84986,9.09336,-0.585462,-5.83738,9.25919,-0.0601055,-5.84874,9.19711,-0.455673,-5.84253,9.26864,-0.259806,-5.80239,9.16321,0.0862436,-5.84496,9.25832,-0.358658,-5.84047,9.26737,-0.166335,-5.82988,9.22218,0.0137458,-5.5609,9.28883,0.00118495,-5.56109,9.33588,-0.172021,-5.56703,9.32181,-0.365512,-5.57109,9.23141,0.0437218,-5.61245,9.15998,-0.551916,-5.57795,9.27546,-0.453218,-5.55878,9.31781,-0.0622446,-5.56333,9.33779,-0.26505,-6.06468,9.07723,-0.614298,-6.07673,9.23034,-0.0595383,-6.07825,9.15599,-0.466697,-6.0821,9.24269,-0.263754,-6.04343,9.13452,0.145215,-6.08053,9.21623,-0.365579,-6.08027,9.24377,-0.170665,-6.07189,9.1992,0.0299118,-6.21687,9.13013,-0.645231,-6.21245,9.13163,0.165464,-6.22968,9.21416,-0.0730857,-6.22962,9.18828,-0.496486,-6.23688,9.23097,-0.283853,-6.23392,9.21843,-0.394996,-6.23353,9.23342,-0.193142,-6.2294,9.19226,0.0248065,-6.4234,9.15979,0.0205913,-6.42622,9.18169,-0.203537,-6.42514,9.15376,-0.414978,-6.40623,9.10445,-0.618689,-6.41333,9.1363,0.134756,-6.41958,9.13093,-0.517999,-6.43014,9.17904,-0.299259,-6.42182,9.16755,-0.084339,-5.98327,9.28313,0.0334181,-5.99208,9.33057,-0.175654,-5.99613,9.3004,-0.377222,-5.95406,9.21643,0.151097,-5.9951,9.32909,-0.270596,-5.99591,9.23693,-0.481964,-5.98837,9.3165,-0.0600006,-5.98252,9.15599,-0.633209,-6.23036,8.84339,0.702313,-6.23848,8.79971,0.647172,-6.46022,8.66876,0.833581,-6.45621,8.69892,0.881539,-6.54115,8.83614,0.862265,-6.56871,8.8352,0.802927,-6.35373,8.96296,0.608152,-6.31814,8.96666,0.683284,-6.12036,9.03768,0.448389,-6.17413,9.02654,0.394263,-6.38189,8.91649,0.608654,-6.33798,8.92855,0.653001,-6.27875,8.81827,0.674316,-6.30263,8.78638,0.640271,-6.07508,8.86707,0.429772,-6.04685,8.91382,0.465872,-6.87144,9.04686,-0.770505,-6.84528,8.98455,-0.778178,-7.08411,8.92141,-0.806119,-7.10138,8.96275,-0.803396,-7.12893,8.97401,-0.707226,-7.1181,8.94225,-0.693429,-6.88489,9.00503,-0.633475,-6.89424,9.05495,-0.661461,-6.69433,9.06332,-0.611286,-6.69411,9.01033,-0.587746,-6.93471,8.99557,-0.649536,-6.93966,9.02981,-0.660451,-6.91443,9.02209,-0.757603,-6.90483,8.97871,-0.764045,-6.6586,8.99556,-0.734199,-6.67319,9.06065,-0.72093,-6.47271,9.09591,-0.678004,-6.45538,9.03162,-0.691892,-6.70086,9.00418,-0.720022,-6.7123,9.04704,-0.713167,-6.73708,9.05292,-0.615771,-6.73055,9.01885,-0.605163,-6.49035,9.04371,-0.545066,-6.49309,9.09682,-0.568187,-6.58764,9.12874,-0.437678,-6.57548,9.07698,-0.4539,-6.83939,9.06351,-0.487527,-6.84961,9.10911,-0.475478,-6.86545,9.10609,-0.373587,-6.85766,9.06907,-0.366763,-6.59259,9.07539,-0.32148,-6.59625,9.1206,-0.335906,-6.84766,9.15015,-0.378298,-6.84614,9.09258,-0.355641,-7.18289,9.04067,-0.419706,-7.18814,9.07585,-0.430185,-7.17304,9.06943,-0.530414,-7.16561,9.02444,-0.53954,-6.82824,9.07987,-0.503186,-6.83941,9.14955,-0.488679,-7.15897,9.09797,-0.550514,-7.13843,9.03481,-0.564567,-7.43037,8.98153,-0.581676,-7.44448,9.02464,-0.574319,-7.46061,9.03121,-0.47252,-7.44983,8.99766,-0.461906,-7.16048,9.04842,-0.400528,-7.16963,9.1008,-0.424944,-6.63085,9.14437,-0.20298,-6.61605,9.08799,-0.222029,-6.93501,9.06291,-0.239908,-6.94649,9.10866,-0.227564,-6.95706,9.10537,-0.124827,-6.94733,9.0683,-0.118416,-6.62756,9.08587,-0.0741037,-6.63444,9.1355,-0.0904554,-6.94697,9.1294,-0.117566,-6.94056,9.06854,-0.0993822,-7.24824,9.03529,-0.150904,-7.25682,9.07293,-0.157619,-7.2462,9.07619,-0.259275,-7.23579,9.02993,-0.272045,-6.92751,9.06972,-0.264377,-6.94262,9.13925,-0.242989,-7.24042,9.11345,-0.270523,-7.22421,9.04594,-0.291328,-7.56982,8.98361,-0.301069,-7.58093,9.02638,-0.288501,-7.59065,9.02379,-0.186574,-7.58137,8.9889,-0.179595,-7.23587,9.04567,-0.125936,-7.24357,9.10468,-0.144406,-7.19333,9.04406,0.172986,-7.17962,8.98997,0.190383,-7.48824,8.93417,0.189716,-7.5007,8.96845,0.184403,-7.50694,8.9699,0.0805496,-7.49486,8.9263,0.0608715,-7.19326,8.98827,0.0181152,-7.21005,9.05114,0.0472639,-6.94464,9.07765,0.0384208,-6.93297,9.01099,0.00319687,-7.24,8.98463,0.0436895,-7.24916,9.03099,0.069178,-7.24383,9.0292,0.173883,-7.23544,8.99327,0.179229,-6.92247,9.0127,0.182195,-6.92972,9.06891,0.164813,-6.6289,9.11644,0.152591,-6.65188,9.06252,0.167361,-6.94096,9.02483,0.164818,-6.95203,9.06089,0.159576,-6.9573,9.0622,0.0540865,-6.94833,9.01424,0.0300464,-6.64824,9.06369,-0.0188978,-6.64458,9.12511,0.0216589,-1.24805,8.68975,2.96493,-1.24805,8.68975,3.26056,-1.24805,8.68975,3.11274,-1.24805,8.37057,2.96493,-1.24805,8.37057,3.26056,-1.24805,8.37057,3.11274,-1.1133,8.68975,3.11274,-1.1133,8.68975,2.95743,-1.1133,8.68975,3.26806,-1.1133,8.37057,3.11274,-1.1133,8.37057,2.95743,-1.1133,8.37057,3.26806,-0.988544,8.68975,3.11274,-0.988543,8.68975,2.95049,-0.988543,8.68975,3.275,-0.988543,8.37057,3.11274,-0.988543,8.37057,2.95049,-0.988543,8.37057,3.275,-0.988543,8.39135,3.11274,-0.987713,8.385,2.96542,-0.987713,8.385,3.26007,-0.988544,8.66897,3.11274,-0.987713,8.67532,2.96542,-0.987713,8.67532,3.26007,-1.1133,8.39135,3.11274,-1.1125,8.38552,2.97184,-1.1125,8.38552,3.25365,-1.1133,8.66897,3.11274,-1.1125,8.6748,2.97184,-1.1125,8.6748,3.25365,-1.23083,8.68975,3.11274,-1.23083,8.68975,2.96397,-1.23083,8.68975,3.26152,-1.23083,8.37057,3.11274,-1.23083,8.37057,2.96397,-1.23083,8.37057,3.26152,-0.995469,8.39135,3.11274,-0.99464,8.38503,2.96578,-0.994639,8.38503,3.25971,-0.995469,8.66897,3.11274,-0.99464,8.6753,2.96578,-0.994639,8.6753,3.25971,-1.10316,8.39135,3.11274,-1.10235,8.38548,2.97132,-1.10235,8.38548,3.25417,-1.10316,8.66897,3.11274,-1.10235,8.67485,2.97132,-1.10235,8.67485,3.25417,-1.1239,8.68975,3.11274,-1.1239,8.68975,2.95802,-1.1239,8.68975,3.26747,-1.1239,8.37057,3.11274,-1.1239,8.37057,2.95802,-1.1239,8.37057,3.26747,-0.980477,8.68975,3.11274,-0.980477,8.68975,2.95004,-0.980477,8.68975,3.27545,-0.980477,8.37057,3.11274,-0.980477,8.37057,2.95004,-0.980477,8.37057,3.27545,-0.181385,8.68975,3.11274,-0.181385,8.68975,2.92774,-0.181385,8.68975,3.29775,-0.275705,8.37057,3.11274,-0.181385,8.37057,2.92774,-0.181385,8.37057,3.29775,-1.24805,8.68975,3.02581,-1.24805,8.68975,3.19967,-1.24805,8.37057,3.02581,-1.24805,8.37057,3.19967,-1.1133,8.68975,3.0214,-1.1133,8.68975,3.20408,-1.1133,8.37057,3.0214,-1.1133,8.37057,3.20408,-0.988544,8.68975,3.01732,-0.988543,8.68975,3.20817,-0.988543,8.37057,3.01732,-0.988543,8.37057,3.20817,-0.988055,8.38761,3.0261,-0.988055,8.38761,3.19939,-0.988055,8.67271,3.0261,-0.988055,8.67271,3.19939,-1.11283,8.38792,3.02988,-1.11283,8.38792,3.19561,-1.11283,8.6724,3.02988,-1.11283,8.6724,3.19561,-1.23083,8.68975,3.02525,-1.23083,8.68975,3.20024,-1.23083,8.37057,3.02525,-1.23083,8.37057,3.20024,-0.994981,8.38763,3.02631,-0.994981,8.38763,3.19918,-0.994981,8.67269,3.02631,-0.994981,8.67269,3.19918,-1.10268,8.3879,3.02957,-1.10268,8.3879,3.19592,-1.10268,8.67243,3.02957,-1.10268,8.67243,3.19592,-1.1239,8.68975,3.02175,-1.1239,8.68975,3.20374,-1.1239,8.37057,3.02175,-1.1239,8.37057,3.20374,-0.980477,8.68975,3.01706,-0.980477,8.68975,3.20843,-0.980477,8.37057,3.01706,-0.980477,8.37057,3.20843,-0.181385,8.68975,3.00394,-0.181385,8.68975,3.22155,-0.275705,8.37057,3.00394,-0.275705,8.37057,3.22155,-0.185107,11.39,3.00394,-0.185107,11.39,3.22155,-0.185107,11.39,3.11274,-0.181432,8.70603,3.00394,-0.181432,8.70603,3.22155,-0.181432,8.70603,3.11274,-0.193048,8.68975,3.11274,-0.193048,8.68975,2.92827,-0.193048,8.68975,3.29722,-0.285146,8.37057,3.11274,-0.193048,8.37057,2.92827,-0.193048,8.37057,3.29722,-0.193048,8.68975,3.00425,-0.193048,8.68975,3.22124,-0.285146,8.37057,3.00425,-0.285146,8.37057,3.22124,-0.184617,11.138,3.00394,-0.184617,11.138,3.22155,-0.184617,11.138,3.11274,-0.348447,11.1377,2.84791,-0.348447,11.1377,3.37757,-0.348447,11.1377,3.11274,-0.348937,11.3896,2.84791,-0.348937,11.3896,3.37757,-0.348937,11.3896,3.11274,-0.184543,11.1,3.00394,-0.184543,11.1,3.22155,-0.184543,11.1,3.11274,-0.348867,11.3538,3.11274,-0.348868,11.3538,2.84791,-0.348867,11.3538,3.37757,-0.348541,11.1859,3.11274,-0.348541,11.1859,2.84791,-0.348541,11.1859,3.37757,-0.389264,8.45383,3.11274,-0.0735999,0.0229048,3.11275,-0.389264,7.65073,3.11274,-0.389264,6.04454,3.11274,-0.389264,5.24145,3.11274,-0.389264,3.63526,3.11274,-0.389264,2.83216,3.11274,-0.389258,1.22595,3.11275,-0.210429,0.184926,3.11275,-0.309314,0.500653,3.11275,-0.368924,0.877873,3.11275,-0.0476012,0.0198015,3.1113,-0.0476012,0.0198015,3.11419,-0.0225872,0.0114912,3.11139,-0.0225872,0.0114912,3.1141,-0.128252,8.45383,3.07353,-0.258758,7.65073,3.09831,-0.128252,7.65073,3.07353,-0.258754,1.22595,3.09831,-0.258754,1.22595,3.12718,-0.12825,1.22595,3.07353,-0.12825,1.22595,3.15196,-0.245198,0.877873,3.09601,-0.245198,0.877873,3.12948,-0.121472,0.877873,3.07209,-0.121472,0.877873,3.1534,-0.205459,0.500654,3.09072,-0.205459,0.500654,3.13477,-0.101603,0.500653,3.07228,-0.101603,0.500653,3.15321,-0.169913,0.184926,3.10116,-0.169913,0.184926,3.12433,-0.0889168,0.184926,3.09337,-0.0889168,0.184926,3.13212,-0.00236305,4.18559e-06,3.11129,-0.00236305,4.18594e-06,3.1142,-0.022,8.45383,3.17687,-0.0220001,7.65073,3.04862,-0.022,6.04454,3.04862,-0.022,6.04454,3.17687,-0.022,3.63526,3.04862,-0.022,3.63526,3.17687,-0.0219996,1.22595,3.04862,-0.0219996,1.22595,3.17687,-0.02074,0.877873,3.04835,-0.0207399,0.877873,3.17714,-0.0170474,0.500653,3.05468,-0.0170473,0.500653,3.17081,-0.0155793,0.184926,3.08645,-0.0155793,0.184926,3.13904,-0.069979,0.0226377,3.11177,-0.069979,0.0226377,3.11372,-0.371277,8.45383,3.11473,-0.371277,7.65073,3.11076,-0.371277,7.65073,3.11473,-0.371277,6.04454,3.11076,-0.371277,6.04454,3.11473,-0.371277,5.24145,3.11473,-0.371277,3.63526,3.11076,-0.371277,3.63526,3.11473,-0.371277,2.83216,3.11473,-0.371271,1.22595,3.11076,-0.371271,1.22595,3.11473,-0.351872,0.877873,3.11044,-0.351872,0.877873,3.11505,-0.295001,0.500653,3.10439,-0.295001,0.500653,3.1211,-0.208455,0.184926,3.10953,-0.208455,0.184926,3.11596,-0.00236305,4.18576e-06,3.11275,-0.0225872,0.0104317,3.11275,-0.0476012,0.018742,3.11275,-0.0669816,0.0212606,3.11275,-0.123247,0.0816931,3.11275,-0.0466542,0.0744203,3.10485,-0.0466542,0.0744203,3.12064,-0.0919809,0.0797151,3.10762,-0.0919809,0.0797151,3.11787,-0.00715842,0.0671018,3.10228,-0.00715841,0.0671018,3.12321,-0.120223,0.0815224,3.11096,-0.120223,0.0815224,3.11453,-0.258758,8.45383,3.09831,-0.258758,8.45383,3.12717,-0.258758,7.65073,3.12717,-0.128252,8.45383,3.15195,-0.128252,7.65073,3.15195,-0.0220001,8.45383,3.04862,-0.022,7.65074,3.17687,-0.371277,8.45383,3.11075,-0.389264,6.84764,3.11274,-0.128252,6.84764,3.07353,-0.128252,6.84764,3.15195,-0.258758,6.84764,3.09831,-0.258758,6.84764,3.12717,-0.0220001,6.84764,3.04862,-0.022,6.84764,3.17687,-0.371277,6.84764,3.11076,-0.371277,6.84764,3.11473,-0.128252,6.04454,3.07353,-0.128252,5.24145,3.07353,-0.128252,6.04454,3.15195,-0.128252,5.24145,3.15195,-0.258758,6.04454,3.09831,-0.258758,5.24145,3.09831,-0.258758,6.04454,3.12717,-0.258758,5.24145,3.12717,-0.022,5.24145,3.04862,-0.022,5.24145,3.17687,-0.371277,5.24145,3.11076,-0.389264,4.43835,3.11274,-0.128252,4.43835,3.07353,-0.128252,4.43835,3.15196,-0.258758,4.43835,3.09831,-0.258758,4.43835,3.12717,-0.022,4.43835,3.04862,-0.022,4.43835,3.17687,-0.371277,4.43835,3.11076,-0.371277,4.43835,3.11473,-0.128252,3.63526,3.07353,-0.128252,2.83216,3.07353,-0.128252,3.63526,3.15196,-0.128252,2.83216,3.15196,-0.258758,3.63526,3.09831,-0.258758,2.83216,3.09831,-0.258758,3.63526,3.12717,-0.258758,2.83216,3.12718,-0.022,2.83216,3.04862,-0.0219999,2.83216,3.17687,-0.371277,2.83216,3.11076,-0.389262,2.02906,3.11275,-0.128252,2.02906,3.07353,-0.128252,2.02906,3.15196,-0.258757,2.02906,3.09831,-0.258757,2.02906,3.12718,-0.0219998,2.02906,3.04862,-0.0219998,2.02906,3.17687,-0.371275,2.02906,3.11076,-0.371275,2.02906,3.11473,-0.106945,9.08023,3.00394,-0.107723,9.903,3.00394,-0.10845,10.7372,3.00394,-0.106945,9.08023,3.22155,-0.107723,9.903,3.22155,-0.10845,10.7372,3.22155,-0.106945,9.08023,3.11274,-0.107723,9.903,3.11274,-0.10845,10.7372,3.11274,-0.181529,8.7804,3.00394,-0.181529,8.7804,3.22155,-0.181529,8.7804,3.11274,-0.184462,11.0377,3.00394,-0.184462,11.0377,3.22155,-0.184462,11.0377,3.11274,2.79574e-06,8.68975,2.9124,2.92631e-06,8.68975,3.31309,1.24806,8.68975,2.96493,1.24806,8.68975,3.26056,1.24806,8.68975,3.11274,2.86102e-06,8.37057,3.11274,2.79574e-06,8.37057,2.9124,2.92631e-06,8.37057,3.31309,1.24806,8.37057,2.96493,1.24806,8.37057,3.26056,1.24806,8.37057,3.11274,1.11331,8.68975,3.11274,1.11331,8.68975,2.95743,1.11331,8.68975,3.26806,1.11331,8.37057,3.11274,1.11331,8.37057,2.95743,1.11331,8.37057,3.26806,0.988551,8.68975,3.11274,0.988551,8.68975,2.95049,0.988551,8.68975,3.275,0.988551,8.37057,3.11274,0.988551,8.37057,2.95049,0.988551,8.37057,3.275,0.988551,8.39135,3.11274,0.98772,8.385,2.96542,0.98772,8.385,3.26007,0.988551,8.66897,3.11274,0.98772,8.67532,2.96542,0.98772,8.67532,3.26007,1.11331,8.39135,3.11274,1.1125,8.38552,2.97184,1.1125,8.38552,3.25365,1.11331,8.66897,3.11274,1.1125,8.6748,2.97184,1.1125,8.6748,3.25365,1.23084,8.68975,3.11274,1.23084,8.68975,2.96397,1.23084,8.68975,3.26151,1.23084,8.37057,3.11274,1.23084,8.37057,2.96397,1.23084,8.37057,3.26151,0.995476,8.39135,3.11274,0.994647,8.38503,2.96577,0.994647,8.38503,3.25971,0.995476,8.66897,3.11274,0.994647,8.6753,2.96577,0.994647,8.6753,3.25971,1.10316,8.39135,3.11274,1.10236,8.38548,2.97132,1.10236,8.38548,3.25417,1.10316,8.66897,3.11274,1.10236,8.67485,2.97132,1.10236,8.67485,3.25417,1.1239,8.68975,3.11274,1.1239,8.68975,2.95802,1.1239,8.68975,3.26747,1.1239,8.37057,3.11274,1.1239,8.37057,2.95802,1.1239,8.37057,3.26747,0.980485,8.68975,3.11274,0.980485,8.68975,2.95004,0.980485,8.68975,3.27545,0.980485,8.37057,3.11274,0.980485,8.37057,2.95004,0.980485,8.37057,3.27545,0.181393,8.68975,3.11274,0.181392,8.68975,2.92774,0.181393,8.68975,3.29775,0.275713,8.37057,3.11274,0.181392,8.37057,2.92774,0.181393,8.37057,3.29775,2.82263e-06,8.68975,2.99492,2.89942e-06,8.68975,3.23057,1.24806,8.68975,3.02581,1.24806,8.68975,3.19967,2.82263e-06,8.37057,2.99492,2.89942e-06,8.37057,3.23057,1.24806,8.37057,3.02581,1.24806,8.37057,3.19967,1.11331,8.68975,3.0214,1.11331,8.68975,3.20408,1.11331,8.37057,3.0214,1.11331,8.37057,3.20408,0.988551,8.68975,3.01732,0.988551,8.68975,3.20817,0.988551,8.37057,3.01732,0.988551,8.37057,3.20817,0.988063,8.38761,3.0261,0.988063,8.38761,3.19939,0.988063,8.67271,3.0261,0.988063,8.67271,3.19939,1.11283,8.38792,3.02988,1.11283,8.38792,3.19561,1.11283,8.6724,3.02988,1.11283,8.6724,3.19561,1.23084,8.68975,3.02525,1.23084,8.68975,3.20024,1.23084,8.37057,3.02525,1.23084,8.37057,3.20024,0.994989,8.38763,3.02631,0.994989,8.38763,3.19918,0.994989,8.67269,3.02631,0.994989,8.67269,3.19918,1.10269,8.3879,3.02957,1.10269,8.3879,3.19592,1.10269,8.67243,3.02957,1.10269,8.67243,3.19592,1.1239,8.68975,3.02175,1.1239,8.68975,3.20374,1.1239,8.37057,3.02175,1.1239,8.37057,3.20374,0.980485,8.68975,3.01706,0.980485,8.68975,3.20843,0.980485,8.37057,3.01706,0.980485,8.37057,3.20843,0.181393,8.68975,3.00394,0.181393,8.68975,3.22155,0.275713,8.37057,3.00394,0.275713,8.37057,3.22155,0.185115,11.39,3.00394,0.185115,11.39,3.22155,2.74067e-06,11.39,2.99492,2.81746e-06,11.39,3.23057,0.185115,11.39,3.11274,2.77907e-06,11.39,3.11274,0.18144,8.70603,3.00394,0.18144,8.70603,3.22155,2.82263e-06,8.70603,2.99492,2.89942e-06,8.70603,3.23057,0.18144,8.70603,3.11274,0.193056,8.68975,3.11274,0.193055,8.68975,2.92827,0.193056,8.68975,3.29722,0.285154,8.37057,3.11274,0.193055,8.37057,2.92827,0.193056,8.37057,3.29722,0.193056,8.68975,3.00425,0.193056,8.68975,3.22124,0.285154,8.37057,3.00425,0.285154,8.37057,3.22124,0.184625,11.138,3.00394,0.184625,11.138,3.22155,2.74067e-06,11.138,2.99492,2.81746e-06,11.138,3.23057,0.184625,11.138,3.11274,0.348455,11.1377,2.84791,0.348455,11.1377,3.37757,0.348455,11.1377,3.11274,2.68983e-06,11.1377,2.83889,2.8683e-06,11.1377,3.3866,0.348945,11.3896,2.84791,0.348945,11.3896,3.37757,0.348945,11.3896,3.11274,2.68983e-06,11.3896,2.83889,2.8683e-06,11.3896,3.3866,0.184551,11.1,3.00394,0.184551,11.1,3.22155,2.74067e-06,11.1,2.99492,2.81746e-06,11.1,3.23057,0.184551,11.1,3.11274,0.348875,11.3538,3.11274,0.348875,11.3538,2.84791,0.348875,11.3538,3.37757,2.68983e-06,11.3538,2.83889,2.8683e-06,11.3538,3.3866,0.348549,11.1859,3.11274,0.348548,11.1859,2.84791,0.348549,11.1859,3.37757,2.68983e-06,11.1859,2.83889,2.8683e-06,11.1859,3.3866,0.389271,8.45383,3.11274,0.0736076,0.0229048,3.11275,0.389271,7.65073,3.11274,0.389271,6.04454,3.11274,0.389271,5.24145,3.11274,0.389271,3.63526,3.11274,0.389271,2.83216,3.11274,0.389265,1.22595,3.11275,0.210437,0.184926,3.11275,0.309322,0.500653,3.11275,0.368932,0.877873,3.11275,3.81419e-06,4.18558e-06,3.11117,3.81521e-06,4.18595e-06,3.11432,3.83745e-06,6.04454,3.18256,3.79195e-06,5.24145,3.04293,3.83745e-06,3.63526,3.18256,3.79195e-06,2.83216,3.04293,3.79195e-06,1.22595,3.04293,3.83745e-06,1.22595,3.18256,3.79195e-06,0.877873,3.04293,3.83745e-06,0.877873,3.18256,3.79445e-06,0.500653,3.05059,3.83495e-06,0.500653,3.1749,3.80547e-06,0.184926,3.08442,3.82393e-06,0.184926,3.14107,0.0476088,0.0198015,3.1113,0.0476088,0.0198015,3.11419,0.0225948,0.0114912,3.11139,0.0225948,0.0114912,3.1141,0.12826,8.45383,3.07353,0.258766,7.65073,3.09831,0.12826,7.65073,3.07353,0.258762,1.22595,3.09831,0.258762,1.22595,3.12718,0.128258,1.22595,3.07353,0.128258,1.22595,3.15196,0.245206,0.877873,3.09601,0.245206,0.877873,3.12948,0.12148,0.877873,3.07209,0.12148,0.877873,3.1534,0.205466,0.500654,3.09072,0.205466,0.500654,3.13477,0.10161,0.500653,3.07228,0.10161,0.500653,3.15321,0.169921,0.184926,3.10116,0.169921,0.184926,3.12433,0.0889244,0.184926,3.09337,0.0889244,0.184926,3.13212,0.00237068,4.18559e-06,3.11129,0.00237068,4.18594e-06,3.1142,0.0220077,8.45383,3.17687,0.0220077,7.65073,3.04862,0.0220076,6.04454,3.04862,0.0220077,6.04454,3.17687,0.0220076,3.63526,3.04862,0.0220077,3.63526,3.17687,0.0220072,1.22595,3.04862,0.0220072,1.22595,3.17687,0.0207476,0.877873,3.04835,0.0207476,0.877873,3.17714,0.017055,0.500653,3.05468,0.017055,0.500653,3.17081,0.0155869,0.184926,3.08645,0.0155869,0.184926,3.13904,0.0699866,0.0226377,3.11177,0.0699866,0.0226377,3.11372,0.371285,8.45383,3.11473,0.371285,7.65073,3.11076,0.371285,7.65073,3.11473,0.371285,6.04454,3.11076,0.371285,6.04454,3.11473,0.371285,5.24145,3.11473,0.371285,3.63526,3.11076,0.371285,3.63526,3.11473,0.371285,2.83216,3.11473,0.371279,1.22595,3.11076,0.371279,1.22595,3.11473,0.35188,0.877873,3.11044,0.35188,0.877873,3.11505,0.295009,0.500653,3.10439,0.295009,0.500653,3.1211,0.208462,0.184926,3.10953,0.208462,0.184926,3.11596,3.8147e-06,4.18576e-06,3.11275,0.00237068,4.18576e-06,3.11275,0.0225948,0.0104317,3.11275,0.0476088,0.018742,3.11275,0.0669892,0.0212606,3.11275,0.123255,0.0816931,3.11275,3.81102e-06,0.0671018,3.10147,3.81837e-06,0.0671018,3.12402,0.0466618,0.0744203,3.10485,0.0466618,0.0744203,3.12064,0.0919886,0.0797151,3.10762,0.0919886,0.0797151,3.11787,0.00716604,0.0671018,3.10228,0.00716605,0.0671018,3.12321,0.120231,0.0815224,3.11096,0.120231,0.0815224,3.11453,3.79195e-06,8.45383,3.04293,3.79195e-06,7.65074,3.04293,3.83745e-06,8.45383,3.18256,3.83745e-06,7.65074,3.18256,0.258766,8.45383,3.09831,0.258766,8.45383,3.12717,0.258766,7.65073,3.12717,0.12826,8.45383,3.15195,0.12826,7.65073,3.15195,0.0220077,8.45383,3.04862,0.0220077,7.65074,3.17687,0.371285,8.45383,3.11075,0.389271,6.84764,3.11274,3.79195e-06,6.84764,3.04293,3.83745e-06,6.84764,3.18256,0.12826,6.84764,3.07353,0.12826,6.84764,3.15195,0.258766,6.84764,3.09831,0.258766,6.84764,3.12717,0.0220077,6.84764,3.04862,0.0220077,6.84764,3.17687,0.371285,6.84764,3.11076,0.371285,6.84764,3.11473,3.79195e-06,6.04454,3.04293,3.83745e-06,5.24145,3.18256,0.12826,6.04454,3.07353,0.12826,5.24145,3.07353,0.12826,6.04454,3.15195,0.12826,5.24145,3.15195,0.258766,6.04454,3.09831,0.258766,5.24145,3.09831,0.258766,6.04454,3.12717,0.258766,5.24145,3.12717,0.0220076,5.24145,3.04862,0.0220077,5.24145,3.17687,0.371285,5.24145,3.11076,0.389271,4.43835,3.11274,3.79195e-06,4.43835,3.04293,3.83745e-06,4.43835,3.18256,0.12826,4.43835,3.07353,0.12826,4.43835,3.15195,0.258766,4.43835,3.09831,0.258766,4.43835,3.12717,0.0220076,4.43835,3.04862,0.0220076,4.43835,3.17687,0.371285,4.43835,3.11076,0.371285,4.43835,3.11473,3.79195e-06,3.63526,3.04293,3.83745e-06,2.83216,3.18256,0.12826,3.63526,3.07353,0.12826,2.83216,3.07353,0.12826,3.63526,3.15196,0.12826,2.83216,3.15196,0.258766,3.63526,3.09831,0.258766,2.83216,3.09831,0.258766,3.63526,3.12717,0.258766,2.83216,3.12717,0.0220076,2.83216,3.04862,0.0220076,2.83216,3.17687,0.371285,2.83216,3.11076,0.389269,2.02906,3.11275,3.79195e-06,2.02906,3.04293,3.83745e-06,2.02906,3.18256,0.128259,2.02906,3.07353,0.128259,2.02906,3.15196,0.258764,2.02906,3.09831,0.258764,2.02906,3.12718,0.0220074,2.02906,3.04862,0.0220075,2.02906,3.17687,0.371283,2.02906,3.11076,0.371283,2.02906,3.11473,0.106953,9.08023,3.00394,0.107731,9.903,3.00394,0.108457,10.7372,3.00394,0.106953,9.08023,3.22155,0.107731,9.903,3.22155,0.108457,10.7372,3.22155,3.77631e-06,9.08023,2.99492,2.78165e-06,9.903,2.99492,3.77631e-06,10.7372,2.99492,3.85309e-06,9.08023,3.23057,2.85844e-06,9.903,3.23057,3.85309e-06,10.7372,3.23057,0.106953,9.08023,3.11274,0.107731,9.903,3.11274,0.108457,10.7372,3.11274,0.181536,8.7804,3.00394,0.181536,8.7804,3.22155,3.77631e-06,8.7804,2.99492,3.85309e-06,8.7804,3.23057,0.181536,8.7804,3.11274,0.18447,11.0377,3.00394,0.18447,11.0377,3.22155,3.77631e-06,11.0377,2.99492,3.85309e-06,11.0377,3.23057,0.18447,11.0377,3.11274] }, - { "name": "animation_000002", "vertices": [5.58012,8.89256,-0.47301,5.57979,9.06534,-0.490937,5.57983,9.12742,-0.46554,5.57984,9.18197,-0.397213,5.57949,9.22038,-0.304712,5.57887,9.22515,-0.188612,5.57874,9.11086,0.0581205,5.57926,8.97509,0.0700323,5.57995,8.84946,-0.0363218,5.58076,8.77634,-0.18167,5.58135,8.81545,-0.43113,5.58183,8.76374,-0.338404,5.58379,8.98717,-0.499288,5.58124,9.21781,-0.0782947,5.65799,8.99372,-0.499144,5.66043,9.18671,-0.0662581,6.31627,8.86666,0.375431,6.27009,8.78069,0.369749,6.29209,8.88516,0.358448,6.30867,8.81863,0.372625,6.24232,8.78848,0.35739,6.20552,8.93813,0.558678,6.15728,8.85334,0.561713,6.17718,8.95595,0.517656,6.12286,8.86859,0.522483,6.17244,8.90226,0.569123,6.23387,8.97638,0.502002,6.28062,8.97605,0.448436,6.30109,8.92418,0.385186,6.27537,8.8332,0.338711,6.22274,8.75358,0.376716,6.17147,8.74127,0.439205,6.14036,8.92078,0.528682,6.13675,8.81129,0.514987,6.30343,8.71619,0.662258,6.32831,8.68177,0.615231,6.36816,8.7072,0.566649,6.42938,8.76786,0.541738,6.44764,8.85511,0.562607,6.44754,8.90592,0.607801,6.40275,8.90854,0.642789,6.48557,8.85195,0.786139,6.56092,8.84851,0.728565,6.59653,8.78326,0.652722,6.57694,8.69148,0.619722,6.51053,8.6259,0.643673,6.43015,8.62306,0.714874,6.41688,8.78654,0.802317,6.39469,8.69874,0.788091,6.40587,8.8934,0.710933,6.47616,8.88999,0.645445,6.49348,8.83286,0.590535,6.46957,8.74873,0.565916,6.41468,8.68328,0.590113,6.35731,8.6694,0.650672,6.34689,8.82415,0.729643,6.31968,8.73641,0.715443,6.248,8.76261,0.646943,6.27662,8.85415,0.660477,6.29209,8.69059,0.575551,6.35659,8.69691,0.521267,6.42029,8.76298,0.494468,6.44245,8.85937,0.518982,6.41278,8.92164,0.570127,6.33497,8.92807,0.644168,6.46226,8.84807,0.586785,6.44419,8.76375,0.565965,6.38373,8.69715,0.593593,6.43593,8.76379,0.553027,6.37992,8.70873,0.580795,6.45204,8.84287,0.577999,6.18443,8.79035,0.563498,6.1964,8.89258,0.600093,6.22505,8.71778,0.488625,6.26997,8.73133,0.420759,6.3424,8.80291,0.408935,6.3508,8.89154,0.428225,6.33499,8.9519,0.492173,6.26672,8.95473,0.562339,6.28745,8.85188,0.690412,6.33547,8.89716,0.66658,6.27603,8.78499,0.669264,6.37686,8.89934,0.663723,6.30034,8.75675,0.669459,6.37216,8.8793,0.698199,6.32137,8.83722,0.718447,6.31202,8.77157,0.70014,6.3416,8.88135,0.691885,6.35462,8.87334,0.699403,6.30138,8.78776,0.684174,6.30715,8.78926,0.699743,6.32612,8.83305,0.703634,6.28481,8.79764,0.680693,6.32983,8.88483,0.678654,6.30321,8.84261,0.683364,6.30718,8.84271,0.705099,5.89059,8.93225,0.258988,6.3021,8.90113,0.225419,6.27973,8.96582,0.26786,5.91813,9.03856,0.270519,6.0249,9.05491,0.274883,6.21932,9.03027,0.267854,6.12089,9.05673,0.280311,5.89072,8.79661,0.197299,6.29875,8.84062,0.167394,5.97409,8.76088,0.177057,6.08543,8.77489,0.154466,6.18587,8.79994,0.153445,6.04271,8.89365,0.436758,6.03227,8.7991,0.380597,6.07773,8.96511,0.453802,6.11468,8.99783,0.442941,6.25881,8.94642,0.322981,6.22476,8.99314,0.377259,6.23288,8.84258,0.278447,6.27198,8.89537,0.298958,6.17542,9.00065,0.412544,6.06591,8.74895,0.319883,6.18818,8.79545,0.270882,6.13636,8.75047,0.273416,6.04856,8.7859,-0.131984,6.04892,8.77613,0.0322466,6.04358,8.76489,-0.0502018,6.19385,8.78295,0.0415062,5.89185,8.75302,-0.151009,5.89328,8.74627,0.0214233,5.87255,8.73938,-0.0653098,6.1931,8.80831,-0.0397358,6.17826,8.81557,-0.12146,5.96314,8.81839,-0.201593,6.15312,8.82718,-0.180653,6.06874,8.81328,-0.192491,6.09818,9.2012,-0.0854787,6.102,9.19976,-0.168481,6.06339,9.19627,-0.269989,6.03331,9.17737,-0.367568,6.08018,9.17751,0.00409766,6.06583,9.14528,0.106176,6.00175,9.14381,-0.458081,5.97228,9.10327,-0.539013,5.97885,8.80604,-0.509287,5.95855,8.85561,-0.581041,5.95459,8.97064,-0.607211,5.95866,9.06995,-0.578147,5.99206,9.12511,-0.500575,6.07347,9.10814,0.160347,6.074,9.16417,0.0554987,6.01569,9.16255,-0.412919,6.05404,9.19225,-0.322691,6.08285,9.19618,-0.214603,6.09844,9.20331,-0.126625,6.09363,9.19167,-0.0444263,6.06848,8.85539,-0.241599,6.06515,8.81693,-0.322016,6.01075,8.7868,-0.431159,5.79561,9.14829,0.0164901,5.7957,9.194,-0.116816,5.78764,9.18242,-0.0573881,5.85359,9.15634,0.0370836,5.84192,9.19379,-0.0935425,6.38458,8.81991,-0.466921,6.33493,8.81803,-0.463687,6.50385,8.82739,-0.25513,6.41103,8.8406,-0.25227,6.52154,8.82392,-0.0658188,6.46466,8.85619,-0.0869274,6.36443,8.81831,-0.510274,6.28383,8.81618,-0.495272,6.40977,8.8174,-0.432826,6.29383,8.82705,-0.415568,6.48477,8.82565,-0.296597,6.34329,8.82864,-0.276254,6.50856,8.82428,-0.226445,6.37161,8.83835,-0.212967,6.51956,8.81021,-0.00405117,6.43219,8.83374,-0.0384029,6.518,8.80213,-0.108916,6.43006,8.828,-0.13259,6.22815,8.84918,-0.453469,6.29063,8.84909,-0.335376,6.31624,8.82054,-0.34229,6.3193,8.85726,-0.240596,6.36414,8.85218,-0.178294,6.39503,8.84059,-0.173056,6.38672,8.85294,-0.0920703,6.32453,9.15871,-0.0420658,6.41578,9.1435,-0.0430815,6.32792,9.18807,-0.133045,6.41198,9.17979,-0.137786,6.31075,9.1683,-0.220974,6.40169,9.14924,-0.227028,6.28314,9.18674,-0.344259,6.38081,9.17639,-0.351198,6.23888,9.15238,-0.433263,6.33236,9.14608,-0.444205,6.29227,9.15629,0.099451,6.4017,9.15692,0.106755,6.34106,8.95629,0.219245,6.39965,8.95242,0.217866,6.31347,9.04786,0.197632,6.39139,9.04305,0.194881,6.3666,8.8456,0.04723,6.42638,8.84183,0.0655556,6.3451,8.87762,0.139048,6.413,8.87564,0.154894,6.18396,9.1218,-0.531998,6.26466,9.12543,-0.543392,6.14432,9.07395,-0.608842,6.21842,9.07436,-0.621766,6.12791,8.95907,-0.647511,6.19712,8.95263,-0.662688,6.14648,8.85281,-0.614299,6.21742,8.84702,-0.628914,6.18363,8.81538,-0.543788,6.24941,8.80757,-0.547403,6.16002,9.09961,-0.572795,6.23543,9.09868,-0.589468,6.21136,9.13818,-0.479012,6.29113,9.1399,-0.493672,6.2928,9.10734,0.15872,6.3997,9.10591,0.154256,6.3095,9.15268,0.0271218,6.41005,9.14005,0.0353636,6.25653,9.16568,-0.393035,6.35741,9.16166,-0.402826,6.29923,9.17436,-0.269258,6.39081,9.15817,-0.273045,6.32205,9.17692,-0.176667,6.40787,9.1637,-0.184169,6.32992,9.17647,-0.087707,6.41284,9.16698,-0.0950447,6.5753,9.15759,-0.119801,6.56594,9.14773,-0.18449,6.23536,9.18242,-0.0870571,6.2296,9.19063,-0.17032,5.9606,9.19946,-0.0820734,5.99693,9.20389,-0.166145,6.50509,9.1532,-0.0993213,6.51424,9.1516,-0.190992,6.56974,9.16165,-0.155475,6.53271,9.14245,-0.419036,6.55416,9.13534,-0.306907,6.19238,9.18185,-0.265325,6.1439,9.17791,-0.380612,5.95537,9.20103,-0.269504,5.93507,9.18948,-0.346231,6.50786,9.13859,-0.28524,6.46463,9.15401,-0.41458,6.56607,9.14924,-0.374932,5.96668,9.174,0.00029377,6.57155,9.09396,0.158523,6.57139,9.12365,0.0534876,6.20381,9.15999,0.00785887,6.18088,9.13351,0.139238,5.95678,9.15122,0.0672859,6.51434,9.13172,0.0353894,6.501,9.06699,0.161214,6.5852,9.11427,0.104555,6.37003,9.10702,-0.612219,6.41871,9.12683,-0.537028,6.10626,9.14032,-0.467825,6.06692,9.09944,-0.554977,5.90256,9.14662,-0.455376,5.87519,9.11299,-0.521895,6.38129,9.12867,-0.512335,6.30615,9.09553,-0.607001,6.41183,9.11693,-0.576703,5.70453,8.77755,-0.270471,5.6946,8.79901,-0.127961,5.76198,8.7617,-0.272573,5.73791,8.78693,-0.106468,5.69771,8.78147,-0.199921,5.82832,8.76072,-0.287901,5.7903,8.75099,-0.0710156,5.73733,8.82022,-0.451534,5.74605,9.1735,-0.0604976,5.75378,9.09937,0.0550136,5.73619,8.96837,0.064211,5.73328,8.90578,-0.49582,5.73048,9.00664,-0.510541,5.74486,8.7763,-0.363744,5.75941,8.77823,-0.19633,5.72396,8.84422,-0.0170677,5.76147,9.2061,-0.1681,5.72999,9.0834,-0.497354,5.75506,9.21465,-0.289203,5.73785,9.14154,-0.459136,5.74386,9.18766,-0.386816,6.08209,8.83472,-0.524408,6.05364,8.85655,-0.599104,6.04511,8.96496,-0.625226,6.05225,9.06554,-0.594583,6.08626,9.12292,-0.513861,6.31577,8.88548,0.161645,6.30412,8.82818,0.0338926,6.18334,9.07236,0.203259,6.29855,8.963,0.235825,6.18423,9.15194,0.073589,6.12621,9.15753,-0.423661,6.16636,9.19217,-0.329686,6.21566,9.18115,-0.212798,6.23401,9.19641,-0.12845,6.22512,9.1688,-0.0458232,6.30588,8.85752,-0.0730598,6.26338,8.8543,-0.153386,6.20874,8.8573,-0.226064,6.19843,8.82342,-0.327937,6.131,8.79628,-0.44292,5.96981,9.2019,-0.131031,5.93262,8.79469,-0.316082,5.97333,9.19521,-0.314102,5.99189,9.16092,0.0377313,5.94662,9.12129,0.129623,5.86343,9.07607,-0.557718,5.86133,8.97975,-0.583961,5.86203,8.85161,-0.561491,5.87495,8.791,-0.495112,5.9191,9.12817,-0.491675,5.96243,9.19278,-0.0415124,5.96427,9.20225,-0.204925,5.9544,8.83007,-0.234021,5.90973,9.17255,-0.40223,5.89196,8.76891,-0.421779,6.59076,8.81431,-0.156141,6.64937,8.84076,-0.158743,6.53134,8.82673,-0.381509,6.59199,8.85756,-0.37597,6.59966,8.82716,0.109235,6.64856,8.82331,0.0867191,6.33914,8.86113,-0.651946,6.39436,8.86784,-0.6499,6.36648,8.82328,-0.589503,6.42311,8.84726,-0.596841,6.59191,8.82133,-0.0836785,6.65575,8.85763,-0.0897303,6.6006,8.84715,-0.0436867,6.65042,8.85609,-0.0464401,6.59043,8.81471,0.0203602,6.65389,8.84064,0.0173764,6.58519,8.83969,-0.229741,6.64948,8.87498,-0.230561,6.55995,8.84613,-0.300755,6.61876,8.87286,-0.305636,6.57751,8.85502,-0.260405,6.63457,8.88331,-0.26764,6.50121,8.83126,-0.440133,6.57065,8.87586,-0.451241,6.4216,8.81714,-0.520615,6.4918,8.85225,-0.535255,6.46643,8.82481,-0.476235,6.53997,8.8719,-0.490515,6.50843,9.16308,-0.143188,6.51566,8.81443,-0.173204,6.44324,8.80617,-0.366737,6.48091,9.16746,-0.358935,6.5065,9.13878,0.108062,6.48566,9.03755,0.20189,6.48619,8.9649,0.21625,6.50999,8.87238,0.17066,6.51336,8.82628,0.0864485,6.28839,9.07207,-0.63554,6.25815,8.95144,-0.676418,6.28413,8.84419,-0.641676,6.32749,8.81539,-0.570869,6.34323,9.12434,-0.55455,6.53033,9.12477,-0.0436474,6.52603,9.12644,-0.240445,6.44818,9.1339,-0.463507,6.61491,9.00758,-0.509292,6.61883,8.98857,-0.507461,6.59233,8.91914,-0.497036,6.58931,9.05587,-0.509106,6.60807,9.02151,-0.509477,6.69219,9.02211,-0.287135,6.69685,9.00426,-0.285605,6.68443,8.92731,-0.274019,6.68041,9.08126,-0.285904,6.68609,9.03535,-0.28603,6.71844,9.00968,-0.0433992,6.71662,8.9904,-0.0418454,6.69752,8.90841,-0.0436209,6.72015,9.03027,-0.0446858,6.70531,9.08794,-0.0481734,6.71794,9.00707,-0.0563274,6.71583,9.00451,-0.0305125,6.68339,9.02501,-0.288084,6.70098,9.01592,-0.277661,6.59646,9.00109,-0.517002,6.63359,8.9948,-0.495574,6.58894,9.02124,-0.516741,6.63125,9.01173,-0.497273,6.67807,9.03783,-0.28866,6.69611,9.03341,-0.278083,6.7038,8.99658,-0.275947,6.7134,9.03351,-0.0596774,6.71269,8.9856,-0.0299887,6.71357,9.02757,-0.0318105,6.47112,9.10081,-0.595068,6.53632,9.07378,-0.529707,6.5984,8.97788,-0.516331,6.55293,8.89139,-0.524276,6.474,8.86996,-0.596531,6.42941,8.88556,-0.651155,6.39643,8.93071,-0.675108,6.41841,9.03796,-0.664108,6.93101,8.95299,-0.653789,6.69512,9.00434,-0.577603,6.93825,8.91401,-0.625459,6.69704,8.9651,-0.550838,6.92534,8.87376,-0.648649,6.68362,8.91709,-0.57623,6.90667,8.83984,-0.710875,6.65988,8.86354,-0.637835,6.89029,8.86502,-0.777629,6.64584,8.88386,-0.702405,6.88767,8.90246,-0.809211,6.64419,8.92772,-0.736414,6.89742,8.94195,-0.785244,6.64782,8.98505,-0.725033,7.01247,8.95709,-0.810406,6.99842,8.89493,-0.829209,7.00363,8.83671,-0.801382,7.02122,8.81601,-0.742759,7.03656,8.84444,-0.686802,7.04471,8.90568,-0.667864,7.02713,8.98629,-0.75347,7.04374,8.96424,-0.698565,6.73944,9.02877,-0.594465,6.72066,9.04993,-0.662629,6.7414,8.95269,-0.558114,6.72532,8.87951,-0.579609,6.70182,8.83617,-0.643044,6.68555,8.8578,-0.713319,6.68442,8.92553,-0.749195,6.69935,9.02075,-0.728621,6.64981,9.05052,-0.57487,6.63355,9.0684,-0.646077,6.65278,8.98144,-0.533824,6.63979,8.89963,-0.559775,6.61984,8.8497,-0.623409,6.60298,8.86945,-0.690697,6.59864,8.93641,-0.72676,6.61288,9.03434,-0.705346,6.94209,8.97412,-0.797966,6.92869,8.9011,-0.816705,6.93004,8.8452,-0.78478,6.94619,8.82176,-0.721376,6.9653,8.85327,-0.662488,6.97792,8.91162,-0.641708,6.959,8.99897,-0.736826,6.97551,8.9809,-0.673425,6.89354,8.99663,-0.646728,6.87483,9.01253,-0.715185,6.89477,8.92023,-0.611416,6.88241,8.85982,-0.634371,6.86066,8.82479,-0.698059,6.84334,8.84944,-0.767373,6.83988,8.90699,-0.801173,6.85459,8.98888,-0.781559,6.8989,8.86479,-0.779171,6.91227,8.83997,-0.711572,6.93478,8.87336,-0.65062,6.90971,8.83924,-0.711303,6.92767,8.87178,-0.65727,6.8969,8.86494,-0.76986,6.65248,8.88311,-0.706147,6.66601,8.86282,-0.638294,6.69085,8.91478,-0.579093,6.65142,8.88309,-0.693858,6.66293,8.86215,-0.637752,6.68421,8.91241,-0.586819,6.81999,9.00757,-0.620724,6.80115,9.04796,-0.692122,6.82263,8.93103,-0.585073,6.80818,8.86628,-0.606976,6.7843,8.82982,-0.670698,6.76468,8.85363,-0.741204,6.76029,8.91411,-0.775554,6.77584,9.00139,-0.75574,6.5857,9.06571,-0.543452,6.54625,9.10182,-0.615889,6.62057,8.99563,-0.521933,6.57627,8.90096,-0.535082,6.53151,8.85772,-0.603043,6.50652,8.87552,-0.670605,6.50189,8.94055,-0.706076,6.51804,9.03902,-0.685022,6.89857,9.01968,-0.721192,6.8833,8.99289,-0.765108,6.90919,8.9978,-0.672916,6.89785,8.96772,-0.783617,6.9313,8.97504,-0.665807,6.92732,8.98349,-0.775181,6.93807,9.01134,-0.731648,6.95043,8.98831,-0.686023,6.90976,8.99847,-0.761587,6.92337,8.99307,-0.763869,6.92865,8.99182,-0.688002,6.94057,8.99643,-0.69409,6.93145,9.00078,-0.728463,6.91521,9.00246,-0.686182,6.89469,8.99937,-0.756586,6.90476,9.00554,-0.721036,6.92043,9.01393,-0.726034,6.65467,9.07737,-0.651782,6.6369,9.03587,-0.697847,6.66721,9.04926,-0.593367,6.65692,9.02162,-0.710284,6.69276,9.0326,-0.592902,6.69925,9.06763,-0.65875,6.68538,9.03239,-0.703385,6.71133,9.04121,-0.615126,6.70151,9.04659,-0.621379,6.68827,9.05542,-0.61601,6.66574,9.0429,-0.690221,6.67973,9.03737,-0.69223,6.69089,9.05801,-0.658486,6.67227,9.05039,-0.609773,6.64901,9.0379,-0.688369,6.66355,9.06189,-0.652768,6.67791,9.06951,-0.655819,7.00161,9.07016,0.0948462,6.98366,9.06373,0.0924703,6.98071,9.03116,0.0412012,6.97412,9.04053,0.143887,7.01806,9.05332,0.0953327,7.01811,9.02665,0.0502422,7.00109,9.03598,0.0464938,6.9955,9.04682,0.144247,7.01396,9.03358,0.141821,7.02211,9.02722,0.151104,7.02823,9.02053,0.0400347,7.02781,9.06191,0.0966463,6.99007,9.0228,0.16839,6.99758,9.01222,0.0195882,6.96135,9.04218,0.158391,6.97009,9.03183,0.025836,6.97194,9.08246,0.0919762,7.31003,9.01593,0.117786,7.2908,9.00625,0.116297,7.29239,9.00172,0.0724442,7.2889,9.00169,0.158989,7.32162,9.00004,0.118564,7.31814,8.99499,0.160089,7.30358,8.98937,0.161649,7.32494,8.99448,0.0756162,7.31025,9.00081,0.0729574,7.32466,8.98582,0.172793,7.3291,9.01299,0.118497,7.33213,8.98471,0.0635678,7.298,8.96994,0.1868,7.30437,8.96804,0.0408517,7.27765,8.99591,0.171401,7.28314,8.99525,0.0585167,7.28462,9.02338,0.115349,6.8375,9.05095,0.00559874,6.82875,8.96033,-0.0256551,6.81406,8.86932,0.00584153,6.80232,8.82022,0.0909672,6.79547,8.85216,0.178684,6.80155,8.94362,0.207866,6.8351,9.09919,0.082893,6.8154,9.045,0.165552,7.15844,9.0012,0.0270987,7.14636,8.90318,-0.00549894,7.1349,8.82447,0.0269039,7.12628,8.78646,0.105828,7.12573,8.82541,0.184485,7.13386,8.90445,0.217061,7.1599,9.05012,0.106308,7.14924,9.0021,0.185265,6.97484,8.85323,0.160419,6.97221,8.822,0.0928469,6.98421,8.86967,0.0269517,6.97993,8.85478,0.173037,6.97743,8.82153,0.0933597,6.99003,8.87109,0.0148856,7.29785,8.83743,0.047663,7.28915,8.83765,0.187714,7.29076,8.80239,0.117536,7.2936,8.83539,0.198235,7.29325,8.8028,0.118387,7.30313,8.834,0.037819,7.25816,8.99352,0.0313041,7.24778,8.90054,-0.00227053,7.23749,8.82613,0.0316756,7.23023,8.79009,0.113231,7.22801,8.82713,0.194092,7.23461,8.90181,0.228226,7.25532,9.0144,0.113442,7.24896,8.99456,0.195178,7.34558,8.97829,0.19805,7.35245,8.99912,0.120116,7.33509,8.8828,0.230601,7.32956,8.79711,0.197129,7.33232,8.76901,0.119667,7.33848,8.79609,0.0414227,7.34763,8.88174,0.00849236,7.35458,8.97725,0.0415349,6.94637,9.02817,0.0123083,6.93831,8.92988,-0.0189614,6.92839,8.85633,0.013072,6.92001,8.81653,0.0890713,6.91927,8.84932,0.166001,6.92526,8.93268,0.199085,6.94523,9.07142,0.0895439,6.93712,9.03948,0.167727,7.05441,9.0076,0.0169452,7.04445,8.91637,-0.0163903,7.03047,8.83452,0.016911,7.02036,8.79188,0.0975456,7.02096,8.82921,0.178389,7.03118,8.91551,0.212257,7.0523,9.03625,0.0978706,7.04485,9.0126,0.179843,7.43014,8.9619,0.201487,7.42872,8.99897,0.125037,7.41852,8.8681,0.232416,7.41652,8.7817,0.201823,7.42257,8.76728,0.125628,7.42537,8.78077,0.0484707,7.43093,8.86686,0.0172997,7.43772,8.9651,0.0517244,6.99328,8.97449,-0.00114947,7.30425,8.93933,0.0375656,6.99212,8.92205,-0.0176071,7.30169,8.89229,0.00202675,6.9804,8.87235,0.0160168,7.29329,8.83736,0.0359974,6.96743,8.82396,0.0926262,7.28778,8.80389,0.116639,6.96818,8.8567,0.172338,7.28338,8.83857,0.196444,6.97835,8.91646,0.205396,7.28863,8.89348,0.231117,6.98659,8.98121,0.181593,7.29339,8.94433,0.19827,6.69581,9.10126,-0.00985292,6.70023,8.88235,-0.00465699,6.6958,8.83155,0.117055,6.65929,8.89105,0.167966,6.68857,8.94742,0.198485,6.69276,9.05548,0.17453,6.70713,9.11213,0.0796777,6.65261,9.13293,-0.390651,6.65269,9.09555,-0.310408,6.68731,9.00524,-0.287527,6.66722,8.91434,-0.305607,6.6447,8.86808,-0.383592,6.62493,8.90113,-0.463642,6.63316,8.97945,-0.49322,6.62493,9.08706,-0.475592,7.22454,9.0016,-0.405821,6.92601,9.05519,-0.352561,7.22598,8.95862,-0.375769,6.92658,9.0028,-0.330678,7.21511,8.91797,-0.407055,6.91622,8.9471,-0.359431,7.20383,8.88755,-0.481646,6.90513,8.90627,-0.433716,7.19341,8.92018,-0.555301,6.9012,8.95174,-0.507043,7.19435,8.96194,-0.587362,6.90367,9.00531,-0.538654,7.20321,9.00022,-0.554956,6.90348,9.05728,-0.522403,7.33757,9.01653,-0.57243,7.32393,8.94808,-0.603332,7.32549,8.87855,-0.57476,7.33816,8.849,-0.503496,7.3475,8.87638,-0.43086,7.35508,8.94497,-0.401144,7.35893,9.01432,-0.432594,6.98069,9.08814,-0.367273,6.97314,9.1088,-0.442634,6.9769,8.99605,-0.336763,6.96683,8.91175,-0.367503,6.95566,8.87068,-0.442541,6.95117,8.91563,-0.517932,6.9547,8.99827,-0.548984,6.96445,9.08227,-0.517726,6.87576,9.09699,-0.353099,6.8688,9.11998,-0.425758,6.87613,9.01135,-0.322509,6.86844,8.92765,-0.353322,6.85841,8.88562,-0.426399,6.85181,8.92947,-0.499202,6.85103,9.01192,-0.529086,6.85871,9.09915,-0.498039,7.25261,9.03343,-0.561688,7.23933,8.95896,-0.592222,7.23687,8.89594,-0.561143,7.24667,8.86529,-0.488786,7.25891,8.89373,-0.41589,7.27021,8.95572,-0.385134,7.26658,9.05269,-0.488869,7.27514,9.03129,-0.416253,7.1797,9.04889,-0.398472,7.16933,9.06772,-0.473322,7.17457,8.96509,-0.367309,7.16457,8.90306,-0.398725,7.15147,8.8713,-0.473501,7.14296,8.90513,-0.548164,7.14409,8.96829,-0.579531,7.15573,9.05112,-0.54828,7.20306,8.91943,-0.555906,7.20998,8.88744,-0.481412,7.22522,8.91739,-0.40737,7.20707,8.88677,-0.481576,7.21907,8.9167,-0.416333,7.20012,8.91937,-0.545717,6.91018,8.95096,-0.510073,6.91362,8.90516,-0.43581,6.9268,8.94549,-0.361695,6.90644,8.94893,-0.497492,6.90927,8.90485,-0.434767,6.92013,8.94271,-0.371603,7.08336,9.0642,-0.383395,7.07583,9.10651,-0.457821,7.0785,8.9791,-0.352893,7.06721,8.90209,-0.383586,7.05566,8.86357,-0.458717,7.05061,8.90364,-0.534012,7.05234,8.98178,-0.564525,7.06236,9.06636,-0.532815,6.78922,9.09618,-0.333,6.77133,9.1357,-0.409074,6.79246,9.02121,-0.298622,6.77842,8.92466,-0.330499,6.75415,8.87579,-0.407684,6.74507,8.91366,-0.486407,6.74751,9.00604,-0.520374,6.75714,9.08909,-0.486969,7.19791,9.07371,-0.477818,7.1857,9.05018,-0.5293,7.20313,9.04858,-0.426393,7.20313,9.02613,-0.550813,7.22613,9.02502,-0.417055,7.23476,9.04025,-0.536296,7.24363,9.06476,-0.485084,7.25004,9.03914,-0.435024,7.21477,9.05427,-0.52231,7.2301,9.04872,-0.523384,7.22651,9.04261,-0.440743,7.24096,9.04754,-0.445143,7.23606,9.05344,-0.483672,7.21131,9.05353,-0.439668,7.1972,9.05527,-0.518714,7.20458,9.05864,-0.478709,7.224,9.06681,-0.481411,6.89296,9.13309,-0.428599,6.88292,9.10115,-0.490243,6.89565,9.09858,-0.367067,6.90987,9.08788,-0.502739,6.9251,9.08847,-0.364907,6.94785,9.12879,-0.437754,6.94175,9.09522,-0.490331,6.95165,9.09941,-0.387567,6.94195,9.10348,-0.39418,6.92446,9.10973,-0.387328,6.91569,9.10728,-0.477652,6.93283,9.10025,-0.478364,6.93779,9.11822,-0.436691,6.90471,9.10175,-0.38285,6.8951,9.10354,-0.478167,6.90403,9.11957,-0.430861,6.92203,9.12887,-0.432926,7.03794,9.12201,-0.194396,7.01875,9.11218,-0.193122,7.01158,9.09467,-0.243276,7.01551,9.09256,-0.142514,7.05453,9.11034,-0.197006,7.05117,9.09443,-0.241408,7.03308,9.09978,-0.241742,7.03718,9.10161,-0.145891,7.05641,9.09471,-0.151785,7.067,9.09038,-0.14372,7.06133,9.09042,-0.254016,7.06564,9.12293,-0.197781,7.03722,9.07875,-0.121398,7.02766,9.07718,-0.268724,7.00516,9.09007,-0.125988,6.9992,9.09211,-0.256487,7.00716,9.12799,-0.19136,7.37326,9.0674,-0.225993,7.35215,9.05848,-0.224348,7.34698,9.05421,-0.268172,7.3571,9.05287,-0.181603,7.38705,9.0519,-0.227549,7.3907,9.04554,-0.186057,7.37451,9.04042,-0.182089,7.3839,9.0463,-0.270482,7.36701,9.0528,-0.270589,7.39988,9.03617,-0.174918,7.39549,9.06389,-0.228667,7.38988,9.03675,-0.283664,7.37277,9.02101,-0.156661,7.35658,9.02138,-0.301866,7.34727,9.047,-0.167494,7.33496,9.04809,-0.280582,7.34505,9.07481,-0.223905,6.84759,9.08817,-0.251574,6.83632,9.00725,-0.292701,6.83077,8.90731,-0.258935,6.82903,8.85458,-0.174914,6.84299,8.8933,-0.0922879,6.85619,8.98661,-0.0598055,6.86162,9.12986,-0.175449,6.85856,9.08246,-0.100682,7.19951,9.05621,-0.290908,7.18828,8.96518,-0.323641,7.18254,8.88409,-0.290917,7.18386,8.84091,-0.211244,7.19437,8.88283,-0.131693,7.20722,8.96337,-0.0988344,7.20951,9.10163,-0.211201,7.21211,9.05483,-0.131585,7.03076,8.93061,-0.12792,7.01986,8.88746,-0.194972,7.02088,8.93483,-0.261922,7.03754,8.92992,-0.116889,7.02352,8.88783,-0.195679,7.02501,8.93367,-0.275022,7.35207,8.90359,-0.296327,7.36463,8.90174,-0.155362,7.35601,8.86152,-0.22629,7.37127,8.90105,-0.145958,7.35943,8.86183,-0.225924,7.35654,8.90213,-0.306583,7.30375,9.04691,-0.30351,7.29401,8.95833,-0.337448,7.28956,8.88314,-0.303317,7.29462,8.84066,-0.22131,7.30384,8.88171,-0.139291,7.31349,8.95609,-0.105121,7.31379,9.0665,-0.221034,7.32019,9.04537,-0.138933,7.42603,9.02745,-0.153967,7.42056,9.05021,-0.231169,7.42026,8.94562,-0.121242,7.4083,8.87154,-0.153639,7.40018,8.83446,-0.231318,7.39259,8.87307,-0.308776,7.39888,8.94781,-0.341533,7.41105,9.02884,-0.309002,6.97302,9.08947,-0.264964,6.96436,9.00146,-0.296042,6.96127,8.9085,-0.264505,6.96352,8.86429,-0.188521,6.97266,8.90076,-0.112638,6.98111,8.98738,-0.0813244,6.97941,9.11418,-0.188825,6.98226,9.08691,-0.112633,7.08799,9.07758,-0.282301,7.07732,8.98273,-0.315384,7.06965,8.89628,-0.281829,7.06923,8.85305,-0.200581,7.08156,8.89486,-0.119452,7.09556,8.97815,-0.0856488,7.09278,9.10204,-0.201128,7.09816,9.07613,-0.119247,7.51806,9.00911,-0.166591,7.51132,8.93557,-0.133654,7.50516,8.85767,-0.16446,7.50021,8.81576,-0.241312,7.48976,8.85916,-0.317297,7.4898,8.93767,-0.347261,7.50319,9.01057,-0.31463,7.02216,9.04512,-0.289079,7.35653,8.99368,-0.30582,7.02175,8.99515,-0.305999,7.35129,8.9528,-0.341198,7.01592,8.93417,-0.27211,7.34658,8.90423,-0.307103,7.01578,8.88843,-0.194297,7.35342,8.86315,-0.22671,7.02693,8.93032,-0.115433,7.36052,8.90276,-0.145818,7.03918,8.98824,-0.0835585,7.37185,8.95054,-0.112323,7.03827,9.04164,-0.108034,7.37002,8.99608,-0.144699,6.68163,9.0928,-0.244473,6.69546,8.90641,-0.235676,6.69217,8.85604,-0.158524,6.7017,8.89696,-0.0844171,6.7142,8.98471,-0.0540639,6.6837,9.12411,-0.092907,6.71845,9.1424,-0.16431,5.86951,9.21105,-0.175842,5.79701,8.7662,-0.385583,5.7693,8.89384,-0.520211,5.77502,8.8033,-0.473093,5.7638,9.0921,-0.519892,5.82602,9.09622,0.123908,5.84427,9.18123,-0.0339205,5.7776,8.80159,0.0195716,5.79618,8.96692,0.117804,5.80296,9.18845,-0.393334,5.76522,9.01153,-0.537836,5.83294,8.77518,-0.191201,5.85582,9.2116,-0.294326,5.79599,9.14183,-0.474346,5.65632,9.13004,-0.454535,5.65902,9.20945,-0.291129,5.64104,8.78012,-0.203751,5.6575,9.17883,-0.385474,5.65666,8.96326,0.047487,5.64214,8.84798,-0.0553137,5.65935,9.09078,0.0433801,5.65577,9.06951,-0.488133,5.6575,8.82591,-0.437451,5.65646,8.90377,-0.480968,5.65655,8.78119,-0.333467,5.66001,9.21195,-0.17825,7.51619,9.04902,-0.243385,7.35843,9.04923,-0.507929,-5.58013,8.89256,-0.473009,-5.57979,9.06534,-0.490937,-5.57983,9.12742,-0.465539,-5.57984,9.18197,-0.397213,-5.57949,9.22038,-0.304712,-5.57887,9.22515,-0.188612,-5.57874,9.11086,0.0581205,-5.57926,8.97509,0.0700324,-5.57995,8.84946,-0.0363217,-5.58076,8.77634,-0.18167,-5.58135,8.81546,-0.43113,-5.58183,8.76374,-0.338404,-5.58379,8.98717,-0.499288,-5.58124,9.21781,-0.0782947,-5.65799,8.99372,-0.499144,-5.66043,9.18671,-0.0662581,-6.31627,8.86665,0.375432,-6.27009,8.78069,0.369749,-6.2921,8.88516,0.358448,-6.30867,8.81862,0.372625,-6.24232,8.78848,0.35739,-6.20552,8.93813,0.558679,-6.15728,8.85334,0.561713,-6.17718,8.95595,0.517657,-6.12286,8.86859,0.522483,-6.17244,8.90226,0.569123,-6.23387,8.97638,0.502003,-6.28062,8.97605,0.448437,-6.30109,8.92418,0.385186,-6.27538,8.8332,0.338711,-6.22274,8.75358,0.376716,-6.17147,8.74127,0.439205,-6.14036,8.92078,0.528682,-6.13675,8.81129,0.514987,-6.30343,8.71619,0.662258,-6.32831,8.68177,0.615231,-6.36816,8.7072,0.566649,-6.42938,8.76786,0.541738,-6.44764,8.85511,0.562607,-6.44754,8.90591,0.607801,-6.40275,8.90854,0.642789,-6.48557,8.85195,0.786139,-6.56092,8.84851,0.728565,-6.59653,8.78326,0.652722,-6.57694,8.69148,0.619722,-6.51053,8.6259,0.643673,-6.43015,8.62306,0.714874,-6.41688,8.78654,0.802317,-6.39469,8.69873,0.788091,-6.40587,8.8934,0.710933,-6.47616,8.88998,0.645445,-6.49348,8.83286,0.590535,-6.46957,8.74872,0.565916,-6.41468,8.68328,0.590113,-6.35731,8.6694,0.650672,-6.34689,8.82415,0.729643,-6.31968,8.73641,0.715443,-6.248,8.76261,0.646943,-6.27663,8.85415,0.660478,-6.29209,8.69059,0.575552,-6.3566,8.69691,0.521268,-6.42029,8.76298,0.494468,-6.44245,8.85937,0.518982,-6.41278,8.92164,0.570128,-6.33497,8.92807,0.644168,-6.46226,8.84807,0.586785,-6.44419,8.76374,0.565965,-6.38373,8.69715,0.593593,-6.43593,8.76379,0.553027,-6.37992,8.70872,0.580795,-6.45204,8.84287,0.577999,-6.18443,8.79035,0.563499,-6.1964,8.89258,0.600093,-6.22506,8.71778,0.488625,-6.26997,8.73132,0.42076,-6.3424,8.80291,0.408936,-6.3508,8.89153,0.428226,-6.33499,8.9519,0.492173,-6.26672,8.95473,0.56234,-6.28745,8.85188,0.690412,-6.33547,8.89716,0.666581,-6.27603,8.78499,0.669265,-6.37686,8.89934,0.663724,-6.30034,8.75675,0.669459,-6.37216,8.8793,0.698199,-6.32137,8.83722,0.718447,-6.31202,8.77157,0.70014,-6.3416,8.88135,0.691885,-6.35462,8.87334,0.699403,-6.30138,8.78776,0.684174,-6.30715,8.78925,0.699743,-6.32612,8.83305,0.703634,-6.28481,8.79764,0.680693,-6.32983,8.88483,0.678654,-6.30321,8.84261,0.683364,-6.30718,8.84271,0.705099,-5.8906,8.93225,0.258988,-6.3021,8.90113,0.225419,-6.27973,8.96582,0.26786,-5.91813,9.03856,0.270519,-6.0249,9.05491,0.274883,-6.21932,9.03027,0.267854,-6.1209,9.05673,0.280311,-5.89072,8.79661,0.197299,-6.29875,8.84062,0.167394,-5.97409,8.76088,0.177057,-6.08543,8.77489,0.154466,-6.18587,8.79994,0.153445,-6.04271,8.89365,0.436758,-6.03227,8.7991,0.380597,-6.07773,8.96511,0.453802,-6.11468,8.99783,0.442941,-6.25881,8.94642,0.322981,-6.22476,8.99314,0.377259,-6.23288,8.84258,0.278447,-6.27198,8.89537,0.298958,-6.17542,9.00065,0.412544,-6.06591,8.74895,0.319883,-6.18818,8.79545,0.270882,-6.13636,8.75047,0.273416,-6.04856,8.7859,-0.131984,-6.04893,8.77613,0.0322465,-6.04358,8.76489,-0.0502018,-6.19385,8.78295,0.0415062,-5.89185,8.75302,-0.15101,-5.89328,8.74627,0.0214232,-5.87255,8.73938,-0.0653099,-6.1931,8.80832,-0.0397358,-6.17826,8.81557,-0.12146,-5.96314,8.81839,-0.201593,-6.15312,8.82718,-0.180653,-6.06874,8.81328,-0.192491,-6.09818,9.20121,-0.0854787,-6.102,9.19976,-0.168481,-6.06339,9.19627,-0.269989,-6.03331,9.17737,-0.367568,-6.08018,9.17751,0.00409763,-6.06583,9.14528,0.106176,-6.00175,9.14381,-0.458081,-5.97228,9.10328,-0.539013,-5.97885,8.80604,-0.509287,-5.95854,8.85561,-0.581041,-5.95459,8.97064,-0.607211,-5.95865,9.06995,-0.578147,-5.99206,9.12511,-0.500575,-6.07347,9.10814,0.160347,-6.074,9.16417,0.0554986,-6.01569,9.16255,-0.412919,-6.05404,9.19225,-0.322691,-6.08285,9.19618,-0.214603,-6.09844,9.20331,-0.126625,-6.09363,9.19167,-0.0444263,-6.06848,8.85539,-0.241599,-6.06515,8.81693,-0.322016,-6.01075,8.7868,-0.431159,-5.79561,9.14829,0.01649,-5.7957,9.194,-0.116816,-5.78764,9.18242,-0.0573881,-5.85359,9.15634,0.0370836,-5.84192,9.19379,-0.0935425,-6.38458,8.81991,-0.466921,-6.33493,8.81804,-0.463687,-6.50385,8.8274,-0.25513,-6.41103,8.8406,-0.25227,-6.52154,8.82392,-0.0658187,-6.46466,8.85619,-0.0869274,-6.36443,8.81831,-0.510274,-6.28383,8.81618,-0.495272,-6.40977,8.8174,-0.432826,-6.29383,8.82705,-0.415568,-6.48477,8.82565,-0.296597,-6.34329,8.82864,-0.276254,-6.50856,8.82428,-0.226445,-6.37161,8.83836,-0.212967,-6.51956,8.81021,-0.00405114,-6.43219,8.83374,-0.0384028,-6.518,8.80213,-0.108916,-6.43006,8.828,-0.13259,-6.22815,8.84919,-0.453469,-6.29063,8.84909,-0.335376,-6.31624,8.82054,-0.34229,-6.3193,8.85726,-0.240596,-6.36414,8.85218,-0.178294,-6.39503,8.84059,-0.173056,-6.38672,8.85294,-0.0920703,-6.32453,9.15871,-0.0420658,-6.41578,9.1435,-0.0430815,-6.32792,9.18807,-0.133045,-6.41198,9.17979,-0.137786,-6.31075,9.1683,-0.220974,-6.40169,9.14924,-0.227028,-6.28314,9.18674,-0.344259,-6.38081,9.17639,-0.351198,-6.23888,9.15238,-0.433263,-6.33236,9.14608,-0.444205,-6.29227,9.15629,0.099451,-6.4017,9.15692,0.106755,-6.34106,8.95629,0.219245,-6.39965,8.95242,0.217866,-6.31347,9.04787,0.197632,-6.39139,9.04305,0.194881,-6.3666,8.8456,0.04723,-6.42638,8.84183,0.0655556,-6.3451,8.87762,0.139048,-6.413,8.87564,0.154894,-6.18396,9.1218,-0.531998,-6.26466,9.12543,-0.543392,-6.14432,9.07395,-0.608842,-6.21842,9.07436,-0.621766,-6.12791,8.95908,-0.647511,-6.19712,8.95263,-0.662688,-6.14648,8.85281,-0.614299,-6.21742,8.84702,-0.628914,-6.18363,8.81538,-0.543788,-6.24941,8.80757,-0.547403,-6.16002,9.09961,-0.572795,-6.23543,9.09868,-0.589468,-6.21136,9.13818,-0.479012,-6.29113,9.1399,-0.493672,-6.2928,9.10734,0.15872,-6.3997,9.10591,0.154256,-6.3095,9.15268,0.0271218,-6.41005,9.14005,0.0353637,-6.25653,9.16568,-0.393035,-6.35741,9.16166,-0.402826,-6.29923,9.17436,-0.269258,-6.39081,9.15817,-0.273045,-6.32205,9.17692,-0.176667,-6.40787,9.1637,-0.184169,-6.32992,9.17647,-0.087707,-6.41284,9.16698,-0.0950447,-6.5753,9.15759,-0.119801,-6.56594,9.14773,-0.18449,-6.23536,9.18242,-0.0870572,-6.2296,9.19063,-0.17032,-5.96059,9.19946,-0.0820735,-5.99693,9.20389,-0.166145,-6.50509,9.1532,-0.0993212,-6.51424,9.1516,-0.190992,-6.56974,9.16165,-0.155475,-6.53271,9.14245,-0.419036,-6.55417,9.13534,-0.306908,-6.19238,9.18185,-0.265325,-6.1439,9.17791,-0.380612,-5.95537,9.20103,-0.269504,-5.93507,9.18948,-0.346231,-6.50786,9.13859,-0.28524,-6.46464,9.15401,-0.41458,-6.56607,9.14924,-0.374932,-5.96668,9.174,0.000293727,-6.57155,9.09396,0.158523,-6.57139,9.12365,0.0534876,-6.20381,9.15999,0.00785885,-6.18088,9.13351,0.139238,-5.95678,9.15122,0.0672859,-6.51434,9.13172,0.0353895,-6.501,9.06699,0.161214,-6.58521,9.11426,0.104555,-6.37003,9.10702,-0.612219,-6.41871,9.12683,-0.537028,-6.10626,9.14032,-0.467825,-6.06692,9.09944,-0.554977,-5.90256,9.14662,-0.455376,-5.87519,9.11299,-0.521896,-6.38129,9.12867,-0.512335,-6.30615,9.09553,-0.607001,-6.41183,9.11693,-0.576703,-5.70453,8.77755,-0.270471,-5.6946,8.79901,-0.127961,-5.76198,8.7617,-0.272573,-5.73791,8.78693,-0.106468,-5.69771,8.78147,-0.199921,-5.82832,8.76072,-0.287901,-5.7903,8.75099,-0.0710157,-5.73733,8.82022,-0.451534,-5.74605,9.1735,-0.0604976,-5.75378,9.09937,0.0550136,-5.73619,8.96837,0.064211,-5.73328,8.90578,-0.49582,-5.73048,9.00664,-0.510541,-5.74486,8.7763,-0.363744,-5.75941,8.77823,-0.19633,-5.72396,8.84422,-0.0170676,-5.76147,9.2061,-0.1681,-5.72999,9.0834,-0.497354,-5.75505,9.21465,-0.289203,-5.73785,9.14155,-0.459136,-5.74386,9.18766,-0.386816,-6.08209,8.83472,-0.524408,-6.05364,8.85655,-0.599104,-6.04511,8.96496,-0.625226,-6.05225,9.06554,-0.594584,-6.08626,9.12292,-0.513861,-6.31577,8.88548,0.161645,-6.30412,8.82818,0.0338926,-6.18334,9.07236,0.203259,-6.29855,8.963,0.235825,-6.18423,9.15194,0.0735889,-6.12621,9.15753,-0.423661,-6.16636,9.19218,-0.329686,-6.21566,9.18115,-0.212798,-6.23401,9.19641,-0.12845,-6.22512,9.1688,-0.0458232,-6.30588,8.85752,-0.0730598,-6.26338,8.8543,-0.153386,-6.20874,8.8573,-0.226064,-6.19843,8.82342,-0.327937,-6.131,8.79628,-0.44292,-5.96981,9.2019,-0.131031,-5.93262,8.79469,-0.316082,-5.97333,9.19522,-0.314102,-5.99189,9.16092,0.0377313,-5.94662,9.12129,0.129622,-5.86343,9.07607,-0.557718,-5.86133,8.97975,-0.583961,-5.86203,8.85161,-0.561491,-5.87495,8.791,-0.495112,-5.9191,9.12817,-0.491675,-5.96243,9.19278,-0.0415124,-5.96427,9.20225,-0.204925,-5.9544,8.83007,-0.234021,-5.90973,9.17255,-0.40223,-5.89196,8.76891,-0.421779,-6.59076,8.81431,-0.156141,-6.64937,8.84076,-0.158743,-6.53134,8.82673,-0.381509,-6.59199,8.85756,-0.37597,-6.59966,8.82716,0.109235,-6.64856,8.82331,0.0867191,-6.33914,8.86113,-0.651946,-6.39436,8.86785,-0.6499,-6.36648,8.82328,-0.589503,-6.42311,8.84726,-0.596841,-6.59191,8.82133,-0.0836785,-6.65575,8.85763,-0.0897302,-6.6006,8.84715,-0.0436866,-6.65042,8.85609,-0.0464401,-6.59043,8.81471,0.0203602,-6.65389,8.84064,0.0173764,-6.58519,8.83969,-0.229741,-6.64948,8.87498,-0.230561,-6.55995,8.84613,-0.300755,-6.61876,8.87286,-0.305636,-6.57751,8.85502,-0.260405,-6.63457,8.88331,-0.26764,-6.50121,8.83126,-0.440133,-6.57065,8.87586,-0.451241,-6.4216,8.81715,-0.520615,-6.4918,8.85225,-0.535255,-6.46643,8.82481,-0.476235,-6.53997,8.8719,-0.490515,-6.50843,9.16308,-0.143188,-6.51566,8.81443,-0.173204,-6.44324,8.80617,-0.366737,-6.48091,9.16746,-0.358935,-6.5065,9.13878,0.108062,-6.48566,9.03755,0.20189,-6.48619,8.9649,0.21625,-6.50999,8.87238,0.17066,-6.51336,8.82628,0.0864486,-6.28839,9.07207,-0.63554,-6.25815,8.95144,-0.676418,-6.28413,8.8442,-0.641676,-6.32749,8.81539,-0.570869,-6.34323,9.12434,-0.55455,-6.53033,9.12477,-0.0436473,-6.52603,9.12645,-0.240445,-6.44818,9.1339,-0.463507,-6.61491,9.00758,-0.509292,-6.61883,8.98857,-0.507461,-6.59233,8.91914,-0.497036,-6.58931,9.05587,-0.509106,-6.60807,9.02151,-0.509477,-6.69219,9.02211,-0.287135,-6.69685,9.00427,-0.285605,-6.68443,8.92731,-0.274019,-6.68041,9.08127,-0.285904,-6.68609,9.03535,-0.28603,-6.71844,9.00968,-0.0433991,-6.71662,8.9904,-0.0418453,-6.69752,8.90841,-0.0436208,-6.72015,9.03027,-0.0446858,-6.70531,9.08794,-0.0481733,-6.71794,9.00707,-0.0563274,-6.71583,9.00451,-0.0305125,-6.68339,9.02501,-0.288084,-6.70098,9.01592,-0.277661,-6.59646,9.00109,-0.517002,-6.63359,8.9948,-0.495574,-6.58894,9.02125,-0.516741,-6.63125,9.01173,-0.497273,-6.67807,9.03783,-0.28866,-6.69611,9.03342,-0.278082,-6.7038,8.99658,-0.275947,-6.7134,9.03351,-0.0596773,-6.71269,8.9856,-0.0299886,-6.71357,9.02757,-0.0318104,-6.47112,9.10081,-0.595068,-6.53632,9.07378,-0.529707,-6.5984,8.97788,-0.516331,-6.55293,8.89139,-0.524276,-6.474,8.86997,-0.596531,-6.42941,8.88557,-0.651155,-6.39643,8.93071,-0.675108,-6.41841,9.03796,-0.664108,-6.93101,8.95299,-0.653788,-6.69512,9.00434,-0.577603,-6.93825,8.91402,-0.625458,-6.69704,8.9651,-0.550838,-6.92534,8.87376,-0.648649,-6.68362,8.9171,-0.57623,-6.90667,8.83984,-0.710875,-6.65988,8.86354,-0.637835,-6.89029,8.86502,-0.777629,-6.64584,8.88387,-0.702405,-6.88767,8.90246,-0.809211,-6.64419,8.92772,-0.736414,-6.89742,8.94196,-0.785243,-6.64782,8.98505,-0.725033,-7.01247,8.95709,-0.810406,-6.99842,8.89493,-0.829209,-7.00363,8.83671,-0.801382,-7.02122,8.81601,-0.742759,-7.03657,8.84444,-0.686802,-7.04471,8.90568,-0.667864,-7.02713,8.98629,-0.75347,-7.04374,8.96424,-0.698565,-6.73944,9.02877,-0.594465,-6.72066,9.04993,-0.662629,-6.7414,8.95269,-0.558114,-6.72532,8.87951,-0.579609,-6.70182,8.83617,-0.643044,-6.68555,8.8578,-0.713319,-6.68442,8.92553,-0.749195,-6.69935,9.02075,-0.728621,-6.64981,9.05052,-0.57487,-6.63355,9.0684,-0.646077,-6.65278,8.98145,-0.533824,-6.63979,8.89964,-0.559775,-6.61984,8.8497,-0.623409,-6.60298,8.86946,-0.690697,-6.59864,8.93642,-0.72676,-6.61288,9.03434,-0.705346,-6.94209,8.97413,-0.797966,-6.92869,8.9011,-0.816705,-6.93004,8.8452,-0.78478,-6.94619,8.82176,-0.721376,-6.9653,8.85327,-0.662488,-6.97792,8.91162,-0.641708,-6.959,8.99898,-0.736826,-6.97551,8.9809,-0.673425,-6.89354,8.99663,-0.646728,-6.87483,9.01253,-0.715185,-6.89477,8.92023,-0.611416,-6.88241,8.85982,-0.634371,-6.86066,8.82479,-0.698059,-6.84334,8.84944,-0.767373,-6.83988,8.90699,-0.801172,-6.85459,8.98888,-0.781559,-6.8989,8.86479,-0.779171,-6.91227,8.83997,-0.711572,-6.93478,8.87337,-0.65062,-6.90971,8.83924,-0.711303,-6.92767,8.87178,-0.65727,-6.8969,8.86494,-0.76986,-6.65248,8.88311,-0.706147,-6.66601,8.86282,-0.638294,-6.69085,8.91478,-0.579093,-6.65142,8.88309,-0.693858,-6.66293,8.86215,-0.637752,-6.68421,8.91241,-0.586819,-6.81999,9.00758,-0.620724,-6.80115,9.04796,-0.692122,-6.82263,8.93103,-0.585073,-6.80818,8.86628,-0.606976,-6.7843,8.82982,-0.670698,-6.76468,8.85364,-0.741204,-6.76029,8.91411,-0.775554,-6.77584,9.00139,-0.75574,-6.5857,9.06571,-0.543452,-6.54625,9.10182,-0.615889,-6.62057,8.99563,-0.521933,-6.57627,8.90096,-0.535082,-6.53151,8.85772,-0.603043,-6.50652,8.87552,-0.670605,-6.50189,8.94055,-0.706076,-6.51804,9.03903,-0.685022,-6.89857,9.01968,-0.721192,-6.8833,8.99289,-0.765108,-6.90919,8.9978,-0.672916,-6.89785,8.96772,-0.783617,-6.9313,8.97504,-0.665807,-6.92732,8.9835,-0.775181,-6.93807,9.01134,-0.731648,-6.95043,8.98831,-0.686023,-6.90976,8.99848,-0.761587,-6.92337,8.99307,-0.763869,-6.92865,8.99182,-0.688002,-6.94057,8.99643,-0.69409,-6.93145,9.00078,-0.728463,-6.91521,9.00246,-0.686182,-6.89468,8.99937,-0.756586,-6.90476,9.00554,-0.721036,-6.92043,9.01393,-0.726034,-6.65467,9.07737,-0.651782,-6.6369,9.03587,-0.697847,-6.66721,9.04926,-0.593367,-6.65692,9.02162,-0.710284,-6.69276,9.03261,-0.592902,-6.69925,9.06763,-0.65875,-6.68538,9.03239,-0.703385,-6.71133,9.04121,-0.615126,-6.70152,9.0466,-0.621379,-6.68827,9.05542,-0.61601,-6.66574,9.04291,-0.690221,-6.67973,9.03737,-0.69223,-6.69089,9.05802,-0.658486,-6.67227,9.05039,-0.609773,-6.64901,9.0379,-0.688369,-6.66355,9.06189,-0.652768,-6.67791,9.06951,-0.655819,-7.00161,9.07015,0.0948462,-6.98367,9.06373,0.0924703,-6.98071,9.03116,0.0412013,-6.97412,9.04053,0.143888,-7.01806,9.05332,0.0953328,-7.01811,9.02665,0.0502423,-7.00109,9.03598,0.0464938,-6.9955,9.04682,0.144247,-7.01396,9.03358,0.141821,-7.02211,9.02722,0.151104,-7.02823,9.02053,0.0400348,-7.02781,9.06191,0.0966464,-6.99007,9.02279,0.16839,-6.99758,9.01222,0.0195882,-6.96135,9.04218,0.158391,-6.97009,9.03183,0.0258361,-6.97194,9.08246,0.0919762,-7.31003,9.01593,0.117786,-7.2908,9.00625,0.116297,-7.29239,9.00172,0.0724442,-7.2889,9.00169,0.158989,-7.32162,9.00004,0.118564,-7.31814,8.99499,0.160089,-7.30358,8.98937,0.161649,-7.32494,8.99448,0.0756162,-7.31025,9.00081,0.0729575,-7.32466,8.98582,0.172793,-7.3291,9.01299,0.118497,-7.33213,8.98471,0.0635678,-7.29801,8.96995,0.1868,-7.30437,8.96804,0.0408518,-7.27765,8.99591,0.171401,-7.28314,8.99525,0.0585167,-7.28462,9.02338,0.115349,-6.8375,9.05095,0.00559878,-6.82875,8.96033,-0.0256551,-6.81406,8.86932,0.00584157,-6.80232,8.82022,0.0909673,-6.79547,8.85216,0.178684,-6.80155,8.94362,0.207866,-6.8351,9.09919,0.0828931,-6.8154,9.045,0.165552,-7.15844,9.00121,0.0270987,-7.14637,8.90318,-0.00549888,-7.1349,8.82447,0.0269039,-7.12628,8.78646,0.105828,-7.12573,8.82541,0.184485,-7.13386,8.90445,0.217061,-7.1599,9.05012,0.106309,-7.14925,9.0021,0.185266,-6.97485,8.85324,0.160419,-6.97221,8.82201,0.0928469,-6.98421,8.86968,0.0269517,-6.97993,8.85478,0.173037,-6.97743,8.82154,0.0933598,-6.99003,8.87109,0.0148857,-7.29785,8.83743,0.0476631,-7.28915,8.83765,0.187715,-7.29076,8.80239,0.117536,-7.2936,8.83539,0.198235,-7.29325,8.8028,0.118387,-7.30313,8.834,0.037819,-7.25816,8.99352,0.0313041,-7.24778,8.90054,-0.00227047,-7.23749,8.82613,0.0316757,-7.23023,8.79009,0.113231,-7.22802,8.82713,0.194092,-7.23461,8.90181,0.228226,-7.25532,9.0144,0.113443,-7.24897,8.99456,0.195178,-7.34558,8.97829,0.19805,-7.35245,8.99912,0.120116,-7.33509,8.8828,0.230601,-7.32956,8.79711,0.197129,-7.33232,8.76901,0.119667,-7.33848,8.79609,0.0414228,-7.34763,8.88174,0.00849241,-7.35458,8.97725,0.0415349,-6.94637,9.02817,0.0123083,-6.93831,8.92988,-0.0189614,-6.9284,8.85633,0.0130721,-6.92001,8.81653,0.0890713,-6.91927,8.84932,0.166001,-6.92526,8.93268,0.199085,-6.94523,9.07142,0.0895439,-6.93712,9.03948,0.167727,-7.05441,9.00761,0.0169452,-7.04445,8.91637,-0.0163902,-7.03047,8.83452,0.0169111,-7.02036,8.79188,0.0975457,-7.02096,8.82921,0.178389,-7.03118,8.91551,0.212257,-7.0523,9.03625,0.0978707,-7.04485,9.0126,0.179843,-7.43014,8.9619,0.201487,-7.42872,8.99897,0.125037,-7.41852,8.8681,0.232416,-7.41652,8.7817,0.201823,-7.42257,8.76728,0.125628,-7.42537,8.78077,0.0484707,-7.43093,8.86686,0.0172997,-7.43772,8.9651,0.0517245,-6.99329,8.97449,-0.00114942,-7.30425,8.93933,0.0375656,-6.99212,8.92205,-0.017607,-7.30169,8.89229,0.00202681,-6.9804,8.87235,0.0160168,-7.29329,8.83736,0.0359974,-6.96743,8.82396,0.0926262,-7.28778,8.80389,0.116639,-6.96818,8.8567,0.172338,-7.28338,8.83858,0.196444,-6.97835,8.91646,0.205396,-7.28863,8.89349,0.231117,-6.98659,8.98121,0.181593,-7.2934,8.94433,0.19827,-6.69581,9.10126,-0.00985286,-6.70023,8.88235,-0.00465694,-6.6958,8.83154,0.117055,-6.65929,8.89105,0.167966,-6.68857,8.94742,0.198485,-6.69277,9.05548,0.17453,-6.70713,9.11213,0.0796777,-6.65261,9.13293,-0.390651,-6.65269,9.09555,-0.310408,-6.68731,9.00524,-0.287527,-6.66722,8.91434,-0.305607,-6.6447,8.86808,-0.383592,-6.62493,8.90113,-0.463642,-6.63316,8.97945,-0.49322,-6.62493,9.08706,-0.475592,-7.22454,9.0016,-0.405821,-6.92601,9.05519,-0.352561,-7.22598,8.95862,-0.375769,-6.92658,9.0028,-0.330678,-7.21511,8.91797,-0.407055,-6.91622,8.9471,-0.359431,-7.20383,8.88756,-0.481646,-6.90513,8.90627,-0.433716,-7.19341,8.92018,-0.555301,-6.9012,8.95174,-0.507043,-7.19435,8.96194,-0.587362,-6.90368,9.00531,-0.538654,-7.20321,9.00022,-0.554956,-6.90348,9.05728,-0.522403,-7.33757,9.01653,-0.57243,-7.32393,8.94808,-0.603332,-7.32549,8.87855,-0.57476,-7.33816,8.849,-0.503496,-7.3475,8.87638,-0.43086,-7.35508,8.94497,-0.401144,-7.35893,9.01432,-0.432594,-6.98069,9.08815,-0.367273,-6.97314,9.1088,-0.442634,-6.97691,8.99605,-0.336763,-6.96683,8.91175,-0.367503,-6.95566,8.87068,-0.442541,-6.95117,8.91563,-0.517932,-6.9547,8.99828,-0.548983,-6.96445,9.08227,-0.517726,-6.87576,9.09699,-0.353099,-6.8688,9.11998,-0.425758,-6.87613,9.01135,-0.322509,-6.86844,8.92765,-0.353322,-6.85841,8.88562,-0.426399,-6.85181,8.92947,-0.499202,-6.85103,9.01192,-0.529086,-6.85871,9.09915,-0.498039,-7.25261,9.03343,-0.561688,-7.23934,8.95896,-0.592222,-7.23687,8.89594,-0.561143,-7.24667,8.86529,-0.488786,-7.25891,8.89373,-0.41589,-7.27021,8.95572,-0.385134,-7.26658,9.05269,-0.488869,-7.27514,9.03129,-0.416253,-7.1797,9.04889,-0.398471,-7.16933,9.06772,-0.473322,-7.17457,8.96509,-0.367309,-7.16457,8.90307,-0.398725,-7.15147,8.8713,-0.4735,-7.14296,8.90513,-0.548164,-7.14409,8.96829,-0.579531,-7.15573,9.05112,-0.54828,-7.20306,8.91943,-0.555906,-7.20998,8.88744,-0.481412,-7.22522,8.91739,-0.40737,-7.20707,8.88678,-0.481576,-7.21907,8.91671,-0.416333,-7.20012,8.91938,-0.545717,-6.91018,8.95096,-0.510073,-6.91362,8.90516,-0.43581,-6.9268,8.94549,-0.361695,-6.90644,8.94893,-0.497492,-6.90927,8.90485,-0.434767,-6.92013,8.94271,-0.371603,-7.08336,9.0642,-0.383395,-7.07583,9.10651,-0.457821,-7.0785,8.97911,-0.352893,-7.06721,8.90209,-0.383586,-7.05566,8.86357,-0.458717,-7.05061,8.90364,-0.534012,-7.05234,8.98179,-0.564525,-7.06236,9.06636,-0.532815,-6.78922,9.09618,-0.333,-6.77133,9.1357,-0.409074,-6.79246,9.02121,-0.298622,-6.77842,8.92466,-0.330499,-6.75415,8.87579,-0.407684,-6.74507,8.91366,-0.486408,-6.74751,9.00604,-0.520374,-6.75714,9.08909,-0.486969,-7.19791,9.07371,-0.477818,-7.1857,9.05018,-0.5293,-7.20313,9.04858,-0.426393,-7.20313,9.02613,-0.550813,-7.22613,9.02502,-0.417055,-7.23476,9.04025,-0.536296,-7.24363,9.06476,-0.485084,-7.25004,9.03915,-0.435024,-7.21477,9.05427,-0.52231,-7.2301,9.04872,-0.523384,-7.22651,9.04261,-0.440743,-7.24096,9.04754,-0.445143,-7.23606,9.05344,-0.483672,-7.21131,9.05353,-0.439668,-7.1972,9.05527,-0.518714,-7.20459,9.05864,-0.478709,-7.224,9.06681,-0.481411,-6.89296,9.13309,-0.428599,-6.88292,9.10115,-0.490243,-6.89565,9.09858,-0.367067,-6.90987,9.08788,-0.502739,-6.92511,9.08847,-0.364907,-6.94786,9.1288,-0.437754,-6.94175,9.09522,-0.490331,-6.95165,9.09941,-0.387567,-6.94195,9.10348,-0.39418,-6.92446,9.10973,-0.387328,-6.91569,9.10728,-0.477652,-6.93283,9.10025,-0.478364,-6.93779,9.11823,-0.436691,-6.90471,9.10175,-0.38285,-6.8951,9.10354,-0.478167,-6.90403,9.11957,-0.430861,-6.92203,9.12887,-0.432926,-7.03794,9.12201,-0.194396,-7.01875,9.11218,-0.193122,-7.01158,9.09467,-0.243276,-7.01551,9.09256,-0.142514,-7.05453,9.11034,-0.197006,-7.05117,9.09443,-0.241408,-7.03308,9.09978,-0.241741,-7.03718,9.10161,-0.145891,-7.05641,9.09471,-0.151785,-7.067,9.09038,-0.14372,-7.06133,9.09042,-0.254016,-7.06564,9.12293,-0.197781,-7.03722,9.07875,-0.121398,-7.02766,9.07718,-0.268723,-7.00516,9.09007,-0.125988,-6.9992,9.09211,-0.256487,-7.00716,9.12799,-0.19136,-7.37326,9.0674,-0.225992,-7.35215,9.05847,-0.224348,-7.34698,9.05421,-0.268172,-7.3571,9.05287,-0.181603,-7.38706,9.0519,-0.227549,-7.3907,9.04554,-0.186057,-7.37451,9.04042,-0.182089,-7.3839,9.0463,-0.270482,-7.36701,9.0528,-0.270589,-7.39988,9.03617,-0.174918,-7.3955,9.06389,-0.228667,-7.38988,9.03675,-0.283664,-7.37277,9.02101,-0.156661,-7.35659,9.02138,-0.301866,-7.34727,9.047,-0.167494,-7.33496,9.04809,-0.280582,-7.34505,9.07481,-0.223905,-6.84759,9.08817,-0.251574,-6.83632,9.00725,-0.2927,-6.83077,8.90731,-0.258935,-6.82903,8.85459,-0.174914,-6.84299,8.8933,-0.0922878,-6.85619,8.98661,-0.0598054,-6.86162,9.12986,-0.175449,-6.85855,9.08246,-0.100682,-7.19951,9.0562,-0.290908,-7.18828,8.96518,-0.323641,-7.18254,8.88409,-0.290917,-7.18386,8.84091,-0.211243,-7.19437,8.88283,-0.131693,-7.20722,8.96337,-0.0988343,-7.20951,9.10163,-0.211201,-7.21211,9.05483,-0.131584,-7.03076,8.93061,-0.12792,-7.01986,8.88746,-0.194972,-7.02088,8.93483,-0.261921,-7.03754,8.92992,-0.116889,-7.02352,8.88783,-0.195679,-7.02501,8.93367,-0.275022,-7.35207,8.90359,-0.296327,-7.36463,8.90174,-0.155362,-7.35601,8.86152,-0.22629,-7.37127,8.90105,-0.145958,-7.35944,8.86183,-0.225924,-7.35654,8.90213,-0.306583,-7.30375,9.04691,-0.30351,-7.29401,8.95833,-0.337448,-7.28956,8.88314,-0.303316,-7.29462,8.84066,-0.22131,-7.30385,8.88171,-0.139291,-7.31349,8.95609,-0.105121,-7.3138,9.0665,-0.221034,-7.32019,9.04537,-0.138933,-7.42603,9.02745,-0.153967,-7.42056,9.05021,-0.231169,-7.42026,8.94562,-0.121241,-7.4083,8.87154,-0.153639,-7.40018,8.83446,-0.231318,-7.39259,8.87307,-0.308776,-7.39888,8.94781,-0.341533,-7.41105,9.02884,-0.309002,-6.97302,9.08947,-0.264964,-6.96436,9.00146,-0.296041,-6.96127,8.9085,-0.264505,-6.96352,8.86429,-0.188521,-6.97266,8.90076,-0.112638,-6.98111,8.98738,-0.0813243,-6.97941,9.11418,-0.188825,-6.98226,9.08691,-0.112633,-7.08799,9.07758,-0.282301,-7.07732,8.98273,-0.315384,-7.06965,8.89628,-0.281829,-7.06923,8.85305,-0.200581,-7.08156,8.89486,-0.119452,-7.09556,8.97815,-0.0856487,-7.09278,9.10203,-0.201128,-7.09816,9.07613,-0.119247,-7.51806,9.00911,-0.16659,-7.51132,8.93557,-0.133654,-7.50516,8.85767,-0.16446,-7.50021,8.81576,-0.241312,-7.48976,8.85916,-0.317297,-7.4898,8.93767,-0.347261,-7.50319,9.01057,-0.31463,-7.02216,9.04512,-0.289079,-7.35653,8.99368,-0.30582,-7.02175,8.99515,-0.305998,-7.35129,8.9528,-0.341197,-7.01592,8.93417,-0.27211,-7.34658,8.90423,-0.307103,-7.01578,8.88843,-0.194297,-7.35342,8.86315,-0.22671,-7.02693,8.93032,-0.115433,-7.36052,8.90276,-0.145818,-7.03918,8.98824,-0.0835584,-7.37185,8.95054,-0.112323,-7.03827,9.04164,-0.108034,-7.37002,8.99608,-0.144699,-6.68163,9.0928,-0.244472,-6.69546,8.90642,-0.235676,-6.69217,8.85604,-0.158524,-6.7017,8.89696,-0.0844171,-6.7142,8.98471,-0.0540638,-6.6837,9.12411,-0.0929069,-6.71845,9.1424,-0.16431,-5.86951,9.21105,-0.175842,-5.79701,8.7662,-0.385583,-5.7693,8.89384,-0.520211,-5.77502,8.8033,-0.473093,-5.7638,9.0921,-0.519892,-5.82602,9.09622,0.123908,-5.84427,9.18123,-0.0339205,-5.7776,8.80159,0.0195716,-5.79618,8.96692,0.117803,-5.80296,9.18845,-0.393334,-5.76522,9.01153,-0.537836,-5.83294,8.77518,-0.191201,-5.85582,9.2116,-0.294326,-5.79599,9.14183,-0.474346,-5.65632,9.13004,-0.454535,-5.65902,9.20945,-0.291129,-5.64104,8.78012,-0.203751,-5.6575,9.17884,-0.385474,-5.65666,8.96326,0.047487,-5.64214,8.84798,-0.0553137,-5.65935,9.09078,0.0433802,-5.65577,9.06951,-0.488133,-5.6575,8.82591,-0.437451,-5.65646,8.90378,-0.480968,-5.65656,8.78119,-0.333467,-5.66001,9.21195,-0.17825,-7.51619,9.04903,-0.243385,-7.35843,9.04923,-0.507929,0.202102,6.11933,1.254,0.446821,6.12823,1.15857,0.161361,5.41375,1.28956,0.348257,5.38625,1.15124,0.236799,5.07566,0.940041,0.102598,4.96493,1.00327,0.0590471,4.93477,0.463749,0.0741056,4.93663,0.436198,0.0424693,4.96785,0.0189382,0.0585403,4.96849,0.0181274,0.0865388,5.1676,-0.62113,0.288026,5.10933,-0.571061,0.0695111,5.7645,-0.954723,0.256058,5.79184,-0.970809,0.137647,6.23887,-0.893728,0.259631,6.25827,-0.898473,0.181505,6.51102,-0.738394,0.301089,6.49741,-0.776265,0.64021,5.67636,1.00573,0.690757,6.13792,0.957668,0.944315,6.16301,0.638179,0.919392,5.9986,0.668535,1.09125,6.14465,0.323183,1.10442,6.28075,0.297585,1.07077,6.32757,-0.0292253,1.12205,6.16962,-0.0313013,0.963433,6.18372,-0.484513,0.916064,6.43732,-0.386607,1.10798,6.00133,0.328105,1.15554,5.83177,-0.0662757,0.956103,5.84381,0.682891,0.648029,5.48664,0.95671,0.359276,5.15571,0.942199,0.070438,4.94782,0.0189545,0.666496,6.47578,-0.651394,0.660952,6.24078,-0.811685,0.978748,5.85941,-0.597422,0.647369,5.84801,-0.92455,0.572932,5.18486,-0.677777,0.562285,5.01806,-0.502835,1.04584,5.518,-0.342138,0.946532,5.5397,-0.639306,0.819297,5.30781,-0.607615,0.796208,5.13157,-0.532105,0.0726687,5.43525,-0.855582,0.260682,5.42461,-0.897157,0.606812,5.39572,-0.879982,0.0699445,4.99571,-0.351735,0.143512,5.01101,-0.329955,0.170606,4.93753,-0.315606,0.310897,4.97461,-0.409768,0.19909,5.02238,0.838455,0.0878535,4.91708,0.415256,0.12448,4.55149,0.0181447,0.115702,4.62273,0.372547,0.226214,4.73136,0.745392,0.426023,4.51121,-0.432349,0.275576,4.46358,-0.315785,0.38757,4.87645,0.900632,0.662752,5.08603,0.929042,0.983684,5.4039,0.745963,1.20041,5.52334,0.390292,0.815288,4.81196,-0.465501,1.11883,5.13812,-0.226201,1.28055,5.35383,0.0454625,0.630278,4.66024,-0.492527,0.254271,3.83209,0.129459,0.250389,3.82865,0.358449,0.795948,3.85284,-0.335438,0.628853,3.83925,-0.288805,0.46377,3.83253,-0.241123,0.342778,3.82889,-0.136905,1.09728,3.91271,-0.215706,1.2133,3.95082,0.0102213,0.999159,3.97884,0.625147,1.20407,3.98226,0.24126,0.510677,3.87856,0.768608,0.738215,3.93231,0.771509,0.346094,3.85219,0.613938,0.199479,4.14468,0.0883186,0.193785,4.19581,0.358346,0.810146,4.24782,-0.493108,0.637454,4.18818,-0.436087,0.453529,4.14645,-0.349782,0.316204,4.1275,-0.216993,1.27196,4.54605,-0.0488473,1.11923,4.43283,-0.344665,0.994705,4.61423,0.664226,1.23858,4.66028,0.360957,0.451476,4.34676,0.762432,0.704863,4.46273,0.784615,0.296074,4.26346,0.647497,0.279469,3.56695,0.350919,0.378077,3.57362,0.610081,0.763179,3.61205,0.784711,0.545154,3.58,0.778151,1.18789,3.63743,0.225322,1.01171,3.63763,0.649606,1.18469,3.63596,0.0462727,1.08639,3.63214,-0.164758,0.36396,3.61962,-0.106701,0.472547,3.61998,-0.200527,0.622069,3.61981,-0.245861,0.785805,3.62062,-0.287858,0.280482,3.59457,0.136712,0.310794,3.27408,0.108858,0.315972,3.24404,0.332647,0.79169,3.31854,-0.322428,0.631584,3.32079,-0.284445,0.499508,3.31581,-0.230491,0.39861,3.30815,-0.13043,1.07389,3.31289,-0.176051,1.1448,3.30703,0.0271583,1.04977,3.28812,0.564466,1.15477,3.30832,0.188918,0.631233,3.24059,0.727644,0.796811,3.26964,0.722389,0.410378,3.24519,0.57402,0.431057,2.70669,-0.269775,0.482634,1.96936,-0.280789,0.370175,2.69611,-0.00644183,0.435417,1.9614,-0.0356348,0.394159,2.68494,0.253601,0.456676,1.95738,0.217004,0.454505,2.69049,0.473117,0.54573,1.96253,0.383198,0.679279,2.65864,0.62635,0.716692,1.95707,0.537311,0.865036,2.66224,0.621741,0.852243,1.96137,0.530134,1.10692,2.70714,0.441119,1.08408,1.96329,0.368997,1.22931,2.7028,0.084996,1.19821,1.95717,0.0291508,1.22047,2.71112,-0.107447,1.18772,1.96511,-0.14552,1.12006,2.71904,-0.3145,1.09527,1.96898,-0.31548,0.829777,2.72009,-0.456138,0.841005,1.97159,-0.44557,0.531299,2.71268,-0.369004,0.573089,1.97167,-0.371144,0.672642,2.71717,-0.418103,0.702698,1.97078,-0.415205,0.211812,4.88229,0.794346,0.366024,4.76033,-0.433107,0.0940014,4.7621,0.00924449,0.595508,4.8517,-0.502284,1.08069,5.33433,-0.269866,1.21841,5.59105,-0.00684149,1.18354,5.76689,0.354678,0.973092,5.63022,0.71916,0.648027,5.27274,0.957871,0.804901,4.97857,-0.489809,0.365631,5.01798,0.92737,0.100592,4.77644,0.394224,0.219783,4.71699,-0.335171,1.01176,6.06811,0.499433,1.03346,6.21848,0.47404,1.0393,5.91432,0.508831,1.14744,5.47181,0.570297,1.12732,3.97978,0.434445,1.14211,4.63931,0.521308,1.10201,3.63979,0.43657,1.10403,3.29961,0.354832,1.19054,2.69697,0.252778,1.16215,1.95254,0.187774,1.08553,5.70212,0.539432,0.524795,1.38504,-0.215873,0.508905,1.3895,0.00448297,0.604984,1.38355,0.361719,0.751792,1.39469,0.468996,0.864594,1.38785,0.464007,1.05606,1.37976,0.351734,1.16385,1.36978,0.0208227,1.16201,1.38369,-0.152291,1.08332,1.39486,-0.28458,0.861087,1.39585,-0.385702,0.61014,1.38849,-0.306111,0.737518,1.39455,-0.357141,0.509709,1.37048,0.202719,1.12139,1.36702,0.187705,0.179747,5.80113,1.31062,0.455499,5.81434,1.22207,0.159882,6.37777,-0.814831,0.280389,6.38007,-0.836331,0.665675,5.93489,0.981412,0.931643,6.13581,0.650616,1.09764,6.25382,0.308271,1.09609,6.30008,-0.0304753,0.939227,6.31168,-0.435489,0.66373,6.36004,-0.730744,1.01766,6.18784,0.48132,0.353369,3.72426,-0.121803,0.267377,3.71333,0.133085,0.362085,3.7129,0.612009,0.527915,3.72928,0.77338,0.750697,3.77218,0.77811,1.00544,3.80824,0.637377,1.19598,3.80985,0.233291,1.19899,3.79339,0.028247,1.09183,3.77243,-0.190232,0.790876,3.73673,-0.311648,0.468159,3.72626,-0.220825,0.625461,3.72953,-0.267333,0.264929,3.6978,0.354684,1.11467,3.80978,0.435507,0.295638,3.43433,0.122785,0.788747,3.46958,-0.305143,0.626826,3.4703,-0.265153,0.486028,3.46789,-0.215509,0.381285,3.46388,-0.118565,1.16474,3.4715,0.0367155,1.08014,3.47251,-0.170404,1.03074,3.46287,0.607036,1.17133,3.47287,0.20712,0.588193,3.41029,0.752897,0.779995,3.44085,0.75355,0.394227,3.4094,0.59205,0.29772,3.40549,0.341783,1.10302,3.4697,0.395701,1.10793,0.294454,0.180335,0.524089,0.297754,0.194666,0.741532,0.320729,-0.339718,0.61995,0.314945,-0.29101,0.859478,0.321968,-0.366979,1.0716,0.321021,-0.270458,1.14671,0.310359,-0.144189,1.14846,0.297085,0.0210469,1.04558,0.306614,0.3369,0.862826,0.314334,0.444064,0.755156,0.32086,0.448826,0.615029,0.310232,0.34643,0.523322,0.315905,0.00545075,0.538488,0.311654,-0.204878,-0.202102,6.11933,1.254,-0.446821,6.12823,1.15857,2.66684e-15,6.11519,1.26609,0,5.43088,1.31914,-0.161361,5.41375,1.28956,-0.348257,5.38625,1.15124,-0.236799,5.07566,0.940041,-0.102598,4.96493,1.00327,0,4.94287,1.00406,0,4.92531,0.467763,-0.0590471,4.93477,0.463749,-0.0741056,4.93663,0.436198,-0.0424693,4.96785,0.0189382,-0.0585403,4.96849,0.0181274,0,4.96605,0.0185854,0,5.21195,-0.625146,-0.0865388,5.1676,-0.62113,-0.288026,5.10933,-0.571061,-0.0695111,5.7645,-0.954723,-1.77997e-15,5.74233,-0.922814,-0.256058,5.79184,-0.970809,-0.137647,6.23887,-0.893728,-0.259631,6.25827,-0.898473,3.55608e-15,6.26041,-0.838631,-0.181505,6.51102,-0.738394,4.44397e-15,6.49838,-0.691591,-0.301089,6.49741,-0.776265,-0.64021,5.67636,1.00573,-0.690757,6.13792,0.957668,-0.944315,6.16301,0.638179,-0.919392,5.9986,0.668535,-1.09125,6.14465,0.323183,-1.10442,6.28075,0.297585,-1.07077,6.32757,-0.0292253,-1.12205,6.16962,-0.0313013,-0.963433,6.18372,-0.484513,-0.916064,6.43732,-0.386607,-1.10798,6.00133,0.328105,-1.15554,5.83177,-0.0662757,-0.956103,5.84381,0.682891,-0.648029,5.48664,0.95671,-0.359276,5.15571,0.942199,-0.070438,4.94782,0.0189545,-0.666496,6.47578,-0.651394,-0.660952,6.24078,-0.811685,-0.978748,5.85941,-0.597422,-0.647369,5.84801,-0.92455,-0.572932,5.18486,-0.677777,-0.562285,5.01806,-0.502835,-1.04584,5.518,-0.342138,-0.946532,5.5397,-0.639306,-0.819297,5.30781,-0.607615,-0.796208,5.13157,-0.532105,9.05965e-16,5.45268,-0.830096,-0.0726687,5.43525,-0.855582,-0.260682,5.42461,-0.897157,-0.606812,5.39572,-0.879982,0,5.01691,-0.354513,-0.0699445,4.99571,-0.351735,-0.143512,5.01101,-0.329955,-0.170606,4.93753,-0.315606,-0.310897,4.97461,-0.409768,-0.19909,5.02238,0.838455,-0.0878535,4.91708,0.415256,-0.12448,4.55149,0.0181447,-0.115702,4.62273,0.372547,-0.226214,4.73136,0.745392,-0.426023,4.51121,-0.432349,-0.275576,4.46358,-0.315785,-0.38757,4.87645,0.900632,-0.662752,5.08603,0.929042,-0.983684,5.4039,0.745963,-1.20041,5.52334,0.390292,-0.815288,4.81196,-0.465501,-1.11883,5.13812,-0.226201,-1.28055,5.35383,0.0454625,-0.630278,4.66024,-0.492527,-0.254271,3.83209,0.129459,-0.250389,3.82865,0.358449,-0.795948,3.85284,-0.335438,-0.628853,3.83925,-0.288805,-0.46377,3.83253,-0.241123,-0.342778,3.82889,-0.136905,-1.09728,3.91271,-0.215706,-1.2133,3.95082,0.0102213,-0.999159,3.97884,0.625147,-1.20407,3.98226,0.24126,-0.510677,3.87856,0.768608,-0.738215,3.93231,0.771509,-0.346094,3.85219,0.613938,-0.199479,4.14468,0.0883186,-0.193785,4.19581,0.358346,-0.810146,4.24782,-0.493108,-0.637454,4.18818,-0.436087,-0.453529,4.14645,-0.349782,-0.316204,4.1275,-0.216993,-1.27196,4.54605,-0.0488473,-1.11923,4.43283,-0.344665,-0.994705,4.61423,0.664226,-1.23858,4.66028,0.360957,-0.451476,4.34676,0.762432,-0.704863,4.46273,0.784615,-0.296074,4.26346,0.647497,-0.279469,3.56695,0.350919,-0.378077,3.57362,0.610081,-0.763179,3.61205,0.784711,-0.545154,3.58,0.778151,-1.18789,3.63743,0.225322,-1.01171,3.63763,0.649606,-1.18469,3.63596,0.0462727,-1.08639,3.63214,-0.164758,-0.36396,3.61962,-0.106701,-0.472547,3.61998,-0.200527,-0.622069,3.61981,-0.245861,-0.785805,3.62062,-0.287858,-0.280482,3.59457,0.136712,-0.310794,3.27408,0.108858,-0.315972,3.24404,0.332647,-0.79169,3.31854,-0.322428,-0.631584,3.32079,-0.284445,-0.499508,3.31581,-0.230491,-0.39861,3.30815,-0.13043,-1.07389,3.31289,-0.176051,-1.1448,3.30703,0.0271583,-1.04977,3.28812,0.564466,-1.15477,3.30832,0.188918,-0.631233,3.24059,0.727644,-0.796811,3.26964,0.722389,-0.410378,3.24519,0.57402,-0.431057,2.70669,-0.269775,-0.482634,1.96936,-0.280789,-0.370175,2.69611,-0.00644183,-0.435417,1.9614,-0.0356348,-0.394159,2.68494,0.253601,-0.456676,1.95738,0.217004,-0.454505,2.69049,0.473117,-0.54573,1.96253,0.383198,-0.679279,2.65864,0.62635,-0.716692,1.95707,0.537311,-0.865036,2.66224,0.621741,-0.852243,1.96137,0.530134,-1.10692,2.70714,0.441119,-1.08408,1.96329,0.368997,-1.22931,2.7028,0.084996,-1.19821,1.95717,0.0291508,-1.22047,2.71112,-0.107447,-1.18772,1.96511,-0.14552,-1.12006,2.71904,-0.3145,-1.09527,1.96898,-0.31548,-0.829777,2.72009,-0.456138,-0.841005,1.97159,-0.44557,-0.531299,2.71268,-0.369004,-0.573089,1.97167,-0.371144,-0.672642,2.71717,-0.418103,-0.702698,1.97078,-0.415205,-0.211812,4.88229,0.794346,-0.366024,4.76033,-0.433107,-0.0940014,4.7621,0.00924449,-0.595508,4.8517,-0.502284,-1.08069,5.33433,-0.269866,-1.21841,5.59105,-0.00684149,-1.18354,5.76689,0.354678,-0.973092,5.63022,0.71916,-0.648027,5.27274,0.957871,-0.804901,4.97857,-0.489809,-0.365631,5.01798,0.92737,-0.100592,4.77644,0.394224,-0.219783,4.71699,-0.335171,-1.01176,6.06811,0.499433,-1.03346,6.21848,0.47404,-1.0393,5.91432,0.508831,-1.14744,5.47181,0.570297,-1.12732,3.97978,0.434445,-1.14211,4.63931,0.521308,-1.10201,3.63979,0.43657,-1.10403,3.29961,0.354832,-1.19054,2.69697,0.252778,-1.16215,1.95254,0.187774,-1.08553,5.70212,0.539432,-0.524795,1.38504,-0.215873,-0.508905,1.3895,0.00448297,-0.604984,1.38355,0.361719,-0.751792,1.39469,0.468996,-0.864594,1.38785,0.464007,-1.05606,1.37976,0.351734,-1.16385,1.36978,0.0208227,-1.16201,1.38369,-0.152291,-1.08332,1.39486,-0.28458,-0.861087,1.39585,-0.385702,-0.61014,1.38849,-0.306111,-0.737518,1.39455,-0.357141,-0.509709,1.37048,0.202719,-1.12139,1.36702,0.187705,-8.89076e-16,5.80808,1.2854,-0.179747,5.80113,1.31062,-0.455499,5.81434,1.22207,4.88856e-15,6.38153,-0.76427,-0.159882,6.37777,-0.814831,-0.280389,6.38007,-0.836331,-0.665675,5.93489,0.981412,-0.931643,6.13581,0.650616,-1.09764,6.25382,0.308271,-1.09609,6.30008,-0.0304753,-0.939227,6.31168,-0.435489,-0.66373,6.36004,-0.730744,-1.01766,6.18784,0.48132,-0.353369,3.72426,-0.121803,-0.267377,3.71333,0.133085,-0.362085,3.7129,0.612009,-0.527915,3.72928,0.77338,-0.750697,3.77218,0.77811,-1.00544,3.80824,0.637377,-1.19598,3.80985,0.233291,-1.19899,3.79339,0.028247,-1.09183,3.77243,-0.190232,-0.790876,3.73673,-0.311648,-0.468159,3.72626,-0.220825,-0.625461,3.72953,-0.267333,-0.264929,3.6978,0.354684,-1.11467,3.80978,0.435507,-0.295638,3.43433,0.122785,-0.788747,3.46958,-0.305143,-0.626826,3.4703,-0.265153,-0.486028,3.46789,-0.215509,-0.381285,3.46388,-0.118565,-1.16474,3.4715,0.0367155,-1.08014,3.47251,-0.170404,-1.03074,3.46287,0.607036,-1.17133,3.47287,0.20712,-0.588193,3.41029,0.752897,-0.779995,3.44085,0.75355,-0.394227,3.4094,0.59205,-0.29772,3.40549,0.341783,-1.10302,3.4697,0.395701,-1.10793,0.294454,0.180335,-0.524089,0.297754,0.194666,-0.741532,0.320729,-0.339718,-0.61995,0.314945,-0.29101,-0.859478,0.321968,-0.366979,-1.0716,0.321021,-0.270458,-1.14671,0.310359,-0.144189,-1.14846,0.297085,0.0210469,-1.04558,0.306614,0.3369,-0.862826,0.314334,0.444064,-0.755156,0.32086,0.448826,-0.615029,0.310232,0.34643,-0.523322,0.315905,0.00545075,-0.538488,0.311654,-0.204878,-0.192241,10.3794,-0.743572,-0.0197206,10.3091,-0.766787,0.201106,9.79205,0.538102,-0.620924,10.3055,-0.144583,0.607833,10.1717,-0.104929,0.533473,10.2292,-0.411271,0.358467,10.2701,-0.689836,0.158504,10.2714,-0.758145,0.525118,10.1549,0.0445123,-0.395702,10.4227,-0.67413,-0.559998,10.37,-0.398389,-0.557157,10.2158,0.0762444,-0.522547,10.1434,0.28518,-0.368166,10.0216,0.394988,0.468227,10.1117,0.131367,0.332485,9.84833,0.43429,0.4276,10.0292,0.229741,-0.0424529,9.8035,0.5692,-0.29824,9.92511,0.465696,-0.185903,9.86678,0.515466,-0.543499,10.154,-0.138455,0.520575,10.0201,-0.147968,-0.0190935,10.0576,-0.738599,-0.380643,10.1461,-0.649498,0.344579,9.97681,-0.664602,-0.538634,10.1396,-0.384341,0.512868,9.93755,-0.396728,0.434113,10.0551,0.11098,-0.511419,10.1311,0.0552057,0.466966,10.0736,0.0104088,-0.184992,10.1045,-0.716275,0.152291,10.0006,-0.730289,0.181343,9.76696,0.480314,-0.0432173,9.77945,0.517603,-0.286314,9.89996,0.42006,-0.488971,10.0662,0.217173,0.309044,9.82852,0.378949,0.381365,10.0016,0.193109,-0.363157,9.99407,0.351247,-0.176063,9.84126,0.465752,-0.258325,9.76307,0.672439,-0.268667,9.76452,0.617345,-0.331039,9.68016,0.436026,-0.287666,9.82746,0.49627,-0.298112,9.81855,0.452347,-0.195744,9.8923,0.56518,-0.232779,9.82498,0.684348,-0.340318,9.70072,0.436046,-0.35139,9.52749,0.48094,-0.294157,9.8064,0.428414,-0.298364,9.82642,0.471419,-0.293029,9.82602,0.488563,-0.2964,9.81677,0.4302,-0.295964,9.77442,0.416508,-0.291307,9.81306,0.538657,-0.379929,9.59025,0.489731,-0.322943,9.72961,0.428446,-0.357578,9.63057,0.467797,-0.327499,9.74802,0.429718,-0.262457,9.76469,0.636347,-0.27988,9.82885,0.512443,-0.48762,9.80961,0.312314,-0.482854,9.9048,0.464051,-0.660099,9.62325,0.350099,-0.538058,9.77054,0.303843,-0.60721,9.66821,0.326059,-0.560239,9.78263,0.31914,-0.424937,9.88342,0.55409,-0.467596,9.90937,0.444241,-0.602741,9.82752,0.124501,-0.660318,9.85885,0.177725,-0.792466,9.61789,-0.0243661,-0.816871,9.73648,0.0295829,-0.634775,9.93625,0.315278,-0.373175,10.0491,0.438728,-0.701767,9.7468,0.0131154,-0.63052,9.94386,0.314136,-0.505399,10.0261,0.51595,-0.796093,9.716,0.0370114,-0.52442,10.027,0.457758,-0.607239,9.9831,0.354788,-0.913534,9.6918,0.05754,-0.677815,9.78142,0.0634265,-0.532187,10.026,0.444873,-0.758482,9.8044,0.10812,-0.506402,10.0511,0.543827,-0.647384,9.88329,0.23038,-0.609456,10.0032,0.363669,-0.646144,9.87572,0.192378,-0.640002,9.91478,0.299149,0.612371,9.772,-0.371671,0.593483,9.76332,-0.0614647,0.674537,9.62545,-0.133485,0.788426,9.65384,-0.113125,0.725368,9.69754,-0.11998,0.682017,9.68629,-0.415289,0.66275,9.683,-0.123176,0.572987,9.73047,-0.441778,0.545471,9.71926,-0.125758,0.665431,9.85454,-0.183909,0.623227,9.85051,0.0579934,0.658441,9.86838,0.0927399,0.661063,9.83787,0.0410357,0.739287,9.75804,-0.320577,0.716445,9.753,-0.0372122,0.577416,9.82976,-0.00512039,0.656151,9.9866,0.163366,0.747325,9.89092,-0.141548,0.728352,9.89066,0.120091,0.701168,9.93727,-0.0940868,0.686178,9.93706,0.149316,0.678376,9.94652,0.151284,0.627932,10.0024,-0.0439428,0.653378,10.0069,0.165356,0.625329,10.0789,0.0863175,0.590567,10.0434,0.240136,0.626209,10.0885,0.100655,0.591078,10.0724,0.261621,0.473835,10.0568,0.266374,0.619095,10.1594,0.1683,0.600279,10.1262,0.316575,0.568876,10.1247,0.33938,0.446485,9.75199,0.315358,0.53749,9.54851,0.377587,0.507838,9.60876,0.347823,0.476758,9.71717,0.306545,0.483528,9.63591,0.322048,0.451278,9.69487,0.29575,0.425526,9.83389,0.352051,0.427385,9.857,0.37301,0.424755,9.81493,0.339976,0.439136,9.77349,0.328576,0.434673,9.79756,0.331725,0.436351,9.92214,0.459388,0.461983,9.8819,0.415148,0.455456,9.89986,0.437735,0.446945,9.91136,0.450685,0.447105,9.92308,0.485832,0.491176,9.8955,0.492412,0.355927,9.86814,0.48963,0.427878,9.90428,0.576285,-0.696225,9.80713,-0.367239,-0.803908,9.61928,-0.386288,-0.959361,9.69365,-0.414351,-0.719748,9.76698,-0.409719,-0.827246,9.72887,-0.408421,-0.673449,9.91829,-0.217221,-0.639176,9.89809,-0.262859,-0.667133,9.8607,-0.328016,-0.77346,9.81256,-0.394308,-0.644496,9.9851,-0.0128183,-0.690045,9.92698,-0.194245,-0.65159,9.92768,-0.0839027,-0.677941,10.2002,0.339069,-0.641412,9.99157,0.0217382,-0.616479,10.1857,0.246132,-0.613733,10.1649,0.242645,-0.556124,10.2205,0.353187,-0.679228,10.227,0.410003,-0.55348,9.72268,0.293558,-0.482288,9.89991,0.421459,-0.417526,9.8839,0.603793,-0.43497,9.87999,0.546982,-0.601346,9.57268,0.298101,-0.588771,9.73729,0.301665,-0.499457,9.87569,0.36371,-0.496963,9.86765,0.342725,-0.496858,9.85443,0.334305,-0.498337,9.89203,0.396565,-0.490226,9.89667,0.415778,-0.310167,9.95026,0.511332,-0.383552,9.93287,0.635975,0.483407,9.90432,0.522957,0.45359,9.89826,0.540269,0.240678,9.70379,0.492114,-0.0416884,9.73283,0.550112,0.219953,9.70588,0.448748,-0.0416884,9.73308,0.513944,0.235436,9.66588,0.45631,-0.0416884,9.66964,0.52868,0.256079,9.50078,0.576614,-0.0416884,9.50553,0.627771,0.229565,9.6818,0.453221,-0.0416884,9.69154,0.519589,0.250381,9.64063,0.461776,-0.0416884,9.64311,0.539113,0.258381,9.58918,0.497106,-0.0416884,9.59043,0.575694,0.26337,9.55913,0.514623,-0.0416884,9.56561,0.592957,0.242806,9.62264,0.469237,-0.0416884,9.62199,0.548445,0.235307,9.70669,0.470643,-0.0416884,9.73223,0.538465,0.23103,9.70465,0.465169,-0.0416884,9.74044,0.507813,0.217536,9.69765,0.443949,-0.0416884,9.7155,0.505522,-0.0420899,9.71246,0.615796,0.230936,9.70849,0.545575,-0.0416884,9.7849,0.720469,-0.0416884,9.732,0.58387,0.228567,9.70319,0.521806,-0.0416884,9.73152,0.571002,0.231431,9.70141,0.5136,-0.0433006,9.71805,0.732557,-0.0416884,9.73117,0.56281,0.233583,9.70063,0.507318,0.230709,9.75618,0.662566,-0.0483091,9.70225,0.723667,0.233463,9.74546,0.653521,-0.0476851,9.69417,0.686055,0.235838,9.70884,0.611723,-0.0416884,9.82755,0.620796,0.220869,9.81713,0.595889,0.242416,9.79455,0.682266,-0.0249139,10.6685,-1.02245,0.598196,10.1839,0.222701,-0.855797,10.4714,-0.133852,-0.519882,10.8443,-0.887818,0.164718,10.5421,-0.786002,-0.19949,10.6543,-0.770869,0.583271,10.2362,0.0786157,-0.602894,10.3004,0.097283,0.50234,10.1683,0.151753,0.554079,10.5209,-0.425814,-0.581362,10.6005,-0.412437,0.372356,10.5633,-0.715071,-0.41076,10.6992,-0.698761,-0.0203478,10.5606,-0.794975,0.695091,10.3233,-0.0618889,-0.698349,10.4569,-0.15071,0.17381,10.3197,-0.999362,0.633326,10.0978,-0.0616496,-0.6666,10.1205,-0.0354692,-0.656479,10.2675,-0.342737,0.639416,10.2199,-0.638709,-0.569912,10.3662,-0.882442,0.767497,10.1422,-0.33165,-0.0353277,10.4344,-1.09467,-0.214703,10.5235,-1.33517,-0.390166,10.5185,-1.2094,0.398251,10.2871,-0.954468,0.179708,10.3391,-1.08094,0.632942,10.1101,-0.0476796,-0.663268,10.1394,-0.0161691,-0.649825,10.2714,-0.336666,0.643092,10.2515,-0.725472,-0.563592,10.37,-0.876061,0.768119,10.1524,-0.318485,-0.0329243,10.4502,-1.07316,-0.213639,10.5391,-1.34072,-0.38563,10.5313,-1.20007,0.403537,10.3088,-1.02366,0.737327,10.0784,-0.448235,-0.0598781,10.2728,-1.31429,-0.225577,10.3633,-1.27847,-0.436503,10.3875,-1.3058,0.344262,10.0653,-1.32837,-0.535634,10.3868,-0.846946,0.667437,10.5003,-0.693895,-0.620532,10.2887,-0.307596,0.635148,10.1897,0.023018,0.822558,10.2853,-0.182061,-0.212257,10.5723,-1.33338,-0.365562,10.555,-1.15847,0.447262,10.5486,-0.991641,0.191314,10.4762,-1.08667,0.141683,9.93648,-1.42751,-0.000190979,10.0576,-1.34754,-0.177683,10.0922,-1.31086,0.747842,9.92456,-0.243755,-0.684167,10.0151,-0.271306,-0.657919,9.92183,-0.0979201,0.707687,9.93682,-0.590067,-0.740857,10.0711,-0.547746,0.503926,9.86542,-1.04188,0.320817,9.89973,-1.31959,-0.38373,10.0241,-1.18439,-0.569291,10.1427,-0.882946,-0.651024,10.2274,0.0671914,-0.0258682,10.5054,-1.11521,0.135039,9.94872,-1.40749,-0.0302296,10.0449,-1.38024,-0.222688,10.0702,-1.37947,0.692718,9.94672,-0.0874986,0.740021,9.93341,-0.227898,-0.680032,10.0146,-0.256444,0.701863,9.95179,-0.552432,-0.745389,10.088,-0.513048,0.499479,9.86676,-1.01568,0.315023,9.90766,-1.29876,-0.43522,10.0046,-1.26088,-0.602186,10.1203,-0.94007,0.111574,10.1174,-1.39577,-0.0536488,10.2484,-1.41964,-0.204236,10.3517,-1.38805,0.646334,9.98488,-0.050721,0.741729,10.0176,-0.197392,-0.690427,10.0812,-0.186356,0.715095,10.0631,-0.467266,-0.709572,10.2113,-0.419907,0.500551,9.96927,-0.997358,0.312148,10.0257,-1.29336,-0.420833,10.3319,-1.26609,-0.606106,10.2946,-0.934136,0.873553,10.3672,-0.140417,0.472959,10.672,-0.908823,-0.736173,10.7191,-0.577402,0.70335,10.6182,-0.595762,-0.66017,10.3123,0.138235,0.690109,10.2363,0.0879279,-0.252032,10.7873,-0.990222,0.209714,10.6451,-1.00526,0.113565,10.1206,-1.28537,0.747346,10.0267,-0.186011,-0.701578,10.0788,-0.176381,0.530153,9.9979,-1.01428,-0.634467,10.3273,-0.94927,-0.724671,10.2275,-0.404712,-0.459751,9.66598,-1.03592,0.340411,9.73648,-1.07636,0.593542,9.83051,-0.265798,-0.555117,9.76219,-0.743168,0.537519,9.71721,-0.826327,-0.636999,9.81877,-0.489072,0.60768,9.79123,-0.513109,-0.0313179,9.65044,-1.30734,-0.27951,9.59555,-1.20135,0.184525,9.72007,-1.22938,-0.14418,9.62538,-1.27994,0.0698515,9.68019,-1.29099,-0.0163831,9.77928,-1.3649,-0.137204,9.74887,-1.33475,0.101484,9.78634,-1.34463,-0.657115,9.89571,-0.430914,0.655538,9.84164,-0.407443,-0.592833,9.85352,-0.697053,0.596661,9.79166,-0.764358,-0.295363,9.65189,-1.24153,0.228697,9.79587,-1.27481,-0.504645,9.74653,-1.03093,0.392029,9.79405,-1.08968,-0.00173437,9.76095,-1.41842,-0.142004,9.71917,-1.38465,0.130891,9.77446,-1.39394,0.69182,9.85561,-0.173129,-0.680041,9.90936,-0.417169,0.695882,9.82034,-0.39432,-0.628205,9.87967,-0.701242,0.642336,9.77554,-0.784873,-0.301992,9.6329,-1.28685,0.265446,9.78674,-1.31224,-0.542701,9.75255,-1.06893,0.437511,9.78613,-1.11368,-0.0140289,8.99192,-1.24624,-0.125271,9.02779,-1.22492,0.0928789,9.03023,-1.23042,-0.694023,9.59899,-0.680932,0.632437,9.60185,-0.735909,-0.582589,9.39442,-0.890996,0.519659,9.48926,-0.929486,-0.261573,9.10537,-1.1613,0.213119,9.13698,-1.17715,-0.426122,9.17758,-1.04045,0.346674,9.32487,-1.0645,-0.00894995,8.55837,-1.30413,-0.249749,8.51351,-1.2734,0.25134,8.605,-1.27203,0.816867,9.65301,-0.371601,-0.95262,9.47232,-0.796524,0.911374,9.5498,-0.725978,-0.873762,9.20785,-1.00201,0.86504,9.37662,-0.937361,-0.496526,8.52894,-1.17276,0.508358,8.73763,-1.17858,-0.716877,8.84222,-1.05872,0.713102,8.99926,-1.03391,-0.00711289,8.74462,-1.23275,-0.16713,8.78278,-1.20915,0.172865,8.78028,-1.21027,-0.811548,9.5318,-0.770524,0.756538,9.58542,-0.764939,-0.718454,9.29084,-0.957958,0.689869,9.4333,-0.94619,-0.343117,8.87836,-1.13077,0.352703,8.89042,-1.14098,-0.546884,9.01011,-1.03691,0.53344,9.13627,-1.02559,-0.0123506,8.84576,-1.37816,-0.174944,8.9033,-1.34565,0.164328,8.88346,-1.36554,-0.848548,9.74968,-0.426032,0.754624,9.71502,-0.427946,-0.856201,9.52718,-0.770012,0.8143,9.62215,-0.748507,-0.753848,9.30691,-0.984293,0.663675,9.50861,-0.973239,-0.348299,9.04174,-1.2567,0.31407,9.02861,-1.30205,-0.573278,9.08041,-1.1265,0.470137,9.31318,-1.15522,-0.635387,9.4435,-1.06352,0.536177,9.56072,-1.09435,-0.764123,9.57083,-0.86449,0.710015,9.63287,-0.929135,-0.795232,9.70753,-0.599381,0.784098,9.71599,-0.65947,-0.0194991,9.29034,-1.39314,-0.449183,9.33794,-1.24429,0.332813,9.49067,-1.27034,-0.219644,9.27925,-1.35629,0.150049,9.37282,-1.36865,-0.174565,8.65158,-1.07132,0.176058,8.71488,-1.07271,-0.783763,9.49074,-0.709644,0.730805,9.51369,-0.752101,0.676243,9.63359,-0.376644,-0.533001,8.9239,-0.928315,0.531938,9.04527,-0.912461,-0.356395,8.7114,-1.00306,0.367158,8.82447,-1.01255,-0.00635651,8.66683,-1.09171,-0.77773,9.1879,-0.864416,0.67086,9.33867,-0.858618,-0.627545,9.59959,-0.772288,0.573011,9.64773,-0.864843,-0.03157,9.35785,-1.24259,-0.344578,9.38058,-1.12738,0.233348,9.51363,-1.15791,-0.500991,9.4718,-0.972831,0.398608,9.58556,-1.02566,-0.682959,9.73757,-0.525867,0.645528,9.72512,-0.615347,-0.169056,9.3381,-1.21202,0.0903418,9.41872,-1.22396,-0.154779,9.59189,-1.37056,0.118548,9.65379,-1.38089,-0.706833,9.87106,-0.461265,0.709876,9.79288,-0.462235,-0.660297,9.88311,-0.29564,0.660852,9.82515,-0.197694,-0.536181,9.66162,-1.08207,0.433097,9.74197,-1.12149,-0.320723,9.55027,-1.27464,0.251472,9.71576,-1.30146,-0.00735954,9.6146,-1.40423,-0.624868,9.79976,-0.743375,0.643912,9.72709,-0.836435,-0.714904,9.97125,-0.712415,0.735316,9.85589,-0.77226,-0.00194463,9.84459,-1.56953,-0.369803,9.67669,-1.41213,0.350985,9.85691,-1.42949,-0.634666,9.84911,-1.14084,0.521799,9.8581,-1.18423,-0.706991,9.9755,-0.368519,0.791056,9.87972,-0.335052,-0.178,9.77838,-1.53085,0.177574,9.87033,-1.5356,5.64066,8.78992,-0.205702,7.67367,8.98887,-0.257284,7.67785,8.98177,-0.195032,7.66119,8.93969,-0.168375,7.64233,8.89347,-0.192492,7.63468,8.86767,-0.25454,7.62984,8.89469,-0.316354,7.64359,8.9414,-0.342848,7.66534,8.983,-0.31926,7.36813,8.99103,-0.153122,7.37048,8.95092,-0.122221,7.35905,8.90997,-0.152585,7.35028,8.87263,-0.226288,7.3459,8.91132,-0.300081,7.35183,8.95288,-0.331212,7.35643,8.98862,-0.2972,7.68212,8.93162,-0.258698,7.50006,9.0028,-0.309173,7.49028,8.93774,-0.337273,7.49004,8.86605,-0.310058,7.49957,8.82574,-0.241167,7.50402,8.86469,-0.171491,7.50982,8.93583,-0.143537,7.48931,9.02914,-0.237117,7.51388,9.00146,-0.171497,7.50828,8.9919,-0.303046,7.49858,9.01534,-0.238331,7.52074,8.99069,-0.179359,7.66615,8.97468,-0.200177,7.65489,8.97579,-0.312017,7.66549,8.98986,-0.256449,7.67931,8.98573,-0.201559,7.68684,9.00343,-0.258468,7.66808,8.98684,-0.313078,7.51031,9.00683,-0.303224,7.5228,9.00563,-0.179259,7.49764,9.0311,-0.237917,7.41098,9.02169,-0.302008,7.40034,8.94765,-0.331642,7.39581,8.87986,-0.302179,7.40377,8.84379,-0.231577,7.41008,8.87847,-0.160617,7.41957,8.94571,-0.131217,7.4183,9.04047,-0.231052,7.42471,9.0203,-0.160831,7.35981,8.90884,-0.299924,7.36493,8.87016,-0.226516,7.37328,8.90771,-0.15314,7.35761,8.87139,-0.2264,7.36572,8.90999,-0.160907,7.35314,8.9119,-0.290874,7.58355,8.98861,-0.319821,7.56884,8.93649,-0.340851,7.5611,8.88014,-0.313708,7.5682,8.85187,-0.247987,7.57442,8.87885,-0.181643,7.58745,8.93466,-0.155815,7.59712,8.98694,-0.178143,7.5951,8.97801,-0.18531,7.58293,8.9795,-0.31258,7.58586,8.99385,-0.313324,7.59812,8.99232,-0.184682,7.5938,9.01355,-0.248995,7.35581,9.01553,-0.293789,7.3707,9.01439,-0.16387,7.38961,9.02875,-0.277662,7.396,9.0539,-0.22882,7.39954,9.02785,-0.180452,7.36547,9.04415,-0.265814,7.3837,9.03736,-0.266001,7.37227,9.0321,-0.187161,7.39133,9.03664,-0.190574,7.38672,9.04192,-0.228059,7.37112,9.05764,-0.226512,7.22199,9.05703,-0.481868,7.2361,9.04345,-0.484244,7.24164,9.03862,-0.449619,7.22417,9.0342,-0.445616,7.23048,9.03968,-0.519118,7.21371,9.0455,-0.517628,7.2496,9.03079,-0.440498,7.24437,9.05479,-0.485362,7.23509,9.03215,-0.530447,7.22367,9.01834,-0.424075,7.20292,9.02012,-0.542822,7.42713,9.01878,-0.51498,7.43482,8.9984,-0.454332,7.41603,9.00055,-0.575662,7.41329,8.98704,-0.574873,7.43192,8.98493,-0.454839,7.43422,8.99319,-0.448104,7.42634,8.94419,-0.426681,7.41264,8.89244,-0.450764,7.40309,8.86803,-0.513487,7.39264,8.89438,-0.575284,7.39838,8.94693,-0.601148,7.41346,8.99552,-0.581726,7.20117,8.92805,-0.540859,7.21949,8.92543,-0.421197,7.20789,8.89674,-0.481568,7.22654,8.92458,-0.414196,7.21458,8.89629,-0.482093,7.20631,8.9266,-0.549742,7.27355,9.02413,-0.423046,7.26445,9.04292,-0.488691,7.26915,8.95598,-0.395074,7.26034,8.90111,-0.422494,7.25015,8.87466,-0.489152,7.24037,8.90309,-0.555085,7.2416,8.95886,-0.582484,7.25311,9.02619,-0.554814,7.33648,9.03499,-0.499217,7.36266,9.01079,-0.445092,7.34484,9.0126,-0.561798,7.4941,8.99395,-0.57974,7.5148,9.00905,-0.52901,7.51091,8.9923,-0.474891,7.49453,8.99636,-0.525996,7.48171,8.98368,-0.578128,7.49857,8.98203,-0.472899,7.36064,8.99677,-0.445139,7.33752,9.02026,-0.499767,7.34294,8.99858,-0.561602,7.35455,9.00668,-0.437318,7.32889,9.03298,-0.498068,7.35313,8.94542,-0.410942,7.34656,8.88388,-0.437412,7.33835,8.859,-0.503372,7.32665,8.88585,-0.56802,7.32511,8.94823,-0.593403,7.33482,9.00869,-0.566864,7.51001,8.94193,-0.529288,7.20387,8.99504,-0.546426,7.19573,8.96231,-0.577465,7.19326,8.92766,-0.548665,7.20123,8.89719,-0.481048,7.21348,8.92564,-0.41327,7.22424,8.95938,-0.385587,7.22232,8.99654,-0.414157,7.49116,8.99035,-0.585461,7.46928,8.95143,-0.606858,7.45778,8.90774,-0.581315,7.46585,8.88228,-0.52321,7.4765,8.90592,-0.464756,7.49563,8.94887,-0.44273,7.50989,8.98852,-0.468659,7.50216,8.99541,-0.527219,7.58741,8.93709,0.134064,7.58186,8.93051,0.196565,7.56181,8.88586,0.221065,7.54728,8.83614,0.194925,7.54908,8.80787,0.132604,7.55445,8.83544,0.0701572,7.57191,8.88488,0.045287,7.58908,8.92982,0.071403,7.29306,8.93653,0.189577,7.28796,8.8947,0.221162,7.28015,8.85436,0.189642,7.28162,8.81904,0.116503,7.28858,8.85353,0.0425592,7.2997,8.89355,0.0119873,7.30298,8.9317,0.0462981,7.59413,8.87617,0.134796,7.43542,8.94914,0.0556602,7.42946,8.87999,0.0271865,7.4242,8.8096,0.0551961,7.42196,8.78057,0.125455,7.41618,8.81038,0.194793,7.41824,8.88108,0.222372,7.41527,8.97763,0.125096,7.42746,8.94993,0.194379,7.44196,8.93751,0.063173,7.42369,8.9631,0.125522,7.43478,8.93822,0.18779,7.57174,8.92268,0.189761,7.57824,8.92206,0.0770924,7.57977,8.93804,0.133619,7.58425,8.93468,0.190256,7.60003,8.95288,0.134704,7.59073,8.93406,0.0778993,7.44407,8.95336,0.0630857,7.43688,8.95407,0.187982,7.4229,8.98001,0.125548,7.35346,8.9679,0.0486799,7.3462,8.89034,0.0185215,7.33678,8.82737,0.0481969,7.33208,8.79603,0.119909,7.32859,8.82818,0.190707,7.33469,8.89144,0.220683,7.35004,8.98857,0.120022,7.34547,8.96868,0.191059,7.30189,8.85296,0.0447409,7.29523,8.81884,0.118549,7.29342,8.8538,0.191496,7.28841,8.81894,0.117527,7.28793,8.85431,0.182598,7.295,8.85456,0.0527968,7.51382,8.93487,0.0581881,7.50255,8.87929,0.0358514,7.49032,8.82014,0.0624209,7.48645,8.79168,0.129102,7.48268,8.82088,0.19545,7.49179,8.88031,0.22223,7.50495,8.93538,0.200794,7.50405,8.92558,0.19351,7.51203,8.92513,0.0654096,7.51506,8.9404,0.0649085,7.50694,8.94083,0.194382,7.51296,8.96247,0.129625,7.30232,8.96043,0.0489974,7.29716,8.96133,0.179229,7.33085,8.97523,0.0697237,7.32991,9.00228,0.118601,7.32537,8.97584,0.167253,7.30789,8.99112,0.0777162,7.3242,8.98432,0.0803173,7.30212,8.97966,0.15621,7.31988,8.98477,0.15581,7.32162,8.98932,0.118131,7.30787,9.00557,0.117038,6.9185,9.00413,-0.725684,6.93103,8.99079,-0.728392,6.94033,8.98744,-0.698472,6.92554,8.98343,-0.692468,6.92423,8.98468,-0.758502,6.90937,8.9903,-0.755847,6.94896,8.97993,-0.691279,6.93851,9.00136,-0.731245,6.92827,8.97626,-0.768344,6.92787,8.96836,-0.672414,6.89849,8.96288,-0.774891,7.08432,8.96365,-0.770892,7.09622,8.9494,-0.72297,7.07009,8.94338,-0.8158,7.06826,8.93175,-0.814033,7.09414,8.93773,-0.7222,7.09645,8.94523,-0.717721,7.09326,8.90487,-0.697125,7.08122,8.8597,-0.711246,7.06805,8.83525,-0.757554,7.05389,8.85328,-0.80644,7.05501,8.89589,-0.830508,7.06763,8.93857,-0.819947,6.89805,8.87387,-0.765508,6.92681,8.87999,-0.662905,6.90984,8.84921,-0.712029,6.93443,8.87996,-0.658124,6.91599,8.84908,-0.713347,6.90224,8.87238,-0.773585,6.9727,8.97357,-0.679621,6.95652,8.98936,-0.735639,6.97496,8.91127,-0.651253,6.9649,8.86013,-0.669749,6.94867,8.83136,-0.722698,6.93345,8.85287,-0.779347,6.93151,8.90196,-0.807151,6.94313,8.96781,-0.790281,7.01724,8.97842,-0.751598,7.04381,8.95979,-0.709522,7.01826,8.9539,-0.800676,7.12792,8.94025,-0.826398,7.14903,8.95753,-0.789047,7.15146,8.94578,-0.744372,7.13499,8.94627,-0.784255,7.11865,8.93075,-0.823014,7.14215,8.93627,-0.741142,7.04248,8.94753,-0.708459,7.01757,8.96571,-0.750969,7.01699,8.94157,-0.799364,7.03844,8.95654,-0.702113,7.01031,8.97766,-0.749553,7.04108,8.90537,-0.677177,7.03397,8.85124,-0.69366,7.02052,8.82598,-0.743226,7.00485,8.84439,-0.795096,7.0003,8.89594,-0.819441,7.01002,8.95006,-0.803734,7.14789,8.89696,-0.784633,6.89881,8.93798,-0.776174,6.8895,8.90379,-0.799472,6.89027,8.87285,-0.771404,6.90375,8.84941,-0.710721,6.92252,8.88074,-0.655222,6.93485,8.91409,-0.634863,6.92751,8.94766,-0.661492,7.1251,8.9362,-0.830384,7.10668,8.90018,-0.842517,7.10105,8.86384,-0.818182,7.11326,8.84598,-0.771253,7.12705,8.86996,-0.727604,7.14339,8.90881,-0.714643,7.15132,8.94236,-0.739034,7.14101,8.94555,-0.785936,6.48998,8.7564,0.865961,6.46722,8.68488,0.852216,6.54609,8.80882,0.851895,6.55622,8.80221,0.840759,6.47558,8.68075,0.839265,6.46589,8.67697,0.847064,6.48167,8.63833,0.800025,6.53391,8.64287,0.755223,6.5992,8.6927,0.742157,6.62125,8.76636,0.759728,6.60448,8.81224,0.806317,6.55366,8.81314,0.847421,6.32748,8.74005,0.709919,6.35223,8.82097,0.721814,6.36035,8.68477,0.651814,6.41012,8.69564,0.602493,6.46305,8.75357,0.578757,6.48581,8.83036,0.599296,6.47095,8.88149,0.646876,6.40717,8.88474,0.70612,6.4109,8.79216,0.788117,6.4085,8.71301,0.791551,6.48538,8.83694,0.790339,6.59284,8.77462,0.91993,6.56108,8.72354,0.947204,6.53359,8.66719,0.924406,6.55398,8.72546,0.9165,6.59282,8.77418,0.90039,6.52987,8.66719,0.902945,6.41884,8.70731,0.779712,6.42432,8.78481,0.778594,6.49683,8.83005,0.779279,6.40111,8.70694,0.780282,6.40673,8.79388,0.778853,6.42628,8.65755,0.727389,6.48666,8.66028,0.680364,6.54453,8.71651,0.661859,6.56966,8.79193,0.680227,6.55189,8.84124,0.732692,6.48635,8.84522,0.778782,6.60418,8.69767,0.891154,6.59789,8.77969,0.915192,6.6333,8.79025,0.871189,6.64581,8.75014,0.828429,6.62506,8.68232,0.808568,6.56832,8.63516,0.825169,6.5307,8.62595,0.871525,6.53111,8.66018,0.91966,6.56074,8.72234,0.92385,1.21737,9.53133,-0.448082,1.40162,9.47178,0.262551,1.30654,9.63357,-0.206991,1.46176,9.13475,-0.650022,1.08078,9.33628,-0.602687,1.39849,9.63128,-0.00197868,1.62297,8.80308,0.0993095,1.42615,8.79005,0.356225,1.60033,8.58477,-0.287381,1.61991,8.63059,-0.0815446,1.50952,8.62187,-0.55945,1.74763,9.52214,-0.250404,1.56093,9.39883,-0.511213,1.76818,9.37851,0.292151,1.80179,9.51701,0.049988,1.48199,8.83394,-0.625891,1.5896,8.5393,-0.40615,1.69956,9.02634,0.285672,1.44712,9.01548,0.322602,3.09687,8.95932,0.14535,3.08718,8.70514,-0.368344,3.07203,8.94841,-0.668311,3.11801,9.32407,-0.0429022,3.11668,9.14076,0.0716837,3.07562,9.34108,-0.550414,3.10482,9.42212,-0.283003,3.08379,8.73221,-0.539643,3.09132,8.68293,-0.055541,3.09109,8.67669,-0.205581,3.09544,8.76411,0.0682914,3.07723,9.22892,-0.625634,3.36671,9.25246,-0.650018,3.37855,8.77694,-0.0104906,3.38181,8.69485,-0.223619,3.38079,8.69957,-0.0974994,3.37528,8.76717,-0.514176,3.37729,9.4551,-0.28725,3.36303,9.38132,-0.573674,3.41171,9.15168,-0.062825,3.39639,9.35403,-0.0867581,3.38207,8.98253,-0.729022,3.37941,8.72097,-0.378073,3.38992,8.95899,0.0306416,3.67677,8.92032,0.0464183,3.66354,8.73627,-0.395405,3.72276,9.01041,-0.663786,3.68358,9.37423,-0.0602922,3.70415,9.13216,-0.0408277,3.6502,9.44046,-0.507057,3.65983,9.49152,-0.236385,3.66036,8.79432,-0.519406,3.66423,8.68611,-0.10913,3.66553,8.69458,-0.240357,3.66213,8.74923,-0.000624639,3.65391,9.30373,-0.592611,2.12035,8.95443,0.312094,2.75305,8.94448,0.260216,2.16271,9.24464,0.287933,2.77786,9.16575,0.206228,2.07626,8.73634,0.17369,2.73451,8.72889,0.164155,1.96736,8.6939,-0.554391,2.68385,8.72217,-0.526497,1.99516,8.60825,-0.41789,2.69115,8.68961,-0.4107,2.01594,8.57385,-0.25797,2.70093,8.63924,-0.244334,1.95311,8.91474,-0.627429,2.66799,8.94808,-0.654772,1.93176,9.16286,-0.650022,2.66683,9.16658,-0.644515,2.17526,9.47259,0.0604886,2.78538,9.37328,0.0133864,2.11494,9.51083,-0.250259,2.76784,9.46297,-0.262635,1.99683,9.40619,-0.511213,2.69077,9.37026,-0.520064,2.02916,8.63061,-0.0048831,2.70828,8.64084,-0.00291803,4.52807,8.7375,-0.382488,5.09983,8.84914,-0.41521,4.52471,8.66704,-0.276249,5.10077,8.77179,-0.350961,4.52052,8.65553,-0.139298,5.09616,8.73323,-0.245183,4.5198,9.35512,-0.0195722,5.06645,9.20669,0.0332032,4.52124,9.40164,-0.250677,5.06891,9.29213,-0.137966,4.52469,9.33567,-0.368075,5.07334,9.28151,-0.244325,4.53143,9.19359,0.0886739,5.0736,9.05948,0.0881668,4.54947,8.93939,0.0451699,5.08254,8.89592,0.0238059,4.52699,9.13609,-0.548565,5.08579,9.1881,-0.435938,4.525,8.94031,-0.546353,5.09371,9.03931,-0.488755,4.52656,8.84329,-0.485265,5.0956,8.95223,-0.467176,4.53099,8.7583,-0.00825124,5.08897,8.78147,-0.0957502,1.8845,8.99403,0.280685,1.91614,9.29815,0.287264,1.85305,8.77042,0.0772314,1.68028,8.62722,-0.539282,1.72112,8.56653,-0.394336,1.82966,8.59072,-0.258301,1.67277,8.81657,-0.601814,1.67484,9.1225,-0.650022,1.92429,9.50662,0.0688235,1.91382,9.52706,-0.248198,1.82611,9.39765,-0.510453,1.81626,8.66679,-0.0637031,4.07704,8.71165,-0.306155,4.07424,8.67358,-0.185196,4.07252,8.70179,-0.0614413,4.06888,9.43301,-0.133696,4.06918,9.42688,-0.386892,4.07176,9.32186,-0.487957,4.08696,9.29436,0.0117633,4.10634,9.04203,0.00221113,4.07357,9.05848,-0.610871,4.07477,8.86157,-0.533149,4.07552,8.78435,-0.438063,4.08584,8.84215,0.0248275,3.08146,9.1045,-0.684916,3.38072,9.14539,-0.711113,3.07649,8.86627,-0.621626,3.37006,8.85808,-0.642737,3.19366,9.1712,-0.675955,3.39306,9.18687,-0.620804,3.71482,9.18257,-0.573226,4.52613,9.24514,-0.485524,5.08041,9.25126,-0.357614,4.07331,9.19131,-0.580949,3.17298,8.82723,-0.600068,3.36641,8.82177,-0.564851,3.67616,8.87822,-0.583936,4.52609,9.02983,-0.572456,5.09036,9.11299,-0.484586,4.07299,8.94309,-0.592349,3.61373,8.91056,-0.623096,3.64025,9.13445,-0.656145,3.66633,9.012,-0.660721,2.42859,8.95404,0.291979,2.45874,9.1947,0.252357,2.39964,8.73532,0.17919,2.30919,8.72175,-0.543404,2.32652,8.65817,-0.417001,2.34131,8.60763,-0.250857,2.29334,8.93877,-0.641359,2.28827,9.16701,-0.647533,2.4664,9.42954,0.0409799,2.45192,9.48577,-0.255204,2.33209,9.38896,-0.515213,2.35503,8.63533,0.00310197,5.57868,9.20879,-0.0817853,5.58386,8.98781,-0.489309,5.58018,8.77341,-0.336416,5.58052,8.82284,-0.424443,5.57914,8.7858,-0.184473,5.57835,8.85716,-0.0425029,5.57709,8.97779,0.0606541,5.57611,9.10623,0.0496596,5.57691,9.21536,-0.189068,5.57803,9.21069,-0.302691,5.5787,9.1733,-0.392374,5.57906,9.12122,-0.45773,5.57943,9.06255,-0.48134,5.58031,8.8963,-0.463737,1.27288,9.23853,-0.626354,1.50399,8.81033,0.228623,1.47326,9.58016,-0.236267,1.37966,9.46321,-0.480229,1.60657,9.56804,0.00531996,1.59537,9.4347,0.272245,1.56173,9.03012,0.304752,0.184512,10.9534,0.648641,0.0625059,11.0536,0.686716,0.130586,10.9714,0.653319,0.0877434,11.0066,0.666689,0.241311,10.9554,0.653367,0.292336,10.9771,0.666778,0.329818,11.0151,0.686832,0.0633538,11.0584,0.751761,0.0918354,11.034,0.794749,0.136845,11.014,0.823484,0.191529,11.0014,0.833591,0.247564,10.998,0.823532,0.296418,11.0045,0.794838,0.330654,11.0198,0.751877,0.0581236,11.1013,0.708867,0.347447,11.0596,0.708993,0.333042,11.0378,0.75968,0.298806,11.0225,0.80264,0.249952,11.016,0.831334,0.193917,11.0193,0.841393,0.139232,11.032,0.831286,0.094223,11.052,0.802551,0.0657414,11.0763,0.759564,0.0423543,11.0741,0.767425,0.0756519,11.0457,0.817681,0.128272,11.0223,0.851275,0.192203,11.0075,0.863091,0.257713,11.0036,0.851331,0.314828,11.0112,0.817785,0.354853,11.0291,0.76756,0.371694,11.0546,0.708303,0.0334484,11.1033,0.708156,0.0455516,11.0245,0.740042,0.073461,10.9752,0.70334,0.121232,10.9432,0.668057,0.181593,10.9332,0.639564,0.13413,10.9321,0.687524,0.0972931,10.9548,0.73931,0.0766898,10.9979,0.787039,0.125897,10.976,0.818454,0.134955,10.9381,0.763354,0.154512,10.9231,0.700536,0.179276,10.9173,0.705113,0.180712,10.9275,0.771812,0.185682,10.9622,0.829504,0.246944,10.9585,0.818507,0.2276,10.9247,0.763394,0.204652,10.9158,0.700558,0.226775,10.9188,0.687564,0.268479,10.9302,0.739384,0.300355,10.9656,0.787136,0.337784,10.9824,0.740169,0.297126,10.943,0.703437,0.242279,10.9257,0.668109,0.248802,10.9356,0.645156,0.30918,10.9612,0.661025,0.353533,11.0062,0.684754,0.117782,10.9545,0.645099,0.0670867,10.9961,0.66092,0.0372232,11.0518,0.684617,0.349584,11.0768,0.707206,0.111559,11.1965,0.658165,0.073027,11.1591,0.682735,0.222962,11.2192,0.635944,0.278873,11.2011,0.641675,0.32343,11.166,0.658056,0.349849,11.1192,0.682592,0.164209,11.2176,0.641734,0.344487,11.1211,0.746112,0.316597,11.1491,0.787098,0.272042,11.1715,0.814497,0.217607,11.1849,0.824138,0.161578,11.1874,0.814554,0.112485,11.1785,0.787203,0.0778026,11.1596,0.746249,0.0759193,11.1445,0.755676,0.110602,11.1634,0.79663,0.314713,11.1339,0.796525,0.342604,11.106,0.755539,0.0609269,11.1184,0.707355,0.270159,11.1563,0.823924,0.215724,11.1698,0.833565,0.159695,11.1722,0.823981,0.054254,11.1538,0.76303,0.0948013,11.1759,0.810909,0.152195,11.1863,0.842885,0.217698,11.1834,0.85409,0.281338,11.1677,0.842818,0.333427,11.1415,0.810786,0.366033,11.1088,0.76287,0.374193,11.0747,0.706365,0.0367266,11.1234,0.706538,0.158122,11.2348,0.632816,0.164927,11.2466,0.654748,0.110536,11.2325,0.692117,0.070362,11.1964,0.732615,0.108367,11.2171,0.777492,0.139624,11.2483,0.726464,0.18067,11.2552,0.673337,0.202952,11.2592,0.685751,0.180797,11.2558,0.749403,0.162163,11.2269,0.807463,0.223559,11.2242,0.817965,0.227788,11.2537,0.757441,0.228384,11.2581,0.690102,0.253091,11.252,0.685726,0.273442,11.2424,0.749355,0.283208,11.2094,0.8074,0.332031,11.1849,0.777377,0.310808,11.2237,0.726376,0.273314,11.2418,0.673289,0.285973,11.2291,0.654686,0.3342,11.2002,0.692002,0.362593,11.1543,0.732465,0.370242,11.1223,0.679502,0.340054,11.1758,0.651466,0.289142,11.2159,0.632748,0.225256,11.2366,0.626199,0.0539335,11.1679,0.679665,0.097962,11.2107,0.65159,0.136852,11.0884,0.849572,0.156724,11.1112,0.566051,0.1083,11.1305,0.597234,0.0744349,11.1434,0.645992,0.0602837,11.148,0.704899,0.0680009,11.1434,0.76499,0.0964115,11.1305,0.817114,0.141381,11.1112,0.849817,0.154279,11.1305,0.850515,0.120243,11.1662,0.818403,0.0991388,11.1901,0.766673,0.0939872,11.1985,0.706722,0.105573,11.1901,0.647675,0.132132,11.1662,0.598523,0.169621,11.1305,0.566748,0.188924,11.1434,0.567792,0.167799,11.1901,0.600452,0.152174,11.2213,0.650195,0.144428,11.2322,0.709449,0.14574,11.2213,0.769193,0.155911,11.1901,0.820331,0.173581,11.1434,0.851558,0.196351,11.148,0.852789,0.197983,11.1985,0.822606,0.20071,11.2322,0.772165,0.203927,11.2441,0.712666,0.207144,11.2322,0.653167,0.209871,11.1985,0.602726,0.211694,11.148,0.569023,0.234463,11.1434,0.570254,0.251943,11.1901,0.605001,0.262114,11.2213,0.656139,0.263426,11.2322,0.715883,0.25568,11.2213,0.775137,0.240055,11.1901,0.824881,0.21912,11.1434,0.854021,0.238423,11.1305,0.855064,0.275722,11.1662,0.826809,0.302281,11.1901,0.777657,0.313867,11.1985,0.71861,0.308715,11.1901,0.658659,0.28761,11.1662,0.606929,0.253766,11.1305,0.571298,0.266663,11.1112,0.571995,0.311442,11.1305,0.608218,0.339853,11.1434,0.660342,0.34757,11.148,0.720433,0.333419,11.1434,0.77934,0.299554,11.1305,0.828098,0.251321,11.1112,0.855761,0.25585,11.0884,0.856006,0.307922,11.0884,0.82855,0.344353,11.0884,0.779932,0.359405,11.0884,0.721073,0.350787,11.0884,0.660934,0.319811,11.0884,0.608671,0.271193,11.0884,0.57224,0.212334,11.0884,0.557188,0.266663,11.0656,0.571995,0.311442,11.0463,0.608218,0.339853,11.0333,0.660342,0.34757,11.0288,0.720433,0.333419,11.0333,0.77934,0.299554,11.0463,0.828098,0.251321,11.0656,0.855761,0.238423,11.0463,0.855064,0.275722,11.0105,0.826809,0.302281,10.9867,0.777657,0.313867,10.9783,0.71861,0.308715,10.9867,0.658659,0.28761,11.0105,0.606929,0.253766,11.0463,0.571298,0.234463,11.0333,0.570254,0.251943,10.9867,0.605001,0.262114,10.9555,0.656139,0.263426,10.9445,0.715883,0.25568,10.9555,0.775137,0.240055,10.9867,0.824881,0.21912,11.0333,0.854021,0.196351,11.0288,0.852789,0.197983,10.9783,0.822606,0.20071,10.9445,0.772165,0.203927,10.9327,0.712666,0.207144,10.9445,0.653167,0.209871,10.9783,0.602726,0.211694,11.0288,0.569023,0.188924,11.0333,0.567792,0.167799,10.9867,0.600452,0.152174,10.9555,0.650195,0.144428,10.9445,0.709449,0.14574,10.9555,0.769193,0.155911,10.9867,0.820331,0.173581,11.0333,0.851558,0.154279,11.0463,0.850515,0.120244,11.0105,0.818403,0.0991388,10.9867,0.766673,0.0939872,10.9783,0.706722,0.105573,10.9867,0.647675,0.132132,11.0105,0.598523,0.169621,11.0463,0.566748,0.156724,11.0656,0.566051,0.1083,11.0463,0.597234,0.074435,11.0333,0.645992,0.0602838,11.0288,0.7049,0.0680009,11.0333,0.76499,0.0964116,11.0463,0.817114,0.141381,11.0656,0.849817,0.0880429,11.0884,0.816662,0.0570667,11.0884,0.764398,0.0484487,11.0884,0.70426,0.0635008,11.0884,0.6454,0.0999315,11.0884,0.596782,0.152195,11.0884,0.565806,0.177035,11.0803,0.847026,0.181627,11.0734,0.847275,0.188499,11.0688,0.847646,0.196605,11.0672,0.848084,0.204711,11.0688,0.848523,0.211583,11.0734,0.848894,0.216175,11.0803,0.849142,0.217787,11.0884,0.84923,0.216175,11.0965,0.849142,0.211583,11.1034,0.848894,0.204711,11.108,0.848523,0.196605,11.1096,0.848084,0.188499,11.108,0.847646,0.181627,11.1034,0.847275,0.177035,11.0965,0.847026,0.175423,11.0884,0.846939,0.165666,11.0884,0.845582,0.168025,11.1003,0.845709,0.174741,11.1103,0.846073,0.184793,11.1171,0.846616,0.19665,11.1194,0.847257,0.208507,11.1171,0.847898,0.218558,11.1103,0.848442,0.225275,11.1003,0.848805,0.227633,11.0884,0.848933,0.225275,11.0765,0.848805,0.218558,11.0664,0.848442,0.208507,11.0597,0.847898,0.19665,11.0574,0.847257,0.184793,11.0597,0.846616,0.174741,11.0664,0.846073,0.168025,11.0765,0.845709,0.19665,11.0884,0.847257,0.138652,11.1123,0.851284,0.152169,11.1325,0.852014,0.1724,11.1461,0.853108,0.196264,11.1508,0.854399,0.220127,11.1461,0.855689,0.240358,11.1325,0.856783,0.253875,11.1123,0.857513,0.258622,11.0884,0.85777,0.253875,11.0645,0.857513,0.240358,11.0442,0.856783,0.220127,11.0307,0.855689,0.196264,11.0259,0.854399,0.1724,11.0307,0.853108,0.15217,11.0442,0.852014,0.138652,11.0645,0.851284,0.133905,11.0884,0.851027,0.0619781,10.2846,0.956831,0.117528,10.2898,0.931531,0.151428,10.289,0.885222,0.169091,10.2823,0.825039,0.173168,10.2846,0.75253,0.170341,10.2841,0.692479,0.167581,10.2833,0.625752,0.169464,10.2846,0.558823,0.0691909,10.2846,0.98079,0.133247,10.2894,0.950998,0.17582,10.2889,0.896847,0.200442,10.2824,0.830861,0.210127,10.2846,0.753815,0.21365,10.284,0.691972,0.211296,10.2833,0.625179,0.207948,10.2846,0.558547,0.0619781,10.2208,0.956831,0.117528,10.2208,0.931531,0.153709,10.2208,0.883235,0.171067,10.2208,0.825951,0.172664,10.2208,0.755081,0.17024,10.2208,0.692479,0.166777,10.2208,0.625752,0.169464,10.2208,0.558823,0.0680708,10.2208,0.976534,0.130261,10.2208,0.949878,0.172491,10.2208,0.896208,0.205483,10.2208,0.691972,0.201333,10.2208,0.558547,0.196275,10.2208,0.82703,0.202888,10.2208,0.756357,0.204317,10.2208,0.625179,0.0566604,10.2936,0.988537,0.123231,10.2936,0.961794,0.16225,10.3029,0.912605,0.20185,10.2909,0.84315,0.21338,10.2917,0.769939,0.218354,10.295,0.705403,0.217689,10.2907,0.63834,0.214369,10.2936,0.571856,0.0164408,10.2936,0.993532,-0.0164408,10.2936,0.993532,0.0841565,10.2936,0.981131,0.146449,10.3031,0.93212,0.186856,10.2918,0.886873,0.206023,10.2913,0.817819,0.216377,10.295,0.743097,0.219977,10.2909,0.67846,0.218361,10.2933,0.611824,0.0488204,10.2936,0.955946,0.10456,10.2946,0.933954,0.145216,10.3028,0.903216,0.160889,10.2908,0.834098,0.16846,10.2917,0.76751,0.165553,10.2949,0.705762,0.162125,10.2907,0.639298,0.162811,10.2936,0.57223,-0.00811154,10.2936,0.960681,0.00811154,10.2936,0.960681,0.00977064,10.2936,0.960681,-0.00977064,10.2936,0.960681,0.0727008,10.2936,0.949628,0.133068,10.3031,0.918368,0.150671,10.2928,0.872028,0.166911,10.2911,0.811521,0.167319,10.2949,0.741888,0.162937,10.2909,0.679285,0.159614,10.2934,0.612401,0.0553502,10.2208,0.986848,0.121734,10.2208,0.959217,0.172513,10.2208,0.909532,0.199633,10.2208,0.839568,0.21022,10.2208,0.77008,0.214646,10.2208,0.705382,0.213782,10.2208,0.638284,0.210748,10.2208,0.571834,0.0150628,10.2208,0.991858,-0.0150628,10.2208,0.991858,0.0822409,10.2208,0.978766,0.144598,10.2208,0.944006,0.185327,10.2208,0.886978,0.203584,10.2208,0.817506,0.211645,10.2208,0.745655,0.213892,10.2208,0.678412,0.214303,10.2208,0.611791,0.0483653,10.2208,0.954054,0.103475,10.2208,0.932338,0.143299,10.2208,0.891421,0.162988,10.2208,0.835006,0.163228,10.2208,0.767369,0.159764,10.2208,0.705783,0.158917,10.2208,0.639354,0.159817,10.2208,0.572252,-0.00772425,10.2208,0.958773,0.00772425,10.2208,0.958773,0.00938335,10.2208,0.958773,-0.00938335,10.2208,0.958773,0.0720357,10.2208,0.947799,0.121494,10.2208,0.91831,0.153146,10.2208,0.869546,0.164905,10.2208,0.812041,0.165546,10.2208,0.74438,0.161999,10.2208,0.679333,0.156271,10.2208,0.612434,0.00180238,10.2846,0.965329,-0.00180238,10.2846,0.965329,0.0627708,10.2846,0.956302,0.118104,10.29,0.930863,0.151369,10.2889,0.884318,0.16903,10.2823,0.824015,0.172645,10.2847,0.751456,0.169675,10.2839,0.691525,0.166932,10.2834,0.624785,0.00180238,10.2208,0.965329,-0.00180238,10.2208,0.965329,0.0627708,10.2208,0.956302,0.118104,10.2208,0.930863,0.153801,10.2208,0.882279,0.170875,10.2208,0.825131,0.172301,10.2208,0.754213,0.169779,10.2208,0.691525,0.166076,10.2208,0.624785,0.00179212,10.2208,0.990967,-0.00179212,10.2208,0.990967,0.0691415,10.2208,0.976565,0.131352,10.2208,0.949586,0.173205,10.2208,0.8956,0.196927,10.2208,0.826328,0.203377,10.2208,0.7555,0.20601,10.2208,0.690988,0.204916,10.2208,0.624209,0.00179213,10.2846,0.990967,-0.00179213,10.2846,0.990967,0.0702616,10.2846,0.980821,0.134338,10.2897,0.950706,0.17655,10.2886,0.896223,0.200998,10.2824,0.829887,0.210739,10.2848,0.752737,0.214311,10.2839,0.690988,0.21188,10.2834,0.624209,0.0680248,10.2846,0.98152,0.132327,10.2891,0.952004,0.175642,10.2892,0.898067,0.200708,10.2823,0.832283,0.21051,10.2844,0.755307,0.214184,10.2842,0.69324,0.212003,10.2831,0.626427,0.208556,10.2846,0.559807,0.060712,10.2846,0.956751,0.116272,10.2897,0.931776,0.150689,10.2892,0.886035,0.168159,10.2823,0.826127,0.172651,10.2844,0.75393,0.169811,10.2842,0.69374,0.166971,10.2831,0.627032,0.168834,10.2846,0.560093,0.0669047,10.2208,0.977264,0.129341,10.2208,0.950884,0.172338,10.2208,0.897441,0.196438,10.2208,0.828114,0.203445,10.2208,0.757438,0.206197,10.2208,0.69324,0.205086,10.2208,0.626427,0.201941,10.2208,0.559807,0.0607121,10.2208,0.956751,0.116272,10.2208,0.931776,0.152884,10.2208,0.884111,0.170425,10.2208,0.826957,0.171897,10.2208,0.756067,0.16938,10.2208,0.69374,0.166122,10.2208,0.627032,0.168834,10.2208,0.560093,0.0603696,10.1093,0.934996,0.0652662,10.1093,0.933409,0.113624,10.1093,0.910282,0.118359,10.1093,0.907353,0.1435,10.1093,0.865146,0.145787,10.1093,0.859342,0.16148,10.1093,0.802526,0.163702,10.1093,0.798261,0.163021,10.1093,0.736203,0.163782,10.1093,0.732521,0.159798,10.1093,0.676213,0.160364,10.1093,0.671421,0.161005,10.1093,0.609506,0.160335,10.1093,0.603496,0.0708864,10.1093,0.96993,0.0786179,10.1093,0.968047,0.137237,10.1093,0.939525,0.144583,10.1093,0.935402,0.181195,10.1093,0.883854,0.185541,10.1093,0.874809,0.224421,10.1093,0.675475,0.223422,10.1093,0.670468,0.207766,10.1093,0.811774,0.207934,10.1093,0.820616,0.21976,10.1093,0.7383,0.22195,10.1093,0.74353,0.218139,10.1093,0.608657,0.219818,10.1093,0.61672,0.159817,10.1093,0.555916,0.170188,10.1093,0.543756,0.162785,10.1093,0.623017,0.160586,10.1093,0.615982,0.158134,10.1093,0.689447,0.15757,10.1093,0.681452,0.161581,10.1093,0.748302,0.160664,10.1093,0.740997,0.156534,10.1093,0.815024,0.157666,10.1093,0.807887,0.139036,10.1093,0.87683,0.140443,10.1093,0.870708,0.103475,10.1093,0.916002,0.107867,10.1093,0.912577,0.0483653,10.1093,0.937717,0.0547826,10.1093,0.935694,0.171007,10.1093,0.542487,0.217489,10.1093,0.566984,0.204863,10.1093,0.543471,0.219498,10.1093,0.628694,0.226845,10.1093,0.689046,0.227086,10.1093,0.680896,0.220477,10.1093,0.751013,0.205526,10.1093,0.826506,0.175067,10.1093,0.897282,0.177778,10.1093,0.892961,0.124315,10.1093,0.947074,0.130147,10.1093,0.944721,0.0571156,10.1093,0.974093,0.0630157,10.1093,0.972922,0.204078,10.1093,0.54221,0.217848,10.1093,0.590233,0.218077,10.1093,0.597439,0.21784,10.1093,0.652631,0.217618,10.1093,0.729157,0.219057,10.1093,0.734341,0.208102,10.1093,0.799362,0.208586,10.1093,0.804968,0.188957,10.1093,0.868674,0.147584,10.1093,0.928789,0.0848217,10.1093,0.966624,0.0168281,10.1093,0.979102,-0.0168281,10.1093,0.979102,-0.00582987,10.1093,0.980618,0.00582987,10.1093,0.980618,0.00748897,10.1093,0.980618,-0.00748897,10.1093,0.980618,0.160185,10.1093,0.596098,0.161976,10.1093,0.662997,0.165546,10.1093,0.727781,0.164792,10.1093,0.792642,0.14857,10.1093,0.852106,0.121494,10.1093,0.901974,0.0720357,10.1093,0.931462,-0.0077243,10.1093,0.942437,0.0077243,10.1093,0.942437,0.0093834,10.1093,0.942437,-0.0093834,10.1093,0.942437,-0.00428974,10.1093,0.942442,0.00428974,10.1093,0.942442,0.00594884,10.1093,0.942442,-0.00594884,10.1093,0.942442,0.0616581,10.165,0.947879,0.0659687,10.165,0.945681,0.11682,10.165,0.922562,0.119623,10.165,0.91886,0.152678,10.165,0.874832,0.153873,10.165,0.870037,0.169089,10.165,0.818348,0.169074,10.165,0.812431,0.171977,10.165,0.747727,0.171532,10.165,0.743878,0.169791,10.165,0.684361,0.169349,10.165,0.679163,0.164965,10.165,0.617645,0.16432,10.165,0.61239,0.0748679,10.165,0.972133,0.0693325,10.165,0.973153,0.138057,10.165,0.939759,0.1334,10.165,0.943083,0.179292,10.165,0.885226,0.175967,10.165,0.890538,0.214051,10.165,0.678554,0.213972,10.165,0.683849,0.200581,10.165,0.821081,0.200366,10.165,0.825632,0.210249,10.165,0.749294,0.21179,10.165,0.75352,0.214218,10.165,0.617043,0.216301,10.165,0.622342,0.162675,10.165,0.57047,0.169149,10.165,0.556344,0.161119,10.165,0.637442,0.16335,10.165,0.623026,0.163138,10.165,0.703813,0.167655,10.165,0.689654,0.165174,10.165,0.764956,0.169961,10.165,0.751597,0.161659,10.165,0.834162,0.166988,10.165,0.823561,0.140627,10.165,0.887863,0.149878,10.165,0.878554,0.0992112,10.165,0.927642,0.112318,10.165,0.924321,0.0425417,10.165,0.947732,0.056584,10.165,0.948202,0.17722,10.165,0.55216,0.208249,10.165,0.55605,0.214757,10.165,0.570042,0.219434,10.165,0.636521,0.215947,10.165,0.689237,0.219424,10.165,0.703681,0.214376,10.165,0.768093,0.199069,10.165,0.838135,0.173819,10.165,0.895705,0.169055,10.165,0.907118,0.128976,10.165,0.94681,0.117128,10.165,0.956757,0.0641137,10.165,0.975239,0.0503588,10.165,0.981188,0.200175,10.165,0.55199,0.216064,10.165,0.597389,0.214515,10.165,0.611807,0.21501,10.165,0.664011,0.215112,10.165,0.73156,0.21079,10.165,0.745285,0.206947,10.165,0.80107,0.201845,10.165,0.816646,0.189048,10.165,0.869907,0.150575,10.165,0.930211,0.0903151,10.165,0.969733,0.0225354,10.165,0.984835,-0.0225354,10.165,0.984835,-0.0048991,10.165,0.983314,0.0048991,10.165,0.983314,0.0065582,10.165,0.983314,-0.0065582,10.165,0.983314,0.162015,10.165,0.597965,0.166863,10.165,0.664858,0.167839,10.165,0.730852,0.167182,10.165,0.795737,0.155813,10.165,0.856243,0.12573,10.165,0.906829,0.077206,10.165,0.938174,-0.00338802,10.165,0.955607,0.00338802,10.165,0.955607,0.00504712,10.165,0.955607,-0.00504712,10.165,0.955607,0.01645,10.165,0.951123,-0.01645,10.165,0.951123,0.061963,10.2181,0.956408,0.0629219,10.2181,0.9558,0.117495,10.2181,0.931107,0.118176,10.2181,0.930296,0.153677,10.2181,0.882827,0.153818,10.2181,0.881694,0.171012,10.2181,0.825568,0.170805,10.2181,0.824556,0.17258,10.2181,0.754718,0.172215,10.2181,0.75369,0.170162,10.2181,0.692095,0.16969,10.2181,0.690941,0.16673,10.2181,0.625369,0.165984,10.2181,0.624199,0.0704793,10.2181,0.980411,0.0691976,10.2181,0.980429,0.134514,10.2181,0.950189,0.133255,10.2181,0.950624,0.176579,10.2181,0.896579,0.175724,10.2181,0.897358,0.213471,10.2181,0.6904,0.212957,10.2181,0.691588,0.200218,10.2181,0.827494,0.200332,10.2181,0.828731,0.209238,10.2181,0.755844,0.209792,10.2181,0.757118,0.21262,10.2181,0.624795,0.213366,10.2181,0.626234,0.159952,10.2181,0.572168,0.168849,10.2181,0.559915,0.159068,10.2181,0.639263,0.166049,10.2181,0.626843,0.159805,10.2181,0.70569,0.169237,10.2181,0.693547,0.163204,10.2181,0.767255,0.171747,10.2181,0.755853,0.162975,10.2181,0.834886,0.170318,10.2181,0.826731,0.143172,10.2181,0.891253,0.152748,10.2181,0.883844,0.103274,10.2181,0.932116,0.116085,10.2181,0.931424,0.04809,10.2181,0.953755,0.0605169,10.2181,0.956347,0.169821,10.2181,0.558508,0.208542,10.2181,0.559629,0.21724,10.2181,0.57175,0.220604,10.2181,0.638201,0.213683,10.2181,0.693051,0.221142,10.2181,0.705302,0.215748,10.2181,0.769986,0.203074,10.2181,0.840127,0.175459,10.2181,0.898719,0.175213,10.2181,0.910478,0.132169,10.2181,0.951759,0.123975,10.2181,0.963096,0.0678399,10.2181,0.981223,0.0567961,10.2181,0.989993,0.207591,10.2181,0.558237,0.221434,10.2181,0.61111,0.213237,10.2181,0.623623,0.220256,10.2181,0.677731,0.217392,10.2181,0.745152,0.20973,10.2181,0.754886,0.208412,10.2181,0.817048,0.200909,10.2181,0.826647,0.188961,10.2181,0.886892,0.147726,10.2181,0.944421,0.0850813,10.2181,0.982335,0.0170979,10.2181,0.994938,-0.0170979,10.2181,0.994938,0.00201743,10.2181,0.990605,-0.00201743,10.2181,0.990605,0.156589,10.2181,0.61175,0.162264,10.2181,0.678649,0.165696,10.2181,0.743825,0.165014,10.2181,0.811271,0.153272,10.2181,0.868917,0.121694,10.2181,0.917768,0.0722801,10.2181,0.947344,0.00195577,10.2181,0.96487,-0.00195577,10.2181,0.96487,-0.00805831,10.2181,0.958412,0.00805831,10.2181,0.958412,0.00971741,10.2181,0.958412,-0.00971741,10.2181,0.958412,0.0691909,10.2238,0.98079,0.133247,10.2238,0.950998,0.175714,10.2238,0.897666,0.212872,10.2238,0.691972,0.207948,10.2238,0.558547,0.0619781,10.2238,0.956831,0.117528,10.2238,0.931531,0.153714,10.2238,0.883231,0.171065,10.2238,0.825966,0.17281,10.2238,0.755063,0.170386,10.2238,0.692479,0.166764,10.2238,0.625752,0.169464,10.2238,0.558823,0.0570939,10.2242,0.99034,0.124263,10.2242,0.963334,0.175436,10.2242,0.910592,0.203161,10.2242,0.840183,0.215831,10.2242,0.770073,0.22126,10.2242,0.705383,0.220779,10.2242,0.638287,0.21722,10.2242,0.571836,0.0168096,10.2242,0.995348,-0.0168096,10.2242,0.995348,0.08479,10.2242,0.982873,0.14752,10.2242,0.945059,0.188856,10.2242,0.887694,0.208456,10.2242,0.817717,0.217432,10.2242,0.745743,0.220423,10.2242,0.678414,0.221594,10.2242,0.611792,0.0483869,10.2242,0.954144,0.103527,10.2242,0.932415,0.143379,10.2242,0.891468,0.163082,10.2242,0.835026,0.163577,10.2242,0.767376,0.160141,10.2242,0.705782,0.15907,10.2242,0.639351,0.15996,10.2242,0.572251,-0.0077427,10.2242,0.958864,0.0077427,10.2242,0.958864,0.0094018,10.2242,0.958864,-0.0094018,10.2242,0.958864,0.0720674,10.2242,0.947886,0.121558,10.2242,0.918377,0.153232,10.2242,0.869581,0.165012,10.2242,0.812057,0.165677,10.2242,0.744384,0.162149,10.2242,0.679331,0.15643,10.2242,0.612433,0.00179212,10.2238,0.990967,-0.00179212,10.2238,0.990967,0.0702616,10.2238,0.980821,0.134338,10.2238,0.950706,0.176458,10.2238,0.897054,0.200812,10.2238,0.827102,0.209641,10.2238,0.755383,0.213369,10.2238,0.690988,0.213079,10.2238,0.624209,0.00180238,10.2238,0.965329,-0.00180238,10.2238,0.965329,0.0627708,10.2238,0.956302,0.118104,10.2238,0.930863,0.153806,10.2238,0.882275,0.170872,10.2238,0.825142,0.172452,10.2238,0.754196,0.16993,10.2238,0.691525,0.166063,10.2238,0.624785,0.0680248,10.2238,0.98152,0.132327,10.2238,0.952005,0.175538,10.2238,0.898866,0.200316,10.2238,0.82887,0.20971,10.2238,0.757297,0.213557,10.2238,0.69324,0.213201,10.2238,0.626427,0.208556,10.2238,0.559807,0.0607121,10.2238,0.956751,0.116272,10.2238,0.931776,0.152885,10.2238,0.88411,0.170424,10.2238,0.82697,0.172048,10.2238,0.75605,0.169531,10.2238,0.69374,0.16611,10.2238,0.627032,0.168834,10.2238,0.560093,0.212495,10.2238,0.625179,0.209177,10.2238,0.756183,0.200174,10.2238,0.82779,0.0691909,10.2542,0.98079,0.133247,10.2566,0.950998,0.175767,10.2563,0.897257,0.213547,10.2761,0.691972,0.207948,10.2765,0.558547,0.0619781,10.2542,0.956831,0.117528,10.2568,0.931531,0.152571,10.2564,0.884226,0.169353,10.2746,0.825162,0.173121,10.2765,0.752865,0.170347,10.2761,0.692479,0.167473,10.2754,0.625752,0.169464,10.2765,0.558823,0.0568771,10.2589,0.989438,0.123747,10.2589,0.962564,0.163571,10.2951,0.912403,0.202023,10.2821,0.842758,0.213704,10.2827,0.769957,0.218739,10.2856,0.7054,0.218098,10.2819,0.638333,0.214746,10.2844,0.571853,0.0166252,10.2589,0.99444,-0.0166252,10.2589,0.99444,0.0844732,10.2589,0.982002,0.146556,10.2952,0.933416,0.18712,10.2829,0.886982,0.206345,10.2824,0.817805,0.216517,10.2857,0.743447,0.220036,10.282,0.678454,0.218789,10.2842,0.61182,0.0486037,10.2589,0.955045,0.104043,10.2594,0.933185,0.144297,10.2635,0.897342,0.161179,10.282,0.834221,0.167814,10.2828,0.767492,0.164836,10.2856,0.705765,0.161721,10.2819,0.639305,0.162433,10.2844,0.572233,-0.00792712,10.2589,0.959773,0.00792712,10.2589,0.959773,0.00958622,10.2589,0.959773,-0.00958622,10.2589,0.959773,0.0723841,10.2589,0.948757,0.127313,10.2637,0.918372,0.15101,10.2837,0.871705,0.16666,10.2823,0.811592,0.167102,10.2856,0.742218,0.162833,10.2821,0.679291,0.159192,10.2842,0.612405,0.00179212,10.2542,0.990967,-0.00179212,10.2542,0.990967,0.0702616,10.2542,0.980821,0.134338,10.2567,0.950706,0.176504,10.2562,0.896638,0.200973,10.2746,0.829519,0.210594,10.2767,0.753087,0.214186,10.2759,0.690988,0.212039,10.2755,0.624209,0.00180238,10.2542,0.965329,-0.00180238,10.2542,0.965329,0.0627708,10.2542,0.956302,0.118104,10.2569,0.930863,0.152588,10.2563,0.883296,0.169274,10.2746,0.824164,0.172619,10.2767,0.751819,0.169709,10.2759,0.691525,0.166817,10.2755,0.624785,0.0680248,10.2542,0.98152,0.132327,10.2565,0.952004,0.17559,10.2565,0.898466,0.200656,10.2746,0.831832,0.210404,10.2764,0.755571,0.214101,10.2762,0.69324,0.212162,10.2753,0.626427,0.208556,10.2765,0.559807,0.0607121,10.2542,0.956751,0.116272,10.2567,0.931776,0.151787,10.2565,0.885072,0.168459,10.2745,0.826239,0.172571,10.2764,0.754211,0.169774,10.2762,0.69374,0.166857,10.2753,0.627032,0.168834,10.2765,0.560093,0.211455,10.2754,0.625179,0.210001,10.2766,0.754128,0.200406,10.2746,0.830454,0.0653429,10.2979,0.972767,0.12395,10.2923,0.946074,0.159715,10.2932,0.897217,0.17835,10.3003,0.833723,0.182651,10.2979,0.757224,0.179668,10.2984,0.693868,0.176757,10.2992,0.623469,0.178743,10.2979,0.552858,0.0729526,10.2979,0.998044,0.140534,10.2928,0.966612,0.185449,10.2934,0.909482,0.211426,10.3002,0.839865,0.221643,10.2978,0.758579,0.22536,10.2985,0.693333,0.222878,10.2992,0.622865,0.219345,10.2979,0.552566,0.0653429,10.3652,0.972767,0.12395,10.3652,0.946074,0.162122,10.3652,0.895121,0.180434,10.3652,0.834685,0.182119,10.3652,0.759915,0.179562,10.3652,0.693868,0.175909,10.3652,0.623469,0.178743,10.3652,0.552858,0.0717709,10.3652,0.993553,0.137383,10.3652,0.965431,0.181937,10.3652,0.908808,0.216745,10.3652,0.693333,0.212366,10.3652,0.552566,0.20703,10.3652,0.835823,0.214006,10.3652,0.761261,0.215514,10.3652,0.622865,0.0597325,10.2884,1.00622,0.129966,10.2884,0.978003,0.171133,10.2785,0.926107,0.212911,10.2912,0.852831,0.225075,10.2904,0.775591,0.230324,10.2869,0.707503,0.229622,10.2914,0.63675,0.226119,10.2884,0.566608,0.0172999,10.2884,1.01149,-0.0172999,10.2884,1.01149,0.0887417,10.2884,0.998404,0.154462,10.2784,0.946695,0.197092,10.2902,0.898959,0.217314,10.2908,0.826105,0.228238,10.2869,0.747271,0.232036,10.2913,0.679078,0.230331,10.2887,0.608775,0.0514612,10.2884,0.971833,0.110267,10.2873,0.948631,0.153161,10.2787,0.916202,0.169696,10.2914,0.84328,0.177684,10.2904,0.773028,0.174617,10.287,0.707883,0.171001,10.2914,0.637761,0.171724,10.2884,0.567003,-0.00860354,10.2884,0.976828,0.00860354,10.2884,0.976828,0.0102626,10.2884,0.976828,-0.0102626,10.2884,0.976828,0.0766556,10.2884,0.965167,0.140345,10.2784,0.932187,0.158916,10.2892,0.883298,0.17605,10.291,0.819461,0.176481,10.287,0.745996,0.171858,10.2913,0.679948,0.168351,10.2886,0.609384,0.0583503,10.3652,1.00444,0.128387,10.3652,0.975284,0.18196,10.3652,0.922865,0.210573,10.3652,0.849051,0.221741,10.3652,0.775739,0.226411,10.3652,0.707481,0.2255,10.3652,0.636691,0.222299,10.3652,0.566585,0.015846,10.3652,1.00972,-0.015846,10.3652,1.00972,0.0867206,10.3652,0.995909,0.152509,10.3652,0.959236,0.195479,10.3652,0.89907,0.214741,10.3652,0.825775,0.223246,10.3652,0.74997,0.225616,10.3652,0.679027,0.22605,10.3652,0.60874,0.050981,10.3652,0.969836,0.109124,10.3652,0.946926,0.151138,10.3652,0.903758,0.171911,10.3652,0.844238,0.172164,10.3652,0.772879,0.16851,10.3652,0.707905,0.167616,10.3652,0.637819,0.168566,10.3652,0.567026,-0.00819493,10.3652,0.974816,0.00819493,10.3652,0.974816,0.00985403,10.3652,0.974816,-0.00985403,10.3652,0.974816,0.0759539,10.3652,0.963237,0.128133,10.3652,0.932126,0.161527,10.3652,0.880678,0.173933,10.3652,0.820009,0.17461,10.3652,0.748625,0.170868,10.3652,0.679999,0.164825,10.3652,0.609419,0.00185591,10.2979,0.981732,-0.00185591,10.2979,0.981732,0.0661791,10.2979,0.972209,0.124558,10.2922,0.94537,0.159653,10.2934,0.896263,0.178285,10.3003,0.832642,0.182099,10.2977,0.756091,0.178966,10.2986,0.692862,0.176072,10.2992,0.62245,0.00185591,10.3652,0.981732,-0.00185591,10.3652,0.981732,0.0661791,10.3652,0.972209,0.124558,10.3652,0.94537,0.162219,10.3652,0.894112,0.180231,10.3652,0.833819,0.181736,10.3652,0.758999,0.179075,10.3652,0.692862,0.175168,10.3652,0.62245,0.00184508,10.3652,1.00878,-0.00184508,10.3652,1.00878,0.0729004,10.3652,0.993586,0.138534,10.3652,0.965123,0.18269,10.3652,0.908166,0.207718,10.3652,0.835082,0.214523,10.3652,0.760357,0.2173,10.3652,0.692295,0.216147,10.3652,0.621841,0.00184509,10.2979,1.00878,-0.00184509,10.2979,1.00878,0.0740821,10.2979,0.998077,0.141685,10.2925,0.966305,0.18622,10.2936,0.908824,0.212012,10.3002,0.838838,0.22229,10.2977,0.757442,0.226058,10.2987,0.692295,0.223493,10.2992,0.621841,0.0717223,10.2979,0.998814,0.139563,10.2931,0.967674,0.185261,10.2931,0.910768,0.211707,10.3003,0.841366,0.222048,10.298,0.760154,0.225925,10.2983,0.694671,0.223623,10.2994,0.624182,0.219987,10.2979,0.553896,0.0640071,10.2979,0.972682,0.122624,10.2925,0.946333,0.158935,10.293,0.898075,0.177367,10.3003,0.83487,0.182105,10.2981,0.758701,0.17911,10.2982,0.695199,0.176113,10.2994,0.62482,0.178079,10.2979,0.554197,0.0705406,10.3652,0.994324,0.136412,10.3652,0.966493,0.181775,10.3652,0.910108,0.207202,10.3652,0.836967,0.214594,10.3652,0.762402,0.217497,10.3652,0.694671,0.216326,10.3652,0.624182,0.213008,10.3652,0.553896,0.0640072,10.3652,0.972682,0.122624,10.3652,0.946333,0.161251,10.3652,0.896045,0.179758,10.3652,0.835746,0.18131,10.3652,0.760955,0.178654,10.3652,0.695199,0.175218,10.3652,0.62482,0.178079,10.3652,0.554197,0.0636458,10.4828,0.94973,0.0688119,10.4828,0.948056,0.119831,10.4828,0.923656,0.124827,10.4828,0.920566,0.151351,10.4828,0.876037,0.153764,10.4828,0.869913,0.17032,10.4828,0.809971,0.172664,10.4828,0.805471,0.171946,10.4828,0.739999,0.172749,10.4828,0.736113,0.168546,10.4828,0.676707,0.169143,10.4828,0.671652,0.169819,10.4828,0.60633,0.169112,10.4828,0.599988,0.0747414,10.4828,0.986586,0.0828983,10.4828,0.9846,0.144743,10.4828,0.954508,0.152494,10.4828,0.950159,0.19112,10.4828,0.895774,0.195705,10.4828,0.886231,0.236724,10.4828,0.675929,0.23567,10.4828,0.670646,0.219153,10.4828,0.819728,0.21933,10.4828,0.829056,0.231807,10.4828,0.74221,0.234117,10.4828,0.747729,0.230097,10.4828,0.605434,0.231868,10.4828,0.61394,0.168566,10.4828,0.54979,0.179508,10.4828,0.536962,0.171697,10.4828,0.620584,0.169376,10.4828,0.613162,0.16679,10.4828,0.690669,0.166194,10.4828,0.682235,0.170427,10.4828,0.752763,0.169459,10.4828,0.745057,0.165102,10.4828,0.823156,0.166296,10.4828,0.815627,0.146641,10.4828,0.888363,0.148125,10.4828,0.881904,0.109124,10.4828,0.92969,0.113757,10.4828,0.926078,0.050981,10.4828,0.952601,0.0577514,10.4828,0.950466,0.180371,10.4828,0.535623,0.22941,10.4828,0.561467,0.21609,10.4828,0.53666,0.231531,10.4828,0.626574,0.239282,10.4828,0.690246,0.239536,10.4828,0.681648,0.232563,10.4828,0.755623,0.21679,10.4828,0.83527,0.184654,10.4828,0.909941,0.187515,10.4828,0.905382,0.13111,10.4828,0.962473,0.137263,10.4828,0.95999,0.0602128,10.4828,0.990979,0.0664376,10.4828,0.989742,0.215262,10.4828,0.535331,0.22979,10.4828,0.585996,0.230031,10.4828,0.593599,0.229781,10.4828,0.651828,0.229547,10.4828,0.732565,0.231065,10.4828,0.738033,0.219508,10.4828,0.806632,0.220018,10.4828,0.812548,0.199308,10.4828,0.879758,0.15566,10.4828,0.943182,0.0894434,10.4828,0.983098,0.0177085,10.4828,0.996264,-0.0177085,10.4828,0.996264,-0.00619631,10.4828,0.997862,0.00619631,10.4828,0.997862,0.00785541,10.4828,0.997862,-0.00785541,10.4828,0.997862,0.168954,10.4828,0.592183,0.170843,10.4828,0.662764,0.17461,10.4828,0.731113,0.173814,10.4828,0.799543,0.156699,10.4828,0.862279,0.128133,10.4828,0.914891,0.0759539,10.4828,0.946002,-0.00819498,10.4828,0.95758,0.00819498,10.4828,0.95758,0.00985408,10.4828,0.95758,-0.00985408,10.4828,0.95758,-0.00457143,10.4828,0.957586,0.00457143,10.4828,0.957586,0.00623053,10.4828,0.957586,-0.00623053,10.4828,0.957586,0.0650053,10.424,0.963322,0.069553,10.424,0.961003,0.123203,10.424,0.936612,0.12616,10.424,0.932706,0.161034,10.424,0.886255,0.162295,10.424,0.881196,0.178347,10.424,0.826663,0.178332,10.424,0.820421,0.181394,10.424,0.752156,0.180925,10.424,0.748096,0.179088,10.424,0.685303,0.178622,10.424,0.679819,0.173997,10.424,0.614917,0.173316,10.424,0.609372,0.078942,10.424,0.988911,0.073102,10.424,0.989986,0.145608,10.424,0.954755,0.140695,10.424,0.958262,0.189112,10.424,0.897222,0.185604,10.424,0.902825,0.225784,10.424,0.679177,0.2257,10.424,0.684763,0.211573,10.424,0.829547,0.211345,10.424,0.834348,0.221773,10.424,0.75381,0.223398,10.424,0.758268,0.22596,10.424,0.614282,0.228157,10.424,0.619872,0.17158,10.424,0.565145,0.178411,10.424,0.550243,0.169939,10.424,0.635803,0.172293,10.424,0.620593,0.172069,10.424,0.705826,0.176835,10.424,0.690887,0.174217,10.424,0.770334,0.179268,10.424,0.756239,0.170509,10.424,0.843348,0.176131,10.424,0.832163,0.14832,10.424,0.900004,0.15808,10.424,0.890182,0.104625,10.424,0.941971,0.118453,10.424,0.938467,0.044837,10.424,0.963167,0.059652,10.424,0.963662,0.186926,10.424,0.545828,0.219663,10.424,0.549933,0.226529,10.424,0.564694,0.231463,10.424,0.634831,0.227784,10.424,0.690448,0.231452,10.424,0.705686,0.226126,10.424,0.773643,0.209977,10.424,0.847539,0.183338,10.424,0.908277,0.178312,10.424,0.920318,0.136028,10.424,0.962194,0.123527,10.424,0.972689,0.0675959,10.424,0.992187,0.0530842,10.424,0.998464,0.211144,10.424,0.545648,0.227908,10.424,0.593546,0.226273,10.424,0.608757,0.226796,10.424,0.663834,0.226903,10.424,0.735099,0.222344,10.424,0.74958,0.218289,10.424,0.808435,0.212907,10.424,0.824867,0.199405,10.424,0.88106,0.158815,10.424,0.944681,0.0952392,10.424,0.986378,0.0237298,10.424,1.00231,-0.0237298,10.424,1.00231,-0.00521432,10.424,1.00071,0.00521432,10.424,1.00071,0.00687343,10.424,1.00071,-0.00687343,10.424,1.00071,0.170885,10.424,0.594154,0.176,10.424,0.664727,0.177029,10.424,0.734353,0.176336,10.424,0.802808,0.164341,10.424,0.866644,0.132602,10.424,0.920013,0.0814086,10.424,0.953083,-0.0036201,10.424,0.971476,0.0036201,10.424,0.971476,0.0052792,10.424,0.971476,-0.0052792,10.424,0.971476,0.0173095,10.424,0.966744,-0.0173095,10.424,0.966744,0.0653269,10.368,0.97232,0.0663386,10.368,0.971679,0.123915,10.368,0.945627,0.124633,10.368,0.944771,0.162088,10.368,0.894691,0.162236,10.368,0.893495,0.180377,10.368,0.83428,0.180158,10.368,0.833213,0.182031,10.368,0.759532,0.181646,10.368,0.758447,0.179479,10.368,0.693463,0.178981,10.368,0.692245,0.175859,10.368,0.623065,0.175072,10.368,0.621831,0.0743119,10.368,0.997643,0.0729596,10.368,0.997663,0.14187,10.368,0.965759,0.140541,10.368,0.966218,0.18625,10.368,0.909199,0.185348,10.368,0.910021,0.225172,10.368,0.691675,0.22463,10.368,0.692928,0.211189,10.368,0.836312,0.21131,10.368,0.837617,0.220706,10.368,0.76072,0.22129,10.368,0.762064,0.224274,10.368,0.622459,0.225061,10.368,0.623978,0.168708,10.368,0.566937,0.178094,10.368,0.55401,0.167775,10.368,0.637724,0.175141,10.368,0.624621,0.168553,10.368,0.707806,0.178504,10.368,0.694995,0.172139,10.368,0.772759,0.181152,10.368,0.76073,0.171897,10.368,0.844112,0.179645,10.368,0.835507,0.151005,10.368,0.90358,0.161107,10.368,0.895763,0.108911,10.368,0.946692,0.122427,10.368,0.945961,0.0506905,10.368,0.969521,0.0638013,10.368,0.972256,0.17912,10.368,0.552526,0.219971,10.368,0.553708,0.229148,10.368,0.566496,0.232697,10.368,0.636603,0.225396,10.368,0.694472,0.233264,10.368,0.707396,0.227574,10.368,0.77564,0.214203,10.368,0.849641,0.185069,10.368,0.911456,0.184808,10.368,0.923863,0.139396,10.368,0.967415,0.130751,10.368,0.979376,0.0715272,10.368,0.998501,0.0598757,10.368,1.00775,0.218969,10.368,0.552239,0.233573,10.368,0.608022,0.224925,10.368,0.621223,0.23233,10.368,0.678309,0.229309,10.368,0.749439,0.221225,10.368,0.759709,0.219834,10.368,0.825292,0.211918,10.368,0.835419,0.199313,10.368,0.898979,0.155809,10.368,0.959673,0.0897174,10.368,0.999674,0.0179931,10.368,1.01297,-0.0179931,10.368,1.01297,0.00208279,10.368,1.0084,-0.00208279,10.368,1.0084,0.16516,10.368,0.608697,0.171147,10.368,0.679277,0.174768,10.368,0.74804,0.174048,10.368,0.819196,0.16166,10.368,0.880015,0.128345,10.368,0.931554,0.0762117,10.368,0.962757,0.00201774,10.368,0.981247,-0.00201774,10.368,0.981247,-0.00854738,10.368,0.974434,0.00854738,10.368,0.974434,0.0102065,10.368,0.974434,-0.0102065,10.368,0.974434,0.0729526,10.362,0.998044,0.140534,10.362,0.966612,0.185338,10.362,0.910346,0.22454,10.362,0.693333,0.219345,10.362,0.552566,0.0653429,10.362,0.972767,0.12395,10.362,0.946074,0.162126,10.362,0.895117,0.180432,10.362,0.834701,0.182274,10.362,0.759896,0.179716,10.362,0.693868,0.175895,10.362,0.623469,0.178743,10.362,0.552858,0.0601899,10.3616,1.00812,0.131055,10.3616,0.979627,0.185044,10.3616,0.923983,0.214294,10.3616,0.8497,0.227662,10.3616,0.775732,0.233389,10.3616,0.707482,0.232882,10.3616,0.636694,0.229127,10.3616,0.566586,0.017689,10.3616,1.0134,-0.017689,10.3616,1.0134,0.08941,10.3616,1.00024,0.155591,10.3616,0.960347,0.199203,10.3616,0.899825,0.219881,10.3616,0.825997,0.229351,10.3616,0.750063,0.232507,10.3616,0.67903,0.233742,10.3616,0.608742,0.0510038,10.3616,0.969931,0.109178,10.3616,0.947007,0.151223,10.3616,0.903807,0.17201,10.3616,0.844259,0.172533,10.3616,0.772886,0.168907,10.3616,0.707904,0.167777,10.3616,0.637817,0.168716,10.3616,0.567025,-0.0082144,10.3616,0.974912,0.0082144,10.3616,0.974912,0.0098735,10.3616,0.974912,-0.0098735,10.3616,0.974912,0.0759873,10.3616,0.963329,0.128201,10.3616,0.932196,0.161618,10.3616,0.880715,0.174046,10.3616,0.820026,0.174747,10.3616,0.74863,0.171026,10.3616,0.679996,0.164992,10.3616,0.609417,0.00184508,10.362,1.00878,-0.00184508,10.362,1.00878,0.0740821,10.362,0.998077,0.141685,10.362,0.966305,0.186123,10.362,0.9097,0.211817,10.362,0.835899,0.221131,10.362,0.760234,0.225064,10.362,0.692295,0.224758,10.362,0.621841,0.00185591,10.362,0.981732,-0.00185591,10.362,0.981732,0.0661791,10.362,0.972209,0.124558,10.362,0.94537,0.162224,10.362,0.894108,0.180229,10.362,0.833832,0.181896,10.362,0.758982,0.179235,10.362,0.692862,0.175155,10.362,0.62245,0.0717223,10.362,0.998814,0.139563,10.362,0.967674,0.185152,10.362,0.911611,0.211292,10.362,0.837764,0.221204,10.362,0.762253,0.225262,10.362,0.694671,0.224887,10.362,0.624182,0.219987,10.362,0.553896,0.0640072,10.362,0.972682,0.122624,10.362,0.946333,0.161252,10.362,0.896044,0.179756,10.362,0.83576,0.18147,10.362,0.760937,0.178814,10.362,0.695199,0.175204,10.362,0.62482,0.178079,10.362,0.554197,0.224142,10.362,0.622865,0.220642,10.362,0.761078,0.211143,10.362,0.836625,0.0729526,10.33,0.998044,0.140534,10.3274,0.966612,0.185393,10.3277,0.909914,0.225252,10.3069,0.693333,0.219345,10.3064,0.552566,0.0653429,10.33,0.972767,0.12395,10.3272,0.946074,0.160921,10.3276,0.896167,0.178626,10.3084,0.833852,0.182601,10.3064,0.757577,0.179675,10.3069,0.693868,0.176643,10.3076,0.623469,0.178743,10.3064,0.552858,0.0599612,10.325,1.00717,0.130511,10.325,0.978815,0.172526,10.2868,0.925894,0.213094,10.3005,0.852416,0.225418,10.2998,0.775609,0.230729,10.2968,0.7075,0.230053,10.3007,0.636742,0.226517,10.2981,0.566605,0.0174944,10.325,1.01244,-0.0174944,10.325,1.01244,0.0890758,10.325,0.999323,0.154575,10.2867,0.948063,0.197371,10.2997,0.899073,0.217654,10.3002,0.826091,0.228385,10.2968,0.747641,0.232098,10.3006,0.679071,0.230783,10.2983,0.608771,0.0512325,10.325,0.970882,0.109723,10.3245,0.947819,0.152192,10.3201,0.910004,0.170002,10.3006,0.84341,0.177003,10.2998,0.773009,0.173861,10.2968,0.707885,0.170574,10.3007,0.637768,0.171326,10.2981,0.567006,-0.00840897,10.325,0.97587,0.00840897,10.325,0.97587,0.0100681,10.325,0.97587,-0.0100681,10.325,0.97587,0.0763215,10.325,0.964248,0.134273,10.32,0.932191,0.159273,10.2988,0.882956,0.175784,10.3003,0.819536,0.176251,10.2968,0.746345,0.171747,10.3006,0.679955,0.167906,10.2983,0.609388,0.00184509,10.33,1.00878,-0.00184509,10.33,1.00878,0.0740821,10.33,0.998077,0.141685,10.3273,0.966305,0.186171,10.3278,0.909262,0.211986,10.3084,0.838449,0.222137,10.3062,0.757812,0.225927,10.307,0.692295,0.223661,10.3075,0.621841,0.00185591,10.33,0.981732,-0.00185591,10.33,0.981732,0.0661791,10.33,0.972209,0.124558,10.3271,0.94537,0.160938,10.3277,0.895186,0.178542,10.3085,0.8328,0.182072,10.3062,0.756473,0.179001,10.307,0.692862,0.17595,10.3075,0.62245,0.0717223,10.33,0.998814,0.139563,10.3276,0.967674,0.185206,10.3275,0.91119,0.211652,10.3084,0.840889,0.221936,10.3065,0.760432,0.225837,10.3067,0.694671,0.223791,10.3077,0.624182,0.219987,10.3064,0.553896,0.0640071,10.33,0.972682,0.122624,10.3273,0.946333,0.160094,10.3275,0.897059,0.177683,10.3085,0.834988,0.182021,10.3065,0.758997,0.17907,10.3067,0.695199,0.175993,10.3077,0.62482,0.178079,10.3064,0.554197,0.223045,10.3076,0.622865,0.221511,10.3063,0.75891,0.211388,10.3084,0.839436,0.399454,10.1912,0.82599,0.452448,11.5694,0.616933,0.426792,11.5367,-0.348324,0.132732,10.1853,-0.400425,0.255323,9.89616,1.10514,0.38941,10.0171,0.925418,0.443333,10.1314,0.659111,0.392419,10.1217,0.395387,0.380406,10.0928,0.138624,0.378999,10.1807,-0.089564,0.366665,10.1909,-0.159978,0.425401,10.2982,0.753833,0.416764,10.4044,0.755624,0.367661,10.6275,0.81169,0.461082,11.2445,0.645257,0.462439,11.4362,0.637338,0.414528,10.371,-0.348619,0.52239,10.6349,-0.451086,0.551502,10.8753,-0.486473,0.522967,11.3342,-0.428964,0.459395,11.472,-0.373482,0.217016,11.6155,-0.432179,0.342097,11.5759,-0.390496,0.17906,11.6697,0.728054,0.335935,11.6223,0.684665,0.47637,11.6109,0.494521,0.514765,11.6364,0.279343,0.515404,11.639,0.149359,0.495261,11.6079,-0.117871,0.456745,11.569,-0.25749,0.168114,9.92578,0.365245,0.209143,9.8656,0.638926,0.285437,9.83993,1.09844,0.294308,9.96785,0.280378,0.329722,9.97209,0.513292,0.41753,9.98085,0.885168,0.215544,11.7115,-0.307005,0.35726,11.6542,-0.276448,0.203216,11.8247,-0.135543,0.399297,11.7413,-0.108161,0.211692,11.8918,0.16615,0.419436,11.7798,0.163066,0.226603,11.8865,0.365015,0.410207,11.782,0.317379,0.192763,11.8107,0.574473,0.355605,11.7368,0.534284,0.121614,10.7228,1.01521,0.242234,11.3301,0.924598,0.188895,11.4468,0.849156,0.207298,10.633,0.920162,0.37953,11.3141,0.838598,0.356523,11.431,0.787248,0.463262,10.2992,0.600177,0.481286,10.4454,0.631333,0.477137,10.6648,0.695305,0.502096,11.2526,0.513941,0.516038,11.4654,0.487412,0.470139,10.3437,0.351654,0.583408,10.6233,0.269269,0.595596,10.7462,0.313027,0.584441,11.2912,0.282267,0.561977,11.4981,0.266841,0.47537,10.2758,0.150212,0.558481,10.4999,0.135879,0.616291,11.3373,0.119779,0.576561,11.5103,0.139566,0.45109,10.3343,-0.114076,0.609468,10.6043,-0.0796962,0.665762,10.8138,-0.185119,0.618417,11.3431,-0.170431,0.567669,11.4973,-0.132473,0.450826,10.3559,-0.225601,0.564394,10.6269,-0.310792,0.613202,10.855,-0.36269,0.585796,11.3334,-0.312326,0.533168,11.4747,-0.271723,0.225215,11.5182,-0.499819,0.234709,11.3588,-0.576113,0.241441,10.8801,-0.674925,0.219562,10.5853,-0.633742,0.172581,10.35,-0.524528,0.353519,11.4917,-0.44716,0.390978,11.3424,-0.514406,0.436582,10.8831,-0.588709,0.39383,10.6186,-0.551646,0.312326,10.3689,-0.452937,0.375489,10.4836,0.802377,0.527557,10.7042,-0.46155,0.0746085,10.5005,1.03674,0.234699,10.5154,0.919157,0.473743,10.5466,0.665379,0.586791,10.6745,0.302855,0.631247,10.6764,-0.102343,0.582711,10.6981,-0.321279,0.226577,10.661,-0.647556,0.408647,10.6856,-0.565365,0.429672,10.9069,0.790537,0.434034,10.9295,0.775519,0.557404,10.977,-0.48969,0.556589,11.0769,-0.484563,0.156864,10.9096,0.961496,0.338602,10.9074,0.881415,0.344875,10.9252,0.877231,0.511805,10.9219,0.664659,0.510421,10.9436,0.651184,0.614866,10.8841,0.291385,0.618445,10.9572,0.2917,0.683845,10.958,-0.244369,0.681679,11.0684,-0.226367,0.624711,10.9688,-0.379683,0.629442,11.0717,-0.37189,0.245583,11.0951,-0.65788,0.244428,10.9908,-0.669796,0.440576,11.0939,-0.578723,0.440186,10.9818,-0.584458,0.200841,10.439,0.975567,0.108843,10.439,1.07459,0.308051,10.4264,0.884971,0.355054,10.3744,0.852871,0.364427,10.3059,0.863021,0.271216,10.1545,1.05667,0.142921,10.1031,1.11827,0.342999,10.2345,0.924549,0.163353,10.3127,1.07007,0.0558012,10.2926,1.11897,0.110627,10.3011,1.09951,0.209292,10.3204,1.01188,0.221127,10.3236,1.00561,0.200393,10.3099,1.05337,0.0737163,10.3056,1.15238,0.143327,10.3143,1.11248,0.0773212,11.0197,0.972985,0.0735153,10.932,1.03688,0.0592179,10.699,1.19416,0.0845058,10.6082,1.2157,0.185288,10.5893,1.12314,0.175383,10.6398,1.08826,0.170368,10.9239,0.934114,0.103972,11.189,0.900467,0.444006,10.9854,0.729617,0.551947,11.1574,-0.472197,0.389445,10.9889,0.783373,0.500521,11.0151,0.618519,0.645483,11.1319,0.154283,0.665504,11.1914,0.017294,0.67612,11.1399,-0.163789,0.624597,11.1555,-0.349557,0.245075,11.1624,-0.644418,0.438935,11.1617,-0.570013,0.0875737,10.2184,1.15434,0.172363,10.2711,1.10676,0.258891,10.2877,1.0266,0.310081,10.3164,0.953602,0.3173,10.3358,0.940072,0.28089,10.3491,0.997137,0.0951129,10.3845,1.17147,0.189253,10.3586,1.08553,0.365985,11.009,0.787728,0.120269,11.1881,0.857794,0.177802,10.9485,0.88878,0.0829333,11.0515,0.904806,0.287974,10.9533,0.872473,0.345076,11.2282,0.787867,0.246251,11.2493,0.81763,0.220332,11.2293,0.765134,0.322139,11.176,0.73378,0.276449,10.9598,0.818806,0.0620516,11.075,0.85265,0.176765,10.9621,0.843086,0.105982,11.1909,0.807187,0.349806,11.0095,0.772671,0.350653,11.0241,0.734151,0.0954312,11.2157,0.761477,0.147952,10.968,0.806266,0.0295782,11.1065,0.801045,0.277907,10.9516,0.781051,0.329779,11.1829,0.698248,0.222629,11.248,0.721882,0.226299,11.2523,0.667157,0.324742,11.182,0.664605,0.273201,10.9615,0.723778,0.0276231,11.1169,0.732035,0.145532,10.9552,0.74653,0.0959922,11.2235,0.696627,0.34852,11.0256,0.690244,0.553638,10.706,0.498157,0.524777,10.5042,0.433283,0.539238,10.599,0.472243,0.571565,10.9092,0.513722,0.57351,10.9546,0.507771,0.554867,11.0504,0.470302,0.563604,10.5585,0.211453,0.624448,11.0348,0.275171,0.665355,11.0257,0.210262,0.619018,10.571,0.176682,0.792715,11.143,-0.173748,0.726978,11.2028,0.010407,0.688244,11.1384,0.141538,0.804249,11.0396,-0.255922,0.808829,10.9159,-0.27337,0.684608,10.9614,0.184497,0.767663,10.6706,-0.1131,0.62165,10.7204,0.196969,0.805125,10.8097,-0.223616,0.736733,10.5743,-0.0728808,0.624058,10.5162,0.130889,0.611291,10.659,0.206254,0.698892,10.9688,0.160044,0.791194,10.9101,-0.199463,0.782406,11.004,-0.197145,0.643064,10.5959,0.123046,0.114988,10.1662,1.12446,0.218483,10.2091,1.06793,0.296664,10.2629,0.973748,0.328988,10.3106,0.92367,0.327741,10.3543,0.911523,0.298275,10.3926,0.932793,0.103236,10.4141,1.11741,0.193306,10.396,1.03189,0.152956,10.3295,1.01524,0.0733876,10.324,1.04324,0.205792,10.3296,0.987933,0.226919,10.3235,0.977459,0.214168,10.3026,0.980081,0.110411,10.2744,1.02057,0.052524,10.2632,1.03307,0.17657,10.2881,0.998247,0.202636,10.3148,1.01855,0.145937,10.3025,1.06869,0.0757857,10.293,1.10036,0.221201,10.3216,0.99253,0.209041,10.3179,0.995313,0.164482,10.3175,1.03504,0.11032,10.3114,1.062,0.0559177,10.3061,1.07749,0.0894155,10.2108,1.15418,0.175529,10.2667,1.10377,0.263028,10.2859,1.02136,0.313183,10.3161,0.950864,0.319437,10.3369,0.937709,0.281958,10.3526,0.992235,0.0956182,10.3867,1.16771,0.189492,10.361,1.0819,0.252671,9.77079,0.288281,0.162125,9.75374,0.328641,0.356487,9.87513,-0.17497,0.387756,9.86153,-0.0925043,0.348683,9.80152,0.206011,0.233851,9.89524,-0.361654,0.116009,9.90109,-0.421934,0.304767,9.88925,-0.274581,0.422755,9.50869,-0.353824,0.204347,9.53733,-0.566356,0.321508,9.51335,-0.452169,0.419412,9.48431,0.269811,0.544903,9.51407,-0.150143,0.482752,9.51155,-0.265337,0.137342,9.34716,0.407325,0.302715,9.46059,0.417372,0.157355,9.71999,-0.479324,0.269655,9.71141,-0.401103,0.339643,9.69807,-0.312836,0.439502,9.66681,-0.113468,0.367949,9.61994,0.238593,0.409912,9.67975,-0.200566,0.115462,9.52801,0.363312,0.247966,9.60504,0.347553,0.352463,10.0147,-0.158968,0.221249,10.0117,-0.339442,0.08156,11.1149,0.932112,0.0917725,11.1274,0.882121,0.0705549,11.1453,0.826231,0.048409,11.172,0.781291,0.0591887,11.177,0.711778,0.452531,11.0749,0.678757,0.401231,11.1015,0.754424,0.488835,11.1222,0.555562,0.379924,11.0927,0.755029,0.359399,11.0926,0.73821,0.371697,11.0941,0.717259,0.355616,11.0938,0.674933,0.570062,11.1721,0.382147,0.631332,11.0907,0.234523,0.672029,11.0681,0.19401,0.477474,10.5353,-0.409513,0.520347,10.438,0.11689,0.522838,10.5056,-0.148459,0.518917,10.5182,-0.277649,0.2022,10.4973,-0.600333,0.363514,10.532,-0.518593,0.535467,11.241,-0.451351,0.615496,11.2182,0.211317,0.641511,11.2592,0.0775873,0.647995,11.2504,-0.188306,0.605029,11.2447,-0.333,0.231329,11.2532,-0.618527,0.422362,11.2394,-0.548997,0.575224,10.7238,0.397726,0.549992,10.5628,0.32868,0.56433,10.635,0.373522,0.594298,10.8928,0.394905,0.598062,10.9497,0.378241,0.519475,10.4921,0.237282,0.596076,11.0451,0.333038,0.606307,11.1496,0.276202,0.104556,11.637,-0.452158,0.0810043,11.675,0.740934,0.102978,11.7363,-0.321285,0.102023,11.8457,-0.141785,0.106261,11.9175,0.155022,0.114512,11.9191,0.365999,0.0897977,11.8349,0.58744,0.0947687,11.4186,0.862457,0.120671,11.286,0.925794,0.086705,10.347,-0.541123,0.110196,10.5786,-0.657394,0.121135,10.8784,-0.694739,0.110796,11.3685,-0.605683,0.108349,11.536,-0.526789,0.113703,10.6554,-0.668756,0.123206,11.0921,-0.678385,0.122629,10.9922,-0.689896,0.122952,11.1629,-0.665335,0.0456086,9.90349,-0.444072,0.0818424,9.5345,-0.611983,0.0404314,9.72569,-0.517485,0.101515,10.4892,-0.619215,0.116079,11.2617,-0.638557,0.155283,11.2486,0.889922,0.176304,11.2233,0.839784,0.164725,11.2072,0.786467,0.158635,11.2398,0.743145,0.160591,11.2471,0.6832,0.0931579,11.2492,0.911592,0.0601061,11.188,0.935737,0.0642105,10.5024,1.03627,0.0966303,10.4394,1.07284,0.0671636,10.3046,1.15284,0.0402611,11.03,1.02862,0.0362579,10.6008,1.25331,0.0373179,10.9424,1.08284,0.0274955,10.6959,1.21813,0.0863593,10.3825,1.17288,0.0933653,10.4134,1.11593,0.0387729,10.3283,1.045,0.044513,10.2904,1.10084,0.086801,10.3849,1.16914,0.0436464,11.1167,0.980154,0.510536,11.627,0.0092895,0.415348,11.7633,-0.0014057,0.207564,11.8602,-0.00689002,0.58388,11.5109,0.00176961,0.629859,11.3501,-0.0274971,0.668748,11.1714,-0.0848714,0.767713,11.1942,-0.0755102,0.750287,11.1399,-0.0654209,0.651396,11.263,-0.0557948,0.104197,11.8794,-0.00728078,0.71024,11.0828,0.126623,0.68804,11.0174,0.164007,0.645955,10.686,0.139051,0.652307,10.5689,0.106154,0.767096,11.091,-0.143253,0.729809,11.1359,0.0157568,0.787169,10.8341,-0.153945,0.766174,10.715,-0.0743866,0.75185,10.6582,-0.0369792,0.638572,10.7274,0.158951,0.695855,11.0491,0.147974,0.701235,10.917,0.127829,0.686508,10.8899,0.146719,0.652296,10.7752,0.13451,0.632861,10.7665,0.177561,0.384596,10.1327,0.0524655,0.567372,10.4946,0.0631254,0.451005,10.2975,0.032203,0.673685,10.4607,0.0561098,0.408104,9.83161,0.0616258,0.552404,9.5045,0.0358536,0.46998,9.64565,0.048965,0.519454,10.4519,0.0266493,0.675461,10.5793,0.0614854,0.422514,10.3521,0.754728,0.471173,10.3767,0.597881,0.359741,10.3401,0.857946,0.215355,10.3229,1.00849,0.31369,10.3261,0.946837,0.503327,10.4187,0.382881,0.573506,10.5923,0.240061,0.619214,10.637,0.208596,0.328365,10.3325,0.917597,0.224926,10.3144,0.977509,0.215294,10.3187,0.993958,0.31631,10.3265,0.944287,0.534734,10.5284,0.283341,0.678201,10.6832,0.154186,0.387641,10.7383,0.80994,0.121534,10.7848,0.998196,0.249572,10.7254,0.917448,0.494763,10.7716,0.696993,0.605187,10.8135,0.306467,0.0693897,10.7764,1.11868,0.56524,10.7921,0.508561,0.58534,10.8055,0.402182,0.0260275,10.7872,1.1642,0.651476,10.8273,0.158056,0.579509,10.5136,0.016258,0.451246,10.3191,-0.0498534,0.702187,10.4986,-0.0203015,0.407297,9.84936,-0.0260794,0.58061,9.51567,-0.0488353,0.460001,9.65729,-0.0427455,0.52134,10.4868,-0.0592735,0.724198,10.6118,0.00814378,0.661323,11.1347,0.147841,0.642032,11.0324,0.2388,0.641289,10.9656,0.201458,0.602735,10.6387,0.237416,0.583054,10.5868,0.204947,0.587988,10.551,0.134747,0.711682,11.1156,-0.143362,0.696241,11.1719,0.013335,0.719063,11.0595,-0.212123,0.721965,10.9451,-0.230062,0.708268,10.8148,-0.170336,0.673587,10.6658,-0.072383,0.649904,10.5942,-0.037935,0.604266,10.701,0.247903,0.647658,11.0773,0.215766,0.718231,11.1575,-0.0815112,0.612797,10.7648,0.242064,0.641331,10.894,0.187727,0.624977,10.506,0.0630326,0.592894,10.6004,0.220809,0.625475,10.8259,0.223558,0.623004,10.5217,0.0147998,0.460656,11.2741,0.644036,0.500072,11.4036,-0.404726,0.23398,11.3707,0.912965,0.37007,11.3499,0.830679,0.512733,11.3445,0.493842,0.575948,11.3986,0.270054,0.602634,11.4263,0.13474,0.599982,11.4244,-0.148575,0.56708,11.4096,-0.289856,0.228757,11.4377,-0.547593,0.374168,11.4167,-0.488579,0.119331,11.3137,0.916027,0.108016,11.4514,-0.57715,0.613788,11.4334,-0.00775994,0.13006,10.9066,0.974541,0.11781,10.7216,1.02551,0.0400614,10.5283,1.07943,0.22839,10.5198,0.9478,0.20513,10.6331,0.92974,0.132325,10.9425,0.941426,0.125244,10.9725,0.896935,0.122904,10.9909,0.851652,0.124055,10.9903,0.808928,0.120999,10.9774,0.747004,0.0350819,10.5187,1.0779,0.114026,10.7852,1.00557,0.404245,10.1327,0.429594,0.504914,11.63,0.386099,0.236144,9.81615,0.741243,0.358849,9.96274,0.568984,0.389451,11.7719,0.421173,0.216638,11.857,0.46152,0.547929,11.485,0.373463,0.541634,11.2746,0.405494,0.482063,10.3433,0.362299,0.552703,10.6988,0.541043,0.523456,10.5016,0.441584,0.5373,10.5971,0.479398,0.547223,10.9156,0.593866,0.544784,10.9535,0.584453,0.527694,11.0328,0.54441,0.529448,11.1472,0.468855,0.10258,11.8863,0.4718,0.502899,10.4158,0.395472,0.547713,10.7848,0.574532,0.549136,11.3765,0.380214,0.680623,11.1373,0.143322,0.658752,11.0276,0.218341,0.661412,10.9632,0.18864,0.609031,10.6538,0.221445,0.596998,10.5713,0.200415,0.608952,10.5111,0.138736,0.776212,11.1425,-0.172821,0.718277,11.2012,0.0112359,0.7869,11.0436,-0.252317,0.791139,10.9218,-0.269892,0.7854,10.8124,-0.215631,0.750146,10.6708,-0.105534,0.72383,10.5705,-0.0656742,0.616729,10.7151,0.213672,0.66513,11.0707,0.200169,0.753705,11.1909,-0.077209,0.62787,10.7681,0.193286,0.667607,10.8853,0.162465,0.662067,10.4721,0.05665,0.605895,10.6209,0.214813,0.642448,10.8262,0.180083,0.689514,10.5074,-0.0132382,0.648295,11.1324,0.153139,0.627569,11.0344,0.268714,0.6225,10.9587,0.275673,0.586839,10.6263,0.263667,0.567057,10.5632,0.210228,0.570832,10.5193,0.137849,0.686469,11.1149,-0.164975,0.67096,11.1673,0.0165912,0.692558,11.0658,-0.229353,0.694938,10.9543,-0.247337,0.678132,10.8142,-0.187734,0.643037,10.6658,-0.100323,0.619887,10.5976,-0.073352,0.589893,10.6791,0.294138,0.63423,11.0883,0.231194,0.677532,11.1482,-0.0842749,0.59865,10.7493,0.301786,0.619564,10.8865,0.272008,0.586366,10.505,0.0674749,0.576948,10.5938,0.236649,0.608789,10.8161,0.291847,0.587649,10.5186,0.0147628,0.690262,10.8168,0.0443389,0.698211,10.8539,0.0381383,0.652295,10.8172,0.134702,0.731763,10.7139,0.0666362,0.690132,10.6981,0.123304,0.675461,10.5959,0.0649202,0.715106,10.6144,0.0165672,0.638753,10.691,0.123788,0.700284,10.7022,0.0616478,0.735362,10.7052,-0.00538407,0.749447,10.7401,-0.0465187,0.737426,10.6659,-0.0385318,0.751306,10.727,-0.0769062,0.751786,10.8575,-0.105106,0.742845,10.8406,-0.0579251,0.732326,10.8819,-0.0258034,0.733486,10.9169,-0.0692055,0.732016,10.9554,-0.0247638,0.728453,10.9107,0.0198262,0.718742,10.8665,-0.0127313,0.708696,10.888,0.0305672,0.711174,10.7415,-0.044398,0.720938,10.8357,-0.0503472,0.721681,10.7021,-0.00937895,0.762661,11.0085,-0.0687209,0.771348,10.9597,-0.115726,0.73949,10.9114,-0.139477,0.748139,10.8078,-0.0622364,0.709492,10.8123,-0.0559991,0.751107,10.8314,-0.158436,0.753243,10.912,-0.205976,0.749498,11.0055,-0.191622,0.733251,11.0908,-0.140437,0.715413,11.1357,-0.06538,0.693682,11.1361,0.0126437,0.692406,11.0489,0.142496,0.685947,11.0153,0.15218,0.679899,10.9711,0.145924,0.687567,11.0798,0.123717,0.412041,10.8282,0.799854,0.138789,10.8455,0.980275,0.301105,10.8181,0.898824,0.511886,10.8506,0.680826,0.610026,10.8488,0.298926,0.0726632,10.8556,1.07901,0.568014,10.8547,0.515562,0.589819,10.8492,0.398544,0.0308439,10.8624,1.13138,0.650336,10.8406,0.151253,0.633403,10.8599,0.205642,0.124236,10.8508,0.990304,0.550912,10.8585,0.586865,0.643729,10.8463,0.172516,0.614176,10.8513,0.281927,0.634146,10.8226,0.133344,0.673339,10.8112,0.0730934,0.672532,10.7667,0.100891,0.691208,10.7616,0.0365957,0.686134,10.7438,0.0824198,0.620101,10.7293,0.153769,0.630552,10.7646,0.132385,0.694856,10.7991,-0.000749676,0.699695,10.8339,-0.00587305,0.673149,10.9341,0.111901,0.700465,11.0464,0.0841271,0.703234,10.9672,0.106715,0.701355,11.0139,0.0962658,0.736907,11.054,0.0360562,0.70987,10.9477,0.0844722,0.713396,10.9997,0.058729,0.685604,10.919,0.0938407,0.693887,10.8684,0.119749,0.709115,10.8966,0.104323,0.673228,10.8302,0.103724,0.749707,11.041,-0.01575,0.721114,10.9306,0.0513706,0.723086,10.9823,0.0177463,0.695762,10.9026,0.0674903,0.693935,10.8514,0.0866304,0.701632,10.8761,0.0755774,0.673652,10.7783,0.0693107,0.694919,10.7684,-0.000299593,0.708718,10.776,-0.0532533,0.540278,10.7867,-0.474951,0.648505,10.7451,-0.143731,0.598658,10.7726,-0.34249,0.234009,10.7705,-0.66124,0.422615,10.7843,-0.577037,0.786394,10.7401,-0.168358,0.117419,10.7669,-0.681747,0.776599,10.7734,-0.113603,0.690927,10.7403,-0.12136,0.767773,10.7416,-0.160582,0.660585,10.74,-0.144029,0.76003,10.7735,-0.116831,0.753437,10.7901,-0.0862972,0.747974,10.7757,-0.0580357,0.75013,10.7618,-0.0736133,0.594223,10.7796,0.079863,0.59239,10.8226,0.105135,0.590312,10.7713,0.125581,0.591702,10.7724,0.105406,0.594189,10.8121,0.0837459,0.591097,10.8153,0.126207,0.101943,10.9157,1.00282,0.0846438,10.7103,1.11258,0.0393874,10.5587,1.1353,0.202422,10.5409,1.04721,0.18349,10.6371,1.01302,0.101773,10.9697,0.956344,0.0912311,11.0071,0.904916,0.084803,11.0234,0.850031,0.0670306,11.0414,0.808639,0.0624106,11.0423,0.740581,0.0315197,10.5572,1.1417,0.0873263,10.7803,1.06329,0.097007,10.8514,1.03641,0.157977,10.6771,0.972416,0.165357,10.5101,0.977106,0.229545,10.9011,0.923226,0.156974,10.4417,1.02494,0.109225,10.3097,1.13213,0.124854,10.6,1.16441,0.112008,10.6682,1.14414,0.234593,10.9215,0.907253,0.143002,10.3709,1.12815,0.236392,10.9406,0.881003,0.226817,10.9483,0.833439,0.213654,10.9514,0.798322,0.21169,10.943,0.739148,0.148294,10.4066,1.07465,0.110994,10.3244,1.0338,0.111228,10.2982,1.08437,0.143334,10.3732,1.12447,0.168084,10.737,0.96188,0.155058,10.5175,1.02964,0.156811,10.6752,0.981168,0.203482,10.8172,0.942731,0.138088,10.5384,1.09566,0.128386,10.6738,1.06551,0.0977791,10.6854,1.06058,0.0939712,10.6621,0.978184,0.0524105,10.6918,1.0773,0.0476334,10.665,0.995607,0.0573113,10.6269,1.12424,0.0553494,10.5928,1.02847,0.176862,10.5964,1.00218,0.176232,10.6256,1.09857,0.0394381,10.1692,1.01097,0.241828,10.2858,0.943414,0.250902,10.3433,0.939997,0.16732,10.3805,0.974832,0.0586161,10.3913,1.01158,0.223326,10.3604,0.950324,0.10163,10.1917,0.993811,0.22354,10.2323,0.955849,0.0286463,10.3972,1.01356,0.253877,10.3213,0.938548,0.104391,10.3751,1.0003,0.145697,10.4487,0.816518,0.263806,10.2891,0.811724,0.0421492,10.4442,0.816366,0.195139,10.1666,0.813551,0.0513,10.1255,0.816865,0.117556,10.1357,0.815838,0.247324,10.2226,0.811345,0.263334,10.3619,0.813794,0.241704,10.4152,0.815076,0.0891039,10.4479,0.816681,0.202505,10.4398,0.815921,0.211328,10.4418,0.482295,0.0902159,10.4473,0.471235,0.243899,10.4209,0.482371,0.248375,10.3701,0.480286,0.211108,10.2532,0.472559,0.115512,10.1634,0.458181,0.0527663,10.173,0.46396,0.172066,10.1982,0.462861,0.0422708,10.4409,0.469801,0.234289,10.3105,0.477969,0.151055,10.4503,0.477849,0.106746,10.4044,0.383907,0.180663,10.3141,0.402206,0.0300477,10.3977,0.382492,0.132566,10.2405,0.387593,0.0374266,10.182,0.381688,0.082032,10.1977,0.375535,0.160964,10.2787,0.394712,0.196317,10.3551,0.412009,0.172206,10.3839,0.395286,0.0638514,10.4022,0.380147,0.149242,10.3983,0.391901,0.0337372,10.2938,0.352247,0.0729417,10.3071,0.351893,0.118441,10.3271,0.362759,0.134558,10.3366,0.370138,0.154695,10.3425,0.379841,0.243899,10.4209,0.749809,0.243899,10.4209,0.682949,0.243899,10.4209,0.61609,0.243899,10.4209,0.549231,0.211328,10.4418,0.749793,0.211328,10.4418,0.682919,0.211328,10.4418,0.616044,0.211328,10.4418,0.549169,0.263446,10.3594,0.748244,0.261445,10.3625,0.681927,0.259458,10.366,0.615388,0.260396,10.3716,0.548855,0.194968,10.1628,0.743984,0.193579,10.1546,0.672167,0.188229,10.1673,0.600696,0.184861,10.1778,0.532505,0.247174,10.2111,0.743963,0.245873,10.2068,0.676649,0.23831,10.219,0.608753,0.231547,10.2329,0.542132,0.118733,10.1408,0.744121,0.11842,10.1358,0.668817,0.116694,10.1464,0.590886,0.115322,10.1497,0.524354,0.0525052,10.1276,0.744881,0.0530738,10.1277,0.670208,0.0533342,10.1433,0.601175,0.0913876,10.4469,0.747698,0.0910947,10.447,0.678582,0.0908017,10.4471,0.609466,0.0905088,10.4472,0.540351,0.0431541,10.4413,0.747307,0.0416607,10.4402,0.677712,0.0418641,10.4404,0.608409,0.0420674,10.4406,0.539105,0.263461,10.2792,0.745829,0.260614,10.283,0.679577,0.256365,10.2921,0.613192,0.252771,10.301,0.547317,0.151055,10.4503,0.748904,0.151055,10.4503,0.681141,0.151055,10.4503,0.613377,0.151055,10.4503,0.545613,0.129014,10.45,0.882277,0.0771839,10.4544,0.884508,0.189687,10.4391,0.877803,0.243497,10.257,0.869308,0.26089,10.3139,0.867099,0.258923,10.3652,0.868102,0.0376292,10.4486,0.884154,0.0475267,10.135,0.894163,0.114516,10.1493,0.889364,0.204964,10.1976,0.880507,0.233415,10.405,0.870074,0.0540869,10.1941,0.573131,0.113031,10.1963,0.571311,0.0927196,10.2871,0.481887,0.109,10.2361,0.528889,0.0531513,10.291,0.486262,0.0536445,10.3358,0.5562,0.0934903,10.3251,0.554205,0.119859,10.2323,0.593451,0.120582,10.2789,0.574944,0.0697161,10.2282,0.594774,0.0758246,10.236,0.626537,0.113494,10.2465,0.625696,0.128092,10.2867,0.616656,0.102105,10.3284,0.607489,0.0602482,10.3326,0.608664,0.103604,10.3267,0.673093,0.0615983,10.3291,0.674167,0.113494,10.2513,0.680324,0.128092,10.2885,0.67655,0.0759438,10.242,0.68112,0.0761353,10.2529,0.760278,0.113494,10.2601,0.759416,0.113494,10.3184,0.756909,0.126964,10.2889,0.757853,0.0779899,10.3203,0.757988,0.111236,10.3034,0.864413,0.0782463,10.3099,0.86245,0.12172,10.2833,0.859643,0.112429,10.26,0.855025,0.0765025,10.2528,0.855079,0.073097,10.2554,0.894419,0.102923,10.2648,0.894354,0.108893,10.2833,0.896556,0.102133,10.2996,0.89882,0.0728805,10.304,0.897967,0.0902195,10.2883,0.922299,0.0631656,10.2896,0.944965,0.0902016,10.2743,0.922299,0.0916436,10.2817,0.925139,0.0646987,10.2685,0.944965,0.0636431,10.2796,0.952236,0.116967,10.4296,0.941053,0.06832,10.4393,0.947865,0.261104,10.3222,0.904768,0.0331772,10.4358,0.948837,0.108073,10.166,0.941588,0.214252,10.2143,0.918178,0.229728,10.3868,0.912631,0.0434824,10.1488,0.952568,0.257884,10.3581,0.906257,0.24588,10.2747,0.908379,0.178983,10.4158,0.927398,0.565606,10.7726,0.145421,0.556043,10.7733,0.129054,0.555927,10.8218,0.128854,0.566035,10.8144,0.146156,0.545193,10.8121,0.11048,0.543231,10.7796,0.107122,0.505215,10.8121,0.17736,0.502137,10.7796,0.174983,0.522237,10.7733,0.190511,0.537912,10.8144,0.20262,0.537238,10.7726,0.2021,0.522054,10.8218,0.190369,0.197283,10.9605,0.638722,0.0807695,11.0368,0.640881,0.12649,10.9861,0.645937,0.157394,11.1973,0.596132,0.309613,11.077,0.589679,0.0782476,11.1419,0.618438,0.304075,11.0238,0.60163,0.106973,11.1786,0.606612,0.147233,10.9713,0.642955,0.0536272,11.0952,0.63404,0.245229,10.9738,0.627722,0.285516,11.1458,0.581619,0.208476,11.1979,0.583176,0.20441,11.15,0.535694,0.258772,11.1112,0.534285,0.23031,10.9894,0.566961,0.0947102,11.0754,0.571373,0.159809,10.9859,0.579525,0.132453,11.1344,0.551968,0.271903,11.0249,0.548443,0.112129,11.1084,0.560335,0.275821,11.0625,0.539988,0.168125,11.1477,0.544553,0.146261,10.9982,0.57979,0.113913,11.0341,0.576213,0.196343,10.9792,0.575449,0.326267,10.2053,-0.265618,0.245154,10.1854,-0.342259,0.0671483,10.1876,-0.418382,0.383831,10.1631,-0.0274031,0.357489,9.91883,0.16852,0.274223,9.85766,0.274844,0.156274,9.82288,0.340451,0.300982,10.0205,-0.262537,0.372244,9.99644,-0.0836739,0.115069,10.0148,-0.397971,0.0519322,10.0182,-0.415898,0.385338,9.95555,0.0533378,0.38213,9.97927,-0.0218729,0.130963,9.7992,-0.450577,0.255697,9.79283,-0.380673,0.320107,9.78071,-0.292285,0.410926,9.74826,-0.10315,0.354287,9.69448,0.221694,0.378747,9.76182,-0.188379,0.131973,9.65556,0.334844,0.248036,9.67531,0.317779,0.0410956,9.80278,-0.481335,0.433838,9.7226,0.0628111,0.434421,9.73748,-0.0339391,0.164556,9.62046,-0.523274,0.296227,9.61899,-0.423644,0.368818,9.59499,-0.331992,0.491356,9.579,-0.130488,0.380992,9.54437,0.255593,0.443525,9.58778,-0.216391,0.13278,9.41483,0.408378,0.257239,9.52379,0.386033,0.048137,9.62104,-0.566386,0.51391,9.56452,0.0370314,0.515341,9.57445,-0.0536779,0.151626,9.31552,0.460271,0.314217,9.4015,0.486048,0.637388,9.49272,0.042743,0.669475,9.53021,-0.0607849,0.630327,9.5261,-0.171552,0.571138,9.51346,-0.30568,0.479333,9.46972,0.312565,0.10844,9.44769,-0.669188,0.399588,9.42503,-0.488904,0.243613,9.46105,-0.596024,0.503418,9.47107,-0.406336,0.308745,9.78999,0.24471,0.366563,9.47599,0.330983,0.311485,9.61346,0.286626,0.308802,9.68818,0.272209,0.321471,9.53351,0.312603,0.398998,9.43395,0.393864,0.373174,9.81313,0.154787,0.388581,9.82025,0.11773,0.398342,9.82593,0.089678,0.462669,9.49171,0.195261,0.492548,9.49505,0.142579,0.522208,9.50117,0.0893295,0.400375,9.62936,0.178369,0.424238,9.63433,0.135593,0.447286,9.64064,0.0923171,0.386425,9.70686,0.166862,0.40534,9.71261,0.127893,0.419654,9.71787,0.0953723,0.421512,9.55072,0.187313,0.453303,9.55487,0.135074,0.483621,9.56096,0.0860712,0.598211,9.48924,0.108608,0.56077,9.48228,0.174045,0.532305,9.48062,0.223316,0.308934,9.83946,0.240261,0.361204,9.8864,0.168093,0.387742,9.90697,0.0896456,0.336656,9.83527,0.201874,0.375281,9.86145,0.117755,0.370832,9.856,0.16459,3.53271,8.93966,0.0385299,3.55728,9.14192,-0.0518264,3.51973,8.76309,-0.00555762,3.5172,8.78074,-0.516791,3.52086,8.72862,-0.386739,3.52307,8.69472,-0.231988,3.509,9.2781,-0.621314,3.53936,9.36413,-0.0735252,3.51792,9.47331,-0.261818,3.50592,9.41089,-0.540366,3.5219,8.69284,-0.103315,3.55315,9.18472,-0.597015,3.52054,8.85,-0.574394,3.49364,8.88432,-0.632917,3.51269,9.13992,-0.683629,3.52354,8.99726,-0.694871,3.23579,8.68577,-0.2146,3.23538,8.69125,-0.0765202,3.23631,8.77053,0.0289004,3.24047,9.43861,-0.285127,3.21866,9.3612,-0.562044,3.22256,9.24069,-0.637826,3.25659,9.33905,-0.0648301,3.26334,9.14622,0.00442938,3.22626,8.96547,-0.698667,3.22886,8.74969,-0.52691,3.23263,8.71305,-0.373209,3.2426,8.95916,0.087996,3.22998,9.12495,-0.698015,3.2226,8.86217,-0.632182,3.29302,9.17904,-0.648379,3.26939,8.8245,-0.58246,1.78248,9.01659,0.283178,1.84517,9.336,0.29064,1.73691,8.78354,0.0882705,1.59461,8.62454,-0.549366,1.65518,8.55291,-0.400243,1.71381,8.58756,-0.272841,1.57701,8.82525,-0.613852,1.56785,9.12862,-0.650022,1.86091,9.5127,0.0594057,1.83571,9.5246,-0.248507,1.69284,9.39824,-0.510833,1.71955,8.64968,-0.0726238,-2.71754e-09,9.47258,-0.688676,-5.64066,8.78992,-0.205702,-7.67367,8.98887,-0.257284,-7.67785,8.98177,-0.195032,-7.66119,8.93969,-0.168375,-7.64233,8.89347,-0.192492,-7.63468,8.86767,-0.25454,-7.62984,8.89469,-0.316353,-7.64359,8.9414,-0.342848,-7.66534,8.983,-0.31926,-7.36813,8.99103,-0.153122,-7.37048,8.95092,-0.122221,-7.35905,8.90997,-0.152585,-7.35028,8.87263,-0.226288,-7.3459,8.91132,-0.30008,-7.35183,8.95288,-0.331212,-7.35643,8.98862,-0.2972,-7.68212,8.93163,-0.258698,-7.50006,9.0028,-0.309173,-7.49028,8.93774,-0.337273,-7.49004,8.86605,-0.310057,-7.49957,8.82574,-0.241167,-7.50402,8.86469,-0.171491,-7.50982,8.93583,-0.143537,-7.48931,9.02914,-0.237117,-7.51388,9.00146,-0.171497,-7.50828,8.9919,-0.303046,-7.49858,9.01534,-0.238331,-7.52074,8.99069,-0.179359,-7.66615,8.97468,-0.200177,-7.65489,8.97579,-0.312017,-7.66549,8.98986,-0.256449,-7.67931,8.98573,-0.201559,-7.68684,9.00343,-0.258468,-7.66809,8.98684,-0.313078,-7.51031,9.00683,-0.303224,-7.5228,9.00563,-0.179259,-7.49764,9.0311,-0.237917,-7.41098,9.02169,-0.302007,-7.40034,8.94765,-0.331642,-7.39581,8.87986,-0.302179,-7.40377,8.84379,-0.231577,-7.41008,8.87847,-0.160617,-7.41957,8.94571,-0.131217,-7.41831,9.04047,-0.231052,-7.42471,9.0203,-0.160831,-7.35981,8.90884,-0.299924,-7.36493,8.87016,-0.226516,-7.37328,8.90771,-0.15314,-7.35761,8.87139,-0.226399,-7.36572,8.90999,-0.160906,-7.35314,8.9119,-0.290873,-7.58355,8.98861,-0.319821,-7.56884,8.9365,-0.34085,-7.5611,8.88014,-0.313708,-7.5682,8.85187,-0.247987,-7.57442,8.87885,-0.181643,-7.58745,8.93466,-0.155815,-7.59712,8.98694,-0.178143,-7.5951,8.97801,-0.185309,-7.58293,8.97951,-0.312579,-7.58586,8.99385,-0.313324,-7.59812,8.99232,-0.184682,-7.5938,9.01355,-0.248995,-7.35581,9.01553,-0.293788,-7.3707,9.01439,-0.16387,-7.38961,9.02875,-0.277662,-7.396,9.0539,-0.22882,-7.39954,9.02785,-0.180452,-7.36547,9.04415,-0.265814,-7.3837,9.03736,-0.266001,-7.37227,9.0321,-0.187161,-7.39134,9.03664,-0.190574,-7.38672,9.04192,-0.228059,-7.37112,9.05765,-0.226512,-7.22199,9.05703,-0.481868,-7.2361,9.04345,-0.484244,-7.24164,9.03862,-0.449619,-7.22417,9.0342,-0.445616,-7.23048,9.03968,-0.519118,-7.21371,9.0455,-0.517628,-7.2496,9.03079,-0.440498,-7.24437,9.05479,-0.485362,-7.23509,9.03215,-0.530447,-7.22367,9.01834,-0.424075,-7.20292,9.02012,-0.542822,-7.42713,9.01878,-0.51498,-7.43482,8.9984,-0.454332,-7.41603,9.00055,-0.575662,-7.41329,8.98704,-0.574873,-7.43192,8.98493,-0.454839,-7.43422,8.99319,-0.448105,-7.42634,8.94419,-0.426681,-7.41264,8.89244,-0.450764,-7.40309,8.86803,-0.513487,-7.39264,8.89438,-0.575284,-7.39838,8.94693,-0.601148,-7.41346,8.99552,-0.581727,-7.20117,8.92805,-0.540859,-7.21949,8.92543,-0.421197,-7.20789,8.89674,-0.481569,-7.22654,8.92458,-0.414196,-7.21458,8.89629,-0.482093,-7.20631,8.9266,-0.549742,-7.27355,9.02413,-0.423046,-7.26445,9.04292,-0.488692,-7.26915,8.95598,-0.395074,-7.26034,8.90111,-0.422494,-7.25015,8.87466,-0.489152,-7.24037,8.90309,-0.555085,-7.2416,8.95886,-0.582484,-7.25311,9.02619,-0.554814,-7.33648,9.03499,-0.499217,-7.36266,9.01079,-0.445092,-7.34484,9.0126,-0.561798,-7.4941,8.99395,-0.57974,-7.5148,9.00905,-0.52901,-7.51091,8.9923,-0.474891,-7.49453,8.99636,-0.525996,-7.48171,8.98368,-0.578129,-7.49857,8.98203,-0.472899,-7.36064,8.99677,-0.44514,-7.33752,9.02026,-0.499767,-7.34294,8.99858,-0.561603,-7.35455,9.00668,-0.437318,-7.32889,9.03298,-0.498068,-7.35313,8.94542,-0.410942,-7.34656,8.88388,-0.437412,-7.33835,8.859,-0.503372,-7.32665,8.88585,-0.56802,-7.32511,8.94823,-0.593403,-7.33482,9.00869,-0.566864,-7.51001,8.94193,-0.529288,-7.20387,8.99505,-0.546426,-7.19573,8.96231,-0.577465,-7.19326,8.92766,-0.548665,-7.20123,8.89719,-0.481048,-7.21348,8.92564,-0.41327,-7.22424,8.95938,-0.385587,-7.22232,8.99654,-0.414158,-7.49116,8.99035,-0.585461,-7.46928,8.95143,-0.606858,-7.45778,8.90774,-0.581315,-7.46585,8.88228,-0.52321,-7.4765,8.90592,-0.464756,-7.49563,8.94887,-0.442731,-7.50989,8.98852,-0.468659,-7.50216,8.99541,-0.527219,-7.58741,8.93709,0.134064,-7.58186,8.93051,0.196565,-7.56181,8.88586,0.221065,-7.54728,8.83614,0.194925,-7.54908,8.80787,0.132604,-7.55445,8.83544,0.0701572,-7.57191,8.88488,0.045287,-7.58908,8.92982,0.0714031,-7.29306,8.93653,0.189577,-7.28796,8.8947,0.221162,-7.28015,8.85436,0.189642,-7.28162,8.81904,0.116503,-7.28858,8.85353,0.0425593,-7.29971,8.89355,0.0119873,-7.30298,8.9317,0.0462982,-7.59413,8.87617,0.134796,-7.43542,8.94914,0.0556602,-7.42946,8.87999,0.0271865,-7.4242,8.8096,0.0551961,-7.42196,8.78057,0.125455,-7.41618,8.81038,0.194794,-7.41824,8.88108,0.222372,-7.41527,8.97763,0.125096,-7.42746,8.94993,0.194379,-7.44196,8.93751,0.063173,-7.42369,8.9631,0.125523,-7.43479,8.93822,0.18779,-7.57174,8.92268,0.189761,-7.57824,8.92206,0.0770924,-7.57977,8.93804,0.133619,-7.58425,8.93468,0.190256,-7.60003,8.95288,0.134704,-7.59073,8.93406,0.0778993,-7.44407,8.95336,0.0630857,-7.43688,8.95407,0.187982,-7.4229,8.98001,0.125548,-7.35346,8.9679,0.0486799,-7.3462,8.89034,0.0185216,-7.33678,8.82737,0.0481969,-7.33208,8.79603,0.119909,-7.32859,8.82818,0.190707,-7.33469,8.89144,0.220683,-7.35004,8.98857,0.120022,-7.34547,8.96868,0.191059,-7.3019,8.85296,0.0447409,-7.29523,8.81884,0.118549,-7.29342,8.8538,0.191497,-7.28841,8.81894,0.117527,-7.28793,8.85431,0.182598,-7.295,8.85456,0.0527968,-7.51382,8.93487,0.0581882,-7.50255,8.87929,0.0358514,-7.49032,8.82014,0.062421,-7.48645,8.79168,0.129102,-7.48268,8.82088,0.19545,-7.49179,8.88031,0.22223,-7.50495,8.93538,0.200794,-7.50405,8.92558,0.19351,-7.51203,8.92513,0.0654096,-7.51506,8.9404,0.0649086,-7.50694,8.94083,0.194382,-7.51296,8.96247,0.129625,-7.30232,8.96043,0.0489975,-7.29716,8.96133,0.179229,-7.33085,8.97523,0.0697237,-7.32991,9.00228,0.118601,-7.32538,8.97584,0.167253,-7.30789,8.99112,0.0777162,-7.3242,8.98432,0.0803173,-7.30212,8.97966,0.15621,-7.31988,8.98477,0.15581,-7.32162,8.98932,0.118131,-7.30787,9.00557,0.117038,-6.9185,9.00413,-0.725684,-6.93103,8.99079,-0.728392,-6.94033,8.98744,-0.698472,-6.92554,8.98343,-0.692467,-6.92423,8.98468,-0.758502,-6.90937,8.9903,-0.755847,-6.94896,8.97993,-0.691279,-6.93851,9.00136,-0.731245,-6.92827,8.97626,-0.768344,-6.92787,8.96836,-0.672414,-6.89849,8.96288,-0.774891,-7.08432,8.96365,-0.770892,-7.09622,8.9494,-0.72297,-7.07009,8.94338,-0.8158,-7.06826,8.93175,-0.814033,-7.09414,8.93773,-0.7222,-7.09645,8.94523,-0.717721,-7.09326,8.90488,-0.697125,-7.08122,8.8597,-0.711246,-7.06805,8.83525,-0.757554,-7.05389,8.85328,-0.80644,-7.05501,8.89589,-0.830508,-7.06763,8.93857,-0.819947,-6.89805,8.87387,-0.765508,-6.92681,8.87999,-0.662905,-6.90984,8.84921,-0.712029,-6.93443,8.87997,-0.658124,-6.91599,8.84908,-0.713347,-6.90224,8.87238,-0.773585,-6.9727,8.97357,-0.679621,-6.95652,8.98936,-0.735639,-6.97496,8.91127,-0.651253,-6.9649,8.86013,-0.669749,-6.94867,8.83136,-0.722698,-6.93345,8.85287,-0.779347,-6.93151,8.90196,-0.807151,-6.94313,8.96781,-0.790281,-7.01724,8.97842,-0.751598,-7.04381,8.95979,-0.709522,-7.01826,8.9539,-0.800676,-7.12792,8.94025,-0.826398,-7.14903,8.95753,-0.789047,-7.15146,8.94578,-0.744372,-7.13499,8.94627,-0.784255,-7.11865,8.93075,-0.823014,-7.14215,8.93627,-0.741142,-7.04248,8.94753,-0.708459,-7.01757,8.96571,-0.750969,-7.01699,8.94157,-0.799364,-7.03844,8.95654,-0.702113,-7.01031,8.97767,-0.749553,-7.04108,8.90538,-0.677177,-7.03397,8.85124,-0.69366,-7.02052,8.82598,-0.743226,-7.00485,8.84439,-0.795096,-7.0003,8.89594,-0.819441,-7.01002,8.95006,-0.803734,-7.14789,8.89696,-0.784633,-6.89881,8.93798,-0.776174,-6.8895,8.90379,-0.799472,-6.89027,8.87285,-0.771404,-6.90375,8.84941,-0.710721,-6.92252,8.88074,-0.655222,-6.93485,8.91409,-0.634863,-6.92751,8.94766,-0.661492,-7.1251,8.9362,-0.830384,-7.10668,8.90019,-0.842517,-7.10105,8.86385,-0.818182,-7.11326,8.84598,-0.771253,-7.12705,8.86996,-0.727604,-7.14339,8.90881,-0.714643,-7.15132,8.94236,-0.739034,-7.14101,8.94555,-0.785936,-6.48998,8.7564,0.865961,-6.46722,8.68488,0.852216,-6.54609,8.80882,0.851895,-6.55622,8.80221,0.840759,-6.47558,8.68075,0.839264,-6.46589,8.67697,0.847063,-6.48167,8.63833,0.800025,-6.53391,8.64287,0.755222,-6.5992,8.6927,0.742157,-6.62125,8.76636,0.759728,-6.60448,8.81224,0.806317,-6.55366,8.81314,0.847421,-6.32748,8.74005,0.709919,-6.35223,8.82097,0.721813,-6.36035,8.68477,0.651814,-6.41012,8.69564,0.602493,-6.46305,8.75357,0.578757,-6.48581,8.83036,0.599296,-6.47095,8.88149,0.646876,-6.40717,8.88474,0.70612,-6.4109,8.79216,0.788117,-6.4085,8.71301,0.79155,-6.48538,8.83694,0.790338,-6.59284,8.77462,0.91993,-6.56108,8.72354,0.947204,-6.53359,8.66719,0.924406,-6.55398,8.72546,0.916499,-6.59282,8.77418,0.90039,-6.52987,8.66719,0.902944,-6.41884,8.70731,0.779711,-6.42432,8.78481,0.778594,-6.49683,8.83005,0.779279,-6.40111,8.70694,0.780282,-6.40673,8.79388,0.778853,-6.42628,8.65755,0.727389,-6.48666,8.66028,0.680364,-6.54453,8.71651,0.661859,-6.56966,8.79193,0.680226,-6.55189,8.84124,0.732692,-6.48635,8.84522,0.778782,-6.60418,8.69766,0.891154,-6.59789,8.77969,0.915191,-6.6333,8.79025,0.871189,-6.64581,8.75014,0.828429,-6.62506,8.68232,0.808567,-6.56832,8.63516,0.825169,-6.5307,8.62595,0.871524,-6.53111,8.66018,0.919659,-6.56074,8.72233,0.92385,-1.21737,9.53133,-0.448082,-1.40162,9.47178,0.262551,-1.30654,9.63357,-0.206991,-1.46176,9.13475,-0.650022,-1.08078,9.33628,-0.602687,-1.39849,9.63128,-0.00197884,-1.62297,8.80308,0.0993095,-1.42615,8.79005,0.356225,-1.60033,8.58477,-0.287381,-1.61991,8.63059,-0.0815447,-1.50952,8.62187,-0.55945,-1.74763,9.52214,-0.250404,-1.56093,9.39883,-0.511213,-1.76818,9.37851,0.292151,-1.80179,9.51701,0.049988,-1.48199,8.83394,-0.625891,-1.5896,8.5393,-0.40615,-1.69956,9.02634,0.285672,-1.44712,9.01548,0.322602,-3.09687,8.95932,0.145351,-3.08718,8.70514,-0.368344,-3.07203,8.94841,-0.668311,-3.11801,9.32407,-0.0429021,-3.11668,9.14076,0.0716838,-3.07562,9.34108,-0.550414,-3.10482,9.42212,-0.283003,-3.08379,8.7322,-0.539643,-3.09132,8.68293,-0.055541,-3.09109,8.67669,-0.205581,-3.09543,8.76411,0.0682914,-3.07723,9.22892,-0.625634,-3.36671,9.25246,-0.650017,-3.37855,8.77694,-0.0104906,-3.38181,8.69485,-0.223619,-3.38079,8.69957,-0.0974994,-3.37528,8.76717,-0.514176,-3.37729,9.4551,-0.28725,-3.36303,9.38131,-0.573674,-3.41171,9.15168,-0.0628249,-3.39639,9.35403,-0.0867581,-3.38207,8.98253,-0.729022,-3.37941,8.72097,-0.378073,-3.38992,8.95899,0.0306416,-3.67677,8.92032,0.0464183,-3.66354,8.73627,-0.395405,-3.72276,9.01041,-0.663786,-3.68358,9.37423,-0.0602922,-3.70415,9.13216,-0.0408277,-3.6502,9.44046,-0.507057,-3.65983,9.49152,-0.236385,-3.66036,8.79432,-0.519406,-3.66423,8.68611,-0.10913,-3.66553,8.69458,-0.240357,-3.66213,8.74923,-0.000624619,-3.65391,9.30373,-0.592611,-2.12035,8.95442,0.312094,-2.75305,8.94448,0.260216,-2.16271,9.24464,0.287933,-2.77786,9.16575,0.206228,-2.07626,8.73634,0.17369,-2.73451,8.72889,0.164155,-1.96736,8.6939,-0.554391,-2.68385,8.72217,-0.526497,-1.99516,8.60825,-0.41789,-2.69115,8.68961,-0.4107,-2.01594,8.57385,-0.25797,-2.70093,8.63924,-0.244334,-1.95311,8.91474,-0.627429,-2.66799,8.94808,-0.654772,-1.93176,9.16286,-0.650022,-2.66683,9.16658,-0.644515,-2.17526,9.47259,0.0604887,-2.78538,9.37328,0.0133864,-2.11494,9.51083,-0.250259,-2.76784,9.46297,-0.262635,-1.99683,9.40619,-0.511213,-2.69077,9.37026,-0.520064,-2.02916,8.63061,-0.0048831,-2.70828,8.64084,-0.00291799,-4.52806,8.7375,-0.382488,-5.09983,8.84914,-0.41521,-4.52471,8.66704,-0.276249,-5.10077,8.77178,-0.350961,-4.52052,8.65553,-0.139298,-5.09616,8.73323,-0.245183,-4.5198,9.35512,-0.0195722,-5.06645,9.20669,0.0332032,-4.52124,9.40164,-0.250677,-5.06891,9.29213,-0.137965,-4.52469,9.33567,-0.368075,-5.07334,9.28151,-0.244325,-4.53143,9.19359,0.0886739,-5.0736,9.05948,0.0881668,-4.54947,8.93939,0.04517,-5.08254,8.89591,0.023806,-4.52699,9.13609,-0.548565,-5.08579,9.1881,-0.435938,-4.525,8.94031,-0.546353,-5.09371,9.03931,-0.488755,-4.52656,8.84329,-0.485265,-5.0956,8.95223,-0.467176,-4.53099,8.7583,-0.00825121,-5.08897,8.78147,-0.0957501,-1.8845,8.99403,0.280685,-1.91614,9.29815,0.287265,-1.85305,8.77042,0.0772314,-1.68028,8.62722,-0.539282,-1.72112,8.56653,-0.394336,-1.82966,8.59072,-0.258301,-1.67277,8.81656,-0.601814,-1.67484,9.1225,-0.650022,-1.92429,9.50662,0.0688235,-1.91382,9.52706,-0.248198,-1.8261,9.39765,-0.510453,-1.81626,8.66679,-0.0637031,-4.07704,8.71165,-0.306155,-4.07424,8.67358,-0.185196,-4.07252,8.70179,-0.0614413,-4.06888,9.43301,-0.133696,-4.06918,9.42688,-0.386892,-4.07176,9.32186,-0.487957,-4.08696,9.29436,0.0117633,-4.10634,9.04203,0.00221116,-4.07357,9.05848,-0.610871,-4.07477,8.86157,-0.533149,-4.07552,8.78435,-0.438063,-4.08584,8.84215,0.0248276,-3.08146,9.1045,-0.684916,-3.38072,9.14539,-0.711113,-3.07649,8.86626,-0.621626,-3.37006,8.85808,-0.642737,-3.19366,9.1712,-0.675955,-3.39306,9.18687,-0.620804,-3.71482,9.18257,-0.573226,-4.52613,9.24514,-0.485524,-5.08041,9.25126,-0.357613,-4.07331,9.19131,-0.580949,-3.17298,8.82723,-0.600068,-3.36641,8.82177,-0.564851,-3.67616,8.87822,-0.583936,-4.52609,9.02983,-0.572456,-5.09036,9.11299,-0.484585,-4.07299,8.94309,-0.592349,-3.61373,8.91056,-0.623096,-3.64025,9.13445,-0.656145,-3.66633,9.012,-0.660721,-2.42859,8.95404,0.291979,-2.45874,9.1947,0.252357,-2.39964,8.73531,0.17919,-2.30919,8.72175,-0.543404,-2.32652,8.65817,-0.417001,-2.34131,8.60763,-0.250857,-2.29334,8.93877,-0.641359,-2.28827,9.16701,-0.647533,-2.4664,9.42954,0.0409799,-2.45192,9.48577,-0.255204,-2.33209,9.38896,-0.515213,-2.35503,8.63533,0.003102,-5.57868,9.20879,-0.0817853,-5.58386,8.98781,-0.489309,-5.58018,8.77341,-0.336416,-5.58052,8.82284,-0.424443,-5.57914,8.7858,-0.184473,-5.57835,8.85716,-0.0425029,-5.57709,8.97779,0.0606541,-5.57611,9.10623,0.0496596,-5.57691,9.21536,-0.189068,-5.57803,9.21069,-0.302691,-5.5787,9.1733,-0.392374,-5.57906,9.12122,-0.45773,-5.57943,9.06255,-0.48134,-5.58031,8.8963,-0.463737,-1.27288,9.23853,-0.626354,-1.50399,8.81033,0.228623,-1.47326,9.58016,-0.236267,-1.37966,9.46321,-0.480229,-1.60657,9.56804,0.00531986,-1.59537,9.4347,0.272244,-1.56173,9.03012,0.304752,-0.184512,10.9534,0.648641,-0.0625059,11.0536,0.686716,-0.130586,10.9714,0.653319,-0.0877434,11.0066,0.666689,-0.241311,10.9554,0.653367,-0.292336,10.9771,0.666778,-0.329818,11.0151,0.686832,-0.0633538,11.0584,0.751761,-0.0918354,11.034,0.794749,-0.136845,11.014,0.823484,-0.191529,11.0014,0.833591,-0.247564,10.998,0.823532,-0.296418,11.0045,0.794838,-0.330654,11.0198,0.751877,-0.0581236,11.1013,0.708867,-0.347447,11.0596,0.708993,-0.333042,11.0378,0.75968,-0.298806,11.0225,0.80264,-0.249952,11.016,0.831334,-0.193917,11.0193,0.841393,-0.139232,11.032,0.831286,-0.094223,11.052,0.802551,-0.0657414,11.0763,0.759564,-0.0423543,11.0741,0.767425,-0.0756519,11.0457,0.817681,-0.128272,11.0223,0.851275,-0.192203,11.0075,0.863091,-0.257713,11.0036,0.851331,-0.314828,11.0112,0.817785,-0.354853,11.0291,0.76756,-0.371694,11.0546,0.708303,-0.0334484,11.1033,0.708156,-0.0455516,11.0245,0.740042,-0.073461,10.9752,0.70334,-0.121232,10.9432,0.668057,-0.181593,10.9332,0.639564,-0.13413,10.9321,0.687524,-0.0972931,10.9548,0.73931,-0.0766898,10.9979,0.787039,-0.125897,10.976,0.818454,-0.134955,10.9381,0.763354,-0.154512,10.9231,0.700536,-0.179276,10.9173,0.705113,-0.180712,10.9275,0.771812,-0.185682,10.9622,0.829504,-0.246944,10.9585,0.818507,-0.2276,10.9247,0.763394,-0.204652,10.9158,0.700558,-0.226775,10.9188,0.687564,-0.268479,10.9302,0.739384,-0.300355,10.9656,0.787136,-0.337784,10.9824,0.740169,-0.297126,10.943,0.703437,-0.242279,10.9257,0.668109,-0.248802,10.9356,0.645156,-0.30918,10.9612,0.661025,-0.353533,11.0062,0.684754,-0.117782,10.9545,0.645099,-0.0670867,10.9961,0.66092,-0.0372232,11.0518,0.684617,-0.349584,11.0768,0.707206,-0.111559,11.1965,0.658165,-0.073027,11.1591,0.682735,-0.222962,11.2192,0.635944,-0.278873,11.2011,0.641675,-0.32343,11.166,0.658056,-0.349849,11.1192,0.682592,-0.164209,11.2176,0.641734,-0.344487,11.1211,0.746112,-0.316597,11.1491,0.787098,-0.272042,11.1715,0.814497,-0.217607,11.1849,0.824138,-0.161578,11.1874,0.814554,-0.112485,11.1785,0.787203,-0.0778026,11.1596,0.746249,-0.0759193,11.1445,0.755676,-0.110602,11.1634,0.79663,-0.314713,11.1339,0.796525,-0.342604,11.106,0.755539,-0.0609269,11.1184,0.707355,-0.270159,11.1563,0.823924,-0.215724,11.1698,0.833565,-0.159695,11.1722,0.823981,-0.054254,11.1538,0.76303,-0.0948013,11.1759,0.810909,-0.152195,11.1863,0.842885,-0.217698,11.1834,0.85409,-0.281338,11.1677,0.842818,-0.333427,11.1415,0.810786,-0.366033,11.1088,0.76287,-0.374193,11.0747,0.706365,-0.0367266,11.1234,0.706538,-0.158122,11.2348,0.632816,-0.164927,11.2466,0.654748,-0.110536,11.2325,0.692117,-0.070362,11.1964,0.732615,-0.108367,11.2171,0.777492,-0.139624,11.2483,0.726464,-0.18067,11.2552,0.673337,-0.202952,11.2592,0.685751,-0.180797,11.2558,0.749403,-0.162163,11.2269,0.807463,-0.223559,11.2242,0.817965,-0.227788,11.2537,0.757441,-0.228384,11.2581,0.690102,-0.253091,11.252,0.685726,-0.273442,11.2424,0.749355,-0.283208,11.2094,0.8074,-0.332031,11.1849,0.777377,-0.310808,11.2237,0.726376,-0.273314,11.2418,0.673289,-0.285973,11.2291,0.654686,-0.3342,11.2002,0.692002,-0.362593,11.1543,0.732465,-0.370242,11.1223,0.679502,-0.340054,11.1758,0.651466,-0.289142,11.2159,0.632748,-0.225256,11.2366,0.626199,-0.0539335,11.1679,0.679665,-0.097962,11.2107,0.65159,-0.136852,11.0884,0.849572,-0.156724,11.1112,0.566051,-0.1083,11.1305,0.597234,-0.0744349,11.1434,0.645992,-0.0602837,11.148,0.704899,-0.0680009,11.1434,0.76499,-0.0964115,11.1305,0.817114,-0.141381,11.1112,0.849817,-0.154279,11.1305,0.850515,-0.120243,11.1662,0.818403,-0.0991388,11.1901,0.766673,-0.0939872,11.1985,0.706722,-0.105573,11.1901,0.647675,-0.132132,11.1662,0.598523,-0.169621,11.1305,0.566748,-0.188924,11.1434,0.567792,-0.167799,11.1901,0.600452,-0.152174,11.2213,0.650195,-0.144428,11.2322,0.709449,-0.14574,11.2213,0.769193,-0.155911,11.1901,0.820331,-0.173581,11.1434,0.851558,-0.196351,11.148,0.852789,-0.197983,11.1985,0.822606,-0.20071,11.2322,0.772165,-0.203927,11.2441,0.712666,-0.207144,11.2322,0.653167,-0.209871,11.1985,0.602726,-0.211694,11.148,0.569023,-0.234463,11.1434,0.570254,-0.251943,11.1901,0.605001,-0.262114,11.2213,0.656139,-0.263426,11.2322,0.715883,-0.25568,11.2213,0.775137,-0.240055,11.1901,0.824881,-0.21912,11.1434,0.854021,-0.238423,11.1305,0.855064,-0.275722,11.1662,0.826809,-0.302281,11.1901,0.777657,-0.313867,11.1985,0.71861,-0.308715,11.1901,0.658659,-0.28761,11.1662,0.606929,-0.253766,11.1305,0.571298,-0.266663,11.1112,0.571995,-0.311442,11.1305,0.608218,-0.339853,11.1434,0.660342,-0.34757,11.148,0.720433,-0.333419,11.1434,0.77934,-0.299554,11.1305,0.828098,-0.251321,11.1112,0.855761,-0.25585,11.0884,0.856006,-0.307922,11.0884,0.82855,-0.344353,11.0884,0.779932,-0.359405,11.0884,0.721073,-0.350787,11.0884,0.660934,-0.319811,11.0884,0.608671,-0.271193,11.0884,0.57224,-0.212334,11.0884,0.557188,-0.266663,11.0656,0.571995,-0.311442,11.0463,0.608218,-0.339853,11.0333,0.660342,-0.34757,11.0288,0.720433,-0.333419,11.0333,0.77934,-0.299554,11.0463,0.828098,-0.251321,11.0656,0.855761,-0.238423,11.0463,0.855064,-0.275722,11.0105,0.826809,-0.302281,10.9867,0.777657,-0.313867,10.9783,0.71861,-0.308715,10.9867,0.658659,-0.28761,11.0105,0.606929,-0.253766,11.0463,0.571298,-0.234463,11.0333,0.570254,-0.251943,10.9867,0.605001,-0.262114,10.9555,0.656139,-0.263426,10.9445,0.715883,-0.25568,10.9555,0.775137,-0.240055,10.9867,0.824881,-0.21912,11.0333,0.854021,-0.196351,11.0288,0.852789,-0.197983,10.9783,0.822606,-0.20071,10.9445,0.772165,-0.203927,10.9327,0.712666,-0.207144,10.9445,0.653167,-0.209871,10.9783,0.602726,-0.211694,11.0288,0.569023,-0.188924,11.0333,0.567792,-0.167799,10.9867,0.600452,-0.152174,10.9555,0.650195,-0.144428,10.9445,0.709449,-0.14574,10.9555,0.769193,-0.155911,10.9867,0.820331,-0.173581,11.0333,0.851558,-0.154279,11.0463,0.850515,-0.120244,11.0105,0.818403,-0.0991388,10.9867,0.766673,-0.0939872,10.9783,0.706722,-0.105573,10.9867,0.647675,-0.132132,11.0105,0.598523,-0.169621,11.0463,0.566748,-0.156724,11.0656,0.566051,-0.1083,11.0463,0.597234,-0.074435,11.0333,0.645992,-0.0602838,11.0288,0.7049,-0.0680009,11.0333,0.76499,-0.0964116,11.0463,0.817114,-0.141381,11.0656,0.849817,-0.0880429,11.0884,0.816662,-0.0570667,11.0884,0.764398,-0.0484487,11.0884,0.70426,-0.0635008,11.0884,0.6454,-0.0999315,11.0884,0.596782,-0.152195,11.0884,0.565806,-0.177035,11.0803,0.847026,-0.181627,11.0734,0.847275,-0.188499,11.0688,0.847646,-0.196605,11.0672,0.848084,-0.204711,11.0688,0.848523,-0.211583,11.0734,0.848894,-0.216175,11.0803,0.849142,-0.217787,11.0884,0.84923,-0.216175,11.0965,0.849142,-0.211583,11.1034,0.848894,-0.204711,11.108,0.848523,-0.196605,11.1096,0.848084,-0.188499,11.108,0.847646,-0.181627,11.1034,0.847275,-0.177035,11.0965,0.847026,-0.175423,11.0884,0.846939,-0.165666,11.0884,0.845582,-0.168025,11.1003,0.845709,-0.174741,11.1103,0.846073,-0.184793,11.1171,0.846616,-0.19665,11.1194,0.847257,-0.208507,11.1171,0.847898,-0.218558,11.1103,0.848442,-0.225275,11.1003,0.848805,-0.227633,11.0884,0.848933,-0.225275,11.0765,0.848805,-0.218558,11.0664,0.848442,-0.208507,11.0597,0.847898,-0.19665,11.0574,0.847257,-0.184793,11.0597,0.846616,-0.174741,11.0664,0.846073,-0.168025,11.0765,0.845709,-0.19665,11.0884,0.847257,-0.138652,11.1123,0.851284,-0.152169,11.1325,0.852014,-0.1724,11.1461,0.853108,-0.196264,11.1508,0.854399,-0.220127,11.1461,0.855689,-0.240358,11.1325,0.856783,-0.253875,11.1123,0.857513,-0.258622,11.0884,0.85777,-0.253875,11.0645,0.857513,-0.240358,11.0442,0.856783,-0.220127,11.0307,0.855689,-0.196264,11.0259,0.854399,-0.1724,11.0307,0.853108,-0.15217,11.0442,0.852014,-0.138652,11.0645,0.851284,-0.133905,11.0884,0.851027,-0.0619781,10.2846,0.956831,-0.117528,10.2898,0.931531,-0.151428,10.289,0.885222,-0.169091,10.2823,0.825039,-0.173168,10.2846,0.75253,-0.170341,10.2841,0.692479,-0.167581,10.2833,0.625752,-0.169464,10.2846,0.558823,-0.0691909,10.2846,0.98079,-0.133247,10.2894,0.950998,-0.17582,10.2889,0.896847,-0.200442,10.2824,0.830861,-0.210127,10.2846,0.753815,-0.21365,10.284,0.691972,-0.211296,10.2833,0.625179,-0.207948,10.2846,0.558547,-1.37054e-14,10.2846,0.990547,-1.37054e-14,10.2846,0.965526,-0.0619781,10.2208,0.956831,-0.117528,10.2208,0.931531,-0.153709,10.2208,0.883235,-0.171067,10.2208,0.825951,-0.172664,10.2208,0.755081,-0.17024,10.2208,0.692479,-0.166777,10.2208,0.625752,-0.169464,10.2208,0.558823,-0.0680708,10.2208,0.976534,-0.130261,10.2208,0.949878,-0.172491,10.2208,0.896208,-0.205483,10.2208,0.691972,-0.201333,10.2208,0.558547,-1.38187e-14,10.2208,0.990547,-0.196275,10.2208,0.82703,-0.202888,10.2208,0.756357,-0.204317,10.2208,0.625179,-1.38187e-14,10.2208,0.965526,-0.0566604,10.2936,0.988537,-0.123231,10.2936,0.961794,-0.16225,10.3029,0.912605,-0.20185,10.2909,0.84315,-0.21338,10.2917,0.769939,-0.218354,10.295,0.705403,-0.217689,10.2907,0.63834,-0.214369,10.2936,0.571856,-0.0164408,10.2936,0.993532,0.0164408,10.2936,0.993532,-0.0841565,10.2936,0.981131,-0.146449,10.3031,0.93212,-0.186856,10.2918,0.886873,-0.206023,10.2913,0.817819,-0.216377,10.295,0.743097,-0.219977,10.2909,0.67846,-0.218361,10.2933,0.611824,-0.0488204,10.2936,0.955946,-0.10456,10.2946,0.933954,-0.145216,10.3028,0.903216,-0.160889,10.2908,0.834098,-0.16846,10.2917,0.76751,-0.165553,10.2949,0.705762,-0.162125,10.2907,0.639298,-0.162811,10.2936,0.57223,0.00811154,10.2936,0.960681,-0.00811154,10.2936,0.960681,-0.00977064,10.2936,0.960681,0.00977064,10.2936,0.960681,-0.0727008,10.2936,0.949628,-0.133068,10.3031,0.918368,-0.150671,10.2928,0.872028,-0.166911,10.2911,0.811521,-0.167319,10.2949,0.741888,-0.162937,10.2909,0.679285,-0.159614,10.2934,0.612401,-0.0553502,10.2208,0.986848,-0.121734,10.2208,0.959217,-0.172513,10.2208,0.909532,-0.199633,10.2208,0.839568,-0.21022,10.2208,0.77008,-0.214646,10.2208,0.705382,-0.213782,10.2208,0.638284,-0.210748,10.2208,0.571834,-0.0150628,10.2208,0.991858,0.0150628,10.2208,0.991858,-0.0822409,10.2208,0.978766,-0.144598,10.2208,0.944006,-0.185327,10.2208,0.886978,-0.203584,10.2208,0.817506,-0.211645,10.2208,0.745655,-0.213892,10.2208,0.678412,-0.214303,10.2208,0.611791,-0.0483653,10.2208,0.954054,-0.103475,10.2208,0.932338,-0.143299,10.2208,0.891421,-0.162988,10.2208,0.835006,-0.163228,10.2208,0.767369,-0.159764,10.2208,0.705783,-0.158917,10.2208,0.639354,-0.159817,10.2208,0.572252,0.00772425,10.2208,0.958773,-0.00772425,10.2208,0.958773,-0.00938335,10.2208,0.958773,0.00938335,10.2208,0.958773,-0.0720357,10.2208,0.947799,-0.121494,10.2208,0.91831,-0.153146,10.2208,0.869546,-0.164905,10.2208,0.812041,-0.165546,10.2208,0.74438,-0.161999,10.2208,0.679333,-0.156271,10.2208,0.612434,-1.37054e-14,10.2846,0.965329,-0.00180238,10.2846,0.965329,0.00180238,10.2846,0.965329,-0.0627708,10.2846,0.956302,-0.118104,10.29,0.930863,-0.151369,10.2889,0.884318,-0.16903,10.2823,0.824015,-0.172645,10.2847,0.751456,-0.169675,10.2839,0.691525,-0.166932,10.2834,0.624785,-1.38187e-14,10.2208,0.965329,-0.00180238,10.2208,0.965329,0.00180238,10.2208,0.965329,-0.0627708,10.2208,0.956302,-0.118104,10.2208,0.930863,-0.153801,10.2208,0.882279,-0.170875,10.2208,0.825131,-0.172301,10.2208,0.754213,-0.169779,10.2208,0.691525,-0.166076,10.2208,0.624785,-1.38187e-14,10.2208,0.990967,-0.00179212,10.2208,0.990967,0.00179212,10.2208,0.990967,-0.0691415,10.2208,0.976565,-0.131352,10.2208,0.949586,-0.173205,10.2208,0.8956,-0.196927,10.2208,0.826328,-0.203377,10.2208,0.7555,-0.20601,10.2208,0.690988,-0.204916,10.2208,0.624209,-1.37054e-14,10.2846,0.990967,-0.00179213,10.2846,0.990967,0.00179213,10.2846,0.990967,-0.0702616,10.2846,0.980821,-0.134338,10.2897,0.950706,-0.17655,10.2886,0.896223,-0.200998,10.2824,0.829887,-0.210739,10.2848,0.752737,-0.214311,10.2839,0.690988,-0.21188,10.2834,0.624209,-0.0680248,10.2846,0.98152,-0.132327,10.2891,0.952004,-0.175642,10.2892,0.898067,-0.200708,10.2823,0.832283,-0.21051,10.2844,0.755307,-0.214184,10.2842,0.69324,-0.212003,10.2831,0.626427,-0.208556,10.2846,0.559807,-0.060712,10.2846,0.956751,-0.116272,10.2897,0.931776,-0.150689,10.2892,0.886035,-0.168159,10.2823,0.826127,-0.172651,10.2844,0.75393,-0.169811,10.2842,0.69374,-0.166971,10.2831,0.627032,-0.168834,10.2846,0.560093,-0.0669047,10.2208,0.977264,-0.129341,10.2208,0.950884,-0.172338,10.2208,0.897441,-0.196438,10.2208,0.828114,-0.203445,10.2208,0.757438,-0.206197,10.2208,0.69324,-0.205086,10.2208,0.626427,-0.201941,10.2208,0.559807,-0.0607121,10.2208,0.956751,-0.116272,10.2208,0.931776,-0.152884,10.2208,0.884111,-0.170425,10.2208,0.826957,-0.171897,10.2208,0.756067,-0.16938,10.2208,0.69374,-0.166122,10.2208,0.627032,-0.168834,10.2208,0.560093,-0.0603696,10.1093,0.934996,-0.0652662,10.1093,0.933409,-0.113624,10.1093,0.910282,-0.118359,10.1093,0.907353,-0.1435,10.1093,0.865146,-0.145787,10.1093,0.859342,-0.16148,10.1093,0.802526,-0.163702,10.1093,0.798261,-0.163021,10.1093,0.736203,-0.163782,10.1093,0.732521,-0.159798,10.1093,0.676213,-0.160364,10.1093,0.671421,-0.161005,10.1093,0.609506,-0.160335,10.1093,0.603496,-0.0708864,10.1093,0.96993,-0.0786179,10.1093,0.968047,-0.137237,10.1093,0.939525,-0.144583,10.1093,0.935402,-0.181195,10.1093,0.883854,-0.185541,10.1093,0.874809,-0.224421,10.1093,0.675475,-0.223422,10.1093,0.670468,-0.207766,10.1093,0.811774,-0.207934,10.1093,0.820616,-0.21976,10.1093,0.7383,-0.22195,10.1093,0.74353,-0.218139,10.1093,0.608657,-0.219818,10.1093,0.61672,-0.159817,10.1093,0.555916,-0.170188,10.1093,0.543756,-0.162785,10.1093,0.623017,-0.160586,10.1093,0.615982,-0.158134,10.1093,0.689447,-0.15757,10.1093,0.681452,-0.161581,10.1093,0.748302,-0.160664,10.1093,0.740997,-0.156534,10.1093,0.815024,-0.157666,10.1093,0.807887,-0.139036,10.1093,0.87683,-0.140443,10.1093,0.870708,-0.103475,10.1093,0.916002,-0.107867,10.1093,0.912577,-0.0483653,10.1093,0.937717,-0.0547826,10.1093,0.935694,-0.171007,10.1093,0.542487,-0.217489,10.1093,0.566984,-0.204863,10.1093,0.543471,-0.219498,10.1093,0.628694,-0.226845,10.1093,0.689046,-0.227086,10.1093,0.680896,-0.220477,10.1093,0.751013,-0.205526,10.1093,0.826506,-0.175067,10.1093,0.897282,-0.177778,10.1093,0.892961,-0.124315,10.1093,0.947074,-0.130147,10.1093,0.944721,-0.0571156,10.1093,0.974093,-0.0630157,10.1093,0.972922,-0.204078,10.1093,0.54221,-0.217848,10.1093,0.590233,-0.218077,10.1093,0.597439,-0.21784,10.1093,0.652631,-0.217618,10.1093,0.729157,-0.219057,10.1093,0.734341,-0.208102,10.1093,0.799362,-0.208586,10.1093,0.804968,-0.188957,10.1093,0.868674,-0.147584,10.1093,0.928789,-0.0848217,10.1093,0.966624,-0.0168281,10.1093,0.979102,0.0168281,10.1093,0.979102,0.00582987,10.1093,0.980618,-0.00582987,10.1093,0.980618,-0.00748897,10.1093,0.980618,0.00748897,10.1093,0.980618,-1.40168e-14,10.1093,0.980755,-0.160185,10.1093,0.596098,-0.161976,10.1093,0.662997,-0.165546,10.1093,0.727781,-0.164792,10.1093,0.792642,-0.14857,10.1093,0.852106,-0.121494,10.1093,0.901974,-0.0720357,10.1093,0.931462,0.0077243,10.1093,0.942437,-0.0077243,10.1093,0.942437,-0.0093834,10.1093,0.942437,0.0093834,10.1093,0.942437,0.00428974,10.1093,0.942442,-0.00428974,10.1093,0.942442,-0.00594884,10.1093,0.942442,0.00594884,10.1093,0.942442,-1.40168e-14,10.1093,0.942586,-0.0616581,10.165,0.947879,-0.0659687,10.165,0.945681,-0.11682,10.165,0.922562,-0.119623,10.165,0.91886,-0.152678,10.165,0.874832,-0.153873,10.165,0.870037,-0.169089,10.165,0.818348,-0.169074,10.165,0.812431,-0.171977,10.165,0.747727,-0.171532,10.165,0.743878,-0.169791,10.165,0.684361,-0.169349,10.165,0.679163,-0.164965,10.165,0.617645,-0.16432,10.165,0.61239,-0.0748679,10.165,0.972133,-0.0693325,10.165,0.973153,-0.138057,10.165,0.939759,-0.1334,10.165,0.943083,-0.179292,10.165,0.885226,-0.175967,10.165,0.890538,-0.214051,10.165,0.678554,-0.213972,10.165,0.683849,-0.200581,10.165,0.821081,-0.200366,10.165,0.825632,-0.210249,10.165,0.749294,-0.21179,10.165,0.75352,-0.214218,10.165,0.617043,-0.216301,10.165,0.622342,-0.162675,10.165,0.57047,-0.169149,10.165,0.556344,-0.161119,10.165,0.637442,-0.16335,10.165,0.623026,-0.163138,10.165,0.703813,-0.167655,10.165,0.689654,-0.165174,10.165,0.764956,-0.169961,10.165,0.751597,-0.161659,10.165,0.834162,-0.166988,10.165,0.823561,-0.140627,10.165,0.887863,-0.149878,10.165,0.878554,-0.0992112,10.165,0.927642,-0.112318,10.165,0.924321,-0.0425417,10.165,0.947732,-0.056584,10.165,0.948202,-0.17722,10.165,0.55216,-0.208249,10.165,0.55605,-0.214757,10.165,0.570042,-0.219434,10.165,0.636521,-0.215947,10.165,0.689237,-0.219424,10.165,0.703681,-0.214376,10.165,0.768093,-0.199069,10.165,0.838135,-0.173819,10.165,0.895705,-0.169055,10.165,0.907118,-0.128976,10.165,0.94681,-0.117128,10.165,0.956757,-0.0641137,10.165,0.975239,-0.0503588,10.165,0.981188,-0.200175,10.165,0.55199,-0.216064,10.165,0.597389,-0.214515,10.165,0.611807,-0.21501,10.165,0.664011,-0.215112,10.165,0.73156,-0.21079,10.165,0.745285,-0.206947,10.165,0.80107,-0.201845,10.165,0.816646,-0.189048,10.165,0.869907,-0.150575,10.165,0.930211,-0.0903151,10.165,0.969733,-0.0225354,10.165,0.984835,0.0225354,10.165,0.984835,0.0048991,10.165,0.983314,-0.0048991,10.165,0.983314,-0.0065582,10.165,0.983314,0.0065582,10.165,0.983314,-1.39177e-14,10.165,0.982693,-0.162015,10.165,0.597965,-0.166863,10.165,0.664858,-0.167839,10.165,0.730852,-0.167182,10.165,0.795737,-0.155813,10.165,0.856243,-0.12573,10.165,0.906829,-0.077206,10.165,0.938174,0.00338802,10.165,0.955607,-0.00338802,10.165,0.955607,-0.00504712,10.165,0.955607,0.00504712,10.165,0.955607,-0.01645,10.165,0.951123,0.01645,10.165,0.951123,-1.39177e-14,10.165,0.956822,-0.061963,10.2181,0.956408,-0.0629219,10.2181,0.9558,-0.117495,10.2181,0.931107,-0.118176,10.2181,0.930296,-0.153677,10.2181,0.882827,-0.153818,10.2181,0.881694,-0.171012,10.2181,0.825568,-0.170805,10.2181,0.824556,-0.17258,10.2181,0.754718,-0.172215,10.2181,0.75369,-0.170162,10.2181,0.692095,-0.16969,10.2181,0.690941,-0.16673,10.2181,0.625369,-0.165984,10.2181,0.624199,-0.0704793,10.2181,0.980411,-0.0691976,10.2181,0.980429,-0.134514,10.2181,0.950189,-0.133255,10.2181,0.950624,-0.176579,10.2181,0.896579,-0.175724,10.2181,0.897358,-0.213471,10.2181,0.6904,-0.212957,10.2181,0.691588,-0.200218,10.2181,0.827494,-0.200332,10.2181,0.828731,-0.209238,10.2181,0.755844,-0.209792,10.2181,0.757118,-0.21262,10.2181,0.624795,-0.213366,10.2181,0.626234,-0.159952,10.2181,0.572168,-0.168849,10.2181,0.559915,-0.159068,10.2181,0.639263,-0.166049,10.2181,0.626843,-0.159805,10.2181,0.70569,-0.169237,10.2181,0.693547,-0.163204,10.2181,0.767255,-0.171747,10.2181,0.755853,-0.162975,10.2181,0.834886,-0.170318,10.2181,0.826731,-0.143172,10.2181,0.891253,-0.152748,10.2181,0.883844,-0.103274,10.2181,0.932116,-0.116085,10.2181,0.931424,-0.04809,10.2181,0.953755,-0.0605169,10.2181,0.956347,-0.169821,10.2181,0.558508,-0.208542,10.2181,0.559629,-0.21724,10.2181,0.57175,-0.220604,10.2181,0.638201,-0.213683,10.2181,0.693051,-0.221142,10.2181,0.705302,-0.215748,10.2181,0.769986,-0.203074,10.2181,0.840127,-0.175459,10.2181,0.898719,-0.175213,10.2181,0.910478,-0.132169,10.2181,0.951759,-0.123975,10.2181,0.963096,-0.0678399,10.2181,0.981223,-0.0567961,10.2181,0.989993,-0.207591,10.2181,0.558237,-0.221434,10.2181,0.61111,-0.213237,10.2181,0.623623,-0.220256,10.2181,0.677731,-0.217392,10.2181,0.745152,-0.20973,10.2181,0.754886,-0.208412,10.2181,0.817048,-0.200909,10.2181,0.826647,-0.188961,10.2181,0.886892,-0.147726,10.2181,0.944421,-0.0850813,10.2181,0.982335,-0.0170979,10.2181,0.994938,0.0170979,10.2181,0.994938,-1.38234e-14,10.2181,0.990605,-0.00201743,10.2181,0.990605,0.00201743,10.2181,0.990605,-1.38234e-14,10.2181,0.990175,-0.156589,10.2181,0.61175,-0.162264,10.2181,0.678649,-0.165696,10.2181,0.743825,-0.165014,10.2181,0.811271,-0.153272,10.2181,0.868917,-0.121694,10.2181,0.917768,-0.0722801,10.2181,0.947344,-1.38234e-14,10.2181,0.96487,-0.00195577,10.2181,0.96487,0.00195577,10.2181,0.96487,0.00805831,10.2181,0.958412,-0.00805831,10.2181,0.958412,-0.00971741,10.2181,0.958412,0.00971741,10.2181,0.958412,-1.38234e-14,10.2181,0.965114,-0.0691909,10.2238,0.98079,-0.133247,10.2238,0.950998,-0.175714,10.2238,0.897666,-0.212872,10.2238,0.691972,-0.207948,10.2238,0.558547,-0.0619781,10.2238,0.956831,-0.117528,10.2238,0.931531,-0.153714,10.2238,0.883231,-0.171065,10.2238,0.825966,-0.17281,10.2238,0.755063,-0.170386,10.2238,0.692479,-0.166764,10.2238,0.625752,-0.169464,10.2238,0.558823,-1.38133e-14,10.2238,0.990547,-1.38133e-14,10.2238,0.965526,-0.0570939,10.2242,0.99034,-0.124263,10.2242,0.963334,-0.175436,10.2242,0.910592,-0.203161,10.2242,0.840183,-0.215831,10.2242,0.770073,-0.22126,10.2242,0.705383,-0.220779,10.2242,0.638287,-0.21722,10.2242,0.571836,-0.0168096,10.2242,0.995348,0.0168096,10.2242,0.995348,-0.08479,10.2242,0.982873,-0.14752,10.2242,0.945059,-0.188856,10.2242,0.887694,-0.208456,10.2242,0.817717,-0.217432,10.2242,0.745743,-0.220423,10.2242,0.678414,-0.221594,10.2242,0.611792,-0.0483869,10.2242,0.954144,-0.103527,10.2242,0.932415,-0.143379,10.2242,0.891468,-0.163082,10.2242,0.835026,-0.163577,10.2242,0.767376,-0.160141,10.2242,0.705782,-0.15907,10.2242,0.639351,-0.15996,10.2242,0.572251,0.0077427,10.2242,0.958864,-0.0077427,10.2242,0.958864,-0.0094018,10.2242,0.958864,0.0094018,10.2242,0.958864,-0.0720674,10.2242,0.947886,-0.121558,10.2242,0.918377,-0.153232,10.2242,0.869581,-0.165012,10.2242,0.812057,-0.165677,10.2242,0.744384,-0.162149,10.2242,0.679331,-0.15643,10.2242,0.612433,-1.38133e-14,10.2238,0.990967,-0.00179212,10.2238,0.990967,0.00179212,10.2238,0.990967,-0.0702616,10.2238,0.980821,-0.134338,10.2238,0.950706,-0.176458,10.2238,0.897054,-0.200812,10.2238,0.827102,-0.209641,10.2238,0.755383,-0.213369,10.2238,0.690988,-0.213079,10.2238,0.624209,-1.38133e-14,10.2238,0.965329,-0.00180238,10.2238,0.965329,0.00180238,10.2238,0.965329,-0.0627708,10.2238,0.956302,-0.118104,10.2238,0.930863,-0.153806,10.2238,0.882275,-0.170872,10.2238,0.825142,-0.172452,10.2238,0.754196,-0.16993,10.2238,0.691525,-0.166063,10.2238,0.624785,-0.0680248,10.2238,0.98152,-0.132327,10.2238,0.952005,-0.175538,10.2238,0.898866,-0.200316,10.2238,0.82887,-0.20971,10.2238,0.757297,-0.213557,10.2238,0.69324,-0.213201,10.2238,0.626427,-0.208556,10.2238,0.559807,-0.0607121,10.2238,0.956751,-0.116272,10.2238,0.931776,-0.152885,10.2238,0.88411,-0.170424,10.2238,0.82697,-0.172048,10.2238,0.75605,-0.169531,10.2238,0.69374,-0.16611,10.2238,0.627032,-0.168834,10.2238,0.560093,-0.212495,10.2238,0.625179,-0.209177,10.2238,0.756183,-0.200174,10.2238,0.82779,-0.0691909,10.2542,0.98079,-0.133247,10.2566,0.950998,-0.175767,10.2563,0.897257,-0.213547,10.2761,0.691972,-0.207948,10.2765,0.558547,-0.0619781,10.2542,0.956831,-0.117528,10.2568,0.931531,-0.152571,10.2564,0.884226,-0.169353,10.2746,0.825162,-0.173121,10.2765,0.752865,-0.170347,10.2761,0.692479,-0.167473,10.2754,0.625752,-0.169464,10.2765,0.558823,-1.37593e-14,10.2542,0.990547,-1.37593e-14,10.2542,0.965526,-0.0568771,10.2589,0.989438,-0.123747,10.2589,0.962564,-0.163571,10.2951,0.912403,-0.202023,10.2821,0.842758,-0.213704,10.2827,0.769957,-0.218739,10.2856,0.7054,-0.218098,10.2819,0.638333,-0.214746,10.2844,0.571853,-0.0166252,10.2589,0.99444,0.0166252,10.2589,0.99444,-0.0844732,10.2589,0.982002,-0.146556,10.2952,0.933416,-0.18712,10.2829,0.886982,-0.206345,10.2824,0.817805,-0.216517,10.2857,0.743447,-0.220036,10.282,0.678454,-0.218789,10.2842,0.61182,-0.0486037,10.2589,0.955045,-0.104043,10.2594,0.933185,-0.144297,10.2635,0.897342,-0.161179,10.282,0.834221,-0.167814,10.2828,0.767492,-0.164836,10.2856,0.705765,-0.161721,10.2819,0.639305,-0.162433,10.2844,0.572233,0.00792712,10.2589,0.959773,-0.00792712,10.2589,0.959773,-0.00958622,10.2589,0.959773,0.00958622,10.2589,0.959773,-0.0723841,10.2589,0.948757,-0.127313,10.2637,0.918372,-0.15101,10.2837,0.871705,-0.16666,10.2823,0.811592,-0.167102,10.2856,0.742218,-0.162833,10.2821,0.679291,-0.159192,10.2842,0.612405,-1.37593e-14,10.2542,0.990967,-0.00179212,10.2542,0.990967,0.00179212,10.2542,0.990967,-0.0702616,10.2542,0.980821,-0.134338,10.2567,0.950706,-0.176504,10.2562,0.896638,-0.200973,10.2746,0.829519,-0.210594,10.2767,0.753087,-0.214186,10.2759,0.690988,-0.212039,10.2755,0.624209,-1.37593e-14,10.2542,0.965329,-0.00180238,10.2542,0.965329,0.00180238,10.2542,0.965329,-0.0627708,10.2542,0.956302,-0.118104,10.2569,0.930863,-0.152588,10.2563,0.883296,-0.169274,10.2746,0.824164,-0.172619,10.2767,0.751819,-0.169709,10.2759,0.691525,-0.166817,10.2755,0.624785,-0.0680248,10.2542,0.98152,-0.132327,10.2565,0.952004,-0.17559,10.2565,0.898466,-0.200656,10.2746,0.831832,-0.210404,10.2764,0.755571,-0.214101,10.2762,0.69324,-0.212162,10.2753,0.626427,-0.208556,10.2765,0.559807,-0.0607121,10.2542,0.956751,-0.116272,10.2567,0.931776,-0.151787,10.2565,0.885072,-0.168459,10.2745,0.826239,-0.172571,10.2764,0.754211,-0.169774,10.2762,0.69374,-0.166857,10.2753,0.627032,-0.168834,10.2765,0.560093,-0.211455,10.2754,0.625179,-0.210001,10.2766,0.754128,-0.200406,10.2746,0.830454,-0.0653429,10.2979,0.972767,-0.12395,10.2923,0.946074,-0.159715,10.2932,0.897217,-0.17835,10.3003,0.833723,-0.182651,10.2979,0.757224,-0.179668,10.2984,0.693868,-0.176757,10.2992,0.623469,-0.178743,10.2979,0.552858,-0.0729526,10.2979,0.998044,-0.140534,10.2928,0.966612,-0.185449,10.2934,0.909482,-0.211426,10.3002,0.839865,-0.221643,10.2978,0.758579,-0.22536,10.2985,0.693333,-0.222878,10.2992,0.622865,-0.219345,10.2979,0.552566,-1.36817e-14,10.2979,1.00834,-1.36817e-14,10.2979,0.98194,-0.0653429,10.3652,0.972767,-0.12395,10.3652,0.946074,-0.162122,10.3652,0.895121,-0.180434,10.3652,0.834685,-0.182119,10.3652,0.759915,-0.179562,10.3652,0.693868,-0.175909,10.3652,0.623469,-0.178743,10.3652,0.552858,-0.0717709,10.3652,0.993553,-0.137383,10.3652,0.965431,-0.181937,10.3652,0.908808,-0.216745,10.3652,0.693333,-0.212366,10.3652,0.552566,-1.35621e-14,10.3652,1.00834,-0.20703,10.3652,0.835823,-0.214006,10.3652,0.761261,-0.215514,10.3652,0.622865,-1.35621e-14,10.3652,0.98194,-0.0597325,10.2884,1.00622,-0.129966,10.2884,0.978003,-0.171133,10.2785,0.926107,-0.212911,10.2912,0.852831,-0.225075,10.2904,0.775591,-0.230324,10.2869,0.707503,-0.229622,10.2914,0.63675,-0.226119,10.2884,0.566608,-0.0172999,10.2884,1.01149,0.0172999,10.2884,1.01149,-0.0887417,10.2884,0.998404,-0.154462,10.2784,0.946695,-0.197092,10.2902,0.898959,-0.217314,10.2908,0.826105,-0.228238,10.2869,0.747271,-0.232036,10.2913,0.679078,-0.230331,10.2887,0.608775,-0.0514612,10.2884,0.971833,-0.110267,10.2873,0.948631,-0.153161,10.2787,0.916202,-0.169696,10.2914,0.84328,-0.177684,10.2904,0.773028,-0.174617,10.287,0.707883,-0.171001,10.2914,0.637761,-0.171724,10.2884,0.567003,0.00860354,10.2884,0.976828,-0.00860354,10.2884,0.976828,-0.0102626,10.2884,0.976828,0.0102626,10.2884,0.976828,-0.0766556,10.2884,0.965167,-0.140345,10.2784,0.932187,-0.158916,10.2892,0.883298,-0.17605,10.291,0.819461,-0.176481,10.287,0.745996,-0.171858,10.2913,0.679948,-0.168351,10.2886,0.609384,-0.0583503,10.3652,1.00444,-0.128387,10.3652,0.975284,-0.18196,10.3652,0.922865,-0.210573,10.3652,0.849051,-0.221741,10.3652,0.775739,-0.226411,10.3652,0.707481,-0.2255,10.3652,0.636691,-0.222299,10.3652,0.566585,-0.015846,10.3652,1.00972,0.015846,10.3652,1.00972,-0.0867206,10.3652,0.995909,-0.152509,10.3652,0.959236,-0.195479,10.3652,0.89907,-0.214741,10.3652,0.825775,-0.223246,10.3652,0.74997,-0.225616,10.3652,0.679027,-0.22605,10.3652,0.60874,-0.050981,10.3652,0.969836,-0.109124,10.3652,0.946926,-0.151138,10.3652,0.903758,-0.171911,10.3652,0.844238,-0.172164,10.3652,0.772879,-0.16851,10.3652,0.707905,-0.167616,10.3652,0.637819,-0.168566,10.3652,0.567026,0.00819493,10.3652,0.974816,-0.00819493,10.3652,0.974816,-0.00985403,10.3652,0.974816,0.00985403,10.3652,0.974816,-0.0759539,10.3652,0.963237,-0.128133,10.3652,0.932126,-0.161527,10.3652,0.880678,-0.173933,10.3652,0.820009,-0.17461,10.3652,0.748625,-0.170868,10.3652,0.679999,-0.164825,10.3652,0.609419,-1.36817e-14,10.2979,0.981732,-0.00185591,10.2979,0.981732,0.00185591,10.2979,0.981732,-0.0661791,10.2979,0.972209,-0.124558,10.2922,0.94537,-0.159653,10.2934,0.896263,-0.178285,10.3003,0.832642,-0.182099,10.2977,0.756091,-0.178966,10.2986,0.692862,-0.176072,10.2992,0.62245,-1.35621e-14,10.3652,0.981732,-0.00185591,10.3652,0.981732,0.00185591,10.3652,0.981732,-0.0661791,10.3652,0.972209,-0.124558,10.3652,0.94537,-0.162219,10.3652,0.894112,-0.180231,10.3652,0.833819,-0.181736,10.3652,0.758999,-0.179075,10.3652,0.692862,-0.175168,10.3652,0.62245,-1.35621e-14,10.3652,1.00878,-0.00184508,10.3652,1.00878,0.00184508,10.3652,1.00878,-0.0729004,10.3652,0.993586,-0.138534,10.3652,0.965123,-0.18269,10.3652,0.908166,-0.207718,10.3652,0.835082,-0.214523,10.3652,0.760357,-0.2173,10.3652,0.692295,-0.216147,10.3652,0.621841,-1.36817e-14,10.2979,1.00878,-0.00184509,10.2979,1.00878,0.00184509,10.2979,1.00878,-0.0740821,10.2979,0.998077,-0.141685,10.2925,0.966305,-0.18622,10.2936,0.908824,-0.212012,10.3002,0.838838,-0.22229,10.2977,0.757442,-0.226058,10.2987,0.692295,-0.223493,10.2992,0.621841,-0.0717223,10.2979,0.998814,-0.139563,10.2931,0.967674,-0.185261,10.2931,0.910768,-0.211707,10.3003,0.841366,-0.222048,10.298,0.760154,-0.225925,10.2983,0.694671,-0.223623,10.2994,0.624182,-0.219987,10.2979,0.553896,-0.0640071,10.2979,0.972682,-0.122624,10.2925,0.946333,-0.158935,10.293,0.898075,-0.177367,10.3003,0.83487,-0.182105,10.2981,0.758701,-0.17911,10.2982,0.695199,-0.176113,10.2994,0.62482,-0.178079,10.2979,0.554197,-0.0705406,10.3652,0.994324,-0.136412,10.3652,0.966493,-0.181775,10.3652,0.910108,-0.207202,10.3652,0.836967,-0.214594,10.3652,0.762402,-0.217497,10.3652,0.694671,-0.216326,10.3652,0.624182,-0.213008,10.3652,0.553896,-0.0640072,10.3652,0.972682,-0.122624,10.3652,0.946333,-0.161251,10.3652,0.896045,-0.179758,10.3652,0.835746,-0.18131,10.3652,0.760955,-0.178654,10.3652,0.695199,-0.175218,10.3652,0.62482,-0.178079,10.3652,0.554197,-0.0636458,10.4828,0.94973,-0.0688119,10.4828,0.948056,-0.119831,10.4828,0.923656,-0.124827,10.4828,0.920566,-0.151351,10.4828,0.876037,-0.153764,10.4828,0.869913,-0.17032,10.4828,0.809971,-0.172664,10.4828,0.805471,-0.171946,10.4828,0.739999,-0.172749,10.4828,0.736113,-0.168546,10.4828,0.676707,-0.169143,10.4828,0.671652,-0.169819,10.4828,0.60633,-0.169112,10.4828,0.599988,-0.0747414,10.4828,0.986586,-0.0828983,10.4828,0.9846,-0.144743,10.4828,0.954508,-0.152494,10.4828,0.950159,-0.19112,10.4828,0.895774,-0.195705,10.4828,0.886231,-0.236724,10.4828,0.675929,-0.23567,10.4828,0.670646,-0.219153,10.4828,0.819728,-0.21933,10.4828,0.829056,-0.231807,10.4828,0.74221,-0.234117,10.4828,0.747729,-0.230097,10.4828,0.605434,-0.231868,10.4828,0.61394,-0.168566,10.4828,0.54979,-0.179508,10.4828,0.536962,-0.171697,10.4828,0.620584,-0.169376,10.4828,0.613162,-0.16679,10.4828,0.690669,-0.166194,10.4828,0.682235,-0.170427,10.4828,0.752763,-0.169459,10.4828,0.745057,-0.165102,10.4828,0.823156,-0.166296,10.4828,0.815627,-0.146641,10.4828,0.888363,-0.148125,10.4828,0.881904,-0.109124,10.4828,0.92969,-0.113757,10.4828,0.926078,-0.050981,10.4828,0.952601,-0.0577514,10.4828,0.950466,-0.180371,10.4828,0.535623,-0.22941,10.4828,0.561467,-0.21609,10.4828,0.53666,-0.231531,10.4828,0.626574,-0.239282,10.4828,0.690246,-0.239536,10.4828,0.681648,-0.232563,10.4828,0.755623,-0.21679,10.4828,0.83527,-0.184654,10.4828,0.909941,-0.187515,10.4828,0.905382,-0.13111,10.4828,0.962473,-0.137263,10.4828,0.95999,-0.0602128,10.4828,0.990979,-0.0664376,10.4828,0.989742,-0.215262,10.4828,0.535331,-0.22979,10.4828,0.585996,-0.230031,10.4828,0.593599,-0.229781,10.4828,0.651828,-0.229547,10.4828,0.732565,-0.231065,10.4828,0.738033,-0.219508,10.4828,0.806632,-0.220018,10.4828,0.812548,-0.199308,10.4828,0.879758,-0.15566,10.4828,0.943182,-0.0894434,10.4828,0.983098,-0.0177085,10.4828,0.996264,0.0177085,10.4828,0.996264,0.00619631,10.4828,0.997862,-0.00619631,10.4828,0.997862,-0.00785541,10.4828,0.997862,0.00785541,10.4828,0.997862,-1.33531e-14,10.4828,0.998007,-0.168954,10.4828,0.592183,-0.170843,10.4828,0.662764,-0.17461,10.4828,0.731113,-0.173814,10.4828,0.799543,-0.156699,10.4828,0.862279,-0.128133,10.4828,0.914891,-0.0759539,10.4828,0.946002,0.00819498,10.4828,0.95758,-0.00819498,10.4828,0.95758,-0.00985408,10.4828,0.95758,0.00985408,10.4828,0.95758,0.00457143,10.4828,0.957586,-0.00457143,10.4828,0.957586,-0.00623053,10.4828,0.957586,0.00623053,10.4828,0.957586,-1.33531e-14,10.4828,0.957738,-0.0650053,10.424,0.963322,-0.069553,10.424,0.961003,-0.123203,10.424,0.936612,-0.12616,10.424,0.932706,-0.161034,10.424,0.886255,-0.162295,10.424,0.881196,-0.178347,10.424,0.826663,-0.178332,10.424,0.820421,-0.181394,10.424,0.752156,-0.180925,10.424,0.748096,-0.179088,10.424,0.685303,-0.178622,10.424,0.679819,-0.173997,10.424,0.614917,-0.173316,10.424,0.609372,-0.078942,10.424,0.988911,-0.073102,10.424,0.989986,-0.145608,10.424,0.954755,-0.140695,10.424,0.958262,-0.189112,10.424,0.897222,-0.185604,10.424,0.902825,-0.225784,10.424,0.679177,-0.2257,10.424,0.684763,-0.211573,10.424,0.829547,-0.211345,10.424,0.834348,-0.221773,10.424,0.75381,-0.223398,10.424,0.758268,-0.22596,10.424,0.614282,-0.228157,10.424,0.619872,-0.17158,10.424,0.565145,-0.178411,10.424,0.550243,-0.169939,10.424,0.635803,-0.172293,10.424,0.620593,-0.172069,10.424,0.705826,-0.176835,10.424,0.690887,-0.174217,10.424,0.770334,-0.179268,10.424,0.756239,-0.170509,10.424,0.843348,-0.176131,10.424,0.832163,-0.14832,10.424,0.900004,-0.15808,10.424,0.890182,-0.104625,10.424,0.941971,-0.118453,10.424,0.938467,-0.044837,10.424,0.963167,-0.059652,10.424,0.963662,-0.186926,10.424,0.545828,-0.219663,10.424,0.549933,-0.226529,10.424,0.564694,-0.231463,10.424,0.634831,-0.227784,10.424,0.690448,-0.231452,10.424,0.705686,-0.226126,10.424,0.773643,-0.209977,10.424,0.847539,-0.183338,10.424,0.908277,-0.178312,10.424,0.920318,-0.136028,10.424,0.962194,-0.123527,10.424,0.972689,-0.0675959,10.424,0.992187,-0.0530842,10.424,0.998464,-0.211144,10.424,0.545648,-0.227908,10.424,0.593546,-0.226273,10.424,0.608757,-0.226796,10.424,0.663834,-0.226903,10.424,0.735099,-0.222344,10.424,0.74958,-0.218289,10.424,0.808435,-0.212907,10.424,0.824867,-0.199405,10.424,0.88106,-0.158815,10.424,0.944681,-0.0952392,10.424,0.986378,-0.0237298,10.424,1.00231,0.0237298,10.424,1.00231,0.00521432,10.424,1.00071,-0.00521432,10.424,1.00071,-0.00687343,10.424,1.00071,0.00687343,10.424,1.00071,-1.34576e-14,10.424,1.00005,-0.170885,10.424,0.594154,-0.176,10.424,0.664727,-0.177029,10.424,0.734353,-0.176336,10.424,0.802808,-0.164341,10.424,0.866644,-0.132602,10.424,0.920013,-0.0814086,10.424,0.953083,0.0036201,10.424,0.971476,-0.0036201,10.424,0.971476,-0.0052792,10.424,0.971476,0.0052792,10.424,0.971476,-0.0173095,10.424,0.966744,0.0173095,10.424,0.966744,-1.34576e-14,10.424,0.972758,-0.0653269,10.368,0.97232,-0.0663386,10.368,0.971679,-0.123915,10.368,0.945627,-0.124633,10.368,0.944771,-0.162088,10.368,0.894691,-0.162236,10.368,0.893495,-0.180377,10.368,0.83428,-0.180158,10.368,0.833213,-0.182031,10.368,0.759532,-0.181646,10.368,0.758447,-0.179479,10.368,0.693463,-0.178981,10.368,0.692245,-0.175859,10.368,0.623065,-0.175072,10.368,0.621831,-0.0743119,10.368,0.997643,-0.0729596,10.368,0.997663,-0.14187,10.368,0.965759,-0.140541,10.368,0.966218,-0.18625,10.368,0.909199,-0.185348,10.368,0.910021,-0.225172,10.368,0.691675,-0.22463,10.368,0.692928,-0.211189,10.368,0.836312,-0.21131,10.368,0.837617,-0.220706,10.368,0.76072,-0.22129,10.368,0.762064,-0.224274,10.368,0.622459,-0.225061,10.368,0.623978,-0.168708,10.368,0.566937,-0.178094,10.368,0.55401,-0.167775,10.368,0.637724,-0.175141,10.368,0.624621,-0.168553,10.368,0.707806,-0.178504,10.368,0.694995,-0.172139,10.368,0.772759,-0.181152,10.368,0.76073,-0.171897,10.368,0.844112,-0.179645,10.368,0.835507,-0.151005,10.368,0.90358,-0.161107,10.368,0.895763,-0.108911,10.368,0.946692,-0.122427,10.368,0.945961,-0.0506905,10.368,0.969521,-0.0638013,10.368,0.972256,-0.17912,10.368,0.552526,-0.219971,10.368,0.553708,-0.229148,10.368,0.566496,-0.232697,10.368,0.636603,-0.225396,10.368,0.694472,-0.233264,10.368,0.707396,-0.227574,10.368,0.77564,-0.214203,10.368,0.849641,-0.185069,10.368,0.911456,-0.184808,10.368,0.923863,-0.139396,10.368,0.967415,-0.130751,10.368,0.979376,-0.0715272,10.368,0.998501,-0.0598757,10.368,1.00775,-0.218969,10.368,0.552239,-0.233573,10.368,0.608022,-0.224925,10.368,0.621223,-0.23233,10.368,0.678309,-0.229309,10.368,0.749439,-0.221225,10.368,0.759709,-0.219834,10.368,0.825292,-0.211918,10.368,0.835419,-0.199313,10.368,0.898979,-0.155809,10.368,0.959673,-0.0897174,10.368,0.999674,-0.0179931,10.368,1.01297,0.0179931,10.368,1.01297,-1.35572e-14,10.368,1.0084,-0.00208279,10.368,1.0084,0.00208279,10.368,1.0084,-1.35572e-14,10.368,1.00795,-0.16516,10.368,0.608697,-0.171147,10.368,0.679277,-0.174768,10.368,0.74804,-0.174048,10.368,0.819196,-0.16166,10.368,0.880015,-0.128345,10.368,0.931554,-0.0762117,10.368,0.962757,-1.35572e-14,10.368,0.981247,-0.00201774,10.368,0.981247,0.00201774,10.368,0.981247,0.00854738,10.368,0.974434,-0.00854738,10.368,0.974434,-0.0102065,10.368,0.974434,0.0102065,10.368,0.974434,-1.35572e-14,10.368,0.981506,-0.0729526,10.362,0.998044,-0.140534,10.362,0.966612,-0.185338,10.362,0.910346,-0.22454,10.362,0.693333,-0.219345,10.362,0.552566,-0.0653429,10.362,0.972767,-0.12395,10.362,0.946074,-0.162126,10.362,0.895117,-0.180432,10.362,0.834701,-0.182274,10.362,0.759896,-0.179716,10.362,0.693868,-0.175895,10.362,0.623469,-0.178743,10.362,0.552858,-1.35678e-14,10.362,1.00834,-1.35678e-14,10.362,0.98194,-0.0601899,10.3616,1.00812,-0.131055,10.3616,0.979627,-0.185044,10.3616,0.923983,-0.214294,10.3616,0.8497,-0.227662,10.3616,0.775732,-0.233389,10.3616,0.707482,-0.232882,10.3616,0.636694,-0.229127,10.3616,0.566586,-0.017689,10.3616,1.0134,0.017689,10.3616,1.0134,-0.08941,10.3616,1.00024,-0.155591,10.3616,0.960347,-0.199203,10.3616,0.899825,-0.219881,10.3616,0.825997,-0.229351,10.3616,0.750063,-0.232507,10.3616,0.67903,-0.233742,10.3616,0.608742,-0.0510038,10.3616,0.969931,-0.109178,10.3616,0.947007,-0.151223,10.3616,0.903807,-0.17201,10.3616,0.844259,-0.172533,10.3616,0.772886,-0.168907,10.3616,0.707904,-0.167777,10.3616,0.637817,-0.168716,10.3616,0.567025,0.0082144,10.3616,0.974912,-0.0082144,10.3616,0.974912,-0.0098735,10.3616,0.974912,0.0098735,10.3616,0.974912,-0.0759873,10.3616,0.963329,-0.128201,10.3616,0.932196,-0.161618,10.3616,0.880715,-0.174046,10.3616,0.820026,-0.174747,10.3616,0.74863,-0.171026,10.3616,0.679996,-0.164992,10.3616,0.609417,-1.35678e-14,10.362,1.00878,-0.00184508,10.362,1.00878,0.00184508,10.362,1.00878,-0.0740821,10.362,0.998077,-0.141685,10.362,0.966305,-0.186123,10.362,0.9097,-0.211817,10.362,0.835899,-0.221131,10.362,0.760234,-0.225064,10.362,0.692295,-0.224758,10.362,0.621841,-1.35678e-14,10.362,0.981732,-0.00185591,10.362,0.981732,0.00185591,10.362,0.981732,-0.0661791,10.362,0.972209,-0.124558,10.362,0.94537,-0.162224,10.362,0.894108,-0.180229,10.362,0.833832,-0.181896,10.362,0.758982,-0.179235,10.362,0.692862,-0.175155,10.362,0.62245,-0.0717223,10.362,0.998814,-0.139563,10.362,0.967674,-0.185152,10.362,0.911611,-0.211292,10.362,0.837764,-0.221204,10.362,0.762253,-0.225262,10.362,0.694671,-0.224887,10.362,0.624182,-0.219987,10.362,0.553896,-0.0640072,10.362,0.972682,-0.122624,10.362,0.946333,-0.161252,10.362,0.896044,-0.179756,10.362,0.83576,-0.18147,10.362,0.760937,-0.178814,10.362,0.695199,-0.175204,10.362,0.62482,-0.178079,10.362,0.554197,-0.224142,10.362,0.622865,-0.220642,10.362,0.761078,-0.211143,10.362,0.836625,-0.0729526,10.33,0.998044,-0.140534,10.3274,0.966612,-0.185393,10.3277,0.909914,-0.225252,10.3069,0.693333,-0.219345,10.3064,0.552566,-0.0653429,10.33,0.972767,-0.12395,10.3272,0.946074,-0.160921,10.3276,0.896167,-0.178626,10.3084,0.833852,-0.182601,10.3064,0.757577,-0.179675,10.3069,0.693868,-0.176643,10.3076,0.623469,-0.178743,10.3064,0.552858,-1.36247e-14,10.33,1.00834,-1.36247e-14,10.33,0.98194,-0.0599612,10.325,1.00717,-0.130511,10.325,0.978815,-0.172526,10.2868,0.925894,-0.213094,10.3005,0.852416,-0.225418,10.2998,0.775609,-0.230729,10.2968,0.7075,-0.230053,10.3007,0.636742,-0.226517,10.2981,0.566605,-0.0174944,10.325,1.01244,0.0174944,10.325,1.01244,-0.0890758,10.325,0.999323,-0.154575,10.2867,0.948063,-0.197371,10.2997,0.899073,-0.217654,10.3002,0.826091,-0.228385,10.2968,0.747641,-0.232098,10.3006,0.679071,-0.230783,10.2983,0.608771,-0.0512325,10.325,0.970882,-0.109723,10.3245,0.947819,-0.152192,10.3201,0.910004,-0.170002,10.3006,0.84341,-0.177003,10.2998,0.773009,-0.173861,10.2968,0.707885,-0.170574,10.3007,0.637768,-0.171326,10.2981,0.567006,0.00840897,10.325,0.97587,-0.00840897,10.325,0.97587,-0.0100681,10.325,0.97587,0.0100681,10.325,0.97587,-0.0763215,10.325,0.964248,-0.134273,10.32,0.932191,-0.159273,10.2988,0.882956,-0.175784,10.3003,0.819536,-0.176251,10.2968,0.746345,-0.171747,10.3006,0.679955,-0.167906,10.2983,0.609388,-1.36247e-14,10.33,1.00878,-0.00184509,10.33,1.00878,0.00184509,10.33,1.00878,-0.0740821,10.33,0.998077,-0.141685,10.3273,0.966305,-0.186171,10.3278,0.909262,-0.211986,10.3084,0.838449,-0.222137,10.3062,0.757812,-0.225927,10.307,0.692295,-0.223661,10.3075,0.621841,-1.36247e-14,10.33,0.981732,-0.00185591,10.33,0.981732,0.00185591,10.33,0.981732,-0.0661791,10.33,0.972209,-0.124558,10.3271,0.94537,-0.160938,10.3277,0.895186,-0.178542,10.3085,0.8328,-0.182072,10.3062,0.756473,-0.179001,10.307,0.692862,-0.17595,10.3075,0.62245,-0.0717223,10.33,0.998814,-0.139563,10.3276,0.967674,-0.185206,10.3275,0.91119,-0.211652,10.3084,0.840889,-0.221936,10.3065,0.760432,-0.225837,10.3067,0.694671,-0.223791,10.3077,0.624182,-0.219987,10.3064,0.553896,-0.0640071,10.33,0.972682,-0.122624,10.3273,0.946333,-0.160094,10.3275,0.897059,-0.177683,10.3085,0.834988,-0.182021,10.3065,0.758997,-0.17907,10.3067,0.695199,-0.175993,10.3077,0.62482,-0.178079,10.3064,0.554197,-0.223045,10.3076,0.622865,-0.221511,10.3063,0.75891,-0.211388,10.3084,0.839436,-0.399454,10.1912,0.82599,-0.452448,11.5694,0.616933,-0.426792,11.5367,-0.348324,-0.132732,10.1853,-0.400425,-1.43325e-14,9.9315,1.13895,-0.255323,9.89616,1.10514,-0.38941,10.0171,0.925418,-0.443333,10.1314,0.659111,-0.392419,10.1217,0.395387,-0.380406,10.0928,0.138624,-0.378999,10.1807,-0.089564,-0.366665,10.1909,-0.159978,-0.425401,10.2982,0.753833,-0.416764,10.4044,0.755624,-0.367555,10.6275,0.811784,-0.461082,11.2445,0.645257,-0.462439,11.4362,0.637338,-0.414528,10.371,-0.348619,-0.52239,10.6349,-0.451086,-0.551502,10.8753,-0.486473,-0.522967,11.3342,-0.428964,-0.459395,11.472,-0.373482,-1.12849e-14,11.6472,-0.455321,-0.217016,11.6155,-0.432179,-0.342097,11.5759,-0.390496,-1.12556e-14,11.6636,0.746098,-0.17906,11.669,0.728054,-0.335935,11.6223,0.684665,-0.47637,11.6109,0.494521,-0.514765,11.6364,0.279343,-0.515404,11.639,0.149359,-0.495261,11.6079,-0.117871,-0.456745,11.569,-0.25749,2.82318e-14,9.90307,0.405319,-4.68144e-15,9.8353,0.694383,-1.44116e-14,9.88699,1.14111,-0.168114,9.92578,0.365245,-0.209143,9.8656,0.638926,-0.285437,9.83993,1.09844,-0.294308,9.96785,0.280378,-0.329722,9.97209,0.513292,-0.41753,9.98085,0.885168,-1.11021e-14,11.7501,-0.323595,-0.215544,11.7115,-0.307005,-0.35726,11.6542,-0.276448,-1.08951e-14,11.8666,-0.148027,-0.203216,11.8247,-0.135543,-0.399297,11.7413,-0.108161,-1.07807e-14,11.931,0.152039,-0.211692,11.8918,0.16615,-0.419436,11.7798,0.163066,-1.07609e-14,11.9422,0.366983,-0.226603,11.8865,0.365015,-0.410207,11.782,0.317379,-1.09391e-14,11.8419,0.595099,-0.192763,11.8107,0.574473,-0.355605,11.7368,0.534284,-1.20011e-14,11.244,0.926989,-1.16883e-14,11.4201,0.846887,-0.124144,10.721,1.014,-0.242234,11.3301,0.924598,-0.188895,11.4418,0.849156,-0.208676,10.6318,0.919191,-0.37953,11.3141,0.838598,-0.356523,11.4304,0.787248,-0.463262,10.2992,0.600177,-0.481286,10.4454,0.631333,-0.477137,10.6648,0.695305,-0.502096,11.2526,0.513941,-0.516038,11.4654,0.487412,-0.470139,10.3437,0.351654,-0.583408,10.6233,0.269269,-0.595596,10.7462,0.313027,-0.584441,11.2912,0.282267,-0.561977,11.4981,0.266841,-0.47537,10.2758,0.150212,-0.558481,10.4999,0.135879,-0.616291,11.3373,0.119779,-0.576561,11.5103,0.139566,-0.45109,10.3343,-0.114076,-0.609468,10.6043,-0.0796962,-0.665762,10.8138,-0.185119,-0.618417,11.3431,-0.170431,-0.567669,11.4973,-0.132473,-0.450826,10.3559,-0.225601,-0.564394,10.6269,-0.310792,-0.613202,10.855,-0.36269,-0.585796,11.3334,-0.312326,-0.533168,11.4747,-0.271723,-1.14644e-14,11.5461,-0.535241,-1.17733e-14,11.3722,-0.621512,-1.26533e-14,10.8768,-0.714553,-1.3195e-14,10.5719,-0.681045,-1.36114e-14,10.3375,-0.554951,-0.225215,11.5182,-0.499819,-0.234709,11.3588,-0.576113,-0.241441,10.8801,-0.674925,-0.219562,10.5853,-0.633742,-0.172581,10.35,-0.524528,-0.353519,11.4917,-0.44716,-0.390978,11.3424,-0.514406,-0.436582,10.8831,-0.588709,-0.39383,10.6186,-0.551646,-0.312326,10.3689,-0.452937,-0.37548,10.4836,0.802383,-0.527557,10.7042,-0.46155,-1.32964e-14,10.5148,1.03189,-0.0746014,10.5005,1.03675,-0.234707,10.5154,0.91918,-0.473743,10.5466,0.665379,-0.586791,10.6745,0.302855,-0.631247,10.6764,-0.102343,-0.582711,10.6981,-0.321279,-1.30564e-14,10.6499,-0.689956,-0.226577,10.661,-0.647556,-0.408647,10.6856,-0.565365,-0.429219,10.9068,0.790835,-0.433912,10.9294,0.775603,-0.557404,10.977,-0.48969,-0.556589,11.0769,-0.484563,-0.154381,10.9082,0.963284,-0.336041,10.9068,0.882869,-0.342571,10.9245,0.878542,-0.511805,10.9219,0.664659,-0.510421,10.9436,0.651184,-0.614866,10.8841,0.291385,-0.618445,10.9572,0.2917,-0.683845,10.958,-0.244369,-0.681679,11.0684,-0.226367,-0.624711,10.9688,-0.379683,-0.629442,11.0717,-0.37189,-1.2276e-14,11.0892,-0.69889,-1.24457e-14,10.9937,-0.709996,-0.245583,11.0951,-0.65788,-0.244428,10.9908,-0.669796,-0.440576,11.0939,-0.578723,-0.440186,10.9818,-0.584458,-0.200816,10.439,0.975586,-0.108843,10.439,1.07459,-1.34218e-14,10.4442,1.05601,-0.308051,10.4264,0.884971,-0.355054,10.3744,0.852871,-0.364427,10.3059,0.863021,-0.271216,10.1545,1.05667,-0.142921,10.1031,1.11827,-1.40354e-14,10.0988,1.11347,-0.342999,10.2345,0.924549,-0.163353,10.3127,1.07007,-1.37021e-14,10.2864,1.13076,-0.0558012,10.2926,1.11897,-0.110627,10.3011,1.09951,-0.209292,10.3204,1.01188,-0.221127,10.3236,1.00561,-0.200393,10.3099,1.05337,-1.36783e-14,10.2998,1.15783,-0.0737163,10.3056,1.15238,-0.143327,10.3143,1.11248,-3.37107e-06,11.0266,1.07358,-0.077448,11.02,0.972847,-0.0745121,10.9335,1.0364,-0.0579538,10.7016,1.19126,-0.0795366,10.6086,1.2173,-0.184893,10.5812,1.12381,5.5846e-05,10.6035,1.25919,-0.174531,10.6404,1.08822,-1.04809e-05,10.9432,1.12306,-4.04033e-05,10.6983,1.23131,-0.167489,10.9221,0.936482,2.31981e-08,11.1806,0.966221,-0.104656,11.1914,0.899335,-0.444006,10.9854,0.729617,-0.551947,11.1574,-0.472197,-0.389205,10.9888,0.783552,-0.500521,11.0151,0.618519,-0.645483,11.1319,0.154283,-0.665504,11.1914,0.017294,-0.67612,11.1399,-0.163789,-0.624597,11.1555,-0.349557,-1.2144e-14,11.1635,-0.686251,-0.245075,11.1624,-0.644418,-0.438935,11.1617,-0.570013,-1.38331e-14,10.2126,1.1688,-0.0875737,10.2184,1.15434,-0.172363,10.2711,1.10676,-0.258891,10.2877,1.0266,-0.310081,10.3164,0.953602,-0.3173,10.3358,0.940072,-0.28089,10.3491,0.997137,-0.0951129,10.3845,1.17147,-1.35594e-14,10.3667,1.18683,-0.189253,10.3586,1.08553,-0.365464,11.0087,0.788135,-0.120679,11.1894,0.85706,-0.173034,10.945,0.893742,-0.0825866,11.0505,0.905538,-0.284245,10.9515,0.87508,-0.345076,11.2282,0.787867,-0.246251,11.2493,0.81763,-0.220332,11.2293,0.765134,-0.322139,11.176,0.73378,-0.274504,10.9588,0.820598,-0.061928,11.0745,0.853117,-0.173185,10.9592,0.847756,-0.106058,11.1912,0.806999,-0.349601,11.0094,0.772848,-0.350653,11.0241,0.734151,-0.0954312,11.2157,0.761477,-0.145935,10.966,0.809912,-0.0295379,11.1061,0.801446,-0.27689,10.9511,0.782121,-0.329779,11.1829,0.698248,-0.222629,11.248,0.721882,-0.226299,11.2523,0.667157,-0.324742,11.182,0.664605,-0.273119,10.9614,0.723883,-0.0276122,11.1168,0.732177,-0.144571,10.9543,0.748691,-0.0959922,11.2235,0.696627,-0.34852,11.0256,0.690244,-0.553638,10.706,0.498157,-0.524777,10.5042,0.433283,-0.539238,10.599,0.472243,-0.571565,10.9092,0.513722,-0.57351,10.9546,0.507771,-0.554867,11.0504,0.470302,-0.563604,10.5585,0.211453,-0.624448,11.0348,0.275171,-0.665355,11.0257,0.210262,-0.619018,10.571,0.176682,-0.792715,11.143,-0.173748,-0.726978,11.2028,0.010407,-0.688244,11.1384,0.141538,-0.804249,11.0396,-0.255922,-0.808829,10.9159,-0.27337,-0.684608,10.9614,0.184497,-0.767663,10.6706,-0.1131,-0.62165,10.7204,0.196969,-0.805125,10.8097,-0.223616,-0.736733,10.5743,-0.0728808,-0.624058,10.5162,0.130889,-0.611291,10.659,0.206254,-0.698892,10.9688,0.160044,-0.791194,10.9101,-0.199463,-0.782406,11.004,-0.197145,-0.643064,10.5959,0.123046,-1.39254e-14,10.1607,1.10548,-0.114988,10.1662,1.12446,-0.218483,10.2091,1.06793,-0.296664,10.2629,0.973748,-0.328988,10.3106,0.92367,-0.327741,10.3543,0.911523,-0.298275,10.3926,0.932793,-0.103236,10.4141,1.11741,-1.34869e-14,10.4076,1.10157,-0.1933,10.396,1.0319,-0.152956,10.3295,1.01524,-0.0733876,10.324,1.04324,-1.36295e-14,10.3273,1.04689,-0.205792,10.3296,0.987933,-0.226919,10.3235,0.977459,-0.214168,10.3026,0.980081,-0.110411,10.2744,1.02057,-0.052524,10.2632,1.03307,-1.37435e-14,10.2631,1.03678,-0.17657,10.2881,0.998247,-0.202636,10.3148,1.01855,-0.145937,10.3025,1.06869,-0.0757857,10.293,1.10036,-1.36991e-14,10.2881,1.10454,-0.221201,10.3216,0.99253,-0.209041,10.3179,0.995313,-0.164482,10.3175,1.03504,-0.11032,10.3114,1.062,-0.0559177,10.3061,1.07749,-1.36663e-14,10.3066,1.08655,-1.38485e-14,10.204,1.16627,-0.0894155,10.2108,1.15418,-0.175529,10.2667,1.10377,-0.263028,10.2859,1.02136,-0.313183,10.3161,0.950864,-0.319437,10.3369,0.937709,-0.281958,10.3526,0.992235,-0.0956182,10.3867,1.16771,-1.3554e-14,10.3698,1.18328,-0.189492,10.361,1.0819,-0.252671,9.77079,0.288281,-0.162125,9.75374,0.328641,-9.08122e-09,9.72609,0.464248,-0.356487,9.87513,-0.17497,-0.387756,9.86153,-0.0925043,-0.348683,9.80152,0.206011,-0.233851,9.89524,-0.361654,-0.116009,9.90109,-0.421934,5.61898e-14,9.90886,-0.461296,-0.304767,9.88925,-0.274581,-0.422755,9.50869,-0.353824,-1.9812e-09,9.54597,-0.634602,-0.204347,9.53733,-0.566356,-0.321508,9.51335,-0.452169,-0.419412,9.48431,0.269811,-0.544903,9.51407,-0.150143,-0.482752,9.51155,-0.265337,-2.5313e-08,9.3268,0.43295,-0.137342,9.34716,0.407325,-0.302715,9.46059,0.417372,6.45004e-14,9.73536,-0.53064,-0.157355,9.71999,-0.479324,-0.269655,9.71141,-0.401103,-0.339643,9.69807,-0.312836,-0.439502,9.66681,-0.113468,-0.367949,9.61995,0.238593,-0.409912,9.67975,-0.200566,-0.115462,9.52801,0.363312,-2.2321e-08,9.53695,0.451493,-0.247966,9.60504,0.347553,-0.352463,10.0147,-0.158968,-0.221249,10.0117,-0.339442,-5.95078e-07,11.113,1.02066,-0.0826163,11.1187,0.930296,-0.0925817,11.1301,0.880443,-0.0708671,11.1468,0.825143,-0.0484494,11.1723,0.781049,-0.0591887,11.177,0.711778,-0.452531,11.0749,0.678757,-0.401231,11.1015,0.754424,-0.488835,11.1222,0.555562,-0.379924,11.0927,0.755029,-0.359399,11.0926,0.73821,-0.371697,11.0941,0.717259,-0.355616,11.0938,0.674933,-0.570062,11.1721,0.382147,-0.631332,11.0907,0.234523,-0.672029,11.0681,0.19401,-0.477474,10.5353,-0.409513,-0.520347,10.438,0.11689,-0.522838,10.5056,-0.148459,-0.518917,10.5182,-0.277649,-1.33616e-14,10.4781,-0.636822,-0.2022,10.4973,-0.600333,-0.363514,10.532,-0.518593,-0.535467,11.241,-0.451351,-0.615496,11.2182,0.211317,-0.641511,11.2592,0.0775873,-0.647995,11.2504,-0.188306,-0.605029,11.2447,-0.333,-1.19544e-14,11.2703,-0.658587,-0.231329,11.2532,-0.618527,-0.422362,11.2394,-0.548997,-0.575224,10.7238,0.397726,-0.549992,10.5628,0.32868,-0.56433,10.635,0.373522,-0.594298,10.8928,0.394905,-0.598062,10.9497,0.378241,-0.519475,10.4921,0.237282,-0.596076,11.0451,0.333038,-0.606307,11.1496,0.276202,-0.104556,11.637,-0.452158,-0.0810043,11.675,0.740934,-0.102978,11.7363,-0.321285,-0.102023,11.8457,-0.141785,-0.106261,11.9175,0.155022,-0.114512,11.9191,0.365999,-0.0897977,11.8349,0.58744,-0.0947687,11.4186,0.862457,-0.120671,11.286,0.925794,-0.086705,10.347,-0.541123,-0.110196,10.5786,-0.657394,-0.121135,10.8784,-0.694739,-0.110796,11.3685,-0.605683,-0.108349,11.536,-0.526789,-0.113703,10.6554,-0.668756,-0.123206,11.0921,-0.678385,-0.122629,10.9922,-0.689896,-0.122952,11.1629,-0.665335,-0.0456086,9.90349,-0.444072,-0.0818424,9.5345,-0.611983,-0.0404314,9.72569,-0.517485,-0.101515,10.4892,-0.619215,-0.116079,11.2617,-0.638557,-0.155487,11.2491,0.889681,-0.176341,11.2234,0.839736,-0.164725,11.2072,0.786467,-0.158635,11.2398,0.743145,-0.160591,11.2471,0.6832,-1.20479e-14,11.2176,0.940846,-0.0931579,11.2492,0.911592,-0.0602381,11.1888,0.935437,-0.0642064,10.5024,1.03628,-0.0966303,10.4394,1.07284,-0.0671636,10.3046,1.15284,-0.0408935,11.0333,1.02793,-0.0348837,10.6028,1.25218,-0.0383163,10.9456,1.0831,-0.0271015,10.6979,1.21558,-0.0863593,10.3825,1.17288,-0.0933653,10.4134,1.11593,-0.0387729,10.3283,1.045,-0.044513,10.2904,1.10084,-0.086801,10.3849,1.16914,-0.0439754,11.1189,0.979459,-0.510536,11.627,0.0092895,-0.415348,11.7633,-0.0014057,-0.207564,11.8602,-0.00689002,-1.08383e-14,11.8986,-0.00767155,-0.58388,11.5109,0.00176961,-0.629859,11.3501,-0.0274971,-0.668748,11.1714,-0.0848714,-0.767713,11.1942,-0.0755102,-0.750287,11.1399,-0.0654209,-0.651396,11.263,-0.0557948,-0.104197,11.8794,-0.00728078,-0.71024,11.0828,0.126623,-0.68804,11.0174,0.164007,-0.645955,10.686,0.139051,-0.652307,10.5689,0.106154,-0.767096,11.091,-0.143253,-0.729809,11.1359,0.0157568,-0.787169,10.8341,-0.153945,-0.766174,10.715,-0.0743866,-0.75185,10.6582,-0.0369792,-0.638572,10.7274,0.158951,-0.695855,11.0491,0.147974,-0.701235,10.917,0.127829,-0.686508,10.8899,0.146719,-0.652296,10.7752,0.13451,-0.632861,10.7665,0.177561,-0.384596,10.1327,0.0524655,-0.567372,10.4946,0.0631254,-0.451005,10.2975,0.032203,-0.673685,10.4607,0.0561098,-0.408104,9.83161,0.0616258,-0.552404,9.5045,0.0358535,-0.46998,9.64566,0.0489649,-0.519454,10.4519,0.0266493,-0.675461,10.5793,0.0614854,-0.422514,10.3521,0.754728,-0.471173,10.3767,0.597881,-0.359741,10.3401,0.857946,-0.215355,10.3229,1.00849,-0.31369,10.3261,0.946837,-0.503327,10.4187,0.382881,-0.573506,10.5923,0.240061,-0.619214,10.637,0.208596,-0.328365,10.3325,0.917597,-0.224926,10.3144,0.977509,-0.215294,10.3187,0.993958,-0.31631,10.3265,0.944287,-0.534734,10.5284,0.283341,-0.678201,10.6832,0.154186,-0.389116,10.7379,0.808944,-0.124594,10.7841,0.996314,-0.252939,10.7243,0.915355,-0.494763,10.7716,0.696993,-0.605187,10.8135,0.306467,-0.0671301,10.7776,1.1172,-3.46406e-05,10.7943,1.186,-0.56524,10.7921,0.508561,-0.58534,10.8055,0.402182,-0.0253499,10.7879,1.16161,-0.651476,10.8273,0.158056,-0.579509,10.5136,0.016258,-0.451246,10.3191,-0.0498534,-0.702187,10.4986,-0.0203015,-0.407297,9.84936,-0.0260794,-0.58061,9.51567,-0.0488354,-0.460001,9.65729,-0.0427455,-0.52134,10.4868,-0.0592735,-0.724198,10.6118,0.00814378,-0.661323,11.1347,0.147841,-0.642032,11.0324,0.2388,-0.641289,10.9656,0.201458,-0.602735,10.6387,0.237416,-0.583054,10.5868,0.204947,-0.587988,10.551,0.134747,-0.711682,11.1156,-0.143362,-0.696241,11.1719,0.013335,-0.719063,11.0595,-0.212123,-0.721965,10.9451,-0.230062,-0.708268,10.8148,-0.170336,-0.673587,10.6658,-0.072383,-0.649904,10.5942,-0.037935,-0.604266,10.701,0.247903,-0.647658,11.0773,0.215766,-0.718231,11.1575,-0.0815112,-0.612797,10.7648,0.242064,-0.641331,10.894,0.187727,-0.624977,10.506,0.0630326,-0.592894,10.6004,0.220809,-0.625475,10.8259,0.223558,-0.623004,10.5217,0.0147998,-0.460656,11.2741,0.644036,-0.500072,11.4036,-0.404726,-1.1927e-14,11.2857,0.892014,-0.23398,11.3707,0.912965,-0.37007,11.3499,0.830679,-0.512733,11.3445,0.493842,-0.575948,11.3986,0.270054,-0.602634,11.4263,0.13474,-0.599982,11.4244,-0.148575,-0.56708,11.4096,-0.289856,-1.16205e-14,11.4582,-0.590967,-0.228757,11.4377,-0.547593,-0.374168,11.4167,-0.488579,-0.119331,11.3137,0.916027,-0.108016,11.4514,-0.57715,-0.613788,11.4334,-0.00775994,-0.127791,10.9051,0.97629,-0.120371,10.7198,1.02446,-0.0400474,10.5284,1.07944,-0.228474,10.5197,0.94778,-3.68286e-07,10.5256,1.06943,-0.207028,10.6315,0.92845,-0.129973,10.9403,0.943794,-0.122111,10.9687,0.901366,-0.120519,10.9876,0.855965,-0.122228,10.9878,0.81283,-0.120035,10.9762,0.74961,-0.0350749,10.5187,1.07791,-0.116944,10.7847,1.00382,-0.404245,10.1327,0.429594,-0.504914,11.63,0.386099,-3.88688e-09,9.7896,0.817192,-0.236144,9.81615,0.741243,-0.358849,9.96274,0.568984,-0.389451,11.7719,0.421173,-0.216638,11.857,0.46152,-1.08329e-14,11.9016,0.475742,-0.547929,11.485,0.373463,-0.541634,11.2746,0.405494,-0.482063,10.3433,0.362299,-0.552703,10.6988,0.541043,-0.523456,10.5016,0.441584,-0.5373,10.5971,0.479398,-0.547223,10.9156,0.593866,-0.544784,10.9535,0.584453,-0.527694,11.0328,0.54441,-0.529448,11.1472,0.468855,-0.10258,11.8863,0.4718,-0.502899,10.4158,0.395472,-0.547713,10.7848,0.574532,-0.549136,11.3765,0.380214,-0.680623,11.1373,0.143322,-0.658752,11.0276,0.218341,-0.661412,10.9632,0.18864,-0.609031,10.6538,0.221445,-0.596998,10.5713,0.200415,-0.608952,10.5111,0.138736,-0.776212,11.1425,-0.172821,-0.718277,11.2012,0.0112359,-0.7869,11.0436,-0.252317,-0.791139,10.9218,-0.269892,-0.7854,10.8124,-0.215631,-0.750146,10.6708,-0.105534,-0.72383,10.5705,-0.0656742,-0.616729,10.7151,0.213672,-0.66513,11.0707,0.200169,-0.753705,11.1909,-0.077209,-0.62787,10.7681,0.193286,-0.667607,10.8853,0.162465,-0.662067,10.4721,0.05665,-0.605895,10.6209,0.214813,-0.642448,10.8262,0.180083,-0.689514,10.5074,-0.0132382,-0.648295,11.1324,0.153139,-0.627569,11.0344,0.268714,-0.6225,10.9587,0.275673,-0.586839,10.6263,0.263667,-0.567057,10.5632,0.210228,-0.570832,10.5193,0.137849,-0.686469,11.1149,-0.164975,-0.67096,11.1673,0.0165912,-0.692558,11.0658,-0.229353,-0.694938,10.9543,-0.247337,-0.678132,10.8142,-0.187734,-0.643037,10.6658,-0.100323,-0.619887,10.5976,-0.073352,-0.589893,10.6791,0.294138,-0.63423,11.0883,0.231194,-0.677532,11.1482,-0.0842749,-0.59865,10.7493,0.301786,-0.619564,10.8865,0.272008,-0.586366,10.505,0.0674749,-0.576948,10.5938,0.236649,-0.608789,10.8161,0.291847,-0.587649,10.5186,0.0147628,-0.690262,10.8168,0.0443389,-0.698211,10.8539,0.0381383,-0.652295,10.8172,0.134702,-0.731763,10.7139,0.0666362,-0.690132,10.6981,0.123304,-0.675461,10.5959,0.0649202,-0.715106,10.6144,0.0165672,-0.638753,10.691,0.123788,-0.700284,10.7022,0.0616478,-0.735362,10.7052,-0.00538407,-0.749447,10.7401,-0.0465187,-0.737426,10.6659,-0.0385318,-0.751306,10.727,-0.0769062,-0.751786,10.8575,-0.105106,-0.742845,10.8406,-0.0579251,-0.732326,10.8819,-0.0258034,-0.733486,10.9169,-0.0692055,-0.732016,10.9554,-0.0247638,-0.728453,10.9107,0.0198262,-0.718742,10.8665,-0.0127313,-0.708696,10.888,0.0305672,-0.711174,10.7415,-0.044398,-0.720938,10.8357,-0.0503472,-0.721681,10.7021,-0.00937895,-0.762661,11.0085,-0.0687209,-0.771348,10.9597,-0.115726,-0.73949,10.9114,-0.139477,-0.748139,10.8078,-0.0622364,-0.709492,10.8123,-0.0559991,-0.751107,10.8314,-0.158436,-0.753243,10.912,-0.205976,-0.749498,11.0055,-0.191622,-0.733251,11.0908,-0.140437,-0.715413,11.1357,-0.06538,-0.693682,11.1361,0.0126437,-0.692406,11.0489,0.142496,-0.685947,11.0153,0.15218,-0.679899,10.9711,0.145924,-0.687567,11.0798,0.123717,-0.410368,10.8282,0.800965,-0.136042,10.845,0.982143,-0.298062,10.8182,0.900603,-0.511886,10.8506,0.680826,-0.610026,10.8488,0.298926,-0.0747783,10.8566,1.07918,-2.18783e-05,10.8657,1.15439,-0.568014,10.8547,0.515562,-0.589819,10.8492,0.398544,-0.031791,10.8635,1.13309,-0.650336,10.8406,0.151253,-0.633403,10.8599,0.205642,-0.121598,10.8502,0.992103,-0.550912,10.8585,0.586865,-0.643729,10.8463,0.172516,-0.614176,10.8513,0.281927,-0.634146,10.8226,0.133344,-0.673339,10.8112,0.0730934,-0.672532,10.7667,0.100891,-0.691208,10.7616,0.0365957,-0.686134,10.7438,0.0824198,-0.620101,10.7293,0.153769,-0.630552,10.7646,0.132385,-0.694856,10.7991,-0.000749676,-0.699695,10.8339,-0.00587305,-0.673149,10.9341,0.111901,-0.700465,11.0464,0.0841271,-0.703234,10.9672,0.106715,-0.701355,11.0139,0.0962658,-0.736907,11.054,0.0360562,-0.70987,10.9477,0.0844722,-0.713396,10.9997,0.058729,-0.685604,10.919,0.0938407,-0.693887,10.8684,0.119749,-0.709115,10.8966,0.104323,-0.673228,10.8302,0.103724,-0.749707,11.041,-0.01575,-0.721114,10.9306,0.0513706,-0.723086,10.9823,0.0177463,-0.695762,10.9026,0.0674903,-0.693935,10.8514,0.0866304,-0.701632,10.8761,0.0755774,-0.673652,10.7783,0.0693107,-0.694919,10.7684,-0.000299593,-0.708718,10.776,-0.0532533,-0.540278,10.7867,-0.474951,-0.648505,10.7451,-0.143731,-0.598658,10.7726,-0.34249,-1.28549e-14,10.7633,-0.702254,-0.234009,10.7705,-0.66124,-0.422615,10.7843,-0.577037,-0.786394,10.7401,-0.168358,-0.117419,10.7669,-0.681747,-0.776599,10.7734,-0.113603,-0.690927,10.7403,-0.12136,-0.767773,10.7416,-0.160582,-0.660585,10.74,-0.144029,-0.76003,10.7735,-0.116831,-0.753437,10.7901,-0.0862972,-0.747974,10.7757,-0.0580357,-0.75013,10.7618,-0.0736133,-0.594223,10.7796,0.079863,-0.59239,10.8226,0.105135,-0.590312,10.7713,0.125581,-0.591702,10.7724,0.105406,-0.594189,10.8121,0.0837459,-0.591097,10.8153,0.126207,-0.0999189,10.9137,1.00425,-0.0869242,10.7079,1.11348,-0.03926,10.5595,1.1351,-0.203795,10.5386,1.04709,-1.59847e-07,10.5501,1.16542,-0.186929,10.6339,1.01188,-0.0998307,10.9668,0.958611,-0.0891416,11.0028,0.908802,-0.0833414,11.0199,0.853902,-0.0661678,11.0385,0.812066,-0.0619742,11.0408,0.742919,-0.0314391,10.5578,1.14152,-0.0905541,10.7793,1.06284,-0.0945738,10.8506,1.03736,-0.160382,10.6752,0.970909,-0.165343,10.5101,0.977124,-0.226369,10.8999,0.925331,-0.156967,10.4418,1.02494,-0.109225,10.3097,1.13213,-0.123296,10.595,1.16475,-0.110818,10.6686,1.14354,-0.231392,10.9201,0.909543,-0.143002,10.3709,1.12815,-0.231674,10.9381,0.884863,-0.223786,10.9465,0.836655,-0.211822,10.9503,0.800684,-0.211017,10.9426,0.740212,-0.148294,10.4066,1.07465,-0.110994,10.3244,1.0338,-0.111228,10.2982,1.08437,-0.143334,10.3732,1.12447,-0.171444,10.7356,0.959667,-0.155046,10.5175,1.02966,-0.159658,10.6729,0.979506,-0.2004,10.8172,0.944759,-0.138148,10.5377,1.09578,-0.132221,10.6701,1.06519,-0.0977757,10.6854,1.06058,-0.0939712,10.6621,0.978184,-0.0524104,10.6918,1.0773,-0.0476334,10.665,0.995607,-0.0572947,10.6269,1.12423,-0.0553486,10.5928,1.02847,-0.176849,10.5964,1.00219,-0.176219,10.6256,1.09857,-1.391e-14,10.1694,1.01519,-0.0394381,10.1692,1.01097,-0.241828,10.2858,0.943414,-0.250902,10.3433,0.939997,-1.35081e-14,10.3956,1.00991,-0.16732,10.3805,0.974832,-0.0586161,10.3913,1.01158,-0.223326,10.3604,0.950324,-0.10163,10.1917,0.993811,-0.22354,10.2323,0.955849,-0.0286463,10.3972,1.01356,-0.253877,10.3213,0.938548,-0.104391,10.3751,1.0003,-0.145697,10.4487,0.816518,-0.263806,10.2891,0.811724,-0.0421492,10.4442,0.816366,-0.195139,10.1666,0.813551,-1.39902e-14,10.1242,0.817029,-0.0513,10.1255,0.816865,-0.117556,10.1357,0.815838,-0.247324,10.2226,0.811345,-0.263334,10.3619,0.813794,-0.241704,10.4152,0.815076,-1.34269e-14,10.4414,0.816519,-0.0891039,10.4479,0.816681,-0.202505,10.4398,0.815921,-0.211328,10.4418,0.482295,-0.0902159,10.4473,0.471235,-1.34365e-14,10.4359,0.473359,-0.243899,10.4209,0.482371,-0.248375,10.3701,0.480286,-0.211108,10.2532,0.472559,-0.115512,10.1634,0.458181,-0.0527663,10.173,0.46396,-1.38979e-14,10.1762,0.463935,-0.172066,10.1982,0.462861,-0.0422708,10.4409,0.469801,-0.234289,10.3105,0.477969,-0.151055,10.4503,0.477849,-0.106746,10.4044,0.383907,-0.180663,10.3141,0.402206,-0.0300477,10.3977,0.382492,-0.132566,10.2405,0.387593,-1.38902e-14,10.1805,0.381336,-0.0374266,10.182,0.381688,-0.082032,10.1977,0.375535,-0.160964,10.2787,0.394712,-0.196317,10.3551,0.412009,-0.172206,10.3839,0.395286,-1.35106e-14,10.3942,0.386154,-0.0638514,10.4022,0.380147,-0.149242,10.3983,0.391901,-0.0337372,10.2938,0.352247,-1.36874e-14,10.2947,0.352385,-0.0729417,10.3071,0.351893,-0.118441,10.3271,0.362759,-0.134558,10.3366,0.370138,-0.154695,10.3425,0.379841,-0.243899,10.4209,0.749809,-0.243899,10.4209,0.682949,-0.243899,10.4209,0.61609,-0.243899,10.4209,0.549231,-0.211328,10.4418,0.749793,-0.211328,10.4418,0.682919,-0.211328,10.4418,0.616044,-0.211328,10.4418,0.549169,-0.263446,10.3594,0.748244,-0.261445,10.3625,0.681927,-0.259458,10.366,0.615388,-0.260396,10.3716,0.548855,-0.194968,10.1628,0.743984,-0.193579,10.1546,0.672167,-0.188229,10.1673,0.600696,-0.184861,10.1778,0.532505,-0.247174,10.2111,0.743963,-0.245873,10.2068,0.676649,-0.23831,10.219,0.608753,-0.231547,10.2329,0.542132,-0.118733,10.1408,0.744121,-0.11842,10.1358,0.668817,-0.116694,10.1464,0.590886,-0.115322,10.1497,0.524354,-0.0525052,10.1276,0.744881,-0.0530738,10.1277,0.670208,-0.0533342,10.1433,0.601175,-1.39881e-14,10.1254,0.744688,-1.39848e-14,10.1273,0.670636,-1.39535e-14,10.1449,0.60426,-0.0913876,10.4469,0.747698,-0.0910947,10.447,0.678582,-0.0908017,10.4471,0.609466,-0.0905088,10.4472,0.540351,-0.0431541,10.4413,0.747307,-0.0416607,10.4402,0.677712,-0.0418641,10.4404,0.608409,-0.0420674,10.4406,0.539105,-1.34331e-14,10.4378,0.747819,-1.34365e-14,10.4359,0.679344,-1.34365e-14,10.4359,0.610682,-1.34365e-14,10.4359,0.542021,-0.263461,10.2792,0.745829,-0.260614,10.283,0.679577,-0.256365,10.2921,0.613192,-0.252771,10.301,0.547317,-0.151055,10.4503,0.748904,-0.151055,10.4503,0.681141,-0.151055,10.4503,0.613377,-0.151055,10.4503,0.545613,-0.129014,10.45,0.882277,-0.0771839,10.4544,0.884508,-0.189687,10.4391,0.877803,-0.243497,10.257,0.869308,-0.26089,10.3139,0.867099,-0.258923,10.3652,0.868102,-0.0376292,10.4486,0.884154,-1.34179e-14,10.4464,0.884075,-1.39789e-14,10.1306,0.897189,-0.0475267,10.135,0.894163,-0.114516,10.1493,0.889364,-0.204964,10.1976,0.880507,-0.233415,10.405,0.870074,-0.0540869,10.1941,0.573131,-1.38659e-14,10.1942,0.573049,-0.113031,10.1963,0.571311,-0.0927196,10.2871,0.481887,-0.109,10.2361,0.528889,-0.0531513,10.291,0.486262,-1.36827e-14,10.2973,0.486244,-0.0536445,10.3358,0.5562,-0.0934903,10.3251,0.554205,-1.36076e-14,10.3396,0.556192,-0.119859,10.2323,0.593451,-0.120582,10.2789,0.574944,-0.0697161,10.2282,0.594774,-1.38053e-14,10.2283,0.594776,-0.0758246,10.236,0.626537,-1.37977e-14,10.2326,0.626843,-0.113494,10.2465,0.625696,-0.128092,10.2867,0.616656,-0.102105,10.3284,0.607489,-1.36156e-14,10.3351,0.608721,-0.0602482,10.3326,0.608664,-0.103604,10.3267,0.673093,-0.0615983,10.3291,0.674167,-1.36262e-14,10.3291,0.674295,-0.113494,10.2513,0.680324,-0.128092,10.2885,0.67655,-0.0759438,10.242,0.68112,-1.37796e-14,10.2428,0.677037,-1.37608e-14,10.2534,0.758614,-0.0761353,10.2529,0.760278,-0.113494,10.2601,0.759416,-0.113494,10.3184,0.756909,-0.126964,10.2889,0.757853,-0.0779899,10.3203,0.757988,-1.36419e-14,10.3203,0.758148,-0.111236,10.3034,0.864413,-0.0782463,10.3099,0.86245,-1.36579e-14,10.3113,0.862133,-0.12172,10.2833,0.859643,-0.112429,10.26,0.855025,-0.0765025,10.2528,0.855079,-1.37617e-14,10.2528,0.855215,-0.073097,10.2554,0.894419,-1.37571e-14,10.2554,0.894488,-0.102923,10.2648,0.894354,-0.108893,10.2833,0.896556,-0.102133,10.2996,0.89882,-1.36692e-14,10.3049,0.897818,-0.0728805,10.304,0.897967,-0.0902195,10.2883,0.922299,-0.0631656,10.2896,0.944965,-1.36958e-14,10.2899,0.944965,-0.0902016,10.2743,0.922299,-0.0916436,10.2817,0.925139,-0.0646987,10.2685,0.944965,-1.3734e-14,10.2684,0.944965,-0.0636431,10.2796,0.952236,-1.37149e-14,10.2792,0.952944,-0.116967,10.4296,0.941053,-0.06832,10.4393,0.947865,-0.261104,10.3222,0.904768,-0.0331772,10.4358,0.948837,-0.108073,10.166,0.941588,-0.214252,10.2143,0.918178,-0.229728,10.3868,0.912631,-0.0434824,10.1488,0.952568,-1.39498e-14,10.147,0.956192,-1.34386e-14,10.4347,0.948062,-0.257884,10.3581,0.906257,-0.24588,10.2747,0.908379,-0.178983,10.4158,0.927398,-0.565606,10.7726,0.145421,-0.556043,10.7733,0.129054,-0.555927,10.8218,0.128854,-0.566035,10.8144,0.146156,-0.545193,10.8121,0.11048,-0.543231,10.7796,0.107122,-0.505215,10.8121,0.17736,-0.502137,10.7796,0.174983,-0.522237,10.7733,0.190511,-0.537912,10.8144,0.20262,-0.537238,10.7726,0.2021,-0.522054,10.8218,0.190369,-0.197283,10.9605,0.638722,-0.0807237,11.0367,0.641127,-0.126387,10.986,0.646286,-0.157394,11.1973,0.596132,-0.309613,11.077,0.589679,-0.0782476,11.1419,0.618438,-0.304075,11.0238,0.60163,-0.106973,11.1786,0.606612,-0.147183,10.9713,0.643103,-0.0536272,11.0952,0.63404,-0.245229,10.9738,0.627722,-0.285516,11.1458,0.581619,-0.208476,11.1979,0.583176,-0.20441,11.15,0.535694,-0.258772,11.1112,0.534285,-0.23031,10.9894,0.566961,-0.0947102,11.0754,0.571373,-0.159809,10.9859,0.579525,-0.132453,11.1344,0.551968,-0.271903,11.0249,0.548443,-0.112129,11.1084,0.560335,-0.275821,11.0625,0.539988,-0.168125,11.1477,0.544553,-0.146261,10.9982,0.57979,-0.113913,11.0341,0.576213,-0.196343,10.9792,0.575449,-0.326267,10.2053,-0.265618,-0.245154,10.1854,-0.342259,-1.38736e-14,10.1899,-0.436339,-0.0671483,10.1876,-0.418382,-0.383831,10.1631,-0.0274031,-0.357489,9.91883,0.16852,-0.274223,9.85766,0.274844,-0.156274,9.82288,0.340451,3.04379e-14,9.80198,0.446641,-0.300982,10.0205,-0.262537,-0.372244,9.99644,-0.0836739,-0.115069,10.0148,-0.397971,4.37794e-14,10.0221,-0.433781,-0.0519322,10.0182,-0.415898,-0.385338,9.95555,0.0533378,-0.38213,9.97927,-0.0218729,6.16662e-14,9.80912,-0.497066,-0.130963,9.7992,-0.450577,-0.255697,9.79283,-0.380673,-0.320107,9.78071,-0.292285,-0.410926,9.74826,-0.10315,-0.354287,9.69448,0.221694,-0.378747,9.76182,-0.188379,-0.131973,9.65556,0.334844,-1.26745e-08,9.62446,0.463766,-0.248036,9.67531,0.317779,-0.0410956,9.80278,-0.481335,-0.433838,9.7226,0.0628111,-0.434421,9.73748,-0.0339391,-1.24971e-10,9.63501,-0.582608,-0.164556,9.62046,-0.523274,-0.296227,9.61899,-0.423644,-0.368818,9.59499,-0.331992,-0.491356,9.579,-0.130489,-0.380992,9.54437,0.255593,-0.443525,9.58778,-0.216391,-0.13278,9.41483,0.408378,-2.59521e-08,9.44552,0.378801,-0.257239,9.52379,0.386033,-0.048137,9.62104,-0.566386,-0.51391,9.56452,0.0370312,-0.515342,9.57445,-0.053678,-1.97281e-08,9.30618,0.487465,-0.151626,9.31552,0.460271,-0.314217,9.40151,0.486047,-0.637388,9.49272,0.0427428,-0.669475,9.53021,-0.060785,-0.630328,9.5261,-0.171552,-0.571138,9.51347,-0.30568,-0.479333,9.46972,0.312565,-0.10844,9.44769,-0.669188,-0.399588,9.42503,-0.488905,-0.243613,9.46105,-0.596024,-0.503418,9.47107,-0.406336,-0.308745,9.78999,0.24471,-0.366563,9.47599,0.330982,-0.311485,9.61346,0.286625,-0.308802,9.68818,0.272209,-0.321471,9.53352,0.312602,-0.398998,9.43395,0.393863,-0.373174,9.81313,0.154787,-0.388581,9.82025,0.11773,-0.398342,9.82593,0.089678,-0.462669,9.49171,0.195261,-0.492548,9.49505,0.142579,-0.522208,9.50118,0.0893293,-0.400375,9.62936,0.178369,-0.424238,9.63433,0.135593,-0.447286,9.64065,0.092317,-0.386425,9.70686,0.166862,-0.40534,9.71261,0.127893,-0.419654,9.71787,0.0953723,-0.421512,9.55072,0.187313,-0.453303,9.55487,0.135073,-0.483621,9.56096,0.086071,-0.598211,9.48924,0.108607,-0.56077,9.48228,0.174045,-0.532305,9.48062,0.223316,-0.308934,9.83946,0.240261,-0.361204,9.8864,0.168093,-0.387742,9.90697,0.0896456,-0.336656,9.83527,0.201874,-0.375281,9.86145,0.117755,-0.370832,9.856,0.16459,-3.53271,8.93966,0.0385299,-3.55728,9.14192,-0.0518263,-3.51973,8.76309,-0.0055576,-3.5172,8.78074,-0.516791,-3.52086,8.72862,-0.386739,-3.52307,8.69472,-0.231988,-3.509,9.2781,-0.621314,-3.53936,9.36413,-0.0735251,-3.51792,9.47331,-0.261818,-3.50592,9.41089,-0.540366,-3.5219,8.69284,-0.103315,-3.55315,9.18472,-0.597015,-3.52054,8.85,-0.574394,-3.49364,8.88432,-0.632916,-3.51269,9.13992,-0.683629,-3.52354,8.99726,-0.694871,-3.23579,8.68577,-0.2146,-3.23538,8.69125,-0.0765202,-3.23631,8.77053,0.0289004,-3.24047,9.43861,-0.285127,-3.21866,9.3612,-0.562044,-3.22256,9.24069,-0.637826,-3.25659,9.33905,-0.0648301,-3.26334,9.14622,0.00442942,-3.22626,8.96547,-0.698667,-3.22886,8.74969,-0.526909,-3.23263,8.71305,-0.373209,-3.2426,8.95916,0.0879961,-3.22998,9.12495,-0.698015,-3.2226,8.86217,-0.632182,-3.29302,9.17904,-0.648379,-3.26939,8.8245,-0.58246,-1.78248,9.01659,0.283178,-1.84517,9.336,0.29064,-1.73691,8.78354,0.0882704,-1.59461,8.62454,-0.549366,-1.65518,8.55291,-0.400243,-1.71381,8.58756,-0.272841,-1.57701,8.82525,-0.613852,-1.56785,9.12862,-0.650022,-1.86091,9.5127,0.0594057,-1.83571,9.5246,-0.248507,-1.69284,9.39824,-0.510833,-1.71955,8.64968,-0.0726239,-2.05894,8.57005,0.117433,-2.09829,9.47765,-0.584879,-2.10676,9.60547,-0.256922,-2.10825,9.58872,0.100713,-2.09163,9.20236,-0.763438,-2.09531,8.88584,-0.674857,-2.08566,8.48161,-0.241345,-2.09935,8.50216,-0.407392,-2.09976,8.63861,-0.572406,-2.06993,8.74388,0.268335,-2.1053,9.36029,0.35293,-2.10379,9.01036,0.412135,-2.48504,9.09681,0.391659,-2.48504,9.37692,0.32779,-2.47507,8.79479,0.219333,-2.48363,8.58477,-0.573036,-2.48504,8.43115,-0.409061,-2.48457,8.42307,-0.26147,-2.47682,8.92267,-0.689248,-2.46824,9.23494,-0.797659,-2.48505,9.56622,0.0916448,-2.47897,9.59016,-0.274964,-2.46795,9.49763,-0.620191,-2.47158,8.53764,0.0709101,-8.19318e-10,8.98407,0.871272,-6.07399e-10,8.85124,0.954692,-0.618597,9.21616,0.655142,-1.09254,9.63558,0.199241,-1.05371,9.52471,0.347742,-0.0906458,9.17252,-0.838391,-0.922976,9.55129,-0.423603,-1.18876,9.61026,-0.490904,-0.169381,9.01186,0.862073,-1.24826,9.32032,0.483796,-1.37013,9.56234,0.335526,-0.718483,9.13784,0.745622,-0.850847,8.51603,1.00426,-0.22855,8.41494,1.08291,-0.262885,8.01715,1.07267,-0.864353,8.16147,0.972893,-0.92076,7.94654,0.843309,-0.252318,7.80842,1.0226,-0.265432,7.1721,0.998005,-0.728284,7.18612,0.722623,-1.30488,8.16219,0.465497,-1.32706,8.11728,0.146963,-0.200992,8.25777,-0.888076,-0.316013,7.74242,-0.717755,-5.4328e-16,7.68038,-0.660519,-0.948509,7.24015,0.456993,-1.00503,7.25226,0.209026,-1.19241,7.89059,0.504508,-1.17143,7.84008,0.182274,-3.32622e-15,7.7911,1.03263,-8.15617e-15,7.16593,1.01818,-0.471197,9.31293,0.505497,-0.861986,9.55216,0.180823,-0.604638,9.36104,-0.621002,-0.103068,8.71073,-0.944721,-8.88178e-16,8.71168,-0.93566,-0.797872,9.30228,-0.675607,-0.88092,9.34697,0.479899,-1.10168,9.16654,0.605672,-0.69891,9.45723,0.314125,-1.1424,8.61768,0.793672,-1.27056,8.53547,0.654985,-1.04553,8.35566,0.872794,-1.1406,8.26092,0.743623,-1.00606,9.68638,-0.251181,-1.28303,9.73166,-0.22218,-1.06072,8.76975,-0.815829,-1.21818,8.9126,-0.769601,-0.852679,9.42988,-0.559455,-1.3905,9.17398,-0.724091,-0.889176,9.01608,-0.812752,-0.999182,9.21922,-0.74199,-1.05691,9.3772,-0.646555,-1.07229,9.74688,-0.0190133,-1.37129,9.74182,0.0165571,-0.507836,9.17665,-0.816529,-0.367471,9.16778,-0.821654,-0.745335,8.88067,-0.9204,-0.477007,8.78956,-0.966174,-0.606028,8.42124,-0.930858,-0.860672,8.63326,-0.914979,-0.982482,8.30248,-0.798095,-0.758455,8.00985,-0.811834,-0.714566,9.17224,-0.763963,-0.873829,7.68193,-0.49337,-1.04316,8.03528,-0.465609,-1.12593,7.81484,-0.104985,-1.01567,7.52358,-0.0865537,-1.05949,7.50266,0.19325,-0.234837,7.49952,0.965813,-0.828629,7.55758,0.713552,-1.01447,7.53504,0.477333,-0.559309,9.27079,-0.734196,-0.182087,9.08699,0.785045,-0.45559,9.06154,0.806098,-0.558247,8.45665,1.04947,-0.56777,8.06453,1.0451,-0.567862,7.85681,0.965143,-0.484936,7.18898,0.906272,-0.515032,7.53017,0.891048,-0.403789,9.14058,0.727263,-0.783121,9.29154,0.550171,-0.954559,9.14327,0.720381,-0.608269,9.39758,0.402321,-1.01094,8.59025,0.913065,-0.607378,9.07176,-0.86116,-0.398363,9.00024,-0.909699,-0.0887395,8.98237,-0.90744,-0.232527,8.21765,1.11596,-0.863969,8.33394,1.01853,-0.56358,8.26013,1.07643,-0.992909,8.44226,0.932308,-1.19979,8.24159,-0.417019,-1.21638,8.10159,-0.128938,-1.38987,8.43047,0.417023,-1.46463,8.37332,0.141409,-1.39627,8.33312,-0.119721,-1.34001,8.35168,-0.373651,-1.16026,8.48528,-0.694675,-1.3072,8.55617,-0.64236,-0.20758,8.68362,1.03038,-0.839249,8.74289,0.960703,-1.14759,8.81277,0.709865,-1.3092,8.76886,0.568811,-0.537619,8.69624,0.987843,-1.0327,8.803,0.84225,-1.5876,8.65186,0.253153,-1.43932,8.67641,0.3971,-1.54885,8.49739,-0.292294,-1.6003,8.51595,-0.0509229,-1.45176,8.58162,-0.594108,-0.815225,7.41915,-0.443015,-0.970838,7.30016,-0.0672741,-0.610025,7.70142,-0.680558,-1.69621,9.61648,-0.254011,-1.50167,9.47892,-0.560166,-1.70901,9.43589,0.377568,-1.7465,9.61705,0.0812753,-0.258205,7.91397,1.05016,-0.898415,8.06171,0.910976,-0.990808,9.44559,0.406973,-1.17979,9.21309,0.549524,-0.801039,9.51348,0.238317,-1.20544,8.58174,0.723446,-1.09552,8.31258,0.80783,-0.22636,9.15867,-0.824132,-0.257731,8.73454,-0.998635,-0.371786,8.32256,-0.94746,-0.574213,7.96376,1.01037,-0.245345,8.98247,-0.908579,-1.23275,8.79765,0.638089,-0.522385,7.41134,-0.611081,-0.798038,7.18603,-0.370506,-0.971148,7.09784,-0.0471689,-0.960401,6.98901,0.470768,-0.935818,8.45668,-0.852145,-0.698927,8.18901,-0.865266,-1.10419,8.64118,-0.749019,-1.27293,8.71021,-0.703803,-1.42062,8.82416,-0.674693,-0.504542,7.97065,-0.799103,-1.01471,8.17649,-0.656909,-0.819289,7.84342,-0.648312,-1.18726,8.35591,-0.575959,-1.32451,8.43518,-0.509965,-1.53579,8.46618,-0.421397,-0.705493,7.55552,-0.563379,-0.65491,7.28619,-0.530877,-0.177838,8.88435,0.967381,-0.82788,8.95955,0.880941,-1.13439,9.01736,0.651603,-1.28256,8.98719,0.516388,-0.513964,8.89403,0.915619,-1.00399,9.00809,0.781245,-1.64145,8.96327,0.368933,-1.41351,8.95905,0.375316,-1.21024,9.00673,0.584812,-1.81993,8.95177,0.360869,-1.85467,9.32555,0.3659,-1.82011,8.64204,0.202237,-1.61943,8.58434,-0.575143,-1.66481,8.48348,-0.409546,-1.79511,8.48038,-0.261805,-1.60846,8.82187,-0.652062,-1.608,9.16564,-0.705058,-1.86654,9.58748,0.10279,-1.8593,9.60172,-0.251078,-1.77095,9.45245,-0.535592,-1.82121,8.54297,-0.0260319,-0.970252,8.90029,-0.813846,-1.11807,9.05514,-0.758393,-1.22002,9.28452,-0.692597,-0.802856,8.75936,-0.919906,-0.536914,8.60508,-0.952896,-0.145288,8.48292,-0.92326,-1.49932,8.66958,0.319192,-1.43378,9.6893,-0.250121,-1.33299,9.55011,-0.529988,-1.56116,9.69332,0.0300362,-1.54408,9.52013,0.3618,-1.43457,8.39928,0.280311,-1.32032,8.12928,0.306118,-1.18604,7.86996,0.340799,-1.0362,7.51748,0.331735,-0.974182,7.24445,0.330853,-0.310687,8.52797,-0.978733,-1.51523,8.95676,0.372896,-0.851851,9.67307,-0.0437346,-0.866859,9.58929,0.110889,-0.733266,9.53676,-0.348153,-0.799932,9.61766,-0.208885,-8.76554e-09,9.30618,0.487465,-0.151626,9.31552,0.460271,-0.314217,9.40151,0.486047,-0.637388,9.50151,0.0427428,-0.669475,9.54345,-0.060785,-0.630328,9.53867,-0.171552,-0.571138,9.52347,-0.30568,-0.479333,9.47108,0.312565,-0.139753,9.2423,0.609396,-0.329472,9.26354,0.562307,-0.10844,9.44769,-0.669188,-0.399588,9.42619,-0.488905,-0.243613,9.46107,-0.596024,-0.503418,9.47536,-0.406336,-0.664017,9.45742,-0.481642,-0.246828,9.32886,-0.71279,-0.374307,9.33519,-0.673419,-0.0977115,9.33731,-0.735932,-0.398998,9.43408,0.393863,-0.598211,9.49595,0.108607,-0.56077,9.48735,0.174045,-0.532305,9.48402,0.223316,-1.71937,8.96306,0.369122,-1.78471,9.37463,0.371941,-1.70738,8.65331,0.216071,-1.53408,8.58232,-0.5865,-1.59986,8.47613,-0.41578,-1.67366,8.49145,-0.2774,-1.5126,8.82016,-0.665839,-1.49742,9.16811,-0.715766,-1.80433,9.60384,0.0928304,-1.78273,9.60801,-0.251324,-1.63496,9.46452,-0.547151,-1.71726,8.52479,-0.0302415,-0.367577,6.70699,-0.785996,-1.13219,6.71618,0.192697,-0.732011,6.61523,0.781144,-0.487225,6.64342,1.00061,-0.271903,6.63544,1.12986,-1.02254,7.05858,0.160365,-0.506697,6.91513,0.913512,-0.731084,6.90726,0.706487,-0.303206,6.89754,1.02826,-0.8025,7.02448,-0.307462,-1.03283,6.91368,0.172281,-0.977618,6.97039,-0.0397057,-0.496861,6.74064,0.928604,-0.708718,6.73924,0.714857,-0.277676,6.72203,1.07149,-0.952463,6.82124,0.482546,-0.466521,7.19184,-0.500415,-0.294004,7.29163,-0.538483,-0.224773,6.71501,-0.756213,-0.227926,6.66473,-0.708539,-0.272078,6.60231,1.11593,-0.486071,6.60906,0.982563,-0.715166,6.6132,0.7565,-0.929331,6.62044,0.572599,-1.02334,6.68109,-0.0259075,-1.0766,6.67381,0.19997,-0.346767,6.66372,-0.745008,-0.845289,6.68373,-0.315271,-0.647233,7.08678,-0.469545,-0.655507,6.69252,-0.525745,-0.999533,7.02082,0.348442,-1.00217,6.85347,0.362794,-1.02232,6.64105,0.434575,-0.681695,6.22055,-0.855183,-0.926205,6.21985,-0.638132,-1.16124,6.21119,0.050662,-1.09325,6.22234,-0.229896,-0.726963,6.12999,0.87296,-0.461095,6.13849,1.08957,-0.255237,6.13625,1.21081,-0.178541,5.73657,-1.08288,-1.17804,5.67567,0.610916,-1.26503,5.73984,-0.232151,-1.30224,5.73446,0.0217269,-0.397678,5.72853,-1.13379,-1.06841,5.7395,-0.658196,-0.765679,5.71977,-1.01185,-1.24897,5.697,0.36991,-1.36071,5.11135,0.313643,-0.853828,5.11714,-1.02233,-1.08837,5.09765,-0.704467,-0.446578,5.11554,-1.23537,-1.35993,5.09839,0.0273816,-1.28329,5.06251,0.492917,-0.233533,5.11976,-1.14972,-1.32009,5.42961,0.349206,-1.35631,5.42242,0.01696,-1.23934,5.40271,0.572962,-1.08942,5.41713,-0.688869,-0.81134,5.41502,-1.03399,-0.421292,5.41853,-1.20187,-1.28358,5.41015,-0.258139,-0.205234,5.42479,-1.1329,-0.162589,6.21369,-0.936682,-0.36018,6.21461,-0.94897,-1.01361,6.15668,0.624701,-1.08977,6.18053,0.406884,-0.98177,6.68191,0.580725,-1.07766,6.7143,-0.048989,-0.891727,6.72057,-0.350138,-0.690351,6.7125,-0.562442,-1.07573,6.68357,0.448924,-1.05112,6.81126,0.182972,-0.49182,6.69191,0.952462,-0.711387,6.68813,0.73197,-0.274207,6.67838,1.08612,-0.409713,6.94256,-0.613091,-0.262455,6.99614,-0.616323,-1.01111,6.76316,0.39053,-0.648124,6.89749,-0.49172,-0.9437,6.74439,0.510492,-0.821604,6.87168,-0.309366,-1.07129,6.74567,0.187075,-0.474779,6.66035,0.942653,-0.706244,6.63555,0.753988,-0.267113,6.65146,1.07499,-0.381204,6.8112,-0.676563,-0.243553,6.84275,-0.661705,-1.02779,6.70325,0.40882,-0.65309,6.79298,-0.508038,-0.949824,6.6936,0.530815,-1.0162,6.76215,-0.0324279,-0.836952,6.78329,-0.315113,-0.161363,6.19845,-0.986543,-1.14582,6.20722,-0.244097,-1.06136,6.13777,0.641876,-0.367274,6.19986,-1.00107,-1.14034,6.16307,0.42092,-1.21282,6.19646,0.0476117,-0.709273,6.2048,-0.899131,-0.971039,6.20484,-0.662127,-1.26709,5.0859,-0.286424,-0.997849,6.84066,-0.0323348,-1.00627e-14,6.59227,1.20877,9.01124e-15,6.21157,-0.93585,-2.23373,9.37149,0.338598,-2.35941,9.37771,0.333127,-2.23385,9.58161,0.0976901,-2.35945,9.57305,0.0946675,-2.22117,9.48501,-0.598431,-2.34441,9.49061,-0.610113,-2.23083,9.59821,-0.262936,-2.3549,9.59278,-0.26895,-2.1968,8.54409,0.0998606,-2.33419,8.534,0.0853853,-2.21594,9.21303,-0.781189,-2.34152,9.22654,-0.792372,-2.23149,9.04053,0.403325,-2.35826,9.07305,0.397492,-2.22792,8.46541,-0.407949,-2.35648,8.45283,-0.408505,-2.21863,8.44783,-0.248053,-2.3516,8.44189,-0.254762,-2.22643,8.62966,-0.579279,-2.3548,8.61096,-0.577336,-2.22124,8.90964,-0.686083,-2.34844,8.92102,-0.690678,-2.20598,8.75423,0.245373,-2.34058,8.76794,0.231984,-2.60457,9.58733,-0.268709,-2.60873,8.42076,-0.261646,-2.60049,8.92105,-0.693973,-2.60905,9.56578,0.0916437,-2.59586,9.49384,-0.600038,-2.60008,8.54649,0.0658484,-2.59402,9.23511,-0.789906,-2.60802,8.57212,-0.571043,-2.60905,8.42806,-0.409061,-2.6024,8.80305,0.215583,-2.60905,9.37914,0.32779,-2.60905,9.10036,0.391659,-1.98882,8.48392,-0.248227,-1.89196,8.46702,-0.255008,-1.9418,8.60853,-0.568608,-1.78196,8.58228,-0.569603,-1.98934,9.46772,-0.568116,-1.88039,9.45964,-0.551353,-2.02427,9.60286,-0.254974,-1.94179,9.60144,-0.253026,-1.97919,8.54627,0.0714825,-1.89885,8.54097,0.030426,-1.93552,9.19093,-0.729577,-1.77283,9.17751,-0.714814,-2.02884,9.58476,0.097689,-1.94843,9.58378,0.0978452,-1.9546,8.46815,-0.407949,-1.80985,8.45321,-0.408505,-2.0216,9.34156,0.357759,-1.93779,9.3305,0.362946,-2.00977,8.98858,0.39247,-1.9146,8.96545,0.377458,-1.93787,8.86512,-0.653567,-1.77368,8.84649,-0.651601,-1.9879,8.70721,0.231965,-1.90453,8.66796,0.209837,2.05894,8.57005,0.117433,2.09829,9.47765,-0.584879,2.10676,9.60547,-0.256922,2.10825,9.58872,0.100713,2.09163,9.20236,-0.763438,2.09531,8.88584,-0.674857,2.08566,8.48161,-0.241345,2.09935,8.50216,-0.407392,2.09976,8.63861,-0.572406,2.06993,8.74388,0.268335,2.1053,9.36029,0.35293,2.10379,9.01036,0.412135,2.48504,9.09681,0.391659,2.48504,9.37692,0.32779,2.47507,8.79479,0.219333,2.48363,8.58477,-0.573036,2.48504,8.43115,-0.409061,2.48457,8.42307,-0.26147,2.47682,8.92267,-0.689248,2.46824,9.23494,-0.797659,2.48505,9.56622,0.0916448,2.47897,9.59016,-0.274964,2.46795,9.49763,-0.620191,2.47158,8.53765,0.07091,-1.20097e-09,9.17002,-0.871893,-8.88178e-16,8.25647,-0.865325,-7.41921e-10,8.0029,1.07248,-8.38191e-10,8.98812,-0.942948,-1.37447e-09,9.05867,0.802701,-8.88178e-16,8.48441,-0.907443,-3.68277e-09,9.23205,0.622448,-6.76077e-10,9.47258,-0.688676,-1.04838e-09,9.35025,-0.752065,0.618597,9.21616,0.655142,1.09254,9.63558,0.199241,1.05371,9.52471,0.347742,0.0906458,9.17252,-0.838391,0.922976,9.55129,-0.423603,1.18876,9.61026,-0.490904,0.169381,9.01186,0.862073,1.24826,9.32032,0.483796,1.37013,9.56234,0.335526,0.718483,9.13784,0.745622,0.850847,8.51603,1.00426,0.22855,8.41494,1.08291,-6.35154e-10,8.40235,1.05394,0.262885,8.01715,1.07267,0.864353,8.16147,0.972893,0.92076,7.94654,0.843309,0.252318,7.80842,1.0226,0.265432,7.1721,0.998005,0.728284,7.18612,0.722623,1.30488,8.16219,0.465497,1.32706,8.11728,0.146963,0.200992,8.25777,-0.888076,0.316013,7.74242,-0.717755,0.948509,7.24015,0.456993,1.00503,7.25226,0.209026,1.19241,7.89059,0.504508,1.17143,7.84008,0.182274,0.471197,9.31293,0.505497,0.861986,9.55216,0.180824,0.604638,9.36104,-0.621001,0.103068,8.71073,-0.944721,0.797872,9.30228,-0.675607,0.88092,9.34697,0.479899,1.10168,9.16654,0.605672,0.69891,9.45723,0.314126,1.1424,8.61768,0.793672,1.27056,8.53547,0.654985,1.04553,8.35566,0.872794,1.1406,8.26092,0.743623,1.00606,9.68638,-0.251181,1.28303,9.73166,-0.22218,1.06072,8.76975,-0.815829,1.21818,8.9126,-0.769601,0.852679,9.42988,-0.559455,1.3905,9.17398,-0.724091,0.889176,9.01608,-0.812752,0.999182,9.21922,-0.74199,1.05691,9.3772,-0.646555,1.07229,9.74688,-0.0190131,1.37129,9.74182,0.0165573,0.507836,9.17665,-0.816529,0.367471,9.16778,-0.821654,0.745335,8.88067,-0.9204,0.477007,8.78956,-0.966174,0.606028,8.42124,-0.930858,0.860672,8.63326,-0.914979,0.982482,8.30248,-0.798095,0.758455,8.00985,-0.811834,0.714566,9.17224,-0.763963,0.873829,7.68193,-0.49337,1.04316,8.03528,-0.465609,1.12593,7.81484,-0.104985,1.01567,7.52358,-0.0865537,1.05949,7.50266,0.19325,0.234837,7.49952,0.965813,0.828629,7.55758,0.713552,1.01447,7.53504,0.477333,-4.18777e-15,7.49655,0.975803,0.559309,9.27079,-0.734196,0.182087,9.08699,0.785045,0.45559,9.06154,0.806098,0.558247,8.45665,1.04947,0.56777,8.06453,1.0451,0.567862,7.85681,0.965143,0.484936,7.18898,0.906272,0.515032,7.53017,0.891048,0.403789,9.14058,0.727263,0.783121,9.29154,0.550171,0.954559,9.14327,0.720381,0.608269,9.39758,0.402321,1.01094,8.59025,0.913065,0.607378,9.07176,-0.86116,0.398363,9.00024,-0.909699,0.0887395,8.98237,-0.90744,0.232527,8.21765,1.11596,0.863969,8.33394,1.01853,-4.45956e-10,8.2074,1.09795,0.56358,8.26013,1.07643,0.992909,8.44226,0.932308,1.19979,8.24159,-0.417019,1.21638,8.10159,-0.128938,1.38987,8.43047,0.417023,1.46463,8.37332,0.141409,1.39627,8.33312,-0.119721,1.34001,8.35168,-0.373651,1.16026,8.48528,-0.694675,1.3072,8.55617,-0.64236,0.20758,8.68362,1.03038,0.839249,8.74289,0.960703,-4.42818e-10,8.67329,0.996979,1.14759,8.81277,0.709865,1.3092,8.76886,0.568811,0.537619,8.69624,0.987843,1.0327,8.803,0.84225,1.5876,8.65186,0.253153,1.43932,8.67641,0.3971,1.54885,8.49739,-0.292294,1.6003,8.51595,-0.0509229,1.45176,8.58162,-0.594108,0.815225,7.41915,-0.443015,0.970838,7.30016,-0.0672741,0.610025,7.70142,-0.680558,1.69621,9.61649,-0.254011,1.50167,9.47893,-0.560166,1.70901,9.43589,0.377568,1.7465,9.61705,0.0812753,0.258205,7.91397,1.05016,0.898415,8.06171,0.910976,-6.88693e-10,7.89839,1.05546,0.990808,9.44559,0.406973,1.17979,9.21309,0.549524,0.801039,9.51348,0.238317,1.20544,8.58174,0.723446,1.09552,8.31258,0.80783,0.22636,9.15867,-0.824132,0.257731,8.73454,-0.998635,0.371786,8.32256,-0.94746,0.574213,7.96376,1.01037,0.245345,8.98247,-0.908579,1.23275,8.79765,0.638089,0.522385,7.41134,-0.611081,0.798038,7.18603,-0.370506,0.971148,7.09784,-0.0471689,0.960401,6.98901,0.470768,0.935818,8.45668,-0.852145,0.698927,8.18901,-0.865266,1.10419,8.64118,-0.749018,1.27293,8.71021,-0.703803,1.42062,8.82416,-0.674693,0.504542,7.97065,-0.799103,1.01471,8.17649,-0.656909,0.819289,7.84342,-0.648312,1.18726,8.35591,-0.575959,1.32451,8.43518,-0.509965,1.53579,8.46618,-0.421397,0.705493,7.55552,-0.563379,0.65491,7.28619,-0.530877,0.177838,8.88435,0.967381,0.82788,8.95955,0.880941,1.13439,9.01736,0.651603,1.28256,8.98719,0.516389,0.513964,8.89403,0.915619,1.00399,9.00809,0.781245,1.64145,8.96327,0.368933,1.41351,8.95905,0.375316,1.21024,9.00673,0.584812,1.81993,8.95177,0.360869,1.85467,9.32555,0.3659,1.82011,8.64204,0.202237,1.61943,8.58434,-0.575143,1.66481,8.48348,-0.409546,1.79511,8.48038,-0.261805,1.60846,8.82187,-0.652062,1.608,9.16564,-0.705058,1.86654,9.58749,0.10279,1.8593,9.60172,-0.251078,1.77095,9.45245,-0.535592,1.82121,8.54297,-0.0260319,0.970252,8.90029,-0.813846,1.11807,9.05514,-0.758393,1.22002,9.28452,-0.692597,0.802856,8.75936,-0.919906,0.536914,8.60508,-0.952896,0.145288,8.48292,-0.92326,1.49932,8.66958,0.319192,1.43378,9.6893,-0.25012,1.33299,9.55011,-0.529988,1.56116,9.69332,0.0300363,1.54408,9.52013,0.3618,1.43457,8.39928,0.280311,1.32032,8.12928,0.306118,1.18604,7.86996,0.340799,1.0362,7.51748,0.331735,0.974182,7.24445,0.330853,0.310687,8.52797,-0.978733,1.51523,8.95676,0.372896,0.851851,9.67307,-0.0437344,0.866859,9.58929,0.110889,0.733266,9.53676,-0.348152,0.799932,9.61766,-0.208885,0.151626,9.31552,0.460271,0.314217,9.4015,0.486048,0.637388,9.50151,0.042743,0.669475,9.54344,-0.0607849,0.630327,9.53866,-0.171552,0.571138,9.52347,-0.30568,0.479333,9.47108,0.312565,0.139752,9.2423,0.609396,0.329472,9.26354,0.562307,0.10844,9.44769,-0.669188,0.399588,9.42619,-0.488904,0.243613,9.46107,-0.596024,0.503418,9.47536,-0.406336,0.664017,9.45742,-0.481642,0.246828,9.32886,-0.71279,0.374307,9.33519,-0.673419,0.0977115,9.33731,-0.735932,0.398998,9.43408,0.393864,0.598211,9.49595,0.108608,0.56077,9.48735,0.174045,0.532305,9.48402,0.223316,1.71937,8.96306,0.369122,1.78471,9.37463,0.371941,1.70738,8.65331,0.216071,1.53408,8.58232,-0.5865,1.59986,8.47613,-0.41578,1.67366,8.49146,-0.2774,1.5126,8.82016,-0.665839,1.49742,9.16811,-0.715766,1.80434,9.60384,0.0928304,1.78273,9.60801,-0.251324,1.63496,9.46452,-0.547151,1.71726,8.5248,-0.0302415,0.367577,6.70699,-0.785996,1.13219,6.71618,0.192697,0.732011,6.61523,0.781144,0.487225,6.64342,1.00061,0.271903,6.63544,1.12986,1.02254,7.05858,0.160365,0.506697,6.91513,0.913512,0.731084,6.90726,0.706487,0.303206,6.89754,1.02826,0.8025,7.02448,-0.307462,1.03283,6.91368,0.172281,0.977618,6.97039,-0.0397057,0.496861,6.74064,0.928604,0.708718,6.73924,0.714857,0.277676,6.72203,1.07149,0.952463,6.82124,0.482546,0.466521,7.19184,-0.500415,0.294004,7.29163,-0.538483,0.224773,6.71501,-0.756213,6.74064e-15,6.66814,-0.683338,0.227926,6.66473,-0.708539,0.272078,6.60231,1.11593,0.486071,6.60906,0.982563,0.715166,6.6132,0.7565,0.929331,6.62044,0.572599,1.02334,6.68109,-0.0259075,1.0766,6.67381,0.19997,0.346767,6.66372,-0.745008,0.845289,6.68373,-0.315271,0.647233,7.08678,-0.469545,0.655507,6.69252,-0.525745,0.999533,7.02082,0.348442,1.00217,6.85347,0.362794,1.02232,6.64105,0.434575,0.681695,6.22055,-0.855183,0.926205,6.21985,-0.638132,1.16124,6.21119,0.050662,1.09325,6.22234,-0.229896,0.726963,6.12999,0.87296,0.461095,6.13849,1.08957,0.255237,6.13625,1.21081,-7.71965e-15,6.13355,1.25585,0.178541,5.73657,-1.08288,1.17804,5.67567,0.610916,1.26503,5.73984,-0.232151,1.30224,5.73446,0.0217269,0.397678,5.72853,-1.13379,1.06841,5.7395,-0.658196,0.765679,5.71977,-1.01185,1.24897,5.697,0.36991,1.36071,5.11135,0.313643,0.853828,5.11714,-1.02233,1.08837,5.09765,-0.704467,0.446578,5.11554,-1.23537,1.35993,5.09839,0.0273816,1.28329,5.06251,0.492917,0.233533,5.11976,-1.14972,1.32009,5.42961,0.349206,1.35631,5.42242,0.01696,1.23934,5.40271,0.572962,1.08942,5.41713,-0.688869,0.81134,5.41502,-1.03399,0.421292,5.41853,-1.20187,1.28358,5.41015,-0.258139,0.205234,5.42479,-1.1329,4.11304e-15,5.42448,-1.07731,0.162589,6.21369,-0.936682,0.36018,6.21461,-0.94897,1.01361,6.15668,0.624701,1.08977,6.18053,0.406884,6.9796e-15,6.71463,-0.733891,0.98177,6.68191,0.580725,1.07766,6.7143,-0.048989,0.891727,6.72057,-0.350138,0.690351,6.7125,-0.562442,1.07573,6.68357,0.448924,1.05112,6.81126,0.182972,0.49182,6.69191,0.952462,0.711387,6.68813,0.73197,0.274207,6.67838,1.08612,0.409713,6.94256,-0.613091,0.262455,6.99614,-0.616323,1.01111,6.76316,0.39053,0.648124,6.89749,-0.49172,0.9437,6.74439,0.510492,0.821604,6.87168,-0.309366,1.07129,6.74567,0.187075,0.474779,6.66035,0.942653,0.706244,6.63555,0.753988,0.267113,6.65146,1.07499,0.381204,6.8112,-0.676563,0.243553,6.84275,-0.661705,1.02779,6.70325,0.40882,0.65309,6.79298,-0.508038,0.949824,6.6936,0.530815,1.0162,6.76215,-0.0324279,0.836952,6.78329,-0.315113,0.161363,6.19845,-0.986543,1.14582,6.20722,-0.244097,1.06136,6.13777,0.641876,0.367274,6.19986,-1.00107,1.14034,6.16307,0.42092,1.21282,6.19646,0.0476117,0.709273,6.2048,-0.899131,0.971039,6.20484,-0.662127,1.26709,5.0859,-0.286424,0.997849,6.84066,-0.0323348,-9.36183e-15,6.62819,1.20255,-9.35666e-15,6.89382,1.09201,-8.92507e-15,6.71781,1.14328,1.10043e-16,7.27995,-0.576382,6.33792e-15,5.72635,-1.04813,4.74728e-15,5.12952,-1.07245,-8.88199e-15,6.673,1.15264,3.88569e-15,6.99212,-0.623633,-9.13107e-15,6.64662,1.13908,4.22107e-15,6.84201,-0.653509,1.00257e-14,6.19514,-0.985807,2.23373,9.37149,0.338598,2.35941,9.37771,0.333127,2.23385,9.58161,0.0976901,2.35945,9.57305,0.0946674,2.22117,9.48501,-0.598431,2.34441,9.49061,-0.610113,2.23083,9.59821,-0.262936,2.3549,9.59278,-0.26895,2.1968,8.5441,0.0998605,2.33419,8.534,0.0853853,2.21594,9.21303,-0.781189,2.34152,9.22654,-0.792372,2.23149,9.04053,0.403325,2.35826,9.07306,0.397492,2.22792,8.46541,-0.407949,2.35648,8.45284,-0.408505,2.21863,8.44783,-0.248053,2.3516,8.44189,-0.254762,2.22643,8.62966,-0.579279,2.3548,8.61096,-0.577336,2.22124,8.90964,-0.686083,2.34844,8.92102,-0.690678,2.20598,8.75423,0.245373,2.34058,8.76794,0.231984,2.60457,9.58733,-0.268709,2.60873,8.42076,-0.261646,2.60049,8.92105,-0.693973,2.60905,9.56578,0.0916436,2.59586,9.49384,-0.600038,2.60008,8.54649,0.0658483,2.59402,9.23511,-0.789906,2.60802,8.57212,-0.571043,2.60905,8.42806,-0.409061,2.6024,8.80305,0.215583,2.60905,9.37915,0.327789,2.60905,9.10036,0.391659,1.98882,8.48392,-0.248227,1.89196,8.46702,-0.255008,1.9418,8.60853,-0.568608,1.78196,8.58228,-0.569603,1.98934,9.46773,-0.568116,1.88039,9.45964,-0.551353,2.02427,9.60286,-0.254974,1.94179,9.60144,-0.253026,1.97919,8.54627,0.0714825,1.89885,8.54097,0.030426,1.93552,9.19093,-0.729577,1.77283,9.17751,-0.714814,2.02884,9.58476,0.0976889,1.94843,9.58378,0.0978452,1.9546,8.46815,-0.407949,1.80985,8.45321,-0.408505,2.0216,9.34156,0.357759,1.93779,9.3305,0.362946,2.00977,8.98858,0.39247,1.9146,8.96545,0.377458,1.93787,8.86512,-0.653567,1.77368,8.84649,-0.651601,1.9879,8.70721,0.231965,1.90453,8.66796,0.209837,-0.931365,6.60925,0.573856,-0.656139,6.68113,-0.533694,-0.485468,6.59771,0.985639,-0.271671,6.59106,1.11723,-1.02395,6.62993,0.433906,-0.347091,6.65289,-0.74993,-1.07865,6.66265,0.196367,-1.02503,6.67002,-0.0308296,-0.715451,6.60154,0.759311,-0.847241,6.67254,-0.323061,-0.226349,6.65385,-0.714044,0.931365,6.60925,0.573856,0.656139,6.68113,-0.533694,0.485468,6.59771,0.985639,0.271671,6.59106,1.11723,1.02395,6.62993,0.433906,0.347091,6.65289,-0.74993,1.07865,6.66265,0.196367,1.02503,6.67002,-0.0308296,0.715451,6.60154,0.759311,0.847241,6.67254,-0.323061,0.226349,6.65385,-0.714044,5.86747e-15,6.65712,-0.689431,-7.17864e-15,6.5812,1.20915,-1.01152,6.16816,0.623411,-0.681047,6.23223,-0.847026,-0.461713,6.15015,1.08677,-0.255654,6.14779,1.20851,-1.0881,6.19193,0.40757,-0.359848,6.22573,-0.94392,-1.15915,6.22265,0.0543588,-1.09152,6.2337,-0.224846,-0.726671,6.14196,0.870076,-0.924201,6.23134,-0.630138,-0.164207,6.22486,-0.931033,1.01152,6.16816,0.623411,0.681047,6.23223,-0.847026,0.461713,6.15015,1.08677,0.255654,6.14779,1.20851,1.0881,6.19193,0.40757,0.359848,6.22573,-0.94392,1.15915,6.22265,0.0543588,1.09152,6.2337,-0.224846,0.726671,6.14196,0.870076,0.924201,6.23134,-0.630138,0.164207,6.22486,-0.931033,9.22271e-15,6.22287,-0.929598,-7.43932e-15,6.14491,1.25392,-0.00079876,9.20369,-0.952232,0.110415,9.20476,-0.941415,0.170982,8.34011,-1.11114,0.680396,9.46887,-0.766509,0.123656,8.73339,-1.08355,0.821324,9.32095,-0.86592,0.927493,8.64377,-0.997871,1.05366,8.78855,-0.946924,0.893843,9.47686,-0.746422,1.19251,8.96017,-0.890161,0.804801,8.9928,-0.972846,0.933813,9.14568,-0.931299,1.03434,9.3284,-0.856747,0.499207,9.19367,-0.92603,0.384956,9.20593,-0.9375,0.629831,8.86297,-1.02243,0.450522,8.78759,-1.05682,0.586384,8.4291,-1.07028,0.784301,8.51491,-1.05216,0.699268,9.17322,-0.927875,0.582527,9.31737,-0.865289,0.566969,9.05805,-0.990182,0.396552,9.00199,-1.00243,0.109946,8.9849,-1.02042,0.245002,9.20505,-0.933132,0.27482,8.7497,-1.06596,0.36915,8.37405,-1.08551,0.240044,8.9849,-1.00861,0.871547,8.828,-0.996039,0.997043,8.95811,-0.951943,1.14048,9.12084,-0.887402,0.70099,8.6835,-1.04348,0.525557,8.58812,-1.07396,0.149755,8.50507,-1.11453,0.328565,8.54726,-1.08896,0.605694,9.63223,-0.466861,0.294361,9.53559,-0.685965,0.457827,9.56855,-0.602733,0.12819,9.53043,-0.722264,0.137541,9.49879,-0.755275,0.513855,9.55303,-0.647673,0.334338,9.51679,-0.710329,0.642864,9.6118,-0.580928,0.743575,9.57224,-0.651023,0.290947,9.40695,-0.806906,0.455937,9.39862,-0.807285,0.131849,9.39301,-0.831094,0.127483,9.54955,-0.728612,0.291584,9.55247,-0.691916,0.6015,9.6469,-0.472186,0.45473,9.58416,-0.607544,1.25033,4.96474,1.02898,0.877237,4.62352,1.3875,0.891178,4.6347,1.37495,1.2456,4.9399,1.04456,1.12633,5.66778,1.0149,0.75172,5.46538,1.46281,0.736256,5.4606,1.47931,1.24077,4.9552,1.04209,0.888548,4.65291,1.37226,1.2454,4.97991,1.02652,0.87469,4.64184,1.3848,0.827886,6.60746,0.875119,0.506001,6.60736,1.16291,0.491997,6.60361,1.17681,0.817116,6.59997,0.896015,1.05947,6.62574,0.564463,0.825834,6.60367,0.880266,1.04986,6.62059,0.582814,1.2783,4.90092,1.12836,1.56943,5.20454,0.67757,1.28856,4.91162,1.11247,1.55763,5.19223,0.695855,1.17182,5.64865,1.15767,1.50002,5.86362,0.682478,1.18442,5.65406,1.14147,1.48897,5.85018,0.702933,1.56427,5.1777,0.698759,1.29337,4.89406,1.11628,1.28304,4.88325,1.13219,1.57616,5.19015,0.680435,1.68882,5.46584,0.181691,1.63895,5.21169,0.744793,1.6395,5.22077,0.724939,1.67102,5.45718,0.204351,1.55801,5.87868,0.736724,1.5398,6.04746,0.168506,1.55219,5.87345,0.755003,1.66184,5.47054,0.203425,1.63113,5.23712,0.722077,1.67961,5.47907,0.180849,1.63061,5.22815,0.741858,1.07221,6.62836,0.564614,1.15849,6.68783,0.10321,1.06936,6.62285,0.580096,1.17685,6.69609,0.0816336,0.951408,6.67944,-0.324539,1.16828,6.70077,0.0739547,0.960667,6.68182,-0.308288,1.74615,5.5146,0.190843,1.47843,5.59385,-0.308831,1.73672,5.51739,0.173237,1.48929,5.59064,-0.288563,1.6003,6.06615,0.170243,1.35431,6.06153,-0.315273,1.59291,6.06423,0.153119,1.36708,6.05788,-0.295615,1.49723,5.57783,-0.288321,1.74503,5.50255,0.176167,1.75448,5.49968,0.193876,1.48635,5.58113,-0.308707,0.819472,6.28741,0.932342,0.501447,6.15795,1.25212,0.826,6.30916,0.916876,0.488884,6.15533,1.26409,1.11805,5.68681,1.01028,0.745716,5.48644,1.45784,0.730356,5.4817,1.47434,0.937882,6.11333,0.922594,1.1781,6.28319,0.507031,0.947031,6.11749,0.908223,1.16985,6.27234,0.524478,1.1634,5.67108,1.15104,1.4892,5.88327,0.676562,1.1759,5.67644,1.13485,1.47819,5.87006,0.696959,1.24736,6.33482,0.0944334,1.22942,6.22334,0.550693,1.25882,6.34231,0.07431,1.22831,6.22066,0.567996,1.51542,6.04529,0.184462,1.55094,5.89146,0.734093,1.53165,6.05848,0.166709,1.54517,5.88626,0.752343,1.28375,6.3669,0.0582388,1.04292,6.3498,-0.348212,1.27612,6.36469,0.044025,1.05455,6.34699,-0.33149,1.58265,6.09013,0.167558,1.33665,6.0831,-0.314151,1.57522,6.08818,0.150568,1.34932,6.07969,-0.294646,0.868343,6.3446,0.863753,0.503776,6.20361,1.25413,0.489193,6.19821,1.26862,1.11758,5.66097,1.03834,0.815896,6.60246,0.890225,1.10739,5.67964,1.03214,0.853386,6.33849,0.879719,0.910362,6.13553,1.02353,1.19444,6.2545,0.620513,0.920967,6.14006,1.00756,1.18412,6.24533,0.639886,1.52347,6.03414,0.186272,1.14809,6.68129,0.120245,1.28308,6.22276,0.648709,1.31658,6.336,0.134315,1.27877,6.2174,0.665575,1.30326,6.32613,0.151709,1.36006,6.39311,0.134204,1.114,6.35514,-0.300004,1.35183,6.39447,0.122144,1.12546,6.35462,-0.282431,0.499423,6.20379,1.35803,0.268936,5.35218,1.3434,0.0646213,4.90934,1.17005,0.120561,5.02152,1.11971,0.218392,6.19625,1.46693,0.509744,5.80987,1.4208,0.198819,5.80294,1.52383,0.147569,5.38177,1.49517,0.0444574,4.58788,-0.0197704,0.0722725,4.4032,-0.00955448,0.293725,4.62057,-0.398998,0.302145,4.43853,-0.392149,0.606163,4.88381,0.929928,0.635438,4.72223,0.872027,0.199632,4.71973,0.76073,0.223388,4.54895,0.720406,0.0543837,4.62354,0.380688,0.0846645,4.46278,0.37462,0.204422,4.07157,0.074744,0.164837,4.24889,0.0489647,0.188476,4.09036,0.361041,0.160319,4.26425,0.364965,0.308082,4.04819,-0.232104,0.277003,4.22296,-0.293455,0.462387,4.13957,0.806038,0.440977,4.3103,0.804237,0.291547,4.11259,0.652618,0.270885,4.27826,0.667174,0.399681,4.82931,0.899179,0.429243,4.65907,0.872248,0.680171,4.18541,0.77273,0.661525,4.33198,0.796903,0.3487,4.62409,-0.434135,0.357184,4.44208,-0.427301,0.373046,4.04185,-0.283085,0.341966,4.21662,-0.344436,0.582336,1.90616,-0.44386,0.590163,1.72859,-0.40078,0.495096,2.60839,-0.433261,0.473149,2.74853,-0.412047,0.578025,2.63147,0.586306,0.592278,2.79903,0.622303,0.449951,2.64686,0.513139,0.483379,2.46384,0.520976,0.624026,2.79959,0.618494,0.645615,2.61212,0.625388,0.522034,1.91882,-0.385586,0.519019,1.74218,-0.330723,0.352407,2.38746,0.273148,0.397992,2.19527,0.285345,0.335365,2.11818,-0.0375792,0.365057,1.92326,-0.00555976,0.312757,2.58601,0.138641,0.288356,2.72218,0.144872,0.431228,2.61782,0.454169,0.407343,2.74112,0.50524,0.456637,2.60399,-0.394551,0.434497,2.74265,-0.37321,0.350283,2.5908,-0.150365,0.323977,2.72632,-0.13475,0.366183,1.8064,-0.112716,0.435951,1.66305,-0.18443,0.453147,1.89489,-0.308375,0.501964,1.73145,-0.360659,0.541821,1.70995,0.47196,0.543616,1.56686,0.436717,0.376836,1.69303,0.213406,0.384128,1.56759,0.096269,0.715472,1.73794,0.614496,0.698905,1.56777,0.579624,0.490905,1.94014,-0.384198,0.547458,1.78292,-0.446229,0.429385,4.85199,1.03074,0.725963,5.04707,1.08353,1.0785,5.37978,0.933946,1.36058,5.54079,0.583187,1.02869,3.98086,0.657097,1.39224,4.00945,0.250249,0.50332,3.88588,0.852239,0.744606,3.92793,0.825235,1.05315,4.60377,0.747587,1.31093,4.68073,0.435861,0.466874,4.3484,0.876012,0.738292,4.44843,0.87528,1.30829,5.80494,0.583008,1.08368,5.63191,0.937578,0.725161,5.23373,1.13612,0.413324,4.99181,1.07694,1.25428,5.46743,0.759061,1.16755,4.00075,0.454234,1.21081,4.64246,0.597919,1.20544,5.72585,0.761699,1.32132,3.92324,-0.0452496,1.42302,5.19948,-0.100099,0.190716,3.90931,-0.127151,0.138593,4.82539,-0.335386,1.16511,3.98957,-0.292657,0.846592,4.946,-0.589549,0.6091,4.88499,-0.596224,0.324149,4.83646,-0.524914,1.22295,5.0603,-0.361775,0.797646,4.00471,-0.45982,0.344533,3.95459,-0.299691,0.558956,3.99392,-0.419747,1.26115,4.74756,-0.251257,1.26115,4.95802,-0.268192,1.22132,5.0284,0.565756,1.21111,4.8389,0.541027,1.3184,4.78197,-0.0142018,1.31104,4.82193,0.270942,1.3184,4.98789,-0.0221026,1.31104,5.01842,0.281784,1.22359,4.83678,0.507288,1.23252,5.02716,0.530283,1.26135,5.0285,0.530283,1.25242,4.83774,0.507288,1.34792,5.01495,0.281065,1.4202,4.95673,-0.0254527,1.34792,4.8157,0.270071,1.4202,4.75018,-0.0175519,1.23994,4.83953,0.541027,1.25015,5.02936,0.565756,1.34269,4.9823,0.10295,1.34269,4.7786,0.102925,1.37213,4.75022,0.176607,1.37213,5.04679,0.174201,1.37736,4.76061,0.260651,1.37736,5.05284,0.266223,1.20446,5.04681,0.17237,1.19325,5.05158,0.263933,1.22532,4.7505,0.174188,1.21419,4.75934,0.25787,1.36023,4.76049,0.260392,1.35618,4.75025,0.176382,1.35003,5.04679,0.173976,1.35384,5.05268,0.265942,1.37438,4.47863,0.251982,1.36838,4.48595,0.160235,1.34052,4.19309,0.122308,1.34711,4.19112,0.206757,1.20188,4.2066,0.208811,1.21053,4.20822,0.124388,1.21471,4.4957,0.255018,1.22377,4.5024,0.163339,1.39776,4.47612,0.251523,1.36414,4.1893,0.206478,1.39034,4.48345,0.159745,1.35636,4.19126,0.122014,1.32919,4.23262,0.0538649,1.35252,4.43311,0.0814129,1.45044,4.19083,-0.0391414,1.34138,4.2455,0.224207,1.474,4.39521,-0.0190261,1.36442,4.44006,0.262045,1.17187,4.26709,0.458369,1.20264,4.45613,0.476149,1.17385,4.45801,0.477113,1.14313,4.26935,0.459323,1.3282,4.44749,0.264415,1.30062,4.46153,-0.0400316,1.30547,4.25561,0.227101,1.27713,4.25778,-0.0600609,1.25708,4.46967,-0.18908,1.19814,4.267,-0.194724,0.59087,9.31707,0.780982,0.975657,9.40122,0.649788,0.178412,9.1013,1.02887,1.12511,9.21987,0.777692,0.672408,9.1871,0.907806,0.879266,8.5229,1.10949,0.205575,8.45756,1.32372,0.245447,8.05611,1.30867,0.907052,8.124,1.07087,0.995036,7.88309,0.923886,0.233134,7.88313,1.29375,0.238394,7.44382,1.37362,0.898735,7.21664,0.940536,1.38974,8.09608,0.41755,1.13471,7.19123,0.556943,1.15017,7.25744,0.063476,1.31053,7.81961,0.540716,1.2767,7.78147,0.0252519,0.502287,9.50766,0.665323,0.839546,9.52555,0.566444,0.864415,9.36822,0.707973,0.988083,9.2315,0.834762,0.740764,9.52079,0.607061,1.2047,8.54104,0.93856,1.37559,8.42643,0.729743,1.11353,8.30117,0.949475,1.21507,8.19091,0.786984,0.909937,8.19784,-0.928899,0.817802,8.00145,-0.89299,0.958795,7.66587,-0.551799,1.12571,7.86685,-0.490467,1.20993,7.80075,-0.229638,1.08717,7.53779,-0.228871,1.15867,7.48191,0.0434332,0.200032,7.6738,1.28343,0.934561,7.51216,0.8044,1.15427,7.47509,0.529141,0.193369,9.21212,0.957453,0.43263,9.1549,0.927797,0.547534,8.48582,1.20432,0.576955,8.05165,1.20399,0.599787,7.84668,1.12325,0.543666,7.30867,1.17307,0.553912,7.57348,1.06614,0.397439,9.26676,0.842158,0.753483,9.3466,0.738413,0.857684,9.21958,0.877431,0.643793,9.51818,0.634965,0.216757,8.24749,1.35328,0.900649,8.31823,1.12305,0.560121,8.26653,1.23379,1.05149,8.41163,1.0203,1.45777,8.23468,0.402283,0.186252,8.74835,1.27128,0.852379,8.76402,1.08877,1.17055,8.74578,0.960714,1.30096,8.68131,0.865188,0.520143,8.74765,1.1399,1.05464,8.7848,1.04681,0.945732,7.39888,-0.516642,1.07401,7.31324,-0.215062,0.700664,7.67601,-0.79159,1.16622,6.93132,-0.260588,0.826563,7.01239,-0.545932,1.31307,6.84663,0.148804,1.2613,6.89241,-0.0710742,1.3349,6.60681,0.772069,1.10794,6.4845,1.22683,0.699047,6.61087,1.47556,0.320833,6.81869,1.55225,0.240498,7.96804,1.2987,0.954252,8.01004,0.997964,0.930759,9.39004,0.672431,1.07706,9.22383,0.80643,0.79884,9.52422,0.576475,1.27971,8.47658,0.864396,1.16543,8.24462,0.867181,0.594819,7.94705,1.16782,1.24365,8.70737,0.920553,0.703141,7.41564,-0.663405,0.969368,7.19475,-0.394569,1.18478,7.08871,0.0917449,1.08706,7.13503,-0.151225,0.560498,7.06125,1.22961,0.934993,6.99261,1.01244,0.267376,7.22903,1.39312,1.17711,6.99923,0.618257,1.05774,7.06568,-0.297569,1.2319,6.98787,0.129224,1.17761,7.02504,-0.104756,0.639062,6.84012,1.31989,1.04642,6.69813,1.1118,0.292941,7.04109,1.44131,1.29848,6.83092,0.689394,0.790782,7.19468,-0.56465,0.321855,6.57238,1.51538,0.710574,6.33621,1.42924,1.0759,6.24974,1.21848,1.3154,6.38668,0.82238,1.2518,6.73739,-0.0526351,1.33274,6.67645,0.172437,0.965045,6.79898,-0.659187,1.16145,6.76823,-0.24826,1.0402,8.04031,-0.725703,0.887699,7.83016,-0.720408,0.813586,7.53556,-0.661134,1.0209,6.95991,-0.448313,0.838444,7.29121,-0.569719,0.926177,7.11983,-0.477516,1.07452,6.81925,-0.437895,0.173445,8.96122,1.15467,0.774099,8.99148,1.02389,1.09957,8.97056,0.948887,1.23043,8.92922,0.887784,0.493793,8.9681,1.05204,0.965995,9.00804,0.985898,1.17982,8.94411,0.923428,1.35555,6.76253,0.450005,1.31566,7.79585,0.286169,1.17631,7.46502,0.297415,1.16083,7.21808,0.321872,1.19333,7.05459,0.359919,1.26287,6.93962,0.413147,1.34476,6.55454,0.464748,0.159492,9.41359,0.745023,0.342696,9.49027,0.689146,0.675147,7.64167,-0.722921,0.915877,7.37232,-0.455065,1.10358,7.2298,0.0771934,1.02469,7.28742,-0.180088,0.518864,7.25655,1.14181,0.854859,7.17429,0.910439,0.230755,7.39005,1.32832,1.08356,7.16112,0.546589,0.791081,7.50321,-0.600448,1.10716,7.18688,0.321011,0.959971,7.17386,-0.333773,1.15382,7.06434,0.109545,1.06877,7.1128,-0.115166,0.545908,7.00318,1.20819,0.937342,6.91266,1.00982,0.255208,7.1745,1.35712,1.1692,6.96174,0.613631,0.711382,7.38666,-0.571905,0.847845,7.2667,-0.496213,1.1715,7.02463,0.364214,1.05939,7.03105,-0.252805,1.21746,6.95149,0.143825,1.17433,6.98884,-0.0666063,0.629174,6.76969,1.32405,1.02836,6.6315,1.10665,0.282022,6.97429,1.42014,1.28022,6.76248,0.687934,0.792862,7.13732,-0.519086,0.936811,7.0869,-0.412607,1.24864,6.89149,0.408689,0.841249,6.96322,-0.529245,1.08359,6.4402,1.20862,1.30226,6.55834,0.760303,0.308085,6.77537,1.5221,0.677455,6.56105,1.44783,1.28178,6.8088,0.159271,1.22904,6.86257,-0.0494058,1.14139,6.90272,-0.2336,1.00929,6.93804,-0.436165,1.32308,6.7156,0.434031,0.96489,6.88944,-0.662043,1.12124,6.29905,1.26301,1.36376,6.4354,0.856044,0.328864,6.61567,1.5711,0.739449,6.38407,1.48289,1.37222,6.71032,0.16355,1.28809,6.77344,-0.0766489,1.19466,6.81476,-0.280234,1.10215,6.86125,-0.47201,1.39558,6.59706,0.482024,0.233633,7.47132,1.36164,0.906589,7.25042,0.924419,1.13717,7.22168,0.551769,1.14979,7.28492,0.0607913,0.545114,7.33975,1.15959,1.07471,7.3409,-0.217797,0.943895,7.43034,-0.522548,0.709137,7.71498,-0.806462,0.817573,7.57032,-0.67045,1.16242,7.24767,0.318401,0.696672,7.44916,-0.673081,0.956683,7.22082,-0.405539,1.17125,7.10969,0.0882902,1.07284,7.15761,-0.156917,0.55161,7.09071,1.21451,0.908883,7.03001,0.990166,0.261818,7.25295,1.38103,1.15249,7.02355,0.603724,0.828717,7.32241,-0.574991,1.17429,7.07319,0.351326,1.03406,7.08481,-0.306851,1.21856,7.00233,0.124455,1.15209,7.04061,-0.109213,0.620687,6.87204,1.29827,1.02922,6.73386,1.0897,0.284266,7.0652,1.42421,1.27957,6.85841,0.678488,0.783486,7.2316,-0.570055,0.909019,7.15094,-0.47834,1.24925,6.95828,0.405289,1.1496,6.94082,-0.261502,1.30286,6.85874,0.147486,1.25242,6.90274,-0.0705539,0.691807,6.62713,1.45406,1.09964,6.49994,1.21258,0.316649,6.83528,1.53663,1.32979,6.62377,0.764289,0.822843,7.03559,-0.535506,1.01531,6.97267,-0.436458,1.34485,6.77673,0.447066,0.962371,6.90355,-0.654128,1.12068,6.31348,1.26457,1.35781,6.44736,0.849536,0.325411,6.63083,1.56843,0.737402,6.40205,1.48726,1.36482,6.71787,0.162345,1.28265,6.78178,-0.0757,1.19108,6.82549,-0.277918,1.09924,6.8705,-0.466266,1.39188,6.60734,0.479457,0.0558476,9.06589,1.07596,0.0241488,8.45041,1.41067,0.0385714,7.89495,1.3594,0.0399887,7.50822,1.43541,0.0380603,8.06368,1.37764,0.0335346,7.70347,1.36272,0.0602664,9.16291,1.01615,0.029935,8.24878,1.41519,0.0232522,8.74402,1.34334,0.0467371,7.00374,1.58227,0.0377553,7.97728,1.36948,0.0447745,7.34045,1.45496,0.0481064,7.19395,1.49377,0.0480841,6.71555,1.56313,0.0397342,8.93213,1.19589,0.0451413,9.39002,0.764039,0.0387268,7.46265,1.38745,0.0427114,7.29598,1.41452,0.0444185,7.13448,1.4657,0.0447774,6.95039,1.54622,0.0498117,6.76639,1.63178,0.0391978,7.53178,1.42397,0.043865,7.35868,1.44402,0.0471173,7.21253,1.47887,0.0464097,7.01768,1.5689,0.0499256,6.78368,1.62794,0.0936353,9.604,0.741989,0.39601,9.7545,0.66084,0.209719,9.65492,0.721058,0.723087,9.73189,0.404503,0.628159,9.7657,0.540556,0.685638,9.75102,0.500355,0.754673,9.71353,0.400203,0.521056,9.77686,0.609638,1.48322,8.18389,-0.00708664,1.40678,8.07636,0.0197476,1.31351,8.13244,-0.418219,1.41904,8.28835,-0.385392,1.28776,8.52024,-0.762104,1.0222,8.34777,-0.896207,1.17447,8.20133,-0.668468,1.34993,8.39418,-0.583078,1.40152,8.07553,0.218831,1.47436,8.19444,0.177145,1.36417,8.09084,-0.197264,1.46709,8.21433,-0.194595,0.164457,9.43744,0.743553,0.0499347,9.41117,0.761998,0.488439,9.57101,0.639293,0.348266,9.51627,0.688662,0.800352,9.57309,0.537277,0.763088,9.56799,0.552318,0.715198,9.56974,0.584876,0.621404,9.58063,0.613716,0.407302,-6.39854e-06,0.0436082,1.27562,-6.3981e-06,0.0147574,1.26702,-6.39045e-06,0.283082,0.412871,-6.36729e-06,0.751201,0.455625,-6.38256e-06,0.430463,1.25394,-0.000216926,-0.257378,0.990348,-6.40333e-06,-0.277655,0.723394,-6.40389e-06,-0.27566,0.403003,-6.40449e-06,-0.277721,0.69384,-6.39845e-06,0.0344672,1.01717,-6.39819e-06,0.0314385,1.02178,-6.38793e-06,0.331851,0.734753,-6.38346e-06,0.423031,1.46942,-6.36627e-06,0.774537,0.729295,-6.36699e-06,0.758025,1.15139,-6.36811e-06,0.73235,0.673916,-6.35316e-06,1.07443,1.22315,-6.35416e-06,1.05154,1.55626,-6.35314e-06,1.07473,0.330255,-6.35258e-06,1.08758,1.30588,2.33173,0.0149183,1.29989,2.33905,-0.0768289,1.27202,2.04619,-0.114756,1.27862,2.04422,-0.0303068,1.13338,2.0597,-0.0282529,1.14203,2.06132,-0.112676,1.14621,2.3488,0.0179544,1.15527,2.3555,-0.0737248,1.32926,2.32922,0.0144592,1.29564,2.0424,-0.0305864,1.32184,2.33655,-0.0773194,1.28786,2.04436,-0.11505,1.26493,2.08701,-0.137056,1.28993,2.28735,-0.114403,1.38559,2.0433,-0.214713,1.26395,2.09859,-0.00404445,1.41583,2.2475,-0.226286,1.28627,2.29316,0.0321208,1.20938,2.11892,0.225171,1.21863,2.31049,0.23707,1.21046,2.30789,0.208324,1.17973,2.11923,0.190534,1.25996,2.30109,0.027811,1.21243,2.31507,-0.245045,1.23692,2.10875,-0.00992647,1.18819,2.11044,-0.24671,1.20899,2.71904,-0.165393,1.25207,2.84022,0.0717215,1.19652,2.92392,-0.174488,1.23982,3.00787,0.0992935,1.18958,2.92535,0.270598,1.18596,3.05168,0.278547,1.19291,2.9451,0.30721,1.21804,2.75459,0.305566,1.26701,2.92967,0.104351,1.40822,2.89126,-0.0852738,1.28034,2.73266,0.0784783,1.41442,2.68468,-0.0909279,1.27484,2.91513,-0.0324875,1.28626,2.71129,-0.0461999,1.3159,2.67797,-0.0291299,1.2967,2.97308,-0.00682441,1.32207,2.68173,0.0554066,1.3033,2.97188,0.085301,1.12937,2.96219,-0.0063242,1.11965,2.95866,0.0854639,1.16936,2.66876,-0.0294838,1.1593,2.66994,0.05479,1.30499,2.68051,0.055376,1.29999,2.67696,-0.0291312,1.27465,2.97164,-0.0067417,1.27984,2.97019,0.0853341,0.461164,0.781121,0.844178,0.466477,0.837335,0.688042,0.429261,0.774019,0.539136,0.371317,0.628263,0.484688,0.326587,0.48545,0.556593,0.321223,0.428178,0.712927,0.35849,0.492552,0.861635,0.416434,0.638307,0.916083,0.443962,0.743327,0.807418,0.410667,0.637023,0.86094,0.367537,0.52853,0.820412,0.339835,0.4814,0.709574,0.34379,0.523243,0.593353,0.377084,0.629547,0.539831,0.420215,0.73804,0.580359,0.447916,0.78517,0.691197,0.385811,0.746055,0.797038,0.389201,0.781923,0.697414,0.365455,0.741524,0.602403,0.328483,0.648523,0.567662,0.299943,0.557399,0.613542,0.296553,0.521532,0.713166,0.320299,0.561931,0.808177,0.357271,0.654932,0.842918,0.315158,0.713868,0.753441,0.301618,0.670637,0.775207,0.284078,0.626516,0.758726,0.272813,0.60735,0.713651,0.274421,0.624365,0.666387,0.287961,0.667596,0.644621,0.305501,0.711718,0.661103,0.316766,0.730884,0.706178,0.279671,0.654099,0.732429,0.272635,0.677128,0.712045,0.289114,0.691654,0.689399,0.436877,0.743749,0.806231,0.440766,0.784893,0.691952,0.413526,0.73855,0.582965,0.371116,0.631869,0.543113,0.338378,0.527341,0.595742,0.334489,0.486197,0.710021,0.361728,0.532539,0.819009,0.404138,0.63922,0.858859,0.465692,0.620495,0.911346,0.407747,0.474734,0.856899,0.370454,0.409833,0.708289,0.375845,0.467637,0.551856,0.420574,0.61045,0.479951,0.478518,0.756206,0.534399,0.515734,0.819522,0.683305,0.510421,0.763309,0.839442,1.26657,0.808306,0.493823,1.30452,0.795641,0.654964,1.38426,0.683912,0.748372,1.45908,0.538569,0.719329,1.48516,0.444751,0.584849,1.44722,0.457416,0.423708,1.36748,0.569144,0.3303,1.29265,0.714488,0.359343,1.3661,0.719199,0.397776,1.42087,0.612819,0.376519,1.47923,0.531042,0.444886,1.507,0.521772,0.562829,1.48792,0.59044,0.661258,1.43315,0.696819,0.682515,1.37479,0.778595,0.614148,1.34702,0.787865,0.496205,1.52325,0.715093,0.539144,1.53296,0.713429,0.509174,1.52101,0.69978,0.483363,1.49095,0.753329,0.548094,1.51509,0.719508,0.57637,1.53774,0.675511,0.567578,1.54563,0.647112,0.52687,1.53415,0.650945,0.478091,1.51001,0.684767,0.449816,1.48736,0.728763,0.458608,1.47946,0.757162,0.499316,1.41514,0.733751,0.406753,1.46289,0.641013,0.388223,1.51377,0.569723,0.447822,1.53798,0.561643,0.55064,1.52134,0.621504,0.636446,1.4736,0.714242,0.654978,1.42272,0.785531,0.595378,1.39851,0.793612,0.49256,1.36814,0.777514,0.61669,1.4275,0.694348,0.686219,1.48319,0.586161,0.664601,1.5026,0.516327,0.5645,1.47436,0.525755,0.444554,1.41501,0.60892,0.375026,1.35931,0.717108,0.396643,1.3399,0.786941,0.496744,1.33804,0.739594,0.350629,1.41286,0.594251,0.321586,1.4926,0.482522,0.414994,1.53055,0.469857,0.576135,1.50447,0.563675,0.710616,1.42964,0.709018,0.739658,1.3499,0.820746,0.646251,1.31196,0.833411,0.485109,1.16743,3.63709,0.45992,1.25339,3.6302,0.24893,1.21704,3.41321,0.210638,0.409975,3.22617,0.628592,0.452868,3.55902,0.754518,0.521659,3.56624,0.842614,1.15807,2.62835,0.482627,1.13544,3.39457,0.38724,1.10083,3.29414,0.608465,0.633614,3.25811,0.782164,0.822326,3.26655,0.786012,1.31883,3.6035,0.683238,1.16906,3.46589,0.442108,0.672544,3.53397,1.06609,0.675962,3.32046,0.833728,1.14153,3.34873,0.66131,0.859432,3.32157,0.840278,1.21479,3.59922,0.919327,0.933091,3.56936,1.07473,1.17698,4.30296,1.02018,1.15537,4.28856,0.8564,0.781133,4.24829,1.07809,0.924487,4.27631,1.1604,0.735761,4.22188,1.03088,1.11,4.26215,0.809183,1.10469,4.26201,0.947081,0.860104,4.2366,1.0774,1.29172,3.97562,0.750202,1.20478,3.95905,0.973674,0.927878,3.92879,1.12692,0.683455,3.91018,1.11053,0.571008,3.89956,0.967287,1.18677,3.96581,0.602518,1.20517,3.62899,0.515782,1.13983,3.42266,0.402131,0.64673,3.27723,0.793751,0.559533,3.55839,0.898404,1.11085,3.30859,0.621734,0.831793,3.28057,0.79948,0.747104,4.22848,1.04268,1.12134,4.26875,0.820988,1.12276,4.27225,0.965357,0.8762,4.24652,1.09815,0.59912,3.90221,1.0031,1.21301,3.96826,0.639439,1.16424,4.26821,0.849495,1.17878,4.2806,1.01716,0.924708,4.25371,1.15822,0.774781,4.2263,1.0802,0.725048,4.20092,1.02674,1.11499,4.24288,0.795745,0.857282,4.21645,1.07082,1.1037,4.24225,0.939208,0.737481,4.20727,1.04011,1.1273,4.24921,0.809182,1.24914,1.96197,-0.178952,0.414986,1.95607,-0.353849,1.28376,2.96007,-0.136769,0.381791,2.8367,-0.325976,0.84911,1.96677,-0.537138,0.683368,1.96515,-0.538737,0.527617,1.96233,-0.478635,1.14343,1.96536,-0.366156,0.838194,2.793,-0.542682,0.652923,2.78046,-0.54043,0.494247,2.787,-0.466766,1.16961,2.86858,-0.363455,0.466213,0.566633,-0.251176,0.413674,0.504901,0.450504,1.07804,1.09479,0.91748,0.972649,0.619688,-0.398664,1.28759,0.448976,0.196158,1.32343,0.453802,0.488573,0.671957,0.615671,-0.427715,0.652786,1.07731,0.909115,0.390529,0.502167,0.0759872,0.476147,0.780562,0.714817,1.30345,0.762581,0.670227,1.20731,0.54949,-0.163031,0.464309,0.808765,-0.235687,0.437274,0.774509,0.374743,1.07148,1.14133,0.829282,0.958492,0.84315,-0.387696,1.25625,0.719717,0.109607,1.29782,0.807912,0.324189,0.680504,0.841521,-0.417657,0.667357,1.12984,0.845017,0.416793,0.769458,0.0544677,0.536195,0.980873,0.624159,1.23895,1.00907,0.588485,1.18758,0.793045,-0.164153,0.968392,-6.294e-06,2.42773,1.1441,-6.29557e-06,2.39185,0.8184,-6.29493e-06,2.40657,0.801587,0.0505963,2.35725,1.08176,0.0701109,2.33737,0.890931,0.145089,2.31329,1.02854,0.13252,2.3114,0.832714,0.114053,2.32496,0.964131,0.154172,2.30611,0.971979,0.285007,2.15851,0.71427,0.225009,2.17975,1.10225,0.243271,2.1704,0.835338,0.276072,2.16167,1.20318,0.133201,2.20716,0.630897,0.113277,2.2351,0.589592,-6.29875e-06,2.319,1.29444,-6.30107e-06,2.266,1.44789,-6.30973e-06,2.06794,0.421114,-6.30859e-06,2.09388,0.475809,0.183392,2.00463,1.34196,0.202167,1.9735,0.784409,0.392911,1.90943,1.19976,0.348498,1.92005,0.601867,0.33381,1.93754,0.99199,0.399469,1.90264,1.01738,0.569816,1.38984,0.506817,0.4964,1.41779,1.3146,0.497983,1.37315,0.744881,0.566407,1.4049,1.46956,0.318749,1.36428,0.354124,0.308194,1.42584,0.26314,-6.33758e-06,1.43071,1.55957,-6.34093e-06,1.35415,1.2887,1.69807,0.0281047,1.19949,1.56805,-0.282824,0.653916,1.3929,-0.572765,0.497036,1.82688,0.533305,0.338087,1.47174,-0.00428325,0.943288,1.41049,-0.499542,0.960838,1.85411,0.671443,0.357301,1.53833,0.290341,0.423546,1.43296,-0.359208,0.681087,1.23294,0.807091,1.02017,1.24765,0.776912,1.20848,1.13355,0.55713,1.29194,0.995964,0.254819,1.25333,0.900427,0.0506986,1.18087,0.93394,-0.176781,0.995851,1.05349,-0.371852,0.632236,1.04932,-0.425182,0.469837,0.934325,-0.22873,0.423958,0.895668,0.0517108,0.451267,0.9146,0.339187,0.534933,1.16431,0.629688,1.0362,0.60384,1.4622,0.455305,0.521127,1.495,1.35918,0.503442,1.44406,0.712728,0.600226,1.48063,1.52751,0.328219,1.44453,0.29468,0.32384,1.50364,0.21341,-6.33422e-06,1.50767,1.63445,-6.33774e-06,1.42714,1.52252,-6.35434e-06,1.04733,0.325205,-6.35136e-06,1.11555,0.383664,0.418815,1.11613,1.42003,0.431597,1.05905,0.757723,0.745841,1.1041,1.2804,0.655761,1.07239,0.534034,0.65369,1.11361,1.00917,0.750392,1.09034,1.01789,0.797933,1.13509,0.51403,0.714169,1.16152,1.2966,0.706732,1.11635,0.748159,0.797843,1.15074,1.45928,0.471866,1.09756,0.348892,0.458985,1.15844,0.238958,-6.34966e-06,1.15446,1.61756,-6.35282e-06,1.08204,1.45385,-6.37076e-06,0.671785,0.357481,-6.3681e-06,0.732485,0.454366,0.537002,0.728539,1.33558,0.551557,0.679545,0.773866,0.950002,0.711719,1.1697,0.836612,0.689676,0.583844,0.833725,0.722093,0.970559,0.956002,0.700918,0.389841,-6.3191e-06,1.85357,1.48126,-6.32173e-06,1.7934,0.455792,0.198496,1.84994,1.36566,0.215076,1.79978,0.777808,0.412404,1.83219,0.585643,0.353642,1.84278,1.22499,0.364608,1.80753,0.99746,0.417735,1.82008,1.00628,0.440574,1.90489,1.24628,0.384858,1.89165,0.571896,0.374279,1.92883,0.774568,0.434946,1.91766,1.39466,0.23027,1.88347,0.434929,0.212833,1.93639,1.51659,-6.31809e-06,1.87675,0.365363,-6.31531e-06,1.94022,0.458766,0.920013,-0.279056,0.377877,0.646653,0.436606,0.984125,0.947877,-0.421465,1.335,0.780741,0.0538123,1.33756,0.67928,0.29422,0.687114,0.948182,-0.436876,0.338575,0.774375,0.0937054,0.417733,0.529508,0.82856,1.46447,0.539726,0.776228,1.22369,0.872684,-0.232796,0.679799,-6.40663e-06,-0.558904,1.3209,-6.40149e-06,-0.275525,1.34382,-6.39741e-06,0.0148652,1.45233,-6.39365e-06,0.271039,0.347842,-6.40394e-06,-0.320981,0.354973,-6.39882e-06,0.0463635,0.343373,-6.39276e-06,0.420584,1.0995,-6.40548e-06,-0.532634,0.3815,0.286745,0.411504,0.328315,0.419292,0.0678628,0.360253,0.448133,-0.289848,1.37471,0.315882,0.267116,1.38291,0.385162,0.0294302,1.32163,0.435526,-0.241994,1.01941,0.442244,-0.529966,0.642546,0.443918,-0.55495,0.680701,0.670339,-0.512596,1.23705,0.657457,-0.230208,1.34139,0.616799,0.048312,1.3511,0.52074,0.289046,0.455213,0.647485,-0.246533,0.340822,0.629119,0.0865085,0.383378,0.510413,0.402604,0.986721,0.671239,-0.496278,1.66156,-6.38636e-06,0.766654,1.59493,0.19435,0.767512,1.54321,0.363,0.771696,0.299942,0.124877,0.832711,0.261975,-6.38808e-06,0.830366,0.356749,0.337334,0.831458,1.0599,1.25993,-0.257421,0.550692,1.21598,-0.325752,0.669049,1.22476,-0.353293,0.80809,1.23755,-0.372266,0.473327,1.20894,-0.162654,1.14666,1.26385,-0.121516,1.288,2.98129,0.151112,0.39296,2.93195,0.574378,1.30675,2.18167,0.0601634,0.713301,1.55512,0.793565,1.00134,1.54714,0.768441,1.22627,1.49728,0.538229,1.32868,1.38533,0.243616,1.31877,1.31927,0.0309145,1.23678,1.20167,-0.247409,1.00347,1.22472,-0.471722,0.609174,1.2087,-0.533566,0.403778,1.17313,-0.317377,0.331647,1.17628,0.0210544,0.356412,1.22168,0.328454,0.47867,1.49451,0.613209,0.680793,2.21897,0.688619,0.948268,2.21406,0.661509,0.458263,2.22159,0.531065,1.3149,2.65733,0.0982695,0.416363,2.64812,0.528645,1.13173,2.95465,0.540582,0.647282,2.92592,0.733413,1.26359,2.63935,0.272165,0.660102,2.61634,0.692064,0.908575,2.60999,0.671023,1.22546,2.97363,0.323267,0.880001,2.92756,0.714355,1.15319,2.20431,0.479808,1.27255,2.18968,0.243315,0.72809,1.52228,0.751425,0.981452,1.51392,0.728655,1.18576,1.46226,0.516509,1.28043,1.3512,0.23734,1.26792,1.28522,0.0388945,1.1929,1.18389,-0.21823,0.971801,1.21683,-0.430276,0.642155,1.20652,-0.492709,0.448657,1.16247,-0.28843,0.384668,1.15925,0.0260909,0.408276,1.20004,0.316838,0.519075,1.46584,0.585588,0.699941,1.85125,0.685431,1.15592,1.83559,0.476767,1.26685,1.77356,0.216617,0.71209,1.58518,0.782475,0.997158,1.57818,0.758493,1.21903,1.53149,0.531925,1.32233,1.42492,0.240847,1.31568,1.35812,0.0306263,1.23296,1.23925,-0.251042,0.997298,1.24377,-0.474575,0.613762,1.22759,-0.537586,0.405806,1.19978,-0.321667,0.332308,1.20659,0.0184557,0.356503,1.25415,0.324545,0.480537,1.5283,0.605013,0.807728,-6.40687e-06,-0.492708,0.942668,-6.40618e-06,-0.481073,0.359224,-6.33562e-06,1.47569,1.47985,-6.33844e-06,1.41111,1.17537,-6.33767e-06,1.42866,0.673346,-6.33641e-06,1.45759,0.725063,-6.31887e-06,1.85888,1.16295,-6.31997e-06,1.83365,1.42853,-6.32064e-06,1.81834,0.451072,-6.31818e-06,1.87467,1.05377,-6.29799e-06,2.33644,0.85912,-6.29758e-06,2.34584,0.770581,-6.3078e-06,2.11211,0.542757,-6.30722e-06,2.12524,1.35552,-6.30927e-06,2.0784,1.13469,-6.30872e-06,2.09113,0.434958,-6.40403e-06,-0.277515,0.435881,-6.39854e-06,0.0426965,0.483464,-6.38303e-06,0.429721,0.44443,-6.36726e-06,0.751881,0.364531,-6.35264e-06,1.08626,0.390553,-6.3357e-06,1.47388,0.478399,-6.31825e-06,1.8731,0.565479,-6.30728e-06,2.12393,1.23193,-6.40255e-06,-0.259724,1.2441,-6.3981e-06,0.0167917,1.23711,-6.39035e-06,0.289029,1.43064,-6.36649e-06,0.769393,1.51564,-6.35327e-06,1.0719,1.44272,-6.33835e-06,1.41325,1.39614,-6.32056e-06,1.82021,1.32859,-6.3092e-06,2.07996,0.838476,-6.29896e-06,2.31438,0.671883,-0.000328881,2.27822,1.20979,0.000349658,2.25983,1.06825,-6.29939e-06,2.30452,0.687832,-6.30128e-06,2.26116,1.1936,-6.30201e-06,2.24455,0.628361,-0.000325411,-0.451699,0.802078,-6.40649e-06,-0.478166,0.945862,-6.40613e-06,-0.467444,1.07654,-0.000176875,-0.445314,0.634663,4.03235e-05,-0.439184,1.06913,-2.47629e-05,-0.433537,1.15281,7.84932,0.732566,1.02884,7.18582,0.760986,1.04633,7.48992,0.667375,1.29936,8.14217,0.594306,1.42385,8.32208,0.564128,1.2312,6.53935,0.999114,1.06941,6.98126,0.815587,1.19895,6.75151,0.907431,1.1999,6.31595,1.01771,0.973239,7.16111,0.735,1.067,6.929,0.814452,1.17962,6.68462,0.903839,1.19332,6.49855,0.985018,1.25149,6.36621,1.06466,1.0338,7.21744,0.749622,1.04287,7.01417,0.797031,1.18023,6.78344,0.891745,1.22743,6.55474,0.988965,1.24673,6.37937,1.0599,1.0848,8.57531,1.02869,1.26645,2.46102,-0.157861,0.407579,2.39966,-0.332246,0.843652,2.37989,-0.53991,0.668146,2.3728,-0.539584,0.515147,2.37617,-0.469185,1.15652,2.41697,-0.364806,0.814202,1.59412,-0.4577,1.09287,1.60773,-0.31362,1.18929,1.6081,-0.152028,0.436538,1.58227,-0.255813,0.535312,1.58844,-0.401675,0.669081,1.59097,-0.447499,1.37217,4.55643,-0.124973,0.164654,4.36735,-0.254191,0.822119,4.47536,-0.645971,0.334341,4.39552,-0.53338,0.584028,4.43946,-0.629051,1.19403,4.52494,-0.448503,-0.000622508,9.37874,-0.849514,0.500149,6.17609,1.36244,0.217016,6.16859,1.47093,0.114675,5.00972,1.12501,0.469853,6.20299,1.36949,0.256166,5.35529,1.35937,0.477028,5.80914,1.43164,0.470357,6.1753,1.37386,-8.88178e-16,8.32545,-1.12727,0.000291177,8.98316,-1.02914,0,5.40598,1.53086,-8.88178e-16,9.06125,1.07932,-8.88178e-16,7.89621,1.3649,-8.88178e-16,8.06404,1.38275,-8.88178e-16,9.15783,1.02045,-8.88178e-16,8.74224,1.34093,-8.88178e-16,7.36021,1.45886,-8.88178e-16,6.74395,1.56781,-8.88178e-16,8.92671,1.19733,-8.88178e-16,7.54203,1.42804,-8.88178e-16,7.23914,1.48214,0.00079876,9.20369,-0.952232,-0.110415,9.20476,-0.941415,-0.170982,8.34011,-1.11114,-0.680396,9.46887,-0.766509,-0.123656,8.73339,-1.08355,-0.821324,9.32095,-0.86592,-0.927493,8.64377,-0.997871,-1.05366,8.78855,-0.946924,-0.893843,9.47686,-0.746422,-1.19251,8.96017,-0.890161,-0.804801,8.9928,-0.972846,-0.933813,9.14568,-0.931299,-1.03434,9.3284,-0.856747,-0.499207,9.19367,-0.92603,-0.384956,9.20593,-0.9375,-0.629831,8.86297,-1.02243,-0.450522,8.78759,-1.05682,-0.586384,8.4291,-1.07028,-0.784301,8.51491,-1.05216,-0.699268,9.17322,-0.927875,-0.582527,9.31737,-0.865289,-0.566969,9.05805,-0.990182,-0.396552,9.00199,-1.00243,-0.109946,8.9849,-1.02042,-0.245002,9.20505,-0.933132,-0.27482,8.7497,-1.06596,-0.36915,8.37405,-1.08551,-0.240044,8.9849,-1.00861,-0.871547,8.828,-0.996039,-0.997043,8.95811,-0.951943,-1.14048,9.12084,-0.887402,-0.70099,8.6835,-1.04348,-0.525557,8.58812,-1.07396,-0.149755,8.50507,-1.11453,-0.328565,8.54726,-1.08896,-0.605694,9.63223,-0.466861,-0.294361,9.53559,-0.685965,-0.457827,9.56855,-0.602733,-0.12819,9.53043,-0.722264,-0.137541,9.49879,-0.755275,-0.513855,9.55303,-0.647673,-0.334338,9.51679,-0.710329,-0.642864,9.6118,-0.580928,-0.743575,9.57224,-0.651023,-0.290947,9.40695,-0.806906,-0.455937,9.39862,-0.807285,-0.131849,9.39301,-0.831094,-0.127483,9.54955,-0.728612,-0.291584,9.55247,-0.691916,-0.6015,9.6469,-0.472186,-0.45473,9.58416,-0.607544,-1.25033,4.96474,1.02898,-0.877237,4.62352,1.3875,-0.891178,4.6347,1.37495,-1.2456,4.9399,1.04456,-1.12633,5.66778,1.0149,-0.75172,5.46538,1.46281,-0.736256,5.4606,1.47931,-1.24077,4.9552,1.04209,-0.888548,4.65291,1.37226,-1.2454,4.97991,1.02652,-0.87469,4.64184,1.3848,-0.827886,6.60746,0.875119,-0.506001,6.60736,1.16291,-0.491997,6.60361,1.17681,-0.817116,6.59997,0.896015,-1.05947,6.62574,0.564463,-0.825834,6.60367,0.880266,-1.04986,6.62059,0.582814,-1.2783,4.90092,1.12836,-1.56943,5.20454,0.67757,-1.28856,4.91162,1.11247,-1.55763,5.19223,0.695855,-1.17182,5.64865,1.15767,-1.50002,5.86362,0.682478,-1.18442,5.65406,1.14147,-1.48897,5.85018,0.702933,-1.56427,5.1777,0.698759,-1.29337,4.89406,1.11628,-1.28304,4.88325,1.13219,-1.57616,5.19015,0.680435,-1.68882,5.46584,0.181691,-1.63895,5.21169,0.744793,-1.6395,5.22077,0.724939,-1.67102,5.45718,0.204351,-1.55801,5.87868,0.736724,-1.5398,6.04746,0.168506,-1.55219,5.87345,0.755003,-1.66184,5.47054,0.203425,-1.63113,5.23712,0.722077,-1.67961,5.47907,0.180849,-1.63061,5.22815,0.741858,-1.07221,6.62836,0.564614,-1.15849,6.68783,0.10321,-1.06936,6.62285,0.580096,-1.17685,6.69609,0.0816336,-0.951408,6.67944,-0.324539,-1.16828,6.70077,0.0739547,-0.960667,6.68182,-0.308288,-1.74615,5.5146,0.190843,-1.47843,5.59385,-0.308831,-1.73672,5.51739,0.173237,-1.48929,5.59064,-0.288563,-1.6003,6.06615,0.170243,-1.35431,6.06153,-0.315273,-1.59291,6.06423,0.153119,-1.36708,6.05788,-0.295615,-1.49723,5.57783,-0.288321,-1.74503,5.50255,0.176167,-1.75448,5.49968,0.193876,-1.48635,5.58113,-0.308707,-0.819472,6.28741,0.932342,-0.501447,6.15795,1.25212,-0.826,6.30916,0.916876,-0.488884,6.15533,1.26409,-1.11805,5.68681,1.01028,-0.745716,5.48644,1.45784,-0.730356,5.4817,1.47434,-0.937882,6.11333,0.922594,-1.1781,6.28319,0.507031,-0.947031,6.11749,0.908223,-1.16985,6.27234,0.524478,-1.1634,5.67108,1.15104,-1.4892,5.88327,0.676562,-1.1759,5.67644,1.13485,-1.47819,5.87006,0.696959,-1.24736,6.33482,0.0944334,-1.22942,6.22334,0.550693,-1.25882,6.34231,0.07431,-1.22831,6.22066,0.567996,-1.51542,6.04529,0.184462,-1.55094,5.89146,0.734093,-1.53165,6.05848,0.166709,-1.54517,5.88626,0.752343,-1.28375,6.3669,0.0582388,-1.04292,6.3498,-0.348212,-1.27612,6.36469,0.044025,-1.05455,6.34699,-0.33149,-1.58265,6.09013,0.167558,-1.33665,6.0831,-0.314151,-1.57522,6.08818,0.150568,-1.34932,6.07969,-0.294646,-0.868343,6.3446,0.863753,-0.503776,6.20361,1.25413,-0.489193,6.19821,1.26862,-1.11758,5.66097,1.03834,-0.815896,6.60246,0.890225,-1.10739,5.67964,1.03214,-0.853386,6.33849,0.879719,-0.910362,6.13553,1.02353,-1.19444,6.2545,0.620513,-0.920967,6.14006,1.00756,-1.18412,6.24533,0.639886,-1.52347,6.03414,0.186272,-1.14809,6.68129,0.120245,-1.28308,6.22276,0.648709,-1.31658,6.336,0.134315,-1.27877,6.2174,0.665575,-1.30326,6.32613,0.151709,-1.36006,6.39311,0.134204,-1.114,6.35514,-0.300004,-1.35183,6.39447,0.122144,-1.12546,6.35462,-0.282431,-0.499423,6.20379,1.35803,-0.268936,5.35218,1.3434,-0.0646213,4.90934,1.17005,0,4.88882,1.16613,-0.120561,5.02152,1.11971,-0.218392,6.19625,1.46693,0,6.18975,1.48059,-0.509744,5.80987,1.4208,-0.198819,5.80294,1.52383,-0.147569,5.38177,1.49517,0,5.81389,1.50029,-0.0444574,4.58788,-0.0197704,-0.0722725,4.4032,-0.00955448,-0.293725,4.62057,-0.398998,-0.302145,4.43853,-0.392149,-0.606163,4.88381,0.929928,-0.635438,4.72223,0.872027,-0.199632,4.71973,0.76073,-0.223388,4.54895,0.720406,-0.0543837,4.62354,0.380688,-0.0846645,4.46278,0.37462,-0.204422,4.07157,0.074744,-0.164837,4.24889,0.0489647,-0.188476,4.09036,0.361041,-0.160319,4.26425,0.364965,-0.308082,4.04819,-0.232104,-0.277003,4.22296,-0.293455,-0.462387,4.13957,0.806038,-0.440977,4.3103,0.804237,-0.291547,4.11259,0.652618,-0.270885,4.27826,0.667174,-0.399681,4.82931,0.899179,-0.429243,4.65907,0.872248,-0.680171,4.18541,0.77273,-0.661525,4.33198,0.796903,-0.3487,4.62409,-0.434135,-0.357184,4.44208,-0.427301,-0.373046,4.04185,-0.283085,-0.341966,4.21662,-0.344436,-0.582336,1.90616,-0.44386,-0.590163,1.72859,-0.40078,-0.495096,2.60839,-0.433261,-0.473149,2.74853,-0.412047,-0.578025,2.63147,0.586306,-0.592278,2.79903,0.622303,-0.449951,2.64686,0.513139,-0.483379,2.46384,0.520976,-0.624026,2.79959,0.618494,-0.645615,2.61212,0.625388,-0.522034,1.91882,-0.385586,-0.519019,1.74218,-0.330723,-0.352407,2.38746,0.273148,-0.397992,2.19527,0.285345,-0.335365,2.11818,-0.0375792,-0.365057,1.92326,-0.00555976,-0.312757,2.58601,0.138641,-0.288356,2.72218,0.144872,-0.431228,2.61782,0.454169,-0.407343,2.74112,0.50524,-0.456637,2.60399,-0.394551,-0.434497,2.74265,-0.37321,-0.350283,2.5908,-0.150365,-0.323977,2.72632,-0.13475,-0.366183,1.8064,-0.112716,-0.435951,1.66305,-0.18443,-0.453147,1.89489,-0.308375,-0.501964,1.73145,-0.360659,-0.541821,1.70995,0.47196,-0.543616,1.56686,0.436717,-0.376836,1.69303,0.213406,-0.384128,1.56759,0.096269,-0.715472,1.73794,0.614496,-0.698905,1.56777,0.579624,-0.490905,1.94014,-0.384198,-0.547458,1.78292,-0.446229,-0.429385,4.85199,1.03074,-0.725963,5.04707,1.08353,-1.0785,5.37978,0.933946,-1.36058,5.54079,0.583187,-1.02869,3.98086,0.657097,-1.39224,4.00945,0.250249,-0.50332,3.88588,0.852239,-0.744606,3.92793,0.825235,-1.05315,4.60377,0.747587,-1.31093,4.68073,0.435861,-0.466874,4.3484,0.876012,-0.738292,4.44843,0.87528,-1.30829,5.80494,0.583008,-1.08368,5.63191,0.937578,-0.725161,5.23373,1.13612,-0.413324,4.99181,1.07694,-1.25428,5.46743,0.759061,-1.16755,4.00075,0.454234,-1.21081,4.64246,0.597919,-1.20544,5.72585,0.761699,-1.32132,3.92324,-0.0452496,-1.42302,5.19948,-0.100099,-0.190716,3.90931,-0.127151,-0.138593,4.82539,-0.335386,-1.16511,3.98957,-0.292657,-0.846592,4.946,-0.589549,-0.6091,4.88499,-0.596224,-0.324149,4.83646,-0.524914,-1.22295,5.0603,-0.361775,-0.797646,4.00471,-0.45982,-0.344533,3.95459,-0.299691,-0.558956,3.99392,-0.419747,-1.26115,4.74756,-0.251257,-1.26115,4.95802,-0.268192,-1.22132,5.0284,0.565756,-1.21111,4.8389,0.541027,-1.3184,4.78197,-0.0142018,-1.31104,4.82193,0.270942,-1.3184,4.98789,-0.0221026,-1.31104,5.01842,0.281784,-1.22359,4.83678,0.507288,-1.23252,5.02716,0.530283,-1.26135,5.0285,0.530283,-1.25242,4.83774,0.507288,-1.34792,5.01495,0.281065,-1.4202,4.95673,-0.0254527,-1.34792,4.8157,0.270071,-1.4202,4.75018,-0.0175519,-1.23994,4.83953,0.541027,-1.25015,5.02936,0.565756,-1.34269,4.9823,0.10295,-1.34269,4.7786,0.102925,-1.37213,4.75022,0.176607,-1.37213,5.04679,0.174201,-1.37736,4.76061,0.260651,-1.37736,5.05284,0.266223,-1.20446,5.04681,0.17237,-1.19325,5.05158,0.263933,-1.22532,4.7505,0.174188,-1.21419,4.75934,0.25787,-1.36023,4.76049,0.260392,-1.35618,4.75025,0.176382,-1.35003,5.04679,0.173976,-1.35384,5.05268,0.265942,-1.37438,4.47863,0.251982,-1.36838,4.48595,0.160235,-1.34052,4.19309,0.122308,-1.34711,4.19112,0.206757,-1.20188,4.2066,0.208811,-1.21053,4.20822,0.124388,-1.21471,4.4957,0.255018,-1.22377,4.5024,0.163339,-1.39776,4.47612,0.251523,-1.36414,4.1893,0.206478,-1.39034,4.48345,0.159745,-1.35636,4.19126,0.122014,-1.32919,4.23262,0.0538649,-1.35252,4.43311,0.0814129,-1.45044,4.19083,-0.0391414,-1.34138,4.2455,0.224207,-1.474,4.39521,-0.0190261,-1.36442,4.44006,0.262045,-1.17187,4.26709,0.458369,-1.20264,4.45613,0.476149,-1.17385,4.45801,0.477113,-1.14313,4.26935,0.459323,-1.3282,4.44749,0.264415,-1.30062,4.46153,-0.0400316,-1.30547,4.25561,0.227101,-1.27713,4.25778,-0.0600609,-1.25708,4.46967,-0.18908,-1.19814,4.267,-0.194724,-0.59087,9.31707,0.780982,-0.975657,9.40122,0.649788,-0.178412,9.1013,1.02887,-1.12511,9.21987,0.777692,-0.672408,9.1871,0.907806,-0.879266,8.5229,1.10949,-0.205575,8.45756,1.32372,-8.88178e-16,8.44854,1.40953,-0.245447,8.05611,1.30867,-0.907052,8.124,1.07087,-0.995036,7.88309,0.923886,-0.233134,7.88313,1.29375,-0.238394,7.44382,1.37362,-0.898735,7.21664,0.940536,-1.38974,8.09608,0.41755,-1.13471,7.19123,0.556943,-1.15017,7.25744,0.063476,-1.31053,7.81961,0.540716,-1.2767,7.78147,0.0252519,-0.502287,9.50766,0.665323,-0.839546,9.52555,0.566444,-0.864415,9.36822,0.707973,-0.988083,9.2315,0.834762,-0.740764,9.52079,0.607061,-1.2047,8.54104,0.93856,-1.37559,8.42643,0.729743,-1.11353,8.30117,0.949475,-1.21507,8.19091,0.786984,-0.909937,8.19784,-0.928899,-0.817802,8.00145,-0.89299,-0.958795,7.66587,-0.551799,-1.12571,7.86685,-0.490467,-1.20993,7.80075,-0.229638,-1.08717,7.53779,-0.228871,-1.15867,7.48191,0.0434332,-0.200032,7.6738,1.28343,-0.934561,7.51216,0.8044,-1.15427,7.47509,0.529141,-8.88178e-16,7.70845,1.36647,-0.193369,9.21212,0.957453,-0.43263,9.1549,0.927797,-0.547534,8.48582,1.20432,-0.576955,8.05165,1.20399,-0.599787,7.84668,1.12325,-0.543666,7.30867,1.17307,-0.553912,7.57348,1.06614,-0.397439,9.26676,0.842158,-0.753483,9.3466,0.738413,-0.857684,9.21958,0.877431,-0.643793,9.51818,0.634965,-0.216757,8.24749,1.35328,-0.900649,8.31823,1.12305,-0.560121,8.26653,1.23379,-1.05149,8.41163,1.0203,-1.45777,8.23468,0.402283,-0.186252,8.74835,1.27128,-0.852379,8.76402,1.08877,-1.17055,8.74578,0.960714,-1.30096,8.68131,0.865188,-0.520143,8.74765,1.1399,-1.05464,8.7848,1.04681,-0.945732,7.39888,-0.516642,-1.07401,7.31324,-0.215062,-0.700664,7.67601,-0.79159,-1.16622,6.93132,-0.260588,-0.826563,7.01239,-0.545932,-1.31307,6.84663,0.148804,-1.2613,6.89241,-0.0710742,-1.3349,6.60681,0.772069,-1.10794,6.4845,1.22683,-0.699047,6.61087,1.47556,-0.320833,6.81869,1.55225,-8.88178e-16,7.03758,1.58475,-0.240498,7.96804,1.2987,-0.954252,8.01004,0.997964,-0.930759,9.39004,0.672431,-1.07706,9.22383,0.80643,-0.79884,9.52422,0.576475,-1.27971,8.47658,0.864396,-1.16543,8.24462,0.867181,-0.594819,7.94705,1.16782,-1.24365,8.70737,0.920553,-0.703141,7.41564,-0.663405,-0.969368,7.19475,-0.394569,-1.18478,7.08871,0.0917449,-1.08706,7.13503,-0.151225,-0.560498,7.06125,1.22961,-0.934993,6.99261,1.01244,-0.267376,7.22903,1.39312,-1.17711,6.99923,0.618257,-1.05774,7.06568,-0.297569,-1.2319,6.98787,0.129224,-1.17761,7.02504,-0.104756,-0.639062,6.84012,1.31989,-1.04642,6.69813,1.1118,-0.292941,7.04109,1.44131,-8.88178e-16,7.22165,1.497,-1.29848,6.83092,0.689394,-0.790782,7.19468,-0.56465,-0.321855,6.57238,1.51538,-0.710574,6.33621,1.42924,-1.0759,6.24974,1.21848,-1.3154,6.38668,0.82238,-1.2518,6.73739,-0.0526351,-1.33274,6.67645,0.172437,-0.965045,6.79898,-0.659187,-1.16145,6.76823,-0.24826,-1.0402,8.04031,-0.725703,-0.887699,7.83016,-0.720408,-0.813586,7.53556,-0.661134,-1.0209,6.95991,-0.448313,-0.838444,7.29121,-0.569719,-0.926177,7.11983,-0.477516,-1.07452,6.81925,-0.437895,-0.173445,8.96122,1.15467,-0.774099,8.99148,1.02389,-1.09957,8.97056,0.948887,-1.23043,8.92922,0.887784,-0.493793,8.9681,1.05204,-0.965995,9.00804,0.985898,-1.17982,8.94411,0.923428,-1.35555,6.76253,0.450005,-1.31566,7.79585,0.286169,-1.17631,7.46502,0.297415,-1.16083,7.21808,0.321872,-1.19333,7.05459,0.359919,-1.26287,6.93962,0.413147,-1.34476,6.55454,0.464748,-0.159492,9.41359,0.745023,-0.342696,9.49027,0.689146,-0.675147,7.64167,-0.722921,-0.915877,7.37232,-0.455065,-1.10358,7.2298,0.0771934,-1.02469,7.28742,-0.180088,-0.518864,7.25655,1.14181,-0.854859,7.17429,0.910439,-0.230755,7.39005,1.32832,-8.88178e-16,7.47513,1.3911,-1.08356,7.16112,0.546589,-0.791081,7.50321,-0.600448,-1.10716,7.18688,0.321011,-0.959971,7.17386,-0.333773,-1.15382,7.06434,0.109545,-1.06877,7.1128,-0.115166,-0.545908,7.00318,1.20819,-0.937342,6.91266,1.00982,-0.255208,7.1745,1.35712,-8.88178e-16,7.31764,1.41773,-1.1692,6.96174,0.613631,-0.711382,7.38666,-0.571905,-0.847845,7.2667,-0.496213,-1.1715,7.02463,0.364214,-1.05939,7.03105,-0.252805,-1.21746,6.95149,0.143825,-1.17433,6.98884,-0.0666063,-0.629174,6.76969,1.32405,-1.02836,6.6315,1.10665,-0.282022,6.97429,1.42014,-1.28022,6.76248,0.687934,-0.792862,7.13732,-0.519086,-0.936811,7.0869,-0.412607,-1.24864,6.89149,0.408689,-0.841249,6.96322,-0.529245,-1.08359,6.4402,1.20862,-1.30226,6.55834,0.760303,-8.88178e-16,6.98216,1.54723,-0.308085,6.77537,1.5221,-0.677455,6.56105,1.44783,-1.28178,6.8088,0.159271,-1.22904,6.86257,-0.0494058,-1.14139,6.90272,-0.2336,-1.00929,6.93804,-0.436165,-1.32308,6.7156,0.434031,-0.96489,6.88944,-0.662043,-1.12124,6.29905,1.26301,-1.36376,6.4354,0.856044,-0.328864,6.61567,1.5711,-0.739449,6.38407,1.48289,-1.37222,6.71032,0.16355,-1.28809,6.77344,-0.0766489,-1.19466,6.81476,-0.280234,-1.10215,6.86125,-0.47201,-1.39558,6.59706,0.482024,-0.233633,7.47132,1.36164,-0.906589,7.25042,0.924419,-1.13717,7.22168,0.551769,-1.14979,7.28492,0.0607913,-0.545114,7.33975,1.15959,-1.07471,7.3409,-0.217797,-0.943895,7.43034,-0.522548,-0.709137,7.71498,-0.806462,-0.817573,7.57032,-0.67045,-1.16242,7.24767,0.318401,-0.696672,7.44916,-0.673081,-0.956683,7.22082,-0.405539,-1.17125,7.10969,0.0882902,-1.07284,7.15761,-0.156917,-0.55161,7.09071,1.21451,-0.908883,7.03001,0.990166,-0.261818,7.25295,1.38103,-1.15249,7.02355,0.603724,-0.828717,7.32241,-0.574991,-1.17429,7.07319,0.351326,-1.03406,7.08481,-0.306851,-1.21856,7.00233,0.124455,-1.15209,7.04061,-0.109213,-0.620687,6.87204,1.29827,-1.02922,6.73386,1.0897,-0.284266,7.0652,1.42421,-1.27957,6.85841,0.678488,-0.783486,7.2316,-0.570055,-0.909019,7.15094,-0.47834,-1.24925,6.95828,0.405289,-1.1496,6.94082,-0.261502,-1.30286,6.85874,0.147486,-1.25242,6.90274,-0.0705539,-0.691807,6.62713,1.45406,-1.09964,6.49994,1.21258,-0.316649,6.83528,1.53663,-1.32979,6.62377,0.764289,-0.822843,7.03559,-0.535506,-1.01531,6.97267,-0.436458,-1.34485,6.77673,0.447066,-0.962371,6.90355,-0.654128,-1.12068,6.31348,1.26457,-1.35781,6.44736,0.849536,-0.325411,6.63083,1.56843,-0.737402,6.40205,1.48726,-1.36482,6.71787,0.162345,-1.28265,6.78178,-0.0757,-1.19108,6.82549,-0.277918,-1.09924,6.8705,-0.466266,-1.39188,6.60734,0.479457,-0.0558476,9.06589,1.07596,-0.0241488,8.45041,1.41067,-0.0385714,7.89495,1.3594,-0.0399887,7.50822,1.43541,-0.0380603,8.06368,1.37764,-0.0335346,7.70347,1.36272,-0.0602664,9.16291,1.01615,-0.029935,8.24878,1.41519,-0.0232522,8.74402,1.34334,-0.0467371,7.00374,1.58227,-0.0377553,7.97728,1.36948,-0.0447745,7.34045,1.45496,-0.0481064,7.19395,1.49377,-0.0480841,6.71555,1.56313,-0.0397342,8.93213,1.19589,-0.0451413,9.39002,0.764039,-0.0387268,7.46265,1.38745,-0.0427114,7.29598,1.41452,-0.0444185,7.13448,1.4657,-0.0447774,6.95039,1.54622,-0.0498117,6.76639,1.63178,-0.0391978,7.53178,1.42397,-0.043865,7.35868,1.44402,-0.0471173,7.21253,1.47887,-0.0464097,7.01768,1.5689,-0.0499256,6.78368,1.62794,-0.0936353,9.604,0.741989,-0.39601,9.7545,0.66084,-0.209719,9.65492,0.721058,-0.723087,9.73189,0.404503,-0.628159,9.7657,0.540556,-0.685638,9.75102,0.500355,-0.754673,9.71353,0.400203,-0.521056,9.77686,0.609638,-1.48322,8.18389,-0.00708664,-1.40678,8.07636,0.0197476,-1.31351,8.13244,-0.418219,-1.41904,8.28835,-0.385392,-1.28776,8.52024,-0.762104,-1.0222,8.34777,-0.896207,-1.17447,8.20133,-0.668468,-1.34993,8.39418,-0.583078,-1.40152,8.07553,0.218831,-1.47436,8.19444,0.177145,-1.36417,8.09084,-0.197264,-1.46709,8.21433,-0.194595,-0.164457,9.43744,0.743553,-0.0499347,9.41117,0.761998,-8.88178e-16,9.40925,0.764248,-0.488439,9.57101,0.639293,-0.348266,9.51627,0.688662,-0.800352,9.57309,0.537277,-0.763088,9.56799,0.552318,-0.715198,9.56974,0.584876,-0.621404,9.58063,0.613716,-0.407302,-6.3965e-06,0.0436081,-1.27562,-6.39579e-06,0.0147574,-1.26702,-6.38189e-06,0.283082,-0.412871,-6.36729e-06,0.751201,-0.455625,-6.37978e-06,0.430463,-1.25394,-0.000216938,-0.257379,-0.990348,-6.4163e-06,-0.277655,-0.723394,-6.41695e-06,-0.27566,-0.403003,-6.41809e-06,-0.277721,-0.69384,-6.39638e-06,0.0344671,-1.01717,-6.39599e-06,0.0314384,-1.02178,-6.38164e-06,0.331851,-0.734753,-6.37913e-06,0.423031,-1.46942,-6.36627e-06,0.774537,-0.729295,-6.36699e-06,0.758025,-1.15139,-6.36811e-06,0.73235,-0.673916,-6.35316e-06,1.07443,-1.22315,-6.35416e-06,1.05154,-1.55626,-6.35314e-06,1.07473,-0.330255,-6.35258e-06,1.08758,-1.30588,2.33173,0.0149183,-1.29989,2.33905,-0.0768289,-1.27202,2.04619,-0.114756,-1.27862,2.04422,-0.0303068,-1.13338,2.0597,-0.0282529,-1.14203,2.06132,-0.112676,-1.14621,2.3488,0.0179544,-1.15527,2.3555,-0.0737248,-1.32926,2.32922,0.0144592,-1.29564,2.0424,-0.0305864,-1.32184,2.33655,-0.0773194,-1.28786,2.04436,-0.11505,-1.26493,2.08701,-0.137056,-1.28993,2.28735,-0.114403,-1.38559,2.0433,-0.214713,-1.26395,2.09859,-0.00404445,-1.41583,2.2475,-0.226286,-1.28627,2.29316,0.0321208,-1.20938,2.11892,0.225171,-1.21863,2.31049,0.23707,-1.21046,2.30789,0.208324,-1.17973,2.11923,0.190534,-1.25996,2.30109,0.027811,-1.21243,2.31507,-0.245045,-1.23692,2.10875,-0.00992647,-1.18819,2.11044,-0.24671,-1.20899,2.71904,-0.165393,-1.25207,2.84022,0.0717215,-1.19652,2.92392,-0.174488,-1.23982,3.00787,0.0992935,-1.18958,2.92535,0.270598,-1.18596,3.05168,0.278547,-1.19291,2.9451,0.30721,-1.21804,2.75459,0.305566,-1.26701,2.92967,0.104351,-1.40822,2.89126,-0.0852738,-1.28034,2.73266,0.0784783,-1.41442,2.68468,-0.0909279,-1.27484,2.91513,-0.0324875,-1.28626,2.71129,-0.0461999,-1.3159,2.67797,-0.0291299,-1.2967,2.97308,-0.00682441,-1.32207,2.68173,0.0554066,-1.3033,2.97188,0.085301,-1.12937,2.96219,-0.0063242,-1.11965,2.95866,0.0854639,-1.16936,2.66876,-0.0294838,-1.1593,2.66994,0.05479,-1.30499,2.68051,0.055376,-1.29999,2.67696,-0.0291312,-1.27465,2.97164,-0.0067417,-1.27984,2.97019,0.0853341,-0.461164,0.781121,0.844178,-0.466477,0.837335,0.688042,-0.429261,0.774019,0.539136,-0.371317,0.628263,0.484688,-0.326587,0.48545,0.556593,-0.321223,0.428178,0.712927,-0.35849,0.492552,0.861635,-0.416434,0.638307,0.916083,-0.443962,0.743327,0.807418,-0.410667,0.637023,0.86094,-0.367537,0.52853,0.820412,-0.339835,0.4814,0.709574,-0.34379,0.523243,0.593353,-0.377084,0.629547,0.539831,-0.420215,0.73804,0.580359,-0.447916,0.78517,0.691197,-0.385811,0.746055,0.797038,-0.389201,0.781923,0.697414,-0.365455,0.741524,0.602403,-0.328483,0.648523,0.567662,-0.299943,0.557399,0.613542,-0.296553,0.521532,0.713166,-0.320299,0.561931,0.808177,-0.357271,0.654932,0.842918,-0.315158,0.713868,0.753441,-0.301618,0.670637,0.775207,-0.284078,0.626516,0.758726,-0.272813,0.60735,0.713651,-0.274421,0.624365,0.666387,-0.287961,0.667596,0.644621,-0.305501,0.711718,0.661103,-0.316766,0.730884,0.706178,-0.279671,0.654099,0.732429,-0.272635,0.677128,0.712045,-0.289114,0.691654,0.689399,-0.436877,0.743749,0.806231,-0.440766,0.784893,0.691952,-0.413526,0.73855,0.582965,-0.371116,0.631869,0.543113,-0.338378,0.527341,0.595742,-0.334489,0.486197,0.710021,-0.361728,0.532539,0.819009,-0.404138,0.63922,0.858859,-0.465692,0.620495,0.911346,-0.407747,0.474734,0.856899,-0.370454,0.409833,0.708289,-0.375845,0.467637,0.551856,-0.420574,0.61045,0.479951,-0.478518,0.756206,0.534399,-0.515734,0.819522,0.683305,-0.510421,0.763309,0.839442,-1.26657,0.808306,0.493823,-1.30452,0.795641,0.654964,-1.38426,0.683912,0.748372,-1.45908,0.538569,0.719329,-1.48516,0.444751,0.584849,-1.44722,0.457416,0.423708,-1.36748,0.569144,0.3303,-1.29265,0.714488,0.359343,-1.3661,0.719199,0.397776,-1.42087,0.612819,0.376519,-1.47923,0.531042,0.444886,-1.507,0.521772,0.562829,-1.48792,0.59044,0.661258,-1.43315,0.696819,0.682515,-1.37479,0.778595,0.614148,-1.34702,0.787865,0.496205,-1.52325,0.715093,0.539144,-1.53296,0.713429,0.509174,-1.52101,0.69978,0.483363,-1.49095,0.753329,0.548094,-1.51509,0.719508,0.57637,-1.53774,0.675511,0.567578,-1.54563,0.647112,0.52687,-1.53415,0.650945,0.478091,-1.51001,0.684767,0.449816,-1.48736,0.728763,0.458608,-1.47946,0.757162,0.499316,-1.41514,0.733751,0.406753,-1.46289,0.641013,0.388223,-1.51377,0.569723,0.447822,-1.53798,0.561643,0.55064,-1.52134,0.621504,0.636446,-1.4736,0.714242,0.654978,-1.42272,0.785531,0.595378,-1.39851,0.793612,0.49256,-1.36814,0.777514,0.61669,-1.4275,0.694348,0.686219,-1.48319,0.586161,0.664601,-1.5026,0.516327,0.5645,-1.47436,0.525755,0.444554,-1.41501,0.60892,0.375026,-1.35931,0.717108,0.396643,-1.3399,0.786941,0.496744,-1.33804,0.739594,0.350629,-1.41286,0.594251,0.321586,-1.4926,0.482522,0.414994,-1.53055,0.469857,0.576135,-1.50447,0.563675,0.710616,-1.42964,0.709018,0.739658,-1.3499,0.820746,0.646251,-1.31196,0.833411,0.485109,-1.16743,3.63709,0.45992,-1.25339,3.6302,0.24893,-1.21704,3.41321,0.210638,-0.409975,3.22617,0.628592,-0.452868,3.55902,0.754518,-0.521659,3.56624,0.842614,-1.15807,2.62835,0.482627,-1.13544,3.39457,0.38724,-1.10083,3.29414,0.608465,-0.633614,3.25811,0.782164,-0.822326,3.26655,0.786012,-1.31883,3.6035,0.683238,-1.16906,3.46589,0.442108,-0.672544,3.53397,1.06609,-0.675962,3.32046,0.833728,-1.14153,3.34873,0.66131,-0.859432,3.32157,0.840278,-1.21479,3.59922,0.919327,-0.933091,3.56936,1.07473,-1.17698,4.30296,1.02018,-1.15537,4.28856,0.8564,-0.781133,4.24829,1.07809,-0.924487,4.27631,1.1604,-0.735761,4.22188,1.03088,-1.11,4.26215,0.809183,-1.10469,4.26201,0.947081,-0.860104,4.2366,1.0774,-1.29172,3.97562,0.750202,-1.20478,3.95905,0.973674,-0.927878,3.92879,1.12692,-0.683455,3.91018,1.11053,-0.571008,3.89956,0.967287,-1.18677,3.96581,0.602518,-1.20517,3.62899,0.515782,-1.13983,3.42266,0.402131,-0.64673,3.27723,0.793751,-0.559533,3.55839,0.898404,-1.11085,3.30859,0.621734,-0.831793,3.28057,0.79948,-0.747104,4.22848,1.04268,-1.12134,4.26875,0.820988,-1.12276,4.27225,0.965357,-0.8762,4.24652,1.09815,-0.59912,3.90221,1.0031,-1.21301,3.96826,0.639439,-1.16424,4.26821,0.849495,-1.17878,4.2806,1.01716,-0.924708,4.25371,1.15822,-0.774781,4.2263,1.0802,-0.725048,4.20092,1.02674,-1.11499,4.24288,0.795745,-0.857282,4.21645,1.07082,-1.1037,4.24225,0.939208,-0.737481,4.20727,1.04011,-1.1273,4.24921,0.809182,-1.24914,1.96197,-0.178952,-0.414986,1.95607,-0.353849,-1.28376,2.96007,-0.136769,-0.381791,2.8367,-0.325976,-0.84911,1.96677,-0.537138,-0.683368,1.96515,-0.538737,-0.527617,1.96233,-0.478635,-1.14343,1.96536,-0.366156,-0.838194,2.793,-0.542682,-0.652923,2.78046,-0.54043,-0.494247,2.787,-0.466766,-1.16961,2.86858,-0.363455,-0.466213,0.566633,-0.251176,-0.413674,0.504901,0.450504,-1.07804,1.09479,0.91748,-0.972649,0.619688,-0.398664,-1.28759,0.448976,0.196158,-1.32343,0.453802,0.488573,-0.671957,0.615671,-0.427715,-0.652786,1.07731,0.909115,-0.390529,0.502167,0.0759872,-0.476147,0.780562,0.714817,-1.30345,0.762581,0.670227,-1.20731,0.54949,-0.163031,-0.464309,0.808765,-0.235687,-0.437274,0.774509,0.374743,-1.07148,1.14133,0.829282,-0.958492,0.84315,-0.387696,-1.25625,0.719717,0.109607,-1.29782,0.807912,0.324189,-0.680504,0.841521,-0.417657,-0.667357,1.12984,0.845017,-0.416793,0.769458,0.0544677,-0.536195,0.980873,0.624159,-1.23895,1.00907,0.588485,-1.18758,0.793045,-0.164153,-0.968392,-6.294e-06,2.42773,-1.1441,-6.29557e-06,2.39185,-0.8184,-6.29493e-06,2.40657,-0.801587,0.0505963,2.35725,-1.08176,0.0701109,2.33737,-0.890931,0.145089,2.31329,-1.02854,0.13252,2.3114,-0.832714,0.114053,2.32496,-0.964131,0.154172,2.30611,-0.971979,0.285007,2.15851,-0.71427,0.225009,2.17975,-1.10225,0.243271,2.1704,-0.835338,0.276072,2.16167,-1.20318,0.133201,2.20716,-0.630897,0.113277,2.2351,-0.589592,-6.29875e-06,2.319,-1.29444,-6.30107e-06,2.266,-1.44789,-6.30973e-06,2.06794,-0.421114,-6.30859e-06,2.09388,-0.475809,0.183392,2.00463,-1.34196,0.202167,1.9735,-0.784409,0.392911,1.90943,-1.19976,0.348498,1.92005,-0.601867,0.33381,1.93754,-0.99199,0.399469,1.90264,-1.01738,0.569816,1.38984,-0.506817,0.4964,1.41779,-1.3146,0.497983,1.37315,-0.744881,0.566407,1.4049,-1.46956,0.318749,1.36428,-0.354124,0.308194,1.42584,-0.26314,-6.33758e-06,1.43071,-1.55957,-6.34093e-06,1.35415,-1.2887,1.69807,0.0281047,-1.19949,1.56805,-0.282824,-0.653916,1.3929,-0.572765,-0.497036,1.82688,0.533305,-0.338087,1.47174,-0.00428325,-0.943288,1.41049,-0.499542,-0.960838,1.85411,0.671443,-0.357301,1.53833,0.290341,-0.423546,1.43296,-0.359208,-0.681087,1.23294,0.807091,-1.02017,1.24765,0.776912,-1.20848,1.13355,0.55713,-1.29194,0.995964,0.254819,-1.25333,0.900427,0.0506986,-1.18087,0.93394,-0.176781,-0.995851,1.05349,-0.371852,-0.632236,1.04932,-0.425182,-0.469837,0.934325,-0.22873,-0.423958,0.895668,0.0517108,-0.451267,0.9146,0.339187,-0.534933,1.16431,0.629688,-1.0362,0.60384,1.4622,-0.455305,0.521127,1.495,-1.35918,0.503442,1.44406,-0.712728,0.600226,1.48063,-1.52751,0.328219,1.44453,-0.29468,0.32384,1.50364,-0.21341,-6.33422e-06,1.50767,-1.63445,-6.33774e-06,1.42714,-1.52252,-6.35434e-06,1.04733,-0.325205,-6.35136e-06,1.11555,-0.383664,0.418815,1.11613,-1.42003,0.431597,1.05905,-0.757723,0.745841,1.1041,-1.2804,0.655761,1.07239,-0.534034,0.65369,1.11361,-1.00917,0.750392,1.09034,-1.01789,0.797933,1.13509,-0.51403,0.714169,1.16152,-1.2966,0.706732,1.11635,-0.748159,0.797843,1.15074,-1.45928,0.471866,1.09756,-0.348892,0.458985,1.15844,-0.238958,-6.34966e-06,1.15446,-1.61756,-6.35282e-06,1.08204,-1.45385,-6.37076e-06,0.671785,-0.357481,-6.3681e-06,0.732485,-0.454366,0.537002,0.728539,-1.33558,0.551557,0.679545,-0.773866,0.950002,0.711719,-1.1697,0.836612,0.689676,-0.583844,0.833725,0.722093,-0.970559,0.956002,0.700918,-0.389841,-6.3191e-06,1.85357,-1.48126,-6.32173e-06,1.7934,-0.455792,0.198496,1.84994,-1.36566,0.215076,1.79978,-0.777808,0.412404,1.83219,-0.585643,0.353642,1.84278,-1.22499,0.364608,1.80753,-0.99746,0.417735,1.82008,-1.00628,0.440574,1.90489,-1.24628,0.384858,1.89165,-0.571896,0.374279,1.92883,-0.774568,0.434946,1.91766,-1.39466,0.23027,1.88347,-0.434929,0.212833,1.93639,-1.51659,-6.31809e-06,1.87675,-0.365363,-6.31531e-06,1.94022,-0.458766,0.920013,-0.279056,-0.377877,0.646653,0.436606,-0.984125,0.947877,-0.421465,-1.335,0.780741,0.0538123,-1.33756,0.67928,0.29422,-0.687114,0.948182,-0.436876,-0.338575,0.774375,0.0937054,-0.417733,0.529508,0.82856,-1.46447,0.539726,0.776228,-1.22369,0.872684,-0.232796,-0.679799,-6.43868e-06,-0.558904,-1.3209,-6.41546e-06,-0.275525,-1.34382,-6.39402e-06,0.0148651,-1.45233,-6.37479e-06,0.271039,-0.347842,-6.42242e-06,-0.320981,-0.354973,-6.39539e-06,0.0463634,-0.343373,-6.36893e-06,0.420584,-1.0995,-6.43518e-06,-0.532634,-0.3815,0.286745,0.411504,-0.328315,0.419292,0.0678627,-0.360253,0.448133,-0.289848,-1.37471,0.315882,0.267116,-1.38291,0.385162,0.0294301,-1.32163,0.435526,-0.241994,-1.01941,0.442244,-0.529966,-0.642546,0.443917,-0.554951,-0.680701,0.670339,-0.512596,-1.23705,0.657457,-0.230208,-1.34139,0.616799,0.048312,-1.3511,0.52074,0.289046,-0.455213,0.647485,-0.246533,-0.340822,0.629119,0.0865085,-0.383378,0.510413,0.402604,-0.986721,0.671239,-0.496278,-1.66156,-6.33757e-06,0.766654,-1.59493,0.19435,0.767512,-1.54321,0.363,0.771696,-0.299942,0.124877,0.832711,-0.261975,-6.3381e-06,0.830366,-0.356749,0.337334,0.831458,-1.0599,1.25993,-0.257421,-0.550692,1.21598,-0.325752,-0.669049,1.22476,-0.353293,-0.80809,1.23755,-0.372266,-0.473327,1.20894,-0.162654,-1.14666,1.26385,-0.121516,-1.288,2.98129,0.151112,-0.39296,2.93195,0.574378,-1.30675,2.18167,0.0601634,-0.713301,1.55512,0.793565,-1.00134,1.54714,0.768441,-1.22627,1.49728,0.538229,-1.32868,1.38533,0.243616,-1.31877,1.31927,0.0309145,-1.23678,1.20167,-0.247409,-1.00347,1.22472,-0.471722,-0.609174,1.2087,-0.533566,-0.403778,1.17313,-0.317377,-0.331647,1.17628,0.0210544,-0.356412,1.22168,0.328454,-0.47867,1.49451,0.613209,-0.680793,2.21897,0.688619,-0.948268,2.21406,0.661509,-0.458263,2.22159,0.531065,-1.3149,2.65733,0.0982695,-0.416363,2.64812,0.528645,-1.13173,2.95465,0.540582,-0.647282,2.92592,0.733413,-1.26359,2.63935,0.272165,-0.660102,2.61634,0.692064,-0.908575,2.60999,0.671023,-1.22546,2.97363,0.323267,-0.880001,2.92756,0.714355,-1.15319,2.20431,0.479808,-1.27255,2.18968,0.243315,-0.72809,1.52228,0.751425,-0.981452,1.51392,0.728655,-1.18576,1.46226,0.516509,-1.28043,1.3512,0.23734,-1.26792,1.28522,0.0388945,-1.1929,1.18389,-0.21823,-0.971801,1.21683,-0.430276,-0.642155,1.20652,-0.492709,-0.448657,1.16247,-0.28843,-0.384668,1.15925,0.0260909,-0.408276,1.20004,0.316838,-0.519075,1.46584,0.585588,-0.699941,1.85125,0.685431,-1.15592,1.83559,0.476767,-1.26685,1.77356,0.216617,-0.71209,1.58518,0.782475,-0.997158,1.57818,0.758493,-1.21903,1.53149,0.531925,-1.32233,1.42492,0.240847,-1.31568,1.35812,0.0306263,-1.23296,1.23925,-0.251042,-0.997298,1.24377,-0.474575,-0.613762,1.22759,-0.537586,-0.405806,1.19978,-0.321667,-0.332308,1.20659,0.0184557,-0.356503,1.25415,0.324545,-0.480537,1.5283,0.605013,-0.807728,-6.43232e-06,-0.492708,-0.942668,-6.43122e-06,-0.481073,-0.359224,-6.33562e-06,1.47569,-1.47985,-6.33844e-06,1.41111,-1.17537,-6.33767e-06,1.42866,-0.673346,-6.33641e-06,1.45759,-0.725063,-6.31887e-06,1.85888,-1.16295,-6.31997e-06,1.83365,-1.42853,-6.32064e-06,1.81834,-0.451072,-6.31818e-06,1.87467,-1.05377,-6.29799e-06,2.33644,-0.85912,-6.29758e-06,2.34584,-0.770581,-6.3078e-06,2.11211,-0.542757,-6.30722e-06,2.12524,-1.35552,-6.30927e-06,2.0784,-1.13469,-6.30872e-06,2.09113,-0.434958,-6.41827e-06,-0.277515,-0.435881,-6.39645e-06,0.0426964,-0.483464,-6.37926e-06,0.429721,-0.44443,-6.36726e-06,0.751881,-0.364531,-6.35264e-06,1.08626,-0.390553,-6.3357e-06,1.47388,-0.478399,-6.31825e-06,1.8731,-0.565479,-6.30728e-06,2.12393,-1.23193,-6.41428e-06,-0.259724,-1.2441,-6.39573e-06,0.0167916,-1.23711,-6.38149e-06,0.289029,-1.43064,-6.36649e-06,0.769393,-1.51564,-6.35327e-06,1.0719,-1.44272,-6.33835e-06,1.41325,-1.39614,-6.32056e-06,1.82021,-1.32859,-6.3092e-06,2.07996,-0.838476,-6.29896e-06,2.31438,-0.671883,-0.000328881,2.27822,-1.20979,0.000349658,2.25983,-1.06825,-6.29939e-06,2.30452,-0.687832,-6.30128e-06,2.26116,-1.1936,-6.30201e-06,2.24455,-0.628361,-0.000325434,-0.4517,-0.802078,-6.43142e-06,-0.478167,-0.945862,-6.43012e-06,-0.467444,-1.07654,-0.000176897,-0.445314,-0.634663,4.03011e-05,-0.439184,-1.06913,-2.47859e-05,-0.433538,-1.15281,7.84932,0.732566,-1.02884,7.18582,0.760986,-1.04633,7.48992,0.667375,-1.29936,8.14217,0.594306,-1.42385,8.32208,0.564128,-1.2312,6.53935,0.999114,-1.06941,6.98126,0.815587,-1.19895,6.75151,0.907431,-1.1999,6.31595,1.01771,-0.973239,7.16111,0.735,-1.067,6.929,0.814452,-1.17962,6.68462,0.903839,-1.19332,6.49855,0.985018,-1.25149,6.36621,1.06466,-1.0338,7.21744,0.749622,-1.04287,7.01417,0.797031,-1.18023,6.78344,0.891745,-1.22743,6.55474,0.988965,-1.24673,6.37937,1.0599,-1.0848,8.57531,1.02869,-1.26645,2.46102,-0.157861,-0.407579,2.39966,-0.332246,-0.843652,2.37989,-0.53991,-0.668146,2.3728,-0.539584,-0.515147,2.37617,-0.469185,-1.15652,2.41697,-0.364806,-0.814202,1.59412,-0.4577,-1.09287,1.60773,-0.31362,-1.18929,1.6081,-0.152028,-0.436538,1.58227,-0.255813,-0.535312,1.58844,-0.401675,-0.669081,1.59097,-0.447499,-1.37217,4.55643,-0.124973,-0.164654,4.36735,-0.254191,-0.822119,4.47536,-0.645971,-0.334341,4.39552,-0.53338,-0.584028,4.43946,-0.629051,-1.19403,4.52494,-0.448503,0.000622508,9.37874,-0.849514,-8.88178e-16,9.49208,-0.771903,4.7793e-05,9.55431,-0.73164,9.81142e-05,9.53471,-0.725491,-8.88178e-16,8.73048,-1.0934,-8.88178e-16,8.50387,-1.12801,-8.88178e-16,9.59146,0.74638,-8.88178e-16,7.05105,1.57154,-8.88178e-16,8.24821,1.41598,-8.88178e-16,7.51918,1.43929,-8.88178e-16,6.81377,1.6327,-8.88178e-16,7.37736,1.448,-8.88178e-16,6.79603,1.63658,-8.88178e-16,7.16361,1.46898,-8.88178e-16,9.38926,0.766208,-8.88178e-16,7.97805,1.37499,-0.500149,6.17609,1.36244,-0.217016,6.16859,1.47093,0,6.16333,1.48198,-0.114675,5.00972,1.12501,-0.469853,6.20299,1.36949,-0.256166,5.35529,1.35937,-0.477028,5.80914,1.43164,-0.470357,6.1753,1.37386,-0.003073,9.1912,-0.925051,0.108215,9.19215,-0.914283,0.167592,8.34013,-1.08133,0.681061,9.44915,-0.743908,0.121073,8.72755,-1.05424,0.82083,9.30647,-0.839652,0.920417,8.64071,-0.968879,1.04516,8.78605,-0.918264,0.892716,9.45877,-0.722519,1.18353,8.95742,-0.861669,0.801336,8.98608,-0.943815,0.930281,9.13709,-0.902773,1.03166,9.31619,-0.829477,0.498321,9.18067,-0.899012,0.384714,9.19285,-0.910507,0.626642,8.85707,-0.993186,0.448973,8.78231,-1.02733,0.583776,8.42817,-1.04041,0.779697,8.51237,-1.02262,0.697926,9.16216,-0.900021,0.582664,9.30172,-0.839698,0.56488,9.0488,-0.96172,0.396103,8.99359,-0.973637,0.10763,8.97622,-0.991797,0.243976,9.19223,-0.906027,0.273,8.74414,-1.03653,0.366069,8.37397,-1.05567,0.238852,8.97641,-0.979858,0.865658,8.82401,-0.966894,0.990117,8.95397,-0.923049,1.13288,9.11555,-0.858868,0.696694,8.67986,-1.01401,0.523102,8.58589,-1.04414,0.146644,8.50307,-1.08476,0.325939,8.54529,-1.05914,0.592728,9.6172,-0.444366,0.286892,9.52368,-0.659464,0.448305,9.55169,-0.579823,0.124942,9.5217,-0.69375,0.135287,9.47847,-0.733327,0.515985,9.5281,-0.631134,0.332567,9.49373,-0.69122,0.646708,9.58573,-0.566581,0.744367,9.55013,-0.630761,0.28909,9.3893,-0.782715,0.455795,9.38012,-0.783675,0.129615,9.3766,-0.806083,0.124244,9.55866,-0.700216,0.281518,9.56012,-0.664711,0.58073,9.64911,-0.450652,0.437166,9.58836,-0.583589,1.23111,4.95519,1.00802,0.860301,4.61757,1.36347,0.874464,4.62829,1.35088,1.22862,4.93203,1.02112,1.10431,5.65297,1.0009,0.733346,5.45398,1.44201,0.717196,5.45033,1.45855,1.22227,4.94697,1.01996,0.87131,4.64614,1.34865,1.22481,4.97141,1.00643,0.857345,4.6357,1.36111,0.805736,6.60502,0.855035,0.485687,6.6032,1.14123,0.471918,6.59881,1.15504,0.79388,6.59071,0.879455,1.03658,6.61503,0.548304,0.803338,6.59402,0.862927,1.02741,6.61025,0.565817,1.25749,4.8913,1.10901,1.54941,5.19326,0.658291,1.26788,4.90153,1.09322,1.53761,5.18116,0.676439,1.15266,5.63575,1.13854,1.48276,5.84839,0.66323,1.16556,5.64067,1.12238,1.47098,5.83565,0.683817,1.54531,5.16607,0.678623,1.27336,4.88382,1.0964,1.26272,4.87345,1.11242,1.5579,5.17766,0.660169,1.6707,5.45201,0.162186,1.61352,5.19747,0.737636,1.61444,5.20614,0.717345,1.64903,5.44214,0.190558,1.53393,5.86292,0.72827,1.52606,6.03371,0.145654,1.52907,5.8583,0.743335,1.63856,5.45681,0.190405,1.60523,5.22352,0.715458,1.66037,5.46608,0.161849,1.60459,5.21469,0.735428,1.04664,6.61438,0.557526,1.13807,6.67709,0.0840332,1.04526,6.60822,0.569838,1.15404,6.68501,0.0976604,0.927779,6.66873,-0.309474,1.14467,6.68938,0.088545,0.936918,6.67077,-0.293666,1.72123,5.50301,0.202874,1.45445,5.58012,-0.29714,1.71209,5.50522,0.185297,1.46509,5.57728,-0.276893,1.57747,6.05059,0.181926,1.33285,6.0435,-0.304587,1.57037,6.04819,0.164711,1.34521,6.04065,-0.284453,1.47287,5.56405,-0.277508,1.7201,5.49034,0.187538,1.72938,5.48797,0.205414,1.4624,5.56639,-0.298266,0.799654,6.27963,0.911206,0.483485,6.15123,1.22905,0.805083,6.30092,0.897014,0.470829,6.14887,1.24102,1.09679,5.67361,0.993743,0.727738,5.47457,1.43697,0.711882,5.47066,1.45344,0.916151,6.10406,0.904104,1.15709,6.27265,0.488399,0.925481,6.10787,0.889704,1.14867,6.26206,0.505881,1.14447,5.65717,1.13238,1.47199,5.86736,0.657831,1.15738,5.66197,1.11621,1.46055,5.85471,0.678163,1.22376,6.32215,0.0809327,1.20262,6.21103,0.545251,1.23851,6.33019,0.0558579,1.2012,6.20879,0.563074,1.49512,6.02832,0.170325,1.52783,5.8739,0.726507,1.51722,6.04457,0.144386,1.52329,5.86935,0.740704,1.25919,6.35556,0.071204,1.01897,6.33669,-0.335784,1.25173,6.35286,0.056883,1.03047,6.33425,-0.318922,1.55992,6.07469,0.179586,1.31544,6.06523,-0.302733,1.55288,6.07217,0.162582,1.32769,6.06243,-0.283055,0.846593,6.33774,0.844265,0.484563,6.19536,1.23262,0.4704,6.189,1.24712,1.0981,5.64714,1.0202,0.794565,6.59939,0.869356,1.08766,5.66654,1.01371,0.832785,6.33083,0.859301,0.889645,6.12276,1.00598,1.17381,6.24125,0.603225,0.900333,6.12749,0.989776,1.1642,6.23189,0.621931,1.50163,6.01768,0.173938,1.12413,6.66889,0.107133,1.25946,6.20598,0.640932,1.29853,6.32366,0.113777,1.25699,6.19999,0.654515,1.2808,6.31118,0.138614,1.33731,6.37921,0.147945,1.09117,6.34153,-0.28609,1.32903,6.38095,0.136189,1.10278,6.34021,-0.269099,0.488873,6.19916,1.33033,0.25033,5.36706,1.32517,0.0542856,4.92698,1.14809,0.099046,5.03876,1.10788,0.211915,6.19269,1.43786,0.497832,5.81178,1.39333,0.192268,5.80326,1.49456,0.137399,5.39236,1.46901,0.0731335,4.59217,-0.0120733,0.100917,4.40748,-0.00173656,0.314639,4.62306,-0.377636,0.323407,4.44108,-0.37114,0.606193,4.89125,0.900865,0.635467,4.72966,0.842964,0.21943,4.72685,0.739344,0.246582,4.55575,0.702634,0.0829097,4.62919,0.373319,0.11349,4.46831,0.368416,0.233284,4.07833,0.0793629,0.193658,4.25569,0.0537732,0.217643,4.09561,0.356387,0.189429,4.26947,0.359929,0.332088,4.05768,-0.21682,0.300387,4.23265,-0.277352,0.471438,4.14229,0.777566,0.44958,4.31299,0.775623,0.316056,4.11667,0.635807,0.294851,4.28226,0.649578,0.40585,4.83688,0.870815,0.437631,4.66662,0.844451,0.677144,4.18713,0.742934,0.658498,4.33369,0.767106,0.364748,4.62579,-0.408845,0.373232,4.44378,-0.402012,0.39098,4.05259,-0.261568,0.3599,4.22736,-0.32292,0.603477,1.9121,-0.423421,0.611304,1.73453,-0.380341,0.51636,2.60852,-0.4121,0.494412,2.74866,-0.390885,0.594355,2.63918,0.562351,0.608609,2.80675,0.598348,0.468806,2.64917,0.48992,0.506257,2.46745,0.501908,0.639104,2.8008,0.592587,0.660693,2.61333,0.59948,0.546858,1.92416,-0.36961,0.543625,1.74757,-0.31443,0.379231,2.39217,0.260569,0.426134,2.20008,0.276134,0.364949,2.12315,-0.0378521,0.394168,1.92814,-0.000206508,0.341923,2.59239,0.135694,0.317452,2.72863,0.141434,0.45498,2.62563,0.437593,0.428913,2.74901,0.485939,0.480975,2.6055,-0.377078,0.459352,2.74443,-0.356505,0.378742,2.59491,-0.14181,0.352606,2.73059,-0.126871,0.394545,1.81181,-0.104572,0.464011,1.66839,-0.175256,0.479311,1.8989,-0.294257,0.528147,1.7355,-0.346588,0.563943,1.71612,0.45266,0.566577,1.57368,0.418656,0.404593,1.70103,0.205313,0.413268,1.57448,0.0944608,0.734736,1.74209,0.591877,0.718168,1.57192,0.557004,0.516637,1.94321,-0.369086,0.573191,1.78599,-0.431116,0.427614,4.86104,1.0022,0.717274,5.05475,1.05587,1.05952,5.38334,0.910986,1.33512,5.53984,0.56735,1.00986,3.98499,0.634113,1.36975,4.01367,0.23084,0.501112,3.88802,0.822398,0.736715,3.93073,0.796428,1.03413,4.60923,0.725036,1.2866,4.68491,0.418816,0.46465,4.35353,0.846539,0.729448,4.45428,0.847219,1.28369,5.80026,0.566486,1.06291,5.63168,0.915936,0.713315,5.23881,1.10903,0.412403,5.00045,1.04823,1.23023,5.46826,0.74114,1.14479,4.00519,0.435202,1.18749,4.64706,0.579617,1.18166,5.72239,0.74374,1.2959,3.92804,-0.030067,1.3978,5.19965,-0.0838505,0.213585,3.91733,-0.109469,0.162325,4.82782,-0.317196,1.14414,3.99656,-0.272366,0.838192,4.94292,-0.560915,0.613729,4.88263,-0.566678,0.34107,4.83686,-0.500145,1.20101,5.05931,-0.341341,0.792062,4.01562,-0.432439,0.363157,3.96462,-0.27842,0.565495,4.00626,-0.393196,1.23195,4.74797,-0.244392,1.23195,4.95843,-0.261327,1.19308,5.03106,0.555964,1.18287,4.84155,0.531235,1.28859,4.7822,-0.010871,1.28145,4.82262,0.26605,1.28854,4.98809,-0.0191948,1.28159,5.01925,0.276103,1.1953,4.8388,0.497508,1.20424,5.02929,0.5205,1.23321,5.03065,0.520132,1.22429,4.83979,0.497058,1.31846,5.01582,0.275463,1.39471,4.95643,-0.0412652,1.31822,4.81639,0.265868,1.39471,4.74988,-0.0333644,1.2117,4.84217,0.531258,1.2219,5.03201,0.555988,1.31348,4.98215,0.096143,1.31405,4.77841,0.0939912,1.3522,4.77259,0.175044,1.35109,5.02557,0.176828,1.35469,4.78024,0.259587,1.35636,5.03157,0.268851,1.22581,5.0261,0.176259,1.21518,5.03148,0.26786,1.24426,4.77376,0.174007,1.23616,4.77975,0.258406,1.3602,4.79028,0.256864,1.35615,4.78004,0.172864,1.35011,5.01685,0.175815,1.35392,5.02274,0.267787,1.37105,4.4489,0.249758,1.36506,4.45622,0.158003,1.34384,4.2229,0.122854,1.35044,4.22093,0.207293,1.22606,4.22417,0.211395,1.23201,4.22902,0.126743,1.23425,4.47294,0.255482,1.24266,4.4791,0.163701,1.37451,4.45717,0.251925,1.34386,4.21128,0.208809,1.36705,4.46455,0.160155,1.3391,4.21571,0.124133,1.30345,4.23731,0.0391949,1.32479,4.43753,0.0708511,1.43297,4.19567,-0.0630484,1.3126,4.25013,0.21711,1.45654,4.40004,-0.042933,1.33651,4.44506,0.25226,1.14845,4.27296,0.440566,1.17922,4.462,0.458346,1.15003,4.46385,0.459839,1.11931,4.2752,0.442049,1.29989,4.45237,0.255765,1.2718,4.46544,-0.0326934,1.27656,4.26021,0.220533,1.24844,4.26178,-0.052253,1.22999,4.47441,-0.177091,1.17105,4.27173,-0.182735,0.589011,9.2982,0.757734,0.968417,9.3801,0.629753,0.172975,9.08376,1.00515,1.11182,9.20222,0.757404,0.671429,9.16864,0.884182,0.869969,8.52034,1.08108,0.194862,8.45262,1.29614,0.236057,8.06072,1.28055,0.891635,8.13091,1.04608,0.97619,7.89185,0.902251,0.22199,7.88761,1.26626,0.227349,7.44857,1.34614,0.880644,7.22653,0.918749,1.36269,8.10565,0.408798,1.10984,7.20651,0.550029,1.12541,7.27308,0.0699728,1.28386,7.82749,0.529445,1.24953,7.79308,0.0304257,0.498327,9.49397,0.638924,0.834085,9.50592,0.544423,0.859379,9.3472,0.687163,0.980931,9.21246,0.81271,0.732881,9.50294,0.584278,1.18664,8.54439,0.914838,1.35306,8.43613,0.71247,1.09453,8.30782,0.927236,1.19253,8.19992,0.76936,0.890903,8.20898,-0.908566,0.800113,8.01378,-0.872131,0.935784,7.67491,-0.534809,1.10293,7.87978,-0.475855,1.18457,7.81345,-0.219872,1.06015,7.54515,-0.218112,1.12998,7.48865,0.0490511,0.186149,7.67058,1.25703,0.913936,7.51374,0.782674,1.12685,7.48103,0.518527,0.18954,9.19297,0.934677,0.429015,9.13679,0.904154,0.539081,8.48078,1.17598,0.566313,8.05767,1.17659,0.586686,7.85494,1.09756,0.529227,7.31502,1.14755,0.537573,7.57239,1.04101,0.394313,9.24802,0.818941,0.750643,9.32668,0.716161,0.854026,9.20056,0.854527,0.638432,9.50309,0.609592,0.206841,8.24815,1.32497,0.887388,8.32012,1.09621,0.550453,8.2669,1.20539,1.03503,8.41506,0.995456,1.43243,8.24784,0.393074,0.176537,8.73775,1.24495,0.846725,8.75738,1.06007,1.15466,8.74266,0.935459,1.2788,8.68174,0.844964,0.513106,8.73871,1.11214,1.04285,8.77912,1.01982,0.932261,7.41761,-0.497468,1.05229,7.33026,-0.203314,0.69186,7.69165,-0.767552,1.14046,6.93059,-0.245228,0.811228,7.00456,-0.521365,1.2836,6.84667,0.154413,1.23317,6.89359,-0.0607293,1.30581,6.60931,0.765183,1.08568,6.48592,1.20677,0.687515,6.6081,1.448,0.314802,6.81543,1.52305,0.230696,7.97296,1.27077,0.937014,8.0185,0.974915,0.924134,9.3689,0.652205,1.06637,9.20562,0.785124,0.791482,9.50486,0.554772,1.25878,8.48235,0.843693,1.14495,8.25266,0.846793,0.583064,7.95528,1.14148,1.22478,8.70617,0.897263,0.692775,7.42502,-0.63686,0.95157,7.21071,-0.376445,1.15588,7.09308,0.0984715,1.06222,7.145,-0.137691,0.546368,7.05915,1.20323,0.91508,6.98458,0.99149,0.25672,7.23028,1.3651,1.14929,6.99214,0.609552,1.03346,7.06657,-0.279971,1.20271,6.98229,0.133325,1.15026,7.0211,-0.0930879,0.625259,6.83243,1.29439,1.02652,6.69311,1.08992,0.282361,7.03528,1.41385,1.26968,6.82536,0.68308,0.774579,7.19811,-0.539638,0.330003,6.59398,1.49624,0.711216,6.35879,1.40951,1.06313,6.27388,1.20606,1.29446,6.40808,0.824194,1.23559,6.75978,-0.0409673,1.31512,6.69841,0.182793,0.940637,6.80818,-0.644368,1.14478,6.78995,-0.235995,1.02024,8.05218,-0.706718,0.868818,7.84163,-0.700118,0.808934,7.55411,-0.638027,1.00193,6.95834,-0.425126,0.831451,7.30991,-0.54733,0.908157,7.12696,-0.454619,1.05434,6.83627,-0.423652,0.167267,8.9442,1.13075,0.771291,8.97858,0.996947,1.08729,8.95915,0.924009,1.21152,8.92093,0.866027,0.489176,8.95347,1.02626,0.958527,8.9951,0.959881,1.16458,8.9348,0.899325,1.32557,6.76139,0.450172,1.28756,7.80635,0.286186,1.14708,7.47177,0.297376,1.13507,7.2334,0.322921,1.1635,7.05157,0.358837,1.23359,6.93323,0.414473,1.32442,6.57503,0.472904,0.155448,9.40137,0.717925,0.337052,9.47998,0.661537,0.679866,7.66309,-0.702449,0.898228,7.38792,-0.436486,1.07601,7.23938,0.084137,1.0005,7.30012,-0.167694,0.503135,7.25927,1.11641,0.83523,7.17886,0.88822,0.219325,7.3944,1.30092,1.05583,7.1691,0.538388,0.783733,7.51921,-0.576162,1.07808,7.19423,0.320775,0.93697,7.1834,-0.317043,1.12439,7.06483,0.115345,1.042,7.11701,-0.102311,0.530226,6.99686,1.18341,0.918139,6.90277,0.989007,0.243686,7.17357,1.32944,1.14278,6.95132,0.603968,0.725306,7.41031,-0.559789,0.83916,7.28221,-0.472046,1.1418,7.02045,0.36393,1.03447,7.03062,-0.236105,1.18815,6.94612,0.147282,1.14606,6.9844,-0.0575972,0.614463,6.75929,1.30007,1.00917,6.62092,1.08617,0.270915,6.96703,1.39323,1.25176,6.75671,0.680396,0.782923,7.15066,-0.494125,0.918406,7.09296,-0.389705,1.21913,6.88638,0.410284,0.825819,6.9578,-0.504094,1.06245,6.43991,1.18734,1.27345,6.55644,0.75215,0.304593,6.77759,1.49239,0.667741,6.56268,1.41949,1.25238,6.80935,0.16521,1.2012,6.86596,-0.0387643,1.1152,6.90531,-0.219195,0.98818,6.93087,-0.416094,1.29312,6.71469,0.435314,0.939426,6.8873,-0.646328,1.10259,6.31261,1.24382,1.33514,6.4399,0.848253,0.329653,6.62747,1.54353,0.734202,6.39819,1.45694,1.34303,6.71314,0.169846,1.26059,6.77682,-0.0651624,1.16847,6.8203,-0.266691,1.07616,6.86121,-0.45702,1.36574,6.60012,0.482586,0.21855,7.46036,1.33814,0.885475,7.24448,0.903953,1.10858,7.22193,0.542685,1.12024,7.28635,0.0657454,0.527528,7.33053,1.1371,1.04654,7.34268,-0.207625,0.919939,7.43468,-0.505019,0.692159,7.72592,-0.784285,0.79925,7.57905,-0.648359,1.13247,7.24911,0.317742,0.678278,7.45086,-0.649443,0.930509,7.21482,-0.392164,1.14567,7.09426,0.0910084,1.04627,7.14661,-0.148366,0.534427,7.0757,1.19504,0.891022,7.01232,0.973791,0.245747,7.23939,1.35963,1.13178,7.00383,0.594668,0.807859,7.32202,-0.553433,1.15067,7.05507,0.347638,1.01193,7.06662,-0.297921,1.19847,6.98006,0.124579,1.13264,7.01816,-0.105035,0.604641,6.85332,1.28118,1.01314,6.7152,1.07257,0.268027,7.04729,1.40645,1.25983,6.83795,0.668892,0.764029,7.22437,-0.548398,0.886795,7.14053,-0.461085,1.22841,6.93697,0.401891,1.13033,6.91947,-0.252952,1.2802,6.83908,0.147095,1.23149,6.88154,-0.0670583,0.67662,6.60589,1.4393,1.08312,6.47964,1.19791,0.301531,6.81564,1.51972,1.30708,6.60803,0.752604,0.806472,7.02145,-0.514719,0.997158,6.95401,-0.421549,1.32128,6.75885,0.442053,0.943919,6.88282,-0.642732,1.10124,6.30657,1.24279,1.33616,6.43058,0.837306,0.315616,6.62323,1.54111,0.725527,6.39735,1.46011,1.34112,6.69949,0.161932,1.25864,6.76462,-0.0703238,1.16742,6.80889,-0.269895,1.07814,6.85145,-0.456705,1.36822,6.59017,0.472702,0.0541062,9.04783,1.05207,0.0190693,8.44623,1.3814,0.0313257,7.89689,1.33035,0.0357982,7.51317,1.40612,0.0316047,8.06791,1.34865,0.0251408,7.69839,1.33437,0.058384,9.14426,0.99273,0.0241899,8.25056,1.3858,0.0195397,8.73195,1.31614,0.0432287,7.00168,1.55255,0.0309115,7.98043,1.34044,0.0409209,7.34298,1.42532,0.042126,7.19029,1.4646,0.0577734,6.73802,1.54577,0.0376769,8.91359,1.1724,0.0438769,9.37623,0.737428,0.033878,7.46765,1.35827,0.0376126,7.29725,1.38498,0.0374016,7.13036,1.43683,0.0438206,6.95225,1.51629,0.0510184,6.77636,1.60351,0.030163,7.52005,1.39788,0.0331118,7.34446,1.41989,0.0338994,7.19519,1.45826,0.0318652,6.99931,1.55017,0.040847,6.77458,1.60083,0.0904382,9.6016,0.712257,0.386443,9.75279,0.632459,0.202615,9.65323,0.691961,0.705939,9.71403,0.387562,0.616068,9.75676,0.514598,0.666692,9.73809,0.481023,0.745211,9.6927,0.380798,0.510492,9.77254,0.581895,1.45907,8.20151,-0.00456246,1.38078,8.09101,0.0227845,1.29011,8.14606,-0.4053,1.39613,8.30283,-0.372536,1.26802,8.53277,-0.743305,1.00234,8.35881,-0.876623,1.15337,8.21318,-0.650733,1.32877,8.40688,-0.566032,1.37411,8.08766,0.217564,1.44857,8.20957,0.17477,1.33959,8.10596,-0.18909,1.44386,8.23159,-0.186708,0.157857,9.43656,0.714302,0.0470983,9.40895,0.732215,0.480487,9.56438,0.611138,0.340707,9.51255,0.65987,0.792714,9.5535,0.515884,0.749223,9.54984,0.532876,0.701014,9.55517,0.562817,0.612175,9.57013,0.587174,0.407302,0.0299936,0.0436082,1.27568,0.0299927,0.0147483,1.26702,0.0299936,0.283082,0.412871,0.0299927,0.751201,0.455625,0.0299936,0.430463,1.25411,0.0297822,-0.257468,0.990348,0.0299936,-0.277655,0.723395,0.0299936,-0.275658,0.402945,0.0299927,-0.277802,0.69384,0.0299936,0.0344672,1.01717,0.0299936,0.0314385,1.02178,0.0299936,0.331851,0.734753,0.0299936,0.423031,1.46942,0.0299936,0.774537,0.729295,0.0299936,0.758025,1.15139,0.0299936,0.73235,0.673916,0.0299936,1.07443,1.22315,0.0299936,1.05154,1.55626,0.0299936,1.07473,0.330255,0.0299927,1.08758,1.30256,2.302,0.0126935,1.29656,2.30931,-0.079061,1.27534,2.076,-0.11421,1.28194,2.07403,-0.0297712,1.15756,2.07727,-0.0256692,1.16351,2.08212,-0.110321,1.16575,2.32604,0.0184177,1.17417,2.3322,-0.0733632,1.30602,2.31027,0.0148611,1.27537,2.06438,-0.0282554,1.29855,2.31765,-0.0769092,1.27061,2.06881,-0.112931,1.2396,2.09071,-0.152696,1.26284,2.29113,-0.126716,1.36806,2.04635,-0.238864,1.23443,2.10217,-0.00800606,1.3983,2.25056,-0.250438,1.25692,2.29669,0.0270147,1.18076,2.1223,0.216823,1.19001,2.31387,0.228722,1.18207,2.31309,0.200138,1.15135,2.12443,0.182348,1.23035,2.3054,0.0257135,1.18311,2.318,-0.239417,1.20719,2.11278,-0.0103211,1.15887,2.11337,-0.241082,1.17965,2.7168,-0.159535,1.22215,2.83848,0.0730289,1.16718,2.92168,-0.168629,1.21004,3.0067,0.0958107,1.16086,2.92485,0.261934,1.15725,3.05118,0.269884,1.16434,2.94289,0.298338,1.18947,2.75239,0.296694,1.23763,2.92766,0.0986492,1.3979,2.89215,-0.113426,1.25075,2.73072,0.0739701,1.4041,2.68556,-0.11908,1.24915,2.91443,-0.0479668,1.26408,2.71104,-0.0663925,1.29455,2.69903,-0.0285485,1.27713,2.95037,-0.0056818,1.29817,2.69984,0.0562947,1.28378,2.94912,0.086439,1.15209,2.94268,-0.0044702,1.1429,2.93981,0.0873985,1.18676,2.69316,-0.0279896,1.17992,2.69164,0.05672,1.30296,2.71042,0.0543414,1.29796,2.70687,-0.0301548,1.2767,2.94172,-0.00740456,1.28189,2.94027,0.0846777,0.471648,0.758845,0.827037,0.47639,0.809023,0.687664,0.44317,0.752505,0.554745,0.391447,0.622398,0.506143,0.351536,0.494843,0.570351,0.346713,0.443704,0.709899,0.380011,0.501168,0.842593,0.43172,0.631364,0.891222,0.464907,0.725081,0.79609,0.434385,0.62763,0.845154,0.394847,0.528202,0.808002,0.369445,0.485022,0.706393,0.373077,0.523354,0.599848,0.403598,0.620776,0.550785,0.443138,0.720235,0.587939,0.468532,0.763438,0.689547,0.395136,0.723591,0.779479,0.397937,0.753225,0.697168,0.378318,0.719847,0.61867,0.347772,0.643009,0.589967,0.324192,0.567722,0.627872,0.321391,0.538089,0.710183,0.341011,0.571466,0.788681,0.371556,0.648304,0.817385,0.335795,0.695423,0.741872,0.325095,0.661926,0.758686,0.311177,0.626698,0.745858,0.302248,0.611731,0.709864,0.303643,0.62478,0.673162,0.313985,0.658408,0.656381,0.327999,0.693601,0.669202,0.336831,0.708603,0.705205,0.308094,0.649179,0.724188,0.300732,0.666968,0.709343,0.315067,0.676912,0.69241,0.43903,0.720972,0.786826,0.44224,0.754934,0.692495,0.419755,0.716681,0.602533,0.384749,0.628623,0.569638,0.357726,0.542341,0.61308,0.354516,0.50838,0.70741,0.376999,0.546632,0.797372,0.412007,0.634692,0.830267,0.462573,0.619801,0.881517,0.412683,0.494099,0.834525,0.38063,0.438,0.706543,0.385199,0.488,0.571801,0.423693,0.611144,0.50978,0.473626,0.736744,0.556699,0.505694,0.791304,0.685012,0.501116,0.742864,0.819557,1.28169,0.783167,0.500116,1.31439,0.772254,0.638974,1.3831,0.675977,0.719465,1.44758,0.550733,0.694438,1.47005,0.46989,0.578555,1.43735,0.480803,0.439698,1.36864,0.57708,0.359208,1.30416,0.702324,0.384234,1.36683,0.702481,0.422674,1.41203,0.61467,0.405129,1.46021,0.54717,0.461561,1.48313,0.539518,0.558915,1.46738,0.596199,0.640162,1.42217,0.684008,0.657709,1.374,0.751509,0.601276,1.35107,0.759161,0.503921,1.4979,0.699234,0.536661,1.50707,0.699109,0.514144,1.49625,0.687925,0.495466,1.47258,0.729899,0.544411,1.49169,0.703137,0.567166,1.50969,0.66818,0.559864,1.51569,0.646001,0.528376,1.50691,0.649146,0.490532,1.4877,0.675858,0.467794,1.4698,0.710866,0.475079,1.46347,0.732861,0.506629,1.4089,0.715441,0.429682,1.44835,0.63882,0.414373,1.49039,0.57992,0.463614,1.51039,0.573244,0.548563,1.49664,0.622702,0.619456,1.4572,0.699322,0.634768,1.41516,0.758222,0.585525,1.39516,0.764899,0.500577,1.34943,0.754229,0.613967,1.40384,0.67799,0.677704,1.45489,0.578813,0.657887,1.47269,0.514795,0.566121,1.4468,0.523437,0.456165,1.39238,0.599677,0.392427,1.34133,0.698854,0.412243,1.32353,0.762872,0.504008,1.33065,0.721124,0.373086,1.39744,0.591386,0.347162,1.46862,0.491653,0.430541,1.50249,0.480347,0.574382,1.47922,0.564093,0.694423,1.41243,0.693832,0.720347,1.34125,0.793563,0.636969,1.30738,0.804869,0.493128,1.1387,3.6371,0.468567,1.22649,3.63696,0.237505,1.18945,3.41472,0.198948,0.426742,3.23194,0.604395,0.470508,3.56753,0.731794,0.542733,3.57427,0.822832,1.13453,2.62872,0.464041,1.10653,3.39736,0.379742,1.07581,3.30326,0.594643,0.644835,3.26747,0.755962,0.815241,3.28029,0.760304,1.28952,3.60918,0.686216,1.14181,3.47319,0.452306,0.684705,3.54608,1.04149,0.685484,3.34015,0.81319,1.12105,3.36915,0.653331,0.852567,3.34372,0.821244,1.19299,3.61027,0.901944,0.925588,3.58213,1.04864,1.16063,4.27985,1.01026,1.14546,4.2619,0.865962,0.794313,4.22245,1.07045,0.927245,4.25489,1.13958,0.752132,4.20086,1.04467,1.1268,4.24356,0.825684,1.12281,4.2403,0.957099,0.862456,4.2154,1.0985,1.2631,3.96815,0.755207,1.18127,3.95905,0.955049,0.922362,3.93108,1.09752,0.698909,3.90903,1.08484,0.595228,3.89835,0.949626,1.1641,3.95603,0.619554,1.18042,3.6254,0.532356,1.11199,3.42796,0.411991,0.658016,3.29435,0.771852,0.582632,3.56636,0.881002,1.08919,3.32815,0.614797,0.825785,3.3026,0.780029,0.762319,4.20267,1.04122,1.12175,4.24207,0.834693,1.13386,4.24472,0.969683,0.878053,4.21923,1.11046,0.623161,3.89911,0.985424,1.19094,3.95745,0.656643,1.13884,4.25579,0.859541,1.15323,4.27779,1.0017,0.922825,4.25418,1.12829,0.792154,4.22123,1.05628,0.750212,4.1889,1.01569,1.10624,4.22432,0.817632,0.858358,4.20892,1.09984,1.13018,4.23842,0.952766,0.760449,4.19896,1.02268,1.11101,4.23299,0.828461,1.22313,1.96501,-0.164316,0.438147,1.95874,-0.334969,1.25705,2.9606,-0.12313,0.405432,2.83781,-0.307541,0.84157,1.97014,-0.508298,0.688881,1.96842,-0.509431,0.544934,1.96521,-0.45431,1.12238,1.96858,-0.345025,0.830269,2.79316,-0.513749,0.659552,2.78079,-0.511174,0.513543,2.78787,-0.443813,1.14695,2.86898,-0.343794,0.492567,0.56513,-0.236922,0.443228,0.500372,0.448055,1.06365,1.07321,0.902392,0.958949,0.617847,-0.372038,1.25808,0.447811,0.201422,1.29364,0.451291,0.491077,0.681836,0.614064,-0.399434,0.670351,1.05663,0.896327,0.420401,0.499821,0.0774494,0.504655,0.77233,0.710401,1.27436,0.755856,0.667344,1.1803,0.547528,-0.150128,0.49063,0.808224,-0.221302,0.46682,0.770671,0.371242,1.05464,1.12361,0.811898,0.942941,0.842551,-0.36205,1.22685,0.719301,0.115581,1.26795,0.805694,0.325799,0.693526,0.841422,-0.390631,0.683853,1.11407,0.825546,0.446668,0.76729,0.0561294,0.564421,0.974904,0.615938,1.211,1.00049,0.58177,1.16147,0.792742,-0.149371,0.967188,-0.018647,2.40426,1.13453,-0.0203847,2.37202,0.823457,-0.0198748,2.38467,0.809005,0.0325416,2.33447,1.07209,0.0510701,2.3163,0.893923,0.125016,2.29119,1.02074,0.113292,2.28974,0.839676,0.0959581,2.30207,0.961976,0.133399,2.28458,0.969559,0.259861,2.14233,0.724543,0.203432,2.16162,1.09201,0.220801,2.15336,0.839232,0.251446,2.14499,1.18806,0.113996,2.18976,0.645202,0.0951669,2.21594,0.603427,-0.0179201,2.29931,1.27847,-0.0189629,2.2491,1.42552,-0.0169413,2.05732,0.444914,-0.0139401,2.08208,0.49856,0.166917,1.99409,1.32063,0.183475,1.96372,0.788687,0.365008,1.89927,1.18661,0.323398,1.9102,0.616103,0.309686,1.9268,0.989071,0.371171,1.89312,1.01374,0.540953,1.38251,0.522205,0.471839,1.41005,1.2993,0.473228,1.36588,0.748818,0.537647,1.39732,1.44443,0.303328,1.35873,0.379578,0.293797,1.41914,0.29123,-0.00875905,1.42486,1.53179,-0.010603,1.35011,1.2588,1.69611,0.0295458,1.17364,1.56637,-0.267685,0.674915,1.39376,-0.551358,0.518049,1.824,0.512089,0.368004,1.47116,-0.00213536,0.923451,1.40956,-0.477056,0.948356,1.84885,0.644676,0.386267,1.53637,0.282788,0.449576,1.43313,-0.344297,0.693519,1.22565,0.78078,1.00643,1.2379,0.752093,1.1813,1.12686,0.546332,1.26198,0.994609,0.254501,1.2241,0.901522,0.057362,1.15526,0.936109,-0.161304,0.975422,1.05707,-0.350177,0.652624,1.05513,-0.403956,0.496434,0.937528,-0.215228,0.453919,0.89661,0.052879,0.4807,0.914508,0.333385,0.561114,1.16262,0.615138,1.03114,0.576117,1.45191,0.474913,0.498672,1.49164,1.34022,0.480573,1.43986,0.717959,0.572311,1.47096,1.5005,0.315859,1.44872,0.322473,0.313381,1.50789,0.242143,-0.00538064,1.51441,1.60639,-0.00800738,1.4341,1.49446,-0.00800739,1.05429,0.353938,-0.00538066,1.1223,0.410575,0.405881,1.11904,1.39389,0.417132,1.06175,0.761604,0.717829,1.09409,1.26454,0.631052,1.06623,0.549899,0.628829,1.10812,1.00451,0.722621,1.08,1.01121,0.769896,1.12677,0.535931,0.693736,1.15985,1.27562,0.685301,1.11579,0.754899,0.769875,1.14223,1.43233,0.460483,1.10423,0.376909,0.449494,1.16343,0.267527,-0.00593823,1.16142,1.58994,-0.00767138,1.09089,1.42623,-0.0076714,0.680632,0.38605,-0.00593825,0.739454,0.482041,0.526223,0.732762,1.30903,0.538864,0.685368,0.779184,0.92184,0.702853,1.1516,0.81285,0.686929,0.602827,0.810763,0.718585,0.964778,0.927848,0.692324,0.417894,-0.00984579,1.84956,1.4553,-0.0145746,1.78968,0.48113,0.183269,1.84483,1.34194,0.197319,1.79506,0.78208,0.383604,1.82495,0.601048,0.328858,1.83582,1.20989,0.339412,1.80145,0.994081,0.38865,1.81355,1.00287,0.411684,1.89756,1.23143,0.359827,1.88437,0.587912,0.350116,1.92111,0.778677,0.406213,1.91008,1.3694,0.215038,1.87798,0.460796,0.199147,1.92979,1.48882,-0.010603,1.87271,0.393452,-0.00875902,1.93436,0.483061,0.918893,-0.261493,0.407709,0.645055,0.433872,0.972583,0.941604,-0.394494,1.30573,0.779052,0.0601763,1.30801,0.674926,0.297017,0.697485,0.942773,-0.409251,0.368221,0.775207,0.0982228,0.447269,0.524723,0.826392,1.43636,0.531792,0.783078,1.19947,0.869701,-0.215343,0.688416,-0.000471508,-0.530173,1.29418,-0.000954001,-0.261905,1.31427,-0.000216975,0.0199878,1.42396,-0.00487806,0.279502,0.374554,5.49852e-06,-0.307325,0.384971,-4.56765e-06,0.0460229,0.373184,-0.00298744,0.422124,1.0859,-0.00188329,-0.505957,0.41139,0.284188,0.411641,0.358221,0.416938,0.0677703,0.386812,0.443307,-0.276759,1.34579,0.311081,0.273482,1.35331,0.381952,0.0331711,1.2952,0.430867,-0.228576,1.00734,0.438138,-0.502808,0.652995,0.439546,-0.527172,0.690495,0.66343,-0.485095,1.21198,0.652108,-0.214627,1.31194,0.61275,0.0523661,1.32183,0.515338,0.292823,0.480923,0.642125,-0.232034,0.370712,0.627356,0.0883579,0.413214,0.508401,0.400209,0.975312,0.664804,-0.469289,1.63458,-0.00756979,0.777364,1.56767,0.187303,0.77787,1.51534,0.356098,0.780409,0.329314,0.120074,0.836475,0.291127,-0.00531844,0.835047,0.386437,0.333067,0.832039,1.03999,1.2655,-0.235683,0.569513,1.22225,-0.303251,0.674518,1.23169,-0.32462,0.8029,1.24442,-0.343529,0.498908,1.21409,-0.14785,1.1214,1.26855,-0.10603,1.25997,2.97898,0.140663,0.409203,2.93628,0.549532,1.27732,2.18247,0.0543973,0.720471,1.56232,0.765338,0.989275,1.55424,0.741906,1.2027,1.50543,0.521559,1.30173,1.39626,0.236243,1.29136,1.33146,0.0314089,1.21453,1.21887,-0.236961,0.986465,1.23956,-0.451962,0.625595,1.2253,-0.514734,0.424713,1.19141,-0.306086,0.356149,1.19359,0.0213254,0.377923,1.23808,0.315482,0.498865,1.50303,0.592724,0.68866,2.21967,0.659677,0.936335,2.21373,0.633986,0.475573,2.22294,0.506601,1.28604,2.65693,0.0900661,0.433065,2.65125,0.503923,1.10805,2.95503,0.522165,0.654891,2.93057,0.70477,1.23554,2.63909,0.261535,0.667739,2.61901,0.663177,0.897602,2.6115,0.643142,1.19757,2.97153,0.312404,0.869892,2.93121,0.686346,1.12935,2.20427,0.461606,1.24412,2.19031,0.233759,0.734359,1.53595,0.725466,0.971002,1.52656,0.703538,1.1644,1.47498,0.499725,1.2548,1.36474,0.229623,1.24203,1.30037,0.0383351,1.17166,1.20257,-0.208238,0.959975,1.23972,-0.414895,0.651475,1.23152,-0.47898,0.464981,1.18531,-0.277857,0.4072,1.17905,0.0259123,0.430778,1.21579,0.30477,0.53366,1.4805,0.563857,0.70882,1.84701,0.65709,1.13096,1.83192,0.46053,1.23768,1.77156,0.20991,0.720842,1.57616,0.755234,0.984541,1.5684,0.733096,1.19371,1.52398,0.517696,1.29295,1.42001,0.237227,1.2863,1.35528,0.0359704,1.20773,1.23761,-0.234894,0.977103,1.24274,-0.452415,0.634996,1.22837,-0.516409,0.432152,1.19985,-0.30732,0.362222,1.20599,0.0206402,0.385806,1.2525,0.31833,0.504674,1.52329,0.587916,0.807689,0.0299927,-0.492846,0.942691,0.0299927,-0.481133,0.359224,0.0299937,1.47569,1.47985,0.0299937,1.41111,1.17537,0.0299937,1.42866,0.673346,0.0299937,1.45759,0.725063,0.0299937,1.85888,1.16295,0.0299937,1.83365,1.42853,0.0299937,1.81834,0.451072,0.0299937,1.87467,1.05374,0.0299928,2.33639,0.859097,0.0299928,2.34589,0.770581,0.0299937,2.11211,0.542702,0.0299928,2.1253,1.35546,0.0299928,2.07835,1.13469,0.0299937,2.09113,0.434882,0.0299927,-0.277621,0.435881,0.0299936,0.0426965,0.483464,0.0299936,0.429721,0.44443,0.0299936,0.751881,0.364531,0.0299936,1.08626,0.390553,0.0299937,1.47388,0.478399,0.0299937,1.8731,0.565421,0.0299928,2.12399,1.23207,0.0299927,-0.259831,1.24413,0.0299927,0.0167871,1.23711,0.0299936,0.289029,1.43064,0.0299936,0.769393,1.51564,0.0299936,1.0719,1.44272,0.0299937,1.41325,1.39614,0.0299937,1.82021,1.32852,0.0299928,2.07989,0.838436,0.0299928,2.31446,0.671746,0.0296693,2.27841,1.20962,0.0303478,2.25963,1.0682,0.0299928,2.30443,0.687756,0.0299928,2.26127,1.1935,0.0299928,2.24444,0.628204,0.0296718,-0.452035,0.802039,0.0299927,-0.478304,0.945884,0.0299927,-0.4675,1.07671,0.0298213,-0.445532,0.634576,0.0300394,-0.439375,1.06924,0.0299743,-0.433666,1.12995,7.8569,0.714685,1.00714,7.20072,0.746596,1.02269,7.49328,0.649214,1.27514,8.15058,0.578731,1.40046,8.33476,0.55027,1.20424,6.54073,0.986012,1.04514,6.97139,0.800967,1.17416,6.74623,0.891382,1.18057,6.33855,1.01379,0.948971,7.16841,0.718945,1.04401,6.9186,0.798224,1.15495,6.6788,0.887791,1.16664,6.49928,0.971315,1.22552,6.37398,1.05179,1.00855,7.21509,0.733584,1.023,6.99536,0.784728,1.16298,6.7643,0.876388,1.2078,6.53778,0.973894,1.22603,6.36473,1.04386,1.07007,8.57608,1.00257,1.2399,2.46154,-0.143916,0.430924,2.4002,-0.313413,0.836087,2.38005,-0.510881,0.674363,2.37302,-0.510236,0.533351,2.37653,-0.445343,1.13506,2.41733,-0.34384,0.808101,1.60089,-0.429119,1.07265,1.61361,-0.292247,1.16391,1.61326,-0.136877,0.461127,1.58745,-0.239428,0.552853,1.59455,-0.378117,0.674513,1.59767,-0.418766,1.34678,4.5588,-0.109181,0.187992,4.37302,-0.236215,0.816057,4.4791,-0.61683,0.351011,4.40152,-0.509169,0.589679,4.44448,-0.600021,1.17418,4.5277,-0.426184,-0.00264589,9.36275,-0.824212,0.489939,6.17145,1.33462,0.211612,6.16503,1.44164,0.0926574,5.02553,1.11216,0.459281,6.19865,1.34175,0.237441,5.36835,1.3399,0.464685,5.81186,1.40443,0.46014,6.17095,1.34599,-8.88178e-16,8.32564,-1.09727,0.000287515,8.97448,-1.00042,0,5.41383,1.5019,-8.88178e-16,9.04323,1.05533,-8.88178e-16,7.89791,1.33495,-8.88178e-16,8.06825,1.35305,-8.88178e-16,9.13891,0.997167,-8.88178e-16,8.72937,1.31383,-8.88178e-16,7.35835,1.42892,-8.88178e-16,6.76788,1.54973,-8.88178e-16,8.90752,1.17427,-8.88178e-16,7.53041,1.40038,-8.88178e-16,7.2201,1.45895,0.00307025,9.19121,-0.925049,-0.108216,9.19215,-0.914283,-0.167592,8.34013,-1.08133,-0.681061,9.44915,-0.743908,-0.121074,8.72755,-1.05424,-0.82083,9.30647,-0.839652,-0.920417,8.64071,-0.968879,-1.04516,8.78605,-0.918264,-0.892716,9.45877,-0.722519,-1.18353,8.95742,-0.861669,-0.801336,8.98608,-0.943815,-0.930281,9.13709,-0.902773,-1.03166,9.31619,-0.829477,-0.498321,9.18067,-0.899012,-0.384714,9.19285,-0.910507,-0.626642,8.85707,-0.993186,-0.448973,8.78231,-1.02733,-0.583776,8.42817,-1.04041,-0.779697,8.51237,-1.02262,-0.697926,9.16216,-0.900021,-0.582664,9.30172,-0.839698,-0.56488,9.0488,-0.96172,-0.396103,8.99359,-0.973637,-0.107633,8.97622,-0.991796,-0.243976,9.19223,-0.906027,-0.273,8.74414,-1.03653,-0.366069,8.37397,-1.05567,-0.238852,8.97641,-0.979858,-0.865658,8.82401,-0.966894,-0.990117,8.95397,-0.923049,-1.13288,9.11555,-0.858868,-0.696694,8.67986,-1.01401,-0.523102,8.58589,-1.04414,-0.146644,8.50307,-1.08476,-0.325939,8.54529,-1.05914,-0.592728,9.6172,-0.444366,-0.286892,9.52368,-0.659464,-0.448305,9.55169,-0.579823,-0.124943,9.5217,-0.69375,-0.135287,9.47846,-0.733327,-0.515985,9.5281,-0.631134,-0.332567,9.49373,-0.69122,-0.646708,9.58573,-0.566581,-0.744367,9.55013,-0.630761,-0.28909,9.3893,-0.782715,-0.455795,9.38012,-0.783675,-0.129615,9.3766,-0.806083,-0.124245,9.55867,-0.700216,-0.281518,9.56012,-0.664711,-0.58073,9.64911,-0.450652,-0.437166,9.58836,-0.583589,-1.23111,4.95519,1.00802,-0.860301,4.61757,1.36347,-0.874464,4.62829,1.35088,-1.22862,4.93203,1.02112,-1.10431,5.65297,1.0009,-0.733346,5.45398,1.44201,-0.717196,5.45033,1.45855,-1.22227,4.94697,1.01996,-0.87131,4.64614,1.34865,-1.22481,4.97141,1.00643,-0.857345,4.6357,1.36111,-0.805736,6.60502,0.855035,-0.485687,6.6032,1.14123,-0.471918,6.59881,1.15504,-0.79388,6.59071,0.879455,-1.03658,6.61503,0.548304,-0.803338,6.59402,0.862927,-1.02741,6.61025,0.565817,-1.25749,4.8913,1.10901,-1.54941,5.19326,0.658291,-1.26788,4.90153,1.09322,-1.53761,5.18116,0.676439,-1.15266,5.63575,1.13854,-1.48276,5.84839,0.66323,-1.16556,5.64067,1.12238,-1.47098,5.83565,0.683817,-1.54531,5.16607,0.678623,-1.27336,4.88382,1.0964,-1.26272,4.87345,1.11242,-1.5579,5.17766,0.660169,-1.6707,5.45201,0.162186,-1.61352,5.19747,0.737636,-1.61444,5.20614,0.717345,-1.64903,5.44214,0.190558,-1.53393,5.86292,0.72827,-1.52606,6.03371,0.145654,-1.52907,5.8583,0.743335,-1.63856,5.45681,0.190405,-1.60523,5.22352,0.715458,-1.66037,5.46608,0.161849,-1.60459,5.21469,0.735428,-1.04664,6.61438,0.557526,-1.13807,6.67709,0.0840332,-1.04526,6.60822,0.569838,-1.15404,6.68501,0.0976604,-0.927779,6.66873,-0.309474,-1.14467,6.68938,0.088545,-0.936918,6.67077,-0.293666,-1.72123,5.50301,0.202874,-1.45445,5.58012,-0.29714,-1.71209,5.50522,0.185297,-1.46509,5.57728,-0.276893,-1.57747,6.05059,0.181926,-1.33285,6.0435,-0.304587,-1.57037,6.04819,0.164711,-1.34521,6.04065,-0.284453,-1.47287,5.56405,-0.277508,-1.7201,5.49034,0.187538,-1.72938,5.48797,0.205414,-1.4624,5.56639,-0.298266,-0.799654,6.27963,0.911206,-0.483485,6.15123,1.22905,-0.805083,6.30092,0.897014,-0.470829,6.14887,1.24102,-1.09679,5.67361,0.993743,-0.727738,5.47457,1.43697,-0.711882,5.47066,1.45344,-0.916151,6.10406,0.904104,-1.15709,6.27265,0.488399,-0.925481,6.10787,0.889704,-1.14867,6.26206,0.505881,-1.14447,5.65717,1.13238,-1.47199,5.86736,0.657831,-1.15738,5.66197,1.11621,-1.46055,5.85471,0.678163,-1.22376,6.32215,0.0809327,-1.20262,6.21103,0.545251,-1.23851,6.33019,0.0558579,-1.2012,6.20879,0.563074,-1.49512,6.02832,0.170325,-1.52783,5.8739,0.726507,-1.51722,6.04457,0.144386,-1.52329,5.86935,0.740704,-1.25919,6.35556,0.071204,-1.01897,6.33669,-0.335784,-1.25173,6.35286,0.056883,-1.03047,6.33425,-0.318922,-1.55992,6.07469,0.179586,-1.31544,6.06523,-0.302733,-1.55288,6.07217,0.162582,-1.32769,6.06243,-0.283055,-0.846593,6.33774,0.844265,-0.484563,6.19536,1.23262,-0.4704,6.189,1.24712,-1.0981,5.64714,1.0202,-0.794565,6.59939,0.869356,-1.08766,5.66654,1.01371,-0.832785,6.33083,0.859301,-0.889645,6.12276,1.00598,-1.17381,6.24125,0.603225,-0.900333,6.12749,0.989776,-1.1642,6.23189,0.621931,-1.50163,6.01768,0.173938,-1.12413,6.66889,0.107133,-1.25946,6.20598,0.640932,-1.29853,6.32366,0.113777,-1.25699,6.19999,0.654515,-1.2808,6.31118,0.138614,-1.33731,6.37921,0.147945,-1.09117,6.34153,-0.28609,-1.32903,6.38095,0.136189,-1.10278,6.34021,-0.269099,-0.488873,6.19916,1.33033,-0.25033,5.36706,1.32517,-0.0542856,4.92698,1.14809,0,4.90616,1.14165,-0.099046,5.03876,1.10788,-0.211915,6.19269,1.43786,0,6.18682,1.45073,-0.497832,5.81178,1.39333,-0.192268,5.80326,1.49456,-0.137399,5.39236,1.46901,0,5.81233,1.47033,-0.0731335,4.59217,-0.0120733,-0.100917,4.40748,-0.00173656,-0.314639,4.62306,-0.377636,-0.323407,4.44108,-0.37114,-0.606193,4.89125,0.900865,-0.635467,4.72966,0.842964,-0.21943,4.72685,0.739344,-0.246582,4.55575,0.702634,-0.0829097,4.62919,0.373319,-0.11349,4.46831,0.368416,-0.233284,4.07833,0.0793629,-0.193658,4.25569,0.0537732,-0.217643,4.09561,0.356387,-0.189429,4.26947,0.359929,-0.332088,4.05768,-0.21682,-0.300387,4.23265,-0.277352,-0.471438,4.14229,0.777566,-0.44958,4.31299,0.775623,-0.316056,4.11667,0.635807,-0.294851,4.28226,0.649578,-0.40585,4.83688,0.870815,-0.437631,4.66662,0.844451,-0.677144,4.18713,0.742934,-0.658498,4.33369,0.767106,-0.364748,4.62579,-0.408845,-0.373232,4.44378,-0.402012,-0.39098,4.05259,-0.261568,-0.3599,4.22736,-0.32292,-0.603477,1.9121,-0.423421,-0.611304,1.73453,-0.380341,-0.51636,2.60852,-0.4121,-0.494412,2.74866,-0.390885,-0.594355,2.63918,0.562351,-0.608609,2.80675,0.598348,-0.468806,2.64917,0.48992,-0.506257,2.46745,0.501908,-0.639104,2.8008,0.592587,-0.660693,2.61333,0.59948,-0.546858,1.92416,-0.36961,-0.543625,1.74757,-0.31443,-0.379231,2.39217,0.260569,-0.426134,2.20008,0.276134,-0.364949,2.12315,-0.0378521,-0.394168,1.92814,-0.000206508,-0.341923,2.59239,0.135694,-0.317452,2.72863,0.141434,-0.45498,2.62563,0.437593,-0.428913,2.74901,0.485939,-0.480975,2.6055,-0.377078,-0.459352,2.74443,-0.356505,-0.378742,2.59491,-0.14181,-0.352606,2.73059,-0.126871,-0.394545,1.81181,-0.104572,-0.464011,1.66839,-0.175256,-0.479311,1.8989,-0.294257,-0.528147,1.7355,-0.346588,-0.563943,1.71612,0.45266,-0.566577,1.57368,0.418656,-0.404593,1.70103,0.205313,-0.413268,1.57448,0.0944608,-0.734736,1.74209,0.591877,-0.718168,1.57192,0.557004,-0.516637,1.94321,-0.369086,-0.573191,1.78599,-0.431116,-0.427614,4.86104,1.0022,-0.717274,5.05475,1.05587,-1.05952,5.38334,0.910986,-1.33512,5.53984,0.56735,-1.00986,3.98499,0.634113,-1.36975,4.01367,0.23084,-0.501112,3.88802,0.822398,-0.736715,3.93073,0.796428,-1.03413,4.60923,0.725036,-1.2866,4.68491,0.418816,-0.46465,4.35353,0.846539,-0.729448,4.45428,0.847219,-1.28369,5.80026,0.566486,-1.06291,5.63168,0.915936,-0.713315,5.23881,1.10903,-0.412403,5.00045,1.04823,-1.23023,5.46826,0.74114,-1.14479,4.00519,0.435202,-1.18749,4.64706,0.579617,-1.18166,5.72239,0.74374,-1.2959,3.92804,-0.030067,-1.3978,5.19965,-0.0838505,-0.213585,3.91733,-0.109469,-0.162325,4.82782,-0.317196,-1.14414,3.99656,-0.272366,-0.838192,4.94292,-0.560915,-0.613729,4.88263,-0.566678,-0.34107,4.83686,-0.500145,-1.20101,5.05931,-0.341341,-0.792062,4.01562,-0.432439,-0.363157,3.96462,-0.27842,-0.565495,4.00626,-0.393196,-1.23195,4.74797,-0.244392,-1.23195,4.95843,-0.261327,-1.19308,5.03106,0.555964,-1.18287,4.84155,0.531235,-1.28859,4.7822,-0.010871,-1.28145,4.82262,0.26605,-1.28854,4.98809,-0.0191948,-1.28159,5.01925,0.276103,-1.1953,4.8388,0.497508,-1.20424,5.02929,0.5205,-1.23321,5.03065,0.520132,-1.22429,4.83979,0.497058,-1.31846,5.01582,0.275463,-1.39471,4.95643,-0.0412652,-1.31822,4.81639,0.265868,-1.39471,4.74988,-0.0333644,-1.2117,4.84217,0.531258,-1.2219,5.03201,0.555988,-1.31348,4.98215,0.096143,-1.31405,4.77841,0.0939912,-1.3522,4.77259,0.175044,-1.35109,5.02557,0.176828,-1.35469,4.78024,0.259587,-1.35636,5.03157,0.268851,-1.22581,5.0261,0.176259,-1.21518,5.03148,0.26786,-1.24426,4.77376,0.174007,-1.23616,4.77975,0.258406,-1.3602,4.79028,0.256864,-1.35615,4.78004,0.172864,-1.35011,5.01685,0.175815,-1.35392,5.02274,0.267787,-1.37105,4.4489,0.249758,-1.36506,4.45622,0.158003,-1.34384,4.2229,0.122854,-1.35044,4.22093,0.207293,-1.22606,4.22417,0.211395,-1.23201,4.22902,0.126743,-1.23425,4.47294,0.255482,-1.24266,4.4791,0.163701,-1.37451,4.45717,0.251925,-1.34386,4.21128,0.208809,-1.36705,4.46455,0.160155,-1.3391,4.21571,0.124133,-1.30345,4.23731,0.0391949,-1.32479,4.43753,0.0708511,-1.43297,4.19567,-0.0630484,-1.3126,4.25013,0.21711,-1.45654,4.40004,-0.042933,-1.33651,4.44506,0.25226,-1.14845,4.27296,0.440566,-1.17922,4.462,0.458346,-1.15003,4.46385,0.459839,-1.11931,4.2752,0.442049,-1.29989,4.45237,0.255765,-1.2718,4.46544,-0.0326934,-1.27656,4.26021,0.220533,-1.24844,4.26178,-0.052253,-1.22999,4.47441,-0.177091,-1.17105,4.27173,-0.182735,-0.589011,9.2982,0.757734,-0.968417,9.3801,0.629753,-0.172975,9.08376,1.00515,-1.11182,9.20222,0.757404,-0.671429,9.16864,0.884182,-0.869969,8.52034,1.08108,-0.194862,8.45262,1.29614,-8.88178e-16,8.44487,1.37976,-0.236057,8.06072,1.28055,-0.891635,8.13091,1.04608,-0.97619,7.89185,0.902251,-0.22199,7.88761,1.26626,-0.227349,7.44857,1.34614,-0.880644,7.22653,0.918749,-1.36269,8.10565,0.408798,-1.10984,7.20651,0.550029,-1.12541,7.27308,0.0699728,-1.28386,7.82749,0.529445,-1.24953,7.79308,0.0304257,-0.498327,9.49397,0.638924,-0.834085,9.50592,0.544423,-0.859379,9.3472,0.687163,-0.980931,9.21246,0.81271,-0.732881,9.50294,0.584278,-1.18664,8.54439,0.914838,-1.35306,8.43613,0.71247,-1.09453,8.30782,0.927236,-1.19253,8.19992,0.76936,-0.890903,8.20898,-0.908566,-0.800113,8.01378,-0.872131,-0.935784,7.67491,-0.534809,-1.10293,7.87978,-0.475855,-1.18457,7.81345,-0.219872,-1.06015,7.54515,-0.218112,-1.12998,7.48865,0.0490511,-0.186149,7.67058,1.25703,-0.913936,7.51374,0.782674,-1.12685,7.48103,0.518527,-8.88178e-16,7.70346,1.33689,-0.18954,9.19297,0.934677,-0.429015,9.13679,0.904154,-0.539081,8.48078,1.17598,-0.566313,8.05767,1.17659,-0.586686,7.85494,1.09756,-0.529227,7.31502,1.14755,-0.537573,7.57239,1.04101,-0.394313,9.24802,0.818941,-0.750643,9.32668,0.716161,-0.854026,9.20056,0.854527,-0.638432,9.50309,0.609592,-0.206841,8.24815,1.32497,-0.887388,8.32012,1.09621,-0.550453,8.2669,1.20539,-1.03503,8.41506,0.995456,-1.43243,8.24784,0.393074,-0.176537,8.73775,1.24495,-0.846725,8.75738,1.06007,-1.15466,8.74266,0.935459,-1.2788,8.68174,0.844964,-0.513106,8.73871,1.11214,-1.04285,8.77912,1.01982,-0.932261,7.41761,-0.497468,-1.05229,7.33026,-0.203314,-0.69186,7.69165,-0.767552,-1.14046,6.93059,-0.245228,-0.811228,7.00456,-0.521365,-1.2836,6.84667,0.154413,-1.23317,6.89359,-0.0607293,-1.30581,6.60931,0.765183,-1.08568,6.48592,1.20677,-0.687515,6.6081,1.448,-0.314802,6.81543,1.52305,-8.88178e-16,7.02825,1.55624,-0.230696,7.97296,1.27077,-0.937014,8.0185,0.974915,-0.924134,9.3689,0.652205,-1.06637,9.20562,0.785124,-0.791482,9.50486,0.554772,-1.25878,8.48235,0.843693,-1.14495,8.25266,0.846793,-0.583064,7.95528,1.14148,-1.22478,8.70617,0.897263,-0.692775,7.42502,-0.63686,-0.95157,7.21071,-0.376445,-1.15588,7.09308,0.0984715,-1.06222,7.145,-0.137691,-0.546368,7.05915,1.20323,-0.91508,6.98458,0.99149,-0.25672,7.23028,1.3651,-1.14929,6.99214,0.609552,-1.03346,7.06657,-0.279971,-1.20271,6.98229,0.133325,-1.15026,7.0211,-0.0930879,-0.625259,6.83243,1.29439,-1.02652,6.69311,1.08992,-0.282361,7.03528,1.41385,-8.88178e-16,7.21308,1.46825,-1.26968,6.82536,0.68308,-0.774579,7.19811,-0.539638,-0.330003,6.59398,1.49624,-0.711216,6.35879,1.40951,-1.06313,6.27388,1.20606,-1.29446,6.40808,0.824194,-1.23559,6.75978,-0.0409673,-1.31512,6.69841,0.182793,-0.940637,6.80818,-0.644368,-1.14478,6.78995,-0.235995,-1.02024,8.05218,-0.706718,-0.868818,7.84163,-0.700118,-0.808934,7.55411,-0.638027,-1.00193,6.95834,-0.425126,-0.831451,7.30991,-0.54733,-0.908157,7.12696,-0.454619,-1.05434,6.83627,-0.423652,-0.167267,8.9442,1.13075,-0.771291,8.97858,0.996947,-1.08729,8.95915,0.924009,-1.21152,8.92093,0.866027,-0.489176,8.95347,1.02626,-0.958527,8.9951,0.959881,-1.16458,8.9348,0.899325,-1.32557,6.76139,0.450172,-1.28756,7.80635,0.286186,-1.14708,7.47177,0.297376,-1.13507,7.2334,0.322921,-1.1635,7.05157,0.358837,-1.23359,6.93323,0.414473,-1.32442,6.57503,0.472904,-0.155448,9.40137,0.717925,-0.337052,9.47998,0.661537,-0.679866,7.66309,-0.702449,-0.898228,7.38792,-0.436486,-1.07601,7.23938,0.084137,-1.0005,7.30012,-0.167694,-0.503135,7.25927,1.11641,-0.83523,7.17886,0.88822,-0.219325,7.3944,1.30092,-8.88178e-16,7.48345,1.36228,-1.05583,7.1691,0.538388,-0.783733,7.51921,-0.576162,-1.07808,7.19423,0.320775,-0.93697,7.1834,-0.317043,-1.12439,7.06483,0.115345,-1.042,7.11701,-0.102311,-0.530226,6.99686,1.18341,-0.918139,6.90277,0.989007,-0.243686,7.17357,1.32944,-8.88178e-16,7.3246,1.38855,-1.14278,6.95132,0.603968,-0.725306,7.41031,-0.559789,-0.83916,7.28221,-0.472046,-1.1418,7.02045,0.36393,-1.03447,7.03062,-0.236105,-1.18815,6.94612,0.147282,-1.14606,6.9844,-0.0575972,-0.614463,6.75929,1.30007,-1.00917,6.62092,1.08617,-0.270915,6.96703,1.39323,-1.25176,6.75671,0.680396,-0.782923,7.15066,-0.494125,-0.918406,7.09296,-0.389705,-1.21913,6.88638,0.410284,-0.825819,6.9578,-0.504094,-1.06245,6.43991,1.18734,-1.27345,6.55644,0.75215,-8.88178e-16,6.98965,1.51818,-0.304593,6.77759,1.49239,-0.667741,6.56268,1.41949,-1.25238,6.80935,0.16521,-1.2012,6.86596,-0.0387643,-1.1152,6.90531,-0.219195,-0.98818,6.93087,-0.416094,-1.29312,6.71469,0.435314,-0.939426,6.8873,-0.646328,-1.10259,6.31261,1.24382,-1.33514,6.4399,0.848253,-0.329653,6.62747,1.54353,-0.734202,6.39819,1.45694,-1.34303,6.71314,0.169846,-1.26059,6.77682,-0.0651624,-1.16847,6.8203,-0.266691,-1.07616,6.86121,-0.45702,-1.36574,6.60012,0.482586,-0.21855,7.46036,1.33814,-0.885475,7.24448,0.903953,-1.10858,7.22193,0.542685,-1.12024,7.28635,0.0657454,-0.527528,7.33053,1.1371,-1.04654,7.34268,-0.207625,-0.919939,7.43468,-0.505019,-0.692159,7.72592,-0.784285,-0.79925,7.57905,-0.648359,-1.13247,7.24911,0.317742,-0.678278,7.45086,-0.649443,-0.930509,7.21482,-0.392164,-1.14567,7.09426,0.0910084,-1.04627,7.14661,-0.148366,-0.534427,7.0757,1.19504,-0.891022,7.01232,0.973791,-0.245747,7.23939,1.35963,-1.13178,7.00383,0.594668,-0.807859,7.32202,-0.553433,-1.15067,7.05507,0.347638,-1.01193,7.06662,-0.297921,-1.19847,6.98006,0.124579,-1.13264,7.01816,-0.105035,-0.604641,6.85332,1.28118,-1.01314,6.7152,1.07257,-0.268027,7.04729,1.40645,-1.25983,6.83795,0.668892,-0.764029,7.22437,-0.548398,-0.886795,7.14053,-0.461085,-1.22841,6.93697,0.401891,-1.13033,6.91947,-0.252952,-1.2802,6.83908,0.147095,-1.23149,6.88154,-0.0670583,-0.67662,6.60589,1.4393,-1.08312,6.47964,1.19791,-0.301531,6.81564,1.51972,-1.30708,6.60803,0.752604,-0.806472,7.02145,-0.514719,-0.997158,6.95401,-0.421549,-1.32128,6.75885,0.442053,-0.943919,6.88282,-0.642732,-1.10124,6.30657,1.24279,-1.33616,6.43058,0.837306,-0.315616,6.62323,1.54111,-0.725527,6.39735,1.46011,-1.34112,6.69949,0.161932,-1.25864,6.76462,-0.0703238,-1.16742,6.80889,-0.269895,-1.07814,6.85145,-0.456705,-1.36822,6.59017,0.472702,-0.0541062,9.04783,1.05207,-0.0190693,8.44623,1.3814,-0.0313257,7.89689,1.33035,-0.0357982,7.51317,1.40612,-0.0316047,8.06791,1.34865,-0.0251408,7.69839,1.33437,-0.058384,9.14426,0.99273,-0.0241899,8.25056,1.3858,-0.0195397,8.73195,1.31614,-0.0432287,7.00168,1.55255,-0.0309115,7.98043,1.34044,-0.0409209,7.34298,1.42532,-0.042126,7.19029,1.4646,-0.0577734,6.73802,1.54577,-0.0376769,8.91359,1.1724,-0.0438769,9.37623,0.737428,-0.033878,7.46765,1.35827,-0.0376126,7.29725,1.38498,-0.0374016,7.13036,1.43683,-0.0438206,6.95225,1.51629,-0.0510184,6.77636,1.60351,-0.030163,7.52005,1.39788,-0.0331118,7.34446,1.41989,-0.0338994,7.19519,1.45826,-0.0318652,6.99931,1.55017,-0.040847,6.77458,1.60083,-0.0904382,9.6016,0.712257,-0.386443,9.75279,0.632459,-0.202615,9.65323,0.691961,-0.705939,9.71403,0.387562,-0.616068,9.75676,0.514598,-0.666692,9.73809,0.481023,-0.745211,9.6927,0.380798,-0.510492,9.77254,0.581895,-1.45907,8.20151,-0.00456246,-1.38078,8.09101,0.0227845,-1.29011,8.14606,-0.4053,-1.39613,8.30283,-0.372536,-1.26802,8.53277,-0.743305,-1.00234,8.35881,-0.876623,-1.15337,8.21318,-0.650733,-1.32877,8.40688,-0.566032,-1.37411,8.08766,0.217564,-1.44857,8.20957,0.17477,-1.33959,8.10596,-0.18909,-1.44386,8.23159,-0.186708,-0.157857,9.43656,0.714302,-0.0470983,9.40895,0.732215,-8.88178e-16,9.40643,0.734381,-0.480487,9.56438,0.611138,-0.340707,9.51255,0.65987,-0.792714,9.5535,0.515884,-0.749223,9.54984,0.532876,-0.701014,9.55517,0.562817,-0.612175,9.57013,0.587174,-0.407302,0.0299936,0.0436081,-1.27568,0.0299927,0.0147482,-1.26702,0.0299936,0.283082,-0.412871,0.0299927,0.751201,-0.455625,0.0299936,0.430463,-1.25411,0.0297821,-0.257468,-0.990348,0.0299936,-0.277655,-0.723395,0.0299936,-0.275658,-0.402945,0.0299927,-0.277803,-0.69384,0.0299936,0.0344671,-1.01717,0.0299936,0.0314384,-1.02178,0.0299936,0.331851,-0.734753,0.0299936,0.423031,-1.46942,0.0299936,0.774537,-0.729295,0.0299936,0.758025,-1.15139,0.0299936,0.73235,-0.673916,0.0299936,1.07443,-1.22315,0.0299936,1.05154,-1.55626,0.0299936,1.07473,-0.330255,0.0299927,1.08758,-1.30256,2.302,0.0126935,-1.29656,2.30931,-0.079061,-1.27534,2.076,-0.11421,-1.28194,2.07403,-0.0297712,-1.15756,2.07727,-0.0256692,-1.16351,2.08212,-0.110321,-1.16575,2.32604,0.0184177,-1.17417,2.3322,-0.0733632,-1.30602,2.31027,0.0148611,-1.27537,2.06438,-0.0282554,-1.29855,2.31765,-0.0769092,-1.27061,2.06881,-0.112931,-1.2396,2.09071,-0.152696,-1.26284,2.29113,-0.126716,-1.36806,2.04635,-0.238864,-1.23443,2.10217,-0.00800606,-1.3983,2.25056,-0.250438,-1.25692,2.29669,0.0270147,-1.18076,2.1223,0.216823,-1.19001,2.31387,0.228722,-1.18207,2.31309,0.200138,-1.15135,2.12443,0.182348,-1.23035,2.3054,0.0257135,-1.18311,2.318,-0.239417,-1.20719,2.11278,-0.0103211,-1.15887,2.11337,-0.241082,-1.17965,2.7168,-0.159535,-1.22215,2.83848,0.0730289,-1.16718,2.92168,-0.168629,-1.21004,3.0067,0.0958107,-1.16086,2.92485,0.261934,-1.15725,3.05118,0.269884,-1.16434,2.94289,0.298338,-1.18947,2.75239,0.296694,-1.23763,2.92766,0.0986492,-1.3979,2.89215,-0.113426,-1.25075,2.73072,0.0739701,-1.4041,2.68556,-0.11908,-1.24915,2.91443,-0.0479668,-1.26408,2.71104,-0.0663925,-1.29455,2.69903,-0.0285485,-1.27713,2.95037,-0.0056818,-1.29817,2.69984,0.0562947,-1.28378,2.94912,0.086439,-1.15209,2.94268,-0.0044702,-1.1429,2.93981,0.0873985,-1.18676,2.69316,-0.0279896,-1.17992,2.69164,0.05672,-1.30296,2.71042,0.0543414,-1.29796,2.70687,-0.0301548,-1.2767,2.94172,-0.00740456,-1.28189,2.94027,0.0846777,-0.471648,0.758845,0.827037,-0.47639,0.809023,0.687664,-0.44317,0.752505,0.554745,-0.391447,0.622398,0.506143,-0.351536,0.494843,0.570351,-0.346713,0.443704,0.709899,-0.380011,0.501168,0.842593,-0.43172,0.631364,0.891222,-0.464907,0.725081,0.79609,-0.434385,0.62763,0.845154,-0.394847,0.528202,0.808002,-0.369445,0.485022,0.706393,-0.373077,0.523354,0.599848,-0.403598,0.620776,0.550785,-0.443138,0.720235,0.587939,-0.468532,0.763438,0.689547,-0.395136,0.723591,0.779479,-0.397937,0.753225,0.697168,-0.378318,0.719847,0.61867,-0.347772,0.643009,0.589967,-0.324192,0.567722,0.627872,-0.321391,0.538089,0.710183,-0.341011,0.571466,0.788681,-0.371556,0.648304,0.817385,-0.335795,0.695423,0.741872,-0.325095,0.661926,0.758686,-0.311177,0.626698,0.745858,-0.302248,0.611731,0.709864,-0.303643,0.62478,0.673162,-0.313985,0.658408,0.656381,-0.327999,0.693601,0.669202,-0.336831,0.708603,0.705205,-0.308094,0.649179,0.724188,-0.300732,0.666968,0.709343,-0.315067,0.676912,0.69241,-0.43903,0.720972,0.786826,-0.44224,0.754934,0.692495,-0.419755,0.716681,0.602533,-0.384749,0.628623,0.569638,-0.357726,0.542341,0.61308,-0.354516,0.50838,0.70741,-0.376999,0.546632,0.797372,-0.412007,0.634692,0.830267,-0.462573,0.619801,0.881517,-0.412683,0.494099,0.834525,-0.38063,0.438,0.706543,-0.385199,0.488,0.571801,-0.423693,0.611144,0.50978,-0.473626,0.736744,0.556699,-0.505694,0.791304,0.685012,-0.501116,0.742864,0.819557,-1.28169,0.783167,0.500116,-1.31439,0.772254,0.638974,-1.3831,0.675977,0.719465,-1.44758,0.550733,0.694438,-1.47005,0.46989,0.578555,-1.43735,0.480803,0.439698,-1.36864,0.57708,0.359208,-1.30416,0.702324,0.384234,-1.36683,0.702481,0.422674,-1.41203,0.61467,0.405129,-1.46021,0.54717,0.461561,-1.48313,0.539518,0.558915,-1.46738,0.596199,0.640162,-1.42217,0.684008,0.657709,-1.374,0.751509,0.601276,-1.35107,0.759161,0.503921,-1.4979,0.699234,0.536661,-1.50707,0.699109,0.514144,-1.49625,0.687925,0.495466,-1.47258,0.729899,0.544411,-1.49169,0.703137,0.567166,-1.50969,0.66818,0.559864,-1.51569,0.646001,0.528376,-1.50691,0.649146,0.490532,-1.4877,0.675858,0.467794,-1.4698,0.710866,0.475079,-1.46347,0.732861,0.506629,-1.4089,0.715441,0.429682,-1.44835,0.63882,0.414373,-1.49039,0.57992,0.463614,-1.51039,0.573244,0.548563,-1.49664,0.622702,0.619456,-1.4572,0.699322,0.634768,-1.41516,0.758222,0.585525,-1.39516,0.764899,0.500577,-1.34943,0.754229,0.613967,-1.40384,0.67799,0.677704,-1.45489,0.578813,0.657887,-1.47269,0.514795,0.566121,-1.4468,0.523437,0.456165,-1.39238,0.599677,0.392427,-1.34133,0.698854,0.412243,-1.32353,0.762872,0.504008,-1.33065,0.721124,0.373086,-1.39744,0.591386,0.347162,-1.46862,0.491653,0.430541,-1.50249,0.480347,0.574382,-1.47922,0.564093,0.694423,-1.41243,0.693832,0.720347,-1.34125,0.793563,0.636969,-1.30738,0.804869,0.493128,-1.1387,3.6371,0.468567,-1.22649,3.63696,0.237505,-1.18945,3.41472,0.198948,-0.426742,3.23194,0.604395,-0.470508,3.56753,0.731794,-0.542733,3.57427,0.822832,-1.13453,2.62872,0.464041,-1.10653,3.39736,0.379742,-1.07581,3.30326,0.594643,-0.644835,3.26747,0.755962,-0.815241,3.28029,0.760304,-1.28952,3.60918,0.686216,-1.14181,3.47319,0.452306,-0.684705,3.54608,1.04149,-0.685484,3.34015,0.81319,-1.12105,3.36915,0.653331,-0.852567,3.34372,0.821244,-1.19299,3.61027,0.901944,-0.925588,3.58213,1.04864,-1.16063,4.27985,1.01026,-1.14546,4.2619,0.865962,-0.794313,4.22245,1.07045,-0.927245,4.25489,1.13958,-0.752132,4.20086,1.04467,-1.1268,4.24356,0.825684,-1.12281,4.2403,0.957099,-0.862456,4.2154,1.0985,-1.2631,3.96815,0.755207,-1.18127,3.95905,0.955049,-0.922362,3.93108,1.09752,-0.698909,3.90903,1.08484,-0.595228,3.89835,0.949626,-1.1641,3.95603,0.619554,-1.18042,3.6254,0.532356,-1.11199,3.42796,0.411991,-0.658016,3.29435,0.771852,-0.582632,3.56636,0.881002,-1.08919,3.32815,0.614797,-0.825785,3.3026,0.780029,-0.762319,4.20267,1.04122,-1.12175,4.24207,0.834693,-1.13386,4.24472,0.969683,-0.878053,4.21923,1.11046,-0.623161,3.89911,0.985424,-1.19094,3.95745,0.656643,-1.13884,4.25579,0.859541,-1.15323,4.27779,1.0017,-0.922825,4.25418,1.12829,-0.792154,4.22123,1.05628,-0.750212,4.1889,1.01569,-1.10624,4.22432,0.817632,-0.858358,4.20892,1.09984,-1.13018,4.23842,0.952766,-0.760449,4.19896,1.02268,-1.11101,4.23299,0.828461,-1.22313,1.96501,-0.164316,-0.438147,1.95874,-0.334969,-1.25705,2.9606,-0.12313,-0.405432,2.83781,-0.307541,-0.84157,1.97014,-0.508298,-0.688881,1.96842,-0.509431,-0.544934,1.96521,-0.45431,-1.12238,1.96858,-0.345025,-0.830269,2.79316,-0.513749,-0.659552,2.78079,-0.511174,-0.513543,2.78787,-0.443813,-1.14695,2.86898,-0.343794,-0.492567,0.56513,-0.236922,-0.443228,0.500372,0.448055,-1.06365,1.07321,0.902392,-0.958949,0.617847,-0.372038,-1.25808,0.447811,0.201422,-1.29364,0.451291,0.491077,-0.681836,0.614064,-0.399434,-0.670351,1.05663,0.896327,-0.420401,0.499821,0.0774494,-0.504655,0.77233,0.710401,-1.27436,0.755856,0.667344,-1.1803,0.547528,-0.150128,-0.49063,0.808224,-0.221302,-0.46682,0.770671,0.371242,-1.05464,1.12361,0.811898,-0.942941,0.842551,-0.36205,-1.22685,0.719301,0.115581,-1.26795,0.805694,0.325799,-0.693526,0.841422,-0.390631,-0.683853,1.11407,0.825546,-0.446668,0.76729,0.0561294,-0.564421,0.974904,0.615938,-1.211,1.00049,0.58177,-1.16147,0.792742,-0.149371,-0.967188,-0.018647,2.40426,-1.13453,-0.0203847,2.37202,-0.823457,-0.0198748,2.38467,-0.809005,0.0325416,2.33447,-1.07209,0.0510701,2.3163,-0.893923,0.125016,2.29119,-1.02074,0.113292,2.28974,-0.839676,0.0959581,2.30207,-0.961976,0.133399,2.28458,-0.969559,0.259861,2.14233,-0.724543,0.203432,2.16162,-1.09201,0.220801,2.15336,-0.839232,0.251446,2.14499,-1.18806,0.113996,2.18976,-0.645202,0.0951669,2.21594,-0.603427,-0.0179201,2.29931,-1.27847,-0.0189629,2.2491,-1.42552,-0.0169413,2.05732,-0.444914,-0.0139401,2.08208,-0.49856,0.166917,1.99409,-1.32063,0.183475,1.96372,-0.788687,0.365008,1.89927,-1.18661,0.323398,1.9102,-0.616103,0.309686,1.9268,-0.989071,0.371171,1.89312,-1.01374,0.540953,1.38251,-0.522205,0.471839,1.41005,-1.2993,0.473228,1.36588,-0.748818,0.537647,1.39732,-1.44443,0.303328,1.35873,-0.379578,0.293797,1.41914,-0.29123,-0.00875905,1.42486,-1.53179,-0.010603,1.35011,-1.2588,1.69611,0.0295458,-1.17364,1.56637,-0.267685,-0.674915,1.39376,-0.551358,-0.518049,1.824,0.512089,-0.368004,1.47116,-0.00213536,-0.923451,1.40956,-0.477056,-0.948356,1.84885,0.644676,-0.386267,1.53637,0.282788,-0.449576,1.43313,-0.344297,-0.693519,1.22565,0.78078,-1.00643,1.2379,0.752093,-1.1813,1.12686,0.546332,-1.26198,0.994609,0.254501,-1.2241,0.901522,0.057362,-1.15526,0.936109,-0.161304,-0.975422,1.05707,-0.350177,-0.652624,1.05513,-0.403956,-0.496434,0.937528,-0.215228,-0.453919,0.89661,0.052879,-0.4807,0.914508,0.333385,-0.561114,1.16262,0.615138,-1.03114,0.576117,1.45191,-0.474913,0.498672,1.49164,-1.34022,0.480573,1.43986,-0.717959,0.572311,1.47096,-1.5005,0.315859,1.44872,-0.322473,0.313381,1.50789,-0.242143,-0.00538064,1.51441,-1.60639,-0.00800738,1.4341,-1.49446,-0.00800739,1.05429,-0.353938,-0.00538066,1.1223,-0.410575,0.405881,1.11904,-1.39389,0.417132,1.06175,-0.761604,0.717829,1.09409,-1.26454,0.631052,1.06623,-0.549899,0.628829,1.10812,-1.00451,0.722621,1.08,-1.01121,0.769896,1.12677,-0.535931,0.693736,1.15985,-1.27562,0.685301,1.11579,-0.754899,0.769875,1.14223,-1.43233,0.460483,1.10423,-0.376909,0.449494,1.16343,-0.267527,-0.00593823,1.16142,-1.58994,-0.00767138,1.09089,-1.42623,-0.0076714,0.680632,-0.38605,-0.00593825,0.739454,-0.482041,0.526223,0.732762,-1.30903,0.538864,0.685368,-0.779184,0.92184,0.702853,-1.1516,0.81285,0.686929,-0.602827,0.810763,0.718585,-0.964778,0.927848,0.692324,-0.417894,-0.00984579,1.84956,-1.4553,-0.0145746,1.78968,-0.48113,0.183269,1.84483,-1.34194,0.197319,1.79506,-0.78208,0.383604,1.82495,-0.601048,0.328858,1.83582,-1.20989,0.339412,1.80145,-0.994081,0.38865,1.81355,-1.00287,0.411684,1.89756,-1.23143,0.359827,1.88437,-0.587912,0.350116,1.92111,-0.778677,0.406213,1.91008,-1.3694,0.215038,1.87798,-0.460796,0.199147,1.92979,-1.48882,-0.010603,1.87271,-0.393452,-0.00875902,1.93436,-0.483061,0.918893,-0.261493,-0.407708,0.645055,0.433872,-0.972583,0.941604,-0.394494,-1.30573,0.779052,0.0601763,-1.30801,0.674926,0.297017,-0.697485,0.942773,-0.409251,-0.368221,0.775207,0.0982228,-0.447269,0.524723,0.826392,-1.43636,0.531792,0.783078,-1.19947,0.869701,-0.215343,-0.688416,-0.000471539,-0.530173,-1.29418,-0.000954014,-0.261905,-1.31427,-0.000216971,0.0199876,-1.42396,-0.00487804,0.279502,-0.374554,5.4809e-06,-0.307325,-0.384971,-4.56419e-06,0.0460228,-0.373184,-0.00298742,0.422124,-1.0859,-0.00188332,-0.505957,-0.41139,0.284188,0.411641,-0.358221,0.416938,0.0677702,-0.386812,0.443307,-0.27676,-1.34579,0.311081,0.273482,-1.35331,0.381952,0.0331711,-1.2952,0.430867,-0.228576,-1.00734,0.438138,-0.502808,-0.652995,0.439546,-0.527172,-0.690495,0.66343,-0.485095,-1.21198,0.652108,-0.214627,-1.31194,0.61275,0.0523661,-1.32183,0.515338,0.292823,-0.480923,0.642125,-0.232034,-0.370712,0.627356,0.0883579,-0.413214,0.508401,0.400208,-0.975312,0.664804,-0.469289,-1.63458,-0.00756974,0.777364,-1.56767,0.187303,0.77787,-1.51534,0.356098,0.780409,-0.329314,0.120074,0.836475,-0.291127,-0.00531839,0.835047,-0.386437,0.333067,0.832039,-1.03999,1.2655,-0.235683,-0.569513,1.22225,-0.303251,-0.674518,1.23169,-0.32462,-0.8029,1.24442,-0.343529,-0.498908,1.21409,-0.14785,-1.1214,1.26855,-0.10603,-1.25997,2.97898,0.140663,-0.409203,2.93628,0.549532,-1.27732,2.18247,0.0543973,-0.720471,1.56232,0.765338,-0.989275,1.55424,0.741906,-1.2027,1.50543,0.521559,-1.30173,1.39626,0.236243,-1.29136,1.33146,0.0314089,-1.21453,1.21887,-0.236961,-0.986465,1.23956,-0.451962,-0.625595,1.2253,-0.514734,-0.424713,1.19141,-0.306086,-0.356149,1.19359,0.0213254,-0.377923,1.23808,0.315482,-0.498865,1.50303,0.592724,-0.68866,2.21967,0.659677,-0.936335,2.21373,0.633986,-0.475573,2.22294,0.506601,-1.28604,2.65693,0.0900661,-0.433065,2.65125,0.503923,-1.10805,2.95503,0.522165,-0.654891,2.93057,0.70477,-1.23554,2.63909,0.261535,-0.667739,2.61901,0.663177,-0.897602,2.6115,0.643142,-1.19757,2.97153,0.312404,-0.869892,2.93121,0.686346,-1.12935,2.20427,0.461606,-1.24412,2.19031,0.233759,-0.734359,1.53595,0.725466,-0.971002,1.52656,0.703538,-1.1644,1.47498,0.499725,-1.2548,1.36474,0.229623,-1.24203,1.30037,0.0383351,-1.17166,1.20257,-0.208238,-0.959975,1.23972,-0.414895,-0.651475,1.23152,-0.47898,-0.464981,1.18531,-0.277857,-0.4072,1.17905,0.0259123,-0.430778,1.21579,0.30477,-0.53366,1.4805,0.563857,-0.70882,1.84701,0.65709,-1.13096,1.83192,0.46053,-1.23768,1.77156,0.20991,-0.720842,1.57616,0.755234,-0.984541,1.5684,0.733096,-1.19371,1.52398,0.517696,-1.29295,1.42001,0.237227,-1.2863,1.35528,0.0359704,-1.20773,1.23761,-0.234894,-0.977103,1.24274,-0.452415,-0.634996,1.22837,-0.516409,-0.432152,1.19985,-0.30732,-0.362222,1.20599,0.0206402,-0.385806,1.2525,0.31833,-0.504674,1.52329,0.587916,-0.807689,0.0299927,-0.492847,-0.942691,0.0299927,-0.481133,-0.359224,0.0299937,1.47569,-1.47985,0.0299937,1.41111,-1.17537,0.0299937,1.42866,-0.673346,0.0299937,1.45759,-0.725063,0.0299937,1.85888,-1.16295,0.0299937,1.83365,-1.42853,0.0299937,1.81834,-0.451072,0.0299937,1.87467,-1.05374,0.0299928,2.33639,-0.859097,0.0299928,2.34589,-0.770581,0.0299937,2.11211,-0.542702,0.0299928,2.1253,-1.35546,0.0299928,2.07835,-1.13469,0.0299937,2.09113,-0.434882,0.0299927,-0.277621,-0.435881,0.0299936,0.0426964,-0.483464,0.0299936,0.429721,-0.44443,0.0299936,0.751881,-0.364531,0.0299936,1.08626,-0.390553,0.0299937,1.47388,-0.478399,0.0299937,1.8731,-0.565421,0.0299928,2.12399,-1.23207,0.0299927,-0.259831,-1.24413,0.0299927,0.0167871,-1.23711,0.0299936,0.289029,-1.43064,0.0299936,0.769393,-1.51564,0.0299936,1.0719,-1.44272,0.0299937,1.41325,-1.39614,0.0299937,1.82021,-1.32852,0.0299928,2.07989,-0.838436,0.0299928,2.31446,-0.671746,0.0296693,2.27841,-1.20962,0.0303478,2.25963,-1.0682,0.0299928,2.30443,-0.687756,0.0299928,2.26127,-1.1935,0.0299928,2.24444,-0.628204,0.0296718,-0.452036,-0.802039,0.0299927,-0.478304,-0.945884,0.0299927,-0.4675,-1.07671,0.0298213,-0.445532,-0.634576,0.0300394,-0.439375,-1.06924,0.0299743,-0.433666,-1.12995,7.8569,0.714685,-1.00714,7.20072,0.746596,-1.02269,7.49328,0.649214,-1.27514,8.15058,0.578731,-1.40046,8.33476,0.55027,-1.20424,6.54073,0.986012,-1.04514,6.97139,0.800967,-1.17416,6.74623,0.891382,-1.18057,6.33855,1.01379,-0.948971,7.16841,0.718945,-1.04401,6.9186,0.798224,-1.15495,6.6788,0.887791,-1.16664,6.49928,0.971315,-1.22552,6.37398,1.05179,-1.00855,7.21509,0.733584,-1.023,6.99536,0.784728,-1.16298,6.7643,0.876388,-1.2078,6.53778,0.973894,-1.22603,6.36473,1.04386,-1.07007,8.57608,1.00257,-1.2399,2.46154,-0.143916,-0.430924,2.4002,-0.313413,-0.836087,2.38005,-0.510881,-0.674363,2.37302,-0.510236,-0.533351,2.37653,-0.445343,-1.13506,2.41733,-0.34384,-0.808101,1.60089,-0.429119,-1.07265,1.61361,-0.292247,-1.16391,1.61326,-0.136877,-0.461127,1.58745,-0.239428,-0.552853,1.59455,-0.378117,-0.674513,1.59767,-0.418766,-1.34678,4.5588,-0.109181,-0.187992,4.37302,-0.236215,-0.816057,4.4791,-0.61683,-0.351011,4.40152,-0.509169,-0.589679,4.44448,-0.600021,-1.17418,4.5277,-0.426184,0.00264589,9.36275,-0.824212,-8.88178e-16,9.47257,-0.749116,4.7793e-05,9.56352,-0.703089,9.71987e-05,9.5274,-0.696397,-8.88178e-16,8.7246,-1.06399,-8.88178e-16,8.50177,-1.09809,-8.88178e-16,9.58858,0.71652,-8.88178e-16,7.03062,1.54958,-8.88178e-16,8.25064,1.38608,-8.88178e-16,7.5215,1.40938,-8.88178e-16,6.80268,1.60483,-8.88178e-16,7.36207,1.42218,-8.88178e-16,6.80099,1.60699,-8.88178e-16,7.16549,1.43903,-8.88178e-16,9.37562,0.739489,-8.88178e-16,7.98125,1.34516,-0.489939,6.17145,1.33462,-0.211612,6.16503,1.44164,0,6.16036,1.45212,-0.0926574,5.02553,1.11216,-0.459281,6.19865,1.34175,-0.237441,5.36835,1.3399,-0.464685,5.81186,1.40443,-0.46014,6.17095,1.34599,0.958961,7.50396,-0.42415,0.907277,7.2516,-0.396789,0.480256,7.39369,-0.715444,0.562134,7.63184,-0.782478,0.122297,7.50542,-0.73986,0.2145,7.74688,-0.821681,-0.217269,7.62049,-0.807362,-0.125763,7.8621,-0.831242,-0.555768,7.73631,-0.856878,-0.506037,7.97933,-0.891732,-0.980121,8.17969,-0.747162,-1.02029,7.97131,-0.598804,-0.869736,7.8666,-0.735697,-0.828094,8.07838,-0.876193,0.891237,7.25797,-0.40195,0.943918,7.50953,-0.434534,-0.887215,7.50953,-0.510176,-0.81285,7.25418,-0.460016,0.828094,8.07838,-0.876193,0.869736,7.8666,-0.735697,1.02029,7.97131,-0.598804,0.987291,8.16005,-0.729402,0.506037,7.97933,-0.891732,0.555768,7.73631,-0.791342,0.125763,7.8621,-0.785117,0.217269,7.62049,-0.761238,-0.214039,7.7468,-0.769206,-0.122013,7.50534,-0.687385,-0.576891,7.60804,-0.792883,-0.483288,7.36705,-0.709315,-0.829049,7.24781,-0.455338,-0.902413,7.50396,-0.502548,-0.00149369,7.12352,-0.669808,0.00257322,6.86799,-0.759762,0.630834,7.12862,-0.543915,0.635149,6.87205,-0.586496,-0.69347,6.84615,-0.547242,-0.697537,7.10167,-0.506357,0.31467,7.12607,-0.64413,0.318861,6.87002,-0.711233,-0.377977,6.85605,-0.715733,-0.382044,7.11157,-0.627503,-1.07567,8.24793,-0.746741,-1.26486,8.41599,-0.644328,-0.932359,8.52427,-0.96859,-1.11276,8.70169,-0.87151,-0.929247,8.95635,-0.84102,-0.74885,8.77894,-0.937249,0.763104,8.7652,-0.995331,0.943501,8.94262,-0.899102,1.11506,8.69738,-0.881548,0.934661,8.51996,-0.978628,1.27156,8.41397,-0.625966,1.08236,8.24591,-0.728379,1.16576,8.60215,-0.839401,0.982431,8.42785,-0.938258,-0.978103,8.43606,-0.935005,-1.16131,8.6105,-0.835039,0.907404,6.86516,-0.385721,0.903089,7.12172,-0.342586,-0.952604,7.09753,-0.286948,-0.948537,6.84201,-0.329097,0.947527,7.50956,-0.396987,0.895842,7.2572,-0.369625,0.471442,7.40314,-0.688373,0.554161,7.64127,-0.755139,0.121909,7.51322,-0.710892,0.214123,7.75469,-0.792719,-0.219324,7.62611,-0.777965,-0.12778,7.86776,-0.801851,-0.553271,7.74286,-0.827711,-0.502592,7.98622,-0.862738,-0.958089,8.18814,-0.728635,-0.99826,7.97976,-0.580278,-0.853484,7.87548,-0.712097,-0.811997,8.08727,-0.852488,0.877485,7.26524,-0.3763,0.92959,7.51722,-0.409325,-0.875017,7.51935,-0.484588,-0.801318,7.26366,-0.433994,0.81301,8.08933,-0.852687,0.854419,7.87749,-0.712313,0.998254,7.97974,-0.58028,0.965253,8.16848,-0.710878,0.503247,7.99001,-0.863836,0.553852,7.74662,-0.763236,0.127902,7.86966,-0.756164,0.21943,7.62807,-0.732291,-0.215754,7.75428,-0.740206,-0.123699,7.51282,-0.658382,-0.571725,7.6183,-0.76517,-0.477223,7.37746,-0.681844,-0.82102,7.25543,-0.427457,-0.894384,7.51159,-0.474667,-0.00138016,7.11418,-0.6413,0.00270323,6.85865,-0.731255,0.616788,7.1234,-0.517925,0.621382,6.86677,-0.56037,-0.677578,6.84107,-0.522309,-0.681295,7.09675,-0.481619,0.307999,7.11861,-0.61585,0.312394,6.86248,-0.682928,-0.370175,6.84772,-0.687989,-0.373824,7.1034,-0.599834,-1.05578,8.25757,-0.726455,-1.24497,8.42563,-0.624042,-0.920388,8.52146,-0.941226,-1.10169,8.69784,-0.843894,-0.922423,8.94804,-0.813016,-0.742026,8.77062,-0.909245,0.753134,8.76017,-0.967488,0.933531,8.93759,-0.871259,1.10208,8.69585,-0.854545,0.921176,8.51906,-0.951845,1.25125,8.42473,-0.606686,1.06205,8.25667,-0.709099,1.14725,8.60895,-0.816791,0.963906,8.43468,-0.915672,-0.960035,8.44197,-0.911796,-1.14334,8.61622,-0.811711,0.889696,6.86088,-0.361887,0.88538,7.11744,-0.318753,-0.933165,7.09417,-0.264348,-0.929098,6.83865,-0.306496,5.18959,9.35857,-0.102872,5.13196,8.67238,-0.168157,5.18907,9.36588,-0.115429,5.17987,9.26979,0.0354708,5.19694,9.36792,-0.380305,5.16548,9.15789,0.105614,5.16123,9.16407,-0.612637,5.12678,8.86793,-0.583085,5.12154,8.70727,-0.409684,5.16946,9.00376,0.154364,4.96705,8.87567,0.111074,5.05708,8.9247,0.116063,4.8426,9.13069,0.127892,4.74615,9.08004,0.129151,5.0577,8.78045,0.0279813,5.13568,8.82825,0.0379982,4.87903,8.97089,0.155275,4.97703,9.02115,0.155726,5.20922,8.72843,-0.135429,5.08716,8.71381,-0.156249,5.12652,8.73566,-0.281169,5.21304,8.75202,-0.271068,4.94294,9.12019,0.0826645,5.03123,9.06974,0.0825777,4.793,8.69017,0.0247716,4.68174,8.71687,0.0577376,4.92014,8.89338,0.103624,4.82593,8.94347,0.137803,4.57997,8.62508,-0.132276,4.6918,8.63047,-0.158464,4.57643,8.66027,-0.279749,4.45999,8.67663,-0.269648,4.7408,8.67073,-0.271068,4.62647,8.65437,-0.281169,4.57036,8.63924,-0.15502,4.72527,8.64714,-0.135429,4.45273,8.92293,0.134624,4.35668,8.87284,0.133019,4.6287,8.74695,0.0219037,4.53028,8.69916,0.012151,4.14358,9.08807,0.132303,4.23756,9.13853,0.13239,3.95027,8.6535,-0.32502,4.08195,8.65116,-0.322612,4.12279,9.11246,0.038473,4.00368,9.11124,0.0257229,4.00751,8.6549,-0.00387725,4.01114,8.84191,0.109665,4.13577,8.66689,-0.00453606,4.13152,8.85519,0.115487,4.02086,9.06641,0.0277219,4.14051,9.06698,0.0390865,4.14769,9.05713,0.136526,4.02699,9.05656,0.124554,4.13103,8.84166,0.137565,4.11899,8.55616,0.0512316,4.0088,8.82819,0.131661,3.99064,8.55402,0.051442,4.0094,9.1013,0.118953,4.12912,9.10251,0.132024,4.12744,8.73499,0.0697622,4.00131,8.72695,0.0668861,3.97255,8.76966,0.119836,4.15719,8.77253,0.12758,3.97323,8.82479,0.141118,4.15413,8.83292,0.150402,4.15971,8.80654,0.0151694,4.15596,8.87006,0.0268802,3.97566,8.7989,0.0212496,3.97568,8.8572,0.0314823,3.97368,8.82822,0.129619,3.97304,8.77286,0.109135,4.15782,8.77703,0.112764,4.15458,8.83768,0.134624,3.97415,8.6455,-0.224151,4.10457,8.65411,-0.222644,4.1357,8.97038,0.155297,4.0149,8.96648,0.145355,4.14072,8.65155,0.0457747,4.01275,8.64628,0.0448837,4.78039,9.40658,-0.0758903,4.76216,8.60106,-0.158204,4.78223,9.41594,-0.0897542,4.78764,9.3185,0.0524774,4.80853,9.45278,-0.399189,4.80446,9.19037,0.120447,4.78208,9.20776,-0.664155,4.74916,8.84774,-0.630498,4.73625,8.63754,-0.432423,4.82671,9.00896,0.193148,5.81292,8.9698,0.231106,5.85223,8.89834,0.193407,6.09238,8.86075,0.441783,6.05889,8.91491,0.479462,6.13263,9.06693,0.434664,6.1976,9.05422,0.378486,5.97695,9.12428,0.12241,5.90066,9.13654,0.188919,4.31381,9.44199,-0.0618918,4.2985,9.44424,-0.0635358,4.05855,9.47121,-0.017392,4.51904,9.44486,-0.0581054,5.49535,9.29461,-0.130617,4.27963,9.03584,0.195479,4.12353,8.67239,-0.488393,3.94936,8.97942,-0.793941,3.96388,9.17557,-0.811735,4.27259,9.20613,0.123737,4.2338,9.47144,-0.430466,4.28524,9.33671,0.0495489,4.31738,9.45015,-0.0705113,4.159,8.6346,-0.188733,3.18435,8.94545,-0.802984,3.21318,9.28523,-0.834873,3.83697,9.5561,-0.411871,4.04619,9.50936,-0.0266839,3.90232,8.95371,-0.951788,3.91709,9.17944,-0.972256,4.3553,9.49459,-0.085989,4.29335,9.54822,-0.481011,3.44224,8.74425,-0.601675,3.59093,8.65176,-0.336891,4.19712,8.58747,-0.19124,4.15014,8.58921,-0.556903,5.42449,8.74371,-0.178109,4.52216,8.5898,-0.152909,4.1348,8.63906,-0.191443,4.30552,9.45117,-0.0699893,4.272,9.33513,0.0510349,4.20998,9.46862,-0.431985,4.25321,9.20597,0.121319,3.92268,9.17111,-0.820164,3.90956,8.99009,-0.803735,4.09708,8.67762,-0.490771,4.25988,9.03723,0.188107,4.06171,9.48015,-0.0290835,3.97984,9.33767,0.102296,3.92329,9.21192,0.140946,3.88343,9.06108,0.143446,4.52157,9.45551,-0.0728152,4.53049,9.35201,0.0649886,4.55752,9.50919,-0.411319,4.55611,9.21338,0.134445,4.52887,9.236,-0.69745,4.49537,8.83469,-0.66114,4.49929,8.62569,-0.450121,4.58325,9.01254,0.203868,5.48857,9.28069,-0.361534,5.4981,9.29899,-0.14191,5.48819,9.21409,0.0183646,5.46127,9.12224,0.0913291,5.44745,8.88813,-0.535673,5.42456,8.77699,-0.386944,5.45184,8.99878,0.118106,5.4647,9.12043,-0.561116,5.44332,8.73495,0.100872,5.4565,9.24885,0.103988,5.47256,9.3663,-0.392541,5.47533,9.29927,-0.502092,5.46829,9.39265,-0.175882,5.47086,9.39611,-0.276114,5.4609,9.31769,0.031806,5.46352,9.35818,-0.0476925,5.42713,8.61162,-0.0998135,5.42938,8.67674,-0.00595385,5.43057,8.58601,-0.337064,5.42848,8.58258,-0.239573,5.44278,8.69157,-0.529697,5.43492,8.62755,-0.447478,5.46988,8.82451,-0.641673,5.48026,8.99049,-0.658712,5.49064,9.13993,-0.675752,5.45197,9.13692,0.208964,5.44097,8.9996,0.236854,5.43933,8.84832,0.213619,5.70189,8.81395,0.0898769,5.26142,8.67462,0.147307,5.2978,9.30073,0.147513,5.3165,9.40985,-0.414438,5.31507,9.33484,-0.543873,5.72037,9.23602,-0.384707,5.73113,9.18198,-0.488114,5.71384,9.25262,-0.163536,5.71649,9.25468,-0.268192,5.3125,9.43769,-0.177545,5.31544,9.44164,-0.290299,5.30225,9.35829,0.0489659,5.3071,9.40189,-0.0432082,5.71136,9.1967,0.0395035,5.71064,9.23203,-0.0382047,5.69757,8.75679,-0.103305,5.69943,8.78288,-0.000410627,5.26265,8.54643,-0.0961424,5.27375,8.57597,0.018465,5.26856,8.53709,-0.354748,5.26592,8.5312,-0.242787,5.70042,8.74722,-0.331948,5.69836,8.74489,-0.226228,5.71808,8.80561,-0.513113,5.70528,8.75953,-0.433351,5.28843,8.62652,-0.56972,5.27526,8.57773,-0.471744,5.7576,9.05903,-0.598629,5.74801,8.96286,-0.605562,5.74124,8.89017,-0.59075,5.29574,9.16957,-0.732011,5.29996,9.00274,-0.750165,5.30059,8.79493,-0.723831,5.70433,8.98179,0.205973,5.70898,8.9085,0.179451,5.26641,8.84434,0.276775,5.27168,9.01464,0.300472,5.28855,9.17683,0.273982,5.7149,9.14698,0.102829,5.70846,9.05461,0.174994,6.49213,9.15533,-0.598623,6.63174,9.20955,-0.623172,6.35115,9.24484,-0.568174,6.36484,9.28955,-0.464205,6.62843,9.15688,-0.509625,6.5005,9.17354,-0.490761,6.37074,9.33473,-0.0411153,6.63864,9.1471,-0.0269347,6.51655,9.20652,-0.0405739,6.33858,9.19705,-0.668319,6.38117,9.35441,-0.26453,6.32958,9.2457,0.166441,6.3763,9.33593,-0.352561,6.37937,9.35739,-0.161182,6.35642,9.29934,0.0591969,6.63882,9.13101,-0.255033,6.6254,9.13459,0.148849,6.62114,9.17414,-0.756287,6.65038,9.2252,-0.387692,6.66092,9.23647,-0.126912,6.64802,9.21131,0.0554855,6.50947,9.19346,0.0601968,6.5183,9.22651,-0.364727,6.52363,9.23131,-0.264977,6.52777,9.24857,-0.153468,6.48991,9.14388,0.181109,6.48133,9.11854,-0.699323,5.85292,9.11706,-0.603598,5.84196,9.28774,-0.0520971,5.85306,9.22159,-0.472468,5.84789,9.29808,-0.261897,5.80412,9.18633,0.10529,5.85052,9.28612,-0.368465,5.84551,9.29688,-0.1644,5.83273,9.24755,0.0295016,5.56568,9.31331,0.0178463,5.56798,9.36499,-0.169827,5.57401,9.34965,-0.374259,5.5744,9.25228,0.0650122,5.61725,9.18174,-0.571995,5.58396,9.2997,-0.469839,5.56502,9.34596,-0.0539808,5.57043,9.3669,-0.266562,6.0664,9.10222,-0.630811,6.07967,9.25926,-0.0521186,6.08104,9.18121,-0.482696,6.0857,9.27234,-0.266513,6.04353,9.15957,0.161724,6.08459,9.2439,-0.376418,6.08344,9.27356,-0.1691,6.07326,9.22566,0.0439849,6.22167,9.15742,-0.656728,6.21845,9.15845,0.177487,6.23878,9.24226,-0.0678524,6.23575,9.21565,-0.507124,6.24619,9.25935,-0.286629,6.24214,9.24625,-0.402638,6.24314,9.26177,-0.191188,6.23656,9.21994,0.0338962,6.42794,9.18863,0.0274598,6.4339,9.21064,-0.201778,6.43326,9.18191,-0.421409,6.4124,9.13205,-0.628701,6.41613,9.16458,0.144365,6.42667,9.15868,-0.52689,6.43812,9.2078,-0.302182,6.42868,9.19644,-0.0800807,5.99311,9.30921,0.0445054,6.00352,9.35822,-0.173533,6.0047,9.32788,-0.385671,5.96269,9.24158,0.164982,6.00584,9.35698,-0.273211,6.00106,9.26373,-0.49442,5.99967,9.34359,-0.0538324,5.98609,9.1829,-0.645979,6.2104,8.84002,0.724453,6.21749,8.78246,0.659902,6.43923,8.65151,0.846311,6.43643,8.69617,0.903928,6.5391,8.85896,0.881638,6.57943,8.86248,0.809321,6.36445,8.99023,0.614545,6.31786,8.99066,0.701284,6.11645,9.06197,0.465565,6.18315,9.05462,0.399779,6.39091,8.94457,0.61417,6.33424,8.95295,0.670056,6.25802,8.8133,0.695426,6.28369,8.76673,0.652726,6.05614,8.84742,0.442227,6.02628,8.91009,0.487378,6.87585,9.06778,-0.791544,6.84365,8.99127,-0.807368,7.08247,8.92813,-0.835309,7.10613,8.98433,-0.823686,7.14027,8.9992,-0.695546,7.12795,8.95612,-0.66872,6.89473,9.0189,-0.608766,6.90559,9.08013,-0.649746,6.70099,9.08903,-0.59733,6.70134,9.02357,-0.56182,6.94195,9.00881,-0.62361,6.94632,9.05554,-0.646529,6.9152,9.04583,-0.77593,6.90198,8.98751,-0.792583,6.65575,9.00435,-0.762736,6.67375,9.08375,-0.740065,6.47443,9.1191,-0.696952,6.45314,9.04075,-0.720381,6.69862,9.0133,-0.74851,6.71426,9.07086,-0.731301,6.74476,9.07822,-0.601598,6.73816,9.03156,-0.57908,6.49796,9.05643,-0.518983,6.50077,9.1221,-0.55398,6.58706,9.15406,-0.453753,6.57254,9.08894,-0.481253,6.83646,9.07548,-0.514881,6.84915,9.13488,-0.490829,6.86946,9.1306,-0.356757,6.86242,9.07927,-0.338955,6.59735,9.0856,-0.293673,6.60037,9.14429,-0.317964,6.85562,9.1751,-0.363666,6.85296,9.10481,-0.32911,7.18971,9.0529,-0.393175,7.19611,9.1007,-0.415388,7.17596,9.09254,-0.549306,7.16408,9.03348,-0.568102,6.82671,9.08891,-0.531748,6.84263,9.1734,-0.506579,7.16306,9.12089,-0.569436,7.13837,9.04366,-0.593231,7.43031,8.99038,-0.61034,7.44875,9.04806,-0.59257,7.46923,9.05641,-0.458715,7.45737,9.01007,-0.43566,7.16802,9.06084,-0.374282,7.17827,9.12535,-0.410032,6.6323,9.16951,-0.219275,6.61537,9.09984,-0.24958,6.93433,9.07476,-0.267459,6.94806,9.1344,-0.242888,6.96143,9.12979,-0.107957,6.95154,9.07832,-0.0904558,6.63177,9.09589,-0.0461437,6.63887,9.15893,-0.0722469,6.95379,9.15256,-0.0997597,6.94609,9.0779,-0.0714212,7.25376,9.04465,-0.122943,7.26365,9.09656,-0.140444,7.25028,9.10117,-0.275375,7.23656,9.04093,-0.299946,6.92828,9.08072,-0.292278,6.94666,9.16405,-0.259377,7.24563,9.1381,-0.2868,7.22551,9.05706,-0.31916,7.57112,8.99473,-0.328901,7.58614,9.05106,-0.304734,7.59845,9.04732,-0.169675,7.58716,8.99861,-0.15181,7.24166,9.05538,-0.0981512,7.25134,9.12787,-0.127039,7.19866,9.06718,0.191334,7.18132,9.00008,0.218576,7.48993,8.94429,0.217909,7.50621,8.99221,0.201864,7.51516,8.99511,0.0665205,7.50133,8.93931,0.0346215,7.19972,9.00127,-0.00813474,7.21824,9.07599,0.0325902,6.94976,9.10364,0.0243505,6.93776,9.02612,-0.0222611,7.2448,8.99976,0.0182315,7.25426,9.05746,0.0560114,7.24669,9.05338,0.191409,7.23615,9.00337,0.207469,6.92318,9.02279,0.210435,6.93247,9.09244,0.18321,6.63324,9.14165,0.168271,6.6532,9.07284,0.195496,6.94227,9.03516,0.192953,6.95614,9.08504,0.176893,6.96396,9.0886,0.0414958,6.95455,9.03059,0.00567061,6.65446,9.08003,-0.0432736,6.65123,9.15168,0.00941143,-5.18958,9.35857,-0.102872,-5.13196,8.67238,-0.168157,-5.18907,9.36588,-0.115429,-5.17987,9.26979,0.0354708,-5.19694,9.36792,-0.380305,-5.16548,9.15789,0.105615,-5.16123,9.16407,-0.612637,-5.12678,8.86793,-0.583085,-5.12154,8.70726,-0.409684,-5.16946,9.00376,0.154364,-4.96705,8.87567,0.111074,-5.05708,8.9247,0.116063,-4.8426,9.13069,0.127892,-4.74615,9.08004,0.129151,-5.0577,8.78045,0.0279814,-5.13568,8.82825,0.0379983,-4.87903,8.97089,0.155275,-4.97703,9.02115,0.155726,-5.20922,8.72843,-0.135429,-5.08716,8.71381,-0.156249,-5.12652,8.73566,-0.281169,-5.21304,8.75202,-0.271068,-4.94294,9.12019,0.0826646,-5.03123,9.06973,0.0825777,-4.793,8.69017,0.0247716,-4.68174,8.71687,0.0577377,-4.92014,8.89338,0.103624,-4.82593,8.94347,0.137803,-4.57997,8.62508,-0.132276,-4.6918,8.63046,-0.158464,-4.57643,8.66027,-0.279749,-4.45999,8.67663,-0.269648,-4.7408,8.67073,-0.271068,-4.62647,8.65437,-0.281169,-4.57036,8.63924,-0.15502,-4.72527,8.64714,-0.135429,-4.45273,8.92293,0.134624,-4.35668,8.87284,0.133019,-4.6287,8.74695,0.0219038,-4.53028,8.69915,0.0121511,-4.14358,9.08807,0.132303,-4.23756,9.13853,0.13239,-3.95027,8.6535,-0.32502,-4.08195,8.65116,-0.322612,-4.12279,9.11246,0.0384731,-4.00368,9.11124,0.0257229,-4.00751,8.6549,-0.00387723,-4.01114,8.84191,0.109665,-4.13577,8.66689,-0.00453603,-4.13152,8.85519,0.115487,-4.02086,9.06641,0.027722,-4.14051,9.06698,0.0390866,-4.14769,9.05713,0.136526,-4.02699,9.05656,0.124554,-4.13103,8.84166,0.137565,-4.11899,8.55616,0.0512317,-4.0088,8.82819,0.131661,-3.99064,8.55402,0.051442,-4.0094,9.1013,0.118953,-4.12912,9.10251,0.132024,-4.12744,8.73499,0.0697623,-4.00131,8.72695,0.0668862,-3.97255,8.76966,0.119836,-4.15719,8.77253,0.12758,-3.97323,8.82479,0.141118,-4.15413,8.83292,0.150402,-4.15971,8.80654,0.0151694,-4.15596,8.87006,0.0268803,-3.97566,8.7989,0.0212496,-3.97568,8.8572,0.0314823,-3.97368,8.82822,0.129619,-3.97304,8.77286,0.109135,-4.15781,8.77703,0.112765,-4.15458,8.83768,0.134624,-3.97415,8.6455,-0.224151,-4.10457,8.65411,-0.222644,-4.1357,8.97038,0.155297,-4.0149,8.96648,0.145355,-4.14072,8.65155,0.0457747,-4.01275,8.64628,0.0448838,-4.78039,9.40658,-0.0758903,-4.76216,8.60105,-0.158204,-4.78223,9.41594,-0.0897541,-4.78764,9.3185,0.0524774,-4.80853,9.45278,-0.399189,-4.80445,9.19037,0.120447,-4.78208,9.20776,-0.664155,-4.74916,8.84774,-0.630498,-4.73625,8.63754,-0.432423,-4.82671,9.00896,0.193148,-5.81292,8.9698,0.231106,-5.85224,8.89834,0.193407,-6.09238,8.86075,0.441783,-6.05889,8.91491,0.479462,-6.13263,9.06693,0.434664,-6.1976,9.05422,0.378486,-5.97696,9.12428,0.12241,-5.90066,9.13654,0.188919,-4.31381,9.44199,-0.0618918,-4.2985,9.44424,-0.0635357,-4.05855,9.47121,-0.017392,-4.51904,9.44486,-0.0581053,-5.49535,9.29461,-0.130617,-4.27963,9.03584,0.195479,-4.12353,8.67239,-0.488393,-3.94936,8.97942,-0.793941,-3.96388,9.17557,-0.811735,-4.27259,9.20613,0.123737,-4.2338,9.47144,-0.430466,-4.28524,9.33671,0.049549,-4.31738,9.45015,-0.0705113,-4.159,8.6346,-0.188733,-3.18435,8.94545,-0.802984,-3.21318,9.28523,-0.834873,-3.83697,9.5561,-0.411871,-4.04619,9.50936,-0.0266839,-3.90232,8.95371,-0.951788,-3.91709,9.17944,-0.972256,-4.3553,9.49459,-0.085989,-4.29335,9.54822,-0.481011,-3.44224,8.74425,-0.601675,-3.59093,8.65176,-0.336891,-4.19712,8.58747,-0.19124,-4.15014,8.58921,-0.556903,-5.42449,8.74371,-0.178109,-4.52216,8.5898,-0.152908,-4.1348,8.63906,-0.191443,-4.30552,9.45117,-0.0699892,-4.27199,9.33513,0.0510349,-4.20998,9.46862,-0.431985,-4.25321,9.20597,0.121319,-3.92268,9.17111,-0.820164,-3.90955,8.99009,-0.803735,-4.09708,8.67762,-0.490771,-4.25988,9.03723,0.188107,-4.06171,9.48015,-0.0290835,-3.97984,9.33767,0.102297,-3.92329,9.21192,0.140946,-3.88343,9.06108,0.143446,-4.52157,9.45551,-0.0728152,-4.53049,9.352,0.0649886,-4.55752,9.50919,-0.411319,-4.55611,9.21338,0.134445,-4.52887,9.236,-0.69745,-4.49537,8.83469,-0.66114,-4.49929,8.62569,-0.450121,-4.58325,9.01253,0.203868,-5.48857,9.28069,-0.361534,-5.4981,9.29899,-0.14191,-5.48819,9.21408,0.0183646,-5.46127,9.12223,0.0913291,-5.44745,8.88813,-0.535673,-5.42456,8.77699,-0.386944,-5.45184,8.99878,0.118106,-5.4647,9.12043,-0.561116,-5.44332,8.73495,0.100872,-5.4565,9.24885,0.103988,-5.47256,9.3663,-0.392541,-5.47533,9.29927,-0.502092,-5.46829,9.39265,-0.175882,-5.47086,9.39612,-0.276114,-5.4609,9.31769,0.0318061,-5.46352,9.35818,-0.0476925,-5.42713,8.61162,-0.0998135,-5.42938,8.67674,-0.0059538,-5.43057,8.58601,-0.337064,-5.42848,8.58258,-0.239573,-5.44278,8.69157,-0.529697,-5.43492,8.62755,-0.447478,-5.46988,8.82451,-0.641673,-5.48026,8.99049,-0.658712,-5.49064,9.13993,-0.675752,-5.45197,9.13692,0.208964,-5.44097,8.9996,0.236854,-5.43933,8.84832,0.213619,-5.70189,8.81395,0.089877,-5.26142,8.67462,0.147307,-5.2978,9.30073,0.147513,-5.3165,9.40985,-0.414438,-5.31507,9.33485,-0.543872,-5.72037,9.23602,-0.384707,-5.73113,9.18198,-0.488114,-5.71384,9.25262,-0.163536,-5.71649,9.25468,-0.268192,-5.3125,9.4377,-0.177545,-5.31544,9.44164,-0.290299,-5.30225,9.35829,0.048966,-5.3071,9.40189,-0.0432081,-5.71136,9.19671,0.0395036,-5.71064,9.23203,-0.0382047,-5.69757,8.75679,-0.103305,-5.69943,8.78288,-0.000410574,-5.26265,8.54643,-0.0961423,-5.27375,8.57597,0.0184651,-5.26856,8.53709,-0.354748,-5.26592,8.53121,-0.242787,-5.70042,8.74722,-0.331948,-5.69836,8.74489,-0.226228,-5.71808,8.80561,-0.513113,-5.70528,8.75953,-0.433351,-5.28843,8.62652,-0.56972,-5.27527,8.57773,-0.471744,-5.7576,9.05904,-0.598629,-5.74801,8.96286,-0.605562,-5.74124,8.89017,-0.59075,-5.29574,9.16957,-0.732011,-5.29996,9.00274,-0.750165,-5.30059,8.79493,-0.723831,-5.70433,8.98179,0.205973,-5.70898,8.9085,0.179451,-5.26641,8.84434,0.276775,-5.27168,9.01464,0.300472,-5.28855,9.17684,0.273982,-5.7149,9.14698,0.10283,-5.70846,9.05461,0.174994,-6.49213,9.15533,-0.598624,-6.63174,9.20955,-0.623172,-6.35115,9.24484,-0.568174,-6.36484,9.28955,-0.464205,-6.62843,9.15688,-0.509625,-6.5005,9.17354,-0.490761,-6.37074,9.33473,-0.0411153,-6.63864,9.1471,-0.0269347,-6.51655,9.20652,-0.0405739,-6.33858,9.19705,-0.668319,-6.38117,9.35441,-0.26453,-6.32958,9.2457,0.166441,-6.3763,9.33593,-0.352561,-6.37937,9.35739,-0.161182,-6.35642,9.29934,0.0591969,-6.63882,9.13101,-0.255033,-6.6254,9.1346,0.148849,-6.62114,9.17414,-0.756287,-6.65038,9.2252,-0.387692,-6.66092,9.23647,-0.126912,-6.64802,9.21131,0.0554855,-6.50947,9.19346,0.0601969,-6.5183,9.22651,-0.364727,-6.52363,9.23132,-0.264977,-6.52777,9.24857,-0.153468,-6.48991,9.14388,0.181109,-6.48133,9.11854,-0.699323,-5.85292,9.11706,-0.603598,-5.84196,9.28774,-0.0520971,-5.85306,9.22159,-0.472468,-5.84788,9.29808,-0.261897,-5.80412,9.18633,0.10529,-5.85051,9.28612,-0.368465,-5.84551,9.29688,-0.1644,-5.83273,9.24755,0.0295016,-5.56568,9.31331,0.0178462,-5.56797,9.36499,-0.169827,-5.57401,9.34965,-0.374259,-5.5744,9.25228,0.0650121,-5.61725,9.18174,-0.571995,-5.58396,9.2997,-0.469839,-5.56502,9.34596,-0.0539808,-5.57043,9.3669,-0.266562,-6.0664,9.10222,-0.630811,-6.07967,9.25926,-0.0521187,-6.08104,9.18121,-0.482696,-6.0857,9.27234,-0.266513,-6.04353,9.15957,0.161724,-6.08459,9.2439,-0.376418,-6.08344,9.27356,-0.1691,-6.07326,9.22566,0.0439848,-6.22167,9.15742,-0.656728,-6.21845,9.15845,0.177487,-6.23878,9.24226,-0.0678524,-6.23575,9.21565,-0.507124,-6.24619,9.25935,-0.286629,-6.24214,9.24625,-0.402638,-6.24314,9.26177,-0.191188,-6.23656,9.21994,0.0338962,-6.42794,9.18863,0.0274598,-6.4339,9.21064,-0.201778,-6.43326,9.18191,-0.421409,-6.4124,9.13205,-0.628701,-6.41613,9.16458,0.144365,-6.42667,9.15869,-0.52689,-6.43812,9.2078,-0.302182,-6.42868,9.19644,-0.0800808,-5.99311,9.30921,0.0445054,-6.00352,9.35822,-0.173533,-6.0047,9.32788,-0.385671,-5.96269,9.24158,0.164982,-6.00584,9.35698,-0.273211,-6.00106,9.26373,-0.49442,-5.99966,9.34359,-0.0538325,-5.98609,9.1829,-0.645979,-6.2104,8.84001,0.724453,-6.21749,8.78246,0.659902,-6.43923,8.65151,0.846311,-6.43643,8.69616,0.903927,-6.5391,8.85896,0.881638,-6.57943,8.86248,0.809321,-6.36445,8.99023,0.614545,-6.31786,8.99065,0.701284,-6.11645,9.06197,0.465566,-6.18315,9.05461,0.399779,-6.39091,8.94457,0.61417,-6.33424,8.95295,0.670057,-6.25802,8.81329,0.695426,-6.28369,8.76673,0.652726,-6.05614,8.84742,0.442227,-6.02628,8.91009,0.487378,-6.87585,9.06778,-0.791544,-6.84365,8.99127,-0.807368,-7.08247,8.92813,-0.835309,-7.10613,8.98433,-0.823686,-7.14028,8.9992,-0.695546,-7.12795,8.95612,-0.66872,-6.89473,9.0189,-0.608766,-6.90559,9.08013,-0.649746,-6.70099,9.08903,-0.59733,-6.70134,9.02357,-0.56182,-6.94195,9.00881,-0.62361,-6.94632,9.05554,-0.646529,-6.9152,9.04583,-0.77593,-6.90198,8.98751,-0.792583,-6.65575,9.00436,-0.762736,-6.67375,9.08375,-0.740065,-6.47443,9.1191,-0.696952,-6.45314,9.04075,-0.720381,-6.69862,9.01331,-0.74851,-6.71426,9.07086,-0.731301,-6.74476,9.07822,-0.601598,-6.73816,9.03156,-0.57908,-6.49796,9.05643,-0.518983,-6.50077,9.1221,-0.55398,-6.58706,9.15406,-0.453753,-6.57255,9.08894,-0.481253,-6.83646,9.07548,-0.514881,-6.84915,9.13488,-0.490829,-6.86946,9.1306,-0.356757,-6.86242,9.07927,-0.338955,-6.59735,9.0856,-0.293673,-6.60038,9.14429,-0.317964,-6.85562,9.1751,-0.363666,-6.85296,9.10481,-0.32911,-7.18971,9.0529,-0.393175,-7.19611,9.1007,-0.415388,-7.17596,9.09255,-0.549306,-7.16408,9.03348,-0.568102,-6.82671,9.08891,-0.531748,-6.84263,9.17341,-0.506579,-7.16306,9.12089,-0.569436,-7.13837,9.04366,-0.593231,-7.43031,8.99038,-0.610341,-7.44875,9.04806,-0.59257,-7.46923,9.05641,-0.458715,-7.45737,9.01007,-0.43566,-7.16802,9.06084,-0.374282,-7.17827,9.12535,-0.410032,-6.6323,9.16951,-0.219275,-6.61537,9.09984,-0.24958,-6.93433,9.07476,-0.267459,-6.94806,9.1344,-0.242888,-6.96143,9.12979,-0.107957,-6.95154,9.07832,-0.0904557,-6.63177,9.09589,-0.0461436,-6.63887,9.15893,-0.0722468,-6.95379,9.15256,-0.0997596,-6.94609,9.0779,-0.0714212,-7.25376,9.04465,-0.122943,-7.26365,9.09656,-0.140444,-7.25028,9.10117,-0.275375,-7.23656,9.04093,-0.299946,-6.92828,9.08071,-0.292278,-6.94666,9.16405,-0.259377,-7.24563,9.1381,-0.2868,-7.22551,9.05706,-0.31916,-7.57112,8.99473,-0.3289,-7.58614,9.05106,-0.304733,-7.59845,9.04732,-0.169674,-7.58716,8.99861,-0.151809,-7.24166,9.05538,-0.098151,-7.25134,9.12788,-0.127039,-7.19866,9.06718,0.191334,-7.18132,9.00008,0.218576,-7.48993,8.94429,0.217909,-7.50621,8.99221,0.201864,-7.51516,8.99511,0.0665206,-7.50133,8.93931,0.0346216,-7.19972,9.00127,-0.00813469,-7.21825,9.07599,0.0325903,-6.94976,9.10364,0.0243506,-6.93776,9.02612,-0.0222611,-7.2448,8.99976,0.0182316,-7.25426,9.05746,0.0560114,-7.24669,9.05338,0.191409,-7.23615,9.00337,0.207469,-6.92318,9.02279,0.210435,-6.93248,9.09244,0.18321,-6.63324,9.14165,0.168271,-6.6532,9.07284,0.195496,-6.94227,9.03515,0.192953,-6.95614,9.08504,0.176893,-6.96397,9.0886,0.0414958,-6.95455,9.03059,0.00567066,-6.65446,9.08003,-0.0432736,-6.65123,9.15168,0.00941147,5.18438,9.33327,-0.118125,5.12575,8.70139,-0.163683,5.18314,9.33758,-0.123425,5.17566,9.24884,0.0144121,5.19023,9.34052,-0.370095,5.16241,9.14532,0.0785516,5.15544,9.15377,-0.585062,5.12197,8.88143,-0.556729,5.11577,8.73383,-0.396992,5.16658,8.99469,0.125915,4.96195,8.88746,0.0839641,5.05168,8.9372,0.089335,4.84484,9.12614,0.0983246,4.74839,9.07548,0.0995836,5.05122,8.80182,0.00795356,5.12921,8.8496,0.0179448,4.8788,8.97176,0.125289,4.9755,9.02489,0.126,5.20347,8.75747,-0.140332,5.08139,8.74276,-0.161586,5.12153,8.76494,-0.276889,5.20806,8.7813,-0.266788,4.93634,9.11816,0.0534711,5.02463,9.0677,0.0533843,4.79041,8.71103,0.00336406,4.67958,8.73948,0.0381356,4.91458,8.89865,0.0746189,4.82046,8.94929,0.108884,4.58143,8.65504,-0.132492,4.69255,8.66007,-0.163249,4.57892,8.68936,-0.272867,4.46248,8.70572,-0.262766,4.73774,8.70036,-0.267523,4.62341,8.684,-0.277624,4.56657,8.66817,-0.161994,4.72161,8.67656,-0.14001,4.44983,8.93079,0.105817,4.35475,8.8783,0.103584,4.62407,8.76819,0.00123049,4.52556,8.71904,-0.00981038,4.14383,9.08811,0.102305,4.2378,9.13857,0.102392,3.94954,8.68348,-0.324097,4.08122,8.68114,-0.321689,4.1258,9.11276,0.00862684,4.00669,9.11154,-0.00412329,4.0055,8.68135,-0.0178862,4.01182,8.84621,0.0799824,4.13387,8.69223,-0.0204786,4.13251,8.85724,0.0855738,4.02374,9.06187,-0.00179189,4.14334,9.06121,0.00978235,4.15062,9.05238,0.10705,4.02995,9.05224,0.095015,4.13175,8.85109,0.109096,4.11912,8.55421,0.0212957,4.00929,8.83894,0.103657,3.99078,8.55207,0.0215061,4.01251,9.09922,0.0891886,4.13224,9.10043,0.10226,4.12719,8.74725,0.0423862,4.00106,8.73912,0.039468,3.99529,8.77643,0.101468,4.1361,8.77914,0.107301,3.9942,8.83225,0.121004,4.13404,8.83992,0.129256,4.13779,8.80176,0.0350937,4.13573,8.86507,0.0484681,3.99793,8.7952,0.0409981,3.99588,8.85315,0.053289,4.00366,8.82766,0.130469,4.00303,8.77232,0.109969,4.12786,8.77578,0.111634,4.12463,8.83644,0.133478,3.9727,8.67546,-0.224141,4.10291,8.68406,-0.222897,4.138,8.96827,0.125461,4.01712,8.96511,0.115469,4.14079,8.65495,0.0159688,4.01283,8.64914,0.0150202,4.77612,9.3821,-0.0926917,4.75855,8.63054,-0.154028,4.77727,9.38825,-0.100191,4.78407,9.29849,0.030418,4.80264,9.42487,-0.389886,4.80189,9.17781,0.093326,4.777,9.19761,-0.636387,4.7452,8.86051,-0.603645,4.73251,8.66426,-0.419306,4.82436,8.99846,0.165144,5.83428,8.97207,0.210165,5.87044,8.91745,0.179148,6.11058,8.87986,0.427523,6.0803,8.91848,0.458746,6.13885,9.04079,0.421326,6.19076,9.02507,0.376544,5.97012,9.09513,0.120468,5.90706,9.11051,0.175451,4.31388,9.41983,-0.0821137,4.29479,9.42366,-0.0850431,4.053,9.45149,-0.0393077,4.51752,9.42113,-0.0764027,5.48896,9.26898,-0.144837,4.28285,9.02507,0.167665,4.12632,8.69939,-0.47561,3.9466,8.99261,-0.767142,3.96015,9.16393,-0.784336,4.2753,9.19353,0.096643,4.23468,9.44284,-0.421464,4.28635,9.31796,0.0261537,4.31832,9.42269,-0.08255,4.16317,8.66413,-0.1855,3.18989,8.95704,-0.775878,3.21775,9.27612,-0.806659,3.83683,9.52798,-0.401437,4.04257,9.48404,-0.0423555,3.88774,8.96341,-0.927427,3.90187,9.17252,-0.947354,4.32831,9.48841,-0.0975369,4.26848,9.53579,-0.469736,3.44633,8.76999,-0.586819,3.59542,8.68127,-0.333874,4.16867,8.59464,-0.184963,4.12835,8.60512,-0.54379,5.41756,8.77255,-0.173586,4.52287,8.61957,-0.149262,4.1103,8.65488,-0.184405,4.29698,9.43486,-0.0936793,4.2701,9.31823,0.0263204,4.18523,9.46613,-0.415226,4.25441,9.19518,0.0933516,3.89807,9.17933,-0.805097,3.88445,8.98952,-0.787328,4.07289,8.68377,-0.474124,4.26385,9.02827,0.159754,4.05556,9.46871,-0.0561236,3.97584,9.32371,0.0760503,3.92246,9.2037,0.112105,3.88419,9.05465,0.114154,4.51977,9.42782,-0.0842175,4.5296,9.33252,0.0421958,4.55497,9.48053,-0.402838,4.55543,9.20096,0.107147,4.52473,9.22444,-0.670079,4.49237,8.84848,-0.63467,4.49917,8.65278,-0.437229,4.58243,9.00189,0.175833,5.48088,9.25372,-0.350867,5.49077,9.27046,-0.1476,5.48312,9.19252,-0.00186827,5.45778,9.10972,0.06429,5.44213,8.90174,-0.509476,5.41822,8.80357,-0.374549,5.44877,8.991,0.0892952,5.45815,9.10996,-0.533777,5.43307,8.75737,0.0837704,5.44659,9.22828,0.084529,5.46128,9.3403,-0.382712,5.46481,9.27633,-0.485869,5.45699,9.36515,-0.179924,5.45922,9.36857,-0.273719,5.45106,9.29373,0.0166645,5.45308,9.33178,-0.0574047,5.41441,8.63772,-0.10737,5.41711,8.70129,-0.018084,5.41852,8.61317,-0.332913,5.41622,8.6099,-0.241345,5.43122,8.71338,-0.512657,5.42306,8.65293,-0.43674,5.45879,8.83716,-0.616833,5.4709,8.99291,-0.630313,5.48012,9.12855,-0.650065,5.44228,9.12389,0.18374,5.433,8.99938,0.207934,5.43097,8.86173,0.188118,5.69361,8.83742,0.0731222,5.24942,8.6952,0.129077,5.28675,9.28003,0.128825,5.30749,9.38342,-0.403481,5.30589,9.31197,-0.526775,5.70695,9.21091,-0.375238,5.71945,9.15986,-0.471562,5.6995,9.22653,-0.167228,5.70179,9.22861,-0.266146,5.30429,9.40919,-0.182022,5.30681,9.41307,-0.287261,5.29336,9.33399,0.0337695,5.29916,9.37489,-0.0536016,5.70098,9.17367,0.0233303,5.69784,9.20658,-0.0476212,5.68438,8.78251,-0.111329,5.68904,8.80866,-0.0116793,5.25083,8.57302,-0.103444,5.26001,8.5996,0.00608579,5.25927,8.56513,-0.349503,5.25644,8.55962,-0.24449,5.68556,8.77308,-0.328677,5.68329,8.77075,-0.228171,5.70799,8.82714,-0.494826,5.69244,8.78439,-0.42252,5.27615,8.64836,-0.553225,5.26473,8.60339,-0.460305,5.74806,9.05004,-0.571645,5.74167,8.96591,-0.576399,5.73365,8.90154,-0.564046,5.2848,9.15833,-0.706438,5.2878,9.00444,-0.722791,5.28689,8.80646,-0.699761,5.69968,8.98141,0.176339,5.70327,8.92188,0.153211,5.25597,8.85568,0.251039,5.26083,9.01477,0.272503,5.27639,9.16518,0.24916,5.70629,9.12709,0.0820848,5.70184,9.04165,0.148763,6.48896,9.12622,-0.592101,6.64043,9.1809,-0.621268,6.33673,9.22052,-0.55813,6.34853,9.26658,-0.453883,6.63041,9.12722,-0.505571,6.49275,9.14564,-0.482916,6.35277,9.31195,-0.0487547,6.63356,9.11779,-0.0308505,6.50461,9.17984,-0.0473252,6.32648,9.17228,-0.65648,6.36246,9.33116,-0.261418,6.31516,9.22295,0.153219,6.35839,9.31298,-0.345331,6.36073,9.33403,-0.163759,6.34007,9.27636,0.0489536,6.62578,9.1041,-0.252648,6.62412,9.10888,0.133444,6.63356,9.14775,-0.749273,6.64477,9.19584,-0.385183,6.6514,9.20819,-0.12997,6.6446,9.18169,0.0521739,6.49925,9.1665,0.0518928,6.50557,9.19979,-0.359899,6.50763,9.20605,-0.262618,6.51269,9.22267,-0.154977,6.48137,9.11911,0.166492,6.48319,9.09032,-0.6893,5.84986,9.09336,-0.585462,5.83738,9.25919,-0.0601054,5.84874,9.19711,-0.455673,5.84253,9.26864,-0.259806,5.80239,9.16321,0.0862437,5.84496,9.25832,-0.358657,5.84047,9.26737,-0.166335,5.82989,9.22218,0.0137458,5.5609,9.28883,0.00118502,5.56109,9.33588,-0.172021,5.56703,9.32181,-0.365512,5.57109,9.23141,0.0437218,5.61245,9.15998,-0.551916,5.57795,9.27546,-0.453218,5.55878,9.31781,-0.0622446,5.56333,9.33779,-0.26505,6.06468,9.07723,-0.614298,6.07673,9.23034,-0.0595383,6.07825,9.15599,-0.466697,6.0821,9.24269,-0.263754,6.04343,9.13452,0.145215,6.08053,9.21623,-0.365579,6.08027,9.24377,-0.170664,6.07189,9.1992,0.0299119,6.21687,9.13013,-0.645231,6.21245,9.13163,0.165464,6.22968,9.21416,-0.0730857,6.22962,9.18828,-0.496486,6.23688,9.23097,-0.283853,6.23392,9.21843,-0.394996,6.23353,9.23342,-0.193142,6.2294,9.19226,0.0248065,6.4234,9.15979,0.0205913,6.42622,9.18169,-0.203537,6.42514,9.15376,-0.414978,6.40623,9.10445,-0.618689,6.41333,9.1363,0.134756,6.41958,9.13092,-0.517999,6.43014,9.17903,-0.299259,6.42182,9.16755,-0.084339,5.98327,9.28313,0.0334181,5.99208,9.33057,-0.175654,5.99613,9.3004,-0.377222,5.95406,9.21642,0.151097,5.99511,9.32909,-0.270596,5.99591,9.23692,-0.481964,5.98837,9.31649,-0.0600005,5.98252,9.15599,-0.633209,6.23036,8.84339,0.702314,6.23848,8.79971,0.647172,6.46022,8.66876,0.833581,6.45621,8.69892,0.881539,6.54115,8.83614,0.862266,6.56871,8.8352,0.802928,6.35373,8.96296,0.608152,6.31814,8.96666,0.683284,6.12036,9.03769,0.448388,6.17413,9.02654,0.394262,6.38189,8.9165,0.608654,6.33798,8.92856,0.653001,6.27875,8.81827,0.674316,6.30263,8.78638,0.640271,6.07508,8.86707,0.429772,6.04685,8.91382,0.465872,6.87144,9.04686,-0.770505,6.84528,8.98455,-0.778178,7.08411,8.92141,-0.806119,7.10138,8.96275,-0.803396,7.12893,8.97401,-0.707226,7.1181,8.94225,-0.693429,6.88489,9.00503,-0.633475,6.89424,9.05495,-0.661461,6.69433,9.06332,-0.611286,6.69411,9.01033,-0.587747,6.93471,8.99557,-0.649537,6.93966,9.02981,-0.660451,6.91443,9.02209,-0.757603,6.90483,8.97871,-0.764045,6.6586,8.99556,-0.734199,6.67319,9.06065,-0.72093,6.4727,9.0959,-0.678004,6.45538,9.03162,-0.691892,6.70086,9.00418,-0.720022,6.7123,9.04704,-0.713167,6.73708,9.05292,-0.615771,6.73055,9.01884,-0.605163,6.49035,9.04371,-0.545066,6.49309,9.09682,-0.568187,6.58764,9.12874,-0.437678,6.57548,9.07698,-0.4539,6.83939,9.06351,-0.487527,6.84961,9.10911,-0.475478,6.86545,9.10609,-0.373587,6.85766,9.06907,-0.366763,6.59259,9.07539,-0.32148,6.59625,9.1206,-0.335906,6.84766,9.15015,-0.378299,6.84614,9.09258,-0.355641,7.18289,9.04067,-0.419706,7.18814,9.07585,-0.430185,7.17304,9.06942,-0.530414,7.16561,9.02444,-0.53954,6.82824,9.07986,-0.503186,6.83941,9.14955,-0.488679,7.15897,9.09797,-0.550514,7.13843,9.03481,-0.564567,7.43037,8.98153,-0.581676,7.44448,9.02464,-0.574319,7.46061,9.03121,-0.47252,7.44983,8.99766,-0.461906,7.16048,9.04842,-0.400528,7.16963,9.1008,-0.424944,6.63085,9.14437,-0.20298,6.61605,9.08799,-0.222029,6.93501,9.0629,-0.239908,6.94649,9.10866,-0.227564,6.95706,9.10537,-0.124827,6.94733,9.0683,-0.118416,6.62756,9.08587,-0.0741038,6.63444,9.1355,-0.0904555,6.94696,9.12941,-0.117566,6.94056,9.06854,-0.0993823,7.24824,9.03529,-0.150904,7.25682,9.07293,-0.157619,7.2462,9.07619,-0.259275,7.23579,9.02993,-0.272045,6.92751,9.06972,-0.264377,6.94262,9.13925,-0.242989,7.24042,9.11345,-0.270523,7.22421,9.04594,-0.291328,7.56982,8.98361,-0.301069,7.58093,9.02638,-0.288501,7.59065,9.02379,-0.186574,7.58137,8.9889,-0.179595,7.23587,9.04567,-0.125936,7.24357,9.10468,-0.144407,7.19333,9.04406,0.172986,7.17962,8.98997,0.190383,7.48824,8.93417,0.189716,7.5007,8.96845,0.184403,7.50694,8.9699,0.0805496,7.49486,8.9263,0.0608714,7.19326,8.98827,0.0181151,7.21005,9.05114,0.0472638,6.94464,9.07765,0.0384208,6.93296,9.01099,0.00319681,7.24,8.98463,0.0436894,7.24916,9.03099,0.069178,7.24383,9.0292,0.173883,7.23544,8.99327,0.179229,6.92247,9.0127,0.182195,6.92972,9.06891,0.164813,6.6289,9.11644,0.152591,6.65188,9.06252,0.167361,6.94096,9.02483,0.164818,6.95203,9.06089,0.159576,6.9573,9.0622,0.0540865,6.94833,9.01425,0.0300464,6.64824,9.06369,-0.0188979,6.64458,9.12511,0.0216588,-5.18438,9.33326,-0.118125,-5.12575,8.70139,-0.163683,-5.18314,9.33758,-0.123425,-5.17566,9.24884,0.0144121,-5.19023,9.34052,-0.370095,-5.16241,9.14532,0.0785517,-5.15544,9.15377,-0.585062,-5.12197,8.88143,-0.556729,-5.11577,8.73383,-0.396992,-5.16658,8.99468,0.125915,-4.96195,8.88746,0.0839641,-5.05167,8.9372,0.089335,-4.84484,9.12614,0.0983247,-4.74839,9.07548,0.0995836,-5.05122,8.80182,0.0079536,-5.1292,8.8496,0.0179449,-4.8788,8.97176,0.125289,-4.9755,9.02489,0.126,-5.20347,8.75746,-0.140332,-5.08139,8.74276,-0.161586,-5.12153,8.76493,-0.276889,-5.20806,8.78129,-0.266788,-4.93634,9.11816,0.0534712,-5.02463,9.0677,0.0533843,-4.79041,8.71103,0.00336409,-4.67958,8.73948,0.0381356,-4.91458,8.89865,0.0746189,-4.82046,8.94929,0.108884,-4.58143,8.65504,-0.132492,-4.69255,8.66007,-0.163249,-4.57892,8.68936,-0.272867,-4.46248,8.70572,-0.262766,-4.73774,8.70036,-0.267523,-4.62341,8.684,-0.277624,-4.56657,8.66817,-0.161994,-4.72161,8.67656,-0.14001,-4.44983,8.93079,0.105818,-4.35475,8.8783,0.103584,-4.62407,8.76819,0.00123052,-4.52556,8.71904,-0.00981034,-4.14383,9.08811,0.102305,-4.2378,9.13857,0.102392,-3.94954,8.68348,-0.324097,-4.08122,8.68114,-0.321689,-4.1258,9.11276,0.00862687,-4.00669,9.11154,-0.00412326,-4.0055,8.68135,-0.0178861,-4.01182,8.84621,0.0799824,-4.13387,8.69223,-0.0204786,-4.13251,8.85724,0.0855739,-4.02374,9.06187,-0.00179186,-4.14334,9.06121,0.00978238,-4.15062,9.05238,0.10705,-4.02995,9.05224,0.0950151,-4.13175,8.85109,0.109096,-4.11912,8.55421,0.0212958,-4.00929,8.83894,0.103657,-3.99078,8.55207,0.0215061,-4.01251,9.09922,0.0891887,-4.13224,9.10043,0.10226,-4.12719,8.74725,0.0423862,-4.00106,8.73912,0.039468,-3.99529,8.77643,0.101468,-4.1361,8.77914,0.107301,-3.9942,8.83225,0.121004,-4.13404,8.83992,0.129256,-4.13779,8.80176,0.0350937,-4.13573,8.86507,0.0484681,-3.99793,8.7952,0.0409981,-3.99588,8.85315,0.053289,-4.00366,8.82766,0.130469,-4.00303,8.77232,0.109969,-4.12786,8.77578,0.111634,-4.12463,8.83644,0.133478,-3.9727,8.67546,-0.224141,-4.10291,8.68406,-0.222897,-4.138,8.96827,0.125461,-4.01712,8.96511,0.115469,-4.14079,8.65495,0.0159688,-4.01283,8.64914,0.0150202,-4.77612,9.38209,-0.0926916,-4.75855,8.63054,-0.154028,-4.77727,9.38825,-0.100191,-4.78407,9.29849,0.030418,-4.80264,9.42487,-0.389886,-4.80189,9.1778,0.093326,-4.777,9.19761,-0.636387,-4.7452,8.86051,-0.603645,-4.73251,8.66426,-0.419306,-4.82436,8.99846,0.165144,-5.83428,8.97207,0.210165,-5.87044,8.91745,0.179148,-6.11059,8.87986,0.427523,-6.0803,8.91848,0.458746,-6.13885,9.04079,0.421326,-6.19076,9.02507,0.376544,-5.97012,9.09513,0.120468,-5.90706,9.11051,0.175451,-4.31388,9.41983,-0.0821136,-4.29479,9.42366,-0.085043,-4.053,9.45149,-0.0393077,-4.51752,9.42113,-0.0764027,-5.48896,9.26898,-0.144837,-4.28285,9.02507,0.167665,-4.12632,8.69939,-0.47561,-3.9466,8.99261,-0.767142,-3.96015,9.16393,-0.784336,-4.2753,9.19353,0.096643,-4.23468,9.44284,-0.421464,-4.28635,9.31796,0.0261538,-4.31832,9.42269,-0.0825499,-4.16317,8.66413,-0.1855,-3.18989,8.95704,-0.775878,-3.21775,9.27612,-0.806659,-3.83683,9.52798,-0.401437,-4.04257,9.48404,-0.0423555,-3.88774,8.96341,-0.927427,-3.90187,9.17252,-0.947354,-4.32831,9.48841,-0.0975369,-4.26848,9.53579,-0.469736,-3.44633,8.76999,-0.586819,-3.59542,8.68127,-0.333874,-4.16867,8.59464,-0.184963,-4.12835,8.60512,-0.54379,-5.41756,8.77255,-0.173586,-4.52287,8.61957,-0.149262,-4.1103,8.65488,-0.184405,-4.29698,9.43486,-0.0936792,-4.2701,9.31823,0.0263204,-4.18523,9.46613,-0.415226,-4.25441,9.19518,0.0933517,-3.89807,9.17933,-0.805097,-3.88445,8.98952,-0.787328,-4.07289,8.68377,-0.474124,-4.26385,9.02827,0.159754,-4.05556,9.46871,-0.0561235,-3.97584,9.32371,0.0760503,-3.92246,9.2037,0.112105,-3.88419,9.05465,0.114154,-4.51977,9.42782,-0.0842175,-4.5296,9.33252,0.0421958,-4.55497,9.48053,-0.402838,-4.55543,9.20096,0.107147,-4.52473,9.22444,-0.670079,-4.49237,8.84848,-0.63467,-4.49917,8.65278,-0.437229,-4.58243,9.00189,0.175833,-5.48088,9.25372,-0.350867,-5.49077,9.27046,-0.1476,-5.48312,9.19252,-0.00186821,-5.45778,9.10972,0.06429,-5.44213,8.90174,-0.509476,-5.41822,8.80357,-0.374549,-5.44877,8.991,0.0892953,-5.45815,9.10996,-0.533777,-5.43307,8.75737,0.0837705,-5.44659,9.22828,0.084529,-5.46128,9.3403,-0.382712,-5.46481,9.27633,-0.485869,-5.45699,9.36515,-0.179924,-5.45922,9.36857,-0.273718,-5.45106,9.29373,0.0166646,-5.45308,9.33178,-0.0574047,-5.41441,8.63772,-0.10737,-5.41711,8.70129,-0.018084,-5.41852,8.61317,-0.332913,-5.41622,8.6099,-0.241345,-5.43122,8.71338,-0.512657,-5.42306,8.65293,-0.43674,-5.45879,8.83716,-0.616833,-5.4709,8.99291,-0.630313,-5.48012,9.12855,-0.650065,-5.44228,9.12389,0.18374,-5.433,8.99938,0.207934,-5.43097,8.86173,0.188118,-5.69361,8.83742,0.0731223,-5.24942,8.69521,0.129077,-5.28675,9.28003,0.128825,-5.30749,9.38342,-0.403481,-5.30589,9.31197,-0.526774,-5.70695,9.21091,-0.375238,-5.71945,9.15986,-0.471562,-5.6995,9.22653,-0.167228,-5.70179,9.22861,-0.266146,-5.30429,9.40919,-0.182022,-5.30681,9.41307,-0.287261,-5.29336,9.334,0.0337696,-5.29916,9.3749,-0.0536015,-5.70098,9.17367,0.0233303,-5.69784,9.20658,-0.0476211,-5.68438,8.78251,-0.111329,-5.68904,8.80866,-0.0116792,-5.25083,8.57302,-0.103444,-5.26001,8.5996,0.00608584,-5.25928,8.56513,-0.349503,-5.25644,8.55962,-0.24449,-5.68556,8.77308,-0.328677,-5.68329,8.77075,-0.228171,-5.70799,8.82714,-0.494826,-5.69244,8.78439,-0.42252,-5.27615,8.64836,-0.553225,-5.26473,8.60339,-0.460305,-5.74806,9.05004,-0.571645,-5.74167,8.96591,-0.576398,-5.73365,8.90154,-0.564046,-5.2848,9.15833,-0.706438,-5.2878,9.00444,-0.722791,-5.28689,8.80647,-0.699761,-5.69968,8.98142,0.176339,-5.70327,8.92188,0.153211,-5.25597,8.85568,0.251039,-5.26083,9.01477,0.272503,-5.27639,9.16518,0.24916,-5.70629,9.12709,0.0820849,-5.70184,9.04165,0.148763,-6.48896,9.12623,-0.592101,-6.64043,9.1809,-0.621268,-6.33673,9.22052,-0.558131,-6.34853,9.26658,-0.453883,-6.63041,9.12722,-0.505571,-6.49275,9.14564,-0.482916,-6.35277,9.31195,-0.0487547,-6.63356,9.1178,-0.0308505,-6.50461,9.17984,-0.0473252,-6.32648,9.17228,-0.65648,-6.36246,9.33117,-0.261418,-6.31516,9.22295,0.153219,-6.35839,9.31298,-0.345331,-6.36073,9.33403,-0.163759,-6.34007,9.27637,0.0489536,-6.62578,9.1041,-0.252648,-6.62412,9.10888,0.133444,-6.63356,9.14775,-0.749273,-6.64477,9.19584,-0.385183,-6.6514,9.20819,-0.12997,-6.6446,9.18169,0.052174,-6.49925,9.1665,0.0518928,-6.50557,9.19979,-0.359899,-6.50763,9.20605,-0.262618,-6.51269,9.22267,-0.154977,-6.48137,9.11911,0.166492,-6.48319,9.09032,-0.6893,-5.84986,9.09336,-0.585462,-5.83738,9.25919,-0.0601055,-5.84874,9.19711,-0.455673,-5.84253,9.26864,-0.259806,-5.80239,9.16321,0.0862436,-5.84496,9.25832,-0.358658,-5.84047,9.26737,-0.166335,-5.82988,9.22218,0.0137458,-5.5609,9.28883,0.00118495,-5.56109,9.33588,-0.172021,-5.56703,9.32181,-0.365512,-5.57109,9.23141,0.0437218,-5.61245,9.15998,-0.551916,-5.57795,9.27546,-0.453218,-5.55878,9.31781,-0.0622446,-5.56333,9.33779,-0.26505,-6.06468,9.07723,-0.614298,-6.07673,9.23034,-0.0595383,-6.07825,9.15599,-0.466697,-6.0821,9.24269,-0.263754,-6.04343,9.13452,0.145215,-6.08053,9.21623,-0.365579,-6.08027,9.24377,-0.170665,-6.07189,9.1992,0.0299118,-6.21687,9.13013,-0.645231,-6.21245,9.13163,0.165464,-6.22968,9.21416,-0.0730857,-6.22962,9.18828,-0.496486,-6.23688,9.23097,-0.283853,-6.23392,9.21843,-0.394996,-6.23353,9.23342,-0.193142,-6.2294,9.19226,0.0248065,-6.4234,9.15979,0.0205913,-6.42622,9.18169,-0.203537,-6.42514,9.15376,-0.414978,-6.40623,9.10445,-0.618689,-6.41333,9.1363,0.134756,-6.41958,9.13093,-0.517999,-6.43014,9.17904,-0.299259,-6.42182,9.16755,-0.084339,-5.98327,9.28313,0.0334181,-5.99208,9.33057,-0.175654,-5.99613,9.3004,-0.377222,-5.95406,9.21643,0.151097,-5.9951,9.32909,-0.270596,-5.99591,9.23693,-0.481964,-5.98837,9.3165,-0.0600006,-5.98252,9.15599,-0.633209,-6.23036,8.84339,0.702313,-6.23848,8.79971,0.647172,-6.46022,8.66876,0.833581,-6.45621,8.69892,0.881539,-6.54115,8.83614,0.862265,-6.56871,8.8352,0.802927,-6.35373,8.96296,0.608152,-6.31814,8.96666,0.683284,-6.12036,9.03768,0.448389,-6.17413,9.02654,0.394263,-6.38189,8.91649,0.608654,-6.33798,8.92855,0.653001,-6.27875,8.81827,0.674316,-6.30263,8.78638,0.640271,-6.07508,8.86707,0.429772,-6.04685,8.91382,0.465872,-6.87144,9.04686,-0.770505,-6.84528,8.98455,-0.778178,-7.08411,8.92141,-0.806119,-7.10138,8.96275,-0.803396,-7.12893,8.97401,-0.707226,-7.1181,8.94225,-0.693429,-6.88489,9.00503,-0.633475,-6.89424,9.05495,-0.661461,-6.69433,9.06332,-0.611286,-6.69411,9.01033,-0.587746,-6.93471,8.99557,-0.649536,-6.93966,9.02981,-0.660451,-6.91443,9.02209,-0.757603,-6.90483,8.97871,-0.764045,-6.6586,8.99556,-0.734199,-6.67319,9.06065,-0.72093,-6.47271,9.09591,-0.678004,-6.45538,9.03162,-0.691892,-6.70086,9.00418,-0.720022,-6.7123,9.04704,-0.713167,-6.73708,9.05292,-0.615771,-6.73055,9.01885,-0.605163,-6.49035,9.04371,-0.545066,-6.49309,9.09682,-0.568187,-6.58764,9.12874,-0.437678,-6.57548,9.07698,-0.4539,-6.83939,9.06351,-0.487527,-6.84961,9.10911,-0.475478,-6.86545,9.10609,-0.373587,-6.85766,9.06907,-0.366763,-6.59259,9.07539,-0.32148,-6.59625,9.1206,-0.335906,-6.84766,9.15015,-0.378298,-6.84614,9.09258,-0.355641,-7.18289,9.04067,-0.419706,-7.18814,9.07585,-0.430185,-7.17304,9.06943,-0.530414,-7.16561,9.02444,-0.53954,-6.82824,9.07987,-0.503186,-6.83941,9.14955,-0.488679,-7.15897,9.09797,-0.550514,-7.13843,9.03481,-0.564567,-7.43037,8.98153,-0.581676,-7.44448,9.02464,-0.574319,-7.46061,9.03121,-0.47252,-7.44983,8.99766,-0.461906,-7.16048,9.04842,-0.400528,-7.16963,9.1008,-0.424944,-6.63085,9.14437,-0.20298,-6.61605,9.08799,-0.222029,-6.93501,9.06291,-0.239908,-6.94649,9.10866,-0.227564,-6.95706,9.10537,-0.124827,-6.94733,9.0683,-0.118416,-6.62756,9.08587,-0.0741037,-6.63444,9.1355,-0.0904554,-6.94697,9.1294,-0.117566,-6.94056,9.06854,-0.0993822,-7.24824,9.03529,-0.150904,-7.25682,9.07293,-0.157619,-7.2462,9.07619,-0.259275,-7.23579,9.02993,-0.272045,-6.92751,9.06972,-0.264377,-6.94262,9.13925,-0.242989,-7.24042,9.11345,-0.270523,-7.22421,9.04594,-0.291328,-7.56982,8.98361,-0.301069,-7.58093,9.02638,-0.288501,-7.59065,9.02379,-0.186574,-7.58137,8.9889,-0.179595,-7.23587,9.04567,-0.125936,-7.24357,9.10468,-0.144406,-7.19333,9.04406,0.172986,-7.17962,8.98997,0.190383,-7.48824,8.93417,0.189716,-7.5007,8.96845,0.184403,-7.50694,8.9699,0.0805496,-7.49486,8.9263,0.0608715,-7.19326,8.98827,0.0181152,-7.21005,9.05114,0.0472639,-6.94464,9.07765,0.0384208,-6.93297,9.01099,0.00319687,-7.24,8.98463,0.0436895,-7.24916,9.03099,0.069178,-7.24383,9.0292,0.173883,-7.23544,8.99327,0.179229,-6.92247,9.0127,0.182195,-6.92972,9.06891,0.164813,-6.6289,9.11644,0.152591,-6.65188,9.06252,0.167361,-6.94096,9.02483,0.164818,-6.95203,9.06089,0.159576,-6.9573,9.0622,0.0540865,-6.94833,9.01424,0.0300464,-6.64824,9.06369,-0.0188978,-6.64458,9.12511,0.0216589,-1.24805,8.68975,2.96493,-1.24805,8.68975,3.26056,-1.24805,8.68975,3.11274,-1.24805,8.37057,2.96493,-1.24805,8.37057,3.26056,-1.24805,8.37057,3.11274,-1.1133,8.68975,3.11274,-1.1133,8.68975,2.95743,-1.1133,8.68975,3.26806,-1.1133,8.37057,3.11274,-1.1133,8.37057,2.95743,-1.1133,8.37057,3.26806,-0.988544,8.68975,3.11274,-0.988543,8.68975,2.95049,-0.988543,8.68975,3.275,-0.988543,8.37057,3.11274,-0.988543,8.37057,2.95049,-0.988543,8.37057,3.275,-0.988543,8.39135,3.11274,-0.987713,8.385,2.96542,-0.987713,8.385,3.26007,-0.988544,8.66897,3.11274,-0.987713,8.67532,2.96542,-0.987713,8.67532,3.26007,-1.1133,8.39135,3.11274,-1.1125,8.38552,2.97184,-1.1125,8.38552,3.25365,-1.1133,8.66897,3.11274,-1.1125,8.6748,2.97184,-1.1125,8.6748,3.25365,-1.23083,8.68975,3.11274,-1.23083,8.68975,2.96397,-1.23083,8.68975,3.26152,-1.23083,8.37057,3.11274,-1.23083,8.37057,2.96397,-1.23083,8.37057,3.26152,-0.995469,8.39135,3.11274,-0.99464,8.38503,2.96578,-0.994639,8.38503,3.25971,-0.995469,8.66897,3.11274,-0.99464,8.6753,2.96578,-0.994639,8.6753,3.25971,-1.10316,8.39135,3.11274,-1.10235,8.38548,2.97132,-1.10235,8.38548,3.25417,-1.10316,8.66897,3.11274,-1.10235,8.67485,2.97132,-1.10235,8.67485,3.25417,-1.1239,8.68975,3.11274,-1.1239,8.68975,2.95802,-1.1239,8.68975,3.26747,-1.1239,8.37057,3.11274,-1.1239,8.37057,2.95802,-1.1239,8.37057,3.26747,-0.980477,8.68975,3.11274,-0.980477,8.68975,2.95004,-0.980477,8.68975,3.27545,-0.980477,8.37057,3.11274,-0.980477,8.37057,2.95004,-0.980477,8.37057,3.27545,-0.181385,8.68975,3.11274,-0.181385,8.68975,2.92774,-0.181385,8.68975,3.29775,-0.275705,8.37057,3.11274,-0.181385,8.37057,2.92774,-0.181385,8.37057,3.29775,-1.24805,8.68975,3.02581,-1.24805,8.68975,3.19967,-1.24805,8.37057,3.02581,-1.24805,8.37057,3.19967,-1.1133,8.68975,3.0214,-1.1133,8.68975,3.20408,-1.1133,8.37057,3.0214,-1.1133,8.37057,3.20408,-0.988544,8.68975,3.01732,-0.988543,8.68975,3.20817,-0.988543,8.37057,3.01732,-0.988543,8.37057,3.20817,-0.988055,8.38761,3.0261,-0.988055,8.38761,3.19939,-0.988055,8.67271,3.0261,-0.988055,8.67271,3.19939,-1.11283,8.38792,3.02988,-1.11283,8.38792,3.19561,-1.11283,8.6724,3.02988,-1.11283,8.6724,3.19561,-1.23083,8.68975,3.02525,-1.23083,8.68975,3.20024,-1.23083,8.37057,3.02525,-1.23083,8.37057,3.20024,-0.994981,8.38763,3.02631,-0.994981,8.38763,3.19918,-0.994981,8.67269,3.02631,-0.994981,8.67269,3.19918,-1.10268,8.3879,3.02957,-1.10268,8.3879,3.19592,-1.10268,8.67243,3.02957,-1.10268,8.67243,3.19592,-1.1239,8.68975,3.02175,-1.1239,8.68975,3.20374,-1.1239,8.37057,3.02175,-1.1239,8.37057,3.20374,-0.980477,8.68975,3.01706,-0.980477,8.68975,3.20843,-0.980477,8.37057,3.01706,-0.980477,8.37057,3.20843,-0.181385,8.68975,3.00394,-0.181385,8.68975,3.22155,-0.275705,8.37057,3.00394,-0.275705,8.37057,3.22155,-0.185107,11.39,3.00394,-0.185107,11.39,3.22155,-0.185107,11.39,3.11274,-0.181432,8.70603,3.00394,-0.181432,8.70603,3.22155,-0.181432,8.70603,3.11274,-0.193048,8.68975,3.11274,-0.193048,8.68975,2.92827,-0.193048,8.68975,3.29722,-0.285146,8.37057,3.11274,-0.193048,8.37057,2.92827,-0.193048,8.37057,3.29722,-0.193048,8.68975,3.00425,-0.193048,8.68975,3.22124,-0.285146,8.37057,3.00425,-0.285146,8.37057,3.22124,-0.184617,11.138,3.00394,-0.184617,11.138,3.22155,-0.184617,11.138,3.11274,-0.348447,11.1377,2.84791,-0.348447,11.1377,3.37757,-0.348447,11.1377,3.11274,-0.348937,11.3896,2.84791,-0.348937,11.3896,3.37757,-0.348937,11.3896,3.11274,-0.184543,11.1,3.00394,-0.184543,11.1,3.22155,-0.184543,11.1,3.11274,-0.348867,11.3538,3.11274,-0.348868,11.3538,2.84791,-0.348867,11.3538,3.37757,-0.348541,11.1859,3.11274,-0.348541,11.1859,2.84791,-0.348541,11.1859,3.37757,-0.389264,8.45383,3.11274,-0.0735999,0.0229048,3.11275,-0.389264,7.65073,3.11274,-0.389264,6.04454,3.11274,-0.389264,5.24145,3.11274,-0.389264,3.63526,3.11274,-0.389264,2.83216,3.11274,-0.389258,1.22595,3.11275,-0.210429,0.184926,3.11275,-0.309314,0.500653,3.11275,-0.368924,0.877873,3.11275,-0.0476012,0.0198015,3.1113,-0.0476012,0.0198015,3.11419,-0.0225872,0.0114912,3.11139,-0.0225872,0.0114912,3.1141,-0.128252,8.45383,3.07353,-0.258758,7.65073,3.09831,-0.128252,7.65073,3.07353,-0.258754,1.22595,3.09831,-0.258754,1.22595,3.12718,-0.12825,1.22595,3.07353,-0.12825,1.22595,3.15196,-0.245198,0.877873,3.09601,-0.245198,0.877873,3.12948,-0.121472,0.877873,3.07209,-0.121472,0.877873,3.1534,-0.205459,0.500654,3.09072,-0.205459,0.500654,3.13477,-0.101603,0.500653,3.07228,-0.101603,0.500653,3.15321,-0.169913,0.184926,3.10116,-0.169913,0.184926,3.12433,-0.0889168,0.184926,3.09337,-0.0889168,0.184926,3.13212,-0.00236305,4.18559e-06,3.11129,-0.00236305,4.18594e-06,3.1142,-0.022,8.45383,3.17687,-0.0220001,7.65073,3.04862,-0.022,6.04454,3.04862,-0.022,6.04454,3.17687,-0.022,3.63526,3.04862,-0.022,3.63526,3.17687,-0.0219996,1.22595,3.04862,-0.0219996,1.22595,3.17687,-0.02074,0.877873,3.04835,-0.0207399,0.877873,3.17714,-0.0170474,0.500653,3.05468,-0.0170473,0.500653,3.17081,-0.0155793,0.184926,3.08645,-0.0155793,0.184926,3.13904,-0.069979,0.0226377,3.11177,-0.069979,0.0226377,3.11372,-0.371277,8.45383,3.11473,-0.371277,7.65073,3.11076,-0.371277,7.65073,3.11473,-0.371277,6.04454,3.11076,-0.371277,6.04454,3.11473,-0.371277,5.24145,3.11473,-0.371277,3.63526,3.11076,-0.371277,3.63526,3.11473,-0.371277,2.83216,3.11473,-0.371271,1.22595,3.11076,-0.371271,1.22595,3.11473,-0.351872,0.877873,3.11044,-0.351872,0.877873,3.11505,-0.295001,0.500653,3.10439,-0.295001,0.500653,3.1211,-0.208455,0.184926,3.10953,-0.208455,0.184926,3.11596,-0.00236305,4.18576e-06,3.11275,-0.0225872,0.0104317,3.11275,-0.0476012,0.018742,3.11275,-0.0669816,0.0212606,3.11275,-0.123247,0.0816931,3.11275,-0.0466542,0.0744203,3.10485,-0.0466542,0.0744203,3.12064,-0.0919809,0.0797151,3.10762,-0.0919809,0.0797151,3.11787,-0.00715842,0.0671018,3.10228,-0.00715841,0.0671018,3.12321,-0.120223,0.0815224,3.11096,-0.120223,0.0815224,3.11453,-0.258758,8.45383,3.09831,-0.258758,8.45383,3.12717,-0.258758,7.65073,3.12717,-0.128252,8.45383,3.15195,-0.128252,7.65073,3.15195,-0.0220001,8.45383,3.04862,-0.022,7.65074,3.17687,-0.371277,8.45383,3.11075,-0.389264,6.84764,3.11274,-0.128252,6.84764,3.07353,-0.128252,6.84764,3.15195,-0.258758,6.84764,3.09831,-0.258758,6.84764,3.12717,-0.0220001,6.84764,3.04862,-0.022,6.84764,3.17687,-0.371277,6.84764,3.11076,-0.371277,6.84764,3.11473,-0.128252,6.04454,3.07353,-0.128252,5.24145,3.07353,-0.128252,6.04454,3.15195,-0.128252,5.24145,3.15195,-0.258758,6.04454,3.09831,-0.258758,5.24145,3.09831,-0.258758,6.04454,3.12717,-0.258758,5.24145,3.12717,-0.022,5.24145,3.04862,-0.022,5.24145,3.17687,-0.371277,5.24145,3.11076,-0.389264,4.43835,3.11274,-0.128252,4.43835,3.07353,-0.128252,4.43835,3.15196,-0.258758,4.43835,3.09831,-0.258758,4.43835,3.12717,-0.022,4.43835,3.04862,-0.022,4.43835,3.17687,-0.371277,4.43835,3.11076,-0.371277,4.43835,3.11473,-0.128252,3.63526,3.07353,-0.128252,2.83216,3.07353,-0.128252,3.63526,3.15196,-0.128252,2.83216,3.15196,-0.258758,3.63526,3.09831,-0.258758,2.83216,3.09831,-0.258758,3.63526,3.12717,-0.258758,2.83216,3.12718,-0.022,2.83216,3.04862,-0.0219999,2.83216,3.17687,-0.371277,2.83216,3.11076,-0.389262,2.02906,3.11275,-0.128252,2.02906,3.07353,-0.128252,2.02906,3.15196,-0.258757,2.02906,3.09831,-0.258757,2.02906,3.12718,-0.0219998,2.02906,3.04862,-0.0219998,2.02906,3.17687,-0.371275,2.02906,3.11076,-0.371275,2.02906,3.11473,-0.106945,9.08023,3.00394,-0.107723,9.903,3.00394,-0.10845,10.7372,3.00394,-0.106945,9.08023,3.22155,-0.107723,9.903,3.22155,-0.10845,10.7372,3.22155,-0.106945,9.08023,3.11274,-0.107723,9.903,3.11274,-0.10845,10.7372,3.11274,-0.181529,8.7804,3.00394,-0.181529,8.7804,3.22155,-0.181529,8.7804,3.11274,-0.184462,11.0377,3.00394,-0.184462,11.0377,3.22155,-0.184462,11.0377,3.11274,2.79574e-06,8.68975,2.9124,2.92631e-06,8.68975,3.31309,1.24806,8.68975,2.96493,1.24806,8.68975,3.26056,1.24806,8.68975,3.11274,2.86102e-06,8.37057,3.11274,2.79574e-06,8.37057,2.9124,2.92631e-06,8.37057,3.31309,1.24806,8.37057,2.96493,1.24806,8.37057,3.26056,1.24806,8.37057,3.11274,1.11331,8.68975,3.11274,1.11331,8.68975,2.95743,1.11331,8.68975,3.26806,1.11331,8.37057,3.11274,1.11331,8.37057,2.95743,1.11331,8.37057,3.26806,0.988551,8.68975,3.11274,0.988551,8.68975,2.95049,0.988551,8.68975,3.275,0.988551,8.37057,3.11274,0.988551,8.37057,2.95049,0.988551,8.37057,3.275,0.988551,8.39135,3.11274,0.98772,8.385,2.96542,0.98772,8.385,3.26007,0.988551,8.66897,3.11274,0.98772,8.67532,2.96542,0.98772,8.67532,3.26007,1.11331,8.39135,3.11274,1.1125,8.38552,2.97184,1.1125,8.38552,3.25365,1.11331,8.66897,3.11274,1.1125,8.6748,2.97184,1.1125,8.6748,3.25365,1.23084,8.68975,3.11274,1.23084,8.68975,2.96397,1.23084,8.68975,3.26151,1.23084,8.37057,3.11274,1.23084,8.37057,2.96397,1.23084,8.37057,3.26151,0.995476,8.39135,3.11274,0.994647,8.38503,2.96577,0.994647,8.38503,3.25971,0.995476,8.66897,3.11274,0.994647,8.6753,2.96577,0.994647,8.6753,3.25971,1.10316,8.39135,3.11274,1.10236,8.38548,2.97132,1.10236,8.38548,3.25417,1.10316,8.66897,3.11274,1.10236,8.67485,2.97132,1.10236,8.67485,3.25417,1.1239,8.68975,3.11274,1.1239,8.68975,2.95802,1.1239,8.68975,3.26747,1.1239,8.37057,3.11274,1.1239,8.37057,2.95802,1.1239,8.37057,3.26747,0.980485,8.68975,3.11274,0.980485,8.68975,2.95004,0.980485,8.68975,3.27545,0.980485,8.37057,3.11274,0.980485,8.37057,2.95004,0.980485,8.37057,3.27545,0.181393,8.68975,3.11274,0.181392,8.68975,2.92774,0.181393,8.68975,3.29775,0.275713,8.37057,3.11274,0.181392,8.37057,2.92774,0.181393,8.37057,3.29775,2.82263e-06,8.68975,2.99492,2.89942e-06,8.68975,3.23057,1.24806,8.68975,3.02581,1.24806,8.68975,3.19967,2.82263e-06,8.37057,2.99492,2.89942e-06,8.37057,3.23057,1.24806,8.37057,3.02581,1.24806,8.37057,3.19967,1.11331,8.68975,3.0214,1.11331,8.68975,3.20408,1.11331,8.37057,3.0214,1.11331,8.37057,3.20408,0.988551,8.68975,3.01732,0.988551,8.68975,3.20817,0.988551,8.37057,3.01732,0.988551,8.37057,3.20817,0.988063,8.38761,3.0261,0.988063,8.38761,3.19939,0.988063,8.67271,3.0261,0.988063,8.67271,3.19939,1.11283,8.38792,3.02988,1.11283,8.38792,3.19561,1.11283,8.6724,3.02988,1.11283,8.6724,3.19561,1.23084,8.68975,3.02525,1.23084,8.68975,3.20024,1.23084,8.37057,3.02525,1.23084,8.37057,3.20024,0.994989,8.38763,3.02631,0.994989,8.38763,3.19918,0.994989,8.67269,3.02631,0.994989,8.67269,3.19918,1.10269,8.3879,3.02957,1.10269,8.3879,3.19592,1.10269,8.67243,3.02957,1.10269,8.67243,3.19592,1.1239,8.68975,3.02175,1.1239,8.68975,3.20374,1.1239,8.37057,3.02175,1.1239,8.37057,3.20374,0.980485,8.68975,3.01706,0.980485,8.68975,3.20843,0.980485,8.37057,3.01706,0.980485,8.37057,3.20843,0.181393,8.68975,3.00394,0.181393,8.68975,3.22155,0.275713,8.37057,3.00394,0.275713,8.37057,3.22155,0.185115,11.39,3.00394,0.185115,11.39,3.22155,2.74067e-06,11.39,2.99492,2.81746e-06,11.39,3.23057,0.185115,11.39,3.11274,2.77907e-06,11.39,3.11274,0.18144,8.70603,3.00394,0.18144,8.70603,3.22155,2.82263e-06,8.70603,2.99492,2.89942e-06,8.70603,3.23057,0.18144,8.70603,3.11274,0.193056,8.68975,3.11274,0.193055,8.68975,2.92827,0.193056,8.68975,3.29722,0.285154,8.37057,3.11274,0.193055,8.37057,2.92827,0.193056,8.37057,3.29722,0.193056,8.68975,3.00425,0.193056,8.68975,3.22124,0.285154,8.37057,3.00425,0.285154,8.37057,3.22124,0.184625,11.138,3.00394,0.184625,11.138,3.22155,2.74067e-06,11.138,2.99492,2.81746e-06,11.138,3.23057,0.184625,11.138,3.11274,0.348455,11.1377,2.84791,0.348455,11.1377,3.37757,0.348455,11.1377,3.11274,2.68983e-06,11.1377,2.83889,2.8683e-06,11.1377,3.3866,0.348945,11.3896,2.84791,0.348945,11.3896,3.37757,0.348945,11.3896,3.11274,2.68983e-06,11.3896,2.83889,2.8683e-06,11.3896,3.3866,0.184551,11.1,3.00394,0.184551,11.1,3.22155,2.74067e-06,11.1,2.99492,2.81746e-06,11.1,3.23057,0.184551,11.1,3.11274,0.348875,11.3538,3.11274,0.348875,11.3538,2.84791,0.348875,11.3538,3.37757,2.68983e-06,11.3538,2.83889,2.8683e-06,11.3538,3.3866,0.348549,11.1859,3.11274,0.348548,11.1859,2.84791,0.348549,11.1859,3.37757,2.68983e-06,11.1859,2.83889,2.8683e-06,11.1859,3.3866,0.389271,8.45383,3.11274,0.0736076,0.0229048,3.11275,0.389271,7.65073,3.11274,0.389271,6.04454,3.11274,0.389271,5.24145,3.11274,0.389271,3.63526,3.11274,0.389271,2.83216,3.11274,0.389265,1.22595,3.11275,0.210437,0.184926,3.11275,0.309322,0.500653,3.11275,0.368932,0.877873,3.11275,3.81419e-06,4.18558e-06,3.11117,3.81521e-06,4.18595e-06,3.11432,3.83745e-06,6.04454,3.18256,3.79195e-06,5.24145,3.04293,3.83745e-06,3.63526,3.18256,3.79195e-06,2.83216,3.04293,3.79195e-06,1.22595,3.04293,3.83745e-06,1.22595,3.18256,3.79195e-06,0.877873,3.04293,3.83745e-06,0.877873,3.18256,3.79445e-06,0.500653,3.05059,3.83495e-06,0.500653,3.1749,3.80547e-06,0.184926,3.08442,3.82393e-06,0.184926,3.14107,0.0476088,0.0198015,3.1113,0.0476088,0.0198015,3.11419,0.0225948,0.0114912,3.11139,0.0225948,0.0114912,3.1141,0.12826,8.45383,3.07353,0.258766,7.65073,3.09831,0.12826,7.65073,3.07353,0.258762,1.22595,3.09831,0.258762,1.22595,3.12718,0.128258,1.22595,3.07353,0.128258,1.22595,3.15196,0.245206,0.877873,3.09601,0.245206,0.877873,3.12948,0.12148,0.877873,3.07209,0.12148,0.877873,3.1534,0.205466,0.500654,3.09072,0.205466,0.500654,3.13477,0.10161,0.500653,3.07228,0.10161,0.500653,3.15321,0.169921,0.184926,3.10116,0.169921,0.184926,3.12433,0.0889244,0.184926,3.09337,0.0889244,0.184926,3.13212,0.00237068,4.18559e-06,3.11129,0.00237068,4.18594e-06,3.1142,0.0220077,8.45383,3.17687,0.0220077,7.65073,3.04862,0.0220076,6.04454,3.04862,0.0220077,6.04454,3.17687,0.0220076,3.63526,3.04862,0.0220077,3.63526,3.17687,0.0220072,1.22595,3.04862,0.0220072,1.22595,3.17687,0.0207476,0.877873,3.04835,0.0207476,0.877873,3.17714,0.017055,0.500653,3.05468,0.017055,0.500653,3.17081,0.0155869,0.184926,3.08645,0.0155869,0.184926,3.13904,0.0699866,0.0226377,3.11177,0.0699866,0.0226377,3.11372,0.371285,8.45383,3.11473,0.371285,7.65073,3.11076,0.371285,7.65073,3.11473,0.371285,6.04454,3.11076,0.371285,6.04454,3.11473,0.371285,5.24145,3.11473,0.371285,3.63526,3.11076,0.371285,3.63526,3.11473,0.371285,2.83216,3.11473,0.371279,1.22595,3.11076,0.371279,1.22595,3.11473,0.35188,0.877873,3.11044,0.35188,0.877873,3.11505,0.295009,0.500653,3.10439,0.295009,0.500653,3.1211,0.208462,0.184926,3.10953,0.208462,0.184926,3.11596,3.8147e-06,4.18576e-06,3.11275,0.00237068,4.18576e-06,3.11275,0.0225948,0.0104317,3.11275,0.0476088,0.018742,3.11275,0.0669892,0.0212606,3.11275,0.123255,0.0816931,3.11275,3.81102e-06,0.0671018,3.10147,3.81837e-06,0.0671018,3.12402,0.0466618,0.0744203,3.10485,0.0466618,0.0744203,3.12064,0.0919886,0.0797151,3.10762,0.0919886,0.0797151,3.11787,0.00716604,0.0671018,3.10228,0.00716605,0.0671018,3.12321,0.120231,0.0815224,3.11096,0.120231,0.0815224,3.11453,3.79195e-06,8.45383,3.04293,3.79195e-06,7.65074,3.04293,3.83745e-06,8.45383,3.18256,3.83745e-06,7.65074,3.18256,0.258766,8.45383,3.09831,0.258766,8.45383,3.12717,0.258766,7.65073,3.12717,0.12826,8.45383,3.15195,0.12826,7.65073,3.15195,0.0220077,8.45383,3.04862,0.0220077,7.65074,3.17687,0.371285,8.45383,3.11075,0.389271,6.84764,3.11274,3.79195e-06,6.84764,3.04293,3.83745e-06,6.84764,3.18256,0.12826,6.84764,3.07353,0.12826,6.84764,3.15195,0.258766,6.84764,3.09831,0.258766,6.84764,3.12717,0.0220077,6.84764,3.04862,0.0220077,6.84764,3.17687,0.371285,6.84764,3.11076,0.371285,6.84764,3.11473,3.79195e-06,6.04454,3.04293,3.83745e-06,5.24145,3.18256,0.12826,6.04454,3.07353,0.12826,5.24145,3.07353,0.12826,6.04454,3.15195,0.12826,5.24145,3.15195,0.258766,6.04454,3.09831,0.258766,5.24145,3.09831,0.258766,6.04454,3.12717,0.258766,5.24145,3.12717,0.0220076,5.24145,3.04862,0.0220077,5.24145,3.17687,0.371285,5.24145,3.11076,0.389271,4.43835,3.11274,3.79195e-06,4.43835,3.04293,3.83745e-06,4.43835,3.18256,0.12826,4.43835,3.07353,0.12826,4.43835,3.15195,0.258766,4.43835,3.09831,0.258766,4.43835,3.12717,0.0220076,4.43835,3.04862,0.0220076,4.43835,3.17687,0.371285,4.43835,3.11076,0.371285,4.43835,3.11473,3.79195e-06,3.63526,3.04293,3.83745e-06,2.83216,3.18256,0.12826,3.63526,3.07353,0.12826,2.83216,3.07353,0.12826,3.63526,3.15196,0.12826,2.83216,3.15196,0.258766,3.63526,3.09831,0.258766,2.83216,3.09831,0.258766,3.63526,3.12717,0.258766,2.83216,3.12717,0.0220076,2.83216,3.04862,0.0220076,2.83216,3.17687,0.371285,2.83216,3.11076,0.389269,2.02906,3.11275,3.79195e-06,2.02906,3.04293,3.83745e-06,2.02906,3.18256,0.128259,2.02906,3.07353,0.128259,2.02906,3.15196,0.258764,2.02906,3.09831,0.258764,2.02906,3.12718,0.0220074,2.02906,3.04862,0.0220075,2.02906,3.17687,0.371283,2.02906,3.11076,0.371283,2.02906,3.11473,0.106953,9.08023,3.00394,0.107731,9.903,3.00394,0.108457,10.7372,3.00394,0.106953,9.08023,3.22155,0.107731,9.903,3.22155,0.108457,10.7372,3.22155,3.77631e-06,9.08023,2.99492,2.78165e-06,9.903,2.99492,3.77631e-06,10.7372,2.99492,3.85309e-06,9.08023,3.23057,2.85844e-06,9.903,3.23057,3.85309e-06,10.7372,3.23057,0.106953,9.08023,3.11274,0.107731,9.903,3.11274,0.108457,10.7372,3.11274,0.181536,8.7804,3.00394,0.181536,8.7804,3.22155,3.77631e-06,8.7804,2.99492,3.85309e-06,8.7804,3.23057,0.181536,8.7804,3.11274,0.18447,11.0377,3.00394,0.18447,11.0377,3.22155,3.77631e-06,11.0377,2.99492,3.85309e-06,11.0377,3.23057,0.18447,11.0377,3.11274] }, - { "name": "animation_000003", "vertices": [5.58012,8.89256,-0.47301,5.57979,9.06534,-0.490937,5.57983,9.12742,-0.46554,5.57984,9.18197,-0.397213,5.57949,9.22038,-0.304712,5.57887,9.22515,-0.188612,5.57874,9.11086,0.0581205,5.57926,8.97509,0.0700323,5.57995,8.84946,-0.0363218,5.58076,8.77634,-0.18167,5.58135,8.81545,-0.43113,5.58183,8.76374,-0.338404,5.58379,8.98717,-0.499288,5.58124,9.21781,-0.0782947,5.65799,8.99372,-0.499144,5.66043,9.18671,-0.0662581,6.31627,8.86666,0.375431,6.27009,8.78069,0.369749,6.29209,8.88516,0.358448,6.30867,8.81863,0.372625,6.24232,8.78848,0.35739,6.20552,8.93813,0.558678,6.15728,8.85334,0.561713,6.17718,8.95595,0.517656,6.12286,8.86859,0.522483,6.17244,8.90226,0.569123,6.23387,8.97638,0.502002,6.28062,8.97605,0.448436,6.30109,8.92418,0.385186,6.27537,8.8332,0.338711,6.22274,8.75358,0.376716,6.17147,8.74127,0.439205,6.14036,8.92078,0.528682,6.13675,8.81129,0.514987,6.30343,8.71619,0.662258,6.32831,8.68177,0.615231,6.36816,8.7072,0.566649,6.42938,8.76786,0.541738,6.44764,8.85511,0.562607,6.44754,8.90592,0.607801,6.40275,8.90854,0.642789,6.48557,8.85195,0.786139,6.56092,8.84851,0.728565,6.59653,8.78326,0.652722,6.57694,8.69148,0.619722,6.51053,8.6259,0.643673,6.43015,8.62306,0.714874,6.41688,8.78654,0.802317,6.39469,8.69874,0.788091,6.40587,8.8934,0.710933,6.47616,8.88999,0.645445,6.49348,8.83286,0.590535,6.46957,8.74873,0.565916,6.41468,8.68328,0.590113,6.35731,8.6694,0.650672,6.34689,8.82415,0.729643,6.31968,8.73641,0.715443,6.248,8.76261,0.646943,6.27662,8.85415,0.660477,6.29209,8.69059,0.575551,6.35659,8.69691,0.521267,6.42029,8.76298,0.494468,6.44245,8.85937,0.518982,6.41278,8.92164,0.570127,6.33497,8.92807,0.644168,6.46226,8.84807,0.586785,6.44419,8.76375,0.565965,6.38373,8.69715,0.593593,6.43593,8.76379,0.553027,6.37992,8.70873,0.580795,6.45204,8.84287,0.577999,6.18443,8.79035,0.563498,6.1964,8.89258,0.600093,6.22505,8.71778,0.488625,6.26997,8.73133,0.420759,6.3424,8.80291,0.408935,6.3508,8.89154,0.428225,6.33499,8.9519,0.492173,6.26672,8.95473,0.562339,6.28745,8.85188,0.690412,6.33547,8.89716,0.66658,6.27603,8.78499,0.669264,6.37686,8.89934,0.663723,6.30034,8.75675,0.669459,6.37216,8.8793,0.698199,6.32137,8.83722,0.718447,6.31202,8.77157,0.70014,6.3416,8.88135,0.691885,6.35462,8.87334,0.699403,6.30138,8.78776,0.684174,6.30715,8.78926,0.699743,6.32612,8.83305,0.703634,6.28481,8.79764,0.680693,6.32983,8.88483,0.678654,6.30321,8.84261,0.683364,6.30718,8.84271,0.705099,5.89059,8.93225,0.258988,6.3021,8.90113,0.225419,6.27973,8.96582,0.26786,5.91813,9.03856,0.270519,6.0249,9.05491,0.274883,6.21932,9.03027,0.267854,6.12089,9.05673,0.280311,5.89072,8.79661,0.197299,6.29875,8.84062,0.167394,5.97409,8.76088,0.177057,6.08543,8.77489,0.154466,6.18587,8.79994,0.153445,6.04271,8.89365,0.436758,6.03227,8.7991,0.380597,6.07773,8.96511,0.453802,6.11468,8.99783,0.442941,6.25881,8.94642,0.322981,6.22476,8.99314,0.377259,6.23288,8.84258,0.278447,6.27198,8.89537,0.298958,6.17542,9.00065,0.412544,6.06591,8.74895,0.319883,6.18818,8.79545,0.270882,6.13636,8.75047,0.273416,6.04856,8.7859,-0.131984,6.04892,8.77613,0.0322466,6.04358,8.76489,-0.0502018,6.19385,8.78295,0.0415062,5.89185,8.75302,-0.151009,5.89328,8.74627,0.0214233,5.87255,8.73938,-0.0653098,6.1931,8.80831,-0.0397358,6.17826,8.81557,-0.12146,5.96314,8.81839,-0.201593,6.15312,8.82718,-0.180653,6.06874,8.81328,-0.192491,6.09818,9.2012,-0.0854787,6.102,9.19976,-0.168481,6.06339,9.19627,-0.269989,6.03331,9.17737,-0.367568,6.08018,9.17751,0.00409766,6.06583,9.14528,0.106176,6.00175,9.14381,-0.458081,5.97228,9.10327,-0.539013,5.97885,8.80604,-0.509287,5.95855,8.85561,-0.581041,5.95459,8.97064,-0.607211,5.95866,9.06995,-0.578147,5.99206,9.12511,-0.500575,6.07347,9.10814,0.160347,6.074,9.16417,0.0554987,6.01569,9.16255,-0.412919,6.05404,9.19225,-0.322691,6.08285,9.19618,-0.214603,6.09844,9.20331,-0.126625,6.09363,9.19167,-0.0444263,6.06848,8.85539,-0.241599,6.06515,8.81693,-0.322016,6.01075,8.7868,-0.431159,5.79561,9.14829,0.0164901,5.7957,9.194,-0.116816,5.78764,9.18242,-0.0573881,5.85359,9.15634,0.0370836,5.84192,9.19379,-0.0935425,6.38458,8.81991,-0.466921,6.33493,8.81803,-0.463687,6.50385,8.82739,-0.25513,6.41103,8.8406,-0.25227,6.52154,8.82392,-0.0658188,6.46466,8.85619,-0.0869274,6.36443,8.81831,-0.510274,6.28383,8.81618,-0.495272,6.40977,8.8174,-0.432826,6.29383,8.82705,-0.415568,6.48477,8.82565,-0.296597,6.34329,8.82864,-0.276254,6.50856,8.82428,-0.226445,6.37161,8.83835,-0.212967,6.51956,8.81021,-0.00405117,6.43219,8.83374,-0.0384029,6.518,8.80213,-0.108916,6.43006,8.828,-0.13259,6.22815,8.84918,-0.453469,6.29063,8.84909,-0.335376,6.31624,8.82054,-0.34229,6.3193,8.85726,-0.240596,6.36414,8.85218,-0.178294,6.39503,8.84059,-0.173056,6.38672,8.85294,-0.0920703,6.32453,9.15871,-0.0420658,6.41578,9.1435,-0.0430815,6.32792,9.18807,-0.133045,6.41198,9.17979,-0.137786,6.31075,9.1683,-0.220974,6.40169,9.14924,-0.227028,6.28314,9.18674,-0.344259,6.38081,9.17639,-0.351198,6.23888,9.15238,-0.433263,6.33236,9.14608,-0.444205,6.29227,9.15629,0.099451,6.4017,9.15692,0.106755,6.34106,8.95629,0.219245,6.39965,8.95242,0.217866,6.31347,9.04786,0.197632,6.39139,9.04305,0.194881,6.3666,8.8456,0.04723,6.42638,8.84183,0.0655556,6.3451,8.87762,0.139048,6.413,8.87564,0.154894,6.18396,9.1218,-0.531998,6.26466,9.12543,-0.543392,6.14432,9.07395,-0.608842,6.21842,9.07436,-0.621766,6.12791,8.95907,-0.647511,6.19712,8.95263,-0.662688,6.14648,8.85281,-0.614299,6.21742,8.84702,-0.628914,6.18363,8.81538,-0.543788,6.24941,8.80757,-0.547403,6.16002,9.09961,-0.572795,6.23543,9.09868,-0.589468,6.21136,9.13818,-0.479012,6.29113,9.1399,-0.493672,6.2928,9.10734,0.15872,6.3997,9.10591,0.154256,6.3095,9.15268,0.0271218,6.41005,9.14005,0.0353636,6.25653,9.16568,-0.393035,6.35741,9.16166,-0.402826,6.29923,9.17436,-0.269258,6.39081,9.15817,-0.273045,6.32205,9.17692,-0.176667,6.40787,9.1637,-0.184169,6.32992,9.17647,-0.087707,6.41284,9.16698,-0.0950447,6.5753,9.15759,-0.119801,6.56594,9.14773,-0.18449,6.23536,9.18242,-0.0870571,6.2296,9.19063,-0.17032,5.9606,9.19946,-0.0820734,5.99693,9.20389,-0.166145,6.50509,9.1532,-0.0993213,6.51424,9.1516,-0.190992,6.56974,9.16165,-0.155475,6.53271,9.14245,-0.419036,6.55416,9.13534,-0.306907,6.19238,9.18185,-0.265325,6.1439,9.17791,-0.380612,5.95537,9.20103,-0.269504,5.93507,9.18948,-0.346231,6.50786,9.13859,-0.28524,6.46463,9.15401,-0.41458,6.56607,9.14924,-0.374932,5.96668,9.174,0.00029377,6.57155,9.09396,0.158523,6.57139,9.12365,0.0534876,6.20381,9.15999,0.00785887,6.18088,9.13351,0.139238,5.95678,9.15122,0.0672859,6.51434,9.13172,0.0353894,6.501,9.06699,0.161214,6.5852,9.11427,0.104555,6.37003,9.10702,-0.612219,6.41871,9.12683,-0.537028,6.10626,9.14032,-0.467825,6.06692,9.09944,-0.554977,5.90256,9.14662,-0.455376,5.87519,9.11299,-0.521895,6.38129,9.12867,-0.512335,6.30615,9.09553,-0.607001,6.41183,9.11693,-0.576703,5.70453,8.77755,-0.270471,5.6946,8.79901,-0.127961,5.76198,8.7617,-0.272573,5.73791,8.78693,-0.106468,5.69771,8.78147,-0.199921,5.82832,8.76072,-0.287901,5.7903,8.75099,-0.0710156,5.73733,8.82022,-0.451534,5.74605,9.1735,-0.0604976,5.75378,9.09937,0.0550136,5.73619,8.96837,0.064211,5.73328,8.90578,-0.49582,5.73048,9.00664,-0.510541,5.74486,8.7763,-0.363744,5.75941,8.77823,-0.19633,5.72396,8.84422,-0.0170677,5.76147,9.2061,-0.1681,5.72999,9.0834,-0.497354,5.75506,9.21465,-0.289203,5.73785,9.14154,-0.459136,5.74386,9.18766,-0.386816,6.08209,8.83472,-0.524408,6.05364,8.85655,-0.599104,6.04511,8.96496,-0.625226,6.05225,9.06554,-0.594583,6.08626,9.12292,-0.513861,6.31577,8.88548,0.161645,6.30412,8.82818,0.0338926,6.18334,9.07236,0.203259,6.29855,8.963,0.235825,6.18423,9.15194,0.073589,6.12621,9.15753,-0.423661,6.16636,9.19217,-0.329686,6.21566,9.18115,-0.212798,6.23401,9.19641,-0.12845,6.22512,9.1688,-0.0458232,6.30588,8.85752,-0.0730598,6.26338,8.8543,-0.153386,6.20874,8.8573,-0.226064,6.19843,8.82342,-0.327937,6.131,8.79628,-0.44292,5.96981,9.2019,-0.131031,5.93262,8.79469,-0.316082,5.97333,9.19521,-0.314102,5.99189,9.16092,0.0377313,5.94662,9.12129,0.129623,5.86343,9.07607,-0.557718,5.86133,8.97975,-0.583961,5.86203,8.85161,-0.561491,5.87495,8.791,-0.495112,5.9191,9.12817,-0.491675,5.96243,9.19278,-0.0415124,5.96427,9.20225,-0.204925,5.9544,8.83007,-0.234021,5.90973,9.17255,-0.40223,5.89196,8.76891,-0.421779,6.59076,8.81431,-0.156141,6.64937,8.84076,-0.158743,6.53134,8.82673,-0.381509,6.59199,8.85756,-0.37597,6.59966,8.82716,0.109235,6.64856,8.82331,0.0867191,6.33914,8.86113,-0.651946,6.39436,8.86784,-0.6499,6.36648,8.82328,-0.589503,6.42311,8.84726,-0.596841,6.59191,8.82133,-0.0836785,6.65575,8.85763,-0.0897303,6.6006,8.84715,-0.0436867,6.65042,8.85609,-0.0464401,6.59043,8.81471,0.0203602,6.65389,8.84064,0.0173764,6.58519,8.83969,-0.229741,6.64948,8.87498,-0.230561,6.55995,8.84613,-0.300755,6.61876,8.87286,-0.305636,6.57751,8.85502,-0.260405,6.63457,8.88331,-0.26764,6.50121,8.83126,-0.440133,6.57065,8.87586,-0.451241,6.4216,8.81714,-0.520615,6.4918,8.85225,-0.535255,6.46643,8.82481,-0.476235,6.53997,8.8719,-0.490515,6.50843,9.16308,-0.143188,6.51566,8.81443,-0.173204,6.44324,8.80617,-0.366737,6.48091,9.16746,-0.358935,6.5065,9.13878,0.108062,6.48566,9.03755,0.20189,6.48619,8.9649,0.21625,6.50999,8.87238,0.17066,6.51336,8.82628,0.0864485,6.28839,9.07207,-0.63554,6.25815,8.95144,-0.676418,6.28413,8.84419,-0.641676,6.32749,8.81539,-0.570869,6.34323,9.12434,-0.55455,6.53033,9.12477,-0.0436474,6.52603,9.12644,-0.240445,6.44818,9.1339,-0.463507,6.61491,9.00758,-0.509292,6.61883,8.98857,-0.507461,6.59233,8.91914,-0.497036,6.58931,9.05587,-0.509106,6.60807,9.02151,-0.509477,6.69219,9.02211,-0.287135,6.69685,9.00426,-0.285605,6.68443,8.92731,-0.274019,6.68041,9.08126,-0.285904,6.68609,9.03535,-0.28603,6.71844,9.00968,-0.0433992,6.71662,8.9904,-0.0418454,6.69752,8.90841,-0.0436209,6.72015,9.03027,-0.0446858,6.70531,9.08794,-0.0481734,6.71794,9.00707,-0.0563274,6.71583,9.00451,-0.0305125,6.68339,9.02501,-0.288084,6.70098,9.01592,-0.277661,6.59646,9.00109,-0.517002,6.63359,8.9948,-0.495574,6.58894,9.02124,-0.516741,6.63125,9.01173,-0.497273,6.67807,9.03783,-0.28866,6.69611,9.03341,-0.278083,6.7038,8.99658,-0.275947,6.7134,9.03351,-0.0596774,6.71269,8.9856,-0.0299887,6.71357,9.02757,-0.0318105,6.47112,9.10081,-0.595068,6.53632,9.07378,-0.529707,6.5984,8.97788,-0.516331,6.55293,8.89139,-0.524276,6.474,8.86996,-0.596531,6.42941,8.88556,-0.651155,6.39643,8.93071,-0.675108,6.41841,9.03796,-0.664108,6.93101,8.95299,-0.653789,6.69512,9.00434,-0.577603,6.93825,8.91401,-0.625459,6.69704,8.9651,-0.550838,6.92534,8.87376,-0.648649,6.68362,8.91709,-0.57623,6.90667,8.83984,-0.710875,6.65988,8.86354,-0.637835,6.89029,8.86502,-0.777629,6.64584,8.88386,-0.702405,6.88767,8.90246,-0.809211,6.64419,8.92772,-0.736414,6.89742,8.94195,-0.785244,6.64782,8.98505,-0.725033,7.01247,8.95709,-0.810406,6.99842,8.89493,-0.829209,7.00363,8.83671,-0.801382,7.02122,8.81601,-0.742759,7.03656,8.84444,-0.686802,7.04471,8.90568,-0.667864,7.02713,8.98629,-0.75347,7.04374,8.96424,-0.698565,6.73944,9.02877,-0.594465,6.72066,9.04993,-0.662629,6.7414,8.95269,-0.558114,6.72532,8.87951,-0.579609,6.70182,8.83617,-0.643044,6.68555,8.8578,-0.713319,6.68442,8.92553,-0.749195,6.69935,9.02075,-0.728621,6.64981,9.05052,-0.57487,6.63355,9.0684,-0.646077,6.65278,8.98144,-0.533824,6.63979,8.89963,-0.559775,6.61984,8.8497,-0.623409,6.60298,8.86945,-0.690697,6.59864,8.93641,-0.72676,6.61288,9.03434,-0.705346,6.94209,8.97412,-0.797966,6.92869,8.9011,-0.816705,6.93004,8.8452,-0.78478,6.94619,8.82176,-0.721376,6.9653,8.85327,-0.662488,6.97792,8.91162,-0.641708,6.959,8.99897,-0.736826,6.97551,8.9809,-0.673425,6.89354,8.99663,-0.646728,6.87483,9.01253,-0.715185,6.89477,8.92023,-0.611416,6.88241,8.85982,-0.634371,6.86066,8.82479,-0.698059,6.84334,8.84944,-0.767373,6.83988,8.90699,-0.801173,6.85459,8.98888,-0.781559,6.8989,8.86479,-0.779171,6.91227,8.83997,-0.711572,6.93478,8.87336,-0.65062,6.90971,8.83924,-0.711303,6.92767,8.87178,-0.65727,6.8969,8.86494,-0.76986,6.65248,8.88311,-0.706147,6.66601,8.86282,-0.638294,6.69085,8.91478,-0.579093,6.65142,8.88309,-0.693858,6.66293,8.86215,-0.637752,6.68421,8.91241,-0.586819,6.81999,9.00757,-0.620724,6.80115,9.04796,-0.692122,6.82263,8.93103,-0.585073,6.80818,8.86628,-0.606976,6.7843,8.82982,-0.670698,6.76468,8.85363,-0.741204,6.76029,8.91411,-0.775554,6.77584,9.00139,-0.75574,6.5857,9.06571,-0.543452,6.54625,9.10182,-0.615889,6.62057,8.99563,-0.521933,6.57627,8.90096,-0.535082,6.53151,8.85772,-0.603043,6.50652,8.87552,-0.670605,6.50189,8.94055,-0.706076,6.51804,9.03902,-0.685022,6.89857,9.01968,-0.721192,6.8833,8.99289,-0.765108,6.90919,8.9978,-0.672916,6.89785,8.96772,-0.783617,6.9313,8.97504,-0.665807,6.92732,8.98349,-0.775181,6.93807,9.01134,-0.731648,6.95043,8.98831,-0.686023,6.90976,8.99847,-0.761587,6.92337,8.99307,-0.763869,6.92865,8.99182,-0.688002,6.94057,8.99643,-0.69409,6.93145,9.00078,-0.728463,6.91521,9.00246,-0.686182,6.89469,8.99937,-0.756586,6.90476,9.00554,-0.721036,6.92043,9.01393,-0.726034,6.65467,9.07737,-0.651782,6.6369,9.03587,-0.697847,6.66721,9.04926,-0.593367,6.65692,9.02162,-0.710284,6.69276,9.0326,-0.592902,6.69925,9.06763,-0.65875,6.68538,9.03239,-0.703385,6.71133,9.04121,-0.615126,6.70151,9.04659,-0.621379,6.68827,9.05542,-0.61601,6.66574,9.0429,-0.690221,6.67973,9.03737,-0.69223,6.69089,9.05801,-0.658486,6.67227,9.05039,-0.609773,6.64901,9.0379,-0.688369,6.66355,9.06189,-0.652768,6.67791,9.06951,-0.655819,7.00161,9.07016,0.0948462,6.98366,9.06373,0.0924703,6.98071,9.03116,0.0412012,6.97412,9.04053,0.143887,7.01806,9.05332,0.0953327,7.01811,9.02665,0.0502422,7.00109,9.03598,0.0464938,6.9955,9.04682,0.144247,7.01396,9.03358,0.141821,7.02211,9.02722,0.151104,7.02823,9.02053,0.0400347,7.02781,9.06191,0.0966463,6.99007,9.0228,0.16839,6.99758,9.01222,0.0195882,6.96135,9.04218,0.158391,6.97009,9.03183,0.025836,6.97194,9.08246,0.0919762,7.31003,9.01593,0.117786,7.2908,9.00625,0.116297,7.29239,9.00172,0.0724442,7.2889,9.00169,0.158989,7.32162,9.00004,0.118564,7.31814,8.99499,0.160089,7.30358,8.98937,0.161649,7.32494,8.99448,0.0756162,7.31025,9.00081,0.0729574,7.32466,8.98582,0.172793,7.3291,9.01299,0.118497,7.33213,8.98471,0.0635678,7.298,8.96994,0.1868,7.30437,8.96804,0.0408517,7.27765,8.99591,0.171401,7.28314,8.99525,0.0585167,7.28462,9.02338,0.115349,6.8375,9.05095,0.00559874,6.82875,8.96033,-0.0256551,6.81406,8.86932,0.00584153,6.80232,8.82022,0.0909672,6.79547,8.85216,0.178684,6.80155,8.94362,0.207866,6.8351,9.09919,0.082893,6.8154,9.045,0.165552,7.15844,9.0012,0.0270987,7.14636,8.90318,-0.00549894,7.1349,8.82447,0.0269039,7.12628,8.78646,0.105828,7.12573,8.82541,0.184485,7.13386,8.90445,0.217061,7.1599,9.05012,0.106308,7.14924,9.0021,0.185265,6.97484,8.85323,0.160419,6.97221,8.822,0.0928469,6.98421,8.86967,0.0269517,6.97993,8.85478,0.173037,6.97743,8.82153,0.0933597,6.99003,8.87109,0.0148856,7.29785,8.83743,0.047663,7.28915,8.83765,0.187714,7.29076,8.80239,0.117536,7.2936,8.83539,0.198235,7.29325,8.8028,0.118387,7.30313,8.834,0.037819,7.25816,8.99352,0.0313041,7.24778,8.90054,-0.00227053,7.23749,8.82613,0.0316756,7.23023,8.79009,0.113231,7.22801,8.82713,0.194092,7.23461,8.90181,0.228226,7.25532,9.0144,0.113442,7.24896,8.99456,0.195178,7.34558,8.97829,0.19805,7.35245,8.99912,0.120116,7.33509,8.8828,0.230601,7.32956,8.79711,0.197129,7.33232,8.76901,0.119667,7.33848,8.79609,0.0414227,7.34763,8.88174,0.00849236,7.35458,8.97725,0.0415349,6.94637,9.02817,0.0123083,6.93831,8.92988,-0.0189614,6.92839,8.85633,0.013072,6.92001,8.81653,0.0890713,6.91927,8.84932,0.166001,6.92526,8.93268,0.199085,6.94523,9.07142,0.0895439,6.93712,9.03948,0.167727,7.05441,9.0076,0.0169452,7.04445,8.91637,-0.0163903,7.03047,8.83452,0.016911,7.02036,8.79188,0.0975456,7.02096,8.82921,0.178389,7.03118,8.91551,0.212257,7.0523,9.03625,0.0978706,7.04485,9.0126,0.179843,7.43014,8.9619,0.201487,7.42872,8.99897,0.125037,7.41852,8.8681,0.232416,7.41652,8.7817,0.201823,7.42257,8.76728,0.125628,7.42537,8.78077,0.0484707,7.43093,8.86686,0.0172997,7.43772,8.9651,0.0517244,6.99328,8.97449,-0.00114947,7.30425,8.93933,0.0375656,6.99212,8.92205,-0.0176071,7.30169,8.89229,0.00202675,6.9804,8.87235,0.0160168,7.29329,8.83736,0.0359974,6.96743,8.82396,0.0926262,7.28778,8.80389,0.116639,6.96818,8.8567,0.172338,7.28338,8.83857,0.196444,6.97835,8.91646,0.205396,7.28863,8.89348,0.231117,6.98659,8.98121,0.181593,7.29339,8.94433,0.19827,6.69581,9.10126,-0.00985292,6.70023,8.88235,-0.00465699,6.6958,8.83155,0.117055,6.65929,8.89105,0.167966,6.68857,8.94742,0.198485,6.69276,9.05548,0.17453,6.70713,9.11213,0.0796777,6.65261,9.13293,-0.390651,6.65269,9.09555,-0.310408,6.68731,9.00524,-0.287527,6.66722,8.91434,-0.305607,6.6447,8.86808,-0.383592,6.62493,8.90113,-0.463642,6.63316,8.97945,-0.49322,6.62493,9.08706,-0.475592,7.22454,9.0016,-0.405821,6.92601,9.05519,-0.352561,7.22598,8.95862,-0.375769,6.92658,9.0028,-0.330678,7.21511,8.91797,-0.407055,6.91622,8.9471,-0.359431,7.20383,8.88755,-0.481646,6.90513,8.90627,-0.433716,7.19341,8.92018,-0.555301,6.9012,8.95174,-0.507043,7.19435,8.96194,-0.587362,6.90367,9.00531,-0.538654,7.20321,9.00022,-0.554956,6.90348,9.05728,-0.522403,7.33757,9.01653,-0.57243,7.32393,8.94808,-0.603332,7.32549,8.87855,-0.57476,7.33816,8.849,-0.503496,7.3475,8.87638,-0.43086,7.35508,8.94497,-0.401144,7.35893,9.01432,-0.432594,6.98069,9.08814,-0.367273,6.97314,9.1088,-0.442634,6.9769,8.99605,-0.336763,6.96683,8.91175,-0.367503,6.95566,8.87068,-0.442541,6.95117,8.91563,-0.517932,6.9547,8.99827,-0.548984,6.96445,9.08227,-0.517726,6.87576,9.09699,-0.353099,6.8688,9.11998,-0.425758,6.87613,9.01135,-0.322509,6.86844,8.92765,-0.353322,6.85841,8.88562,-0.426399,6.85181,8.92947,-0.499202,6.85103,9.01192,-0.529086,6.85871,9.09915,-0.498039,7.25261,9.03343,-0.561688,7.23933,8.95896,-0.592222,7.23687,8.89594,-0.561143,7.24667,8.86529,-0.488786,7.25891,8.89373,-0.41589,7.27021,8.95572,-0.385134,7.26658,9.05269,-0.488869,7.27514,9.03129,-0.416253,7.1797,9.04889,-0.398472,7.16933,9.06772,-0.473322,7.17457,8.96509,-0.367309,7.16457,8.90306,-0.398725,7.15147,8.8713,-0.473501,7.14296,8.90513,-0.548164,7.14409,8.96829,-0.579531,7.15573,9.05112,-0.54828,7.20306,8.91943,-0.555906,7.20998,8.88744,-0.481412,7.22522,8.91739,-0.40737,7.20707,8.88677,-0.481576,7.21907,8.9167,-0.416333,7.20012,8.91937,-0.545717,6.91018,8.95096,-0.510073,6.91362,8.90516,-0.43581,6.9268,8.94549,-0.361695,6.90644,8.94893,-0.497492,6.90927,8.90485,-0.434767,6.92013,8.94271,-0.371603,7.08336,9.0642,-0.383395,7.07583,9.10651,-0.457821,7.0785,8.9791,-0.352893,7.06721,8.90209,-0.383586,7.05566,8.86357,-0.458717,7.05061,8.90364,-0.534012,7.05234,8.98178,-0.564525,7.06236,9.06636,-0.532815,6.78922,9.09618,-0.333,6.77133,9.1357,-0.409074,6.79246,9.02121,-0.298622,6.77842,8.92466,-0.330499,6.75415,8.87579,-0.407684,6.74507,8.91366,-0.486407,6.74751,9.00604,-0.520374,6.75714,9.08909,-0.486969,7.19791,9.07371,-0.477818,7.1857,9.05018,-0.5293,7.20313,9.04858,-0.426393,7.20313,9.02613,-0.550813,7.22613,9.02502,-0.417055,7.23476,9.04025,-0.536296,7.24363,9.06476,-0.485084,7.25004,9.03914,-0.435024,7.21477,9.05427,-0.52231,7.2301,9.04872,-0.523384,7.22651,9.04261,-0.440743,7.24096,9.04754,-0.445143,7.23606,9.05344,-0.483672,7.21131,9.05353,-0.439668,7.1972,9.05527,-0.518714,7.20458,9.05864,-0.478709,7.224,9.06681,-0.481411,6.89296,9.13309,-0.428599,6.88292,9.10115,-0.490243,6.89565,9.09858,-0.367067,6.90987,9.08788,-0.502739,6.9251,9.08847,-0.364907,6.94785,9.12879,-0.437754,6.94175,9.09522,-0.490331,6.95165,9.09941,-0.387567,6.94195,9.10348,-0.39418,6.92446,9.10973,-0.387328,6.91569,9.10728,-0.477652,6.93283,9.10025,-0.478364,6.93779,9.11822,-0.436691,6.90471,9.10175,-0.38285,6.8951,9.10354,-0.478167,6.90403,9.11957,-0.430861,6.92203,9.12887,-0.432926,7.03794,9.12201,-0.194396,7.01875,9.11218,-0.193122,7.01158,9.09467,-0.243276,7.01551,9.09256,-0.142514,7.05453,9.11034,-0.197006,7.05117,9.09443,-0.241408,7.03308,9.09978,-0.241742,7.03718,9.10161,-0.145891,7.05641,9.09471,-0.151785,7.067,9.09038,-0.14372,7.06133,9.09042,-0.254016,7.06564,9.12293,-0.197781,7.03722,9.07875,-0.121398,7.02766,9.07718,-0.268724,7.00516,9.09007,-0.125988,6.9992,9.09211,-0.256487,7.00716,9.12799,-0.19136,7.37326,9.0674,-0.225993,7.35215,9.05848,-0.224348,7.34698,9.05421,-0.268172,7.3571,9.05287,-0.181603,7.38705,9.0519,-0.227549,7.3907,9.04554,-0.186057,7.37451,9.04042,-0.182089,7.3839,9.0463,-0.270482,7.36701,9.0528,-0.270589,7.39988,9.03617,-0.174918,7.39549,9.06389,-0.228667,7.38988,9.03675,-0.283664,7.37277,9.02101,-0.156661,7.35658,9.02138,-0.301866,7.34727,9.047,-0.167494,7.33496,9.04809,-0.280582,7.34505,9.07481,-0.223905,6.84759,9.08817,-0.251574,6.83632,9.00725,-0.292701,6.83077,8.90731,-0.258935,6.82903,8.85458,-0.174914,6.84299,8.8933,-0.0922879,6.85619,8.98661,-0.0598055,6.86162,9.12986,-0.175449,6.85856,9.08246,-0.100682,7.19951,9.05621,-0.290908,7.18828,8.96518,-0.323641,7.18254,8.88409,-0.290917,7.18386,8.84091,-0.211244,7.19437,8.88283,-0.131693,7.20722,8.96337,-0.0988344,7.20951,9.10163,-0.211201,7.21211,9.05483,-0.131585,7.03076,8.93061,-0.12792,7.01986,8.88746,-0.194972,7.02088,8.93483,-0.261922,7.03754,8.92992,-0.116889,7.02352,8.88783,-0.195679,7.02501,8.93367,-0.275022,7.35207,8.90359,-0.296327,7.36463,8.90174,-0.155362,7.35601,8.86152,-0.22629,7.37127,8.90105,-0.145958,7.35943,8.86183,-0.225924,7.35654,8.90213,-0.306583,7.30375,9.04691,-0.30351,7.29401,8.95833,-0.337448,7.28956,8.88314,-0.303317,7.29462,8.84066,-0.22131,7.30384,8.88171,-0.139291,7.31349,8.95609,-0.105121,7.31379,9.0665,-0.221034,7.32019,9.04537,-0.138933,7.42603,9.02745,-0.153967,7.42056,9.05021,-0.231169,7.42026,8.94562,-0.121242,7.4083,8.87154,-0.153639,7.40018,8.83446,-0.231318,7.39259,8.87307,-0.308776,7.39888,8.94781,-0.341533,7.41105,9.02884,-0.309002,6.97302,9.08947,-0.264964,6.96436,9.00146,-0.296042,6.96127,8.9085,-0.264505,6.96352,8.86429,-0.188521,6.97266,8.90076,-0.112638,6.98111,8.98738,-0.0813244,6.97941,9.11418,-0.188825,6.98226,9.08691,-0.112633,7.08799,9.07758,-0.282301,7.07732,8.98273,-0.315384,7.06965,8.89628,-0.281829,7.06923,8.85305,-0.200581,7.08156,8.89486,-0.119452,7.09556,8.97815,-0.0856488,7.09278,9.10204,-0.201128,7.09816,9.07613,-0.119247,7.51806,9.00911,-0.166591,7.51132,8.93557,-0.133654,7.50516,8.85767,-0.16446,7.50021,8.81576,-0.241312,7.48976,8.85916,-0.317297,7.4898,8.93767,-0.347261,7.50319,9.01057,-0.31463,7.02216,9.04512,-0.289079,7.35653,8.99368,-0.30582,7.02175,8.99515,-0.305999,7.35129,8.9528,-0.341198,7.01592,8.93417,-0.27211,7.34658,8.90423,-0.307103,7.01578,8.88843,-0.194297,7.35342,8.86315,-0.22671,7.02693,8.93032,-0.115433,7.36052,8.90276,-0.145818,7.03918,8.98824,-0.0835585,7.37185,8.95054,-0.112323,7.03827,9.04164,-0.108034,7.37002,8.99608,-0.144699,6.68163,9.0928,-0.244473,6.69546,8.90641,-0.235676,6.69217,8.85604,-0.158524,6.7017,8.89696,-0.0844171,6.7142,8.98471,-0.0540639,6.6837,9.12411,-0.092907,6.71845,9.1424,-0.16431,5.86951,9.21105,-0.175842,5.79701,8.7662,-0.385583,5.7693,8.89384,-0.520211,5.77502,8.8033,-0.473093,5.7638,9.0921,-0.519892,5.82602,9.09622,0.123908,5.84427,9.18123,-0.0339205,5.7776,8.80159,0.0195716,5.79618,8.96692,0.117804,5.80296,9.18845,-0.393334,5.76522,9.01153,-0.537836,5.83294,8.77518,-0.191201,5.85582,9.2116,-0.294326,5.79599,9.14183,-0.474346,5.65632,9.13004,-0.454535,5.65902,9.20945,-0.291129,5.64104,8.78012,-0.203751,5.6575,9.17883,-0.385474,5.65666,8.96326,0.047487,5.64214,8.84798,-0.0553137,5.65935,9.09078,0.0433801,5.65577,9.06951,-0.488133,5.6575,8.82591,-0.437451,5.65646,8.90377,-0.480968,5.65655,8.78119,-0.333467,5.66001,9.21195,-0.17825,7.51619,9.04902,-0.243385,7.35843,9.04923,-0.507929,-5.58013,8.89256,-0.473009,-5.57979,9.06534,-0.490937,-5.57983,9.12742,-0.465539,-5.57984,9.18197,-0.397213,-5.57949,9.22038,-0.304712,-5.57887,9.22515,-0.188612,-5.57874,9.11086,0.0581205,-5.57926,8.97509,0.0700324,-5.57995,8.84946,-0.0363217,-5.58076,8.77634,-0.18167,-5.58135,8.81546,-0.43113,-5.58183,8.76374,-0.338404,-5.58379,8.98717,-0.499288,-5.58124,9.21781,-0.0782947,-5.65799,8.99372,-0.499144,-5.66043,9.18671,-0.0662581,-6.31627,8.86665,0.375432,-6.27009,8.78069,0.369749,-6.2921,8.88516,0.358448,-6.30867,8.81862,0.372625,-6.24232,8.78848,0.35739,-6.20552,8.93813,0.558679,-6.15728,8.85334,0.561713,-6.17718,8.95595,0.517657,-6.12286,8.86859,0.522483,-6.17244,8.90226,0.569123,-6.23387,8.97638,0.502003,-6.28062,8.97605,0.448437,-6.30109,8.92418,0.385186,-6.27538,8.8332,0.338711,-6.22274,8.75358,0.376716,-6.17147,8.74127,0.439205,-6.14036,8.92078,0.528682,-6.13675,8.81129,0.514987,-6.30343,8.71619,0.662258,-6.32831,8.68177,0.615231,-6.36816,8.7072,0.566649,-6.42938,8.76786,0.541738,-6.44764,8.85511,0.562607,-6.44754,8.90591,0.607801,-6.40275,8.90854,0.642789,-6.48557,8.85195,0.786139,-6.56092,8.84851,0.728565,-6.59653,8.78326,0.652722,-6.57694,8.69148,0.619722,-6.51053,8.6259,0.643673,-6.43015,8.62306,0.714874,-6.41688,8.78654,0.802317,-6.39469,8.69873,0.788091,-6.40587,8.8934,0.710933,-6.47616,8.88998,0.645445,-6.49348,8.83286,0.590535,-6.46957,8.74872,0.565916,-6.41468,8.68328,0.590113,-6.35731,8.6694,0.650672,-6.34689,8.82415,0.729643,-6.31968,8.73641,0.715443,-6.248,8.76261,0.646943,-6.27663,8.85415,0.660478,-6.29209,8.69059,0.575552,-6.3566,8.69691,0.521268,-6.42029,8.76298,0.494468,-6.44245,8.85937,0.518982,-6.41278,8.92164,0.570128,-6.33497,8.92807,0.644168,-6.46226,8.84807,0.586785,-6.44419,8.76374,0.565965,-6.38373,8.69715,0.593593,-6.43593,8.76379,0.553027,-6.37992,8.70872,0.580795,-6.45204,8.84287,0.577999,-6.18443,8.79035,0.563499,-6.1964,8.89258,0.600093,-6.22506,8.71778,0.488625,-6.26997,8.73132,0.42076,-6.3424,8.80291,0.408936,-6.3508,8.89153,0.428226,-6.33499,8.9519,0.492173,-6.26672,8.95473,0.56234,-6.28745,8.85188,0.690412,-6.33547,8.89716,0.666581,-6.27603,8.78499,0.669265,-6.37686,8.89934,0.663724,-6.30034,8.75675,0.669459,-6.37216,8.8793,0.698199,-6.32137,8.83722,0.718447,-6.31202,8.77157,0.70014,-6.3416,8.88135,0.691885,-6.35462,8.87334,0.699403,-6.30138,8.78776,0.684174,-6.30715,8.78925,0.699743,-6.32612,8.83305,0.703634,-6.28481,8.79764,0.680693,-6.32983,8.88483,0.678654,-6.30321,8.84261,0.683364,-6.30718,8.84271,0.705099,-5.8906,8.93225,0.258988,-6.3021,8.90113,0.225419,-6.27973,8.96582,0.26786,-5.91813,9.03856,0.270519,-6.0249,9.05491,0.274883,-6.21932,9.03027,0.267854,-6.1209,9.05673,0.280311,-5.89072,8.79661,0.197299,-6.29875,8.84062,0.167394,-5.97409,8.76088,0.177057,-6.08543,8.77489,0.154466,-6.18587,8.79994,0.153445,-6.04271,8.89365,0.436758,-6.03227,8.7991,0.380597,-6.07773,8.96511,0.453802,-6.11468,8.99783,0.442941,-6.25881,8.94642,0.322981,-6.22476,8.99314,0.377259,-6.23288,8.84258,0.278447,-6.27198,8.89537,0.298958,-6.17542,9.00065,0.412544,-6.06591,8.74895,0.319883,-6.18818,8.79545,0.270882,-6.13636,8.75047,0.273416,-6.04856,8.7859,-0.131984,-6.04893,8.77613,0.0322465,-6.04358,8.76489,-0.0502018,-6.19385,8.78295,0.0415062,-5.89185,8.75302,-0.15101,-5.89328,8.74627,0.0214232,-5.87255,8.73938,-0.0653099,-6.1931,8.80832,-0.0397358,-6.17826,8.81557,-0.12146,-5.96314,8.81839,-0.201593,-6.15312,8.82718,-0.180653,-6.06874,8.81328,-0.192491,-6.09818,9.20121,-0.0854787,-6.102,9.19976,-0.168481,-6.06339,9.19627,-0.269989,-6.03331,9.17737,-0.367568,-6.08018,9.17751,0.00409763,-6.06583,9.14528,0.106176,-6.00175,9.14381,-0.458081,-5.97228,9.10328,-0.539013,-5.97885,8.80604,-0.509287,-5.95854,8.85561,-0.581041,-5.95459,8.97064,-0.607211,-5.95865,9.06995,-0.578147,-5.99206,9.12511,-0.500575,-6.07347,9.10814,0.160347,-6.074,9.16417,0.0554986,-6.01569,9.16255,-0.412919,-6.05404,9.19225,-0.322691,-6.08285,9.19618,-0.214603,-6.09844,9.20331,-0.126625,-6.09363,9.19167,-0.0444263,-6.06848,8.85539,-0.241599,-6.06515,8.81693,-0.322016,-6.01075,8.7868,-0.431159,-5.79561,9.14829,0.01649,-5.7957,9.194,-0.116816,-5.78764,9.18242,-0.0573881,-5.85359,9.15634,0.0370836,-5.84192,9.19379,-0.0935425,-6.38458,8.81991,-0.466921,-6.33493,8.81804,-0.463687,-6.50385,8.8274,-0.25513,-6.41103,8.8406,-0.25227,-6.52154,8.82392,-0.0658187,-6.46466,8.85619,-0.0869274,-6.36443,8.81831,-0.510274,-6.28383,8.81618,-0.495272,-6.40977,8.8174,-0.432826,-6.29383,8.82705,-0.415568,-6.48477,8.82565,-0.296597,-6.34329,8.82864,-0.276254,-6.50856,8.82428,-0.226445,-6.37161,8.83836,-0.212967,-6.51956,8.81021,-0.00405114,-6.43219,8.83374,-0.0384028,-6.518,8.80213,-0.108916,-6.43006,8.828,-0.13259,-6.22815,8.84919,-0.453469,-6.29063,8.84909,-0.335376,-6.31624,8.82054,-0.34229,-6.3193,8.85726,-0.240596,-6.36414,8.85218,-0.178294,-6.39503,8.84059,-0.173056,-6.38672,8.85294,-0.0920703,-6.32453,9.15871,-0.0420658,-6.41578,9.1435,-0.0430815,-6.32792,9.18807,-0.133045,-6.41198,9.17979,-0.137786,-6.31075,9.1683,-0.220974,-6.40169,9.14924,-0.227028,-6.28314,9.18674,-0.344259,-6.38081,9.17639,-0.351198,-6.23888,9.15238,-0.433263,-6.33236,9.14608,-0.444205,-6.29227,9.15629,0.099451,-6.4017,9.15692,0.106755,-6.34106,8.95629,0.219245,-6.39965,8.95242,0.217866,-6.31347,9.04787,0.197632,-6.39139,9.04305,0.194881,-6.3666,8.8456,0.04723,-6.42638,8.84183,0.0655556,-6.3451,8.87762,0.139048,-6.413,8.87564,0.154894,-6.18396,9.1218,-0.531998,-6.26466,9.12543,-0.543392,-6.14432,9.07395,-0.608842,-6.21842,9.07436,-0.621766,-6.12791,8.95908,-0.647511,-6.19712,8.95263,-0.662688,-6.14648,8.85281,-0.614299,-6.21742,8.84702,-0.628914,-6.18363,8.81538,-0.543788,-6.24941,8.80757,-0.547403,-6.16002,9.09961,-0.572795,-6.23543,9.09868,-0.589468,-6.21136,9.13818,-0.479012,-6.29113,9.1399,-0.493672,-6.2928,9.10734,0.15872,-6.3997,9.10591,0.154256,-6.3095,9.15268,0.0271218,-6.41005,9.14005,0.0353637,-6.25653,9.16568,-0.393035,-6.35741,9.16166,-0.402826,-6.29923,9.17436,-0.269258,-6.39081,9.15817,-0.273045,-6.32205,9.17692,-0.176667,-6.40787,9.1637,-0.184169,-6.32992,9.17647,-0.087707,-6.41284,9.16698,-0.0950447,-6.5753,9.15759,-0.119801,-6.56594,9.14773,-0.18449,-6.23536,9.18242,-0.0870572,-6.2296,9.19063,-0.17032,-5.96059,9.19946,-0.0820735,-5.99693,9.20389,-0.166145,-6.50509,9.1532,-0.0993212,-6.51424,9.1516,-0.190992,-6.56974,9.16165,-0.155475,-6.53271,9.14245,-0.419036,-6.55417,9.13534,-0.306908,-6.19238,9.18185,-0.265325,-6.1439,9.17791,-0.380612,-5.95537,9.20103,-0.269504,-5.93507,9.18948,-0.346231,-6.50786,9.13859,-0.28524,-6.46464,9.15401,-0.41458,-6.56607,9.14924,-0.374932,-5.96668,9.174,0.000293727,-6.57155,9.09396,0.158523,-6.57139,9.12365,0.0534876,-6.20381,9.15999,0.00785885,-6.18088,9.13351,0.139238,-5.95678,9.15122,0.0672859,-6.51434,9.13172,0.0353895,-6.501,9.06699,0.161214,-6.58521,9.11426,0.104555,-6.37003,9.10702,-0.612219,-6.41871,9.12683,-0.537028,-6.10626,9.14032,-0.467825,-6.06692,9.09944,-0.554977,-5.90256,9.14662,-0.455376,-5.87519,9.11299,-0.521896,-6.38129,9.12867,-0.512335,-6.30615,9.09553,-0.607001,-6.41183,9.11693,-0.576703,-5.70453,8.77755,-0.270471,-5.6946,8.79901,-0.127961,-5.76198,8.7617,-0.272573,-5.73791,8.78693,-0.106468,-5.69771,8.78147,-0.199921,-5.82832,8.76072,-0.287901,-5.7903,8.75099,-0.0710157,-5.73733,8.82022,-0.451534,-5.74605,9.1735,-0.0604976,-5.75378,9.09937,0.0550136,-5.73619,8.96837,0.064211,-5.73328,8.90578,-0.49582,-5.73048,9.00664,-0.510541,-5.74486,8.7763,-0.363744,-5.75941,8.77823,-0.19633,-5.72396,8.84422,-0.0170676,-5.76147,9.2061,-0.1681,-5.72999,9.0834,-0.497354,-5.75505,9.21465,-0.289203,-5.73785,9.14155,-0.459136,-5.74386,9.18766,-0.386816,-6.08209,8.83472,-0.524408,-6.05364,8.85655,-0.599104,-6.04511,8.96496,-0.625226,-6.05225,9.06554,-0.594584,-6.08626,9.12292,-0.513861,-6.31577,8.88548,0.161645,-6.30412,8.82818,0.0338926,-6.18334,9.07236,0.203259,-6.29855,8.963,0.235825,-6.18423,9.15194,0.0735889,-6.12621,9.15753,-0.423661,-6.16636,9.19218,-0.329686,-6.21566,9.18115,-0.212798,-6.23401,9.19641,-0.12845,-6.22512,9.1688,-0.0458232,-6.30588,8.85752,-0.0730598,-6.26338,8.8543,-0.153386,-6.20874,8.8573,-0.226064,-6.19843,8.82342,-0.327937,-6.131,8.79628,-0.44292,-5.96981,9.2019,-0.131031,-5.93262,8.79469,-0.316082,-5.97333,9.19522,-0.314102,-5.99189,9.16092,0.0377313,-5.94662,9.12129,0.129622,-5.86343,9.07607,-0.557718,-5.86133,8.97975,-0.583961,-5.86203,8.85161,-0.561491,-5.87495,8.791,-0.495112,-5.9191,9.12817,-0.491675,-5.96243,9.19278,-0.0415124,-5.96427,9.20225,-0.204925,-5.9544,8.83007,-0.234021,-5.90973,9.17255,-0.40223,-5.89196,8.76891,-0.421779,-6.59076,8.81431,-0.156141,-6.64937,8.84076,-0.158743,-6.53134,8.82673,-0.381509,-6.59199,8.85756,-0.37597,-6.59966,8.82716,0.109235,-6.64856,8.82331,0.0867191,-6.33914,8.86113,-0.651946,-6.39436,8.86785,-0.6499,-6.36648,8.82328,-0.589503,-6.42311,8.84726,-0.596841,-6.59191,8.82133,-0.0836785,-6.65575,8.85763,-0.0897302,-6.6006,8.84715,-0.0436866,-6.65042,8.85609,-0.0464401,-6.59043,8.81471,0.0203602,-6.65389,8.84064,0.0173764,-6.58519,8.83969,-0.229741,-6.64948,8.87498,-0.230561,-6.55995,8.84613,-0.300755,-6.61876,8.87286,-0.305636,-6.57751,8.85502,-0.260405,-6.63457,8.88331,-0.26764,-6.50121,8.83126,-0.440133,-6.57065,8.87586,-0.451241,-6.4216,8.81715,-0.520615,-6.4918,8.85225,-0.535255,-6.46643,8.82481,-0.476235,-6.53997,8.8719,-0.490515,-6.50843,9.16308,-0.143188,-6.51566,8.81443,-0.173204,-6.44324,8.80617,-0.366737,-6.48091,9.16746,-0.358935,-6.5065,9.13878,0.108062,-6.48566,9.03755,0.20189,-6.48619,8.9649,0.21625,-6.50999,8.87238,0.17066,-6.51336,8.82628,0.0864486,-6.28839,9.07207,-0.63554,-6.25815,8.95144,-0.676418,-6.28413,8.8442,-0.641676,-6.32749,8.81539,-0.570869,-6.34323,9.12434,-0.55455,-6.53033,9.12477,-0.0436473,-6.52603,9.12645,-0.240445,-6.44818,9.1339,-0.463507,-6.61491,9.00758,-0.509292,-6.61883,8.98857,-0.507461,-6.59233,8.91914,-0.497036,-6.58931,9.05587,-0.509106,-6.60807,9.02151,-0.509477,-6.69219,9.02211,-0.287135,-6.69685,9.00427,-0.285605,-6.68443,8.92731,-0.274019,-6.68041,9.08127,-0.285904,-6.68609,9.03535,-0.28603,-6.71844,9.00968,-0.0433991,-6.71662,8.9904,-0.0418453,-6.69752,8.90841,-0.0436208,-6.72015,9.03027,-0.0446858,-6.70531,9.08794,-0.0481733,-6.71794,9.00707,-0.0563274,-6.71583,9.00451,-0.0305125,-6.68339,9.02501,-0.288084,-6.70098,9.01592,-0.277661,-6.59646,9.00109,-0.517002,-6.63359,8.9948,-0.495574,-6.58894,9.02125,-0.516741,-6.63125,9.01173,-0.497273,-6.67807,9.03783,-0.28866,-6.69611,9.03342,-0.278082,-6.7038,8.99658,-0.275947,-6.7134,9.03351,-0.0596773,-6.71269,8.9856,-0.0299886,-6.71357,9.02757,-0.0318104,-6.47112,9.10081,-0.595068,-6.53632,9.07378,-0.529707,-6.5984,8.97788,-0.516331,-6.55293,8.89139,-0.524276,-6.474,8.86997,-0.596531,-6.42941,8.88557,-0.651155,-6.39643,8.93071,-0.675108,-6.41841,9.03796,-0.664108,-6.93101,8.95299,-0.653788,-6.69512,9.00434,-0.577603,-6.93825,8.91402,-0.625458,-6.69704,8.9651,-0.550838,-6.92534,8.87376,-0.648649,-6.68362,8.9171,-0.57623,-6.90667,8.83984,-0.710875,-6.65988,8.86354,-0.637835,-6.89029,8.86502,-0.777629,-6.64584,8.88387,-0.702405,-6.88767,8.90246,-0.809211,-6.64419,8.92772,-0.736414,-6.89742,8.94196,-0.785243,-6.64782,8.98505,-0.725033,-7.01247,8.95709,-0.810406,-6.99842,8.89493,-0.829209,-7.00363,8.83671,-0.801382,-7.02122,8.81601,-0.742759,-7.03657,8.84444,-0.686802,-7.04471,8.90568,-0.667864,-7.02713,8.98629,-0.75347,-7.04374,8.96424,-0.698565,-6.73944,9.02877,-0.594465,-6.72066,9.04993,-0.662629,-6.7414,8.95269,-0.558114,-6.72532,8.87951,-0.579609,-6.70182,8.83617,-0.643044,-6.68555,8.8578,-0.713319,-6.68442,8.92553,-0.749195,-6.69935,9.02075,-0.728621,-6.64981,9.05052,-0.57487,-6.63355,9.0684,-0.646077,-6.65278,8.98145,-0.533824,-6.63979,8.89964,-0.559775,-6.61984,8.8497,-0.623409,-6.60298,8.86946,-0.690697,-6.59864,8.93642,-0.72676,-6.61288,9.03434,-0.705346,-6.94209,8.97413,-0.797966,-6.92869,8.9011,-0.816705,-6.93004,8.8452,-0.78478,-6.94619,8.82176,-0.721376,-6.9653,8.85327,-0.662488,-6.97792,8.91162,-0.641708,-6.959,8.99898,-0.736826,-6.97551,8.9809,-0.673425,-6.89354,8.99663,-0.646728,-6.87483,9.01253,-0.715185,-6.89477,8.92023,-0.611416,-6.88241,8.85982,-0.634371,-6.86066,8.82479,-0.698059,-6.84334,8.84944,-0.767373,-6.83988,8.90699,-0.801172,-6.85459,8.98888,-0.781559,-6.8989,8.86479,-0.779171,-6.91227,8.83997,-0.711572,-6.93478,8.87337,-0.65062,-6.90971,8.83924,-0.711303,-6.92767,8.87178,-0.65727,-6.8969,8.86494,-0.76986,-6.65248,8.88311,-0.706147,-6.66601,8.86282,-0.638294,-6.69085,8.91478,-0.579093,-6.65142,8.88309,-0.693858,-6.66293,8.86215,-0.637752,-6.68421,8.91241,-0.586819,-6.81999,9.00758,-0.620724,-6.80115,9.04796,-0.692122,-6.82263,8.93103,-0.585073,-6.80818,8.86628,-0.606976,-6.7843,8.82982,-0.670698,-6.76468,8.85364,-0.741204,-6.76029,8.91411,-0.775554,-6.77584,9.00139,-0.75574,-6.5857,9.06571,-0.543452,-6.54625,9.10182,-0.615889,-6.62057,8.99563,-0.521933,-6.57627,8.90096,-0.535082,-6.53151,8.85772,-0.603043,-6.50652,8.87552,-0.670605,-6.50189,8.94055,-0.706076,-6.51804,9.03903,-0.685022,-6.89857,9.01968,-0.721192,-6.8833,8.99289,-0.765108,-6.90919,8.9978,-0.672916,-6.89785,8.96772,-0.783617,-6.9313,8.97504,-0.665807,-6.92732,8.9835,-0.775181,-6.93807,9.01134,-0.731648,-6.95043,8.98831,-0.686023,-6.90976,8.99848,-0.761587,-6.92337,8.99307,-0.763869,-6.92865,8.99182,-0.688002,-6.94057,8.99643,-0.69409,-6.93145,9.00078,-0.728463,-6.91521,9.00246,-0.686182,-6.89468,8.99937,-0.756586,-6.90476,9.00554,-0.721036,-6.92043,9.01393,-0.726034,-6.65467,9.07737,-0.651782,-6.6369,9.03587,-0.697847,-6.66721,9.04926,-0.593367,-6.65692,9.02162,-0.710284,-6.69276,9.03261,-0.592902,-6.69925,9.06763,-0.65875,-6.68538,9.03239,-0.703385,-6.71133,9.04121,-0.615126,-6.70152,9.0466,-0.621379,-6.68827,9.05542,-0.61601,-6.66574,9.04291,-0.690221,-6.67973,9.03737,-0.69223,-6.69089,9.05802,-0.658486,-6.67227,9.05039,-0.609773,-6.64901,9.0379,-0.688369,-6.66355,9.06189,-0.652768,-6.67791,9.06951,-0.655819,-7.00161,9.07015,0.0948462,-6.98367,9.06373,0.0924703,-6.98071,9.03116,0.0412013,-6.97412,9.04053,0.143888,-7.01806,9.05332,0.0953328,-7.01811,9.02665,0.0502423,-7.00109,9.03598,0.0464938,-6.9955,9.04682,0.144247,-7.01396,9.03358,0.141821,-7.02211,9.02722,0.151104,-7.02823,9.02053,0.0400348,-7.02781,9.06191,0.0966464,-6.99007,9.02279,0.16839,-6.99758,9.01222,0.0195882,-6.96135,9.04218,0.158391,-6.97009,9.03183,0.0258361,-6.97194,9.08246,0.0919762,-7.31003,9.01593,0.117786,-7.2908,9.00625,0.116297,-7.29239,9.00172,0.0724442,-7.2889,9.00169,0.158989,-7.32162,9.00004,0.118564,-7.31814,8.99499,0.160089,-7.30358,8.98937,0.161649,-7.32494,8.99448,0.0756162,-7.31025,9.00081,0.0729575,-7.32466,8.98582,0.172793,-7.3291,9.01299,0.118497,-7.33213,8.98471,0.0635678,-7.29801,8.96995,0.1868,-7.30437,8.96804,0.0408518,-7.27765,8.99591,0.171401,-7.28314,8.99525,0.0585167,-7.28462,9.02338,0.115349,-6.8375,9.05095,0.00559878,-6.82875,8.96033,-0.0256551,-6.81406,8.86932,0.00584157,-6.80232,8.82022,0.0909673,-6.79547,8.85216,0.178684,-6.80155,8.94362,0.207866,-6.8351,9.09919,0.0828931,-6.8154,9.045,0.165552,-7.15844,9.00121,0.0270987,-7.14637,8.90318,-0.00549888,-7.1349,8.82447,0.0269039,-7.12628,8.78646,0.105828,-7.12573,8.82541,0.184485,-7.13386,8.90445,0.217061,-7.1599,9.05012,0.106309,-7.14925,9.0021,0.185266,-6.97485,8.85324,0.160419,-6.97221,8.82201,0.0928469,-6.98421,8.86968,0.0269517,-6.97993,8.85478,0.173037,-6.97743,8.82154,0.0933598,-6.99003,8.87109,0.0148857,-7.29785,8.83743,0.0476631,-7.28915,8.83765,0.187715,-7.29076,8.80239,0.117536,-7.2936,8.83539,0.198235,-7.29325,8.8028,0.118387,-7.30313,8.834,0.037819,-7.25816,8.99352,0.0313041,-7.24778,8.90054,-0.00227047,-7.23749,8.82613,0.0316757,-7.23023,8.79009,0.113231,-7.22802,8.82713,0.194092,-7.23461,8.90181,0.228226,-7.25532,9.0144,0.113443,-7.24897,8.99456,0.195178,-7.34558,8.97829,0.19805,-7.35245,8.99912,0.120116,-7.33509,8.8828,0.230601,-7.32956,8.79711,0.197129,-7.33232,8.76901,0.119667,-7.33848,8.79609,0.0414228,-7.34763,8.88174,0.00849241,-7.35458,8.97725,0.0415349,-6.94637,9.02817,0.0123083,-6.93831,8.92988,-0.0189614,-6.9284,8.85633,0.0130721,-6.92001,8.81653,0.0890713,-6.91927,8.84932,0.166001,-6.92526,8.93268,0.199085,-6.94523,9.07142,0.0895439,-6.93712,9.03948,0.167727,-7.05441,9.00761,0.0169452,-7.04445,8.91637,-0.0163902,-7.03047,8.83452,0.0169111,-7.02036,8.79188,0.0975457,-7.02096,8.82921,0.178389,-7.03118,8.91551,0.212257,-7.0523,9.03625,0.0978707,-7.04485,9.0126,0.179843,-7.43014,8.9619,0.201487,-7.42872,8.99897,0.125037,-7.41852,8.8681,0.232416,-7.41652,8.7817,0.201823,-7.42257,8.76728,0.125628,-7.42537,8.78077,0.0484707,-7.43093,8.86686,0.0172997,-7.43772,8.9651,0.0517245,-6.99329,8.97449,-0.00114942,-7.30425,8.93933,0.0375656,-6.99212,8.92205,-0.017607,-7.30169,8.89229,0.00202681,-6.9804,8.87235,0.0160168,-7.29329,8.83736,0.0359974,-6.96743,8.82396,0.0926262,-7.28778,8.80389,0.116639,-6.96818,8.8567,0.172338,-7.28338,8.83858,0.196444,-6.97835,8.91646,0.205396,-7.28863,8.89349,0.231117,-6.98659,8.98121,0.181593,-7.2934,8.94433,0.19827,-6.69581,9.10126,-0.00985286,-6.70023,8.88235,-0.00465694,-6.6958,8.83154,0.117055,-6.65929,8.89105,0.167966,-6.68857,8.94742,0.198485,-6.69277,9.05548,0.17453,-6.70713,9.11213,0.0796777,-6.65261,9.13293,-0.390651,-6.65269,9.09555,-0.310408,-6.68731,9.00524,-0.287527,-6.66722,8.91434,-0.305607,-6.6447,8.86808,-0.383592,-6.62493,8.90113,-0.463642,-6.63316,8.97945,-0.49322,-6.62493,9.08706,-0.475592,-7.22454,9.0016,-0.405821,-6.92601,9.05519,-0.352561,-7.22598,8.95862,-0.375769,-6.92658,9.0028,-0.330678,-7.21511,8.91797,-0.407055,-6.91622,8.9471,-0.359431,-7.20383,8.88756,-0.481646,-6.90513,8.90627,-0.433716,-7.19341,8.92018,-0.555301,-6.9012,8.95174,-0.507043,-7.19435,8.96194,-0.587362,-6.90368,9.00531,-0.538654,-7.20321,9.00022,-0.554956,-6.90348,9.05728,-0.522403,-7.33757,9.01653,-0.57243,-7.32393,8.94808,-0.603332,-7.32549,8.87855,-0.57476,-7.33816,8.849,-0.503496,-7.3475,8.87638,-0.43086,-7.35508,8.94497,-0.401144,-7.35893,9.01432,-0.432594,-6.98069,9.08815,-0.367273,-6.97314,9.1088,-0.442634,-6.97691,8.99605,-0.336763,-6.96683,8.91175,-0.367503,-6.95566,8.87068,-0.442541,-6.95117,8.91563,-0.517932,-6.9547,8.99828,-0.548983,-6.96445,9.08227,-0.517726,-6.87576,9.09699,-0.353099,-6.8688,9.11998,-0.425758,-6.87613,9.01135,-0.322509,-6.86844,8.92765,-0.353322,-6.85841,8.88562,-0.426399,-6.85181,8.92947,-0.499202,-6.85103,9.01192,-0.529086,-6.85871,9.09915,-0.498039,-7.25261,9.03343,-0.561688,-7.23934,8.95896,-0.592222,-7.23687,8.89594,-0.561143,-7.24667,8.86529,-0.488786,-7.25891,8.89373,-0.41589,-7.27021,8.95572,-0.385134,-7.26658,9.05269,-0.488869,-7.27514,9.03129,-0.416253,-7.1797,9.04889,-0.398471,-7.16933,9.06772,-0.473322,-7.17457,8.96509,-0.367309,-7.16457,8.90307,-0.398725,-7.15147,8.8713,-0.4735,-7.14296,8.90513,-0.548164,-7.14409,8.96829,-0.579531,-7.15573,9.05112,-0.54828,-7.20306,8.91943,-0.555906,-7.20998,8.88744,-0.481412,-7.22522,8.91739,-0.40737,-7.20707,8.88678,-0.481576,-7.21907,8.91671,-0.416333,-7.20012,8.91938,-0.545717,-6.91018,8.95096,-0.510073,-6.91362,8.90516,-0.43581,-6.9268,8.94549,-0.361695,-6.90644,8.94893,-0.497492,-6.90927,8.90485,-0.434767,-6.92013,8.94271,-0.371603,-7.08336,9.0642,-0.383395,-7.07583,9.10651,-0.457821,-7.0785,8.97911,-0.352893,-7.06721,8.90209,-0.383586,-7.05566,8.86357,-0.458717,-7.05061,8.90364,-0.534012,-7.05234,8.98179,-0.564525,-7.06236,9.06636,-0.532815,-6.78922,9.09618,-0.333,-6.77133,9.1357,-0.409074,-6.79246,9.02121,-0.298622,-6.77842,8.92466,-0.330499,-6.75415,8.87579,-0.407684,-6.74507,8.91366,-0.486408,-6.74751,9.00604,-0.520374,-6.75714,9.08909,-0.486969,-7.19791,9.07371,-0.477818,-7.1857,9.05018,-0.5293,-7.20313,9.04858,-0.426393,-7.20313,9.02613,-0.550813,-7.22613,9.02502,-0.417055,-7.23476,9.04025,-0.536296,-7.24363,9.06476,-0.485084,-7.25004,9.03915,-0.435024,-7.21477,9.05427,-0.52231,-7.2301,9.04872,-0.523384,-7.22651,9.04261,-0.440743,-7.24096,9.04754,-0.445143,-7.23606,9.05344,-0.483672,-7.21131,9.05353,-0.439668,-7.1972,9.05527,-0.518714,-7.20459,9.05864,-0.478709,-7.224,9.06681,-0.481411,-6.89296,9.13309,-0.428599,-6.88292,9.10115,-0.490243,-6.89565,9.09858,-0.367067,-6.90987,9.08788,-0.502739,-6.92511,9.08847,-0.364907,-6.94786,9.1288,-0.437754,-6.94175,9.09522,-0.490331,-6.95165,9.09941,-0.387567,-6.94195,9.10348,-0.39418,-6.92446,9.10973,-0.387328,-6.91569,9.10728,-0.477652,-6.93283,9.10025,-0.478364,-6.93779,9.11823,-0.436691,-6.90471,9.10175,-0.38285,-6.8951,9.10354,-0.478167,-6.90403,9.11957,-0.430861,-6.92203,9.12887,-0.432926,-7.03794,9.12201,-0.194396,-7.01875,9.11218,-0.193122,-7.01158,9.09467,-0.243276,-7.01551,9.09256,-0.142514,-7.05453,9.11034,-0.197006,-7.05117,9.09443,-0.241408,-7.03308,9.09978,-0.241741,-7.03718,9.10161,-0.145891,-7.05641,9.09471,-0.151785,-7.067,9.09038,-0.14372,-7.06133,9.09042,-0.254016,-7.06564,9.12293,-0.197781,-7.03722,9.07875,-0.121398,-7.02766,9.07718,-0.268723,-7.00516,9.09007,-0.125988,-6.9992,9.09211,-0.256487,-7.00716,9.12799,-0.19136,-7.37326,9.0674,-0.225992,-7.35215,9.05847,-0.224348,-7.34698,9.05421,-0.268172,-7.3571,9.05287,-0.181603,-7.38706,9.0519,-0.227549,-7.3907,9.04554,-0.186057,-7.37451,9.04042,-0.182089,-7.3839,9.0463,-0.270482,-7.36701,9.0528,-0.270589,-7.39988,9.03617,-0.174918,-7.3955,9.06389,-0.228667,-7.38988,9.03675,-0.283664,-7.37277,9.02101,-0.156661,-7.35659,9.02138,-0.301866,-7.34727,9.047,-0.167494,-7.33496,9.04809,-0.280582,-7.34505,9.07481,-0.223905,-6.84759,9.08817,-0.251574,-6.83632,9.00725,-0.2927,-6.83077,8.90731,-0.258935,-6.82903,8.85459,-0.174914,-6.84299,8.8933,-0.0922878,-6.85619,8.98661,-0.0598054,-6.86162,9.12986,-0.175449,-6.85855,9.08246,-0.100682,-7.19951,9.0562,-0.290908,-7.18828,8.96518,-0.323641,-7.18254,8.88409,-0.290917,-7.18386,8.84091,-0.211243,-7.19437,8.88283,-0.131693,-7.20722,8.96337,-0.0988343,-7.20951,9.10163,-0.211201,-7.21211,9.05483,-0.131584,-7.03076,8.93061,-0.12792,-7.01986,8.88746,-0.194972,-7.02088,8.93483,-0.261921,-7.03754,8.92992,-0.116889,-7.02352,8.88783,-0.195679,-7.02501,8.93367,-0.275022,-7.35207,8.90359,-0.296327,-7.36463,8.90174,-0.155362,-7.35601,8.86152,-0.22629,-7.37127,8.90105,-0.145958,-7.35944,8.86183,-0.225924,-7.35654,8.90213,-0.306583,-7.30375,9.04691,-0.30351,-7.29401,8.95833,-0.337448,-7.28956,8.88314,-0.303316,-7.29462,8.84066,-0.22131,-7.30385,8.88171,-0.139291,-7.31349,8.95609,-0.105121,-7.3138,9.0665,-0.221034,-7.32019,9.04537,-0.138933,-7.42603,9.02745,-0.153967,-7.42056,9.05021,-0.231169,-7.42026,8.94562,-0.121241,-7.4083,8.87154,-0.153639,-7.40018,8.83446,-0.231318,-7.39259,8.87307,-0.308776,-7.39888,8.94781,-0.341533,-7.41105,9.02884,-0.309002,-6.97302,9.08947,-0.264964,-6.96436,9.00146,-0.296041,-6.96127,8.9085,-0.264505,-6.96352,8.86429,-0.188521,-6.97266,8.90076,-0.112638,-6.98111,8.98738,-0.0813243,-6.97941,9.11418,-0.188825,-6.98226,9.08691,-0.112633,-7.08799,9.07758,-0.282301,-7.07732,8.98273,-0.315384,-7.06965,8.89628,-0.281829,-7.06923,8.85305,-0.200581,-7.08156,8.89486,-0.119452,-7.09556,8.97815,-0.0856487,-7.09278,9.10203,-0.201128,-7.09816,9.07613,-0.119247,-7.51806,9.00911,-0.16659,-7.51132,8.93557,-0.133654,-7.50516,8.85767,-0.16446,-7.50021,8.81576,-0.241312,-7.48976,8.85916,-0.317297,-7.4898,8.93767,-0.347261,-7.50319,9.01057,-0.31463,-7.02216,9.04512,-0.289079,-7.35653,8.99368,-0.30582,-7.02175,8.99515,-0.305998,-7.35129,8.9528,-0.341197,-7.01592,8.93417,-0.27211,-7.34658,8.90423,-0.307103,-7.01578,8.88843,-0.194297,-7.35342,8.86315,-0.22671,-7.02693,8.93032,-0.115433,-7.36052,8.90276,-0.145818,-7.03918,8.98824,-0.0835584,-7.37185,8.95054,-0.112323,-7.03827,9.04164,-0.108034,-7.37002,8.99608,-0.144699,-6.68163,9.0928,-0.244472,-6.69546,8.90642,-0.235676,-6.69217,8.85604,-0.158524,-6.7017,8.89696,-0.0844171,-6.7142,8.98471,-0.0540638,-6.6837,9.12411,-0.0929069,-6.71845,9.1424,-0.16431,-5.86951,9.21105,-0.175842,-5.79701,8.7662,-0.385583,-5.7693,8.89384,-0.520211,-5.77502,8.8033,-0.473093,-5.7638,9.0921,-0.519892,-5.82602,9.09622,0.123908,-5.84427,9.18123,-0.0339205,-5.7776,8.80159,0.0195716,-5.79618,8.96692,0.117803,-5.80296,9.18845,-0.393334,-5.76522,9.01153,-0.537836,-5.83294,8.77518,-0.191201,-5.85582,9.2116,-0.294326,-5.79599,9.14183,-0.474346,-5.65632,9.13004,-0.454535,-5.65902,9.20945,-0.291129,-5.64104,8.78012,-0.203751,-5.6575,9.17884,-0.385474,-5.65666,8.96326,0.047487,-5.64214,8.84798,-0.0553137,-5.65935,9.09078,0.0433802,-5.65577,9.06951,-0.488133,-5.6575,8.82591,-0.437451,-5.65646,8.90378,-0.480968,-5.65656,8.78119,-0.333467,-5.66001,9.21195,-0.17825,-7.51619,9.04903,-0.243385,-7.35843,9.04923,-0.507929,0.202102,6.11933,1.254,0.446821,6.12823,1.15857,0.161361,5.41375,1.28956,0.348257,5.38625,1.15124,0.236799,5.07566,0.940041,0.102598,4.96493,1.00327,0.0590471,4.93477,0.463749,0.0741056,4.93663,0.436198,0.0424693,4.96785,0.0189382,0.0585403,4.96849,0.0181274,0.0865388,5.1676,-0.62113,0.288026,5.10933,-0.571061,0.0695111,5.7645,-0.954723,0.256058,5.79184,-0.970809,0.137647,6.23887,-0.893728,0.259631,6.25827,-0.898473,0.181505,6.51102,-0.738394,0.301089,6.49741,-0.776265,0.64021,5.67636,1.00573,0.690757,6.13792,0.957668,0.944315,6.16301,0.638179,0.919392,5.9986,0.668535,1.09125,6.14465,0.323183,1.10442,6.28075,0.297585,1.07077,6.32757,-0.0292253,1.12205,6.16962,-0.0313013,0.963433,6.18372,-0.484513,0.916064,6.43732,-0.386607,1.10798,6.00133,0.328105,1.15554,5.83177,-0.0662757,0.956103,5.84381,0.682891,0.648029,5.48664,0.95671,0.359276,5.15571,0.942199,0.070438,4.94782,0.0189545,0.666496,6.47578,-0.651394,0.660952,6.24078,-0.811685,0.978748,5.85941,-0.597422,0.647369,5.84801,-0.92455,0.572932,5.18486,-0.677777,0.562285,5.01806,-0.502835,1.04584,5.518,-0.342138,0.946532,5.5397,-0.639306,0.819297,5.30781,-0.607615,0.796208,5.13157,-0.532105,0.0726687,5.43525,-0.855582,0.260682,5.42461,-0.897157,0.606812,5.39572,-0.879982,0.0699445,4.99571,-0.351735,0.143512,5.01101,-0.329955,0.170606,4.93753,-0.315606,0.310897,4.97461,-0.409768,0.19909,5.02238,0.838455,0.0878535,4.91708,0.415256,0.12448,4.55149,0.0181447,0.115702,4.62273,0.372547,0.226214,4.73136,0.745392,0.426023,4.51121,-0.432349,0.275576,4.46358,-0.315785,0.38757,4.87645,0.900632,0.662752,5.08603,0.929042,0.983684,5.4039,0.745963,1.20041,5.52334,0.390292,0.815288,4.81196,-0.465501,1.11883,5.13812,-0.226201,1.28055,5.35383,0.0454625,0.630278,4.66024,-0.492527,0.254271,3.83209,0.129459,0.250389,3.82865,0.358449,0.795948,3.85284,-0.335438,0.628853,3.83925,-0.288805,0.46377,3.83253,-0.241123,0.342778,3.82889,-0.136905,1.09728,3.91271,-0.215706,1.2133,3.95082,0.0102213,0.999159,3.97884,0.625147,1.20407,3.98226,0.24126,0.510677,3.87856,0.768608,0.738215,3.93231,0.771509,0.346094,3.85219,0.613938,0.199479,4.14468,0.0883186,0.193785,4.19581,0.358346,0.810146,4.24782,-0.493108,0.637454,4.18818,-0.436087,0.453529,4.14645,-0.349782,0.316204,4.1275,-0.216993,1.27196,4.54605,-0.0488473,1.11923,4.43283,-0.344665,0.994705,4.61423,0.664226,1.23858,4.66028,0.360957,0.451476,4.34676,0.762432,0.704863,4.46273,0.784615,0.296074,4.26346,0.647497,0.279469,3.56695,0.350919,0.378077,3.57362,0.610081,0.763179,3.61205,0.784711,0.545154,3.58,0.778151,1.18789,3.63743,0.225322,1.01171,3.63763,0.649606,1.18469,3.63596,0.0462727,1.08639,3.63214,-0.164758,0.36396,3.61962,-0.106701,0.472547,3.61998,-0.200527,0.622069,3.61981,-0.245861,0.785805,3.62062,-0.287858,0.280482,3.59457,0.136712,0.310794,3.27408,0.108858,0.315972,3.24404,0.332647,0.79169,3.31854,-0.322428,0.631584,3.32079,-0.284445,0.499508,3.31581,-0.230491,0.39861,3.30815,-0.13043,1.07389,3.31289,-0.176051,1.1448,3.30703,0.0271583,1.04977,3.28812,0.564466,1.15477,3.30832,0.188918,0.631233,3.24059,0.727644,0.796811,3.26964,0.722389,0.410378,3.24519,0.57402,0.431057,2.70669,-0.269775,0.482634,1.96936,-0.280789,0.370175,2.69611,-0.00644183,0.435417,1.9614,-0.0356348,0.394159,2.68494,0.253601,0.456676,1.95738,0.217004,0.454505,2.69049,0.473117,0.54573,1.96253,0.383198,0.679279,2.65864,0.62635,0.716692,1.95707,0.537311,0.865036,2.66224,0.621741,0.852243,1.96137,0.530134,1.10692,2.70714,0.441119,1.08408,1.96329,0.368997,1.22931,2.7028,0.084996,1.19821,1.95717,0.0291508,1.22047,2.71112,-0.107447,1.18772,1.96511,-0.14552,1.12006,2.71904,-0.3145,1.09527,1.96898,-0.31548,0.829777,2.72009,-0.456138,0.841005,1.97159,-0.44557,0.531299,2.71268,-0.369004,0.573089,1.97167,-0.371144,0.672642,2.71717,-0.418103,0.702698,1.97078,-0.415205,0.211812,4.88229,0.794346,0.366024,4.76033,-0.433107,0.0940014,4.7621,0.00924449,0.595508,4.8517,-0.502284,1.08069,5.33433,-0.269866,1.21841,5.59105,-0.00684149,1.18354,5.76689,0.354678,0.973092,5.63022,0.71916,0.648027,5.27274,0.957871,0.804901,4.97857,-0.489809,0.365631,5.01798,0.92737,0.100592,4.77644,0.394224,0.219783,4.71699,-0.335171,1.01176,6.06811,0.499433,1.03346,6.21848,0.47404,1.0393,5.91432,0.508831,1.14744,5.47181,0.570297,1.12732,3.97978,0.434445,1.14211,4.63931,0.521308,1.10201,3.63979,0.43657,1.10403,3.29961,0.354832,1.19054,2.69697,0.252778,1.16215,1.95254,0.187774,1.08553,5.70212,0.539432,0.524795,1.38504,-0.215873,0.508905,1.3895,0.00448297,0.604984,1.38355,0.361719,0.751792,1.39469,0.468996,0.864594,1.38785,0.464007,1.05606,1.37976,0.351734,1.16385,1.36978,0.0208227,1.16201,1.38369,-0.152291,1.08332,1.39486,-0.28458,0.861087,1.39585,-0.385702,0.61014,1.38849,-0.306111,0.737518,1.39455,-0.357141,0.509709,1.37048,0.202719,1.12139,1.36702,0.187705,0.179747,5.80113,1.31062,0.455499,5.81434,1.22207,0.159882,6.37777,-0.814831,0.280389,6.38007,-0.836331,0.665675,5.93489,0.981412,0.931643,6.13581,0.650616,1.09764,6.25382,0.308271,1.09609,6.30008,-0.0304753,0.939227,6.31168,-0.435489,0.66373,6.36004,-0.730744,1.01766,6.18784,0.48132,0.353369,3.72426,-0.121803,0.267377,3.71333,0.133085,0.362085,3.7129,0.612009,0.527915,3.72928,0.77338,0.750697,3.77218,0.77811,1.00544,3.80824,0.637377,1.19598,3.80985,0.233291,1.19899,3.79339,0.028247,1.09183,3.77243,-0.190232,0.790876,3.73673,-0.311648,0.468159,3.72626,-0.220825,0.625461,3.72953,-0.267333,0.264929,3.6978,0.354684,1.11467,3.80978,0.435507,0.295638,3.43433,0.122785,0.788747,3.46958,-0.305143,0.626826,3.4703,-0.265153,0.486028,3.46789,-0.215509,0.381285,3.46388,-0.118565,1.16474,3.4715,0.0367155,1.08014,3.47251,-0.170404,1.03074,3.46287,0.607036,1.17133,3.47287,0.20712,0.588193,3.41029,0.752897,0.779995,3.44085,0.75355,0.394227,3.4094,0.59205,0.29772,3.40549,0.341783,1.10302,3.4697,0.395701,1.10793,0.294454,0.180335,0.524089,0.297754,0.194666,0.741532,0.320729,-0.339718,0.61995,0.314945,-0.29101,0.859478,0.321968,-0.366979,1.0716,0.321021,-0.270458,1.14671,0.310359,-0.144189,1.14846,0.297085,0.0210469,1.04558,0.306614,0.3369,0.862826,0.314334,0.444064,0.755156,0.32086,0.448826,0.615029,0.310232,0.34643,0.523322,0.315905,0.00545075,0.538488,0.311654,-0.204878,-0.202102,6.11933,1.254,-0.446821,6.12823,1.15857,2.66684e-15,6.11519,1.26609,0,5.43088,1.31914,-0.161361,5.41375,1.28956,-0.348257,5.38625,1.15124,-0.236799,5.07566,0.940041,-0.102598,4.96493,1.00327,0,4.94287,1.00406,0,4.92531,0.467763,-0.0590471,4.93477,0.463749,-0.0741056,4.93663,0.436198,-0.0424693,4.96785,0.0189382,-0.0585403,4.96849,0.0181274,0,4.96605,0.0185854,0,5.21195,-0.625146,-0.0865388,5.1676,-0.62113,-0.288026,5.10933,-0.571061,-0.0695111,5.7645,-0.954723,-1.77997e-15,5.74233,-0.922814,-0.256058,5.79184,-0.970809,-0.137647,6.23887,-0.893728,-0.259631,6.25827,-0.898473,3.55608e-15,6.26041,-0.838631,-0.181505,6.51102,-0.738394,4.44397e-15,6.49838,-0.691591,-0.301089,6.49741,-0.776265,-0.64021,5.67636,1.00573,-0.690757,6.13792,0.957668,-0.944315,6.16301,0.638179,-0.919392,5.9986,0.668535,-1.09125,6.14465,0.323183,-1.10442,6.28075,0.297585,-1.07077,6.32757,-0.0292253,-1.12205,6.16962,-0.0313013,-0.963433,6.18372,-0.484513,-0.916064,6.43732,-0.386607,-1.10798,6.00133,0.328105,-1.15554,5.83177,-0.0662757,-0.956103,5.84381,0.682891,-0.648029,5.48664,0.95671,-0.359276,5.15571,0.942199,-0.070438,4.94782,0.0189545,-0.666496,6.47578,-0.651394,-0.660952,6.24078,-0.811685,-0.978748,5.85941,-0.597422,-0.647369,5.84801,-0.92455,-0.572932,5.18486,-0.677777,-0.562285,5.01806,-0.502835,-1.04584,5.518,-0.342138,-0.946532,5.5397,-0.639306,-0.819297,5.30781,-0.607615,-0.796208,5.13157,-0.532105,9.05965e-16,5.45268,-0.830096,-0.0726687,5.43525,-0.855582,-0.260682,5.42461,-0.897157,-0.606812,5.39572,-0.879982,0,5.01691,-0.354513,-0.0699445,4.99571,-0.351735,-0.143512,5.01101,-0.329955,-0.170606,4.93753,-0.315606,-0.310897,4.97461,-0.409768,-0.19909,5.02238,0.838455,-0.0878535,4.91708,0.415256,-0.12448,4.55149,0.0181447,-0.115702,4.62273,0.372547,-0.226214,4.73136,0.745392,-0.426023,4.51121,-0.432349,-0.275576,4.46358,-0.315785,-0.38757,4.87645,0.900632,-0.662752,5.08603,0.929042,-0.983684,5.4039,0.745963,-1.20041,5.52334,0.390292,-0.815288,4.81196,-0.465501,-1.11883,5.13812,-0.226201,-1.28055,5.35383,0.0454625,-0.630278,4.66024,-0.492527,-0.254271,3.83209,0.129459,-0.250389,3.82865,0.358449,-0.795948,3.85284,-0.335438,-0.628853,3.83925,-0.288805,-0.46377,3.83253,-0.241123,-0.342778,3.82889,-0.136905,-1.09728,3.91271,-0.215706,-1.2133,3.95082,0.0102213,-0.999159,3.97884,0.625147,-1.20407,3.98226,0.24126,-0.510677,3.87856,0.768608,-0.738215,3.93231,0.771509,-0.346094,3.85219,0.613938,-0.199479,4.14468,0.0883186,-0.193785,4.19581,0.358346,-0.810146,4.24782,-0.493108,-0.637454,4.18818,-0.436087,-0.453529,4.14645,-0.349782,-0.316204,4.1275,-0.216993,-1.27196,4.54605,-0.0488473,-1.11923,4.43283,-0.344665,-0.994705,4.61423,0.664226,-1.23858,4.66028,0.360957,-0.451476,4.34676,0.762432,-0.704863,4.46273,0.784615,-0.296074,4.26346,0.647497,-0.279469,3.56695,0.350919,-0.378077,3.57362,0.610081,-0.763179,3.61205,0.784711,-0.545154,3.58,0.778151,-1.18789,3.63743,0.225322,-1.01171,3.63763,0.649606,-1.18469,3.63596,0.0462727,-1.08639,3.63214,-0.164758,-0.36396,3.61962,-0.106701,-0.472547,3.61998,-0.200527,-0.622069,3.61981,-0.245861,-0.785805,3.62062,-0.287858,-0.280482,3.59457,0.136712,-0.310794,3.27408,0.108858,-0.315972,3.24404,0.332647,-0.79169,3.31854,-0.322428,-0.631584,3.32079,-0.284445,-0.499508,3.31581,-0.230491,-0.39861,3.30815,-0.13043,-1.07389,3.31289,-0.176051,-1.1448,3.30703,0.0271583,-1.04977,3.28812,0.564466,-1.15477,3.30832,0.188918,-0.631233,3.24059,0.727644,-0.796811,3.26964,0.722389,-0.410378,3.24519,0.57402,-0.431057,2.70669,-0.269775,-0.482634,1.96936,-0.280789,-0.370175,2.69611,-0.00644183,-0.435417,1.9614,-0.0356348,-0.394159,2.68494,0.253601,-0.456676,1.95738,0.217004,-0.454505,2.69049,0.473117,-0.54573,1.96253,0.383198,-0.679279,2.65864,0.62635,-0.716692,1.95707,0.537311,-0.865036,2.66224,0.621741,-0.852243,1.96137,0.530134,-1.10692,2.70714,0.441119,-1.08408,1.96329,0.368997,-1.22931,2.7028,0.084996,-1.19821,1.95717,0.0291508,-1.22047,2.71112,-0.107447,-1.18772,1.96511,-0.14552,-1.12006,2.71904,-0.3145,-1.09527,1.96898,-0.31548,-0.829777,2.72009,-0.456138,-0.841005,1.97159,-0.44557,-0.531299,2.71268,-0.369004,-0.573089,1.97167,-0.371144,-0.672642,2.71717,-0.418103,-0.702698,1.97078,-0.415205,-0.211812,4.88229,0.794346,-0.366024,4.76033,-0.433107,-0.0940014,4.7621,0.00924449,-0.595508,4.8517,-0.502284,-1.08069,5.33433,-0.269866,-1.21841,5.59105,-0.00684149,-1.18354,5.76689,0.354678,-0.973092,5.63022,0.71916,-0.648027,5.27274,0.957871,-0.804901,4.97857,-0.489809,-0.365631,5.01798,0.92737,-0.100592,4.77644,0.394224,-0.219783,4.71699,-0.335171,-1.01176,6.06811,0.499433,-1.03346,6.21848,0.47404,-1.0393,5.91432,0.508831,-1.14744,5.47181,0.570297,-1.12732,3.97978,0.434445,-1.14211,4.63931,0.521308,-1.10201,3.63979,0.43657,-1.10403,3.29961,0.354832,-1.19054,2.69697,0.252778,-1.16215,1.95254,0.187774,-1.08553,5.70212,0.539432,-0.524795,1.38504,-0.215873,-0.508905,1.3895,0.00448297,-0.604984,1.38355,0.361719,-0.751792,1.39469,0.468996,-0.864594,1.38785,0.464007,-1.05606,1.37976,0.351734,-1.16385,1.36978,0.0208227,-1.16201,1.38369,-0.152291,-1.08332,1.39486,-0.28458,-0.861087,1.39585,-0.385702,-0.61014,1.38849,-0.306111,-0.737518,1.39455,-0.357141,-0.509709,1.37048,0.202719,-1.12139,1.36702,0.187705,-8.89076e-16,5.80808,1.2854,-0.179747,5.80113,1.31062,-0.455499,5.81434,1.22207,4.88856e-15,6.38153,-0.76427,-0.159882,6.37777,-0.814831,-0.280389,6.38007,-0.836331,-0.665675,5.93489,0.981412,-0.931643,6.13581,0.650616,-1.09764,6.25382,0.308271,-1.09609,6.30008,-0.0304753,-0.939227,6.31168,-0.435489,-0.66373,6.36004,-0.730744,-1.01766,6.18784,0.48132,-0.353369,3.72426,-0.121803,-0.267377,3.71333,0.133085,-0.362085,3.7129,0.612009,-0.527915,3.72928,0.77338,-0.750697,3.77218,0.77811,-1.00544,3.80824,0.637377,-1.19598,3.80985,0.233291,-1.19899,3.79339,0.028247,-1.09183,3.77243,-0.190232,-0.790876,3.73673,-0.311648,-0.468159,3.72626,-0.220825,-0.625461,3.72953,-0.267333,-0.264929,3.6978,0.354684,-1.11467,3.80978,0.435507,-0.295638,3.43433,0.122785,-0.788747,3.46958,-0.305143,-0.626826,3.4703,-0.265153,-0.486028,3.46789,-0.215509,-0.381285,3.46388,-0.118565,-1.16474,3.4715,0.0367155,-1.08014,3.47251,-0.170404,-1.03074,3.46287,0.607036,-1.17133,3.47287,0.20712,-0.588193,3.41029,0.752897,-0.779995,3.44085,0.75355,-0.394227,3.4094,0.59205,-0.29772,3.40549,0.341783,-1.10302,3.4697,0.395701,-1.10793,0.294454,0.180335,-0.524089,0.297754,0.194666,-0.741532,0.320729,-0.339718,-0.61995,0.314945,-0.29101,-0.859478,0.321968,-0.366979,-1.0716,0.321021,-0.270458,-1.14671,0.310359,-0.144189,-1.14846,0.297085,0.0210469,-1.04558,0.306614,0.3369,-0.862826,0.314334,0.444064,-0.755156,0.32086,0.448826,-0.615029,0.310232,0.34643,-0.523322,0.315905,0.00545075,-0.538488,0.311654,-0.204878,-0.192241,10.3794,-0.743572,-0.0197206,10.3091,-0.766787,0.201106,9.79205,0.538102,-0.620924,10.3055,-0.144583,0.607833,10.1717,-0.104929,0.533473,10.2292,-0.411271,0.358467,10.2701,-0.689836,0.158504,10.2714,-0.758145,0.525118,10.1549,0.0445123,-0.395702,10.4227,-0.67413,-0.559998,10.37,-0.398389,-0.557157,10.2158,0.0762444,-0.522547,10.1434,0.28518,-0.368166,10.0216,0.394988,0.468227,10.1117,0.131367,0.332485,9.84833,0.43429,0.4276,10.0292,0.229741,-0.0424529,9.8035,0.5692,-0.29824,9.92511,0.465696,-0.185903,9.86678,0.515466,-0.543499,10.154,-0.138455,0.520575,10.0201,-0.147968,-0.0190935,10.0576,-0.738599,-0.380643,10.1461,-0.649498,0.344579,9.97681,-0.664602,-0.538634,10.1396,-0.384341,0.512868,9.93755,-0.396728,0.434113,10.0551,0.11098,-0.511419,10.1311,0.0552057,0.466966,10.0736,0.0104088,-0.184992,10.1045,-0.716275,0.152291,10.0006,-0.730289,0.181343,9.76696,0.480314,-0.0432173,9.77945,0.517603,-0.286314,9.89996,0.42006,-0.488971,10.0662,0.217173,0.309044,9.82852,0.378949,0.381365,10.0016,0.193109,-0.363157,9.99407,0.351247,-0.176063,9.84126,0.465752,-0.258325,9.76307,0.672439,-0.268667,9.76452,0.617345,-0.331039,9.68016,0.436026,-0.287666,9.82746,0.49627,-0.298112,9.81855,0.452347,-0.195744,9.8923,0.56518,-0.232779,9.82498,0.684348,-0.340318,9.70072,0.436046,-0.35139,9.52749,0.48094,-0.294157,9.8064,0.428414,-0.298364,9.82642,0.471419,-0.293029,9.82602,0.488563,-0.2964,9.81677,0.4302,-0.295964,9.77442,0.416508,-0.291307,9.81306,0.538657,-0.379929,9.59025,0.489731,-0.322943,9.72961,0.428446,-0.357578,9.63057,0.467797,-0.327499,9.74802,0.429718,-0.262457,9.76469,0.636347,-0.27988,9.82885,0.512443,-0.48762,9.80961,0.312314,-0.482854,9.9048,0.464051,-0.660099,9.62325,0.350099,-0.538058,9.77054,0.303843,-0.60721,9.66821,0.326059,-0.560239,9.78263,0.31914,-0.424937,9.88342,0.55409,-0.467596,9.90937,0.444241,-0.602741,9.82752,0.124501,-0.660318,9.85885,0.177725,-0.792466,9.61789,-0.0243661,-0.816871,9.73648,0.0295829,-0.634775,9.93625,0.315278,-0.373175,10.0491,0.438728,-0.701767,9.7468,0.0131154,-0.63052,9.94386,0.314136,-0.505399,10.0261,0.51595,-0.796093,9.716,0.0370114,-0.52442,10.027,0.457758,-0.607239,9.9831,0.354788,-0.913534,9.6918,0.05754,-0.677815,9.78142,0.0634265,-0.532187,10.026,0.444873,-0.758482,9.8044,0.10812,-0.506402,10.0511,0.543827,-0.647384,9.88329,0.23038,-0.609456,10.0032,0.363669,-0.646144,9.87572,0.192378,-0.640002,9.91478,0.299149,0.612371,9.772,-0.371671,0.593483,9.76332,-0.0614647,0.674537,9.62545,-0.133485,0.788426,9.65384,-0.113125,0.725368,9.69754,-0.11998,0.682017,9.68629,-0.415289,0.66275,9.683,-0.123176,0.572987,9.73047,-0.441778,0.545471,9.71926,-0.125758,0.665431,9.85454,-0.183909,0.623227,9.85051,0.0579934,0.658441,9.86838,0.0927399,0.661063,9.83787,0.0410357,0.739287,9.75804,-0.320577,0.716445,9.753,-0.0372122,0.577416,9.82976,-0.00512039,0.656151,9.9866,0.163366,0.747325,9.89092,-0.141548,0.728352,9.89066,0.120091,0.701168,9.93727,-0.0940868,0.686178,9.93706,0.149316,0.678376,9.94652,0.151284,0.627932,10.0024,-0.0439428,0.653378,10.0069,0.165356,0.625329,10.0789,0.0863175,0.590567,10.0434,0.240136,0.626209,10.0885,0.100655,0.591078,10.0724,0.261621,0.473835,10.0568,0.266374,0.619095,10.1594,0.1683,0.600279,10.1262,0.316575,0.568876,10.1247,0.33938,0.446485,9.75199,0.315358,0.53749,9.54851,0.377587,0.507838,9.60876,0.347823,0.476758,9.71717,0.306545,0.483528,9.63591,0.322048,0.451278,9.69487,0.29575,0.425526,9.83389,0.352051,0.427385,9.857,0.37301,0.424755,9.81493,0.339976,0.439136,9.77349,0.328576,0.434673,9.79756,0.331725,0.436351,9.92214,0.459388,0.461983,9.8819,0.415148,0.455456,9.89986,0.437735,0.446945,9.91136,0.450685,0.447105,9.92308,0.485832,0.491176,9.8955,0.492412,0.355927,9.86814,0.48963,0.427878,9.90428,0.576285,-0.696225,9.80713,-0.367239,-0.803908,9.61928,-0.386288,-0.959361,9.69365,-0.414351,-0.719748,9.76698,-0.409719,-0.827246,9.72887,-0.408421,-0.673449,9.91829,-0.217221,-0.639176,9.89809,-0.262859,-0.667133,9.8607,-0.328016,-0.77346,9.81256,-0.394308,-0.644496,9.9851,-0.0128183,-0.690045,9.92698,-0.194245,-0.65159,9.92768,-0.0839027,-0.677941,10.2002,0.339069,-0.641412,9.99157,0.0217382,-0.616479,10.1857,0.246132,-0.613733,10.1649,0.242645,-0.556124,10.2205,0.353187,-0.679228,10.227,0.410003,-0.55348,9.72268,0.293558,-0.482288,9.89991,0.421459,-0.417526,9.8839,0.603793,-0.43497,9.87999,0.546982,-0.601346,9.57268,0.298101,-0.588771,9.73729,0.301665,-0.499457,9.87569,0.36371,-0.496963,9.86765,0.342725,-0.496858,9.85443,0.334305,-0.498337,9.89203,0.396565,-0.490226,9.89667,0.415778,-0.310167,9.95026,0.511332,-0.383552,9.93287,0.635975,0.483407,9.90432,0.522957,0.45359,9.89826,0.540269,0.240678,9.70379,0.492114,-0.0416884,9.73283,0.550112,0.219953,9.70588,0.448748,-0.0416884,9.73308,0.513944,0.235436,9.66588,0.45631,-0.0416884,9.66964,0.52868,0.256079,9.50078,0.576614,-0.0416884,9.50553,0.627771,0.229565,9.6818,0.453221,-0.0416884,9.69154,0.519589,0.250381,9.64063,0.461776,-0.0416884,9.64311,0.539113,0.258381,9.58918,0.497106,-0.0416884,9.59043,0.575694,0.26337,9.55913,0.514623,-0.0416884,9.56561,0.592957,0.242806,9.62264,0.469237,-0.0416884,9.62199,0.548445,0.235307,9.70669,0.470643,-0.0416884,9.73223,0.538465,0.23103,9.70465,0.465169,-0.0416884,9.74044,0.507813,0.217536,9.69765,0.443949,-0.0416884,9.7155,0.505522,-0.0420899,9.71246,0.615796,0.230936,9.70849,0.545575,-0.0416884,9.7849,0.720469,-0.0416884,9.732,0.58387,0.228567,9.70319,0.521806,-0.0416884,9.73152,0.571002,0.231431,9.70141,0.5136,-0.0433006,9.71805,0.732557,-0.0416884,9.73117,0.56281,0.233583,9.70063,0.507318,0.230709,9.75618,0.662566,-0.0483091,9.70225,0.723667,0.233463,9.74546,0.653521,-0.0476851,9.69417,0.686055,0.235838,9.70884,0.611723,-0.0416884,9.82755,0.620796,0.220869,9.81713,0.595889,0.242416,9.79455,0.682266,-0.0249139,10.6685,-1.02245,0.598196,10.1839,0.222701,-0.855797,10.4714,-0.133852,-0.519882,10.8443,-0.887818,0.164718,10.5421,-0.786002,-0.19949,10.6543,-0.770869,0.583271,10.2362,0.0786157,-0.602894,10.3004,0.097283,0.50234,10.1683,0.151753,0.554079,10.5209,-0.425814,-0.581362,10.6005,-0.412437,0.372356,10.5633,-0.715071,-0.41076,10.6992,-0.698761,-0.0203478,10.5606,-0.794975,0.695091,10.3233,-0.0618889,-0.698349,10.4569,-0.15071,0.17381,10.3197,-0.999362,0.633326,10.0978,-0.0616496,-0.6666,10.1205,-0.0354692,-0.656479,10.2675,-0.342737,0.639416,10.2199,-0.638709,-0.569912,10.3662,-0.882442,0.767497,10.1422,-0.33165,-0.0353277,10.4344,-1.09467,-0.214703,10.5235,-1.33517,-0.390166,10.5185,-1.2094,0.398251,10.2871,-0.954468,0.179708,10.3391,-1.08094,0.632942,10.1101,-0.0476796,-0.663268,10.1394,-0.0161691,-0.649825,10.2714,-0.336666,0.643092,10.2515,-0.725472,-0.563592,10.37,-0.876061,0.768119,10.1524,-0.318485,-0.0329243,10.4502,-1.07316,-0.213639,10.5391,-1.34072,-0.38563,10.5313,-1.20007,0.403537,10.3088,-1.02366,0.737327,10.0784,-0.448235,-0.0598781,10.2728,-1.31429,-0.225577,10.3633,-1.27847,-0.436503,10.3875,-1.3058,0.344262,10.0653,-1.32837,-0.535634,10.3868,-0.846946,0.667437,10.5003,-0.693895,-0.620532,10.2887,-0.307596,0.635148,10.1897,0.023018,0.822558,10.2853,-0.182061,-0.212257,10.5723,-1.33338,-0.365562,10.555,-1.15847,0.447262,10.5486,-0.991641,0.191314,10.4762,-1.08667,0.141683,9.93648,-1.42751,-0.000190979,10.0576,-1.34754,-0.177683,10.0922,-1.31086,0.747842,9.92456,-0.243755,-0.684167,10.0151,-0.271306,-0.657919,9.92183,-0.0979201,0.707687,9.93682,-0.590067,-0.740857,10.0711,-0.547746,0.503926,9.86542,-1.04188,0.320817,9.89973,-1.31959,-0.38373,10.0241,-1.18439,-0.569291,10.1427,-0.882946,-0.651024,10.2274,0.0671914,-0.0258682,10.5054,-1.11521,0.135039,9.94872,-1.40749,-0.0302296,10.0449,-1.38024,-0.222688,10.0702,-1.37947,0.692718,9.94672,-0.0874986,0.740021,9.93341,-0.227898,-0.680032,10.0146,-0.256444,0.701863,9.95179,-0.552432,-0.745389,10.088,-0.513048,0.499479,9.86676,-1.01568,0.315023,9.90766,-1.29876,-0.43522,10.0046,-1.26088,-0.602186,10.1203,-0.94007,0.111574,10.1174,-1.39577,-0.0536488,10.2484,-1.41964,-0.204236,10.3517,-1.38805,0.646334,9.98488,-0.050721,0.741729,10.0176,-0.197392,-0.690427,10.0812,-0.186356,0.715095,10.0631,-0.467266,-0.709572,10.2113,-0.419907,0.500551,9.96927,-0.997358,0.312148,10.0257,-1.29336,-0.420833,10.3319,-1.26609,-0.606106,10.2946,-0.934136,0.873553,10.3672,-0.140417,0.472959,10.672,-0.908823,-0.736173,10.7191,-0.577402,0.70335,10.6182,-0.595762,-0.66017,10.3123,0.138235,0.690109,10.2363,0.0879279,-0.252032,10.7873,-0.990222,0.209714,10.6451,-1.00526,0.113565,10.1206,-1.28537,0.747346,10.0267,-0.186011,-0.701578,10.0788,-0.176381,0.530153,9.9979,-1.01428,-0.634467,10.3273,-0.94927,-0.724671,10.2275,-0.404712,-0.459751,9.66598,-1.03592,0.340411,9.73648,-1.07636,0.593542,9.83051,-0.265798,-0.555117,9.76219,-0.743168,0.537519,9.71721,-0.826327,-0.636999,9.81877,-0.489072,0.60768,9.79123,-0.513109,-0.0313179,9.65044,-1.30734,-0.27951,9.59555,-1.20135,0.184525,9.72007,-1.22938,-0.14418,9.62538,-1.27994,0.0698515,9.68019,-1.29099,-0.0163831,9.77928,-1.3649,-0.137204,9.74887,-1.33475,0.101484,9.78634,-1.34463,-0.657115,9.89571,-0.430914,0.655538,9.84164,-0.407443,-0.592833,9.85352,-0.697053,0.596661,9.79166,-0.764358,-0.295363,9.65189,-1.24153,0.228697,9.79587,-1.27481,-0.504645,9.74653,-1.03093,0.392029,9.79405,-1.08968,-0.00173437,9.76095,-1.41842,-0.142004,9.71917,-1.38465,0.130891,9.77446,-1.39394,0.69182,9.85561,-0.173129,-0.680041,9.90936,-0.417169,0.695882,9.82034,-0.39432,-0.628205,9.87967,-0.701242,0.642336,9.77554,-0.784873,-0.301992,9.6329,-1.28685,0.265446,9.78674,-1.31224,-0.542701,9.75255,-1.06893,0.437511,9.78613,-1.11368,-0.0140289,8.99192,-1.24624,-0.125271,9.02779,-1.22492,0.0928789,9.03023,-1.23042,-0.694023,9.59899,-0.680932,0.632437,9.60185,-0.735909,-0.582589,9.39442,-0.890996,0.519659,9.48926,-0.929486,-0.261573,9.10537,-1.1613,0.213119,9.13698,-1.17715,-0.426122,9.17758,-1.04045,0.346674,9.32487,-1.0645,-0.00894995,8.55837,-1.30413,-0.249749,8.51351,-1.2734,0.25134,8.605,-1.27203,0.816867,9.65301,-0.371601,-0.95262,9.47232,-0.796524,0.911374,9.5498,-0.725978,-0.873762,9.20785,-1.00201,0.86504,9.37662,-0.937361,-0.496526,8.52894,-1.17276,0.508358,8.73763,-1.17858,-0.716877,8.84222,-1.05872,0.713102,8.99926,-1.03391,-0.00711289,8.74462,-1.23275,-0.16713,8.78278,-1.20915,0.172865,8.78028,-1.21027,-0.811548,9.5318,-0.770524,0.756538,9.58542,-0.764939,-0.718454,9.29084,-0.957958,0.689869,9.4333,-0.94619,-0.343117,8.87836,-1.13077,0.352703,8.89042,-1.14098,-0.546884,9.01011,-1.03691,0.53344,9.13627,-1.02559,-0.0123506,8.84576,-1.37816,-0.174944,8.9033,-1.34565,0.164328,8.88346,-1.36554,-0.848548,9.74968,-0.426032,0.754624,9.71502,-0.427946,-0.856201,9.52718,-0.770012,0.8143,9.62215,-0.748507,-0.753848,9.30691,-0.984293,0.663675,9.50861,-0.973239,-0.348299,9.04174,-1.2567,0.31407,9.02861,-1.30205,-0.573278,9.08041,-1.1265,0.470137,9.31318,-1.15522,-0.635387,9.4435,-1.06352,0.536177,9.56072,-1.09435,-0.764123,9.57083,-0.86449,0.710015,9.63287,-0.929135,-0.795232,9.70753,-0.599381,0.784098,9.71599,-0.65947,-0.0194991,9.29034,-1.39314,-0.449183,9.33794,-1.24429,0.332813,9.49067,-1.27034,-0.219644,9.27925,-1.35629,0.150049,9.37282,-1.36865,-0.174565,8.65158,-1.07132,0.176058,8.71488,-1.07271,-0.783763,9.49074,-0.709644,0.730805,9.51369,-0.752101,0.676243,9.63359,-0.376644,-0.533001,8.9239,-0.928315,0.531938,9.04527,-0.912461,-0.356395,8.7114,-1.00306,0.367158,8.82447,-1.01255,-0.00635651,8.66683,-1.09171,-0.77773,9.1879,-0.864416,0.67086,9.33867,-0.858618,-0.627545,9.59959,-0.772288,0.573011,9.64773,-0.864843,-0.03157,9.35785,-1.24259,-0.344578,9.38058,-1.12738,0.233348,9.51363,-1.15791,-0.500991,9.4718,-0.972831,0.398608,9.58556,-1.02566,-0.682959,9.73757,-0.525867,0.645528,9.72512,-0.615347,-0.169056,9.3381,-1.21202,0.0903418,9.41872,-1.22396,-0.154779,9.59189,-1.37056,0.118548,9.65379,-1.38089,-0.706833,9.87106,-0.461265,0.709876,9.79288,-0.462235,-0.660297,9.88311,-0.29564,0.660852,9.82515,-0.197694,-0.536181,9.66162,-1.08207,0.433097,9.74197,-1.12149,-0.320723,9.55027,-1.27464,0.251472,9.71576,-1.30146,-0.00735954,9.6146,-1.40423,-0.624868,9.79976,-0.743375,0.643912,9.72709,-0.836435,-0.714904,9.97125,-0.712415,0.735316,9.85589,-0.77226,-0.00194463,9.84459,-1.56953,-0.369803,9.67669,-1.41213,0.350985,9.85691,-1.42949,-0.634666,9.84911,-1.14084,0.521799,9.8581,-1.18423,-0.706991,9.9755,-0.368519,0.791056,9.87972,-0.335052,-0.178,9.77838,-1.53085,0.177574,9.87033,-1.5356,5.64066,8.78992,-0.205702,7.67367,8.98887,-0.257284,7.67785,8.98177,-0.195032,7.66119,8.93969,-0.168375,7.64233,8.89347,-0.192492,7.63468,8.86767,-0.25454,7.62984,8.89469,-0.316354,7.64359,8.9414,-0.342848,7.66534,8.983,-0.31926,7.36813,8.99103,-0.153122,7.37048,8.95092,-0.122221,7.35905,8.90997,-0.152585,7.35028,8.87263,-0.226288,7.3459,8.91132,-0.300081,7.35183,8.95288,-0.331212,7.35643,8.98862,-0.2972,7.68212,8.93162,-0.258698,7.50006,9.0028,-0.309173,7.49028,8.93774,-0.337273,7.49004,8.86605,-0.310058,7.49957,8.82574,-0.241167,7.50402,8.86469,-0.171491,7.50982,8.93583,-0.143537,7.48931,9.02914,-0.237117,7.51388,9.00146,-0.171497,7.50828,8.9919,-0.303046,7.49858,9.01534,-0.238331,7.52074,8.99069,-0.179359,7.66615,8.97468,-0.200177,7.65489,8.97579,-0.312017,7.66549,8.98986,-0.256449,7.67931,8.98573,-0.201559,7.68684,9.00343,-0.258468,7.66808,8.98684,-0.313078,7.51031,9.00683,-0.303224,7.5228,9.00563,-0.179259,7.49764,9.0311,-0.237917,7.41098,9.02169,-0.302008,7.40034,8.94765,-0.331642,7.39581,8.87986,-0.302179,7.40377,8.84379,-0.231577,7.41008,8.87847,-0.160617,7.41957,8.94571,-0.131217,7.4183,9.04047,-0.231052,7.42471,9.0203,-0.160831,7.35981,8.90884,-0.299924,7.36493,8.87016,-0.226516,7.37328,8.90771,-0.15314,7.35761,8.87139,-0.2264,7.36572,8.90999,-0.160907,7.35314,8.9119,-0.290874,7.58355,8.98861,-0.319821,7.56884,8.93649,-0.340851,7.5611,8.88014,-0.313708,7.5682,8.85187,-0.247987,7.57442,8.87885,-0.181643,7.58745,8.93466,-0.155815,7.59712,8.98694,-0.178143,7.5951,8.97801,-0.18531,7.58293,8.9795,-0.31258,7.58586,8.99385,-0.313324,7.59812,8.99232,-0.184682,7.5938,9.01355,-0.248995,7.35581,9.01553,-0.293789,7.3707,9.01439,-0.16387,7.38961,9.02875,-0.277662,7.396,9.0539,-0.22882,7.39954,9.02785,-0.180452,7.36547,9.04415,-0.265814,7.3837,9.03736,-0.266001,7.37227,9.0321,-0.187161,7.39133,9.03664,-0.190574,7.38672,9.04192,-0.228059,7.37112,9.05764,-0.226512,7.22199,9.05703,-0.481868,7.2361,9.04345,-0.484244,7.24164,9.03862,-0.449619,7.22417,9.0342,-0.445616,7.23048,9.03968,-0.519118,7.21371,9.0455,-0.517628,7.2496,9.03079,-0.440498,7.24437,9.05479,-0.485362,7.23509,9.03215,-0.530447,7.22367,9.01834,-0.424075,7.20292,9.02012,-0.542822,7.42713,9.01878,-0.51498,7.43482,8.9984,-0.454332,7.41603,9.00055,-0.575662,7.41329,8.98704,-0.574873,7.43192,8.98493,-0.454839,7.43422,8.99319,-0.448104,7.42634,8.94419,-0.426681,7.41264,8.89244,-0.450764,7.40309,8.86803,-0.513487,7.39264,8.89438,-0.575284,7.39838,8.94693,-0.601148,7.41346,8.99552,-0.581726,7.20117,8.92805,-0.540859,7.21949,8.92543,-0.421197,7.20789,8.89674,-0.481568,7.22654,8.92458,-0.414196,7.21458,8.89629,-0.482093,7.20631,8.9266,-0.549742,7.27355,9.02413,-0.423046,7.26445,9.04292,-0.488691,7.26915,8.95598,-0.395074,7.26034,8.90111,-0.422494,7.25015,8.87466,-0.489152,7.24037,8.90309,-0.555085,7.2416,8.95886,-0.582484,7.25311,9.02619,-0.554814,7.33648,9.03499,-0.499217,7.36266,9.01079,-0.445092,7.34484,9.0126,-0.561798,7.4941,8.99395,-0.57974,7.5148,9.00905,-0.52901,7.51091,8.9923,-0.474891,7.49453,8.99636,-0.525996,7.48171,8.98368,-0.578128,7.49857,8.98203,-0.472899,7.36064,8.99677,-0.445139,7.33752,9.02026,-0.499767,7.34294,8.99858,-0.561602,7.35455,9.00668,-0.437318,7.32889,9.03298,-0.498068,7.35313,8.94542,-0.410942,7.34656,8.88388,-0.437412,7.33835,8.859,-0.503372,7.32665,8.88585,-0.56802,7.32511,8.94823,-0.593403,7.33482,9.00869,-0.566864,7.51001,8.94193,-0.529288,7.20387,8.99504,-0.546426,7.19573,8.96231,-0.577465,7.19326,8.92766,-0.548665,7.20123,8.89719,-0.481048,7.21348,8.92564,-0.41327,7.22424,8.95938,-0.385587,7.22232,8.99654,-0.414157,7.49116,8.99035,-0.585461,7.46928,8.95143,-0.606858,7.45778,8.90774,-0.581315,7.46585,8.88228,-0.52321,7.4765,8.90592,-0.464756,7.49563,8.94887,-0.44273,7.50989,8.98852,-0.468659,7.50216,8.99541,-0.527219,7.58741,8.93709,0.134064,7.58186,8.93051,0.196565,7.56181,8.88586,0.221065,7.54728,8.83614,0.194925,7.54908,8.80787,0.132604,7.55445,8.83544,0.0701572,7.57191,8.88488,0.045287,7.58908,8.92982,0.071403,7.29306,8.93653,0.189577,7.28796,8.8947,0.221162,7.28015,8.85436,0.189642,7.28162,8.81904,0.116503,7.28858,8.85353,0.0425592,7.2997,8.89355,0.0119873,7.30298,8.9317,0.0462981,7.59413,8.87617,0.134796,7.43542,8.94914,0.0556602,7.42946,8.87999,0.0271865,7.4242,8.8096,0.0551961,7.42196,8.78057,0.125455,7.41618,8.81038,0.194793,7.41824,8.88108,0.222372,7.41527,8.97763,0.125096,7.42746,8.94993,0.194379,7.44196,8.93751,0.063173,7.42369,8.9631,0.125522,7.43478,8.93822,0.18779,7.57174,8.92268,0.189761,7.57824,8.92206,0.0770924,7.57977,8.93804,0.133619,7.58425,8.93468,0.190256,7.60003,8.95288,0.134704,7.59073,8.93406,0.0778993,7.44407,8.95336,0.0630857,7.43688,8.95407,0.187982,7.4229,8.98001,0.125548,7.35346,8.9679,0.0486799,7.3462,8.89034,0.0185215,7.33678,8.82737,0.0481969,7.33208,8.79603,0.119909,7.32859,8.82818,0.190707,7.33469,8.89144,0.220683,7.35004,8.98857,0.120022,7.34547,8.96868,0.191059,7.30189,8.85296,0.0447409,7.29523,8.81884,0.118549,7.29342,8.8538,0.191496,7.28841,8.81894,0.117527,7.28793,8.85431,0.182598,7.295,8.85456,0.0527968,7.51382,8.93487,0.0581881,7.50255,8.87929,0.0358514,7.49032,8.82014,0.0624209,7.48645,8.79168,0.129102,7.48268,8.82088,0.19545,7.49179,8.88031,0.22223,7.50495,8.93538,0.200794,7.50405,8.92558,0.19351,7.51203,8.92513,0.0654096,7.51506,8.9404,0.0649085,7.50694,8.94083,0.194382,7.51296,8.96247,0.129625,7.30232,8.96043,0.0489974,7.29716,8.96133,0.179229,7.33085,8.97523,0.0697237,7.32991,9.00228,0.118601,7.32537,8.97584,0.167253,7.30789,8.99112,0.0777162,7.3242,8.98432,0.0803173,7.30212,8.97966,0.15621,7.31988,8.98477,0.15581,7.32162,8.98932,0.118131,7.30787,9.00557,0.117038,6.9185,9.00413,-0.725684,6.93103,8.99079,-0.728392,6.94033,8.98744,-0.698472,6.92554,8.98343,-0.692468,6.92423,8.98468,-0.758502,6.90937,8.9903,-0.755847,6.94896,8.97993,-0.691279,6.93851,9.00136,-0.731245,6.92827,8.97626,-0.768344,6.92787,8.96836,-0.672414,6.89849,8.96288,-0.774891,7.08432,8.96365,-0.770892,7.09622,8.9494,-0.72297,7.07009,8.94338,-0.8158,7.06826,8.93175,-0.814033,7.09414,8.93773,-0.7222,7.09645,8.94523,-0.717721,7.09326,8.90487,-0.697125,7.08122,8.8597,-0.711246,7.06805,8.83525,-0.757554,7.05389,8.85328,-0.80644,7.05501,8.89589,-0.830508,7.06763,8.93857,-0.819947,6.89805,8.87387,-0.765508,6.92681,8.87999,-0.662905,6.90984,8.84921,-0.712029,6.93443,8.87996,-0.658124,6.91599,8.84908,-0.713347,6.90224,8.87238,-0.773585,6.9727,8.97357,-0.679621,6.95652,8.98936,-0.735639,6.97496,8.91127,-0.651253,6.9649,8.86013,-0.669749,6.94867,8.83136,-0.722698,6.93345,8.85287,-0.779347,6.93151,8.90196,-0.807151,6.94313,8.96781,-0.790281,7.01724,8.97842,-0.751598,7.04381,8.95979,-0.709522,7.01826,8.9539,-0.800676,7.12792,8.94025,-0.826398,7.14903,8.95753,-0.789047,7.15146,8.94578,-0.744372,7.13499,8.94627,-0.784255,7.11865,8.93075,-0.823014,7.14215,8.93627,-0.741142,7.04248,8.94753,-0.708459,7.01757,8.96571,-0.750969,7.01699,8.94157,-0.799364,7.03844,8.95654,-0.702113,7.01031,8.97766,-0.749553,7.04108,8.90537,-0.677177,7.03397,8.85124,-0.69366,7.02052,8.82598,-0.743226,7.00485,8.84439,-0.795096,7.0003,8.89594,-0.819441,7.01002,8.95006,-0.803734,7.14789,8.89696,-0.784633,6.89881,8.93798,-0.776174,6.8895,8.90379,-0.799472,6.89027,8.87285,-0.771404,6.90375,8.84941,-0.710721,6.92252,8.88074,-0.655222,6.93485,8.91409,-0.634863,6.92751,8.94766,-0.661492,7.1251,8.9362,-0.830384,7.10668,8.90018,-0.842517,7.10105,8.86384,-0.818182,7.11326,8.84598,-0.771253,7.12705,8.86996,-0.727604,7.14339,8.90881,-0.714643,7.15132,8.94236,-0.739034,7.14101,8.94555,-0.785936,6.48998,8.7564,0.865961,6.46722,8.68488,0.852216,6.54609,8.80882,0.851895,6.55622,8.80221,0.840759,6.47558,8.68075,0.839265,6.46589,8.67697,0.847064,6.48167,8.63833,0.800025,6.53391,8.64287,0.755223,6.5992,8.6927,0.742157,6.62125,8.76636,0.759728,6.60448,8.81224,0.806317,6.55366,8.81314,0.847421,6.32748,8.74005,0.709919,6.35223,8.82097,0.721814,6.36035,8.68477,0.651814,6.41012,8.69564,0.602493,6.46305,8.75357,0.578757,6.48581,8.83036,0.599296,6.47095,8.88149,0.646876,6.40717,8.88474,0.70612,6.4109,8.79216,0.788117,6.4085,8.71301,0.791551,6.48538,8.83694,0.790339,6.59284,8.77462,0.91993,6.56108,8.72354,0.947204,6.53359,8.66719,0.924406,6.55398,8.72546,0.9165,6.59282,8.77418,0.90039,6.52987,8.66719,0.902945,6.41884,8.70731,0.779712,6.42432,8.78481,0.778594,6.49683,8.83005,0.779279,6.40111,8.70694,0.780282,6.40673,8.79388,0.778853,6.42628,8.65755,0.727389,6.48666,8.66028,0.680364,6.54453,8.71651,0.661859,6.56966,8.79193,0.680227,6.55189,8.84124,0.732692,6.48635,8.84522,0.778782,6.60418,8.69767,0.891154,6.59789,8.77969,0.915192,6.6333,8.79025,0.871189,6.64581,8.75014,0.828429,6.62506,8.68232,0.808568,6.56832,8.63516,0.825169,6.5307,8.62595,0.871525,6.53111,8.66018,0.91966,6.56074,8.72234,0.92385,1.21737,9.53133,-0.448082,1.40162,9.47178,0.262551,1.30654,9.63357,-0.206991,1.46176,9.13475,-0.650022,1.08078,9.33628,-0.602687,1.39849,9.63128,-0.00197868,1.62297,8.80308,0.0993095,1.42615,8.79005,0.356225,1.60033,8.58477,-0.287381,1.61991,8.63059,-0.0815446,1.50952,8.62187,-0.55945,1.74763,9.52214,-0.250404,1.56093,9.39883,-0.511213,1.76818,9.37851,0.292151,1.80179,9.51701,0.049988,1.48199,8.83394,-0.625891,1.5896,8.5393,-0.40615,1.69956,9.02634,0.285672,1.44712,9.01548,0.322602,3.09687,8.95932,0.14535,3.08718,8.70514,-0.368344,3.07203,8.94841,-0.668311,3.11801,9.32407,-0.0429022,3.11668,9.14076,0.0716837,3.07562,9.34108,-0.550414,3.10482,9.42212,-0.283003,3.08379,8.73221,-0.539643,3.09132,8.68293,-0.055541,3.09109,8.67669,-0.205581,3.09544,8.76411,0.0682914,3.07723,9.22892,-0.625634,3.36671,9.25246,-0.650018,3.37855,8.77694,-0.0104906,3.38181,8.69485,-0.223619,3.38079,8.69957,-0.0974994,3.37528,8.76717,-0.514176,3.37729,9.4551,-0.28725,3.36303,9.38132,-0.573674,3.41171,9.15168,-0.062825,3.39639,9.35403,-0.0867581,3.38207,8.98253,-0.729022,3.37941,8.72097,-0.378073,3.38992,8.95899,0.0306416,3.67677,8.92032,0.0464183,3.66354,8.73627,-0.395405,3.72276,9.01041,-0.663786,3.68358,9.37423,-0.0602922,3.70415,9.13216,-0.0408277,3.6502,9.44046,-0.507057,3.65983,9.49152,-0.236385,3.66036,8.79432,-0.519406,3.66423,8.68611,-0.10913,3.66553,8.69458,-0.240357,3.66213,8.74923,-0.000624639,3.65391,9.30373,-0.592611,2.12035,8.95443,0.312094,2.75305,8.94448,0.260216,2.16271,9.24464,0.287933,2.77786,9.16575,0.206228,2.07626,8.73634,0.17369,2.73451,8.72889,0.164155,1.96736,8.6939,-0.554391,2.68385,8.72217,-0.526497,1.99516,8.60825,-0.41789,2.69115,8.68961,-0.4107,2.01594,8.57385,-0.25797,2.70093,8.63924,-0.244334,1.95311,8.91474,-0.627429,2.66799,8.94808,-0.654772,1.93176,9.16286,-0.650022,2.66683,9.16658,-0.644515,2.17526,9.47259,0.0604886,2.78538,9.37328,0.0133864,2.11494,9.51083,-0.250259,2.76784,9.46297,-0.262635,1.99683,9.40619,-0.511213,2.69077,9.37026,-0.520064,2.02916,8.63061,-0.0048831,2.70828,8.64084,-0.00291803,4.52807,8.7375,-0.382488,5.09983,8.84914,-0.41521,4.52471,8.66704,-0.276249,5.10077,8.77179,-0.350961,4.52052,8.65553,-0.139298,5.09616,8.73323,-0.245183,4.5198,9.35512,-0.0195722,5.06645,9.20669,0.0332032,4.52124,9.40164,-0.250677,5.06891,9.29213,-0.137966,4.52469,9.33567,-0.368075,5.07334,9.28151,-0.244325,4.53143,9.19359,0.0886739,5.0736,9.05948,0.0881668,4.54947,8.93939,0.0451699,5.08254,8.89592,0.0238059,4.52699,9.13609,-0.548565,5.08579,9.1881,-0.435938,4.525,8.94031,-0.546353,5.09371,9.03931,-0.488755,4.52656,8.84329,-0.485265,5.0956,8.95223,-0.467176,4.53099,8.7583,-0.00825124,5.08897,8.78147,-0.0957502,1.8845,8.99403,0.280685,1.91614,9.29815,0.287264,1.85305,8.77042,0.0772314,1.68028,8.62722,-0.539282,1.72112,8.56653,-0.394336,1.82966,8.59072,-0.258301,1.67277,8.81657,-0.601814,1.67484,9.1225,-0.650022,1.92429,9.50662,0.0688235,1.91382,9.52706,-0.248198,1.82611,9.39765,-0.510453,1.81626,8.66679,-0.0637031,4.07704,8.71165,-0.306155,4.07424,8.67358,-0.185196,4.07252,8.70179,-0.0614413,4.06888,9.43301,-0.133696,4.06918,9.42688,-0.386892,4.07176,9.32186,-0.487957,4.08696,9.29436,0.0117633,4.10634,9.04203,0.00221113,4.07357,9.05848,-0.610871,4.07477,8.86157,-0.533149,4.07552,8.78435,-0.438063,4.08584,8.84215,0.0248275,3.08146,9.1045,-0.684916,3.38072,9.14539,-0.711113,3.07649,8.86627,-0.621626,3.37006,8.85808,-0.642737,3.19366,9.1712,-0.675955,3.39306,9.18687,-0.620804,3.71482,9.18257,-0.573226,4.52613,9.24514,-0.485524,5.08041,9.25126,-0.357614,4.07331,9.19131,-0.580949,3.17298,8.82723,-0.600068,3.36641,8.82177,-0.564851,3.67616,8.87822,-0.583936,4.52609,9.02983,-0.572456,5.09036,9.11299,-0.484586,4.07299,8.94309,-0.592349,3.61373,8.91056,-0.623096,3.64025,9.13445,-0.656145,3.66633,9.012,-0.660721,2.42859,8.95404,0.291979,2.45874,9.1947,0.252357,2.39964,8.73532,0.17919,2.30919,8.72175,-0.543404,2.32652,8.65817,-0.417001,2.34131,8.60763,-0.250857,2.29334,8.93877,-0.641359,2.28827,9.16701,-0.647533,2.4664,9.42954,0.0409799,2.45192,9.48577,-0.255204,2.33209,9.38896,-0.515213,2.35503,8.63533,0.00310197,5.57868,9.20879,-0.0817853,5.58386,8.98781,-0.489309,5.58018,8.77341,-0.336416,5.58052,8.82284,-0.424443,5.57914,8.7858,-0.184473,5.57835,8.85716,-0.0425029,5.57709,8.97779,0.0606541,5.57611,9.10623,0.0496596,5.57691,9.21536,-0.189068,5.57803,9.21069,-0.302691,5.5787,9.1733,-0.392374,5.57906,9.12122,-0.45773,5.57943,9.06255,-0.48134,5.58031,8.8963,-0.463737,1.27288,9.23853,-0.626354,1.50399,8.81033,0.228623,1.47326,9.58016,-0.236267,1.37966,9.46321,-0.480229,1.60657,9.56804,0.00531996,1.59537,9.4347,0.272245,1.56173,9.03012,0.304752,0.185153,10.9445,0.672206,0.0627725,11.0495,0.691575,0.131183,10.9629,0.673246,0.088209,10.9998,0.680048,0.241902,10.9474,0.677085,0.29279,10.9711,0.687141,0.330071,11.012,0.700842,0.0629699,11.0652,0.754888,0.0910202,11.0485,0.801654,0.13574,11.0337,0.833804,0.190321,11.0231,0.846441,0.246453,11.0182,0.837642,0.295592,11.0198,0.808747,0.330256,11.0277,0.764155,0.0581689,11.1002,0.705299,0.347477,11.0596,0.71533,0.332565,11.0467,0.768831,0.297901,11.0388,0.813423,0.248763,11.0372,0.842318,0.19263,11.0421,0.851116,0.138049,11.0527,0.838479,0.0933297,11.0675,0.80633,0.0652794,11.0842,0.759564,0.0418148,11.0833,0.76745,0.0746082,11.0638,0.822125,0.12689,11.0465,0.85971,0.1907,11.0341,0.874484,0.256324,11.0284,0.864197,0.313771,11.0303,0.830417,0.354296,11.0395,0.778284,0.37173,11.0546,0.715737,0.033502,11.1021,0.70401,0.0452857,11.0298,0.748897,0.0735607,10.975,0.721337,0.121682,10.9376,0.692457,0.182325,10.9231,0.666653,0.134385,10.93,0.713635,0.097032,10.9611,0.76047,0.0759525,11.0115,0.800025,0.124843,10.9954,0.835173,0.134451,10.9487,0.78737,0.154636,10.9233,0.728194,0.179353,10.9185,0.733917,0.180122,10.9398,0.797945,0.184515,10.9837,0.848989,0.245883,10.9784,0.83937,0.227091,10.9357,0.790582,0.204773,10.9163,0.729932,0.227025,10.917,0.716847,0.268209,10.9371,0.766405,0.299605,10.9802,0.80778,0.337502,10.9888,0.759028,0.297214,10.9437,0.729092,0.242722,10.9206,0.696654,0.249475,10.9264,0.672426,0.309691,10.9545,0.684325,0.353805,11.0029,0.700537,0.118462,10.9448,0.667884,0.067611,10.9885,0.675932,0.037512,11.0473,0.689571,0.341937,11.0935,0.664632,0.120711,11.1937,0.784634,0.0824438,11.1489,0.780581,0.227638,11.2315,0.760974,0.280018,11.2187,0.736863,0.320863,11.1863,0.709086,0.343954,11.1393,0.681872,0.171696,11.2227,0.777748,0.351693,11.0911,0.722979,0.337236,11.0756,0.775759,0.30309,11.0661,0.820266,0.254456,11.0641,0.849726,0.198736,11.0699,0.859655,0.144414,11.0826,0.84854,0.0997592,11.1004,0.818074,0.0974344,11.0834,0.81274,0.142089,11.0657,0.843206,0.334911,11.0586,0.770425,0.349368,11.0742,0.717646,0.0692459,11.1035,0.76756,0.300766,11.0491,0.814933,0.252131,11.0471,0.844394,0.196411,11.0529,0.854321,0.0794021,11.0824,0.829609,0.131607,11.0617,0.865227,0.195115,11.0468,0.878222,0.260257,11.04,0.866614,0.317115,11.0423,0.832173,0.357034,11.0534,0.780139,0.373936,11.0716,0.718436,0.365249,11.0942,0.656458,0.0464472,11.1059,0.77679,0.166729,11.2401,0.786891,0.179523,11.231,0.807397,0.132112,11.1901,0.832649,0.0956335,11.1338,0.839633,0.144566,11.1144,0.873018,0.169563,11.1753,0.858199,0.199792,11.2229,0.821225,0.224448,11.2172,0.826271,0.215122,11.1646,0.867523,0.204091,11.1004,0.885197,0.265149,11.094,0.874317,0.261853,11.1597,0.859195,0.249739,11.2145,0.821764,0.271814,11.2154,0.808392,0.302642,11.1614,0.834488,0.318442,11.0962,0.842036,0.355858,11.1066,0.793265,0.33128,11.1693,0.79716,0.287312,11.2197,0.788191,0.293874,11.2268,0.764235,0.343405,11.1824,0.752895,0.371701,11.1237,0.735431,0.363558,11.1448,0.677337,0.337172,11.1986,0.708433,0.290501,11.2355,0.740173,0.23065,11.2501,0.767723,0.0647449,11.1558,0.790126,0.108471,11.207,0.794757,0.136852,11.0884,0.849572,0.156724,11.1112,0.566051,0.1083,11.1305,0.597234,0.0744349,11.1434,0.645992,0.0602837,11.148,0.704899,0.0680009,11.1434,0.76499,0.0964115,11.1305,0.817114,0.141381,11.1112,0.849817,0.154279,11.1305,0.850515,0.120243,11.1662,0.818403,0.0991388,11.1901,0.766673,0.0939872,11.1985,0.706722,0.105573,11.1901,0.647675,0.132132,11.1662,0.598523,0.169621,11.1305,0.566748,0.188924,11.1434,0.567792,0.167799,11.1901,0.600452,0.152174,11.2213,0.650195,0.144428,11.2322,0.709449,0.14574,11.2213,0.769193,0.155911,11.1901,0.820331,0.173581,11.1434,0.851558,0.196351,11.148,0.852789,0.197983,11.1985,0.822606,0.20071,11.2322,0.772165,0.203927,11.2441,0.712666,0.207144,11.2322,0.653167,0.209871,11.1985,0.602726,0.211694,11.148,0.569023,0.234463,11.1434,0.570254,0.251943,11.1901,0.605001,0.262114,11.2213,0.656139,0.263426,11.2322,0.715883,0.25568,11.2213,0.775137,0.240055,11.1901,0.824881,0.21912,11.1434,0.854021,0.238423,11.1305,0.855064,0.275722,11.1662,0.826809,0.302281,11.1901,0.777657,0.313867,11.1985,0.71861,0.308715,11.1901,0.658659,0.28761,11.1662,0.606929,0.253766,11.1305,0.571298,0.266663,11.1112,0.571995,0.311442,11.1305,0.608218,0.339853,11.1434,0.660342,0.34757,11.148,0.720433,0.333419,11.1434,0.77934,0.299554,11.1305,0.828098,0.251321,11.1112,0.855761,0.25585,11.0884,0.856006,0.307922,11.0884,0.82855,0.344353,11.0884,0.779932,0.359405,11.0884,0.721073,0.350787,11.0884,0.660934,0.319811,11.0884,0.608671,0.271193,11.0884,0.57224,0.212334,11.0884,0.557188,0.266663,11.0656,0.571995,0.311442,11.0463,0.608218,0.339853,11.0333,0.660342,0.34757,11.0288,0.720433,0.333419,11.0333,0.77934,0.299554,11.0463,0.828098,0.251321,11.0656,0.855761,0.238423,11.0463,0.855064,0.275722,11.0105,0.826809,0.302281,10.9867,0.777657,0.313867,10.9783,0.71861,0.308715,10.9867,0.658659,0.28761,11.0105,0.606929,0.253766,11.0463,0.571298,0.234463,11.0333,0.570254,0.251943,10.9867,0.605001,0.262114,10.9555,0.656139,0.263426,10.9445,0.715883,0.25568,10.9555,0.775137,0.240055,10.9867,0.824881,0.21912,11.0333,0.854021,0.196351,11.0288,0.852789,0.197983,10.9783,0.822606,0.20071,10.9445,0.772165,0.203927,10.9327,0.712666,0.207144,10.9445,0.653167,0.209871,10.9783,0.602726,0.211694,11.0288,0.569023,0.188924,11.0333,0.567792,0.167799,10.9867,0.600452,0.152174,10.9555,0.650195,0.144428,10.9445,0.709449,0.14574,10.9555,0.769193,0.155911,10.9867,0.820331,0.173581,11.0333,0.851558,0.154279,11.0463,0.850515,0.120244,11.0105,0.818403,0.0991388,10.9867,0.766673,0.0939872,10.9783,0.706722,0.105573,10.9867,0.647675,0.132132,11.0105,0.598523,0.169621,11.0463,0.566748,0.156724,11.0656,0.566051,0.1083,11.0463,0.597234,0.074435,11.0333,0.645992,0.0602838,11.0288,0.7049,0.0680009,11.0333,0.76499,0.0964116,11.0463,0.817114,0.141381,11.0656,0.849817,0.0880429,11.0884,0.816662,0.0570667,11.0884,0.764398,0.0484487,11.0884,0.70426,0.0635008,11.0884,0.6454,0.0999315,11.0884,0.596782,0.152195,11.0884,0.565806,0.177035,11.0803,0.847026,0.181627,11.0734,0.847275,0.188499,11.0688,0.847646,0.196605,11.0672,0.848084,0.204711,11.0688,0.848523,0.211583,11.0734,0.848894,0.216175,11.0803,0.849142,0.217787,11.0884,0.84923,0.216175,11.0965,0.849142,0.211583,11.1034,0.848894,0.204711,11.108,0.848523,0.196605,11.1096,0.848084,0.188499,11.108,0.847646,0.181627,11.1034,0.847275,0.177035,11.0965,0.847026,0.175423,11.0884,0.846939,0.165666,11.0884,0.845582,0.168025,11.1003,0.845709,0.174741,11.1103,0.846073,0.184793,11.1171,0.846616,0.19665,11.1194,0.847257,0.208507,11.1171,0.847898,0.218558,11.1103,0.848442,0.225275,11.1003,0.848805,0.227633,11.0884,0.848933,0.225275,11.0765,0.848805,0.218558,11.0664,0.848442,0.208507,11.0597,0.847898,0.19665,11.0574,0.847257,0.184793,11.0597,0.846616,0.174741,11.0664,0.846073,0.168025,11.0765,0.845709,0.19665,11.0884,0.847257,0.138652,11.1123,0.851284,0.152169,11.1325,0.852014,0.1724,11.1461,0.853108,0.196264,11.1508,0.854399,0.220127,11.1461,0.855689,0.240358,11.1325,0.856783,0.253875,11.1123,0.857513,0.258622,11.0884,0.85777,0.253875,11.0645,0.857513,0.240358,11.0442,0.856783,0.220127,11.0307,0.855689,0.196264,11.0259,0.854399,0.1724,11.0307,0.853108,0.15217,11.0442,0.852014,0.138652,11.0645,0.851284,0.133905,11.0884,0.851027,0.0619781,10.2846,0.956831,0.117528,10.2898,0.931531,0.151428,10.289,0.885222,0.169091,10.2823,0.825039,0.173168,10.2846,0.75253,0.170341,10.2841,0.692479,0.167581,10.2833,0.625752,0.169464,10.2846,0.558823,0.0691909,10.2846,0.98079,0.133247,10.2894,0.950998,0.17582,10.2889,0.896847,0.200442,10.2824,0.830861,0.210127,10.2846,0.753815,0.21365,10.284,0.691972,0.211296,10.2833,0.625179,0.207948,10.2846,0.558547,0.0619781,10.2208,0.956831,0.117528,10.2208,0.931531,0.153709,10.2208,0.883235,0.171067,10.2208,0.825951,0.172664,10.2208,0.755081,0.17024,10.2208,0.692479,0.166777,10.2208,0.625752,0.169464,10.2208,0.558823,0.0680708,10.2208,0.976534,0.130261,10.2208,0.949878,0.172491,10.2208,0.896208,0.205483,10.2208,0.691972,0.201333,10.2208,0.558547,0.196275,10.2208,0.82703,0.202888,10.2208,0.756357,0.204317,10.2208,0.625179,0.0566604,10.2936,0.988537,0.123231,10.2936,0.961794,0.16225,10.3029,0.912605,0.20185,10.2909,0.84315,0.21338,10.2917,0.769939,0.218354,10.295,0.705403,0.217689,10.2907,0.63834,0.214369,10.2936,0.571856,0.0164408,10.2936,0.993532,-0.0164408,10.2936,0.993532,0.0841565,10.2936,0.981131,0.146449,10.3031,0.93212,0.186856,10.2918,0.886873,0.206023,10.2913,0.817819,0.216377,10.295,0.743097,0.219977,10.2909,0.67846,0.218361,10.2933,0.611824,0.0488204,10.2936,0.955946,0.10456,10.2946,0.933954,0.145216,10.3028,0.903216,0.160889,10.2908,0.834098,0.16846,10.2917,0.76751,0.165553,10.2949,0.705762,0.162125,10.2907,0.639298,0.162811,10.2936,0.57223,-0.00811154,10.2936,0.960681,0.00811154,10.2936,0.960681,0.00977064,10.2936,0.960681,-0.00977064,10.2936,0.960681,0.0727008,10.2936,0.949628,0.133068,10.3031,0.918368,0.150671,10.2928,0.872028,0.166911,10.2911,0.811521,0.167319,10.2949,0.741888,0.162937,10.2909,0.679285,0.159614,10.2934,0.612401,0.0553502,10.2208,0.986848,0.121734,10.2208,0.959217,0.172513,10.2208,0.909532,0.199633,10.2208,0.839568,0.21022,10.2208,0.77008,0.214646,10.2208,0.705382,0.213782,10.2208,0.638284,0.210748,10.2208,0.571834,0.0150628,10.2208,0.991858,-0.0150628,10.2208,0.991858,0.0822409,10.2208,0.978766,0.144598,10.2208,0.944006,0.185327,10.2208,0.886978,0.203584,10.2208,0.817506,0.211645,10.2208,0.745655,0.213892,10.2208,0.678412,0.214303,10.2208,0.611791,0.0483653,10.2208,0.954054,0.103475,10.2208,0.932338,0.143299,10.2208,0.891421,0.162988,10.2208,0.835006,0.163228,10.2208,0.767369,0.159764,10.2208,0.705783,0.158917,10.2208,0.639354,0.159817,10.2208,0.572252,-0.00772425,10.2208,0.958773,0.00772425,10.2208,0.958773,0.00938335,10.2208,0.958773,-0.00938335,10.2208,0.958773,0.0720357,10.2208,0.947799,0.121494,10.2208,0.91831,0.153146,10.2208,0.869546,0.164905,10.2208,0.812041,0.165546,10.2208,0.74438,0.161999,10.2208,0.679333,0.156271,10.2208,0.612434,0.00180238,10.2846,0.965329,-0.00180238,10.2846,0.965329,0.0627708,10.2846,0.956302,0.118104,10.29,0.930863,0.151369,10.2889,0.884318,0.16903,10.2823,0.824015,0.172645,10.2847,0.751456,0.169675,10.2839,0.691525,0.166932,10.2834,0.624785,0.00180238,10.2208,0.965329,-0.00180238,10.2208,0.965329,0.0627708,10.2208,0.956302,0.118104,10.2208,0.930863,0.153801,10.2208,0.882279,0.170875,10.2208,0.825131,0.172301,10.2208,0.754213,0.169779,10.2208,0.691525,0.166076,10.2208,0.624785,0.00179212,10.2208,0.990967,-0.00179212,10.2208,0.990967,0.0691415,10.2208,0.976565,0.131352,10.2208,0.949586,0.173205,10.2208,0.8956,0.196927,10.2208,0.826328,0.203377,10.2208,0.7555,0.20601,10.2208,0.690988,0.204916,10.2208,0.624209,0.00179213,10.2846,0.990967,-0.00179213,10.2846,0.990967,0.0702616,10.2846,0.980821,0.134338,10.2897,0.950706,0.17655,10.2886,0.896223,0.200998,10.2824,0.829887,0.210739,10.2848,0.752737,0.214311,10.2839,0.690988,0.21188,10.2834,0.624209,0.0680248,10.2846,0.98152,0.132327,10.2891,0.952004,0.175642,10.2892,0.898067,0.200708,10.2823,0.832283,0.21051,10.2844,0.755307,0.214184,10.2842,0.69324,0.212003,10.2831,0.626427,0.208556,10.2846,0.559807,0.060712,10.2846,0.956751,0.116272,10.2897,0.931776,0.150689,10.2892,0.886035,0.168159,10.2823,0.826127,0.172651,10.2844,0.75393,0.169811,10.2842,0.69374,0.166971,10.2831,0.627032,0.168834,10.2846,0.560093,0.0669047,10.2208,0.977264,0.129341,10.2208,0.950884,0.172338,10.2208,0.897441,0.196438,10.2208,0.828114,0.203445,10.2208,0.757438,0.206197,10.2208,0.69324,0.205086,10.2208,0.626427,0.201941,10.2208,0.559807,0.0607121,10.2208,0.956751,0.116272,10.2208,0.931776,0.152884,10.2208,0.884111,0.170425,10.2208,0.826957,0.171897,10.2208,0.756067,0.16938,10.2208,0.69374,0.166122,10.2208,0.627032,0.168834,10.2208,0.560093,0.0603696,10.1093,0.934996,0.0652662,10.1093,0.933409,0.113624,10.1093,0.910282,0.118359,10.1093,0.907353,0.1435,10.1093,0.865146,0.145787,10.1093,0.859342,0.16148,10.1093,0.802526,0.163702,10.1093,0.798261,0.163021,10.1093,0.736203,0.163782,10.1093,0.732521,0.159798,10.1093,0.676213,0.160364,10.1093,0.671421,0.161005,10.1093,0.609506,0.160335,10.1093,0.603496,0.0708864,10.1093,0.96993,0.0786179,10.1093,0.968047,0.137237,10.1093,0.939525,0.144583,10.1093,0.935402,0.181195,10.1093,0.883854,0.185541,10.1093,0.874809,0.224421,10.1093,0.675475,0.223422,10.1093,0.670468,0.207766,10.1093,0.811774,0.207934,10.1093,0.820616,0.21976,10.1093,0.7383,0.22195,10.1093,0.74353,0.218139,10.1093,0.608657,0.219818,10.1093,0.61672,0.159817,10.1093,0.555916,0.170188,10.1093,0.543756,0.162785,10.1093,0.623017,0.160586,10.1093,0.615982,0.158134,10.1093,0.689447,0.15757,10.1093,0.681452,0.161581,10.1093,0.748302,0.160664,10.1093,0.740997,0.156534,10.1093,0.815024,0.157666,10.1093,0.807887,0.139036,10.1093,0.87683,0.140443,10.1093,0.870708,0.103475,10.1093,0.916002,0.107867,10.1093,0.912577,0.0483653,10.1093,0.937717,0.0547826,10.1093,0.935694,0.171007,10.1093,0.542487,0.217489,10.1093,0.566984,0.204863,10.1093,0.543471,0.219498,10.1093,0.628694,0.226845,10.1093,0.689046,0.227086,10.1093,0.680896,0.220477,10.1093,0.751013,0.205526,10.1093,0.826506,0.175067,10.1093,0.897282,0.177778,10.1093,0.892961,0.124315,10.1093,0.947074,0.130147,10.1093,0.944721,0.0571156,10.1093,0.974093,0.0630157,10.1093,0.972922,0.204078,10.1093,0.54221,0.217848,10.1093,0.590233,0.218077,10.1093,0.597439,0.21784,10.1093,0.652631,0.217618,10.1093,0.729157,0.219057,10.1093,0.734341,0.208102,10.1093,0.799362,0.208586,10.1093,0.804968,0.188957,10.1093,0.868674,0.147584,10.1093,0.928789,0.0848217,10.1093,0.966624,0.0168281,10.1093,0.979102,-0.0168281,10.1093,0.979102,-0.00582987,10.1093,0.980618,0.00582987,10.1093,0.980618,0.00748897,10.1093,0.980618,-0.00748897,10.1093,0.980618,0.160185,10.1093,0.596098,0.161976,10.1093,0.662997,0.165546,10.1093,0.727781,0.164792,10.1093,0.792642,0.14857,10.1093,0.852106,0.121494,10.1093,0.901974,0.0720357,10.1093,0.931462,-0.0077243,10.1093,0.942437,0.0077243,10.1093,0.942437,0.0093834,10.1093,0.942437,-0.0093834,10.1093,0.942437,-0.00428974,10.1093,0.942442,0.00428974,10.1093,0.942442,0.00594884,10.1093,0.942442,-0.00594884,10.1093,0.942442,0.0616581,10.165,0.947879,0.0659687,10.165,0.945681,0.11682,10.165,0.922562,0.119623,10.165,0.91886,0.152678,10.165,0.874832,0.153873,10.165,0.870037,0.169089,10.165,0.818348,0.169074,10.165,0.812431,0.171977,10.165,0.747727,0.171532,10.165,0.743878,0.169791,10.165,0.684361,0.169349,10.165,0.679163,0.164965,10.165,0.617645,0.16432,10.165,0.61239,0.0748679,10.165,0.972133,0.0693325,10.165,0.973153,0.138057,10.165,0.939759,0.1334,10.165,0.943083,0.179292,10.165,0.885226,0.175967,10.165,0.890538,0.214051,10.165,0.678554,0.213972,10.165,0.683849,0.200581,10.165,0.821081,0.200366,10.165,0.825632,0.210249,10.165,0.749294,0.21179,10.165,0.75352,0.214218,10.165,0.617043,0.216301,10.165,0.622342,0.162675,10.165,0.57047,0.169149,10.165,0.556344,0.161119,10.165,0.637442,0.16335,10.165,0.623026,0.163138,10.165,0.703813,0.167655,10.165,0.689654,0.165174,10.165,0.764956,0.169961,10.165,0.751597,0.161659,10.165,0.834162,0.166988,10.165,0.823561,0.140627,10.165,0.887863,0.149878,10.165,0.878554,0.0992112,10.165,0.927642,0.112318,10.165,0.924321,0.0425417,10.165,0.947732,0.056584,10.165,0.948202,0.17722,10.165,0.55216,0.208249,10.165,0.55605,0.214757,10.165,0.570042,0.219434,10.165,0.636521,0.215947,10.165,0.689237,0.219424,10.165,0.703681,0.214376,10.165,0.768093,0.199069,10.165,0.838135,0.173819,10.165,0.895705,0.169055,10.165,0.907118,0.128976,10.165,0.94681,0.117128,10.165,0.956757,0.0641137,10.165,0.975239,0.0503588,10.165,0.981188,0.200175,10.165,0.55199,0.216064,10.165,0.597389,0.214515,10.165,0.611807,0.21501,10.165,0.664011,0.215112,10.165,0.73156,0.21079,10.165,0.745285,0.206947,10.165,0.80107,0.201845,10.165,0.816646,0.189048,10.165,0.869907,0.150575,10.165,0.930211,0.0903151,10.165,0.969733,0.0225354,10.165,0.984835,-0.0225354,10.165,0.984835,-0.0048991,10.165,0.983314,0.0048991,10.165,0.983314,0.0065582,10.165,0.983314,-0.0065582,10.165,0.983314,0.162015,10.165,0.597965,0.166863,10.165,0.664858,0.167839,10.165,0.730852,0.167182,10.165,0.795737,0.155813,10.165,0.856243,0.12573,10.165,0.906829,0.077206,10.165,0.938174,-0.00338802,10.165,0.955607,0.00338802,10.165,0.955607,0.00504712,10.165,0.955607,-0.00504712,10.165,0.955607,0.01645,10.165,0.951123,-0.01645,10.165,0.951123,0.061963,10.2181,0.956408,0.0629219,10.2181,0.9558,0.117495,10.2181,0.931107,0.118176,10.2181,0.930296,0.153677,10.2181,0.882827,0.153818,10.2181,0.881694,0.171012,10.2181,0.825568,0.170805,10.2181,0.824556,0.17258,10.2181,0.754718,0.172215,10.2181,0.75369,0.170162,10.2181,0.692095,0.16969,10.2181,0.690941,0.16673,10.2181,0.625369,0.165984,10.2181,0.624199,0.0704793,10.2181,0.980411,0.0691976,10.2181,0.980429,0.134514,10.2181,0.950189,0.133255,10.2181,0.950624,0.176579,10.2181,0.896579,0.175724,10.2181,0.897358,0.213471,10.2181,0.6904,0.212957,10.2181,0.691588,0.200218,10.2181,0.827494,0.200332,10.2181,0.828731,0.209238,10.2181,0.755844,0.209792,10.2181,0.757118,0.21262,10.2181,0.624795,0.213366,10.2181,0.626234,0.159952,10.2181,0.572168,0.168849,10.2181,0.559915,0.159068,10.2181,0.639263,0.166049,10.2181,0.626843,0.159805,10.2181,0.70569,0.169237,10.2181,0.693547,0.163204,10.2181,0.767255,0.171747,10.2181,0.755853,0.162975,10.2181,0.834886,0.170318,10.2181,0.826731,0.143172,10.2181,0.891253,0.152748,10.2181,0.883844,0.103274,10.2181,0.932116,0.116085,10.2181,0.931424,0.04809,10.2181,0.953755,0.0605169,10.2181,0.956347,0.169821,10.2181,0.558508,0.208542,10.2181,0.559629,0.21724,10.2181,0.57175,0.220604,10.2181,0.638201,0.213683,10.2181,0.693051,0.221142,10.2181,0.705302,0.215748,10.2181,0.769986,0.203074,10.2181,0.840127,0.175459,10.2181,0.898719,0.175213,10.2181,0.910478,0.132169,10.2181,0.951759,0.123975,10.2181,0.963096,0.0678399,10.2181,0.981223,0.0567961,10.2181,0.989993,0.207591,10.2181,0.558237,0.221434,10.2181,0.61111,0.213237,10.2181,0.623623,0.220256,10.2181,0.677731,0.217392,10.2181,0.745152,0.20973,10.2181,0.754886,0.208412,10.2181,0.817048,0.200909,10.2181,0.826647,0.188961,10.2181,0.886892,0.147726,10.2181,0.944421,0.0850813,10.2181,0.982335,0.0170979,10.2181,0.994938,-0.0170979,10.2181,0.994938,0.00201743,10.2181,0.990605,-0.00201743,10.2181,0.990605,0.156589,10.2181,0.61175,0.162264,10.2181,0.678649,0.165696,10.2181,0.743825,0.165014,10.2181,0.811271,0.153272,10.2181,0.868917,0.121694,10.2181,0.917768,0.0722801,10.2181,0.947344,0.00195577,10.2181,0.96487,-0.00195577,10.2181,0.96487,-0.00805831,10.2181,0.958412,0.00805831,10.2181,0.958412,0.00971741,10.2181,0.958412,-0.00971741,10.2181,0.958412,0.0691909,10.2238,0.98079,0.133247,10.2238,0.950998,0.175714,10.2238,0.897666,0.212872,10.2238,0.691972,0.207948,10.2238,0.558547,0.0619781,10.2238,0.956831,0.117528,10.2238,0.931531,0.153714,10.2238,0.883231,0.171065,10.2238,0.825966,0.17281,10.2238,0.755063,0.170386,10.2238,0.692479,0.166764,10.2238,0.625752,0.169464,10.2238,0.558823,0.0570939,10.2242,0.99034,0.124263,10.2242,0.963334,0.175436,10.2242,0.910592,0.203161,10.2242,0.840183,0.215831,10.2242,0.770073,0.22126,10.2242,0.705383,0.220779,10.2242,0.638287,0.21722,10.2242,0.571836,0.0168096,10.2242,0.995348,-0.0168096,10.2242,0.995348,0.08479,10.2242,0.982873,0.14752,10.2242,0.945059,0.188856,10.2242,0.887694,0.208456,10.2242,0.817717,0.217432,10.2242,0.745743,0.220423,10.2242,0.678414,0.221594,10.2242,0.611792,0.0483869,10.2242,0.954144,0.103527,10.2242,0.932415,0.143379,10.2242,0.891468,0.163082,10.2242,0.835026,0.163577,10.2242,0.767376,0.160141,10.2242,0.705782,0.15907,10.2242,0.639351,0.15996,10.2242,0.572251,-0.0077427,10.2242,0.958864,0.0077427,10.2242,0.958864,0.0094018,10.2242,0.958864,-0.0094018,10.2242,0.958864,0.0720674,10.2242,0.947886,0.121558,10.2242,0.918377,0.153232,10.2242,0.869581,0.165012,10.2242,0.812057,0.165677,10.2242,0.744384,0.162149,10.2242,0.679331,0.15643,10.2242,0.612433,0.00179212,10.2238,0.990967,-0.00179212,10.2238,0.990967,0.0702616,10.2238,0.980821,0.134338,10.2238,0.950706,0.176458,10.2238,0.897054,0.200812,10.2238,0.827102,0.209641,10.2238,0.755383,0.213369,10.2238,0.690988,0.213079,10.2238,0.624209,0.00180238,10.2238,0.965329,-0.00180238,10.2238,0.965329,0.0627708,10.2238,0.956302,0.118104,10.2238,0.930863,0.153806,10.2238,0.882275,0.170872,10.2238,0.825142,0.172452,10.2238,0.754196,0.16993,10.2238,0.691525,0.166063,10.2238,0.624785,0.0680248,10.2238,0.98152,0.132327,10.2238,0.952005,0.175538,10.2238,0.898866,0.200316,10.2238,0.82887,0.20971,10.2238,0.757297,0.213557,10.2238,0.69324,0.213201,10.2238,0.626427,0.208556,10.2238,0.559807,0.0607121,10.2238,0.956751,0.116272,10.2238,0.931776,0.152885,10.2238,0.88411,0.170424,10.2238,0.82697,0.172048,10.2238,0.75605,0.169531,10.2238,0.69374,0.16611,10.2238,0.627032,0.168834,10.2238,0.560093,0.212495,10.2238,0.625179,0.209177,10.2238,0.756183,0.200174,10.2238,0.82779,0.0691909,10.2542,0.98079,0.133247,10.2566,0.950998,0.175767,10.2563,0.897257,0.213547,10.2761,0.691972,0.207948,10.2765,0.558547,0.0619781,10.2542,0.956831,0.117528,10.2568,0.931531,0.152571,10.2564,0.884226,0.169353,10.2746,0.825162,0.173121,10.2765,0.752865,0.170347,10.2761,0.692479,0.167473,10.2754,0.625752,0.169464,10.2765,0.558823,0.0568771,10.2589,0.989438,0.123747,10.2589,0.962564,0.163571,10.2951,0.912403,0.202023,10.2821,0.842758,0.213704,10.2827,0.769957,0.218739,10.2856,0.7054,0.218098,10.2819,0.638333,0.214746,10.2844,0.571853,0.0166252,10.2589,0.99444,-0.0166252,10.2589,0.99444,0.0844732,10.2589,0.982002,0.146556,10.2952,0.933416,0.18712,10.2829,0.886982,0.206345,10.2824,0.817805,0.216517,10.2857,0.743447,0.220036,10.282,0.678454,0.218789,10.2842,0.61182,0.0486037,10.2589,0.955045,0.104043,10.2594,0.933185,0.144297,10.2635,0.897342,0.161179,10.282,0.834221,0.167814,10.2828,0.767492,0.164836,10.2856,0.705765,0.161721,10.2819,0.639305,0.162433,10.2844,0.572233,-0.00792712,10.2589,0.959773,0.00792712,10.2589,0.959773,0.00958622,10.2589,0.959773,-0.00958622,10.2589,0.959773,0.0723841,10.2589,0.948757,0.127313,10.2637,0.918372,0.15101,10.2837,0.871705,0.16666,10.2823,0.811592,0.167102,10.2856,0.742218,0.162833,10.2821,0.679291,0.159192,10.2842,0.612405,0.00179212,10.2542,0.990967,-0.00179212,10.2542,0.990967,0.0702616,10.2542,0.980821,0.134338,10.2567,0.950706,0.176504,10.2562,0.896638,0.200973,10.2746,0.829519,0.210594,10.2767,0.753087,0.214186,10.2759,0.690988,0.212039,10.2755,0.624209,0.00180238,10.2542,0.965329,-0.00180238,10.2542,0.965329,0.0627708,10.2542,0.956302,0.118104,10.2569,0.930863,0.152588,10.2563,0.883296,0.169274,10.2746,0.824164,0.172619,10.2767,0.751819,0.169709,10.2759,0.691525,0.166817,10.2755,0.624785,0.0680248,10.2542,0.98152,0.132327,10.2565,0.952004,0.17559,10.2565,0.898466,0.200656,10.2746,0.831832,0.210404,10.2764,0.755571,0.214101,10.2762,0.69324,0.212162,10.2753,0.626427,0.208556,10.2765,0.559807,0.0607121,10.2542,0.956751,0.116272,10.2567,0.931776,0.151787,10.2565,0.885072,0.168459,10.2745,0.826239,0.172571,10.2764,0.754211,0.169774,10.2762,0.69374,0.166857,10.2753,0.627032,0.168834,10.2765,0.560093,0.211455,10.2754,0.625179,0.210001,10.2766,0.754128,0.200406,10.2746,0.830454,0.0653429,10.2979,0.972767,0.12395,10.2923,0.946074,0.159715,10.2932,0.897217,0.17835,10.3003,0.833723,0.182651,10.2979,0.757224,0.179668,10.2984,0.693868,0.176757,10.2992,0.623469,0.178743,10.2979,0.552858,0.0729526,10.2979,0.998044,0.140534,10.2928,0.966612,0.185449,10.2934,0.909482,0.211426,10.3002,0.839865,0.221643,10.2978,0.758579,0.22536,10.2985,0.693333,0.222878,10.2992,0.622865,0.219345,10.2979,0.552566,0.0653429,10.3652,0.972767,0.12395,10.3652,0.946074,0.162122,10.3652,0.895121,0.180434,10.3652,0.834685,0.182119,10.3652,0.759915,0.179562,10.3652,0.693868,0.175909,10.3652,0.623469,0.178743,10.3652,0.552858,0.0717709,10.3652,0.993553,0.137383,10.3652,0.965431,0.181937,10.3652,0.908808,0.216745,10.3652,0.693333,0.212366,10.3652,0.552566,0.20703,10.3652,0.835823,0.214006,10.3652,0.761261,0.215514,10.3652,0.622865,0.0597325,10.2884,1.00622,0.129966,10.2884,0.978003,0.171133,10.2785,0.926107,0.212911,10.2912,0.852831,0.225075,10.2904,0.775591,0.230324,10.2869,0.707503,0.229622,10.2914,0.63675,0.226119,10.2884,0.566608,0.0172999,10.2884,1.01149,-0.0172999,10.2884,1.01149,0.0887417,10.2884,0.998404,0.154462,10.2784,0.946695,0.197092,10.2902,0.898959,0.217314,10.2908,0.826105,0.228238,10.2869,0.747271,0.232036,10.2913,0.679078,0.230331,10.2887,0.608775,0.0514612,10.2884,0.971833,0.110267,10.2873,0.948631,0.153161,10.2787,0.916202,0.169696,10.2914,0.84328,0.177684,10.2904,0.773028,0.174617,10.287,0.707883,0.171001,10.2914,0.637761,0.171724,10.2884,0.567003,-0.00860354,10.2884,0.976828,0.00860354,10.2884,0.976828,0.0102626,10.2884,0.976828,-0.0102626,10.2884,0.976828,0.0766556,10.2884,0.965167,0.140345,10.2784,0.932187,0.158916,10.2892,0.883298,0.17605,10.291,0.819461,0.176481,10.287,0.745996,0.171858,10.2913,0.679948,0.168351,10.2886,0.609384,0.0583503,10.3652,1.00444,0.128387,10.3652,0.975284,0.18196,10.3652,0.922865,0.210573,10.3652,0.849051,0.221741,10.3652,0.775739,0.226411,10.3652,0.707481,0.2255,10.3652,0.636691,0.222299,10.3652,0.566585,0.015846,10.3652,1.00972,-0.015846,10.3652,1.00972,0.0867206,10.3652,0.995909,0.152509,10.3652,0.959236,0.195479,10.3652,0.89907,0.214741,10.3652,0.825775,0.223246,10.3652,0.74997,0.225616,10.3652,0.679027,0.22605,10.3652,0.60874,0.050981,10.3652,0.969836,0.109124,10.3652,0.946926,0.151138,10.3652,0.903758,0.171911,10.3652,0.844238,0.172164,10.3652,0.772879,0.16851,10.3652,0.707905,0.167616,10.3652,0.637819,0.168566,10.3652,0.567026,-0.00819493,10.3652,0.974816,0.00819493,10.3652,0.974816,0.00985403,10.3652,0.974816,-0.00985403,10.3652,0.974816,0.0759539,10.3652,0.963237,0.128133,10.3652,0.932126,0.161527,10.3652,0.880678,0.173933,10.3652,0.820009,0.17461,10.3652,0.748625,0.170868,10.3652,0.679999,0.164825,10.3652,0.609419,0.00185591,10.2979,0.981732,-0.00185591,10.2979,0.981732,0.0661791,10.2979,0.972209,0.124558,10.2922,0.94537,0.159653,10.2934,0.896263,0.178285,10.3003,0.832642,0.182099,10.2977,0.756091,0.178966,10.2986,0.692862,0.176072,10.2992,0.62245,0.00185591,10.3652,0.981732,-0.00185591,10.3652,0.981732,0.0661791,10.3652,0.972209,0.124558,10.3652,0.94537,0.162219,10.3652,0.894112,0.180231,10.3652,0.833819,0.181736,10.3652,0.758999,0.179075,10.3652,0.692862,0.175168,10.3652,0.62245,0.00184508,10.3652,1.00878,-0.00184508,10.3652,1.00878,0.0729004,10.3652,0.993586,0.138534,10.3652,0.965123,0.18269,10.3652,0.908166,0.207718,10.3652,0.835082,0.214523,10.3652,0.760357,0.2173,10.3652,0.692295,0.216147,10.3652,0.621841,0.00184509,10.2979,1.00878,-0.00184509,10.2979,1.00878,0.0740821,10.2979,0.998077,0.141685,10.2925,0.966305,0.18622,10.2936,0.908824,0.212012,10.3002,0.838838,0.22229,10.2977,0.757442,0.226058,10.2987,0.692295,0.223493,10.2992,0.621841,0.0717223,10.2979,0.998814,0.139563,10.2931,0.967674,0.185261,10.2931,0.910768,0.211707,10.3003,0.841366,0.222048,10.298,0.760154,0.225925,10.2983,0.694671,0.223623,10.2994,0.624182,0.219987,10.2979,0.553896,0.0640071,10.2979,0.972682,0.122624,10.2925,0.946333,0.158935,10.293,0.898075,0.177367,10.3003,0.83487,0.182105,10.2981,0.758701,0.17911,10.2982,0.695199,0.176113,10.2994,0.62482,0.178079,10.2979,0.554197,0.0705406,10.3652,0.994324,0.136412,10.3652,0.966493,0.181775,10.3652,0.910108,0.207202,10.3652,0.836967,0.214594,10.3652,0.762402,0.217497,10.3652,0.694671,0.216326,10.3652,0.624182,0.213008,10.3652,0.553896,0.0640072,10.3652,0.972682,0.122624,10.3652,0.946333,0.161251,10.3652,0.896045,0.179758,10.3652,0.835746,0.18131,10.3652,0.760955,0.178654,10.3652,0.695199,0.175218,10.3652,0.62482,0.178079,10.3652,0.554197,0.0636458,10.4828,0.94973,0.0688119,10.4828,0.948056,0.119831,10.4828,0.923656,0.124827,10.4828,0.920566,0.151351,10.4828,0.876037,0.153764,10.4828,0.869913,0.17032,10.4828,0.809971,0.172664,10.4828,0.805471,0.171946,10.4828,0.739999,0.172749,10.4828,0.736113,0.168546,10.4828,0.676707,0.169143,10.4828,0.671652,0.169819,10.4828,0.60633,0.169112,10.4828,0.599988,0.0747414,10.4828,0.986586,0.0828983,10.4828,0.9846,0.144743,10.4828,0.954508,0.152494,10.4828,0.950159,0.19112,10.4828,0.895774,0.195705,10.4828,0.886231,0.236724,10.4828,0.675929,0.23567,10.4828,0.670646,0.219153,10.4828,0.819728,0.21933,10.4828,0.829056,0.231807,10.4828,0.74221,0.234117,10.4828,0.747729,0.230097,10.4828,0.605434,0.231868,10.4828,0.61394,0.168566,10.4828,0.54979,0.179508,10.4828,0.536962,0.171697,10.4828,0.620584,0.169376,10.4828,0.613162,0.16679,10.4828,0.690669,0.166194,10.4828,0.682235,0.170427,10.4828,0.752763,0.169459,10.4828,0.745057,0.165102,10.4828,0.823156,0.166296,10.4828,0.815627,0.146641,10.4828,0.888363,0.148125,10.4828,0.881904,0.109124,10.4828,0.92969,0.113757,10.4828,0.926078,0.050981,10.4828,0.952601,0.0577514,10.4828,0.950466,0.180371,10.4828,0.535623,0.22941,10.4828,0.561467,0.21609,10.4828,0.53666,0.231531,10.4828,0.626574,0.239282,10.4828,0.690246,0.239536,10.4828,0.681648,0.232563,10.4828,0.755623,0.21679,10.4828,0.83527,0.184654,10.4828,0.909941,0.187515,10.4828,0.905382,0.13111,10.4828,0.962473,0.137263,10.4828,0.95999,0.0602128,10.4828,0.990979,0.0664376,10.4828,0.989742,0.215262,10.4828,0.535331,0.22979,10.4828,0.585996,0.230031,10.4828,0.593599,0.229781,10.4828,0.651828,0.229547,10.4828,0.732565,0.231065,10.4828,0.738033,0.219508,10.4828,0.806632,0.220018,10.4828,0.812548,0.199308,10.4828,0.879758,0.15566,10.4828,0.943182,0.0894434,10.4828,0.983098,0.0177085,10.4828,0.996264,-0.0177085,10.4828,0.996264,-0.00619631,10.4828,0.997862,0.00619631,10.4828,0.997862,0.00785541,10.4828,0.997862,-0.00785541,10.4828,0.997862,0.168954,10.4828,0.592183,0.170843,10.4828,0.662764,0.17461,10.4828,0.731113,0.173814,10.4828,0.799543,0.156699,10.4828,0.862279,0.128133,10.4828,0.914891,0.0759539,10.4828,0.946002,-0.00819498,10.4828,0.95758,0.00819498,10.4828,0.95758,0.00985408,10.4828,0.95758,-0.00985408,10.4828,0.95758,-0.00457143,10.4828,0.957586,0.00457143,10.4828,0.957586,0.00623053,10.4828,0.957586,-0.00623053,10.4828,0.957586,0.0650053,10.424,0.963322,0.069553,10.424,0.961003,0.123203,10.424,0.936612,0.12616,10.424,0.932706,0.161034,10.424,0.886255,0.162295,10.424,0.881196,0.178347,10.424,0.826663,0.178332,10.424,0.820421,0.181394,10.424,0.752156,0.180925,10.424,0.748096,0.179088,10.424,0.685303,0.178622,10.424,0.679819,0.173997,10.424,0.614917,0.173316,10.424,0.609372,0.078942,10.424,0.988911,0.073102,10.424,0.989986,0.145608,10.424,0.954755,0.140695,10.424,0.958262,0.189112,10.424,0.897222,0.185604,10.424,0.902825,0.225784,10.424,0.679177,0.2257,10.424,0.684763,0.211573,10.424,0.829547,0.211345,10.424,0.834348,0.221773,10.424,0.75381,0.223398,10.424,0.758268,0.22596,10.424,0.614282,0.228157,10.424,0.619872,0.17158,10.424,0.565145,0.178411,10.424,0.550243,0.169939,10.424,0.635803,0.172293,10.424,0.620593,0.172069,10.424,0.705826,0.176835,10.424,0.690887,0.174217,10.424,0.770334,0.179268,10.424,0.756239,0.170509,10.424,0.843348,0.176131,10.424,0.832163,0.14832,10.424,0.900004,0.15808,10.424,0.890182,0.104625,10.424,0.941971,0.118453,10.424,0.938467,0.044837,10.424,0.963167,0.059652,10.424,0.963662,0.186926,10.424,0.545828,0.219663,10.424,0.549933,0.226529,10.424,0.564694,0.231463,10.424,0.634831,0.227784,10.424,0.690448,0.231452,10.424,0.705686,0.226126,10.424,0.773643,0.209977,10.424,0.847539,0.183338,10.424,0.908277,0.178312,10.424,0.920318,0.136028,10.424,0.962194,0.123527,10.424,0.972689,0.0675959,10.424,0.992187,0.0530842,10.424,0.998464,0.211144,10.424,0.545648,0.227908,10.424,0.593546,0.226273,10.424,0.608757,0.226796,10.424,0.663834,0.226903,10.424,0.735099,0.222344,10.424,0.74958,0.218289,10.424,0.808435,0.212907,10.424,0.824867,0.199405,10.424,0.88106,0.158815,10.424,0.944681,0.0952392,10.424,0.986378,0.0237298,10.424,1.00231,-0.0237298,10.424,1.00231,-0.00521432,10.424,1.00071,0.00521432,10.424,1.00071,0.00687343,10.424,1.00071,-0.00687343,10.424,1.00071,0.170885,10.424,0.594154,0.176,10.424,0.664727,0.177029,10.424,0.734353,0.176336,10.424,0.802808,0.164341,10.424,0.866644,0.132602,10.424,0.920013,0.0814086,10.424,0.953083,-0.0036201,10.424,0.971476,0.0036201,10.424,0.971476,0.0052792,10.424,0.971476,-0.0052792,10.424,0.971476,0.0173095,10.424,0.966744,-0.0173095,10.424,0.966744,0.0653269,10.368,0.97232,0.0663386,10.368,0.971679,0.123915,10.368,0.945627,0.124633,10.368,0.944771,0.162088,10.368,0.894691,0.162236,10.368,0.893495,0.180377,10.368,0.83428,0.180158,10.368,0.833213,0.182031,10.368,0.759532,0.181646,10.368,0.758447,0.179479,10.368,0.693463,0.178981,10.368,0.692245,0.175859,10.368,0.623065,0.175072,10.368,0.621831,0.0743119,10.368,0.997643,0.0729596,10.368,0.997663,0.14187,10.368,0.965759,0.140541,10.368,0.966218,0.18625,10.368,0.909199,0.185348,10.368,0.910021,0.225172,10.368,0.691675,0.22463,10.368,0.692928,0.211189,10.368,0.836312,0.21131,10.368,0.837617,0.220706,10.368,0.76072,0.22129,10.368,0.762064,0.224274,10.368,0.622459,0.225061,10.368,0.623978,0.168708,10.368,0.566937,0.178094,10.368,0.55401,0.167775,10.368,0.637724,0.175141,10.368,0.624621,0.168553,10.368,0.707806,0.178504,10.368,0.694995,0.172139,10.368,0.772759,0.181152,10.368,0.76073,0.171897,10.368,0.844112,0.179645,10.368,0.835507,0.151005,10.368,0.90358,0.161107,10.368,0.895763,0.108911,10.368,0.946692,0.122427,10.368,0.945961,0.0506905,10.368,0.969521,0.0638013,10.368,0.972256,0.17912,10.368,0.552526,0.219971,10.368,0.553708,0.229148,10.368,0.566496,0.232697,10.368,0.636603,0.225396,10.368,0.694472,0.233264,10.368,0.707396,0.227574,10.368,0.77564,0.214203,10.368,0.849641,0.185069,10.368,0.911456,0.184808,10.368,0.923863,0.139396,10.368,0.967415,0.130751,10.368,0.979376,0.0715272,10.368,0.998501,0.0598757,10.368,1.00775,0.218969,10.368,0.552239,0.233573,10.368,0.608022,0.224925,10.368,0.621223,0.23233,10.368,0.678309,0.229309,10.368,0.749439,0.221225,10.368,0.759709,0.219834,10.368,0.825292,0.211918,10.368,0.835419,0.199313,10.368,0.898979,0.155809,10.368,0.959673,0.0897174,10.368,0.999674,0.0179931,10.368,1.01297,-0.0179931,10.368,1.01297,0.00208279,10.368,1.0084,-0.00208279,10.368,1.0084,0.16516,10.368,0.608697,0.171147,10.368,0.679277,0.174768,10.368,0.74804,0.174048,10.368,0.819196,0.16166,10.368,0.880015,0.128345,10.368,0.931554,0.0762117,10.368,0.962757,0.00201774,10.368,0.981247,-0.00201774,10.368,0.981247,-0.00854738,10.368,0.974434,0.00854738,10.368,0.974434,0.0102065,10.368,0.974434,-0.0102065,10.368,0.974434,0.0729526,10.362,0.998044,0.140534,10.362,0.966612,0.185338,10.362,0.910346,0.22454,10.362,0.693333,0.219345,10.362,0.552566,0.0653429,10.362,0.972767,0.12395,10.362,0.946074,0.162126,10.362,0.895117,0.180432,10.362,0.834701,0.182274,10.362,0.759896,0.179716,10.362,0.693868,0.175895,10.362,0.623469,0.178743,10.362,0.552858,0.0601899,10.3616,1.00812,0.131055,10.3616,0.979627,0.185044,10.3616,0.923983,0.214294,10.3616,0.8497,0.227662,10.3616,0.775732,0.233389,10.3616,0.707482,0.232882,10.3616,0.636694,0.229127,10.3616,0.566586,0.017689,10.3616,1.0134,-0.017689,10.3616,1.0134,0.08941,10.3616,1.00024,0.155591,10.3616,0.960347,0.199203,10.3616,0.899825,0.219881,10.3616,0.825997,0.229351,10.3616,0.750063,0.232507,10.3616,0.67903,0.233742,10.3616,0.608742,0.0510038,10.3616,0.969931,0.109178,10.3616,0.947007,0.151223,10.3616,0.903807,0.17201,10.3616,0.844259,0.172533,10.3616,0.772886,0.168907,10.3616,0.707904,0.167777,10.3616,0.637817,0.168716,10.3616,0.567025,-0.0082144,10.3616,0.974912,0.0082144,10.3616,0.974912,0.0098735,10.3616,0.974912,-0.0098735,10.3616,0.974912,0.0759873,10.3616,0.963329,0.128201,10.3616,0.932196,0.161618,10.3616,0.880715,0.174046,10.3616,0.820026,0.174747,10.3616,0.74863,0.171026,10.3616,0.679996,0.164992,10.3616,0.609417,0.00184508,10.362,1.00878,-0.00184508,10.362,1.00878,0.0740821,10.362,0.998077,0.141685,10.362,0.966305,0.186123,10.362,0.9097,0.211817,10.362,0.835899,0.221131,10.362,0.760234,0.225064,10.362,0.692295,0.224758,10.362,0.621841,0.00185591,10.362,0.981732,-0.00185591,10.362,0.981732,0.0661791,10.362,0.972209,0.124558,10.362,0.94537,0.162224,10.362,0.894108,0.180229,10.362,0.833832,0.181896,10.362,0.758982,0.179235,10.362,0.692862,0.175155,10.362,0.62245,0.0717223,10.362,0.998814,0.139563,10.362,0.967674,0.185152,10.362,0.911611,0.211292,10.362,0.837764,0.221204,10.362,0.762253,0.225262,10.362,0.694671,0.224887,10.362,0.624182,0.219987,10.362,0.553896,0.0640072,10.362,0.972682,0.122624,10.362,0.946333,0.161252,10.362,0.896044,0.179756,10.362,0.83576,0.18147,10.362,0.760937,0.178814,10.362,0.695199,0.175204,10.362,0.62482,0.178079,10.362,0.554197,0.224142,10.362,0.622865,0.220642,10.362,0.761078,0.211143,10.362,0.836625,0.0729526,10.33,0.998044,0.140534,10.3274,0.966612,0.185393,10.3277,0.909914,0.225252,10.3069,0.693333,0.219345,10.3064,0.552566,0.0653429,10.33,0.972767,0.12395,10.3272,0.946074,0.160921,10.3276,0.896167,0.178626,10.3084,0.833852,0.182601,10.3064,0.757577,0.179675,10.3069,0.693868,0.176643,10.3076,0.623469,0.178743,10.3064,0.552858,0.0599612,10.325,1.00717,0.130511,10.325,0.978815,0.172526,10.2868,0.925894,0.213094,10.3005,0.852416,0.225418,10.2998,0.775609,0.230729,10.2968,0.7075,0.230053,10.3007,0.636742,0.226517,10.2981,0.566605,0.0174944,10.325,1.01244,-0.0174944,10.325,1.01244,0.0890758,10.325,0.999323,0.154575,10.2867,0.948063,0.197371,10.2997,0.899073,0.217654,10.3002,0.826091,0.228385,10.2968,0.747641,0.232098,10.3006,0.679071,0.230783,10.2983,0.608771,0.0512325,10.325,0.970882,0.109723,10.3245,0.947819,0.152192,10.3201,0.910004,0.170002,10.3006,0.84341,0.177003,10.2998,0.773009,0.173861,10.2968,0.707885,0.170574,10.3007,0.637768,0.171326,10.2981,0.567006,-0.00840897,10.325,0.97587,0.00840897,10.325,0.97587,0.0100681,10.325,0.97587,-0.0100681,10.325,0.97587,0.0763215,10.325,0.964248,0.134273,10.32,0.932191,0.159273,10.2988,0.882956,0.175784,10.3003,0.819536,0.176251,10.2968,0.746345,0.171747,10.3006,0.679955,0.167906,10.2983,0.609388,0.00184509,10.33,1.00878,-0.00184509,10.33,1.00878,0.0740821,10.33,0.998077,0.141685,10.3273,0.966305,0.186171,10.3278,0.909262,0.211986,10.3084,0.838449,0.222137,10.3062,0.757812,0.225927,10.307,0.692295,0.223661,10.3075,0.621841,0.00185591,10.33,0.981732,-0.00185591,10.33,0.981732,0.0661791,10.33,0.972209,0.124558,10.3271,0.94537,0.160938,10.3277,0.895186,0.178542,10.3085,0.8328,0.182072,10.3062,0.756473,0.179001,10.307,0.692862,0.17595,10.3075,0.62245,0.0717223,10.33,0.998814,0.139563,10.3276,0.967674,0.185206,10.3275,0.91119,0.211652,10.3084,0.840889,0.221936,10.3065,0.760432,0.225837,10.3067,0.694671,0.223791,10.3077,0.624182,0.219987,10.3064,0.553896,0.0640071,10.33,0.972682,0.122624,10.3273,0.946333,0.160094,10.3275,0.897059,0.177683,10.3085,0.834988,0.182021,10.3065,0.758997,0.17907,10.3067,0.695199,0.175993,10.3077,0.62482,0.178079,10.3064,0.554197,0.223045,10.3076,0.622865,0.221511,10.3063,0.75891,0.211388,10.3084,0.839436,0.399454,10.1912,0.82599,0.452448,11.5694,0.616933,0.426792,11.5367,-0.348324,0.132732,10.1853,-0.400425,0.255323,9.89616,1.10514,0.38941,10.0171,0.925418,0.443333,10.1314,0.659111,0.392419,10.1217,0.395387,0.380406,10.0928,0.138624,0.378999,10.1807,-0.089564,0.366665,10.1909,-0.159978,0.425401,10.2982,0.753833,0.416764,10.4044,0.755624,0.371068,10.6271,0.80898,0.461082,11.2445,0.645257,0.462439,11.4362,0.637338,0.414528,10.371,-0.348619,0.52239,10.6349,-0.451086,0.551502,10.8753,-0.486473,0.522967,11.3342,-0.428964,0.459395,11.472,-0.373482,0.217016,11.6155,-0.432179,0.342097,11.5759,-0.390496,0.17906,11.6697,0.728054,0.335935,11.6223,0.684665,0.47637,11.6109,0.494521,0.514765,11.6364,0.279343,0.515404,11.639,0.149359,0.495261,11.6079,-0.117871,0.456745,11.569,-0.25749,0.168114,9.92578,0.365245,0.209143,9.8656,0.638926,0.285437,9.83993,1.09844,0.294308,9.96785,0.280378,0.329722,9.97209,0.513292,0.41753,9.98085,0.885168,0.215544,11.7115,-0.307005,0.35726,11.6542,-0.276448,0.203216,11.8247,-0.135543,0.399297,11.7413,-0.108161,0.211692,11.8918,0.16615,0.419436,11.7798,0.163066,0.226603,11.8865,0.365015,0.410207,11.782,0.317379,0.192763,11.8107,0.574473,0.355605,11.7368,0.534284,0.134471,10.7204,1.00746,0.242234,11.3217,0.924598,0.188895,11.4656,0.849156,0.219585,10.6295,0.90955,0.37953,11.2583,0.838598,0.356523,11.4284,0.787248,0.463262,10.2992,0.600177,0.481286,10.4454,0.631333,0.477137,10.6648,0.695305,0.502096,11.2526,0.513941,0.516038,11.4654,0.487412,0.470139,10.3437,0.351654,0.583408,10.6233,0.269269,0.595596,10.7462,0.313027,0.584441,11.2912,0.282267,0.561977,11.4981,0.266841,0.47537,10.2758,0.150212,0.558481,10.4999,0.135879,0.616291,11.3373,0.119779,0.576561,11.5103,0.139566,0.45109,10.3343,-0.114076,0.609468,10.6043,-0.0796962,0.665762,10.8138,-0.185119,0.618417,11.3431,-0.170431,0.567669,11.4973,-0.132473,0.450826,10.3559,-0.225601,0.564394,10.6269,-0.310792,0.613202,10.855,-0.36269,0.585796,11.3334,-0.312326,0.533168,11.4747,-0.271723,0.225215,11.5182,-0.499819,0.234709,11.3588,-0.576113,0.241441,10.8801,-0.674925,0.219562,10.5853,-0.633742,0.172581,10.35,-0.524528,0.353519,11.4917,-0.44716,0.390978,11.3424,-0.514406,0.436582,10.8831,-0.588709,0.39383,10.6186,-0.551646,0.312326,10.3689,-0.452937,0.375512,10.4836,0.802358,0.527557,10.7042,-0.46155,0.0746281,10.5004,1.03672,0.239311,10.5124,0.915533,0.473743,10.5466,0.665379,0.586791,10.6745,0.302855,0.631247,10.6764,-0.102343,0.582711,10.6981,-0.321279,0.226577,10.661,-0.647556,0.408647,10.6856,-0.565365,0.429672,10.9069,0.790537,0.434034,10.9295,0.775519,0.557404,10.977,-0.48969,0.556589,11.0769,-0.484563,0.164002,10.9147,0.956207,0.340487,10.9081,0.880304,0.346012,10.9256,0.87657,0.511805,10.9219,0.664659,0.510421,10.9436,0.651184,0.614866,10.8841,0.291385,0.618445,10.9572,0.2917,0.683845,10.958,-0.244369,0.681679,11.0684,-0.226367,0.624711,10.9688,-0.379683,0.629442,11.0717,-0.37189,0.245583,11.0951,-0.65788,0.244428,10.9908,-0.669796,0.440576,11.0939,-0.578723,0.440186,10.9818,-0.584458,0.201537,10.4382,0.975121,0.108843,10.439,1.07459,0.308051,10.4264,0.884971,0.355054,10.3744,0.852871,0.364427,10.3059,0.863021,0.271216,10.1545,1.05667,0.142921,10.1031,1.11827,0.342999,10.2345,0.924549,0.163353,10.3127,1.07007,0.0558012,10.2926,1.11897,0.110627,10.3011,1.09951,0.209292,10.3204,1.01188,0.221127,10.3236,1.00561,0.200393,10.3099,1.05337,0.0737163,10.3056,1.15238,0.143327,10.3143,1.11248,0.080455,11.0282,0.968881,0.0797285,10.9429,1.03352,0.0666271,10.6966,1.20725,0.0884947,10.6024,1.2242,0.193448,10.584,1.12495,0.191561,10.6355,1.08713,0.17557,10.9276,0.929765,0.104687,11.2253,0.899282,0.444006,10.9854,0.729617,0.551947,11.1574,-0.472197,0.389445,10.9889,0.783373,0.500521,11.0151,0.618519,0.645483,11.1319,0.154283,0.665504,11.1914,0.017294,0.67612,11.1399,-0.163789,0.624597,11.1555,-0.349557,0.245075,11.1624,-0.644418,0.438935,11.1617,-0.570013,0.0875737,10.2184,1.15434,0.172363,10.2711,1.10676,0.258891,10.2877,1.0266,0.310081,10.3164,0.953602,0.3173,10.3358,0.940072,0.28089,10.3491,0.997137,0.0951129,10.3845,1.17147,0.189253,10.3586,1.08553,0.365985,11.009,0.787728,0.120678,11.2114,0.857063,0.17886,10.9494,0.887645,0.0847581,11.0566,0.901111,0.28845,10.9537,0.87209,0.345076,11.2088,0.787867,0.246251,11.2582,0.81763,0.220332,11.2338,0.765134,0.322139,11.1739,0.73378,0.27647,10.9598,0.818784,0.0628091,11.0781,0.849971,0.17706,10.9623,0.8427,0.106058,11.203,0.806999,0.349806,11.0095,0.772671,0.350653,11.0241,0.734151,0.0954312,11.2208,0.761477,0.148003,10.968,0.806174,0.0297216,11.1079,0.799739,0.277907,10.9516,0.781051,0.329779,11.1829,0.698248,0.222629,11.2486,0.721882,0.226299,11.2523,0.667157,0.324742,11.182,0.664605,0.273201,10.9615,0.723778,0.0276449,11.1172,0.731768,0.145532,10.9552,0.74653,0.0959922,11.224,0.696627,0.34852,11.0256,0.690244,0.553638,10.706,0.498157,0.524777,10.5042,0.433283,0.539238,10.599,0.472243,0.571565,10.9092,0.513722,0.57351,10.9546,0.507771,0.554867,11.0504,0.470302,0.563604,10.5585,0.211453,0.624448,11.0348,0.275171,0.665355,11.0257,0.210262,0.619018,10.571,0.176682,0.792715,11.143,-0.173748,0.726978,11.2028,0.010407,0.688244,11.1384,0.141538,0.804249,11.0396,-0.255922,0.808829,10.9159,-0.27337,0.684608,10.9614,0.184497,0.767663,10.6706,-0.1131,0.62165,10.7204,0.196969,0.805125,10.8097,-0.223616,0.736733,10.5743,-0.0728808,0.624058,10.5162,0.130889,0.611291,10.659,0.206254,0.698892,10.9688,0.160044,0.791194,10.9101,-0.199463,0.782406,11.004,-0.197145,0.643064,10.5959,0.123046,0.114988,10.1662,1.12446,0.218483,10.2091,1.06793,0.296664,10.2629,0.973748,0.328988,10.3106,0.92367,0.327741,10.3543,0.911523,0.298275,10.3926,0.932793,0.103236,10.4141,1.11741,0.193333,10.396,1.03188,0.152956,10.3295,1.01524,0.0733876,10.324,1.04324,0.205792,10.3296,0.987933,0.226919,10.3235,0.977459,0.214168,10.3026,0.980081,0.110411,10.2744,1.02057,0.052524,10.2632,1.03307,0.17657,10.2881,0.998247,0.202636,10.3148,1.01855,0.145937,10.3025,1.06869,0.0757857,10.293,1.10036,0.221201,10.3216,0.99253,0.209041,10.3179,0.995313,0.164482,10.3175,1.03504,0.11032,10.3114,1.062,0.0559177,10.3061,1.07749,0.0894155,10.2108,1.15418,0.175529,10.2667,1.10377,0.263028,10.2859,1.02136,0.313183,10.3161,0.950864,0.319437,10.3369,0.937709,0.281958,10.3526,0.992235,0.0956182,10.3867,1.16771,0.189492,10.361,1.0819,0.252671,9.77079,0.288281,0.162125,9.75374,0.328641,0.356487,9.87513,-0.17497,0.387756,9.86153,-0.0925043,0.348683,9.80152,0.206011,0.233851,9.89524,-0.361654,0.116009,9.90109,-0.421934,0.304767,9.88925,-0.274581,0.422755,9.50869,-0.353824,0.204347,9.53733,-0.566356,0.321508,9.51335,-0.452169,0.419412,9.48431,0.269811,0.544903,9.51407,-0.150143,0.482752,9.51155,-0.265337,0.137342,9.34716,0.407325,0.302715,9.46059,0.417372,0.157355,9.71999,-0.479324,0.269655,9.71141,-0.401103,0.339643,9.69807,-0.312836,0.439502,9.66681,-0.113468,0.367949,9.61994,0.238593,0.409912,9.67975,-0.200566,0.115462,9.52801,0.363312,0.247966,9.60504,0.347553,0.352463,10.0147,-0.158968,0.221249,10.0117,-0.339442,0.0829814,11.1317,0.929662,0.0926938,11.138,0.880209,0.070862,11.1503,0.82516,0.0484494,11.1726,0.781049,0.0591887,11.177,0.711778,0.452531,11.0749,0.678757,0.401231,11.1015,0.754424,0.488835,11.1222,0.555562,0.379924,11.0927,0.755029,0.359399,11.0926,0.73821,0.371697,11.0941,0.717259,0.355616,11.0938,0.674933,0.570062,11.1721,0.382147,0.631332,11.0907,0.234523,0.672029,11.0681,0.19401,0.477474,10.5353,-0.409513,0.520347,10.438,0.11689,0.522838,10.5056,-0.148459,0.518917,10.5182,-0.277649,0.2022,10.4973,-0.600333,0.363514,10.532,-0.518593,0.535467,11.241,-0.451351,0.615496,11.2182,0.211317,0.641511,11.2592,0.0775873,0.647995,11.2504,-0.188306,0.605029,11.2447,-0.333,0.231329,11.2532,-0.618527,0.422362,11.2394,-0.548997,0.575224,10.7238,0.397726,0.549992,10.5628,0.32868,0.56433,10.635,0.373522,0.594298,10.8928,0.394905,0.598062,10.9497,0.378241,0.519475,10.4921,0.237282,0.596076,11.0451,0.333038,0.606307,11.1496,0.276202,0.104556,11.637,-0.452158,0.0810043,11.6856,0.740934,0.102978,11.7363,-0.321285,0.102023,11.8457,-0.141785,0.106261,11.9175,0.155022,0.114512,11.9191,0.365999,0.0897977,11.8349,0.58744,0.0947687,11.4734,0.862457,0.120671,11.37,0.925794,0.086705,10.347,-0.541123,0.110196,10.5786,-0.657394,0.121135,10.8784,-0.694739,0.110796,11.3685,-0.605683,0.108349,11.536,-0.526789,0.113703,10.6554,-0.668756,0.123206,11.0921,-0.678385,0.122629,10.9922,-0.689896,0.122952,11.1629,-0.665335,0.0456086,9.90349,-0.444072,0.0818424,9.5345,-0.611983,0.0404314,9.72569,-0.517485,0.101515,10.4892,-0.619215,0.116079,11.2617,-0.638557,0.155487,11.2881,0.889681,0.176341,11.2487,0.839736,0.164725,11.2199,0.786467,0.158635,11.2454,0.743145,0.160591,11.248,0.6832,0.0931579,11.3196,0.911592,0.0602381,11.241,0.935437,0.064217,10.5023,1.03627,0.0966303,10.4394,1.07284,0.0671636,10.3046,1.15284,0.0411314,11.0379,1.02767,0.037377,10.5968,1.25974,0.0392611,10.949,1.08328,0.030281,10.6938,1.23041,0.0863593,10.3825,1.17288,0.0933653,10.4134,1.11593,0.0387729,10.3283,1.045,0.044513,10.2904,1.10084,0.086801,10.3849,1.16914,0.0440056,11.1401,0.979394,0.510536,11.627,0.0092895,0.415348,11.7633,-0.0014057,0.207564,11.8602,-0.00689002,0.58388,11.5109,0.00176961,0.629859,11.3501,-0.0274971,0.668748,11.1714,-0.0848714,0.767713,11.1942,-0.0755102,0.750287,11.1399,-0.0654209,0.651396,11.263,-0.0557948,0.104197,11.8794,-0.00728078,0.71024,11.0828,0.126623,0.68804,11.0174,0.164007,0.645955,10.686,0.139051,0.652307,10.5689,0.106154,0.767096,11.091,-0.143253,0.729809,11.1359,0.0157568,0.787169,10.8341,-0.153945,0.766174,10.715,-0.0743866,0.75185,10.6582,-0.0369792,0.638572,10.7274,0.158951,0.695855,11.0491,0.147974,0.701235,10.917,0.127829,0.686508,10.8899,0.146719,0.652296,10.7752,0.13451,0.632861,10.7665,0.177561,0.384596,10.1327,0.0524655,0.567372,10.4946,0.0631254,0.451005,10.2975,0.032203,0.673685,10.4607,0.0561098,0.408104,9.83161,0.0616258,0.552404,9.5045,0.0358536,0.46998,9.64565,0.048965,0.519454,10.4519,0.0266493,0.675461,10.5793,0.0614854,0.422514,10.3521,0.754728,0.471173,10.3767,0.597881,0.359741,10.3401,0.857946,0.215355,10.3229,1.00849,0.31369,10.3261,0.946837,0.503327,10.4187,0.382881,0.573506,10.5923,0.240061,0.619214,10.637,0.208596,0.328365,10.3325,0.917597,0.224926,10.3144,0.977509,0.215294,10.3187,0.993958,0.31631,10.3265,0.944287,0.534734,10.5284,0.283341,0.678201,10.6832,0.154186,0.389915,10.738,0.808349,0.135413,10.7858,0.988593,0.263819,10.7245,0.907632,0.494763,10.7716,0.696993,0.605187,10.8135,0.306467,0.078288,10.7773,1.12311,0.56524,10.7921,0.508561,0.58534,10.8055,0.402182,0.0283156,10.7894,1.171,0.651476,10.8273,0.158056,0.579509,10.5136,0.016258,0.451246,10.3191,-0.0498534,0.702187,10.4986,-0.0203015,0.407297,9.84936,-0.0260794,0.58061,9.51567,-0.0488353,0.460001,9.65729,-0.0427455,0.52134,10.4868,-0.0592735,0.724198,10.6118,0.00814378,0.661323,11.1347,0.147841,0.642032,11.0324,0.2388,0.641289,10.9656,0.201458,0.602735,10.6387,0.237416,0.583054,10.5868,0.204947,0.587988,10.551,0.134747,0.711682,11.1156,-0.143362,0.696241,11.1719,0.013335,0.719063,11.0595,-0.212123,0.721965,10.9451,-0.230062,0.708268,10.8148,-0.170336,0.673587,10.6658,-0.072383,0.649904,10.5942,-0.037935,0.604266,10.701,0.247903,0.647658,11.0773,0.215766,0.718231,11.1575,-0.0815112,0.612797,10.7648,0.242064,0.641331,10.894,0.187727,0.624977,10.506,0.0630326,0.592894,10.6004,0.220809,0.625475,10.8259,0.223558,0.623004,10.5217,0.0147998,0.460656,11.2741,0.644036,0.500072,11.4036,-0.404726,0.23398,11.3439,0.912965,0.37007,11.2935,0.830679,0.512733,11.3445,0.493842,0.575948,11.3986,0.270054,0.602634,11.4263,0.13474,0.599982,11.4244,-0.148575,0.56708,11.4096,-0.289856,0.228757,11.4377,-0.547593,0.374168,11.4167,-0.488579,0.119331,11.3912,0.916027,0.108016,11.4514,-0.57715,0.613788,11.4334,-0.00775994,0.137521,10.9131,0.968562,0.130821,10.7189,1.01856,0.0401914,10.5278,1.07935,0.233485,10.5164,0.94433,0.217914,10.6294,0.91916,0.136935,10.9475,0.936697,0.126494,10.9741,0.895146,0.12342,10.9917,0.850724,0.124244,10.9906,0.808526,0.120997,10.9774,0.74701,0.0351689,10.5183,1.07784,0.127906,10.7864,0.996213,0.404245,10.1327,0.429594,0.504914,11.63,0.386099,0.236144,9.81615,0.741243,0.358849,9.96274,0.568984,0.389451,11.7719,0.421173,0.216638,11.857,0.46152,0.547929,11.485,0.373463,0.541634,11.2746,0.405494,0.482063,10.3433,0.362299,0.552703,10.6988,0.541043,0.523456,10.5016,0.441584,0.5373,10.5971,0.479398,0.547223,10.9156,0.593866,0.544784,10.9535,0.584453,0.527694,11.0328,0.54441,0.529448,11.1472,0.468855,0.10258,11.8863,0.4718,0.502899,10.4158,0.395472,0.547713,10.7848,0.574532,0.549136,11.3765,0.380214,0.680623,11.1373,0.143322,0.658752,11.0276,0.218341,0.661412,10.9632,0.18864,0.609031,10.6538,0.221445,0.596998,10.5713,0.200415,0.608952,10.5111,0.138736,0.776212,11.1425,-0.172821,0.718277,11.2012,0.0112359,0.7869,11.0436,-0.252317,0.791139,10.9218,-0.269892,0.7854,10.8124,-0.215631,0.750146,10.6708,-0.105534,0.72383,10.5705,-0.0656742,0.616729,10.7151,0.213672,0.66513,11.0707,0.200169,0.753705,11.1909,-0.077209,0.62787,10.7681,0.193286,0.667607,10.8853,0.162465,0.662067,10.4721,0.05665,0.605895,10.6209,0.214813,0.642448,10.8262,0.180083,0.689514,10.5074,-0.0132382,0.648295,11.1324,0.153139,0.627569,11.0344,0.268714,0.6225,10.9587,0.275673,0.586839,10.6263,0.263667,0.567057,10.5632,0.210228,0.570832,10.5193,0.137849,0.686469,11.1149,-0.164975,0.67096,11.1673,0.0165912,0.692558,11.0658,-0.229353,0.694938,10.9543,-0.247337,0.678132,10.8142,-0.187734,0.643037,10.6658,-0.100323,0.619887,10.5976,-0.073352,0.589893,10.6791,0.294138,0.63423,11.0883,0.231194,0.677532,11.1482,-0.0842749,0.59865,10.7493,0.301786,0.619564,10.8865,0.272008,0.586366,10.505,0.0674749,0.576948,10.5938,0.236649,0.608789,10.8161,0.291847,0.587649,10.5186,0.0147628,0.690262,10.8168,0.0443389,0.698211,10.8539,0.0381383,0.652295,10.8172,0.134702,0.731763,10.7139,0.0666362,0.690132,10.6981,0.123304,0.675461,10.5959,0.0649202,0.715106,10.6144,0.0165672,0.638753,10.691,0.123788,0.700284,10.7022,0.0616478,0.735362,10.7052,-0.00538407,0.749447,10.7401,-0.0465187,0.737426,10.6659,-0.0385318,0.751306,10.727,-0.0769062,0.751786,10.8575,-0.105106,0.742845,10.8406,-0.0579251,0.732326,10.8819,-0.0258034,0.733486,10.9169,-0.0692055,0.732016,10.9554,-0.0247638,0.728453,10.9107,0.0198262,0.718742,10.8665,-0.0127313,0.708696,10.888,0.0305672,0.711174,10.7415,-0.044398,0.720938,10.8357,-0.0503472,0.721681,10.7021,-0.00937895,0.762661,11.0085,-0.0687209,0.771348,10.9597,-0.115726,0.73949,10.9114,-0.139477,0.748139,10.8078,-0.0622364,0.709492,10.8123,-0.0559991,0.751107,10.8314,-0.158436,0.753243,10.912,-0.205976,0.749498,11.0055,-0.191622,0.733251,11.0908,-0.140437,0.715413,11.1357,-0.06538,0.693682,11.1361,0.0126437,0.692406,11.0489,0.142496,0.685947,11.0153,0.15218,0.679899,10.9711,0.145924,0.687567,11.0798,0.123717,0.41266,10.8282,0.799444,0.149707,10.8502,0.9724,0.308922,10.8197,0.893968,0.511886,10.8506,0.680826,0.610026,10.8488,0.298926,0.0831169,10.864,1.07915,0.568014,10.8547,0.515562,0.589819,10.8492,0.398544,0.03369,10.8678,1.13634,0.650336,10.8406,0.151253,0.633403,10.8599,0.205642,0.135137,10.8566,0.982404,0.550912,10.8585,0.586865,0.643729,10.8463,0.172516,0.614176,10.8513,0.281927,0.634146,10.8226,0.133344,0.673339,10.8112,0.0730934,0.672532,10.7667,0.100891,0.691208,10.7616,0.0365957,0.686134,10.7438,0.0824198,0.620101,10.7293,0.153769,0.630552,10.7646,0.132385,0.694856,10.7991,-0.000749676,0.699695,10.8339,-0.00587305,0.673149,10.9341,0.111901,0.700465,11.0464,0.0841271,0.703234,10.9672,0.106715,0.701355,11.0139,0.0962658,0.736907,11.054,0.0360562,0.70987,10.9477,0.0844722,0.713396,10.9997,0.058729,0.685604,10.919,0.0938407,0.693887,10.8684,0.119749,0.709115,10.8966,0.104323,0.673228,10.8302,0.103724,0.749707,11.041,-0.01575,0.721114,10.9306,0.0513706,0.723086,10.9823,0.0177463,0.695762,10.9026,0.0674903,0.693935,10.8514,0.0866304,0.701632,10.8761,0.0755774,0.673652,10.7783,0.0693107,0.694919,10.7684,-0.000299593,0.708718,10.776,-0.0532533,0.540278,10.7867,-0.474951,0.648505,10.7451,-0.143731,0.598658,10.7726,-0.34249,0.234009,10.7705,-0.66124,0.422615,10.7843,-0.577037,0.786394,10.7401,-0.168358,0.117419,10.7669,-0.681747,0.776599,10.7734,-0.113603,0.690927,10.7403,-0.12136,0.767773,10.7416,-0.160582,0.660585,10.74,-0.144029,0.76003,10.7735,-0.116831,0.753437,10.7901,-0.0862972,0.747974,10.7757,-0.0580357,0.75013,10.7618,-0.0736133,0.594223,10.7796,0.079863,0.59239,10.8226,0.105135,0.590312,10.7713,0.125581,0.591702,10.7724,0.105406,0.594189,10.8121,0.0837459,0.591097,10.8153,0.126207,0.10981,10.9255,0.996866,0.0987208,10.706,1.11618,0.0397882,10.5576,1.13564,0.213013,10.533,1.0445,0.20367,10.6301,1.00368,0.10602,10.9769,0.951272,0.0926093,11.0101,0.902334,0.0853769,11.0247,0.848527,0.0672203,11.042,0.807893,0.0624198,11.0423,0.740533,0.0318051,10.5562,1.14203,0.103097,10.7819,1.05966,0.109127,10.8603,1.03078,0.175842,10.6732,0.958505,0.166629,10.5089,0.976128,0.23654,10.9055,0.918255,0.157137,10.4415,1.02486,0.109225,10.3097,1.13213,0.133436,10.5924,1.17177,0.12905,10.6647,1.15078,0.239962,10.9252,0.903168,0.143002,10.3709,1.12815,0.23806,10.9423,0.879472,0.227251,10.9488,0.832923,0.213729,10.9515,0.798215,0.21169,10.943,0.739148,0.148294,10.4066,1.07465,0.110994,10.3244,1.0338,0.111228,10.2982,1.08437,0.143334,10.3732,1.12447,0.186187,10.7367,0.948112,0.157427,10.5152,1.0285,0.173326,10.6726,0.968859,0.216893,10.8216,0.933184,0.142292,10.5343,1.09542,0.151196,10.668,1.05993,0.0978939,10.6854,1.06053,0.0939712,10.6621,0.978184,0.0524107,10.6918,1.0773,0.0476334,10.665,0.995607,0.0574576,10.6268,1.12429,0.0553495,10.5928,1.02847,0.177612,10.596,1.00174,0.178195,10.6251,1.0985,0.0394381,10.1692,1.01097,0.241828,10.2858,0.943414,0.250902,10.3433,0.939997,0.16732,10.3805,0.974832,0.0586161,10.3913,1.01158,0.223326,10.3604,0.950324,0.10163,10.1917,0.993811,0.22354,10.2323,0.955849,0.0286463,10.3972,1.01356,0.253877,10.3213,0.938548,0.104391,10.3751,1.0003,0.145697,10.4487,0.816518,0.263806,10.2891,0.811724,0.0421492,10.4442,0.816366,0.195139,10.1666,0.813551,0.0513,10.1255,0.816865,0.117556,10.1357,0.815838,0.247324,10.2226,0.811345,0.263334,10.3619,0.813794,0.241704,10.4152,0.815076,0.0891039,10.4479,0.816681,0.202505,10.4398,0.815921,0.211328,10.4418,0.482295,0.0902159,10.4473,0.471235,0.243899,10.4209,0.482371,0.248375,10.3701,0.480286,0.211108,10.2532,0.472559,0.115512,10.1634,0.458181,0.0527663,10.173,0.46396,0.172066,10.1982,0.462861,0.0422708,10.4409,0.469801,0.234289,10.3105,0.477969,0.151055,10.4503,0.477849,0.106746,10.4044,0.383907,0.180663,10.3141,0.402206,0.0300477,10.3977,0.382492,0.132566,10.2405,0.387593,0.0374266,10.182,0.381688,0.082032,10.1977,0.375535,0.160964,10.2787,0.394712,0.196317,10.3551,0.412009,0.172206,10.3839,0.395286,0.0638514,10.4022,0.380147,0.149242,10.3983,0.391901,0.0337372,10.2938,0.352247,0.0729417,10.3071,0.351893,0.118441,10.3271,0.362759,0.134558,10.3366,0.370138,0.154695,10.3425,0.379841,0.243899,10.4209,0.749809,0.243899,10.4209,0.682949,0.243899,10.4209,0.61609,0.243899,10.4209,0.549231,0.211328,10.4418,0.749793,0.211328,10.4418,0.682919,0.211328,10.4418,0.616044,0.211328,10.4418,0.549169,0.263446,10.3594,0.748244,0.261445,10.3625,0.681927,0.259458,10.366,0.615388,0.260396,10.3716,0.548855,0.194968,10.1628,0.743984,0.193579,10.1546,0.672167,0.188229,10.1673,0.600696,0.184861,10.1778,0.532505,0.247174,10.2111,0.743963,0.245873,10.2068,0.676649,0.23831,10.219,0.608753,0.231547,10.2329,0.542132,0.118733,10.1408,0.744121,0.11842,10.1358,0.668817,0.116694,10.1464,0.590886,0.115322,10.1497,0.524354,0.0525052,10.1276,0.744881,0.0530738,10.1277,0.670208,0.0533342,10.1433,0.601175,0.0913876,10.4469,0.747698,0.0910947,10.447,0.678582,0.0908017,10.4471,0.609466,0.0905088,10.4472,0.540351,0.0431541,10.4413,0.747307,0.0416607,10.4402,0.677712,0.0418641,10.4404,0.608409,0.0420674,10.4406,0.539105,0.263461,10.2792,0.745829,0.260614,10.283,0.679577,0.256365,10.2921,0.613192,0.252771,10.301,0.547317,0.151055,10.4503,0.748904,0.151055,10.4503,0.681141,0.151055,10.4503,0.613377,0.151055,10.4503,0.545613,0.129014,10.45,0.882277,0.0771839,10.4544,0.884508,0.189687,10.4391,0.877803,0.243497,10.257,0.869308,0.26089,10.3139,0.867099,0.258923,10.3652,0.868102,0.0376292,10.4486,0.884154,0.0475267,10.135,0.894163,0.114516,10.1493,0.889364,0.204964,10.1976,0.880507,0.233415,10.405,0.870074,0.0540869,10.1941,0.573131,0.113031,10.1963,0.571311,0.0927196,10.2871,0.481887,0.109,10.2361,0.528889,0.0531513,10.291,0.486262,0.0536445,10.3358,0.5562,0.0934903,10.3251,0.554205,0.119859,10.2323,0.593451,0.120582,10.2789,0.574944,0.0697161,10.2282,0.594774,0.0758246,10.236,0.626537,0.113494,10.2465,0.625696,0.128092,10.2867,0.616656,0.102105,10.3284,0.607489,0.0602482,10.3326,0.608664,0.103604,10.3267,0.673093,0.0615983,10.3291,0.674167,0.113494,10.2513,0.680324,0.128092,10.2885,0.67655,0.0759438,10.242,0.68112,0.0761353,10.2529,0.760278,0.113494,10.2601,0.759416,0.113494,10.3184,0.756909,0.126964,10.2889,0.757853,0.0779899,10.3203,0.757988,0.111236,10.3034,0.864413,0.0782463,10.3099,0.86245,0.12172,10.2833,0.859643,0.112429,10.26,0.855025,0.0765025,10.2528,0.855079,0.073097,10.2554,0.894419,0.102923,10.2648,0.894354,0.108893,10.2833,0.896556,0.102133,10.2996,0.89882,0.0728805,10.304,0.897967,0.0902195,10.2883,0.922299,0.0631656,10.2896,0.944965,0.0902016,10.2743,0.922299,0.0916436,10.2817,0.925139,0.0646987,10.2685,0.944965,0.0636431,10.2796,0.952236,0.116967,10.4296,0.941053,0.06832,10.4393,0.947865,0.261104,10.3222,0.904768,0.0331772,10.4358,0.948837,0.108073,10.166,0.941588,0.214252,10.2143,0.918178,0.229728,10.3868,0.912631,0.0434824,10.1488,0.952568,0.257884,10.3581,0.906257,0.24588,10.2747,0.908379,0.178983,10.4158,0.927398,0.565606,10.7726,0.145421,0.556043,10.7733,0.129054,0.555927,10.8218,0.128854,0.566035,10.8144,0.146156,0.545193,10.8121,0.11048,0.543231,10.7796,0.107122,0.505215,10.8121,0.17736,0.502137,10.7796,0.174983,0.522237,10.7733,0.190511,0.537912,10.8144,0.20262,0.537238,10.7726,0.2021,0.522054,10.8218,0.190369,0.197283,10.9605,0.638722,0.0807695,11.0368,0.640881,0.12649,10.9861,0.645937,0.157394,11.1973,0.596132,0.309613,11.077,0.589679,0.0782476,11.1419,0.618438,0.304075,11.0238,0.60163,0.106973,11.1786,0.606612,0.147233,10.9713,0.642955,0.0536272,11.0952,0.63404,0.245229,10.9738,0.627722,0.285516,11.1458,0.581619,0.208476,11.1979,0.583176,0.20441,11.15,0.535694,0.258772,11.1112,0.534285,0.23031,10.9894,0.566961,0.0947102,11.0754,0.571373,0.159809,10.9859,0.579525,0.132453,11.1344,0.551968,0.271903,11.0249,0.548443,0.112129,11.1084,0.560335,0.275821,11.0625,0.539988,0.168125,11.1477,0.544553,0.146261,10.9982,0.57979,0.113913,11.0341,0.576213,0.196343,10.9792,0.575449,0.326267,10.2053,-0.265618,0.245154,10.1854,-0.342259,0.0671483,10.1876,-0.418382,0.383831,10.1631,-0.0274031,0.357489,9.91883,0.16852,0.274223,9.85766,0.274844,0.156274,9.82288,0.340451,0.300982,10.0205,-0.262537,0.372244,9.99644,-0.0836739,0.115069,10.0148,-0.397971,0.0519322,10.0182,-0.415898,0.385338,9.95555,0.0533378,0.38213,9.97927,-0.0218729,0.130963,9.7992,-0.450577,0.255697,9.79283,-0.380673,0.320107,9.78071,-0.292285,0.410926,9.74826,-0.10315,0.354287,9.69448,0.221694,0.378747,9.76182,-0.188379,0.131973,9.65556,0.334844,0.248036,9.67531,0.317779,0.0410956,9.80278,-0.481335,0.433838,9.7226,0.0628111,0.434421,9.73748,-0.0339391,0.164556,9.62046,-0.523274,0.296227,9.61899,-0.423644,0.368818,9.59499,-0.331992,0.491356,9.579,-0.130488,0.380992,9.54437,0.255593,0.443525,9.58778,-0.216391,0.13278,9.41483,0.408378,0.257239,9.52379,0.386033,0.048137,9.62104,-0.566386,0.51391,9.56452,0.0370314,0.515341,9.57445,-0.0536779,0.151626,9.31552,0.460271,0.314217,9.4015,0.486048,0.637388,9.49272,0.042743,0.669475,9.53021,-0.0607849,0.630327,9.5261,-0.171552,0.571138,9.51346,-0.30568,0.479333,9.46972,0.312565,0.10844,9.44769,-0.669188,0.399588,9.42503,-0.488904,0.243613,9.46105,-0.596024,0.503418,9.47107,-0.406336,0.308745,9.78999,0.24471,0.366563,9.47599,0.330983,0.311485,9.61346,0.286626,0.308802,9.68818,0.272209,0.321471,9.53351,0.312603,0.398998,9.43395,0.393864,0.373174,9.81313,0.154787,0.388581,9.82025,0.11773,0.398342,9.82593,0.089678,0.462669,9.49171,0.195261,0.492548,9.49505,0.142579,0.522208,9.50117,0.0893295,0.400375,9.62936,0.178369,0.424238,9.63433,0.135593,0.447286,9.64064,0.0923171,0.386425,9.70686,0.166862,0.40534,9.71261,0.127893,0.419654,9.71787,0.0953723,0.421512,9.55072,0.187313,0.453303,9.55487,0.135074,0.483621,9.56096,0.0860712,0.598211,9.48924,0.108608,0.56077,9.48228,0.174045,0.532305,9.48062,0.223316,0.308934,9.83946,0.240261,0.361204,9.8864,0.168093,0.387742,9.90697,0.0896456,0.336656,9.83527,0.201874,0.375281,9.86145,0.117755,0.370832,9.856,0.16459,3.53271,8.93966,0.0385299,3.55728,9.14192,-0.0518264,3.51973,8.76309,-0.00555762,3.5172,8.78074,-0.516791,3.52086,8.72862,-0.386739,3.52307,8.69472,-0.231988,3.509,9.2781,-0.621314,3.53936,9.36413,-0.0735252,3.51792,9.47331,-0.261818,3.50592,9.41089,-0.540366,3.5219,8.69284,-0.103315,3.55315,9.18472,-0.597015,3.52054,8.85,-0.574394,3.49364,8.88432,-0.632917,3.51269,9.13992,-0.683629,3.52354,8.99726,-0.694871,3.23579,8.68577,-0.2146,3.23538,8.69125,-0.0765202,3.23631,8.77053,0.0289004,3.24047,9.43861,-0.285127,3.21866,9.3612,-0.562044,3.22256,9.24069,-0.637826,3.25659,9.33905,-0.0648301,3.26334,9.14622,0.00442938,3.22626,8.96547,-0.698667,3.22886,8.74969,-0.52691,3.23263,8.71305,-0.373209,3.2426,8.95916,0.087996,3.22998,9.12495,-0.698015,3.2226,8.86217,-0.632182,3.29302,9.17904,-0.648379,3.26939,8.8245,-0.58246,1.78248,9.01659,0.283178,1.84517,9.336,0.29064,1.73691,8.78354,0.0882705,1.59461,8.62454,-0.549366,1.65518,8.55291,-0.400243,1.71381,8.58756,-0.272841,1.57701,8.82525,-0.613852,1.56785,9.12862,-0.650022,1.86091,9.5127,0.0594057,1.83571,9.5246,-0.248507,1.69284,9.39824,-0.510833,1.71955,8.64968,-0.0726238,-2.71754e-09,9.47258,-0.688676,-5.64066,8.78992,-0.205702,-7.67367,8.98887,-0.257284,-7.67785,8.98177,-0.195032,-7.66119,8.93969,-0.168375,-7.64233,8.89347,-0.192492,-7.63468,8.86767,-0.25454,-7.62984,8.89469,-0.316353,-7.64359,8.9414,-0.342848,-7.66534,8.983,-0.31926,-7.36813,8.99103,-0.153122,-7.37048,8.95092,-0.122221,-7.35905,8.90997,-0.152585,-7.35028,8.87263,-0.226288,-7.3459,8.91132,-0.30008,-7.35183,8.95288,-0.331212,-7.35643,8.98862,-0.2972,-7.68212,8.93163,-0.258698,-7.50006,9.0028,-0.309173,-7.49028,8.93774,-0.337273,-7.49004,8.86605,-0.310057,-7.49957,8.82574,-0.241167,-7.50402,8.86469,-0.171491,-7.50982,8.93583,-0.143537,-7.48931,9.02914,-0.237117,-7.51388,9.00146,-0.171497,-7.50828,8.9919,-0.303046,-7.49858,9.01534,-0.238331,-7.52074,8.99069,-0.179359,-7.66615,8.97468,-0.200177,-7.65489,8.97579,-0.312017,-7.66549,8.98986,-0.256449,-7.67931,8.98573,-0.201559,-7.68684,9.00343,-0.258468,-7.66809,8.98684,-0.313078,-7.51031,9.00683,-0.303224,-7.5228,9.00563,-0.179259,-7.49764,9.0311,-0.237917,-7.41098,9.02169,-0.302007,-7.40034,8.94765,-0.331642,-7.39581,8.87986,-0.302179,-7.40377,8.84379,-0.231577,-7.41008,8.87847,-0.160617,-7.41957,8.94571,-0.131217,-7.41831,9.04047,-0.231052,-7.42471,9.0203,-0.160831,-7.35981,8.90884,-0.299924,-7.36493,8.87016,-0.226516,-7.37328,8.90771,-0.15314,-7.35761,8.87139,-0.226399,-7.36572,8.90999,-0.160906,-7.35314,8.9119,-0.290873,-7.58355,8.98861,-0.319821,-7.56884,8.9365,-0.34085,-7.5611,8.88014,-0.313708,-7.5682,8.85187,-0.247987,-7.57442,8.87885,-0.181643,-7.58745,8.93466,-0.155815,-7.59712,8.98694,-0.178143,-7.5951,8.97801,-0.185309,-7.58293,8.97951,-0.312579,-7.58586,8.99385,-0.313324,-7.59812,8.99232,-0.184682,-7.5938,9.01355,-0.248995,-7.35581,9.01553,-0.293788,-7.3707,9.01439,-0.16387,-7.38961,9.02875,-0.277662,-7.396,9.0539,-0.22882,-7.39954,9.02785,-0.180452,-7.36547,9.04415,-0.265814,-7.3837,9.03736,-0.266001,-7.37227,9.0321,-0.187161,-7.39134,9.03664,-0.190574,-7.38672,9.04192,-0.228059,-7.37112,9.05765,-0.226512,-7.22199,9.05703,-0.481868,-7.2361,9.04345,-0.484244,-7.24164,9.03862,-0.449619,-7.22417,9.0342,-0.445616,-7.23048,9.03968,-0.519118,-7.21371,9.0455,-0.517628,-7.2496,9.03079,-0.440498,-7.24437,9.05479,-0.485362,-7.23509,9.03215,-0.530447,-7.22367,9.01834,-0.424075,-7.20292,9.02012,-0.542822,-7.42713,9.01878,-0.51498,-7.43482,8.9984,-0.454332,-7.41603,9.00055,-0.575662,-7.41329,8.98704,-0.574873,-7.43192,8.98493,-0.454839,-7.43422,8.99319,-0.448105,-7.42634,8.94419,-0.426681,-7.41264,8.89244,-0.450764,-7.40309,8.86803,-0.513487,-7.39264,8.89438,-0.575284,-7.39838,8.94693,-0.601148,-7.41346,8.99552,-0.581727,-7.20117,8.92805,-0.540859,-7.21949,8.92543,-0.421197,-7.20789,8.89674,-0.481569,-7.22654,8.92458,-0.414196,-7.21458,8.89629,-0.482093,-7.20631,8.9266,-0.549742,-7.27355,9.02413,-0.423046,-7.26445,9.04292,-0.488692,-7.26915,8.95598,-0.395074,-7.26034,8.90111,-0.422494,-7.25015,8.87466,-0.489152,-7.24037,8.90309,-0.555085,-7.2416,8.95886,-0.582484,-7.25311,9.02619,-0.554814,-7.33648,9.03499,-0.499217,-7.36266,9.01079,-0.445092,-7.34484,9.0126,-0.561798,-7.4941,8.99395,-0.57974,-7.5148,9.00905,-0.52901,-7.51091,8.9923,-0.474891,-7.49453,8.99636,-0.525996,-7.48171,8.98368,-0.578129,-7.49857,8.98203,-0.472899,-7.36064,8.99677,-0.44514,-7.33752,9.02026,-0.499767,-7.34294,8.99858,-0.561603,-7.35455,9.00668,-0.437318,-7.32889,9.03298,-0.498068,-7.35313,8.94542,-0.410942,-7.34656,8.88388,-0.437412,-7.33835,8.859,-0.503372,-7.32665,8.88585,-0.56802,-7.32511,8.94823,-0.593403,-7.33482,9.00869,-0.566864,-7.51001,8.94193,-0.529288,-7.20387,8.99505,-0.546426,-7.19573,8.96231,-0.577465,-7.19326,8.92766,-0.548665,-7.20123,8.89719,-0.481048,-7.21348,8.92564,-0.41327,-7.22424,8.95938,-0.385587,-7.22232,8.99654,-0.414158,-7.49116,8.99035,-0.585461,-7.46928,8.95143,-0.606858,-7.45778,8.90774,-0.581315,-7.46585,8.88228,-0.52321,-7.4765,8.90592,-0.464756,-7.49563,8.94887,-0.442731,-7.50989,8.98852,-0.468659,-7.50216,8.99541,-0.527219,-7.58741,8.93709,0.134064,-7.58186,8.93051,0.196565,-7.56181,8.88586,0.221065,-7.54728,8.83614,0.194925,-7.54908,8.80787,0.132604,-7.55445,8.83544,0.0701572,-7.57191,8.88488,0.045287,-7.58908,8.92982,0.0714031,-7.29306,8.93653,0.189577,-7.28796,8.8947,0.221162,-7.28015,8.85436,0.189642,-7.28162,8.81904,0.116503,-7.28858,8.85353,0.0425593,-7.29971,8.89355,0.0119873,-7.30298,8.9317,0.0462982,-7.59413,8.87617,0.134796,-7.43542,8.94914,0.0556602,-7.42946,8.87999,0.0271865,-7.4242,8.8096,0.0551961,-7.42196,8.78057,0.125455,-7.41618,8.81038,0.194794,-7.41824,8.88108,0.222372,-7.41527,8.97763,0.125096,-7.42746,8.94993,0.194379,-7.44196,8.93751,0.063173,-7.42369,8.9631,0.125523,-7.43479,8.93822,0.18779,-7.57174,8.92268,0.189761,-7.57824,8.92206,0.0770924,-7.57977,8.93804,0.133619,-7.58425,8.93468,0.190256,-7.60003,8.95288,0.134704,-7.59073,8.93406,0.0778993,-7.44407,8.95336,0.0630857,-7.43688,8.95407,0.187982,-7.4229,8.98001,0.125548,-7.35346,8.9679,0.0486799,-7.3462,8.89034,0.0185216,-7.33678,8.82737,0.0481969,-7.33208,8.79603,0.119909,-7.32859,8.82818,0.190707,-7.33469,8.89144,0.220683,-7.35004,8.98857,0.120022,-7.34547,8.96868,0.191059,-7.3019,8.85296,0.0447409,-7.29523,8.81884,0.118549,-7.29342,8.8538,0.191497,-7.28841,8.81894,0.117527,-7.28793,8.85431,0.182598,-7.295,8.85456,0.0527968,-7.51382,8.93487,0.0581882,-7.50255,8.87929,0.0358514,-7.49032,8.82014,0.062421,-7.48645,8.79168,0.129102,-7.48268,8.82088,0.19545,-7.49179,8.88031,0.22223,-7.50495,8.93538,0.200794,-7.50405,8.92558,0.19351,-7.51203,8.92513,0.0654096,-7.51506,8.9404,0.0649086,-7.50694,8.94083,0.194382,-7.51296,8.96247,0.129625,-7.30232,8.96043,0.0489975,-7.29716,8.96133,0.179229,-7.33085,8.97523,0.0697237,-7.32991,9.00228,0.118601,-7.32538,8.97584,0.167253,-7.30789,8.99112,0.0777162,-7.3242,8.98432,0.0803173,-7.30212,8.97966,0.15621,-7.31988,8.98477,0.15581,-7.32162,8.98932,0.118131,-7.30787,9.00557,0.117038,-6.9185,9.00413,-0.725684,-6.93103,8.99079,-0.728392,-6.94033,8.98744,-0.698472,-6.92554,8.98343,-0.692467,-6.92423,8.98468,-0.758502,-6.90937,8.9903,-0.755847,-6.94896,8.97993,-0.691279,-6.93851,9.00136,-0.731245,-6.92827,8.97626,-0.768344,-6.92787,8.96836,-0.672414,-6.89849,8.96288,-0.774891,-7.08432,8.96365,-0.770892,-7.09622,8.9494,-0.72297,-7.07009,8.94338,-0.8158,-7.06826,8.93175,-0.814033,-7.09414,8.93773,-0.7222,-7.09645,8.94523,-0.717721,-7.09326,8.90488,-0.697125,-7.08122,8.8597,-0.711246,-7.06805,8.83525,-0.757554,-7.05389,8.85328,-0.80644,-7.05501,8.89589,-0.830508,-7.06763,8.93857,-0.819947,-6.89805,8.87387,-0.765508,-6.92681,8.87999,-0.662905,-6.90984,8.84921,-0.712029,-6.93443,8.87997,-0.658124,-6.91599,8.84908,-0.713347,-6.90224,8.87238,-0.773585,-6.9727,8.97357,-0.679621,-6.95652,8.98936,-0.735639,-6.97496,8.91127,-0.651253,-6.9649,8.86013,-0.669749,-6.94867,8.83136,-0.722698,-6.93345,8.85287,-0.779347,-6.93151,8.90196,-0.807151,-6.94313,8.96781,-0.790281,-7.01724,8.97842,-0.751598,-7.04381,8.95979,-0.709522,-7.01826,8.9539,-0.800676,-7.12792,8.94025,-0.826398,-7.14903,8.95753,-0.789047,-7.15146,8.94578,-0.744372,-7.13499,8.94627,-0.784255,-7.11865,8.93075,-0.823014,-7.14215,8.93627,-0.741142,-7.04248,8.94753,-0.708459,-7.01757,8.96571,-0.750969,-7.01699,8.94157,-0.799364,-7.03844,8.95654,-0.702113,-7.01031,8.97767,-0.749553,-7.04108,8.90538,-0.677177,-7.03397,8.85124,-0.69366,-7.02052,8.82598,-0.743226,-7.00485,8.84439,-0.795096,-7.0003,8.89594,-0.819441,-7.01002,8.95006,-0.803734,-7.14789,8.89696,-0.784633,-6.89881,8.93798,-0.776174,-6.8895,8.90379,-0.799472,-6.89027,8.87285,-0.771404,-6.90375,8.84941,-0.710721,-6.92252,8.88074,-0.655222,-6.93485,8.91409,-0.634863,-6.92751,8.94766,-0.661492,-7.1251,8.9362,-0.830384,-7.10668,8.90019,-0.842517,-7.10105,8.86385,-0.818182,-7.11326,8.84598,-0.771253,-7.12705,8.86996,-0.727604,-7.14339,8.90881,-0.714643,-7.15132,8.94236,-0.739034,-7.14101,8.94555,-0.785936,-6.48998,8.7564,0.865961,-6.46722,8.68488,0.852216,-6.54609,8.80882,0.851895,-6.55622,8.80221,0.840759,-6.47558,8.68075,0.839264,-6.46589,8.67697,0.847063,-6.48167,8.63833,0.800025,-6.53391,8.64287,0.755222,-6.5992,8.6927,0.742157,-6.62125,8.76636,0.759728,-6.60448,8.81224,0.806317,-6.55366,8.81314,0.847421,-6.32748,8.74005,0.709919,-6.35223,8.82097,0.721813,-6.36035,8.68477,0.651814,-6.41012,8.69564,0.602493,-6.46305,8.75357,0.578757,-6.48581,8.83036,0.599296,-6.47095,8.88149,0.646876,-6.40717,8.88474,0.70612,-6.4109,8.79216,0.788117,-6.4085,8.71301,0.79155,-6.48538,8.83694,0.790338,-6.59284,8.77462,0.91993,-6.56108,8.72354,0.947204,-6.53359,8.66719,0.924406,-6.55398,8.72546,0.916499,-6.59282,8.77418,0.90039,-6.52987,8.66719,0.902944,-6.41884,8.70731,0.779711,-6.42432,8.78481,0.778594,-6.49683,8.83005,0.779279,-6.40111,8.70694,0.780282,-6.40673,8.79388,0.778853,-6.42628,8.65755,0.727389,-6.48666,8.66028,0.680364,-6.54453,8.71651,0.661859,-6.56966,8.79193,0.680226,-6.55189,8.84124,0.732692,-6.48635,8.84522,0.778782,-6.60418,8.69766,0.891154,-6.59789,8.77969,0.915191,-6.6333,8.79025,0.871189,-6.64581,8.75014,0.828429,-6.62506,8.68232,0.808567,-6.56832,8.63516,0.825169,-6.5307,8.62595,0.871524,-6.53111,8.66018,0.919659,-6.56074,8.72233,0.92385,-1.21737,9.53133,-0.448082,-1.40162,9.47178,0.262551,-1.30654,9.63357,-0.206991,-1.46176,9.13475,-0.650022,-1.08078,9.33628,-0.602687,-1.39849,9.63128,-0.00197884,-1.62297,8.80308,0.0993095,-1.42615,8.79005,0.356225,-1.60033,8.58477,-0.287381,-1.61991,8.63059,-0.0815447,-1.50952,8.62187,-0.55945,-1.74763,9.52214,-0.250404,-1.56093,9.39883,-0.511213,-1.76818,9.37851,0.292151,-1.80179,9.51701,0.049988,-1.48199,8.83394,-0.625891,-1.5896,8.5393,-0.40615,-1.69956,9.02634,0.285672,-1.44712,9.01548,0.322602,-3.09687,8.95932,0.145351,-3.08718,8.70514,-0.368344,-3.07203,8.94841,-0.668311,-3.11801,9.32407,-0.0429021,-3.11668,9.14076,0.0716838,-3.07562,9.34108,-0.550414,-3.10482,9.42212,-0.283003,-3.08379,8.7322,-0.539643,-3.09132,8.68293,-0.055541,-3.09109,8.67669,-0.205581,-3.09543,8.76411,0.0682914,-3.07723,9.22892,-0.625634,-3.36671,9.25246,-0.650017,-3.37855,8.77694,-0.0104906,-3.38181,8.69485,-0.223619,-3.38079,8.69957,-0.0974994,-3.37528,8.76717,-0.514176,-3.37729,9.4551,-0.28725,-3.36303,9.38131,-0.573674,-3.41171,9.15168,-0.0628249,-3.39639,9.35403,-0.0867581,-3.38207,8.98253,-0.729022,-3.37941,8.72097,-0.378073,-3.38992,8.95899,0.0306416,-3.67677,8.92032,0.0464183,-3.66354,8.73627,-0.395405,-3.72276,9.01041,-0.663786,-3.68358,9.37423,-0.0602922,-3.70415,9.13216,-0.0408277,-3.6502,9.44046,-0.507057,-3.65983,9.49152,-0.236385,-3.66036,8.79432,-0.519406,-3.66423,8.68611,-0.10913,-3.66553,8.69458,-0.240357,-3.66213,8.74923,-0.000624619,-3.65391,9.30373,-0.592611,-2.12035,8.95442,0.312094,-2.75305,8.94448,0.260216,-2.16271,9.24464,0.287933,-2.77786,9.16575,0.206228,-2.07626,8.73634,0.17369,-2.73451,8.72889,0.164155,-1.96736,8.6939,-0.554391,-2.68385,8.72217,-0.526497,-1.99516,8.60825,-0.41789,-2.69115,8.68961,-0.4107,-2.01594,8.57385,-0.25797,-2.70093,8.63924,-0.244334,-1.95311,8.91474,-0.627429,-2.66799,8.94808,-0.654772,-1.93176,9.16286,-0.650022,-2.66683,9.16658,-0.644515,-2.17526,9.47259,0.0604887,-2.78538,9.37328,0.0133864,-2.11494,9.51083,-0.250259,-2.76784,9.46297,-0.262635,-1.99683,9.40619,-0.511213,-2.69077,9.37026,-0.520064,-2.02916,8.63061,-0.0048831,-2.70828,8.64084,-0.00291799,-4.52806,8.7375,-0.382488,-5.09983,8.84914,-0.41521,-4.52471,8.66704,-0.276249,-5.10077,8.77178,-0.350961,-4.52052,8.65553,-0.139298,-5.09616,8.73323,-0.245183,-4.5198,9.35512,-0.0195722,-5.06645,9.20669,0.0332032,-4.52124,9.40164,-0.250677,-5.06891,9.29213,-0.137965,-4.52469,9.33567,-0.368075,-5.07334,9.28151,-0.244325,-4.53143,9.19359,0.0886739,-5.0736,9.05948,0.0881668,-4.54947,8.93939,0.04517,-5.08254,8.89591,0.023806,-4.52699,9.13609,-0.548565,-5.08579,9.1881,-0.435938,-4.525,8.94031,-0.546353,-5.09371,9.03931,-0.488755,-4.52656,8.84329,-0.485265,-5.0956,8.95223,-0.467176,-4.53099,8.7583,-0.00825121,-5.08897,8.78147,-0.0957501,-1.8845,8.99403,0.280685,-1.91614,9.29815,0.287265,-1.85305,8.77042,0.0772314,-1.68028,8.62722,-0.539282,-1.72112,8.56653,-0.394336,-1.82966,8.59072,-0.258301,-1.67277,8.81656,-0.601814,-1.67484,9.1225,-0.650022,-1.92429,9.50662,0.0688235,-1.91382,9.52706,-0.248198,-1.8261,9.39765,-0.510453,-1.81626,8.66679,-0.0637031,-4.07704,8.71165,-0.306155,-4.07424,8.67358,-0.185196,-4.07252,8.70179,-0.0614413,-4.06888,9.43301,-0.133696,-4.06918,9.42688,-0.386892,-4.07176,9.32186,-0.487957,-4.08696,9.29436,0.0117633,-4.10634,9.04203,0.00221116,-4.07357,9.05848,-0.610871,-4.07477,8.86157,-0.533149,-4.07552,8.78435,-0.438063,-4.08584,8.84215,0.0248276,-3.08146,9.1045,-0.684916,-3.38072,9.14539,-0.711113,-3.07649,8.86626,-0.621626,-3.37006,8.85808,-0.642737,-3.19366,9.1712,-0.675955,-3.39306,9.18687,-0.620804,-3.71482,9.18257,-0.573226,-4.52613,9.24514,-0.485524,-5.08041,9.25126,-0.357613,-4.07331,9.19131,-0.580949,-3.17298,8.82723,-0.600068,-3.36641,8.82177,-0.564851,-3.67616,8.87822,-0.583936,-4.52609,9.02983,-0.572456,-5.09036,9.11299,-0.484585,-4.07299,8.94309,-0.592349,-3.61373,8.91056,-0.623096,-3.64025,9.13445,-0.656145,-3.66633,9.012,-0.660721,-2.42859,8.95404,0.291979,-2.45874,9.1947,0.252357,-2.39964,8.73531,0.17919,-2.30919,8.72175,-0.543404,-2.32652,8.65817,-0.417001,-2.34131,8.60763,-0.250857,-2.29334,8.93877,-0.641359,-2.28827,9.16701,-0.647533,-2.4664,9.42954,0.0409799,-2.45192,9.48577,-0.255204,-2.33209,9.38896,-0.515213,-2.35503,8.63533,0.003102,-5.57868,9.20879,-0.0817853,-5.58386,8.98781,-0.489309,-5.58018,8.77341,-0.336416,-5.58052,8.82284,-0.424443,-5.57914,8.7858,-0.184473,-5.57835,8.85716,-0.0425029,-5.57709,8.97779,0.0606541,-5.57611,9.10623,0.0496596,-5.57691,9.21536,-0.189068,-5.57803,9.21069,-0.302691,-5.5787,9.1733,-0.392374,-5.57906,9.12122,-0.45773,-5.57943,9.06255,-0.48134,-5.58031,8.8963,-0.463737,-1.27288,9.23853,-0.626354,-1.50399,8.81033,0.228623,-1.47326,9.58016,-0.236267,-1.37966,9.46321,-0.480229,-1.60657,9.56804,0.00531986,-1.59537,9.4347,0.272244,-1.56173,9.03012,0.304752,-0.181336,10.9478,0.663478,-0.0613856,11.0519,0.697379,-0.127712,10.9664,0.669016,-0.0855907,11.003,0.68092,-0.2383,10.95,0.665151,-0.289932,10.9726,0.673778,-0.32837,11.0123,0.688047,-0.0654835,11.0631,0.761504,-0.0960779,11.043,0.805238,-0.142467,11.0258,0.833554,-0.197589,11.0139,0.84214,-0.25305,11.0093,0.829689,-0.300409,11.0127,0.798097,-0.332456,11.0235,0.752173,-0.058116,11.1016,0.714852,-0.347084,11.0587,0.704752,-0.33523,11.0421,0.758016,-0.303184,11.0313,0.80394,-0.255825,11.028,0.835531,-0.200363,11.0326,0.847982,-0.145242,11.0444,0.839397,-0.0988525,11.0617,0.811081,-0.068258,11.0818,0.767347,-0.045293,11.0805,0.77654,-0.0810608,11.057,0.827669,-0.135294,11.0368,0.860773,-0.199736,11.023,0.87081,-0.264576,11.0176,0.856254,-0.319943,11.0215,0.81932,-0.357408,11.0341,0.765631,-0.371267,11.0535,0.703361,-0.0334361,11.1037,0.715168,-0.0471177,11.0283,0.754127,-0.0731579,10.9755,0.721185,-0.119106,10.9398,0.686946,-0.177967,10.9268,0.656621,-0.132961,10.9308,0.706751,-0.098758,10.9587,0.75778,-0.0805659,11.0064,0.80194,-0.131282,10.9875,0.832897,-0.137574,10.9442,0.781474,-0.153968,10.9229,0.719574,-0.17893,10.9176,0.723462,-0.183698,10.9343,0.788658,-0.191545,10.9745,0.842284,-0.25218,10.9695,0.828672,-0.230106,10.9305,0.778239,-0.204046,10.9155,0.717824,-0.225492,10.917,0.703517,-0.269734,10.9333,0.751805,-0.303956,10.9732,0.794133,-0.338991,10.985,0.743926,-0.296548,10.9423,0.713378,-0.240004,10.9219,0.682721,-0.245372,10.9294,0.6586,-0.306467,10.9562,0.668809,-0.351951,11.0031,0.685694,-0.114513,10.9488,0.663174,-0.0646715,10.9921,0.67726,-0.0360297,11.05,0.696736,-0.349401,11.074,0.709405,-0.117462,11.2057,0.75675,-0.0766691,11.1662,0.740645,-0.230527,11.2286,0.767496,-0.285586,11.2084,0.7605,-0.328285,11.1702,0.746257,-0.352122,11.1197,0.726934,-0.171489,11.2277,0.766178,-0.340446,11.0722,0.767899,-0.308603,11.0603,0.813511,-0.261536,11.0567,0.845271,-0.20641,11.0619,0.858344,-0.151618,11.0752,0.850741,-0.105501,11.0946,0.82362,-0.07508,11.117,0.781107,-0.0722649,11.1004,0.77513,-0.102686,11.0779,0.817642,-0.305788,11.0436,0.807534,-0.337631,11.0556,0.761923,-0.0621716,11.1225,0.7237,-0.258721,11.04,0.839295,-0.203595,11.0452,0.852369,-0.148803,11.0585,0.844765,-0.0499738,11.1022,0.785634,-0.0855386,11.076,0.835334,-0.139454,11.0533,0.867043,-0.203511,11.0378,0.875931,-0.267958,11.0317,0.860647,-0.322984,11.0359,0.823517,-0.360211,11.0499,0.770192,-0.373972,11.0714,0.708794,-0.0381737,11.1281,0.725507,-0.166323,11.2458,0.773543,-0.170904,11.2358,0.796887,-0.113054,11.2022,0.805903,-0.0690377,11.1513,0.800724,-0.102373,11.1267,0.847309,-0.138567,11.1834,0.841556,-0.184712,11.2256,0.816183,-0.205644,11.2168,0.828494,-0.177245,11.1671,0.864305,-0.152907,11.1055,0.877028,-0.212948,11.0909,0.885359,-0.223198,11.156,0.87068,-0.230514,11.2108,0.831944,-0.255535,11.2084,0.82601,-0.269431,11.1516,0.859716,-0.273355,11.0852,0.871034,-0.32493,11.0892,0.836231,-0.308906,11.1546,0.83308,-0.276899,11.21,0.811595,-0.291352,11.2154,0.790892,-0.335612,11.1647,0.794826,-0.359823,11.1023,0.786251,-0.372722,11.1225,0.728701,-0.345484,11.1801,0.75078,-0.296694,11.2238,0.767055,-0.233781,11.2469,0.775048,-0.0579775,11.1756,0.744367,-0.104589,11.2208,0.762769,-0.136852,11.0884,0.849572,-0.156724,11.1112,0.566051,-0.1083,11.1305,0.597234,-0.0744349,11.1434,0.645992,-0.0602837,11.148,0.704899,-0.0680009,11.1434,0.76499,-0.0964115,11.1305,0.817114,-0.141381,11.1112,0.849817,-0.154279,11.1305,0.850515,-0.120243,11.1662,0.818403,-0.0991388,11.1901,0.766673,-0.0939872,11.1985,0.706722,-0.105573,11.1901,0.647675,-0.132132,11.1662,0.598523,-0.169621,11.1305,0.566748,-0.188924,11.1434,0.567792,-0.167799,11.1901,0.600452,-0.152174,11.2213,0.650195,-0.144428,11.2322,0.709449,-0.14574,11.2213,0.769193,-0.155911,11.1901,0.820331,-0.173581,11.1434,0.851558,-0.196351,11.148,0.852789,-0.197983,11.1985,0.822606,-0.20071,11.2322,0.772165,-0.203927,11.2441,0.712666,-0.207144,11.2322,0.653167,-0.209871,11.1985,0.602726,-0.211694,11.148,0.569023,-0.234463,11.1434,0.570254,-0.251943,11.1901,0.605001,-0.262114,11.2213,0.656139,-0.263426,11.2322,0.715883,-0.25568,11.2213,0.775137,-0.240055,11.1901,0.824881,-0.21912,11.1434,0.854021,-0.238423,11.1305,0.855064,-0.275722,11.1662,0.826809,-0.302281,11.1901,0.777657,-0.313867,11.1985,0.71861,-0.308715,11.1901,0.658659,-0.28761,11.1662,0.606929,-0.253766,11.1305,0.571298,-0.266663,11.1112,0.571995,-0.311442,11.1305,0.608218,-0.339853,11.1434,0.660342,-0.34757,11.148,0.720433,-0.333419,11.1434,0.77934,-0.299554,11.1305,0.828098,-0.251321,11.1112,0.855761,-0.25585,11.0884,0.856006,-0.307922,11.0884,0.82855,-0.344353,11.0884,0.779932,-0.359405,11.0884,0.721073,-0.350787,11.0884,0.660934,-0.319811,11.0884,0.608671,-0.271193,11.0884,0.57224,-0.212334,11.0884,0.557188,-0.266663,11.0656,0.571995,-0.311442,11.0463,0.608218,-0.339853,11.0333,0.660342,-0.34757,11.0288,0.720433,-0.333419,11.0333,0.77934,-0.299554,11.0463,0.828098,-0.251321,11.0656,0.855761,-0.238423,11.0463,0.855064,-0.275722,11.0105,0.826809,-0.302281,10.9867,0.777657,-0.313867,10.9783,0.71861,-0.308715,10.9867,0.658659,-0.28761,11.0105,0.606929,-0.253766,11.0463,0.571298,-0.234463,11.0333,0.570254,-0.251943,10.9867,0.605001,-0.262114,10.9555,0.656139,-0.263426,10.9445,0.715883,-0.25568,10.9555,0.775137,-0.240055,10.9867,0.824881,-0.21912,11.0333,0.854021,-0.196351,11.0288,0.852789,-0.197983,10.9783,0.822606,-0.20071,10.9445,0.772165,-0.203927,10.9327,0.712666,-0.207144,10.9445,0.653167,-0.209871,10.9783,0.602726,-0.211694,11.0288,0.569023,-0.188924,11.0333,0.567792,-0.167799,10.9867,0.600452,-0.152174,10.9555,0.650195,-0.144428,10.9445,0.709449,-0.14574,10.9555,0.769193,-0.155911,10.9867,0.820331,-0.173581,11.0333,0.851558,-0.154279,11.0463,0.850515,-0.120244,11.0105,0.818403,-0.0991388,10.9867,0.766673,-0.0939872,10.9783,0.706722,-0.105573,10.9867,0.647675,-0.132132,11.0105,0.598523,-0.169621,11.0463,0.566748,-0.156724,11.0656,0.566051,-0.1083,11.0463,0.597234,-0.074435,11.0333,0.645992,-0.0602838,11.0288,0.7049,-0.0680009,11.0333,0.76499,-0.0964116,11.0463,0.817114,-0.141381,11.0656,0.849817,-0.0880429,11.0884,0.816662,-0.0570667,11.0884,0.764398,-0.0484487,11.0884,0.70426,-0.0635008,11.0884,0.6454,-0.0999315,11.0884,0.596782,-0.152195,11.0884,0.565806,-0.177035,11.0803,0.847026,-0.181627,11.0734,0.847275,-0.188499,11.0688,0.847646,-0.196605,11.0672,0.848084,-0.204711,11.0688,0.848523,-0.211583,11.0734,0.848894,-0.216175,11.0803,0.849142,-0.217787,11.0884,0.84923,-0.216175,11.0965,0.849142,-0.211583,11.1034,0.848894,-0.204711,11.108,0.848523,-0.196605,11.1096,0.848084,-0.188499,11.108,0.847646,-0.181627,11.1034,0.847275,-0.177035,11.0965,0.847026,-0.175423,11.0884,0.846939,-0.165666,11.0884,0.845582,-0.168025,11.1003,0.845709,-0.174741,11.1103,0.846073,-0.184793,11.1171,0.846616,-0.19665,11.1194,0.847257,-0.208507,11.1171,0.847898,-0.218558,11.1103,0.848442,-0.225275,11.1003,0.848805,-0.227633,11.0884,0.848933,-0.225275,11.0765,0.848805,-0.218558,11.0664,0.848442,-0.208507,11.0597,0.847898,-0.19665,11.0574,0.847257,-0.184793,11.0597,0.846616,-0.174741,11.0664,0.846073,-0.168025,11.0765,0.845709,-0.19665,11.0884,0.847257,-0.138652,11.1123,0.851284,-0.152169,11.1325,0.852014,-0.1724,11.1461,0.853108,-0.196264,11.1508,0.854399,-0.220127,11.1461,0.855689,-0.240358,11.1325,0.856783,-0.253875,11.1123,0.857513,-0.258622,11.0884,0.85777,-0.253875,11.0645,0.857513,-0.240358,11.0442,0.856783,-0.220127,11.0307,0.855689,-0.196264,11.0259,0.854399,-0.1724,11.0307,0.853108,-0.15217,11.0442,0.852014,-0.138652,11.0645,0.851284,-0.133905,11.0884,0.851027,-0.0619781,10.2846,0.956831,-0.117528,10.2898,0.931531,-0.151428,10.289,0.885222,-0.169091,10.2823,0.825039,-0.173168,10.2846,0.75253,-0.170341,10.2841,0.692479,-0.167581,10.2833,0.625752,-0.169464,10.2846,0.558823,-0.0691909,10.2846,0.98079,-0.133247,10.2894,0.950998,-0.17582,10.2889,0.896847,-0.200442,10.2824,0.830861,-0.210127,10.2846,0.753815,-0.21365,10.284,0.691972,-0.211296,10.2833,0.625179,-0.207948,10.2846,0.558547,-1.37054e-14,10.2846,0.990547,-1.37054e-14,10.2846,0.965526,-0.0619781,10.2208,0.956831,-0.117528,10.2208,0.931531,-0.153709,10.2208,0.883235,-0.171067,10.2208,0.825951,-0.172664,10.2208,0.755081,-0.17024,10.2208,0.692479,-0.166777,10.2208,0.625752,-0.169464,10.2208,0.558823,-0.0680708,10.2208,0.976534,-0.130261,10.2208,0.949878,-0.172491,10.2208,0.896208,-0.205483,10.2208,0.691972,-0.201333,10.2208,0.558547,-1.38187e-14,10.2208,0.990547,-0.196275,10.2208,0.82703,-0.202888,10.2208,0.756357,-0.204317,10.2208,0.625179,-1.38187e-14,10.2208,0.965526,-0.0566604,10.2936,0.988537,-0.123231,10.2936,0.961794,-0.16225,10.3029,0.912605,-0.20185,10.2909,0.84315,-0.21338,10.2917,0.769939,-0.218354,10.295,0.705403,-0.217689,10.2907,0.63834,-0.214369,10.2936,0.571856,-0.0164408,10.2936,0.993532,0.0164408,10.2936,0.993532,-0.0841565,10.2936,0.981131,-0.146449,10.3031,0.93212,-0.186856,10.2918,0.886873,-0.206023,10.2913,0.817819,-0.216377,10.295,0.743097,-0.219977,10.2909,0.67846,-0.218361,10.2933,0.611824,-0.0488204,10.2936,0.955946,-0.10456,10.2946,0.933954,-0.145216,10.3028,0.903216,-0.160889,10.2908,0.834098,-0.16846,10.2917,0.76751,-0.165553,10.2949,0.705762,-0.162125,10.2907,0.639298,-0.162811,10.2936,0.57223,0.00811154,10.2936,0.960681,-0.00811154,10.2936,0.960681,-0.00977064,10.2936,0.960681,0.00977064,10.2936,0.960681,-0.0727008,10.2936,0.949628,-0.133068,10.3031,0.918368,-0.150671,10.2928,0.872028,-0.166911,10.2911,0.811521,-0.167319,10.2949,0.741888,-0.162937,10.2909,0.679285,-0.159614,10.2934,0.612401,-0.0553502,10.2208,0.986848,-0.121734,10.2208,0.959217,-0.172513,10.2208,0.909532,-0.199633,10.2208,0.839568,-0.21022,10.2208,0.77008,-0.214646,10.2208,0.705382,-0.213782,10.2208,0.638284,-0.210748,10.2208,0.571834,-0.0150628,10.2208,0.991858,0.0150628,10.2208,0.991858,-0.0822409,10.2208,0.978766,-0.144598,10.2208,0.944006,-0.185327,10.2208,0.886978,-0.203584,10.2208,0.817506,-0.211645,10.2208,0.745655,-0.213892,10.2208,0.678412,-0.214303,10.2208,0.611791,-0.0483653,10.2208,0.954054,-0.103475,10.2208,0.932338,-0.143299,10.2208,0.891421,-0.162988,10.2208,0.835006,-0.163228,10.2208,0.767369,-0.159764,10.2208,0.705783,-0.158917,10.2208,0.639354,-0.159817,10.2208,0.572252,0.00772425,10.2208,0.958773,-0.00772425,10.2208,0.958773,-0.00938335,10.2208,0.958773,0.00938335,10.2208,0.958773,-0.0720357,10.2208,0.947799,-0.121494,10.2208,0.91831,-0.153146,10.2208,0.869546,-0.164905,10.2208,0.812041,-0.165546,10.2208,0.74438,-0.161999,10.2208,0.679333,-0.156271,10.2208,0.612434,-1.37054e-14,10.2846,0.965329,-0.00180238,10.2846,0.965329,0.00180238,10.2846,0.965329,-0.0627708,10.2846,0.956302,-0.118104,10.29,0.930863,-0.151369,10.2889,0.884318,-0.16903,10.2823,0.824015,-0.172645,10.2847,0.751456,-0.169675,10.2839,0.691525,-0.166932,10.2834,0.624785,-1.38187e-14,10.2208,0.965329,-0.00180238,10.2208,0.965329,0.00180238,10.2208,0.965329,-0.0627708,10.2208,0.956302,-0.118104,10.2208,0.930863,-0.153801,10.2208,0.882279,-0.170875,10.2208,0.825131,-0.172301,10.2208,0.754213,-0.169779,10.2208,0.691525,-0.166076,10.2208,0.624785,-1.38187e-14,10.2208,0.990967,-0.00179212,10.2208,0.990967,0.00179212,10.2208,0.990967,-0.0691415,10.2208,0.976565,-0.131352,10.2208,0.949586,-0.173205,10.2208,0.8956,-0.196927,10.2208,0.826328,-0.203377,10.2208,0.7555,-0.20601,10.2208,0.690988,-0.204916,10.2208,0.624209,-1.37054e-14,10.2846,0.990967,-0.00179213,10.2846,0.990967,0.00179213,10.2846,0.990967,-0.0702616,10.2846,0.980821,-0.134338,10.2897,0.950706,-0.17655,10.2886,0.896223,-0.200998,10.2824,0.829887,-0.210739,10.2848,0.752737,-0.214311,10.2839,0.690988,-0.21188,10.2834,0.624209,-0.0680248,10.2846,0.98152,-0.132327,10.2891,0.952004,-0.175642,10.2892,0.898067,-0.200708,10.2823,0.832283,-0.21051,10.2844,0.755307,-0.214184,10.2842,0.69324,-0.212003,10.2831,0.626427,-0.208556,10.2846,0.559807,-0.060712,10.2846,0.956751,-0.116272,10.2897,0.931776,-0.150689,10.2892,0.886035,-0.168159,10.2823,0.826127,-0.172651,10.2844,0.75393,-0.169811,10.2842,0.69374,-0.166971,10.2831,0.627032,-0.168834,10.2846,0.560093,-0.0669047,10.2208,0.977264,-0.129341,10.2208,0.950884,-0.172338,10.2208,0.897441,-0.196438,10.2208,0.828114,-0.203445,10.2208,0.757438,-0.206197,10.2208,0.69324,-0.205086,10.2208,0.626427,-0.201941,10.2208,0.559807,-0.0607121,10.2208,0.956751,-0.116272,10.2208,0.931776,-0.152884,10.2208,0.884111,-0.170425,10.2208,0.826957,-0.171897,10.2208,0.756067,-0.16938,10.2208,0.69374,-0.166122,10.2208,0.627032,-0.168834,10.2208,0.560093,-0.0603696,10.1093,0.934996,-0.0652662,10.1093,0.933409,-0.113624,10.1093,0.910282,-0.118359,10.1093,0.907353,-0.1435,10.1093,0.865146,-0.145787,10.1093,0.859342,-0.16148,10.1093,0.802526,-0.163702,10.1093,0.798261,-0.163021,10.1093,0.736203,-0.163782,10.1093,0.732521,-0.159798,10.1093,0.676213,-0.160364,10.1093,0.671421,-0.161005,10.1093,0.609506,-0.160335,10.1093,0.603496,-0.0708864,10.1093,0.96993,-0.0786179,10.1093,0.968047,-0.137237,10.1093,0.939525,-0.144583,10.1093,0.935402,-0.181195,10.1093,0.883854,-0.185541,10.1093,0.874809,-0.224421,10.1093,0.675475,-0.223422,10.1093,0.670468,-0.207766,10.1093,0.811774,-0.207934,10.1093,0.820616,-0.21976,10.1093,0.7383,-0.22195,10.1093,0.74353,-0.218139,10.1093,0.608657,-0.219818,10.1093,0.61672,-0.159817,10.1093,0.555916,-0.170188,10.1093,0.543756,-0.162785,10.1093,0.623017,-0.160586,10.1093,0.615982,-0.158134,10.1093,0.689447,-0.15757,10.1093,0.681452,-0.161581,10.1093,0.748302,-0.160664,10.1093,0.740997,-0.156534,10.1093,0.815024,-0.157666,10.1093,0.807887,-0.139036,10.1093,0.87683,-0.140443,10.1093,0.870708,-0.103475,10.1093,0.916002,-0.107867,10.1093,0.912577,-0.0483653,10.1093,0.937717,-0.0547826,10.1093,0.935694,-0.171007,10.1093,0.542487,-0.217489,10.1093,0.566984,-0.204863,10.1093,0.543471,-0.219498,10.1093,0.628694,-0.226845,10.1093,0.689046,-0.227086,10.1093,0.680896,-0.220477,10.1093,0.751013,-0.205526,10.1093,0.826506,-0.175067,10.1093,0.897282,-0.177778,10.1093,0.892961,-0.124315,10.1093,0.947074,-0.130147,10.1093,0.944721,-0.0571156,10.1093,0.974093,-0.0630157,10.1093,0.972922,-0.204078,10.1093,0.54221,-0.217848,10.1093,0.590233,-0.218077,10.1093,0.597439,-0.21784,10.1093,0.652631,-0.217618,10.1093,0.729157,-0.219057,10.1093,0.734341,-0.208102,10.1093,0.799362,-0.208586,10.1093,0.804968,-0.188957,10.1093,0.868674,-0.147584,10.1093,0.928789,-0.0848217,10.1093,0.966624,-0.0168281,10.1093,0.979102,0.0168281,10.1093,0.979102,0.00582987,10.1093,0.980618,-0.00582987,10.1093,0.980618,-0.00748897,10.1093,0.980618,0.00748897,10.1093,0.980618,-1.40168e-14,10.1093,0.980755,-0.160185,10.1093,0.596098,-0.161976,10.1093,0.662997,-0.165546,10.1093,0.727781,-0.164792,10.1093,0.792642,-0.14857,10.1093,0.852106,-0.121494,10.1093,0.901974,-0.0720357,10.1093,0.931462,0.0077243,10.1093,0.942437,-0.0077243,10.1093,0.942437,-0.0093834,10.1093,0.942437,0.0093834,10.1093,0.942437,0.00428974,10.1093,0.942442,-0.00428974,10.1093,0.942442,-0.00594884,10.1093,0.942442,0.00594884,10.1093,0.942442,-1.40168e-14,10.1093,0.942586,-0.0616581,10.165,0.947879,-0.0659687,10.165,0.945681,-0.11682,10.165,0.922562,-0.119623,10.165,0.91886,-0.152678,10.165,0.874832,-0.153873,10.165,0.870037,-0.169089,10.165,0.818348,-0.169074,10.165,0.812431,-0.171977,10.165,0.747727,-0.171532,10.165,0.743878,-0.169791,10.165,0.684361,-0.169349,10.165,0.679163,-0.164965,10.165,0.617645,-0.16432,10.165,0.61239,-0.0748679,10.165,0.972133,-0.0693325,10.165,0.973153,-0.138057,10.165,0.939759,-0.1334,10.165,0.943083,-0.179292,10.165,0.885226,-0.175967,10.165,0.890538,-0.214051,10.165,0.678554,-0.213972,10.165,0.683849,-0.200581,10.165,0.821081,-0.200366,10.165,0.825632,-0.210249,10.165,0.749294,-0.21179,10.165,0.75352,-0.214218,10.165,0.617043,-0.216301,10.165,0.622342,-0.162675,10.165,0.57047,-0.169149,10.165,0.556344,-0.161119,10.165,0.637442,-0.16335,10.165,0.623026,-0.163138,10.165,0.703813,-0.167655,10.165,0.689654,-0.165174,10.165,0.764956,-0.169961,10.165,0.751597,-0.161659,10.165,0.834162,-0.166988,10.165,0.823561,-0.140627,10.165,0.887863,-0.149878,10.165,0.878554,-0.0992112,10.165,0.927642,-0.112318,10.165,0.924321,-0.0425417,10.165,0.947732,-0.056584,10.165,0.948202,-0.17722,10.165,0.55216,-0.208249,10.165,0.55605,-0.214757,10.165,0.570042,-0.219434,10.165,0.636521,-0.215947,10.165,0.689237,-0.219424,10.165,0.703681,-0.214376,10.165,0.768093,-0.199069,10.165,0.838135,-0.173819,10.165,0.895705,-0.169055,10.165,0.907118,-0.128976,10.165,0.94681,-0.117128,10.165,0.956757,-0.0641137,10.165,0.975239,-0.0503588,10.165,0.981188,-0.200175,10.165,0.55199,-0.216064,10.165,0.597389,-0.214515,10.165,0.611807,-0.21501,10.165,0.664011,-0.215112,10.165,0.73156,-0.21079,10.165,0.745285,-0.206947,10.165,0.80107,-0.201845,10.165,0.816646,-0.189048,10.165,0.869907,-0.150575,10.165,0.930211,-0.0903151,10.165,0.969733,-0.0225354,10.165,0.984835,0.0225354,10.165,0.984835,0.0048991,10.165,0.983314,-0.0048991,10.165,0.983314,-0.0065582,10.165,0.983314,0.0065582,10.165,0.983314,-1.39177e-14,10.165,0.982693,-0.162015,10.165,0.597965,-0.166863,10.165,0.664858,-0.167839,10.165,0.730852,-0.167182,10.165,0.795737,-0.155813,10.165,0.856243,-0.12573,10.165,0.906829,-0.077206,10.165,0.938174,0.00338802,10.165,0.955607,-0.00338802,10.165,0.955607,-0.00504712,10.165,0.955607,0.00504712,10.165,0.955607,-0.01645,10.165,0.951123,0.01645,10.165,0.951123,-1.39177e-14,10.165,0.956822,-0.061963,10.2181,0.956408,-0.0629219,10.2181,0.9558,-0.117495,10.2181,0.931107,-0.118176,10.2181,0.930296,-0.153677,10.2181,0.882827,-0.153818,10.2181,0.881694,-0.171012,10.2181,0.825568,-0.170805,10.2181,0.824556,-0.17258,10.2181,0.754718,-0.172215,10.2181,0.75369,-0.170162,10.2181,0.692095,-0.16969,10.2181,0.690941,-0.16673,10.2181,0.625369,-0.165984,10.2181,0.624199,-0.0704793,10.2181,0.980411,-0.0691976,10.2181,0.980429,-0.134514,10.2181,0.950189,-0.133255,10.2181,0.950624,-0.176579,10.2181,0.896579,-0.175724,10.2181,0.897358,-0.213471,10.2181,0.6904,-0.212957,10.2181,0.691588,-0.200218,10.2181,0.827494,-0.200332,10.2181,0.828731,-0.209238,10.2181,0.755844,-0.209792,10.2181,0.757118,-0.21262,10.2181,0.624795,-0.213366,10.2181,0.626234,-0.159952,10.2181,0.572168,-0.168849,10.2181,0.559915,-0.159068,10.2181,0.639263,-0.166049,10.2181,0.626843,-0.159805,10.2181,0.70569,-0.169237,10.2181,0.693547,-0.163204,10.2181,0.767255,-0.171747,10.2181,0.755853,-0.162975,10.2181,0.834886,-0.170318,10.2181,0.826731,-0.143172,10.2181,0.891253,-0.152748,10.2181,0.883844,-0.103274,10.2181,0.932116,-0.116085,10.2181,0.931424,-0.04809,10.2181,0.953755,-0.0605169,10.2181,0.956347,-0.169821,10.2181,0.558508,-0.208542,10.2181,0.559629,-0.21724,10.2181,0.57175,-0.220604,10.2181,0.638201,-0.213683,10.2181,0.693051,-0.221142,10.2181,0.705302,-0.215748,10.2181,0.769986,-0.203074,10.2181,0.840127,-0.175459,10.2181,0.898719,-0.175213,10.2181,0.910478,-0.132169,10.2181,0.951759,-0.123975,10.2181,0.963096,-0.0678399,10.2181,0.981223,-0.0567961,10.2181,0.989993,-0.207591,10.2181,0.558237,-0.221434,10.2181,0.61111,-0.213237,10.2181,0.623623,-0.220256,10.2181,0.677731,-0.217392,10.2181,0.745152,-0.20973,10.2181,0.754886,-0.208412,10.2181,0.817048,-0.200909,10.2181,0.826647,-0.188961,10.2181,0.886892,-0.147726,10.2181,0.944421,-0.0850813,10.2181,0.982335,-0.0170979,10.2181,0.994938,0.0170979,10.2181,0.994938,-1.38234e-14,10.2181,0.990605,-0.00201743,10.2181,0.990605,0.00201743,10.2181,0.990605,-1.38234e-14,10.2181,0.990175,-0.156589,10.2181,0.61175,-0.162264,10.2181,0.678649,-0.165696,10.2181,0.743825,-0.165014,10.2181,0.811271,-0.153272,10.2181,0.868917,-0.121694,10.2181,0.917768,-0.0722801,10.2181,0.947344,-1.38234e-14,10.2181,0.96487,-0.00195577,10.2181,0.96487,0.00195577,10.2181,0.96487,0.00805831,10.2181,0.958412,-0.00805831,10.2181,0.958412,-0.00971741,10.2181,0.958412,0.00971741,10.2181,0.958412,-1.38234e-14,10.2181,0.965114,-0.0691909,10.2238,0.98079,-0.133247,10.2238,0.950998,-0.175714,10.2238,0.897666,-0.212872,10.2238,0.691972,-0.207948,10.2238,0.558547,-0.0619781,10.2238,0.956831,-0.117528,10.2238,0.931531,-0.153714,10.2238,0.883231,-0.171065,10.2238,0.825966,-0.17281,10.2238,0.755063,-0.170386,10.2238,0.692479,-0.166764,10.2238,0.625752,-0.169464,10.2238,0.558823,-1.38133e-14,10.2238,0.990547,-1.38133e-14,10.2238,0.965526,-0.0570939,10.2242,0.99034,-0.124263,10.2242,0.963334,-0.175436,10.2242,0.910592,-0.203161,10.2242,0.840183,-0.215831,10.2242,0.770073,-0.22126,10.2242,0.705383,-0.220779,10.2242,0.638287,-0.21722,10.2242,0.571836,-0.0168096,10.2242,0.995348,0.0168096,10.2242,0.995348,-0.08479,10.2242,0.982873,-0.14752,10.2242,0.945059,-0.188856,10.2242,0.887694,-0.208456,10.2242,0.817717,-0.217432,10.2242,0.745743,-0.220423,10.2242,0.678414,-0.221594,10.2242,0.611792,-0.0483869,10.2242,0.954144,-0.103527,10.2242,0.932415,-0.143379,10.2242,0.891468,-0.163082,10.2242,0.835026,-0.163577,10.2242,0.767376,-0.160141,10.2242,0.705782,-0.15907,10.2242,0.639351,-0.15996,10.2242,0.572251,0.0077427,10.2242,0.958864,-0.0077427,10.2242,0.958864,-0.0094018,10.2242,0.958864,0.0094018,10.2242,0.958864,-0.0720674,10.2242,0.947886,-0.121558,10.2242,0.918377,-0.153232,10.2242,0.869581,-0.165012,10.2242,0.812057,-0.165677,10.2242,0.744384,-0.162149,10.2242,0.679331,-0.15643,10.2242,0.612433,-1.38133e-14,10.2238,0.990967,-0.00179212,10.2238,0.990967,0.00179212,10.2238,0.990967,-0.0702616,10.2238,0.980821,-0.134338,10.2238,0.950706,-0.176458,10.2238,0.897054,-0.200812,10.2238,0.827102,-0.209641,10.2238,0.755383,-0.213369,10.2238,0.690988,-0.213079,10.2238,0.624209,-1.38133e-14,10.2238,0.965329,-0.00180238,10.2238,0.965329,0.00180238,10.2238,0.965329,-0.0627708,10.2238,0.956302,-0.118104,10.2238,0.930863,-0.153806,10.2238,0.882275,-0.170872,10.2238,0.825142,-0.172452,10.2238,0.754196,-0.16993,10.2238,0.691525,-0.166063,10.2238,0.624785,-0.0680248,10.2238,0.98152,-0.132327,10.2238,0.952005,-0.175538,10.2238,0.898866,-0.200316,10.2238,0.82887,-0.20971,10.2238,0.757297,-0.213557,10.2238,0.69324,-0.213201,10.2238,0.626427,-0.208556,10.2238,0.559807,-0.0607121,10.2238,0.956751,-0.116272,10.2238,0.931776,-0.152885,10.2238,0.88411,-0.170424,10.2238,0.82697,-0.172048,10.2238,0.75605,-0.169531,10.2238,0.69374,-0.16611,10.2238,0.627032,-0.168834,10.2238,0.560093,-0.212495,10.2238,0.625179,-0.209177,10.2238,0.756183,-0.200174,10.2238,0.82779,-0.0691909,10.2542,0.98079,-0.133247,10.2566,0.950998,-0.175767,10.2563,0.897257,-0.213547,10.2761,0.691972,-0.207948,10.2765,0.558547,-0.0619781,10.2542,0.956831,-0.117528,10.2568,0.931531,-0.152571,10.2564,0.884226,-0.169353,10.2746,0.825162,-0.173121,10.2765,0.752865,-0.170347,10.2761,0.692479,-0.167473,10.2754,0.625752,-0.169464,10.2765,0.558823,-1.37593e-14,10.2542,0.990547,-1.37593e-14,10.2542,0.965526,-0.0568771,10.2589,0.989438,-0.123747,10.2589,0.962564,-0.163571,10.2951,0.912403,-0.202023,10.2821,0.842758,-0.213704,10.2827,0.769957,-0.218739,10.2856,0.7054,-0.218098,10.2819,0.638333,-0.214746,10.2844,0.571853,-0.0166252,10.2589,0.99444,0.0166252,10.2589,0.99444,-0.0844732,10.2589,0.982002,-0.146556,10.2952,0.933416,-0.18712,10.2829,0.886982,-0.206345,10.2824,0.817805,-0.216517,10.2857,0.743447,-0.220036,10.282,0.678454,-0.218789,10.2842,0.61182,-0.0486037,10.2589,0.955045,-0.104043,10.2594,0.933185,-0.144297,10.2635,0.897342,-0.161179,10.282,0.834221,-0.167814,10.2828,0.767492,-0.164836,10.2856,0.705765,-0.161721,10.2819,0.639305,-0.162433,10.2844,0.572233,0.00792712,10.2589,0.959773,-0.00792712,10.2589,0.959773,-0.00958622,10.2589,0.959773,0.00958622,10.2589,0.959773,-0.0723841,10.2589,0.948757,-0.127313,10.2637,0.918372,-0.15101,10.2837,0.871705,-0.16666,10.2823,0.811592,-0.167102,10.2856,0.742218,-0.162833,10.2821,0.679291,-0.159192,10.2842,0.612405,-1.37593e-14,10.2542,0.990967,-0.00179212,10.2542,0.990967,0.00179212,10.2542,0.990967,-0.0702616,10.2542,0.980821,-0.134338,10.2567,0.950706,-0.176504,10.2562,0.896638,-0.200973,10.2746,0.829519,-0.210594,10.2767,0.753087,-0.214186,10.2759,0.690988,-0.212039,10.2755,0.624209,-1.37593e-14,10.2542,0.965329,-0.00180238,10.2542,0.965329,0.00180238,10.2542,0.965329,-0.0627708,10.2542,0.956302,-0.118104,10.2569,0.930863,-0.152588,10.2563,0.883296,-0.169274,10.2746,0.824164,-0.172619,10.2767,0.751819,-0.169709,10.2759,0.691525,-0.166817,10.2755,0.624785,-0.0680248,10.2542,0.98152,-0.132327,10.2565,0.952004,-0.17559,10.2565,0.898466,-0.200656,10.2746,0.831832,-0.210404,10.2764,0.755571,-0.214101,10.2762,0.69324,-0.212162,10.2753,0.626427,-0.208556,10.2765,0.559807,-0.0607121,10.2542,0.956751,-0.116272,10.2567,0.931776,-0.151787,10.2565,0.885072,-0.168459,10.2745,0.826239,-0.172571,10.2764,0.754211,-0.169774,10.2762,0.69374,-0.166857,10.2753,0.627032,-0.168834,10.2765,0.560093,-0.211455,10.2754,0.625179,-0.210001,10.2766,0.754128,-0.200406,10.2746,0.830454,-0.0653429,10.2979,0.972767,-0.12395,10.2923,0.946074,-0.159715,10.2932,0.897217,-0.17835,10.3003,0.833723,-0.182651,10.2979,0.757224,-0.179668,10.2984,0.693868,-0.176757,10.2992,0.623469,-0.178743,10.2979,0.552858,-0.0729526,10.2979,0.998044,-0.140534,10.2928,0.966612,-0.185449,10.2934,0.909482,-0.211426,10.3002,0.839865,-0.221643,10.2978,0.758579,-0.22536,10.2985,0.693333,-0.222878,10.2992,0.622865,-0.219345,10.2979,0.552566,-1.36817e-14,10.2979,1.00834,-1.36817e-14,10.2979,0.98194,-0.0653429,10.3652,0.972767,-0.12395,10.3652,0.946074,-0.162122,10.3652,0.895121,-0.180434,10.3652,0.834685,-0.182119,10.3652,0.759915,-0.179562,10.3652,0.693868,-0.175909,10.3652,0.623469,-0.178743,10.3652,0.552858,-0.0717709,10.3652,0.993553,-0.137383,10.3652,0.965431,-0.181937,10.3652,0.908808,-0.216745,10.3652,0.693333,-0.212366,10.3652,0.552566,-1.35621e-14,10.3652,1.00834,-0.20703,10.3652,0.835823,-0.214006,10.3652,0.761261,-0.215514,10.3652,0.622865,-1.35621e-14,10.3652,0.98194,-0.0597325,10.2884,1.00622,-0.129966,10.2884,0.978003,-0.171133,10.2785,0.926107,-0.212911,10.2912,0.852831,-0.225075,10.2904,0.775591,-0.230324,10.2869,0.707503,-0.229622,10.2914,0.63675,-0.226119,10.2884,0.566608,-0.0172999,10.2884,1.01149,0.0172999,10.2884,1.01149,-0.0887417,10.2884,0.998404,-0.154462,10.2784,0.946695,-0.197092,10.2902,0.898959,-0.217314,10.2908,0.826105,-0.228238,10.2869,0.747271,-0.232036,10.2913,0.679078,-0.230331,10.2887,0.608775,-0.0514612,10.2884,0.971833,-0.110267,10.2873,0.948631,-0.153161,10.2787,0.916202,-0.169696,10.2914,0.84328,-0.177684,10.2904,0.773028,-0.174617,10.287,0.707883,-0.171001,10.2914,0.637761,-0.171724,10.2884,0.567003,0.00860354,10.2884,0.976828,-0.00860354,10.2884,0.976828,-0.0102626,10.2884,0.976828,0.0102626,10.2884,0.976828,-0.0766556,10.2884,0.965167,-0.140345,10.2784,0.932187,-0.158916,10.2892,0.883298,-0.17605,10.291,0.819461,-0.176481,10.287,0.745996,-0.171858,10.2913,0.679948,-0.168351,10.2886,0.609384,-0.0583503,10.3652,1.00444,-0.128387,10.3652,0.975284,-0.18196,10.3652,0.922865,-0.210573,10.3652,0.849051,-0.221741,10.3652,0.775739,-0.226411,10.3652,0.707481,-0.2255,10.3652,0.636691,-0.222299,10.3652,0.566585,-0.015846,10.3652,1.00972,0.015846,10.3652,1.00972,-0.0867206,10.3652,0.995909,-0.152509,10.3652,0.959236,-0.195479,10.3652,0.89907,-0.214741,10.3652,0.825775,-0.223246,10.3652,0.74997,-0.225616,10.3652,0.679027,-0.22605,10.3652,0.60874,-0.050981,10.3652,0.969836,-0.109124,10.3652,0.946926,-0.151138,10.3652,0.903758,-0.171911,10.3652,0.844238,-0.172164,10.3652,0.772879,-0.16851,10.3652,0.707905,-0.167616,10.3652,0.637819,-0.168566,10.3652,0.567026,0.00819493,10.3652,0.974816,-0.00819493,10.3652,0.974816,-0.00985403,10.3652,0.974816,0.00985403,10.3652,0.974816,-0.0759539,10.3652,0.963237,-0.128133,10.3652,0.932126,-0.161527,10.3652,0.880678,-0.173933,10.3652,0.820009,-0.17461,10.3652,0.748625,-0.170868,10.3652,0.679999,-0.164825,10.3652,0.609419,-1.36817e-14,10.2979,0.981732,-0.00185591,10.2979,0.981732,0.00185591,10.2979,0.981732,-0.0661791,10.2979,0.972209,-0.124558,10.2922,0.94537,-0.159653,10.2934,0.896263,-0.178285,10.3003,0.832642,-0.182099,10.2977,0.756091,-0.178966,10.2986,0.692862,-0.176072,10.2992,0.62245,-1.35621e-14,10.3652,0.981732,-0.00185591,10.3652,0.981732,0.00185591,10.3652,0.981732,-0.0661791,10.3652,0.972209,-0.124558,10.3652,0.94537,-0.162219,10.3652,0.894112,-0.180231,10.3652,0.833819,-0.181736,10.3652,0.758999,-0.179075,10.3652,0.692862,-0.175168,10.3652,0.62245,-1.35621e-14,10.3652,1.00878,-0.00184508,10.3652,1.00878,0.00184508,10.3652,1.00878,-0.0729004,10.3652,0.993586,-0.138534,10.3652,0.965123,-0.18269,10.3652,0.908166,-0.207718,10.3652,0.835082,-0.214523,10.3652,0.760357,-0.2173,10.3652,0.692295,-0.216147,10.3652,0.621841,-1.36817e-14,10.2979,1.00878,-0.00184509,10.2979,1.00878,0.00184509,10.2979,1.00878,-0.0740821,10.2979,0.998077,-0.141685,10.2925,0.966305,-0.18622,10.2936,0.908824,-0.212012,10.3002,0.838838,-0.22229,10.2977,0.757442,-0.226058,10.2987,0.692295,-0.223493,10.2992,0.621841,-0.0717223,10.2979,0.998814,-0.139563,10.2931,0.967674,-0.185261,10.2931,0.910768,-0.211707,10.3003,0.841366,-0.222048,10.298,0.760154,-0.225925,10.2983,0.694671,-0.223623,10.2994,0.624182,-0.219987,10.2979,0.553896,-0.0640071,10.2979,0.972682,-0.122624,10.2925,0.946333,-0.158935,10.293,0.898075,-0.177367,10.3003,0.83487,-0.182105,10.2981,0.758701,-0.17911,10.2982,0.695199,-0.176113,10.2994,0.62482,-0.178079,10.2979,0.554197,-0.0705406,10.3652,0.994324,-0.136412,10.3652,0.966493,-0.181775,10.3652,0.910108,-0.207202,10.3652,0.836967,-0.214594,10.3652,0.762402,-0.217497,10.3652,0.694671,-0.216326,10.3652,0.624182,-0.213008,10.3652,0.553896,-0.0640072,10.3652,0.972682,-0.122624,10.3652,0.946333,-0.161251,10.3652,0.896045,-0.179758,10.3652,0.835746,-0.18131,10.3652,0.760955,-0.178654,10.3652,0.695199,-0.175218,10.3652,0.62482,-0.178079,10.3652,0.554197,-0.0636458,10.4828,0.94973,-0.0688119,10.4828,0.948056,-0.119831,10.4828,0.923656,-0.124827,10.4828,0.920566,-0.151351,10.4828,0.876037,-0.153764,10.4828,0.869913,-0.17032,10.4828,0.809971,-0.172664,10.4828,0.805471,-0.171946,10.4828,0.739999,-0.172749,10.4828,0.736113,-0.168546,10.4828,0.676707,-0.169143,10.4828,0.671652,-0.169819,10.4828,0.60633,-0.169112,10.4828,0.599988,-0.0747414,10.4828,0.986586,-0.0828983,10.4828,0.9846,-0.144743,10.4828,0.954508,-0.152494,10.4828,0.950159,-0.19112,10.4828,0.895774,-0.195705,10.4828,0.886231,-0.236724,10.4828,0.675929,-0.23567,10.4828,0.670646,-0.219153,10.4828,0.819728,-0.21933,10.4828,0.829056,-0.231807,10.4828,0.74221,-0.234117,10.4828,0.747729,-0.230097,10.4828,0.605434,-0.231868,10.4828,0.61394,-0.168566,10.4828,0.54979,-0.179508,10.4828,0.536962,-0.171697,10.4828,0.620584,-0.169376,10.4828,0.613162,-0.16679,10.4828,0.690669,-0.166194,10.4828,0.682235,-0.170427,10.4828,0.752763,-0.169459,10.4828,0.745057,-0.165102,10.4828,0.823156,-0.166296,10.4828,0.815627,-0.146641,10.4828,0.888363,-0.148125,10.4828,0.881904,-0.109124,10.4828,0.92969,-0.113757,10.4828,0.926078,-0.050981,10.4828,0.952601,-0.0577514,10.4828,0.950466,-0.180371,10.4828,0.535623,-0.22941,10.4828,0.561467,-0.21609,10.4828,0.53666,-0.231531,10.4828,0.626574,-0.239282,10.4828,0.690246,-0.239536,10.4828,0.681648,-0.232563,10.4828,0.755623,-0.21679,10.4828,0.83527,-0.184654,10.4828,0.909941,-0.187515,10.4828,0.905382,-0.13111,10.4828,0.962473,-0.137263,10.4828,0.95999,-0.0602128,10.4828,0.990979,-0.0664376,10.4828,0.989742,-0.215262,10.4828,0.535331,-0.22979,10.4828,0.585996,-0.230031,10.4828,0.593599,-0.229781,10.4828,0.651828,-0.229547,10.4828,0.732565,-0.231065,10.4828,0.738033,-0.219508,10.4828,0.806632,-0.220018,10.4828,0.812548,-0.199308,10.4828,0.879758,-0.15566,10.4828,0.943182,-0.0894434,10.4828,0.983098,-0.0177085,10.4828,0.996264,0.0177085,10.4828,0.996264,0.00619631,10.4828,0.997862,-0.00619631,10.4828,0.997862,-0.00785541,10.4828,0.997862,0.00785541,10.4828,0.997862,-1.33531e-14,10.4828,0.998007,-0.168954,10.4828,0.592183,-0.170843,10.4828,0.662764,-0.17461,10.4828,0.731113,-0.173814,10.4828,0.799543,-0.156699,10.4828,0.862279,-0.128133,10.4828,0.914891,-0.0759539,10.4828,0.946002,0.00819498,10.4828,0.95758,-0.00819498,10.4828,0.95758,-0.00985408,10.4828,0.95758,0.00985408,10.4828,0.95758,0.00457143,10.4828,0.957586,-0.00457143,10.4828,0.957586,-0.00623053,10.4828,0.957586,0.00623053,10.4828,0.957586,-1.33531e-14,10.4828,0.957738,-0.0650053,10.424,0.963322,-0.069553,10.424,0.961003,-0.123203,10.424,0.936612,-0.12616,10.424,0.932706,-0.161034,10.424,0.886255,-0.162295,10.424,0.881196,-0.178347,10.424,0.826663,-0.178332,10.424,0.820421,-0.181394,10.424,0.752156,-0.180925,10.424,0.748096,-0.179088,10.424,0.685303,-0.178622,10.424,0.679819,-0.173997,10.424,0.614917,-0.173316,10.424,0.609372,-0.078942,10.424,0.988911,-0.073102,10.424,0.989986,-0.145608,10.424,0.954755,-0.140695,10.424,0.958262,-0.189112,10.424,0.897222,-0.185604,10.424,0.902825,-0.225784,10.424,0.679177,-0.2257,10.424,0.684763,-0.211573,10.424,0.829547,-0.211345,10.424,0.834348,-0.221773,10.424,0.75381,-0.223398,10.424,0.758268,-0.22596,10.424,0.614282,-0.228157,10.424,0.619872,-0.17158,10.424,0.565145,-0.178411,10.424,0.550243,-0.169939,10.424,0.635803,-0.172293,10.424,0.620593,-0.172069,10.424,0.705826,-0.176835,10.424,0.690887,-0.174217,10.424,0.770334,-0.179268,10.424,0.756239,-0.170509,10.424,0.843348,-0.176131,10.424,0.832163,-0.14832,10.424,0.900004,-0.15808,10.424,0.890182,-0.104625,10.424,0.941971,-0.118453,10.424,0.938467,-0.044837,10.424,0.963167,-0.059652,10.424,0.963662,-0.186926,10.424,0.545828,-0.219663,10.424,0.549933,-0.226529,10.424,0.564694,-0.231463,10.424,0.634831,-0.227784,10.424,0.690448,-0.231452,10.424,0.705686,-0.226126,10.424,0.773643,-0.209977,10.424,0.847539,-0.183338,10.424,0.908277,-0.178312,10.424,0.920318,-0.136028,10.424,0.962194,-0.123527,10.424,0.972689,-0.0675959,10.424,0.992187,-0.0530842,10.424,0.998464,-0.211144,10.424,0.545648,-0.227908,10.424,0.593546,-0.226273,10.424,0.608757,-0.226796,10.424,0.663834,-0.226903,10.424,0.735099,-0.222344,10.424,0.74958,-0.218289,10.424,0.808435,-0.212907,10.424,0.824867,-0.199405,10.424,0.88106,-0.158815,10.424,0.944681,-0.0952392,10.424,0.986378,-0.0237298,10.424,1.00231,0.0237298,10.424,1.00231,0.00521432,10.424,1.00071,-0.00521432,10.424,1.00071,-0.00687343,10.424,1.00071,0.00687343,10.424,1.00071,-1.34576e-14,10.424,1.00005,-0.170885,10.424,0.594154,-0.176,10.424,0.664727,-0.177029,10.424,0.734353,-0.176336,10.424,0.802808,-0.164341,10.424,0.866644,-0.132602,10.424,0.920013,-0.0814086,10.424,0.953083,0.0036201,10.424,0.971476,-0.0036201,10.424,0.971476,-0.0052792,10.424,0.971476,0.0052792,10.424,0.971476,-0.0173095,10.424,0.966744,0.0173095,10.424,0.966744,-1.34576e-14,10.424,0.972758,-0.0653269,10.368,0.97232,-0.0663386,10.368,0.971679,-0.123915,10.368,0.945627,-0.124633,10.368,0.944771,-0.162088,10.368,0.894691,-0.162236,10.368,0.893495,-0.180377,10.368,0.83428,-0.180158,10.368,0.833213,-0.182031,10.368,0.759532,-0.181646,10.368,0.758447,-0.179479,10.368,0.693463,-0.178981,10.368,0.692245,-0.175859,10.368,0.623065,-0.175072,10.368,0.621831,-0.0743119,10.368,0.997643,-0.0729596,10.368,0.997663,-0.14187,10.368,0.965759,-0.140541,10.368,0.966218,-0.18625,10.368,0.909199,-0.185348,10.368,0.910021,-0.225172,10.368,0.691675,-0.22463,10.368,0.692928,-0.211189,10.368,0.836312,-0.21131,10.368,0.837617,-0.220706,10.368,0.76072,-0.22129,10.368,0.762064,-0.224274,10.368,0.622459,-0.225061,10.368,0.623978,-0.168708,10.368,0.566937,-0.178094,10.368,0.55401,-0.167775,10.368,0.637724,-0.175141,10.368,0.624621,-0.168553,10.368,0.707806,-0.178504,10.368,0.694995,-0.172139,10.368,0.772759,-0.181152,10.368,0.76073,-0.171897,10.368,0.844112,-0.179645,10.368,0.835507,-0.151005,10.368,0.90358,-0.161107,10.368,0.895763,-0.108911,10.368,0.946692,-0.122427,10.368,0.945961,-0.0506905,10.368,0.969521,-0.0638013,10.368,0.972256,-0.17912,10.368,0.552526,-0.219971,10.368,0.553708,-0.229148,10.368,0.566496,-0.232697,10.368,0.636603,-0.225396,10.368,0.694472,-0.233264,10.368,0.707396,-0.227574,10.368,0.77564,-0.214203,10.368,0.849641,-0.185069,10.368,0.911456,-0.184808,10.368,0.923863,-0.139396,10.368,0.967415,-0.130751,10.368,0.979376,-0.0715272,10.368,0.998501,-0.0598757,10.368,1.00775,-0.218969,10.368,0.552239,-0.233573,10.368,0.608022,-0.224925,10.368,0.621223,-0.23233,10.368,0.678309,-0.229309,10.368,0.749439,-0.221225,10.368,0.759709,-0.219834,10.368,0.825292,-0.211918,10.368,0.835419,-0.199313,10.368,0.898979,-0.155809,10.368,0.959673,-0.0897174,10.368,0.999674,-0.0179931,10.368,1.01297,0.0179931,10.368,1.01297,-1.35572e-14,10.368,1.0084,-0.00208279,10.368,1.0084,0.00208279,10.368,1.0084,-1.35572e-14,10.368,1.00795,-0.16516,10.368,0.608697,-0.171147,10.368,0.679277,-0.174768,10.368,0.74804,-0.174048,10.368,0.819196,-0.16166,10.368,0.880015,-0.128345,10.368,0.931554,-0.0762117,10.368,0.962757,-1.35572e-14,10.368,0.981247,-0.00201774,10.368,0.981247,0.00201774,10.368,0.981247,0.00854738,10.368,0.974434,-0.00854738,10.368,0.974434,-0.0102065,10.368,0.974434,0.0102065,10.368,0.974434,-1.35572e-14,10.368,0.981506,-0.0729526,10.362,0.998044,-0.140534,10.362,0.966612,-0.185338,10.362,0.910346,-0.22454,10.362,0.693333,-0.219345,10.362,0.552566,-0.0653429,10.362,0.972767,-0.12395,10.362,0.946074,-0.162126,10.362,0.895117,-0.180432,10.362,0.834701,-0.182274,10.362,0.759896,-0.179716,10.362,0.693868,-0.175895,10.362,0.623469,-0.178743,10.362,0.552858,-1.35678e-14,10.362,1.00834,-1.35678e-14,10.362,0.98194,-0.0601899,10.3616,1.00812,-0.131055,10.3616,0.979627,-0.185044,10.3616,0.923983,-0.214294,10.3616,0.8497,-0.227662,10.3616,0.775732,-0.233389,10.3616,0.707482,-0.232882,10.3616,0.636694,-0.229127,10.3616,0.566586,-0.017689,10.3616,1.0134,0.017689,10.3616,1.0134,-0.08941,10.3616,1.00024,-0.155591,10.3616,0.960347,-0.199203,10.3616,0.899825,-0.219881,10.3616,0.825997,-0.229351,10.3616,0.750063,-0.232507,10.3616,0.67903,-0.233742,10.3616,0.608742,-0.0510038,10.3616,0.969931,-0.109178,10.3616,0.947007,-0.151223,10.3616,0.903807,-0.17201,10.3616,0.844259,-0.172533,10.3616,0.772886,-0.168907,10.3616,0.707904,-0.167777,10.3616,0.637817,-0.168716,10.3616,0.567025,0.0082144,10.3616,0.974912,-0.0082144,10.3616,0.974912,-0.0098735,10.3616,0.974912,0.0098735,10.3616,0.974912,-0.0759873,10.3616,0.963329,-0.128201,10.3616,0.932196,-0.161618,10.3616,0.880715,-0.174046,10.3616,0.820026,-0.174747,10.3616,0.74863,-0.171026,10.3616,0.679996,-0.164992,10.3616,0.609417,-1.35678e-14,10.362,1.00878,-0.00184508,10.362,1.00878,0.00184508,10.362,1.00878,-0.0740821,10.362,0.998077,-0.141685,10.362,0.966305,-0.186123,10.362,0.9097,-0.211817,10.362,0.835899,-0.221131,10.362,0.760234,-0.225064,10.362,0.692295,-0.224758,10.362,0.621841,-1.35678e-14,10.362,0.981732,-0.00185591,10.362,0.981732,0.00185591,10.362,0.981732,-0.0661791,10.362,0.972209,-0.124558,10.362,0.94537,-0.162224,10.362,0.894108,-0.180229,10.362,0.833832,-0.181896,10.362,0.758982,-0.179235,10.362,0.692862,-0.175155,10.362,0.62245,-0.0717223,10.362,0.998814,-0.139563,10.362,0.967674,-0.185152,10.362,0.911611,-0.211292,10.362,0.837764,-0.221204,10.362,0.762253,-0.225262,10.362,0.694671,-0.224887,10.362,0.624182,-0.219987,10.362,0.553896,-0.0640072,10.362,0.972682,-0.122624,10.362,0.946333,-0.161252,10.362,0.896044,-0.179756,10.362,0.83576,-0.18147,10.362,0.760937,-0.178814,10.362,0.695199,-0.175204,10.362,0.62482,-0.178079,10.362,0.554197,-0.224142,10.362,0.622865,-0.220642,10.362,0.761078,-0.211143,10.362,0.836625,-0.0729526,10.33,0.998044,-0.140534,10.3274,0.966612,-0.185393,10.3277,0.909914,-0.225252,10.3069,0.693333,-0.219345,10.3064,0.552566,-0.0653429,10.33,0.972767,-0.12395,10.3272,0.946074,-0.160921,10.3276,0.896167,-0.178626,10.3084,0.833852,-0.182601,10.3064,0.757577,-0.179675,10.3069,0.693868,-0.176643,10.3076,0.623469,-0.178743,10.3064,0.552858,-1.36247e-14,10.33,1.00834,-1.36247e-14,10.33,0.98194,-0.0599612,10.325,1.00717,-0.130511,10.325,0.978815,-0.172526,10.2868,0.925894,-0.213094,10.3005,0.852416,-0.225418,10.2998,0.775609,-0.230729,10.2968,0.7075,-0.230053,10.3007,0.636742,-0.226517,10.2981,0.566605,-0.0174944,10.325,1.01244,0.0174944,10.325,1.01244,-0.0890758,10.325,0.999323,-0.154575,10.2867,0.948063,-0.197371,10.2997,0.899073,-0.217654,10.3002,0.826091,-0.228385,10.2968,0.747641,-0.232098,10.3006,0.679071,-0.230783,10.2983,0.608771,-0.0512325,10.325,0.970882,-0.109723,10.3245,0.947819,-0.152192,10.3201,0.910004,-0.170002,10.3006,0.84341,-0.177003,10.2998,0.773009,-0.173861,10.2968,0.707885,-0.170574,10.3007,0.637768,-0.171326,10.2981,0.567006,0.00840897,10.325,0.97587,-0.00840897,10.325,0.97587,-0.0100681,10.325,0.97587,0.0100681,10.325,0.97587,-0.0763215,10.325,0.964248,-0.134273,10.32,0.932191,-0.159273,10.2988,0.882956,-0.175784,10.3003,0.819536,-0.176251,10.2968,0.746345,-0.171747,10.3006,0.679955,-0.167906,10.2983,0.609388,-1.36247e-14,10.33,1.00878,-0.00184509,10.33,1.00878,0.00184509,10.33,1.00878,-0.0740821,10.33,0.998077,-0.141685,10.3273,0.966305,-0.186171,10.3278,0.909262,-0.211986,10.3084,0.838449,-0.222137,10.3062,0.757812,-0.225927,10.307,0.692295,-0.223661,10.3075,0.621841,-1.36247e-14,10.33,0.981732,-0.00185591,10.33,0.981732,0.00185591,10.33,0.981732,-0.0661791,10.33,0.972209,-0.124558,10.3271,0.94537,-0.160938,10.3277,0.895186,-0.178542,10.3085,0.8328,-0.182072,10.3062,0.756473,-0.179001,10.307,0.692862,-0.17595,10.3075,0.62245,-0.0717223,10.33,0.998814,-0.139563,10.3276,0.967674,-0.185206,10.3275,0.91119,-0.211652,10.3084,0.840889,-0.221936,10.3065,0.760432,-0.225837,10.3067,0.694671,-0.223791,10.3077,0.624182,-0.219987,10.3064,0.553896,-0.0640071,10.33,0.972682,-0.122624,10.3273,0.946333,-0.160094,10.3275,0.897059,-0.177683,10.3085,0.834988,-0.182021,10.3065,0.758997,-0.17907,10.3067,0.695199,-0.175993,10.3077,0.62482,-0.178079,10.3064,0.554197,-0.223045,10.3076,0.622865,-0.221511,10.3063,0.75891,-0.211388,10.3084,0.839436,-0.399454,10.1912,0.82599,-0.452448,11.5694,0.616933,-0.426792,11.5367,-0.348324,-0.132732,10.1853,-0.400425,-1.43325e-14,9.9315,1.13895,-0.255323,9.89616,1.10514,-0.38941,10.0171,0.925418,-0.443333,10.1314,0.659111,-0.392419,10.1217,0.395387,-0.380406,10.0928,0.138624,-0.378999,10.1807,-0.089564,-0.366665,10.1909,-0.159978,-0.425401,10.2982,0.753833,-0.416764,10.4044,0.755624,-0.371068,10.6271,0.80898,-0.461082,11.2445,0.645257,-0.462439,11.4362,0.637338,-0.414528,10.371,-0.348619,-0.52239,10.6349,-0.451086,-0.551502,10.8753,-0.486473,-0.522967,11.3342,-0.428964,-0.459395,11.472,-0.373482,-1.12849e-14,11.6472,-0.455321,-0.217016,11.6155,-0.432179,-0.342097,11.5759,-0.390496,-1.12079e-14,11.6905,0.746098,-0.17906,11.6697,0.728054,-0.335935,11.6223,0.684665,-0.47637,11.6109,0.494521,-0.514765,11.6364,0.279343,-0.515404,11.639,0.149359,-0.495261,11.6079,-0.117871,-0.456745,11.569,-0.25749,2.82318e-14,9.90307,0.405319,-4.68144e-15,9.8353,0.694383,-1.44116e-14,9.88699,1.14111,-0.168114,9.92578,0.365245,-0.209143,9.8656,0.638926,-0.285437,9.83993,1.09844,-0.294308,9.96785,0.280378,-0.329722,9.97209,0.513292,-0.41753,9.98085,0.885168,-1.11021e-14,11.7501,-0.323595,-0.215544,11.7115,-0.307005,-0.35726,11.6542,-0.276448,-1.08951e-14,11.8666,-0.148027,-0.203216,11.8247,-0.135543,-0.399297,11.7413,-0.108161,-1.07807e-14,11.931,0.152039,-0.211692,11.8918,0.16615,-0.419436,11.7798,0.163066,-1.07609e-14,11.9422,0.366983,-0.226603,11.8865,0.365015,-0.410207,11.782,0.317379,-1.0939e-14,11.8419,0.595099,-0.192763,11.8107,0.574473,-0.355605,11.7368,0.534284,-1.17373e-14,11.3925,0.926989,-1.15136e-14,11.5184,0.846887,-0.134471,10.7204,1.00746,-0.242234,11.3217,0.924598,-0.188895,11.4656,0.849156,-0.219585,10.6295,0.90955,-0.37953,11.2583,0.838598,-0.356523,11.4284,0.787248,-0.463262,10.2992,0.600177,-0.481286,10.4454,0.631333,-0.477137,10.6648,0.695305,-0.502096,11.2526,0.513941,-0.516038,11.4654,0.487412,-0.470139,10.3437,0.351654,-0.583408,10.6233,0.269269,-0.595596,10.7462,0.313027,-0.584441,11.2912,0.282267,-0.561977,11.4981,0.266841,-0.47537,10.2758,0.150212,-0.558481,10.4999,0.135879,-0.616291,11.3373,0.119779,-0.576561,11.5103,0.139566,-0.45109,10.3343,-0.114076,-0.609468,10.6043,-0.0796962,-0.665762,10.8138,-0.185119,-0.618417,11.3431,-0.170431,-0.567669,11.4973,-0.132473,-0.450826,10.3559,-0.225601,-0.564394,10.6269,-0.310792,-0.613202,10.855,-0.36269,-0.585796,11.3334,-0.312326,-0.533168,11.4747,-0.271723,-1.14644e-14,11.5461,-0.535241,-1.17733e-14,11.3722,-0.621512,-1.26533e-14,10.8768,-0.714553,-1.3195e-14,10.5719,-0.681045,-1.36114e-14,10.3375,-0.554951,-0.225215,11.5182,-0.499819,-0.234709,11.3588,-0.576113,-0.241441,10.8801,-0.674925,-0.219562,10.5853,-0.633742,-0.172581,10.35,-0.524528,-0.353519,11.4917,-0.44716,-0.390978,11.3424,-0.514406,-0.436582,10.8831,-0.588709,-0.39383,10.6186,-0.551646,-0.312326,10.3689,-0.452937,-0.375512,10.4836,0.802358,-0.527557,10.7042,-0.46155,-1.32964e-14,10.5148,1.03189,-0.0746281,10.5004,1.03672,-0.239311,10.5124,0.915533,-0.473743,10.5466,0.665379,-0.586791,10.6745,0.302855,-0.631247,10.6764,-0.102343,-0.582711,10.6981,-0.321279,-1.30564e-14,10.6499,-0.689956,-0.226577,10.661,-0.647556,-0.408647,10.6856,-0.565365,-0.429672,10.9069,0.790537,-0.434034,10.9295,0.775519,-0.557404,10.977,-0.48969,-0.556589,11.0769,-0.484563,-0.164002,10.9147,0.956207,-0.340487,10.9081,0.880304,-0.346012,10.9256,0.87657,-0.511805,10.9219,0.664659,-0.510421,10.9436,0.651184,-0.614866,10.8841,0.291385,-0.618445,10.9572,0.2917,-0.683845,10.958,-0.244369,-0.681679,11.0684,-0.226367,-0.624711,10.9688,-0.379683,-0.629442,11.0717,-0.37189,-1.2276e-14,11.0892,-0.69889,-1.24457e-14,10.9937,-0.709996,-0.245583,11.0951,-0.65788,-0.244428,10.9908,-0.669796,-0.440576,11.0939,-0.578723,-0.440186,10.9818,-0.584458,-0.201537,10.4382,0.975121,-0.108843,10.439,1.07459,-1.34218e-14,10.4442,1.05601,-0.308051,10.4264,0.884971,-0.355054,10.3744,0.852871,-0.364427,10.3059,0.863021,-0.271216,10.1545,1.05667,-0.142921,10.1031,1.11827,-1.40354e-14,10.0988,1.11347,-0.342999,10.2345,0.924549,-0.163353,10.3127,1.07007,-1.37021e-14,10.2864,1.13076,-0.0558012,10.2926,1.11897,-0.110627,10.3011,1.09951,-0.209292,10.3204,1.01188,-0.221127,10.3236,1.00561,-0.200393,10.3099,1.05337,-1.36783e-14,10.2998,1.15783,-0.0737163,10.3056,1.15238,-0.143327,10.3143,1.11248,-1.23666e-14,11.0382,1.07358,-0.080455,11.0282,0.968881,-0.0797285,10.9429,1.03352,-0.0666131,10.6966,1.20725,-0.0847347,10.5991,1.22891,-0.193469,10.5752,1.12581,7.12331e-05,10.599,1.26563,-0.191561,10.6352,1.08716,-1.25269e-14,10.948,1.12485,5.41494e-06,10.695,1.24467,-0.17557,10.9276,0.929765,-1.19732e-14,11.2597,0.966229,-0.104687,11.2253,0.899282,-0.444006,10.9854,0.729617,-0.551947,11.1574,-0.472197,-0.389445,10.9889,0.783373,-0.500521,11.0151,0.618519,-0.645483,11.1319,0.154283,-0.665504,11.1914,0.017294,-0.67612,11.1399,-0.163789,-0.624597,11.1555,-0.349557,-1.2144e-14,11.1635,-0.686251,-0.245075,11.1624,-0.644418,-0.438935,11.1617,-0.570013,-1.38331e-14,10.2126,1.1688,-0.0875737,10.2184,1.15434,-0.172363,10.2711,1.10676,-0.258891,10.2877,1.0266,-0.310081,10.3164,0.953602,-0.3173,10.3358,0.940072,-0.28089,10.3491,0.997137,-0.0951129,10.3845,1.17147,-1.35594e-14,10.3667,1.18683,-0.189253,10.3586,1.08553,-0.365985,11.009,0.787728,-0.120678,11.2114,0.857063,-0.17886,10.9494,0.887645,-0.0847581,11.0566,0.901111,-0.28845,10.9537,0.87209,-0.345076,11.2088,0.787867,-0.246251,11.2582,0.81763,-0.220332,11.2338,0.765134,-0.322139,11.1739,0.73378,-0.27647,10.9598,0.818784,-0.0628091,11.0781,0.849971,-0.17706,10.9623,0.8427,-0.106058,11.203,0.806999,-0.349806,11.0095,0.772671,-0.350653,11.0241,0.734151,-0.0954312,11.2208,0.761477,-0.148003,10.968,0.806174,-0.0297216,11.1079,0.799739,-0.277907,10.9516,0.781051,-0.329779,11.1829,0.698248,-0.222629,11.2486,0.721882,-0.226299,11.2523,0.667157,-0.324742,11.182,0.664605,-0.273201,10.9615,0.723778,-0.0276449,11.1172,0.731768,-0.145532,10.9552,0.74653,-0.0959922,11.224,0.696627,-0.34852,11.0256,0.690244,-0.553638,10.706,0.498157,-0.524777,10.5042,0.433283,-0.539238,10.599,0.472243,-0.571565,10.9092,0.513722,-0.57351,10.9546,0.507771,-0.554867,11.0504,0.470302,-0.563604,10.5585,0.211453,-0.624448,11.0348,0.275171,-0.665355,11.0257,0.210262,-0.619018,10.571,0.176682,-0.792715,11.143,-0.173748,-0.726978,11.2028,0.010407,-0.688244,11.1384,0.141538,-0.804249,11.0396,-0.255922,-0.808829,10.9159,-0.27337,-0.684608,10.9614,0.184497,-0.767663,10.6706,-0.1131,-0.62165,10.7204,0.196969,-0.805125,10.8097,-0.223616,-0.736733,10.5743,-0.0728808,-0.624058,10.5162,0.130889,-0.611291,10.659,0.206254,-0.698892,10.9688,0.160044,-0.791194,10.9101,-0.199463,-0.782406,11.004,-0.197145,-0.643064,10.5959,0.123046,-1.39254e-14,10.1607,1.10548,-0.114988,10.1662,1.12446,-0.218483,10.2091,1.06793,-0.296664,10.2629,0.973748,-0.328988,10.3106,0.92367,-0.327741,10.3543,0.911523,-0.298275,10.3926,0.932793,-0.103236,10.4141,1.11741,-1.34869e-14,10.4076,1.10157,-0.193333,10.396,1.03188,-0.152956,10.3295,1.01524,-0.0733876,10.324,1.04324,-1.36295e-14,10.3273,1.04689,-0.205792,10.3296,0.987933,-0.226919,10.3235,0.977459,-0.214168,10.3026,0.980081,-0.110411,10.2744,1.02057,-0.052524,10.2632,1.03307,-1.37435e-14,10.2631,1.03678,-0.17657,10.2881,0.998247,-0.202636,10.3148,1.01855,-0.145937,10.3025,1.06869,-0.0757857,10.293,1.10036,-1.36991e-14,10.2881,1.10454,-0.221201,10.3216,0.99253,-0.209041,10.3179,0.995313,-0.164482,10.3175,1.03504,-0.11032,10.3114,1.062,-0.0559177,10.3061,1.07749,-1.36663e-14,10.3066,1.08655,-1.38485e-14,10.204,1.16627,-0.0894155,10.2108,1.15418,-0.175529,10.2667,1.10377,-0.263028,10.2859,1.02136,-0.313183,10.3161,0.950864,-0.319437,10.3369,0.937709,-0.281958,10.3526,0.992235,-0.0956182,10.3867,1.16771,-1.3554e-14,10.3698,1.18328,-0.189492,10.361,1.0819,-0.252671,9.77079,0.288281,-0.162125,9.75374,0.328641,-9.08122e-09,9.72609,0.464248,-0.356487,9.87513,-0.17497,-0.387756,9.86153,-0.0925043,-0.348683,9.80152,0.206011,-0.233851,9.89524,-0.361654,-0.116009,9.90109,-0.421934,5.61898e-14,9.90886,-0.461296,-0.304767,9.88925,-0.274581,-0.422755,9.50869,-0.353824,-1.9812e-09,9.54597,-0.634602,-0.204347,9.53733,-0.566356,-0.321508,9.51335,-0.452169,-0.419412,9.48431,0.269811,-0.544903,9.51407,-0.150143,-0.482752,9.51155,-0.265337,-2.5313e-08,9.3268,0.43295,-0.137342,9.34716,0.407325,-0.302715,9.46059,0.417372,6.45004e-14,9.73536,-0.53064,-0.157355,9.71999,-0.479324,-0.269655,9.71141,-0.401103,-0.339643,9.69807,-0.312836,-0.439502,9.66681,-0.113468,-0.367949,9.61995,0.238593,-0.409912,9.67975,-0.200566,-0.115462,9.52801,0.363312,-2.2321e-08,9.53695,0.451493,-0.247966,9.60504,0.347553,-0.352463,10.0147,-0.158968,-0.221249,10.0117,-0.339442,-1.21695e-14,11.1492,1.02055,-0.0829814,11.1317,0.929662,-0.0926938,11.138,0.880209,-0.070862,11.1503,0.82516,-0.0484494,11.1726,0.781049,-0.0591887,11.177,0.711778,-0.452531,11.0749,0.678757,-0.401231,11.1015,0.754424,-0.488835,11.1222,0.555562,-0.379924,11.0927,0.755029,-0.359399,11.0926,0.73821,-0.371697,11.0941,0.717259,-0.355616,11.0938,0.674933,-0.570062,11.1721,0.382147,-0.631332,11.0907,0.234523,-0.672029,11.0681,0.19401,-0.477474,10.5353,-0.409513,-0.520347,10.438,0.11689,-0.522838,10.5056,-0.148459,-0.518917,10.5182,-0.277649,-1.33616e-14,10.4781,-0.636822,-0.2022,10.4973,-0.600333,-0.363514,10.532,-0.518593,-0.535467,11.241,-0.451351,-0.615496,11.2182,0.211317,-0.641511,11.2592,0.0775873,-0.647995,11.2504,-0.188306,-0.605029,11.2447,-0.333,-1.19544e-14,11.2703,-0.658587,-0.231329,11.2532,-0.618527,-0.422362,11.2394,-0.548997,-0.575224,10.7238,0.397726,-0.549992,10.5628,0.32868,-0.56433,10.635,0.373522,-0.594298,10.8928,0.394905,-0.598062,10.9497,0.378241,-0.519475,10.4921,0.237282,-0.596076,11.0451,0.333038,-0.606307,11.1496,0.276202,-0.104556,11.637,-0.452158,-0.0810043,11.6856,0.740934,-0.102978,11.7363,-0.321285,-0.102023,11.8457,-0.141785,-0.106261,11.9175,0.155022,-0.114512,11.9191,0.365999,-0.0897977,11.8349,0.58744,-0.0947687,11.4734,0.862457,-0.120671,11.37,0.925794,-0.086705,10.347,-0.541123,-0.110196,10.5786,-0.657394,-0.121135,10.8784,-0.694739,-0.110796,11.3685,-0.605683,-0.108349,11.536,-0.526789,-0.113703,10.6554,-0.668756,-0.123206,11.0921,-0.678385,-0.122629,10.9922,-0.689896,-0.122952,11.1629,-0.665335,-0.0456086,9.90349,-0.444072,-0.0818424,9.5345,-0.611983,-0.0404314,9.72569,-0.517485,-0.101515,10.4892,-0.619215,-0.116079,11.2617,-0.638557,-0.155487,11.2881,0.889681,-0.176341,11.2487,0.839736,-0.164725,11.2199,0.786467,-0.158635,11.2454,0.743145,-0.160591,11.248,0.6832,-1.18433e-14,11.3328,0.940846,-0.0931579,11.3196,0.911592,-0.0602381,11.241,0.935437,-0.064217,10.5023,1.03627,-0.0966303,10.4394,1.07284,-0.0671636,10.3046,1.15284,-0.0411314,11.0379,1.02767,-0.0363106,10.5965,1.26088,-0.0392611,10.949,1.08328,-0.0302731,10.6938,1.23041,-0.0863593,10.3825,1.17288,-0.0933653,10.4134,1.11593,-0.0387729,10.3283,1.045,-0.044513,10.2904,1.10084,-0.086801,10.3849,1.16914,-0.0440056,11.1401,0.979394,-0.510536,11.627,0.0092895,-0.415348,11.7633,-0.0014057,-0.207564,11.8602,-0.00689002,-1.08383e-14,11.8986,-0.00767155,-0.58388,11.5109,0.00176961,-0.629859,11.3501,-0.0274971,-0.668748,11.1714,-0.0848714,-0.767713,11.1942,-0.0755102,-0.750287,11.1399,-0.0654209,-0.651396,11.263,-0.0557948,-0.104197,11.8794,-0.00728078,-0.71024,11.0828,0.126623,-0.68804,11.0174,0.164007,-0.645955,10.686,0.139051,-0.652307,10.5689,0.106154,-0.767096,11.091,-0.143253,-0.729809,11.1359,0.0157568,-0.787169,10.8341,-0.153945,-0.766174,10.715,-0.0743866,-0.75185,10.6582,-0.0369792,-0.638572,10.7274,0.158951,-0.695855,11.0491,0.147974,-0.701235,10.917,0.127829,-0.686508,10.8899,0.146719,-0.652296,10.7752,0.13451,-0.632861,10.7665,0.177561,-0.384596,10.1327,0.0524655,-0.567372,10.4946,0.0631254,-0.451005,10.2975,0.032203,-0.673685,10.4607,0.0561098,-0.408104,9.83161,0.0616258,-0.552404,9.5045,0.0358535,-0.46998,9.64566,0.0489649,-0.519454,10.4519,0.0266493,-0.675461,10.5793,0.0614854,-0.422514,10.3521,0.754728,-0.471173,10.3767,0.597881,-0.359741,10.3401,0.857946,-0.215355,10.3229,1.00849,-0.31369,10.3261,0.946837,-0.503327,10.4187,0.382881,-0.573506,10.5923,0.240061,-0.619214,10.637,0.208596,-0.328365,10.3325,0.917597,-0.224926,10.3144,0.977509,-0.215294,10.3187,0.993958,-0.31631,10.3265,0.944287,-0.534734,10.5284,0.283341,-0.678201,10.6832,0.154186,-0.389915,10.738,0.808349,-0.135413,10.7858,0.988593,-0.263819,10.7245,0.907632,-0.494763,10.7716,0.696993,-0.605187,10.8135,0.306467,-0.078288,10.7773,1.12311,-1.2797e-14,10.796,1.19573,-0.56524,10.7921,0.508561,-0.58534,10.8055,0.402182,-0.0283156,10.7894,1.171,-0.651476,10.8273,0.158056,-0.579509,10.5136,0.016258,-0.451246,10.3191,-0.0498534,-0.702187,10.4986,-0.0203015,-0.407297,9.84936,-0.0260794,-0.58061,9.51567,-0.0488354,-0.460001,9.65729,-0.0427455,-0.52134,10.4868,-0.0592735,-0.724198,10.6118,0.00814378,-0.661323,11.1347,0.147841,-0.642032,11.0324,0.2388,-0.641289,10.9656,0.201458,-0.602735,10.6387,0.237416,-0.583054,10.5868,0.204947,-0.587988,10.551,0.134747,-0.711682,11.1156,-0.143362,-0.696241,11.1719,0.013335,-0.719063,11.0595,-0.212123,-0.721965,10.9451,-0.230062,-0.708268,10.8148,-0.170336,-0.673587,10.6658,-0.072383,-0.649904,10.5942,-0.037935,-0.604266,10.701,0.247903,-0.647658,11.0773,0.215766,-0.718231,11.1575,-0.0815112,-0.612797,10.7648,0.242064,-0.641331,10.894,0.187727,-0.624977,10.506,0.0630326,-0.592894,10.6004,0.220809,-0.625475,10.8259,0.223558,-0.623004,10.5217,0.0147998,-0.460656,11.2741,0.644036,-0.500072,11.4036,-0.404726,-1.16632e-14,11.4342,0.892014,-0.23398,11.3439,0.912965,-0.37007,11.2935,0.830679,-0.512733,11.3445,0.493842,-0.575948,11.3986,0.270054,-0.602634,11.4263,0.13474,-0.599982,11.4244,-0.148575,-0.56708,11.4096,-0.289856,-1.16205e-14,11.4582,-0.590967,-0.228757,11.4377,-0.547593,-0.374168,11.4167,-0.488579,-0.119331,11.3912,0.916027,-0.108016,11.4514,-0.57715,-0.613788,11.4334,-0.00775994,-0.137521,10.9131,0.968562,-0.130821,10.7189,1.01856,-0.0401914,10.5278,1.07935,-0.233485,10.5164,0.94433,-1.32774e-14,10.5255,1.06941,-0.217914,10.6294,0.91916,-0.136935,10.9475,0.936697,-0.126494,10.9741,0.895146,-0.12342,10.9917,0.850724,-0.124244,10.9906,0.808526,-0.120997,10.9774,0.74701,-0.0351689,10.5183,1.07784,-0.127906,10.7864,0.996213,-0.404245,10.1327,0.429594,-0.504914,11.63,0.386099,-3.88688e-09,9.7896,0.817192,-0.236144,9.81615,0.741243,-0.358849,9.96274,0.568984,-0.389451,11.7719,0.421173,-0.216638,11.857,0.46152,-1.08329e-14,11.9016,0.475742,-0.547929,11.485,0.373463,-0.541634,11.2746,0.405494,-0.482063,10.3433,0.362299,-0.552703,10.6988,0.541043,-0.523456,10.5016,0.441584,-0.5373,10.5971,0.479398,-0.547223,10.9156,0.593866,-0.544784,10.9535,0.584453,-0.527694,11.0328,0.54441,-0.529448,11.1472,0.468855,-0.10258,11.8863,0.4718,-0.502899,10.4158,0.395472,-0.547713,10.7848,0.574532,-0.549136,11.3765,0.380214,-0.680623,11.1373,0.143322,-0.658752,11.0276,0.218341,-0.661412,10.9632,0.18864,-0.609031,10.6538,0.221445,-0.596998,10.5713,0.200415,-0.608952,10.5111,0.138736,-0.776212,11.1425,-0.172821,-0.718277,11.2012,0.0112359,-0.7869,11.0436,-0.252317,-0.791139,10.9218,-0.269892,-0.7854,10.8124,-0.215631,-0.750146,10.6708,-0.105534,-0.72383,10.5705,-0.0656742,-0.616729,10.7151,0.213672,-0.66513,11.0707,0.200169,-0.753705,11.1909,-0.077209,-0.62787,10.7681,0.193286,-0.667607,10.8853,0.162465,-0.662067,10.4721,0.05665,-0.605895,10.6209,0.214813,-0.642448,10.8262,0.180083,-0.689514,10.5074,-0.0132382,-0.648295,11.1324,0.153139,-0.627569,11.0344,0.268714,-0.6225,10.9587,0.275673,-0.586839,10.6263,0.263667,-0.567057,10.5632,0.210228,-0.570832,10.5193,0.137849,-0.686469,11.1149,-0.164975,-0.67096,11.1673,0.0165912,-0.692558,11.0658,-0.229353,-0.694938,10.9543,-0.247337,-0.678132,10.8142,-0.187734,-0.643037,10.6658,-0.100323,-0.619887,10.5976,-0.073352,-0.589893,10.6791,0.294138,-0.63423,11.0883,0.231194,-0.677532,11.1482,-0.0842749,-0.59865,10.7493,0.301786,-0.619564,10.8865,0.272008,-0.586366,10.505,0.0674749,-0.576948,10.5938,0.236649,-0.608789,10.8161,0.291847,-0.587649,10.5186,0.0147628,-0.690262,10.8168,0.0443389,-0.698211,10.8539,0.0381383,-0.652295,10.8172,0.134702,-0.731763,10.7139,0.0666362,-0.690132,10.6981,0.123304,-0.675461,10.5959,0.0649202,-0.715106,10.6144,0.0165672,-0.638753,10.691,0.123788,-0.700284,10.7022,0.0616478,-0.735362,10.7052,-0.00538407,-0.749447,10.7401,-0.0465187,-0.737426,10.6659,-0.0385318,-0.751306,10.727,-0.0769062,-0.751786,10.8575,-0.105106,-0.742845,10.8406,-0.0579251,-0.732326,10.8819,-0.0258034,-0.733486,10.9169,-0.0692055,-0.732016,10.9554,-0.0247638,-0.728453,10.9107,0.0198262,-0.718742,10.8665,-0.0127313,-0.708696,10.888,0.0305672,-0.711174,10.7415,-0.044398,-0.720938,10.8357,-0.0503472,-0.721681,10.7021,-0.00937895,-0.762661,11.0085,-0.0687209,-0.771348,10.9597,-0.115726,-0.73949,10.9114,-0.139477,-0.748139,10.8078,-0.0622364,-0.709492,10.8123,-0.0559991,-0.751107,10.8314,-0.158436,-0.753243,10.912,-0.205976,-0.749498,11.0055,-0.191622,-0.733251,11.0908,-0.140437,-0.715413,11.1357,-0.06538,-0.693682,11.1361,0.0126437,-0.692406,11.0489,0.142496,-0.685947,11.0153,0.15218,-0.679899,10.9711,0.145924,-0.687567,11.0798,0.123717,-0.41266,10.8282,0.799444,-0.149707,10.8502,0.9724,-0.308922,10.8197,0.893968,-0.511886,10.8506,0.680826,-0.610026,10.8488,0.298926,-0.0831169,10.864,1.07915,-1.26657e-14,10.8698,1.15985,-0.568014,10.8547,0.515562,-0.589819,10.8492,0.398544,-0.03369,10.8678,1.13634,-0.650336,10.8406,0.151253,-0.633403,10.8599,0.205642,-0.135137,10.8566,0.982404,-0.550912,10.8585,0.586865,-0.643729,10.8463,0.172516,-0.614176,10.8513,0.281927,-0.634146,10.8226,0.133344,-0.673339,10.8112,0.0730934,-0.672532,10.7667,0.100891,-0.691208,10.7616,0.0365957,-0.686134,10.7438,0.0824198,-0.620101,10.7293,0.153769,-0.630552,10.7646,0.132385,-0.694856,10.7991,-0.000749676,-0.699695,10.8339,-0.00587305,-0.673149,10.9341,0.111901,-0.700465,11.0464,0.0841271,-0.703234,10.9672,0.106715,-0.701355,11.0139,0.0962658,-0.736907,11.054,0.0360562,-0.70987,10.9477,0.0844722,-0.713396,10.9997,0.058729,-0.685604,10.919,0.0938407,-0.693887,10.8684,0.119749,-0.709115,10.8966,0.104323,-0.673228,10.8302,0.103724,-0.749707,11.041,-0.01575,-0.721114,10.9306,0.0513706,-0.723086,10.9823,0.0177463,-0.695762,10.9026,0.0674903,-0.693935,10.8514,0.0866304,-0.701632,10.8761,0.0755774,-0.673652,10.7783,0.0693107,-0.694919,10.7684,-0.000299593,-0.708718,10.776,-0.0532533,-0.540278,10.7867,-0.474951,-0.648505,10.7451,-0.143731,-0.598658,10.7726,-0.34249,-1.28549e-14,10.7633,-0.702254,-0.234009,10.7705,-0.66124,-0.422615,10.7843,-0.577037,-0.786394,10.7401,-0.168358,-0.117419,10.7669,-0.681747,-0.776599,10.7734,-0.113603,-0.690927,10.7403,-0.12136,-0.767773,10.7416,-0.160582,-0.660585,10.74,-0.144029,-0.76003,10.7735,-0.116831,-0.753437,10.7901,-0.0862972,-0.747974,10.7757,-0.0580357,-0.75013,10.7618,-0.0736133,-0.594223,10.7796,0.079863,-0.59239,10.8226,0.105135,-0.590312,10.7713,0.125581,-0.591702,10.7724,0.105406,-0.594189,10.8121,0.0837459,-0.591097,10.8153,0.126207,-0.10981,10.9255,0.996866,-0.0987208,10.706,1.11618,-0.0397788,10.5576,1.13564,-0.213013,10.5326,1.04454,3.3617e-06,10.5493,1.16577,-0.20367,10.6301,1.00368,-0.10602,10.9769,0.951272,-0.0926093,11.0101,0.902334,-0.0853769,11.0247,0.848527,-0.0672203,11.042,0.807893,-0.0624198,11.0423,0.740533,-0.0318004,10.5562,1.14203,-0.103097,10.7819,1.05966,-0.109127,10.8603,1.03078,-0.175842,10.6732,0.958505,-0.166629,10.5089,0.976128,-0.23654,10.9055,0.918255,-0.157137,10.4415,1.02486,-0.109225,10.3097,1.13213,-0.132885,10.5853,1.1733,-0.129065,10.6634,1.15101,-0.239962,10.9252,0.903168,-0.143002,10.3709,1.12815,-0.23806,10.9423,0.879472,-0.227251,10.9488,0.832923,-0.213729,10.9515,0.798215,-0.21169,10.943,0.739148,-0.148294,10.4066,1.07465,-0.110994,10.3244,1.0338,-0.111228,10.2982,1.08437,-0.143334,10.3732,1.12447,-0.186187,10.7367,0.948112,-0.157427,10.5152,1.0285,-0.173326,10.6726,0.968859,-0.216893,10.8216,0.933184,-0.142299,10.5337,1.09552,-0.151196,10.668,1.05993,-0.0978939,10.6854,1.06053,-0.0939712,10.6621,0.978184,-0.0524107,10.6918,1.0773,-0.0476334,10.665,0.995607,-0.0574576,10.6268,1.12429,-0.0553495,10.5928,1.02847,-0.177612,10.596,1.00174,-0.178195,10.6251,1.0985,-1.391e-14,10.1694,1.01519,-0.0394381,10.1692,1.01097,-0.241828,10.2858,0.943414,-0.250902,10.3433,0.939997,-1.35081e-14,10.3956,1.00991,-0.16732,10.3805,0.974832,-0.0586161,10.3913,1.01158,-0.223326,10.3604,0.950324,-0.10163,10.1917,0.993811,-0.22354,10.2323,0.955849,-0.0286463,10.3972,1.01356,-0.253877,10.3213,0.938548,-0.104391,10.3751,1.0003,-0.145697,10.4487,0.816518,-0.263806,10.2891,0.811724,-0.0421492,10.4442,0.816366,-0.195139,10.1666,0.813551,-1.39902e-14,10.1242,0.817029,-0.0513,10.1255,0.816865,-0.117556,10.1357,0.815838,-0.247324,10.2226,0.811345,-0.263334,10.3619,0.813794,-0.241704,10.4152,0.815076,-1.34269e-14,10.4414,0.816519,-0.0891039,10.4479,0.816681,-0.202505,10.4398,0.815921,-0.211328,10.4418,0.482295,-0.0902159,10.4473,0.471235,-1.34365e-14,10.4359,0.473359,-0.243899,10.4209,0.482371,-0.248375,10.3701,0.480286,-0.211108,10.2532,0.472559,-0.115512,10.1634,0.458181,-0.0527663,10.173,0.46396,-1.38979e-14,10.1762,0.463935,-0.172066,10.1982,0.462861,-0.0422708,10.4409,0.469801,-0.234289,10.3105,0.477969,-0.151055,10.4503,0.477849,-0.106746,10.4044,0.383907,-0.180663,10.3141,0.402206,-0.0300477,10.3977,0.382492,-0.132566,10.2405,0.387593,-1.38902e-14,10.1805,0.381336,-0.0374266,10.182,0.381688,-0.082032,10.1977,0.375535,-0.160964,10.2787,0.394712,-0.196317,10.3551,0.412009,-0.172206,10.3839,0.395286,-1.35106e-14,10.3942,0.386154,-0.0638514,10.4022,0.380147,-0.149242,10.3983,0.391901,-0.0337372,10.2938,0.352247,-1.36874e-14,10.2947,0.352385,-0.0729417,10.3071,0.351893,-0.118441,10.3271,0.362759,-0.134558,10.3366,0.370138,-0.154695,10.3425,0.379841,-0.243899,10.4209,0.749809,-0.243899,10.4209,0.682949,-0.243899,10.4209,0.61609,-0.243899,10.4209,0.549231,-0.211328,10.4418,0.749793,-0.211328,10.4418,0.682919,-0.211328,10.4418,0.616044,-0.211328,10.4418,0.549169,-0.263446,10.3594,0.748244,-0.261445,10.3625,0.681927,-0.259458,10.366,0.615388,-0.260396,10.3716,0.548855,-0.194968,10.1628,0.743984,-0.193579,10.1546,0.672167,-0.188229,10.1673,0.600696,-0.184861,10.1778,0.532505,-0.247174,10.2111,0.743963,-0.245873,10.2068,0.676649,-0.23831,10.219,0.608753,-0.231547,10.2329,0.542132,-0.118733,10.1408,0.744121,-0.11842,10.1358,0.668817,-0.116694,10.1464,0.590886,-0.115322,10.1497,0.524354,-0.0525052,10.1276,0.744881,-0.0530738,10.1277,0.670208,-0.0533342,10.1433,0.601175,-1.39881e-14,10.1254,0.744688,-1.39848e-14,10.1273,0.670636,-1.39535e-14,10.1449,0.60426,-0.0913876,10.4469,0.747698,-0.0910947,10.447,0.678582,-0.0908017,10.4471,0.609466,-0.0905088,10.4472,0.540351,-0.0431541,10.4413,0.747307,-0.0416607,10.4402,0.677712,-0.0418641,10.4404,0.608409,-0.0420674,10.4406,0.539105,-1.34331e-14,10.4378,0.747819,-1.34365e-14,10.4359,0.679344,-1.34365e-14,10.4359,0.610682,-1.34365e-14,10.4359,0.542021,-0.263461,10.2792,0.745829,-0.260614,10.283,0.679577,-0.256365,10.2921,0.613192,-0.252771,10.301,0.547317,-0.151055,10.4503,0.748904,-0.151055,10.4503,0.681141,-0.151055,10.4503,0.613377,-0.151055,10.4503,0.545613,-0.129014,10.45,0.882277,-0.0771839,10.4544,0.884508,-0.189687,10.4391,0.877803,-0.243497,10.257,0.869308,-0.26089,10.3139,0.867099,-0.258923,10.3652,0.868102,-0.0376292,10.4486,0.884154,-1.34179e-14,10.4464,0.884075,-1.39789e-14,10.1306,0.897189,-0.0475267,10.135,0.894163,-0.114516,10.1493,0.889364,-0.204964,10.1976,0.880507,-0.233415,10.405,0.870074,-0.0540869,10.1941,0.573131,-1.38659e-14,10.1942,0.573049,-0.113031,10.1963,0.571311,-0.0927196,10.2871,0.481887,-0.109,10.2361,0.528889,-0.0531513,10.291,0.486262,-1.36827e-14,10.2973,0.486244,-0.0536445,10.3358,0.5562,-0.0934903,10.3251,0.554205,-1.36076e-14,10.3396,0.556192,-0.119859,10.2323,0.593451,-0.120582,10.2789,0.574944,-0.0697161,10.2282,0.594774,-1.38053e-14,10.2283,0.594776,-0.0758246,10.236,0.626537,-1.37977e-14,10.2326,0.626843,-0.113494,10.2465,0.625696,-0.128092,10.2867,0.616656,-0.102105,10.3284,0.607489,-1.36156e-14,10.3351,0.608721,-0.0602482,10.3326,0.608664,-0.103604,10.3267,0.673093,-0.0615983,10.3291,0.674167,-1.36262e-14,10.3291,0.674295,-0.113494,10.2513,0.680324,-0.128092,10.2885,0.67655,-0.0759438,10.242,0.68112,-1.37796e-14,10.2428,0.677037,-1.37608e-14,10.2534,0.758614,-0.0761353,10.2529,0.760278,-0.113494,10.2601,0.759416,-0.113494,10.3184,0.756909,-0.126964,10.2889,0.757853,-0.0779899,10.3203,0.757988,-1.36419e-14,10.3203,0.758148,-0.111236,10.3034,0.864413,-0.0782463,10.3099,0.86245,-1.36579e-14,10.3113,0.862133,-0.12172,10.2833,0.859643,-0.112429,10.26,0.855025,-0.0765025,10.2528,0.855079,-1.37617e-14,10.2528,0.855215,-0.073097,10.2554,0.894419,-1.37571e-14,10.2554,0.894488,-0.102923,10.2648,0.894354,-0.108893,10.2833,0.896556,-0.102133,10.2996,0.89882,-1.36692e-14,10.3049,0.897818,-0.0728805,10.304,0.897967,-0.0902195,10.2883,0.922299,-0.0631656,10.2896,0.944965,-1.36958e-14,10.2899,0.944965,-0.0902016,10.2743,0.922299,-0.0916436,10.2817,0.925139,-0.0646987,10.2685,0.944965,-1.3734e-14,10.2684,0.944965,-0.0636431,10.2796,0.952236,-1.37149e-14,10.2792,0.952944,-0.116967,10.4296,0.941053,-0.06832,10.4393,0.947865,-0.261104,10.3222,0.904768,-0.0331772,10.4358,0.948837,-0.108073,10.166,0.941588,-0.214252,10.2143,0.918178,-0.229728,10.3868,0.912631,-0.0434824,10.1488,0.952568,-1.39498e-14,10.147,0.956192,-1.34386e-14,10.4347,0.948062,-0.257884,10.3581,0.906257,-0.24588,10.2747,0.908379,-0.178983,10.4158,0.927398,-0.565606,10.7726,0.145421,-0.556043,10.7733,0.129054,-0.555927,10.8218,0.128854,-0.566035,10.8144,0.146156,-0.545193,10.8121,0.11048,-0.543231,10.7796,0.107122,-0.505215,10.8121,0.17736,-0.502137,10.7796,0.174983,-0.522237,10.7733,0.190511,-0.537912,10.8144,0.20262,-0.537238,10.7726,0.2021,-0.522054,10.8218,0.190369,-0.197283,10.9605,0.638722,-0.0807695,11.0368,0.640881,-0.12649,10.9861,0.645937,-0.157394,11.1973,0.596132,-0.309613,11.077,0.589679,-0.0782476,11.1419,0.618438,-0.304075,11.0238,0.60163,-0.106973,11.1786,0.606612,-0.147233,10.9713,0.642955,-0.0536272,11.0952,0.63404,-0.245229,10.9738,0.627722,-0.285516,11.1458,0.581619,-0.208476,11.1979,0.583176,-0.20441,11.15,0.535694,-0.258772,11.1112,0.534285,-0.23031,10.9894,0.566961,-0.0947102,11.0754,0.571373,-0.159809,10.9859,0.579525,-0.132453,11.1344,0.551968,-0.271903,11.0249,0.548443,-0.112129,11.1084,0.560335,-0.275821,11.0625,0.539988,-0.168125,11.1477,0.544553,-0.146261,10.9982,0.57979,-0.113913,11.0341,0.576213,-0.196343,10.9792,0.575449,-0.326267,10.2053,-0.265618,-0.245154,10.1854,-0.342259,-1.38736e-14,10.1899,-0.436339,-0.0671483,10.1876,-0.418382,-0.383831,10.1631,-0.0274031,-0.357489,9.91883,0.16852,-0.274223,9.85766,0.274844,-0.156274,9.82288,0.340451,3.04379e-14,9.80198,0.446641,-0.300982,10.0205,-0.262537,-0.372244,9.99644,-0.0836739,-0.115069,10.0148,-0.397971,4.37794e-14,10.0221,-0.433781,-0.0519322,10.0182,-0.415898,-0.385338,9.95555,0.0533378,-0.38213,9.97927,-0.0218729,6.16662e-14,9.80912,-0.497066,-0.130963,9.7992,-0.450577,-0.255697,9.79283,-0.380673,-0.320107,9.78071,-0.292285,-0.410926,9.74826,-0.10315,-0.354287,9.69448,0.221694,-0.378747,9.76182,-0.188379,-0.131973,9.65556,0.334844,-1.26745e-08,9.62446,0.463766,-0.248036,9.67531,0.317779,-0.0410956,9.80278,-0.481335,-0.433838,9.7226,0.0628111,-0.434421,9.73748,-0.0339391,-1.24971e-10,9.63501,-0.582608,-0.164556,9.62046,-0.523274,-0.296227,9.61899,-0.423644,-0.368818,9.59499,-0.331992,-0.491356,9.579,-0.130489,-0.380992,9.54437,0.255593,-0.443525,9.58778,-0.216391,-0.13278,9.41483,0.408378,-2.59521e-08,9.44552,0.378801,-0.257239,9.52379,0.386033,-0.048137,9.62104,-0.566386,-0.51391,9.56452,0.0370312,-0.515342,9.57445,-0.053678,-1.97281e-08,9.30618,0.487465,-0.151626,9.31552,0.460271,-0.314217,9.40151,0.486047,-0.637388,9.49272,0.0427428,-0.669475,9.53021,-0.060785,-0.630328,9.5261,-0.171552,-0.571138,9.51347,-0.30568,-0.479333,9.46972,0.312565,-0.10844,9.44769,-0.669188,-0.399588,9.42503,-0.488905,-0.243613,9.46105,-0.596024,-0.503418,9.47107,-0.406336,-0.308745,9.78999,0.24471,-0.366563,9.47599,0.330982,-0.311485,9.61346,0.286625,-0.308802,9.68818,0.272209,-0.321471,9.53352,0.312602,-0.398998,9.43395,0.393863,-0.373174,9.81313,0.154787,-0.388581,9.82025,0.11773,-0.398342,9.82593,0.089678,-0.462669,9.49171,0.195261,-0.492548,9.49505,0.142579,-0.522208,9.50118,0.0893293,-0.400375,9.62936,0.178369,-0.424238,9.63433,0.135593,-0.447286,9.64065,0.092317,-0.386425,9.70686,0.166862,-0.40534,9.71261,0.127893,-0.419654,9.71787,0.0953723,-0.421512,9.55072,0.187313,-0.453303,9.55487,0.135073,-0.483621,9.56096,0.086071,-0.598211,9.48924,0.108607,-0.56077,9.48228,0.174045,-0.532305,9.48062,0.223316,-0.308934,9.83946,0.240261,-0.361204,9.8864,0.168093,-0.387742,9.90697,0.0896456,-0.336656,9.83527,0.201874,-0.375281,9.86145,0.117755,-0.370832,9.856,0.16459,-3.53271,8.93966,0.0385299,-3.55728,9.14192,-0.0518263,-3.51973,8.76309,-0.0055576,-3.5172,8.78074,-0.516791,-3.52086,8.72862,-0.386739,-3.52307,8.69472,-0.231988,-3.509,9.2781,-0.621314,-3.53936,9.36413,-0.0735251,-3.51792,9.47331,-0.261818,-3.50592,9.41089,-0.540366,-3.5219,8.69284,-0.103315,-3.55315,9.18472,-0.597015,-3.52054,8.85,-0.574394,-3.49364,8.88432,-0.632916,-3.51269,9.13992,-0.683629,-3.52354,8.99726,-0.694871,-3.23579,8.68577,-0.2146,-3.23538,8.69125,-0.0765202,-3.23631,8.77053,0.0289004,-3.24047,9.43861,-0.285127,-3.21866,9.3612,-0.562044,-3.22256,9.24069,-0.637826,-3.25659,9.33905,-0.0648301,-3.26334,9.14622,0.00442942,-3.22626,8.96547,-0.698667,-3.22886,8.74969,-0.526909,-3.23263,8.71305,-0.373209,-3.2426,8.95916,0.0879961,-3.22998,9.12495,-0.698015,-3.2226,8.86217,-0.632182,-3.29302,9.17904,-0.648379,-3.26939,8.8245,-0.58246,-1.78248,9.01659,0.283178,-1.84517,9.336,0.29064,-1.73691,8.78354,0.0882704,-1.59461,8.62454,-0.549366,-1.65518,8.55291,-0.400243,-1.71381,8.58756,-0.272841,-1.57701,8.82525,-0.613852,-1.56785,9.12862,-0.650022,-1.86091,9.5127,0.0594057,-1.83571,9.5246,-0.248507,-1.69284,9.39824,-0.510833,-1.71955,8.64968,-0.0726239,-2.05894,8.57005,0.117433,-2.09829,9.47765,-0.584879,-2.10676,9.60547,-0.256922,-2.10825,9.58872,0.100713,-2.09163,9.20236,-0.763438,-2.09531,8.88584,-0.674857,-2.08566,8.48161,-0.241345,-2.09935,8.50216,-0.407392,-2.09976,8.63861,-0.572406,-2.06993,8.74388,0.268335,-2.1053,9.36029,0.35293,-2.10379,9.01036,0.412135,-2.48504,9.09681,0.391659,-2.48504,9.37692,0.32779,-2.47507,8.79479,0.219333,-2.48363,8.58477,-0.573036,-2.48504,8.43115,-0.409061,-2.48457,8.42307,-0.26147,-2.47682,8.92267,-0.689248,-2.46824,9.23494,-0.797659,-2.48505,9.56622,0.0916448,-2.47897,9.59016,-0.274964,-2.46795,9.49763,-0.620191,-2.47158,8.53764,0.0709101,-8.19318e-10,8.98407,0.871272,-6.07399e-10,8.85124,0.954692,-0.618597,9.21616,0.655142,-1.09254,9.63558,0.199241,-1.05371,9.52471,0.347742,-0.0906458,9.17252,-0.838391,-0.922976,9.55129,-0.423603,-1.18876,9.61026,-0.490904,-0.169381,9.01186,0.862073,-1.24826,9.32032,0.483796,-1.37013,9.56234,0.335526,-0.718483,9.13784,0.745622,-0.850847,8.51603,1.00426,-0.22855,8.41494,1.08291,-0.262885,8.01715,1.07267,-0.864353,8.16147,0.972893,-0.92076,7.94654,0.843309,-0.252318,7.80842,1.0226,-0.265432,7.1721,0.998005,-0.728284,7.18612,0.722623,-1.30488,8.16219,0.465497,-1.32706,8.11728,0.146963,-0.200992,8.25777,-0.888076,-0.316013,7.74242,-0.717755,-5.4328e-16,7.68038,-0.660519,-0.948509,7.24015,0.456993,-1.00503,7.25226,0.209026,-1.19241,7.89059,0.504508,-1.17143,7.84008,0.182274,-3.32622e-15,7.7911,1.03263,-8.15617e-15,7.16593,1.01818,-0.471197,9.31293,0.505497,-0.861986,9.55216,0.180823,-0.604638,9.36104,-0.621002,-0.103068,8.71073,-0.944721,-8.88178e-16,8.71168,-0.93566,-0.797872,9.30228,-0.675607,-0.88092,9.34697,0.479899,-1.10168,9.16654,0.605672,-0.69891,9.45723,0.314125,-1.1424,8.61768,0.793672,-1.27056,8.53547,0.654985,-1.04553,8.35566,0.872794,-1.1406,8.26092,0.743623,-1.00606,9.68638,-0.251181,-1.28303,9.73166,-0.22218,-1.06072,8.76975,-0.815829,-1.21818,8.9126,-0.769601,-0.852679,9.42988,-0.559455,-1.3905,9.17398,-0.724091,-0.889176,9.01608,-0.812752,-0.999182,9.21922,-0.74199,-1.05691,9.3772,-0.646555,-1.07229,9.74688,-0.0190133,-1.37129,9.74182,0.0165571,-0.507836,9.17665,-0.816529,-0.367471,9.16778,-0.821654,-0.745335,8.88067,-0.9204,-0.477007,8.78956,-0.966174,-0.606028,8.42124,-0.930858,-0.860672,8.63326,-0.914979,-0.982482,8.30248,-0.798095,-0.758455,8.00985,-0.811834,-0.714566,9.17224,-0.763963,-0.873829,7.68193,-0.49337,-1.04316,8.03528,-0.465609,-1.12593,7.81484,-0.104985,-1.01567,7.52358,-0.0865537,-1.05949,7.50266,0.19325,-0.234837,7.49952,0.965813,-0.828629,7.55758,0.713552,-1.01447,7.53504,0.477333,-0.559309,9.27079,-0.734196,-0.182087,9.08699,0.785045,-0.45559,9.06154,0.806098,-0.558247,8.45665,1.04947,-0.56777,8.06453,1.0451,-0.567862,7.85681,0.965143,-0.484936,7.18898,0.906272,-0.515032,7.53017,0.891048,-0.403789,9.14058,0.727263,-0.783121,9.29154,0.550171,-0.954559,9.14327,0.720381,-0.608269,9.39758,0.402321,-1.01094,8.59025,0.913065,-0.607378,9.07176,-0.86116,-0.398363,9.00024,-0.909699,-0.0887395,8.98237,-0.90744,-0.232527,8.21765,1.11596,-0.863969,8.33394,1.01853,-0.56358,8.26013,1.07643,-0.992909,8.44226,0.932308,-1.19979,8.24159,-0.417019,-1.21638,8.10159,-0.128938,-1.38987,8.43047,0.417023,-1.46463,8.37332,0.141409,-1.39627,8.33312,-0.119721,-1.34001,8.35168,-0.373651,-1.16026,8.48528,-0.694675,-1.3072,8.55617,-0.64236,-0.20758,8.68362,1.03038,-0.839249,8.74289,0.960703,-1.14759,8.81277,0.709865,-1.3092,8.76886,0.568811,-0.537619,8.69624,0.987843,-1.0327,8.803,0.84225,-1.5876,8.65186,0.253153,-1.43932,8.67641,0.3971,-1.54885,8.49739,-0.292294,-1.6003,8.51595,-0.0509229,-1.45176,8.58162,-0.594108,-0.815225,7.41915,-0.443015,-0.970838,7.30016,-0.0672741,-0.610025,7.70142,-0.680558,-1.69621,9.61648,-0.254011,-1.50167,9.47892,-0.560166,-1.70901,9.43589,0.377568,-1.7465,9.61705,0.0812753,-0.258205,7.91397,1.05016,-0.898415,8.06171,0.910976,-0.990808,9.44559,0.406973,-1.17979,9.21309,0.549524,-0.801039,9.51348,0.238317,-1.20544,8.58174,0.723446,-1.09552,8.31258,0.80783,-0.22636,9.15867,-0.824132,-0.257731,8.73454,-0.998635,-0.371786,8.32256,-0.94746,-0.574213,7.96376,1.01037,-0.245345,8.98247,-0.908579,-1.23275,8.79765,0.638089,-0.522385,7.41134,-0.611081,-0.798038,7.18603,-0.370506,-0.971148,7.09784,-0.0471689,-0.960401,6.98901,0.470768,-0.935818,8.45668,-0.852145,-0.698927,8.18901,-0.865266,-1.10419,8.64118,-0.749019,-1.27293,8.71021,-0.703803,-1.42062,8.82416,-0.674693,-0.504542,7.97065,-0.799103,-1.01471,8.17649,-0.656909,-0.819289,7.84342,-0.648312,-1.18726,8.35591,-0.575959,-1.32451,8.43518,-0.509965,-1.53579,8.46618,-0.421397,-0.705493,7.55552,-0.563379,-0.65491,7.28619,-0.530877,-0.177838,8.88435,0.967381,-0.82788,8.95955,0.880941,-1.13439,9.01736,0.651603,-1.28256,8.98719,0.516388,-0.513964,8.89403,0.915619,-1.00399,9.00809,0.781245,-1.64145,8.96327,0.368933,-1.41351,8.95905,0.375316,-1.21024,9.00673,0.584812,-1.81993,8.95177,0.360869,-1.85467,9.32555,0.3659,-1.82011,8.64204,0.202237,-1.61943,8.58434,-0.575143,-1.66481,8.48348,-0.409546,-1.79511,8.48038,-0.261805,-1.60846,8.82187,-0.652062,-1.608,9.16564,-0.705058,-1.86654,9.58748,0.10279,-1.8593,9.60172,-0.251078,-1.77095,9.45245,-0.535592,-1.82121,8.54297,-0.0260319,-0.970252,8.90029,-0.813846,-1.11807,9.05514,-0.758393,-1.22002,9.28452,-0.692597,-0.802856,8.75936,-0.919906,-0.536914,8.60508,-0.952896,-0.145288,8.48292,-0.92326,-1.49932,8.66958,0.319192,-1.43378,9.6893,-0.250121,-1.33299,9.55011,-0.529988,-1.56116,9.69332,0.0300362,-1.54408,9.52013,0.3618,-1.43457,8.39928,0.280311,-1.32032,8.12928,0.306118,-1.18604,7.86996,0.340799,-1.0362,7.51748,0.331735,-0.974182,7.24445,0.330853,-0.310687,8.52797,-0.978733,-1.51523,8.95676,0.372896,-0.851851,9.67307,-0.0437346,-0.866859,9.58929,0.110889,-0.733266,9.53676,-0.348153,-0.799932,9.61766,-0.208885,-8.76554e-09,9.30618,0.487465,-0.151626,9.31552,0.460271,-0.314217,9.40151,0.486047,-0.637388,9.50151,0.0427428,-0.669475,9.54345,-0.060785,-0.630328,9.53867,-0.171552,-0.571138,9.52347,-0.30568,-0.479333,9.47108,0.312565,-0.139753,9.2423,0.609396,-0.329472,9.26354,0.562307,-0.10844,9.44769,-0.669188,-0.399588,9.42619,-0.488905,-0.243613,9.46107,-0.596024,-0.503418,9.47536,-0.406336,-0.664017,9.45742,-0.481642,-0.246828,9.32886,-0.71279,-0.374307,9.33519,-0.673419,-0.0977115,9.33731,-0.735932,-0.398998,9.43408,0.393863,-0.598211,9.49595,0.108607,-0.56077,9.48735,0.174045,-0.532305,9.48402,0.223316,-1.71937,8.96306,0.369122,-1.78471,9.37463,0.371941,-1.70738,8.65331,0.216071,-1.53408,8.58232,-0.5865,-1.59986,8.47613,-0.41578,-1.67366,8.49145,-0.2774,-1.5126,8.82016,-0.665839,-1.49742,9.16811,-0.715766,-1.80433,9.60384,0.0928304,-1.78273,9.60801,-0.251324,-1.63496,9.46452,-0.547151,-1.71726,8.52479,-0.0302415,-0.367577,6.70699,-0.785996,-1.13219,6.71618,0.192697,-0.732011,6.61523,0.781144,-0.487225,6.64342,1.00061,-0.271903,6.63544,1.12986,-1.02254,7.05858,0.160365,-0.506697,6.91513,0.913512,-0.731084,6.90726,0.706487,-0.303206,6.89754,1.02826,-0.8025,7.02448,-0.307462,-1.03283,6.91368,0.172281,-0.977618,6.97039,-0.0397057,-0.496861,6.74064,0.928604,-0.708718,6.73924,0.714857,-0.277676,6.72203,1.07149,-0.952463,6.82124,0.482546,-0.466521,7.19184,-0.500415,-0.294004,7.29163,-0.538483,-0.224773,6.71501,-0.756213,-0.227926,6.66473,-0.708539,-0.272078,6.60231,1.11593,-0.486071,6.60906,0.982563,-0.715166,6.6132,0.7565,-0.929331,6.62044,0.572599,-1.02334,6.68109,-0.0259075,-1.0766,6.67381,0.19997,-0.346767,6.66372,-0.745008,-0.845289,6.68373,-0.315271,-0.647233,7.08678,-0.469545,-0.655507,6.69252,-0.525745,-0.999533,7.02082,0.348442,-1.00217,6.85347,0.362794,-1.02232,6.64105,0.434575,-0.681695,6.22055,-0.855183,-0.926205,6.21985,-0.638132,-1.16124,6.21119,0.050662,-1.09325,6.22234,-0.229896,-0.726963,6.12999,0.87296,-0.461095,6.13849,1.08957,-0.255237,6.13625,1.21081,-0.178541,5.73657,-1.08288,-1.17804,5.67567,0.610916,-1.26503,5.73984,-0.232151,-1.30224,5.73446,0.0217269,-0.397678,5.72853,-1.13379,-1.06841,5.7395,-0.658196,-0.765679,5.71977,-1.01185,-1.24897,5.697,0.36991,-1.36071,5.11135,0.313643,-0.853828,5.11714,-1.02233,-1.08837,5.09765,-0.704467,-0.446578,5.11554,-1.23537,-1.35993,5.09839,0.0273816,-1.28329,5.06251,0.492917,-0.233533,5.11976,-1.14972,-1.32009,5.42961,0.349206,-1.35631,5.42242,0.01696,-1.23934,5.40271,0.572962,-1.08942,5.41713,-0.688869,-0.81134,5.41502,-1.03399,-0.421292,5.41853,-1.20187,-1.28358,5.41015,-0.258139,-0.205234,5.42479,-1.1329,-0.162589,6.21369,-0.936682,-0.36018,6.21461,-0.94897,-1.01361,6.15668,0.624701,-1.08977,6.18053,0.406884,-0.98177,6.68191,0.580725,-1.07766,6.7143,-0.048989,-0.891727,6.72057,-0.350138,-0.690351,6.7125,-0.562442,-1.07573,6.68357,0.448924,-1.05112,6.81126,0.182972,-0.49182,6.69191,0.952462,-0.711387,6.68813,0.73197,-0.274207,6.67838,1.08612,-0.409713,6.94256,-0.613091,-0.262455,6.99614,-0.616323,-1.01111,6.76316,0.39053,-0.648124,6.89749,-0.49172,-0.9437,6.74439,0.510492,-0.821604,6.87168,-0.309366,-1.07129,6.74567,0.187075,-0.474779,6.66035,0.942653,-0.706244,6.63555,0.753988,-0.267113,6.65146,1.07499,-0.381204,6.8112,-0.676563,-0.243553,6.84275,-0.661705,-1.02779,6.70325,0.40882,-0.65309,6.79298,-0.508038,-0.949824,6.6936,0.530815,-1.0162,6.76215,-0.0324279,-0.836952,6.78329,-0.315113,-0.161363,6.19845,-0.986543,-1.14582,6.20722,-0.244097,-1.06136,6.13777,0.641876,-0.367274,6.19986,-1.00107,-1.14034,6.16307,0.42092,-1.21282,6.19646,0.0476117,-0.709273,6.2048,-0.899131,-0.971039,6.20484,-0.662127,-1.26709,5.0859,-0.286424,-0.997849,6.84066,-0.0323348,-1.00627e-14,6.59227,1.20877,9.01124e-15,6.21157,-0.93585,-2.23373,9.37149,0.338598,-2.35941,9.37771,0.333127,-2.23385,9.58161,0.0976901,-2.35945,9.57305,0.0946675,-2.22117,9.48501,-0.598431,-2.34441,9.49061,-0.610113,-2.23083,9.59821,-0.262936,-2.3549,9.59278,-0.26895,-2.1968,8.54409,0.0998606,-2.33419,8.534,0.0853853,-2.21594,9.21303,-0.781189,-2.34152,9.22654,-0.792372,-2.23149,9.04053,0.403325,-2.35826,9.07305,0.397492,-2.22792,8.46541,-0.407949,-2.35648,8.45283,-0.408505,-2.21863,8.44783,-0.248053,-2.3516,8.44189,-0.254762,-2.22643,8.62966,-0.579279,-2.3548,8.61096,-0.577336,-2.22124,8.90964,-0.686083,-2.34844,8.92102,-0.690678,-2.20598,8.75423,0.245373,-2.34058,8.76794,0.231984,-2.60457,9.58733,-0.268709,-2.60873,8.42076,-0.261646,-2.60049,8.92105,-0.693973,-2.60905,9.56578,0.0916437,-2.59586,9.49384,-0.600038,-2.60008,8.54649,0.0658484,-2.59402,9.23511,-0.789906,-2.60802,8.57212,-0.571043,-2.60905,8.42806,-0.409061,-2.6024,8.80305,0.215583,-2.60905,9.37914,0.32779,-2.60905,9.10036,0.391659,-1.98882,8.48392,-0.248227,-1.89196,8.46702,-0.255008,-1.9418,8.60853,-0.568608,-1.78196,8.58228,-0.569603,-1.98934,9.46772,-0.568116,-1.88039,9.45964,-0.551353,-2.02427,9.60286,-0.254974,-1.94179,9.60144,-0.253026,-1.97919,8.54627,0.0714825,-1.89885,8.54097,0.030426,-1.93552,9.19093,-0.729577,-1.77283,9.17751,-0.714814,-2.02884,9.58476,0.097689,-1.94843,9.58378,0.0978452,-1.9546,8.46815,-0.407949,-1.80985,8.45321,-0.408505,-2.0216,9.34156,0.357759,-1.93779,9.3305,0.362946,-2.00977,8.98858,0.39247,-1.9146,8.96545,0.377458,-1.93787,8.86512,-0.653567,-1.77368,8.84649,-0.651601,-1.9879,8.70721,0.231965,-1.90453,8.66796,0.209837,2.05894,8.57005,0.117433,2.09829,9.47765,-0.584879,2.10676,9.60547,-0.256922,2.10825,9.58872,0.100713,2.09163,9.20236,-0.763438,2.09531,8.88584,-0.674857,2.08566,8.48161,-0.241345,2.09935,8.50216,-0.407392,2.09976,8.63861,-0.572406,2.06993,8.74388,0.268335,2.1053,9.36029,0.35293,2.10379,9.01036,0.412135,2.48504,9.09681,0.391659,2.48504,9.37692,0.32779,2.47507,8.79479,0.219333,2.48363,8.58477,-0.573036,2.48504,8.43115,-0.409061,2.48457,8.42307,-0.26147,2.47682,8.92267,-0.689248,2.46824,9.23494,-0.797659,2.48505,9.56622,0.0916448,2.47897,9.59016,-0.274964,2.46795,9.49763,-0.620191,2.47158,8.53765,0.07091,-1.20097e-09,9.17002,-0.871893,-8.88178e-16,8.25647,-0.865325,-7.41921e-10,8.0029,1.07248,-8.38191e-10,8.98812,-0.942948,-1.37447e-09,9.05867,0.802701,-8.88178e-16,8.48441,-0.907443,-3.68277e-09,9.23205,0.622448,-6.76077e-10,9.47258,-0.688676,-1.04838e-09,9.35025,-0.752065,0.618597,9.21616,0.655142,1.09254,9.63558,0.199241,1.05371,9.52471,0.347742,0.0906458,9.17252,-0.838391,0.922976,9.55129,-0.423603,1.18876,9.61026,-0.490904,0.169381,9.01186,0.862073,1.24826,9.32032,0.483796,1.37013,9.56234,0.335526,0.718483,9.13784,0.745622,0.850847,8.51603,1.00426,0.22855,8.41494,1.08291,-6.35154e-10,8.40235,1.05394,0.262885,8.01715,1.07267,0.864353,8.16147,0.972893,0.92076,7.94654,0.843309,0.252318,7.80842,1.0226,0.265432,7.1721,0.998005,0.728284,7.18612,0.722623,1.30488,8.16219,0.465497,1.32706,8.11728,0.146963,0.200992,8.25777,-0.888076,0.316013,7.74242,-0.717755,0.948509,7.24015,0.456993,1.00503,7.25226,0.209026,1.19241,7.89059,0.504508,1.17143,7.84008,0.182274,0.471197,9.31293,0.505497,0.861986,9.55216,0.180824,0.604638,9.36104,-0.621001,0.103068,8.71073,-0.944721,0.797872,9.30228,-0.675607,0.88092,9.34697,0.479899,1.10168,9.16654,0.605672,0.69891,9.45723,0.314126,1.1424,8.61768,0.793672,1.27056,8.53547,0.654985,1.04553,8.35566,0.872794,1.1406,8.26092,0.743623,1.00606,9.68638,-0.251181,1.28303,9.73166,-0.22218,1.06072,8.76975,-0.815829,1.21818,8.9126,-0.769601,0.852679,9.42988,-0.559455,1.3905,9.17398,-0.724091,0.889176,9.01608,-0.812752,0.999182,9.21922,-0.74199,1.05691,9.3772,-0.646555,1.07229,9.74688,-0.0190131,1.37129,9.74182,0.0165573,0.507836,9.17665,-0.816529,0.367471,9.16778,-0.821654,0.745335,8.88067,-0.9204,0.477007,8.78956,-0.966174,0.606028,8.42124,-0.930858,0.860672,8.63326,-0.914979,0.982482,8.30248,-0.798095,0.758455,8.00985,-0.811834,0.714566,9.17224,-0.763963,0.873829,7.68193,-0.49337,1.04316,8.03528,-0.465609,1.12593,7.81484,-0.104985,1.01567,7.52358,-0.0865537,1.05949,7.50266,0.19325,0.234837,7.49952,0.965813,0.828629,7.55758,0.713552,1.01447,7.53504,0.477333,-4.18777e-15,7.49655,0.975803,0.559309,9.27079,-0.734196,0.182087,9.08699,0.785045,0.45559,9.06154,0.806098,0.558247,8.45665,1.04947,0.56777,8.06453,1.0451,0.567862,7.85681,0.965143,0.484936,7.18898,0.906272,0.515032,7.53017,0.891048,0.403789,9.14058,0.727263,0.783121,9.29154,0.550171,0.954559,9.14327,0.720381,0.608269,9.39758,0.402321,1.01094,8.59025,0.913065,0.607378,9.07176,-0.86116,0.398363,9.00024,-0.909699,0.0887395,8.98237,-0.90744,0.232527,8.21765,1.11596,0.863969,8.33394,1.01853,-4.45956e-10,8.2074,1.09795,0.56358,8.26013,1.07643,0.992909,8.44226,0.932308,1.19979,8.24159,-0.417019,1.21638,8.10159,-0.128938,1.38987,8.43047,0.417023,1.46463,8.37332,0.141409,1.39627,8.33312,-0.119721,1.34001,8.35168,-0.373651,1.16026,8.48528,-0.694675,1.3072,8.55617,-0.64236,0.20758,8.68362,1.03038,0.839249,8.74289,0.960703,-4.42818e-10,8.67329,0.996979,1.14759,8.81277,0.709865,1.3092,8.76886,0.568811,0.537619,8.69624,0.987843,1.0327,8.803,0.84225,1.5876,8.65186,0.253153,1.43932,8.67641,0.3971,1.54885,8.49739,-0.292294,1.6003,8.51595,-0.0509229,1.45176,8.58162,-0.594108,0.815225,7.41915,-0.443015,0.970838,7.30016,-0.0672741,0.610025,7.70142,-0.680558,1.69621,9.61649,-0.254011,1.50167,9.47893,-0.560166,1.70901,9.43589,0.377568,1.7465,9.61705,0.0812753,0.258205,7.91397,1.05016,0.898415,8.06171,0.910976,-6.88693e-10,7.89839,1.05546,0.990808,9.44559,0.406973,1.17979,9.21309,0.549524,0.801039,9.51348,0.238317,1.20544,8.58174,0.723446,1.09552,8.31258,0.80783,0.22636,9.15867,-0.824132,0.257731,8.73454,-0.998635,0.371786,8.32256,-0.94746,0.574213,7.96376,1.01037,0.245345,8.98247,-0.908579,1.23275,8.79765,0.638089,0.522385,7.41134,-0.611081,0.798038,7.18603,-0.370506,0.971148,7.09784,-0.0471689,0.960401,6.98901,0.470768,0.935818,8.45668,-0.852145,0.698927,8.18901,-0.865266,1.10419,8.64118,-0.749018,1.27293,8.71021,-0.703803,1.42062,8.82416,-0.674693,0.504542,7.97065,-0.799103,1.01471,8.17649,-0.656909,0.819289,7.84342,-0.648312,1.18726,8.35591,-0.575959,1.32451,8.43518,-0.509965,1.53579,8.46618,-0.421397,0.705493,7.55552,-0.563379,0.65491,7.28619,-0.530877,0.177838,8.88435,0.967381,0.82788,8.95955,0.880941,1.13439,9.01736,0.651603,1.28256,8.98719,0.516389,0.513964,8.89403,0.915619,1.00399,9.00809,0.781245,1.64145,8.96327,0.368933,1.41351,8.95905,0.375316,1.21024,9.00673,0.584812,1.81993,8.95177,0.360869,1.85467,9.32555,0.3659,1.82011,8.64204,0.202237,1.61943,8.58434,-0.575143,1.66481,8.48348,-0.409546,1.79511,8.48038,-0.261805,1.60846,8.82187,-0.652062,1.608,9.16564,-0.705058,1.86654,9.58749,0.10279,1.8593,9.60172,-0.251078,1.77095,9.45245,-0.535592,1.82121,8.54297,-0.0260319,0.970252,8.90029,-0.813846,1.11807,9.05514,-0.758393,1.22002,9.28452,-0.692597,0.802856,8.75936,-0.919906,0.536914,8.60508,-0.952896,0.145288,8.48292,-0.92326,1.49932,8.66958,0.319192,1.43378,9.6893,-0.25012,1.33299,9.55011,-0.529988,1.56116,9.69332,0.0300363,1.54408,9.52013,0.3618,1.43457,8.39928,0.280311,1.32032,8.12928,0.306118,1.18604,7.86996,0.340799,1.0362,7.51748,0.331735,0.974182,7.24445,0.330853,0.310687,8.52797,-0.978733,1.51523,8.95676,0.372896,0.851851,9.67307,-0.0437344,0.866859,9.58929,0.110889,0.733266,9.53676,-0.348152,0.799932,9.61766,-0.208885,0.151626,9.31552,0.460271,0.314217,9.4015,0.486048,0.637388,9.50151,0.042743,0.669475,9.54344,-0.0607849,0.630327,9.53866,-0.171552,0.571138,9.52347,-0.30568,0.479333,9.47108,0.312565,0.139752,9.2423,0.609396,0.329472,9.26354,0.562307,0.10844,9.44769,-0.669188,0.399588,9.42619,-0.488904,0.243613,9.46107,-0.596024,0.503418,9.47536,-0.406336,0.664017,9.45742,-0.481642,0.246828,9.32886,-0.71279,0.374307,9.33519,-0.673419,0.0977115,9.33731,-0.735932,0.398998,9.43408,0.393864,0.598211,9.49595,0.108608,0.56077,9.48735,0.174045,0.532305,9.48402,0.223316,1.71937,8.96306,0.369122,1.78471,9.37463,0.371941,1.70738,8.65331,0.216071,1.53408,8.58232,-0.5865,1.59986,8.47613,-0.41578,1.67366,8.49146,-0.2774,1.5126,8.82016,-0.665839,1.49742,9.16811,-0.715766,1.80434,9.60384,0.0928304,1.78273,9.60801,-0.251324,1.63496,9.46452,-0.547151,1.71726,8.5248,-0.0302415,0.367577,6.70699,-0.785996,1.13219,6.71618,0.192697,0.732011,6.61523,0.781144,0.487225,6.64342,1.00061,0.271903,6.63544,1.12986,1.02254,7.05858,0.160365,0.506697,6.91513,0.913512,0.731084,6.90726,0.706487,0.303206,6.89754,1.02826,0.8025,7.02448,-0.307462,1.03283,6.91368,0.172281,0.977618,6.97039,-0.0397057,0.496861,6.74064,0.928604,0.708718,6.73924,0.714857,0.277676,6.72203,1.07149,0.952463,6.82124,0.482546,0.466521,7.19184,-0.500415,0.294004,7.29163,-0.538483,0.224773,6.71501,-0.756213,6.74064e-15,6.66814,-0.683338,0.227926,6.66473,-0.708539,0.272078,6.60231,1.11593,0.486071,6.60906,0.982563,0.715166,6.6132,0.7565,0.929331,6.62044,0.572599,1.02334,6.68109,-0.0259075,1.0766,6.67381,0.19997,0.346767,6.66372,-0.745008,0.845289,6.68373,-0.315271,0.647233,7.08678,-0.469545,0.655507,6.69252,-0.525745,0.999533,7.02082,0.348442,1.00217,6.85347,0.362794,1.02232,6.64105,0.434575,0.681695,6.22055,-0.855183,0.926205,6.21985,-0.638132,1.16124,6.21119,0.050662,1.09325,6.22234,-0.229896,0.726963,6.12999,0.87296,0.461095,6.13849,1.08957,0.255237,6.13625,1.21081,-7.71965e-15,6.13355,1.25585,0.178541,5.73657,-1.08288,1.17804,5.67567,0.610916,1.26503,5.73984,-0.232151,1.30224,5.73446,0.0217269,0.397678,5.72853,-1.13379,1.06841,5.7395,-0.658196,0.765679,5.71977,-1.01185,1.24897,5.697,0.36991,1.36071,5.11135,0.313643,0.853828,5.11714,-1.02233,1.08837,5.09765,-0.704467,0.446578,5.11554,-1.23537,1.35993,5.09839,0.0273816,1.28329,5.06251,0.492917,0.233533,5.11976,-1.14972,1.32009,5.42961,0.349206,1.35631,5.42242,0.01696,1.23934,5.40271,0.572962,1.08942,5.41713,-0.688869,0.81134,5.41502,-1.03399,0.421292,5.41853,-1.20187,1.28358,5.41015,-0.258139,0.205234,5.42479,-1.1329,4.11304e-15,5.42448,-1.07731,0.162589,6.21369,-0.936682,0.36018,6.21461,-0.94897,1.01361,6.15668,0.624701,1.08977,6.18053,0.406884,6.9796e-15,6.71463,-0.733891,0.98177,6.68191,0.580725,1.07766,6.7143,-0.048989,0.891727,6.72057,-0.350138,0.690351,6.7125,-0.562442,1.07573,6.68357,0.448924,1.05112,6.81126,0.182972,0.49182,6.69191,0.952462,0.711387,6.68813,0.73197,0.274207,6.67838,1.08612,0.409713,6.94256,-0.613091,0.262455,6.99614,-0.616323,1.01111,6.76316,0.39053,0.648124,6.89749,-0.49172,0.9437,6.74439,0.510492,0.821604,6.87168,-0.309366,1.07129,6.74567,0.187075,0.474779,6.66035,0.942653,0.706244,6.63555,0.753988,0.267113,6.65146,1.07499,0.381204,6.8112,-0.676563,0.243553,6.84275,-0.661705,1.02779,6.70325,0.40882,0.65309,6.79298,-0.508038,0.949824,6.6936,0.530815,1.0162,6.76215,-0.0324279,0.836952,6.78329,-0.315113,0.161363,6.19845,-0.986543,1.14582,6.20722,-0.244097,1.06136,6.13777,0.641876,0.367274,6.19986,-1.00107,1.14034,6.16307,0.42092,1.21282,6.19646,0.0476117,0.709273,6.2048,-0.899131,0.971039,6.20484,-0.662127,1.26709,5.0859,-0.286424,0.997849,6.84066,-0.0323348,-9.36183e-15,6.62819,1.20255,-9.35666e-15,6.89382,1.09201,-8.92507e-15,6.71781,1.14328,1.10043e-16,7.27995,-0.576382,6.33792e-15,5.72635,-1.04813,4.74728e-15,5.12952,-1.07245,-8.88199e-15,6.673,1.15264,3.88569e-15,6.99212,-0.623633,-9.13107e-15,6.64662,1.13908,4.22107e-15,6.84201,-0.653509,1.00257e-14,6.19514,-0.985807,2.23373,9.37149,0.338598,2.35941,9.37771,0.333127,2.23385,9.58161,0.0976901,2.35945,9.57305,0.0946674,2.22117,9.48501,-0.598431,2.34441,9.49061,-0.610113,2.23083,9.59821,-0.262936,2.3549,9.59278,-0.26895,2.1968,8.5441,0.0998605,2.33419,8.534,0.0853853,2.21594,9.21303,-0.781189,2.34152,9.22654,-0.792372,2.23149,9.04053,0.403325,2.35826,9.07306,0.397492,2.22792,8.46541,-0.407949,2.35648,8.45284,-0.408505,2.21863,8.44783,-0.248053,2.3516,8.44189,-0.254762,2.22643,8.62966,-0.579279,2.3548,8.61096,-0.577336,2.22124,8.90964,-0.686083,2.34844,8.92102,-0.690678,2.20598,8.75423,0.245373,2.34058,8.76794,0.231984,2.60457,9.58733,-0.268709,2.60873,8.42076,-0.261646,2.60049,8.92105,-0.693973,2.60905,9.56578,0.0916436,2.59586,9.49384,-0.600038,2.60008,8.54649,0.0658483,2.59402,9.23511,-0.789906,2.60802,8.57212,-0.571043,2.60905,8.42806,-0.409061,2.6024,8.80305,0.215583,2.60905,9.37915,0.327789,2.60905,9.10036,0.391659,1.98882,8.48392,-0.248227,1.89196,8.46702,-0.255008,1.9418,8.60853,-0.568608,1.78196,8.58228,-0.569603,1.98934,9.46773,-0.568116,1.88039,9.45964,-0.551353,2.02427,9.60286,-0.254974,1.94179,9.60144,-0.253026,1.97919,8.54627,0.0714825,1.89885,8.54097,0.030426,1.93552,9.19093,-0.729577,1.77283,9.17751,-0.714814,2.02884,9.58476,0.0976889,1.94843,9.58378,0.0978452,1.9546,8.46815,-0.407949,1.80985,8.45321,-0.408505,2.0216,9.34156,0.357759,1.93779,9.3305,0.362946,2.00977,8.98858,0.39247,1.9146,8.96545,0.377458,1.93787,8.86512,-0.653567,1.77368,8.84649,-0.651601,1.9879,8.70721,0.231965,1.90453,8.66796,0.209837,-0.931365,6.60925,0.573856,-0.656139,6.68113,-0.533694,-0.485468,6.59771,0.985639,-0.271671,6.59106,1.11723,-1.02395,6.62993,0.433906,-0.347091,6.65289,-0.74993,-1.07865,6.66265,0.196367,-1.02503,6.67002,-0.0308296,-0.715451,6.60154,0.759311,-0.847241,6.67254,-0.323061,-0.226349,6.65385,-0.714044,0.931365,6.60925,0.573856,0.656139,6.68113,-0.533694,0.485468,6.59771,0.985639,0.271671,6.59106,1.11723,1.02395,6.62993,0.433906,0.347091,6.65289,-0.74993,1.07865,6.66265,0.196367,1.02503,6.67002,-0.0308296,0.715451,6.60154,0.759311,0.847241,6.67254,-0.323061,0.226349,6.65385,-0.714044,5.86747e-15,6.65712,-0.689431,-7.17864e-15,6.5812,1.20915,-1.01152,6.16816,0.623411,-0.681047,6.23223,-0.847026,-0.461713,6.15015,1.08677,-0.255654,6.14779,1.20851,-1.0881,6.19193,0.40757,-0.359848,6.22573,-0.94392,-1.15915,6.22265,0.0543588,-1.09152,6.2337,-0.224846,-0.726671,6.14196,0.870076,-0.924201,6.23134,-0.630138,-0.164207,6.22486,-0.931033,1.01152,6.16816,0.623411,0.681047,6.23223,-0.847026,0.461713,6.15015,1.08677,0.255654,6.14779,1.20851,1.0881,6.19193,0.40757,0.359848,6.22573,-0.94392,1.15915,6.22265,0.0543588,1.09152,6.2337,-0.224846,0.726671,6.14196,0.870076,0.924201,6.23134,-0.630138,0.164207,6.22486,-0.931033,9.22271e-15,6.22287,-0.929598,-7.43932e-15,6.14491,1.25392,-0.00079876,9.20369,-0.952232,0.110415,9.20476,-0.941415,0.170982,8.34011,-1.11114,0.680396,9.46887,-0.766509,0.123656,8.73339,-1.08355,0.821324,9.32095,-0.86592,0.927493,8.64377,-0.997871,1.05366,8.78855,-0.946924,0.893843,9.47686,-0.746422,1.19251,8.96017,-0.890161,0.804801,8.9928,-0.972846,0.933813,9.14568,-0.931299,1.03434,9.3284,-0.856747,0.499207,9.19367,-0.92603,0.384956,9.20593,-0.9375,0.629831,8.86297,-1.02243,0.450522,8.78759,-1.05682,0.586384,8.4291,-1.07028,0.784301,8.51491,-1.05216,0.699268,9.17322,-0.927875,0.582527,9.31737,-0.865289,0.566969,9.05805,-0.990182,0.396552,9.00199,-1.00243,0.109946,8.9849,-1.02042,0.245002,9.20505,-0.933132,0.27482,8.7497,-1.06596,0.36915,8.37405,-1.08551,0.240044,8.9849,-1.00861,0.871547,8.828,-0.996039,0.997043,8.95811,-0.951943,1.14048,9.12084,-0.887402,0.70099,8.6835,-1.04348,0.525557,8.58812,-1.07396,0.149755,8.50507,-1.11453,0.328565,8.54726,-1.08896,0.605694,9.63223,-0.466861,0.294361,9.53559,-0.685965,0.457827,9.56855,-0.602733,0.12819,9.53043,-0.722264,0.137541,9.49879,-0.755275,0.513855,9.55303,-0.647673,0.334338,9.51679,-0.710329,0.642864,9.6118,-0.580928,0.743575,9.57224,-0.651023,0.290947,9.40695,-0.806906,0.455937,9.39862,-0.807285,0.131849,9.39301,-0.831094,0.127483,9.54955,-0.728612,0.291584,9.55247,-0.691916,0.6015,9.6469,-0.472186,0.45473,9.58416,-0.607544,1.25033,4.96474,1.02898,0.877237,4.62352,1.3875,0.891178,4.6347,1.37495,1.2456,4.9399,1.04456,1.12633,5.66778,1.0149,0.75172,5.46538,1.46281,0.736256,5.4606,1.47931,1.24077,4.9552,1.04209,0.888548,4.65291,1.37226,1.2454,4.97991,1.02652,0.87469,4.64184,1.3848,0.827886,6.60746,0.875119,0.506001,6.60736,1.16291,0.491997,6.60361,1.17681,0.817116,6.59997,0.896015,1.05947,6.62574,0.564463,0.825834,6.60367,0.880266,1.04986,6.62059,0.582814,1.2783,4.90092,1.12836,1.56943,5.20454,0.67757,1.28856,4.91162,1.11247,1.55763,5.19223,0.695855,1.17182,5.64865,1.15767,1.50002,5.86362,0.682478,1.18442,5.65406,1.14147,1.48897,5.85018,0.702933,1.56427,5.1777,0.698759,1.29337,4.89406,1.11628,1.28304,4.88325,1.13219,1.57616,5.19015,0.680435,1.68882,5.46584,0.181691,1.63895,5.21169,0.744793,1.6395,5.22077,0.724939,1.67102,5.45718,0.204351,1.55801,5.87868,0.736724,1.5398,6.04746,0.168506,1.55219,5.87345,0.755003,1.66184,5.47054,0.203425,1.63113,5.23712,0.722077,1.67961,5.47907,0.180849,1.63061,5.22815,0.741858,1.07221,6.62836,0.564614,1.15849,6.68783,0.10321,1.06936,6.62285,0.580096,1.17685,6.69609,0.0816336,0.951408,6.67944,-0.324539,1.16828,6.70077,0.0739547,0.960667,6.68182,-0.308288,1.74615,5.5146,0.190843,1.47843,5.59385,-0.308831,1.73672,5.51739,0.173237,1.48929,5.59064,-0.288563,1.6003,6.06615,0.170243,1.35431,6.06153,-0.315273,1.59291,6.06423,0.153119,1.36708,6.05788,-0.295615,1.49723,5.57783,-0.288321,1.74503,5.50255,0.176167,1.75448,5.49968,0.193876,1.48635,5.58113,-0.308707,0.819472,6.28741,0.932342,0.501447,6.15795,1.25212,0.826,6.30916,0.916876,0.488884,6.15533,1.26409,1.11805,5.68681,1.01028,0.745716,5.48644,1.45784,0.730356,5.4817,1.47434,0.937882,6.11333,0.922594,1.1781,6.28319,0.507031,0.947031,6.11749,0.908223,1.16985,6.27234,0.524478,1.1634,5.67108,1.15104,1.4892,5.88327,0.676562,1.1759,5.67644,1.13485,1.47819,5.87006,0.696959,1.24736,6.33482,0.0944334,1.22942,6.22334,0.550693,1.25882,6.34231,0.07431,1.22831,6.22066,0.567996,1.51542,6.04529,0.184462,1.55094,5.89146,0.734093,1.53165,6.05848,0.166709,1.54517,5.88626,0.752343,1.28375,6.3669,0.0582388,1.04292,6.3498,-0.348212,1.27612,6.36469,0.044025,1.05455,6.34699,-0.33149,1.58265,6.09013,0.167558,1.33665,6.0831,-0.314151,1.57522,6.08818,0.150568,1.34932,6.07969,-0.294646,0.868343,6.3446,0.863753,0.503776,6.20361,1.25413,0.489193,6.19821,1.26862,1.11758,5.66097,1.03834,0.815896,6.60246,0.890225,1.10739,5.67964,1.03214,0.853386,6.33849,0.879719,0.910362,6.13553,1.02353,1.19444,6.2545,0.620513,0.920967,6.14006,1.00756,1.18412,6.24533,0.639886,1.52347,6.03414,0.186272,1.14809,6.68129,0.120245,1.28308,6.22276,0.648709,1.31658,6.336,0.134315,1.27877,6.2174,0.665575,1.30326,6.32613,0.151709,1.36006,6.39311,0.134204,1.114,6.35514,-0.300004,1.35183,6.39447,0.122144,1.12546,6.35462,-0.282431,0.499423,6.20379,1.35803,0.268936,5.35218,1.3434,0.0646213,4.90934,1.17005,0.120561,5.02152,1.11971,0.218392,6.19625,1.46693,0.509744,5.80987,1.4208,0.198819,5.80294,1.52383,0.147569,5.38177,1.49517,0.0444574,4.58788,-0.0197704,0.0722725,4.4032,-0.00955448,0.293725,4.62057,-0.398998,0.302145,4.43853,-0.392149,0.606163,4.88381,0.929928,0.635438,4.72223,0.872027,0.199632,4.71973,0.76073,0.223388,4.54895,0.720406,0.0543837,4.62354,0.380688,0.0846645,4.46278,0.37462,0.204422,4.07157,0.074744,0.164837,4.24889,0.0489647,0.188476,4.09036,0.361041,0.160319,4.26425,0.364965,0.308082,4.04819,-0.232104,0.277003,4.22296,-0.293455,0.462387,4.13957,0.806038,0.440977,4.3103,0.804237,0.291547,4.11259,0.652618,0.270885,4.27826,0.667174,0.399681,4.82931,0.899179,0.429243,4.65907,0.872248,0.680171,4.18541,0.77273,0.661525,4.33198,0.796903,0.3487,4.62409,-0.434135,0.357184,4.44208,-0.427301,0.373046,4.04185,-0.283085,0.341966,4.21662,-0.344436,0.582336,1.90616,-0.44386,0.590163,1.72859,-0.40078,0.495096,2.60839,-0.433261,0.473149,2.74853,-0.412047,0.578025,2.63147,0.586306,0.592278,2.79903,0.622303,0.449951,2.64686,0.513139,0.483379,2.46384,0.520976,0.624026,2.79959,0.618494,0.645615,2.61212,0.625388,0.522034,1.91882,-0.385586,0.519019,1.74218,-0.330723,0.352407,2.38746,0.273148,0.397992,2.19527,0.285345,0.335365,2.11818,-0.0375792,0.365057,1.92326,-0.00555976,0.312757,2.58601,0.138641,0.288356,2.72218,0.144872,0.431228,2.61782,0.454169,0.407343,2.74112,0.50524,0.456637,2.60399,-0.394551,0.434497,2.74265,-0.37321,0.350283,2.5908,-0.150365,0.323977,2.72632,-0.13475,0.366183,1.8064,-0.112716,0.435951,1.66305,-0.18443,0.453147,1.89489,-0.308375,0.501964,1.73145,-0.360659,0.541821,1.70995,0.47196,0.543616,1.56686,0.436717,0.376836,1.69303,0.213406,0.384128,1.56759,0.096269,0.715472,1.73794,0.614496,0.698905,1.56777,0.579624,0.490905,1.94014,-0.384198,0.547458,1.78292,-0.446229,0.429385,4.85199,1.03074,0.725963,5.04707,1.08353,1.0785,5.37978,0.933946,1.36058,5.54079,0.583187,1.02869,3.98086,0.657097,1.39224,4.00945,0.250249,0.50332,3.88588,0.852239,0.744606,3.92793,0.825235,1.05315,4.60377,0.747587,1.31093,4.68073,0.435861,0.466874,4.3484,0.876012,0.738292,4.44843,0.87528,1.30829,5.80494,0.583008,1.08368,5.63191,0.937578,0.725161,5.23373,1.13612,0.413324,4.99181,1.07694,1.25428,5.46743,0.759061,1.16755,4.00075,0.454234,1.21081,4.64246,0.597919,1.20544,5.72585,0.761699,1.32132,3.92324,-0.0452496,1.42302,5.19948,-0.100099,0.190716,3.90931,-0.127151,0.138593,4.82539,-0.335386,1.16511,3.98957,-0.292657,0.846592,4.946,-0.589549,0.6091,4.88499,-0.596224,0.324149,4.83646,-0.524914,1.22295,5.0603,-0.361775,0.797646,4.00471,-0.45982,0.344533,3.95459,-0.299691,0.558956,3.99392,-0.419747,1.26115,4.74756,-0.251257,1.26115,4.95802,-0.268192,1.22132,5.0284,0.565756,1.21111,4.8389,0.541027,1.3184,4.78197,-0.0142018,1.31104,4.82193,0.270942,1.3184,4.98789,-0.0221026,1.31104,5.01842,0.281784,1.22359,4.83678,0.507288,1.23252,5.02716,0.530283,1.26135,5.0285,0.530283,1.25242,4.83774,0.507288,1.34792,5.01495,0.281065,1.4202,4.95673,-0.0254527,1.34792,4.8157,0.270071,1.4202,4.75018,-0.0175519,1.23994,4.83953,0.541027,1.25015,5.02936,0.565756,1.34269,4.9823,0.10295,1.34269,4.7786,0.102925,1.37213,4.75022,0.176607,1.37213,5.04679,0.174201,1.37736,4.76061,0.260651,1.37736,5.05284,0.266223,1.20446,5.04681,0.17237,1.19325,5.05158,0.263933,1.22532,4.7505,0.174188,1.21419,4.75934,0.25787,1.36023,4.76049,0.260392,1.35618,4.75025,0.176382,1.35003,5.04679,0.173976,1.35384,5.05268,0.265942,1.37438,4.47863,0.251982,1.36838,4.48595,0.160235,1.34052,4.19309,0.122308,1.34711,4.19112,0.206757,1.20188,4.2066,0.208811,1.21053,4.20822,0.124388,1.21471,4.4957,0.255018,1.22377,4.5024,0.163339,1.39776,4.47612,0.251523,1.36414,4.1893,0.206478,1.39034,4.48345,0.159745,1.35636,4.19126,0.122014,1.32919,4.23262,0.0538649,1.35252,4.43311,0.0814129,1.45044,4.19083,-0.0391414,1.34138,4.2455,0.224207,1.474,4.39521,-0.0190261,1.36442,4.44006,0.262045,1.17187,4.26709,0.458369,1.20264,4.45613,0.476149,1.17385,4.45801,0.477113,1.14313,4.26935,0.459323,1.3282,4.44749,0.264415,1.30062,4.46153,-0.0400316,1.30547,4.25561,0.227101,1.27713,4.25778,-0.0600609,1.25708,4.46967,-0.18908,1.19814,4.267,-0.194724,0.59087,9.31707,0.780982,0.975657,9.40122,0.649788,0.178412,9.1013,1.02887,1.12511,9.21987,0.777692,0.672408,9.1871,0.907806,0.879266,8.5229,1.10949,0.205575,8.45756,1.32372,0.245447,8.05611,1.30867,0.907052,8.124,1.07087,0.995036,7.88309,0.923886,0.233134,7.88313,1.29375,0.238394,7.44382,1.37362,0.898735,7.21664,0.940536,1.38974,8.09608,0.41755,1.13471,7.19123,0.556943,1.15017,7.25744,0.063476,1.31053,7.81961,0.540716,1.2767,7.78147,0.0252519,0.502287,9.50766,0.665323,0.839546,9.52555,0.566444,0.864415,9.36822,0.707973,0.988083,9.2315,0.834762,0.740764,9.52079,0.607061,1.2047,8.54104,0.93856,1.37559,8.42643,0.729743,1.11353,8.30117,0.949475,1.21507,8.19091,0.786984,0.909937,8.19784,-0.928899,0.817802,8.00145,-0.89299,0.958795,7.66587,-0.551799,1.12571,7.86685,-0.490467,1.20993,7.80075,-0.229638,1.08717,7.53779,-0.228871,1.15867,7.48191,0.0434332,0.200032,7.6738,1.28343,0.934561,7.51216,0.8044,1.15427,7.47509,0.529141,0.193369,9.21212,0.957453,0.43263,9.1549,0.927797,0.547534,8.48582,1.20432,0.576955,8.05165,1.20399,0.599787,7.84668,1.12325,0.543666,7.30867,1.17307,0.553912,7.57348,1.06614,0.397439,9.26676,0.842158,0.753483,9.3466,0.738413,0.857684,9.21958,0.877431,0.643793,9.51818,0.634965,0.216757,8.24749,1.35328,0.900649,8.31823,1.12305,0.560121,8.26653,1.23379,1.05149,8.41163,1.0203,1.45777,8.23468,0.402283,0.186252,8.74835,1.27128,0.852379,8.76402,1.08877,1.17055,8.74578,0.960714,1.30096,8.68131,0.865188,0.520143,8.74765,1.1399,1.05464,8.7848,1.04681,0.945732,7.39888,-0.516642,1.07401,7.31324,-0.215062,0.700664,7.67601,-0.79159,1.16622,6.93132,-0.260588,0.826563,7.01239,-0.545932,1.31307,6.84663,0.148804,1.2613,6.89241,-0.0710742,1.3349,6.60681,0.772069,1.10794,6.4845,1.22683,0.699047,6.61087,1.47556,0.320833,6.81869,1.55225,0.240498,7.96804,1.2987,0.954252,8.01004,0.997964,0.930759,9.39004,0.672431,1.07706,9.22383,0.80643,0.79884,9.52422,0.576475,1.27971,8.47658,0.864396,1.16543,8.24462,0.867181,0.594819,7.94705,1.16782,1.24365,8.70737,0.920553,0.703141,7.41564,-0.663405,0.969368,7.19475,-0.394569,1.18478,7.08871,0.0917449,1.08706,7.13503,-0.151225,0.560498,7.06125,1.22961,0.934993,6.99261,1.01244,0.267376,7.22903,1.39312,1.17711,6.99923,0.618257,1.05774,7.06568,-0.297569,1.2319,6.98787,0.129224,1.17761,7.02504,-0.104756,0.639062,6.84012,1.31989,1.04642,6.69813,1.1118,0.292941,7.04109,1.44131,1.29848,6.83092,0.689394,0.790782,7.19468,-0.56465,0.321855,6.57238,1.51538,0.710574,6.33621,1.42924,1.0759,6.24974,1.21848,1.3154,6.38668,0.82238,1.2518,6.73739,-0.0526351,1.33274,6.67645,0.172437,0.965045,6.79898,-0.659187,1.16145,6.76823,-0.24826,1.0402,8.04031,-0.725703,0.887699,7.83016,-0.720408,0.813586,7.53556,-0.661134,1.0209,6.95991,-0.448313,0.838444,7.29121,-0.569719,0.926177,7.11983,-0.477516,1.07452,6.81925,-0.437895,0.173445,8.96122,1.15467,0.774099,8.99148,1.02389,1.09957,8.97056,0.948887,1.23043,8.92922,0.887784,0.493793,8.9681,1.05204,0.965995,9.00804,0.985898,1.17982,8.94411,0.923428,1.35555,6.76253,0.450005,1.31566,7.79585,0.286169,1.17631,7.46502,0.297415,1.16083,7.21808,0.321872,1.19333,7.05459,0.359919,1.26287,6.93962,0.413147,1.34476,6.55454,0.464748,0.159492,9.41359,0.745023,0.342696,9.49027,0.689146,0.675147,7.64167,-0.722921,0.915877,7.37232,-0.455065,1.10358,7.2298,0.0771934,1.02469,7.28742,-0.180088,0.518864,7.25655,1.14181,0.854859,7.17429,0.910439,0.230755,7.39005,1.32832,1.08356,7.16112,0.546589,0.791081,7.50321,-0.600448,1.10716,7.18688,0.321011,0.959971,7.17386,-0.333773,1.15382,7.06434,0.109545,1.06877,7.1128,-0.115166,0.545908,7.00318,1.20819,0.937342,6.91266,1.00982,0.255208,7.1745,1.35712,1.1692,6.96174,0.613631,0.711382,7.38666,-0.571905,0.847845,7.2667,-0.496213,1.1715,7.02463,0.364214,1.05939,7.03105,-0.252805,1.21746,6.95149,0.143825,1.17433,6.98884,-0.0666063,0.629174,6.76969,1.32405,1.02836,6.6315,1.10665,0.282022,6.97429,1.42014,1.28022,6.76248,0.687934,0.792862,7.13732,-0.519086,0.936811,7.0869,-0.412607,1.24864,6.89149,0.408689,0.841249,6.96322,-0.529245,1.08359,6.4402,1.20862,1.30226,6.55834,0.760303,0.308085,6.77537,1.5221,0.677455,6.56105,1.44783,1.28178,6.8088,0.159271,1.22904,6.86257,-0.0494058,1.14139,6.90272,-0.2336,1.00929,6.93804,-0.436165,1.32308,6.7156,0.434031,0.96489,6.88944,-0.662043,1.12124,6.29905,1.26301,1.36376,6.4354,0.856044,0.328864,6.61567,1.5711,0.739449,6.38407,1.48289,1.37222,6.71032,0.16355,1.28809,6.77344,-0.0766489,1.19466,6.81476,-0.280234,1.10215,6.86125,-0.47201,1.39558,6.59706,0.482024,0.233633,7.47132,1.36164,0.906589,7.25042,0.924419,1.13717,7.22168,0.551769,1.14979,7.28492,0.0607913,0.545114,7.33975,1.15959,1.07471,7.3409,-0.217797,0.943895,7.43034,-0.522548,0.709137,7.71498,-0.806462,0.817573,7.57032,-0.67045,1.16242,7.24767,0.318401,0.696672,7.44916,-0.673081,0.956683,7.22082,-0.405539,1.17125,7.10969,0.0882902,1.07284,7.15761,-0.156917,0.55161,7.09071,1.21451,0.908883,7.03001,0.990166,0.261818,7.25295,1.38103,1.15249,7.02355,0.603724,0.828717,7.32241,-0.574991,1.17429,7.07319,0.351326,1.03406,7.08481,-0.306851,1.21856,7.00233,0.124455,1.15209,7.04061,-0.109213,0.620687,6.87204,1.29827,1.02922,6.73386,1.0897,0.284266,7.0652,1.42421,1.27957,6.85841,0.678488,0.783486,7.2316,-0.570055,0.909019,7.15094,-0.47834,1.24925,6.95828,0.405289,1.1496,6.94082,-0.261502,1.30286,6.85874,0.147486,1.25242,6.90274,-0.0705539,0.691807,6.62713,1.45406,1.09964,6.49994,1.21258,0.316649,6.83528,1.53663,1.32979,6.62377,0.764289,0.822843,7.03559,-0.535506,1.01531,6.97267,-0.436458,1.34485,6.77673,0.447066,0.962371,6.90355,-0.654128,1.12068,6.31348,1.26457,1.35781,6.44736,0.849536,0.325411,6.63083,1.56843,0.737402,6.40205,1.48726,1.36482,6.71787,0.162345,1.28265,6.78178,-0.0757,1.19108,6.82549,-0.277918,1.09924,6.8705,-0.466266,1.39188,6.60734,0.479457,0.0558476,9.06589,1.07596,0.0241488,8.45041,1.41067,0.0385714,7.89495,1.3594,0.0399887,7.50822,1.43541,0.0380603,8.06368,1.37764,0.0335346,7.70347,1.36272,0.0602664,9.16291,1.01615,0.029935,8.24878,1.41519,0.0232522,8.74402,1.34334,0.0467371,7.00374,1.58227,0.0377553,7.97728,1.36948,0.0447745,7.34045,1.45496,0.0481064,7.19395,1.49377,0.0480841,6.71555,1.56313,0.0397342,8.93213,1.19589,0.0451413,9.39002,0.764039,0.0387268,7.46265,1.38745,0.0427114,7.29598,1.41452,0.0444185,7.13448,1.4657,0.0447774,6.95039,1.54622,0.0498117,6.76639,1.63178,0.0391978,7.53178,1.42397,0.043865,7.35868,1.44402,0.0471173,7.21253,1.47887,0.0464097,7.01768,1.5689,0.0499256,6.78368,1.62794,0.0936353,9.604,0.741989,0.39601,9.7545,0.66084,0.209719,9.65492,0.721058,0.723087,9.73189,0.404503,0.628159,9.7657,0.540556,0.685638,9.75102,0.500355,0.754673,9.71353,0.400203,0.521056,9.77686,0.609638,1.48322,8.18389,-0.00708664,1.40678,8.07636,0.0197476,1.31351,8.13244,-0.418219,1.41904,8.28835,-0.385392,1.28776,8.52024,-0.762104,1.0222,8.34777,-0.896207,1.17447,8.20133,-0.668468,1.34993,8.39418,-0.583078,1.40152,8.07553,0.218831,1.47436,8.19444,0.177145,1.36417,8.09084,-0.197264,1.46709,8.21433,-0.194595,0.164457,9.43744,0.743553,0.0499347,9.41117,0.761998,0.488439,9.57101,0.639293,0.348266,9.51627,0.688662,0.800352,9.57309,0.537277,0.763088,9.56799,0.552318,0.715198,9.56974,0.584876,0.621404,9.58063,0.613716,0.407302,-6.39854e-06,0.0436082,1.27562,-6.3981e-06,0.0147574,1.26702,-6.39045e-06,0.283082,0.412871,-6.36729e-06,0.751201,0.455625,-6.38256e-06,0.430463,1.25394,-0.000216926,-0.257378,0.990348,-6.40333e-06,-0.277655,0.723394,-6.40389e-06,-0.27566,0.403003,-6.40449e-06,-0.277721,0.69384,-6.39845e-06,0.0344672,1.01717,-6.39819e-06,0.0314385,1.02178,-6.38793e-06,0.331851,0.734753,-6.38346e-06,0.423031,1.46942,-6.36627e-06,0.774537,0.729295,-6.36699e-06,0.758025,1.15139,-6.36811e-06,0.73235,0.673916,-6.35316e-06,1.07443,1.22315,-6.35416e-06,1.05154,1.55626,-6.35314e-06,1.07473,0.330255,-6.35258e-06,1.08758,1.30588,2.33173,0.0149183,1.29989,2.33905,-0.0768289,1.27202,2.04619,-0.114756,1.27862,2.04422,-0.0303068,1.13338,2.0597,-0.0282529,1.14203,2.06132,-0.112676,1.14621,2.3488,0.0179544,1.15527,2.3555,-0.0737248,1.32926,2.32922,0.0144592,1.29564,2.0424,-0.0305864,1.32184,2.33655,-0.0773194,1.28786,2.04436,-0.11505,1.26493,2.08701,-0.137056,1.28993,2.28735,-0.114403,1.38559,2.0433,-0.214713,1.26395,2.09859,-0.00404445,1.41583,2.2475,-0.226286,1.28627,2.29316,0.0321208,1.20938,2.11892,0.225171,1.21863,2.31049,0.23707,1.21046,2.30789,0.208324,1.17973,2.11923,0.190534,1.25996,2.30109,0.027811,1.21243,2.31507,-0.245045,1.23692,2.10875,-0.00992647,1.18819,2.11044,-0.24671,1.20899,2.71904,-0.165393,1.25207,2.84022,0.0717215,1.19652,2.92392,-0.174488,1.23982,3.00787,0.0992935,1.18958,2.92535,0.270598,1.18596,3.05168,0.278547,1.19291,2.9451,0.30721,1.21804,2.75459,0.305566,1.26701,2.92967,0.104351,1.40822,2.89126,-0.0852738,1.28034,2.73266,0.0784783,1.41442,2.68468,-0.0909279,1.27484,2.91513,-0.0324875,1.28626,2.71129,-0.0461999,1.3159,2.67797,-0.0291299,1.2967,2.97308,-0.00682441,1.32207,2.68173,0.0554066,1.3033,2.97188,0.085301,1.12937,2.96219,-0.0063242,1.11965,2.95866,0.0854639,1.16936,2.66876,-0.0294838,1.1593,2.66994,0.05479,1.30499,2.68051,0.055376,1.29999,2.67696,-0.0291312,1.27465,2.97164,-0.0067417,1.27984,2.97019,0.0853341,0.461164,0.781121,0.844178,0.466477,0.837335,0.688042,0.429261,0.774019,0.539136,0.371317,0.628263,0.484688,0.326587,0.48545,0.556593,0.321223,0.428178,0.712927,0.35849,0.492552,0.861635,0.416434,0.638307,0.916083,0.443962,0.743327,0.807418,0.410667,0.637023,0.86094,0.367537,0.52853,0.820412,0.339835,0.4814,0.709574,0.34379,0.523243,0.593353,0.377084,0.629547,0.539831,0.420215,0.73804,0.580359,0.447916,0.78517,0.691197,0.385811,0.746055,0.797038,0.389201,0.781923,0.697414,0.365455,0.741524,0.602403,0.328483,0.648523,0.567662,0.299943,0.557399,0.613542,0.296553,0.521532,0.713166,0.320299,0.561931,0.808177,0.357271,0.654932,0.842918,0.315158,0.713868,0.753441,0.301618,0.670637,0.775207,0.284078,0.626516,0.758726,0.272813,0.60735,0.713651,0.274421,0.624365,0.666387,0.287961,0.667596,0.644621,0.305501,0.711718,0.661103,0.316766,0.730884,0.706178,0.279671,0.654099,0.732429,0.272635,0.677128,0.712045,0.289114,0.691654,0.689399,0.436877,0.743749,0.806231,0.440766,0.784893,0.691952,0.413526,0.73855,0.582965,0.371116,0.631869,0.543113,0.338378,0.527341,0.595742,0.334489,0.486197,0.710021,0.361728,0.532539,0.819009,0.404138,0.63922,0.858859,0.465692,0.620495,0.911346,0.407747,0.474734,0.856899,0.370454,0.409833,0.708289,0.375845,0.467637,0.551856,0.420574,0.61045,0.479951,0.478518,0.756206,0.534399,0.515734,0.819522,0.683305,0.510421,0.763309,0.839442,1.26657,0.808306,0.493823,1.30452,0.795641,0.654964,1.38426,0.683912,0.748372,1.45908,0.538569,0.719329,1.48516,0.444751,0.584849,1.44722,0.457416,0.423708,1.36748,0.569144,0.3303,1.29265,0.714488,0.359343,1.3661,0.719199,0.397776,1.42087,0.612819,0.376519,1.47923,0.531042,0.444886,1.507,0.521772,0.562829,1.48792,0.59044,0.661258,1.43315,0.696819,0.682515,1.37479,0.778595,0.614148,1.34702,0.787865,0.496205,1.52325,0.715093,0.539144,1.53296,0.713429,0.509174,1.52101,0.69978,0.483363,1.49095,0.753329,0.548094,1.51509,0.719508,0.57637,1.53774,0.675511,0.567578,1.54563,0.647112,0.52687,1.53415,0.650945,0.478091,1.51001,0.684767,0.449816,1.48736,0.728763,0.458608,1.47946,0.757162,0.499316,1.41514,0.733751,0.406753,1.46289,0.641013,0.388223,1.51377,0.569723,0.447822,1.53798,0.561643,0.55064,1.52134,0.621504,0.636446,1.4736,0.714242,0.654978,1.42272,0.785531,0.595378,1.39851,0.793612,0.49256,1.36814,0.777514,0.61669,1.4275,0.694348,0.686219,1.48319,0.586161,0.664601,1.5026,0.516327,0.5645,1.47436,0.525755,0.444554,1.41501,0.60892,0.375026,1.35931,0.717108,0.396643,1.3399,0.786941,0.496744,1.33804,0.739594,0.350629,1.41286,0.594251,0.321586,1.4926,0.482522,0.414994,1.53055,0.469857,0.576135,1.50447,0.563675,0.710616,1.42964,0.709018,0.739658,1.3499,0.820746,0.646251,1.31196,0.833411,0.485109,1.16743,3.63709,0.45992,1.25339,3.6302,0.24893,1.21704,3.41321,0.210638,0.409975,3.22617,0.628592,0.452868,3.55902,0.754518,0.521659,3.56624,0.842614,1.15807,2.62835,0.482627,1.13544,3.39457,0.38724,1.10083,3.29414,0.608465,0.633614,3.25811,0.782164,0.822326,3.26655,0.786012,1.31883,3.6035,0.683238,1.16906,3.46589,0.442108,0.672544,3.53397,1.06609,0.675962,3.32046,0.833728,1.14153,3.34873,0.66131,0.859432,3.32157,0.840278,1.21479,3.59922,0.919327,0.933091,3.56936,1.07473,1.17698,4.30296,1.02018,1.15537,4.28856,0.8564,0.781133,4.24829,1.07809,0.924487,4.27631,1.1604,0.735761,4.22188,1.03088,1.11,4.26215,0.809183,1.10469,4.26201,0.947081,0.860104,4.2366,1.0774,1.29172,3.97562,0.750202,1.20478,3.95905,0.973674,0.927878,3.92879,1.12692,0.683455,3.91018,1.11053,0.571008,3.89956,0.967287,1.18677,3.96581,0.602518,1.20517,3.62899,0.515782,1.13983,3.42266,0.402131,0.64673,3.27723,0.793751,0.559533,3.55839,0.898404,1.11085,3.30859,0.621734,0.831793,3.28057,0.79948,0.747104,4.22848,1.04268,1.12134,4.26875,0.820988,1.12276,4.27225,0.965357,0.8762,4.24652,1.09815,0.59912,3.90221,1.0031,1.21301,3.96826,0.639439,1.16424,4.26821,0.849495,1.17878,4.2806,1.01716,0.924708,4.25371,1.15822,0.774781,4.2263,1.0802,0.725048,4.20092,1.02674,1.11499,4.24288,0.795745,0.857282,4.21645,1.07082,1.1037,4.24225,0.939208,0.737481,4.20727,1.04011,1.1273,4.24921,0.809182,1.24914,1.96197,-0.178952,0.414986,1.95607,-0.353849,1.28376,2.96007,-0.136769,0.381791,2.8367,-0.325976,0.84911,1.96677,-0.537138,0.683368,1.96515,-0.538737,0.527617,1.96233,-0.478635,1.14343,1.96536,-0.366156,0.838194,2.793,-0.542682,0.652923,2.78046,-0.54043,0.494247,2.787,-0.466766,1.16961,2.86858,-0.363455,0.466213,0.566633,-0.251176,0.413674,0.504901,0.450504,1.07804,1.09479,0.91748,0.972649,0.619688,-0.398664,1.28759,0.448976,0.196158,1.32343,0.453802,0.488573,0.671957,0.615671,-0.427715,0.652786,1.07731,0.909115,0.390529,0.502167,0.0759872,0.476147,0.780562,0.714817,1.30345,0.762581,0.670227,1.20731,0.54949,-0.163031,0.464309,0.808765,-0.235687,0.437274,0.774509,0.374743,1.07148,1.14133,0.829282,0.958492,0.84315,-0.387696,1.25625,0.719717,0.109607,1.29782,0.807912,0.324189,0.680504,0.841521,-0.417657,0.667357,1.12984,0.845017,0.416793,0.769458,0.0544677,0.536195,0.980873,0.624159,1.23895,1.00907,0.588485,1.18758,0.793045,-0.164153,0.968392,-6.294e-06,2.42773,1.1441,-6.29557e-06,2.39185,0.8184,-6.29493e-06,2.40657,0.801587,0.0505963,2.35725,1.08176,0.0701109,2.33737,0.890931,0.145089,2.31329,1.02854,0.13252,2.3114,0.832714,0.114053,2.32496,0.964131,0.154172,2.30611,0.971979,0.285007,2.15851,0.71427,0.225009,2.17975,1.10225,0.243271,2.1704,0.835338,0.276072,2.16167,1.20318,0.133201,2.20716,0.630897,0.113277,2.2351,0.589592,-6.29875e-06,2.319,1.29444,-6.30107e-06,2.266,1.44789,-6.30973e-06,2.06794,0.421114,-6.30859e-06,2.09388,0.475809,0.183392,2.00463,1.34196,0.202167,1.9735,0.784409,0.392911,1.90943,1.19976,0.348498,1.92005,0.601867,0.33381,1.93754,0.99199,0.399469,1.90264,1.01738,0.569816,1.38984,0.506817,0.4964,1.41779,1.3146,0.497983,1.37315,0.744881,0.566407,1.4049,1.46956,0.318749,1.36428,0.354124,0.308194,1.42584,0.26314,-6.33758e-06,1.43071,1.55957,-6.34093e-06,1.35415,1.2887,1.69807,0.0281047,1.19949,1.56805,-0.282824,0.653916,1.3929,-0.572765,0.497036,1.82688,0.533305,0.338087,1.47174,-0.00428325,0.943288,1.41049,-0.499542,0.960838,1.85411,0.671443,0.357301,1.53833,0.290341,0.423546,1.43296,-0.359208,0.681087,1.23294,0.807091,1.02017,1.24765,0.776912,1.20848,1.13355,0.55713,1.29194,0.995964,0.254819,1.25333,0.900427,0.0506986,1.18087,0.93394,-0.176781,0.995851,1.05349,-0.371852,0.632236,1.04932,-0.425182,0.469837,0.934325,-0.22873,0.423958,0.895668,0.0517108,0.451267,0.9146,0.339187,0.534933,1.16431,0.629688,1.0362,0.60384,1.4622,0.455305,0.521127,1.495,1.35918,0.503442,1.44406,0.712728,0.600226,1.48063,1.52751,0.328219,1.44453,0.29468,0.32384,1.50364,0.21341,-6.33422e-06,1.50767,1.63445,-6.33774e-06,1.42714,1.52252,-6.35434e-06,1.04733,0.325205,-6.35136e-06,1.11555,0.383664,0.418815,1.11613,1.42003,0.431597,1.05905,0.757723,0.745841,1.1041,1.2804,0.655761,1.07239,0.534034,0.65369,1.11361,1.00917,0.750392,1.09034,1.01789,0.797933,1.13509,0.51403,0.714169,1.16152,1.2966,0.706732,1.11635,0.748159,0.797843,1.15074,1.45928,0.471866,1.09756,0.348892,0.458985,1.15844,0.238958,-6.34966e-06,1.15446,1.61756,-6.35282e-06,1.08204,1.45385,-6.37076e-06,0.671785,0.357481,-6.3681e-06,0.732485,0.454366,0.537002,0.728539,1.33558,0.551557,0.679545,0.773866,0.950002,0.711719,1.1697,0.836612,0.689676,0.583844,0.833725,0.722093,0.970559,0.956002,0.700918,0.389841,-6.3191e-06,1.85357,1.48126,-6.32173e-06,1.7934,0.455792,0.198496,1.84994,1.36566,0.215076,1.79978,0.777808,0.412404,1.83219,0.585643,0.353642,1.84278,1.22499,0.364608,1.80753,0.99746,0.417735,1.82008,1.00628,0.440574,1.90489,1.24628,0.384858,1.89165,0.571896,0.374279,1.92883,0.774568,0.434946,1.91766,1.39466,0.23027,1.88347,0.434929,0.212833,1.93639,1.51659,-6.31809e-06,1.87675,0.365363,-6.31531e-06,1.94022,0.458766,0.920013,-0.279056,0.377877,0.646653,0.436606,0.984125,0.947877,-0.421465,1.335,0.780741,0.0538123,1.33756,0.67928,0.29422,0.687114,0.948182,-0.436876,0.338575,0.774375,0.0937054,0.417733,0.529508,0.82856,1.46447,0.539726,0.776228,1.22369,0.872684,-0.232796,0.679799,-6.40663e-06,-0.558904,1.3209,-6.40149e-06,-0.275525,1.34382,-6.39741e-06,0.0148652,1.45233,-6.39365e-06,0.271039,0.347842,-6.40394e-06,-0.320981,0.354973,-6.39882e-06,0.0463635,0.343373,-6.39276e-06,0.420584,1.0995,-6.40548e-06,-0.532634,0.3815,0.286745,0.411504,0.328315,0.419292,0.0678628,0.360253,0.448133,-0.289848,1.37471,0.315882,0.267116,1.38291,0.385162,0.0294302,1.32163,0.435526,-0.241994,1.01941,0.442244,-0.529966,0.642546,0.443918,-0.55495,0.680701,0.670339,-0.512596,1.23705,0.657457,-0.230208,1.34139,0.616799,0.048312,1.3511,0.52074,0.289046,0.455213,0.647485,-0.246533,0.340822,0.629119,0.0865085,0.383378,0.510413,0.402604,0.986721,0.671239,-0.496278,1.66156,-6.38636e-06,0.766654,1.59493,0.19435,0.767512,1.54321,0.363,0.771696,0.299942,0.124877,0.832711,0.261975,-6.38808e-06,0.830366,0.356749,0.337334,0.831458,1.0599,1.25993,-0.257421,0.550692,1.21598,-0.325752,0.669049,1.22476,-0.353293,0.80809,1.23755,-0.372266,0.473327,1.20894,-0.162654,1.14666,1.26385,-0.121516,1.288,2.98129,0.151112,0.39296,2.93195,0.574378,1.30675,2.18167,0.0601634,0.713301,1.55512,0.793565,1.00134,1.54714,0.768441,1.22627,1.49728,0.538229,1.32868,1.38533,0.243616,1.31877,1.31927,0.0309145,1.23678,1.20167,-0.247409,1.00347,1.22472,-0.471722,0.609174,1.2087,-0.533566,0.403778,1.17313,-0.317377,0.331647,1.17628,0.0210544,0.356412,1.22168,0.328454,0.47867,1.49451,0.613209,0.680793,2.21897,0.688619,0.948268,2.21406,0.661509,0.458263,2.22159,0.531065,1.3149,2.65733,0.0982695,0.416363,2.64812,0.528645,1.13173,2.95465,0.540582,0.647282,2.92592,0.733413,1.26359,2.63935,0.272165,0.660102,2.61634,0.692064,0.908575,2.60999,0.671023,1.22546,2.97363,0.323267,0.880001,2.92756,0.714355,1.15319,2.20431,0.479808,1.27255,2.18968,0.243315,0.72809,1.52228,0.751425,0.981452,1.51392,0.728655,1.18576,1.46226,0.516509,1.28043,1.3512,0.23734,1.26792,1.28522,0.0388945,1.1929,1.18389,-0.21823,0.971801,1.21683,-0.430276,0.642155,1.20652,-0.492709,0.448657,1.16247,-0.28843,0.384668,1.15925,0.0260909,0.408276,1.20004,0.316838,0.519075,1.46584,0.585588,0.699941,1.85125,0.685431,1.15592,1.83559,0.476767,1.26685,1.77356,0.216617,0.71209,1.58518,0.782475,0.997158,1.57818,0.758493,1.21903,1.53149,0.531925,1.32233,1.42492,0.240847,1.31568,1.35812,0.0306263,1.23296,1.23925,-0.251042,0.997298,1.24377,-0.474575,0.613762,1.22759,-0.537586,0.405806,1.19978,-0.321667,0.332308,1.20659,0.0184557,0.356503,1.25415,0.324545,0.480537,1.5283,0.605013,0.807728,-6.40687e-06,-0.492708,0.942668,-6.40618e-06,-0.481073,0.359224,-6.33562e-06,1.47569,1.47985,-6.33844e-06,1.41111,1.17537,-6.33767e-06,1.42866,0.673346,-6.33641e-06,1.45759,0.725063,-6.31887e-06,1.85888,1.16295,-6.31997e-06,1.83365,1.42853,-6.32064e-06,1.81834,0.451072,-6.31818e-06,1.87467,1.05377,-6.29799e-06,2.33644,0.85912,-6.29758e-06,2.34584,0.770581,-6.3078e-06,2.11211,0.542757,-6.30722e-06,2.12524,1.35552,-6.30927e-06,2.0784,1.13469,-6.30872e-06,2.09113,0.434958,-6.40403e-06,-0.277515,0.435881,-6.39854e-06,0.0426965,0.483464,-6.38303e-06,0.429721,0.44443,-6.36726e-06,0.751881,0.364531,-6.35264e-06,1.08626,0.390553,-6.3357e-06,1.47388,0.478399,-6.31825e-06,1.8731,0.565479,-6.30728e-06,2.12393,1.23193,-6.40255e-06,-0.259724,1.2441,-6.3981e-06,0.0167917,1.23711,-6.39035e-06,0.289029,1.43064,-6.36649e-06,0.769393,1.51564,-6.35327e-06,1.0719,1.44272,-6.33835e-06,1.41325,1.39614,-6.32056e-06,1.82021,1.32859,-6.3092e-06,2.07996,0.838476,-6.29896e-06,2.31438,0.671883,-0.000328881,2.27822,1.20979,0.000349658,2.25983,1.06825,-6.29939e-06,2.30452,0.687832,-6.30128e-06,2.26116,1.1936,-6.30201e-06,2.24455,0.628361,-0.000325411,-0.451699,0.802078,-6.40649e-06,-0.478166,0.945862,-6.40613e-06,-0.467444,1.07654,-0.000176875,-0.445314,0.634663,4.03235e-05,-0.439184,1.06913,-2.47629e-05,-0.433537,1.15281,7.84932,0.732566,1.02884,7.18582,0.760986,1.04633,7.48992,0.667375,1.29936,8.14217,0.594306,1.42385,8.32208,0.564128,1.2312,6.53935,0.999114,1.06941,6.98126,0.815587,1.19895,6.75151,0.907431,1.1999,6.31595,1.01771,0.973239,7.16111,0.735,1.067,6.929,0.814452,1.17962,6.68462,0.903839,1.19332,6.49855,0.985018,1.25149,6.36621,1.06466,1.0338,7.21744,0.749622,1.04287,7.01417,0.797031,1.18023,6.78344,0.891745,1.22743,6.55474,0.988965,1.24673,6.37937,1.0599,1.0848,8.57531,1.02869,1.26645,2.46102,-0.157861,0.407579,2.39966,-0.332246,0.843652,2.37989,-0.53991,0.668146,2.3728,-0.539584,0.515147,2.37617,-0.469185,1.15652,2.41697,-0.364806,0.814202,1.59412,-0.4577,1.09287,1.60773,-0.31362,1.18929,1.6081,-0.152028,0.436538,1.58227,-0.255813,0.535312,1.58844,-0.401675,0.669081,1.59097,-0.447499,1.37217,4.55643,-0.124973,0.164654,4.36735,-0.254191,0.822119,4.47536,-0.645971,0.334341,4.39552,-0.53338,0.584028,4.43946,-0.629051,1.19403,4.52494,-0.448503,-0.000622508,9.37874,-0.849514,0.500149,6.17609,1.36244,0.217016,6.16859,1.47093,0.114675,5.00972,1.12501,0.469853,6.20299,1.36949,0.256166,5.35529,1.35937,0.477028,5.80914,1.43164,0.470357,6.1753,1.37386,-8.88178e-16,8.32545,-1.12727,0.000291177,8.98316,-1.02914,0,5.40598,1.53086,-8.88178e-16,9.06125,1.07932,-8.88178e-16,7.89621,1.3649,-8.88178e-16,8.06404,1.38275,-8.88178e-16,9.15783,1.02045,-8.88178e-16,8.74224,1.34093,-8.88178e-16,7.36021,1.45886,-8.88178e-16,6.74395,1.56781,-8.88178e-16,8.92671,1.19733,-8.88178e-16,7.54203,1.42804,-8.88178e-16,7.23914,1.48214,0.00079876,9.20369,-0.952232,-0.110415,9.20476,-0.941415,-0.170982,8.34011,-1.11114,-0.680396,9.46887,-0.766509,-0.123656,8.73339,-1.08355,-0.821324,9.32095,-0.86592,-0.927493,8.64377,-0.997871,-1.05366,8.78855,-0.946924,-0.893843,9.47686,-0.746422,-1.19251,8.96017,-0.890161,-0.804801,8.9928,-0.972846,-0.933813,9.14568,-0.931299,-1.03434,9.3284,-0.856747,-0.499207,9.19367,-0.92603,-0.384956,9.20593,-0.9375,-0.629831,8.86297,-1.02243,-0.450522,8.78759,-1.05682,-0.586384,8.4291,-1.07028,-0.784301,8.51491,-1.05216,-0.699268,9.17322,-0.927875,-0.582527,9.31737,-0.865289,-0.566969,9.05805,-0.990182,-0.396552,9.00199,-1.00243,-0.109946,8.9849,-1.02042,-0.245002,9.20505,-0.933132,-0.27482,8.7497,-1.06596,-0.36915,8.37405,-1.08551,-0.240044,8.9849,-1.00861,-0.871547,8.828,-0.996039,-0.997043,8.95811,-0.951943,-1.14048,9.12084,-0.887402,-0.70099,8.6835,-1.04348,-0.525557,8.58812,-1.07396,-0.149755,8.50507,-1.11453,-0.328565,8.54726,-1.08896,-0.605694,9.63223,-0.466861,-0.294361,9.53559,-0.685965,-0.457827,9.56855,-0.602733,-0.12819,9.53043,-0.722264,-0.137541,9.49879,-0.755275,-0.513855,9.55303,-0.647673,-0.334338,9.51679,-0.710329,-0.642864,9.6118,-0.580928,-0.743575,9.57224,-0.651023,-0.290947,9.40695,-0.806906,-0.455937,9.39862,-0.807285,-0.131849,9.39301,-0.831094,-0.127483,9.54955,-0.728612,-0.291584,9.55247,-0.691916,-0.6015,9.6469,-0.472186,-0.45473,9.58416,-0.607544,-1.25033,4.96474,1.02898,-0.877237,4.62352,1.3875,-0.891178,4.6347,1.37495,-1.2456,4.9399,1.04456,-1.12633,5.66778,1.0149,-0.75172,5.46538,1.46281,-0.736256,5.4606,1.47931,-1.24077,4.9552,1.04209,-0.888548,4.65291,1.37226,-1.2454,4.97991,1.02652,-0.87469,4.64184,1.3848,-0.827886,6.60746,0.875119,-0.506001,6.60736,1.16291,-0.491997,6.60361,1.17681,-0.817116,6.59997,0.896015,-1.05947,6.62574,0.564463,-0.825834,6.60367,0.880266,-1.04986,6.62059,0.582814,-1.2783,4.90092,1.12836,-1.56943,5.20454,0.67757,-1.28856,4.91162,1.11247,-1.55763,5.19223,0.695855,-1.17182,5.64865,1.15767,-1.50002,5.86362,0.682478,-1.18442,5.65406,1.14147,-1.48897,5.85018,0.702933,-1.56427,5.1777,0.698759,-1.29337,4.89406,1.11628,-1.28304,4.88325,1.13219,-1.57616,5.19015,0.680435,-1.68882,5.46584,0.181691,-1.63895,5.21169,0.744793,-1.6395,5.22077,0.724939,-1.67102,5.45718,0.204351,-1.55801,5.87868,0.736724,-1.5398,6.04746,0.168506,-1.55219,5.87345,0.755003,-1.66184,5.47054,0.203425,-1.63113,5.23712,0.722077,-1.67961,5.47907,0.180849,-1.63061,5.22815,0.741858,-1.07221,6.62836,0.564614,-1.15849,6.68783,0.10321,-1.06936,6.62285,0.580096,-1.17685,6.69609,0.0816336,-0.951408,6.67944,-0.324539,-1.16828,6.70077,0.0739547,-0.960667,6.68182,-0.308288,-1.74615,5.5146,0.190843,-1.47843,5.59385,-0.308831,-1.73672,5.51739,0.173237,-1.48929,5.59064,-0.288563,-1.6003,6.06615,0.170243,-1.35431,6.06153,-0.315273,-1.59291,6.06423,0.153119,-1.36708,6.05788,-0.295615,-1.49723,5.57783,-0.288321,-1.74503,5.50255,0.176167,-1.75448,5.49968,0.193876,-1.48635,5.58113,-0.308707,-0.819472,6.28741,0.932342,-0.501447,6.15795,1.25212,-0.826,6.30916,0.916876,-0.488884,6.15533,1.26409,-1.11805,5.68681,1.01028,-0.745716,5.48644,1.45784,-0.730356,5.4817,1.47434,-0.937882,6.11333,0.922594,-1.1781,6.28319,0.507031,-0.947031,6.11749,0.908223,-1.16985,6.27234,0.524478,-1.1634,5.67108,1.15104,-1.4892,5.88327,0.676562,-1.1759,5.67644,1.13485,-1.47819,5.87006,0.696959,-1.24736,6.33482,0.0944334,-1.22942,6.22334,0.550693,-1.25882,6.34231,0.07431,-1.22831,6.22066,0.567996,-1.51542,6.04529,0.184462,-1.55094,5.89146,0.734093,-1.53165,6.05848,0.166709,-1.54517,5.88626,0.752343,-1.28375,6.3669,0.0582388,-1.04292,6.3498,-0.348212,-1.27612,6.36469,0.044025,-1.05455,6.34699,-0.33149,-1.58265,6.09013,0.167558,-1.33665,6.0831,-0.314151,-1.57522,6.08818,0.150568,-1.34932,6.07969,-0.294646,-0.868343,6.3446,0.863753,-0.503776,6.20361,1.25413,-0.489193,6.19821,1.26862,-1.11758,5.66097,1.03834,-0.815896,6.60246,0.890225,-1.10739,5.67964,1.03214,-0.853386,6.33849,0.879719,-0.910362,6.13553,1.02353,-1.19444,6.2545,0.620513,-0.920967,6.14006,1.00756,-1.18412,6.24533,0.639886,-1.52347,6.03414,0.186272,-1.14809,6.68129,0.120245,-1.28308,6.22276,0.648709,-1.31658,6.336,0.134315,-1.27877,6.2174,0.665575,-1.30326,6.32613,0.151709,-1.36006,6.39311,0.134204,-1.114,6.35514,-0.300004,-1.35183,6.39447,0.122144,-1.12546,6.35462,-0.282431,-0.499423,6.20379,1.35803,-0.268936,5.35218,1.3434,-0.0646213,4.90934,1.17005,0,4.88882,1.16613,-0.120561,5.02152,1.11971,-0.218392,6.19625,1.46693,0,6.18975,1.48059,-0.509744,5.80987,1.4208,-0.198819,5.80294,1.52383,-0.147569,5.38177,1.49517,0,5.81389,1.50029,-0.0444574,4.58788,-0.0197704,-0.0722725,4.4032,-0.00955448,-0.293725,4.62057,-0.398998,-0.302145,4.43853,-0.392149,-0.606163,4.88381,0.929928,-0.635438,4.72223,0.872027,-0.199632,4.71973,0.76073,-0.223388,4.54895,0.720406,-0.0543837,4.62354,0.380688,-0.0846645,4.46278,0.37462,-0.204422,4.07157,0.074744,-0.164837,4.24889,0.0489647,-0.188476,4.09036,0.361041,-0.160319,4.26425,0.364965,-0.308082,4.04819,-0.232104,-0.277003,4.22296,-0.293455,-0.462387,4.13957,0.806038,-0.440977,4.3103,0.804237,-0.291547,4.11259,0.652618,-0.270885,4.27826,0.667174,-0.399681,4.82931,0.899179,-0.429243,4.65907,0.872248,-0.680171,4.18541,0.77273,-0.661525,4.33198,0.796903,-0.3487,4.62409,-0.434135,-0.357184,4.44208,-0.427301,-0.373046,4.04185,-0.283085,-0.341966,4.21662,-0.344436,-0.582336,1.90616,-0.44386,-0.590163,1.72859,-0.40078,-0.495096,2.60839,-0.433261,-0.473149,2.74853,-0.412047,-0.578025,2.63147,0.586306,-0.592278,2.79903,0.622303,-0.449951,2.64686,0.513139,-0.483379,2.46384,0.520976,-0.624026,2.79959,0.618494,-0.645615,2.61212,0.625388,-0.522034,1.91882,-0.385586,-0.519019,1.74218,-0.330723,-0.352407,2.38746,0.273148,-0.397992,2.19527,0.285345,-0.335365,2.11818,-0.0375792,-0.365057,1.92326,-0.00555976,-0.312757,2.58601,0.138641,-0.288356,2.72218,0.144872,-0.431228,2.61782,0.454169,-0.407343,2.74112,0.50524,-0.456637,2.60399,-0.394551,-0.434497,2.74265,-0.37321,-0.350283,2.5908,-0.150365,-0.323977,2.72632,-0.13475,-0.366183,1.8064,-0.112716,-0.435951,1.66305,-0.18443,-0.453147,1.89489,-0.308375,-0.501964,1.73145,-0.360659,-0.541821,1.70995,0.47196,-0.543616,1.56686,0.436717,-0.376836,1.69303,0.213406,-0.384128,1.56759,0.096269,-0.715472,1.73794,0.614496,-0.698905,1.56777,0.579624,-0.490905,1.94014,-0.384198,-0.547458,1.78292,-0.446229,-0.429385,4.85199,1.03074,-0.725963,5.04707,1.08353,-1.0785,5.37978,0.933946,-1.36058,5.54079,0.583187,-1.02869,3.98086,0.657097,-1.39224,4.00945,0.250249,-0.50332,3.88588,0.852239,-0.744606,3.92793,0.825235,-1.05315,4.60377,0.747587,-1.31093,4.68073,0.435861,-0.466874,4.3484,0.876012,-0.738292,4.44843,0.87528,-1.30829,5.80494,0.583008,-1.08368,5.63191,0.937578,-0.725161,5.23373,1.13612,-0.413324,4.99181,1.07694,-1.25428,5.46743,0.759061,-1.16755,4.00075,0.454234,-1.21081,4.64246,0.597919,-1.20544,5.72585,0.761699,-1.32132,3.92324,-0.0452496,-1.42302,5.19948,-0.100099,-0.190716,3.90931,-0.127151,-0.138593,4.82539,-0.335386,-1.16511,3.98957,-0.292657,-0.846592,4.946,-0.589549,-0.6091,4.88499,-0.596224,-0.324149,4.83646,-0.524914,-1.22295,5.0603,-0.361775,-0.797646,4.00471,-0.45982,-0.344533,3.95459,-0.299691,-0.558956,3.99392,-0.419747,-1.26115,4.74756,-0.251257,-1.26115,4.95802,-0.268192,-1.22132,5.0284,0.565756,-1.21111,4.8389,0.541027,-1.3184,4.78197,-0.0142018,-1.31104,4.82193,0.270942,-1.3184,4.98789,-0.0221026,-1.31104,5.01842,0.281784,-1.22359,4.83678,0.507288,-1.23252,5.02716,0.530283,-1.26135,5.0285,0.530283,-1.25242,4.83774,0.507288,-1.34792,5.01495,0.281065,-1.4202,4.95673,-0.0254527,-1.34792,4.8157,0.270071,-1.4202,4.75018,-0.0175519,-1.23994,4.83953,0.541027,-1.25015,5.02936,0.565756,-1.34269,4.9823,0.10295,-1.34269,4.7786,0.102925,-1.37213,4.75022,0.176607,-1.37213,5.04679,0.174201,-1.37736,4.76061,0.260651,-1.37736,5.05284,0.266223,-1.20446,5.04681,0.17237,-1.19325,5.05158,0.263933,-1.22532,4.7505,0.174188,-1.21419,4.75934,0.25787,-1.36023,4.76049,0.260392,-1.35618,4.75025,0.176382,-1.35003,5.04679,0.173976,-1.35384,5.05268,0.265942,-1.37438,4.47863,0.251982,-1.36838,4.48595,0.160235,-1.34052,4.19309,0.122308,-1.34711,4.19112,0.206757,-1.20188,4.2066,0.208811,-1.21053,4.20822,0.124388,-1.21471,4.4957,0.255018,-1.22377,4.5024,0.163339,-1.39776,4.47612,0.251523,-1.36414,4.1893,0.206478,-1.39034,4.48345,0.159745,-1.35636,4.19126,0.122014,-1.32919,4.23262,0.0538649,-1.35252,4.43311,0.0814129,-1.45044,4.19083,-0.0391414,-1.34138,4.2455,0.224207,-1.474,4.39521,-0.0190261,-1.36442,4.44006,0.262045,-1.17187,4.26709,0.458369,-1.20264,4.45613,0.476149,-1.17385,4.45801,0.477113,-1.14313,4.26935,0.459323,-1.3282,4.44749,0.264415,-1.30062,4.46153,-0.0400316,-1.30547,4.25561,0.227101,-1.27713,4.25778,-0.0600609,-1.25708,4.46967,-0.18908,-1.19814,4.267,-0.194724,-0.59087,9.31707,0.780982,-0.975657,9.40122,0.649788,-0.178412,9.1013,1.02887,-1.12511,9.21987,0.777692,-0.672408,9.1871,0.907806,-0.879266,8.5229,1.10949,-0.205575,8.45756,1.32372,-8.88178e-16,8.44854,1.40953,-0.245447,8.05611,1.30867,-0.907052,8.124,1.07087,-0.995036,7.88309,0.923886,-0.233134,7.88313,1.29375,-0.238394,7.44382,1.37362,-0.898735,7.21664,0.940536,-1.38974,8.09608,0.41755,-1.13471,7.19123,0.556943,-1.15017,7.25744,0.063476,-1.31053,7.81961,0.540716,-1.2767,7.78147,0.0252519,-0.502287,9.50766,0.665323,-0.839546,9.52555,0.566444,-0.864415,9.36822,0.707973,-0.988083,9.2315,0.834762,-0.740764,9.52079,0.607061,-1.2047,8.54104,0.93856,-1.37559,8.42643,0.729743,-1.11353,8.30117,0.949475,-1.21507,8.19091,0.786984,-0.909937,8.19784,-0.928899,-0.817802,8.00145,-0.89299,-0.958795,7.66587,-0.551799,-1.12571,7.86685,-0.490467,-1.20993,7.80075,-0.229638,-1.08717,7.53779,-0.228871,-1.15867,7.48191,0.0434332,-0.200032,7.6738,1.28343,-0.934561,7.51216,0.8044,-1.15427,7.47509,0.529141,-8.88178e-16,7.70845,1.36647,-0.193369,9.21212,0.957453,-0.43263,9.1549,0.927797,-0.547534,8.48582,1.20432,-0.576955,8.05165,1.20399,-0.599787,7.84668,1.12325,-0.543666,7.30867,1.17307,-0.553912,7.57348,1.06614,-0.397439,9.26676,0.842158,-0.753483,9.3466,0.738413,-0.857684,9.21958,0.877431,-0.643793,9.51818,0.634965,-0.216757,8.24749,1.35328,-0.900649,8.31823,1.12305,-0.560121,8.26653,1.23379,-1.05149,8.41163,1.0203,-1.45777,8.23468,0.402283,-0.186252,8.74835,1.27128,-0.852379,8.76402,1.08877,-1.17055,8.74578,0.960714,-1.30096,8.68131,0.865188,-0.520143,8.74765,1.1399,-1.05464,8.7848,1.04681,-0.945732,7.39888,-0.516642,-1.07401,7.31324,-0.215062,-0.700664,7.67601,-0.79159,-1.16622,6.93132,-0.260588,-0.826563,7.01239,-0.545932,-1.31307,6.84663,0.148804,-1.2613,6.89241,-0.0710742,-1.3349,6.60681,0.772069,-1.10794,6.4845,1.22683,-0.699047,6.61087,1.47556,-0.320833,6.81869,1.55225,-8.88178e-16,7.03758,1.58475,-0.240498,7.96804,1.2987,-0.954252,8.01004,0.997964,-0.930759,9.39004,0.672431,-1.07706,9.22383,0.80643,-0.79884,9.52422,0.576475,-1.27971,8.47658,0.864396,-1.16543,8.24462,0.867181,-0.594819,7.94705,1.16782,-1.24365,8.70737,0.920553,-0.703141,7.41564,-0.663405,-0.969368,7.19475,-0.394569,-1.18478,7.08871,0.0917449,-1.08706,7.13503,-0.151225,-0.560498,7.06125,1.22961,-0.934993,6.99261,1.01244,-0.267376,7.22903,1.39312,-1.17711,6.99923,0.618257,-1.05774,7.06568,-0.297569,-1.2319,6.98787,0.129224,-1.17761,7.02504,-0.104756,-0.639062,6.84012,1.31989,-1.04642,6.69813,1.1118,-0.292941,7.04109,1.44131,-8.88178e-16,7.22165,1.497,-1.29848,6.83092,0.689394,-0.790782,7.19468,-0.56465,-0.321855,6.57238,1.51538,-0.710574,6.33621,1.42924,-1.0759,6.24974,1.21848,-1.3154,6.38668,0.82238,-1.2518,6.73739,-0.0526351,-1.33274,6.67645,0.172437,-0.965045,6.79898,-0.659187,-1.16145,6.76823,-0.24826,-1.0402,8.04031,-0.725703,-0.887699,7.83016,-0.720408,-0.813586,7.53556,-0.661134,-1.0209,6.95991,-0.448313,-0.838444,7.29121,-0.569719,-0.926177,7.11983,-0.477516,-1.07452,6.81925,-0.437895,-0.173445,8.96122,1.15467,-0.774099,8.99148,1.02389,-1.09957,8.97056,0.948887,-1.23043,8.92922,0.887784,-0.493793,8.9681,1.05204,-0.965995,9.00804,0.985898,-1.17982,8.94411,0.923428,-1.35555,6.76253,0.450005,-1.31566,7.79585,0.286169,-1.17631,7.46502,0.297415,-1.16083,7.21808,0.321872,-1.19333,7.05459,0.359919,-1.26287,6.93962,0.413147,-1.34476,6.55454,0.464748,-0.159492,9.41359,0.745023,-0.342696,9.49027,0.689146,-0.675147,7.64167,-0.722921,-0.915877,7.37232,-0.455065,-1.10358,7.2298,0.0771934,-1.02469,7.28742,-0.180088,-0.518864,7.25655,1.14181,-0.854859,7.17429,0.910439,-0.230755,7.39005,1.32832,-8.88178e-16,7.47513,1.3911,-1.08356,7.16112,0.546589,-0.791081,7.50321,-0.600448,-1.10716,7.18688,0.321011,-0.959971,7.17386,-0.333773,-1.15382,7.06434,0.109545,-1.06877,7.1128,-0.115166,-0.545908,7.00318,1.20819,-0.937342,6.91266,1.00982,-0.255208,7.1745,1.35712,-8.88178e-16,7.31764,1.41773,-1.1692,6.96174,0.613631,-0.711382,7.38666,-0.571905,-0.847845,7.2667,-0.496213,-1.1715,7.02463,0.364214,-1.05939,7.03105,-0.252805,-1.21746,6.95149,0.143825,-1.17433,6.98884,-0.0666063,-0.629174,6.76969,1.32405,-1.02836,6.6315,1.10665,-0.282022,6.97429,1.42014,-1.28022,6.76248,0.687934,-0.792862,7.13732,-0.519086,-0.936811,7.0869,-0.412607,-1.24864,6.89149,0.408689,-0.841249,6.96322,-0.529245,-1.08359,6.4402,1.20862,-1.30226,6.55834,0.760303,-8.88178e-16,6.98216,1.54723,-0.308085,6.77537,1.5221,-0.677455,6.56105,1.44783,-1.28178,6.8088,0.159271,-1.22904,6.86257,-0.0494058,-1.14139,6.90272,-0.2336,-1.00929,6.93804,-0.436165,-1.32308,6.7156,0.434031,-0.96489,6.88944,-0.662043,-1.12124,6.29905,1.26301,-1.36376,6.4354,0.856044,-0.328864,6.61567,1.5711,-0.739449,6.38407,1.48289,-1.37222,6.71032,0.16355,-1.28809,6.77344,-0.0766489,-1.19466,6.81476,-0.280234,-1.10215,6.86125,-0.47201,-1.39558,6.59706,0.482024,-0.233633,7.47132,1.36164,-0.906589,7.25042,0.924419,-1.13717,7.22168,0.551769,-1.14979,7.28492,0.0607913,-0.545114,7.33975,1.15959,-1.07471,7.3409,-0.217797,-0.943895,7.43034,-0.522548,-0.709137,7.71498,-0.806462,-0.817573,7.57032,-0.67045,-1.16242,7.24767,0.318401,-0.696672,7.44916,-0.673081,-0.956683,7.22082,-0.405539,-1.17125,7.10969,0.0882902,-1.07284,7.15761,-0.156917,-0.55161,7.09071,1.21451,-0.908883,7.03001,0.990166,-0.261818,7.25295,1.38103,-1.15249,7.02355,0.603724,-0.828717,7.32241,-0.574991,-1.17429,7.07319,0.351326,-1.03406,7.08481,-0.306851,-1.21856,7.00233,0.124455,-1.15209,7.04061,-0.109213,-0.620687,6.87204,1.29827,-1.02922,6.73386,1.0897,-0.284266,7.0652,1.42421,-1.27957,6.85841,0.678488,-0.783486,7.2316,-0.570055,-0.909019,7.15094,-0.47834,-1.24925,6.95828,0.405289,-1.1496,6.94082,-0.261502,-1.30286,6.85874,0.147486,-1.25242,6.90274,-0.0705539,-0.691807,6.62713,1.45406,-1.09964,6.49994,1.21258,-0.316649,6.83528,1.53663,-1.32979,6.62377,0.764289,-0.822843,7.03559,-0.535506,-1.01531,6.97267,-0.436458,-1.34485,6.77673,0.447066,-0.962371,6.90355,-0.654128,-1.12068,6.31348,1.26457,-1.35781,6.44736,0.849536,-0.325411,6.63083,1.56843,-0.737402,6.40205,1.48726,-1.36482,6.71787,0.162345,-1.28265,6.78178,-0.0757,-1.19108,6.82549,-0.277918,-1.09924,6.8705,-0.466266,-1.39188,6.60734,0.479457,-0.0558476,9.06589,1.07596,-0.0241488,8.45041,1.41067,-0.0385714,7.89495,1.3594,-0.0399887,7.50822,1.43541,-0.0380603,8.06368,1.37764,-0.0335346,7.70347,1.36272,-0.0602664,9.16291,1.01615,-0.029935,8.24878,1.41519,-0.0232522,8.74402,1.34334,-0.0467371,7.00374,1.58227,-0.0377553,7.97728,1.36948,-0.0447745,7.34045,1.45496,-0.0481064,7.19395,1.49377,-0.0480841,6.71555,1.56313,-0.0397342,8.93213,1.19589,-0.0451413,9.39002,0.764039,-0.0387268,7.46265,1.38745,-0.0427114,7.29598,1.41452,-0.0444185,7.13448,1.4657,-0.0447774,6.95039,1.54622,-0.0498117,6.76639,1.63178,-0.0391978,7.53178,1.42397,-0.043865,7.35868,1.44402,-0.0471173,7.21253,1.47887,-0.0464097,7.01768,1.5689,-0.0499256,6.78368,1.62794,-0.0936353,9.604,0.741989,-0.39601,9.7545,0.66084,-0.209719,9.65492,0.721058,-0.723087,9.73189,0.404503,-0.628159,9.7657,0.540556,-0.685638,9.75102,0.500355,-0.754673,9.71353,0.400203,-0.521056,9.77686,0.609638,-1.48322,8.18389,-0.00708664,-1.40678,8.07636,0.0197476,-1.31351,8.13244,-0.418219,-1.41904,8.28835,-0.385392,-1.28776,8.52024,-0.762104,-1.0222,8.34777,-0.896207,-1.17447,8.20133,-0.668468,-1.34993,8.39418,-0.583078,-1.40152,8.07553,0.218831,-1.47436,8.19444,0.177145,-1.36417,8.09084,-0.197264,-1.46709,8.21433,-0.194595,-0.164457,9.43744,0.743553,-0.0499347,9.41117,0.761998,-8.88178e-16,9.40925,0.764248,-0.488439,9.57101,0.639293,-0.348266,9.51627,0.688662,-0.800352,9.57309,0.537277,-0.763088,9.56799,0.552318,-0.715198,9.56974,0.584876,-0.621404,9.58063,0.613716,-0.407302,-6.3965e-06,0.0436081,-1.27562,-6.39579e-06,0.0147574,-1.26702,-6.38189e-06,0.283082,-0.412871,-6.36729e-06,0.751201,-0.455625,-6.37978e-06,0.430463,-1.25394,-0.000216938,-0.257379,-0.990348,-6.4163e-06,-0.277655,-0.723394,-6.41695e-06,-0.27566,-0.403003,-6.41809e-06,-0.277721,-0.69384,-6.39638e-06,0.0344671,-1.01717,-6.39599e-06,0.0314384,-1.02178,-6.38164e-06,0.331851,-0.734753,-6.37913e-06,0.423031,-1.46942,-6.36627e-06,0.774537,-0.729295,-6.36699e-06,0.758025,-1.15139,-6.36811e-06,0.73235,-0.673916,-6.35316e-06,1.07443,-1.22315,-6.35416e-06,1.05154,-1.55626,-6.35314e-06,1.07473,-0.330255,-6.35258e-06,1.08758,-1.30588,2.33173,0.0149183,-1.29989,2.33905,-0.0768289,-1.27202,2.04619,-0.114756,-1.27862,2.04422,-0.0303068,-1.13338,2.0597,-0.0282529,-1.14203,2.06132,-0.112676,-1.14621,2.3488,0.0179544,-1.15527,2.3555,-0.0737248,-1.32926,2.32922,0.0144592,-1.29564,2.0424,-0.0305864,-1.32184,2.33655,-0.0773194,-1.28786,2.04436,-0.11505,-1.26493,2.08701,-0.137056,-1.28993,2.28735,-0.114403,-1.38559,2.0433,-0.214713,-1.26395,2.09859,-0.00404445,-1.41583,2.2475,-0.226286,-1.28627,2.29316,0.0321208,-1.20938,2.11892,0.225171,-1.21863,2.31049,0.23707,-1.21046,2.30789,0.208324,-1.17973,2.11923,0.190534,-1.25996,2.30109,0.027811,-1.21243,2.31507,-0.245045,-1.23692,2.10875,-0.00992647,-1.18819,2.11044,-0.24671,-1.20899,2.71904,-0.165393,-1.25207,2.84022,0.0717215,-1.19652,2.92392,-0.174488,-1.23982,3.00787,0.0992935,-1.18958,2.92535,0.270598,-1.18596,3.05168,0.278547,-1.19291,2.9451,0.30721,-1.21804,2.75459,0.305566,-1.26701,2.92967,0.104351,-1.40822,2.89126,-0.0852738,-1.28034,2.73266,0.0784783,-1.41442,2.68468,-0.0909279,-1.27484,2.91513,-0.0324875,-1.28626,2.71129,-0.0461999,-1.3159,2.67797,-0.0291299,-1.2967,2.97308,-0.00682441,-1.32207,2.68173,0.0554066,-1.3033,2.97188,0.085301,-1.12937,2.96219,-0.0063242,-1.11965,2.95866,0.0854639,-1.16936,2.66876,-0.0294838,-1.1593,2.66994,0.05479,-1.30499,2.68051,0.055376,-1.29999,2.67696,-0.0291312,-1.27465,2.97164,-0.0067417,-1.27984,2.97019,0.0853341,-0.461164,0.781121,0.844178,-0.466477,0.837335,0.688042,-0.429261,0.774019,0.539136,-0.371317,0.628263,0.484688,-0.326587,0.48545,0.556593,-0.321223,0.428178,0.712927,-0.35849,0.492552,0.861635,-0.416434,0.638307,0.916083,-0.443962,0.743327,0.807418,-0.410667,0.637023,0.86094,-0.367537,0.52853,0.820412,-0.339835,0.4814,0.709574,-0.34379,0.523243,0.593353,-0.377084,0.629547,0.539831,-0.420215,0.73804,0.580359,-0.447916,0.78517,0.691197,-0.385811,0.746055,0.797038,-0.389201,0.781923,0.697414,-0.365455,0.741524,0.602403,-0.328483,0.648523,0.567662,-0.299943,0.557399,0.613542,-0.296553,0.521532,0.713166,-0.320299,0.561931,0.808177,-0.357271,0.654932,0.842918,-0.315158,0.713868,0.753441,-0.301618,0.670637,0.775207,-0.284078,0.626516,0.758726,-0.272813,0.60735,0.713651,-0.274421,0.624365,0.666387,-0.287961,0.667596,0.644621,-0.305501,0.711718,0.661103,-0.316766,0.730884,0.706178,-0.279671,0.654099,0.732429,-0.272635,0.677128,0.712045,-0.289114,0.691654,0.689399,-0.436877,0.743749,0.806231,-0.440766,0.784893,0.691952,-0.413526,0.73855,0.582965,-0.371116,0.631869,0.543113,-0.338378,0.527341,0.595742,-0.334489,0.486197,0.710021,-0.361728,0.532539,0.819009,-0.404138,0.63922,0.858859,-0.465692,0.620495,0.911346,-0.407747,0.474734,0.856899,-0.370454,0.409833,0.708289,-0.375845,0.467637,0.551856,-0.420574,0.61045,0.479951,-0.478518,0.756206,0.534399,-0.515734,0.819522,0.683305,-0.510421,0.763309,0.839442,-1.26657,0.808306,0.493823,-1.30452,0.795641,0.654964,-1.38426,0.683912,0.748372,-1.45908,0.538569,0.719329,-1.48516,0.444751,0.584849,-1.44722,0.457416,0.423708,-1.36748,0.569144,0.3303,-1.29265,0.714488,0.359343,-1.3661,0.719199,0.397776,-1.42087,0.612819,0.376519,-1.47923,0.531042,0.444886,-1.507,0.521772,0.562829,-1.48792,0.59044,0.661258,-1.43315,0.696819,0.682515,-1.37479,0.778595,0.614148,-1.34702,0.787865,0.496205,-1.52325,0.715093,0.539144,-1.53296,0.713429,0.509174,-1.52101,0.69978,0.483363,-1.49095,0.753329,0.548094,-1.51509,0.719508,0.57637,-1.53774,0.675511,0.567578,-1.54563,0.647112,0.52687,-1.53415,0.650945,0.478091,-1.51001,0.684767,0.449816,-1.48736,0.728763,0.458608,-1.47946,0.757162,0.499316,-1.41514,0.733751,0.406753,-1.46289,0.641013,0.388223,-1.51377,0.569723,0.447822,-1.53798,0.561643,0.55064,-1.52134,0.621504,0.636446,-1.4736,0.714242,0.654978,-1.42272,0.785531,0.595378,-1.39851,0.793612,0.49256,-1.36814,0.777514,0.61669,-1.4275,0.694348,0.686219,-1.48319,0.586161,0.664601,-1.5026,0.516327,0.5645,-1.47436,0.525755,0.444554,-1.41501,0.60892,0.375026,-1.35931,0.717108,0.396643,-1.3399,0.786941,0.496744,-1.33804,0.739594,0.350629,-1.41286,0.594251,0.321586,-1.4926,0.482522,0.414994,-1.53055,0.469857,0.576135,-1.50447,0.563675,0.710616,-1.42964,0.709018,0.739658,-1.3499,0.820746,0.646251,-1.31196,0.833411,0.485109,-1.16743,3.63709,0.45992,-1.25339,3.6302,0.24893,-1.21704,3.41321,0.210638,-0.409975,3.22617,0.628592,-0.452868,3.55902,0.754518,-0.521659,3.56624,0.842614,-1.15807,2.62835,0.482627,-1.13544,3.39457,0.38724,-1.10083,3.29414,0.608465,-0.633614,3.25811,0.782164,-0.822326,3.26655,0.786012,-1.31883,3.6035,0.683238,-1.16906,3.46589,0.442108,-0.672544,3.53397,1.06609,-0.675962,3.32046,0.833728,-1.14153,3.34873,0.66131,-0.859432,3.32157,0.840278,-1.21479,3.59922,0.919327,-0.933091,3.56936,1.07473,-1.17698,4.30296,1.02018,-1.15537,4.28856,0.8564,-0.781133,4.24829,1.07809,-0.924487,4.27631,1.1604,-0.735761,4.22188,1.03088,-1.11,4.26215,0.809183,-1.10469,4.26201,0.947081,-0.860104,4.2366,1.0774,-1.29172,3.97562,0.750202,-1.20478,3.95905,0.973674,-0.927878,3.92879,1.12692,-0.683455,3.91018,1.11053,-0.571008,3.89956,0.967287,-1.18677,3.96581,0.602518,-1.20517,3.62899,0.515782,-1.13983,3.42266,0.402131,-0.64673,3.27723,0.793751,-0.559533,3.55839,0.898404,-1.11085,3.30859,0.621734,-0.831793,3.28057,0.79948,-0.747104,4.22848,1.04268,-1.12134,4.26875,0.820988,-1.12276,4.27225,0.965357,-0.8762,4.24652,1.09815,-0.59912,3.90221,1.0031,-1.21301,3.96826,0.639439,-1.16424,4.26821,0.849495,-1.17878,4.2806,1.01716,-0.924708,4.25371,1.15822,-0.774781,4.2263,1.0802,-0.725048,4.20092,1.02674,-1.11499,4.24288,0.795745,-0.857282,4.21645,1.07082,-1.1037,4.24225,0.939208,-0.737481,4.20727,1.04011,-1.1273,4.24921,0.809182,-1.24914,1.96197,-0.178952,-0.414986,1.95607,-0.353849,-1.28376,2.96007,-0.136769,-0.381791,2.8367,-0.325976,-0.84911,1.96677,-0.537138,-0.683368,1.96515,-0.538737,-0.527617,1.96233,-0.478635,-1.14343,1.96536,-0.366156,-0.838194,2.793,-0.542682,-0.652923,2.78046,-0.54043,-0.494247,2.787,-0.466766,-1.16961,2.86858,-0.363455,-0.466213,0.566633,-0.251176,-0.413674,0.504901,0.450504,-1.07804,1.09479,0.91748,-0.972649,0.619688,-0.398664,-1.28759,0.448976,0.196158,-1.32343,0.453802,0.488573,-0.671957,0.615671,-0.427715,-0.652786,1.07731,0.909115,-0.390529,0.502167,0.0759872,-0.476147,0.780562,0.714817,-1.30345,0.762581,0.670227,-1.20731,0.54949,-0.163031,-0.464309,0.808765,-0.235687,-0.437274,0.774509,0.374743,-1.07148,1.14133,0.829282,-0.958492,0.84315,-0.387696,-1.25625,0.719717,0.109607,-1.29782,0.807912,0.324189,-0.680504,0.841521,-0.417657,-0.667357,1.12984,0.845017,-0.416793,0.769458,0.0544677,-0.536195,0.980873,0.624159,-1.23895,1.00907,0.588485,-1.18758,0.793045,-0.164153,-0.968392,-6.294e-06,2.42773,-1.1441,-6.29557e-06,2.39185,-0.8184,-6.29493e-06,2.40657,-0.801587,0.0505963,2.35725,-1.08176,0.0701109,2.33737,-0.890931,0.145089,2.31329,-1.02854,0.13252,2.3114,-0.832714,0.114053,2.32496,-0.964131,0.154172,2.30611,-0.971979,0.285007,2.15851,-0.71427,0.225009,2.17975,-1.10225,0.243271,2.1704,-0.835338,0.276072,2.16167,-1.20318,0.133201,2.20716,-0.630897,0.113277,2.2351,-0.589592,-6.29875e-06,2.319,-1.29444,-6.30107e-06,2.266,-1.44789,-6.30973e-06,2.06794,-0.421114,-6.30859e-06,2.09388,-0.475809,0.183392,2.00463,-1.34196,0.202167,1.9735,-0.784409,0.392911,1.90943,-1.19976,0.348498,1.92005,-0.601867,0.33381,1.93754,-0.99199,0.399469,1.90264,-1.01738,0.569816,1.38984,-0.506817,0.4964,1.41779,-1.3146,0.497983,1.37315,-0.744881,0.566407,1.4049,-1.46956,0.318749,1.36428,-0.354124,0.308194,1.42584,-0.26314,-6.33758e-06,1.43071,-1.55957,-6.34093e-06,1.35415,-1.2887,1.69807,0.0281047,-1.19949,1.56805,-0.282824,-0.653916,1.3929,-0.572765,-0.497036,1.82688,0.533305,-0.338087,1.47174,-0.00428325,-0.943288,1.41049,-0.499542,-0.960838,1.85411,0.671443,-0.357301,1.53833,0.290341,-0.423546,1.43296,-0.359208,-0.681087,1.23294,0.807091,-1.02017,1.24765,0.776912,-1.20848,1.13355,0.55713,-1.29194,0.995964,0.254819,-1.25333,0.900427,0.0506986,-1.18087,0.93394,-0.176781,-0.995851,1.05349,-0.371852,-0.632236,1.04932,-0.425182,-0.469837,0.934325,-0.22873,-0.423958,0.895668,0.0517108,-0.451267,0.9146,0.339187,-0.534933,1.16431,0.629688,-1.0362,0.60384,1.4622,-0.455305,0.521127,1.495,-1.35918,0.503442,1.44406,-0.712728,0.600226,1.48063,-1.52751,0.328219,1.44453,-0.29468,0.32384,1.50364,-0.21341,-6.33422e-06,1.50767,-1.63445,-6.33774e-06,1.42714,-1.52252,-6.35434e-06,1.04733,-0.325205,-6.35136e-06,1.11555,-0.383664,0.418815,1.11613,-1.42003,0.431597,1.05905,-0.757723,0.745841,1.1041,-1.2804,0.655761,1.07239,-0.534034,0.65369,1.11361,-1.00917,0.750392,1.09034,-1.01789,0.797933,1.13509,-0.51403,0.714169,1.16152,-1.2966,0.706732,1.11635,-0.748159,0.797843,1.15074,-1.45928,0.471866,1.09756,-0.348892,0.458985,1.15844,-0.238958,-6.34966e-06,1.15446,-1.61756,-6.35282e-06,1.08204,-1.45385,-6.37076e-06,0.671785,-0.357481,-6.3681e-06,0.732485,-0.454366,0.537002,0.728539,-1.33558,0.551557,0.679545,-0.773866,0.950002,0.711719,-1.1697,0.836612,0.689676,-0.583844,0.833725,0.722093,-0.970559,0.956002,0.700918,-0.389841,-6.3191e-06,1.85357,-1.48126,-6.32173e-06,1.7934,-0.455792,0.198496,1.84994,-1.36566,0.215076,1.79978,-0.777808,0.412404,1.83219,-0.585643,0.353642,1.84278,-1.22499,0.364608,1.80753,-0.99746,0.417735,1.82008,-1.00628,0.440574,1.90489,-1.24628,0.384858,1.89165,-0.571896,0.374279,1.92883,-0.774568,0.434946,1.91766,-1.39466,0.23027,1.88347,-0.434929,0.212833,1.93639,-1.51659,-6.31809e-06,1.87675,-0.365363,-6.31531e-06,1.94022,-0.458766,0.920013,-0.279056,-0.377877,0.646653,0.436606,-0.984125,0.947877,-0.421465,-1.335,0.780741,0.0538123,-1.33756,0.67928,0.29422,-0.687114,0.948182,-0.436876,-0.338575,0.774375,0.0937054,-0.417733,0.529508,0.82856,-1.46447,0.539726,0.776228,-1.22369,0.872684,-0.232796,-0.679799,-6.43868e-06,-0.558904,-1.3209,-6.41546e-06,-0.275525,-1.34382,-6.39402e-06,0.0148651,-1.45233,-6.37479e-06,0.271039,-0.347842,-6.42242e-06,-0.320981,-0.354973,-6.39539e-06,0.0463634,-0.343373,-6.36893e-06,0.420584,-1.0995,-6.43518e-06,-0.532634,-0.3815,0.286745,0.411504,-0.328315,0.419292,0.0678627,-0.360253,0.448133,-0.289848,-1.37471,0.315882,0.267116,-1.38291,0.385162,0.0294301,-1.32163,0.435526,-0.241994,-1.01941,0.442244,-0.529966,-0.642546,0.443917,-0.554951,-0.680701,0.670339,-0.512596,-1.23705,0.657457,-0.230208,-1.34139,0.616799,0.048312,-1.3511,0.52074,0.289046,-0.455213,0.647485,-0.246533,-0.340822,0.629119,0.0865085,-0.383378,0.510413,0.402604,-0.986721,0.671239,-0.496278,-1.66156,-6.33757e-06,0.766654,-1.59493,0.19435,0.767512,-1.54321,0.363,0.771696,-0.299942,0.124877,0.832711,-0.261975,-6.3381e-06,0.830366,-0.356749,0.337334,0.831458,-1.0599,1.25993,-0.257421,-0.550692,1.21598,-0.325752,-0.669049,1.22476,-0.353293,-0.80809,1.23755,-0.372266,-0.473327,1.20894,-0.162654,-1.14666,1.26385,-0.121516,-1.288,2.98129,0.151112,-0.39296,2.93195,0.574378,-1.30675,2.18167,0.0601634,-0.713301,1.55512,0.793565,-1.00134,1.54714,0.768441,-1.22627,1.49728,0.538229,-1.32868,1.38533,0.243616,-1.31877,1.31927,0.0309145,-1.23678,1.20167,-0.247409,-1.00347,1.22472,-0.471722,-0.609174,1.2087,-0.533566,-0.403778,1.17313,-0.317377,-0.331647,1.17628,0.0210544,-0.356412,1.22168,0.328454,-0.47867,1.49451,0.613209,-0.680793,2.21897,0.688619,-0.948268,2.21406,0.661509,-0.458263,2.22159,0.531065,-1.3149,2.65733,0.0982695,-0.416363,2.64812,0.528645,-1.13173,2.95465,0.540582,-0.647282,2.92592,0.733413,-1.26359,2.63935,0.272165,-0.660102,2.61634,0.692064,-0.908575,2.60999,0.671023,-1.22546,2.97363,0.323267,-0.880001,2.92756,0.714355,-1.15319,2.20431,0.479808,-1.27255,2.18968,0.243315,-0.72809,1.52228,0.751425,-0.981452,1.51392,0.728655,-1.18576,1.46226,0.516509,-1.28043,1.3512,0.23734,-1.26792,1.28522,0.0388945,-1.1929,1.18389,-0.21823,-0.971801,1.21683,-0.430276,-0.642155,1.20652,-0.492709,-0.448657,1.16247,-0.28843,-0.384668,1.15925,0.0260909,-0.408276,1.20004,0.316838,-0.519075,1.46584,0.585588,-0.699941,1.85125,0.685431,-1.15592,1.83559,0.476767,-1.26685,1.77356,0.216617,-0.71209,1.58518,0.782475,-0.997158,1.57818,0.758493,-1.21903,1.53149,0.531925,-1.32233,1.42492,0.240847,-1.31568,1.35812,0.0306263,-1.23296,1.23925,-0.251042,-0.997298,1.24377,-0.474575,-0.613762,1.22759,-0.537586,-0.405806,1.19978,-0.321667,-0.332308,1.20659,0.0184557,-0.356503,1.25415,0.324545,-0.480537,1.5283,0.605013,-0.807728,-6.43232e-06,-0.492708,-0.942668,-6.43122e-06,-0.481073,-0.359224,-6.33562e-06,1.47569,-1.47985,-6.33844e-06,1.41111,-1.17537,-6.33767e-06,1.42866,-0.673346,-6.33641e-06,1.45759,-0.725063,-6.31887e-06,1.85888,-1.16295,-6.31997e-06,1.83365,-1.42853,-6.32064e-06,1.81834,-0.451072,-6.31818e-06,1.87467,-1.05377,-6.29799e-06,2.33644,-0.85912,-6.29758e-06,2.34584,-0.770581,-6.3078e-06,2.11211,-0.542757,-6.30722e-06,2.12524,-1.35552,-6.30927e-06,2.0784,-1.13469,-6.30872e-06,2.09113,-0.434958,-6.41827e-06,-0.277515,-0.435881,-6.39645e-06,0.0426964,-0.483464,-6.37926e-06,0.429721,-0.44443,-6.36726e-06,0.751881,-0.364531,-6.35264e-06,1.08626,-0.390553,-6.3357e-06,1.47388,-0.478399,-6.31825e-06,1.8731,-0.565479,-6.30728e-06,2.12393,-1.23193,-6.41428e-06,-0.259724,-1.2441,-6.39573e-06,0.0167916,-1.23711,-6.38149e-06,0.289029,-1.43064,-6.36649e-06,0.769393,-1.51564,-6.35327e-06,1.0719,-1.44272,-6.33835e-06,1.41325,-1.39614,-6.32056e-06,1.82021,-1.32859,-6.3092e-06,2.07996,-0.838476,-6.29896e-06,2.31438,-0.671883,-0.000328881,2.27822,-1.20979,0.000349658,2.25983,-1.06825,-6.29939e-06,2.30452,-0.687832,-6.30128e-06,2.26116,-1.1936,-6.30201e-06,2.24455,-0.628361,-0.000325434,-0.4517,-0.802078,-6.43142e-06,-0.478167,-0.945862,-6.43012e-06,-0.467444,-1.07654,-0.000176897,-0.445314,-0.634663,4.03011e-05,-0.439184,-1.06913,-2.47859e-05,-0.433538,-1.15281,7.84932,0.732566,-1.02884,7.18582,0.760986,-1.04633,7.48992,0.667375,-1.29936,8.14217,0.594306,-1.42385,8.32208,0.564128,-1.2312,6.53935,0.999114,-1.06941,6.98126,0.815587,-1.19895,6.75151,0.907431,-1.1999,6.31595,1.01771,-0.973239,7.16111,0.735,-1.067,6.929,0.814452,-1.17962,6.68462,0.903839,-1.19332,6.49855,0.985018,-1.25149,6.36621,1.06466,-1.0338,7.21744,0.749622,-1.04287,7.01417,0.797031,-1.18023,6.78344,0.891745,-1.22743,6.55474,0.988965,-1.24673,6.37937,1.0599,-1.0848,8.57531,1.02869,-1.26645,2.46102,-0.157861,-0.407579,2.39966,-0.332246,-0.843652,2.37989,-0.53991,-0.668146,2.3728,-0.539584,-0.515147,2.37617,-0.469185,-1.15652,2.41697,-0.364806,-0.814202,1.59412,-0.4577,-1.09287,1.60773,-0.31362,-1.18929,1.6081,-0.152028,-0.436538,1.58227,-0.255813,-0.535312,1.58844,-0.401675,-0.669081,1.59097,-0.447499,-1.37217,4.55643,-0.124973,-0.164654,4.36735,-0.254191,-0.822119,4.47536,-0.645971,-0.334341,4.39552,-0.53338,-0.584028,4.43946,-0.629051,-1.19403,4.52494,-0.448503,0.000622508,9.37874,-0.849514,-8.88178e-16,9.49208,-0.771903,4.7793e-05,9.55431,-0.73164,9.81142e-05,9.53471,-0.725491,-8.88178e-16,8.73048,-1.0934,-8.88178e-16,8.50387,-1.12801,-8.88178e-16,9.59146,0.74638,-8.88178e-16,7.05105,1.57154,-8.88178e-16,8.24821,1.41598,-8.88178e-16,7.51918,1.43929,-8.88178e-16,6.81377,1.6327,-8.88178e-16,7.37736,1.448,-8.88178e-16,6.79603,1.63658,-8.88178e-16,7.16361,1.46898,-8.88178e-16,9.38926,0.766208,-8.88178e-16,7.97805,1.37499,-0.500149,6.17609,1.36244,-0.217016,6.16859,1.47093,0,6.16333,1.48198,-0.114675,5.00972,1.12501,-0.469853,6.20299,1.36949,-0.256166,5.35529,1.35937,-0.477028,5.80914,1.43164,-0.470357,6.1753,1.37386,-0.003073,9.1912,-0.925051,0.108215,9.19215,-0.914283,0.167592,8.34013,-1.08133,0.681061,9.44915,-0.743908,0.121073,8.72755,-1.05424,0.82083,9.30647,-0.839652,0.920417,8.64071,-0.968879,1.04516,8.78605,-0.918264,0.892716,9.45877,-0.722519,1.18353,8.95742,-0.861669,0.801336,8.98608,-0.943815,0.930281,9.13709,-0.902773,1.03166,9.31619,-0.829477,0.498321,9.18067,-0.899012,0.384714,9.19285,-0.910507,0.626642,8.85707,-0.993186,0.448973,8.78231,-1.02733,0.583776,8.42817,-1.04041,0.779697,8.51237,-1.02262,0.697926,9.16216,-0.900021,0.582664,9.30172,-0.839698,0.56488,9.0488,-0.96172,0.396103,8.99359,-0.973637,0.10763,8.97622,-0.991797,0.243976,9.19223,-0.906027,0.273,8.74414,-1.03653,0.366069,8.37397,-1.05567,0.238852,8.97641,-0.979858,0.865658,8.82401,-0.966894,0.990117,8.95397,-0.923049,1.13288,9.11555,-0.858868,0.696694,8.67986,-1.01401,0.523102,8.58589,-1.04414,0.146644,8.50307,-1.08476,0.325939,8.54529,-1.05914,0.592728,9.6172,-0.444366,0.286892,9.52368,-0.659464,0.448305,9.55169,-0.579823,0.124942,9.5217,-0.69375,0.135287,9.47847,-0.733327,0.515985,9.5281,-0.631134,0.332567,9.49373,-0.69122,0.646708,9.58573,-0.566581,0.744367,9.55013,-0.630761,0.28909,9.3893,-0.782715,0.455795,9.38012,-0.783675,0.129615,9.3766,-0.806083,0.124244,9.55866,-0.700216,0.281518,9.56012,-0.664711,0.58073,9.64911,-0.450652,0.437166,9.58836,-0.583589,1.23111,4.95519,1.00802,0.860301,4.61757,1.36347,0.874464,4.62829,1.35088,1.22862,4.93203,1.02112,1.10431,5.65297,1.0009,0.733346,5.45398,1.44201,0.717196,5.45033,1.45855,1.22227,4.94697,1.01996,0.87131,4.64614,1.34865,1.22481,4.97141,1.00643,0.857345,4.6357,1.36111,0.805736,6.60502,0.855035,0.485687,6.6032,1.14123,0.471918,6.59881,1.15504,0.79388,6.59071,0.879455,1.03658,6.61503,0.548304,0.803338,6.59402,0.862927,1.02741,6.61025,0.565817,1.25749,4.8913,1.10901,1.54941,5.19326,0.658291,1.26788,4.90153,1.09322,1.53761,5.18116,0.676439,1.15266,5.63575,1.13854,1.48276,5.84839,0.66323,1.16556,5.64067,1.12238,1.47098,5.83565,0.683817,1.54531,5.16607,0.678623,1.27336,4.88382,1.0964,1.26272,4.87345,1.11242,1.5579,5.17766,0.660169,1.6707,5.45201,0.162186,1.61352,5.19747,0.737636,1.61444,5.20614,0.717345,1.64903,5.44214,0.190558,1.53393,5.86292,0.72827,1.52606,6.03371,0.145654,1.52907,5.8583,0.743335,1.63856,5.45681,0.190405,1.60523,5.22352,0.715458,1.66037,5.46608,0.161849,1.60459,5.21469,0.735428,1.04664,6.61438,0.557526,1.13807,6.67709,0.0840332,1.04526,6.60822,0.569838,1.15404,6.68501,0.0976604,0.927779,6.66873,-0.309474,1.14467,6.68938,0.088545,0.936918,6.67077,-0.293666,1.72123,5.50301,0.202874,1.45445,5.58012,-0.29714,1.71209,5.50522,0.185297,1.46509,5.57728,-0.276893,1.57747,6.05059,0.181926,1.33285,6.0435,-0.304587,1.57037,6.04819,0.164711,1.34521,6.04065,-0.284453,1.47287,5.56405,-0.277508,1.7201,5.49034,0.187538,1.72938,5.48797,0.205414,1.4624,5.56639,-0.298266,0.799654,6.27963,0.911206,0.483485,6.15123,1.22905,0.805083,6.30092,0.897014,0.470829,6.14887,1.24102,1.09679,5.67361,0.993743,0.727738,5.47457,1.43697,0.711882,5.47066,1.45344,0.916151,6.10406,0.904104,1.15709,6.27265,0.488399,0.925481,6.10787,0.889704,1.14867,6.26206,0.505881,1.14447,5.65717,1.13238,1.47199,5.86736,0.657831,1.15738,5.66197,1.11621,1.46055,5.85471,0.678163,1.22376,6.32215,0.0809327,1.20262,6.21103,0.545251,1.23851,6.33019,0.0558579,1.2012,6.20879,0.563074,1.49512,6.02832,0.170325,1.52783,5.8739,0.726507,1.51722,6.04457,0.144386,1.52329,5.86935,0.740704,1.25919,6.35556,0.071204,1.01897,6.33669,-0.335784,1.25173,6.35286,0.056883,1.03047,6.33425,-0.318922,1.55992,6.07469,0.179586,1.31544,6.06523,-0.302733,1.55288,6.07217,0.162582,1.32769,6.06243,-0.283055,0.846593,6.33774,0.844265,0.484563,6.19536,1.23262,0.4704,6.189,1.24712,1.0981,5.64714,1.0202,0.794565,6.59939,0.869356,1.08766,5.66654,1.01371,0.832785,6.33083,0.859301,0.889645,6.12276,1.00598,1.17381,6.24125,0.603225,0.900333,6.12749,0.989776,1.1642,6.23189,0.621931,1.50163,6.01768,0.173938,1.12413,6.66889,0.107133,1.25946,6.20598,0.640932,1.29853,6.32366,0.113777,1.25699,6.19999,0.654515,1.2808,6.31118,0.138614,1.33731,6.37921,0.147945,1.09117,6.34153,-0.28609,1.32903,6.38095,0.136189,1.10278,6.34021,-0.269099,0.488873,6.19916,1.33033,0.25033,5.36706,1.32517,0.0542856,4.92698,1.14809,0.099046,5.03876,1.10788,0.211915,6.19269,1.43786,0.497832,5.81178,1.39333,0.192268,5.80326,1.49456,0.137399,5.39236,1.46901,0.0731335,4.59217,-0.0120733,0.100917,4.40748,-0.00173656,0.314639,4.62306,-0.377636,0.323407,4.44108,-0.37114,0.606193,4.89125,0.900865,0.635467,4.72966,0.842964,0.21943,4.72685,0.739344,0.246582,4.55575,0.702634,0.0829097,4.62919,0.373319,0.11349,4.46831,0.368416,0.233284,4.07833,0.0793629,0.193658,4.25569,0.0537732,0.217643,4.09561,0.356387,0.189429,4.26947,0.359929,0.332088,4.05768,-0.21682,0.300387,4.23265,-0.277352,0.471438,4.14229,0.777566,0.44958,4.31299,0.775623,0.316056,4.11667,0.635807,0.294851,4.28226,0.649578,0.40585,4.83688,0.870815,0.437631,4.66662,0.844451,0.677144,4.18713,0.742934,0.658498,4.33369,0.767106,0.364748,4.62579,-0.408845,0.373232,4.44378,-0.402012,0.39098,4.05259,-0.261568,0.3599,4.22736,-0.32292,0.603477,1.9121,-0.423421,0.611304,1.73453,-0.380341,0.51636,2.60852,-0.4121,0.494412,2.74866,-0.390885,0.594355,2.63918,0.562351,0.608609,2.80675,0.598348,0.468806,2.64917,0.48992,0.506257,2.46745,0.501908,0.639104,2.8008,0.592587,0.660693,2.61333,0.59948,0.546858,1.92416,-0.36961,0.543625,1.74757,-0.31443,0.379231,2.39217,0.260569,0.426134,2.20008,0.276134,0.364949,2.12315,-0.0378521,0.394168,1.92814,-0.000206508,0.341923,2.59239,0.135694,0.317452,2.72863,0.141434,0.45498,2.62563,0.437593,0.428913,2.74901,0.485939,0.480975,2.6055,-0.377078,0.459352,2.74443,-0.356505,0.378742,2.59491,-0.14181,0.352606,2.73059,-0.126871,0.394545,1.81181,-0.104572,0.464011,1.66839,-0.175256,0.479311,1.8989,-0.294257,0.528147,1.7355,-0.346588,0.563943,1.71612,0.45266,0.566577,1.57368,0.418656,0.404593,1.70103,0.205313,0.413268,1.57448,0.0944608,0.734736,1.74209,0.591877,0.718168,1.57192,0.557004,0.516637,1.94321,-0.369086,0.573191,1.78599,-0.431116,0.427614,4.86104,1.0022,0.717274,5.05475,1.05587,1.05952,5.38334,0.910986,1.33512,5.53984,0.56735,1.00986,3.98499,0.634113,1.36975,4.01367,0.23084,0.501112,3.88802,0.822398,0.736715,3.93073,0.796428,1.03413,4.60923,0.725036,1.2866,4.68491,0.418816,0.46465,4.35353,0.846539,0.729448,4.45428,0.847219,1.28369,5.80026,0.566486,1.06291,5.63168,0.915936,0.713315,5.23881,1.10903,0.412403,5.00045,1.04823,1.23023,5.46826,0.74114,1.14479,4.00519,0.435202,1.18749,4.64706,0.579617,1.18166,5.72239,0.74374,1.2959,3.92804,-0.030067,1.3978,5.19965,-0.0838505,0.213585,3.91733,-0.109469,0.162325,4.82782,-0.317196,1.14414,3.99656,-0.272366,0.838192,4.94292,-0.560915,0.613729,4.88263,-0.566678,0.34107,4.83686,-0.500145,1.20101,5.05931,-0.341341,0.792062,4.01562,-0.432439,0.363157,3.96462,-0.27842,0.565495,4.00626,-0.393196,1.23195,4.74797,-0.244392,1.23195,4.95843,-0.261327,1.19308,5.03106,0.555964,1.18287,4.84155,0.531235,1.28859,4.7822,-0.010871,1.28145,4.82262,0.26605,1.28854,4.98809,-0.0191948,1.28159,5.01925,0.276103,1.1953,4.8388,0.497508,1.20424,5.02929,0.5205,1.23321,5.03065,0.520132,1.22429,4.83979,0.497058,1.31846,5.01582,0.275463,1.39471,4.95643,-0.0412652,1.31822,4.81639,0.265868,1.39471,4.74988,-0.0333644,1.2117,4.84217,0.531258,1.2219,5.03201,0.555988,1.31348,4.98215,0.096143,1.31405,4.77841,0.0939912,1.3522,4.77259,0.175044,1.35109,5.02557,0.176828,1.35469,4.78024,0.259587,1.35636,5.03157,0.268851,1.22581,5.0261,0.176259,1.21518,5.03148,0.26786,1.24426,4.77376,0.174007,1.23616,4.77975,0.258406,1.3602,4.79028,0.256864,1.35615,4.78004,0.172864,1.35011,5.01685,0.175815,1.35392,5.02274,0.267787,1.37105,4.4489,0.249758,1.36506,4.45622,0.158003,1.34384,4.2229,0.122854,1.35044,4.22093,0.207293,1.22606,4.22417,0.211395,1.23201,4.22902,0.126743,1.23425,4.47294,0.255482,1.24266,4.4791,0.163701,1.37451,4.45717,0.251925,1.34386,4.21128,0.208809,1.36705,4.46455,0.160155,1.3391,4.21571,0.124133,1.30345,4.23731,0.0391949,1.32479,4.43753,0.0708511,1.43297,4.19567,-0.0630484,1.3126,4.25013,0.21711,1.45654,4.40004,-0.042933,1.33651,4.44506,0.25226,1.14845,4.27296,0.440566,1.17922,4.462,0.458346,1.15003,4.46385,0.459839,1.11931,4.2752,0.442049,1.29989,4.45237,0.255765,1.2718,4.46544,-0.0326934,1.27656,4.26021,0.220533,1.24844,4.26178,-0.052253,1.22999,4.47441,-0.177091,1.17105,4.27173,-0.182735,0.589011,9.2982,0.757734,0.968417,9.3801,0.629753,0.172975,9.08376,1.00515,1.11182,9.20222,0.757404,0.671429,9.16864,0.884182,0.869969,8.52034,1.08108,0.194862,8.45262,1.29614,0.236057,8.06072,1.28055,0.891635,8.13091,1.04608,0.97619,7.89185,0.902251,0.22199,7.88761,1.26626,0.227349,7.44857,1.34614,0.880644,7.22653,0.918749,1.36269,8.10565,0.408798,1.10984,7.20651,0.550029,1.12541,7.27308,0.0699728,1.28386,7.82749,0.529445,1.24953,7.79308,0.0304257,0.498327,9.49397,0.638924,0.834085,9.50592,0.544423,0.859379,9.3472,0.687163,0.980931,9.21246,0.81271,0.732881,9.50294,0.584278,1.18664,8.54439,0.914838,1.35306,8.43613,0.71247,1.09453,8.30782,0.927236,1.19253,8.19992,0.76936,0.890903,8.20898,-0.908566,0.800113,8.01378,-0.872131,0.935784,7.67491,-0.534809,1.10293,7.87978,-0.475855,1.18457,7.81345,-0.219872,1.06015,7.54515,-0.218112,1.12998,7.48865,0.0490511,0.186149,7.67058,1.25703,0.913936,7.51374,0.782674,1.12685,7.48103,0.518527,0.18954,9.19297,0.934677,0.429015,9.13679,0.904154,0.539081,8.48078,1.17598,0.566313,8.05767,1.17659,0.586686,7.85494,1.09756,0.529227,7.31502,1.14755,0.537573,7.57239,1.04101,0.394313,9.24802,0.818941,0.750643,9.32668,0.716161,0.854026,9.20056,0.854527,0.638432,9.50309,0.609592,0.206841,8.24815,1.32497,0.887388,8.32012,1.09621,0.550453,8.2669,1.20539,1.03503,8.41506,0.995456,1.43243,8.24784,0.393074,0.176537,8.73775,1.24495,0.846725,8.75738,1.06007,1.15466,8.74266,0.935459,1.2788,8.68174,0.844964,0.513106,8.73871,1.11214,1.04285,8.77912,1.01982,0.932261,7.41761,-0.497468,1.05229,7.33026,-0.203314,0.69186,7.69165,-0.767552,1.14046,6.93059,-0.245228,0.811228,7.00456,-0.521365,1.2836,6.84667,0.154413,1.23317,6.89359,-0.0607293,1.30581,6.60931,0.765183,1.08568,6.48592,1.20677,0.687515,6.6081,1.448,0.314802,6.81543,1.52305,0.230696,7.97296,1.27077,0.937014,8.0185,0.974915,0.924134,9.3689,0.652205,1.06637,9.20562,0.785124,0.791482,9.50486,0.554772,1.25878,8.48235,0.843693,1.14495,8.25266,0.846793,0.583064,7.95528,1.14148,1.22478,8.70617,0.897263,0.692775,7.42502,-0.63686,0.95157,7.21071,-0.376445,1.15588,7.09308,0.0984715,1.06222,7.145,-0.137691,0.546368,7.05915,1.20323,0.91508,6.98458,0.99149,0.25672,7.23028,1.3651,1.14929,6.99214,0.609552,1.03346,7.06657,-0.279971,1.20271,6.98229,0.133325,1.15026,7.0211,-0.0930879,0.625259,6.83243,1.29439,1.02652,6.69311,1.08992,0.282361,7.03528,1.41385,1.26968,6.82536,0.68308,0.774579,7.19811,-0.539638,0.330003,6.59398,1.49624,0.711216,6.35879,1.40951,1.06313,6.27388,1.20606,1.29446,6.40808,0.824194,1.23559,6.75978,-0.0409673,1.31512,6.69841,0.182793,0.940637,6.80818,-0.644368,1.14478,6.78995,-0.235995,1.02024,8.05218,-0.706718,0.868818,7.84163,-0.700118,0.808934,7.55411,-0.638027,1.00193,6.95834,-0.425126,0.831451,7.30991,-0.54733,0.908157,7.12696,-0.454619,1.05434,6.83627,-0.423652,0.167267,8.9442,1.13075,0.771291,8.97858,0.996947,1.08729,8.95915,0.924009,1.21152,8.92093,0.866027,0.489176,8.95347,1.02626,0.958527,8.9951,0.959881,1.16458,8.9348,0.899325,1.32557,6.76139,0.450172,1.28756,7.80635,0.286186,1.14708,7.47177,0.297376,1.13507,7.2334,0.322921,1.1635,7.05157,0.358837,1.23359,6.93323,0.414473,1.32442,6.57503,0.472904,0.155448,9.40137,0.717925,0.337052,9.47998,0.661537,0.679866,7.66309,-0.702449,0.898228,7.38792,-0.436486,1.07601,7.23938,0.084137,1.0005,7.30012,-0.167694,0.503135,7.25927,1.11641,0.83523,7.17886,0.88822,0.219325,7.3944,1.30092,1.05583,7.1691,0.538388,0.783733,7.51921,-0.576162,1.07808,7.19423,0.320775,0.93697,7.1834,-0.317043,1.12439,7.06483,0.115345,1.042,7.11701,-0.102311,0.530226,6.99686,1.18341,0.918139,6.90277,0.989007,0.243686,7.17357,1.32944,1.14278,6.95132,0.603968,0.725306,7.41031,-0.559789,0.83916,7.28221,-0.472046,1.1418,7.02045,0.36393,1.03447,7.03062,-0.236105,1.18815,6.94612,0.147282,1.14606,6.9844,-0.0575972,0.614463,6.75929,1.30007,1.00917,6.62092,1.08617,0.270915,6.96703,1.39323,1.25176,6.75671,0.680396,0.782923,7.15066,-0.494125,0.918406,7.09296,-0.389705,1.21913,6.88638,0.410284,0.825819,6.9578,-0.504094,1.06245,6.43991,1.18734,1.27345,6.55644,0.75215,0.304593,6.77759,1.49239,0.667741,6.56268,1.41949,1.25238,6.80935,0.16521,1.2012,6.86596,-0.0387643,1.1152,6.90531,-0.219195,0.98818,6.93087,-0.416094,1.29312,6.71469,0.435314,0.939426,6.8873,-0.646328,1.10259,6.31261,1.24382,1.33514,6.4399,0.848253,0.329653,6.62747,1.54353,0.734202,6.39819,1.45694,1.34303,6.71314,0.169846,1.26059,6.77682,-0.0651624,1.16847,6.8203,-0.266691,1.07616,6.86121,-0.45702,1.36574,6.60012,0.482586,0.21855,7.46036,1.33814,0.885475,7.24448,0.903953,1.10858,7.22193,0.542685,1.12024,7.28635,0.0657454,0.527528,7.33053,1.1371,1.04654,7.34268,-0.207625,0.919939,7.43468,-0.505019,0.692159,7.72592,-0.784285,0.79925,7.57905,-0.648359,1.13247,7.24911,0.317742,0.678278,7.45086,-0.649443,0.930509,7.21482,-0.392164,1.14567,7.09426,0.0910084,1.04627,7.14661,-0.148366,0.534427,7.0757,1.19504,0.891022,7.01232,0.973791,0.245747,7.23939,1.35963,1.13178,7.00383,0.594668,0.807859,7.32202,-0.553433,1.15067,7.05507,0.347638,1.01193,7.06662,-0.297921,1.19847,6.98006,0.124579,1.13264,7.01816,-0.105035,0.604641,6.85332,1.28118,1.01314,6.7152,1.07257,0.268027,7.04729,1.40645,1.25983,6.83795,0.668892,0.764029,7.22437,-0.548398,0.886795,7.14053,-0.461085,1.22841,6.93697,0.401891,1.13033,6.91947,-0.252952,1.2802,6.83908,0.147095,1.23149,6.88154,-0.0670583,0.67662,6.60589,1.4393,1.08312,6.47964,1.19791,0.301531,6.81564,1.51972,1.30708,6.60803,0.752604,0.806472,7.02145,-0.514719,0.997158,6.95401,-0.421549,1.32128,6.75885,0.442053,0.943919,6.88282,-0.642732,1.10124,6.30657,1.24279,1.33616,6.43058,0.837306,0.315616,6.62323,1.54111,0.725527,6.39735,1.46011,1.34112,6.69949,0.161932,1.25864,6.76462,-0.0703238,1.16742,6.80889,-0.269895,1.07814,6.85145,-0.456705,1.36822,6.59017,0.472702,0.0541062,9.04783,1.05207,0.0190693,8.44623,1.3814,0.0313257,7.89689,1.33035,0.0357982,7.51317,1.40612,0.0316047,8.06791,1.34865,0.0251408,7.69839,1.33437,0.058384,9.14426,0.99273,0.0241899,8.25056,1.3858,0.0195397,8.73195,1.31614,0.0432287,7.00168,1.55255,0.0309115,7.98043,1.34044,0.0409209,7.34298,1.42532,0.042126,7.19029,1.4646,0.0577734,6.73802,1.54577,0.0376769,8.91359,1.1724,0.0438769,9.37623,0.737428,0.033878,7.46765,1.35827,0.0376126,7.29725,1.38498,0.0374016,7.13036,1.43683,0.0438206,6.95225,1.51629,0.0510184,6.77636,1.60351,0.030163,7.52005,1.39788,0.0331118,7.34446,1.41989,0.0338994,7.19519,1.45826,0.0318652,6.99931,1.55017,0.040847,6.77458,1.60083,0.0904382,9.6016,0.712257,0.386443,9.75279,0.632459,0.202615,9.65323,0.691961,0.705939,9.71403,0.387562,0.616068,9.75676,0.514598,0.666692,9.73809,0.481023,0.745211,9.6927,0.380798,0.510492,9.77254,0.581895,1.45907,8.20151,-0.00456246,1.38078,8.09101,0.0227845,1.29011,8.14606,-0.4053,1.39613,8.30283,-0.372536,1.26802,8.53277,-0.743305,1.00234,8.35881,-0.876623,1.15337,8.21318,-0.650733,1.32877,8.40688,-0.566032,1.37411,8.08766,0.217564,1.44857,8.20957,0.17477,1.33959,8.10596,-0.18909,1.44386,8.23159,-0.186708,0.157857,9.43656,0.714302,0.0470983,9.40895,0.732215,0.480487,9.56438,0.611138,0.340707,9.51255,0.65987,0.792714,9.5535,0.515884,0.749223,9.54984,0.532876,0.701014,9.55517,0.562817,0.612175,9.57013,0.587174,0.407302,0.0299936,0.0436082,1.27568,0.0299927,0.0147483,1.26702,0.0299936,0.283082,0.412871,0.0299927,0.751201,0.455625,0.0299936,0.430463,1.25411,0.0297822,-0.257468,0.990348,0.0299936,-0.277655,0.723395,0.0299936,-0.275658,0.402945,0.0299927,-0.277802,0.69384,0.0299936,0.0344672,1.01717,0.0299936,0.0314385,1.02178,0.0299936,0.331851,0.734753,0.0299936,0.423031,1.46942,0.0299936,0.774537,0.729295,0.0299936,0.758025,1.15139,0.0299936,0.73235,0.673916,0.0299936,1.07443,1.22315,0.0299936,1.05154,1.55626,0.0299936,1.07473,0.330255,0.0299927,1.08758,1.30256,2.302,0.0126935,1.29656,2.30931,-0.079061,1.27534,2.076,-0.11421,1.28194,2.07403,-0.0297712,1.15756,2.07727,-0.0256692,1.16351,2.08212,-0.110321,1.16575,2.32604,0.0184177,1.17417,2.3322,-0.0733632,1.30602,2.31027,0.0148611,1.27537,2.06438,-0.0282554,1.29855,2.31765,-0.0769092,1.27061,2.06881,-0.112931,1.2396,2.09071,-0.152696,1.26284,2.29113,-0.126716,1.36806,2.04635,-0.238864,1.23443,2.10217,-0.00800606,1.3983,2.25056,-0.250438,1.25692,2.29669,0.0270147,1.18076,2.1223,0.216823,1.19001,2.31387,0.228722,1.18207,2.31309,0.200138,1.15135,2.12443,0.182348,1.23035,2.3054,0.0257135,1.18311,2.318,-0.239417,1.20719,2.11278,-0.0103211,1.15887,2.11337,-0.241082,1.17965,2.7168,-0.159535,1.22215,2.83848,0.0730289,1.16718,2.92168,-0.168629,1.21004,3.0067,0.0958107,1.16086,2.92485,0.261934,1.15725,3.05118,0.269884,1.16434,2.94289,0.298338,1.18947,2.75239,0.296694,1.23763,2.92766,0.0986492,1.3979,2.89215,-0.113426,1.25075,2.73072,0.0739701,1.4041,2.68556,-0.11908,1.24915,2.91443,-0.0479668,1.26408,2.71104,-0.0663925,1.29455,2.69903,-0.0285485,1.27713,2.95037,-0.0056818,1.29817,2.69984,0.0562947,1.28378,2.94912,0.086439,1.15209,2.94268,-0.0044702,1.1429,2.93981,0.0873985,1.18676,2.69316,-0.0279896,1.17992,2.69164,0.05672,1.30296,2.71042,0.0543414,1.29796,2.70687,-0.0301548,1.2767,2.94172,-0.00740456,1.28189,2.94027,0.0846777,0.471648,0.758845,0.827037,0.47639,0.809023,0.687664,0.44317,0.752505,0.554745,0.391447,0.622398,0.506143,0.351536,0.494843,0.570351,0.346713,0.443704,0.709899,0.380011,0.501168,0.842593,0.43172,0.631364,0.891222,0.464907,0.725081,0.79609,0.434385,0.62763,0.845154,0.394847,0.528202,0.808002,0.369445,0.485022,0.706393,0.373077,0.523354,0.599848,0.403598,0.620776,0.550785,0.443138,0.720235,0.587939,0.468532,0.763438,0.689547,0.395136,0.723591,0.779479,0.397937,0.753225,0.697168,0.378318,0.719847,0.61867,0.347772,0.643009,0.589967,0.324192,0.567722,0.627872,0.321391,0.538089,0.710183,0.341011,0.571466,0.788681,0.371556,0.648304,0.817385,0.335795,0.695423,0.741872,0.325095,0.661926,0.758686,0.311177,0.626698,0.745858,0.302248,0.611731,0.709864,0.303643,0.62478,0.673162,0.313985,0.658408,0.656381,0.327999,0.693601,0.669202,0.336831,0.708603,0.705205,0.308094,0.649179,0.724188,0.300732,0.666968,0.709343,0.315067,0.676912,0.69241,0.43903,0.720972,0.786826,0.44224,0.754934,0.692495,0.419755,0.716681,0.602533,0.384749,0.628623,0.569638,0.357726,0.542341,0.61308,0.354516,0.50838,0.70741,0.376999,0.546632,0.797372,0.412007,0.634692,0.830267,0.462573,0.619801,0.881517,0.412683,0.494099,0.834525,0.38063,0.438,0.706543,0.385199,0.488,0.571801,0.423693,0.611144,0.50978,0.473626,0.736744,0.556699,0.505694,0.791304,0.685012,0.501116,0.742864,0.819557,1.28169,0.783167,0.500116,1.31439,0.772254,0.638974,1.3831,0.675977,0.719465,1.44758,0.550733,0.694438,1.47005,0.46989,0.578555,1.43735,0.480803,0.439698,1.36864,0.57708,0.359208,1.30416,0.702324,0.384234,1.36683,0.702481,0.422674,1.41203,0.61467,0.405129,1.46021,0.54717,0.461561,1.48313,0.539518,0.558915,1.46738,0.596199,0.640162,1.42217,0.684008,0.657709,1.374,0.751509,0.601276,1.35107,0.759161,0.503921,1.4979,0.699234,0.536661,1.50707,0.699109,0.514144,1.49625,0.687925,0.495466,1.47258,0.729899,0.544411,1.49169,0.703137,0.567166,1.50969,0.66818,0.559864,1.51569,0.646001,0.528376,1.50691,0.649146,0.490532,1.4877,0.675858,0.467794,1.4698,0.710866,0.475079,1.46347,0.732861,0.506629,1.4089,0.715441,0.429682,1.44835,0.63882,0.414373,1.49039,0.57992,0.463614,1.51039,0.573244,0.548563,1.49664,0.622702,0.619456,1.4572,0.699322,0.634768,1.41516,0.758222,0.585525,1.39516,0.764899,0.500577,1.34943,0.754229,0.613967,1.40384,0.67799,0.677704,1.45489,0.578813,0.657887,1.47269,0.514795,0.566121,1.4468,0.523437,0.456165,1.39238,0.599677,0.392427,1.34133,0.698854,0.412243,1.32353,0.762872,0.504008,1.33065,0.721124,0.373086,1.39744,0.591386,0.347162,1.46862,0.491653,0.430541,1.50249,0.480347,0.574382,1.47922,0.564093,0.694423,1.41243,0.693832,0.720347,1.34125,0.793563,0.636969,1.30738,0.804869,0.493128,1.1387,3.6371,0.468567,1.22649,3.63696,0.237505,1.18945,3.41472,0.198948,0.426742,3.23194,0.604395,0.470508,3.56753,0.731794,0.542733,3.57427,0.822832,1.13453,2.62872,0.464041,1.10653,3.39736,0.379742,1.07581,3.30326,0.594643,0.644835,3.26747,0.755962,0.815241,3.28029,0.760304,1.28952,3.60918,0.686216,1.14181,3.47319,0.452306,0.684705,3.54608,1.04149,0.685484,3.34015,0.81319,1.12105,3.36915,0.653331,0.852567,3.34372,0.821244,1.19299,3.61027,0.901944,0.925588,3.58213,1.04864,1.16063,4.27985,1.01026,1.14546,4.2619,0.865962,0.794313,4.22245,1.07045,0.927245,4.25489,1.13958,0.752132,4.20086,1.04467,1.1268,4.24356,0.825684,1.12281,4.2403,0.957099,0.862456,4.2154,1.0985,1.2631,3.96815,0.755207,1.18127,3.95905,0.955049,0.922362,3.93108,1.09752,0.698909,3.90903,1.08484,0.595228,3.89835,0.949626,1.1641,3.95603,0.619554,1.18042,3.6254,0.532356,1.11199,3.42796,0.411991,0.658016,3.29435,0.771852,0.582632,3.56636,0.881002,1.08919,3.32815,0.614797,0.825785,3.3026,0.780029,0.762319,4.20267,1.04122,1.12175,4.24207,0.834693,1.13386,4.24472,0.969683,0.878053,4.21923,1.11046,0.623161,3.89911,0.985424,1.19094,3.95745,0.656643,1.13884,4.25579,0.859541,1.15323,4.27779,1.0017,0.922825,4.25418,1.12829,0.792154,4.22123,1.05628,0.750212,4.1889,1.01569,1.10624,4.22432,0.817632,0.858358,4.20892,1.09984,1.13018,4.23842,0.952766,0.760449,4.19896,1.02268,1.11101,4.23299,0.828461,1.22313,1.96501,-0.164316,0.438147,1.95874,-0.334969,1.25705,2.9606,-0.12313,0.405432,2.83781,-0.307541,0.84157,1.97014,-0.508298,0.688881,1.96842,-0.509431,0.544934,1.96521,-0.45431,1.12238,1.96858,-0.345025,0.830269,2.79316,-0.513749,0.659552,2.78079,-0.511174,0.513543,2.78787,-0.443813,1.14695,2.86898,-0.343794,0.492567,0.56513,-0.236922,0.443228,0.500372,0.448055,1.06365,1.07321,0.902392,0.958949,0.617847,-0.372038,1.25808,0.447811,0.201422,1.29364,0.451291,0.491077,0.681836,0.614064,-0.399434,0.670351,1.05663,0.896327,0.420401,0.499821,0.0774494,0.504655,0.77233,0.710401,1.27436,0.755856,0.667344,1.1803,0.547528,-0.150128,0.49063,0.808224,-0.221302,0.46682,0.770671,0.371242,1.05464,1.12361,0.811898,0.942941,0.842551,-0.36205,1.22685,0.719301,0.115581,1.26795,0.805694,0.325799,0.693526,0.841422,-0.390631,0.683853,1.11407,0.825546,0.446668,0.76729,0.0561294,0.564421,0.974904,0.615938,1.211,1.00049,0.58177,1.16147,0.792742,-0.149371,0.967188,-0.018647,2.40426,1.13453,-0.0203847,2.37202,0.823457,-0.0198748,2.38467,0.809005,0.0325416,2.33447,1.07209,0.0510701,2.3163,0.893923,0.125016,2.29119,1.02074,0.113292,2.28974,0.839676,0.0959581,2.30207,0.961976,0.133399,2.28458,0.969559,0.259861,2.14233,0.724543,0.203432,2.16162,1.09201,0.220801,2.15336,0.839232,0.251446,2.14499,1.18806,0.113996,2.18976,0.645202,0.0951669,2.21594,0.603427,-0.0179201,2.29931,1.27847,-0.0189629,2.2491,1.42552,-0.0169413,2.05732,0.444914,-0.0139401,2.08208,0.49856,0.166917,1.99409,1.32063,0.183475,1.96372,0.788687,0.365008,1.89927,1.18661,0.323398,1.9102,0.616103,0.309686,1.9268,0.989071,0.371171,1.89312,1.01374,0.540953,1.38251,0.522205,0.471839,1.41005,1.2993,0.473228,1.36588,0.748818,0.537647,1.39732,1.44443,0.303328,1.35873,0.379578,0.293797,1.41914,0.29123,-0.00875905,1.42486,1.53179,-0.010603,1.35011,1.2588,1.69611,0.0295458,1.17364,1.56637,-0.267685,0.674915,1.39376,-0.551358,0.518049,1.824,0.512089,0.368004,1.47116,-0.00213536,0.923451,1.40956,-0.477056,0.948356,1.84885,0.644676,0.386267,1.53637,0.282788,0.449576,1.43313,-0.344297,0.693519,1.22565,0.78078,1.00643,1.2379,0.752093,1.1813,1.12686,0.546332,1.26198,0.994609,0.254501,1.2241,0.901522,0.057362,1.15526,0.936109,-0.161304,0.975422,1.05707,-0.350177,0.652624,1.05513,-0.403956,0.496434,0.937528,-0.215228,0.453919,0.89661,0.052879,0.4807,0.914508,0.333385,0.561114,1.16262,0.615138,1.03114,0.576117,1.45191,0.474913,0.498672,1.49164,1.34022,0.480573,1.43986,0.717959,0.572311,1.47096,1.5005,0.315859,1.44872,0.322473,0.313381,1.50789,0.242143,-0.00538064,1.51441,1.60639,-0.00800738,1.4341,1.49446,-0.00800739,1.05429,0.353938,-0.00538066,1.1223,0.410575,0.405881,1.11904,1.39389,0.417132,1.06175,0.761604,0.717829,1.09409,1.26454,0.631052,1.06623,0.549899,0.628829,1.10812,1.00451,0.722621,1.08,1.01121,0.769896,1.12677,0.535931,0.693736,1.15985,1.27562,0.685301,1.11579,0.754899,0.769875,1.14223,1.43233,0.460483,1.10423,0.376909,0.449494,1.16343,0.267527,-0.00593823,1.16142,1.58994,-0.00767138,1.09089,1.42623,-0.0076714,0.680632,0.38605,-0.00593825,0.739454,0.482041,0.526223,0.732762,1.30903,0.538864,0.685368,0.779184,0.92184,0.702853,1.1516,0.81285,0.686929,0.602827,0.810763,0.718585,0.964778,0.927848,0.692324,0.417894,-0.00984579,1.84956,1.4553,-0.0145746,1.78968,0.48113,0.183269,1.84483,1.34194,0.197319,1.79506,0.78208,0.383604,1.82495,0.601048,0.328858,1.83582,1.20989,0.339412,1.80145,0.994081,0.38865,1.81355,1.00287,0.411684,1.89756,1.23143,0.359827,1.88437,0.587912,0.350116,1.92111,0.778677,0.406213,1.91008,1.3694,0.215038,1.87798,0.460796,0.199147,1.92979,1.48882,-0.010603,1.87271,0.393452,-0.00875902,1.93436,0.483061,0.918893,-0.261493,0.407709,0.645055,0.433872,0.972583,0.941604,-0.394494,1.30573,0.779052,0.0601763,1.30801,0.674926,0.297017,0.697485,0.942773,-0.409251,0.368221,0.775207,0.0982228,0.447269,0.524723,0.826392,1.43636,0.531792,0.783078,1.19947,0.869701,-0.215343,0.688416,-0.000471508,-0.530173,1.29418,-0.000954001,-0.261905,1.31427,-0.000216975,0.0199878,1.42396,-0.00487806,0.279502,0.374554,5.49852e-06,-0.307325,0.384971,-4.56765e-06,0.0460229,0.373184,-0.00298744,0.422124,1.0859,-0.00188329,-0.505957,0.41139,0.284188,0.411641,0.358221,0.416938,0.0677703,0.386812,0.443307,-0.276759,1.34579,0.311081,0.273482,1.35331,0.381952,0.0331711,1.2952,0.430867,-0.228576,1.00734,0.438138,-0.502808,0.652995,0.439546,-0.527172,0.690495,0.66343,-0.485095,1.21198,0.652108,-0.214627,1.31194,0.61275,0.0523661,1.32183,0.515338,0.292823,0.480923,0.642125,-0.232034,0.370712,0.627356,0.0883579,0.413214,0.508401,0.400209,0.975312,0.664804,-0.469289,1.63458,-0.00756979,0.777364,1.56767,0.187303,0.77787,1.51534,0.356098,0.780409,0.329314,0.120074,0.836475,0.291127,-0.00531844,0.835047,0.386437,0.333067,0.832039,1.03999,1.2655,-0.235683,0.569513,1.22225,-0.303251,0.674518,1.23169,-0.32462,0.8029,1.24442,-0.343529,0.498908,1.21409,-0.14785,1.1214,1.26855,-0.10603,1.25997,2.97898,0.140663,0.409203,2.93628,0.549532,1.27732,2.18247,0.0543973,0.720471,1.56232,0.765338,0.989275,1.55424,0.741906,1.2027,1.50543,0.521559,1.30173,1.39626,0.236243,1.29136,1.33146,0.0314089,1.21453,1.21887,-0.236961,0.986465,1.23956,-0.451962,0.625595,1.2253,-0.514734,0.424713,1.19141,-0.306086,0.356149,1.19359,0.0213254,0.377923,1.23808,0.315482,0.498865,1.50303,0.592724,0.68866,2.21967,0.659677,0.936335,2.21373,0.633986,0.475573,2.22294,0.506601,1.28604,2.65693,0.0900661,0.433065,2.65125,0.503923,1.10805,2.95503,0.522165,0.654891,2.93057,0.70477,1.23554,2.63909,0.261535,0.667739,2.61901,0.663177,0.897602,2.6115,0.643142,1.19757,2.97153,0.312404,0.869892,2.93121,0.686346,1.12935,2.20427,0.461606,1.24412,2.19031,0.233759,0.734359,1.53595,0.725466,0.971002,1.52656,0.703538,1.1644,1.47498,0.499725,1.2548,1.36474,0.229623,1.24203,1.30037,0.0383351,1.17166,1.20257,-0.208238,0.959975,1.23972,-0.414895,0.651475,1.23152,-0.47898,0.464981,1.18531,-0.277857,0.4072,1.17905,0.0259123,0.430778,1.21579,0.30477,0.53366,1.4805,0.563857,0.70882,1.84701,0.65709,1.13096,1.83192,0.46053,1.23768,1.77156,0.20991,0.720842,1.57616,0.755234,0.984541,1.5684,0.733096,1.19371,1.52398,0.517696,1.29295,1.42001,0.237227,1.2863,1.35528,0.0359704,1.20773,1.23761,-0.234894,0.977103,1.24274,-0.452415,0.634996,1.22837,-0.516409,0.432152,1.19985,-0.30732,0.362222,1.20599,0.0206402,0.385806,1.2525,0.31833,0.504674,1.52329,0.587916,0.807689,0.0299927,-0.492846,0.942691,0.0299927,-0.481133,0.359224,0.0299937,1.47569,1.47985,0.0299937,1.41111,1.17537,0.0299937,1.42866,0.673346,0.0299937,1.45759,0.725063,0.0299937,1.85888,1.16295,0.0299937,1.83365,1.42853,0.0299937,1.81834,0.451072,0.0299937,1.87467,1.05374,0.0299928,2.33639,0.859097,0.0299928,2.34589,0.770581,0.0299937,2.11211,0.542702,0.0299928,2.1253,1.35546,0.0299928,2.07835,1.13469,0.0299937,2.09113,0.434882,0.0299927,-0.277621,0.435881,0.0299936,0.0426965,0.483464,0.0299936,0.429721,0.44443,0.0299936,0.751881,0.364531,0.0299936,1.08626,0.390553,0.0299937,1.47388,0.478399,0.0299937,1.8731,0.565421,0.0299928,2.12399,1.23207,0.0299927,-0.259831,1.24413,0.0299927,0.0167871,1.23711,0.0299936,0.289029,1.43064,0.0299936,0.769393,1.51564,0.0299936,1.0719,1.44272,0.0299937,1.41325,1.39614,0.0299937,1.82021,1.32852,0.0299928,2.07989,0.838436,0.0299928,2.31446,0.671746,0.0296693,2.27841,1.20962,0.0303478,2.25963,1.0682,0.0299928,2.30443,0.687756,0.0299928,2.26127,1.1935,0.0299928,2.24444,0.628204,0.0296718,-0.452035,0.802039,0.0299927,-0.478304,0.945884,0.0299927,-0.4675,1.07671,0.0298213,-0.445532,0.634576,0.0300394,-0.439375,1.06924,0.0299743,-0.433666,1.12995,7.8569,0.714685,1.00714,7.20072,0.746596,1.02269,7.49328,0.649214,1.27514,8.15058,0.578731,1.40046,8.33476,0.55027,1.20424,6.54073,0.986012,1.04514,6.97139,0.800967,1.17416,6.74623,0.891382,1.18057,6.33855,1.01379,0.948971,7.16841,0.718945,1.04401,6.9186,0.798224,1.15495,6.6788,0.887791,1.16664,6.49928,0.971315,1.22552,6.37398,1.05179,1.00855,7.21509,0.733584,1.023,6.99536,0.784728,1.16298,6.7643,0.876388,1.2078,6.53778,0.973894,1.22603,6.36473,1.04386,1.07007,8.57608,1.00257,1.2399,2.46154,-0.143916,0.430924,2.4002,-0.313413,0.836087,2.38005,-0.510881,0.674363,2.37302,-0.510236,0.533351,2.37653,-0.445343,1.13506,2.41733,-0.34384,0.808101,1.60089,-0.429119,1.07265,1.61361,-0.292247,1.16391,1.61326,-0.136877,0.461127,1.58745,-0.239428,0.552853,1.59455,-0.378117,0.674513,1.59767,-0.418766,1.34678,4.5588,-0.109181,0.187992,4.37302,-0.236215,0.816057,4.4791,-0.61683,0.351011,4.40152,-0.509169,0.589679,4.44448,-0.600021,1.17418,4.5277,-0.426184,-0.00264589,9.36275,-0.824212,0.489939,6.17145,1.33462,0.211612,6.16503,1.44164,0.0926574,5.02553,1.11216,0.459281,6.19865,1.34175,0.237441,5.36835,1.3399,0.464685,5.81186,1.40443,0.46014,6.17095,1.34599,-8.88178e-16,8.32564,-1.09727,0.000287515,8.97448,-1.00042,0,5.41383,1.5019,-8.88178e-16,9.04323,1.05533,-8.88178e-16,7.89791,1.33495,-8.88178e-16,8.06825,1.35305,-8.88178e-16,9.13891,0.997167,-8.88178e-16,8.72937,1.31383,-8.88178e-16,7.35835,1.42892,-8.88178e-16,6.76788,1.54973,-8.88178e-16,8.90752,1.17427,-8.88178e-16,7.53041,1.40038,-8.88178e-16,7.2201,1.45895,0.00307025,9.19121,-0.925049,-0.108216,9.19215,-0.914283,-0.167592,8.34013,-1.08133,-0.681061,9.44915,-0.743908,-0.121074,8.72755,-1.05424,-0.82083,9.30647,-0.839652,-0.920417,8.64071,-0.968879,-1.04516,8.78605,-0.918264,-0.892716,9.45877,-0.722519,-1.18353,8.95742,-0.861669,-0.801336,8.98608,-0.943815,-0.930281,9.13709,-0.902773,-1.03166,9.31619,-0.829477,-0.498321,9.18067,-0.899012,-0.384714,9.19285,-0.910507,-0.626642,8.85707,-0.993186,-0.448973,8.78231,-1.02733,-0.583776,8.42817,-1.04041,-0.779697,8.51237,-1.02262,-0.697926,9.16216,-0.900021,-0.582664,9.30172,-0.839698,-0.56488,9.0488,-0.96172,-0.396103,8.99359,-0.973637,-0.107633,8.97622,-0.991796,-0.243976,9.19223,-0.906027,-0.273,8.74414,-1.03653,-0.366069,8.37397,-1.05567,-0.238852,8.97641,-0.979858,-0.865658,8.82401,-0.966894,-0.990117,8.95397,-0.923049,-1.13288,9.11555,-0.858868,-0.696694,8.67986,-1.01401,-0.523102,8.58589,-1.04414,-0.146644,8.50307,-1.08476,-0.325939,8.54529,-1.05914,-0.592728,9.6172,-0.444366,-0.286892,9.52368,-0.659464,-0.448305,9.55169,-0.579823,-0.124943,9.5217,-0.69375,-0.135287,9.47846,-0.733327,-0.515985,9.5281,-0.631134,-0.332567,9.49373,-0.69122,-0.646708,9.58573,-0.566581,-0.744367,9.55013,-0.630761,-0.28909,9.3893,-0.782715,-0.455795,9.38012,-0.783675,-0.129615,9.3766,-0.806083,-0.124245,9.55867,-0.700216,-0.281518,9.56012,-0.664711,-0.58073,9.64911,-0.450652,-0.437166,9.58836,-0.583589,-1.23111,4.95519,1.00802,-0.860301,4.61757,1.36347,-0.874464,4.62829,1.35088,-1.22862,4.93203,1.02112,-1.10431,5.65297,1.0009,-0.733346,5.45398,1.44201,-0.717196,5.45033,1.45855,-1.22227,4.94697,1.01996,-0.87131,4.64614,1.34865,-1.22481,4.97141,1.00643,-0.857345,4.6357,1.36111,-0.805736,6.60502,0.855035,-0.485687,6.6032,1.14123,-0.471918,6.59881,1.15504,-0.79388,6.59071,0.879455,-1.03658,6.61503,0.548304,-0.803338,6.59402,0.862927,-1.02741,6.61025,0.565817,-1.25749,4.8913,1.10901,-1.54941,5.19326,0.658291,-1.26788,4.90153,1.09322,-1.53761,5.18116,0.676439,-1.15266,5.63575,1.13854,-1.48276,5.84839,0.66323,-1.16556,5.64067,1.12238,-1.47098,5.83565,0.683817,-1.54531,5.16607,0.678623,-1.27336,4.88382,1.0964,-1.26272,4.87345,1.11242,-1.5579,5.17766,0.660169,-1.6707,5.45201,0.162186,-1.61352,5.19747,0.737636,-1.61444,5.20614,0.717345,-1.64903,5.44214,0.190558,-1.53393,5.86292,0.72827,-1.52606,6.03371,0.145654,-1.52907,5.8583,0.743335,-1.63856,5.45681,0.190405,-1.60523,5.22352,0.715458,-1.66037,5.46608,0.161849,-1.60459,5.21469,0.735428,-1.04664,6.61438,0.557526,-1.13807,6.67709,0.0840332,-1.04526,6.60822,0.569838,-1.15404,6.68501,0.0976604,-0.927779,6.66873,-0.309474,-1.14467,6.68938,0.088545,-0.936918,6.67077,-0.293666,-1.72123,5.50301,0.202874,-1.45445,5.58012,-0.29714,-1.71209,5.50522,0.185297,-1.46509,5.57728,-0.276893,-1.57747,6.05059,0.181926,-1.33285,6.0435,-0.304587,-1.57037,6.04819,0.164711,-1.34521,6.04065,-0.284453,-1.47287,5.56405,-0.277508,-1.7201,5.49034,0.187538,-1.72938,5.48797,0.205414,-1.4624,5.56639,-0.298266,-0.799654,6.27963,0.911206,-0.483485,6.15123,1.22905,-0.805083,6.30092,0.897014,-0.470829,6.14887,1.24102,-1.09679,5.67361,0.993743,-0.727738,5.47457,1.43697,-0.711882,5.47066,1.45344,-0.916151,6.10406,0.904104,-1.15709,6.27265,0.488399,-0.925481,6.10787,0.889704,-1.14867,6.26206,0.505881,-1.14447,5.65717,1.13238,-1.47199,5.86736,0.657831,-1.15738,5.66197,1.11621,-1.46055,5.85471,0.678163,-1.22376,6.32215,0.0809327,-1.20262,6.21103,0.545251,-1.23851,6.33019,0.0558579,-1.2012,6.20879,0.563074,-1.49512,6.02832,0.170325,-1.52783,5.8739,0.726507,-1.51722,6.04457,0.144386,-1.52329,5.86935,0.740704,-1.25919,6.35556,0.071204,-1.01897,6.33669,-0.335784,-1.25173,6.35286,0.056883,-1.03047,6.33425,-0.318922,-1.55992,6.07469,0.179586,-1.31544,6.06523,-0.302733,-1.55288,6.07217,0.162582,-1.32769,6.06243,-0.283055,-0.846593,6.33774,0.844265,-0.484563,6.19536,1.23262,-0.4704,6.189,1.24712,-1.0981,5.64714,1.0202,-0.794565,6.59939,0.869356,-1.08766,5.66654,1.01371,-0.832785,6.33083,0.859301,-0.889645,6.12276,1.00598,-1.17381,6.24125,0.603225,-0.900333,6.12749,0.989776,-1.1642,6.23189,0.621931,-1.50163,6.01768,0.173938,-1.12413,6.66889,0.107133,-1.25946,6.20598,0.640932,-1.29853,6.32366,0.113777,-1.25699,6.19999,0.654515,-1.2808,6.31118,0.138614,-1.33731,6.37921,0.147945,-1.09117,6.34153,-0.28609,-1.32903,6.38095,0.136189,-1.10278,6.34021,-0.269099,-0.488873,6.19916,1.33033,-0.25033,5.36706,1.32517,-0.0542856,4.92698,1.14809,0,4.90616,1.14165,-0.099046,5.03876,1.10788,-0.211915,6.19269,1.43786,0,6.18682,1.45073,-0.497832,5.81178,1.39333,-0.192268,5.80326,1.49456,-0.137399,5.39236,1.46901,0,5.81233,1.47033,-0.0731335,4.59217,-0.0120733,-0.100917,4.40748,-0.00173656,-0.314639,4.62306,-0.377636,-0.323407,4.44108,-0.37114,-0.606193,4.89125,0.900865,-0.635467,4.72966,0.842964,-0.21943,4.72685,0.739344,-0.246582,4.55575,0.702634,-0.0829097,4.62919,0.373319,-0.11349,4.46831,0.368416,-0.233284,4.07833,0.0793629,-0.193658,4.25569,0.0537732,-0.217643,4.09561,0.356387,-0.189429,4.26947,0.359929,-0.332088,4.05768,-0.21682,-0.300387,4.23265,-0.277352,-0.471438,4.14229,0.777566,-0.44958,4.31299,0.775623,-0.316056,4.11667,0.635807,-0.294851,4.28226,0.649578,-0.40585,4.83688,0.870815,-0.437631,4.66662,0.844451,-0.677144,4.18713,0.742934,-0.658498,4.33369,0.767106,-0.364748,4.62579,-0.408845,-0.373232,4.44378,-0.402012,-0.39098,4.05259,-0.261568,-0.3599,4.22736,-0.32292,-0.603477,1.9121,-0.423421,-0.611304,1.73453,-0.380341,-0.51636,2.60852,-0.4121,-0.494412,2.74866,-0.390885,-0.594355,2.63918,0.562351,-0.608609,2.80675,0.598348,-0.468806,2.64917,0.48992,-0.506257,2.46745,0.501908,-0.639104,2.8008,0.592587,-0.660693,2.61333,0.59948,-0.546858,1.92416,-0.36961,-0.543625,1.74757,-0.31443,-0.379231,2.39217,0.260569,-0.426134,2.20008,0.276134,-0.364949,2.12315,-0.0378521,-0.394168,1.92814,-0.000206508,-0.341923,2.59239,0.135694,-0.317452,2.72863,0.141434,-0.45498,2.62563,0.437593,-0.428913,2.74901,0.485939,-0.480975,2.6055,-0.377078,-0.459352,2.74443,-0.356505,-0.378742,2.59491,-0.14181,-0.352606,2.73059,-0.126871,-0.394545,1.81181,-0.104572,-0.464011,1.66839,-0.175256,-0.479311,1.8989,-0.294257,-0.528147,1.7355,-0.346588,-0.563943,1.71612,0.45266,-0.566577,1.57368,0.418656,-0.404593,1.70103,0.205313,-0.413268,1.57448,0.0944608,-0.734736,1.74209,0.591877,-0.718168,1.57192,0.557004,-0.516637,1.94321,-0.369086,-0.573191,1.78599,-0.431116,-0.427614,4.86104,1.0022,-0.717274,5.05475,1.05587,-1.05952,5.38334,0.910986,-1.33512,5.53984,0.56735,-1.00986,3.98499,0.634113,-1.36975,4.01367,0.23084,-0.501112,3.88802,0.822398,-0.736715,3.93073,0.796428,-1.03413,4.60923,0.725036,-1.2866,4.68491,0.418816,-0.46465,4.35353,0.846539,-0.729448,4.45428,0.847219,-1.28369,5.80026,0.566486,-1.06291,5.63168,0.915936,-0.713315,5.23881,1.10903,-0.412403,5.00045,1.04823,-1.23023,5.46826,0.74114,-1.14479,4.00519,0.435202,-1.18749,4.64706,0.579617,-1.18166,5.72239,0.74374,-1.2959,3.92804,-0.030067,-1.3978,5.19965,-0.0838505,-0.213585,3.91733,-0.109469,-0.162325,4.82782,-0.317196,-1.14414,3.99656,-0.272366,-0.838192,4.94292,-0.560915,-0.613729,4.88263,-0.566678,-0.34107,4.83686,-0.500145,-1.20101,5.05931,-0.341341,-0.792062,4.01562,-0.432439,-0.363157,3.96462,-0.27842,-0.565495,4.00626,-0.393196,-1.23195,4.74797,-0.244392,-1.23195,4.95843,-0.261327,-1.19308,5.03106,0.555964,-1.18287,4.84155,0.531235,-1.28859,4.7822,-0.010871,-1.28145,4.82262,0.26605,-1.28854,4.98809,-0.0191948,-1.28159,5.01925,0.276103,-1.1953,4.8388,0.497508,-1.20424,5.02929,0.5205,-1.23321,5.03065,0.520132,-1.22429,4.83979,0.497058,-1.31846,5.01582,0.275463,-1.39471,4.95643,-0.0412652,-1.31822,4.81639,0.265868,-1.39471,4.74988,-0.0333644,-1.2117,4.84217,0.531258,-1.2219,5.03201,0.555988,-1.31348,4.98215,0.096143,-1.31405,4.77841,0.0939912,-1.3522,4.77259,0.175044,-1.35109,5.02557,0.176828,-1.35469,4.78024,0.259587,-1.35636,5.03157,0.268851,-1.22581,5.0261,0.176259,-1.21518,5.03148,0.26786,-1.24426,4.77376,0.174007,-1.23616,4.77975,0.258406,-1.3602,4.79028,0.256864,-1.35615,4.78004,0.172864,-1.35011,5.01685,0.175815,-1.35392,5.02274,0.267787,-1.37105,4.4489,0.249758,-1.36506,4.45622,0.158003,-1.34384,4.2229,0.122854,-1.35044,4.22093,0.207293,-1.22606,4.22417,0.211395,-1.23201,4.22902,0.126743,-1.23425,4.47294,0.255482,-1.24266,4.4791,0.163701,-1.37451,4.45717,0.251925,-1.34386,4.21128,0.208809,-1.36705,4.46455,0.160155,-1.3391,4.21571,0.124133,-1.30345,4.23731,0.0391949,-1.32479,4.43753,0.0708511,-1.43297,4.19567,-0.0630484,-1.3126,4.25013,0.21711,-1.45654,4.40004,-0.042933,-1.33651,4.44506,0.25226,-1.14845,4.27296,0.440566,-1.17922,4.462,0.458346,-1.15003,4.46385,0.459839,-1.11931,4.2752,0.442049,-1.29989,4.45237,0.255765,-1.2718,4.46544,-0.0326934,-1.27656,4.26021,0.220533,-1.24844,4.26178,-0.052253,-1.22999,4.47441,-0.177091,-1.17105,4.27173,-0.182735,-0.589011,9.2982,0.757734,-0.968417,9.3801,0.629753,-0.172975,9.08376,1.00515,-1.11182,9.20222,0.757404,-0.671429,9.16864,0.884182,-0.869969,8.52034,1.08108,-0.194862,8.45262,1.29614,-8.88178e-16,8.44487,1.37976,-0.236057,8.06072,1.28055,-0.891635,8.13091,1.04608,-0.97619,7.89185,0.902251,-0.22199,7.88761,1.26626,-0.227349,7.44857,1.34614,-0.880644,7.22653,0.918749,-1.36269,8.10565,0.408798,-1.10984,7.20651,0.550029,-1.12541,7.27308,0.0699728,-1.28386,7.82749,0.529445,-1.24953,7.79308,0.0304257,-0.498327,9.49397,0.638924,-0.834085,9.50592,0.544423,-0.859379,9.3472,0.687163,-0.980931,9.21246,0.81271,-0.732881,9.50294,0.584278,-1.18664,8.54439,0.914838,-1.35306,8.43613,0.71247,-1.09453,8.30782,0.927236,-1.19253,8.19992,0.76936,-0.890903,8.20898,-0.908566,-0.800113,8.01378,-0.872131,-0.935784,7.67491,-0.534809,-1.10293,7.87978,-0.475855,-1.18457,7.81345,-0.219872,-1.06015,7.54515,-0.218112,-1.12998,7.48865,0.0490511,-0.186149,7.67058,1.25703,-0.913936,7.51374,0.782674,-1.12685,7.48103,0.518527,-8.88178e-16,7.70346,1.33689,-0.18954,9.19297,0.934677,-0.429015,9.13679,0.904154,-0.539081,8.48078,1.17598,-0.566313,8.05767,1.17659,-0.586686,7.85494,1.09756,-0.529227,7.31502,1.14755,-0.537573,7.57239,1.04101,-0.394313,9.24802,0.818941,-0.750643,9.32668,0.716161,-0.854026,9.20056,0.854527,-0.638432,9.50309,0.609592,-0.206841,8.24815,1.32497,-0.887388,8.32012,1.09621,-0.550453,8.2669,1.20539,-1.03503,8.41506,0.995456,-1.43243,8.24784,0.393074,-0.176537,8.73775,1.24495,-0.846725,8.75738,1.06007,-1.15466,8.74266,0.935459,-1.2788,8.68174,0.844964,-0.513106,8.73871,1.11214,-1.04285,8.77912,1.01982,-0.932261,7.41761,-0.497468,-1.05229,7.33026,-0.203314,-0.69186,7.69165,-0.767552,-1.14046,6.93059,-0.245228,-0.811228,7.00456,-0.521365,-1.2836,6.84667,0.154413,-1.23317,6.89359,-0.0607293,-1.30581,6.60931,0.765183,-1.08568,6.48592,1.20677,-0.687515,6.6081,1.448,-0.314802,6.81543,1.52305,-8.88178e-16,7.02825,1.55624,-0.230696,7.97296,1.27077,-0.937014,8.0185,0.974915,-0.924134,9.3689,0.652205,-1.06637,9.20562,0.785124,-0.791482,9.50486,0.554772,-1.25878,8.48235,0.843693,-1.14495,8.25266,0.846793,-0.583064,7.95528,1.14148,-1.22478,8.70617,0.897263,-0.692775,7.42502,-0.63686,-0.95157,7.21071,-0.376445,-1.15588,7.09308,0.0984715,-1.06222,7.145,-0.137691,-0.546368,7.05915,1.20323,-0.91508,6.98458,0.99149,-0.25672,7.23028,1.3651,-1.14929,6.99214,0.609552,-1.03346,7.06657,-0.279971,-1.20271,6.98229,0.133325,-1.15026,7.0211,-0.0930879,-0.625259,6.83243,1.29439,-1.02652,6.69311,1.08992,-0.282361,7.03528,1.41385,-8.88178e-16,7.21308,1.46825,-1.26968,6.82536,0.68308,-0.774579,7.19811,-0.539638,-0.330003,6.59398,1.49624,-0.711216,6.35879,1.40951,-1.06313,6.27388,1.20606,-1.29446,6.40808,0.824194,-1.23559,6.75978,-0.0409673,-1.31512,6.69841,0.182793,-0.940637,6.80818,-0.644368,-1.14478,6.78995,-0.235995,-1.02024,8.05218,-0.706718,-0.868818,7.84163,-0.700118,-0.808934,7.55411,-0.638027,-1.00193,6.95834,-0.425126,-0.831451,7.30991,-0.54733,-0.908157,7.12696,-0.454619,-1.05434,6.83627,-0.423652,-0.167267,8.9442,1.13075,-0.771291,8.97858,0.996947,-1.08729,8.95915,0.924009,-1.21152,8.92093,0.866027,-0.489176,8.95347,1.02626,-0.958527,8.9951,0.959881,-1.16458,8.9348,0.899325,-1.32557,6.76139,0.450172,-1.28756,7.80635,0.286186,-1.14708,7.47177,0.297376,-1.13507,7.2334,0.322921,-1.1635,7.05157,0.358837,-1.23359,6.93323,0.414473,-1.32442,6.57503,0.472904,-0.155448,9.40137,0.717925,-0.337052,9.47998,0.661537,-0.679866,7.66309,-0.702449,-0.898228,7.38792,-0.436486,-1.07601,7.23938,0.084137,-1.0005,7.30012,-0.167694,-0.503135,7.25927,1.11641,-0.83523,7.17886,0.88822,-0.219325,7.3944,1.30092,-8.88178e-16,7.48345,1.36228,-1.05583,7.1691,0.538388,-0.783733,7.51921,-0.576162,-1.07808,7.19423,0.320775,-0.93697,7.1834,-0.317043,-1.12439,7.06483,0.115345,-1.042,7.11701,-0.102311,-0.530226,6.99686,1.18341,-0.918139,6.90277,0.989007,-0.243686,7.17357,1.32944,-8.88178e-16,7.3246,1.38855,-1.14278,6.95132,0.603968,-0.725306,7.41031,-0.559789,-0.83916,7.28221,-0.472046,-1.1418,7.02045,0.36393,-1.03447,7.03062,-0.236105,-1.18815,6.94612,0.147282,-1.14606,6.9844,-0.0575972,-0.614463,6.75929,1.30007,-1.00917,6.62092,1.08617,-0.270915,6.96703,1.39323,-1.25176,6.75671,0.680396,-0.782923,7.15066,-0.494125,-0.918406,7.09296,-0.389705,-1.21913,6.88638,0.410284,-0.825819,6.9578,-0.504094,-1.06245,6.43991,1.18734,-1.27345,6.55644,0.75215,-8.88178e-16,6.98965,1.51818,-0.304593,6.77759,1.49239,-0.667741,6.56268,1.41949,-1.25238,6.80935,0.16521,-1.2012,6.86596,-0.0387643,-1.1152,6.90531,-0.219195,-0.98818,6.93087,-0.416094,-1.29312,6.71469,0.435314,-0.939426,6.8873,-0.646328,-1.10259,6.31261,1.24382,-1.33514,6.4399,0.848253,-0.329653,6.62747,1.54353,-0.734202,6.39819,1.45694,-1.34303,6.71314,0.169846,-1.26059,6.77682,-0.0651624,-1.16847,6.8203,-0.266691,-1.07616,6.86121,-0.45702,-1.36574,6.60012,0.482586,-0.21855,7.46036,1.33814,-0.885475,7.24448,0.903953,-1.10858,7.22193,0.542685,-1.12024,7.28635,0.0657454,-0.527528,7.33053,1.1371,-1.04654,7.34268,-0.207625,-0.919939,7.43468,-0.505019,-0.692159,7.72592,-0.784285,-0.79925,7.57905,-0.648359,-1.13247,7.24911,0.317742,-0.678278,7.45086,-0.649443,-0.930509,7.21482,-0.392164,-1.14567,7.09426,0.0910084,-1.04627,7.14661,-0.148366,-0.534427,7.0757,1.19504,-0.891022,7.01232,0.973791,-0.245747,7.23939,1.35963,-1.13178,7.00383,0.594668,-0.807859,7.32202,-0.553433,-1.15067,7.05507,0.347638,-1.01193,7.06662,-0.297921,-1.19847,6.98006,0.124579,-1.13264,7.01816,-0.105035,-0.604641,6.85332,1.28118,-1.01314,6.7152,1.07257,-0.268027,7.04729,1.40645,-1.25983,6.83795,0.668892,-0.764029,7.22437,-0.548398,-0.886795,7.14053,-0.461085,-1.22841,6.93697,0.401891,-1.13033,6.91947,-0.252952,-1.2802,6.83908,0.147095,-1.23149,6.88154,-0.0670583,-0.67662,6.60589,1.4393,-1.08312,6.47964,1.19791,-0.301531,6.81564,1.51972,-1.30708,6.60803,0.752604,-0.806472,7.02145,-0.514719,-0.997158,6.95401,-0.421549,-1.32128,6.75885,0.442053,-0.943919,6.88282,-0.642732,-1.10124,6.30657,1.24279,-1.33616,6.43058,0.837306,-0.315616,6.62323,1.54111,-0.725527,6.39735,1.46011,-1.34112,6.69949,0.161932,-1.25864,6.76462,-0.0703238,-1.16742,6.80889,-0.269895,-1.07814,6.85145,-0.456705,-1.36822,6.59017,0.472702,-0.0541062,9.04783,1.05207,-0.0190693,8.44623,1.3814,-0.0313257,7.89689,1.33035,-0.0357982,7.51317,1.40612,-0.0316047,8.06791,1.34865,-0.0251408,7.69839,1.33437,-0.058384,9.14426,0.99273,-0.0241899,8.25056,1.3858,-0.0195397,8.73195,1.31614,-0.0432287,7.00168,1.55255,-0.0309115,7.98043,1.34044,-0.0409209,7.34298,1.42532,-0.042126,7.19029,1.4646,-0.0577734,6.73802,1.54577,-0.0376769,8.91359,1.1724,-0.0438769,9.37623,0.737428,-0.033878,7.46765,1.35827,-0.0376126,7.29725,1.38498,-0.0374016,7.13036,1.43683,-0.0438206,6.95225,1.51629,-0.0510184,6.77636,1.60351,-0.030163,7.52005,1.39788,-0.0331118,7.34446,1.41989,-0.0338994,7.19519,1.45826,-0.0318652,6.99931,1.55017,-0.040847,6.77458,1.60083,-0.0904382,9.6016,0.712257,-0.386443,9.75279,0.632459,-0.202615,9.65323,0.691961,-0.705939,9.71403,0.387562,-0.616068,9.75676,0.514598,-0.666692,9.73809,0.481023,-0.745211,9.6927,0.380798,-0.510492,9.77254,0.581895,-1.45907,8.20151,-0.00456246,-1.38078,8.09101,0.0227845,-1.29011,8.14606,-0.4053,-1.39613,8.30283,-0.372536,-1.26802,8.53277,-0.743305,-1.00234,8.35881,-0.876623,-1.15337,8.21318,-0.650733,-1.32877,8.40688,-0.566032,-1.37411,8.08766,0.217564,-1.44857,8.20957,0.17477,-1.33959,8.10596,-0.18909,-1.44386,8.23159,-0.186708,-0.157857,9.43656,0.714302,-0.0470983,9.40895,0.732215,-8.88178e-16,9.40643,0.734381,-0.480487,9.56438,0.611138,-0.340707,9.51255,0.65987,-0.792714,9.5535,0.515884,-0.749223,9.54984,0.532876,-0.701014,9.55517,0.562817,-0.612175,9.57013,0.587174,-0.407302,0.0299936,0.0436081,-1.27568,0.0299927,0.0147482,-1.26702,0.0299936,0.283082,-0.412871,0.0299927,0.751201,-0.455625,0.0299936,0.430463,-1.25411,0.0297821,-0.257468,-0.990348,0.0299936,-0.277655,-0.723395,0.0299936,-0.275658,-0.402945,0.0299927,-0.277803,-0.69384,0.0299936,0.0344671,-1.01717,0.0299936,0.0314384,-1.02178,0.0299936,0.331851,-0.734753,0.0299936,0.423031,-1.46942,0.0299936,0.774537,-0.729295,0.0299936,0.758025,-1.15139,0.0299936,0.73235,-0.673916,0.0299936,1.07443,-1.22315,0.0299936,1.05154,-1.55626,0.0299936,1.07473,-0.330255,0.0299927,1.08758,-1.30256,2.302,0.0126935,-1.29656,2.30931,-0.079061,-1.27534,2.076,-0.11421,-1.28194,2.07403,-0.0297712,-1.15756,2.07727,-0.0256692,-1.16351,2.08212,-0.110321,-1.16575,2.32604,0.0184177,-1.17417,2.3322,-0.0733632,-1.30602,2.31027,0.0148611,-1.27537,2.06438,-0.0282554,-1.29855,2.31765,-0.0769092,-1.27061,2.06881,-0.112931,-1.2396,2.09071,-0.152696,-1.26284,2.29113,-0.126716,-1.36806,2.04635,-0.238864,-1.23443,2.10217,-0.00800606,-1.3983,2.25056,-0.250438,-1.25692,2.29669,0.0270147,-1.18076,2.1223,0.216823,-1.19001,2.31387,0.228722,-1.18207,2.31309,0.200138,-1.15135,2.12443,0.182348,-1.23035,2.3054,0.0257135,-1.18311,2.318,-0.239417,-1.20719,2.11278,-0.0103211,-1.15887,2.11337,-0.241082,-1.17965,2.7168,-0.159535,-1.22215,2.83848,0.0730289,-1.16718,2.92168,-0.168629,-1.21004,3.0067,0.0958107,-1.16086,2.92485,0.261934,-1.15725,3.05118,0.269884,-1.16434,2.94289,0.298338,-1.18947,2.75239,0.296694,-1.23763,2.92766,0.0986492,-1.3979,2.89215,-0.113426,-1.25075,2.73072,0.0739701,-1.4041,2.68556,-0.11908,-1.24915,2.91443,-0.0479668,-1.26408,2.71104,-0.0663925,-1.29455,2.69903,-0.0285485,-1.27713,2.95037,-0.0056818,-1.29817,2.69984,0.0562947,-1.28378,2.94912,0.086439,-1.15209,2.94268,-0.0044702,-1.1429,2.93981,0.0873985,-1.18676,2.69316,-0.0279896,-1.17992,2.69164,0.05672,-1.30296,2.71042,0.0543414,-1.29796,2.70687,-0.0301548,-1.2767,2.94172,-0.00740456,-1.28189,2.94027,0.0846777,-0.471648,0.758845,0.827037,-0.47639,0.809023,0.687664,-0.44317,0.752505,0.554745,-0.391447,0.622398,0.506143,-0.351536,0.494843,0.570351,-0.346713,0.443704,0.709899,-0.380011,0.501168,0.842593,-0.43172,0.631364,0.891222,-0.464907,0.725081,0.79609,-0.434385,0.62763,0.845154,-0.394847,0.528202,0.808002,-0.369445,0.485022,0.706393,-0.373077,0.523354,0.599848,-0.403598,0.620776,0.550785,-0.443138,0.720235,0.587939,-0.468532,0.763438,0.689547,-0.395136,0.723591,0.779479,-0.397937,0.753225,0.697168,-0.378318,0.719847,0.61867,-0.347772,0.643009,0.589967,-0.324192,0.567722,0.627872,-0.321391,0.538089,0.710183,-0.341011,0.571466,0.788681,-0.371556,0.648304,0.817385,-0.335795,0.695423,0.741872,-0.325095,0.661926,0.758686,-0.311177,0.626698,0.745858,-0.302248,0.611731,0.709864,-0.303643,0.62478,0.673162,-0.313985,0.658408,0.656381,-0.327999,0.693601,0.669202,-0.336831,0.708603,0.705205,-0.308094,0.649179,0.724188,-0.300732,0.666968,0.709343,-0.315067,0.676912,0.69241,-0.43903,0.720972,0.786826,-0.44224,0.754934,0.692495,-0.419755,0.716681,0.602533,-0.384749,0.628623,0.569638,-0.357726,0.542341,0.61308,-0.354516,0.50838,0.70741,-0.376999,0.546632,0.797372,-0.412007,0.634692,0.830267,-0.462573,0.619801,0.881517,-0.412683,0.494099,0.834525,-0.38063,0.438,0.706543,-0.385199,0.488,0.571801,-0.423693,0.611144,0.50978,-0.473626,0.736744,0.556699,-0.505694,0.791304,0.685012,-0.501116,0.742864,0.819557,-1.28169,0.783167,0.500116,-1.31439,0.772254,0.638974,-1.3831,0.675977,0.719465,-1.44758,0.550733,0.694438,-1.47005,0.46989,0.578555,-1.43735,0.480803,0.439698,-1.36864,0.57708,0.359208,-1.30416,0.702324,0.384234,-1.36683,0.702481,0.422674,-1.41203,0.61467,0.405129,-1.46021,0.54717,0.461561,-1.48313,0.539518,0.558915,-1.46738,0.596199,0.640162,-1.42217,0.684008,0.657709,-1.374,0.751509,0.601276,-1.35107,0.759161,0.503921,-1.4979,0.699234,0.536661,-1.50707,0.699109,0.514144,-1.49625,0.687925,0.495466,-1.47258,0.729899,0.544411,-1.49169,0.703137,0.567166,-1.50969,0.66818,0.559864,-1.51569,0.646001,0.528376,-1.50691,0.649146,0.490532,-1.4877,0.675858,0.467794,-1.4698,0.710866,0.475079,-1.46347,0.732861,0.506629,-1.4089,0.715441,0.429682,-1.44835,0.63882,0.414373,-1.49039,0.57992,0.463614,-1.51039,0.573244,0.548563,-1.49664,0.622702,0.619456,-1.4572,0.699322,0.634768,-1.41516,0.758222,0.585525,-1.39516,0.764899,0.500577,-1.34943,0.754229,0.613967,-1.40384,0.67799,0.677704,-1.45489,0.578813,0.657887,-1.47269,0.514795,0.566121,-1.4468,0.523437,0.456165,-1.39238,0.599677,0.392427,-1.34133,0.698854,0.412243,-1.32353,0.762872,0.504008,-1.33065,0.721124,0.373086,-1.39744,0.591386,0.347162,-1.46862,0.491653,0.430541,-1.50249,0.480347,0.574382,-1.47922,0.564093,0.694423,-1.41243,0.693832,0.720347,-1.34125,0.793563,0.636969,-1.30738,0.804869,0.493128,-1.1387,3.6371,0.468567,-1.22649,3.63696,0.237505,-1.18945,3.41472,0.198948,-0.426742,3.23194,0.604395,-0.470508,3.56753,0.731794,-0.542733,3.57427,0.822832,-1.13453,2.62872,0.464041,-1.10653,3.39736,0.379742,-1.07581,3.30326,0.594643,-0.644835,3.26747,0.755962,-0.815241,3.28029,0.760304,-1.28952,3.60918,0.686216,-1.14181,3.47319,0.452306,-0.684705,3.54608,1.04149,-0.685484,3.34015,0.81319,-1.12105,3.36915,0.653331,-0.852567,3.34372,0.821244,-1.19299,3.61027,0.901944,-0.925588,3.58213,1.04864,-1.16063,4.27985,1.01026,-1.14546,4.2619,0.865962,-0.794313,4.22245,1.07045,-0.927245,4.25489,1.13958,-0.752132,4.20086,1.04467,-1.1268,4.24356,0.825684,-1.12281,4.2403,0.957099,-0.862456,4.2154,1.0985,-1.2631,3.96815,0.755207,-1.18127,3.95905,0.955049,-0.922362,3.93108,1.09752,-0.698909,3.90903,1.08484,-0.595228,3.89835,0.949626,-1.1641,3.95603,0.619554,-1.18042,3.6254,0.532356,-1.11199,3.42796,0.411991,-0.658016,3.29435,0.771852,-0.582632,3.56636,0.881002,-1.08919,3.32815,0.614797,-0.825785,3.3026,0.780029,-0.762319,4.20267,1.04122,-1.12175,4.24207,0.834693,-1.13386,4.24472,0.969683,-0.878053,4.21923,1.11046,-0.623161,3.89911,0.985424,-1.19094,3.95745,0.656643,-1.13884,4.25579,0.859541,-1.15323,4.27779,1.0017,-0.922825,4.25418,1.12829,-0.792154,4.22123,1.05628,-0.750212,4.1889,1.01569,-1.10624,4.22432,0.817632,-0.858358,4.20892,1.09984,-1.13018,4.23842,0.952766,-0.760449,4.19896,1.02268,-1.11101,4.23299,0.828461,-1.22313,1.96501,-0.164316,-0.438147,1.95874,-0.334969,-1.25705,2.9606,-0.12313,-0.405432,2.83781,-0.307541,-0.84157,1.97014,-0.508298,-0.688881,1.96842,-0.509431,-0.544934,1.96521,-0.45431,-1.12238,1.96858,-0.345025,-0.830269,2.79316,-0.513749,-0.659552,2.78079,-0.511174,-0.513543,2.78787,-0.443813,-1.14695,2.86898,-0.343794,-0.492567,0.56513,-0.236922,-0.443228,0.500372,0.448055,-1.06365,1.07321,0.902392,-0.958949,0.617847,-0.372038,-1.25808,0.447811,0.201422,-1.29364,0.451291,0.491077,-0.681836,0.614064,-0.399434,-0.670351,1.05663,0.896327,-0.420401,0.499821,0.0774494,-0.504655,0.77233,0.710401,-1.27436,0.755856,0.667344,-1.1803,0.547528,-0.150128,-0.49063,0.808224,-0.221302,-0.46682,0.770671,0.371242,-1.05464,1.12361,0.811898,-0.942941,0.842551,-0.36205,-1.22685,0.719301,0.115581,-1.26795,0.805694,0.325799,-0.693526,0.841422,-0.390631,-0.683853,1.11407,0.825546,-0.446668,0.76729,0.0561294,-0.564421,0.974904,0.615938,-1.211,1.00049,0.58177,-1.16147,0.792742,-0.149371,-0.967188,-0.018647,2.40426,-1.13453,-0.0203847,2.37202,-0.823457,-0.0198748,2.38467,-0.809005,0.0325416,2.33447,-1.07209,0.0510701,2.3163,-0.893923,0.125016,2.29119,-1.02074,0.113292,2.28974,-0.839676,0.0959581,2.30207,-0.961976,0.133399,2.28458,-0.969559,0.259861,2.14233,-0.724543,0.203432,2.16162,-1.09201,0.220801,2.15336,-0.839232,0.251446,2.14499,-1.18806,0.113996,2.18976,-0.645202,0.0951669,2.21594,-0.603427,-0.0179201,2.29931,-1.27847,-0.0189629,2.2491,-1.42552,-0.0169413,2.05732,-0.444914,-0.0139401,2.08208,-0.49856,0.166917,1.99409,-1.32063,0.183475,1.96372,-0.788687,0.365008,1.89927,-1.18661,0.323398,1.9102,-0.616103,0.309686,1.9268,-0.989071,0.371171,1.89312,-1.01374,0.540953,1.38251,-0.522205,0.471839,1.41005,-1.2993,0.473228,1.36588,-0.748818,0.537647,1.39732,-1.44443,0.303328,1.35873,-0.379578,0.293797,1.41914,-0.29123,-0.00875905,1.42486,-1.53179,-0.010603,1.35011,-1.2588,1.69611,0.0295458,-1.17364,1.56637,-0.267685,-0.674915,1.39376,-0.551358,-0.518049,1.824,0.512089,-0.368004,1.47116,-0.00213536,-0.923451,1.40956,-0.477056,-0.948356,1.84885,0.644676,-0.386267,1.53637,0.282788,-0.449576,1.43313,-0.344297,-0.693519,1.22565,0.78078,-1.00643,1.2379,0.752093,-1.1813,1.12686,0.546332,-1.26198,0.994609,0.254501,-1.2241,0.901522,0.057362,-1.15526,0.936109,-0.161304,-0.975422,1.05707,-0.350177,-0.652624,1.05513,-0.403956,-0.496434,0.937528,-0.215228,-0.453919,0.89661,0.052879,-0.4807,0.914508,0.333385,-0.561114,1.16262,0.615138,-1.03114,0.576117,1.45191,-0.474913,0.498672,1.49164,-1.34022,0.480573,1.43986,-0.717959,0.572311,1.47096,-1.5005,0.315859,1.44872,-0.322473,0.313381,1.50789,-0.242143,-0.00538064,1.51441,-1.60639,-0.00800738,1.4341,-1.49446,-0.00800739,1.05429,-0.353938,-0.00538066,1.1223,-0.410575,0.405881,1.11904,-1.39389,0.417132,1.06175,-0.761604,0.717829,1.09409,-1.26454,0.631052,1.06623,-0.549899,0.628829,1.10812,-1.00451,0.722621,1.08,-1.01121,0.769896,1.12677,-0.535931,0.693736,1.15985,-1.27562,0.685301,1.11579,-0.754899,0.769875,1.14223,-1.43233,0.460483,1.10423,-0.376909,0.449494,1.16343,-0.267527,-0.00593823,1.16142,-1.58994,-0.00767138,1.09089,-1.42623,-0.0076714,0.680632,-0.38605,-0.00593825,0.739454,-0.482041,0.526223,0.732762,-1.30903,0.538864,0.685368,-0.779184,0.92184,0.702853,-1.1516,0.81285,0.686929,-0.602827,0.810763,0.718585,-0.964778,0.927848,0.692324,-0.417894,-0.00984579,1.84956,-1.4553,-0.0145746,1.78968,-0.48113,0.183269,1.84483,-1.34194,0.197319,1.79506,-0.78208,0.383604,1.82495,-0.601048,0.328858,1.83582,-1.20989,0.339412,1.80145,-0.994081,0.38865,1.81355,-1.00287,0.411684,1.89756,-1.23143,0.359827,1.88437,-0.587912,0.350116,1.92111,-0.778677,0.406213,1.91008,-1.3694,0.215038,1.87798,-0.460796,0.199147,1.92979,-1.48882,-0.010603,1.87271,-0.393452,-0.00875902,1.93436,-0.483061,0.918893,-0.261493,-0.407708,0.645055,0.433872,-0.972583,0.941604,-0.394494,-1.30573,0.779052,0.0601763,-1.30801,0.674926,0.297017,-0.697485,0.942773,-0.409251,-0.368221,0.775207,0.0982228,-0.447269,0.524723,0.826392,-1.43636,0.531792,0.783078,-1.19947,0.869701,-0.215343,-0.688416,-0.000471539,-0.530173,-1.29418,-0.000954014,-0.261905,-1.31427,-0.000216971,0.0199876,-1.42396,-0.00487804,0.279502,-0.374554,5.4809e-06,-0.307325,-0.384971,-4.56419e-06,0.0460228,-0.373184,-0.00298742,0.422124,-1.0859,-0.00188332,-0.505957,-0.41139,0.284188,0.411641,-0.358221,0.416938,0.0677702,-0.386812,0.443307,-0.27676,-1.34579,0.311081,0.273482,-1.35331,0.381952,0.0331711,-1.2952,0.430867,-0.228576,-1.00734,0.438138,-0.502808,-0.652995,0.439546,-0.527172,-0.690495,0.66343,-0.485095,-1.21198,0.652108,-0.214627,-1.31194,0.61275,0.0523661,-1.32183,0.515338,0.292823,-0.480923,0.642125,-0.232034,-0.370712,0.627356,0.0883579,-0.413214,0.508401,0.400208,-0.975312,0.664804,-0.469289,-1.63458,-0.00756974,0.777364,-1.56767,0.187303,0.77787,-1.51534,0.356098,0.780409,-0.329314,0.120074,0.836475,-0.291127,-0.00531839,0.835047,-0.386437,0.333067,0.832039,-1.03999,1.2655,-0.235683,-0.569513,1.22225,-0.303251,-0.674518,1.23169,-0.32462,-0.8029,1.24442,-0.343529,-0.498908,1.21409,-0.14785,-1.1214,1.26855,-0.10603,-1.25997,2.97898,0.140663,-0.409203,2.93628,0.549532,-1.27732,2.18247,0.0543973,-0.720471,1.56232,0.765338,-0.989275,1.55424,0.741906,-1.2027,1.50543,0.521559,-1.30173,1.39626,0.236243,-1.29136,1.33146,0.0314089,-1.21453,1.21887,-0.236961,-0.986465,1.23956,-0.451962,-0.625595,1.2253,-0.514734,-0.424713,1.19141,-0.306086,-0.356149,1.19359,0.0213254,-0.377923,1.23808,0.315482,-0.498865,1.50303,0.592724,-0.68866,2.21967,0.659677,-0.936335,2.21373,0.633986,-0.475573,2.22294,0.506601,-1.28604,2.65693,0.0900661,-0.433065,2.65125,0.503923,-1.10805,2.95503,0.522165,-0.654891,2.93057,0.70477,-1.23554,2.63909,0.261535,-0.667739,2.61901,0.663177,-0.897602,2.6115,0.643142,-1.19757,2.97153,0.312404,-0.869892,2.93121,0.686346,-1.12935,2.20427,0.461606,-1.24412,2.19031,0.233759,-0.734359,1.53595,0.725466,-0.971002,1.52656,0.703538,-1.1644,1.47498,0.499725,-1.2548,1.36474,0.229623,-1.24203,1.30037,0.0383351,-1.17166,1.20257,-0.208238,-0.959975,1.23972,-0.414895,-0.651475,1.23152,-0.47898,-0.464981,1.18531,-0.277857,-0.4072,1.17905,0.0259123,-0.430778,1.21579,0.30477,-0.53366,1.4805,0.563857,-0.70882,1.84701,0.65709,-1.13096,1.83192,0.46053,-1.23768,1.77156,0.20991,-0.720842,1.57616,0.755234,-0.984541,1.5684,0.733096,-1.19371,1.52398,0.517696,-1.29295,1.42001,0.237227,-1.2863,1.35528,0.0359704,-1.20773,1.23761,-0.234894,-0.977103,1.24274,-0.452415,-0.634996,1.22837,-0.516409,-0.432152,1.19985,-0.30732,-0.362222,1.20599,0.0206402,-0.385806,1.2525,0.31833,-0.504674,1.52329,0.587916,-0.807689,0.0299927,-0.492847,-0.942691,0.0299927,-0.481133,-0.359224,0.0299937,1.47569,-1.47985,0.0299937,1.41111,-1.17537,0.0299937,1.42866,-0.673346,0.0299937,1.45759,-0.725063,0.0299937,1.85888,-1.16295,0.0299937,1.83365,-1.42853,0.0299937,1.81834,-0.451072,0.0299937,1.87467,-1.05374,0.0299928,2.33639,-0.859097,0.0299928,2.34589,-0.770581,0.0299937,2.11211,-0.542702,0.0299928,2.1253,-1.35546,0.0299928,2.07835,-1.13469,0.0299937,2.09113,-0.434882,0.0299927,-0.277621,-0.435881,0.0299936,0.0426964,-0.483464,0.0299936,0.429721,-0.44443,0.0299936,0.751881,-0.364531,0.0299936,1.08626,-0.390553,0.0299937,1.47388,-0.478399,0.0299937,1.8731,-0.565421,0.0299928,2.12399,-1.23207,0.0299927,-0.259831,-1.24413,0.0299927,0.0167871,-1.23711,0.0299936,0.289029,-1.43064,0.0299936,0.769393,-1.51564,0.0299936,1.0719,-1.44272,0.0299937,1.41325,-1.39614,0.0299937,1.82021,-1.32852,0.0299928,2.07989,-0.838436,0.0299928,2.31446,-0.671746,0.0296693,2.27841,-1.20962,0.0303478,2.25963,-1.0682,0.0299928,2.30443,-0.687756,0.0299928,2.26127,-1.1935,0.0299928,2.24444,-0.628204,0.0296718,-0.452036,-0.802039,0.0299927,-0.478304,-0.945884,0.0299927,-0.4675,-1.07671,0.0298213,-0.445532,-0.634576,0.0300394,-0.439375,-1.06924,0.0299743,-0.433666,-1.12995,7.8569,0.714685,-1.00714,7.20072,0.746596,-1.02269,7.49328,0.649214,-1.27514,8.15058,0.578731,-1.40046,8.33476,0.55027,-1.20424,6.54073,0.986012,-1.04514,6.97139,0.800967,-1.17416,6.74623,0.891382,-1.18057,6.33855,1.01379,-0.948971,7.16841,0.718945,-1.04401,6.9186,0.798224,-1.15495,6.6788,0.887791,-1.16664,6.49928,0.971315,-1.22552,6.37398,1.05179,-1.00855,7.21509,0.733584,-1.023,6.99536,0.784728,-1.16298,6.7643,0.876388,-1.2078,6.53778,0.973894,-1.22603,6.36473,1.04386,-1.07007,8.57608,1.00257,-1.2399,2.46154,-0.143916,-0.430924,2.4002,-0.313413,-0.836087,2.38005,-0.510881,-0.674363,2.37302,-0.510236,-0.533351,2.37653,-0.445343,-1.13506,2.41733,-0.34384,-0.808101,1.60089,-0.429119,-1.07265,1.61361,-0.292247,-1.16391,1.61326,-0.136877,-0.461127,1.58745,-0.239428,-0.552853,1.59455,-0.378117,-0.674513,1.59767,-0.418766,-1.34678,4.5588,-0.109181,-0.187992,4.37302,-0.236215,-0.816057,4.4791,-0.61683,-0.351011,4.40152,-0.509169,-0.589679,4.44448,-0.600021,-1.17418,4.5277,-0.426184,0.00264589,9.36275,-0.824212,-8.88178e-16,9.47257,-0.749116,4.7793e-05,9.56352,-0.703089,9.71987e-05,9.5274,-0.696397,-8.88178e-16,8.7246,-1.06399,-8.88178e-16,8.50177,-1.09809,-8.88178e-16,9.58858,0.71652,-8.88178e-16,7.03062,1.54958,-8.88178e-16,8.25064,1.38608,-8.88178e-16,7.5215,1.40938,-8.88178e-16,6.80268,1.60483,-8.88178e-16,7.36207,1.42218,-8.88178e-16,6.80099,1.60699,-8.88178e-16,7.16549,1.43903,-8.88178e-16,9.37562,0.739489,-8.88178e-16,7.98125,1.34516,-0.489939,6.17145,1.33462,-0.211612,6.16503,1.44164,0,6.16036,1.45212,-0.0926574,5.02553,1.11216,-0.459281,6.19865,1.34175,-0.237441,5.36835,1.3399,-0.464685,5.81186,1.40443,-0.46014,6.17095,1.34599,0.958961,7.50396,-0.42415,0.907277,7.2516,-0.396789,0.480256,7.39369,-0.715444,0.562134,7.63184,-0.782478,0.122297,7.50542,-0.73986,0.2145,7.74688,-0.821681,-0.217269,7.62049,-0.807362,-0.125763,7.8621,-0.831242,-0.555768,7.73631,-0.856878,-0.506037,7.97933,-0.891732,-0.980121,8.17969,-0.747162,-1.02029,7.97131,-0.598804,-0.869736,7.8666,-0.735697,-0.828094,8.07838,-0.876193,0.891237,7.25797,-0.40195,0.943918,7.50953,-0.434534,-0.887215,7.50953,-0.510176,-0.81285,7.25418,-0.460016,0.828094,8.07838,-0.876193,0.869736,7.8666,-0.735697,1.02029,7.97131,-0.598804,0.987291,8.16005,-0.729402,0.506037,7.97933,-0.891732,0.555768,7.73631,-0.791342,0.125763,7.8621,-0.785117,0.217269,7.62049,-0.761238,-0.214039,7.7468,-0.769206,-0.122013,7.50534,-0.687385,-0.576891,7.60804,-0.792883,-0.483288,7.36705,-0.709315,-0.829049,7.24781,-0.455338,-0.902413,7.50396,-0.502548,-0.00149369,7.12352,-0.669808,0.00257322,6.86799,-0.759762,0.630834,7.12862,-0.543915,0.635149,6.87205,-0.586496,-0.69347,6.84615,-0.547242,-0.697537,7.10167,-0.506357,0.31467,7.12607,-0.64413,0.318861,6.87002,-0.711233,-0.377977,6.85605,-0.715733,-0.382044,7.11157,-0.627503,-1.07567,8.24793,-0.746741,-1.26486,8.41599,-0.644328,-0.932359,8.52427,-0.96859,-1.11276,8.70169,-0.87151,-0.929247,8.95635,-0.84102,-0.74885,8.77894,-0.937249,0.763104,8.7652,-0.995331,0.943501,8.94262,-0.899102,1.11506,8.69738,-0.881548,0.934661,8.51996,-0.978628,1.27156,8.41397,-0.625966,1.08236,8.24591,-0.728379,1.16576,8.60215,-0.839401,0.982431,8.42785,-0.938258,-0.978103,8.43606,-0.935005,-1.16131,8.6105,-0.835039,0.907404,6.86516,-0.385721,0.903089,7.12172,-0.342586,-0.952604,7.09753,-0.286948,-0.948537,6.84201,-0.329097,0.947527,7.50956,-0.396987,0.895842,7.2572,-0.369625,0.471442,7.40314,-0.688373,0.554161,7.64127,-0.755139,0.121909,7.51322,-0.710892,0.214123,7.75469,-0.792719,-0.219324,7.62611,-0.777965,-0.12778,7.86776,-0.801851,-0.553271,7.74286,-0.827711,-0.502592,7.98622,-0.862738,-0.958089,8.18814,-0.728635,-0.99826,7.97976,-0.580278,-0.853484,7.87548,-0.712097,-0.811997,8.08727,-0.852488,0.877485,7.26524,-0.3763,0.92959,7.51722,-0.409325,-0.875017,7.51935,-0.484588,-0.801318,7.26366,-0.433994,0.81301,8.08933,-0.852687,0.854419,7.87749,-0.712313,0.998254,7.97974,-0.58028,0.965253,8.16848,-0.710878,0.503247,7.99001,-0.863836,0.553852,7.74662,-0.763236,0.127902,7.86966,-0.756164,0.21943,7.62807,-0.732291,-0.215754,7.75428,-0.740206,-0.123699,7.51282,-0.658382,-0.571725,7.6183,-0.76517,-0.477223,7.37746,-0.681844,-0.82102,7.25543,-0.427457,-0.894384,7.51159,-0.474667,-0.00138016,7.11418,-0.6413,0.00270323,6.85865,-0.731255,0.616788,7.1234,-0.517925,0.621382,6.86677,-0.56037,-0.677578,6.84107,-0.522309,-0.681295,7.09675,-0.481619,0.307999,7.11861,-0.61585,0.312394,6.86248,-0.682928,-0.370175,6.84772,-0.687989,-0.373824,7.1034,-0.599834,-1.05578,8.25757,-0.726455,-1.24497,8.42563,-0.624042,-0.920388,8.52146,-0.941226,-1.10169,8.69784,-0.843894,-0.922423,8.94804,-0.813016,-0.742026,8.77062,-0.909245,0.753134,8.76017,-0.967488,0.933531,8.93759,-0.871259,1.10208,8.69585,-0.854545,0.921176,8.51906,-0.951845,1.25125,8.42473,-0.606686,1.06205,8.25667,-0.709099,1.14725,8.60895,-0.816791,0.963906,8.43468,-0.915672,-0.960035,8.44197,-0.911796,-1.14334,8.61622,-0.811711,0.889696,6.86088,-0.361887,0.88538,7.11744,-0.318753,-0.933165,7.09417,-0.264348,-0.929098,6.83865,-0.306496,5.18959,9.35857,-0.102872,5.13196,8.67238,-0.168157,5.18907,9.36588,-0.115429,5.17987,9.26979,0.0354708,5.19694,9.36792,-0.380305,5.16548,9.15789,0.105614,5.16123,9.16407,-0.612637,5.12678,8.86793,-0.583085,5.12154,8.70727,-0.409684,5.16946,9.00376,0.154364,4.96705,8.87567,0.111074,5.05708,8.9247,0.116063,4.8426,9.13069,0.127892,4.74615,9.08004,0.129151,5.0577,8.78045,0.0279813,5.13568,8.82825,0.0379982,4.87903,8.97089,0.155275,4.97703,9.02115,0.155726,5.20922,8.72843,-0.135429,5.08716,8.71381,-0.156249,5.12652,8.73566,-0.281169,5.21304,8.75202,-0.271068,4.94294,9.12019,0.0826645,5.03123,9.06974,0.0825777,4.793,8.69017,0.0247716,4.68174,8.71687,0.0577376,4.92014,8.89338,0.103624,4.82593,8.94347,0.137803,4.57997,8.62508,-0.132276,4.6918,8.63047,-0.158464,4.57643,8.66027,-0.279749,4.45999,8.67663,-0.269648,4.7408,8.67073,-0.271068,4.62647,8.65437,-0.281169,4.57036,8.63924,-0.15502,4.72527,8.64714,-0.135429,4.45273,8.92293,0.134624,4.35668,8.87284,0.133019,4.6287,8.74695,0.0219037,4.53028,8.69916,0.012151,4.14358,9.08807,0.132303,4.23756,9.13853,0.13239,3.95027,8.6535,-0.32502,4.08195,8.65116,-0.322612,4.12279,9.11246,0.038473,4.00368,9.11124,0.0257229,4.00751,8.6549,-0.00387725,4.01114,8.84191,0.109665,4.13577,8.66689,-0.00453606,4.13152,8.85519,0.115487,4.02086,9.06641,0.0277219,4.14051,9.06698,0.0390865,4.14769,9.05713,0.136526,4.02699,9.05656,0.124554,4.13103,8.84166,0.137565,4.11899,8.55616,0.0512316,4.0088,8.82819,0.131661,3.99064,8.55402,0.051442,4.0094,9.1013,0.118953,4.12912,9.10251,0.132024,4.12744,8.73499,0.0697622,4.00131,8.72695,0.0668861,3.97255,8.76966,0.119836,4.15719,8.77253,0.12758,3.97323,8.82479,0.141118,4.15413,8.83292,0.150402,4.15971,8.80654,0.0151694,4.15596,8.87006,0.0268802,3.97566,8.7989,0.0212496,3.97568,8.8572,0.0314823,3.97368,8.82822,0.129619,3.97304,8.77286,0.109135,4.15782,8.77703,0.112764,4.15458,8.83768,0.134624,3.97415,8.6455,-0.224151,4.10457,8.65411,-0.222644,4.1357,8.97038,0.155297,4.0149,8.96648,0.145355,4.14072,8.65155,0.0457747,4.01275,8.64628,0.0448837,4.78039,9.40658,-0.0758903,4.76216,8.60106,-0.158204,4.78223,9.41594,-0.0897542,4.78764,9.3185,0.0524774,4.80853,9.45278,-0.399189,4.80446,9.19037,0.120447,4.78208,9.20776,-0.664155,4.74916,8.84774,-0.630498,4.73625,8.63754,-0.432423,4.82671,9.00896,0.193148,5.81292,8.9698,0.231106,5.85223,8.89834,0.193407,6.09238,8.86075,0.441783,6.05889,8.91491,0.479462,6.13263,9.06693,0.434664,6.1976,9.05422,0.378486,5.97695,9.12428,0.12241,5.90066,9.13654,0.188919,4.31381,9.44199,-0.0618918,4.2985,9.44424,-0.0635358,4.05855,9.47121,-0.017392,4.51904,9.44486,-0.0581054,5.49535,9.29461,-0.130617,4.27963,9.03584,0.195479,4.12353,8.67239,-0.488393,3.94936,8.97942,-0.793941,3.96388,9.17557,-0.811735,4.27259,9.20613,0.123737,4.2338,9.47144,-0.430466,4.28524,9.33671,0.0495489,4.31738,9.45015,-0.0705113,4.159,8.6346,-0.188733,3.18435,8.94545,-0.802984,3.21318,9.28523,-0.834873,3.83697,9.5561,-0.411871,4.04619,9.50936,-0.0266839,3.90232,8.95371,-0.951788,3.91709,9.17944,-0.972256,4.3553,9.49459,-0.085989,4.29335,9.54822,-0.481011,3.44224,8.74425,-0.601675,3.59093,8.65176,-0.336891,4.19712,8.58747,-0.19124,4.15014,8.58921,-0.556903,5.42449,8.74371,-0.178109,4.52216,8.5898,-0.152909,4.1348,8.63906,-0.191443,4.30552,9.45117,-0.0699893,4.272,9.33513,0.0510349,4.20998,9.46862,-0.431985,4.25321,9.20597,0.121319,3.92268,9.17111,-0.820164,3.90956,8.99009,-0.803735,4.09708,8.67762,-0.490771,4.25988,9.03723,0.188107,4.06171,9.48015,-0.0290835,3.97984,9.33767,0.102296,3.92329,9.21192,0.140946,3.88343,9.06108,0.143446,4.52157,9.45551,-0.0728152,4.53049,9.35201,0.0649886,4.55752,9.50919,-0.411319,4.55611,9.21338,0.134445,4.52887,9.236,-0.69745,4.49537,8.83469,-0.66114,4.49929,8.62569,-0.450121,4.58325,9.01254,0.203868,5.48857,9.28069,-0.361534,5.4981,9.29899,-0.14191,5.48819,9.21409,0.0183646,5.46127,9.12224,0.0913291,5.44745,8.88813,-0.535673,5.42456,8.77699,-0.386944,5.45184,8.99878,0.118106,5.4647,9.12043,-0.561116,5.44332,8.73495,0.100872,5.4565,9.24885,0.103988,5.47256,9.3663,-0.392541,5.47533,9.29927,-0.502092,5.46829,9.39265,-0.175882,5.47086,9.39611,-0.276114,5.4609,9.31769,0.031806,5.46352,9.35818,-0.0476925,5.42713,8.61162,-0.0998135,5.42938,8.67674,-0.00595385,5.43057,8.58601,-0.337064,5.42848,8.58258,-0.239573,5.44278,8.69157,-0.529697,5.43492,8.62755,-0.447478,5.46988,8.82451,-0.641673,5.48026,8.99049,-0.658712,5.49064,9.13993,-0.675752,5.45197,9.13692,0.208964,5.44097,8.9996,0.236854,5.43933,8.84832,0.213619,5.70189,8.81395,0.0898769,5.26142,8.67462,0.147307,5.2978,9.30073,0.147513,5.3165,9.40985,-0.414438,5.31507,9.33484,-0.543873,5.72037,9.23602,-0.384707,5.73113,9.18198,-0.488114,5.71384,9.25262,-0.163536,5.71649,9.25468,-0.268192,5.3125,9.43769,-0.177545,5.31544,9.44164,-0.290299,5.30225,9.35829,0.0489659,5.3071,9.40189,-0.0432082,5.71136,9.1967,0.0395035,5.71064,9.23203,-0.0382047,5.69757,8.75679,-0.103305,5.69943,8.78288,-0.000410627,5.26265,8.54643,-0.0961424,5.27375,8.57597,0.018465,5.26856,8.53709,-0.354748,5.26592,8.5312,-0.242787,5.70042,8.74722,-0.331948,5.69836,8.74489,-0.226228,5.71808,8.80561,-0.513113,5.70528,8.75953,-0.433351,5.28843,8.62652,-0.56972,5.27526,8.57773,-0.471744,5.7576,9.05903,-0.598629,5.74801,8.96286,-0.605562,5.74124,8.89017,-0.59075,5.29574,9.16957,-0.732011,5.29996,9.00274,-0.750165,5.30059,8.79493,-0.723831,5.70433,8.98179,0.205973,5.70898,8.9085,0.179451,5.26641,8.84434,0.276775,5.27168,9.01464,0.300472,5.28855,9.17683,0.273982,5.7149,9.14698,0.102829,5.70846,9.05461,0.174994,6.49213,9.15533,-0.598623,6.63174,9.20955,-0.623172,6.35115,9.24484,-0.568174,6.36484,9.28955,-0.464205,6.62843,9.15688,-0.509625,6.5005,9.17354,-0.490761,6.37074,9.33473,-0.0411153,6.63864,9.1471,-0.0269347,6.51655,9.20652,-0.0405739,6.33858,9.19705,-0.668319,6.38117,9.35441,-0.26453,6.32958,9.2457,0.166441,6.3763,9.33593,-0.352561,6.37937,9.35739,-0.161182,6.35642,9.29934,0.0591969,6.63882,9.13101,-0.255033,6.6254,9.13459,0.148849,6.62114,9.17414,-0.756287,6.65038,9.2252,-0.387692,6.66092,9.23647,-0.126912,6.64802,9.21131,0.0554855,6.50947,9.19346,0.0601968,6.5183,9.22651,-0.364727,6.52363,9.23131,-0.264977,6.52777,9.24857,-0.153468,6.48991,9.14388,0.181109,6.48133,9.11854,-0.699323,5.85292,9.11706,-0.603598,5.84196,9.28774,-0.0520971,5.85306,9.22159,-0.472468,5.84789,9.29808,-0.261897,5.80412,9.18633,0.10529,5.85052,9.28612,-0.368465,5.84551,9.29688,-0.1644,5.83273,9.24755,0.0295016,5.56568,9.31331,0.0178463,5.56798,9.36499,-0.169827,5.57401,9.34965,-0.374259,5.5744,9.25228,0.0650122,5.61725,9.18174,-0.571995,5.58396,9.2997,-0.469839,5.56502,9.34596,-0.0539808,5.57043,9.3669,-0.266562,6.0664,9.10222,-0.630811,6.07967,9.25926,-0.0521186,6.08104,9.18121,-0.482696,6.0857,9.27234,-0.266513,6.04353,9.15957,0.161724,6.08459,9.2439,-0.376418,6.08344,9.27356,-0.1691,6.07326,9.22566,0.0439849,6.22167,9.15742,-0.656728,6.21845,9.15845,0.177487,6.23878,9.24226,-0.0678524,6.23575,9.21565,-0.507124,6.24619,9.25935,-0.286629,6.24214,9.24625,-0.402638,6.24314,9.26177,-0.191188,6.23656,9.21994,0.0338962,6.42794,9.18863,0.0274598,6.4339,9.21064,-0.201778,6.43326,9.18191,-0.421409,6.4124,9.13205,-0.628701,6.41613,9.16458,0.144365,6.42667,9.15868,-0.52689,6.43812,9.2078,-0.302182,6.42868,9.19644,-0.0800807,5.99311,9.30921,0.0445054,6.00352,9.35822,-0.173533,6.0047,9.32788,-0.385671,5.96269,9.24158,0.164982,6.00584,9.35698,-0.273211,6.00106,9.26373,-0.49442,5.99967,9.34359,-0.0538324,5.98609,9.1829,-0.645979,6.2104,8.84002,0.724453,6.21749,8.78246,0.659902,6.43923,8.65151,0.846311,6.43643,8.69617,0.903928,6.5391,8.85896,0.881638,6.57943,8.86248,0.809321,6.36445,8.99023,0.614545,6.31786,8.99066,0.701284,6.11645,9.06197,0.465565,6.18315,9.05462,0.399779,6.39091,8.94457,0.61417,6.33424,8.95295,0.670056,6.25802,8.8133,0.695426,6.28369,8.76673,0.652726,6.05614,8.84742,0.442227,6.02628,8.91009,0.487378,6.87585,9.06778,-0.791544,6.84365,8.99127,-0.807368,7.08247,8.92813,-0.835309,7.10613,8.98433,-0.823686,7.14027,8.9992,-0.695546,7.12795,8.95612,-0.66872,6.89473,9.0189,-0.608766,6.90559,9.08013,-0.649746,6.70099,9.08903,-0.59733,6.70134,9.02357,-0.56182,6.94195,9.00881,-0.62361,6.94632,9.05554,-0.646529,6.9152,9.04583,-0.77593,6.90198,8.98751,-0.792583,6.65575,9.00435,-0.762736,6.67375,9.08375,-0.740065,6.47443,9.1191,-0.696952,6.45314,9.04075,-0.720381,6.69862,9.0133,-0.74851,6.71426,9.07086,-0.731301,6.74476,9.07822,-0.601598,6.73816,9.03156,-0.57908,6.49796,9.05643,-0.518983,6.50077,9.1221,-0.55398,6.58706,9.15406,-0.453753,6.57254,9.08894,-0.481253,6.83646,9.07548,-0.514881,6.84915,9.13488,-0.490829,6.86946,9.1306,-0.356757,6.86242,9.07927,-0.338955,6.59735,9.0856,-0.293673,6.60037,9.14429,-0.317964,6.85562,9.1751,-0.363666,6.85296,9.10481,-0.32911,7.18971,9.0529,-0.393175,7.19611,9.1007,-0.415388,7.17596,9.09254,-0.549306,7.16408,9.03348,-0.568102,6.82671,9.08891,-0.531748,6.84263,9.1734,-0.506579,7.16306,9.12089,-0.569436,7.13837,9.04366,-0.593231,7.43031,8.99038,-0.61034,7.44875,9.04806,-0.59257,7.46923,9.05641,-0.458715,7.45737,9.01007,-0.43566,7.16802,9.06084,-0.374282,7.17827,9.12535,-0.410032,6.6323,9.16951,-0.219275,6.61537,9.09984,-0.24958,6.93433,9.07476,-0.267459,6.94806,9.1344,-0.242888,6.96143,9.12979,-0.107957,6.95154,9.07832,-0.0904558,6.63177,9.09589,-0.0461437,6.63887,9.15893,-0.0722469,6.95379,9.15256,-0.0997597,6.94609,9.0779,-0.0714212,7.25376,9.04465,-0.122943,7.26365,9.09656,-0.140444,7.25028,9.10117,-0.275375,7.23656,9.04093,-0.299946,6.92828,9.08072,-0.292278,6.94666,9.16405,-0.259377,7.24563,9.1381,-0.2868,7.22551,9.05706,-0.31916,7.57112,8.99473,-0.328901,7.58614,9.05106,-0.304734,7.59845,9.04732,-0.169675,7.58716,8.99861,-0.15181,7.24166,9.05538,-0.0981512,7.25134,9.12787,-0.127039,7.19866,9.06718,0.191334,7.18132,9.00008,0.218576,7.48993,8.94429,0.217909,7.50621,8.99221,0.201864,7.51516,8.99511,0.0665205,7.50133,8.93931,0.0346215,7.19972,9.00127,-0.00813474,7.21824,9.07599,0.0325902,6.94976,9.10364,0.0243505,6.93776,9.02612,-0.0222611,7.2448,8.99976,0.0182315,7.25426,9.05746,0.0560114,7.24669,9.05338,0.191409,7.23615,9.00337,0.207469,6.92318,9.02279,0.210435,6.93247,9.09244,0.18321,6.63324,9.14165,0.168271,6.6532,9.07284,0.195496,6.94227,9.03516,0.192953,6.95614,9.08504,0.176893,6.96396,9.0886,0.0414958,6.95455,9.03059,0.00567061,6.65446,9.08003,-0.0432736,6.65123,9.15168,0.00941143,-5.18958,9.35857,-0.102872,-5.13196,8.67238,-0.168157,-5.18907,9.36588,-0.115429,-5.17987,9.26979,0.0354708,-5.19694,9.36792,-0.380305,-5.16548,9.15789,0.105615,-5.16123,9.16407,-0.612637,-5.12678,8.86793,-0.583085,-5.12154,8.70726,-0.409684,-5.16946,9.00376,0.154364,-4.96705,8.87567,0.111074,-5.05708,8.9247,0.116063,-4.8426,9.13069,0.127892,-4.74615,9.08004,0.129151,-5.0577,8.78045,0.0279814,-5.13568,8.82825,0.0379983,-4.87903,8.97089,0.155275,-4.97703,9.02115,0.155726,-5.20922,8.72843,-0.135429,-5.08716,8.71381,-0.156249,-5.12652,8.73566,-0.281169,-5.21304,8.75202,-0.271068,-4.94294,9.12019,0.0826646,-5.03123,9.06973,0.0825777,-4.793,8.69017,0.0247716,-4.68174,8.71687,0.0577377,-4.92014,8.89338,0.103624,-4.82593,8.94347,0.137803,-4.57997,8.62508,-0.132276,-4.6918,8.63046,-0.158464,-4.57643,8.66027,-0.279749,-4.45999,8.67663,-0.269648,-4.7408,8.67073,-0.271068,-4.62647,8.65437,-0.281169,-4.57036,8.63924,-0.15502,-4.72527,8.64714,-0.135429,-4.45273,8.92293,0.134624,-4.35668,8.87284,0.133019,-4.6287,8.74695,0.0219038,-4.53028,8.69915,0.0121511,-4.14358,9.08807,0.132303,-4.23756,9.13853,0.13239,-3.95027,8.6535,-0.32502,-4.08195,8.65116,-0.322612,-4.12279,9.11246,0.0384731,-4.00368,9.11124,0.0257229,-4.00751,8.6549,-0.00387723,-4.01114,8.84191,0.109665,-4.13577,8.66689,-0.00453603,-4.13152,8.85519,0.115487,-4.02086,9.06641,0.027722,-4.14051,9.06698,0.0390866,-4.14769,9.05713,0.136526,-4.02699,9.05656,0.124554,-4.13103,8.84166,0.137565,-4.11899,8.55616,0.0512317,-4.0088,8.82819,0.131661,-3.99064,8.55402,0.051442,-4.0094,9.1013,0.118953,-4.12912,9.10251,0.132024,-4.12744,8.73499,0.0697623,-4.00131,8.72695,0.0668862,-3.97255,8.76966,0.119836,-4.15719,8.77253,0.12758,-3.97323,8.82479,0.141118,-4.15413,8.83292,0.150402,-4.15971,8.80654,0.0151694,-4.15596,8.87006,0.0268803,-3.97566,8.7989,0.0212496,-3.97568,8.8572,0.0314823,-3.97368,8.82822,0.129619,-3.97304,8.77286,0.109135,-4.15781,8.77703,0.112765,-4.15458,8.83768,0.134624,-3.97415,8.6455,-0.224151,-4.10457,8.65411,-0.222644,-4.1357,8.97038,0.155297,-4.0149,8.96648,0.145355,-4.14072,8.65155,0.0457747,-4.01275,8.64628,0.0448838,-4.78039,9.40658,-0.0758903,-4.76216,8.60105,-0.158204,-4.78223,9.41594,-0.0897541,-4.78764,9.3185,0.0524774,-4.80853,9.45278,-0.399189,-4.80445,9.19037,0.120447,-4.78208,9.20776,-0.664155,-4.74916,8.84774,-0.630498,-4.73625,8.63754,-0.432423,-4.82671,9.00896,0.193148,-5.81292,8.9698,0.231106,-5.85224,8.89834,0.193407,-6.09238,8.86075,0.441783,-6.05889,8.91491,0.479462,-6.13263,9.06693,0.434664,-6.1976,9.05422,0.378486,-5.97696,9.12428,0.12241,-5.90066,9.13654,0.188919,-4.31381,9.44199,-0.0618918,-4.2985,9.44424,-0.0635357,-4.05855,9.47121,-0.017392,-4.51904,9.44486,-0.0581053,-5.49535,9.29461,-0.130617,-4.27963,9.03584,0.195479,-4.12353,8.67239,-0.488393,-3.94936,8.97942,-0.793941,-3.96388,9.17557,-0.811735,-4.27259,9.20613,0.123737,-4.2338,9.47144,-0.430466,-4.28524,9.33671,0.049549,-4.31738,9.45015,-0.0705113,-4.159,8.6346,-0.188733,-3.18435,8.94545,-0.802984,-3.21318,9.28523,-0.834873,-3.83697,9.5561,-0.411871,-4.04619,9.50936,-0.0266839,-3.90232,8.95371,-0.951788,-3.91709,9.17944,-0.972256,-4.3553,9.49459,-0.085989,-4.29335,9.54822,-0.481011,-3.44224,8.74425,-0.601675,-3.59093,8.65176,-0.336891,-4.19712,8.58747,-0.19124,-4.15014,8.58921,-0.556903,-5.42449,8.74371,-0.178109,-4.52216,8.5898,-0.152908,-4.1348,8.63906,-0.191443,-4.30552,9.45117,-0.0699892,-4.27199,9.33513,0.0510349,-4.20998,9.46862,-0.431985,-4.25321,9.20597,0.121319,-3.92268,9.17111,-0.820164,-3.90955,8.99009,-0.803735,-4.09708,8.67762,-0.490771,-4.25988,9.03723,0.188107,-4.06171,9.48015,-0.0290835,-3.97984,9.33767,0.102297,-3.92329,9.21192,0.140946,-3.88343,9.06108,0.143446,-4.52157,9.45551,-0.0728152,-4.53049,9.352,0.0649886,-4.55752,9.50919,-0.411319,-4.55611,9.21338,0.134445,-4.52887,9.236,-0.69745,-4.49537,8.83469,-0.66114,-4.49929,8.62569,-0.450121,-4.58325,9.01253,0.203868,-5.48857,9.28069,-0.361534,-5.4981,9.29899,-0.14191,-5.48819,9.21408,0.0183646,-5.46127,9.12223,0.0913291,-5.44745,8.88813,-0.535673,-5.42456,8.77699,-0.386944,-5.45184,8.99878,0.118106,-5.4647,9.12043,-0.561116,-5.44332,8.73495,0.100872,-5.4565,9.24885,0.103988,-5.47256,9.3663,-0.392541,-5.47533,9.29927,-0.502092,-5.46829,9.39265,-0.175882,-5.47086,9.39612,-0.276114,-5.4609,9.31769,0.0318061,-5.46352,9.35818,-0.0476925,-5.42713,8.61162,-0.0998135,-5.42938,8.67674,-0.0059538,-5.43057,8.58601,-0.337064,-5.42848,8.58258,-0.239573,-5.44278,8.69157,-0.529697,-5.43492,8.62755,-0.447478,-5.46988,8.82451,-0.641673,-5.48026,8.99049,-0.658712,-5.49064,9.13993,-0.675752,-5.45197,9.13692,0.208964,-5.44097,8.9996,0.236854,-5.43933,8.84832,0.213619,-5.70189,8.81395,0.089877,-5.26142,8.67462,0.147307,-5.2978,9.30073,0.147513,-5.3165,9.40985,-0.414438,-5.31507,9.33485,-0.543872,-5.72037,9.23602,-0.384707,-5.73113,9.18198,-0.488114,-5.71384,9.25262,-0.163536,-5.71649,9.25468,-0.268192,-5.3125,9.4377,-0.177545,-5.31544,9.44164,-0.290299,-5.30225,9.35829,0.048966,-5.3071,9.40189,-0.0432081,-5.71136,9.19671,0.0395036,-5.71064,9.23203,-0.0382047,-5.69757,8.75679,-0.103305,-5.69943,8.78288,-0.000410574,-5.26265,8.54643,-0.0961423,-5.27375,8.57597,0.0184651,-5.26856,8.53709,-0.354748,-5.26592,8.53121,-0.242787,-5.70042,8.74722,-0.331948,-5.69836,8.74489,-0.226228,-5.71808,8.80561,-0.513113,-5.70528,8.75953,-0.433351,-5.28843,8.62652,-0.56972,-5.27527,8.57773,-0.471744,-5.7576,9.05904,-0.598629,-5.74801,8.96286,-0.605562,-5.74124,8.89017,-0.59075,-5.29574,9.16957,-0.732011,-5.29996,9.00274,-0.750165,-5.30059,8.79493,-0.723831,-5.70433,8.98179,0.205973,-5.70898,8.9085,0.179451,-5.26641,8.84434,0.276775,-5.27168,9.01464,0.300472,-5.28855,9.17684,0.273982,-5.7149,9.14698,0.10283,-5.70846,9.05461,0.174994,-6.49213,9.15533,-0.598624,-6.63174,9.20955,-0.623172,-6.35115,9.24484,-0.568174,-6.36484,9.28955,-0.464205,-6.62843,9.15688,-0.509625,-6.5005,9.17354,-0.490761,-6.37074,9.33473,-0.0411153,-6.63864,9.1471,-0.0269347,-6.51655,9.20652,-0.0405739,-6.33858,9.19705,-0.668319,-6.38117,9.35441,-0.26453,-6.32958,9.2457,0.166441,-6.3763,9.33593,-0.352561,-6.37937,9.35739,-0.161182,-6.35642,9.29934,0.0591969,-6.63882,9.13101,-0.255033,-6.6254,9.1346,0.148849,-6.62114,9.17414,-0.756287,-6.65038,9.2252,-0.387692,-6.66092,9.23647,-0.126912,-6.64802,9.21131,0.0554855,-6.50947,9.19346,0.0601969,-6.5183,9.22651,-0.364727,-6.52363,9.23132,-0.264977,-6.52777,9.24857,-0.153468,-6.48991,9.14388,0.181109,-6.48133,9.11854,-0.699323,-5.85292,9.11706,-0.603598,-5.84196,9.28774,-0.0520971,-5.85306,9.22159,-0.472468,-5.84788,9.29808,-0.261897,-5.80412,9.18633,0.10529,-5.85051,9.28612,-0.368465,-5.84551,9.29688,-0.1644,-5.83273,9.24755,0.0295016,-5.56568,9.31331,0.0178462,-5.56797,9.36499,-0.169827,-5.57401,9.34965,-0.374259,-5.5744,9.25228,0.0650121,-5.61725,9.18174,-0.571995,-5.58396,9.2997,-0.469839,-5.56502,9.34596,-0.0539808,-5.57043,9.3669,-0.266562,-6.0664,9.10222,-0.630811,-6.07967,9.25926,-0.0521187,-6.08104,9.18121,-0.482696,-6.0857,9.27234,-0.266513,-6.04353,9.15957,0.161724,-6.08459,9.2439,-0.376418,-6.08344,9.27356,-0.1691,-6.07326,9.22566,0.0439848,-6.22167,9.15742,-0.656728,-6.21845,9.15845,0.177487,-6.23878,9.24226,-0.0678524,-6.23575,9.21565,-0.507124,-6.24619,9.25935,-0.286629,-6.24214,9.24625,-0.402638,-6.24314,9.26177,-0.191188,-6.23656,9.21994,0.0338962,-6.42794,9.18863,0.0274598,-6.4339,9.21064,-0.201778,-6.43326,9.18191,-0.421409,-6.4124,9.13205,-0.628701,-6.41613,9.16458,0.144365,-6.42667,9.15869,-0.52689,-6.43812,9.2078,-0.302182,-6.42868,9.19644,-0.0800808,-5.99311,9.30921,0.0445054,-6.00352,9.35822,-0.173533,-6.0047,9.32788,-0.385671,-5.96269,9.24158,0.164982,-6.00584,9.35698,-0.273211,-6.00106,9.26373,-0.49442,-5.99966,9.34359,-0.0538325,-5.98609,9.1829,-0.645979,-6.2104,8.84001,0.724453,-6.21749,8.78246,0.659902,-6.43923,8.65151,0.846311,-6.43643,8.69616,0.903927,-6.5391,8.85896,0.881638,-6.57943,8.86248,0.809321,-6.36445,8.99023,0.614545,-6.31786,8.99065,0.701284,-6.11645,9.06197,0.465566,-6.18315,9.05461,0.399779,-6.39091,8.94457,0.61417,-6.33424,8.95295,0.670057,-6.25802,8.81329,0.695426,-6.28369,8.76673,0.652726,-6.05614,8.84742,0.442227,-6.02628,8.91009,0.487378,-6.87585,9.06778,-0.791544,-6.84365,8.99127,-0.807368,-7.08247,8.92813,-0.835309,-7.10613,8.98433,-0.823686,-7.14028,8.9992,-0.695546,-7.12795,8.95612,-0.66872,-6.89473,9.0189,-0.608766,-6.90559,9.08013,-0.649746,-6.70099,9.08903,-0.59733,-6.70134,9.02357,-0.56182,-6.94195,9.00881,-0.62361,-6.94632,9.05554,-0.646529,-6.9152,9.04583,-0.77593,-6.90198,8.98751,-0.792583,-6.65575,9.00436,-0.762736,-6.67375,9.08375,-0.740065,-6.47443,9.1191,-0.696952,-6.45314,9.04075,-0.720381,-6.69862,9.01331,-0.74851,-6.71426,9.07086,-0.731301,-6.74476,9.07822,-0.601598,-6.73816,9.03156,-0.57908,-6.49796,9.05643,-0.518983,-6.50077,9.1221,-0.55398,-6.58706,9.15406,-0.453753,-6.57255,9.08894,-0.481253,-6.83646,9.07548,-0.514881,-6.84915,9.13488,-0.490829,-6.86946,9.1306,-0.356757,-6.86242,9.07927,-0.338955,-6.59735,9.0856,-0.293673,-6.60038,9.14429,-0.317964,-6.85562,9.1751,-0.363666,-6.85296,9.10481,-0.32911,-7.18971,9.0529,-0.393175,-7.19611,9.1007,-0.415388,-7.17596,9.09255,-0.549306,-7.16408,9.03348,-0.568102,-6.82671,9.08891,-0.531748,-6.84263,9.17341,-0.506579,-7.16306,9.12089,-0.569436,-7.13837,9.04366,-0.593231,-7.43031,8.99038,-0.610341,-7.44875,9.04806,-0.59257,-7.46923,9.05641,-0.458715,-7.45737,9.01007,-0.43566,-7.16802,9.06084,-0.374282,-7.17827,9.12535,-0.410032,-6.6323,9.16951,-0.219275,-6.61537,9.09984,-0.24958,-6.93433,9.07476,-0.267459,-6.94806,9.1344,-0.242888,-6.96143,9.12979,-0.107957,-6.95154,9.07832,-0.0904557,-6.63177,9.09589,-0.0461436,-6.63887,9.15893,-0.0722468,-6.95379,9.15256,-0.0997596,-6.94609,9.0779,-0.0714212,-7.25376,9.04465,-0.122943,-7.26365,9.09656,-0.140444,-7.25028,9.10117,-0.275375,-7.23656,9.04093,-0.299946,-6.92828,9.08071,-0.292278,-6.94666,9.16405,-0.259377,-7.24563,9.1381,-0.2868,-7.22551,9.05706,-0.31916,-7.57112,8.99473,-0.3289,-7.58614,9.05106,-0.304733,-7.59845,9.04732,-0.169674,-7.58716,8.99861,-0.151809,-7.24166,9.05538,-0.098151,-7.25134,9.12788,-0.127039,-7.19866,9.06718,0.191334,-7.18132,9.00008,0.218576,-7.48993,8.94429,0.217909,-7.50621,8.99221,0.201864,-7.51516,8.99511,0.0665206,-7.50133,8.93931,0.0346216,-7.19972,9.00127,-0.00813469,-7.21825,9.07599,0.0325903,-6.94976,9.10364,0.0243506,-6.93776,9.02612,-0.0222611,-7.2448,8.99976,0.0182316,-7.25426,9.05746,0.0560114,-7.24669,9.05338,0.191409,-7.23615,9.00337,0.207469,-6.92318,9.02279,0.210435,-6.93248,9.09244,0.18321,-6.63324,9.14165,0.168271,-6.6532,9.07284,0.195496,-6.94227,9.03515,0.192953,-6.95614,9.08504,0.176893,-6.96397,9.0886,0.0414958,-6.95455,9.03059,0.00567066,-6.65446,9.08003,-0.0432736,-6.65123,9.15168,0.00941147,5.18438,9.33327,-0.118125,5.12575,8.70139,-0.163683,5.18314,9.33758,-0.123425,5.17566,9.24884,0.0144121,5.19023,9.34052,-0.370095,5.16241,9.14532,0.0785516,5.15544,9.15377,-0.585062,5.12197,8.88143,-0.556729,5.11577,8.73383,-0.396992,5.16658,8.99469,0.125915,4.96195,8.88746,0.0839641,5.05168,8.9372,0.089335,4.84484,9.12614,0.0983246,4.74839,9.07548,0.0995836,5.05122,8.80182,0.00795356,5.12921,8.8496,0.0179448,4.8788,8.97176,0.125289,4.9755,9.02489,0.126,5.20347,8.75747,-0.140332,5.08139,8.74276,-0.161586,5.12153,8.76494,-0.276889,5.20806,8.7813,-0.266788,4.93634,9.11816,0.0534711,5.02463,9.0677,0.0533843,4.79041,8.71103,0.00336406,4.67958,8.73948,0.0381356,4.91458,8.89865,0.0746189,4.82046,8.94929,0.108884,4.58143,8.65504,-0.132492,4.69255,8.66007,-0.163249,4.57892,8.68936,-0.272867,4.46248,8.70572,-0.262766,4.73774,8.70036,-0.267523,4.62341,8.684,-0.277624,4.56657,8.66817,-0.161994,4.72161,8.67656,-0.14001,4.44983,8.93079,0.105817,4.35475,8.8783,0.103584,4.62407,8.76819,0.00123049,4.52556,8.71904,-0.00981038,4.14383,9.08811,0.102305,4.2378,9.13857,0.102392,3.94954,8.68348,-0.324097,4.08122,8.68114,-0.321689,4.1258,9.11276,0.00862684,4.00669,9.11154,-0.00412329,4.0055,8.68135,-0.0178862,4.01182,8.84621,0.0799824,4.13387,8.69223,-0.0204786,4.13251,8.85724,0.0855738,4.02374,9.06187,-0.00179189,4.14334,9.06121,0.00978235,4.15062,9.05238,0.10705,4.02995,9.05224,0.095015,4.13175,8.85109,0.109096,4.11912,8.55421,0.0212957,4.00929,8.83894,0.103657,3.99078,8.55207,0.0215061,4.01251,9.09922,0.0891886,4.13224,9.10043,0.10226,4.12719,8.74725,0.0423862,4.00106,8.73912,0.039468,3.99529,8.77643,0.101468,4.1361,8.77914,0.107301,3.9942,8.83225,0.121004,4.13404,8.83992,0.129256,4.13779,8.80176,0.0350937,4.13573,8.86507,0.0484681,3.99793,8.7952,0.0409981,3.99588,8.85315,0.053289,4.00366,8.82766,0.130469,4.00303,8.77232,0.109969,4.12786,8.77578,0.111634,4.12463,8.83644,0.133478,3.9727,8.67546,-0.224141,4.10291,8.68406,-0.222897,4.138,8.96827,0.125461,4.01712,8.96511,0.115469,4.14079,8.65495,0.0159688,4.01283,8.64914,0.0150202,4.77612,9.3821,-0.0926917,4.75855,8.63054,-0.154028,4.77727,9.38825,-0.100191,4.78407,9.29849,0.030418,4.80264,9.42487,-0.389886,4.80189,9.17781,0.093326,4.777,9.19761,-0.636387,4.7452,8.86051,-0.603645,4.73251,8.66426,-0.419306,4.82436,8.99846,0.165144,5.83428,8.97207,0.210165,5.87044,8.91745,0.179148,6.11058,8.87986,0.427523,6.0803,8.91848,0.458746,6.13885,9.04079,0.421326,6.19076,9.02507,0.376544,5.97012,9.09513,0.120468,5.90706,9.11051,0.175451,4.31388,9.41983,-0.0821137,4.29479,9.42366,-0.0850431,4.053,9.45149,-0.0393077,4.51752,9.42113,-0.0764027,5.48896,9.26898,-0.144837,4.28285,9.02507,0.167665,4.12632,8.69939,-0.47561,3.9466,8.99261,-0.767142,3.96015,9.16393,-0.784336,4.2753,9.19353,0.096643,4.23468,9.44284,-0.421464,4.28635,9.31796,0.0261537,4.31832,9.42269,-0.08255,4.16317,8.66413,-0.1855,3.18989,8.95704,-0.775878,3.21775,9.27612,-0.806659,3.83683,9.52798,-0.401437,4.04257,9.48404,-0.0423555,3.88774,8.96341,-0.927427,3.90187,9.17252,-0.947354,4.32831,9.48841,-0.0975369,4.26848,9.53579,-0.469736,3.44633,8.76999,-0.586819,3.59542,8.68127,-0.333874,4.16867,8.59464,-0.184963,4.12835,8.60512,-0.54379,5.41756,8.77255,-0.173586,4.52287,8.61957,-0.149262,4.1103,8.65488,-0.184405,4.29698,9.43486,-0.0936793,4.2701,9.31823,0.0263204,4.18523,9.46613,-0.415226,4.25441,9.19518,0.0933516,3.89807,9.17933,-0.805097,3.88445,8.98952,-0.787328,4.07289,8.68377,-0.474124,4.26385,9.02827,0.159754,4.05556,9.46871,-0.0561236,3.97584,9.32371,0.0760503,3.92246,9.2037,0.112105,3.88419,9.05465,0.114154,4.51977,9.42782,-0.0842175,4.5296,9.33252,0.0421958,4.55497,9.48053,-0.402838,4.55543,9.20096,0.107147,4.52473,9.22444,-0.670079,4.49237,8.84848,-0.63467,4.49917,8.65278,-0.437229,4.58243,9.00189,0.175833,5.48088,9.25372,-0.350867,5.49077,9.27046,-0.1476,5.48312,9.19252,-0.00186827,5.45778,9.10972,0.06429,5.44213,8.90174,-0.509476,5.41822,8.80357,-0.374549,5.44877,8.991,0.0892952,5.45815,9.10996,-0.533777,5.43307,8.75737,0.0837704,5.44659,9.22828,0.084529,5.46128,9.3403,-0.382712,5.46481,9.27633,-0.485869,5.45699,9.36515,-0.179924,5.45922,9.36857,-0.273719,5.45106,9.29373,0.0166645,5.45308,9.33178,-0.0574047,5.41441,8.63772,-0.10737,5.41711,8.70129,-0.018084,5.41852,8.61317,-0.332913,5.41622,8.6099,-0.241345,5.43122,8.71338,-0.512657,5.42306,8.65293,-0.43674,5.45879,8.83716,-0.616833,5.4709,8.99291,-0.630313,5.48012,9.12855,-0.650065,5.44228,9.12389,0.18374,5.433,8.99938,0.207934,5.43097,8.86173,0.188118,5.69361,8.83742,0.0731222,5.24942,8.6952,0.129077,5.28675,9.28003,0.128825,5.30749,9.38342,-0.403481,5.30589,9.31197,-0.526775,5.70695,9.21091,-0.375238,5.71945,9.15986,-0.471562,5.6995,9.22653,-0.167228,5.70179,9.22861,-0.266146,5.30429,9.40919,-0.182022,5.30681,9.41307,-0.287261,5.29336,9.33399,0.0337695,5.29916,9.37489,-0.0536016,5.70098,9.17367,0.0233303,5.69784,9.20658,-0.0476212,5.68438,8.78251,-0.111329,5.68904,8.80866,-0.0116793,5.25083,8.57302,-0.103444,5.26001,8.5996,0.00608579,5.25927,8.56513,-0.349503,5.25644,8.55962,-0.24449,5.68556,8.77308,-0.328677,5.68329,8.77075,-0.228171,5.70799,8.82714,-0.494826,5.69244,8.78439,-0.42252,5.27615,8.64836,-0.553225,5.26473,8.60339,-0.460305,5.74806,9.05004,-0.571645,5.74167,8.96591,-0.576399,5.73365,8.90154,-0.564046,5.2848,9.15833,-0.706438,5.2878,9.00444,-0.722791,5.28689,8.80646,-0.699761,5.69968,8.98141,0.176339,5.70327,8.92188,0.153211,5.25597,8.85568,0.251039,5.26083,9.01477,0.272503,5.27639,9.16518,0.24916,5.70629,9.12709,0.0820848,5.70184,9.04165,0.148763,6.48896,9.12622,-0.592101,6.64043,9.1809,-0.621268,6.33673,9.22052,-0.55813,6.34853,9.26658,-0.453883,6.63041,9.12722,-0.505571,6.49275,9.14564,-0.482916,6.35277,9.31195,-0.0487547,6.63356,9.11779,-0.0308505,6.50461,9.17984,-0.0473252,6.32648,9.17228,-0.65648,6.36246,9.33116,-0.261418,6.31516,9.22295,0.153219,6.35839,9.31298,-0.345331,6.36073,9.33403,-0.163759,6.34007,9.27636,0.0489536,6.62578,9.1041,-0.252648,6.62412,9.10888,0.133444,6.63356,9.14775,-0.749273,6.64477,9.19584,-0.385183,6.6514,9.20819,-0.12997,6.6446,9.18169,0.0521739,6.49925,9.1665,0.0518928,6.50557,9.19979,-0.359899,6.50763,9.20605,-0.262618,6.51269,9.22267,-0.154977,6.48137,9.11911,0.166492,6.48319,9.09032,-0.6893,5.84986,9.09336,-0.585462,5.83738,9.25919,-0.0601054,5.84874,9.19711,-0.455673,5.84253,9.26864,-0.259806,5.80239,9.16321,0.0862437,5.84496,9.25832,-0.358657,5.84047,9.26737,-0.166335,5.82989,9.22218,0.0137458,5.5609,9.28883,0.00118502,5.56109,9.33588,-0.172021,5.56703,9.32181,-0.365512,5.57109,9.23141,0.0437218,5.61245,9.15998,-0.551916,5.57795,9.27546,-0.453218,5.55878,9.31781,-0.0622446,5.56333,9.33779,-0.26505,6.06468,9.07723,-0.614298,6.07673,9.23034,-0.0595383,6.07825,9.15599,-0.466697,6.0821,9.24269,-0.263754,6.04343,9.13452,0.145215,6.08053,9.21623,-0.365579,6.08027,9.24377,-0.170664,6.07189,9.1992,0.0299119,6.21687,9.13013,-0.645231,6.21245,9.13163,0.165464,6.22968,9.21416,-0.0730857,6.22962,9.18828,-0.496486,6.23688,9.23097,-0.283853,6.23392,9.21843,-0.394996,6.23353,9.23342,-0.193142,6.2294,9.19226,0.0248065,6.4234,9.15979,0.0205913,6.42622,9.18169,-0.203537,6.42514,9.15376,-0.414978,6.40623,9.10445,-0.618689,6.41333,9.1363,0.134756,6.41958,9.13092,-0.517999,6.43014,9.17903,-0.299259,6.42182,9.16755,-0.084339,5.98327,9.28313,0.0334181,5.99208,9.33057,-0.175654,5.99613,9.3004,-0.377222,5.95406,9.21642,0.151097,5.99511,9.32909,-0.270596,5.99591,9.23692,-0.481964,5.98837,9.31649,-0.0600005,5.98252,9.15599,-0.633209,6.23036,8.84339,0.702314,6.23848,8.79971,0.647172,6.46022,8.66876,0.833581,6.45621,8.69892,0.881539,6.54115,8.83614,0.862266,6.56871,8.8352,0.802928,6.35373,8.96296,0.608152,6.31814,8.96666,0.683284,6.12036,9.03769,0.448388,6.17413,9.02654,0.394262,6.38189,8.9165,0.608654,6.33798,8.92856,0.653001,6.27875,8.81827,0.674316,6.30263,8.78638,0.640271,6.07508,8.86707,0.429772,6.04685,8.91382,0.465872,6.87144,9.04686,-0.770505,6.84528,8.98455,-0.778178,7.08411,8.92141,-0.806119,7.10138,8.96275,-0.803396,7.12893,8.97401,-0.707226,7.1181,8.94225,-0.693429,6.88489,9.00503,-0.633475,6.89424,9.05495,-0.661461,6.69433,9.06332,-0.611286,6.69411,9.01033,-0.587747,6.93471,8.99557,-0.649537,6.93966,9.02981,-0.660451,6.91443,9.02209,-0.757603,6.90483,8.97871,-0.764045,6.6586,8.99556,-0.734199,6.67319,9.06065,-0.72093,6.4727,9.0959,-0.678004,6.45538,9.03162,-0.691892,6.70086,9.00418,-0.720022,6.7123,9.04704,-0.713167,6.73708,9.05292,-0.615771,6.73055,9.01884,-0.605163,6.49035,9.04371,-0.545066,6.49309,9.09682,-0.568187,6.58764,9.12874,-0.437678,6.57548,9.07698,-0.4539,6.83939,9.06351,-0.487527,6.84961,9.10911,-0.475478,6.86545,9.10609,-0.373587,6.85766,9.06907,-0.366763,6.59259,9.07539,-0.32148,6.59625,9.1206,-0.335906,6.84766,9.15015,-0.378299,6.84614,9.09258,-0.355641,7.18289,9.04067,-0.419706,7.18814,9.07585,-0.430185,7.17304,9.06942,-0.530414,7.16561,9.02444,-0.53954,6.82824,9.07986,-0.503186,6.83941,9.14955,-0.488679,7.15897,9.09797,-0.550514,7.13843,9.03481,-0.564567,7.43037,8.98153,-0.581676,7.44448,9.02464,-0.574319,7.46061,9.03121,-0.47252,7.44983,8.99766,-0.461906,7.16048,9.04842,-0.400528,7.16963,9.1008,-0.424944,6.63085,9.14437,-0.20298,6.61605,9.08799,-0.222029,6.93501,9.0629,-0.239908,6.94649,9.10866,-0.227564,6.95706,9.10537,-0.124827,6.94733,9.0683,-0.118416,6.62756,9.08587,-0.0741038,6.63444,9.1355,-0.0904555,6.94696,9.12941,-0.117566,6.94056,9.06854,-0.0993823,7.24824,9.03529,-0.150904,7.25682,9.07293,-0.157619,7.2462,9.07619,-0.259275,7.23579,9.02993,-0.272045,6.92751,9.06972,-0.264377,6.94262,9.13925,-0.242989,7.24042,9.11345,-0.270523,7.22421,9.04594,-0.291328,7.56982,8.98361,-0.301069,7.58093,9.02638,-0.288501,7.59065,9.02379,-0.186574,7.58137,8.9889,-0.179595,7.23587,9.04567,-0.125936,7.24357,9.10468,-0.144407,7.19333,9.04406,0.172986,7.17962,8.98997,0.190383,7.48824,8.93417,0.189716,7.5007,8.96845,0.184403,7.50694,8.9699,0.0805496,7.49486,8.9263,0.0608714,7.19326,8.98827,0.0181151,7.21005,9.05114,0.0472638,6.94464,9.07765,0.0384208,6.93296,9.01099,0.00319681,7.24,8.98463,0.0436894,7.24916,9.03099,0.069178,7.24383,9.0292,0.173883,7.23544,8.99327,0.179229,6.92247,9.0127,0.182195,6.92972,9.06891,0.164813,6.6289,9.11644,0.152591,6.65188,9.06252,0.167361,6.94096,9.02483,0.164818,6.95203,9.06089,0.159576,6.9573,9.0622,0.0540865,6.94833,9.01425,0.0300464,6.64824,9.06369,-0.0188979,6.64458,9.12511,0.0216588,-5.18438,9.33326,-0.118125,-5.12575,8.70139,-0.163683,-5.18314,9.33758,-0.123425,-5.17566,9.24884,0.0144121,-5.19023,9.34052,-0.370095,-5.16241,9.14532,0.0785517,-5.15544,9.15377,-0.585062,-5.12197,8.88143,-0.556729,-5.11577,8.73383,-0.396992,-5.16658,8.99468,0.125915,-4.96195,8.88746,0.0839641,-5.05167,8.9372,0.089335,-4.84484,9.12614,0.0983247,-4.74839,9.07548,0.0995836,-5.05122,8.80182,0.0079536,-5.1292,8.8496,0.0179449,-4.8788,8.97176,0.125289,-4.9755,9.02489,0.126,-5.20347,8.75746,-0.140332,-5.08139,8.74276,-0.161586,-5.12153,8.76493,-0.276889,-5.20806,8.78129,-0.266788,-4.93634,9.11816,0.0534712,-5.02463,9.0677,0.0533843,-4.79041,8.71103,0.00336409,-4.67958,8.73948,0.0381356,-4.91458,8.89865,0.0746189,-4.82046,8.94929,0.108884,-4.58143,8.65504,-0.132492,-4.69255,8.66007,-0.163249,-4.57892,8.68936,-0.272867,-4.46248,8.70572,-0.262766,-4.73774,8.70036,-0.267523,-4.62341,8.684,-0.277624,-4.56657,8.66817,-0.161994,-4.72161,8.67656,-0.14001,-4.44983,8.93079,0.105818,-4.35475,8.8783,0.103584,-4.62407,8.76819,0.00123052,-4.52556,8.71904,-0.00981034,-4.14383,9.08811,0.102305,-4.2378,9.13857,0.102392,-3.94954,8.68348,-0.324097,-4.08122,8.68114,-0.321689,-4.1258,9.11276,0.00862687,-4.00669,9.11154,-0.00412326,-4.0055,8.68135,-0.0178861,-4.01182,8.84621,0.0799824,-4.13387,8.69223,-0.0204786,-4.13251,8.85724,0.0855739,-4.02374,9.06187,-0.00179186,-4.14334,9.06121,0.00978238,-4.15062,9.05238,0.10705,-4.02995,9.05224,0.0950151,-4.13175,8.85109,0.109096,-4.11912,8.55421,0.0212958,-4.00929,8.83894,0.103657,-3.99078,8.55207,0.0215061,-4.01251,9.09922,0.0891887,-4.13224,9.10043,0.10226,-4.12719,8.74725,0.0423862,-4.00106,8.73912,0.039468,-3.99529,8.77643,0.101468,-4.1361,8.77914,0.107301,-3.9942,8.83225,0.121004,-4.13404,8.83992,0.129256,-4.13779,8.80176,0.0350937,-4.13573,8.86507,0.0484681,-3.99793,8.7952,0.0409981,-3.99588,8.85315,0.053289,-4.00366,8.82766,0.130469,-4.00303,8.77232,0.109969,-4.12786,8.77578,0.111634,-4.12463,8.83644,0.133478,-3.9727,8.67546,-0.224141,-4.10291,8.68406,-0.222897,-4.138,8.96827,0.125461,-4.01712,8.96511,0.115469,-4.14079,8.65495,0.0159688,-4.01283,8.64914,0.0150202,-4.77612,9.38209,-0.0926916,-4.75855,8.63054,-0.154028,-4.77727,9.38825,-0.100191,-4.78407,9.29849,0.030418,-4.80264,9.42487,-0.389886,-4.80189,9.1778,0.093326,-4.777,9.19761,-0.636387,-4.7452,8.86051,-0.603645,-4.73251,8.66426,-0.419306,-4.82436,8.99846,0.165144,-5.83428,8.97207,0.210165,-5.87044,8.91745,0.179148,-6.11059,8.87986,0.427523,-6.0803,8.91848,0.458746,-6.13885,9.04079,0.421326,-6.19076,9.02507,0.376544,-5.97012,9.09513,0.120468,-5.90706,9.11051,0.175451,-4.31388,9.41983,-0.0821136,-4.29479,9.42366,-0.085043,-4.053,9.45149,-0.0393077,-4.51752,9.42113,-0.0764027,-5.48896,9.26898,-0.144837,-4.28285,9.02507,0.167665,-4.12632,8.69939,-0.47561,-3.9466,8.99261,-0.767142,-3.96015,9.16393,-0.784336,-4.2753,9.19353,0.096643,-4.23468,9.44284,-0.421464,-4.28635,9.31796,0.0261538,-4.31832,9.42269,-0.0825499,-4.16317,8.66413,-0.1855,-3.18989,8.95704,-0.775878,-3.21775,9.27612,-0.806659,-3.83683,9.52798,-0.401437,-4.04257,9.48404,-0.0423555,-3.88774,8.96341,-0.927427,-3.90187,9.17252,-0.947354,-4.32831,9.48841,-0.0975369,-4.26848,9.53579,-0.469736,-3.44633,8.76999,-0.586819,-3.59542,8.68127,-0.333874,-4.16867,8.59464,-0.184963,-4.12835,8.60512,-0.54379,-5.41756,8.77255,-0.173586,-4.52287,8.61957,-0.149262,-4.1103,8.65488,-0.184405,-4.29698,9.43486,-0.0936792,-4.2701,9.31823,0.0263204,-4.18523,9.46613,-0.415226,-4.25441,9.19518,0.0933517,-3.89807,9.17933,-0.805097,-3.88445,8.98952,-0.787328,-4.07289,8.68377,-0.474124,-4.26385,9.02827,0.159754,-4.05556,9.46871,-0.0561235,-3.97584,9.32371,0.0760503,-3.92246,9.2037,0.112105,-3.88419,9.05465,0.114154,-4.51977,9.42782,-0.0842175,-4.5296,9.33252,0.0421958,-4.55497,9.48053,-0.402838,-4.55543,9.20096,0.107147,-4.52473,9.22444,-0.670079,-4.49237,8.84848,-0.63467,-4.49917,8.65278,-0.437229,-4.58243,9.00189,0.175833,-5.48088,9.25372,-0.350867,-5.49077,9.27046,-0.1476,-5.48312,9.19252,-0.00186821,-5.45778,9.10972,0.06429,-5.44213,8.90174,-0.509476,-5.41822,8.80357,-0.374549,-5.44877,8.991,0.0892953,-5.45815,9.10996,-0.533777,-5.43307,8.75737,0.0837705,-5.44659,9.22828,0.084529,-5.46128,9.3403,-0.382712,-5.46481,9.27633,-0.485869,-5.45699,9.36515,-0.179924,-5.45922,9.36857,-0.273718,-5.45106,9.29373,0.0166646,-5.45308,9.33178,-0.0574047,-5.41441,8.63772,-0.10737,-5.41711,8.70129,-0.018084,-5.41852,8.61317,-0.332913,-5.41622,8.6099,-0.241345,-5.43122,8.71338,-0.512657,-5.42306,8.65293,-0.43674,-5.45879,8.83716,-0.616833,-5.4709,8.99291,-0.630313,-5.48012,9.12855,-0.650065,-5.44228,9.12389,0.18374,-5.433,8.99938,0.207934,-5.43097,8.86173,0.188118,-5.69361,8.83742,0.0731223,-5.24942,8.69521,0.129077,-5.28675,9.28003,0.128825,-5.30749,9.38342,-0.403481,-5.30589,9.31197,-0.526774,-5.70695,9.21091,-0.375238,-5.71945,9.15986,-0.471562,-5.6995,9.22653,-0.167228,-5.70179,9.22861,-0.266146,-5.30429,9.40919,-0.182022,-5.30681,9.41307,-0.287261,-5.29336,9.334,0.0337696,-5.29916,9.3749,-0.0536015,-5.70098,9.17367,0.0233303,-5.69784,9.20658,-0.0476211,-5.68438,8.78251,-0.111329,-5.68904,8.80866,-0.0116792,-5.25083,8.57302,-0.103444,-5.26001,8.5996,0.00608584,-5.25928,8.56513,-0.349503,-5.25644,8.55962,-0.24449,-5.68556,8.77308,-0.328677,-5.68329,8.77075,-0.228171,-5.70799,8.82714,-0.494826,-5.69244,8.78439,-0.42252,-5.27615,8.64836,-0.553225,-5.26473,8.60339,-0.460305,-5.74806,9.05004,-0.571645,-5.74167,8.96591,-0.576398,-5.73365,8.90154,-0.564046,-5.2848,9.15833,-0.706438,-5.2878,9.00444,-0.722791,-5.28689,8.80647,-0.699761,-5.69968,8.98142,0.176339,-5.70327,8.92188,0.153211,-5.25597,8.85568,0.251039,-5.26083,9.01477,0.272503,-5.27639,9.16518,0.24916,-5.70629,9.12709,0.0820849,-5.70184,9.04165,0.148763,-6.48896,9.12623,-0.592101,-6.64043,9.1809,-0.621268,-6.33673,9.22052,-0.558131,-6.34853,9.26658,-0.453883,-6.63041,9.12722,-0.505571,-6.49275,9.14564,-0.482916,-6.35277,9.31195,-0.0487547,-6.63356,9.1178,-0.0308505,-6.50461,9.17984,-0.0473252,-6.32648,9.17228,-0.65648,-6.36246,9.33117,-0.261418,-6.31516,9.22295,0.153219,-6.35839,9.31298,-0.345331,-6.36073,9.33403,-0.163759,-6.34007,9.27637,0.0489536,-6.62578,9.1041,-0.252648,-6.62412,9.10888,0.133444,-6.63356,9.14775,-0.749273,-6.64477,9.19584,-0.385183,-6.6514,9.20819,-0.12997,-6.6446,9.18169,0.052174,-6.49925,9.1665,0.0518928,-6.50557,9.19979,-0.359899,-6.50763,9.20605,-0.262618,-6.51269,9.22267,-0.154977,-6.48137,9.11911,0.166492,-6.48319,9.09032,-0.6893,-5.84986,9.09336,-0.585462,-5.83738,9.25919,-0.0601055,-5.84874,9.19711,-0.455673,-5.84253,9.26864,-0.259806,-5.80239,9.16321,0.0862436,-5.84496,9.25832,-0.358658,-5.84047,9.26737,-0.166335,-5.82988,9.22218,0.0137458,-5.5609,9.28883,0.00118495,-5.56109,9.33588,-0.172021,-5.56703,9.32181,-0.365512,-5.57109,9.23141,0.0437218,-5.61245,9.15998,-0.551916,-5.57795,9.27546,-0.453218,-5.55878,9.31781,-0.0622446,-5.56333,9.33779,-0.26505,-6.06468,9.07723,-0.614298,-6.07673,9.23034,-0.0595383,-6.07825,9.15599,-0.466697,-6.0821,9.24269,-0.263754,-6.04343,9.13452,0.145215,-6.08053,9.21623,-0.365579,-6.08027,9.24377,-0.170665,-6.07189,9.1992,0.0299118,-6.21687,9.13013,-0.645231,-6.21245,9.13163,0.165464,-6.22968,9.21416,-0.0730857,-6.22962,9.18828,-0.496486,-6.23688,9.23097,-0.283853,-6.23392,9.21843,-0.394996,-6.23353,9.23342,-0.193142,-6.2294,9.19226,0.0248065,-6.4234,9.15979,0.0205913,-6.42622,9.18169,-0.203537,-6.42514,9.15376,-0.414978,-6.40623,9.10445,-0.618689,-6.41333,9.1363,0.134756,-6.41958,9.13093,-0.517999,-6.43014,9.17904,-0.299259,-6.42182,9.16755,-0.084339,-5.98327,9.28313,0.0334181,-5.99208,9.33057,-0.175654,-5.99613,9.3004,-0.377222,-5.95406,9.21643,0.151097,-5.9951,9.32909,-0.270596,-5.99591,9.23693,-0.481964,-5.98837,9.3165,-0.0600006,-5.98252,9.15599,-0.633209,-6.23036,8.84339,0.702313,-6.23848,8.79971,0.647172,-6.46022,8.66876,0.833581,-6.45621,8.69892,0.881539,-6.54115,8.83614,0.862265,-6.56871,8.8352,0.802927,-6.35373,8.96296,0.608152,-6.31814,8.96666,0.683284,-6.12036,9.03768,0.448389,-6.17413,9.02654,0.394263,-6.38189,8.91649,0.608654,-6.33798,8.92855,0.653001,-6.27875,8.81827,0.674316,-6.30263,8.78638,0.640271,-6.07508,8.86707,0.429772,-6.04685,8.91382,0.465872,-6.87144,9.04686,-0.770505,-6.84528,8.98455,-0.778178,-7.08411,8.92141,-0.806119,-7.10138,8.96275,-0.803396,-7.12893,8.97401,-0.707226,-7.1181,8.94225,-0.693429,-6.88489,9.00503,-0.633475,-6.89424,9.05495,-0.661461,-6.69433,9.06332,-0.611286,-6.69411,9.01033,-0.587746,-6.93471,8.99557,-0.649536,-6.93966,9.02981,-0.660451,-6.91443,9.02209,-0.757603,-6.90483,8.97871,-0.764045,-6.6586,8.99556,-0.734199,-6.67319,9.06065,-0.72093,-6.47271,9.09591,-0.678004,-6.45538,9.03162,-0.691892,-6.70086,9.00418,-0.720022,-6.7123,9.04704,-0.713167,-6.73708,9.05292,-0.615771,-6.73055,9.01885,-0.605163,-6.49035,9.04371,-0.545066,-6.49309,9.09682,-0.568187,-6.58764,9.12874,-0.437678,-6.57548,9.07698,-0.4539,-6.83939,9.06351,-0.487527,-6.84961,9.10911,-0.475478,-6.86545,9.10609,-0.373587,-6.85766,9.06907,-0.366763,-6.59259,9.07539,-0.32148,-6.59625,9.1206,-0.335906,-6.84766,9.15015,-0.378298,-6.84614,9.09258,-0.355641,-7.18289,9.04067,-0.419706,-7.18814,9.07585,-0.430185,-7.17304,9.06943,-0.530414,-7.16561,9.02444,-0.53954,-6.82824,9.07987,-0.503186,-6.83941,9.14955,-0.488679,-7.15897,9.09797,-0.550514,-7.13843,9.03481,-0.564567,-7.43037,8.98153,-0.581676,-7.44448,9.02464,-0.574319,-7.46061,9.03121,-0.47252,-7.44983,8.99766,-0.461906,-7.16048,9.04842,-0.400528,-7.16963,9.1008,-0.424944,-6.63085,9.14437,-0.20298,-6.61605,9.08799,-0.222029,-6.93501,9.06291,-0.239908,-6.94649,9.10866,-0.227564,-6.95706,9.10537,-0.124827,-6.94733,9.0683,-0.118416,-6.62756,9.08587,-0.0741037,-6.63444,9.1355,-0.0904554,-6.94697,9.1294,-0.117566,-6.94056,9.06854,-0.0993822,-7.24824,9.03529,-0.150904,-7.25682,9.07293,-0.157619,-7.2462,9.07619,-0.259275,-7.23579,9.02993,-0.272045,-6.92751,9.06972,-0.264377,-6.94262,9.13925,-0.242989,-7.24042,9.11345,-0.270523,-7.22421,9.04594,-0.291328,-7.56982,8.98361,-0.301069,-7.58093,9.02638,-0.288501,-7.59065,9.02379,-0.186574,-7.58137,8.9889,-0.179595,-7.23587,9.04567,-0.125936,-7.24357,9.10468,-0.144406,-7.19333,9.04406,0.172986,-7.17962,8.98997,0.190383,-7.48824,8.93417,0.189716,-7.5007,8.96845,0.184403,-7.50694,8.9699,0.0805496,-7.49486,8.9263,0.0608715,-7.19326,8.98827,0.0181152,-7.21005,9.05114,0.0472639,-6.94464,9.07765,0.0384208,-6.93297,9.01099,0.00319687,-7.24,8.98463,0.0436895,-7.24916,9.03099,0.069178,-7.24383,9.0292,0.173883,-7.23544,8.99327,0.179229,-6.92247,9.0127,0.182195,-6.92972,9.06891,0.164813,-6.6289,9.11644,0.152591,-6.65188,9.06252,0.167361,-6.94096,9.02483,0.164818,-6.95203,9.06089,0.159576,-6.9573,9.0622,0.0540865,-6.94833,9.01424,0.0300464,-6.64824,9.06369,-0.0188978,-6.64458,9.12511,0.0216589,-1.24805,8.68975,2.96493,-1.24805,8.68975,3.26056,-1.24805,8.68975,3.11274,-1.24805,8.37057,2.96493,-1.24805,8.37057,3.26056,-1.24805,8.37057,3.11274,-1.1133,8.68975,3.11274,-1.1133,8.68975,2.95743,-1.1133,8.68975,3.26806,-1.1133,8.37057,3.11274,-1.1133,8.37057,2.95743,-1.1133,8.37057,3.26806,-0.988544,8.68975,3.11274,-0.988543,8.68975,2.95049,-0.988543,8.68975,3.275,-0.988543,8.37057,3.11274,-0.988543,8.37057,2.95049,-0.988543,8.37057,3.275,-0.988543,8.39135,3.11274,-0.987713,8.385,2.96542,-0.987713,8.385,3.26007,-0.988544,8.66897,3.11274,-0.987713,8.67532,2.96542,-0.987713,8.67532,3.26007,-1.1133,8.39135,3.11274,-1.1125,8.38552,2.97184,-1.1125,8.38552,3.25365,-1.1133,8.66897,3.11274,-1.1125,8.6748,2.97184,-1.1125,8.6748,3.25365,-1.23083,8.68975,3.11274,-1.23083,8.68975,2.96397,-1.23083,8.68975,3.26152,-1.23083,8.37057,3.11274,-1.23083,8.37057,2.96397,-1.23083,8.37057,3.26152,-0.995469,8.39135,3.11274,-0.99464,8.38503,2.96578,-0.994639,8.38503,3.25971,-0.995469,8.66897,3.11274,-0.99464,8.6753,2.96578,-0.994639,8.6753,3.25971,-1.10316,8.39135,3.11274,-1.10235,8.38548,2.97132,-1.10235,8.38548,3.25417,-1.10316,8.66897,3.11274,-1.10235,8.67485,2.97132,-1.10235,8.67485,3.25417,-1.1239,8.68975,3.11274,-1.1239,8.68975,2.95802,-1.1239,8.68975,3.26747,-1.1239,8.37057,3.11274,-1.1239,8.37057,2.95802,-1.1239,8.37057,3.26747,-0.980477,8.68975,3.11274,-0.980477,8.68975,2.95004,-0.980477,8.68975,3.27545,-0.980477,8.37057,3.11274,-0.980477,8.37057,2.95004,-0.980477,8.37057,3.27545,-0.181385,8.68975,3.11274,-0.181385,8.68975,2.92774,-0.181385,8.68975,3.29775,-0.275705,8.37057,3.11274,-0.181385,8.37057,2.92774,-0.181385,8.37057,3.29775,-1.24805,8.68975,3.02581,-1.24805,8.68975,3.19967,-1.24805,8.37057,3.02581,-1.24805,8.37057,3.19967,-1.1133,8.68975,3.0214,-1.1133,8.68975,3.20408,-1.1133,8.37057,3.0214,-1.1133,8.37057,3.20408,-0.988544,8.68975,3.01732,-0.988543,8.68975,3.20817,-0.988543,8.37057,3.01732,-0.988543,8.37057,3.20817,-0.988055,8.38761,3.0261,-0.988055,8.38761,3.19939,-0.988055,8.67271,3.0261,-0.988055,8.67271,3.19939,-1.11283,8.38792,3.02988,-1.11283,8.38792,3.19561,-1.11283,8.6724,3.02988,-1.11283,8.6724,3.19561,-1.23083,8.68975,3.02525,-1.23083,8.68975,3.20024,-1.23083,8.37057,3.02525,-1.23083,8.37057,3.20024,-0.994981,8.38763,3.02631,-0.994981,8.38763,3.19918,-0.994981,8.67269,3.02631,-0.994981,8.67269,3.19918,-1.10268,8.3879,3.02957,-1.10268,8.3879,3.19592,-1.10268,8.67243,3.02957,-1.10268,8.67243,3.19592,-1.1239,8.68975,3.02175,-1.1239,8.68975,3.20374,-1.1239,8.37057,3.02175,-1.1239,8.37057,3.20374,-0.980477,8.68975,3.01706,-0.980477,8.68975,3.20843,-0.980477,8.37057,3.01706,-0.980477,8.37057,3.20843,-0.181385,8.68975,3.00394,-0.181385,8.68975,3.22155,-0.275705,8.37057,3.00394,-0.275705,8.37057,3.22155,-0.185107,11.39,3.00394,-0.185107,11.39,3.22155,-0.185107,11.39,3.11274,-0.181432,8.70603,3.00394,-0.181432,8.70603,3.22155,-0.181432,8.70603,3.11274,-0.193048,8.68975,3.11274,-0.193048,8.68975,2.92827,-0.193048,8.68975,3.29722,-0.285146,8.37057,3.11274,-0.193048,8.37057,2.92827,-0.193048,8.37057,3.29722,-0.193048,8.68975,3.00425,-0.193048,8.68975,3.22124,-0.285146,8.37057,3.00425,-0.285146,8.37057,3.22124,-0.184617,11.138,3.00394,-0.184617,11.138,3.22155,-0.184617,11.138,3.11274,-0.348447,11.1377,2.84791,-0.348447,11.1377,3.37757,-0.348447,11.1377,3.11274,-0.348937,11.3896,2.84791,-0.348937,11.3896,3.37757,-0.348937,11.3896,3.11274,-0.184543,11.1,3.00394,-0.184543,11.1,3.22155,-0.184543,11.1,3.11274,-0.348867,11.3538,3.11274,-0.348868,11.3538,2.84791,-0.348867,11.3538,3.37757,-0.348541,11.1859,3.11274,-0.348541,11.1859,2.84791,-0.348541,11.1859,3.37757,-0.389264,8.45383,3.11274,-0.0735999,0.0229048,3.11275,-0.389264,7.65073,3.11274,-0.389264,6.04454,3.11274,-0.389264,5.24145,3.11274,-0.389264,3.63526,3.11274,-0.389264,2.83216,3.11274,-0.389258,1.22595,3.11275,-0.210429,0.184926,3.11275,-0.309314,0.500653,3.11275,-0.368924,0.877873,3.11275,-0.0476012,0.0198015,3.1113,-0.0476012,0.0198015,3.11419,-0.0225872,0.0114912,3.11139,-0.0225872,0.0114912,3.1141,-0.128252,8.45383,3.07353,-0.258758,7.65073,3.09831,-0.128252,7.65073,3.07353,-0.258754,1.22595,3.09831,-0.258754,1.22595,3.12718,-0.12825,1.22595,3.07353,-0.12825,1.22595,3.15196,-0.245198,0.877873,3.09601,-0.245198,0.877873,3.12948,-0.121472,0.877873,3.07209,-0.121472,0.877873,3.1534,-0.205459,0.500654,3.09072,-0.205459,0.500654,3.13477,-0.101603,0.500653,3.07228,-0.101603,0.500653,3.15321,-0.169913,0.184926,3.10116,-0.169913,0.184926,3.12433,-0.0889168,0.184926,3.09337,-0.0889168,0.184926,3.13212,-0.00236305,4.18559e-06,3.11129,-0.00236305,4.18594e-06,3.1142,-0.022,8.45383,3.17687,-0.0220001,7.65073,3.04862,-0.022,6.04454,3.04862,-0.022,6.04454,3.17687,-0.022,3.63526,3.04862,-0.022,3.63526,3.17687,-0.0219996,1.22595,3.04862,-0.0219996,1.22595,3.17687,-0.02074,0.877873,3.04835,-0.0207399,0.877873,3.17714,-0.0170474,0.500653,3.05468,-0.0170473,0.500653,3.17081,-0.0155793,0.184926,3.08645,-0.0155793,0.184926,3.13904,-0.069979,0.0226377,3.11177,-0.069979,0.0226377,3.11372,-0.371277,8.45383,3.11473,-0.371277,7.65073,3.11076,-0.371277,7.65073,3.11473,-0.371277,6.04454,3.11076,-0.371277,6.04454,3.11473,-0.371277,5.24145,3.11473,-0.371277,3.63526,3.11076,-0.371277,3.63526,3.11473,-0.371277,2.83216,3.11473,-0.371271,1.22595,3.11076,-0.371271,1.22595,3.11473,-0.351872,0.877873,3.11044,-0.351872,0.877873,3.11505,-0.295001,0.500653,3.10439,-0.295001,0.500653,3.1211,-0.208455,0.184926,3.10953,-0.208455,0.184926,3.11596,-0.00236305,4.18576e-06,3.11275,-0.0225872,0.0104317,3.11275,-0.0476012,0.018742,3.11275,-0.0669816,0.0212606,3.11275,-0.123247,0.0816931,3.11275,-0.0466542,0.0744203,3.10485,-0.0466542,0.0744203,3.12064,-0.0919809,0.0797151,3.10762,-0.0919809,0.0797151,3.11787,-0.00715842,0.0671018,3.10228,-0.00715841,0.0671018,3.12321,-0.120223,0.0815224,3.11096,-0.120223,0.0815224,3.11453,-0.258758,8.45383,3.09831,-0.258758,8.45383,3.12717,-0.258758,7.65073,3.12717,-0.128252,8.45383,3.15195,-0.128252,7.65073,3.15195,-0.0220001,8.45383,3.04862,-0.022,7.65074,3.17687,-0.371277,8.45383,3.11075,-0.389264,6.84764,3.11274,-0.128252,6.84764,3.07353,-0.128252,6.84764,3.15195,-0.258758,6.84764,3.09831,-0.258758,6.84764,3.12717,-0.0220001,6.84764,3.04862,-0.022,6.84764,3.17687,-0.371277,6.84764,3.11076,-0.371277,6.84764,3.11473,-0.128252,6.04454,3.07353,-0.128252,5.24145,3.07353,-0.128252,6.04454,3.15195,-0.128252,5.24145,3.15195,-0.258758,6.04454,3.09831,-0.258758,5.24145,3.09831,-0.258758,6.04454,3.12717,-0.258758,5.24145,3.12717,-0.022,5.24145,3.04862,-0.022,5.24145,3.17687,-0.371277,5.24145,3.11076,-0.389264,4.43835,3.11274,-0.128252,4.43835,3.07353,-0.128252,4.43835,3.15196,-0.258758,4.43835,3.09831,-0.258758,4.43835,3.12717,-0.022,4.43835,3.04862,-0.022,4.43835,3.17687,-0.371277,4.43835,3.11076,-0.371277,4.43835,3.11473,-0.128252,3.63526,3.07353,-0.128252,2.83216,3.07353,-0.128252,3.63526,3.15196,-0.128252,2.83216,3.15196,-0.258758,3.63526,3.09831,-0.258758,2.83216,3.09831,-0.258758,3.63526,3.12717,-0.258758,2.83216,3.12718,-0.022,2.83216,3.04862,-0.0219999,2.83216,3.17687,-0.371277,2.83216,3.11076,-0.389262,2.02906,3.11275,-0.128252,2.02906,3.07353,-0.128252,2.02906,3.15196,-0.258757,2.02906,3.09831,-0.258757,2.02906,3.12718,-0.0219998,2.02906,3.04862,-0.0219998,2.02906,3.17687,-0.371275,2.02906,3.11076,-0.371275,2.02906,3.11473,-0.106945,9.08023,3.00394,-0.107723,9.903,3.00394,-0.10845,10.7372,3.00394,-0.106945,9.08023,3.22155,-0.107723,9.903,3.22155,-0.10845,10.7372,3.22155,-0.106945,9.08023,3.11274,-0.107723,9.903,3.11274,-0.10845,10.7372,3.11274,-0.181529,8.7804,3.00394,-0.181529,8.7804,3.22155,-0.181529,8.7804,3.11274,-0.184462,11.0377,3.00394,-0.184462,11.0377,3.22155,-0.184462,11.0377,3.11274,2.79574e-06,8.68975,2.9124,2.92631e-06,8.68975,3.31309,1.24806,8.68975,2.96493,1.24806,8.68975,3.26056,1.24806,8.68975,3.11274,2.86102e-06,8.37057,3.11274,2.79574e-06,8.37057,2.9124,2.92631e-06,8.37057,3.31309,1.24806,8.37057,2.96493,1.24806,8.37057,3.26056,1.24806,8.37057,3.11274,1.11331,8.68975,3.11274,1.11331,8.68975,2.95743,1.11331,8.68975,3.26806,1.11331,8.37057,3.11274,1.11331,8.37057,2.95743,1.11331,8.37057,3.26806,0.988551,8.68975,3.11274,0.988551,8.68975,2.95049,0.988551,8.68975,3.275,0.988551,8.37057,3.11274,0.988551,8.37057,2.95049,0.988551,8.37057,3.275,0.988551,8.39135,3.11274,0.98772,8.385,2.96542,0.98772,8.385,3.26007,0.988551,8.66897,3.11274,0.98772,8.67532,2.96542,0.98772,8.67532,3.26007,1.11331,8.39135,3.11274,1.1125,8.38552,2.97184,1.1125,8.38552,3.25365,1.11331,8.66897,3.11274,1.1125,8.6748,2.97184,1.1125,8.6748,3.25365,1.23084,8.68975,3.11274,1.23084,8.68975,2.96397,1.23084,8.68975,3.26151,1.23084,8.37057,3.11274,1.23084,8.37057,2.96397,1.23084,8.37057,3.26151,0.995476,8.39135,3.11274,0.994647,8.38503,2.96577,0.994647,8.38503,3.25971,0.995476,8.66897,3.11274,0.994647,8.6753,2.96577,0.994647,8.6753,3.25971,1.10316,8.39135,3.11274,1.10236,8.38548,2.97132,1.10236,8.38548,3.25417,1.10316,8.66897,3.11274,1.10236,8.67485,2.97132,1.10236,8.67485,3.25417,1.1239,8.68975,3.11274,1.1239,8.68975,2.95802,1.1239,8.68975,3.26747,1.1239,8.37057,3.11274,1.1239,8.37057,2.95802,1.1239,8.37057,3.26747,0.980485,8.68975,3.11274,0.980485,8.68975,2.95004,0.980485,8.68975,3.27545,0.980485,8.37057,3.11274,0.980485,8.37057,2.95004,0.980485,8.37057,3.27545,0.181393,8.68975,3.11274,0.181392,8.68975,2.92774,0.181393,8.68975,3.29775,0.275713,8.37057,3.11274,0.181392,8.37057,2.92774,0.181393,8.37057,3.29775,2.82263e-06,8.68975,2.99492,2.89942e-06,8.68975,3.23057,1.24806,8.68975,3.02581,1.24806,8.68975,3.19967,2.82263e-06,8.37057,2.99492,2.89942e-06,8.37057,3.23057,1.24806,8.37057,3.02581,1.24806,8.37057,3.19967,1.11331,8.68975,3.0214,1.11331,8.68975,3.20408,1.11331,8.37057,3.0214,1.11331,8.37057,3.20408,0.988551,8.68975,3.01732,0.988551,8.68975,3.20817,0.988551,8.37057,3.01732,0.988551,8.37057,3.20817,0.988063,8.38761,3.0261,0.988063,8.38761,3.19939,0.988063,8.67271,3.0261,0.988063,8.67271,3.19939,1.11283,8.38792,3.02988,1.11283,8.38792,3.19561,1.11283,8.6724,3.02988,1.11283,8.6724,3.19561,1.23084,8.68975,3.02525,1.23084,8.68975,3.20024,1.23084,8.37057,3.02525,1.23084,8.37057,3.20024,0.994989,8.38763,3.02631,0.994989,8.38763,3.19918,0.994989,8.67269,3.02631,0.994989,8.67269,3.19918,1.10269,8.3879,3.02957,1.10269,8.3879,3.19592,1.10269,8.67243,3.02957,1.10269,8.67243,3.19592,1.1239,8.68975,3.02175,1.1239,8.68975,3.20374,1.1239,8.37057,3.02175,1.1239,8.37057,3.20374,0.980485,8.68975,3.01706,0.980485,8.68975,3.20843,0.980485,8.37057,3.01706,0.980485,8.37057,3.20843,0.181393,8.68975,3.00394,0.181393,8.68975,3.22155,0.275713,8.37057,3.00394,0.275713,8.37057,3.22155,0.185115,11.39,3.00394,0.185115,11.39,3.22155,2.74067e-06,11.39,2.99492,2.81746e-06,11.39,3.23057,0.185115,11.39,3.11274,2.77907e-06,11.39,3.11274,0.18144,8.70603,3.00394,0.18144,8.70603,3.22155,2.82263e-06,8.70603,2.99492,2.89942e-06,8.70603,3.23057,0.18144,8.70603,3.11274,0.193056,8.68975,3.11274,0.193055,8.68975,2.92827,0.193056,8.68975,3.29722,0.285154,8.37057,3.11274,0.193055,8.37057,2.92827,0.193056,8.37057,3.29722,0.193056,8.68975,3.00425,0.193056,8.68975,3.22124,0.285154,8.37057,3.00425,0.285154,8.37057,3.22124,0.184625,11.138,3.00394,0.184625,11.138,3.22155,2.74067e-06,11.138,2.99492,2.81746e-06,11.138,3.23057,0.184625,11.138,3.11274,0.348455,11.1377,2.84791,0.348455,11.1377,3.37757,0.348455,11.1377,3.11274,2.68983e-06,11.1377,2.83889,2.8683e-06,11.1377,3.3866,0.348945,11.3896,2.84791,0.348945,11.3896,3.37757,0.348945,11.3896,3.11274,2.68983e-06,11.3896,2.83889,2.8683e-06,11.3896,3.3866,0.184551,11.1,3.00394,0.184551,11.1,3.22155,2.74067e-06,11.1,2.99492,2.81746e-06,11.1,3.23057,0.184551,11.1,3.11274,0.348875,11.3538,3.11274,0.348875,11.3538,2.84791,0.348875,11.3538,3.37757,2.68983e-06,11.3538,2.83889,2.8683e-06,11.3538,3.3866,0.348549,11.1859,3.11274,0.348548,11.1859,2.84791,0.348549,11.1859,3.37757,2.68983e-06,11.1859,2.83889,2.8683e-06,11.1859,3.3866,0.389271,8.45383,3.11274,0.0736076,0.0229048,3.11275,0.389271,7.65073,3.11274,0.389271,6.04454,3.11274,0.389271,5.24145,3.11274,0.389271,3.63526,3.11274,0.389271,2.83216,3.11274,0.389265,1.22595,3.11275,0.210437,0.184926,3.11275,0.309322,0.500653,3.11275,0.368932,0.877873,3.11275,3.81419e-06,4.18558e-06,3.11117,3.81521e-06,4.18595e-06,3.11432,3.83745e-06,6.04454,3.18256,3.79195e-06,5.24145,3.04293,3.83745e-06,3.63526,3.18256,3.79195e-06,2.83216,3.04293,3.79195e-06,1.22595,3.04293,3.83745e-06,1.22595,3.18256,3.79195e-06,0.877873,3.04293,3.83745e-06,0.877873,3.18256,3.79445e-06,0.500653,3.05059,3.83495e-06,0.500653,3.1749,3.80547e-06,0.184926,3.08442,3.82393e-06,0.184926,3.14107,0.0476088,0.0198015,3.1113,0.0476088,0.0198015,3.11419,0.0225948,0.0114912,3.11139,0.0225948,0.0114912,3.1141,0.12826,8.45383,3.07353,0.258766,7.65073,3.09831,0.12826,7.65073,3.07353,0.258762,1.22595,3.09831,0.258762,1.22595,3.12718,0.128258,1.22595,3.07353,0.128258,1.22595,3.15196,0.245206,0.877873,3.09601,0.245206,0.877873,3.12948,0.12148,0.877873,3.07209,0.12148,0.877873,3.1534,0.205466,0.500654,3.09072,0.205466,0.500654,3.13477,0.10161,0.500653,3.07228,0.10161,0.500653,3.15321,0.169921,0.184926,3.10116,0.169921,0.184926,3.12433,0.0889244,0.184926,3.09337,0.0889244,0.184926,3.13212,0.00237068,4.18559e-06,3.11129,0.00237068,4.18594e-06,3.1142,0.0220077,8.45383,3.17687,0.0220077,7.65073,3.04862,0.0220076,6.04454,3.04862,0.0220077,6.04454,3.17687,0.0220076,3.63526,3.04862,0.0220077,3.63526,3.17687,0.0220072,1.22595,3.04862,0.0220072,1.22595,3.17687,0.0207476,0.877873,3.04835,0.0207476,0.877873,3.17714,0.017055,0.500653,3.05468,0.017055,0.500653,3.17081,0.0155869,0.184926,3.08645,0.0155869,0.184926,3.13904,0.0699866,0.0226377,3.11177,0.0699866,0.0226377,3.11372,0.371285,8.45383,3.11473,0.371285,7.65073,3.11076,0.371285,7.65073,3.11473,0.371285,6.04454,3.11076,0.371285,6.04454,3.11473,0.371285,5.24145,3.11473,0.371285,3.63526,3.11076,0.371285,3.63526,3.11473,0.371285,2.83216,3.11473,0.371279,1.22595,3.11076,0.371279,1.22595,3.11473,0.35188,0.877873,3.11044,0.35188,0.877873,3.11505,0.295009,0.500653,3.10439,0.295009,0.500653,3.1211,0.208462,0.184926,3.10953,0.208462,0.184926,3.11596,3.8147e-06,4.18576e-06,3.11275,0.00237068,4.18576e-06,3.11275,0.0225948,0.0104317,3.11275,0.0476088,0.018742,3.11275,0.0669892,0.0212606,3.11275,0.123255,0.0816931,3.11275,3.81102e-06,0.0671018,3.10147,3.81837e-06,0.0671018,3.12402,0.0466618,0.0744203,3.10485,0.0466618,0.0744203,3.12064,0.0919886,0.0797151,3.10762,0.0919886,0.0797151,3.11787,0.00716604,0.0671018,3.10228,0.00716605,0.0671018,3.12321,0.120231,0.0815224,3.11096,0.120231,0.0815224,3.11453,3.79195e-06,8.45383,3.04293,3.79195e-06,7.65074,3.04293,3.83745e-06,8.45383,3.18256,3.83745e-06,7.65074,3.18256,0.258766,8.45383,3.09831,0.258766,8.45383,3.12717,0.258766,7.65073,3.12717,0.12826,8.45383,3.15195,0.12826,7.65073,3.15195,0.0220077,8.45383,3.04862,0.0220077,7.65074,3.17687,0.371285,8.45383,3.11075,0.389271,6.84764,3.11274,3.79195e-06,6.84764,3.04293,3.83745e-06,6.84764,3.18256,0.12826,6.84764,3.07353,0.12826,6.84764,3.15195,0.258766,6.84764,3.09831,0.258766,6.84764,3.12717,0.0220077,6.84764,3.04862,0.0220077,6.84764,3.17687,0.371285,6.84764,3.11076,0.371285,6.84764,3.11473,3.79195e-06,6.04454,3.04293,3.83745e-06,5.24145,3.18256,0.12826,6.04454,3.07353,0.12826,5.24145,3.07353,0.12826,6.04454,3.15195,0.12826,5.24145,3.15195,0.258766,6.04454,3.09831,0.258766,5.24145,3.09831,0.258766,6.04454,3.12717,0.258766,5.24145,3.12717,0.0220076,5.24145,3.04862,0.0220077,5.24145,3.17687,0.371285,5.24145,3.11076,0.389271,4.43835,3.11274,3.79195e-06,4.43835,3.04293,3.83745e-06,4.43835,3.18256,0.12826,4.43835,3.07353,0.12826,4.43835,3.15195,0.258766,4.43835,3.09831,0.258766,4.43835,3.12717,0.0220076,4.43835,3.04862,0.0220076,4.43835,3.17687,0.371285,4.43835,3.11076,0.371285,4.43835,3.11473,3.79195e-06,3.63526,3.04293,3.83745e-06,2.83216,3.18256,0.12826,3.63526,3.07353,0.12826,2.83216,3.07353,0.12826,3.63526,3.15196,0.12826,2.83216,3.15196,0.258766,3.63526,3.09831,0.258766,2.83216,3.09831,0.258766,3.63526,3.12717,0.258766,2.83216,3.12717,0.0220076,2.83216,3.04862,0.0220076,2.83216,3.17687,0.371285,2.83216,3.11076,0.389269,2.02906,3.11275,3.79195e-06,2.02906,3.04293,3.83745e-06,2.02906,3.18256,0.128259,2.02906,3.07353,0.128259,2.02906,3.15196,0.258764,2.02906,3.09831,0.258764,2.02906,3.12718,0.0220074,2.02906,3.04862,0.0220075,2.02906,3.17687,0.371283,2.02906,3.11076,0.371283,2.02906,3.11473,0.106953,9.08023,3.00394,0.107731,9.903,3.00394,0.108457,10.7372,3.00394,0.106953,9.08023,3.22155,0.107731,9.903,3.22155,0.108457,10.7372,3.22155,3.77631e-06,9.08023,2.99492,2.78165e-06,9.903,2.99492,3.77631e-06,10.7372,2.99492,3.85309e-06,9.08023,3.23057,2.85844e-06,9.903,3.23057,3.85309e-06,10.7372,3.23057,0.106953,9.08023,3.11274,0.107731,9.903,3.11274,0.108457,10.7372,3.11274,0.181536,8.7804,3.00394,0.181536,8.7804,3.22155,3.77631e-06,8.7804,2.99492,3.85309e-06,8.7804,3.23057,0.181536,8.7804,3.11274,0.18447,11.0377,3.00394,0.18447,11.0377,3.22155,3.77631e-06,11.0377,2.99492,3.85309e-06,11.0377,3.23057,0.18447,11.0377,3.11274] }], - - "normals": [-0.06357,0.309244,-0.94882,0.036225,0.278909,-0.959624,0.077792,0.618519,-0.781884,-0.032472,0.668599,-0.742882,0.114383,0.866787,-0.485366,0.010193,0.893948,-0.448012,0.147038,0.967986,-0.203314,0.056246,0.986267,-0.155187,0.196387,0.97943,0.045778,0.121769,0.987671,0.098239,0.163366,-0.94525,0.282418,0.036622,-0.980377,0.19367,-0.053438,-0.808374,0.58623,0.162053,-0.7669,0.62093,0.165624,-0.965514,-0.200842,0.012726,-0.980743,-0.194708,-0.085299,-0.035524,-0.995697,-0.007111,-0.063997,-0.997894,-0.092257,-0.341014,-0.935484,-0.017731,-0.376202,-0.926328,-0.01648,-0.339366,0.940489,0.220801,-0.266274,0.938231,0.080386,0.443892,0.892453,0.265511,0.463332,0.845424,0.25602,0.901486,0.348918,0.143498,0.889798,0.433149,0.085147,-0.739036,-0.668233,-0.056398,-0.721702,-0.689871,0.485031,0.869381,0.09418,0.454817,0.887539,-0.073336,0.745293,0.508988,-0.430616,0.893307,0.449019,0.019379,0.989166,-0.145421,-0.018677,0.814325,0.108646,-0.570116,0.680227,-0.35902,-0.638997,0.726859,-0.676656,-0.117283,0.545579,-0.798334,-0.254799,0.492386,-0.620685,-0.610126,0.247688,-0.947203,-0.203558,0.212378,-0.882351,-0.419904,0.742363,0.367534,-0.560167,0.73571,0.1077,-0.66863,0.661153,-0.305032,-0.685415,0.637867,-0.282662,-0.716361,0.165746,-0.845729,-0.507187,0.400494,-0.580309,-0.709098,-0.35197,-0.928068,0.121586,-0.234077,-0.963103,0.132664,-0.698843,-0.493332,0.517869,-0.645772,-0.568926,0.509171,-0.74987,-0.057222,0.659078,-0.750908,-0.055818,0.65801,-0.545305,0.491287,0.679128,-0.592181,0.406964,0.695456,-0.170629,0.852138,0.494644,-0.271279,0.787652,0.553117,0.11478,0.950591,0.288339,0.051149,0.950163,0.307443,-0.065279,0.896817,0.437483,-0.328959,0.732597,0.595874,-0.582781,0.352306,0.732261,-0.558916,0.32017,0.764885,-0.726951,-0.44322,0.524461,-0.715842,-0.105197,0.690268,0.490707,0.861324,-0.131443,-0.40727,-0.913205,0.012207,-0.567309,0.339732,0.750145,-0.534684,0.319681,0.78222,-0.790033,-0.288888,0.540666,-0.749962,-0.332011,0.572069,-0.476211,-0.878872,-0.027619,-0.50618,-0.860012,-0.064211,-0.667653,-0.603107,0.436384,-0.303873,-0.952666,0.004273,-0.112125,-0.629261,-0.769036,-0.014771,-0.706748,-0.707297,0.045564,-0.786035,-0.616443,0.208777,-0.106113,-0.972167,0.385662,-0.17542,-0.905789,0.358318,-0.162297,-0.91937,0.519791,0.416242,-0.745994,0.61565,0.420423,-0.666463,0.672933,0.337199,-0.658345,0.477798,0.870968,-0.114322,0.479263,0.872982,-0.090396,0.576006,0.807184,-0.12888,-0.128025,0.868038,0.479659,-0.054781,0.861019,0.5056,0.156041,0.94113,0.299844,-0.695853,-0.370342,0.615284,-0.33607,-0.938902,0.07416,0.352031,-0.887204,-0.298135,0.407056,-0.881375,-0.239723,0.786035,-0.422956,-0.450758,0.855068,-0.440657,-0.273171,0.876644,0.233467,-0.420637,0.924406,0.182226,-0.335002,0.54088,0.835047,-0.100589,-0.053041,0.852473,0.520066,0.713462,-0.437422,-0.547319,0.384014,-0.788659,-0.480087,0.850642,0.074923,-0.520341,-0.656941,0.352428,0.666463,-0.437269,0.265481,0.859218,-0.200323,0.731346,0.651875,-0.583575,-0.164373,0.795221,-0.083804,0.834376,0.544725,-0.697775,-0.22486,0.680074,-0.275796,0.774407,0.569353,-0.72393,0.417371,0.549242,-0.843471,-0.070437,0.532487,-0.240181,0.688314,0.684439,-0.365459,0.737602,0.567736,-0.867885,0.009308,0.496628,-0.699728,-0.197851,0.686422,-0.679525,0.326884,0.656758,-0.43495,-0.184027,0.881436,-0.216803,0.61446,0.758538,-0.44969,0.202124,0.869991,-0.568316,0.250435,0.783746,-0.660573,-0.60683,0.441969,-0.169744,-0.979278,0.110233,-0.626087,-0.643544,0.44023,-0.121311,-0.977172,0.174322,0.341563,-0.939482,0.026032,0.723197,-0.665731,0.18363,0.250832,-0.967376,-0.034913,0.285684,-0.958312,0.000763,0.286325,-0.941618,-0.177007,0.163518,-0.979644,-0.116306,0.251778,-0.96115,-0.112857,0.14951,-0.812708,-0.563097,0.082614,-0.929533,-0.359325,0.043001,-0.993805,-0.102206,-0.065157,-0.997833,0.007355,-0.394665,-0.913999,0.093966,0.290719,-0.931028,-0.220557,0.149846,-0.982757,-0.108188,0.210028,-0.894009,-0.395734,0.129856,-0.991089,-0.028657,0.114933,-0.990631,-0.07355,0.148167,-0.859279,-0.489517,-0.797388,-0.051546,0.601215,-0.772118,-0.054323,0.633137,-0.556658,0.552507,0.620319,-0.512589,0.59154,0.622303,0.911008,-0.222297,0.34727,0.672597,-0.588427,0.448653,0.546281,0.795923,0.260811,0.866176,0.404584,0.293222,0.196265,0.79519,0.573687,0.692709,0.203345,0.691916,-0.119846,0.889004,0.441877,-0.122959,0.871883,0.474013,0.130192,0.927091,0.351421,-0.013733,0.861965,0.50676,0.164495,-0.983703,-0.07242,0.158025,-0.987426,-0.00293,0.205237,-0.924711,-0.320566,0.196722,-0.976684,-0.085788,0.076754,0.959929,0.269478,0.107822,0.960875,0.255043,0.096591,0.954711,0.281381,0.061007,0.98117,0.183203,-0.032899,0.961516,0.272713,-0.027772,0.988464,0.148747,0.086489,0.995453,0.039583,0.037904,0.99881,0.03061,0.008545,0.998566,0.052431,0.093387,0.978484,-0.183782,0.054476,0.99295,-0.105136,0.034761,0.998718,-0.036256,0.104831,0.989196,-0.10242,0.073489,0.994476,-0.074892,0.063173,0.997742,-0.022614,0.087863,0.995178,0.043489,0.060854,0.997803,-0.025086,0.077548,0.994049,-0.076113,0.037172,0.992096,-0.119602,0.022004,0.986663,-0.161229,0.056703,0.980102,-0.190161,0.003662,0.939573,-0.342265,0.010163,0.94937,-0.313883,0.078433,0.960875,-0.265572,0.001373,0.932768,-0.360393,0.017731,0.930326,-0.366253,0.064302,0.923246,-0.378704,0.041414,0.959227,0.279458,0.084231,0.983001,0.16303,-0.036195,0.941527,0.33491,0.000244,0.961119,0.276101,0.036287,0.966399,0.254372,-0.059969,0.950987,0.303323,0.006623,0.831324,0.555742,-0.043062,0.900113,0.433454,-0.08298,0.912503,0.400494,-0.01175,0.938139,-0.346019,0.0047,0.917173,-0.398389,0.03708,0.891781,-0.45088,-0.044008,0.913297,-0.404859,-0.018159,0.89874,-0.438093,0.008332,0.891232,-0.453444,-0.085208,0.839167,-0.537095,-0.048219,0.82284,-0.566179,-0.054537,0.804682,-0.591144,-0.149449,0.561846,-0.813593,-0.131687,0.537614,-0.83282,-0.202216,0.49852,-0.842921,0.125584,-0.988769,-0.080782,0.075289,-0.989319,-0.124638,-0.119663,-0.855586,-0.503586,0.063204,-0.896603,-0.438276,0.162969,-0.984893,-0.058412,0.026429,-0.943052,-0.331492,0.10886,-0.951109,0.288949,0.245613,-0.950041,0.192572,0.178472,-0.973052,0.145878,-0.19834,0.032533,-0.979583,-0.315592,0.028687,-0.948454,-0.199438,0.025636,-0.979553,-0.106845,-0.56859,-0.815638,-0.286264,-0.478866,-0.829859,-0.137852,-0.648579,-0.748527,-0.181707,0.884854,0.428938,-0.11124,0.946684,0.302255,-0.058107,0.980438,0.187872,0.012116,0.996673,0.080233,-0.363292,0.548112,0.753349,-0.311045,0.831843,0.459609,-0.187353,0.927824,0.322459,-0.1095,0.902402,0.416669,-0.006134,0.989593,0.143712,-0.08655,0.971587,0.220222,0.053774,0.98999,-0.130467,0.008179,0.923887,-0.38255,-0.111179,0.804987,-0.582751,-0.375164,0.473312,-0.796991,0.28254,-0.951201,-0.123936,0.331919,-0.911557,-0.242561,0.025819,-0.99765,-0.063295,0.022248,-0.998718,0.044984,0.211768,-0.968902,-0.12775,0.047792,-0.998779,0.012024,0.361888,-0.913022,-0.188147,0.2996,-0.887173,-0.350871,0.023469,-0.979369,-0.20069,0.113407,-0.990478,-0.077883,0.360088,-0.931913,0.042909,0.126957,-0.979308,0.157506,-0.087619,-0.989654,0.113346,-0.130467,-0.962706,0.236885,0.258583,-0.932859,0.250771,0.285318,-0.958098,-0.024781,-0.039674,-0.993713,-0.104526,0.159215,-0.982391,-0.097568,0.008332,-0.996582,0.082125,-0.098941,-0.98056,0.169286,-0.060793,-0.995666,0.069979,-0.311655,-0.942961,0.116794,-0.139561,-0.98001,0.141728,-0.273598,-0.92822,0.251991,-0.095431,-0.990631,0.097446,-0.262276,-0.953429,0.148869,-0.08301,-0.99646,0.011414,-0.260201,-0.963195,0.067263,-0.253395,-0.955809,0.14893,-0.170385,-0.983551,-0.059816,0.142857,0.965209,0.21894,0.147526,0.967925,0.203314,0.125858,0.93466,0.332469,0.146977,0.934233,0.3249,0.10947,0.964721,0.239326,0.106967,0.940642,0.322001,0.086825,0.995697,-0.031678,0.13123,0.991211,-0.015381,0.104312,0.994476,0.009522,0.102512,0.927152,-0.360332,0.118595,0.942717,-0.311716,0.118656,0.959349,-0.25602,0.212195,0.969054,-0.12598,0.163793,0.981079,-0.103092,0.145573,0.985076,-0.091647,0.222785,0.947111,0.230842,0.170202,0.969726,0.174932,0.127354,0.985565,0.111301,0.149876,0.988678,0.00351,0.100528,0.993805,-0.046846,0.07178,0.991821,-0.105289,0.10239,0.928129,-0.35783,0.03357,0.939024,-0.342112,0.027741,0.934629,-0.354472,0.168371,0.918485,-0.357799,0.034303,0.959441,-0.279702,0.011353,0.950224,-0.311289,0.089511,0.939329,0.331065,0.142918,0.924161,0.354198,0.155797,0.986572,-0.048585,0.114597,0.992004,-0.05237,0.012909,0.955168,0.295694,0.069826,0.997162,0.027436,0.040651,0.426466,0.903562,0.043458,0.422926,0.905118,0.0506,0.658101,0.751183,0.072176,0.641041,0.764092,0.102359,0.460463,0.881741,0.039644,0.70867,0.704367,0.094638,0.975402,-0.199011,0.006104,0.975829,-0.21836,-0.02823,0.959777,-0.279275,-0.026856,0.95703,-0.288675,-0.053621,0.935911,-0.348033,-0.068911,0.92645,-0.370006,-0.075472,0.815577,-0.573687,-0.09183,0.855617,-0.509384,-0.10361,0.855464,-0.507309,-0.10126,0.549394,-0.829371,-0.145604,0.612751,-0.776727,-0.159703,0.605945,-0.77926,-0.073733,-0.985412,-0.153264,-0.09241,-0.994598,-0.046663,0.042665,-0.976531,-0.210974,-0.210089,-0.961058,0.17951,-0.337352,-0.928281,0.156285,0.06595,-0.997742,0.01175,-0.248878,-0.961455,0.116825,-0.30488,-0.95117,0.047761,-0.027802,-0.989502,-0.141606,-0.0318,-0.989776,0.13889,-0.189886,-0.958922,0.210578,-0.106662,-0.942412,0.316965,0.11362,-0.242103,0.963561,0.031678,-0.861263,0.507157,-0.045076,-0.242256,0.969146,-0.116184,-0.793573,0.597247,0.019745,-0.130985,0.99118,-0.032685,-0.69863,0.714713,-0.211646,0.014557,-0.977233,-0.20719,-0.003052,-0.978271,-0.137883,-0.002411,-0.990417,-0.208045,-0.682638,-0.700491,-0.173528,-0.682424,-0.710044,-0.064425,-0.689932,-0.720969,0.256783,0.878872,0.40202,0.11536,0.942351,0.314005,0.128758,0.988525,-0.078707,0.084567,0.988739,-0.123356,0.230598,0.831233,-0.505783,0.105502,0.891934,-0.43965,0.123844,0.708518,-0.694693,0.165441,0.899289,-0.404767,0.234504,0.971252,-0.040681,0.120212,0.991729,-0.04474,0.299051,0.912229,0.279916,0.283395,0.918577,0.275399,0.090732,0.59444,0.798975,0.041078,0.741997,0.669118,0.156255,0.976196,0.150212,0.131565,0.943358,0.304514,0.350993,0.922971,-0.157781,0.162816,0.986328,-0.025056,-0.098148,0.481429,-0.870937,-0.014222,0.813898,-0.580798,0.143773,0.924802,-0.352214,0.142125,0.932615,-0.331675,0.307627,0.9447,-0.113407,0.225623,0.959349,-0.169469,0.135929,-0.987121,0.084109,-0.124363,-0.976623,-0.175268,-0.152562,-0.986084,0.065554,-0.105258,-0.993103,0.051576,-0.20661,-0.952879,-0.222022,-0.107425,-0.993988,0.020539,-0.135563,-0.978088,0.157933,-0.510117,-0.624928,0.59093,-0.37373,-0.910245,0.178167,-0.21775,-0.924894,0.311655,-0.405469,-0.734245,-0.54445,-0.522172,-0.311228,-0.794,-0.49736,0.047456,-0.866207,-0.400922,-0.296854,-0.866665,-0.369518,-0.699637,-0.611499,-0.489212,-0.184362,0.852443,-0.40144,0.002808,-0.91586,-0.336192,0.393933,-0.855434,-0.019105,0.993378,-0.113041,-0.181829,0.740745,-0.646657,-0.074679,0.915159,-0.396039,0.846919,0.529954,0.042848,0.716666,0.523667,-0.460555,0.396802,0.444411,-0.803125,-0.001679,-0.078646,0.996887,-0.035188,-0.613636,0.788781,-0.100223,-0.129612,-0.98645,0.00351,-0.971984,0.234931,0.038301,-0.908719,0.415601,0.233406,-0.963103,0.133793,0.031373,-0.709494,-0.70397,0.20542,-0.644826,-0.736167,0.059633,-0.606403,-0.792871,0.291055,-0.947935,-0.129063,0.513321,-0.832514,0.208228,0.460707,-0.880428,-0.112186,0.480148,-0.733543,0.480941,0.26545,-0.962157,-0.061068,0.433393,-0.794275,-0.425733,0.271615,-0.714286,-0.644978,0.345531,-0.932524,-0.104801,0.407392,-0.90698,-0.106662,0.397107,-0.830012,-0.391583,0.246956,-0.968749,-0.021882,0.211676,-0.743889,-0.633869,0.484512,-0.871364,0.077059,0.559557,-0.782556,0.272866,0.393445,-0.884579,-0.250313,0.416333,-0.725272,-0.548296,0.156621,-0.922178,-0.353557,0.339305,-0.833583,-0.435865,0.194983,-0.952147,-0.235328,0.462233,-0.836726,-0.293527,0.498703,-0.866329,0.026551,0.518509,-0.852962,-0.059633,0.907071,-0.420087,-0.027161,0.525986,-0.816675,-0.237312,0.778375,-0.426984,-0.460189,0.511307,-0.806391,-0.297128,0.574358,-0.499283,-0.648671,0.452498,0.203528,-0.868191,0.228004,0.166692,-0.959258,0.235389,-0.064943,-0.969695,0.487777,0.077822,-0.869472,0.76812,0.618763,-0.164495,0.964263,0.203253,-0.169927,0.231086,-0.269539,-0.934843,0.559862,-0.127476,-0.81869,0.911771,-0.40791,0.047395,0.648183,0.187262,-0.73809,0.484176,0.319926,-0.814356,0.393872,0.047304,-0.917936,0.497269,0.133244,-0.857265,0.883084,0.462874,0.076724,0.877682,0.393597,-0.273324,0.41615,-0.228523,-0.880093,0.725028,-0.037263,-0.687674,0.92584,-0.301584,0.227638,0.992706,0.119938,0.0094,0.860347,0.240974,-0.44908,0.831355,-0.085086,-0.54912,0.997253,-0.033601,0.06592,0.811914,0.331614,0.480392,0.814692,0.035707,0.578753,0.726188,-0.220405,-0.651173,0.987457,-0.149968,0.049226,0.739586,-0.213446,0.638264,0.083956,-0.018494,-0.996277,0.11832,-0.001831,0.99295,-0.063662,0.046999,-0.996857,0.214148,0.05179,0.975402,0.397931,0.129307,0.908231,-0.11951,-6.1e-05,-0.992828,0.26838,0.704642,0.656819,0.322794,0.535874,0.780114,0.257515,0.042604,0.9653,0.181036,0.046815,0.98233,-0.128147,-0.528672,0.839076,-0.089358,-0.598071,0.796411,-0.522782,-0.792383,0.31428,-0.315256,-0.920072,0.232521,-0.484054,-0.677023,-0.554338,-0.41261,-0.765954,-0.492965,-0.276467,-0.176885,-0.944578,-0.335765,-0.11771,-0.934538,-0.20014,0.310495,-0.929228,-0.169561,0.608966,-0.774834,0.40788,0.731834,0.545885,0.43849,0.064486,0.89639,0.315378,-0.625599,0.713523,0.289315,-0.594256,0.750389,0.173986,-0.975707,0.132969,0.308481,-0.948332,0.073794,-0.066866,-0.807367,-0.58623,-0.162511,-0.749718,-0.641469,-0.202979,-0.13123,-0.970336,-0.096805,0.562273,-0.821223,0.200873,0.974456,-0.100101,0.236854,0.964446,-0.117008,0.276223,0.727226,0.628346,0.35902,0.724815,0.58797,0.301492,0.036653,0.952757,0.364299,0.037996,0.930479,0.350932,0.521348,0.777825,0.340465,-0.006317,0.940214,0.0412,-0.68749,0.724998,0.175665,-0.684133,0.707846,0.046693,-0.638661,0.768029,-0.249153,-0.95938,0.132145,-0.061922,-0.994568,0.083529,-0.3726,-0.90759,0.193457,-0.339976,-0.76751,-0.543382,-0.20658,-0.770623,-0.602863,-0.322489,-0.741203,-0.588702,-0.277444,-0.083895,-0.95706,-0.185583,-0.094668,-0.978027,-0.185064,-0.131046,-0.973937,-0.109622,0.623859,-0.773797,-0.01529,0.638661,-0.769311,-0.138615,0.388379,-0.910977,0.412671,0.691214,0.593188,0.396008,0.004608,0.91821,0.285287,-0.705191,0.649068,0.27488,-0.676229,0.683462,0.132633,-0.990722,0.028901,0.30311,-0.952666,-0.022675,-0.090945,-0.788598,-0.608081,-0.004089,-0.765099,-0.64388,-0.168523,-0.127628,-0.977386,-0.025452,0.582018,-0.812769,-0.010315,-0.99765,0.067293,0.0759,-0.837642,0.54091,-0.104495,-0.905362,-0.411512,-0.215583,-0.92114,-0.324046,-0.097751,-0.967986,0.231147,0.029389,-0.716758,0.696677,0.106815,0.989319,-0.099002,0.179296,0.977386,-0.111881,0.367473,0.694235,0.618824,0.250557,0.961425,-0.113376,0.336436,0.011536,0.941618,0.179632,-0.654775,0.734153,-0.037538,-0.992492,0.116214,-0.25486,-0.765526,-0.590747,-0.318125,-0.12476,-0.939787,-0.136723,0.605396,-0.784082,0.049471,0.98059,-0.189642,0.096713,0.979492,-0.176702,0.372295,0.745445,0.552873,0.287301,-0.627064,0.724021,-0.038423,-0.989227,0.141118,-0.205817,-0.801477,-0.561449,-0.23603,-0.136723,-0.962066,-0.160619,0.538347,-0.827265,0.280984,0.950682,-0.131199,0.030488,0.738273,-0.673788,0.420942,0.801904,0.423933,-0.065981,0.488754,-0.8699,0.342357,0.665304,0.663411,-0.08243,0.731529,-0.676778,-0.036683,0.998077,-0.049806,0.144108,0.842494,0.518998,0.044282,0.819147,-0.571856,-0.077548,0.843959,-0.530717,0.049989,0.906522,0.419111,0.311563,0.834834,0.45378,0.069796,0.997467,-0.011567,0.499466,0.8258,0.261788,0.138585,0.825282,-0.54738,0.304758,0.948759,-0.083163,0.197851,0.979644,-0.033052,0.337291,0.918607,-0.205817,0.018036,0.701926,-0.711966,0.346934,0.798334,0.492203,-0.108676,0.629231,-0.769555,0.32374,0.689077,0.648335,-0.067232,0.77224,-0.631703,-0.042177,0.998718,-0.027528,0.28724,0.831935,0.474715,0.199988,0.875057,0.440748,0.273537,0.887783,0.370067,-0.045534,0.80697,-0.588794,-0.146886,0.809229,-0.568804,0.005737,0.985687,-0.168432,0.4167,0.84875,0.32548,0.16364,0.748131,-0.643025,0.231025,0.943175,-0.238807,0.09125,0.982971,-0.159307,0.358074,0.930357,-0.078555,0.216132,0.975127,-0.048647,0.244362,0.803613,-0.54265,0.394482,0.757836,-0.519639,0.289743,0.815607,0.500778,0.194891,0.8464,0.49556,0.165593,0.982696,-0.082919,0.130467,0.815546,-0.563768,0.162786,0.832362,0.52974,0.232521,0.718589,-0.655354,0.354045,0.935087,-0.015687,0.102023,0.729881,0.675863,0.188574,0.662831,-0.724601,0.101505,0.603656,0.790704,0.06534,0.997742,-0.013733,0.214148,0.788598,-0.576373,0.21131,0.776574,0.593493,-0.03119,0.376354,0.925932,0.004761,0.636464,0.771264,0.114628,0.63744,-0.761895,0.093997,0.389966,-0.916013,0.250069,0.968017,-0.019471,0.034242,0.625263,0.779626,0.146641,0.595141,-0.790094,0.016907,0.998566,-0.050752,0.336039,0.940245,0.054628,0.22251,0.971679,0.079409,0.238411,0.85403,-0.462325,0.328562,0.84753,-0.416761,0.416059,0.803766,0.425214,0.141484,0.830683,0.538438,0.028779,0.998505,0.046052,0.077609,0.887661,-0.453841,-0.145177,0.900754,0.409314,0.235969,0.781213,-0.577899,0.332102,0.943144,0.011628,0.276101,0.782647,0.557848,0.197211,0.558946,-0.805383,0.078555,0.656087,0.750542,-0.083438,0.996368,-0.015625,0.129978,0.793908,-0.593921,-0.079958,0.842647,0.532456,0.088961,0.667226,-0.739494,0.151616,0.447066,-0.881527,0.053072,0.469375,0.881375,-0.013825,0.695059,0.718772,0.184454,0.982757,0.009949,0.125797,0.665273,0.735893,0.217322,0.645863,-0.731834,0.088473,0.996063,0.000946,0.187536,0.980895,0.051546,0.22187,0.634053,-0.740745,0.065889,-0.077151,-0.994812,-0.048128,-0.649281,-0.758995,0.068636,-0.698721,-0.712058,-0.089358,-0.994781,-0.049074,0.072329,-0.995056,-0.067873,-0.05942,-0.667776,0.741966,0.013215,-0.729789,0.683493,-0.001526,-0.009522,0.999939,0.0047,-0.00708,0.999939,0.069735,0.623859,0.778375,0.097446,0.995209,-0.004425,0.108554,0.668203,-0.735984,0.069857,-0.052614,-0.996155,0.027711,-0.044099,-0.998627,0.139225,-0.028413,-0.989837,0.027985,-0.699942,-0.713614,-0.197913,-0.672292,-0.713279,0.105533,-0.723991,-0.681661,-0.017396,-0.999817,-0.001404,-0.318949,-0.946898,-0.040132,0.115299,-0.993194,0.01587,-0.06592,-0.690237,0.720542,-0.257485,-0.68508,0.681417,0.014039,-0.714652,0.699301,-0.071139,-0.037782,0.996734,-0.118564,-0.014618,0.992828,-0.006714,-0.020386,0.999756,0.007263,0.676565,0.73632,-0.1348,-0.074679,0.988037,-0.080966,-0.661397,0.745628,-0.21128,-0.859706,0.465011,-0.303171,-0.609149,0.73278,0.03296,-0.671834,-0.739921,0.013031,-0.086245,-0.996185,-0.278359,-0.593005,-0.755516,-0.157262,-0.784631,-0.599658,-0.218421,-0.971923,-0.087161,-0.550432,-0.83047,-0.085391,0.150609,-0.986908,-0.057314,0.103702,-0.710288,-0.696219,0.075686,-0.016144,-0.996979,-0.318613,-0.613117,-0.722861,-0.116276,-0.861049,-0.49501,-0.049684,-0.015809,0.998627,-0.062014,-0.697806,0.713584,-0.296854,-0.829249,0.473464,-0.421003,-0.587725,0.690848,-0.699118,-0.714957,-0.004578,-0.274239,-0.961638,0.001129,0.270119,-0.962767,0.008087,0.096652,0.995239,0.011322,0.146184,0.683523,-0.71511,0.002533,-0.015381,-0.999878,0.092563,-0.042329,-0.994781,-0.267373,-0.715476,-0.645405,-0.031312,-0.763054,-0.645558,-0.391369,-0.920042,-0.017945,-0.094455,-0.995514,0.003143,-0.340953,-0.710624,0.615375,-0.115421,-0.752708,0.648122,-0.105899,-0.015107,0.994232,-0.039857,-0.03589,0.998535,0.056887,0.666829,0.743004,0.19068,0.660329,0.726341,0.168157,0.408094,0.897305,0.128086,-0.041383,0.990875,0.094394,-0.027894,0.995117,-0.116276,-0.586993,0.801172,-0.158788,-0.666951,0.727928,-0.546648,-0.836695,0.03238,-0.356487,-0.933866,0.027345,-0.425123,-0.557787,-0.71279,-0.371624,-0.635243,-0.676992,-0.187597,-0.038881,-0.981445,-0.196265,-0.005463,-0.980529,-0.105319,0.441145,-0.891201,-0.020936,0.677908,-0.734825,0.169713,0.682913,0.710471,0.242988,-0.002747,0.97,0.267769,-0.670736,0.691641,0.201758,-0.620014,0.758171,0.239051,-0.970489,-0.030641,0.280343,-0.958892,-0.043855,0.061739,-0.663839,-0.745293,-0.07947,-0.619221,-0.781152,-0.117801,0.003357,-0.993011,-0.101382,0.70101,-0.705863,0.222388,0.707907,0.670339,0.144047,0.70397,0.695425,0.111606,-0.024171,0.993439,0.175878,-0.040651,0.983551,0.221778,0.49324,0.841121,0.175542,-0.073702,0.981689,-0.141026,-0.737083,0.660909,-0.019501,-0.749474,0.661702,-0.122654,-0.698904,0.704581,-0.348094,-0.936735,0.036561,-0.180517,-0.98349,0.011505,-0.469314,-0.878872,0.085238,-0.34901,-0.713553,-0.60744,-0.226661,-0.727989,-0.646992,-0.310373,-0.697653,-0.64565,-0.221686,0.01178,-0.975036,-0.136113,-0.010041,-0.990631,-0.13889,-0.034364,-0.989685,-0.073794,0.707083,-0.703238,-0.002716,0.724601,-0.689138,-0.064943,0.507828,-0.858974,0.317881,0.662313,0.678426,0.2331,-0.0665,0.970153,0.192724,-0.743034,0.640858,0.152684,-0.74633,0.647786,0.159276,-0.986572,-0.035646,0.27839,-0.957823,-0.070803,-0.011628,-0.725516,-0.68807,0.016511,-0.72869,-0.684591,-0.060152,-0.029542,-0.997742,0.087558,0.677969,-0.72982,-0.082064,-0.996612,0.000458,-0.050813,-0.884121,0.464431,-0.100681,-0.877987,-0.46791,-0.234474,-0.79104,-0.56502,-0.1301,-0.991485,-0.002655,0.002747,-0.834559,0.550859,0.158513,0.987304,-0.00882,0.186163,0.982208,-0.023408,0.242866,0.665853,0.705405,0.251381,0.966399,-0.053407,0.162542,-0.041475,0.985809,0.082766,-0.693442,0.71572,-0.02411,-0.999603,-0.013001,-0.144078,-0.674795,-0.723746,-0.148289,-0.006836,-0.988891,0.012238,0.692801,-0.721,-0.084719,0.996368,0.005219,0.026856,0.99942,-0.019929,0.163121,0.694418,0.700827,0.202124,-0.622211,0.756279,0.102969,-0.994537,0.016358,-0.048189,-0.665181,-0.745109,-0.094272,0.662648,-0.742943,0.33903,0.939756,-0.043153,0.131565,0.80108,-0.58388,0.403333,0.778924,0.480178,0.017731,0.604083,-0.796686,0.243599,0.664296,0.706626,0.181616,0.983276,-0.011963,-0.020875,0.816004,-0.577624,-0.067354,0.997467,0.022095,0.042421,0.839473,0.541704,0.111362,0.877407,-0.466567,-0.028657,0.905637,-0.423048,-0.044191,0.898068,0.437574,0.236,0.837458,0.492874,0.026276,0.998199,0.053621,0.471419,0.813959,0.339427,0.216163,0.871364,-0.440413,0.324381,0.945921,0.000732,0.209052,0.976684,0.048402,0.219031,0.975707,-0.001953,0.007019,0.81814,-0.574938,0.141728,0.765618,0.627461,0.006012,0.734001,-0.679098,0.160039,0.65212,0.740989,0.051241,0.83462,-0.548387,-0.033296,0.999359,-0.01062,0.188238,0.815546,0.547197,0.108951,0.874142,0.473251,0.111393,0.881436,0.458907,0.050264,0.8876,-0.457808,-0.057161,0.874508,-0.481582,-0.011414,0.99881,-0.047395,0.245247,0.859188,0.449019,0.174261,0.868923,-0.46321,0.15537,0.987579,-0.022645,0.076907,0.996918,-0.014588,0.177343,0.984008,-0.015412,0.066744,0.997742,-0.006073,0.022401,0.888058,-0.459151,0.20127,0.85638,-0.475448,0.25074,0.851314,0.460799,0.079226,0.885922,0.456954,-0.041383,0.999054,-0.010743,-0.10239,0.880795,-0.462264,0.067751,0.874905,0.479507,0.029664,0.801324,-0.59743,0.247108,0.968963,0.001038,0.100436,0.757164,0.645436,-0.019501,0.716575,-0.697195,0.109622,0.647114,0.754448,-0.054689,0.998383,0.014008,0.020325,0.844539,-0.535051,0.150914,0.810999,0.565233,0.080111,0.408704,0.909116,0.136418,0.652272,0.745598,0.008942,0.678976,-0.734092,-0.092257,0.434156,-0.896084,0.25074,0.967956,-0.011628,0.078463,0.653188,0.753075,-0.066134,0.697195,-0.713797,-0.091098,0.995575,0.022828,0.324961,0.945616,0.013215,0.219642,0.974029,0.054659,0.158208,0.865505,-0.475234,0.242805,0.862423,-0.444105,0.450179,0.811365,0.372814,0.222724,0.829493,0.512162,0.056063,0.997162,0.050203,0.024689,0.896176,-0.442976,-0.042299,0.895962,0.442091,0.143651,0.795282,-0.588946,0.307382,0.951262,-0.023743,0.347087,0.782586,0.51677,0.074007,0.588458,-0.805109,0.204871,0.658315,0.724296,-0.045198,0.998901,0.01001,0.037294,0.804346,-0.592944,0.032685,0.83578,0.548051,-0.018952,0.695883,-0.717887,0.009735,0.4991,-0.866451,0.18836,0.494675,0.848384,0.113437,0.699911,0.70513,0.188177,0.982086,-0.007416,0.234107,0.669851,0.704611,0.091617,0.675008,-0.732047,0.091983,0.995727,0.002136,0.081576,0.996643,-0.00235,-0.011048,0.697897,-0.716086,-0.083316,0.014344,-0.996399,-0.065065,-0.621082,-0.780999,0.078707,-0.664571,-0.743034,0.01175,-0.99826,-0.057649,0.229957,-0.971191,-0.062136,0.090793,-0.668722,0.737907,0.251595,-0.69921,0.669149,0.146733,-0.023225,0.988891,0.137272,0.648366,0.748833,0.148412,0.988891,-0.003815,0.028748,0.682455,-0.730338,-0.094729,-0.023652,-0.995209,-0.145268,-0.023316,-0.989105,-0.003571,-0.01352,-0.999878,-0.114048,-0.672109,-0.73159,-0.328043,-0.645863,-0.689352,0.036134,-0.70394,-0.709311,-0.058138,-0.998291,-0.004028,-0.361766,-0.932066,0.018464,0.163091,-0.986358,-0.021912,0.022126,-0.687857,0.725486,-0.193182,-0.669973,0.716758,0.164434,-0.715903,0.678549,0.091586,-0.0412,0.994934,0.028657,-0.037568,0.998871,0.167913,-0.038697,0.985015,0.160741,0.669759,0.724937,0.044496,-0.01764,0.99884,0.247322,-0.638478,0.728782,0.025788,-0.827998,0.560106,-0.204138,-0.60979,0.76577,0.007569,-0.619983,-0.78457,-0.162206,-0.017212,-0.986572,-0.436659,-0.54976,-0.712058,-0.189428,-0.790918,-0.581805,-0.059755,-0.998169,0.007996,-0.662343,-0.7481,0.04004,0.486343,-0.871609,-0.060823,0.074587,-0.690085,-0.719871,-0.053041,-0.005585,-0.998566,-0.316111,-0.654378,-0.68688,-0.074038,-0.843654,-0.531693,0.138646,-0.03531,0.989685,0.136692,-0.702078,0.698813,-0.113041,-0.837855,0.533982,-0.197974,-0.649159,0.734397,-0.573504,-0.815546,0.076998,-0.165319,-0.985839,0.027772,0.369213,-0.92761,-0.05649,-0.141392,0.016327,-0.989807,-0.062593,0.004151,-0.998016,0.033784,0.707663,-0.70571,-0.320078,-0.680776,-0.658803,-0.164495,-0.683096,-0.711509,-0.358959,-0.932981,0.025605,-0.159398,-0.987152,0.008301,-0.176824,-0.6957,0.696188,-0.023438,-0.695334,0.718284,0.073519,-0.008545,0.997253,0.13245,-0.015534,0.991058,0.177068,0.695883,0.695944,0.109317,0.993927,-0.012574,0.116886,0.992859,-0.023041,0.06357,0.309244,-0.94882,0.032472,0.668599,-0.742882,-0.077792,0.618519,-0.781884,-0.036225,0.278909,-0.959624,-0.010193,0.893948,-0.448012,-0.114383,0.866787,-0.485366,-0.056246,0.986267,-0.155187,-0.147038,0.967986,-0.203314,-0.196387,0.97943,0.045778,-0.121769,0.987671,0.098239,-0.163366,-0.94525,0.282418,-0.162053,-0.7669,0.62093,0.053438,-0.808374,0.58623,-0.036592,-0.980377,0.19367,-0.165624,-0.965514,-0.200842,-0.012726,-0.980743,-0.194708,0.007111,-0.063997,-0.997894,0.08533,-0.035524,-0.995697,0.092257,-0.341014,-0.935484,0.017731,-0.376202,-0.926328,-0.220801,-0.266274,0.938231,0.01648,-0.339366,0.940489,-0.265511,0.463332,0.845424,-0.080386,0.443892,0.892453,-0.143498,0.889798,0.433149,-0.25602,0.901486,0.348918,-0.085147,-0.739036,-0.668233,0.056398,-0.721702,-0.689871,-0.485031,0.869381,0.09418,-0.893307,0.449019,0.019379,-0.745293,0.508988,-0.430616,-0.454817,0.887539,-0.073336,-0.989166,-0.145421,-0.018677,-0.814325,0.108646,-0.570116,-0.726859,-0.676656,-0.117283,-0.680227,-0.35902,-0.638997,-0.545579,-0.798334,-0.254799,-0.492386,-0.620685,-0.610126,-0.247688,-0.947203,-0.203558,-0.212378,-0.882351,-0.419935,-0.742363,0.367534,-0.560167,-0.73571,0.1077,-0.66863,-0.661153,-0.305032,-0.685415,-0.637867,-0.282662,-0.716361,-0.165746,-0.845729,-0.507187,-0.400494,-0.580279,-0.709098,0.234077,-0.963103,0.132664,0.35197,-0.928068,0.121586,0.645772,-0.568926,0.509171,0.698843,-0.493332,0.517869,0.750908,-0.055818,0.65801,0.74987,-0.057222,0.659078,0.545305,0.491287,0.679128,0.592181,0.406964,0.695456,0.170629,0.852138,0.494644,0.271279,0.787652,0.553117,-0.11478,0.950591,0.288339,-0.051149,0.950163,0.307443,0.065279,0.896817,0.437483,0.558916,0.32017,0.764885,0.582781,0.352306,0.732261,0.328959,0.732597,0.595874,0.726951,-0.44322,0.524461,0.715842,-0.105197,0.690268,-0.490707,0.861324,-0.131443,0.40727,-0.913205,0.012207,0.567309,0.339732,0.750145,0.749962,-0.332011,0.572069,0.790033,-0.288888,0.540666,0.534684,0.319681,0.78222,0.50618,-0.860012,-0.064211,0.476211,-0.878872,-0.027619,0.303873,-0.952696,0.004273,0.667653,-0.603107,0.436384,0.014771,-0.706748,-0.707297,0.112125,-0.629261,-0.769036,-0.045564,-0.786065,-0.616443,-0.385662,-0.17542,-0.905789,-0.208777,-0.106113,-0.972167,-0.358318,-0.162267,-0.91937,-0.61565,0.420423,-0.666463,-0.519791,0.416242,-0.745994,-0.672933,0.337199,-0.658345,-0.479263,0.872982,-0.090396,-0.477798,0.870968,-0.114322,-0.576006,0.807184,-0.12888,0.054781,0.861019,0.50557,0.128025,0.868038,0.479659,-0.156041,0.94113,0.299844,0.33607,-0.938902,0.07416,0.695853,-0.370342,0.615284,-0.407056,-0.881375,-0.239723,-0.352031,-0.887204,-0.298135,-0.855068,-0.440657,-0.273171,-0.786035,-0.422956,-0.450758,-0.924406,0.182226,-0.335002,-0.876644,0.233467,-0.420637,-0.54088,0.835047,-0.100589,0.053041,0.852473,0.520066,-0.384014,-0.78869,-0.480056,-0.713462,-0.437422,-0.547319,-0.850612,0.074923,-0.520371,0.656941,0.352428,0.666463,0.200323,0.731346,0.651875,0.437269,0.265511,0.859218,0.583575,-0.164373,0.795221,0.083804,0.834407,0.544725,0.697775,-0.22486,0.680074,0.72393,0.417371,0.549242,0.275796,0.774407,0.569353,0.843471,-0.070437,0.532517,0.365459,0.737632,0.567736,0.240181,0.688314,0.684439,0.699728,-0.197882,0.686422,0.867885,0.009308,0.496658,0.679525,0.326884,0.656758,0.43495,-0.184027,0.881436,0.216803,0.61446,0.758538,0.44969,0.202124,0.869991,0.568316,0.250435,0.783746,0.169744,-0.979278,0.110233,0.660573,-0.60683,0.441969,0.121311,-0.977172,0.174322,0.626087,-0.643544,0.44023,-0.723197,-0.665731,0.183599,-0.341563,-0.939482,0.026002,-0.285684,-0.958312,0.000763,-0.250832,-0.967376,-0.034944,-0.163518,-0.979644,-0.116306,-0.286325,-0.941618,-0.177007,-0.251778,-0.96115,-0.112857,-0.043001,-0.993805,-0.102206,-0.082614,-0.929533,-0.359325,-0.14951,-0.812708,-0.563097,0.394665,-0.913999,0.093966,0.065157,-0.997833,0.007355,-0.149846,-0.982757,-0.108188,-0.290719,-0.931028,-0.220557,-0.129856,-0.991089,-0.028657,-0.210028,-0.894009,-0.395734,-0.114933,-0.990631,-0.07355,-0.148167,-0.859279,-0.489517,0.797388,-0.051546,0.601215,0.772088,-0.054323,0.633137,0.556658,0.552507,0.620319,0.512589,0.59154,0.622303,-0.911008,-0.222297,0.34724,-0.672597,-0.588427,0.448653,-0.546281,0.795923,0.260842,-0.866176,0.404584,0.293222,-0.196265,0.79519,0.573687,-0.692709,0.203345,0.691916,0.119846,0.889004,0.441908,0.122959,0.871883,0.474013,-0.130222,0.927091,0.351451,0.013733,0.861965,0.506729,-0.164495,-0.983703,-0.07242,-0.158025,-0.987426,-0.00293,-0.205237,-0.924711,-0.320566,-0.196722,-0.976684,-0.085788,-0.076754,0.959929,0.269478,-0.061007,0.98117,0.183203,-0.096591,0.954711,0.281381,-0.107822,0.960875,0.255043,0.032899,0.961516,0.272713,0.027772,0.988464,0.148747,-0.037904,0.99881,0.03061,-0.086489,0.995453,0.039583,-0.008545,0.998566,0.052431,-0.054476,0.99295,-0.105136,-0.093387,0.978484,-0.183782,-0.034761,0.998718,-0.036256,-0.073489,0.994476,-0.074892,-0.104831,0.989196,-0.10242,-0.063173,0.997742,-0.022614,-0.060854,0.997803,-0.025086,-0.087863,0.995178,0.043489,-0.077517,0.994049,-0.076113,-0.022004,0.986663,-0.161229,-0.037172,0.992096,-0.119602,-0.056703,0.980102,-0.190161,-0.010163,0.94937,-0.313883,-0.003662,0.939573,-0.342265,-0.078433,0.960875,-0.265572,-0.017731,0.930326,-0.366253,-0.001373,0.932768,-0.360393,-0.064302,0.923246,-0.378704,-0.041414,0.959227,0.279458,-0.084231,0.983001,0.16303,0.036195,0.941527,0.33491,-0.000244,0.961119,0.276101,-0.036287,0.966399,0.254372,0.059969,0.950987,0.303323,0.043062,0.900113,0.433454,-0.006623,0.831324,0.555742,0.08298,0.912503,0.400464,-0.0047,0.917173,-0.398389,0.011719,0.938139,-0.346019,-0.037049,0.891781,-0.45088,0.018159,0.89874,-0.438093,0.043977,0.913297,-0.404859,-0.008301,0.891232,-0.453444,0.048219,0.82284,-0.566179,0.085208,0.839167,-0.537095,0.054537,0.804682,-0.591144,0.131687,0.537614,-0.83282,0.149449,0.561846,-0.813593,0.202216,0.49852,-0.842921,-0.125584,-0.988769,-0.080782,-0.063204,-0.896603,-0.438276,0.119663,-0.855586,-0.503586,-0.075289,-0.989319,-0.124668,-0.162969,-0.984893,-0.058412,-0.026429,-0.943052,-0.331492,-0.10889,-0.951109,0.288949,-0.245613,-0.950041,0.192572,-0.178503,-0.973052,0.145878,0.19834,0.032533,-0.979583,0.315592,0.028687,-0.948454,0.199438,0.025636,-0.979553,0.106845,-0.56859,-0.815638,0.286264,-0.478866,-0.829859,0.137852,-0.648579,-0.748527,0.181707,0.884854,0.428938,0.11124,0.946684,0.302255,0.058107,0.980438,0.187902,-0.012116,0.996673,0.080233,0.363292,0.548112,0.753349,0.1095,0.902402,0.416669,0.187353,0.927824,0.322459,0.311045,0.831843,0.459609,0.006134,0.989593,0.143712,0.08655,0.971587,0.220222,-0.053743,0.98999,-0.130467,-0.008209,0.923887,-0.38255,0.111179,0.804987,-0.582751,0.375164,0.473312,-0.796991,-0.28254,-0.951201,-0.123936,-0.022248,-0.998718,0.044984,-0.025819,-0.99765,-0.063295,-0.331919,-0.911557,-0.242561,-0.211768,-0.968902,-0.12775,-0.047792,-0.998779,0.012024,-0.361888,-0.913022,-0.188147,-0.113407,-0.990478,-0.077883,-0.023469,-0.979369,-0.20069,-0.2996,-0.887173,-0.350871,-0.360088,-0.931913,0.042909,-0.126957,-0.979308,0.157506,0.087619,-0.989654,0.113315,-0.285318,-0.958098,-0.024781,-0.258583,-0.932859,0.250771,0.130467,-0.962706,0.236885,0.039674,-0.993713,-0.104526,-0.159215,-0.982391,-0.097568,-0.008332,-0.996582,0.082125,0.311655,-0.942961,0.116794,0.060793,-0.995666,0.069979,0.098941,-0.98056,0.169286,0.139561,-0.98001,0.141728,0.262276,-0.953429,0.148869,0.095431,-0.990631,0.097446,0.273598,-0.92822,0.251961,0.08301,-0.99646,0.011414,0.170385,-0.983551,-0.059816,0.253395,-0.955809,0.14893,0.260201,-0.963195,0.067263,-0.142857,0.965209,0.21894,-0.146977,0.934233,0.3249,-0.125858,0.93466,0.332499,-0.147526,0.967925,0.203345,-0.1095,0.964721,0.239357,-0.106967,0.940642,0.322001,-0.13123,0.991211,-0.015381,-0.086825,0.995697,-0.031678,-0.104312,0.994476,0.009522,-0.118595,0.942717,-0.311716,-0.102512,0.927152,-0.360332,-0.118656,0.959349,-0.25602,-0.163793,0.981079,-0.103092,-0.212195,0.969054,-0.12598,-0.145573,0.985076,-0.091647,-0.170202,0.969726,0.174932,-0.222785,0.947111,0.230842,-0.127354,0.985565,0.111301,-0.100528,0.993805,-0.046846,-0.149876,0.988678,0.00351,-0.07178,0.991821,-0.105289,-0.03357,0.939024,-0.342112,-0.10239,0.928129,-0.35783,-0.027741,0.934629,-0.354472,-0.034303,0.959441,-0.279702,-0.168371,0.918485,-0.357799,-0.011353,0.950224,-0.311289,-0.089511,0.939329,0.331065,-0.114597,0.992004,-0.05237,-0.155828,0.986572,-0.048555,-0.142949,0.924161,0.354198,-0.012909,0.955168,0.295694,-0.069826,0.997162,0.027436,-0.040651,0.426466,0.903562,-0.072176,0.641041,0.764092,-0.0506,0.658101,0.751183,-0.043489,0.422926,0.905118,-0.102359,0.460463,0.881741,-0.039644,0.70867,0.704367,-0.006104,0.975829,-0.21836,-0.094638,0.975402,-0.198981,0.02823,0.959777,-0.279275,0.053652,0.935911,-0.348033,0.026856,0.95703,-0.288675,0.068911,0.92645,-0.370006,0.09183,0.855617,-0.509354,0.075472,0.815577,-0.573687,0.10361,0.855495,-0.507309,0.145604,0.612751,-0.776727,0.10126,0.549394,-0.829371,0.159703,0.605945,-0.77926,0.073733,-0.985412,-0.153264,0.09241,-0.994598,-0.046663,-0.042665,-0.976531,-0.210974,0.210089,-0.961028,0.17951,0.337352,-0.928281,0.156285,-0.06595,-0.997742,0.01175,0.248878,-0.961455,0.116825,0.30488,-0.95117,0.047731,0.027802,-0.989502,-0.141606,0.0318,-0.989776,0.13889,0.189917,-0.958922,0.210578,0.106662,-0.942412,0.316965,-0.11362,-0.242103,0.963561,-0.031678,-0.861263,0.507157,0.045076,-0.242256,0.969146,0.116184,-0.793573,0.597247,-0.019745,-0.130985,0.99118,0.032685,-0.69863,0.714713,0.211646,0.014557,-0.977233,0.20719,-0.003052,-0.978271,0.137883,-0.002411,-0.990417,0.208045,-0.682638,-0.700491,0.173528,-0.682424,-0.710044,0.064425,-0.689932,-0.720969,-0.256752,0.878872,0.402051,-0.11536,0.942351,0.314005,-0.128758,0.988525,-0.078707,-0.084567,0.988739,-0.123356,-0.230598,0.831233,-0.505783,-0.105502,0.891934,-0.43965,-0.123844,0.708518,-0.694693,-0.120212,0.991729,-0.04474,-0.234504,0.971252,-0.040651,-0.165441,0.899289,-0.404767,-0.299051,0.912229,0.279916,-0.283395,0.918577,0.275399,-0.090732,0.59444,0.798975,-0.041078,0.741997,0.669118,-0.156285,0.976196,0.150212,-0.131565,0.943358,0.304514,-0.350993,0.922971,-0.157781,-0.162816,0.986328,-0.025056,0.098148,0.481429,-0.870937,-0.142125,0.932615,-0.331675,-0.143742,0.924802,-0.352214,0.014252,0.813898,-0.580798,-0.307627,0.9447,-0.113376,-0.225623,0.959349,-0.169469,-0.135899,-0.987121,0.084109,0.124363,-0.976623,-0.175268,0.105258,-0.993103,0.051576,0.152562,-0.986084,0.065554,0.20661,-0.952879,-0.222022,0.135594,-0.978088,0.157933,0.107425,-0.993988,0.020539,0.37373,-0.910245,0.178167,0.510117,-0.624928,0.59093,0.21775,-0.924894,0.311655,0.405469,-0.734245,-0.54445,0.522172,-0.311228,-0.794,0.497391,0.047456,-0.866207,0.400922,-0.296854,-0.866634,0.369549,-0.699637,-0.611499,0.489212,-0.184393,0.852443,0.40144,0.002808,-0.91586,0.336192,0.393902,-0.855434,0.019105,0.993378,-0.113071,0.181799,0.740745,-0.646657,0.074679,0.915159,-0.396039,-0.846919,0.529954,0.042848,-0.716666,0.523667,-0.460524,-0.396802,0.444411,-0.803125,0.001679,-0.078646,0.996887,0.035188,-0.613636,0.788781,0.100223,-0.129612,-0.98648,-0.00351,-0.971984,0.234931,-0.233406,-0.963103,0.133793,-0.03827,-0.908719,0.415601,-0.031404,-0.709494,-0.70397,-0.059633,-0.606403,-0.792871,-0.20542,-0.644826,-0.736167,-0.291055,-0.947935,-0.129063,-0.513352,-0.832514,0.208228,-0.460707,-0.880428,-0.112186,-0.480148,-0.733543,0.480941,-0.26545,-0.962157,-0.061068,-0.433393,-0.794275,-0.425733,-0.271615,-0.714286,-0.644948,-0.345531,-0.932524,-0.104801,-0.407361,-0.90698,-0.106632,-0.397076,-0.830012,-0.391583,-0.246956,-0.968749,-0.021882,-0.211676,-0.743889,-0.633869,-0.484512,-0.871364,0.077059,-0.559526,-0.782556,0.272866,-0.393445,-0.884579,-0.250343,-0.416333,-0.725272,-0.548296,-0.156621,-0.922178,-0.353557,-0.339305,-0.833583,-0.435865,-0.194983,-0.952116,-0.235328,-0.462233,-0.836726,-0.293527,-0.498703,-0.866329,0.026521,-0.518509,-0.852962,-0.059633,-0.907071,-0.420087,-0.027192,-0.525986,-0.816675,-0.237312,-0.778375,-0.426984,-0.460189,-0.511277,-0.806391,-0.297128,-0.574358,-0.499283,-0.648701,-0.452498,0.203528,-0.868191,-0.487808,0.077853,-0.869442,-0.235389,-0.064943,-0.969695,-0.228004,0.166692,-0.959258,-0.76812,0.618763,-0.164464,-0.964263,0.203253,-0.169897,-0.559862,-0.127476,-0.81869,-0.231086,-0.269539,-0.934843,-0.911771,-0.40791,0.047395,-0.648183,0.187262,-0.73806,-0.497299,0.133244,-0.857265,-0.393872,0.047304,-0.917936,-0.484207,0.319926,-0.814356,-0.883053,0.462874,0.076724,-0.877682,0.393567,-0.273354,-0.725028,-0.037263,-0.687674,-0.416181,-0.228523,-0.880062,-0.92584,-0.301584,0.227668,-0.992706,0.119938,0.009369,-0.997253,-0.033601,0.06592,-0.831355,-0.085086,-0.54912,-0.860347,0.240974,-0.44908,-0.811914,0.331614,0.480392,-0.814692,0.035707,0.578753,-0.987457,-0.149968,0.049226,-0.726188,-0.220405,-0.651173,-0.739616,-0.213446,0.638264,-0.083956,-0.018494,-0.996277,-0.11832,-0.001831,0.99295,0.063662,0.046999,-0.996857,-0.214148,0.05179,0.975402,-0.397931,0.129276,0.908231,0.11951,-6.1e-05,-0.992828,-0.26838,0.704611,0.656819,-0.181036,0.046815,0.98233,-0.257515,0.042604,0.9653,-0.322825,0.535874,0.780114,0.089389,-0.598071,0.796411,0.128147,-0.528672,0.839076,0.315256,-0.920042,0.232521,0.522813,-0.792352,0.31428,0.41261,-0.765954,-0.492965,0.484054,-0.677023,-0.554338,0.335765,-0.11771,-0.934538,0.276467,-0.176885,-0.944578,0.169561,0.608966,-0.774834,0.20014,0.310495,-0.929228,-0.43849,0.064486,0.89639,-0.40788,0.731834,0.545885,-0.289315,-0.594256,0.750389,-0.315378,-0.625599,0.713523,-0.308481,-0.948332,0.073794,-0.173986,-0.975707,0.132969,0.162511,-0.749718,-0.641469,0.066866,-0.807367,-0.58623,0.202979,-0.13123,-0.970336,0.096805,0.562273,-0.821223,-0.200873,0.974456,-0.100101,-0.35902,0.724815,0.58797,-0.276223,0.727226,0.628346,-0.236854,0.964446,-0.117008,-0.364299,0.037996,0.930479,-0.301492,0.036653,0.952757,-0.340465,-0.006317,0.940214,-0.350932,0.521348,0.777825,-0.175665,-0.684133,0.707846,-0.0412,-0.68749,0.724998,-0.046693,-0.638661,0.768029,0.061922,-0.994568,0.083529,0.249153,-0.95938,0.132145,0.37257,-0.90759,0.193457,0.20658,-0.770623,-0.602863,0.339976,-0.76751,-0.543382,0.322489,-0.741203,-0.588702,0.185583,-0.094668,-0.978027,0.277444,-0.083895,-0.95706,0.185064,-0.131046,-0.973937,0.01529,0.638661,-0.769311,0.109622,0.623859,-0.773797,0.138615,0.388379,-0.910977,-0.396008,0.004608,0.91821,-0.412671,0.691214,0.593188,-0.27488,-0.676229,0.683462,-0.285287,-0.705191,0.649068,-0.30311,-0.952666,-0.022675,-0.132633,-0.990722,0.028901,0.004089,-0.765099,-0.64388,0.090945,-0.788598,-0.608081,0.168523,-0.127628,-0.977386,0.025452,0.582018,-0.812769,-0.07593,-0.837642,0.54091,0.010315,-0.99765,0.067293,0.104495,-0.905362,-0.411512,0.097751,-0.967986,0.231117,0.215583,-0.92114,-0.324046,-0.029359,-0.716758,0.696677,-0.106815,0.989319,-0.099002,-0.367473,0.694235,0.618824,-0.179296,0.977386,-0.111881,-0.250587,0.961394,-0.113407,-0.336436,0.011536,0.941618,-0.179632,-0.654775,0.734153,0.037538,-0.992492,0.116214,0.25486,-0.765526,-0.590747,0.318125,-0.12476,-0.939787,0.136723,0.605396,-0.784082,-0.049471,0.98059,-0.189642,-0.372295,0.745445,0.552873,-0.096713,0.979492,-0.176702,-0.287301,-0.627064,0.724021,0.038392,-0.989227,0.141118,0.205817,-0.801477,-0.561449,0.23603,-0.136723,-0.962066,0.160619,0.538347,-0.827265,-0.030488,0.738273,-0.673788,-0.280984,0.950682,-0.131199,-0.420911,0.801904,0.423933,0.065981,0.488754,-0.8699,-0.342357,0.665304,0.663411,0.036683,0.998077,-0.049806,0.08243,0.731529,-0.676778,-0.144108,0.842494,0.518998,0.077548,0.843959,-0.530717,-0.044282,0.819147,-0.571856,-0.311563,0.834834,0.45378,-0.049989,0.906522,0.419111,-0.069796,0.997467,-0.011567,-0.499466,0.8258,0.261788,-0.138615,0.825282,-0.54738,-0.304758,0.948759,-0.083163,-0.197851,0.979644,-0.033052,-0.018036,0.701926,-0.711966,-0.337291,0.918607,-0.205817,-0.346934,0.798334,0.492203,0.108676,0.629231,-0.769555,-0.32374,0.689077,0.648335,0.042146,0.998718,-0.027558,0.067202,0.77224,-0.631733,-0.287271,0.831935,0.474685,-0.273568,0.887783,0.370067,-0.200018,0.875057,0.440718,0.146855,0.809229,-0.568804,0.045503,0.80697,-0.588794,-0.005768,0.985687,-0.168462,-0.4167,0.84875,0.32548,-0.16364,0.748131,-0.643025,-0.231025,0.943144,-0.238807,-0.091281,0.982971,-0.159307,-0.358074,0.930357,-0.078555,-0.394482,0.757836,-0.519639,-0.244301,0.803613,-0.54265,-0.216102,0.975127,-0.048647,-0.194891,0.8464,0.49556,-0.289743,0.815607,0.500778,-0.130436,0.815546,-0.563768,-0.165532,0.982696,-0.082919,-0.162725,0.832362,0.52974,-0.232521,0.718589,-0.655354,-0.354045,0.935087,-0.015687,-0.102023,0.729881,0.675863,-0.188574,0.662831,-0.724601,-0.101505,0.603687,0.790704,-0.06531,0.997742,-0.013733,-0.214148,0.788598,-0.576373,-0.21128,0.776574,0.593493,0.03119,0.376354,0.925932,-0.004761,0.636464,0.771264,-0.114628,0.63744,-0.761895,-0.093997,0.389966,-0.916013,-0.250069,0.968017,-0.019471,-0.034242,0.625263,0.779626,-0.146641,0.595141,-0.790094,-0.016907,0.998566,-0.050752,-0.336039,0.940245,0.054628,-0.328562,0.84753,-0.416761,-0.238441,0.85403,-0.462325,-0.22251,0.971679,0.079409,-0.141514,0.830683,0.538438,-0.416028,0.803766,0.425214,-0.077639,0.887661,-0.453841,-0.02884,0.998505,0.046083,0.145146,0.900754,0.409314,-0.235969,0.781213,-0.577899,-0.332072,0.943144,0.011628,-0.27607,0.782647,0.557848,-0.197211,0.558946,-0.805383,-0.078555,0.656087,0.750542,0.083438,0.996368,-0.015625,-0.130009,0.793908,-0.593921,0.079928,0.842647,0.532456,-0.088992,0.667226,-0.739494,-0.151646,0.447066,-0.881527,-0.053072,0.469375,0.881375,0.013825,0.695059,0.718772,-0.184454,0.982757,0.009949,-0.125797,0.665273,0.735893,-0.217322,0.645863,-0.731834,-0.088473,0.996063,0.000946,-0.187536,0.980895,0.051546,-0.2219,0.634053,-0.740745,-0.065889,-0.077151,-0.994812,0.048128,-0.649281,-0.758995,-0.068636,-0.698721,-0.712058,0.089358,-0.994781,-0.049074,-0.072329,-0.995056,-0.067873,0.05942,-0.667776,0.741966,-0.013215,-0.729789,0.683493,0.001526,-0.009522,0.999939,-0.0047,-0.007111,0.999939,-0.069735,0.623859,0.778375,-0.097446,0.995209,-0.004425,-0.108554,0.668203,-0.735984,-0.069857,-0.052614,-0.996155,-0.027711,-0.044099,-0.998627,-0.139225,-0.028413,-0.989837,-0.027985,-0.699942,-0.713614,0.197913,-0.672292,-0.713279,-0.105533,-0.723991,-0.681661,0.017396,-0.999817,-0.001404,0.318949,-0.946898,-0.040132,-0.115299,-0.993194,0.01587,0.06592,-0.690237,0.720542,0.257485,-0.68508,0.681417,-0.014039,-0.714652,0.699301,0.071139,-0.037782,0.996734,0.118564,-0.014618,0.992828,0.006714,-0.020386,0.999756,-0.007263,0.676565,0.73632,0.1348,-0.074679,0.988037,0.30314,-0.609149,0.73278,0.211127,-0.859737,0.465041,0.080874,-0.661428,0.745598,-0.033052,-0.671834,-0.739921,0.157109,-0.784631,-0.599658,0.278329,-0.593005,-0.755516,-0.013062,-0.086245,-0.996185,0.218238,-0.971984,-0.08713,0.550432,-0.83047,-0.085391,-0.150761,-0.986877,-0.057283,-0.103671,-0.710288,-0.696219,0.116367,-0.861019,-0.495041,0.318674,-0.613086,-0.722831,-0.075686,-0.016144,-0.996979,0.049684,-0.015809,0.998627,0.421064,-0.587725,0.690817,0.296915,-0.829249,0.473434,0.062014,-0.697806,0.713584,0.274392,-0.961608,0.001129,0.699179,-0.714896,-0.004578,-0.270119,-0.962767,0.008087,-0.146184,0.683523,-0.71511,-0.096652,0.995239,0.011322,-0.002533,-0.015381,-0.999878,-0.092563,-0.042329,-0.994781,0.267373,-0.715476,-0.645436,0.031312,-0.763054,-0.645558,0.391369,-0.920042,-0.017945,0.094455,-0.995514,0.003143,0.340953,-0.710624,0.615375,0.115421,-0.752708,0.648122,0.105899,-0.015107,0.994232,0.039857,-0.03589,0.998535,-0.056887,0.666829,0.743004,-0.19068,0.660329,0.726341,-0.094394,-0.027894,0.995117,-0.128086,-0.041383,0.990875,-0.168157,0.408094,0.897305,0.158788,-0.666951,0.727928,0.116276,-0.587024,0.801172,0.356487,-0.933897,0.027345,0.546648,-0.836726,0.03238,0.371593,-0.635243,-0.676992,0.425123,-0.557787,-0.71279,0.196265,-0.005463,-0.980529,0.187597,-0.038881,-0.981445,0.020936,0.677908,-0.734825,0.105319,0.441145,-0.891201,-0.242988,-0.002747,0.97,-0.169713,0.682913,0.710471,-0.201788,-0.620014,0.758171,-0.267769,-0.670736,0.691641,-0.280343,-0.958892,-0.043855,-0.239082,-0.970489,-0.030641,0.07944,-0.619221,-0.781152,-0.061769,-0.663839,-0.745293,0.117801,0.003357,-0.993011,0.101382,0.70101,-0.705863,-0.222388,0.707907,0.670339,-0.175878,-0.040651,0.983551,-0.111606,-0.024201,0.993439,-0.144047,0.70397,0.695425,-0.175542,-0.073702,0.981689,-0.221778,0.49324,0.841121,0.019501,-0.749474,0.661702,0.141057,-0.737053,0.660909,0.122684,-0.698904,0.704581,0.180517,-0.98349,0.011505,0.348125,-0.936705,0.036561,0.469344,-0.878872,0.085238,0.226661,-0.727989,-0.646992,0.34901,-0.713553,-0.60744,0.310404,-0.697653,-0.64565,0.136113,-0.010041,-0.990631,0.221686,0.01178,-0.975036,0.13889,-0.034364,-0.989685,0.002716,0.724601,-0.689138,0.073763,0.707083,-0.703238,0.064943,0.507828,-0.858974,-0.2331,-0.0665,0.970153,-0.317881,0.662313,0.678426,-0.152684,-0.74633,0.647786,-0.192724,-0.743034,0.640858,-0.27839,-0.957823,-0.070803,-0.159276,-0.986572,-0.035646,-0.016511,-0.72869,-0.684591,0.011628,-0.725516,-0.68807,0.060152,-0.029542,-0.997742,-0.087558,0.677969,-0.72982,0.050813,-0.884121,0.464431,0.082095,-0.996612,0.000458,0.100711,-0.877987,-0.46791,0.1301,-0.991485,-0.002655,0.234474,-0.79104,-0.56502,-0.002747,-0.834559,0.550859,-0.158513,0.987304,-0.00882,-0.242866,0.665853,0.705405,-0.186163,0.982208,-0.023408,-0.25135,0.966399,-0.053407,-0.162542,-0.041475,0.985809,-0.082766,-0.693442,0.71572,0.02411,-0.999603,-0.013001,0.144078,-0.674795,-0.723746,0.148289,-0.006836,-0.988891,-0.012238,0.692801,-0.721,0.084719,0.996368,0.005219,-0.163121,0.694418,0.700827,-0.026856,0.99942,-0.019929,-0.202124,-0.622211,0.756279,-0.102969,-0.994537,0.016358,0.048189,-0.665181,-0.745109,0.094272,0.662648,-0.742943,-0.131565,0.80108,-0.58388,-0.33903,0.939756,-0.043153,-0.403333,0.778924,0.480178,-0.017731,0.604083,-0.796686,-0.243599,0.664296,0.706626,-0.181646,0.983276,-0.011994,0.067324,0.997467,0.022095,0.020844,0.816004,-0.577624,-0.042451,0.839473,0.541704,0.028687,0.905637,-0.423048,-0.111362,0.877407,-0.466567,-0.236,0.837458,0.492874,0.044191,0.898068,0.437574,-0.026276,0.998199,0.053621,-0.471419,0.813959,0.339427,-0.216163,0.871364,-0.440413,-0.324381,0.945921,0.000732,-0.209052,0.976684,0.048402,-0.007019,0.81814,-0.574908,-0.219031,0.975707,-0.001953,-0.141728,0.765618,0.627461,-0.005982,0.734001,-0.679067,-0.160039,0.65212,0.740989,0.033296,0.999359,-0.01062,-0.051241,0.83462,-0.548387,-0.188208,0.815546,0.547197,-0.111362,0.881436,0.458907,-0.108951,0.874142,0.473281,0.057161,0.874508,-0.481582,-0.050233,0.8876,-0.457808,0.011414,0.99881,-0.047395,-0.245216,0.859188,0.449019,-0.17423,0.868923,-0.46321,-0.155339,0.987579,-0.022645,-0.076907,0.996918,-0.014557,-0.177374,0.984008,-0.015412,-0.20127,0.85638,-0.475448,-0.022431,0.888058,-0.459151,-0.066744,0.997742,-0.006073,-0.079226,0.885922,0.456954,-0.25074,0.851314,0.460799,0.102359,0.880795,-0.462264,0.041383,0.999084,-0.010743,-0.067782,0.874905,0.479507,-0.029695,0.801324,-0.59743,-0.247139,0.968963,0.001038,-0.100467,0.757134,0.645436,0.019501,0.716605,-0.697195,-0.109622,0.647114,0.754448,0.054689,0.998383,0.014008,-0.020325,0.844539,-0.535051,-0.150945,0.810968,0.565233,-0.080111,0.408704,0.909116,-0.136418,0.652272,0.745598,-0.008942,0.678976,-0.734092,0.092227,0.434156,-0.896084,-0.25074,0.967956,-0.011628,-0.078463,0.653188,0.753075,0.066103,0.697195,-0.713797,0.091098,0.995575,0.022828,-0.324931,0.945616,0.013215,-0.242775,0.862423,-0.444105,-0.158177,0.865505,-0.475234,-0.219642,0.974029,0.054689,-0.222694,0.829493,0.512162,-0.450148,0.811365,0.372814,-0.024689,0.896176,-0.442976,-0.056063,0.997162,0.050203,0.042299,0.895962,0.442091,-0.143651,0.795282,-0.588946,-0.307382,0.951262,-0.023743,-0.347056,0.782586,0.51677,-0.073977,0.588458,-0.805109,-0.204871,0.658345,0.724296,0.045228,0.998901,0.01001,-0.037263,0.804346,-0.592944,-0.032655,0.83578,0.548051,0.018952,0.695883,-0.717887,-0.009735,0.4991,-0.866451,-0.18836,0.494675,0.848384,-0.113407,0.699911,0.70513,-0.188177,0.982086,-0.007416,-0.234107,0.669851,0.704611,-0.091617,0.675008,-0.732047,-0.091983,0.995727,0.002136,-0.081576,0.996643,-0.00235,0.011048,0.697897,-0.716086,0.083316,0.014344,-0.996399,0.065065,-0.621082,-0.780999,-0.078677,-0.664571,-0.743034,-0.01175,-0.99826,-0.057649,-0.229957,-0.971191,-0.062136,-0.090793,-0.668722,0.737907,-0.251595,-0.69921,0.669149,-0.146733,-0.023225,0.988891,-0.137272,0.648366,0.748833,-0.148412,0.988891,-0.003815,-0.028748,0.682455,-0.730338,0.094729,-0.023652,-0.995209,0.145268,-0.023316,-0.989105,0.003571,-0.01352,-0.999878,0.114048,-0.672109,-0.73159,0.328043,-0.645863,-0.689352,-0.036134,-0.70394,-0.709311,0.058138,-0.998291,-0.004028,0.361766,-0.932066,0.018464,-0.163091,-0.986358,-0.021912,-0.022126,-0.687857,0.725486,0.193182,-0.669973,0.716758,-0.164434,-0.715903,0.678549,-0.091586,-0.0412,0.994934,-0.028657,-0.037568,0.998871,-0.167913,-0.038697,0.985015,-0.160741,0.669759,0.724937,-0.044496,-0.01764,0.99884,0.204138,-0.60979,0.76577,-0.025819,-0.827998,0.560106,-0.247322,-0.638478,0.728782,-0.007569,-0.619983,-0.78457,0.189398,-0.790918,-0.581805,0.436628,-0.54976,-0.712058,0.162206,-0.017212,-0.986572,0.059755,-0.998169,0.007996,0.662343,-0.7481,0.04004,-0.486343,-0.871609,-0.060823,-0.074587,-0.690085,-0.719871,0.074007,-0.843654,-0.531693,0.316111,-0.654378,-0.68688,0.053041,-0.005554,-0.998566,-0.138646,-0.03531,0.989685,0.197974,-0.649159,0.734397,0.113041,-0.837886,0.533982,-0.136692,-0.702078,0.698813,0.165288,-0.985839,0.027772,0.573473,-0.815577,0.076998,-0.369213,-0.92761,-0.05649,0.141392,0.016327,-0.989807,0.062593,0.004151,-0.998016,-0.033753,0.707663,-0.70571,0.320078,-0.680776,-0.658803,0.164495,-0.683126,-0.711509,0.358928,-0.932981,0.025605,0.159398,-0.987152,0.008301,0.176824,-0.6957,0.696188,0.023438,-0.695334,0.718284,-0.073519,-0.008545,0.997253,-0.13245,-0.015534,0.991058,-0.177068,0.695883,0.695944,-0.109317,0.993927,-0.012574,-0.116886,0.992859,-0.023041,0.552049,-0.381542,0.741356,0.279122,-0.318949,0.905698,0.372417,-0.806726,0.458754,0.506119,-0.703665,0.498642,0,-0.249123,0.968444,0,-0.882962,0.469405,0,-0.999756,-0.021607,0.334147,-0.942381,-0.015656,-0.45558,-0.882839,0.113926,0.00293,-0.007843,-0.999939,-0.253121,-0.041749,-0.966521,-0.217505,0.310923,-0.925199,0.029115,0.345897,-0.937803,0,-0.110263,-0.993896,0,0.387127,-0.921995,0.982269,0.141575,-0.122868,0.962249,0.078555,0.260567,0.947539,0.19071,0.256478,0.970885,0.134007,-0.198462,0.808252,0.064821,0.585223,0.699362,-0.131901,0.702475,0.557817,-0.121891,0.820948,0.760643,0.130711,0.635823,0.18366,-0.393597,0.900723,0.463973,0.334635,-0.820185,0.839625,0.244087,-0.485214,0.840602,0.065554,-0.537645,0.418256,0.061251,-0.906247,0.030824,-0.99588,-0.085208,-0.4214,-0.898404,-0.123508,0,-0.995178,-0.097812,0.889981,-0.094668,-0.445998,0.795984,-0.233924,-0.558245,0.529008,-0.346263,-0.774743,0.659963,-0.502579,-0.558397,0,-0.729301,-0.684164,0,-0.485824,-0.87402,-0.237098,-0.479995,-0.8446,-0.191565,-0.757958,-0.623493,-0.049623,-0.454787,-0.889187,-0.105472,-0.757653,-0.644063,0.326884,-0.417341,-0.847896,0.19422,-0.667745,-0.718589,-0.74163,-0.306162,0.59682,-0.94406,-0.298379,0.140233,-0.937773,-0.319407,-0.136082,-0.299356,-0.850795,-0.431806,-0.772332,-0.332194,-0.541368,-0.07944,-0.945769,-0.314951,0,-0.930357,-0.366649,-0.035615,-0.399365,-0.916074,-0.396985,-0.401257,-0.825434,-0.967498,-0.183203,-0.174261,-0.967559,-0.190039,-0.166295,-0.968383,-0.171514,0.181005,-0.971404,-0.16657,0.169103,-0.975188,-0.148747,-0.163793,-0.974761,-0.133641,0.178808,0.329997,-0.001709,-0.943968,0.189032,-0.160314,-0.96878,-0.215583,-0.24131,-0.946196,-0.120212,-0.073641,-0.98999,0.114658,-0.27427,-0.954772,-0.256539,-0.268777,-0.928373,-0.455214,-0.269814,-0.848506,-0.412397,-0.168554,-0.89523,-0.476272,-0.245827,-0.844203,-0.796136,-0.239875,-0.555467,-0.765709,-0.219398,-0.604541,-0.818995,-0.19245,-0.540544,0.980926,0.075838,-0.178869,0.976714,-0.027894,-0.212653,0.698355,-0.046846,-0.714194,0.75869,0.035859,-0.650441,0.975982,-0.104038,-0.19129,0.707602,-0.19364,-0.679556,0.954466,0.120212,0.272927,0.959716,-0.037996,0.278298,0.970458,-0.07767,0.22837,-0.236549,-0.250526,0.938749,-0.302622,-0.159337,0.939665,0.253273,-0.108097,0.961303,0.286264,-0.13242,0.948943,-0.365001,-0.038972,0.930174,0.219062,0.019593,0.975494,0.628163,-0.072909,0.774621,0.630329,0.017823,0.776086,0.660085,-0.006134,0.751152,-0.768487,-0.231361,0.596545,-0.786218,-0.175359,0.592517,-0.815577,-0.110477,0.56798,-0.851833,0.005951,-0.523759,-0.861721,0.004181,-0.50734,-0.992187,-0.073946,-0.100162,-0.986541,-0.081088,-0.141758,-0.878994,-0.09006,-0.468215,-0.993713,-0.095737,-0.057894,-0.973388,-0.13068,0.188147,-0.971221,-0.126194,0.201941,-0.796594,-0.163579,0.581896,-0.784265,-0.176641,0.594714,-0.962188,-0.108249,0.249947,-0.780847,-0.126682,0.611682,-0.291025,-0.167058,0.941984,-0.268502,-0.187689,0.944792,-0.310312,-0.135594,0.940886,0.302316,-0.140446,0.942778,0.335063,-0.126469,0.933653,0.798791,-0.049715,0.599506,0.798456,-0.048891,0.600024,0.314158,-0.108707,0.943114,0.774132,-0.078372,0.628132,0.992096,-0.000336,0.125431,0.995392,0.031312,0.090335,0.967284,0.064577,-0.245247,0.977935,0.038575,-0.205206,0.994659,-0.053011,0.088473,0.962127,-0.038545,-0.269753,0.737571,0.112552,-0.665761,0.709098,0.099734,-0.698019,0.117985,0.105564,-0.987365,0.108066,0.161534,-0.980895,0.689932,-0.036287,-0.722953,0.113285,-0.053285,-0.992126,-0.54033,0.099582,-0.835505,-0.529374,0.066347,-0.845759,-0.530442,-0.075838,-0.844295,-0.294534,0.144749,-0.944609,-0.28309,0.088778,-0.954955,-0.278359,-0.065554,-0.95822,-0.772057,-0.145482,-0.618641,-0.976836,-0.145909,-0.156346,-0.976257,-0.140385,0.16483,-0.765374,-0.221473,0.604236,-0.247414,-0.188269,0.950407,0.260079,-0.016938,0.965423,0.668294,0.141087,0.730338,0.936583,0.252907,0.242561,0.95996,0.147984,-0.237739,0.791345,-0.016419,-0.611133,0.404035,-0.099887,-0.909238,-0.415143,-0.076327,-0.906522,-0.090457,-0.070772,-0.993378,0.882229,0.092776,0.461531,0.837519,0.22483,0.49794,0.834437,-0.05649,0.548143,0.829676,0.089145,0.551042,0.871212,-0.058199,0.487442,0.9523,0.00174,0.305124,0.953734,0.002472,0.300577,0.948851,-0.062349,0.309427,0.823756,0.221778,0.521744,-0.907437,-0.07007,-0.414258,-0.997253,-0.063265,-0.037904,-0.960204,-0.058657,0.272958,-0.747459,-0.062441,0.661336,-0.298624,-0.073061,0.951567,0.2978,-0.055818,0.952971,0.76043,-0.042177,0.64803,0.9935,-0.035737,0.108036,0.960875,-0.031159,-0.275155,0.676443,-0.036683,-0.735557,0.112339,-0.056063,-0.992065,-0.551561,-0.071627,-0.831019,-0.289254,-0.066652,-0.954894,0.949858,-0.037416,0.310404,0.188269,0.030457,0.981628,0.161534,0.150304,0.975341,0,0.121708,0.992553,0,0.070681,0.997467,0.545854,-0.031861,0.837245,0.523637,0.136296,0.840938,0,0.526414,-0.850185,-0.205084,0.501083,-0.840724,0,0.528336,-0.848994,-0.217811,0.503372,-0.836146,0.045625,0.494888,-0.867733,0.060976,0.495956,-0.866176,0.735527,-0.004364,0.67745,0.7434,0.025819,0.668294,0.835902,-0.05121,0.546464,0.866451,-0.235115,0.440382,0.983306,0.160283,0.08591,0.978942,-0.017945,0.203253,0.954039,0.260567,-0.147862,0.916684,0.357341,-0.178808,0.815943,0.342998,-0.465346,0.804163,0.383007,-0.454482,0.500412,0.441023,-0.745018,0.541093,0.43086,-0.72216,0.906796,-0.143406,0.396344,0.906583,-0.278848,0.316691,-0.818354,-0.154088,-0.553606,-0.977691,-0.119724,-0.172491,-0.832331,-0.098148,-0.545488,-0.97998,-0.103397,-0.170049,-0.978515,-0.113254,0.172155,-0.82931,-0.094699,0.550676,-0.97766,-0.115177,0.175726,-0.819727,-0.134465,0.556719,-0.386517,-0.020692,0.922025,-0.37672,-0.111911,0.919523,0.230903,0.057375,0.971252,0.706992,0.041169,0.706015,0.239509,-0.04532,0.969817,0.722282,-0.023377,0.691183,0.97763,-0.066439,0.19953,0.9729,-0.09711,-0.209784,0.979034,-0.087802,0.183752,0.974487,-0.090213,-0.205359,0.684408,-0.166051,-0.709891,0.073366,-0.195502,-0.977935,0.709616,-0.084231,-0.699484,0.073824,-0.052309,-0.99588,-0.468825,-0.181341,-0.864437,-0.498611,-0.071566,-0.863826,-0.260964,-0.182653,-0.947874,-0.273598,-0.04181,-0.960906,0.904324,-0.030793,0.425672,0.923124,-0.047456,0.381512,-0.980651,-0.087039,-0.175329,-0.976531,-0.117313,0.180486,0.096042,0.092044,-0.991089,-0.286294,0.099033,-0.953001,-0.517075,0.042207,-0.854885,-0.831813,-0.037233,-0.553758,0.973754,-0.083224,-0.211737,0.7228,0.002899,-0.691,0.982635,-0.106784,0.151708,-0.319681,-0.195685,0.927061,0.274026,-0.148961,0.950102,0.774316,-0.081393,0.627491,-0.800409,-0.173467,0.573748,0.942351,-0.062593,0.328654,0.951262,-0.014039,0.308023,0.99234,-0.014191,0.122501,0.765984,-0.016358,0.642598,-0.999329,-0.013428,-0.03357,-0.962706,-0.014924,0.270089,0.099185,-0.017487,-0.994903,-0.300241,-0.016572,-0.953703,-0.565905,-0.016755,-0.824274,-0.915769,-0.015778,-0.401349,0.965941,-0.015717,-0.258187,0.672353,-0.01706,-0.740013,-0.289743,-0.01886,0.956908,0.290353,-0.01825,0.956725,-0.743797,-0.016449,0.668172,-0.552049,-0.381542,0.741356,-0.506119,-0.703665,0.498642,-0.372417,-0.806726,0.458754,-0.279122,-0.318949,0.905698,-0.334147,-0.942381,-0.015656,0.45558,-0.882839,0.113926,-0.00293,-0.007843,-0.999939,-0.029115,0.345897,-0.937803,0.217505,0.310923,-0.925199,0.253121,-0.041749,-0.966521,-0.982269,0.141575,-0.122868,-0.970885,0.134007,-0.198462,-0.947539,0.19071,0.256478,-0.962249,0.078555,0.260567,-0.808252,0.064821,0.585223,-0.760643,0.130711,0.635823,-0.557817,-0.121891,0.820948,-0.699362,-0.131901,0.702475,-0.18366,-0.393597,0.900723,-0.463973,0.334635,-0.820185,-0.418256,0.061251,-0.906247,-0.840602,0.065554,-0.537645,-0.839625,0.244087,-0.485214,0.4214,-0.898404,-0.123508,-0.030824,-0.99588,-0.085208,-0.795984,-0.233924,-0.558245,-0.889981,-0.094668,-0.445998,-0.659963,-0.502579,-0.558397,-0.529008,-0.346263,-0.774743,0.191565,-0.757958,-0.623493,0.237098,-0.479995,-0.8446,0.105472,-0.757653,-0.644063,0.049623,-0.454787,-0.889187,-0.19422,-0.667745,-0.718589,-0.326884,-0.417341,-0.847896,0.74163,-0.306162,0.59682,0.94406,-0.298379,0.140233,0.937773,-0.319407,-0.136082,0.772332,-0.332194,-0.541368,0.299356,-0.850795,-0.431806,0.07944,-0.945769,-0.314951,0.035615,-0.399365,-0.916074,0.396985,-0.401257,-0.825434,0.967498,-0.183203,-0.174261,0.971404,-0.16657,0.169103,0.968383,-0.171514,0.181005,0.967559,-0.190039,-0.166295,0.974761,-0.133641,0.178808,0.975188,-0.148747,-0.163793,-0.329997,-0.001709,-0.943968,0.120212,-0.073641,-0.98999,0.215583,-0.24131,-0.946196,-0.189032,-0.160314,-0.96878,0.256539,-0.268777,-0.928373,-0.114658,-0.27427,-0.954772,0.412397,-0.168554,-0.89523,0.455214,-0.269814,-0.848506,0.476272,-0.245827,-0.844203,0.765709,-0.219398,-0.604541,0.796136,-0.239875,-0.555467,0.818995,-0.19245,-0.540544,-0.980926,0.075838,-0.178869,-0.75869,0.035859,-0.650441,-0.698355,-0.046846,-0.714194,-0.976714,-0.027894,-0.212653,-0.707602,-0.19364,-0.679556,-0.975982,-0.104038,-0.19129,-0.954466,0.120212,0.272927,-0.959716,-0.037996,0.278298,-0.970458,-0.07767,0.22837,0.236549,-0.250526,0.938749,-0.286264,-0.13242,0.948943,-0.253273,-0.108097,0.961303,0.302622,-0.159337,0.939665,-0.219062,0.019593,0.975494,0.365001,-0.038972,0.930174,-0.630329,0.017823,0.776086,-0.628163,-0.072909,0.774621,-0.660085,-0.006134,0.751152,0.768487,-0.231361,0.596545,0.786218,-0.175359,0.592517,0.815577,-0.110477,0.56798,0.851833,0.005951,-0.523759,0.986541,-0.081088,-0.141758,0.992187,-0.073946,-0.100162,0.861721,0.004181,-0.50734,0.993713,-0.095737,-0.057894,0.878994,-0.09006,-0.468215,0.973388,-0.13068,0.188147,0.784265,-0.176641,0.594714,0.796594,-0.163579,0.581896,0.971221,-0.126194,0.201941,0.780847,-0.126682,0.611682,0.962188,-0.108249,0.249947,0.268502,-0.187689,0.944792,0.291025,-0.167058,0.941984,0.310312,-0.135594,0.940886,-0.302316,-0.140446,0.942778,-0.798456,-0.048891,0.600024,-0.798791,-0.049715,0.599506,-0.335063,-0.126469,0.933653,-0.774132,-0.078372,0.628132,-0.314158,-0.108707,0.943114,-0.992096,-0.000336,0.125431,-0.977935,0.038575,-0.205206,-0.967284,0.064577,-0.245247,-0.995392,0.031312,0.090335,-0.962127,-0.038545,-0.269753,-0.994659,-0.053011,0.088473,-0.737571,0.112552,-0.665761,-0.108066,0.161534,-0.980895,-0.117985,0.105564,-0.987365,-0.709098,0.099734,-0.698019,-0.113285,-0.053285,-0.992126,-0.689932,-0.036287,-0.722953,0.54033,0.099582,-0.835505,0.529374,0.066347,-0.845759,0.530442,-0.075838,-0.844295,0.294534,0.144749,-0.944609,0.28309,0.088778,-0.954955,0.278359,-0.065554,-0.95822,0.976836,-0.145909,-0.156346,0.772057,-0.145482,-0.618641,0.976257,-0.140385,0.16483,0.765374,-0.221473,0.604236,0.247414,-0.188269,0.950407,-0.668294,0.141087,0.730338,-0.260079,-0.016938,0.965423,-0.95996,0.147984,-0.237739,-0.936583,0.252907,0.242561,-0.404035,-0.099887,-0.909238,-0.791345,-0.016419,-0.611133,0.415143,-0.076327,-0.906522,0.090457,-0.070772,-0.993378,-0.837519,0.22483,0.49794,-0.882229,0.092776,0.461531,-0.829676,0.089145,0.551042,-0.834437,-0.05649,0.548143,-0.871212,-0.058199,0.487442,-0.953734,0.002472,0.300577,-0.9523,0.00174,0.305124,-0.948851,-0.062349,0.309427,-0.823756,0.221778,0.521744,0.997253,-0.063265,-0.037904,0.907437,-0.07007,-0.414258,0.747459,-0.062441,0.661336,0.960204,-0.058657,0.272958,0.298624,-0.073061,0.951567,-0.76043,-0.042177,0.64803,-0.2978,-0.055818,0.952971,-0.960875,-0.031159,-0.275155,-0.9935,-0.035737,0.108036,-0.112339,-0.056063,-0.992065,-0.676443,-0.036683,-0.735557,0.551561,-0.071627,-0.831019,0.289254,-0.066652,-0.954894,-0.949858,-0.037416,0.310404,-0.188269,0.030457,0.981628,-0.161534,0.150304,0.975341,-0.523637,0.136296,0.840938,-0.545854,-0.031861,0.837245,0.205084,0.501083,-0.840724,0.217811,0.503372,-0.836146,-0.045625,0.494888,-0.867733,-0.060976,0.495956,-0.866176,-0.7434,0.025819,0.668294,-0.735527,-0.004364,0.67745,-0.866451,-0.235115,0.440382,-0.835902,-0.05121,0.546464,-0.983306,0.160283,0.08591,-0.916684,0.357341,-0.178808,-0.954039,0.260567,-0.147862,-0.978942,-0.017945,0.203253,-0.804163,0.383007,-0.454482,-0.815943,0.342998,-0.465346,-0.500412,0.441023,-0.745018,-0.541093,0.43086,-0.72216,-0.906796,-0.143406,0.396344,-0.906583,-0.278848,0.316691,0.977691,-0.119724,-0.172491,0.818354,-0.154088,-0.553606,0.97998,-0.103397,-0.170049,0.832331,-0.098148,-0.545488,0.82931,-0.094699,0.550676,0.978515,-0.113254,0.172155,0.819727,-0.134465,0.556719,0.97766,-0.115177,0.175726,0.386517,-0.020692,0.922025,0.37672,-0.111911,0.919523,-0.706992,0.041169,0.706015,-0.230903,0.057375,0.971252,-0.722282,-0.023377,0.691183,-0.239509,-0.04532,0.969817,-0.9729,-0.09711,-0.209784,-0.97763,-0.066439,0.19953,-0.974487,-0.090213,-0.205359,-0.979034,-0.087802,0.183752,-0.073366,-0.195502,-0.977935,-0.684408,-0.166051,-0.709891,-0.073824,-0.052309,-0.99588,-0.709616,-0.084231,-0.699484,0.468825,-0.181341,-0.864437,0.498611,-0.071566,-0.863826,0.260964,-0.182653,-0.947874,0.273598,-0.04181,-0.960906,-0.904324,-0.030793,0.425672,-0.923124,-0.047456,0.381512,0.976531,-0.117313,0.180486,0.980651,-0.087039,-0.175329,0.286294,0.099033,-0.953001,-0.096042,0.092044,-0.991089,0.517075,0.042207,-0.854885,0.831813,-0.037233,-0.553758,-0.7228,0.002899,-0.691,-0.973754,-0.083224,-0.211737,-0.982635,-0.106784,0.151708,-0.274026,-0.148961,0.950102,0.319681,-0.195685,0.927061,-0.774316,-0.081393,0.627491,0.800409,-0.173467,0.573748,-0.942351,-0.062593,0.328654,-0.99234,-0.014191,0.122501,-0.951262,-0.014039,0.308023,-0.765984,-0.016358,0.642598,0.962706,-0.014924,0.270089,0.999329,-0.013428,-0.03357,0.300241,-0.016572,-0.953703,-0.099185,-0.017487,-0.994903,0.565905,-0.016755,-0.824274,0.915769,-0.015778,-0.401349,-0.672353,-0.01706,-0.740013,-0.965941,-0.015717,-0.258187,-0.290353,-0.01825,0.956725,0.289743,-0.01886,0.956908,0.743797,-0.016449,0.668172,-0.258126,0.920743,-0.29252,-0.270486,0.918821,-0.287332,0.248024,0.886502,-0.390606,0.245552,0.886746,-0.391614,-0.223151,0.974731,0.007477,0.172735,0.983001,0.061647,-0.904386,0.424574,-0.04236,-0.923948,0.377056,-0.063936,-0.752281,0.58858,-0.295969,-0.756798,0.589862,-0.281594,-0.419752,0.809015,0.41142,-0.505173,0.85873,0.085635,0.891354,0.452101,-0.032594,0.893735,0.447798,-0.026307,0.928281,0.370586,0.030854,0.924253,0.367321,0.103793,0.655049,0.738304,0.160497,0.531358,0.729911,0.429914,0.259377,0.10416,0.960112,0.242866,0.104495,0.964385,0.057741,0.106876,0.992584,0.073855,0.106876,0.991516,0.395215,0.555528,0.731529,0.194983,0.533433,0.823054,0.627308,0.107089,0.771355,0.618427,0.10712,0.778466,0.447829,0.624744,0.639607,-0.191107,0.104129,0.976012,-0.174841,0.104678,0.979003,-0.151067,0.583453,0.797967,-0.6133,0.098514,0.783654,-0.634114,0.097903,0.766991,-0.921476,0.156438,0.355449,-0.900052,0.150426,0.408948,-0.455061,0.651692,0.6068,-0.534288,0.65453,0.534867,-0.631062,0.774865,0.035951,-0.661672,0.745781,0.077273,-0.566454,0.817957,0.100192,0.922544,0.182318,0.340037,0.891079,0.178564,0.417188,0.562487,0.603717,0.564898,-0.774163,0.632527,-0.02237,-0.791131,0.611621,0.001495,-0.652882,0.744865,0.137394,0.826044,0.538469,-0.166295,0.835383,0.529923,-0.145817,0.558733,0.795068,0.235878,0.711447,0.666189,-0.223579,0.697195,0.678213,-0.232215,0.773736,0.581042,-0.252297,0.788842,0.567461,-0.236,0.598865,0.785211,0.157262,0.689596,0.713797,0.122074,-0.750572,0.636494,0.177404,-0.751915,0.6274,0.202338,-0.696677,0.663076,0.273721,0.516861,0.79339,-0.321451,0.512742,0.795648,-0.322459,0.419355,0.904202,0.080782,-0.35374,0.132725,0.92584,-0.009369,0.321757,0.946745,-0.001343,0.388012,0.921628,-0.361522,0.178411,0.915098,-0.573962,-0.206549,0.792383,-0.62743,0.057344,0.776513,-0.425336,0.00705,0.904996,-0.02121,0.300729,0.953459,-0.676138,-0.113468,0.727958,-0.429273,-0.196478,0.881527,-0.073275,0.413587,0.907498,-0.048799,0.468368,0.882168,-0.414869,0.125278,0.901181,-0.474075,-0.782586,0.403455,-0.651723,-0.003998,0.758415,0.006958,0.599811,0.800073,-0.24543,0.617878,0.74694,-0.313517,0.776818,0.546068,-0.346843,0.291574,0.891415,-0.006897,0.4991,0.866482,-0.589129,-0.080264,0.80401,-0.356182,-0.918302,0.172643,-0.233894,-0.972259,0.000397,-0.253182,-0.967223,-0.018799,-0.392895,-0.88757,0.240394,-0.369976,-0.873043,0.317576,-0.474715,-0.741447,0.474197,-0.395642,-0.201483,0.895993,-0.135838,-0.443953,0.885678,-0.240364,-0.871456,0.427503,-0.426038,-0.714347,0.555101,-0.567095,-0.44496,0.693075,-0.45616,-0.73516,0.501419,-0.357311,0.132786,0.924467,-0.038667,0.1077,0.993408,-0.535173,0.152074,0.830927,-0.335795,-0.930296,-0.147496,-0.197668,-0.961943,-0.188482,-0.125614,-0.9429,-0.30842,-0.28077,-0.876186,-0.391675,-0.50856,-0.846339,0.158177,-0.691794,-0.700674,0.174474,-0.448378,-0.811518,0.374615,-0.253883,-0.956908,0.140782,-0.552324,-0.479354,0.681997,-0.46556,-0.559618,0.685598,0.004425,-0.445845,0.895077,0.034974,0.482131,0.875362,-0.091464,0.446822,0.88992,-0.734977,-0.466689,0.491897,-0.160131,0.428327,0.889309,-0.255104,-0.965972,0.042268,-0.43141,-0.836024,0.339,-0.574236,-0.414624,0.705893,-0.49028,-0.843379,0.219825,-0.07358,-0.875973,0.476638,-0.772637,-0.509201,0.37907,-0.090854,-0.991302,0.095004,-0.459731,-0.887265,0.037019,-0.732688,-0.595996,0.328471,-0.910916,-0.133854,0.39021,-0.937834,-0.020539,0.346446,-0.973174,-0.225227,0.046419,-0.995666,0.090396,0.020356,-0.936552,-0.203162,0.285562,-0.994842,-0.0365,-0.094516,-0.469008,-0.878231,0.093295,-0.919126,0.112888,0.377392,-0.394116,-0.892453,0.219459,-0.972777,0.221412,-0.068331,-0.292795,0.933226,0.208167,-0.253853,0.939573,-0.229621,-0.85577,-0.266243,0.443556,-0.917417,-0.382397,0.109897,-0.666158,-0.722007,0.186804,-0.856014,-0.177252,0.485549,-0.771996,-0.635609,0.001862,-0.989227,-0.061617,0.132694,-0.943297,-0.124485,0.307627,-0.811457,-0.486831,0.323222,-0.981964,0.174718,0.072176,-0.992523,-0.104495,0.062716,-0.908078,0.229743,0.350047,-0.972777,0.228217,0.04004,-0.866359,-0.40141,0.297067,-0.950896,-0.187445,0.246254,-0.97824,-0.206122,0.02237,-0.98059,-0.1395,0.13773,-0.881741,0.263131,0.39143,-0.952605,0.286447,0.102329,-0.838313,-0.4438,0.316599,-0.334849,0.339854,0.878811,-0.929472,-0.368511,-0.014618,-0.634266,0.430067,0.642415,-0.794549,0.226295,0.563402,-0.767296,0.62273,0.15302,-0.864376,-0.414228,0.284951,-0.912839,-0.39436,0.105564,-0.87756,-0.082949,0.472182,-0.96466,-0.007843,0.263283,0.318552,0.382092,0.867458,0.411542,-0.361675,0.836543,0.454665,-0.605121,0.653493,0.346416,-0.933958,0.087558,0.270913,-0.919034,-0.286233,0.27955,-0.951964,0.124882,0.298288,-0.838374,0.45616,0.281747,-0.923276,0.260994,0.379894,-0.916868,0.122379,0.351329,-0.934111,0.062899,0.289468,-0.930296,0.225227,0.354076,-0.644276,0.677847,0.339885,0.085849,0.936521,0.361156,0.264809,0.894101,0.371502,0.249519,0.894253,0.502487,-0.008454,0.864528,0.351573,0.436781,0.827998,0.289712,0.625172,0.724662,0.289499,0.609882,0.737693,0.246467,0.617481,0.74694,0.922788,-0.265755,0.278909,0.584002,0.175787,0.792474,0.601428,-0.174169,0.779687,0.868984,-0.330393,0.368328,0.976226,-0.216529,-0.007019,0.93878,-0.294504,0.178594,0.74694,-0.073336,0.660817,0.936094,-0.283151,0.208686,0.979461,-0.091617,0.17954,0.938139,0.179022,0.296304,0.622791,0.457015,0.634968,0.716208,0.104801,0.689932,0.475295,-0.872036,0.116581,0.979522,0.065523,0.190344,0.160894,-0.974609,0.155705,0.328196,0.934874,0.135166,0.382153,0.797967,0.465987,0.275246,0.955229,-0.108341,0.726798,-0.09418,0.680319,0.918912,-0.27485,0.282907,0.94995,-0.302316,0.078677,0.914457,-0.279794,0.292276,0.703513,-0.548723,0.451552,0.520035,-0.834376,0.182531,0.360942,-0.916898,0.170232,0.950163,-0.249001,0.187536,0.249825,-0.96292,0.101688,0.821986,-0.373241,0.430097,0.6751,-0.607959,0.417829,0.712272,-0.398633,0.577685,0.898862,-0.379101,0.219794,0.818781,-0.551622,0.158971,0.844935,-0.526444,0.094302,0.648274,-0.204443,0.733421,0.873318,-0.305063,0.379711,0.927641,-0.283731,0.242744,0.988525,0.079653,0.128147,0.693442,-0.714408,-0.093417,0.749596,-0.529588,0.397015,0.934446,0.208289,0.288736,0.937742,0.221198,0.267708,0.89462,0.362255,0.261452,0.72042,-0.101962,0.685965,0.822626,0.452803,0.343822,0.872951,0.42909,0.23191,0.833155,0.376629,0.404889,0.75042,-0.198004,0.630543,0.803247,0.580706,0.13242,0.89938,0.214423,0.380902,0.702048,-0.11597,0.702567,0.838069,-0.338267,0.427931,0.957549,-0.171636,0.231513,0.953978,-0.25425,0.158879,0.985076,-0.122257,0.121036,0.946654,-0.237159,0.218024,0.850612,-0.502609,0.154363,0.98825,0.1077,0.10831,0.21955,0.424024,0.878628,0.124485,0.730827,0.671072,0.200659,0.845729,0.494369,0.090884,0.917356,-0.387524,0.346202,0.878719,-0.328593,-0.471877,0.859127,-0.198004,0.205786,0.962584,-0.176183,0.412305,0.883572,-0.221931,0.880764,0.345622,0.323679,0.715354,0.22486,0.66155,-0.6245,0.718284,0.30665,-0.878292,0.328806,0.347026,0.625996,0.777734,-0.056795,-0.773339,0.630726,0.063997,-0.662374,0.747581,-0.048158,-0.642659,0.766076,0.007813,-0.694632,0.604602,-0.389721,-0.664846,0.476089,-0.575549,-0.943419,0.068453,-0.324412,-0.566088,0.333476,-0.753838,0.575365,-0.377453,-0.725547,0.383862,-0.555925,-0.737266,0.688589,-0.5421,-0.481582,0.821802,-0.350414,-0.449232,0.554735,0.433149,-0.710349,0.84994,-0.274758,-0.449538,-0.758415,0.637104,0.137455,-0.790826,0.607654,0.072939,-0.989868,0.108402,-0.091464,0.912015,-0.409253,0.026856,0.950438,-0.307718,-0.043611,0.947386,-0.227058,-0.225501,-0.990295,0.072298,0.118534,-0.976623,0.095492,0.19248,-0.97943,-0.195166,0.050935,0.933195,-0.149297,0.326823,0.935179,-0.289651,0.203681,0.939879,-0.056642,0.336711,0.198096,0.274758,-0.940855,0.128117,0.264595,-0.955779,0.241066,-0.400464,-0.883999,0.63097,0.117405,-0.766839,0.217933,0.568834,-0.793023,0.619037,0.701987,-0.352062,-0.032197,-0.588244,-0.808008,0.215278,-0.087466,-0.972594,0.443312,0.770165,-0.458571,-0.87054,0.437544,-0.225135,-0.634846,0.619037,-0.462294,0.543016,0.211249,-0.812677,0.870357,0.026032,-0.491714,-0.993805,-0.000824,-0.111026,0.897244,-0.44142,-0.008698,-0.928861,-0.370373,-0.000519,0.87466,-0.446486,0.188574,0.129154,0.530534,-0.837733,0.451094,0.144414,-0.880703,0.169836,0.148137,-0.974242,0.263833,0.857875,-0.44087,0.564653,0.03412,-0.82461,0.609424,0.623096,-0.490188,0.334391,0.91467,-0.227027,0.432997,0.021485,-0.90112,0.703726,0.015809,-0.710257,-0.563433,-0.526811,-0.636372,-0.450117,-0.776574,-0.440748,-0.176672,-0.689993,-0.701895,-0.438704,-0.700797,-0.562487,-0.514054,-0.477828,-0.712333,-0.19895,-0.247475,-0.94821,0.104862,-0.07535,-0.991607,-0.858364,-0.355022,-0.370281,-0.228462,-0.857051,-0.461745,0.491775,0.853847,-0.170507,0.882656,0.41084,-0.228278,0.944121,0.294961,0.146977,0.816157,0.574755,0.059084,0.941862,0.078677,-0.32664,0.987121,-0.157781,0.02588,-0.980956,-0.086032,0.174078,-0.975372,0.064547,0.210852,-0.978515,-0.206091,-0.004639,-0.756584,-0.653401,-0.02411,-0.949767,-0.307138,0.059816,-0.980529,-0.124516,-0.151677,0.298471,0.93994,-0.165502,0.612232,0.682852,-0.398541,0.844203,0.133183,-0.519181,-0.757897,-0.635243,-0.148381,-0.670827,-0.647725,-0.361126,-0.883175,-0.109531,-0.456038,0.378796,0.412702,-0.828333,0.655446,-0.002045,-0.755211,-0.662954,-0.045564,-0.747246,0.007569,0.578631,-0.815516,0.335643,0.501938,-0.797113,0.885159,-0.429914,-0.177862,0.957793,-0.235359,0.164892,-0.908109,-0.413251,-0.067385,-0.914365,-0.367809,-0.169103,0.833125,-0.344707,-0.432478,-0.871731,-0.310709,-0.378826,-0.805658,-0.483444,-0.342265,-0.828364,-0.399548,-0.392621,-0.427045,-0.752495,-0.501328,-0.405408,-0.665365,-0.62682,-0.852779,-0.442244,-0.27781,-0.639149,-0.598437,-0.483016,0.57738,-0.466384,-0.670095,0.834681,-0.428663,-0.345683,0.709891,-0.46144,-0.53206,0.527604,-0.6339,-0.565447,0.729118,-0.348033,-0.589251,0.638325,-0.461165,-0.616321,-0.937498,-0.177801,-0.299081,-0.959716,-0.15775,-0.23249,-0.974273,-0.218268,-0.05594,0.669393,-0.194952,-0.716849,0.95175,-0.223884,-0.209754,0.868801,-0.36021,-0.339702,-0.993286,0.087527,-0.075564,-0.946471,0.071993,-0.314585,-0.986847,-0.102359,0.124943,0.990326,-0.096408,-0.099673,0.977599,-0.204138,0.051027,0.928037,-0.371044,-0.031678,0.043428,-0.756188,-0.652882,-0.197699,-0.706717,-0.679281,0.135624,-0.702078,-0.699026,0.185034,-0.771844,-0.608234,-0.308939,-0.733634,-0.605243,0.169622,-0.740379,-0.65041,0.415876,-0.704123,-0.575518,0.534288,-0.585437,-0.609699,0.458083,-0.623707,-0.63332,0.169012,-0.769585,-0.615741,-0.543596,-0.54445,-0.638752,0.362804,-0.92938,-0.067812,0.042573,-0.999084,-0.001953,0.259194,-0.733116,-0.628712,0.130924,-0.979217,-0.154851,0.149724,-0.979095,-0.137516,0.441877,-0.670492,-0.595935,0.199011,-0.9729,-0.117649,0.175726,-0.806787,-0.564074,-0.998047,-0.036317,-0.050539,-0.689657,-0.724052,0.00824,-0.666646,-0.744041,0.043764,-0.970367,-0.129887,-0.203681,0.774651,-0.608173,0.173162,0.783959,-0.506088,-0.359539,0.139531,-0.985656,0.09476,0.215094,-0.974792,-0.059053,-0.530747,-0.844111,0.075716,-0.89523,-0.356182,-0.267678,0.630421,-0.531724,-0.565508,0.183874,-0.975066,-0.12418,-0.48912,-0.833369,-0.257271,-0.604907,-0.641865,-0.471236,-0.565325,-0.721397,-0.399945,-0.494888,-0.83636,-0.235694,-0.338603,0.171422,-0.925169,-0.255867,0.150822,-0.954863,0.797418,-0.574023,-0.18598,0.25779,0.247261,-0.934019,0.162694,0.207984,-0.964476,0.552721,-0.796716,-0.244392,0.816126,-0.486099,-0.312357,0.490432,-0.764763,-0.417829,-0.112003,-0.880581,-0.460402,-0.012177,-0.952391,-0.304575,-0.029603,0.173925,-0.984283,-0.987274,-0.084689,0.134556,-0.995422,-0.035524,0.088443,-0.975005,-0.214331,-0.05826,-0.594043,-0.706168,-0.385235,-0.12064,0.743217,-0.658071,-0.056215,0.451888,-0.890286,0.946013,-0.213263,-0.244057,0.237037,0.848964,-0.472274,0.189978,0.507035,-0.840693,0.673605,-0.586749,-0.449355,0.986724,-0.117557,-0.112003,0.871059,-0.271981,-0.408979,-0.778375,-0.611042,-0.143956,-0.465682,-0.767083,-0.441206,-0.182684,0.236335,-0.954314,0.237892,0.242042,-0.940642,0.767571,-0.571245,-0.290658,0.881985,-0.327494,-0.338847,-0.590045,-0.763024,-0.263771,-0.154851,-0.797174,-0.583514,-0.124454,-0.664144,0.737144,0.146733,-0.825068,0.54561,0.700613,-0.571581,-0.427045,0.2996,-0.713004,0.6339,0.183538,-0.830439,0.525956,0.406079,-0.696982,-0.59096,0.143437,-0.711966,-0.687368,0.156438,-0.863399,0.479598,-0.96411,0.140629,-0.225074,-0.865108,-0.105106,-0.490371,-0.412793,-0.742576,0.52739,-0.554704,-0.491348,0.671438,0.994354,0.09241,0.051973,0.195471,-0.817621,0.54152,0.359722,-0.508286,0.782434,0.948515,-0.069796,-0.308878,-0.850612,-0.437361,-0.291757,-0.424085,-0.506882,0.75045,0.397168,-0.511704,0.761834,0.893033,-0.386059,-0.231178,-0.553301,-0.675069,-0.48793,-0.208838,-0.723869,-0.657521,0.543962,-0.672842,-0.501328,0.515061,-0.644398,-0.565172,0.228248,-0.725669,-0.649068,-0.945769,-0.24543,-0.212653,-0.762017,-0.474227,-0.44087,0.930387,-0.322825,-0.173498,0.694082,-0.507492,-0.510544,-0.651448,-0.589862,-0.477096,0.507126,-0.620746,-0.597858,0.552904,0.831874,-0.047517,0.639546,0.700308,0.316996,0.624714,-0.10007,0.774377,0.94467,-0.312906,-0.0983,0.525651,-0.682669,0.507553,0.525712,-0.848415,-0.061342,0.458998,-0.085299,-0.884304,0.566027,0.707236,-0.423566,0.412976,-0.67214,-0.614521,0.313608,0.777062,-0.545671,0.467666,0.883236,-0.033815,-0.168401,0.985168,0.032533,0.143529,0.984924,-0.096255,0.417463,0.764794,0.490677,0.163579,0.982421,0.089816,0.106876,0.933653,-0.341777,0.983306,0.1536,-0.097446,0.173345,0.926511,0.333842,0.93292,0.348888,-0.088748,0.842372,0.066897,0.534684,0.720054,0.081729,-0.689077,-0.348735,0.501816,0.791528,-0.614948,0.784722,0.077517,-0.502091,0.521653,-0.689749,0.225471,0.974151,-0.011719,0.132633,0.714896,0.686483,0.068819,-0.009857,0.997559,0.149998,-0.026582,0.988311,-0.015534,0.532609,0.846187,0.000275,-0.029237,0.999542,-0.178472,-0.693625,0.697836,0.113712,-0.701865,0.703146,-0.201086,-0.666158,0.718162,-0.358806,-0.933042,0.025849,0.063631,-0.997864,-0.014527,-0.54973,-0.833216,0.059206,-0.321726,-0.679159,-0.659688,-0.028474,-0.689261,-0.72393,-0.326487,-0.670736,-0.665944,-0.14594,0.015381,-0.989166,-0.047914,-0.006928,-0.99881,-0.223304,-0.005615,-0.974731,0.00708,0.714591,-0.699484,-0.181677,0.524796,-0.831599,0.265725,-0.962981,-0.044618,-0.159886,-0.98706,0.010956,-0.109104,-0.825007,0.55446,0.008881,-0.756859,0.653493,-0.004975,-0.752708,-0.658315,-0.10712,-0.831324,-0.545335,0.119572,0.978362,0.168737,0.191626,-0.041871,0.98056,0.245125,-0.704367,0.666128,0.257973,-0.965484,-0.035401,0.106601,-0.692099,-0.713858,-0.007019,-0.02353,-0.999695,0.085818,0.981628,-0.170324,0.143712,0.938444,0.314097,0.080111,0.94641,-0.312845,0.021668,0.545457,-0.837855,0.190527,0.522782,0.830866,0.141881,0.989868,-0.003418,0.026795,0.799402,-0.600146,-0.050203,0.998596,0.01529,0.03354,0.83224,0.553362,-0.090884,0.691549,0.716544,-0.09653,0.605823,-0.789697,0.342112,0.802728,-0.488388,0.019379,0.893735,-0.448134,-0.063662,0.889889,0.451704,0.120792,0.846492,0.518448,0.033601,0.998108,0.050996,0.45793,0.888638,0.024506,0.429182,0.903195,0.003754,-0.004334,0.998321,0.057222,-0.038392,0.903623,-0.426557,0.282479,0.819727,-0.498215,0.123508,0.853908,0.505478,-0.068911,0.891537,0.447584,-0.073794,0.996857,0.027772,-0.032746,0.810419,-0.584918,0.044252,0.835688,0.54741,-0.070467,0.693991,0.716483,-0.167913,0.617786,-0.768181,-0.04944,0.72457,-0.687399,-0.263253,0.536607,-0.801691,0.002777,0.535569,0.844447,0.158635,0.716453,0.679312,0.213446,0.976775,-0.017731,0.139897,0.990143,-0.005432,0.928678,0.342845,-0.141331,0.680258,0.08359,-0.728172,-0.026093,0.551225,-0.833918,-0.611499,0.782922,0.114353,-0.543779,0.524064,-0.655446,-0.310953,0.495773,0.810846,0.236335,0.519517,0.8211,0.872494,0.061739,0.484695,0.158971,0.935362,0.315897,0.193762,0.922758,0.333048,0.165349,0.982269,0.08826,0.059297,0.946898,-0.315958,0.133427,0.985778,-0.102115,0.087313,0.933592,-0.347453,0.07416,0.982055,-0.173254,0.275185,0.783868,-0.556597,0.54561,0.707694,-0.448805,0.127506,0.976989,0.170934,0.660939,0.696493,0.279244,0.438002,0.764855,0.472335,-0.067324,-0.022004,-0.997467,-0.117893,-0.014283,-0.99292,0.408826,-0.081454,-0.908933,0.030457,-0.718619,-0.694693,-0.116153,-0.729484,-0.674001,0.375591,-0.674795,-0.635243,0.175268,-0.983551,-0.04294,-0.019318,-0.999725,-0.012421,0.516617,-0.850795,-0.09592,0.23957,-0.738456,0.630268,0.093417,-0.749626,0.655202,0.550523,-0.691885,0.467116,0.243385,-0.050935,0.968566,0.194891,-0.044496,0.979797,0.669393,-0.105564,0.735343,-0.018342,-0.786889,-0.61681,-0.308512,-0.040529,-0.950346,-0.324809,-0.717338,-0.616352,-0.105167,-0.867702,-0.485794,0.032502,-0.070254,0.996979,0.05649,-0.796808,0.60155,-0.041749,-0.872677,0.486465,-0.131718,-0.718802,0.682577,-0.460158,-0.885189,0.068087,-0.082492,-0.996582,-0.000732,0.229652,-0.971282,-0.062014,0.46382,0.884274,-0.053743,-0.226936,0.009766,-0.973846,-0.350108,-0.714377,-0.605823,-0.347331,-0.93701,0.036622,-0.142735,-0.737144,0.660451,0.10593,-0.026307,0.994018,-0.182867,0.981842,0.049959,0.976409,0.150884,-0.154271,0.553667,0.829249,-0.075686,0.936521,-0.314402,-0.154973,0.530045,0.84753,0.025758,0.578173,0.714347,0.394177,0.51204,-0.084994,0.854701,0.953612,-0.295633,0.05649,0.466292,-0.64977,0.600269,0.553392,-0.832087,0.03647,0.608112,-0.095859,-0.788018,0.621174,0.709861,-0.331889,0.531968,-0.656728,-0.534471,0.423505,0.753655,-0.502609,0.501114,0.864895,0.028443,-0.138737,0.990265,-0.008454,0.199652,0.976745,-0.077761,0.362499,0.757408,0.543016,0.192755,0.976592,0.095157,0.146001,0.936552,-0.318644,0.98175,0.181768,0.055574,0.107089,0.939756,0.324564,0.921751,0.384136,0.052675,0.747612,0.096408,0.657063,0.819025,0.092074,-0.566301,-0.4756,0.51091,0.716056,-0.605548,0.79516,-0.031434,-0.394269,0.507645,-0.766015,0.241401,0.970367,0.009461,0.01117,0.714957,0.699057,-0.101749,-0.00528,0.994781,-0.011139,-0.025117,0.999603,-0.186254,0.52324,0.831568,-0.17307,-0.055361,0.983337,-0.283578,-0.70513,0.649831,-0.037416,-0.720176,0.69277,-0.262856,-0.682058,0.682394,-0.356517,-0.934141,-0.016144,-0.001251,-0.999969,0.006775,-0.479415,-0.877529,-0.007416,-0.210089,-0.712241,-0.669729,0.045259,-0.72924,-0.68273,-0.159795,-0.712088,-0.683645,0.000244,-0.009278,-0.999939,0.10828,-0.035646,-0.993469,-0.079867,-0.067476,-0.994507,0.112156,0.690542,-0.714499,-0.084964,0.497452,-0.863277,0.318949,-0.947691,0.010773,-0.037263,-0.999237,0.009491,-0.118839,-0.846217,0.519395,-0.030396,-0.763634,0.644887,0.177313,-0.775292,-0.606159,0.042085,-0.861721,-0.50557,0.096805,0.981262,0.166509,0.037568,-0.030335,0.99881,0.118625,-0.703848,0.700339,0.210486,-0.977416,0.017884,0.199225,-0.712973,-0.672262,0.153783,-0.042604,-0.987182,0.116733,0.979278,-0.165319,0.098972,0.949858,0.296548,0.132206,0.94821,-0.288736,0.158086,0.523209,-0.837397,0.061678,0.526261,0.848048,0.148717,0.988861,0.004089,0.12833,0.77752,-0.615589,-0.08121,0.996643,-0.010346,-0.072024,0.829402,0.553941,-0.24543,0.674642,0.696127,0.004395,0.567156,-0.823573,0.451399,0.770287,-0.450392,0.073489,0.879513,-0.470107,-0.174078,0.886868,0.4279,0.022431,0.843013,0.5374,0.000153,0.999054,0.043336,0.493667,0.865261,0.087069,0.453383,0.886135,-0.095553,0.04181,0.999084,-0.00705,-0.086062,0.839381,-0.536637,0.238044,0.757744,-0.607532,0.210608,0.852168,0.478957,0.024506,0.898556,0.438154,-0.044038,0.998199,-0.040284,-0.094119,0.723685,-0.683676,0.146733,0.837886,0.525712,0.055208,0.697897,0.714042,-0.255318,0.494766,-0.830653,-0.103702,0.631397,-0.768456,-0.342875,0.417402,-0.841517,0.153386,0.557268,0.816034,0.280587,0.732994,0.619617,0.247688,0.961516,-0.118656,0.122044,0.987518,-0.09949,0.874111,0.399518,-0.276101,0.569445,0.063814,-0.819514,-0.140477,0.463332,-0.874935,-0.584582,0.802271,0.120701,-0.616443,0.460067,-0.638966,-0.20188,0.549333,0.810816,0.327982,0.566912,0.755638,0.913236,0.14246,0.381664,0.173223,0.962249,0.209845,0.197668,0.954863,0.221625,0.194281,0.980865,-0.011719,0.005951,0.924375,-0.38142,0.13889,0.968047,-0.208686,0.018891,0.912809,-0.40788,0.032685,0.967986,-0.248756,0.244575,0.703513,-0.667226,0.435316,0.683065,-0.586413,0.12241,0.989868,0.071841,0.653981,0.734916,0.179327,0.530259,0.769982,0.354778,-0.181646,-0.103427,-0.977905,-0.188177,-0.101321,-0.976867,0.290811,-0.146825,-0.945433,-0.023743,-0.75341,-0.657063,-0.121921,-0.768059,-0.628651,0.307901,-0.699332,-0.645039,0.216651,-0.976226,0.003479,0.06946,-0.99646,0.046693,0.525986,-0.845271,-0.093966,0.354961,-0.664083,0.657979,0.259713,-0.6798,0.685842,0.626545,-0.62389,0.467055,0.366466,0.027406,0.929991,0.362926,0.030549,0.931303,0.750023,-0.037263,0.660298,-0.04413,-0.814417,-0.57857,-0.361675,-0.139286,-0.921812,-0.333445,-0.759423,-0.55858,-0.114689,-0.892972,-0.435224,0.226783,-0.003052,0.973907,0.188269,-0.73043,0.656484,0.086642,-0.821497,0.563555,0.034577,-0.660054,0.750389,-0.372051,-0.911069,0.177404,-0.013062,-0.997253,0.072573,0.258644,-0.965819,-0.015442,0.473739,0.862362,-0.178381,-0.282418,-0.085879,-0.955412,-0.341136,-0.767052,-0.543321,-0.247993,-0.959685,0.132115,0.039888,-0.686392,0.726127,0.296091,0.034944,0.954497,-0.134617,0.990753,-0.014985,0.937223,0.203894,-0.282815,0.498489,0.843471,-0.199988,0.922239,-0.299356,-0.244545,-0.593036,0.370373,0.714927,0.340526,-0.12949,0.931242,0.693503,0.375011,0.615101,0.096774,0.923093,0.372112,-0.867519,0.49559,-0.04181,-0.200964,0.977935,-0.056917,-0.934965,-0.354656,0.001221,-0.686178,-0.560381,0.463759,0.144139,-0.736198,0.661184,-0.73928,0.040986,0.67214,-0.708701,-0.023957,0.705069,-0.650288,0.276772,0.70745,-0.447401,0.626026,0.638661,-0.548235,0.467757,0.693258,-0.404645,0.665365,0.627277,-0.540941,0.530015,0.653005,-0.077639,0.672842,0.735679,0.046236,0.430738,0.901273,-0.696951,0.20539,0.687063,-0.262551,-0.277383,0.924161,-0.5862,-0.25251,0.769768,0.579302,0.815058,-0.005188,0.531968,0.843623,-0.072817,0.772362,0.51149,0.376537,0.893765,0.206641,-0.398022,0.795618,0.269265,-0.542619,0.999786,0.015381,-0.012665,0.734672,-0.475448,-0.483871,0.636372,-0.398511,-0.660421,0.841029,-0.536454,-0.069338,0.249977,-0.913755,-0.32017,0.19068,-0.872524,-0.449782,0.437178,-0.899228,-0.01413,-0.378735,-0.920164,0.099094,-0.40614,-0.912656,0.045412,-0.041017,-0.919858,0.390057,-0.569781,0.336894,0.749535,-0.371258,0.232795,0.898831,-0.110385,0.834498,0.539811,0.51616,0.851131,-0.09537,0.74221,0.294565,-0.601917,0.573107,-0.362072,-0.73513,0.148412,-0.847682,-0.509293,-0.402661,-0.915311,0.007752,-0.736137,-0.341441,0.584338,-0.76162,0.467391,0.448805,0.524766,-0.247353,0.814478,-0.209845,0.128788,0.969207,0.717582,-0.433637,0.544939,0.207801,-0.109653,0.971984,0.34196,-0.033052,0.939116,0.312906,0.408612,0.857387,0.23722,0.428877,0.871639,0.142369,-0.671621,0.727073,0.250282,-0.622486,0.741508,0.020692,-0.779626,-0.625843,0.048036,-0.825068,-0.562975,0.067995,-0.97702,-0.201941,0.066256,-0.95877,-0.276284,0.077334,-0.993622,-0.081729,0.083468,-0.989502,-0.117801,0.17188,0.750511,0.63805,0.196448,0.816736,0.542497,0.003906,0.99942,0.033143,0.110263,0.9935,-0.027375,0.02533,0.778069,-0.627644,-0.061281,0.784875,-0.616565,-0.061922,0.490402,-0.869259,-0.026673,0.28016,-0.959563,0.087985,-0.958037,0.272774,0.134098,-0.948241,0.287729,0.030915,-0.772729,-0.633961,0.025788,-0.577074,-0.816248,0.044954,-0.836116,-0.546678,0.02591,-0.94763,-0.318278,0.102176,-0.994629,0.016083,0.057375,-0.95468,0.29194,0.078463,0.825373,0.559069,0.112186,0.670919,0.732963,0.169469,0.975585,0.1395,0.169103,0.976836,-0.130985,0.157964,0.959075,-0.234901,0.16538,0.832362,-0.528947,-0.037751,0.198279,0.9794,0.031373,-0.022492,0.999237,-0.027345,-0.245705,0.968932,0.036103,-0.5309,0.846644,0.072298,-0.624836,-0.777367,0.049928,-0.369182,-0.928007,0.107517,-0.421277,-0.90051,0.076693,-0.100345,-0.991974,0.100192,-0.827235,0.552782,0.053133,-0.57561,0.815973,-0.110202,-0.326579,0.938688,-0.063509,-0.252846,0.965392,0.09064,0.396313,0.913602,0.079409,0.367443,0.926633,-0.178594,-0.706992,0.684255,-0.151616,-0.691977,0.705771,0.113437,-0.661397,-0.741386,0.074557,-0.624805,-0.777184,0.106082,-0.935881,-0.335917,0.104495,-0.979095,-0.174383,0.016144,-0.999481,0.026765,-0.003723,-0.986328,0.164708,0.044588,-0.233833,-0.971221,0.002899,-0.209662,-0.977752,0.004181,0.154302,-0.988006,-0.02411,0.22364,-0.974364,0.141331,0.88815,0.437239,0.132969,0.904935,0.404187,0.077944,0.985839,-0.148412,0.037904,0.982543,-0.182012,-0.016022,0.72454,-0.689016,0.005585,0.748924,-0.662618,-0.091983,-0.880551,0.464888,-0.127323,-0.907071,0.401257,-0.004944,-0.978484,-0.206244,-0.018159,-0.914609,-0.403882,-0.036805,-0.998108,-0.04886,-0.029847,-0.981262,0.190313,-0.006378,-0.815607,0.578509,-0.028901,-0.640004,0.767785,-0.040193,0.975616,0.215735,0.047365,0.929685,0.365276,0.159886,0.909574,-0.383465,0.065615,0.851772,-0.519761,0.157506,0.61037,-0.776269,0.150212,0.32606,-0.933317,-0.094729,0.504929,0.857936,-0.092135,0.361339,0.927854,-0.059908,0.179266,0.981964,-0.075594,0.019074,0.996948,0.042238,-0.922483,-0.383679,0.038148,-0.821894,-0.568316,0.067721,-0.768364,-0.636402,0.075137,-0.651753,-0.754662,0.007172,-0.235267,0.971892,-0.009583,0.00824,0.999908,-0.082247,-0.288522,-0.953917,-0.025483,-0.244453,-0.969298,-0.080447,0.183935,-0.979614,-0.038453,-0.525285,-0.850032,0.12772,0.868923,-0.478133,0.12949,0.661,-0.739097,0.105228,0.653493,-0.749535,0.115055,0.357952,-0.926603,0.092746,0.424818,-0.900479,0.150517,0.334452,-0.930296,0.08594,0.101688,-0.991089,0.183447,-0.063295,-0.980956,0.092288,0.302835,-0.948546,0.115024,-0.046693,-0.992248,0.094241,-0.370403,-0.92407,0.098636,-0.571123,-0.814875,-0.002136,0.448439,-0.893796,0.043428,-0.630726,-0.774773,0.260933,-0.135197,-0.955809,0.256691,0.493851,-0.830775,0.167913,-0.590899,-0.789056,0.079379,-0.16895,0.982391,0.149876,0.417982,0.895962,0.021149,-0.696585,0.717124,0.051881,-0.685507,-0.726188,0.093142,-0.928312,-0.359905,0.081118,-0.993011,-0.085665,0.001251,-0.219092,-0.975677,-0.00238,0.251595,-0.967803,0.155705,0.863033,0.480514,0.090701,0.991455,-0.093661,0.032563,0.758019,-0.651387,0.028169,-0.950713,0.308725,-0.0412,-0.461745,-0.886044,-0.019776,-0.746147,-0.665456,0.046663,-0.987213,-0.152287,0.086734,0.547105,0.832514,0.134922,0.946837,0.291971,0.135502,0.987732,-0.077364,0.037141,-0.18894,0.981262,0.044313,-0.690207,0.722221,-0.022706,-0.223487,-0.974425,0.009186,0.063173,-0.997955,0.074618,-0.92349,0.376263,0.112217,0.939177,-0.324503,0.079653,0.773644,-0.628559,0.044618,0.458327,-0.887631,0.259529,0.912625,-0.315775,0.237617,0.922422,-0.3043,0.156804,0.697989,-0.698691,0.176489,0.711478,-0.680135,0.096835,0.963134,-0.250893,0.080874,0.674306,-0.73397,0.100864,0.502152,-0.858852,0.117252,0.532548,-0.838191,0.053865,0.280374,-0.958342,0.262215,0.955992,0.131474,0.226081,0.954009,0.196753,0.156255,0.948607,0.275094,0.141545,0.60506,0.783471,0.117679,0.549821,0.82693,0.12772,0.492416,0.860927,0.370952,-0.052797,0.927122,0.264229,-0.16364,0.950468,0.089328,-0.313608,0.945311,0.613697,-0.181829,0.768303,0.513901,-0.384381,0.7669,0.109317,-0.662191,0.741295,-0.319742,0.903195,-0.286294,0.797113,0.547441,-0.254707,0.7369,-0.128666,-0.663594,-0.197424,0.474776,-0.857662,0.560167,0.777367,-0.286142,0.324015,0.400983,-0.856838,-0.742668,0.084597,-0.664235,-0.609821,0.750237,-0.255318,-0.065462,-0.456862,-0.887082,0.05829,0.401746,-0.913877,0.065127,0.402203,-0.913205,0.256203,-0.419263,-0.870937,-0.363445,-0.329966,-0.871212,0.051851,0.404096,-0.913236,0.047151,0.408673,-0.911435,-0.600574,-0.161046,-0.783135,0.531327,-0.324198,-0.782647,0.070925,0.405255,-0.911435,0.670431,0.727195,0.147191,0.960906,0.081912,-0.264443,0.571856,0.816706,-0.077029,0.738609,0.18363,-0.64861,0.378063,0.902371,-0.206824,0.429395,0.311289,-0.847743,0.13892,0.95706,-0.254402,0.055605,0.391675,-0.918393,-0.107425,0.971526,-0.211035,-0.326304,0.412885,-0.850307,-0.321085,0.943327,-0.083499,-0.659017,0.371746,-0.653798,-0.442701,0.884884,0.144688,-0.901852,0.339824,-0.266701,0.807428,0.267891,0.525559,0.614429,0.181585,0.767754,0.33903,0.145024,0.929502,0.023164,0.163762,0.986206,-0.285073,0.234993,0.929228,-0.538804,0.347819,0.767235,-0.699362,0.485092,0.524918,-0.917783,-0.362011,0.162999,-0.737083,-0.516495,0.435743,-0.451521,-0.643483,0.618061,-0.104587,-0.723655,0.68218,0.250893,-0.744743,0.618366,0.560839,-0.703604,0.436293,0.778039,-0.606464,0.163732,-0.763787,-0.64388,-0.04474,-0.496109,-0.832331,-0.247108,-0.417554,-0.899503,-0.128544,-0.623707,-0.763665,0.166662,-0.402326,-0.862117,0.307993,-0.293405,-0.95468,-0.049287,-0.142613,-0.989532,-0.021424,-0.133366,-0.924253,0.357707,0.142216,-0.940611,0.308237,0.011902,-0.998718,-0.049165,0.146641,-0.980804,-0.1283,0.382488,-0.908689,0.167089,0.55089,-0.833399,-0.04416,0.241066,-0.938597,-0.246773,-0.580706,-0.783898,-0.219672,-0.328043,-0.459548,-0.825312,0.734153,-0.14182,-0.663961,0.606769,-0.769951,-0.197394,0.336741,-0.915647,-0.219428,-0.799738,-0.567186,-0.196692,-0.744957,0.071383,-0.663228,0.185522,-0.532914,-0.825556,-0.069704,-0.480667,-0.874111,0.053987,0.37788,-0.924253,0.352,0.252785,-0.901181,-0.063723,-0.48265,-0.87347,-0.081423,-0.483383,-0.871578,-0.541002,0.255348,-0.801294,-0.26719,0.342021,-0.900876,-0.075991,-0.480941,-0.87344,0.59032,0.092318,-0.801843,-0.059114,-0.486496,-0.87167,-0.669362,-0.714835,0.202246,-0.960356,-0.093112,-0.262703,-0.55855,-0.829249,0.01706,-0.755058,-0.276345,-0.594562,-0.371166,-0.923429,-0.097385,-0.448622,-0.431593,-0.782586,-0.142674,-0.979797,-0.140019,-0.073428,-0.520646,-0.850581,0.094699,-0.99002,-0.104129,0.312815,-0.529862,-0.788263,0.306681,-0.951781,0.006531,0.650929,-0.457991,-0.605365,0.44731,-0.871975,0.198859,0.899686,-0.346965,-0.264779,0.706168,-0.438337,0.555986,0.54857,-0.280587,0.787591,0.296823,-0.154057,0.942412,-0.010743,-0.078036,0.996887,-0.327311,-0.064058,0.942717,-0.604694,-0.114292,0.788171,-0.800684,-0.221076,0.55678,-0.776269,0.618732,0.120548,-0.555712,0.738914,0.380963,-0.243538,0.795434,0.554918,0.112735,0.779717,0.615864,0.458876,0.694174,0.554552,0.74221,0.551775,0.380322,0.919553,0.374218,0.119694,-0.244636,0.913938,-0.323771,-0.551836,0.826777,-0.108982,-0.380871,0.919919,0.092868,-0.148778,0.966155,-0.210578,-0.013062,0.990753,-0.134983,-0.138859,0.963744,0.227699,0.137333,0.951567,0.274972,0.14182,0.983917,-0.108463,0.292276,0.946715,-0.135105,0.405683,0.88525,0.227424,0.625324,0.774865,0.092349,0.415448,0.884823,-0.210883,0.492538,0.807642,-0.324168,0.76281,0.637226,-0.109653,-0.353069,0,-0.935575,-0.322428,0.154241,-0.933927,0.053987,0,-0.998535,-0.680258,0,-0.732933,-0.625629,0.275094,-0.729972,-0.905698,0,-0.423872,-0.835231,0.354839,-0.420057,-0.998535,0,-0.053987,-0.922513,0.382672,-0.049867,-0.946135,0,0.32374,-0.875637,0.354839,0.327555,-0.755333,0,0.655324,-0.700674,0.275094,0.658284,-0.545091,0.508286,0.666677,-0.674917,0.65566,0.33842,-0.706076,0.707083,-0.038148,-0.63451,0.65566,-0.409223,-0.470016,0.508286,-0.72158,-0.235176,0.285012,-0.929197,-0.104617,0.372387,-0.922147,-0.237159,0.664113,-0.708975,-0.334117,0.856685,-0.392987,-0.382122,0.923856,-0.020661,-0.374554,0.856685,0.354656,-0.312204,0.664113,0.679281,-0.037507,0.718833,0.694143,-0.020203,0.927274,0.373821,0,1,0,0.020203,0.927274,-0.373821,0.037507,0.718833,-0.694143,0.049379,0.403088,-0.913816,0.203436,0.372387,-0.905484,0.312204,0.664113,-0.679281,0.374554,0.856685,-0.354656,0.382122,0.923856,0.020661,0.334117,0.856685,0.392987,0.237159,0.664113,0.708975,0.470016,0.508286,0.72158,0.63451,0.65566,0.409223,0.706076,0.707083,0.038148,0.674917,0.65566,-0.33842,0.545091,0.508286,-0.666677,0.333995,0.285012,-0.898404,0.421247,0.154241,-0.893704,0.700674,0.275094,-0.658284,0.875637,0.354839,-0.327555,0.922513,0.382672,0.049867,0.835231,0.354839,0.420057,0.625629,0.275094,0.729972,0.680258,0,0.732933,0.905698,0,0.423872,0.998535,0,0.053987,0.946135,0,-0.32374,0.755333,0,-0.655324,0.451888,0,-0.892056,0.421247,-0.154241,-0.893704,0.700674,-0.275094,-0.658284,0.875637,-0.354839,-0.327555,0.922513,-0.382672,0.049867,0.835231,-0.354839,0.420057,0.625629,-0.275094,0.729972,0.470016,-0.508286,0.72158,0.63451,-0.65566,0.409223,0.706046,-0.707083,0.038148,0.674917,-0.65566,-0.33842,0.545091,-0.508286,-0.666677,0.333995,-0.285012,-0.898434,0.203436,-0.372387,-0.905484,0.312204,-0.664113,-0.679281,0.374554,-0.856685,-0.354656,0.382122,-0.923856,0.020661,0.334117,-0.856685,0.392956,0.237159,-0.664113,0.708975,-0.037507,-0.718833,0.694143,-0.020203,-0.927274,0.373821,0,-1,0,0.020203,-0.927274,-0.373821,0.037507,-0.718833,-0.694113,0.049409,-0.403088,-0.913816,-0.104617,-0.372387,-0.922147,-0.237159,-0.664113,-0.708975,-0.334117,-0.856685,-0.392956,-0.382122,-0.923856,-0.020661,-0.374554,-0.856685,0.354656,-0.312204,-0.664113,0.679281,-0.545091,-0.508286,0.666677,-0.674917,-0.65566,0.33842,-0.706046,-0.707083,-0.038148,-0.63451,-0.65566,-0.409223,-0.470016,-0.508286,-0.72158,-0.235176,-0.285012,-0.929197,-0.322428,-0.154241,-0.933927,-0.625629,-0.275094,-0.729972,-0.835231,-0.354839,-0.420057,-0.922513,-0.382672,-0.049867,-0.875637,-0.354839,0.327555,-0.700674,-0.275094,0.658284,0.256874,0.127689,0.957945,0.05884,0.046632,0.997162,0.068087,0,0.99765,0.282235,0,0.959319,0.184667,0.235939,0.954039,0.032441,0.086154,0.995727,0.076601,0.308237,0.94821,-0.006989,0.112583,0.993591,-0.050874,0.333628,0.941313,-0.05356,0.12186,0.991089,-0.178381,0.308237,0.934416,-0.100131,0.112583,0.988556,-0.286477,0.235939,0.928556,-0.139622,0.086154,0.986419,-0.358684,0.127689,0.92465,-0.16599,0.046632,0.985015,-0.384014,0,0.923307,-0.175268,0,0.984497,-0.358654,-0.127659,0.92468,-0.16599,-0.046632,0.985015,-0.286416,-0.235878,0.928587,-0.139622,-0.086154,0.986419,-0.17835,-0.308176,0.934446,-0.100162,-0.112583,0.988556,-0.050874,-0.333567,0.941313,-0.05356,-0.12186,0.991089,0.076571,-0.308176,0.94821,-0.006989,-0.112583,0.993591,0.184637,-0.235878,0.95407,0.032441,-0.086154,0.995727,0.256844,-0.127659,0.957976,0.05884,-0.046632,0.997162,-0.053987,0,0.998535,-0.148686,0.039399,0.988067,-0.156499,0,0.987671,-0.126408,0.072817,0.989288,-0.093051,0.095157,0.991089,-0.053682,0.102969,0.993225,-0.014313,0.095157,0.995331,0.019013,0.072817,0.997162,0.041292,0.039399,0.998352,0.049104,0,0.998779,0.041261,-0.039399,0.998352,0.018952,-0.072756,0.997162,-0.014344,-0.095096,0.995361,-0.053682,-0.102908,0.993225,-0.09302,-0.095096,0.991089,-0.126347,-0.072787,0.989288,-0.148656,-0.039399,0.988098,0.407849,0.695425,0.591601,0.173711,0.711356,-0.68099,-0.398358,0.707358,-0.58385,-0.205603,0.695395,0.688528,0.516892,0.694388,0.500595,-0.123844,0.714835,-0.688192,-0.512558,0.715354,-0.474868,-0.020203,0.686483,0.726829,0.618366,0.7687,0.163427,-0.355815,0.767418,-0.53328,-0.596759,0.765618,-0.240059,0.327158,0.773797,0.542344,0.716849,0.68511,-0.129276,-0.562334,0.66274,-0.494491,-0.720756,0.692953,-0.016968,0.581439,0.675222,0.45381,0.69039,0.706504,-0.155461,-0.64626,0.719138,-0.255257,-0.667714,0.709616,0.22486,0.597766,0.709372,0.373363,0.651051,0.696951,-0.300607,-0.644948,0.701956,-0.302042,-0.622272,0.690664,0.368389,0.620838,0.684103,0.382763,0.646504,0.696127,-0.312021,-0.664754,0.696707,-0.269539,-0.663625,0.6863,0.297555,0.681783,0.686728,0.252113,0.626942,0.700552,-0.340739,-0.633656,0.697714,-0.334117,-0.662435,0.681631,0.310678,0.667257,0.685171,0.292032,-0.506546,0.573809,-0.643483,-0.373669,0.547014,0.749077,0.506546,0.573809,-0.643483,0.724937,0.604419,-0.330241,0.553453,0.558275,0.61803,0.373669,0.547014,0.749077,-0.634266,0.548662,-0.544633,-0.237556,0.545732,0.803552,-0.734397,0.591601,-0.332621,0.331217,0.548418,0.767785,-0.78872,0.606739,0.098636,0.471816,0.625538,0.621357,-0.772362,0.552751,0.312845,0.64388,0.535508,0.546434,-0.618519,0.467879,0.631245,0.595874,0.46202,0.656819,-0.634266,0.541124,0.55211,0.666829,0.53206,0.521714,-0.588,0.50032,0.635517,0.61568,0.505112,0.604785,0,0.732322,-0.680929,0,0.76223,0.647298,0,0.995361,0.095889,0,0.015778,-0.999847,-0.160253,0.786706,-0.596118,0.164403,0.778527,0.60564,-0.449904,0.783166,-0.429151,0.187994,0.743065,0.642232,-0.471603,0.779717,-0.411817,0.627674,0.771599,0.102939,-0.580798,0.795526,-0.172521,0.598193,0.793359,0.112796,-0.58388,0.797235,0.153081,0.582263,0.78695,0.204016,-0.553697,0.824854,-0.114109,0.561632,0.8193,-0.115268,-0.53032,0.836299,0.13892,0.529527,0.841426,0.107486,0.61269,0.54976,0.567736,0.278603,0.536912,-0.796289,0.632984,0.613147,0.472549,-0.027192,0.614032,-0.788781,0.818384,0.5562,0.144383,-0.546525,0.548418,-0.632832,0.792108,0.512192,-0.33195,-0.513504,0.46437,-0.721549,0.74926,0.583331,-0.313456,-0.703604,0.589312,-0.396954,0.674856,0.50325,-0.539689,-0.662526,0.50792,-0.550462,0.650075,0.549303,-0.524979,-0.682516,0.553056,-0.477767,0.647114,0.529099,-0.548875,-0.643727,0.525712,-0.556047,0.421247,0.604236,-0.676321,-0.421644,0.606006,-0.67449,-0.505509,-0.670064,-0.543535,0.523484,-0.668874,-0.527726,0.745598,-0.636677,-0.196661,-0.765557,-0.58919,-0.258309,-0.761711,-0.644032,-0.07065,0.742332,-0.653645,-0.14713,0.719169,-0.694784,-0.003357,-0.673116,-0.739219,0.020173,-0.784814,-0.573046,-0.235878,0.792657,-0.564776,-0.22953,0.769951,-0.638081,-0.00061,-0.753197,-0.657491,-0.019318,-0.784204,-0.555345,-0.276711,0.809503,-0.5562,-0.187872,0.743278,-0.667135,0.049196,-0.733268,-0.677297,-0.059603,-0.754112,-0.553026,-0.354137,0.785363,-0.614521,0.074343,0.700613,-0.688467,0.187353,-0.7322,-0.642109,-0.226966,-0.669393,-0.597613,-0.441267,0.682821,-0.669027,0.293466,0.613483,-0.692007,0.380413,-0.586016,-0.695059,-0.416425,-0.292673,-0.593463,-0.749718,0.430067,-0.687857,0.584674,0.346538,-0.739799,0.576708,-0.293893,-0.667745,-0.683889,-0.068056,-0.606159,-0.792413,0.24836,-0.7069,0.662252,0.166906,-0.730644,0.662008,-0.073244,-0.661885,-0.745994,-0.239967,-0.500687,-0.83166,0.225227,-0.497513,-0.837672,-0.707694,-0.706412,-0.009461,0.7051,-0.704215,-0.082858,-0.725455,-0.673849,-0.139988,0.727226,-0.663167,-0.176885,-0.719474,-0.672903,-0.17185,0.73336,-0.666372,-0.134587,-0.716575,-0.648274,-0.257363,0.724357,-0.685263,0.075106,-0.692496,-0.646382,-0.320322,0.641194,-0.706565,0.299326,-0.396863,-0.65743,-0.640492,0.391308,-0.724967,0.56679,-0.184362,-0.651418,-0.735954,0.193121,-0.738578,0.645863,-0.728446,-0.679983,0.083316,0.725883,-0.687155,0.03003,-0.76281,-0.646474,0.011353,0.76574,-0.636769,-0.090121,-0.758751,-0.650594,0.030946,0.752434,-0.65627,0.056063,-0.712333,-0.699911,-0.051546,0.735313,-0.660939,0.149876,-0.739769,-0.64214,-0.200873,0.607135,-0.712607,0.351451,-0.558428,-0.710898,-0.427442,0.492141,-0.635151,0.595233,-0.328776,-0.632527,-0.701254,0.13184,-0.729606,0.67101,0,-0.717399,0.696646,0.03119,-0.721946,0.691214,0.135563,-0.628468,-0.765893,0,-0.629658,-0.776849,-0.135563,-0.628468,-0.765893,-0.03119,-0.721946,0.691214,-0.162664,-0.624165,-0.764122,-0.012024,-0.711814,0.702231,0.012024,-0.711814,0.702231,0.162664,-0.624165,-0.764122,-0.721366,-0.691458,0.037965,0.718894,-0.695059,0.007355,-0.711661,-0.701376,0.039949,0.685995,-0.727592,0.002869,-0.661184,-0.743767,0.097812,0.667196,-0.735496,0.117618,-0.695822,-0.717215,0.037019,0.664449,-0.731376,0.153447,-0.725974,-0.667287,-0.166295,0.651112,-0.691946,0.311838,-0.639271,-0.654866,-0.403027,0.493057,-0.748405,0.443556,-0.335856,-0.668233,-0.663778,0.213385,-0.711753,0.66921,-0.161138,-0.65453,-0.738639,0.039735,-0.743919,0.667074,0.000122,-0.708396,0.705771,0.219337,-0.652791,-0.725028,-0.247902,0.185553,-0.950835,-0.481277,0.155705,-0.862606,-0.549913,0.169652,-0.817774,-0.825617,0.109287,-0.553514,-0.896969,0.144078,-0.41792,-0.975463,0.098972,-0.19657,-0.952635,0.140599,-0.269631,-0.998444,0.049623,0.025269,-0.971221,0.114597,-0.208716,-0.985961,0.030427,0.164098,-0.98056,0.108585,-0.163274,-0.989898,0.035493,0.137211,-0.998108,0.050356,-0.034883,-0.97589,-0.014313,0.217689,0.136784,-0.113315,0.984069,0.281716,-0.090976,0.955138,0.570727,-0.080233,0.817164,0.584063,-0.063784,0.809168,0.827723,-0.056612,0.558214,0.897702,-0.013306,0.440382,0.997772,0.050874,0.042634,0.974914,0.122166,-0.185919,0.989044,0.045503,0.140385,0.997894,0.048128,0.043428,0.984497,0.112125,-0.134678,0.957884,0.117038,-0.262154,0.990539,0.061281,-0.122562,0.95706,0.064943,-0.282479,-0.962859,0.027741,-0.268532,-0.710593,0.097385,-0.696799,-0.999512,-0.006836,-0.030427,-0.978362,0.047029,-0.201453,-0.997162,0.032197,-0.067995,-0.926786,0.11536,-0.357402,-0.99057,0.041597,-0.130406,-0.909513,0.122501,-0.397137,-0.931578,0.11298,-0.345531,-0.884274,0.156133,-0.440077,-0.76574,0.116764,-0.632405,-0.775201,0.149358,-0.613758,-0.349742,0.143315,-0.925779,-0.297983,0.170934,-0.939116,-0.056429,0.151402,-0.986847,-0.021271,0.174322,-0.984436,-0.255013,0.138401,-0.956969,0.729972,0.068728,-0.679983,0.961333,0.011322,-0.275063,0.997497,0.003388,-0.070589,0.939695,0.129948,-0.316324,0.997772,0.051759,-0.041627,0.999054,0.031281,0.02942,0.980071,-0.006104,0.198523,0.940153,-0.012482,0.340434,0.867519,-0.059786,0.493759,0.642781,-0.076205,0.76223,0.541642,-0.114658,0.832728,0.402509,-0.100436,0.909879,0.268563,-0.132664,0.95407,0.246406,0.133641,-0.959899,0.998077,-0.023255,0.057314,0.989349,-0.007172,0.145299,0.997864,-0.004517,0.064821,0.975738,-0.005097,0.218757,0.97879,0.030091,0.202521,0.965545,-0.023408,0.259163,0.95352,-0.006378,0.301248,0.894192,-0.057222,0.443953,0.707266,-0.087771,0.701468,0.283792,-0.132206,0.949705,0.023438,-0.136723,0.990326,-0.085452,-0.109378,0.990295,0.085452,-0.109378,0.990295,0.092654,-0.126621,0.98761,0,-0.092898,0.995666,0.124729,-0.092013,0.987884,-0.124729,-0.092013,0.987884,-0.995056,-0.026215,0.095706,-0.989929,-0.013794,0.140812,-0.978393,-0.014191,0.206214,-0.995727,-0.001556,0.092288,-0.976348,0.083316,-0.199377,-0.848262,0.086978,-0.522324,-0.480575,0.133671,-0.866695,-0.281533,0.170843,-0.944212,-0.247139,0.146733,-0.957793,0.387951,0.147435,-0.909787,0.281533,0.170843,-0.944212,0.275277,0.190527,-0.942259,0,0.195044,-0.980773,-0.275277,0.190527,-0.942259,-0.255318,0.074129,-0.963988,-0.609302,0.058535,-0.790735,-0.574084,0.113895,-0.810816,-0.258492,0.151097,-0.9541,-0.499435,0.069948,-0.863491,-0.876247,0.03769,-0.480331,-0.877743,0.064974,-0.474654,-0.544328,0.138218,-0.827387,-0.903775,0.037233,-0.426313,-0.99942,0.002411,-0.033326,-0.996399,0.005707,-0.084567,-0.905789,0.074129,-0.417127,-0.982818,0.021393,-0.183203,-0.950346,-0.025666,0.310068,-0.973296,-0.041597,0.225715,-0.984191,0.047029,-0.170598,-0.98648,0.046724,-0.156957,-0.885495,-0.014832,0.4644,-0.924619,-0.068148,0.374706,-0.987945,0.034425,-0.150731,-0.99411,0.041688,-0.099857,-0.880612,-0.025513,0.473098,-0.930601,-0.086306,0.355632,-0.994293,0.023804,-0.103916,-0.998657,-0.002533,0.051546,-0.803552,-0.058535,0.592334,-0.889584,-0.099734,0.445692,-0.999786,0.013092,0.015748,-0.068453,0.014252,0.997528,0.26429,0.012177,0.964354,0.245796,0.445723,0.860744,0.016175,0.385235,0.922666,0.312449,-0.008911,0.949858,0.587695,0.008759,0.809015,0.5103,0.268349,0.817011,0.444685,0.207617,0.871273,0.632557,0.017121,0.774285,0.882839,0.022095,0.469131,0.789605,0.437696,0.430006,0.683126,0.336741,0.648,0.885433,0.026826,0.463942,0.999573,0.021912,-0.018983,0.747246,0.658895,-0.086184,0.813379,0.537004,0.22364,0.961486,0.027802,0.273415,0.983154,0.042451,-0.177648,0.88757,0.453536,-0.080386,0.841975,0.496231,0.211676,0.999573,0.024232,0.015381,0.89874,0.039003,-0.436689,0.775811,0.555193,-0.299753,0.774529,0.631703,-0.031953,0.999786,0.020508,9.2e-05,0.855159,0.034425,-0.517197,0.729972,0.593036,-0.339702,0.725486,0.684439,-0.071932,-0.937529,-0.002014,-0.347819,-0.843074,0.003021,-0.537767,-0.782311,0.008484,-0.622791,-0.946196,-0.034486,-0.321635,-0.97647,-0.004425,-0.215583,-0.880703,0.023591,-0.473067,-0.917692,0.044923,-0.394696,-0.986389,-0.034974,-0.160619,-0.967956,0.034364,-0.248634,-0.806726,0.061739,-0.587634,-0.856014,0.054201,-0.514054,-0.977813,-0.018067,-0.208655,-0.954833,0.043489,-0.293863,-0.793908,0.064882,-0.604541,-0.836634,0.065981,-0.543748,-0.965819,0.005493,-0.259133,-0.874264,0.030671,-0.484451,-0.794336,0.040742,-0.606067,-0.837458,0.072695,-0.541612,-0.889676,0.040712,-0.454756,-0.697256,0.052705,-0.714835,-0.670461,0.054628,-0.739921,-0.697409,0.101718,-0.709403,-0.709128,0.084658,-0.699973,-0.246437,0.067232,-0.966796,-0.124577,0.069216,-0.989776,-0.183691,0.133671,-0.973815,-0.273873,0.114933,-0.954863,0.050478,0.069369,-0.996307,0.131443,0.069979,-0.98883,0.084078,0.135929,-0.987121,0.018159,0.120579,-0.992523,-0.536729,0.026978,-0.843287,-0.372326,0.070864,-0.925352,0.8605,0.025727,-0.508744,0.910367,0.055483,-0.410016,0.824458,0.503098,-0.259102,0.629597,0.552507,-0.546159,0.942686,0.052705,-0.329386,0.846889,0.511277,-0.146062,0.866512,0.035859,-0.497787,0.958312,0.057253,-0.279855,0.858394,0.497177,-0.126194,0.741325,0.578967,-0.339427,0.9841,0.060396,-0.166967,0.874905,0.479995,-0.063875,0.997925,0.064119,0.00531,0.916471,0.390637,0.086398,0.995636,0.033815,0.086947,0.937559,0.052187,0.343791,0.866543,0.326609,0.377361,0.89877,0.400739,0.177679,0.757134,0.022095,0.652852,0.642811,0.04059,0.764916,0.560198,0.37608,0.738029,0.670186,0.359569,0.64922,0.566668,0.01886,0.823695,0.376965,0.039186,0.925382,0.332011,0.338176,0.880551,0.465407,0.399274,0.789911,0.145268,0.062197,-0.987426,0.354106,0.466872,-0.810297,0.948271,0.0459,0.314097,0.848659,0.025941,0.528245,0.792077,0.545976,0.272896,0.871181,0.468184,0.147557,0.950743,0.042604,0.306986,0.861904,0.477462,0.170537,0.891873,0.043397,0.450148,0.844905,0.028047,0.534104,0.78872,0.497543,0.361003,0.845454,0.45439,0.280526,0.889096,0.041292,0.455824,0.763207,0.026704,0.645589,0.798212,0.407483,0.443587,0.851314,0.424329,0.308481,0.764458,0.030885,0.64391,0.808649,0.338664,0.481002,0.538102,0.008271,0.84283,0.624317,0.273019,0.731864,0.074282,0.030824,0.996734,0.204321,0.364757,0.908383,-0.085971,-0.008698,0.996246,-0.20191,-0.054079,0.977905,-0.175542,-0.01294,0.984375,-0.02234,0.258431,0.965758,0.175542,-0.01294,0.984375,0.20191,-0.054079,0.977905,0.178777,-0.006836,0.983856,0.183721,0.030152,0.982482,0,-0.145726,0.989319,0,-0.074526,0.997192,0,0.995331,0.0965,0,-0.147343,0.989074,-0.951048,-0.053407,0.304331,-0.96881,-0.116489,0.218635,-0.943724,-0.042756,0.327891,-0.956816,-0.112796,0.2678,-0.926939,-0.019013,0.374676,-0.943114,-0.087954,0.320536,-0.970031,-0.017243,0.242347,-0.981597,-0.060091,0.181158,-0.99469,0.003235,-0.102847,-0.989868,-0.001526,-0.141911,-0.895291,0.028077,-0.444533,-0.875057,0.047029,-0.481674,-0.568133,0.058626,-0.820826,-0.540757,0.10184,-0.834956,0.634144,0.079592,-0.769066,0.639241,0.048067,-0.767479,0,0.058351,-0.998291,0,0.12888,-0.991638,-0.639241,0.048067,-0.767479,-0.634144,0.079592,-0.769066,-0.387829,0.061495,-0.919645,-0.415052,0.056154,-0.908048,-0.351695,0.101993,-0.930509,-0.379925,0.117771,-0.917478,0.563341,0.076052,-0.822687,0.648488,0.037049,-0.760308,0.387829,0.061495,-0.919645,0.379925,0.117771,-0.917478,0,0.079684,-0.996796,0,0.155919,-0.987762,0.352031,-0.381146,0.854854,-0.039888,-0.309397,0.950072,0.575793,-0.404553,0.71044,0.171117,-0.40907,0.896298,0.870846,-0.284005,0.401166,0.644704,-0.260598,0.718589,0.930174,-0.364177,0.045686,0.781457,-0.350444,0.51619,0.895169,-0.437025,-0.087313,0.853847,-0.413404,0.316172,0.87289,-0.456557,-0.171972,0.841273,-0.445631,0.305948,0.85229,-0.471206,-0.226936,0.85464,-0.48088,0.195746,0.839625,-0.464156,-0.282083,0.865047,-0.464003,0.19071,-0.393048,0.020417,-0.919279,0.036958,0.02002,-0.999115,-0.55562,0.02002,-0.831172,-0.257454,0.019593,-0.966063,-0.867641,0.055879,-0.493973,-0.728996,0.05295,-0.682455,-0.993286,-0.007599,-0.115207,-0.875149,-0.00705,-0.483779,-0.980224,0.033784,0.194861,-0.95996,0.054109,-0.274758,-0.934477,0.049532,0.35255,-0.968719,0.060121,-0.24073,-0.95175,0.029603,0.305368,-0.976409,0.030824,-0.21366,-0.960967,0.034822,0.274361,-0.941191,0.031678,-0.336314,-0.221809,-0.109195,0.968932,0.224128,-0.165746,0.960356,0.221809,-0.109195,0.968932,-0.071566,-0.443922,0.893185,0.381085,-0.263131,0.886258,0.580798,-0.368664,0.72573,0.732475,-0.421674,0.53444,0.72573,-0.486404,0.486496,0.743065,-0.532426,0.405377,0.718406,-0.529313,0.451308,1,0,0,0,0,1,0.226753,-0.503952,0.833399,0.450514,-0.337687,0.826411,0.774957,-0.454817,0.438795,0.830042,-0.499313,0.24839,0.786248,-0.615528,0.053652,0.756676,-0.653615,0.012543,0.743004,-0.669179,0.009949,0.627552,0.012635,-0.778466,0,0.016266,-0.999847,-0.627552,0.012635,-0.778466,-0.388043,0.006561,-0.921598,0.634602,0.012574,-0.772729,0.388043,0.006561,-0.921598,-0.609302,0.006623,-0.792871,-0.860164,0.020936,-0.509568,-0.999786,-0.014283,-0.014283,-0.960875,-0.003571,0.276894,-0.877773,0.034913,0.477737,-0.867946,0.021393,0.49617,-0.807215,0.01294,0.590075,0,0,-1,-0.259621,0,-0.965697,-0.501816,0,-0.864956,-0.916959,-0.010102,-0.398785,-0.978271,-0.018189,-0.206458,-0.995453,0.025971,-0.091586,-0.999084,0.024018,-0.034974,-0.997009,0.004975,0.076968,0.515305,-0.44496,0.732414,0.697439,-0.40025,0.594409,0.916715,-0.373638,0.141301,0.894314,-0.414624,-0.168035,0.799799,-0.508255,-0.319346,0.750359,-0.526353,-0.399823,0.731437,-0.528733,-0.430586,0.529283,-0.421003,-0.736595,0.743736,-0.514512,-0.42674,0.128758,0.00647,-0.991638,-0.127567,0.006012,-0.991791,-0.703909,0.016846,-0.710074,-0.784783,-0.014252,-0.619587,-0.835475,0.028718,-0.548753,-0.834284,0.035646,-0.550127,-0.886288,0.013703,-0.462874,-0.8623,0.009003,-0.506241,-0.530198,0.002503,-0.847865,0.361248,0.020539,0.932218,-0.052614,0.020081,0.998383,0.623432,0.020295,0.781579,0.187902,0.020478,0.981964,0.784539,0.074679,0.615528,0.781549,0.071871,0.619678,0.996124,0.016968,0.086123,0.832667,0.016968,0.553484,0.998321,0.022523,-0.05295,0.952879,0.021088,0.302561,0.986236,0.023225,-0.163671,0.948302,0.026246,0.316233,0.965178,0.029145,-0.259865,0.979034,0.01175,0.203192,0.95407,0.032136,-0.29783,0.976775,0.038545,0.210639,0.008271,0.020081,-0.999756,-0.358898,0.020417,-0.933134,-0.283151,0.019501,-0.958861,-0.531083,0.020051,-0.847041,-0.819178,0.07947,-0.567949,-0.7875,0.088015,-0.609973,-0.881039,-0.034425,-0.471755,-0.993225,-0.03531,-0.110691,-0.977966,0.042695,-0.20423,-0.993652,0.027131,0.109012,-0.982391,0.046663,-0.180822,-0.949431,0.043092,0.310953,-0.980926,0.029298,-0.192114,-0.960967,0.016816,0.27604,-0.955626,0.031922,-0.292764,-0.968535,0.036897,0.24601,-0.232215,0.006439,0.972625,0.226936,0.01294,0.973815,0.232215,0.006439,0.972625,-0.060701,0.006439,0.998108,0.450453,0.043001,0.89172,0.635731,0.014344,0.771752,0.854122,-0.013184,0.519883,0.844935,0.014283,0.534654,0.875057,-0.007904,0.483902,0.855708,0.023286,0.516861,0,0.995361,0.096164,0,0,0.999969,0.261971,0,0.965056,0.519089,0,0.854701,0.873501,0.004761,0.48677,0.978607,-0.014466,0.205084,0.99411,-0.010132,0.10773,0.997894,-0.012879,0.063234,0.999664,0.020142,0.014313,0.569109,0.013092,-0.822138,0.544816,0.013245,-0.838435,0,0.016022,-0.999847,-0.544816,0.013245,-0.838435,-0.569109,0.013092,-0.822138,-0.364391,0.006653,-0.931211,0.576006,0.013031,-0.817316,0.364391,0.006653,-0.931211,-0.591754,0.006745,-0.806055,-0.804956,0.03357,-0.592334,-0.999207,-0.037263,0.013489,-0.981262,-0.013245,0.192175,-0.875301,0.027863,0.482742,-0.856014,0.000824,0.516923,-0.824732,0.018891,0.565172,-0.92877,-0.02179,-0.369976,-0.960356,-0.036866,-0.276284,-0.999969,0.007416,0.00119,-0.99881,-0.000214,0.048219,-0.997009,0.0141,0.075808,0.559343,0.006561,0.828883,0.759301,0.006561,0.650685,0.9682,0.047334,0.245521,0.985229,0.009888,-0.170904,0.955016,-0.008545,-0.296396,0.907315,0.002564,-0.420423,0.872677,0.023774,-0.487686,0.528672,0,-0.848781,0.882321,0.009491,-0.470504,0.107517,0.006592,-0.994171,-0.149907,0.006012,-0.988678,-0.771569,0.024445,-0.635639,-0.767266,-0.036927,-0.640248,-0.90289,0.011292,-0.42967,-0.886013,0.019807,-0.463179,-0.900937,0.020295,-0.433424,-0.530045,0,-0.847926,-0.87756,0.009339,-0.479324,0.40788,-0.695425,0.591571,-0.205603,-0.695395,0.688528,-0.398389,-0.707358,-0.58385,0.173711,-0.711356,-0.68099,0.516923,-0.694388,0.500595,-0.020203,-0.686483,0.726829,-0.512558,-0.715354,-0.474868,-0.123844,-0.714866,-0.688192,0.618366,-0.7687,0.163396,0.327189,-0.773797,0.542344,-0.596759,-0.765618,-0.240089,-0.355815,-0.767418,-0.533311,0.716849,-0.68511,-0.129276,0.581439,-0.675222,0.45381,-0.720756,-0.692953,-0.016938,-0.562334,-0.66274,-0.494491,0.69042,-0.706473,-0.155461,0.597766,-0.709372,0.373363,-0.667684,-0.709616,0.224891,-0.646229,-0.719138,-0.255257,0.651051,-0.696951,-0.300577,0.620838,-0.684103,0.382763,-0.622272,-0.690664,0.368389,-0.644948,-0.701987,-0.302011,0.646535,-0.696127,-0.312021,0.681783,-0.686728,0.252113,-0.663625,-0.6863,0.297525,-0.664754,-0.696707,-0.269539,0.626942,-0.700552,-0.340739,0.667226,-0.685171,0.292032,-0.662435,-0.681631,0.310678,-0.633656,-0.697714,-0.334117,-0.375469,-0.546037,0.748894,-0.50737,-0.573229,-0.643391,0.50737,-0.573229,-0.643391,0.375469,-0.546037,0.748894,0.553453,-0.558275,0.61803,0.724967,-0.604419,-0.33021,-0.237587,-0.545701,0.803583,-0.634236,-0.548692,-0.544633,0.33076,-0.548479,0.767937,-0.734611,-0.591632,-0.332041,0.471969,-0.625446,0.621296,-0.788812,-0.606677,0.098453,0.643941,-0.535478,0.546403,-0.772423,-0.55269,0.312815,0.595996,-0.462081,0.656697,-0.618732,-0.467849,0.631062,0.666738,-0.53206,0.521867,-0.634083,-0.541246,0.552202,0.615864,-0.50502,0.604663,-0.588,-0.500412,0.635426,0,-0.732994,-0.680227,0,-0.763604,0.64565,0,0.995209,0.097476,0,0.015778,0.999847,-0.160192,-0.786706,-0.596149,0.164403,-0.778558,0.605609,0.187109,-0.742668,0.642933,-0.45088,-0.78283,-0.428755,0.627491,-0.771783,0.102847,-0.471328,-0.77987,-0.411786,0.598315,-0.793298,0.112491,-0.580645,-0.795556,-0.172826,0.582171,-0.787133,0.20365,-0.583728,-0.797449,0.152562,0.561785,-0.819147,-0.115421,-0.554094,-0.82458,-0.114078,0.529283,-0.841609,0.107364,-0.53029,-0.836299,0.139042,0.278634,-0.536882,-0.796289,0.61272,-0.54973,0.567736,-0.027223,-0.614032,-0.788781,0.632923,-0.613056,0.472762,-0.54677,-0.548387,-0.632679,0.818354,-0.556169,0.144658,-0.513474,-0.464339,-0.72158,0.792047,-0.512223,-0.332041,-0.703604,-0.589373,-0.396924,0.749321,-0.58327,-0.313395,-0.662313,-0.50795,-0.550707,0.674642,-0.50325,-0.539964,-0.682607,-0.553026,-0.477645,0.650166,-0.549303,-0.524888,-0.643727,-0.525712,-0.556078,0.647114,-0.529069,-0.548875,-0.421644,-0.606006,-0.67449,0.421247,-0.604236,-0.676321,-0.505509,0.670064,-0.543535,-0.765557,0.58919,-0.258309,0.745598,0.636677,-0.196661,0.523515,0.668905,-0.527726,-0.761711,0.644032,-0.07065,-0.673116,0.739219,0.020173,0.719169,0.694784,-0.003357,0.742332,0.653645,-0.14713,-0.784814,0.573046,-0.235878,-0.753197,0.657491,-0.019318,0.769951,0.638081,-0.00061,0.792657,0.564776,-0.22953,-0.784204,0.555345,-0.276711,-0.733268,0.677297,-0.059603,0.743278,0.667135,0.049196,0.809503,0.5562,-0.187872,-0.754112,0.553026,-0.354137,-0.7322,0.642109,-0.226966,0.700613,0.688467,0.187353,0.785363,0.614521,0.074343,-0.669393,0.597613,-0.441267,-0.586016,0.695059,-0.416395,0.613483,0.692007,0.380413,0.682821,0.669027,0.293466,-0.292673,0.593463,-0.749718,-0.293863,0.667745,-0.683889,0.346538,0.739799,0.576708,0.430067,0.687857,0.584674,-0.068087,0.606159,-0.792413,-0.073244,0.661916,-0.745964,0.166906,0.730644,0.662008,0.24836,0.7069,0.662252,-0.239967,0.500687,-0.83166,0.225227,0.497513,-0.837672,-0.707694,0.706412,-0.009461,0.7051,0.704215,-0.082858,-0.725455,0.673849,-0.139988,0.727226,0.663198,-0.176885,-0.719474,0.672903,-0.17185,0.73336,0.666372,-0.134587,-0.716575,0.648274,-0.257363,0.724357,0.685263,0.075106,-0.692465,0.646382,-0.320322,0.641194,0.706565,0.299326,-0.396863,0.65743,-0.640492,0.391278,0.724967,0.56679,-0.184332,0.651418,-0.735954,0.193121,0.738578,0.645894,-0.728446,0.679983,0.083316,0.725883,0.687155,0.03003,-0.76281,0.646474,0.011353,0.76574,0.636769,-0.090121,-0.758751,0.650594,0.030946,0.752434,0.65627,0.056063,-0.712333,0.699911,-0.051546,0.735313,0.660939,0.149876,-0.739769,0.64214,-0.200873,0.607135,0.712607,0.351482,-0.558428,0.710898,-0.427442,0.492141,0.635151,0.595264,-0.328776,0.632527,-0.701254,0.13184,0.729606,0.67101,0,0.717399,0.696646,0,0.629566,-0.77691,0.134098,0.628529,-0.766106,0.030946,0.721915,0.691244,-0.134098,0.628529,-0.766106,-0.030946,0.721915,0.691244,-0.16306,0.624165,-0.764061,-0.012085,0.711814,0.702231,0.16306,0.624165,-0.764061,0.012085,0.711814,0.702231,-0.721366,0.691458,0.037965,0.718894,0.695059,0.007355,-0.711661,0.701376,0.039949,0.685995,0.727592,0.002869,-0.661184,0.743767,0.097812,0.667196,0.735496,0.117618,-0.695822,0.717215,0.037019,0.664449,0.731376,0.153447,-0.725974,0.667287,-0.166295,0.651112,0.691946,0.311808,-0.639271,0.654866,-0.403027,0.493057,0.748405,0.443556,-0.335856,0.668233,-0.663778,0.213385,0.711753,0.66921,-0.161138,0.65453,-0.738639,0.039735,0.743889,0.667074,0.219367,0.652791,-0.725059,0.000122,0.708396,0.705771,-0.247902,-0.185553,-0.950835,-0.481277,-0.155705,-0.862606,-0.549944,-0.169652,-0.817774,-0.825617,-0.109287,-0.553514,-0.896969,-0.144078,-0.41792,-0.975463,-0.098972,-0.196539,-0.952635,-0.140599,-0.269631,-0.998444,-0.049623,0.025269,-0.971221,-0.114597,-0.208716,-0.985961,-0.030427,0.164098,-0.98056,-0.108585,-0.163274,-0.989898,-0.035493,0.137211,-0.998108,-0.050356,-0.034883,-0.97589,0.014313,0.217689,0.136784,0.113315,0.984069,0.281716,0.090976,0.955138,0.570727,0.080233,0.817164,0.584033,0.063784,0.809168,0.827723,0.056612,0.558214,0.897702,0.013306,0.440382,0.997772,-0.050874,0.042634,0.974914,-0.122166,-0.185888,0.989044,-0.045503,0.140416,0.997894,-0.048128,0.043428,0.984497,-0.112125,-0.134678,0.957884,-0.117038,-0.262154,0.990539,-0.061281,-0.122562,0.95706,-0.064943,-0.282449,-0.962859,-0.027741,-0.268532,-0.710593,-0.097385,-0.696799,-0.999512,0.006836,-0.030427,-0.978362,-0.047029,-0.201453,-0.997162,-0.032197,-0.067995,-0.926786,-0.11536,-0.357402,-0.99057,-0.041597,-0.130406,-0.909513,-0.122501,-0.397137,-0.931578,-0.11298,-0.345531,-0.884274,-0.156133,-0.440077,-0.76574,-0.116764,-0.632405,-0.775201,-0.149358,-0.613758,-0.349742,-0.143315,-0.92581,-0.297983,-0.170934,-0.939116,-0.056429,-0.151402,-0.986847,-0.021271,-0.174322,-0.984436,-0.255013,-0.138401,-0.956969,0.729972,-0.068728,-0.679983,0.961333,-0.011322,-0.275063,0.997497,-0.003388,-0.070589,0.939695,-0.129948,-0.316324,0.997772,-0.051759,-0.041627,0.999054,-0.031281,0.02942,0.980071,0.006104,0.198523,0.940153,0.012482,0.340434,0.867519,0.059786,0.493759,0.642781,0.076205,0.76223,0.541642,0.114658,0.832728,0.402478,0.100436,0.909879,0.268563,0.132664,0.95407,0.246406,-0.133641,-0.959899,0.998077,0.023255,0.057314,0.989349,0.007172,0.145299,0.997864,0.004517,0.064821,0.975738,0.005097,0.218757,0.97879,-0.030091,0.202521,0.965545,0.023408,0.259163,0.95352,0.006378,0.301248,0.894192,0.057222,0.443953,0.707266,0.087802,0.701468,0.283792,0.132206,0.949705,0.023438,0.136723,0.990326,-0.085788,0.109378,0.990265,0.092654,0.126621,0.98761,0.085788,0.109378,0.990265,0.12363,0.092044,0.988037,0,0.092929,0.995666,-0.12363,0.092044,0.988037,-0.995056,0.026215,0.095706,-0.989929,0.013794,0.140812,-0.978393,0.014191,0.206214,-0.995727,0.001556,0.092288,-0.976348,-0.083316,-0.199377,-0.848262,-0.086978,-0.522324,-0.480575,-0.133671,-0.866695,-0.282327,-0.170782,-0.943968,-0.247139,-0.146733,-0.957793,0.282327,-0.170782,-0.943968,0.387982,-0.147435,-0.909787,0,-0.195013,-0.980773,0.272317,-0.19068,-0.943114,-0.272317,-0.19068,-0.943114,-0.255257,-0.074099,-0.964019,-0.258431,-0.151067,-0.954131,-0.574053,-0.113865,-0.810816,-0.609272,-0.058504,-0.790796,-0.499405,-0.069918,-0.863521,-0.544298,-0.138188,-0.827387,-0.877743,-0.064974,-0.474654,-0.876247,-0.03769,-0.480361,-0.903775,-0.037233,-0.426374,-0.905789,-0.074129,-0.417158,-0.996399,-0.005707,-0.084567,-0.99942,-0.002411,-0.033296,-0.982818,-0.021363,-0.183233,-0.984191,-0.047029,-0.170629,-0.973296,0.041566,0.225715,-0.950346,0.025666,0.310038,-0.98648,-0.046724,-0.156987,-0.987945,-0.034425,-0.150761,-0.924619,0.068117,0.374676,-0.885495,0.014801,0.4644,-0.99411,-0.041688,-0.099857,-0.994293,-0.023835,-0.103916,-0.930601,0.086276,0.355632,-0.880612,0.025513,0.473098,-0.998657,0.002533,0.051546,-0.999786,-0.013092,0.015778,-0.889584,0.099704,0.445692,-0.803522,0.058535,0.592334,-0.068422,-0.0141,0.997528,0.016144,-0.385144,0.922697,0.245827,-0.445631,0.860775,0.264321,-0.012024,0.964324,0.312449,0.009095,0.949858,0.444685,-0.207526,0.871303,0.5103,-0.268288,0.817042,0.587664,-0.008606,0.809046,0.632557,-0.016938,0.774285,0.683157,-0.33668,0.648,0.789636,-0.437605,0.430036,0.882839,-0.021943,0.469131,0.885464,-0.026704,0.463912,0.813379,-0.536943,0.22367,0.747307,-0.658834,-0.086184,0.999573,-0.02179,-0.018983,0.961455,-0.02765,0.273446,0.842006,-0.496139,0.211707,0.887631,-0.453475,-0.080386,0.983154,-0.042299,-0.177648,0.999573,-0.02414,0.015381,0.77456,-0.631642,-0.031953,0.775842,-0.555132,-0.299783,0.89874,-0.03885,-0.436689,0.999786,-0.020417,9.2e-05,0.725516,-0.684408,-0.071932,0.730003,-0.593005,-0.339732,0.855159,-0.034303,-0.517197,-0.937529,0.002014,-0.347819,-0.946226,0.034516,-0.321635,-0.782311,-0.008454,-0.622791,-0.843074,-0.003021,-0.537736,-0.97647,0.004425,-0.215583,-0.986389,0.034974,-0.160588,-0.917692,-0.044893,-0.394696,-0.880703,-0.023591,-0.473067,-0.967956,-0.034394,-0.248665,-0.977813,0.018067,-0.208655,-0.856014,-0.054201,-0.514084,-0.806726,-0.061739,-0.587634,-0.954833,-0.043489,-0.293832,-0.965819,-0.005493,-0.259133,-0.836634,-0.065981,-0.543748,-0.793908,-0.064882,-0.604541,-0.874264,-0.030641,-0.484451,-0.889676,-0.040712,-0.454756,-0.837458,-0.072695,-0.541612,-0.794336,-0.040712,-0.606067,-0.697256,-0.052705,-0.714835,-0.709128,-0.084628,-0.699973,-0.697378,-0.101688,-0.709433,-0.6704,-0.054628,-0.739952,-0.246437,-0.067232,-0.966796,-0.273873,-0.114902,-0.954863,-0.183691,-0.133671,-0.973846,-0.124546,-0.069185,-0.989776,0.050478,-0.069338,-0.996307,0.018159,-0.120579,-0.992523,0.084078,-0.135899,-0.987121,0.131474,-0.069918,-0.98883,-0.372356,-0.070864,-0.925352,-0.536729,-0.026978,-0.843287,0.8605,-0.025605,-0.508744,0.629627,-0.552446,-0.54619,0.824488,-0.503037,-0.259102,0.910367,-0.05533,-0.410016,0.846919,-0.511246,-0.146092,0.942717,-0.052553,-0.329386,0.866543,-0.035707,-0.497818,0.741356,-0.578906,-0.339427,0.858425,-0.497147,-0.126225,0.958342,-0.0571,-0.279824,0.874935,-0.479934,-0.063875,0.9841,-0.060244,-0.166936,0.916501,-0.390545,0.086398,0.997925,-0.063936,0.005341,0.995636,-0.033631,0.086947,0.898801,-0.400647,0.177679,0.866573,-0.326548,0.377361,0.93759,-0.051973,0.343791,0.757134,-0.021943,0.652852,0.670217,-0.359478,0.649251,0.560228,-0.376019,0.738029,0.642811,-0.040407,0.764946,0.566698,-0.018708,0.823695,0.465438,-0.399182,0.789911,0.332011,-0.338115,0.880551,0.376934,-0.039003,0.925382,0.145268,-0.062166,-0.987426,0.354137,-0.466842,-0.810297,0.948271,-0.045747,0.314066,0.871212,-0.468154,0.147557,0.792108,-0.545946,0.272927,0.848689,-0.025788,0.528245,0.950743,-0.042451,0.306955,0.861934,-0.477432,0.170568,0.891903,-0.043245,0.450117,0.845485,-0.454329,0.280526,0.788751,-0.497482,0.361034,0.844935,-0.027894,0.534104,0.889096,-0.041108,0.455794,0.851344,-0.424268,0.308481,0.798242,-0.407422,0.443617,0.763176,-0.026521,0.645619,0.764458,-0.030702,0.64391,0.808649,-0.338603,0.481033,0.538102,-0.008087,0.84283,0.624348,-0.272958,0.731864,0.074282,-0.030641,0.996734,0.204321,-0.364696,0.908414,-0.085971,0.00882,0.996246,-0.02234,-0.258339,0.965789,-0.177038,0.013001,0.9841,-0.204596,0.05414,0.977325,0.177038,0.013001,0.9841,0.183721,-0.030122,0.982513,0.178777,0.006989,0.983856,0.204596,0.05414,0.977325,0,0.145787,0.989288,0,0.147343,0.989074,0,0.99527,0.096866,0,0.074648,0.997192,-0.96881,0.116489,0.218635,-0.951048,0.053377,0.304331,-0.956816,0.112766,0.2678,-0.943724,0.042726,0.327891,-0.943114,0.087924,0.320536,-0.926939,0.018983,0.374676,-0.981597,0.060091,0.181158,-0.970031,0.017212,0.242317,-0.989868,0.001526,-0.141881,-0.994659,-0.003235,-0.102847,-0.875057,-0.047029,-0.481674,-0.895291,-0.028077,-0.444563,-0.540757,-0.10184,-0.834956,-0.568133,-0.058596,-0.820826,-0.632069,0.08002,0.770745,-0.637135,0.04828,0.769219,0,0.058473,0.99826,0,-0.33903,-0.940764,0.637135,0.04828,0.769219,0.632069,0.08002,0.770745,-0.389141,-0.061434,-0.919095,-0.381146,-0.117649,-0.91699,-0.351695,-0.102023,-0.930509,-0.415052,-0.056124,-0.908048,0.563341,-0.076083,-0.822687,0.381146,-0.117649,-0.91699,0.389141,-0.061434,-0.919095,0.648457,-0.037049,-0.760308,0,-0.155858,-0.987762,0,-0.079592,-0.996796,-0.039888,0.309458,0.950041,0.352031,0.381207,0.854823,0.171087,0.409131,0.896268,0.575762,0.404614,0.71044,0.644704,0.260659,0.718589,0.870815,0.284066,0.401166,0.781457,0.350505,0.51616,0.930174,0.364238,0.045686,0.853847,0.413465,0.316141,0.895138,0.437086,-0.087313,0.841273,0.445692,0.305948,0.87289,0.456587,-0.171972,0.85461,0.480911,0.195746,0.85226,0.471267,-0.226936,0.865017,0.464034,0.19071,0.839595,0.464187,-0.282083,-0.393048,-0.020386,-0.919279,0.036958,-0.01999,-0.999115,-0.55562,-0.02002,-0.831172,-0.257454,-0.019593,-0.966063,-0.867641,-0.05591,-0.493973,-0.728996,-0.05298,-0.682455,-0.993286,0.007599,-0.115207,-0.875149,0.00705,-0.483779,-0.980224,-0.033784,0.194861,-0.95996,-0.054109,-0.274758,-0.934477,-0.049562,0.35255,-0.968719,-0.060121,-0.24073,-0.95175,-0.029603,0.305368,-0.976409,-0.030824,-0.21366,-0.960967,-0.034822,0.274361,-0.941191,-0.031678,-0.336314,-0.224525,0.109226,0.968291,0.224128,0.165777,0.960326,0.224525,0.109226,0.968291,-0.071566,0.444014,0.893155,0.381085,0.263222,0.886258,0.580798,0.368755,0.7257,0.732444,0.421766,0.53441,0.7257,0.486465,0.486465,0.743034,0.532487,0.405347,0.718375,0.529374,0.451247,0.226783,0.504044,0.833338,0.450453,0.337779,0.826411,0.774926,0.454909,0.438765,0.829981,0.499405,0.24836,0.786187,0.615619,0.053682,0.756615,0.653706,0.012513,0.742943,0.66924,0.009919,-0.625416,0.012635,0.780145,0,0.016205,0.999847,0.625416,0.012635,0.780145,-0.389325,-0.006531,-0.921049,0.389325,-0.006531,-0.921049,0.634602,-0.012574,-0.772729,-0.609272,-0.006623,-0.792932,-0.860134,-0.020936,-0.509598,-0.999786,0.014283,-0.014283,-0.960875,0.003601,0.276894,-0.877773,-0.034944,0.477737,-0.867946,-0.021393,0.496139,-0.807215,-0.01294,0.590075,-0.259499,0,-0.965728,-0.501755,0,-0.864986,-0.916959,0.010102,-0.398816,-0.978271,0.018189,-0.206488,-0.995453,-0.026002,-0.091556,-0.999084,-0.024018,-0.034974,-0.997009,-0.004975,0.076998,0.515275,0.445051,0.732353,0.697378,0.400342,0.594409,0.916684,0.37373,0.141301,0.894284,0.414716,-0.168004,0.799738,0.508316,-0.319315,0.750328,0.526414,-0.399823,0.731407,0.528794,-0.430555,0.743706,0.514573,-0.42671,0.529283,0.421064,-0.736564,0.128788,-0.00647,-0.991638,-0.127537,-0.006012,-0.991791,-0.703879,-0.016846,-0.710105,-0.784753,0.014252,-0.619587,-0.835475,-0.028718,-0.548753,-0.834315,-0.035676,-0.550096,-0.886288,-0.013703,-0.462874,-0.8623,-0.009003,-0.506241,-0.530198,-0.002503,-0.847865,-0.052614,-0.020081,0.998383,0.361248,-0.020539,0.932218,0.187902,-0.020478,0.981964,0.623432,-0.020295,0.781579,0.781549,-0.071871,0.619678,0.784539,-0.074679,0.615528,0.832667,-0.016968,0.553484,0.996124,-0.016968,0.086123,0.952879,-0.021088,0.302561,0.998321,-0.022523,-0.05295,0.948302,-0.026246,0.316233,0.986236,-0.023225,-0.163671,0.979034,-0.01175,0.203192,0.965178,-0.029145,-0.259865,0.976775,-0.038545,0.210639,0.95407,-0.032136,-0.29783,-0.358898,-0.020417,-0.933134,0.008271,-0.020081,-0.999756,-0.531083,-0.020051,-0.847041,-0.283151,-0.019501,-0.958861,-0.7875,-0.088015,-0.609973,-0.819178,-0.07947,-0.56798,-0.993225,0.03531,-0.110691,-0.881039,0.034425,-0.471755,-0.993652,-0.027131,0.109012,-0.977966,-0.042695,-0.20423,-0.949431,-0.043092,0.310953,-0.982391,-0.046663,-0.180822,-0.960967,-0.016816,0.27604,-0.980926,-0.029298,-0.192114,-0.968535,-0.036897,0.24601,-0.955626,-0.031922,-0.292764,-0.23487,-0.006439,0.971984,0.226936,-0.01294,0.973815,0.23487,-0.006439,0.971984,-0.060701,-0.006439,0.998108,0.450453,-0.043001,0.891751,0.635701,-0.014344,0.771783,0.854122,0.013184,0.519883,0.844905,-0.014283,0.534654,0.875057,0.007904,0.483902,0.855739,-0.023286,0.516831,0,0.995239,0.097171,0.262001,0,0.965056,0.519028,0,0.854732,0.87347,-0.004761,0.486831,0.978637,0.014466,0.205054,0.99411,0.010132,0.107761,0.997894,0.012879,0.063204,0.999695,-0.020142,0.014283,-0.567064,0.013092,0.823542,-0.542741,0.013245,0.839778,0,0.015992,0.999847,0.542741,0.013245,0.839778,0.567064,0.013092,0.823542,-0.365642,-0.006653,-0.930692,0.576006,-0.013031,-0.817316,0.365642,-0.006653,-0.930692,-0.591723,-0.006745,-0.806085,-0.804956,-0.03357,-0.592334,-0.999207,0.037263,0.013489,-0.981262,0.013245,0.192145,-0.875301,-0.027863,0.482742,-0.856014,-0.000824,0.516923,-0.824732,-0.018891,0.565172,-0.92877,0.02179,-0.369976,-0.960356,0.036866,-0.276284,-0.999969,-0.007416,0.001221,-0.99881,0.000183,0.048189,-0.997009,-0.0141,0.075808,0.559374,-0.006561,0.828852,0.75927,-0.006561,0.650716,0.9682,-0.047334,0.245521,0.985229,-0.009888,-0.170904,0.955016,0.008545,-0.296396,0.907285,-0.002564,-0.420454,0.872646,-0.023774,-0.487716,0.882321,-0.009491,-0.470504,0.528703,0,-0.848781,0.107547,-0.006592,-0.994171,-0.149876,-0.006012,-0.988678,-0.771569,-0.024445,-0.63567,-0.767235,0.036927,-0.640248,-0.90289,-0.011292,-0.42967,-0.886013,-0.019807,-0.463179,-0.900937,-0.020295,-0.433424,-0.87756,-0.009339,-0.479324,0.437269,0.079714,0.895779,0,0.029023,0.999573,0,-0.573992,0.818842,0.546953,-0.583911,0.599872,0.203345,-0.91998,-0.335063,0,-0.945891,-0.324412,0,-0.811823,0.58388,0.522233,-0.738029,0.427259,0.829829,0.157903,0.535173,0.945158,-0.270272,0.183325,0.612842,-0.744224,-0.265511,0.841792,-0.441267,0.310831,0.979522,-0.199103,0.029572,0.919187,0.111881,0.377544,0.868801,-0.47087,-0.15302,0.958739,-0.274361,0.074313,0.679861,0.601459,-0.419507,0.60976,0.583544,-0.536271,0.489731,0.618763,-0.614185,0.525346,0.694937,-0.490921,0.33311,0.662099,-0.671255,0.325571,0.777367,-0.538194,0.767571,0.575854,-0.281442,0.592273,0.73043,-0.340068,0.308512,0.870632,-0.383099,0.885311,0.454695,0.097171,0.865993,0.500015,0.003021,0.663259,0.74691,-0.046541,0.670919,0.734153,0.103946,0.351756,0.93231,-0.083834,0.386792,0.91055,0.145756,0.789209,0.379101,0.483077,0.834315,0.41792,0.359508,0.570086,0.679739,0.461409,0.53502,0.533952,0.654653,0.339824,0.773553,0.534837,0.298441,0.597644,0.744133,0.302469,0.496506,0.813593,0.63332,0.338603,0.695853,0.873287,0.151433,0.462996,0.945494,0.108432,0.307016,0.98178,-0.152776,0.112796,0.935331,0.019349,0.35316,0.958953,0.242134,0.147374,0.933378,0.350108,0.078799,0.933103,-0.356975,-0.043092,0.934996,-0.322977,-0.146489,0.836512,0.501206,-0.22132,0.748039,0.546312,-0.37672,0.85641,-0.470412,-0.212683,0.898953,-0.423963,-0.109867,0.951201,-0.259713,-0.16654,0.91055,-0.306131,-0.277718,0.61092,0.556688,-0.562883,0.726737,-0.509354,-0.460829,0.775079,-0.379681,-0.50499,0.576708,-0.348155,-0.739036,0.350597,-0.351299,-0.868099,0.311686,-0.544359,-0.778771,0.531724,-0.523362,-0.665822,0.470565,0.530808,-0.704794,0.334941,0.530595,-0.778619,0.682455,-0.079745,0.726554,0.771538,0.077334,0.631428,0.754936,0.080294,0.650838,0.750145,0.062502,0.658284,0.892331,-0.106235,0.438643,0.864528,0.015595,0.502274,0.940764,-0.126743,0.314463,0.844813,-0.141026,0.516098,0.915189,-0.272988,-0.296426,0.480728,-0.474349,-0.737449,0.583544,-0.569262,-0.579089,0.890072,-0.374676,-0.259499,0.79458,-0.224494,-0.564104,0.779443,-0.345103,-0.522782,0.539048,-0.346324,-0.767754,0.336039,-0.311319,-0.888882,0.313639,-0.17423,-0.933409,0.541826,-0.201727,-0.815912,0.744713,0.317148,0.587176,0.497757,0.417982,0.759941,0.527696,0.129368,0.839503,0.758721,0.069247,0.647664,0.82873,0.288644,0.479446,0.849391,0.159154,0.503128,0.893185,-0.066591,-0.444655,0.478622,-0.11008,-0.871059,0.437941,-0.451338,-0.777459,0.89114,-0.211097,-0.401593,0.895077,0.104648,-0.433393,0.754295,0.318278,-0.574175,0.758354,-0.020325,-0.651509,0.770684,-0.133854,-0.622944,0.750298,0.087069,-0.655324,0.523606,0.028657,-0.851466,0.280953,0.063723,-0.957579,0.271187,0.132511,-0.953337,0.512742,0.103549,-0.852229,0.532975,-0.080752,-0.84225,0.288064,-0.052583,-0.956145,0.706168,0.332102,0.625263,0.619892,0.460982,0.634968,0.815577,0.190954,0.54622,0.823237,0.186132,0.536241,0.859645,0.132908,0.49324,0.65923,0.194739,0.726249,0.268899,0.081149,0.959716,0,0.025513,0.999664,0.787469,0.278939,0.549577,0.567766,0.409833,0.713889,0.8399,0.310282,0.445235,0.895932,0.220557,-0.38554,0.932279,0.314524,-0.178655,0.74572,0.222602,-0.627918,0.265725,0.234016,-0.935179,0.506058,0.23075,-0.831019,0.083712,0.753807,0.651692,0,0.710959,0.703207,0,0.152867,0.98822,0.273598,0.167486,0.947111,0.113865,0.805444,0.581622,0.464156,0.326334,0.82342,0.195196,0.874142,0.444685,0.62096,0.362499,0.694937,0.122623,0.958403,0.257607,0.635517,0.305643,0.708975,0.482559,-0.768731,0.419691,0.678732,-0.444655,0.584429,0.741142,0.164525,0.650868,0.789819,-0.166143,0.59035,0.494064,-0.643452,0.584674,0.700247,0.190558,0.687979,0.0159,0.824366,0.565813,-0.077029,0.623493,0.777978,-0.321085,-0.629414,0.707602,0.588092,-0.221137,0.777947,0.323496,-0.167943,0.931181,0.007141,-0.843013,0.537828,-0.71804,-0.685568,0.119785,-0.129032,-0.990936,0.037141,-0.317881,0.941923,0.108127,-0.669851,0.688406,0.278085,-0.390545,0.91998,0.033052,-0.877346,0.478805,0.031129,-0.769127,-0.634205,-0.078616,-0.274026,-0.94174,-0.194952,-0.742973,-0.579791,0.33433,-0.236549,-0.932188,0.273934,-0.420759,0.893704,0.155644,-0.817164,0.506455,0.275185,0.99353,-0.029786,-0.1095,0.941191,-0.088687,0.325968,0.829493,0.214209,0.515763,0.457564,0.832423,0.31254,0.806665,0.145116,0.572893,0.521744,-0.537614,-0.662343,0.61623,-0.535173,-0.577746,0.728446,0.247291,0.638874,0.589343,0.36375,0.721335,0.644673,-0.444136,-0.622181,0.637959,-0.152745,-0.754753,0.65038,0.182348,0.737358,0.718131,0.283792,-0.635365,0.651173,-0.17597,0.738212,0.762261,0.561632,-0.321696,0.628864,-0.468673,0.620319,0.777673,-0.619709,0.105533,0.511734,0.82223,0.249092,0.577349,0.585223,0.569323,0.909421,-0.414014,-0.038667,0.870907,-0.266488,0.412885,0.754234,-0.366008,0.545091,0.575488,-0.542344,0.612049,0.869198,-0.09534,0.485153,0.995483,-0.000122,0.094913,0.698172,-0.055452,0.713736,0.69393,-0.188574,0.694876,0.992218,0.116642,-0.043245,0.249641,-0.166906,0.953825,0,-0.367077,0.930174,0.60387,0.085116,0.792474,0.772668,0.146611,0.617603,0.846919,0.126011,0.516526,0.687216,0.508713,0.51854,0.842311,0.273629,0.464339,0.586535,0.616169,0.52562,0.046815,-0.989349,-0.137761,0.08002,-0.970946,-0.22544,-0.266121,-0.726585,-0.633412,-0.401654,-0.706656,-0.582476,-0.76046,-0.220191,-0.610889,-0.748466,-0.226142,-0.623402,-0.447188,0.776391,-0.444075,-0.245033,0.930631,-0.271767,-0.63625,0.360302,-0.68215,-0.482009,0.442824,-0.756005,-0.196081,0.958312,-0.20777,-0.341624,0.520035,-0.78283,-0.099765,0.977691,-0.184759,-0.197882,0.508927,-0.837733,0,0.991668,-0.128697,0,0.513291,-0.85818,0.295999,-0.335551,0.894284,0,-0.452742,0.891598,0.621876,-0.097598,0.776971,0.755181,0.073885,0.651295,0.78985,0.112491,0.602893,0.713462,0.458602,0.52971,0.856929,0.212531,0.469527,0.585528,0.635578,0.503128,0.965972,-0.243995,-0.085788,0.908261,0.042268,0.416211,0.894345,0.2631,0.361766,0.991668,0.109867,-0.067141,0.7799,-0.586047,0.219672,0.73281,-0.171758,0.658345,0.761681,-0.434004,-0.481063,0.921812,0.075747,-0.380108,0.559221,-0.773156,-0.299081,0.800439,-0.537339,-0.265572,0.957518,0.00586,-0.288278,0.495926,-0.833186,-0.244575,0.846675,-0.499832,0.182379,0.99292,-0.003174,0.118595,0.589526,-0.781671,0.203375,0.880764,0.130711,0.455092,0.542711,-0.054842,0.838099,0.933317,0.034547,0.357311,0.910489,0.158147,0.382031,0.941801,0.01352,0.335795,-0.381573,0.004944,0.924314,-0.972839,-0.105167,0.206091,-0.994354,-0.102817,-0.025117,-0.930815,-0.051149,0.361797,0.978881,-0.203955,0.012513,0.750664,0.218207,0.623554,0.901425,-0.432295,0.022858,0.913846,-0.389935,0.113224,0.767998,-0.603107,0.2154,0.815851,-0.50914,0.274117,0.858333,-0.46379,-0.219367,0.866909,-0.479507,-0.136021,0.737114,-0.478133,-0.477493,0.539872,-0.461226,-0.704093,0.335368,-0.444136,-0.830805,0.966674,0.199805,0.159948,0.952605,0.162053,0.257393,0.863857,0.374401,0.336955,0.963347,0.246071,0.106662,0.972106,0.16242,0.169012,0.952391,0.117832,0.281167,0.888455,0.262947,-0.37611,0.951659,0.256783,-0.168432,0.877987,0.311533,-0.363353,0.945128,0.279885,-0.168432,0.723746,0.304666,-0.619129,0.702658,0.35023,-0.619312,0.47908,0.334727,-0.811426,0.268166,0.320658,-0.908414,0.305277,0.348003,-0.88638,0.457808,0.371471,-0.807703,0.94409,-0.313944,0.100406,0.961669,-0.209387,0.176885,0.974242,-0.190558,0.120396,0.965972,-0.248024,0.073183,0.900784,-0.366314,0.233131,0.950926,-0.204566,0.232032,0.970519,-0.151097,0.187689,0.981628,-0.135838,0.133946,0.966887,-0.13831,0.214362,0.979156,-0.049562,0.196875,0.970763,0.066927,0.230445,0.946715,0.155431,0.281961,0.970061,-0.005768,0.242714,0.973785,-0.064028,0.218116,0.963378,0.002747,0.268075,0.943968,0.11887,0.307779,0.913785,0.22074,0.340953,0.926725,0.097903,0.362682,0.942381,0.134129,0.306436,0.874996,0.268563,0.402753,0.926817,0.140263,0.348277,0.18543,0.806604,-0.561205,0.178655,0.69219,-0.69924,0,0.709403,-0.704764,0,0.819941,-0.572405,0.195807,0.90112,-0.386761,0,0.921415,-0.388531,0.219306,0.963805,0.151494,0.197577,0.973357,-0.116245,0,0.992096,-0.12534,0,0.988739,0.14948,0.148808,0.609851,0.778405,0.179724,0.807245,0.56212,0,0.815332,0.578967,0,0.612445,0.79049,0.124821,0.51619,0.847285,0,0.507767,0.861476,0.188543,-0.551408,-0.812616,0.241127,-0.34196,-0.908231,0,-0.370128,-0.928953,0,-0.564531,-0.825404,0.188421,0.550523,-0.813227,0,0.567919,-0.823054,0.192236,-0.136479,-0.971801,0.207343,-0.278329,-0.937803,0,-0.279489,-0.960143,0,-0.124699,-0.992187,0.162053,0.145787,-0.975921,0.161992,0.075991,-0.983856,0,0.07709,-0.997009,0,0.143712,-0.989593,0.165777,-0.040101,-0.985321,0,-0.037843,-0.999268,0.167821,0.224891,-0.959807,0,0.217383,-0.976074,0.201025,-0.444136,-0.873074,0,-0.460311,-0.887753,0.193823,0.327158,-0.924863,0.182379,0.295938,-0.93762,0,0.292093,-0.956359,0,0.326823,-0.945067,0.385876,-0.807825,0.445479,0.276986,-0.523392,0.80578,0.253334,-0.963073,-0.091067,0.145817,-0.958464,-0.245033,0.234718,-0.94763,0.216498,0,0.085177,0.996338,0.225166,-0.099704,0.969176,0.098972,0.164678,0.981353,0,0.320414,0.947264,0,0.291086,0.956664,0.556169,0.150639,0.817255,-0.073305,0.676138,0.733085,0.04471,-0.264016,0.963469,0,-0.49794,0.867183,0,0.612568,0.790399,0.30314,0.702963,0.643361,0.298013,-0.206397,0.931974,0.708762,0.358745,0.607379,0.746361,0.310068,0.588855,0,0.472121,0.881497,0,0.478347,0.87814,0.79873,0.33311,0.501022,0.43321,-0.409253,0.803003,0.488815,0.355602,0.796594,0.002808,0.363384,0.931608,0.004334,-0.399823,0.916562,0.586383,-0.344371,0.733146,0.6639,0.399792,0.631947,0.062716,0.320505,0.945128,0.145054,-0.739036,0.657826,0.289132,-0.678121,0.675649,0.332072,0.369579,0.867794,0,0.212043,0.977233,0,-0.748192,0.663472,-0.102359,0.864528,0.491989,0.255135,0.81756,0.51619,0,0.859218,0.511582,0.034181,-0.983367,-0.178289,0.080264,-0.992309,-0.094211,0,-0.986724,-0.162389,-0.036317,-0.65804,-0.752068,-0.144139,-0.714164,-0.684957,0,-0.663564,-0.7481,-0.095004,0.862819,0.496475,0.259224,0.819758,0.510666,0,0.847865,0.530198,0.712607,0.239448,0.659413,0,0.397443,0.9176,0.642323,0.746849,-0.172063,0.833491,0.540788,-0.113163,0.319132,0.923704,-0.211829,0.896115,0.440016,-0.057833,0.676809,-0.614002,0.406018,0.692709,0.72103,-0.014344,0.962676,0.270089,-0.016633,0.968657,0.248329,0.002869,0.974181,0.225623,0.005432,0,0.974517,-0.224219,0.189459,0.95584,-0.224586,0.976562,0.213477,0.026795,0.748039,-0.363323,0.555345,0.808588,-0.210517,-0.549364,0.93289,-0.106723,0.343883,0.970824,-0.22602,-0.079928,0.90762,-0.388928,-0.157811,0.411237,-0.861202,0.298624,0.851833,-0.084506,0.516923,0.838496,-0.526994,-0.138371,0.679098,-0.732566,-0.046236,0.968078,-0.166692,0.187109,0.908658,0.016022,0.417158,0.855068,0.143345,0.498245,0.582049,0.274087,0.765526,0.102756,0.894406,0.435224,0.675588,0.336344,0.656056,0.769341,0.009888,0.638722,0.884732,0.134373,0.446272,-0.51561,0.757073,-0.401196,-0.755272,0.326823,-0.568072,0.788293,0.18189,0.587786,0.952879,-0.26603,-0.145573,0.916532,-0.397198,0.046785,0.830195,-0.504593,0.236854,0.683981,-0.134068,0.717063,0.541215,-0.115604,0.832881,0.836268,-0.112094,0.536699,0.976592,-0.10593,0.187048,0.977569,-0.092624,0.189093,0.972228,-0.103549,0.209723,0.616657,0.376751,0.691183,0,0.448286,0.893857,0.817896,0.271798,0.507065,0.967986,-0.223151,-0.114811,0.906217,-0.404767,-0.121952,0.822169,0.066225,0.565325,0.376019,-0.823023,-0.425672,0.832911,-0.527848,-0.166143,0.579333,-0.763085,-0.286447,0.732292,0.307199,0.607715,0.374187,0.464949,0.802362,0.921354,0.070406,0.382244,0.948698,-0.007202,0.316019,0.96942,0.199347,0.14304,0.969024,0.111545,0.220283,0.832606,0.422101,-0.358562,0.919431,0.347942,-0.18305,0.651845,0.472793,-0.592883,0.459548,0.454848,-0.76281,0.324839,0.42439,-0.84518,0,0.540574,0.841273,0.143223,0.537095,0.831263,0,0.430464,-0.902585,0.195959,0.422498,-0.884915,0.960601,0.277596,-0.013337,0.898373,0.401288,0.178533,0.799829,-0.55153,0.236671,0.454634,0.421247,0.784722,0.363079,0.739464,0.56682,0.586871,0.667318,0.45851,0.647237,0.374493,0.66393,0.605152,0.750542,0.265419,0.338694,0.87286,0.351177,0.608722,0.789392,0.079165,0.349284,0.933683,0.078616,0.645527,0.755913,-0.10886,0.457076,0.876553,-0.150609,0.690359,0.722953,-0.026429,0.434309,0.900174,-0.031861,0.698874,-0.47795,0.53206,0.145238,-0.897397,0.416547,0,-0.954741,0.297342,0.847804,0.111881,0.518326,0.866543,0.355815,0.349925,0.832972,0.256447,0.490249,0.689047,0.076662,0.720603,0.325663,-0.931639,-0.161138,0,-0.998474,-0.055086,0.709006,-0.648,-0.278115,0.881649,-0.404981,-0.242164,0.641804,0.708701,0.292886,0.873623,0.427045,0.233161,0.378582,0.857814,0.347514,0.960631,0.159948,0.227058,0.937193,-0.245705,-0.247505,0.969329,-0.206824,0.132664,0.969634,-0.169988,0.175634,0.960082,-0.146062,0.238502,0.92468,0.089785,0.369976,0.886135,0.245705,0.392865,0.85403,0.318461,0.411267,0.933164,0.072604,0.352,0.893033,0.175695,0.414228,0,0.923795,0.382824,0.207038,0.904874,0.371929,0.975433,-0.21424,-0.050813,0.946715,-0.102481,0.305277,0.960173,0.035463,0.277078,0.484848,-0.295907,0.822993,0.653096,-0.091006,0.751762,0.857723,0.00705,0.513993,0.806696,-0.198645,0.556536,-0.338969,-0.856471,0.389233,0.020844,-0.662862,0.748405,0.535905,-0.654225,0.533616,-0.025575,-0.902921,0.428999,0.020051,0.817042,0.576189,-0.414319,0.909177,0.041139,-0.447218,0.893277,-0.045076,0.106479,0.876095,0.470168,-0.262337,0.736473,-0.623524,-0.273751,0.38255,-0.882443,0.051546,0.52028,-0.852412,-0.145848,0.811121,-0.566363,-0.37373,-0.116672,-0.920164,-0.024842,-0.158391,-0.98706,-0.422254,-0.424451,-0.800928,-0.022462,-0.499313,-0.866115,0.666005,-0.31016,0.678365,0.840968,-0.129063,0.525437,-0.379192,-0.380993,-0.843196,-0.447584,-0.326518,-0.832484,0.026856,-0.553819,-0.832179,0.102542,-0.489029,-0.866176,0.960601,-0.100436,0.259133,0.942778,-0.122593,0.309976,0.959532,-0.118198,0.255562,0.954039,-0.112552,0.277688,0.921079,-0.090915,0.378521,0.903592,-0.253334,0.345408,0.611805,0.370861,0.69863,0.702261,0.393597,0.593158,-0.381298,0.849452,-0.364696,-0.406079,0.82931,-0.38377,-0.482223,-0.870266,-0.100284,-0.37611,-0.910367,-0.17243,0.782647,-0.28547,0.553117,0.688925,-0.509934,0.515091,0.94055,-0.051393,0.335673,0.95761,-0.095614,0.271706,0.987152,0.110752,0.115146,-0.53328,-0.514512,-0.671468,-0.124577,-0.807581,-0.576403,0.961272,-0.053438,0.270302,0.917966,0.074709,0.389538,0.702872,-0.618702,0.350902,0.781487,-0.524918,0.337199,0.659322,0.626362,0.415845,0.548082,0.82873,0.113071,0.582751,0.677908,-0.448073,0.354106,0.417249,-0.83694,0.159185,-0.120334,-0.979858,0.122959,-0.464644,-0.876888,0.969298,-0.068789,0.236,0.30549,-0.482986,-0.820582,0.300211,-0.61623,-0.72808,0.948241,-0.168737,0.268929,0.966552,-0.128056,0.222114,0.872524,-0.351634,0.339152,0.751152,0.436689,0.49501,0.569079,0.789453,-0.229926,0.472762,-0.876278,0.092654,0.768914,-0.5374,0.346324,0.969756,-0.105106,0.220252,0.21775,-0.846553,-0.485672,0.815821,0.125187,-0.564562,0.823267,-0.068331,0.563494,0.836451,-0.196966,0.511368,0.67571,0.656026,0.336161,0.563219,0.625721,0.539628,0.630634,0.701102,0.332713,0.422529,0.865444,0.269173,0.724357,0.318949,0.611164,0.760063,0.235694,0.605548,0.77514,0.239509,0.584582,0.753258,0.54033,0.37495,0.928831,-0.191443,0.317148,0.840449,-0.088687,0.534562,0.991333,0.066378,0.113346,0.97766,-0.090793,0.189489,0.936247,-0.210211,0.281472,0.962432,-0.11829,0.244301,0.799585,-0.43379,0.415265,0.885891,-0.328257,0.327708,0.606433,-0.395886,0.689535,0.581652,0.453352,0.675344,0.368786,0.85577,0.362804,0.987487,0.047914,0.150029,0.995849,-0.073611,0.053133,0.997375,-0.066927,0.027009,0.664785,-0.139012,0.73394,0.740104,0.025849,0.671957,0.650349,0.130131,0.748375,0.711753,0.125614,0.691061,0.611225,0.138005,0.77929,0.62273,0.461959,0.631458,0.705802,-0.209174,0.676809,0.749229,-0.377117,0.54442,0.766625,-0.57329,0.289132,0.832789,-0.553514,-0.004212,0.987213,-0.095309,-0.127689,0.929106,-0.24424,-0.277596,0.975646,0.030946,-0.217139,0.82989,-0.439406,-0.34376,0.725791,-0.083773,0.68276,0.536699,-0.059755,0.841609,0.861171,-0.035585,0.507004,0.973449,-0.057619,0.221442,0.978118,-0.079073,0.192358,0.97354,-0.086184,0.211493,0,0.426038,0.904691,0.67217,0.320597,0.667348,0.811335,0.251259,0.527757,0.547349,0.072268,0.833735,0.730613,0.120548,0.672048,0.944456,-0.035798,0.326579,0.936705,-0.078829,0.341075,0.889218,-0.097903,0.446822,0.929289,-0.24604,0.275369,0.969481,-0.089114,0.228309,0.512497,-0.547746,-0.661275,0.953551,0.186102,0.236793,0.866146,0.160955,0.473128,0.715232,0.342967,0.608905,0.600146,0.593402,0.536332,0.959838,-0.058473,-0.2743,0.687979,0.356975,-0.631825,0.971343,0.164068,0.17185,0.932798,-0.252022,0.257546,0.983123,-0.032502,0.179937,0.965361,-0.206519,0.159429,0.952727,-0.179022,0.245369,0.987091,0.147771,0.061556,0.882107,-0.178076,0.436048,0.953887,0.045564,0.29664,0.92169,0.17716,0.345103,0.813318,-0.449904,0.368847,0.989959,0.137516,0.031709,0.969512,0.1395,0.201361,0.86935,-0.197638,0.452895,0.942717,-0.028871,0.332286,0.929167,0.15125,0.337291,0.874935,-0.415937,0.247902,0.996185,-0.078188,0.038301,0.970306,-0.100589,0.219855,0.918241,-0.178442,0.353465,0.958739,-0.089694,0.269723,0.968596,0.118717,0.218451,0.535997,-0.728782,0.426099,0.59621,-0.457595,0.659597,0.896359,-0.275338,-0.347423,0.452406,-0.50679,-0.733787,0.780389,-0.212317,-0.588092,0.53679,-0.171789,-0.826014,0.296304,-0.140263,-0.9447,0.635639,0.346294,0.689932,0.602832,-0.572161,-0.556017,0,-0.114566,-0.993408,0.175054,-0.119755,-0.977233,0.071139,-0.567675,-0.820154,-0.384106,-0.491134,-0.781793,0.155187,-0.53853,-0.82815,0.603259,0.451552,0.657338,0.987518,0.044649,0.150822,0.987823,0.016358,0.154668,0.265542,0.509049,0.81872,0.257271,-0.53621,0.803888,0.105869,0.973571,0.202216,-0.167058,-0.669027,-0.724174,-0.0759,0.840144,-0.537004,0.111637,-0.979247,0.169073,0.880947,0.444502,0.162145,0.778619,-0.533341,0.330515,0.817866,0.508927,0.268441,0.781884,-0.190893,0.593463,0.812189,0.325236,0.484268,0.823664,0.465255,0.324107,0.867763,0.489395,0.086306,0.817164,0.572985,-0.06241,0.814783,0.565203,-0.128971,0.824122,0.5656,0.029725,0.288583,-0.890896,0.350658,0.625111,-0.770287,0.125889,0.002747,-0.928343,0.371654,0.913541,0.142521,0.380871,0.831904,0.457442,0.314035,0.873318,0.159856,0.460128,0.581408,0.540178,0.608386,0.587817,-0.436903,0.680837,0.571978,-0.350627,0.741508,0.717185,0.530045,0.452345,0.393109,0.312662,0.864681,0.241768,0.644459,0.725364,0.66924,0.223273,0.70867,0.455428,-0.682302,0.571825,0.089938,0.894131,0.438612,0.031922,0.997162,0.067995,0.066744,0.995422,-0.067965,0.002869,0.998993,0.044649,0.586749,0.638081,0.49852,0.082461,-0.989563,-0.118076,-0.192877,-0.740196,-0.644093,0.598468,0.648244,0.470717,0.791803,0.288766,0.538163,0.594073,-0.012055,0.804315,0.021058,-0.786309,0.61745,0.79339,0.564287,0.228187,0.464278,0.016114,0.885525,-0.369823,-0.929044,0.009461,0.699484,0.686819,0.197363,-0.1507,-0.393475,0.906888,-0.332224,-0.932371,-0.142338,0.553606,-0.763787,-0.331797,0.669393,-0.345286,0.657765,0.758324,0.269509,0.593493,0.507248,-0.313639,-0.802667,-0.789666,-0.343425,-0.508347,-0.717124,0.058565,0.694449,-0.290231,-0.608295,-0.738701,-0.189093,-0.631123,-0.752251,-0.367016,-0.623859,-0.689962,-0.855129,0.294534,-0.426588,-0.914579,0.11298,-0.388256,-0.813105,-0.328104,-0.480758,-0.010071,-0.668477,-0.743614,0,-0.680746,-0.732505,0,0.648,-0.761589,-0.202307,0.664266,-0.719565,-0.384899,0.611713,-0.691092,-0.694327,0.497543,-0.519883,-0.53853,-0.585711,-0.605701,-0.113834,-0.639912,0.759941,-0.080691,-0.965728,0.24662,0.073092,-0.971557,0.225135,0.045167,-0.64388,0.763756,-0.292062,-0.576769,0.762871,-0.368206,-0.881741,0.294778,-0.624653,0.261788,0.735679,-0.803217,0.383862,0.455458,-0.877834,0.223579,0.423505,-0.685934,0.165288,0.708609,-0.917386,-0.01886,0.397473,-0.735954,0.007019,0.676962,0.121494,-0.642445,0.756615,0.132603,-0.965941,0.222114,0,-0.977447,0.211035,0,-0.653584,0.756828,0,0.770135,0.637837,0,0.784143,-0.620533,-0.026917,0.804712,-0.593005,-0.004395,0.768761,0.639485,-0.055818,0.993469,0.099277,-0.223945,0.602557,0.765984,-0.637349,0.629322,0.444624,-0.528214,0.377819,0.760369,-0.779534,-0.522874,0.344829,-0.530961,-0.316874,0.785882,0,-0.029756,0.999542,0.035981,0.00586,0.999329,-0.09476,-0.030793,0.994995,-0.290506,-0.048372,0.955626,-0.374523,-0.072085,0.924406,-0.481887,-0.034761,0.875515,-0.355419,-0.934019,-0.035646,-0.785058,-0.618671,-0.029847,-0.76867,-0.629994,-0.110324,-0.372387,-0.923399,-0.092868,-0.348216,-0.937407,0,-0.79809,-0.602496,0.003845,-0.798456,-0.602008,-0.003143,-0.809107,-0.587329,0.018586,-0.987762,-0.155675,0.005768,-0.978027,-0.20127,-0.054231,-0.99002,-0.138493,0.025452,-0.992706,-0.119236,0.016816,-0.993957,-0.07532,0.079684,-0.868984,0.493576,-0.034577,-0.512589,0.857021,-0.0524,-0.557451,0.816584,-0.149663,-0.869869,0.470901,-0.146702,-0.869106,0.489425,0.071322,-0.496292,0.86639,0.054659,-0.872616,0.46321,0.154729,-0.532304,0.830561,0.163701,-0.864254,0.443434,0.237465,-0.596149,0.77044,0.225776,-0.230842,0.972839,-0.016144,-0.280496,0.955535,-0.090732,-0.190985,0.979858,0.057955,0.033143,0.925993,0.376049,0.493942,0.860073,0.127537,-0.098697,0.995025,0.012818,-0.114109,0.992279,-0.048158,-0.06006,0.993286,0.098605,0.010315,0.810755,0.585253,0,0.999817,0.017823,0,0.999207,-0.039613,0,0.992035,0.125767,0,0.807245,0.590167,0.09711,-0.994903,0.025941,0.07889,-0.996826,0.008179,0.049287,-0.997864,0.042512,0.085879,-0.994446,0.060579,0.114109,-0.993439,0.005402,0.093448,-0.995605,0.000305,0.120884,-0.992645,-0.002014,0.094638,-0.995483,-0.001709,0.122745,-0.992431,-0.002014,0.09299,-0.995636,-0.001679,0,-0.99939,0.034211,0,-0.99823,0.059297,0,-0.999939,0.009857,0,-0.999969,-0.001556,0,-0.999969,-0.001526,-0.992737,0.119968,0.007447,-0.988037,0.132176,-0.079287,-0.991668,0.113956,0.059664,-0.986724,0.141362,0.079623,-0.966094,0.194403,0.169774,-0.051149,-0.998596,-0.01178,-0.080935,-0.996643,-0.009461,-0.042512,-0.999084,-0.000427,-0.043489,-0.999023,-0.000427,-0.044465,-0.998993,-0.000427,-0.148534,-0.973022,-0.176427,0.006226,-0.995514,-0.09418,-0.390576,-0.883969,-0.256905,-0.901761,0.403027,-0.15598,-0.990295,0.114444,-0.078494,-0.945036,-0.304971,-0.117801,0.086184,-0.99469,-0.055757,0,-0.998352,-0.057283,0,0.983764,-0.179357,-0.147862,0.969024,-0.197668,-0.335002,0.908963,-0.247993,-0.646565,0.722373,-0.245064,-0.71633,-0.654103,-0.242836,0,-0.016297,0.999847,0.041902,-0.034822,0.998505,0.852229,-0.037324,0.521805,0.985565,0.105564,-0.132298,0.518937,0.482437,-0.705618,0.041932,0.572985,-0.818445,0,0.584216,-0.811579,0.564928,0.770409,-0.29545,0.109561,0.962706,-0.247322,0,0.971221,-0.238136,0.82046,-0.509262,0.259682,0.97351,0.157445,-0.165716,0.063845,-0.806818,0.587298,0,-0.828303,0.560259,0,-0.985748,0.168035,0.118717,-0.973662,0.194555,0.699637,-0.701071,0.1377,0.987823,0.149998,-0.040834,0.56148,0.824976,-0.06415,0.085299,0.995666,0.03647,0,0.997497,0.070376,0.508103,0.860775,0.029695,0.037843,0.996277,0.077273,0,0.996063,0.088412,0.653676,-0.753044,0.074862,0.996612,0.081851,0.003937,0.118656,-0.984893,0.12598,0,-0.989715,0.142918,0,-0.997833,0.065584,0.099521,-0.993103,0.061892,0.641926,-0.765313,0.046602,0.998688,0.042848,0.027924,0.567156,0.82049,0.071261,0.04828,0.993591,0.102115,0,0.995117,0.098666,0.615192,0.764092,0.194128,0.079257,0.987274,0.1377,0,0.991272,0.131626,0.642628,-0.75808,0.110843,0.984405,0.002197,0.175878,0.111759,-0.992492,0.049409,0,-0.999481,0.0318,0,-0.987274,0.159001,0.162206,-0.965667,0.202795,0.636219,-0.699698,0.324931,0.911985,-0.000488,0.410169,0.580554,0.721488,0.3773,0.110996,0.958525,0.26249,0,0.971923,0.235206,0.562517,0.623402,0.543046,0.238258,0.755669,0.610034,0,0.813776,0.581133,0.636921,-0.586169,0.500687,0.768822,0.024659,0.638936,0.293161,-0.744621,0.599597,0,-0.821558,0.570116,0.334422,0.014496,0.942289,0,0.009522,0.999939,-0.103214,-0.892239,-0.439558,-0.241829,-0.825953,-0.509171,-0.395032,-0.760033,-0.516007,-0.988006,0.095218,-0.121525,-0.926847,0.360027,-0.106418,-0.897397,-0.367565,-0.243995,0,-0.933775,-0.357768,0.043611,-0.924528,-0.378582,-0.190191,0.928312,-0.319437,0,0.953795,-0.300424,-0.370067,0.86523,-0.338176,-0.699545,0.676351,-0.230445,-0.635395,-0.646931,-0.421583,-0.481002,0.779443,-0.401318,0.133641,0.984436,0.114017,0.085269,-0.994232,0.064821,-0.62389,-0.593188,-0.508774,0.581133,-0.540483,0.608386,0.588824,0.513352,0.624287,0.881008,0.462416,-0.099765,0.880764,-0.453078,-0.137486,0.500992,0.715415,-0.486984,-0.245308,-0.443037,-0.86227,-0.170568,0.584002,-0.793603,0.384136,-0.776421,-0.499527,0.437086,0.87344,0.214484,0.005432,0.974425,0.224586,-0.380016,0.884701,0.269875,0.799341,0.549669,0.242653,0.673635,0.710196,0.204413,0.92703,0.06238,0.369701,0.287301,-0.759484,0.583575,0.594348,-0.599597,0.535905,-0.127812,-0.762169,0.634602,-0.747307,0.523759,0.408887,-0.853999,-0.016663,0.519974,-0.649556,-0.469741,0.597797,0.802789,-0.365581,0.470962,-0.636525,-0.410138,0.653127,-0.154485,-0.681997,0.714805,-0.384381,0.867428,0.315867,-0.726127,0.519974,0.449782,0.744377,-0.290475,0.601215,0.847224,0.120457,0.51738,0.544176,-0.510086,0.666036,-0.827204,0.00235,0.561846,0.278878,-0.665731,0.692068,0.647084,0.694723,0.314005,0.407208,0.865749,0.290902,0.748436,0.556749,0.360302,-0.01297,0.958953,0.283212,0.89993,0.048585,0.433241,0.652364,-0.068484,0.754753,0.507218,-0.024812,0.861415,0,0.063448,0.997955,0.820765,-0.005005,-0.571184,0.939848,-0.003784,-0.341472,0.977599,0.039827,-0.20661,0.599933,0.04706,-0.798639,0.377148,0.077151,-0.92291,0.299844,0.089389,-0.949767,0,0.096316,-0.995331,0.991607,0.080325,0.101077,0.993408,0.078341,-0.083377,0.487228,0.085971,0.869015,0.473983,0.033326,0.879879,0,-0.028321,0.999573,0.826197,0.165685,-0.538438,0.914853,0.149083,-0.375195,0.94879,0.176855,-0.261727,0.617725,0.22074,-0.754753,0.381542,0.250832,-0.889645,0.330668,0.261086,-0.906888,0,0.280953,-0.959716,0.973968,0.204535,-0.097629,0.9635,0.200232,0.177526,0.433302,0.38728,-0.813776,0.395398,0.344493,-0.851436,0.650655,0.301553,-0.69689,0.661946,0.34373,-0.666066,0.820551,0.272073,-0.50264,0.798791,0.330943,-0.502365,0.846797,0.377209,-0.37495,0.884823,0.285989,-0.367718,0.918973,0.288308,-0.26896,0.868404,0.424543,-0.256142,0.215918,0.146794,0.9653,0.418531,0.091006,0.903623,0,-0.045869,0.998932,0,-0.049226,0.998779,0.313028,0.333354,0.889279,0.378826,0.222419,0.898312,0.341136,0.355541,-0.870174,0,0.376568,-0.926359,0.344798,0.407453,-0.845607,0,0.435347,-0.900235,0.948912,0.294748,-0.112339,0.887967,0.448134,-0.103122,0.928556,0.283212,0.239814,0.883785,0.395917,0.249306,0.453108,0.545518,-0.705039,0.435743,0.453505,-0.777429,0.666921,0.397839,-0.629994,0.568621,0.580676,-0.582629,0.743614,0.427717,-0.51384,0.455824,0.748344,-0.481826,0.364971,0.879696,-0.304819,0.762627,0.510941,-0.396588,0.76046,0.588214,-0.275002,0.307291,0.938871,-0.155095,-0.166051,0.584643,0.794092,-0.020722,0.191656,0.981231,0,0.059908,0.998199,0,0.687338,0.72631,0.138127,0.673116,0.726493,0.211951,0.433546,0.87582,0.330821,0.472793,-0.816675,0,0.494461,-0.869167,0.304483,0.544908,-0.781213,0,0.571459,-0.820612,0.785241,0.61626,-0.059908,0.288888,0.952422,0.096835,0.800684,0.519761,0.2978,0.422864,0.865322,0.269021,0,0.898648,0.438643,-0.257118,0.803369,0.537065,-0.195288,0.770348,0.606922,0.04416,0.978484,0.201453,-0.084811,0.988372,0.126072,-0.118992,0.992859,0.005158,-0.019044,0.990204,-0.138279,0.472121,0.59798,-0.647664,0.303476,0.559679,-0.771111,0,0.60271,-0.797937,0.188269,0.892666,-0.409497,0.422071,0.726035,-0.542833,0.766961,0.197974,0.61037,0.626606,0.214087,0.749321,0.634053,0.274972,0.722709,0.740928,0.259377,0.619434,0.785516,0.146977,0.601123,0.668844,0.125858,0.732658,0.677511,0.430555,0.596271,0.60387,0.469222,0.644307,0.391675,0.756066,0.524277,0.383251,0.816767,0.431227,0.261147,0.847163,0.462661,0.10886,0.953246,0.281838,0.856441,0.196326,0.477401,0.888394,0.144322,0.435743,0.871578,0.216041,0.440046,0.905728,0.169561,0.388409,0.873836,0.240089,0.422773,0.903439,0.183172,0.387555,0.827418,0.25895,0.498245,0.829127,0.274606,0.486923,0.824671,0.304636,0.476516,0.769372,0.414594,0.485916,0.766137,0.415906,0.489914,0.767907,0.413923,0.488815,0.444533,0.832911,0.3296,0.450423,0.828242,0.333293,0.468459,0.812464,0.346965,0.111728,0.983673,0.140996,0.113895,0.98291,0.144475,0.117527,0.98236,0.145299,0.722526,0.091891,0.685171,0.867733,0.110569,0.484542,0.93762,0.170019,0.30314,0.771203,0.103671,0.628071,0.930601,0.118839,0.346171,0.893948,0.088626,0.439283,0.166814,0.096103,0.981262,-0.047273,0.091372,0.99469,-0.051393,0.253334,0.966002,0.118961,0.279122,0.952849,0.09949,-0.544298,0.832942,-0.068239,-0.557604,0.827265,0.087588,-0.833033,-0.54619,0.058351,-0.808008,-0.58623,0.033753,-0.954985,-0.294626,0.052522,-0.967925,-0.245674,-0.005982,-0.993316,-0.115116,0.025361,-0.996582,-0.078219,-0.132298,0.523759,0.841487,-0.014435,0.611652,0.790979,-0.146275,0.976348,0.159124,-0.123753,0.98764,0.096133,-0.069613,0.781487,-0.619983,-0.019288,0.813776,-0.580828,0.142064,0.178228,-0.973662,0.050386,0.180975,-0.982177,0.038911,-0.940214,0.338298,-0.043153,-0.953551,0.298044,0.027863,0.530351,-0.847285,0.183111,0.541215,-0.820673,0.228553,-0.216834,-0.949065,0.054689,-0.24012,-0.969176,0.194372,-0.685537,-0.701559,0.069765,-0.733848,-0.67568,0.112796,0.399915,-0.909574,0.175542,0.417493,-0.891537,0.091494,-0.760247,-0.643117,0.109287,-0.726768,-0.678091,0.056917,-0.996185,-0.065676,0.120487,-0.935301,0.332652,0.249336,-0.568194,0.784173,-0.108951,0.990417,0.084628,-0.142338,0.795312,-0.589221,-0.049684,0.439497,-0.896847,0.104801,0.679189,0.726402,0.308908,0.346507,0.885708,0.069948,-0.976775,-0.202429,0.118259,-0.843776,-0.523453,0.354442,0.026307,0.93469,-0.083163,0.293252,-0.952391,-0.120914,-0.278573,-0.952757,-0.046907,-0.645161,-0.762596,0.00296,0.463424,-0.886105,0.064394,-0.741691,-0.667623,-0.014557,-0.344768,0.938566,0.136601,0.410504,0.901547,-0.018586,-0.707785,0.706168,0.130009,-0.539262,-0.832026,0.134739,-0.623798,-0.76986,0.109104,-0.987426,-0.114353,0.118137,-0.973296,-0.196783,0.064425,-0.965789,0.251167,0.061281,-0.958953,0.276772,0.076449,-0.181188,-0.980468,0.078799,-0.207648,-0.975005,0.033876,0.177007,-0.983612,0.129429,0.932981,0.335795,0.005463,0.979217,-0.202612,0.005097,0.715384,-0.69866,0.043886,-0.894803,0.444227,0.037263,-0.87582,0.481155,-0.552904,0.831874,-0.047517,-0.94467,-0.312906,-0.0983,-0.624714,-0.10007,0.774377,-0.639546,0.700308,0.316996,-0.525712,-0.848415,-0.061342,-0.525651,-0.682669,0.507553,-0.566027,0.707236,-0.423566,-0.458998,-0.085299,-0.884304,-0.412976,-0.67214,-0.614521,-0.313608,0.777062,-0.545671,-0.143529,0.984924,-0.096255,0.168401,0.985168,0.032533,-0.467666,0.883236,-0.033815,-0.163579,0.982421,0.089816,-0.417463,0.764794,0.490677,-0.983306,0.1536,-0.097446,-0.106876,0.933653,-0.341777,-0.173345,0.926511,0.333842,-0.842372,0.066897,0.534684,-0.93292,0.348888,-0.088748,-0.720054,0.081729,-0.689077,0.614948,0.784722,0.077517,0.348735,0.501816,0.791528,0.502091,0.521653,-0.689749,-0.132633,0.714896,0.686483,-0.225471,0.974151,-0.011719,-0.149998,-0.026582,0.988311,-0.068819,-0.009857,0.997559,-0.000275,-0.029237,0.999542,0.015534,0.532609,0.846187,-0.113712,-0.701865,0.703146,0.178472,-0.693625,0.697836,0.201056,-0.666158,0.718162,-0.063631,-0.997864,-0.014527,0.358806,-0.933042,0.025849,0.54973,-0.833216,0.059206,0.028474,-0.689261,-0.72393,0.321726,-0.679159,-0.659688,0.326487,-0.670736,-0.665944,0.047914,-0.006928,-0.99881,0.14594,0.015381,-0.989166,0.223304,-0.005615,-0.974731,-0.00705,0.714591,-0.699484,0.181677,0.524796,-0.831599,-0.265725,-0.962981,-0.044618,-0.008911,-0.756859,0.653493,0.109073,-0.825007,0.55446,0.159856,-0.98706,0.010956,0.004975,-0.752708,-0.658315,0.10712,-0.831324,-0.545335,-0.191626,-0.041871,0.98056,-0.119572,0.978362,0.168737,-0.245125,-0.704367,0.666128,-0.257973,-0.965484,-0.035401,-0.106601,-0.692099,-0.713858,0.007019,-0.02353,-0.999695,-0.085818,0.981628,-0.170324,-0.143712,0.938444,0.314097,-0.080111,0.94641,-0.312845,-0.021668,0.545457,-0.837855,-0.190527,0.522782,0.830866,-0.141881,0.989868,-0.003418,0.050203,0.998596,0.01529,-0.026795,0.799402,-0.600146,-0.03354,0.83224,0.553362,0.090884,0.691549,0.716544,0.09653,0.605823,-0.789697,-0.019379,0.893735,-0.448134,-0.342112,0.802728,-0.488388,-0.120792,0.846492,0.518448,0.063631,0.889889,0.451704,-0.033601,0.998108,0.050996,-0.45793,0.888638,0.024506,-0.429182,0.903195,0.003754,-0.282479,0.819727,-0.498215,0.038392,0.903623,-0.426527,0.004334,0.998321,0.057222,0.068911,0.891537,0.447584,-0.123508,0.853908,0.505478,0.073794,0.996857,0.027772,0.032746,0.810419,-0.584918,-0.044252,0.835688,0.54741,0.070467,0.693991,0.716483,0.167882,0.617817,-0.768181,0.04944,0.72457,-0.687399,0.263222,0.536637,-0.801691,-0.002777,0.535569,0.844447,-0.158635,0.716453,0.679312,-0.213446,0.976775,-0.017731,-0.139897,0.990143,-0.005432,0.026093,0.551225,-0.833918,-0.680258,0.08359,-0.728172,-0.928678,0.342845,-0.141331,0.611499,0.782922,0.114353,0.543779,0.524064,-0.655446,-0.236335,0.519517,0.8211,0.310953,0.495773,0.810846,-0.872494,0.061739,0.484695,-0.158971,0.935362,0.315897,-0.193762,0.922758,0.333048,-0.165349,0.982269,0.08826,-0.059297,0.946898,-0.315958,-0.133427,0.985778,-0.102115,-0.087313,0.933592,-0.347453,-0.07416,0.982055,-0.173254,-0.275185,0.783868,-0.556597,-0.54561,0.707694,-0.448805,-0.127506,0.976989,0.170934,-0.660939,0.696493,0.279244,-0.438002,0.764855,0.472335,0.067324,-0.022004,-0.997467,0.117893,-0.014283,-0.99292,-0.408826,-0.081454,-0.908933,-0.030457,-0.718619,-0.694693,0.116153,-0.729514,-0.674001,-0.375591,-0.674795,-0.635243,-0.175268,-0.983551,-0.04294,0.019318,-0.999725,-0.012421,-0.516617,-0.850795,-0.09592,-0.23957,-0.738456,0.630268,-0.093387,-0.749626,0.655202,-0.550523,-0.691885,0.467116,-0.243385,-0.050935,0.968566,-0.194891,-0.044496,0.979797,-0.669393,-0.105564,0.735343,0.018372,-0.786859,-0.61681,0.105197,-0.867702,-0.485794,0.324778,-0.717338,-0.616382,0.308512,-0.040498,-0.950346,-0.032502,-0.070254,0.996979,0.131718,-0.718833,0.682577,0.041749,-0.872677,0.486465,-0.05649,-0.796808,0.60155,0.082522,-0.996582,-0.000763,0.460128,-0.88522,0.068087,-0.229591,-0.971282,-0.062044,-0.46382,0.884274,-0.053743,0.226936,0.009766,-0.973846,0.350108,-0.714377,-0.605823,0.347331,-0.93701,0.036622,0.142735,-0.737144,0.660451,-0.10593,-0.026307,0.994018,0.182867,0.981842,0.049959,-0.976409,0.150884,-0.154271,-0.553667,0.829249,-0.075686,-0.936521,-0.314402,-0.154973,-0.530045,0.84753,0.025758,-0.953612,-0.295633,0.05649,-0.51204,-0.084994,0.854701,-0.578173,0.714347,0.394177,-0.553392,-0.832087,0.03647,-0.466292,-0.64977,0.600269,-0.621174,0.709861,-0.331889,-0.608112,-0.095859,-0.788018,-0.531968,-0.656728,-0.534471,-0.423505,0.753655,-0.502609,-0.199652,0.976745,-0.077761,0.138737,0.990265,-0.008454,-0.501114,0.864895,0.028443,-0.192755,0.976592,0.095157,-0.362499,0.757408,0.543016,-0.98175,0.181768,0.055574,-0.146001,0.936552,-0.318644,-0.107089,0.939756,0.324564,-0.747612,0.096408,0.657063,-0.921751,0.384136,0.052675,-0.819025,0.092074,-0.566301,0.605548,0.79516,-0.031434,0.4756,0.51091,0.716056,0.394269,0.507645,-0.766015,-0.01117,0.714957,0.699057,-0.241432,0.970367,0.009491,0.011139,-0.025117,0.999603,0.101749,-0.00528,0.994781,0.17307,-0.055361,0.983337,0.186254,0.52324,0.831568,0.037416,-0.720176,0.69277,0.283578,-0.70513,0.649861,0.262856,-0.682058,0.682394,0.001251,-0.999969,0.006775,0.356517,-0.934141,-0.016144,0.479415,-0.877529,-0.007416,-0.045259,-0.72924,-0.68273,0.210089,-0.712241,-0.669729,0.159795,-0.712088,-0.683645,-0.10828,-0.035646,-0.993469,-0.000244,-0.009278,-0.999939,0.079867,-0.067476,-0.994507,-0.112156,0.690542,-0.714499,0.084964,0.497452,-0.863277,-0.318979,-0.947691,0.010773,0.030396,-0.763634,0.644917,0.118839,-0.846217,0.519395,0.037294,-0.999237,0.009491,-0.177343,-0.775292,-0.606159,-0.042085,-0.861721,-0.50557,-0.037568,-0.030335,0.99881,-0.096805,0.981262,0.166509,-0.118625,-0.703848,0.700339,-0.210486,-0.977416,0.017884,-0.199225,-0.712973,-0.672262,-0.153783,-0.042604,-0.987182,-0.116733,0.979278,-0.165319,-0.098972,0.949858,0.296548,-0.132206,0.94821,-0.288736,-0.158086,0.523209,-0.837397,-0.061678,0.526261,0.848048,-0.148717,0.988861,0.004089,0.081179,0.996643,-0.010315,-0.12833,0.77752,-0.615589,0.072024,0.829402,0.553941,0.24543,0.674642,0.696127,-0.004395,0.567156,-0.823573,-0.073489,0.879513,-0.470107,-0.451369,0.770287,-0.450423,-0.022431,0.843013,0.5374,0.174047,0.886868,0.427931,-0.000153,0.999054,0.043336,-0.493667,0.865261,0.087069,-0.453383,0.886135,-0.095553,-0.238044,0.757744,-0.607532,0.086062,0.839381,-0.536637,-0.04181,0.999084,-0.00705,-0.024506,0.898556,0.438154,-0.210608,0.852168,0.478957,0.044038,0.998199,-0.040284,0.094119,0.723685,-0.683676,-0.146733,0.837886,0.525712,-0.055208,0.697897,0.714042,0.255318,0.494766,-0.830653,0.103702,0.631397,-0.768456,0.342875,0.417402,-0.841548,-0.153386,0.557268,0.816034,-0.280587,0.732994,0.619617,-0.247688,0.961516,-0.118656,-0.122044,0.987518,-0.09949,0.140477,0.463332,-0.874935,-0.569445,0.063814,-0.819514,-0.874111,0.399518,-0.276101,0.584582,0.802271,0.120701,0.616443,0.460067,-0.638966,-0.327982,0.566912,0.755638,0.20188,0.549333,0.810816,-0.913236,0.14246,0.381664,-0.173223,0.962249,0.209845,-0.197668,0.954863,0.221625,-0.194281,0.980865,-0.011719,-0.005951,0.924375,-0.38142,-0.13889,0.968047,-0.208686,-0.018891,0.912809,-0.40788,-0.032685,0.967986,-0.248756,-0.244575,0.703513,-0.667226,-0.435316,0.683065,-0.586413,-0.12241,0.989868,0.071841,-0.653981,0.734916,0.179327,-0.530259,0.769982,0.354778,0.181646,-0.103427,-0.977905,0.188177,-0.101321,-0.976867,-0.290811,-0.146825,-0.945433,0.023743,-0.75341,-0.657063,0.121921,-0.768059,-0.628651,-0.307901,-0.699332,-0.645039,-0.216651,-0.976226,0.003479,-0.06946,-0.99646,0.046693,-0.525986,-0.845271,-0.093966,-0.354961,-0.664083,0.657979,-0.259713,-0.6798,0.685842,-0.626545,-0.62389,0.467055,-0.366466,0.027406,0.929991,-0.362926,0.030549,0.931303,-0.750023,-0.037263,0.660298,0.04413,-0.814417,-0.57857,0.114689,-0.892972,-0.435224,0.333445,-0.759423,-0.55858,0.361675,-0.139286,-0.921812,-0.226783,-0.003052,0.973907,-0.034577,-0.660054,0.750389,-0.086642,-0.821497,0.563555,-0.188299,-0.73043,0.656484,0.013062,-0.997253,0.072573,0.372051,-0.911069,0.177404,-0.258644,-0.965819,-0.015442,-0.473739,0.862362,-0.178381,0.282418,-0.085879,-0.955412,0.341136,-0.767052,-0.543321,0.247993,-0.959685,0.132115,-0.039888,-0.686392,0.726127,-0.296091,0.034944,0.954497,0.134617,0.990753,-0.014985,-0.937223,0.203894,-0.282815,-0.498489,0.843471,-0.199988,-0.922239,-0.299356,-0.244545,0.593036,0.370373,0.714927,-0.096774,0.923093,0.372112,-0.693503,0.375011,0.615101,-0.340526,-0.12949,0.931242,0.867519,0.49559,-0.04181,0.200964,0.977935,-0.056917,0.686178,-0.560381,0.463759,0.934965,-0.354656,0.001221,-0.144139,-0.736198,0.661184,0.73928,0.040986,0.67214,0.708701,-0.023957,0.705069,0.650288,0.276772,0.70745,0.447401,0.626026,0.638661,0.548235,0.467757,0.693258,0.404645,0.665365,0.627277,0.540941,0.530015,0.653005,0.077639,0.672842,0.735679,-0.046236,0.430738,0.901273,0.696951,0.20539,0.687063,0.262551,-0.277383,0.924161,0.5862,-0.25251,0.769768,-0.579302,0.815058,-0.005188,-0.531968,0.843623,-0.072817,-0.772362,0.51149,0.376537,-0.893765,0.206641,-0.398022,-0.795618,0.269265,-0.542619,-0.999786,0.015381,-0.012665,-0.734672,-0.475448,-0.483871,-0.636372,-0.398511,-0.660421,-0.841029,-0.536454,-0.069338,-0.249977,-0.913755,-0.32017,-0.19068,-0.872524,-0.449782,-0.437178,-0.899228,-0.01413,0.378735,-0.920164,0.099094,0.40614,-0.912656,0.045412,0.041017,-0.919858,0.390057,0.569781,0.336894,0.749535,0.110385,0.834498,0.539811,0.371258,0.232795,0.898831,-0.51616,0.851131,-0.09537,-0.74221,0.294565,-0.601917,-0.573107,-0.362072,-0.73513,-0.148412,-0.847682,-0.509293,0.402661,-0.915311,0.007752,0.736137,-0.341441,0.584338,0.76162,0.467391,0.448805,-0.524766,-0.247353,0.814478,0.209845,0.128788,0.969207,-0.717582,-0.433637,0.544939,-0.207801,-0.109653,0.971984,-0.23722,0.428877,0.871639,-0.312906,0.408612,0.857387,-0.34196,-0.033052,0.939116,-0.142369,-0.671621,0.727073,-0.250282,-0.622486,0.741508,-0.020692,-0.779626,-0.625843,-0.066256,-0.95877,-0.276284,-0.067995,-0.97702,-0.201941,-0.048036,-0.825068,-0.562975,-0.083468,-0.989502,-0.117801,-0.077334,-0.993622,-0.081729,-0.196448,0.816736,0.542497,-0.17188,0.750511,0.63805,-0.110263,0.9935,-0.027375,-0.003906,0.99942,0.033143,-0.02533,0.778069,-0.627644,0.026673,0.28016,-0.959563,0.061922,0.490402,-0.869259,0.061281,0.784875,-0.616565,-0.087985,-0.958037,0.272774,-0.134098,-0.948241,0.287729,-0.030915,-0.772729,-0.633961,-0.02591,-0.94763,-0.318278,-0.044954,-0.836116,-0.546678,-0.025788,-0.577074,-0.816248,-0.057375,-0.95468,0.29194,-0.102176,-0.994629,0.016083,-0.078463,0.825373,0.559069,-0.169103,0.976836,-0.130985,-0.169469,0.975585,0.1395,-0.112186,0.670919,0.732963,-0.16538,0.832362,-0.528947,-0.157964,0.959075,-0.234901,0.037751,0.198279,0.9794,-0.031373,-0.022492,0.999237,0.027345,-0.245705,0.968932,-0.036103,-0.5309,0.846644,-0.072298,-0.624836,-0.777367,-0.049928,-0.369182,-0.928007,-0.107517,-0.421277,-0.90051,-0.076693,-0.100345,-0.991974,-0.053133,-0.57561,0.815973,-0.100192,-0.827235,0.552782,0.110202,-0.326579,0.938688,-0.079409,0.367443,0.926633,-0.09064,0.396313,0.913602,0.063509,-0.252846,0.965392,0.178594,-0.706992,0.684255,0.151616,-0.691977,0.705771,-0.113437,-0.661397,-0.741386,-0.104495,-0.979095,-0.174383,-0.106082,-0.935881,-0.335917,-0.074557,-0.624805,-0.777184,0.003723,-0.986328,0.164708,-0.016144,-0.999481,0.026765,-0.044557,-0.233833,-0.971221,-0.002899,-0.209662,-0.977752,-0.004181,0.154302,-0.988006,0.02411,0.22364,-0.974364,-0.132969,0.904935,0.404187,-0.141331,0.88815,0.437239,-0.037904,0.982543,-0.182012,-0.077944,0.985839,-0.148412,0.016022,0.72454,-0.689016,-0.005585,0.748924,-0.662618,0.091983,-0.880551,0.464888,0.127323,-0.907071,0.401257,0.004944,-0.978484,-0.206244,0.029847,-0.981262,0.190313,0.036805,-0.998108,-0.04886,0.018159,-0.914609,-0.403882,0.028901,-0.640004,0.767785,0.006378,-0.815607,0.578509,0.040193,0.975616,0.215735,-0.065584,0.851772,-0.519761,-0.159886,0.909574,-0.383465,-0.047365,0.929685,0.365276,-0.150212,0.32606,-0.933317,-0.157506,0.61037,-0.776269,0.094729,0.504929,0.857936,0.092135,0.361339,0.927854,0.059908,0.179266,0.981964,0.075594,0.019074,0.996948,-0.042238,-0.922483,-0.383679,-0.038148,-0.821894,-0.568316,-0.067721,-0.768364,-0.636402,-0.075137,-0.651753,-0.754662,0.009583,0.00824,0.999908,-0.007172,-0.235267,0.971892,0.082247,-0.288522,-0.953917,0.080447,0.183935,-0.979614,0.025483,-0.244453,-0.969298,0.038453,-0.525285,-0.850032,-0.12949,0.661,-0.739097,-0.12772,0.868923,-0.478133,-0.115055,0.357952,-0.926603,-0.105228,0.653493,-0.749535,-0.150517,0.334452,-0.930296,-0.092746,0.424818,-0.900479,-0.183447,-0.063295,-0.980956,-0.08594,0.101688,-0.991089,-0.115024,-0.046693,-0.992248,-0.092288,0.302835,-0.948546,-0.098636,-0.571123,-0.814875,-0.094241,-0.370403,-0.92407,0.002136,0.448439,-0.893796,-0.043428,-0.630726,-0.774773,-0.256691,0.493851,-0.830775,-0.260933,-0.135197,-0.955809,-0.167913,-0.590899,-0.789056,-0.149876,0.417982,0.895962,-0.079379,-0.16895,0.982391,-0.021149,-0.696585,0.717124,-0.093142,-0.928312,-0.359905,-0.051881,-0.685507,-0.726188,-0.081118,-0.993011,-0.085665,-0.001251,-0.219092,-0.975677,0.00238,0.251595,-0.967803,-0.155705,0.863033,0.480514,-0.090701,0.991455,-0.093661,-0.032563,0.758019,-0.651387,-0.028169,-0.950713,0.308725,0.019776,-0.746147,-0.665456,0.0412,-0.461745,-0.886044,-0.046663,-0.987213,-0.152287,-0.134922,0.946837,0.291971,-0.086734,0.547105,0.832514,-0.135502,0.987732,-0.077364,-0.037141,-0.18894,0.981262,-0.044313,-0.690207,0.722221,0.022706,-0.223487,-0.974425,-0.009186,0.063173,-0.997955,-0.074618,-0.92349,0.376263,-0.112217,0.939177,-0.324503,-0.079653,0.773644,-0.628559,-0.044618,0.458327,-0.887631,-0.259529,0.912625,-0.315775,-0.176489,0.711478,-0.680135,-0.156835,0.697989,-0.698691,-0.237617,0.922422,-0.304331,-0.080874,0.674306,-0.73397,-0.096835,0.963134,-0.250893,-0.117252,0.532548,-0.838191,-0.100864,0.502152,-0.858852,-0.053865,0.280404,-0.958342,-0.262215,0.955992,0.131474,-0.226081,0.954009,0.196753,-0.156255,0.948607,0.275094,-0.141545,0.60506,0.783471,-0.117679,0.549821,0.82693,-0.12772,0.492416,0.860927,-0.370952,-0.052797,0.927122,-0.264229,-0.16364,0.950468,-0.089328,-0.313608,0.945311,-0.613697,-0.181829,0.768303,-0.513901,-0.384381,0.7669,-0.109317,-0.662191,0.741295,0.319742,0.903195,-0.286294,0.197424,0.474776,-0.857662,-0.7369,-0.128666,-0.663594,-0.797113,0.547441,-0.254707,-0.560167,0.777367,-0.286142,0.609821,0.750237,-0.255318,0.742668,0.084597,-0.664235,-0.324015,0.400983,-0.856838,0.065462,-0.456862,-0.887082,-0.256203,-0.419263,-0.870937,-0.065127,0.402203,-0.913205,-0.05829,0.401746,-0.913877,-0.051851,0.404096,-0.913236,0.363445,-0.329966,-0.871212,-0.047151,0.408673,-0.911435,0.600574,-0.161046,-0.783135,-0.070925,0.405255,-0.911435,-0.531327,-0.324198,-0.782647,-0.960906,0.081912,-0.264443,-0.670431,0.727195,0.147191,-0.738609,0.18363,-0.64861,-0.571856,0.816706,-0.077029,-0.429395,0.311289,-0.847743,-0.378063,0.902371,-0.206824,-0.055605,0.391675,-0.918393,-0.13892,0.95706,-0.254402,0.326304,0.412885,-0.850307,0.107425,0.971526,-0.211035,0.659017,0.371746,-0.653798,0.321085,0.943327,-0.083499,0.901852,0.339824,-0.266701,0.442701,0.884884,0.144688,-0.807428,0.267891,0.525559,-0.614429,0.181585,0.767754,-0.33903,0.145024,0.929502,-0.023164,0.163762,0.986206,0.285073,0.234993,0.929228,0.538804,0.347819,0.767235,0.699362,0.485092,0.524918,0.917783,-0.362011,0.162999,0.737083,-0.516495,0.435743,0.451521,-0.643483,0.618061,0.104587,-0.723655,0.68218,-0.250893,-0.744743,0.618366,-0.560839,-0.703604,0.436293,-0.778039,-0.606464,0.163732,0.763787,-0.64388,-0.04474,0.496109,-0.832331,-0.247108,0.417554,-0.899503,-0.128544,0.623707,-0.763665,0.166662,0.402326,-0.862117,0.307993,0.293405,-0.95468,-0.049287,0.142613,-0.989532,-0.021424,0.133366,-0.924253,0.357707,-0.142216,-0.940611,0.308237,-0.011902,-0.998718,-0.049165,-0.146641,-0.980804,-0.1283,-0.382488,-0.908689,0.167089,-0.55089,-0.833399,-0.04416,-0.241066,-0.938597,-0.246773,0.580706,-0.783898,-0.219672,-0.606769,-0.769951,-0.197394,-0.734153,-0.14182,-0.663961,0.328043,-0.459548,-0.825312,-0.336741,-0.915647,-0.219428,-0.185522,-0.532914,-0.825556,0.744957,0.071383,-0.663228,0.799738,-0.567186,-0.196692,0.069704,-0.480667,-0.874111,0.063723,-0.48265,-0.87347,-0.352,0.252785,-0.901181,-0.053987,0.37788,-0.924253,0.081423,-0.483383,-0.871578,0.075991,-0.480941,-0.87344,0.26719,0.342021,-0.900876,0.541002,0.255348,-0.801294,0.059114,-0.486496,-0.87167,-0.59032,0.092318,-0.801843,0.960356,-0.093112,-0.262703,0.669362,-0.714835,0.202246,0.755058,-0.276345,-0.594562,0.55855,-0.829249,0.01706,0.448622,-0.431593,-0.782586,0.371166,-0.923429,-0.097385,0.073428,-0.520646,-0.850581,0.142674,-0.979797,-0.140019,-0.312815,-0.529862,-0.788263,-0.094699,-0.99002,-0.104129,-0.650929,-0.457991,-0.605365,-0.306681,-0.951781,0.006531,-0.899686,-0.346965,-0.264779,-0.44731,-0.871975,0.198859,-0.706168,-0.438337,0.555986,-0.54857,-0.280587,0.787591,-0.296823,-0.154057,0.942412,0.010743,-0.078036,0.996887,0.327311,-0.064058,0.942717,0.604694,-0.114292,0.788171,0.800684,-0.221076,0.55678,0.776269,0.618732,0.120548,0.555712,0.738914,0.380963,0.243538,0.795434,0.554918,-0.112735,0.779717,0.615864,-0.458876,0.694174,0.554552,-0.74221,0.551775,0.380322,-0.919553,0.374218,0.119694,0.244636,0.913938,-0.323771,0.551836,0.826777,-0.108982,0.380871,0.919919,0.092868,0.148778,0.966155,-0.210578,0.013062,0.990753,-0.134983,0.138859,0.963744,0.227699,-0.137333,0.951567,0.274972,-0.14182,0.983917,-0.108463,-0.292276,0.946715,-0.135105,-0.405683,0.88525,0.227424,-0.625324,0.774865,0.092349,-0.415448,0.884823,-0.210883,-0.492538,0.807642,-0.324168,-0.76281,0.637226,-0.109653,0.353069,0,-0.935575,-0.053987,0,-0.998535,0.322428,0.154241,-0.933927,0.680258,0,-0.732933,0.625629,0.275094,-0.729972,0.905698,0,-0.423872,0.835231,0.354839,-0.420057,0.998535,0,-0.053987,0.922513,0.382672,-0.049867,0.946135,0,0.32374,0.875637,0.354839,0.327555,0.755333,0,0.655324,0.700674,0.275094,0.658284,0.674917,0.65566,0.33842,0.545091,0.508286,0.666677,0.706076,0.707083,-0.038148,0.63451,0.65566,-0.409223,0.470016,0.508286,-0.72158,0.235176,0.285012,-0.929197,0.104617,0.372387,-0.922147,0.237159,0.664113,-0.708975,0.334117,0.856685,-0.392987,0.382122,0.923856,-0.020661,0.374554,0.856685,0.354656,0.312204,0.664113,0.679281,0.020203,0.927274,0.373821,0.037507,0.718833,0.694143,-0.020203,0.927274,-0.373821,-0.037507,0.718833,-0.694143,-0.049379,0.403088,-0.913816,-0.203436,0.372387,-0.905484,-0.312204,0.664113,-0.679281,-0.374554,0.856685,-0.354656,-0.382122,0.923856,0.020661,-0.334117,0.856685,0.392987,-0.237159,0.664113,0.708975,-0.63451,0.65566,0.409223,-0.470016,0.508286,0.72158,-0.706076,0.707083,0.038148,-0.674917,0.65566,-0.33842,-0.545091,0.508286,-0.666677,-0.333995,0.285012,-0.898404,-0.421247,0.154241,-0.893704,-0.700674,0.275094,-0.658284,-0.875637,0.354839,-0.327555,-0.922513,0.382672,0.049867,-0.835231,0.354839,0.420057,-0.625629,0.275094,0.729972,-0.905698,0,0.423872,-0.680258,0,0.732933,-0.998535,0,0.053987,-0.946135,0,-0.32374,-0.755333,0,-0.655324,-0.451888,0,-0.892056,-0.421247,-0.154241,-0.893704,-0.700674,-0.275094,-0.658284,-0.875637,-0.354839,-0.327555,-0.922513,-0.382672,0.049867,-0.835231,-0.354839,0.420057,-0.625629,-0.275094,0.729972,-0.63451,-0.65566,0.409223,-0.470016,-0.508286,0.72158,-0.706046,-0.707083,0.038148,-0.674917,-0.65566,-0.33842,-0.545091,-0.508286,-0.666677,-0.333995,-0.285012,-0.898434,-0.203436,-0.372387,-0.905484,-0.312204,-0.664113,-0.679281,-0.374554,-0.856685,-0.354656,-0.382122,-0.923856,0.020661,-0.334117,-0.856685,0.392956,-0.237159,-0.664113,0.708975,0.020203,-0.927274,0.373821,0.037507,-0.718833,0.694143,-0.020203,-0.927274,-0.373821,-0.037507,-0.718833,-0.694113,-0.049409,-0.403088,-0.913816,0.104617,-0.372387,-0.922147,0.237159,-0.664113,-0.708975,0.334117,-0.856685,-0.392956,0.382122,-0.923856,-0.020661,0.374554,-0.856685,0.354656,0.312204,-0.664113,0.679281,0.674917,-0.65566,0.33842,0.545091,-0.508286,0.666677,0.706046,-0.707083,-0.038148,0.63451,-0.65566,-0.409223,0.470016,-0.508286,-0.72158,0.235176,-0.285012,-0.929197,0.322428,-0.154241,-0.933927,0.625629,-0.275094,-0.729972,0.835231,-0.354839,-0.420057,0.922513,-0.382672,-0.049867,0.875637,-0.354839,0.327555,0.700674,-0.275094,0.658284,-0.256874,0.127689,0.957945,-0.282235,0,0.959319,-0.068087,0,0.99765,-0.05884,0.046632,0.997162,-0.184667,0.235939,0.954039,-0.032441,0.086154,0.995727,-0.076601,0.308237,0.94821,0.006989,0.112583,0.993591,0.050874,0.333628,0.941313,0.05356,0.12186,0.991089,0.178381,0.308237,0.934416,0.100131,0.112583,0.988556,0.286477,0.235939,0.928556,0.139622,0.086154,0.986419,0.358684,0.127689,0.92465,0.16599,0.046632,0.985015,0.384014,0,0.923307,0.175268,0,0.984497,0.358654,-0.127659,0.92468,0.16599,-0.046632,0.985015,0.286416,-0.235878,0.928587,0.139622,-0.086154,0.986419,0.17835,-0.308176,0.934446,0.100162,-0.112583,0.988556,0.050874,-0.333567,0.941313,0.05356,-0.12186,0.991089,-0.076571,-0.308176,0.94821,0.006989,-0.112583,0.993591,-0.184637,-0.235878,0.95407,-0.032441,-0.086154,0.995727,-0.256844,-0.127659,0.957976,-0.05884,-0.046632,0.997162,0.053987,0,0.998535,0.156499,0,0.987671,0.148686,0.039399,0.988067,0.126408,0.072817,0.989288,0.093051,0.095157,0.991089,0.053682,0.102969,0.993225,0.014313,0.095157,0.995331,-0.019013,0.072817,0.997162,-0.041292,0.039399,0.998352,-0.049104,0,0.998779,-0.041261,-0.039399,0.998352,-0.018952,-0.072756,0.997162,0.014344,-0.095096,0.995361,0.053682,-0.102908,0.993225,0.09302,-0.095096,0.991089,0.126347,-0.072787,0.989288,0.148656,-0.039399,0.988098,-0.407849,0.695425,0.591601,0.205603,0.695395,0.688528,0.398358,0.707358,-0.58385,-0.173711,0.711356,-0.68099,-0.516892,0.694388,0.500595,0.020203,0.686483,0.726829,0.512558,0.715354,-0.474868,0.123844,0.714835,-0.688192,-0.618366,0.7687,0.163427,-0.327158,0.773797,0.542344,0.596759,0.765618,-0.240059,0.355815,0.767418,-0.53328,-0.716849,0.68511,-0.129276,-0.581439,0.675222,0.45381,0.720756,0.692953,-0.016968,0.562334,0.66274,-0.494491,-0.69039,0.706504,-0.155461,-0.597766,0.709372,0.373363,0.667714,0.709616,0.22486,0.64626,0.719138,-0.255257,-0.651051,0.696951,-0.300607,-0.620838,0.684103,0.382763,0.622272,0.690664,0.368389,0.644948,0.701956,-0.302042,-0.646504,0.696127,-0.312021,-0.681783,0.686728,0.252113,0.663625,0.6863,0.297555,0.664754,0.696707,-0.269539,-0.626942,0.700552,-0.340739,-0.667257,0.685171,0.292032,0.662435,0.681631,0.310678,0.633656,0.697714,-0.334117,-0.553453,0.558275,0.61803,-0.724937,0.604419,-0.330241,0.237556,0.545732,0.803552,0.634266,0.548662,-0.544633,-0.331217,0.548418,0.767785,0.734397,0.591601,-0.332621,-0.471816,0.625538,0.621357,0.78872,0.606739,0.098636,-0.64388,0.535508,0.546434,0.772362,0.552751,0.312845,-0.595874,0.46202,0.656819,0.618519,0.467879,0.631245,-0.666829,0.53206,0.521714,0.634266,0.541124,0.55211,-0.61568,0.505112,0.604785,0.588,0.50032,0.635517,-0.164403,0.778527,0.60564,0.160253,0.786706,-0.596118,-0.187994,0.743065,0.642232,0.449904,0.783166,-0.429151,-0.627674,0.771599,0.102939,0.471603,0.779717,-0.411817,-0.598193,0.793359,0.112796,0.580798,0.795526,-0.172521,-0.582263,0.78695,0.204016,0.58388,0.797235,0.153081,-0.561632,0.8193,-0.115268,0.553697,0.824854,-0.114109,-0.529527,0.841426,0.107486,0.53032,0.836299,0.13892,-0.278603,0.536912,-0.796289,-0.61269,0.54976,0.567736,0.027192,0.614032,-0.788781,-0.632984,0.613147,0.472549,0.546525,0.548418,-0.632832,-0.818384,0.5562,0.144383,0.513504,0.46437,-0.721549,-0.792108,0.512192,-0.33195,0.703604,0.589312,-0.396954,-0.74926,0.583331,-0.313456,0.662526,0.50792,-0.550462,-0.674856,0.50325,-0.539689,0.682516,0.553056,-0.477767,-0.650075,0.549303,-0.524979,0.643727,0.525712,-0.556047,-0.647114,0.529099,-0.548875,0.421644,0.606006,-0.67449,-0.421247,0.604236,-0.676321,0.505509,-0.670064,-0.543535,0.765557,-0.58919,-0.258309,-0.745598,-0.636677,-0.196661,-0.523484,-0.668874,-0.527726,0.761711,-0.644032,-0.07065,0.673116,-0.739219,0.020173,-0.719169,-0.694784,-0.003357,-0.742332,-0.653645,-0.14713,0.784814,-0.573046,-0.235878,0.753197,-0.657491,-0.019318,-0.769951,-0.638081,-0.00061,-0.792657,-0.564776,-0.22953,0.784204,-0.555345,-0.276711,0.733268,-0.677297,-0.059603,-0.743278,-0.667135,0.049196,-0.809503,-0.5562,-0.187872,0.754112,-0.553026,-0.354137,0.7322,-0.642109,-0.226966,-0.700613,-0.688467,0.187353,-0.785363,-0.614521,0.074343,0.669393,-0.597613,-0.441267,0.586016,-0.695059,-0.416425,-0.613483,-0.692007,0.380413,-0.682821,-0.669027,0.293466,0.292673,-0.593463,-0.749718,0.293893,-0.667745,-0.683889,-0.346538,-0.739799,0.576708,-0.430067,-0.687857,0.584674,0.068056,-0.606159,-0.792413,0.073244,-0.661885,-0.745994,-0.166906,-0.730644,0.662008,-0.24836,-0.7069,0.662252,0.239967,-0.500687,-0.83166,-0.225227,-0.497513,-0.837672,0.707694,-0.706412,-0.009461,-0.7051,-0.704215,-0.082858,0.725455,-0.673849,-0.139988,-0.727226,-0.663167,-0.176885,0.719474,-0.672903,-0.17185,-0.73336,-0.666372,-0.134587,0.716575,-0.648274,-0.257363,-0.724357,-0.685263,0.075106,0.692496,-0.646382,-0.320322,-0.641194,-0.706565,0.299326,0.396863,-0.65743,-0.640492,-0.391308,-0.724967,0.56679,0.184362,-0.651418,-0.735954,-0.193121,-0.738578,0.645863,0.728446,-0.679983,0.083316,-0.725883,-0.687155,0.03003,0.76281,-0.646474,0.011353,-0.76574,-0.636769,-0.090121,0.758751,-0.650594,0.030946,-0.752434,-0.65627,0.056063,0.712333,-0.699911,-0.051546,-0.735313,-0.660939,0.149876,0.739769,-0.64214,-0.200873,-0.607135,-0.712607,0.351451,0.558428,-0.710898,-0.427442,-0.492141,-0.635151,0.595233,0.328776,-0.632527,-0.701254,-0.13184,-0.729606,0.67101,0.721366,-0.691458,0.037965,-0.718894,-0.695059,0.007355,0.711661,-0.701376,0.039949,-0.685995,-0.727592,0.002869,0.661184,-0.743767,0.097812,-0.667196,-0.735496,0.117618,0.695822,-0.717215,0.037019,-0.664449,-0.731376,0.153447,0.725974,-0.667287,-0.166295,-0.651112,-0.691946,0.311838,0.639271,-0.654866,-0.403027,-0.493057,-0.748405,0.443556,0.335856,-0.668233,-0.663778,-0.213385,-0.711753,0.66921,0.161138,-0.65453,-0.738639,-0.039735,-0.743919,0.667074,-0.219337,-0.652791,-0.725028,-0.000122,-0.708396,0.705771,0.247902,0.185553,-0.950835,0.481277,0.155705,-0.862606,0.549913,0.169652,-0.817774,0.825617,0.109287,-0.553514,0.896969,0.144078,-0.41792,0.975463,0.098972,-0.19657,0.952635,0.140599,-0.269631,0.998444,0.049623,0.025269,0.971221,0.114597,-0.208716,0.985961,0.030427,0.164098,0.98056,0.108585,-0.163274,0.989898,0.035493,0.137211,0.998108,0.050356,-0.034883,0.97589,-0.014313,0.217689,-0.136784,-0.113315,0.984069,-0.281716,-0.090976,0.955138,-0.570727,-0.080233,0.817164,-0.584063,-0.063784,0.809168,-0.827723,-0.056612,0.558214,-0.897702,-0.013306,0.440382,-0.997772,0.050874,0.042634,-0.974914,0.122166,-0.185919,-0.989044,0.045503,0.140385,-0.997894,0.048128,0.043428,-0.984497,0.112125,-0.134678,-0.957884,0.117038,-0.262154,-0.990539,0.061281,-0.122562,-0.95706,0.064943,-0.282479,0.962859,0.027741,-0.268532,0.710593,0.097385,-0.696799,0.999512,-0.006836,-0.030427,0.978362,0.047029,-0.201453,0.997162,0.032197,-0.067995,0.926786,0.11536,-0.357402,0.99057,0.041597,-0.130406,0.909513,0.122501,-0.397137,0.931578,0.11298,-0.345531,0.884274,0.156133,-0.440077,0.76574,0.116764,-0.632405,0.775201,0.149358,-0.613758,0.349742,0.143315,-0.925779,0.297983,0.170934,-0.939116,0.056429,0.151402,-0.986847,0.021271,0.174322,-0.984436,0.255013,0.138401,-0.956969,-0.729972,0.068728,-0.679983,-0.961333,0.011322,-0.275063,-0.997497,0.003388,-0.070589,-0.939695,0.129948,-0.316324,-0.997772,0.051759,-0.041627,-0.999054,0.031281,0.02942,-0.980071,-0.006104,0.198523,-0.940153,-0.012482,0.340434,-0.867519,-0.059786,0.493759,-0.642781,-0.076205,0.76223,-0.541642,-0.114658,0.832728,-0.402509,-0.100436,0.909879,-0.268563,-0.132664,0.95407,-0.246406,0.133641,-0.959899,-0.998077,-0.023255,0.057314,-0.989349,-0.007172,0.145299,-0.997864,-0.004517,0.064821,-0.975738,-0.005097,0.218757,-0.97879,0.030091,0.202521,-0.965545,-0.023408,0.259163,-0.95352,-0.006378,0.301248,-0.894192,-0.057222,0.443953,-0.707266,-0.087771,0.701468,-0.283792,-0.132206,0.949705,-0.023438,-0.136723,0.990326,-0.092654,-0.126621,0.98761,0.995056,-0.026215,0.095706,0.989929,-0.013794,0.140812,0.978393,-0.014191,0.206214,0.995727,-0.001556,0.092288,0.976348,0.083316,-0.199377,0.848262,0.086978,-0.522324,0.480575,0.133671,-0.866695,0.247139,0.146733,-0.957793,-0.387951,0.147435,-0.909787,0.255318,0.074129,-0.963988,0.258492,0.151097,-0.9541,0.574084,0.113895,-0.810816,0.609302,0.058535,-0.790735,0.499435,0.069948,-0.863491,0.544328,0.138218,-0.827387,0.877743,0.064974,-0.474654,0.876247,0.03769,-0.480331,0.903775,0.037233,-0.426313,0.905789,0.074129,-0.417127,0.996399,0.005707,-0.084567,0.99942,0.002411,-0.033326,0.982818,0.021393,-0.183203,0.984191,0.047029,-0.170598,0.973296,-0.041597,0.225715,0.950346,-0.025666,0.310068,0.98648,0.046724,-0.156957,0.987945,0.034425,-0.150731,0.924619,-0.068148,0.374706,0.885495,-0.014832,0.4644,0.99411,0.041688,-0.099857,0.994293,0.023804,-0.103916,0.930601,-0.086306,0.355632,0.880612,-0.025513,0.473098,0.998657,-0.002533,0.051546,0.999786,0.013092,0.015748,0.889584,-0.099734,0.445692,0.803552,-0.058535,0.592334,0.068453,0.014252,0.997528,-0.016175,0.385235,0.922666,-0.245796,0.445723,0.860744,-0.26429,0.012177,0.964354,-0.312449,-0.008911,0.949858,-0.444685,0.207617,0.871273,-0.5103,0.268349,0.817011,-0.587695,0.008759,0.809015,-0.632557,0.017121,0.774285,-0.683126,0.336741,0.648,-0.789605,0.437696,0.430006,-0.882839,0.022095,0.469131,-0.885433,0.026826,0.463942,-0.813379,0.537004,0.22364,-0.747246,0.658895,-0.086184,-0.999573,0.021912,-0.018983,-0.961486,0.027802,0.273415,-0.841975,0.496231,0.211676,-0.88757,0.453536,-0.080386,-0.983154,0.042451,-0.177648,-0.999573,0.024232,0.015381,-0.774529,0.631703,-0.031953,-0.775811,0.555193,-0.299753,-0.89874,0.039003,-0.436689,-0.999786,0.020508,9.2e-05,-0.725486,0.684439,-0.071932,-0.729972,0.593036,-0.339702,-0.855159,0.034425,-0.517197,0.937529,-0.002014,-0.347819,0.946196,-0.034486,-0.321635,0.782311,0.008484,-0.622791,0.843074,0.003021,-0.537767,0.97647,-0.004425,-0.215583,0.986389,-0.034974,-0.160619,0.917692,0.044923,-0.394696,0.880703,0.023591,-0.473067,0.967956,0.034364,-0.248634,0.977813,-0.018067,-0.208655,0.856014,0.054201,-0.514054,0.806726,0.061739,-0.587634,0.954833,0.043489,-0.293863,0.965819,0.005493,-0.259133,0.836634,0.065981,-0.543748,0.793908,0.064882,-0.604541,0.874264,0.030671,-0.484451,0.889676,0.040712,-0.454756,0.837458,0.072695,-0.541612,0.794336,0.040742,-0.606067,0.697256,0.052705,-0.714835,0.709128,0.084658,-0.699973,0.697409,0.101718,-0.709403,0.670461,0.054628,-0.739921,0.246437,0.067232,-0.966796,0.273873,0.114933,-0.954863,0.183691,0.133671,-0.973815,0.124577,0.069216,-0.989776,-0.050478,0.069369,-0.996307,-0.018159,0.120579,-0.992523,-0.084078,0.135929,-0.987121,-0.131443,0.069979,-0.98883,0.372326,0.070864,-0.925352,0.536729,0.026978,-0.843287,-0.8605,0.025727,-0.508744,-0.629597,0.552507,-0.546159,-0.824458,0.503098,-0.259102,-0.910367,0.055483,-0.410016,-0.846889,0.511277,-0.146062,-0.942686,0.052705,-0.329386,-0.866512,0.035859,-0.497787,-0.741325,0.578967,-0.339427,-0.858394,0.497177,-0.126194,-0.958312,0.057253,-0.279855,-0.874905,0.479995,-0.063875,-0.9841,0.060396,-0.166967,-0.916471,0.390637,0.086398,-0.997925,0.064119,0.00531,-0.995636,0.033815,0.086947,-0.89877,0.400739,0.177679,-0.866543,0.326609,0.377361,-0.937559,0.052187,0.343791,-0.757134,0.022095,0.652852,-0.670186,0.359569,0.64922,-0.560198,0.37608,0.738029,-0.642811,0.04059,0.764916,-0.566668,0.01886,0.823695,-0.465407,0.399274,0.789911,-0.332011,0.338176,0.880551,-0.376965,0.039186,0.925382,-0.145268,0.062197,-0.987426,-0.354106,0.466872,-0.810297,-0.948271,0.0459,0.314097,-0.871181,0.468184,0.147557,-0.792077,0.545976,0.272896,-0.848659,0.025941,0.528245,-0.950743,0.042604,0.306986,-0.861904,0.477462,0.170537,-0.891873,0.043397,0.450148,-0.845454,0.45439,0.280526,-0.78872,0.497543,0.361003,-0.844905,0.028047,0.534104,-0.889096,0.041292,0.455824,-0.851314,0.424329,0.308481,-0.798212,0.407483,0.443587,-0.763207,0.026704,0.645589,-0.764458,0.030885,0.64391,-0.808649,0.338664,0.481002,-0.538102,0.008271,0.84283,-0.624317,0.273019,0.731864,-0.074282,0.030824,0.996734,-0.204321,0.364757,0.908383,0.085971,-0.008698,0.996246,0.02234,0.258431,0.965758,-0.183721,0.030152,0.982482,-0.178777,-0.006836,0.983856,0.96881,-0.116489,0.218635,0.951048,-0.053407,0.304331,0.956816,-0.112796,0.2678,0.943724,-0.042756,0.327891,0.943114,-0.087954,0.320536,0.926939,-0.019013,0.374676,0.981597,-0.060091,0.181158,0.970031,-0.017243,0.242347,0.989868,-0.001526,-0.141911,0.99469,0.003235,-0.102847,0.875057,0.047029,-0.481674,0.895291,0.028077,-0.444533,0.540757,0.10184,-0.834956,0.568133,0.058626,-0.820826,0.351695,0.101993,-0.930509,0.415052,0.056154,-0.908048,-0.563341,0.076052,-0.822687,-0.648488,0.037049,-0.760308,0.039888,-0.309397,0.950072,-0.352031,-0.381146,0.854854,-0.171117,-0.40907,0.896298,-0.575793,-0.404553,0.71044,-0.644704,-0.260598,0.718589,-0.870846,-0.284005,0.401166,-0.781457,-0.350444,0.51619,-0.930174,-0.364177,0.045686,-0.853847,-0.413404,0.316172,-0.895169,-0.437025,-0.087313,-0.841273,-0.445631,0.305948,-0.87289,-0.456557,-0.171972,-0.85464,-0.48088,0.195746,-0.85229,-0.471206,-0.226936,-0.865047,-0.464003,0.19071,-0.839625,-0.464156,-0.282083,0.393048,0.020417,-0.919279,-0.036958,0.02002,-0.999115,0.55562,0.02002,-0.831172,0.257454,0.019593,-0.966063,0.867641,0.055879,-0.493973,0.728996,0.05295,-0.682455,0.993286,-0.007599,-0.115207,0.875149,-0.00705,-0.483779,0.980224,0.033784,0.194861,0.95996,0.054109,-0.274758,0.934477,0.049532,0.35255,0.968719,0.060121,-0.24073,0.95175,0.029603,0.305368,0.976409,0.030824,-0.21366,0.960967,0.034822,0.274361,0.941191,0.031678,-0.336314,-0.224128,-0.165746,0.960356,0.071566,-0.443922,0.893185,-0.381085,-0.263131,0.886258,-0.580798,-0.368664,0.72573,-0.732475,-0.421674,0.53444,-0.72573,-0.486404,0.486496,-0.743065,-0.532426,0.405377,-0.718406,-0.529313,0.451308,-0.226753,-0.503952,0.833399,-0.450514,-0.337687,0.826411,-0.774957,-0.454817,0.438795,-0.830042,-0.499313,0.24839,-0.786248,-0.615528,0.053652,-0.756676,-0.653615,0.012543,-0.743004,-0.669179,0.009949,-0.634602,0.012574,-0.772729,0.609302,0.006623,-0.792871,0.860164,0.020936,-0.509568,0.999786,-0.014283,-0.014283,0.960875,-0.003571,0.276894,0.877773,0.034913,0.477737,0.867946,0.021393,0.49617,0.807215,0.01294,0.590075,0.259621,0,-0.965697,0.501816,0,-0.864956,0.916959,-0.010102,-0.398785,0.978271,-0.018189,-0.206458,0.995453,0.025971,-0.091586,0.999084,0.024018,-0.034974,0.997009,0.004975,0.076968,-0.515305,-0.44496,0.732414,-0.697439,-0.40025,0.594409,-0.916715,-0.373638,0.141301,-0.894314,-0.414624,-0.168035,-0.799799,-0.508255,-0.319346,-0.750359,-0.526353,-0.399823,-0.731437,-0.528733,-0.430586,-0.743736,-0.514512,-0.42674,-0.529283,-0.421003,-0.736595,-0.128758,0.00647,-0.991638,0.127567,0.006012,-0.991791,0.703909,0.016846,-0.710074,0.784783,-0.014252,-0.619587,0.835475,0.028718,-0.548753,0.834284,0.035646,-0.550127,0.886288,0.013703,-0.462874,0.8623,0.009003,-0.506241,0.530198,0.002503,-0.847865,0.052614,0.020081,0.998383,-0.361248,0.020539,0.932218,-0.187902,0.020478,0.981964,-0.623432,0.020295,0.781579,-0.781549,0.071871,0.619678,-0.784539,0.074679,0.615528,-0.832667,0.016968,0.553484,-0.996124,0.016968,0.086123,-0.952879,0.021088,0.302561,-0.998321,0.022523,-0.05295,-0.948302,0.026246,0.316233,-0.986236,0.023225,-0.163671,-0.979034,0.01175,0.203192,-0.965178,0.029145,-0.259865,-0.976775,0.038545,0.210639,-0.95407,0.032136,-0.29783,0.358898,0.020417,-0.933134,-0.008271,0.020081,-0.999756,0.531083,0.020051,-0.847041,0.283151,0.019501,-0.958861,0.7875,0.088015,-0.609973,0.819178,0.07947,-0.567949,0.993225,-0.03531,-0.110691,0.881039,-0.034425,-0.471755,0.993652,0.027131,0.109012,0.977966,0.042695,-0.20423,0.949431,0.043092,0.310953,0.982391,0.046663,-0.180822,0.960967,0.016816,0.27604,0.980926,0.029298,-0.192114,0.968535,0.036897,0.24601,0.955626,0.031922,-0.292764,-0.226936,0.01294,0.973815,0.060701,0.006439,0.998108,-0.450453,0.043001,0.89172,-0.635731,0.014344,0.771752,-0.854122,-0.013184,0.519883,-0.844935,0.014283,0.534654,-0.875057,-0.007904,0.483902,-0.855708,0.023286,0.516861,-0.261971,0,0.965056,-0.519089,0,0.854701,-0.873501,0.004761,0.48677,-0.978607,-0.014466,0.205084,-0.99411,-0.010132,0.10773,-0.997894,-0.012879,0.063234,-0.999664,0.020142,0.014313,-0.576006,0.013031,-0.817316,0.591754,0.006745,-0.806055,0.804956,0.03357,-0.592334,0.999207,-0.037263,0.013489,0.981262,-0.013245,0.192175,0.875301,0.027863,0.482742,0.856014,0.000824,0.516923,0.824732,0.018891,0.565172,0.92877,-0.02179,-0.369976,0.960356,-0.036866,-0.276284,0.999969,0.007416,0.00119,0.99881,-0.000214,0.048219,0.997009,0.0141,0.075808,-0.559343,0.006561,0.828883,-0.759301,0.006561,0.650685,-0.9682,0.047334,0.245521,-0.985229,0.009888,-0.170904,-0.955016,-0.008545,-0.296396,-0.907315,0.002564,-0.420423,-0.872677,0.023774,-0.487686,-0.882321,0.009491,-0.470504,-0.528672,0,-0.848781,-0.107517,0.006592,-0.994171,0.149907,0.006012,-0.988678,0.771569,0.024445,-0.635639,0.767266,-0.036927,-0.640248,0.90289,0.011292,-0.42967,0.886013,0.019807,-0.463179,0.900937,0.020295,-0.433424,0.87756,0.009339,-0.479324,0.530045,0,-0.847926,-0.40788,-0.695425,0.591571,-0.173711,-0.711356,-0.68099,0.398389,-0.707358,-0.58385,0.205603,-0.695395,0.688528,-0.516923,-0.694388,0.500595,0.123844,-0.714866,-0.688192,0.512558,-0.715354,-0.474868,0.020203,-0.686483,0.726829,-0.618366,-0.7687,0.163396,0.355815,-0.767418,-0.533311,0.596759,-0.765618,-0.240089,-0.327189,-0.773797,0.542344,-0.716849,-0.68511,-0.129276,0.562334,-0.66274,-0.494491,0.720756,-0.692953,-0.016938,-0.581439,-0.675222,0.45381,-0.69042,-0.706473,-0.155461,0.646229,-0.719138,-0.255257,0.667684,-0.709616,0.224891,-0.597766,-0.709372,0.373363,-0.651051,-0.696951,-0.300577,0.644948,-0.701987,-0.302011,0.622272,-0.690664,0.368389,-0.620838,-0.684103,0.382763,-0.646535,-0.696127,-0.312021,0.664754,-0.696707,-0.269539,0.663625,-0.6863,0.297525,-0.681783,-0.686728,0.252113,-0.626942,-0.700552,-0.340739,0.633656,-0.697714,-0.334117,0.662435,-0.681631,0.310678,-0.667226,-0.685171,0.292032,-0.724967,-0.604419,-0.33021,-0.553453,-0.558275,0.61803,0.634236,-0.548692,-0.544633,0.237587,-0.545701,0.803583,0.734611,-0.591632,-0.332041,-0.33076,-0.548479,0.767937,0.788812,-0.606677,0.098453,-0.471969,-0.625446,0.621296,0.772423,-0.55269,0.312815,-0.643941,-0.535478,0.546403,0.618732,-0.467849,0.631062,-0.595996,-0.462081,0.656697,0.634083,-0.541246,0.552202,-0.666738,-0.53206,0.521867,0.588,-0.500412,0.635426,-0.615864,-0.50502,0.604663,0.160192,-0.786706,-0.596149,-0.164403,-0.778558,0.605609,0.45088,-0.78283,-0.428755,-0.187109,-0.742668,0.642933,0.471328,-0.77987,-0.411786,-0.627491,-0.771783,0.102847,0.580645,-0.795556,-0.172826,-0.598315,-0.793298,0.112491,0.583728,-0.797449,0.152562,-0.582171,-0.787133,0.20365,0.554094,-0.82458,-0.114078,-0.561785,-0.819147,-0.115421,0.53029,-0.836299,0.139042,-0.529283,-0.841609,0.107364,-0.61272,-0.54973,0.567736,-0.278634,-0.536882,-0.796289,-0.632923,-0.613056,0.472762,0.027223,-0.614032,-0.788781,-0.818354,-0.556169,0.144658,0.54677,-0.548387,-0.632679,-0.792047,-0.512223,-0.332041,0.513474,-0.464339,-0.72158,-0.749321,-0.58327,-0.313395,0.703604,-0.589373,-0.396924,-0.674642,-0.50325,-0.539964,0.662313,-0.50795,-0.550707,-0.650166,-0.549303,-0.524888,0.682607,-0.553026,-0.477645,-0.647114,-0.529069,-0.548875,0.643727,-0.525712,-0.556078,-0.421247,-0.604236,-0.676321,0.421644,-0.606006,-0.67449,0.505509,0.670064,-0.543535,-0.523515,0.668905,-0.527726,-0.745598,0.636677,-0.196661,0.765557,0.58919,-0.258309,0.761711,0.644032,-0.07065,-0.742332,0.653645,-0.14713,-0.719169,0.694784,-0.003357,0.673116,0.739219,0.020173,0.784814,0.573046,-0.235878,-0.792657,0.564776,-0.22953,-0.769951,0.638081,-0.00061,0.753197,0.657491,-0.019318,0.784204,0.555345,-0.276711,-0.809503,0.5562,-0.187872,-0.743278,0.667135,0.049196,0.733268,0.677297,-0.059603,0.754112,0.553026,-0.354137,-0.785363,0.614521,0.074343,-0.700613,0.688467,0.187353,0.7322,0.642109,-0.226966,0.669393,0.597613,-0.441267,-0.682821,0.669027,0.293466,-0.613483,0.692007,0.380413,0.586016,0.695059,-0.416395,0.292673,0.593463,-0.749718,-0.430067,0.687857,0.584674,-0.346538,0.739799,0.576708,0.293863,0.667745,-0.683889,0.068087,0.606159,-0.792413,-0.24836,0.7069,0.662252,-0.166906,0.730644,0.662008,0.073244,0.661916,-0.745964,0.239967,0.500687,-0.83166,-0.225227,0.497513,-0.837672,0.707694,0.706412,-0.009461,-0.7051,0.704215,-0.082858,0.725455,0.673849,-0.139988,-0.727226,0.663198,-0.176885,0.719474,0.672903,-0.17185,-0.73336,0.666372,-0.134587,0.716575,0.648274,-0.257363,-0.724357,0.685263,0.075106,0.692465,0.646382,-0.320322,-0.641194,0.706565,0.299326,0.396863,0.65743,-0.640492,-0.391278,0.724967,0.56679,0.184332,0.651418,-0.735954,-0.193121,0.738578,0.645894,0.728446,0.679983,0.083316,-0.725883,0.687155,0.03003,0.76281,0.646474,0.011353,-0.76574,0.636769,-0.090121,0.758751,0.650594,0.030946,-0.752434,0.65627,0.056063,0.712333,0.699911,-0.051546,-0.735313,0.660939,0.149876,0.739769,0.64214,-0.200873,-0.607135,0.712607,0.351482,0.558428,0.710898,-0.427442,-0.492141,0.635151,0.595264,0.328776,0.632527,-0.701254,-0.13184,0.729606,0.67101,0.721366,0.691458,0.037965,-0.718894,0.695059,0.007355,0.711661,0.701376,0.039949,-0.685995,0.727592,0.002869,0.661184,0.743767,0.097812,-0.667196,0.735496,0.117618,0.695822,0.717215,0.037019,-0.664449,0.731376,0.153447,0.725974,0.667287,-0.166295,-0.651112,0.691946,0.311808,0.639271,0.654866,-0.403027,-0.493057,0.748405,0.443556,0.335856,0.668233,-0.663778,-0.213385,0.711753,0.66921,0.161138,0.65453,-0.738639,-0.039735,0.743889,0.667074,-0.000122,0.708396,0.705771,-0.219367,0.652791,-0.725059,0.247902,-0.185553,-0.950835,0.481277,-0.155705,-0.862606,0.549944,-0.169652,-0.817774,0.825617,-0.109287,-0.553514,0.896969,-0.144078,-0.41792,0.975463,-0.098972,-0.196539,0.952635,-0.140599,-0.269631,0.998444,-0.049623,0.025269,0.971221,-0.114597,-0.208716,0.985961,-0.030427,0.164098,0.98056,-0.108585,-0.163274,0.989898,-0.035493,0.137211,0.998108,-0.050356,-0.034883,0.97589,0.014313,0.217689,-0.136784,0.113315,0.984069,-0.281716,0.090976,0.955138,-0.570727,0.080233,0.817164,-0.584033,0.063784,0.809168,-0.827723,0.056612,0.558214,-0.897702,0.013306,0.440382,-0.997772,-0.050874,0.042634,-0.974914,-0.122166,-0.185888,-0.989044,-0.045503,0.140416,-0.997894,-0.048128,0.043428,-0.984497,-0.112125,-0.134678,-0.957884,-0.117038,-0.262154,-0.990539,-0.061281,-0.122562,-0.95706,-0.064943,-0.282449,0.962859,-0.027741,-0.268532,0.710593,-0.097385,-0.696799,0.999512,0.006836,-0.030427,0.978362,-0.047029,-0.201453,0.997162,-0.032197,-0.067995,0.926786,-0.11536,-0.357402,0.99057,-0.041597,-0.130406,0.909513,-0.122501,-0.397137,0.931578,-0.11298,-0.345531,0.884274,-0.156133,-0.440077,0.76574,-0.116764,-0.632405,0.775201,-0.149358,-0.613758,0.349742,-0.143315,-0.92581,0.297983,-0.170934,-0.939116,0.056429,-0.151402,-0.986847,0.021271,-0.174322,-0.984436,0.255013,-0.138401,-0.956969,-0.729972,-0.068728,-0.679983,-0.961333,-0.011322,-0.275063,-0.997497,-0.003388,-0.070589,-0.939695,-0.129948,-0.316324,-0.997772,-0.051759,-0.041627,-0.999054,-0.031281,0.02942,-0.980071,0.006104,0.198523,-0.940153,0.012482,0.340434,-0.867519,0.059786,0.493759,-0.642781,0.076205,0.76223,-0.541642,0.114658,0.832728,-0.402478,0.100436,0.909879,-0.268563,0.132664,0.95407,-0.246406,-0.133641,-0.959899,-0.998077,0.023255,0.057314,-0.989349,0.007172,0.145299,-0.997864,0.004517,0.064821,-0.975738,0.005097,0.218757,-0.97879,-0.030091,0.202521,-0.965545,0.023408,0.259163,-0.95352,0.006378,0.301248,-0.894192,0.057222,0.443953,-0.707266,0.087802,0.701468,-0.283792,0.132206,0.949705,-0.023438,0.136723,0.990326,-0.092654,0.126621,0.98761,0.995056,0.026215,0.095706,0.989929,0.013794,0.140812,0.978393,0.014191,0.206214,0.995727,0.001556,0.092288,0.976348,-0.083316,-0.199377,0.848262,-0.086978,-0.522324,0.480575,-0.133671,-0.866695,0.247139,-0.146733,-0.957793,-0.387982,-0.147435,-0.909787,0.255257,-0.074099,-0.964019,0.609272,-0.058504,-0.790796,0.574053,-0.113865,-0.810816,0.258431,-0.151067,-0.954131,0.499405,-0.069918,-0.863521,0.876247,-0.03769,-0.480361,0.877743,-0.064974,-0.474654,0.544298,-0.138188,-0.827387,0.903775,-0.037233,-0.426374,0.99942,-0.002411,-0.033296,0.996399,-0.005707,-0.084567,0.905789,-0.074129,-0.417158,0.982818,-0.021363,-0.183233,0.950346,0.025666,0.310038,0.973296,0.041566,0.225715,0.984191,-0.047029,-0.170629,0.98648,-0.046724,-0.156987,0.885495,0.014801,0.4644,0.924619,0.068117,0.374676,0.987945,-0.034425,-0.150761,0.99411,-0.041688,-0.099857,0.880612,0.025513,0.473098,0.930601,0.086276,0.355632,0.994293,-0.023835,-0.103916,0.998657,0.002533,0.051546,0.803522,0.058535,0.592334,0.889584,0.099704,0.445692,0.999786,-0.013092,0.015778,0.068422,-0.0141,0.997528,-0.264321,-0.012024,0.964324,-0.245827,-0.445631,0.860775,-0.016144,-0.385144,0.922697,-0.312449,0.009095,0.949858,-0.587664,-0.008606,0.809046,-0.5103,-0.268288,0.817042,-0.444685,-0.207526,0.871303,-0.632557,-0.016938,0.774285,-0.882839,-0.021943,0.469131,-0.789636,-0.437605,0.430036,-0.683157,-0.33668,0.648,-0.885464,-0.026704,0.463912,-0.999573,-0.02179,-0.018983,-0.747307,-0.658834,-0.086184,-0.813379,-0.536943,0.22367,-0.961455,-0.02765,0.273446,-0.983154,-0.042299,-0.177648,-0.887631,-0.453475,-0.080386,-0.842006,-0.496139,0.211707,-0.999573,-0.02414,0.015381,-0.89874,-0.03885,-0.436689,-0.775842,-0.555132,-0.299783,-0.77456,-0.631642,-0.031953,-0.999786,-0.020417,9.2e-05,-0.855159,-0.034303,-0.517197,-0.730003,-0.593005,-0.339732,-0.725516,-0.684408,-0.071932,0.937529,0.002014,-0.347819,0.843074,-0.003021,-0.537736,0.782311,-0.008454,-0.622791,0.946226,0.034516,-0.321635,0.97647,0.004425,-0.215583,0.880703,-0.023591,-0.473067,0.917692,-0.044893,-0.394696,0.986389,0.034974,-0.160588,0.967956,-0.034394,-0.248665,0.806726,-0.061739,-0.587634,0.856014,-0.054201,-0.514084,0.977813,0.018067,-0.208655,0.954833,-0.043489,-0.293832,0.793908,-0.064882,-0.604541,0.836634,-0.065981,-0.543748,0.965819,-0.005493,-0.259133,0.874264,-0.030641,-0.484451,0.794336,-0.040712,-0.606067,0.837458,-0.072695,-0.541612,0.889676,-0.040712,-0.454756,0.697256,-0.052705,-0.714835,0.6704,-0.054628,-0.739952,0.697378,-0.101688,-0.709433,0.709128,-0.084628,-0.699973,0.246437,-0.067232,-0.966796,0.124546,-0.069185,-0.989776,0.183691,-0.133671,-0.973846,0.273873,-0.114902,-0.954863,-0.050478,-0.069338,-0.996307,-0.131474,-0.069918,-0.98883,-0.084078,-0.135899,-0.987121,-0.018159,-0.120579,-0.992523,0.536729,-0.026978,-0.843287,0.372356,-0.070864,-0.925352,-0.8605,-0.025605,-0.508744,-0.910367,-0.05533,-0.410016,-0.824488,-0.503037,-0.259102,-0.629627,-0.552446,-0.54619,-0.942717,-0.052553,-0.329386,-0.846919,-0.511246,-0.146092,-0.866543,-0.035707,-0.497818,-0.958342,-0.0571,-0.279824,-0.858425,-0.497147,-0.126225,-0.741356,-0.578906,-0.339427,-0.9841,-0.060244,-0.166936,-0.874935,-0.479934,-0.063875,-0.997925,-0.063936,0.005341,-0.916501,-0.390545,0.086398,-0.995636,-0.033631,0.086947,-0.93759,-0.051973,0.343791,-0.866573,-0.326548,0.377361,-0.898801,-0.400647,0.177679,-0.757134,-0.021943,0.652852,-0.642811,-0.040407,0.764946,-0.560228,-0.376019,0.738029,-0.670217,-0.359478,0.649251,-0.566698,-0.018708,0.823695,-0.376934,-0.039003,0.925382,-0.332011,-0.338115,0.880551,-0.465438,-0.399182,0.789911,-0.145268,-0.062166,-0.987426,-0.354137,-0.466842,-0.810297,-0.948271,-0.045747,0.314066,-0.848689,-0.025788,0.528245,-0.792108,-0.545946,0.272927,-0.871212,-0.468154,0.147557,-0.950743,-0.042451,0.306955,-0.861934,-0.477432,0.170568,-0.891903,-0.043245,0.450117,-0.844935,-0.027894,0.534104,-0.788751,-0.497482,0.361034,-0.845485,-0.454329,0.280526,-0.889096,-0.041108,0.455794,-0.763176,-0.026521,0.645619,-0.798242,-0.407422,0.443617,-0.851344,-0.424268,0.308481,-0.764458,-0.030702,0.64391,-0.808649,-0.338603,0.481033,-0.538102,-0.008087,0.84283,-0.624348,-0.272958,0.731864,-0.074282,-0.030641,0.996734,-0.204321,-0.364696,0.908414,0.085971,0.00882,0.996246,0.02234,-0.258339,0.965789,-0.178777,0.006989,0.983856,-0.183721,-0.030122,0.982513,0.951048,0.053377,0.304331,0.96881,0.116489,0.218635,0.943724,0.042726,0.327891,0.956816,0.112766,0.2678,0.926939,0.018983,0.374676,0.943114,0.087924,0.320536,0.970031,0.017212,0.242317,0.981597,0.060091,0.181158,0.994659,-0.003235,-0.102847,0.989868,0.001526,-0.141881,0.895291,-0.028077,-0.444563,0.875057,-0.047029,-0.481674,0.568133,-0.058596,-0.820826,0.540757,-0.10184,-0.834956,0.415052,-0.056124,-0.908048,0.351695,-0.102023,-0.930509,-0.563341,-0.076083,-0.822687,-0.648457,-0.037049,-0.760308,-0.352031,0.381207,0.854823,0.039888,0.309458,0.950041,-0.575762,0.404614,0.71044,-0.171087,0.409131,0.896268,-0.870815,0.284066,0.401166,-0.644704,0.260659,0.718589,-0.930174,0.364238,0.045686,-0.781457,0.350505,0.51616,-0.895138,0.437086,-0.087313,-0.853847,0.413465,0.316141,-0.87289,0.456587,-0.171972,-0.841273,0.445692,0.305948,-0.85226,0.471267,-0.226936,-0.85461,0.480911,0.195746,-0.839595,0.464187,-0.282083,-0.865017,0.464034,0.19071,0.393048,-0.020386,-0.919279,-0.036958,-0.01999,-0.999115,0.55562,-0.02002,-0.831172,0.257454,-0.019593,-0.966063,0.867641,-0.05591,-0.493973,0.728996,-0.05298,-0.682455,0.993286,0.007599,-0.115207,0.875149,0.00705,-0.483779,0.980224,-0.033784,0.194861,0.95996,-0.054109,-0.274758,0.934477,-0.049562,0.35255,0.968719,-0.060121,-0.24073,0.95175,-0.029603,0.305368,0.976409,-0.030824,-0.21366,0.960967,-0.034822,0.274361,0.941191,-0.031678,-0.336314,-0.224128,0.165777,0.960326,0.071566,0.444014,0.893155,-0.381085,0.263222,0.886258,-0.580798,0.368755,0.7257,-0.732444,0.421766,0.53441,-0.7257,0.486465,0.486465,-0.743034,0.532487,0.405347,-0.718375,0.529374,0.451247,-0.226783,0.504044,0.833338,-0.450453,0.337779,0.826411,-0.774926,0.454909,0.438765,-0.829981,0.499405,0.24836,-0.786187,0.615619,0.053682,-0.756615,0.653706,0.012513,-0.742943,0.66924,0.009919,-0.634602,-0.012574,-0.772729,0.609272,-0.006623,-0.792932,0.860134,-0.020936,-0.509598,0.999786,0.014283,-0.014283,0.960875,0.003601,0.276894,0.877773,-0.034944,0.477737,0.867946,-0.021393,0.496139,0.807215,-0.01294,0.590075,0.259499,0,-0.965728,0.501755,0,-0.864986,0.916959,0.010102,-0.398816,0.978271,0.018189,-0.206488,0.995453,-0.026002,-0.091556,0.999084,-0.024018,-0.034974,0.997009,-0.004975,0.076998,-0.515275,0.445051,0.732353,-0.697378,0.400342,0.594409,-0.916684,0.37373,0.141301,-0.894284,0.414716,-0.168004,-0.799738,0.508316,-0.319315,-0.750328,0.526414,-0.399823,-0.731407,0.528794,-0.430555,-0.529283,0.421064,-0.736564,-0.743706,0.514573,-0.42671,-0.128788,-0.00647,-0.991638,0.127537,-0.006012,-0.991791,0.703879,-0.016846,-0.710105,0.784753,0.014252,-0.619587,0.835475,-0.028718,-0.548753,0.834315,-0.035676,-0.550096,0.886288,-0.013703,-0.462874,0.8623,-0.009003,-0.506241,0.530198,-0.002503,-0.847865,-0.361248,-0.020539,0.932218,0.052614,-0.020081,0.998383,-0.623432,-0.020295,0.781579,-0.187902,-0.020478,0.981964,-0.784539,-0.074679,0.615528,-0.781549,-0.071871,0.619678,-0.996124,-0.016968,0.086123,-0.832667,-0.016968,0.553484,-0.998321,-0.022523,-0.05295,-0.952879,-0.021088,0.302561,-0.986236,-0.023225,-0.163671,-0.948302,-0.026246,0.316233,-0.965178,-0.029145,-0.259865,-0.979034,-0.01175,0.203192,-0.95407,-0.032136,-0.29783,-0.976775,-0.038545,0.210639,-0.008271,-0.020081,-0.999756,0.358898,-0.020417,-0.933134,0.283151,-0.019501,-0.958861,0.531083,-0.020051,-0.847041,0.819178,-0.07947,-0.56798,0.7875,-0.088015,-0.609973,0.881039,0.034425,-0.471755,0.993225,0.03531,-0.110691,0.977966,-0.042695,-0.20423,0.993652,-0.027131,0.109012,0.982391,-0.046663,-0.180822,0.949431,-0.043092,0.310953,0.980926,-0.029298,-0.192114,0.960967,-0.016816,0.27604,0.955626,-0.031922,-0.292764,0.968535,-0.036897,0.24601,-0.226936,-0.01294,0.973815,0.060701,-0.006439,0.998108,-0.450453,-0.043001,0.891751,-0.635701,-0.014344,0.771783,-0.854122,0.013184,0.519883,-0.844905,-0.014283,0.534654,-0.875057,0.007904,0.483902,-0.855739,-0.023286,0.516831,-0.262001,0,0.965056,-0.519028,0,0.854732,-0.87347,-0.004761,0.486831,-0.978637,0.014466,0.205054,-0.99411,0.010132,0.107761,-0.997894,0.012879,0.063204,-0.999695,-0.020142,0.014283,-0.576006,-0.013031,-0.817316,0.591723,-0.006745,-0.806085,0.804956,-0.03357,-0.592334,0.999207,0.037263,0.013489,0.981262,0.013245,0.192145,0.875301,-0.027863,0.482742,0.856014,-0.000824,0.516923,0.824732,-0.018891,0.565172,0.92877,0.02179,-0.369976,0.960356,0.036866,-0.276284,0.999969,-0.007416,0.001221,0.99881,0.000183,0.048189,0.997009,-0.0141,0.075808,-0.559374,-0.006561,0.828852,-0.75927,-0.006561,0.650716,-0.9682,-0.047334,0.245521,-0.985229,-0.009888,-0.170904,-0.955016,0.008545,-0.296396,-0.907285,-0.002564,-0.420454,-0.872646,-0.023774,-0.487716,-0.528703,0,-0.848781,-0.882321,-0.009491,-0.470504,-0.107547,-0.006592,-0.994171,0.149876,-0.006012,-0.988678,0.771569,-0.024445,-0.63567,0.767235,0.036927,-0.640248,0.90289,-0.011292,-0.42967,0.886013,-0.019807,-0.463179,0.900937,-0.020295,-0.433424,0.87756,-0.009339,-0.479324,-0.437269,0.079714,0.895779,-0.546953,-0.583911,0.599872,-0.203345,-0.91998,-0.335063,-0.522233,-0.738029,0.427259,-0.829829,0.157903,0.535173,-0.945158,-0.270272,0.183325,-0.612842,-0.744224,-0.265511,-0.841792,-0.441267,0.310831,-0.919187,0.111881,0.377544,-0.979522,-0.199103,0.029572,-0.868801,-0.47087,-0.15302,-0.958739,-0.274361,0.074313,-0.679861,0.601459,-0.419507,-0.525346,0.694937,-0.490921,-0.489731,0.618763,-0.614185,-0.60976,0.583544,-0.536271,-0.325571,0.777367,-0.538194,-0.33311,0.662099,-0.671255,-0.767571,0.575854,-0.281442,-0.592273,0.73043,-0.340068,-0.308512,0.870632,-0.383099,-0.885311,0.454695,0.097171,-0.670919,0.734153,0.103946,-0.663259,0.74691,-0.046541,-0.865993,0.500015,0.003021,-0.386792,0.91055,0.145756,-0.351756,0.93231,-0.083834,-0.789209,0.379101,0.483077,-0.53502,0.533952,0.654653,-0.570086,0.679739,0.461409,-0.834315,0.41792,0.359508,-0.298441,0.597644,0.744133,-0.339824,0.773553,0.534837,-0.63332,0.338603,0.695853,-0.302469,0.496506,0.813593,-0.873287,0.151433,0.462996,-0.945494,0.108432,0.307016,-0.98178,-0.152776,0.112796,-0.935331,0.019349,0.35316,-0.933378,0.350108,0.078799,-0.958953,0.242134,0.147374,-0.933103,-0.356975,-0.043092,-0.934996,-0.322977,-0.146489,-0.748039,0.546312,-0.37672,-0.836512,0.501206,-0.22132,-0.85641,-0.470412,-0.212683,-0.91055,-0.306131,-0.277718,-0.951201,-0.259713,-0.16654,-0.898953,-0.423963,-0.109867,-0.61092,0.556688,-0.562883,-0.726737,-0.509354,-0.460829,-0.775079,-0.379681,-0.50499,-0.576708,-0.348155,-0.739036,-0.531724,-0.523362,-0.665822,-0.311686,-0.544359,-0.778771,-0.350597,-0.351299,-0.868099,-0.470565,0.530808,-0.704794,-0.334941,0.530595,-0.778619,-0.682455,-0.079745,0.726554,-0.750145,0.062502,0.658284,-0.754936,0.080294,0.650838,-0.771538,0.077334,0.631428,-0.892331,-0.106235,0.438643,-0.940764,-0.126743,0.314463,-0.864528,0.015595,0.502274,-0.844813,-0.141026,0.516098,-0.915189,-0.272988,-0.296426,-0.890072,-0.374676,-0.259499,-0.583544,-0.569262,-0.579089,-0.480728,-0.474349,-0.737449,-0.79458,-0.224494,-0.564104,-0.779443,-0.345103,-0.522782,-0.539048,-0.346324,-0.767754,-0.541826,-0.201727,-0.815912,-0.313639,-0.17423,-0.933409,-0.336039,-0.311319,-0.888882,-0.744713,0.317148,0.587176,-0.758721,0.069247,0.647664,-0.527696,0.129368,0.839503,-0.497757,0.417982,0.759941,-0.82873,0.288644,0.479446,-0.849391,0.159154,0.503128,-0.893185,-0.066591,-0.444655,-0.89114,-0.211097,-0.401593,-0.437941,-0.451338,-0.777459,-0.478622,-0.11008,-0.871059,-0.895077,0.104648,-0.433393,-0.754295,0.318278,-0.574175,-0.758354,-0.020325,-0.651509,-0.770684,-0.133854,-0.622944,-0.750298,0.087069,-0.655324,-0.523606,0.028657,-0.851466,-0.512742,0.103549,-0.852229,-0.271187,0.132511,-0.953337,-0.280953,0.063723,-0.957579,-0.532975,-0.080752,-0.84225,-0.288064,-0.052583,-0.956145,-0.706168,0.332102,0.625263,-0.619892,0.460982,0.634968,-0.815577,0.190954,0.54622,-0.823237,0.186132,0.536241,-0.859645,0.132908,0.49324,-0.65923,0.194739,0.726249,-0.268899,0.081149,0.959716,-0.787469,0.278939,0.549577,-0.567766,0.409833,0.713889,-0.8399,0.310282,0.445235,-0.895932,0.220557,-0.38554,-0.932279,0.314524,-0.178655,-0.74572,0.222602,-0.627918,-0.506058,0.23075,-0.831019,-0.265725,0.234016,-0.935179,-0.083712,0.753807,0.651692,-0.273598,0.167486,0.947111,-0.113865,0.805444,0.581622,-0.464156,0.326334,0.82342,-0.195196,0.874142,0.444685,-0.62096,0.362499,0.694937,-0.122623,0.958403,0.257607,-0.635517,0.305643,0.708975,-0.482559,-0.768731,0.419691,-0.789819,-0.166143,0.59035,-0.741142,0.164525,0.650868,-0.678732,-0.444655,0.584429,-0.494064,-0.643452,0.584674,-0.700247,0.190558,0.687979,-0.0159,0.824366,0.565813,0.077029,0.623493,0.777978,0.321085,-0.629414,0.707602,-0.007141,-0.843013,0.537828,-0.323496,-0.167943,0.931181,-0.588092,-0.221137,0.777947,0.71804,-0.685568,0.119785,0.129032,-0.990936,0.037141,0.317881,0.941923,0.108127,0.669851,0.688406,0.278085,0.390545,0.91998,0.033052,0.877346,0.478805,0.031129,0.769127,-0.634205,-0.078616,0.274026,-0.94174,-0.194952,0.742973,-0.579791,0.33433,0.236549,-0.932188,0.273934,0.420759,0.893704,0.155644,0.817164,0.506455,0.275185,-0.99353,-0.029786,-0.1095,-0.457564,0.832423,0.31254,-0.829493,0.214209,0.515763,-0.941191,-0.088687,0.325968,-0.806665,0.145116,0.572893,-0.728446,0.247291,0.638874,-0.61623,-0.535173,-0.577746,-0.521744,-0.537614,-0.662343,-0.589343,0.36375,0.721335,-0.65038,0.182348,0.737358,-0.637959,-0.152745,-0.754753,-0.644673,-0.444136,-0.622181,-0.651173,-0.17597,0.738212,-0.718131,0.283792,-0.635365,-0.628864,-0.468673,0.620319,-0.762261,0.561632,-0.321696,-0.777673,-0.619709,0.105533,-0.909421,-0.414014,-0.038667,-0.577349,0.585223,0.569323,-0.511734,0.82223,0.249092,-0.870907,-0.266488,0.412885,-0.869198,-0.09534,0.485153,-0.575488,-0.542344,0.612049,-0.754234,-0.366008,0.545091,-0.995483,-0.000122,0.094913,-0.992218,0.116642,-0.043245,-0.69393,-0.188574,0.694876,-0.698172,-0.055452,0.713736,-0.249641,-0.166906,0.953825,-0.60387,0.085116,0.792474,-0.772668,0.146611,0.617603,-0.846919,0.126011,0.516526,-0.687216,0.508713,0.51854,-0.842311,0.273629,0.464339,-0.586535,0.616169,0.52562,-0.046815,-0.989349,-0.137761,-0.08002,-0.970946,-0.22544,0.266121,-0.726585,-0.633412,0.401654,-0.706656,-0.582476,0.76046,-0.220191,-0.610889,0.748466,-0.226142,-0.623402,0.447188,0.776391,-0.444075,0.245033,0.930631,-0.271767,0.63625,0.360302,-0.68215,0.482009,0.442824,-0.756005,0.196081,0.958312,-0.20777,0.341624,0.520035,-0.78283,0.099765,0.977691,-0.184759,0.197882,0.508927,-0.837733,-0.295999,-0.335551,0.894284,-0.621876,-0.097598,0.776971,-0.755181,0.073885,0.651295,-0.78985,0.112491,0.602893,-0.713462,0.458602,0.52971,-0.856929,0.212531,0.469527,-0.585528,0.635578,0.503128,-0.965972,-0.243995,-0.085788,-0.991668,0.109867,-0.067141,-0.894345,0.2631,0.361766,-0.908261,0.042268,0.416211,-0.7799,-0.586047,0.219672,-0.73281,-0.171758,0.658345,-0.761681,-0.434004,-0.481063,-0.921812,0.075747,-0.380108,-0.559221,-0.773156,-0.299081,-0.800439,-0.537339,-0.265572,-0.957518,0.00586,-0.288278,-0.495926,-0.833186,-0.244575,-0.846675,-0.499832,0.182379,-0.99292,-0.003174,0.118595,-0.589526,-0.781671,0.203375,-0.880764,0.130711,0.455092,-0.542711,-0.054842,0.838099,-0.933317,0.034547,0.357311,-0.910489,0.158147,0.382031,-0.941801,0.01352,0.335795,0.381573,0.004944,0.924314,0.972839,-0.105167,0.206091,0.994354,-0.102817,-0.025117,0.930815,-0.051149,0.361797,-0.978881,-0.203955,0.012513,-0.750664,0.218207,0.623554,-0.901425,-0.432295,0.022858,-0.913846,-0.389935,0.113224,-0.767998,-0.603107,0.2154,-0.815851,-0.50914,0.274117,-0.858333,-0.46379,-0.219367,-0.866909,-0.479507,-0.136021,-0.737114,-0.478133,-0.477493,-0.539872,-0.461226,-0.704093,-0.335368,-0.444136,-0.830805,-0.966674,0.199805,0.159948,-0.963347,0.246071,0.106662,-0.863857,0.374401,0.336955,-0.952605,0.162053,0.257393,-0.972106,0.16242,0.169012,-0.952391,0.117832,0.281167,-0.888455,0.262947,-0.37611,-0.951659,0.256783,-0.168432,-0.877987,0.311533,-0.363353,-0.945128,0.279885,-0.168432,-0.723746,0.304666,-0.619129,-0.702658,0.35023,-0.619312,-0.47908,0.334727,-0.811426,-0.457808,0.371471,-0.807703,-0.305277,0.348003,-0.88638,-0.268166,0.320658,-0.908414,-0.94409,-0.313944,0.100406,-0.965972,-0.248024,0.073183,-0.974242,-0.190558,0.120396,-0.961669,-0.209387,0.176885,-0.900784,-0.366314,0.233131,-0.950926,-0.204566,0.232032,-0.981628,-0.135838,0.133946,-0.970519,-0.151097,0.187689,-0.966887,-0.13831,0.214362,-0.979156,-0.049562,0.196875,-0.970061,-0.005768,0.242714,-0.946715,0.155431,0.281961,-0.970763,0.066927,0.230445,-0.973785,-0.064028,0.218116,-0.963378,0.002747,0.268075,-0.913785,0.22074,0.340953,-0.943968,0.11887,0.307779,-0.926725,0.097903,0.362682,-0.874996,0.268563,0.402753,-0.942381,0.134129,0.306436,-0.926817,0.140263,0.348277,-0.18543,0.806604,-0.561205,-0.178655,0.69219,-0.69924,-0.195807,0.90112,-0.386761,-0.219306,0.963805,0.151494,-0.197577,0.973357,-0.116245,-0.148808,0.609851,0.778405,-0.179724,0.807245,0.56212,-0.124821,0.51619,0.847285,-0.188543,-0.551408,-0.812616,-0.241127,-0.34196,-0.908231,-0.188421,0.550523,-0.813227,-0.192236,-0.136479,-0.971801,-0.207343,-0.278329,-0.937803,-0.162053,0.145787,-0.975921,-0.161992,0.075991,-0.983856,-0.165777,-0.040101,-0.985321,-0.167821,0.224891,-0.959807,-0.201025,-0.444136,-0.873074,-0.193823,0.327158,-0.924863,-0.182379,0.295938,-0.93762,-0.385876,-0.807825,0.445479,-0.276986,-0.523392,0.80578,-0.253334,-0.963073,-0.091067,-0.145817,-0.958464,-0.245033,-0.234718,-0.94763,0.216498,-0.098972,0.164678,0.981353,-0.225166,-0.099704,0.969176,-0.556169,0.150639,0.817255,0.073305,0.676138,0.733085,-0.04471,-0.264016,0.963469,-0.30314,0.702963,0.643361,-0.298013,-0.206397,0.931974,-0.708762,0.358745,0.607379,-0.746361,0.310068,0.588855,-0.79873,0.33311,0.501022,-0.417066,-0.407361,0.812464,-0.485031,0.358318,0.797693,-0.56859,-0.364605,0.737358,-0.665548,0.398999,0.630726,-0.062716,0.320505,0.945128,-0.332072,0.369579,0.867794,-0.289132,-0.678121,0.675649,-0.145054,-0.739036,0.657826,-0.255135,0.81756,0.51619,0.102359,0.864528,0.491989,-0.080264,-0.992309,-0.094211,-0.034181,-0.983367,-0.178289,0.144139,-0.714164,-0.684957,0.036317,-0.65804,-0.752068,-0.259224,0.819758,0.510666,0.095004,0.862819,0.496475,-0.712607,0.239448,0.659413,-0.642323,0.746849,-0.172063,-0.833491,0.540788,-0.113163,-0.319132,0.923704,-0.211829,-0.896115,0.440016,-0.057833,-0.676809,-0.614002,0.406018,-0.692709,0.72103,-0.014344,-0.962676,0.270089,-0.016633,-0.968657,0.248329,0.002869,-0.974181,0.225623,0.005432,-0.189459,0.95584,-0.224586,-0.976562,0.213477,0.026795,-0.748039,-0.363323,0.555345,-0.808588,-0.210517,-0.549364,-0.93289,-0.106723,0.343883,-0.970824,-0.22602,-0.079928,-0.90762,-0.388928,-0.157811,-0.851833,-0.084506,0.516923,-0.411237,-0.861202,0.298624,-0.838496,-0.526994,-0.138371,-0.679098,-0.732566,-0.046236,-0.968078,-0.166692,0.187109,-0.908658,0.016022,0.417158,-0.855068,0.143345,0.498245,-0.582049,0.274087,0.765526,-0.102756,0.894406,0.435224,-0.675588,0.336344,0.656056,-0.769341,0.009888,0.638722,-0.884732,0.134373,0.446272,0.51561,0.757073,-0.401196,0.755272,0.326823,-0.568072,-0.788293,0.18189,0.587786,-0.952879,-0.26603,-0.145573,-0.916532,-0.397198,0.046785,-0.830195,-0.504593,0.236854,-0.683981,-0.134068,0.717063,-0.541215,-0.115604,0.832881,-0.836268,-0.112094,0.536699,-0.977569,-0.092624,0.189093,-0.976592,-0.10593,0.187048,-0.972228,-0.103549,0.209723,-0.616688,0.37672,0.691183,-0.817896,0.271767,0.507096,-0.967986,-0.223151,-0.114811,-0.906217,-0.404767,-0.121952,-0.822169,0.066225,0.565325,-0.376019,-0.823023,-0.425672,-0.832911,-0.527848,-0.166143,-0.579333,-0.763085,-0.286447,-0.732292,0.307199,0.607715,-0.374187,0.464949,0.802362,-0.921354,0.070406,0.382244,-0.948698,-0.007202,0.316019,-0.96942,0.199347,0.14304,-0.969024,0.111545,0.220283,-0.832606,0.422101,-0.358562,-0.919431,0.347942,-0.18305,-0.651845,0.472793,-0.592883,-0.459548,0.454848,-0.76281,-0.324839,0.42439,-0.84518,-0.143223,0.537095,0.831263,-0.195959,0.422498,-0.884915,-0.960601,0.277596,-0.013337,-0.898373,0.401227,0.178625,-0.800012,-0.55153,0.236091,-0.454634,0.421247,0.784722,-0.647237,0.374493,0.66393,-0.586871,0.667318,0.45851,-0.363079,0.739464,0.56682,-0.605152,0.750542,0.265419,-0.338694,0.87286,0.351177,-0.608722,0.789392,0.079165,-0.349284,0.933683,0.078616,-0.645527,0.755913,-0.10886,-0.457076,0.876553,-0.150609,-0.690359,0.722953,-0.026429,-0.434309,0.900174,-0.031861,-0.698904,-0.477889,0.53206,-0.145268,-0.897397,0.416578,-0.847804,0.111881,0.518326,-0.689047,0.076662,0.720603,-0.832972,0.256447,0.490249,-0.866543,0.355815,0.349925,-0.325663,-0.931639,-0.161138,-0.709006,-0.648,-0.278115,-0.881649,-0.404981,-0.242164,-0.641804,0.708701,0.292886,-0.873623,0.427045,0.233161,-0.378582,0.857814,0.347514,-0.960631,0.159948,0.227058,-0.937193,-0.245705,-0.247505,-0.969329,-0.206824,0.132664,-0.969634,-0.169988,0.175634,-0.960082,-0.146062,0.238502,-0.92468,0.089785,0.369976,-0.886135,0.245705,0.392865,-0.85403,0.318461,0.411267,-0.933164,0.072604,0.352,-0.893033,0.175695,0.414228,-0.207038,0.904874,0.371929,-0.975433,-0.21424,-0.050813,-0.946715,-0.102481,0.305277,-0.960173,0.035463,0.277078,-0.484848,-0.295907,0.822993,-0.806696,-0.198645,0.556536,-0.857723,0.00705,0.513993,-0.653096,-0.091006,0.751762,0.338969,-0.856471,0.389233,0.025575,-0.902921,0.428999,-0.535905,-0.654225,0.533616,-0.020844,-0.662862,0.748405,-0.020051,0.817042,0.576189,-0.106479,0.876095,0.470168,0.447218,0.893277,-0.045076,0.414319,0.909177,0.041139,0.262337,0.736473,-0.623524,0.145848,0.811121,-0.566363,-0.051546,0.52028,-0.852412,0.273751,0.38255,-0.882443,0.024842,-0.158391,-0.98706,0.37373,-0.116672,-0.920164,0.022462,-0.499313,-0.866115,0.422254,-0.424451,-0.800928,-0.666005,-0.31016,0.678365,-0.840968,-0.129063,0.525437,0.379192,-0.380993,-0.843196,-0.102542,-0.489029,-0.866176,-0.026856,-0.553819,-0.832179,0.447584,-0.326518,-0.832484,-0.960601,-0.100436,0.259133,-0.954039,-0.112552,0.277688,-0.959532,-0.118198,0.255562,-0.942778,-0.122593,0.309976,-0.921079,-0.090915,0.378521,-0.903592,-0.253334,0.345408,-0.702261,0.393597,0.593158,-0.611805,0.370861,0.69863,0.406079,0.82931,-0.38377,0.381298,0.849452,-0.364696,0.482223,-0.870266,-0.100284,0.37611,-0.910367,-0.17243,-0.688925,-0.509934,0.515091,-0.782647,-0.28547,0.553117,-0.95761,-0.095614,0.271706,-0.94055,-0.051393,0.335673,-0.987152,0.110752,0.115146,0.124577,-0.807581,-0.576403,0.53328,-0.514512,-0.671468,-0.961272,-0.053438,0.270302,-0.917966,0.074709,0.389538,-0.702872,-0.618702,0.350902,-0.781487,-0.524918,0.337199,-0.659322,0.626362,0.415845,-0.548082,0.82873,0.113071,-0.582751,0.677908,-0.448073,-0.354106,0.417249,-0.83694,-0.159185,-0.120334,-0.979858,-0.122959,-0.464644,-0.876888,-0.969298,-0.068789,0.236,-0.30549,-0.482986,-0.820582,-0.300211,-0.61623,-0.72808,-0.948241,-0.168737,0.268929,-0.966552,-0.128056,0.222114,-0.872524,-0.351634,0.339152,-0.751152,0.436689,0.49501,-0.569079,0.789453,-0.229926,-0.472762,-0.876278,0.092654,-0.768914,-0.5374,0.346324,-0.969756,-0.105106,0.220252,-0.21775,-0.846553,-0.485672,-0.815821,0.125187,-0.564562,-0.823267,-0.068331,0.563494,-0.836451,-0.196966,0.511368,-0.67571,0.656026,0.336161,-0.563219,0.625721,0.539628,-0.630634,0.701102,0.332713,-0.422529,0.865444,0.269173,-0.724357,0.318949,0.611164,-0.760063,0.235694,0.605548,-0.77514,0.239509,0.584582,-0.753258,0.54033,0.37495,-0.928831,-0.191443,0.317148,-0.97766,-0.090793,0.189489,-0.991333,0.066378,0.113346,-0.840449,-0.088687,0.534562,-0.936247,-0.210211,0.281472,-0.962432,-0.11829,0.244301,-0.799585,-0.43379,0.415265,-0.885891,-0.328257,0.327708,-0.606433,-0.395886,0.689535,-0.581652,0.453352,0.675344,-0.368786,0.85577,0.362804,-0.987487,0.047914,0.150029,-0.995849,-0.073611,0.053133,-0.997375,-0.066927,0.027009,-0.664785,-0.139012,0.73394,-0.740104,0.025849,0.671957,-0.650349,0.130131,0.748375,-0.711753,0.125614,0.691061,-0.611225,0.138005,0.77929,-0.62273,0.461959,0.631458,-0.705802,-0.209174,0.676809,-0.749229,-0.377117,0.54442,-0.766625,-0.57329,0.289132,-0.832789,-0.553514,-0.004212,-0.987213,-0.095309,-0.127689,-0.929106,-0.24424,-0.277596,-0.975646,0.030946,-0.217139,-0.82989,-0.439406,-0.34376,-0.725791,-0.083773,0.68276,-0.536699,-0.059755,0.841609,-0.861171,-0.035585,0.507004,-0.973449,-0.057619,0.221442,-0.978118,-0.079073,0.192358,-0.97354,-0.086184,0.211493,-0.67217,0.320597,0.667348,-0.811335,0.251259,0.527757,-0.547349,0.072268,0.833735,-0.730613,0.120548,0.672048,-0.944456,-0.035798,0.326579,-0.936705,-0.078829,0.341075,-0.889218,-0.097903,0.446822,-0.929289,-0.24604,0.275369,-0.969481,-0.089114,0.228309,-0.512497,-0.547746,-0.661275,-0.953551,0.186102,0.236793,-0.866146,0.160955,0.473128,-0.715232,0.342967,0.608905,-0.600146,0.593402,0.536332,-0.959838,-0.058473,-0.2743,-0.687979,0.356975,-0.631825,-0.971343,0.164068,0.17185,-0.932798,-0.252022,0.257546,-0.983123,-0.032502,0.179937,-0.952727,-0.179022,0.245369,-0.965361,-0.206519,0.159429,-0.987091,0.147771,0.061556,-0.882107,-0.178076,0.436048,-0.953887,0.045564,0.29664,-0.92169,0.17716,0.345103,-0.813318,-0.449904,0.368847,-0.989959,0.137516,0.031709,-0.969512,0.1395,0.201361,-0.86935,-0.197638,0.452895,-0.942717,-0.028871,0.332286,-0.929167,0.15125,0.337291,-0.874935,-0.415937,0.247902,-0.996185,-0.078188,0.038301,-0.970306,-0.100589,0.219855,-0.918241,-0.178442,0.353465,-0.958739,-0.089694,0.269723,-0.968596,0.118717,0.218451,-0.59621,-0.457595,0.659597,-0.535997,-0.728782,0.426099,-0.896359,-0.275338,-0.347423,-0.452406,-0.50679,-0.733787,-0.780389,-0.212317,-0.588092,-0.53679,-0.171789,-0.826014,-0.296304,-0.140263,-0.9447,-0.635639,0.346294,0.689932,-0.602832,-0.572161,-0.556017,-0.175054,-0.119755,-0.977233,-0.071139,-0.567675,-0.820154,0.384106,-0.491134,-0.781793,-0.155187,-0.53853,-0.82815,-0.603259,0.451552,0.657338,-0.987518,0.044649,0.150822,-0.987823,0.016358,0.154668,-0.265542,0.509049,0.81872,-0.257271,-0.53621,0.803888,-0.105869,0.973571,0.202216,0.167058,-0.669027,-0.724174,0.0759,0.840144,-0.537004,-0.111637,-0.979247,0.169073,-0.880764,0.443922,0.1648,-0.780084,-0.538499,0.318522,-0.81698,0.503586,0.280892,-0.76986,-0.250038,0.587146,-0.812189,0.325236,0.484268,-0.823664,0.465255,0.324107,-0.867763,0.489395,0.086306,-0.817164,0.572985,-0.06241,-0.814783,0.565203,-0.128971,-0.824122,0.5656,0.029725,-0.603565,-0.788751,0.116276,-0.270486,-0.896573,0.350627,-0.913541,0.142521,0.380902,-0.833674,0.452803,0.316111,-0.873318,0.159856,0.460128,-0.581408,0.540178,0.608386,-0.587817,-0.436903,0.680837,-0.549821,-0.400006,0.733238,-0.72277,0.516312,0.459334,-0.393109,0.312662,0.864681,-0.241768,0.644459,0.725364,-0.66924,0.223273,0.70867,-0.455428,-0.682302,0.571825,-0.089938,0.894131,0.438612,-0.031922,0.997162,0.067995,-0.066744,0.995422,-0.067965,-0.002869,0.998993,0.044649,-0.586749,0.638081,0.49852,-0.082461,-0.989563,-0.118076,0.192877,-0.740196,-0.644093,-0.598468,0.648244,0.470717,-0.791803,0.288766,0.538163,-0.594073,-0.012055,0.804315,-0.016663,-0.78872,0.61449,-0.79339,0.564287,0.228187,-0.464278,0.016114,0.885525,0.390332,-0.920011,-0.034791,-0.700491,0.684622,0.201331,0.1507,-0.393475,0.906888,-0.669393,-0.345286,0.657765,-0.553606,-0.763787,-0.331797,0.332224,-0.932371,-0.142338,-0.758324,0.269509,0.593524,-0.507279,-0.314005,-0.802515,0.789636,-0.34373,-0.508194,0.71691,0.058077,0.694723,0.290231,-0.608295,-0.738701,0.189093,-0.631123,-0.752251,0.367016,-0.623859,-0.689962,0.855129,0.294534,-0.426588,0.914579,0.11298,-0.388256,0.813105,-0.328104,-0.480758,0.010071,-0.668477,-0.743614,0.202307,0.664266,-0.719565,0.384899,0.611713,-0.691092,0.694327,0.497543,-0.519883,0.53853,-0.585711,-0.605701,0.113834,-0.639912,0.759941,-0.045167,-0.64388,0.763756,-0.073092,-0.971557,0.225135,0.080691,-0.965728,0.24662,0.292062,-0.576769,0.762871,0.368206,-0.881741,0.294778,0.624653,0.261788,0.735679,0.685934,0.165288,0.708609,0.877834,0.223579,0.423505,0.803217,0.383862,0.455458,0.735954,0.007019,0.676962,0.917386,-0.01886,0.397473,-0.121494,-0.642445,0.756615,-0.132603,-0.965941,0.222114,0.004395,0.768761,0.639485,0.026917,0.804712,-0.593005,0.223945,0.602557,0.765984,0.055818,0.993469,0.099277,0.528214,0.377819,0.760369,0.637349,0.629322,0.444624,0.530961,-0.316874,0.785882,0.779534,-0.522874,0.344829,-0.035981,0.00586,0.999329,0.09476,-0.030793,0.994995,0.290506,-0.048372,0.955626,0.374523,-0.072085,0.924406,0.481887,-0.034761,0.875515,0.355419,-0.934019,-0.035646,0.372387,-0.923399,-0.092868,0.76867,-0.629994,-0.110324,0.785058,-0.618671,-0.029847,0.348216,-0.937407,0,0.79809,-0.602496,0.003845,0.798456,-0.602008,-0.003143,0.809107,-0.587329,0.018586,0.978027,-0.20127,-0.054231,0.987762,-0.155675,0.005768,0.99002,-0.138493,0.025452,0.992706,-0.119236,0.016816,0.993957,-0.07532,0.079684,0.868984,0.493576,-0.034577,0.869869,0.470901,-0.146702,0.557451,0.816584,-0.149663,0.512589,0.857021,-0.0524,0.869106,0.489425,0.071322,0.496292,0.86639,0.054659,0.872616,0.46321,0.154729,0.532304,0.830561,0.163701,0.864254,0.443434,0.237465,0.596149,0.77044,0.225776,0.280496,0.955535,-0.090732,0.230842,0.972839,-0.016144,0.190985,0.979858,0.057955,-0.033143,0.925993,0.376049,-0.493942,0.860073,0.127537,0.114109,0.992279,-0.048158,0.098697,0.995025,0.012818,0.06006,0.993286,0.098605,-0.010315,0.810755,0.585253,-0.09711,-0.994903,0.025941,-0.085879,-0.994446,0.060579,-0.049287,-0.997864,0.042512,-0.07889,-0.996826,0.008179,-0.114109,-0.993439,0.005402,-0.093448,-0.995605,0.000305,-0.120884,-0.992645,-0.002014,-0.094638,-0.995483,-0.001709,-0.122745,-0.992431,-0.002014,-0.09299,-0.995636,-0.001679,0.988037,0.132176,-0.079287,0.992737,0.119968,0.007447,0.991668,0.113956,0.059664,0.986724,0.141362,0.079623,0.966094,0.194403,0.169774,0.051149,-0.998596,-0.01178,0.080935,-0.996643,-0.009461,0.042512,-0.999084,-0.000427,0.043489,-0.999023,-0.000427,0.044465,-0.998993,-0.000427,-0.006226,-0.995514,-0.09418,0.148534,-0.973022,-0.176427,0.390576,-0.883969,-0.256905,0.990295,0.114444,-0.078494,0.901761,0.403027,-0.15598,0.945036,-0.304971,-0.117801,-0.086184,-0.99469,-0.055757,0.147862,0.969024,-0.197668,0.335002,0.908963,-0.247993,0.646565,0.722373,-0.245064,0.71633,-0.654103,-0.242836,-0.041902,-0.034822,0.998505,-0.852229,-0.037324,0.521805,-0.985565,0.105564,-0.132298,-0.518937,0.482437,-0.705618,-0.041932,0.572985,-0.818445,-0.564928,0.770409,-0.29545,-0.109561,0.962706,-0.247322,-0.82046,-0.509262,0.259682,-0.97351,0.157445,-0.165716,-0.063845,-0.806818,0.587298,-0.118717,-0.973662,0.194555,-0.699637,-0.701071,0.1377,-0.987823,0.149998,-0.040834,-0.56148,0.824976,-0.06415,-0.085299,0.995666,0.03647,-0.508103,0.860775,0.029695,-0.037843,0.996277,0.077273,-0.653676,-0.753044,0.074862,-0.996612,0.081851,0.003937,-0.118656,-0.984893,0.12598,-0.099521,-0.993103,0.061892,-0.641926,-0.765313,0.046602,-0.998688,0.042848,0.027924,-0.567156,0.82049,0.071261,-0.04828,0.993591,0.102115,-0.615192,0.764092,0.194128,-0.079257,0.987274,0.1377,-0.642628,-0.75808,0.110843,-0.984405,0.002197,0.175878,-0.111759,-0.992492,0.049409,-0.162206,-0.965667,0.202795,-0.636219,-0.699698,0.324931,-0.911985,-0.000488,0.410169,-0.580554,0.721488,0.3773,-0.110996,0.958525,0.26249,-0.562517,0.623402,0.543046,-0.238258,0.755669,0.610034,-0.636921,-0.586169,0.500687,-0.768822,0.024659,0.638936,-0.293161,-0.744621,0.599597,-0.334422,0.014496,0.942289,0.103214,-0.892239,-0.439558,0.241829,-0.825953,-0.509171,0.395032,-0.760033,-0.516007,0.988006,0.095218,-0.121525,0.926847,0.360027,-0.106418,0.897397,-0.367565,-0.243995,-0.043611,-0.924528,-0.378582,0.190191,0.928312,-0.319437,0.370067,0.86523,-0.338176,0.699545,0.676351,-0.230445,0.635395,-0.646931,-0.421583,0.481002,0.779443,-0.401318,-0.133641,0.984436,0.114017,-0.085269,-0.994232,0.064821,0.62389,-0.593188,-0.508774,-0.581133,-0.540483,0.608386,-0.588824,0.513352,0.624287,-0.881008,0.462416,-0.099765,-0.880764,-0.453078,-0.137486,-0.500992,0.715415,-0.486984,0.245308,-0.443037,-0.86227,0.170568,0.584002,-0.793603,-0.384136,-0.776421,-0.499527,-0.437086,0.87344,0.214484,-0.005432,0.974425,0.224586,0.380016,0.884701,0.269875,-0.799341,0.549669,0.242653,-0.673635,0.710196,0.204413,-0.92703,0.06238,0.369701,-0.287301,-0.759484,0.583575,-0.594348,-0.599597,0.535905,0.127812,-0.762169,0.634602,0.747307,0.523759,0.408887,0.853999,-0.016663,0.519974,0.649556,-0.469741,0.597797,-0.802789,-0.365581,0.470962,0.636525,-0.410138,0.653127,0.154485,-0.681997,0.714805,0.384381,0.867428,0.315867,0.726127,0.519974,0.449782,-0.744377,-0.290475,0.601215,-0.847224,0.120457,0.51738,-0.544176,-0.510086,0.666036,0.827204,0.00235,0.561846,-0.278878,-0.665731,0.692068,-0.647084,0.694723,0.314005,-0.407208,0.865749,0.290902,-0.748436,0.556749,0.360302,0.01297,0.958953,0.283212,-0.89993,0.048585,0.433241,-0.652364,-0.068484,0.754753,-0.507218,-0.024812,0.861415,-0.820765,-0.005005,-0.571184,-0.939848,-0.003784,-0.341472,-0.977599,0.039827,-0.20661,-0.599933,0.04706,-0.798639,-0.377148,0.077151,-0.92291,-0.299844,0.089389,-0.949767,-0.991607,0.080325,0.101077,-0.993408,0.078341,-0.083377,-0.487228,0.085971,0.869015,-0.473983,0.033326,0.879879,-0.826197,0.165685,-0.538438,-0.914853,0.149083,-0.375195,-0.94879,0.176855,-0.261727,-0.617725,0.22074,-0.754753,-0.381542,0.250832,-0.889645,-0.330668,0.261086,-0.906888,-0.973968,0.204535,-0.097629,-0.9635,0.200232,0.177526,-0.433302,0.38728,-0.813776,-0.661946,0.34373,-0.666066,-0.650655,0.301553,-0.69689,-0.395398,0.344493,-0.851436,-0.798791,0.330943,-0.502365,-0.820551,0.272073,-0.50264,-0.846797,0.377209,-0.37495,-0.868404,0.424543,-0.256142,-0.918973,0.288308,-0.26896,-0.884823,0.285989,-0.367718,-0.215918,0.146794,0.9653,-0.418531,0.091006,0.903623,-0.313028,0.333354,0.889279,-0.378826,0.222419,0.898312,-0.341136,0.355541,-0.870174,-0.344798,0.407453,-0.845607,-0.948912,0.294748,-0.112339,-0.887967,0.448134,-0.103122,-0.928556,0.283212,0.239814,-0.883785,0.395917,0.249306,-0.453108,0.545518,-0.705039,-0.568621,0.580676,-0.582629,-0.666921,0.397839,-0.629994,-0.435743,0.453505,-0.777429,-0.455824,0.748344,-0.481826,-0.743614,0.427717,-0.51384,-0.364971,0.879665,-0.304819,-0.307291,0.938871,-0.155095,-0.76046,0.588214,-0.275002,-0.762627,0.510941,-0.396588,0.166051,0.584643,0.794092,0.020722,0.191656,0.981231,-0.138127,0.673116,0.726493,-0.211951,0.433546,0.87582,-0.330821,0.472793,-0.816675,-0.304483,0.544908,-0.781213,-0.785241,0.61626,-0.059908,-0.288888,0.952422,0.096835,-0.800684,0.519761,0.2978,-0.422864,0.865322,0.269021,0.257118,0.803369,0.537065,0.195318,0.770348,0.606922,0.084811,0.988372,0.126072,-0.04416,0.978484,0.201453,0.118992,0.992859,0.005158,0.019044,0.990204,-0.138279,-0.303476,0.559679,-0.771111,-0.472121,0.59798,-0.647664,-0.422071,0.726035,-0.542833,-0.188269,0.892666,-0.409497,-0.766961,0.197974,0.61037,-0.740928,0.259377,0.619434,-0.634053,0.274972,0.722709,-0.626606,0.214087,0.749321,-0.785516,0.146977,0.601123,-0.668844,0.125858,0.732658,-0.677511,0.430555,0.596271,-0.383251,0.816767,0.431227,-0.391675,0.756066,0.524277,-0.60387,0.469222,0.644307,-0.10886,0.953246,0.281838,-0.261147,0.847163,0.462661,-0.888394,0.144322,0.435743,-0.856441,0.196326,0.477401,-0.905728,0.169561,0.388409,-0.871578,0.216041,0.440046,-0.903439,0.183172,0.387555,-0.873836,0.240089,0.422773,-0.827418,0.25895,0.498245,-0.829127,0.274606,0.486923,-0.824671,0.304636,0.476516,-0.769372,0.414594,0.485916,-0.766137,0.415906,0.489914,-0.767907,0.413923,0.488815,-0.444533,0.832911,0.3296,-0.450423,0.828242,0.333293,-0.468459,0.812464,0.346965,-0.111728,0.983673,0.140996,-0.113895,0.98291,0.144475,-0.117527,0.98236,0.145299,-0.722526,0.091891,0.685171,-0.867733,0.110569,0.484542,-0.93762,0.170019,0.30314,-0.771203,0.103671,0.628071,-0.930601,0.118839,0.346171,-0.893948,0.088626,0.439283,-0.166814,0.096103,0.981262,-0.118961,0.279122,0.952849,0.051393,0.253334,0.966002,0.047273,0.091372,0.99469,-0.09949,-0.544298,0.832942,0.068239,-0.557604,0.827265,-0.087588,-0.833033,-0.54619,-0.052522,-0.967925,-0.245674,-0.033753,-0.954985,-0.294626,-0.058351,-0.808008,-0.58623,-0.025361,-0.996582,-0.078219,0.005951,-0.993316,-0.115116,0.014466,0.611652,0.790979,0.132298,0.523759,0.841487,0.123753,0.98764,0.096133,0.146306,0.976348,0.159124,0.069613,0.781487,-0.619983,-0.050386,0.180944,-0.982177,-0.142064,0.178228,-0.973662,0.019288,0.813776,-0.580828,-0.038911,-0.940214,0.338298,0.043153,-0.953551,0.298044,-0.027863,0.530351,-0.847285,-0.054689,-0.24012,-0.969176,-0.228553,-0.216834,-0.949065,-0.183111,0.541215,-0.820673,-0.069765,-0.733848,-0.67568,-0.194403,-0.685537,-0.701559,-0.112796,0.399915,-0.909574,-0.175542,0.417493,-0.891537,-0.091494,-0.760247,-0.643117,-0.109287,-0.726768,-0.678091,-0.120487,-0.935301,0.332652,-0.056917,-0.996185,-0.065676,-0.249336,-0.568194,0.784173,0.142338,0.795312,-0.589221,0.108951,0.990417,0.084628,0.049684,0.439497,-0.896847,-0.104801,0.679189,0.726402,-0.308908,0.346507,0.885708,-0.069948,-0.976775,-0.202429,-0.118259,-0.843776,-0.523453,-0.354442,0.026307,0.93469,0.120914,-0.278573,-0.952757,0.083163,0.293252,-0.952391,0.046907,-0.645161,-0.762596,-0.00296,0.463424,-0.886105,-0.064394,-0.741691,-0.667623,-0.136601,0.410504,0.901547,0.014557,-0.344768,0.938566,0.018586,-0.707785,0.706168,-0.130009,-0.539262,-0.832026,-0.118137,-0.973296,-0.196783,-0.109104,-0.987426,-0.114353,-0.134709,-0.623798,-0.76986,-0.061281,-0.958953,0.276772,-0.064425,-0.965789,0.251167,-0.076449,-0.181188,-0.980468,-0.078799,-0.207648,-0.975005,-0.033876,0.177007,-0.983612,-0.129429,0.932981,0.335795,-0.005463,0.979217,-0.202612,-0.005097,0.715384,-0.69866,-0.043886,-0.894803,0.444227,-0.037263,-0.87582,0.481155,0,-0.260628,-0.965423,0,-0.312418,-0.949919,0.019959,-0.329997,-0.943754,0.129185,-0.283151,-0.950316,0.146733,0.718467,0.679861,0.171972,0.821986,0.542894,-0.099734,0.648,0.755058,-0.385113,0.386395,0.838038,-0.055177,0.957579,-0.282785,0.229682,0.922452,-0.310251,0.236976,0.811304,-0.53441,0.042695,0.781915,-0.621876,0.298227,0.873043,0.385754,0.37196,0.848506,0.376354,0.013642,0.617817,-0.786187,0.142521,0.734977,-0.662893,0.115787,0.845088,-0.521897,-0.000122,0.789148,-0.614185,0.24012,0.889187,-0.389386,0.373852,0.901395,-0.218329,-0.051881,0.407758,-0.911588,0.054476,0.566088,-0.822504,0.182684,0.969176,0.165166,-0.107669,0.977203,0.182836,0.416242,0.897824,0.143559,-0.133366,0.527177,-0.839198,-0.148686,0.449049,-0.881008,-0.231544,0.249672,-0.940214,-0.216102,0.330699,-0.918638,-0.744285,-0.350414,-0.568499,-0.911863,-0.288003,-0.292428,-0.880856,-0.374737,-0.289193,-0.79812,-0.40965,-0.441786,-0.960021,-0.279763,-0.006592,-0.916898,-0.394879,-0.057741,-0.589953,-0.341807,0.731498,-0.843379,-0.383557,0.376263,-0.859859,-0.32551,0.393262,-0.63036,-0.264229,0.729911,-0.891049,-0.08655,0.44554,-0.672842,-0.051271,0.737968,-0.236396,0.124241,0.963652,0,0.156774,0.98761,0,-0.034913,0.99939,-0.163823,-0.052644,0.985076,0,-0.208136,0.978088,-0.133274,-0.241096,0.961272,-0.748558,-0.216193,0.62682,-0.873501,-0.305063,0.379284,0,0.437086,-0.899411,-0.201086,0.450942,-0.869564,-0.219428,0.522019,-0.824213,0,0.508499,-0.861049,-0.080844,0.686026,-0.723045,-0.14182,0.745933,-0.650716,-0.018372,0.542894,-0.839595,-0.07654,0.561052,-0.824213,0.009125,0.730247,0.683096,0.035157,0.792077,0.609363,0.009705,0.747551,0.664083,0.01532,0.751061,0.660024,-0.064882,0.759697,0.646992,0.018708,0.774621,0.63213,0.017243,0.649068,0.760521,-0.012635,0.651692,0.758324,-0.039766,0.681051,0.731101,-0.319987,-0.323618,0.890408,-0.391095,-0.145024,0.908841,-0.4803,0.032899,0.876461,-0.029023,0.830775,0.555803,-0.055208,0.798853,0.598956,0.068117,0.877194,0.475234,-0.033143,0.75631,0.65334,-0.273721,0.645039,0.713431,-0.382641,0.520981,0.762963,0,0.202429,-0.979278,-0.097476,0.256203,-0.961669,0,-0.029878,-0.999542,0.114231,-0.00293,-0.993439,-0.024476,0.374493,-0.926878,-0.098697,0.145177,-0.984436,0,0.638142,0.76989,0,0.714774,0.699332,0,0.812006,0.583636,0,0.19245,0.981292,0.016846,0.189917,0.981628,-0.017273,-0.003754,0.999817,0,0.006256,0.999969,-0.070956,-0.202063,0.976775,0,-0.178716,0.983886,-0.103641,0.17719,0.978698,-0.289895,0.156774,0.944121,-0.398968,-0.059389,0.915006,-0.161046,-0.03061,0.98645,-0.466933,-0.252358,0.847499,-0.223273,-0.250465,0.942015,-0.575854,0.12479,0.807947,-0.604266,-0.025422,0.79635,-0.714133,0.102725,0.692404,-0.683187,-0.142796,0.716117,-0.831141,-0.481918,-0.277352,-0.740287,-0.543657,-0.395428,-0.74987,-0.642537,-0.157476,-0.622669,-0.724448,-0.295694,-0.881436,-0.468123,-0.062502,-0.843745,-0.519761,0.133702,-0.792688,-0.051546,0.60741,-0.873989,-0.194433,0.445265,0,0.225135,0.974303,0.016785,0.253883,0.967071,-0.081362,0.281259,0.956145,-0.241432,0.280221,0.929044,-0.568957,0.264107,0.778771,-0.687307,0.239845,0.685598,-0.77514,0.131626,0.617878,-0.764336,-0.047487,0.643025,-0.41261,-0.898221,0.151372,-0.317576,-0.948088,-0.015503,-0.447188,-0.564348,0.693869,-0.750053,-0.247291,-0.613392,-0.940275,-0.141697,-0.309427,-0.997162,-0.066775,0.033967,-0.102176,-0.255318,0.961425,0,-0.210273,0.97763,0.201422,0.888028,0.413282,0.078738,0.69396,0.71569,-0.383892,0.392315,0.835871,-0.707419,-0.170598,0.685873,-0.536546,-0.316904,0.782067,-0.734184,0.048555,0.677175,-0.066958,0.488052,-0.870205,-0.208411,0.614582,-0.760796,-0.272683,-0.338664,0.90051,0.038301,0.34196,-0.938902,0.08768,0.075533,-0.993255,-0.700461,0.215339,0.68038,-0.93643,-0.029359,-0.34959,-0.997497,0.060244,-0.036439,-0.761223,-0.190497,-0.619831,-0.696799,-0.002625,0.717215,-0.577929,0.048036,0.814661,-0.345408,0.153722,0.925748,0,0.221381,0.975158,-0.860775,0.024323,0.508347,-0.32667,-0.041993,-0.944182,-0.159001,-0.166051,-0.973205,-0.184362,-0.261574,-0.947386,-0.430433,-0.153783,-0.889401,-0.333628,-0.390698,-0.857906,-0.55501,-0.288522,-0.780175,-0.26487,-0.009735,-0.964202,-0.386914,-0.013398,-0.921995,-0.481368,-0.173894,-0.859066,-0.378002,-0.221015,-0.899014,-0.571886,-0.313211,-0.758141,-0.424299,-0.423994,-0.800104,-0.11594,0.198706,-0.973144,-0.230995,-0.197577,-0.952666,-0.254097,-0.529435,-0.809381,0.026154,-0.246864,-0.968688,-0.010132,-0.343211,-0.939177,-0.130955,-0.345592,-0.929197,-0.249092,-0.376598,-0.892239,-0.608386,-0.430738,-0.666555,-0.715445,-0.436598,-0.545396,-0.664754,-0.516465,-0.53975,-0.504532,-0.683523,-0.527451,-0.254646,-0.908536,-0.331217,-0.512589,-0.325968,-0.794336,-0.391736,-0.313364,-0.865047,0.015961,0.452254,0.89172,0,0.413709,0.910398,-0.177404,0.457961,0.871059,-0.055849,0.462966,0.884579,-0.474624,0.415998,0.775658,-0.618488,0.309427,0.722282,-0.498398,0.08005,0.863216,-0.708975,0.175817,0.682913,-0.63567,0.234016,0.735618,0,-0.149663,-0.988708,0.187231,-0.169591,-0.967528,-0.280953,0.199225,-0.93878,-0.120487,0.217139,-0.968657,-0.069735,0.391644,-0.917447,-0.131809,-0.042787,-0.990326,-0.258034,0.102329,-0.960692,-0.904447,-0.404431,0.135563,-0.905271,-0.417615,0.077609,-0.942869,-0.301981,0.140568,-0.976043,-0.062105,0.208411,-0.867183,-0.346843,0.357311,-0.616596,-0.25721,0.744041,-0.139378,0.693411,-0.7069,-0.250557,0.913053,-0.321757,-0.150304,0.651662,-0.743431,-0.210181,0.934049,-0.288675,-0.272439,0.946043,0.175268,-0.287698,0.922025,0.25898,-0.10593,0.526292,0.843654,-0.193121,0.45616,0.868648,0.072451,-0.12949,-0.988922,-0.970611,0.06415,0.231849,-0.160131,-0.078463,0.983947,-0.106632,-0.182073,0.977477,0.401868,0.877163,0.262764,0.510971,0.842433,0.170782,0.400342,0.909268,-0.113651,0.210059,0.924039,-0.319346,0,0.887631,0.460524,0.100009,0.80163,0.589373,-0.093478,0.675649,0.731254,-0.325297,0.67806,-0.659078,-0.083804,0.837703,-0.539598,0,0.479629,-0.877438,-0.244453,0.529862,-0.812067,0.109043,0.879849,-0.462539,0.257637,0.94644,0.194555,0.158452,0.949278,0.271523,0.032472,0.928159,0.370708,-0.081088,0.846919,0.525437,-0.16773,0.715842,0.677786,-0.215827,0.377056,0.900662,-0.080752,-0.220313,0.972045,-0.078249,0.318888,0.944548,-0.010498,-0.261025,0.965239,-0.086459,-0.707724,0.701132,-0.003021,-0.735588,0.677389,-0.057833,-0.971831,-0.22837,-0.118717,-0.591266,-0.797662,0.034303,-0.967772,-0.249367,-0.065584,-0.601245,-0.79635,0.007233,-0.992859,0.118839,0.107852,-0.977264,0.182409,-0.103641,-0.223945,-0.969054,-0.072909,-0.233009,-0.969726,-0.109378,0.158635,-0.981231,-0.044191,0.168798,-0.984649,-0.274148,0.905515,0.323771,-0.152074,0.900693,0.406934,-0.136845,0.960082,-0.243873,-0.049409,0.974883,-0.217078,-0.118686,0.690756,-0.713248,0.002899,0.732109,-0.681143,-0.034272,-0.952147,0.303598,0.058748,-0.941893,0.330638,-0.921354,0.053285,-0.385052,-0.994079,0.105655,-0.024628,-0.682607,0.123203,0.720298,-0.613941,0.15891,0.773156,-0.367016,0.230903,0.901089,0,0.24897,0.968505,-0.817316,0.087924,0.569414,-0.039857,-0.108036,-0.993316,-0.166448,-0.070101,-0.98352,0,-0.040925,-0.999146,-0.790918,-0.02237,-0.611469,-0.520951,-0.055483,-0.851741,-0.951659,0.102298,0.289529,-0.950194,0.196204,0.242012,-0.982482,0.185492,-0.01648,-0.992676,0.095462,-0.073855,-0.964934,0.132359,0.22663,-0.99353,0.027558,-0.11008,-0.974883,0.060854,0.214148,-0.926725,0.194494,0.321421,-0.929044,0.128422,0.346904,-0.926084,0.053377,0.373455,-0.832453,0.156468,-0.53148,-0.539293,0.196081,-0.818964,-0.5992,0.114414,-0.792352,-0.850948,0.07181,-0.52028,-0.644856,0.069765,-0.761071,-0.859432,0.03003,-0.5103,-0.058992,0.212989,-0.975249,-0.046693,0.121311,-0.991485,-0.071261,0.070864,-0.994903,-0.942442,0.158849,-0.294137,-0.9447,0.048921,-0.324229,-0.939848,-0.00412,-0.341502,0.183966,0.168493,-0.968352,0.278848,0.083071,-0.956725,0.315867,0.028565,-0.948363,0,0.141728,-0.989898,0,0.062624,-0.998016,0,0.005646,-0.999969,0.12122,-0.033631,-0.992035,0,-0.100192,-0.994964,0,-0.149602,-0.988739,0.19248,-0.136876,-0.971679,-0.209693,-0.102237,-0.972381,-0.111515,-0.215308,-0.970153,-0.637654,0.11475,0.761681,-0.688986,0.260262,0.676412,-0.722861,-0.318003,0.613422,-0.645833,-0.32844,0.689169,0,0.491928,0.870602,-0.328684,0.483474,0.811274,-0.425672,-0.078616,0.901425,0,-0.017121,0.999847,-0.545274,0.344035,0.764367,-0.591845,-0.254402,0.764824,-0.99472,0.101596,0.013367,-0.928556,-0.039003,-0.36906,-0.866604,-0.369549,-0.335246,-0.905515,-0.424268,-0.003479,-0.648518,-0.158055,-0.74456,-0.645589,-0.303323,-0.700827,-0.793542,-0.114719,-0.597552,-0.770562,-0.306986,-0.558519,-0.909391,0.154668,0.386059,-0.85989,-0.369121,0.35258,-0.912351,0.173345,-0.37083,-0.974029,0.226081,0.012024,-0.654439,0.206915,0.727195,-0.609638,0.030457,0.792077,-0.383709,-0.100742,0.917936,0,-0.099948,0.994964,-0.729392,0.270058,0.628498,-0.106693,0.267739,-0.957549,-0.311289,0.276742,-0.909116,0,0.22367,-0.974639,-0.60094,0.177252,-0.779351,-0.787957,0.135136,-0.600696,-0.895901,0.25135,0.366253,-0.770684,0.56093,-0.302225,-0.74453,0.665792,0.048769,-0.483627,0.633351,0.604053,-0.56859,0.433363,0.699179,-0.33845,0.432783,0.835505,0,0.458602,0.888607,-0.454634,0.739036,0.497085,0.002167,0.450972,-0.892514,-0.251869,0.520676,-0.815729,0,0.410077,-0.912046,-0.704489,0.469466,-0.532212,-0.570788,0.445906,-0.689413,-0.587817,0.741478,0.323466,-0.694388,0.515244,0.502274,-0.716697,0.646657,0.261055,-0.719779,0.647755,0.249641,-0.695181,0.652242,0.302103,-0.704794,0.70922,0.014313,-0.757683,0.651814,0.032319,-0.652394,0.728202,-0.209815,-0.705893,0.674886,-0.214972,-0.471511,0.801843,-0.366955,-0.262429,0.814142,-0.51796,-0.392224,0.657155,-0.643605,-0.630024,0.642018,-0.436842,-0.055788,0.796045,-0.602619,-0.05594,0.669393,-0.740776,0.029878,0.761467,-0.647481,0.084902,0.677602,-0.730461,0,0.7687,-0.639546,0,0.654012,-0.756462,-0.012055,-0.171026,0.985168,0.029115,0.485702,0.873623,-0.035157,0.505112,0.8623,-0.107761,-0.160863,0.981048,-0.029298,0.521195,0.852901,-0.089633,-0.142155,0.985748,-0.01532,0.528855,0.848567,-0.052705,-0.132023,0.989837,0.122623,0.773186,-0.622181,0.151585,0.145878,-0.977599,0.099673,0.13834,-0.985351,0.082492,0.792474,-0.604266,0.065706,0.141942,-0.987671,0.069399,0.804773,-0.589465,-0.0047,0.148167,-0.988922,-0.007996,0.805872,-0.592029,0.068819,-0.993988,0.085025,0.052065,-0.809626,0.584613,0.021607,-0.828333,0.559771,0.142308,-0.987365,0.069308,-0.043641,-0.804041,0.592944,0.073794,-0.992096,0.101413,-0.053041,-0.783135,0.619556,0.045381,-0.99057,0.129063,-0.000916,-0.548814,0.835902,-0.125217,-0.534562,0.83578,-0.1348,-0.507797,0.850826,-0.100131,-0.500565,0.859859,0.071871,-0.313211,-0.946928,0.020264,-0.559221,-0.828761,0.076052,-0.554247,-0.828852,0.041993,-0.32609,-0.944395,0.059694,-0.544542,-0.836573,0.015412,-0.327982,-0.944548,0.056429,-0.553575,-0.830866,0.007904,-0.323801,-0.946074,0.038331,-0.912015,-0.408338,0.147984,-0.901578,-0.406446,0.116611,-0.906644,-0.405377,0.09006,-0.918455,-0.385052,0.011292,0.923734,0.382824,0.026307,0.987457,-0.155553,-0.016999,0.99002,-0.139866,-0.047395,0.927244,0.37141,-0.010193,0.992889,-0.118534,-0.044954,0.930052,0.364574,-0.017792,0.993683,-0.110752,-0.023713,0.932646,0.359935,0.010041,-0.319773,-0.947417,-0.060183,0.148228,-0.987091,-0.049409,-0.502304,0.863247,-0.050386,-0.765038,0.641987,0.033448,-0.923032,-0.383221,0.036866,-0.564196,-0.824793,-0.078127,0.83047,-0.5515,-0.03177,0.994812,-0.096438,-0.003021,0.932737,0.360485,0.005707,0.535234,0.844661,-0.004608,-0.989227,0.146153,-0.016327,-0.141667,0.989746,0.003662,-0.890652,0.454604,0.070681,-0.603168,0.794458,0.035646,-0.915891,0.399792,0.033448,-0.670675,0.740959,-0.094363,-0.988983,0.113895,0.017701,-0.986419,0.163152,0.027558,-0.966277,-0.255928,-0.137761,-0.933317,-0.331492,-0.024781,-0.588061,-0.808405,-0.074923,-0.561907,-0.823786,-0.009827,-0.244728,-0.969512,0.036195,-0.278695,-0.959685,0.077761,0.186407,-0.979369,0.139744,0.166387,-0.976074,0.108036,0.750114,-0.652394,0.138096,0.757317,-0.638234,0.037629,0.981292,-0.188757,0.060823,0.983184,-0.172094,-0.002106,0.919889,0.392102,0.048311,0.92111,0.386242,0.039552,0.405652,0.913144,0.081759,0.438765,0.894833,0.043428,-0.2378,0.970336,0.086245,-0.200232,0.975921,-0.129185,-0.283151,-0.950316,-0.019959,-0.329997,-0.943754,-0.146733,0.718467,0.679861,0.385113,0.386395,0.838038,0.099704,0.648,0.755058,-0.171972,0.821986,0.542894,0.055177,0.957579,-0.282785,-0.042695,0.781915,-0.621876,-0.236976,0.811304,-0.53441,-0.229682,0.922452,-0.310251,-0.37196,0.848506,0.376354,-0.298227,0.873043,0.385754,-0.013642,0.617817,-0.786187,0.000122,0.789148,-0.614185,-0.115787,0.845088,-0.521897,-0.142521,0.734977,-0.662893,-0.24012,0.889187,-0.389386,-0.373852,0.901395,-0.218329,-0.054476,0.566088,-0.822504,0.051881,0.407758,-0.911588,0.107669,0.977203,0.182836,-0.182684,0.969176,0.165166,-0.416242,0.897824,0.143559,0.133366,0.527177,-0.839198,0.216102,0.330699,-0.918638,0.231544,0.249672,-0.940214,0.148686,0.449049,-0.881008,0.744285,-0.350414,-0.568499,0.79812,-0.40965,-0.441786,0.880856,-0.374737,-0.289193,0.911863,-0.288003,-0.292428,0.916898,-0.394879,-0.057741,0.960021,-0.279763,-0.006592,0.589953,-0.341807,0.731498,0.63036,-0.264229,0.729911,0.859859,-0.32551,0.393262,0.843379,-0.383557,0.376263,0.672842,-0.051271,0.737968,0.891049,-0.08655,0.44554,0.236396,0.124241,0.963652,0.163823,-0.052644,0.985076,0.133274,-0.241096,0.961272,0.873501,-0.305063,0.379284,0.748558,-0.216193,0.62682,0.219428,0.522019,-0.824213,0.201086,0.450942,-0.869564,0.080844,0.686026,-0.723045,0.07654,0.561052,-0.824213,0.018372,0.542894,-0.839595,0.14182,0.745933,-0.650716,-0.009125,0.730247,0.683065,-0.01532,0.751061,0.660024,-0.009705,0.747551,0.664083,-0.035157,0.792077,0.609363,-0.018708,0.774621,0.63213,0.064882,0.759697,0.646992,-0.017243,0.649068,0.760521,0.012635,0.651723,0.758324,0.039766,0.681051,0.731101,0.391095,-0.145024,0.908841,0.319987,-0.323618,0.890408,0.4803,0.032899,0.876461,0.055208,0.798853,0.598956,0.029023,0.830775,0.555803,0.033143,0.75631,0.65334,-0.068117,0.877194,0.475234,0.273721,0.645039,0.713431,0.382641,0.520981,0.762963,0.097476,0.256203,-0.961669,-0.114231,-0.00293,-0.993439,0.024476,0.374493,-0.926878,0.098697,0.145177,-0.984436,0.017273,-0.003754,0.999817,-0.016846,0.189917,0.981628,0.070956,-0.202063,0.976775,0.103641,0.17719,0.978698,0.161046,-0.03061,0.98645,0.398968,-0.059389,0.915006,0.289895,0.156774,0.944121,0.223273,-0.250465,0.942015,0.466933,-0.252358,0.847499,0.604266,-0.025422,0.79635,0.575854,0.12479,0.807947,0.714133,0.102725,0.692404,0.683187,-0.142796,0.716117,0.740287,-0.543657,-0.395428,0.831141,-0.481918,-0.277352,0.622669,-0.724448,-0.295694,0.74987,-0.642537,-0.157476,0.881436,-0.468123,-0.062502,0.843745,-0.519761,0.133702,0.873989,-0.194433,0.445265,0.792688,-0.051546,0.60741,-0.016785,0.253883,0.967071,0.081362,0.281259,0.956145,0.241432,0.280221,0.929044,0.568957,0.264107,0.778771,0.687307,0.239845,0.685598,0.764336,-0.047487,0.643025,0.77514,0.131626,0.617878,0.317576,-0.948088,-0.015503,0.412641,-0.898221,0.151372,0.447188,-0.564348,0.693869,0.940275,-0.141697,-0.309427,0.750053,-0.247291,-0.613392,0.997162,-0.066775,0.033967,0.102176,-0.255318,0.961425,-0.078738,0.69396,0.71569,-0.201422,0.888028,0.413282,0.383892,0.392315,0.835841,0.536546,-0.316904,0.782067,0.707419,-0.170598,0.685873,0.734184,0.048555,0.677175,0.208411,0.614582,-0.760796,0.066958,0.488052,-0.870205,0.272683,-0.338664,0.90051,-0.038301,0.34196,-0.938902,-0.08768,0.075533,-0.993255,0.700461,0.215339,0.68038,0.997497,0.060244,-0.036439,0.93643,-0.029359,-0.34959,0.761223,-0.190497,-0.619831,0.577929,0.048036,0.814661,0.696799,-0.002625,0.717215,0.345408,0.153722,0.925748,0.860775,0.024323,0.508347,0.32667,-0.041993,-0.944182,0.430433,-0.153783,-0.889401,0.184362,-0.261574,-0.947386,0.159001,-0.166051,-0.973205,0.55501,-0.288522,-0.780175,0.333628,-0.390698,-0.857906,0.26487,-0.009735,-0.964202,0.378002,-0.221015,-0.899014,0.481368,-0.173894,-0.859066,0.386914,-0.013398,-0.921995,0.424299,-0.423994,-0.800104,0.571886,-0.313211,-0.758141,0.11594,0.198706,-0.973174,0.230995,-0.197577,-0.952666,0.254097,-0.529435,-0.809381,-0.026154,-0.246864,-0.968688,0.010132,-0.343211,-0.939177,0.249092,-0.376598,-0.892239,0.130955,-0.345592,-0.929197,0.715445,-0.436598,-0.545396,0.608386,-0.430738,-0.666555,0.504532,-0.683523,-0.527451,0.664754,-0.516465,-0.53975,0.254646,-0.908505,-0.331217,0.512589,-0.325968,-0.794336,0.391736,-0.313364,-0.865047,-0.015961,0.452254,0.89172,0.055849,0.462966,0.884579,0.177404,0.457961,0.871059,0.474624,0.415998,0.775658,0.618488,0.309427,0.722282,0.708975,0.175817,0.682913,0.498398,0.08005,0.863216,0.63567,0.234016,0.735618,-0.187231,-0.169591,-0.967528,0.120487,0.217139,-0.968657,0.280953,0.199225,-0.93878,0.069735,0.391644,-0.917447,0.258034,0.102329,-0.960692,0.131809,-0.042787,-0.990326,0.905271,-0.417615,0.077609,0.904447,-0.404431,0.135563,0.942869,-0.301981,0.140568,0.976043,-0.062105,0.208411,0.867183,-0.346843,0.357311,0.616596,-0.25721,0.744041,0.250557,0.913053,-0.321757,0.139378,0.693411,-0.7069,0.210181,0.934049,-0.288675,0.150304,0.651662,-0.743431,0.272439,0.946043,0.175268,0.287698,0.922025,0.25898,0.10593,0.526292,0.843654,0.193121,0.45616,0.868648,-0.072451,-0.12949,-0.988922,0.970611,0.06415,0.231849,0.160131,-0.078463,0.983947,0.106662,-0.182073,0.977477,-0.401868,0.877163,0.262764,-0.510971,0.842433,0.170782,-0.400342,0.909268,-0.113651,-0.210059,0.924039,-0.319346,-0.100009,0.80163,0.589373,0.093478,0.675649,0.731254,0.325297,0.67806,-0.659078,0.083804,0.837703,-0.539598,0.244453,0.529862,-0.812067,-0.109043,0.879849,-0.462539,-0.257637,0.94644,0.194555,-0.158452,0.949278,0.271523,-0.032472,0.928159,0.370708,0.081088,0.846919,0.525437,0.16773,0.715842,0.677786,0.080752,-0.220313,0.972045,0.215827,0.377056,0.900662,0.010498,-0.261025,0.965239,0.078249,0.318888,0.944548,0.086459,-0.707724,0.701132,0.003021,-0.735588,0.677389,0.118717,-0.591266,-0.797662,0.057833,-0.971831,-0.22837,0.065584,-0.601245,-0.79635,-0.034303,-0.967772,-0.249367,-0.007233,-0.992859,0.118839,-0.107852,-0.977264,0.182409,0.103641,-0.223945,-0.969054,0.072909,-0.233009,-0.969726,0.109378,0.158635,-0.981231,0.044191,0.168798,-0.984649,0.274148,0.905515,0.323771,0.152074,0.900693,0.406934,0.136845,0.960082,-0.243873,0.049409,0.974883,-0.217078,0.118686,0.690756,-0.713248,-0.002899,0.732109,-0.681143,0.034272,-0.952147,0.303598,-0.058748,-0.941893,0.330638,0.994079,0.105655,-0.024628,0.921354,0.053285,-0.385052,0.613941,0.15891,0.773156,0.682607,0.123203,0.720298,0.367016,0.230903,0.901089,0.817316,0.087924,0.569414,0.166448,-0.070101,-0.98352,0.039857,-0.108036,-0.993316,0.790918,-0.02237,-0.611469,0.520951,-0.055483,-0.851741,0.951659,0.102298,0.289529,0.950194,0.196204,0.242012,0.964934,0.132359,0.22663,0.992676,0.095462,-0.073855,0.982482,0.185492,-0.01648,0.974883,0.060854,0.214148,0.99353,0.027558,-0.11008,0.926725,0.194494,0.321421,0.929044,0.128422,0.346904,0.926084,0.053377,0.373455,0.832453,0.156468,-0.53148,0.850948,0.07181,-0.52028,0.5992,0.114414,-0.792352,0.539293,0.196081,-0.818964,0.859432,0.03003,-0.5103,0.644856,0.069765,-0.761071,0.046693,0.121311,-0.991485,0.058992,0.212989,-0.975249,0.071261,0.070864,-0.994903,0.9447,0.048921,-0.324229,0.942442,0.158849,-0.294137,0.939848,-0.00412,-0.341502,-0.278848,0.083071,-0.956725,-0.183966,0.168493,-0.968352,-0.315867,0.028565,-0.948363,-0.12122,-0.033631,-0.992035,-0.19248,-0.136876,-0.971679,0.209693,-0.102237,-0.972381,0.111515,-0.215308,-0.970153,0.637654,0.11475,0.761681,0.645833,-0.32844,0.689169,0.722861,-0.318003,0.613422,0.688986,0.260262,0.676412,0.425672,-0.078616,0.901425,0.328684,0.483474,0.811274,0.591845,-0.254402,0.764824,0.545274,0.344035,0.764367,0.99472,0.101596,0.013367,0.905515,-0.424268,-0.003479,0.866604,-0.369549,-0.335246,0.928556,-0.039003,-0.36906,0.648518,-0.158055,-0.74456,0.645589,-0.303323,-0.700827,0.793542,-0.114719,-0.597552,0.770562,-0.306986,-0.558519,0.909391,0.154668,0.386059,0.85989,-0.369121,0.35258,0.974029,0.226081,0.012024,0.912351,0.173345,-0.37083,0.609638,0.030457,0.792077,0.654439,0.206915,0.727195,0.383709,-0.100742,0.917936,0.729392,0.270058,0.628498,0.311289,0.276742,-0.909116,0.106693,0.267739,-0.957549,0.60094,0.177252,-0.779351,0.787957,0.135136,-0.600696,0.895901,0.25135,0.366253,0.74453,0.665792,0.048769,0.770684,0.56093,-0.302225,0.56859,0.433363,0.699179,0.483627,0.633351,0.604053,0.33845,0.432783,0.835505,0.454634,0.739036,0.497085,0.251869,0.520676,-0.815729,-0.002167,0.450972,-0.892514,0.570788,0.445906,-0.689413,0.704489,0.469466,-0.532212,0.587817,0.741478,0.323466,0.694388,0.515244,0.502274,0.695181,0.652242,0.302103,0.719779,0.647755,0.249641,0.716697,0.646657,0.261055,0.757683,0.651814,0.032319,0.704794,0.70922,0.014313,0.705893,0.674886,-0.214972,0.652394,0.728202,-0.209815,0.471511,0.801843,-0.366955,0.630024,0.642018,-0.436842,0.392224,0.657155,-0.643605,0.262429,0.814142,-0.51796,0.05594,0.669393,-0.740776,0.055788,0.796045,-0.602619,-0.084902,0.677602,-0.730461,-0.029878,0.761467,-0.647481,0.012055,-0.171026,0.985168,0.107761,-0.160863,0.981048,0.035157,0.505112,0.8623,-0.029115,0.485672,0.873623,0.089633,-0.142155,0.985748,0.029298,0.521195,0.852901,0.052705,-0.132023,0.989837,0.01532,0.528855,0.848567,-0.122623,0.773186,-0.622181,-0.082492,0.792474,-0.604266,-0.099673,0.13834,-0.985351,-0.151585,0.145878,-0.977599,-0.069399,0.804773,-0.589465,-0.065706,0.141942,-0.987671,0.007996,0.805872,-0.592029,0.0047,0.148167,-0.988922,-0.021607,-0.828333,0.559771,-0.052065,-0.809626,0.584613,-0.068819,-0.993988,0.085025,-0.142308,-0.987365,0.069308,-0.073794,-0.992096,0.101413,0.043641,-0.804041,0.592944,-0.045381,-0.99057,0.129063,0.053041,-0.783135,0.619556,0.000916,-0.548814,0.835902,0.125217,-0.534562,0.83578,0.1348,-0.507797,0.850826,0.100131,-0.500565,0.859859,-0.071871,-0.313211,-0.946928,-0.041993,-0.32609,-0.944395,-0.076052,-0.554247,-0.828852,-0.020264,-0.559221,-0.828761,-0.015412,-0.327982,-0.944548,-0.059694,-0.544542,-0.836573,-0.007904,-0.323801,-0.946074,-0.056429,-0.553575,-0.830866,-0.038331,-0.912015,-0.408338,-0.147984,-0.901578,-0.406446,-0.116611,-0.906644,-0.405377,-0.09006,-0.918455,-0.385052,-0.011292,0.923734,0.382824,0.047395,0.927244,0.37141,0.016999,0.99002,-0.139866,-0.026307,0.987457,-0.155553,0.044954,0.930052,0.364574,0.010193,0.992889,-0.118534,0.023713,0.932646,0.359935,0.017792,0.993683,-0.110752,0.060183,0.148228,-0.987091,-0.010041,-0.319773,-0.947417,0.050386,-0.765038,0.641987,0.049409,-0.502304,0.863247,-0.036866,-0.564196,-0.824793,-0.033448,-0.923032,-0.383221,0.03177,0.994812,-0.096438,0.078127,0.83047,-0.5515,-0.005707,0.535234,0.844661,0.003021,0.932737,0.360485,0.004608,-0.989227,0.146153,0.016327,-0.141667,0.989746,-0.003662,-0.890652,0.454604,-0.070681,-0.603168,0.794458,-0.033448,-0.670675,0.740959,-0.035646,-0.915891,0.399792,0.094363,-0.988983,0.113895,-0.017701,-0.986419,0.163152,-0.027558,-0.966277,-0.255928,0.137761,-0.933317,-0.331492,0.024781,-0.588061,-0.808405,0.074923,-0.561907,-0.823786,0.009827,-0.244728,-0.969512,-0.036195,-0.278695,-0.959685,-0.077761,0.186407,-0.979369,-0.139744,0.166387,-0.976074,-0.108036,0.750114,-0.652394,-0.138096,0.757317,-0.638234,-0.037629,0.981292,-0.188757,-0.060823,0.983184,-0.172094,0.002136,0.919889,0.392102,-0.048311,0.92111,0.386242,-0.039552,0.405652,0.913144,-0.081759,0.438765,0.894833,-0.043428,-0.2378,0.970336,-0.086245,-0.200232,0.975921,-0.982971,0.18363,0.005615,-0.919156,0.135716,0.369732,-0.753838,0.177831,0.632496,-0.541307,0.481094,-0.689566,-0.734672,0.437757,-0.518235,-0.118686,0.474502,-0.872189,-0.8858,0.318796,-0.337168,-0.655232,0.182226,0.733085,-0.595386,0.158147,0.787683,-0.403699,0.127781,0.905911,0,0.11066,0.993835,0.136296,0.453108,-0.880947,0,0.472152,-0.881497,0.919156,0.135716,0.369732,0.982971,0.18363,0.005615,0.753838,0.177831,0.632496,0.734672,0.437757,-0.518235,0.541307,0.481094,-0.689566,0.118686,0.474502,-0.872189,0.8858,0.318796,-0.337168,0.595386,0.158147,0.787683,0.655232,0.182226,0.733085,0.403699,0.127781,0.905911,-0.136296,0.453108,-0.880947,-0.982604,0.185522,-0.003693,-0.942473,0.139744,0.303598,-0.790674,0.183233,0.584124,-0.456099,0.503555,-0.733726,-0.740196,0.437635,-0.510422,-0.103488,0.471328,-0.875851,-0.901914,0.303995,-0.306772,-0.637867,0.182806,0.7481,-0.574664,0.166265,0.801294,-0.628376,0.18482,0.755608,-0.557756,0.169591,0.812464,-0.361126,0.16306,0.918119,-0.328104,0.17365,0.928526,0,0.164098,0.986419,0,0.178869,0.983856,0.066225,0.452773,-0.889157,0,0.469924,-0.882687,0.942473,0.139744,0.303598,0.982604,0.185522,-0.003693,0.790674,0.183233,0.584124,0.740196,0.437635,-0.510422,0.456099,0.503555,-0.733726,0.103488,0.471328,-0.875851,0.901914,0.303995,-0.306772,0.574664,0.166265,0.801294,0.637867,0.182806,0.7481,0.557756,0.169591,0.812464,0.628376,0.18482,0.755608,0.361126,0.16306,0.918119,0.328104,0.17365,0.928526,-0.066225,0.452773,-0.889157,0.016449,0.482772,-0.875576,-0.022156,0.657216,-0.753349,0.426283,0.899716,-0.09357,0.552355,0.796258,-0.246651,0.642842,0.614277,-0.457564,0.11771,0.286233,-0.950896,0.04471,0.368664,-0.928465,0.115513,0.223914,-0.967711,0.106296,0.196631,-0.97467,0.069613,0.308206,-0.948729,-0.639119,0.319651,-0.699484,-0.656087,0.406903,-0.635578,0.074496,0.547136,-0.833705,0.073336,0.420331,-0.904386,-0.004547,0.521805,-0.853023,0.029542,0.433576,-0.900601,0.008087,0.436232,-0.899777,0.00473,0.616932,-0.786981,0.000153,0.286477,-0.958068,0.077181,0.289468,-0.954039,0.086093,0.194586,-0.977081,0,0.196112,-0.98056,0.014954,0.279763,-0.959929,0.051637,0.176122,-0.983001,0.061892,0.588153,-0.80636,0.034211,0.427168,-0.9035,0.039766,0.282998,-0.958281,0.060671,0.185278,-0.980804,0.103702,0.066836,-0.99234,0,0.070009,-0.997528,0,-0.710288,-0.703879,0.168706,-0.706534,-0.687246,0.230873,0.137791,-0.963164,0.196295,0.132847,-0.971496,0.716971,-0.411359,-0.562761,0.663228,-0.44438,-0.602161,0.80459,0.366344,-0.46733,0.921445,-0.10773,-0.373211,0.143193,0.121158,-0.982238,0.08182,0.074038,-0.993866,0.494247,-0.553484,-0.670309,0.292917,-0.663533,-0.688406,0.087527,0.065584,-0.993988,0.21836,-0.70278,-0.677023,0.10828,0.291238,-0.950468,0.24897,0.397015,-0.883389,0.059053,0.768609,-0.636952,0.075137,0.677541,-0.73159,3.1e-05,0.243812,-0.969787,0,0.65334,-0.757042,0.317392,0.562151,-0.763665,0.901578,0.40144,0.161168,0.380657,0.920621,-0.086612,-0.070986,0.831233,-0.551317,0.110965,0.436445,-0.89285,0.250618,0.453841,-0.855068,0,0.465896,-0.884823,0.365368,0.531571,-0.764122,0.689535,0.6892,-0.222419,0.774682,-0.435743,0.458174,0.574602,0.225532,0.786706,-0.126774,0.083163,0.988433,0.074282,-0.606586,0.791498,0.908902,-0.304056,0.285257,0.616565,0.274331,0.737938,0.994201,0.103092,-0.029542,0.951506,0.301614,-0.060183,0.999573,-0.028291,-0.00058,0.922269,0.377148,-0.084567,0.667104,0.368786,0.647206,0.877499,-0.282357,0.387555,0.68923,0.3361,0.641804,0.877255,-0.322245,0.355693,0.023713,0.193365,0.980834,0.273476,-0.510514,0.81521,0.980834,-0.190466,-0.040193,0.863521,0.453444,0.220618,0.420881,0.341014,0.840571,0.676534,-0.359813,0.642476,0.939634,-0.220893,0.261269,0.775933,0.457717,0.434004,0.999176,-0.030824,-0.025605,0.859615,0.503403,-0.08713,0.514908,-0.209937,-0.831111,0.327799,0.18009,-0.927396,0.806543,0.445112,-0.388989,0.824946,-0.299234,-0.479446,0.820826,0.405683,-0.40199,0.805414,-0.346416,-0.48088,0.796594,0.494919,0.347026,0.920072,-0.264351,0.289071,0.215827,0.818842,0.531846,-0.238502,0.582293,0.777184,0.18601,0.67037,0.718314,0.348949,0.934446,0.070803,0.747795,-0.378857,0.545183,0.599261,0.395672,0.695883,-0.073824,0.232093,0.969878,0.134007,-0.40849,0.902829,0.414899,0.9064,-0.079257,0.154485,0.822108,0.547929,0.213965,0.85641,0.469802,-0.110324,0.626118,0.771844,0.999084,0.04178,0.007569,0.83462,0.53563,-0.128361,0.58797,0.511612,0.626514,0.876034,-0.231269,0.423109,0.617237,0.482406,0.621479,0.818476,-0.293558,0.493851,0.011902,0.275887,0.961089,0.227149,-0.360363,0.904721,0.324259,0.917661,0.229621,0.21308,0.730705,0.648549,0.112644,0.925932,0.360454,0.424268,0.896329,-0.128636,0.98114,-0.16834,0.094668,0.770318,0.585345,0.252846,0.243355,0.368053,0.897366,0.527482,-0.299203,0.795099,0.990051,0.06592,0.12421,0.78753,0.614826,0.041719,0.676687,0.565661,0.471236,0.950285,-0.247902,0.18833,-0.052828,0.758141,-0.649892,0.351878,0.927213,-0.128178,0.315256,0.920743,-0.229804,0.454268,0.857112,0.242775,0.499313,-0.105594,-0.859951,0.265358,0.271493,-0.925108,0.721061,0.575091,-0.386364,0.84582,-0.203955,-0.492904,0.744865,0.533616,-0.400464,0.88934,-0.229926,-0.395154,0.735252,0.577441,0.354839,0.949339,-0.069124,0.306467,0.640431,0.274819,0.717124,-0.159307,0.235206,0.95877,0.342418,0.815058,0.467299,-0.093814,0.640858,0.761895,0.927366,0.327799,-0.180273,0.657399,0.436598,0.614154,0.859249,-0.238838,0.452345,0.981201,-0.119877,-0.151128,0.963958,0.225196,-0.141453,0.686697,0.255318,0.680593,0.667928,0.744163,0.007691,0.428846,0.723319,0.541154,0.876034,0.450362,-0.172277,0.664144,0.44792,0.598498,0.508011,0.837245,-0.202216,0.31251,0.874691,0.370464,0.687796,0.418958,0.592761,0.260109,0.908567,0.326853,-0.020356,0.262001,0.964843,-0.03235,0.688711,0.724265,0.787317,0.559343,0.259224,0.191809,0.351939,0.916135,0.23014,0.936338,0.265114,0.025513,0.654897,0.755242,0.861293,0.507126,-0.030946,0.748955,0.498459,0.436506,0.454756,0.88699,-0.079836,0.159124,0.938292,0.306986,0.234016,0.120609,-0.96469,0.756066,0.480422,-0.444411,-0.045503,0.61858,-0.784387,0.302255,0.916471,-0.262123,0.759911,0.450942,-0.468154,0.335582,0.94116,-0.039064,0.76278,0.564837,0.314737,0.627979,0.744346,0.227119,0,0.052004,0.998627,0,-0.261391,0.965209,0.339,-0.352977,0.872036,0.21836,-0.010559,0.975799,0,-0.996216,0.086703,0.480361,-0.86581,0.139897,-0.82812,0.513291,-0.225227,-0.62096,-0.769402,-0.149541,-0.565722,-0.786309,0.248207,-0.866176,0.486587,0.11362,-0.345012,-0.787042,0.511368,-0.766289,0.396008,0.505875,-0.588031,0.602802,-0.539262,-0.466292,-0.713004,-0.523576,-0.847468,0.498001,-0.183721,-0.568743,-0.821558,-0.03946,-0.608661,-0.779931,0.145543,-0.836756,0.535966,0.111942,-0.718619,0.530259,0.449843,-0.50676,-0.750114,0.424848,-0.118748,-0.683706,0.720023,-0.313486,0.580615,0.751366,-0.721244,0.402966,-0.563372,-0.491226,-0.835627,-0.245766,0.01767,-0.745811,0.665883,-0.428571,0.470779,0.771142,0.698599,-0.555589,0.450819,0.425245,0.527238,0.735618,0.728813,-0.497848,0.470016,0.549608,0.601428,0.579791,0.142582,0.562822,-0.814142,0.212989,-0.589129,-0.779443,0.012543,0.287027,-0.957823,0.202582,-0.787866,-0.58153,-0.592853,-0.792962,-0.140233,-0.634754,0.436171,-0.637806,-0.022492,0.360912,-0.93231,0.028657,-0.753502,-0.656789,-0.547594,-0.707053,-0.447371,-0.682089,0.616688,-0.392926,-0.082766,0.651082,-0.754448,0.06653,-0.496719,-0.865322,-0.446333,-0.812922,0.374065,0.179205,-0.719535,0.670888,0.121982,0.460036,0.879452,-0.747185,0.407239,0.525163,-0.678243,-0.684408,0.267403,-0.851558,0.37907,-0.362102,-0.928922,0.360179,-0.085574,-0.464614,-0.590075,0.660237,-0.284433,-0.543199,0.789911,-0.838008,0.46321,0.288308,0.304361,-0.322123,0.89642,0.003693,0.754784,0.655934,-0.603351,-0.769951,-0.207617,-0.805322,0.559832,-0.194922,-0.870022,0.484329,0.0918,-0.590808,-0.802881,0.079134,-0.876186,0.481887,0.006348,-0.500381,-0.765526,-0.40437,-0.583056,-0.808161,-0.08298,-0.863124,0.374371,0.338847,-0.458754,-0.808588,0.368358,-0.688192,0.504135,0.521683,-0.842982,0.525346,-0.115421,-0.408063,-0.730186,-0.54796,0.071688,-0.703574,0.706992,0.053652,0.47148,0.880215,-0.444288,0.714072,-0.540971,-0.074831,-0.301889,-0.950377,-0.65923,-0.285623,0.695547,-0.68218,-0.178625,0.709006,0.294778,-0.195227,0.935392,0.289651,-0.256172,0.922208,-0.468764,-0.684439,0.558336,0.282235,-0.720115,0.633839,0.6339,-0.18189,0.751701,0.632557,-0.118656,0.765343,0.484176,-0.733696,0.476669,-0.087161,0.342265,0.935545,0.185583,0.598285,0.779473,-0.688131,0.091281,0.71981,0.777306,-0.153325,0.610096,0.801508,-0.027741,0.597339,0.989776,0.03827,-0.137242,0.98117,0.094424,-0.168371,0.463759,-0.821162,0.332499,0.819453,-0.538133,-0.197211,0.342418,0.724662,0.597949,0.608783,0.785882,-0.108341,0.429609,0.508011,-0.746544,0.728263,0.669668,-0.14539,0.732139,-0.68096,0.014252,0.429762,-0.648061,-0.628712,0.741539,0.6639,0.096408,0.71395,-0.675436,0.184362,0.720939,0.657369,0.219275,0.610187,-0.748955,0.258217,0.387371,0.504593,0.771538,0.318064,-0.637104,0.702048,0.713553,0.663747,0.224097,0.387432,0.501175,0.773736,0.318674,-0.640156,0.698996,0.604511,-0.747856,0.274331,0.751457,0.65685,0.061495,0.721488,-0.661885,0.203345,0.816645,0.525895,-0.237678,0.651143,0.758843,0.011628,0.548631,-0.762596,0.342662,0.767083,-0.629658,-0.122806,0.583178,0.531571,-0.614215,0.564776,0.620838,0.543596,0.567156,-0.56444,0.599719,0.585925,-0.611286,-0.531938,-0.552232,0.530076,-0.643422,-0.488784,-0.653279,-0.578143,-0.625813,-0.545518,0.557421,-0.636891,0.577105,0.511124,-0.095828,-0.663594,0.741874,0.06943,-0.765099,-0.640126,0.034944,0.640767,-0.76693,-0.035585,0.768273,0.639088,0.095431,0.732566,-0.67391,-0.498428,0.671987,-0.547685,-0.557878,0.568346,0.604755,0.063448,0.671834,0.737968,0.630024,0.542985,-0.555132,0.641285,0.473067,0.604083,-0.158971,-0.744835,0.648,-0.674886,-0.544115,0.498398,-0.570086,-0.508682,-0.645161,-0.02945,-0.672323,-0.739647,0.508591,-0.701437,0.499252,0.502976,-0.593402,-0.628346,0.679586,0.718467,0.148106,0.823542,0.508866,0.250649,0.637074,-0.74337,0.203742,0.290139,-0.895077,0.338542,0.905728,0.403485,0.129765,0.672018,-0.733573,0.101108,0.19779,0.48442,0.852168,0.01767,-0.645161,0.763817,0.825953,0.503311,0.253883,0.213111,0.477004,0.852657,0.034944,-0.654897,0.754875,0.65041,-0.743431,0.155675,0.795831,0.583605,-0.161229,0.62508,-0.757347,-0.188818,0.423566,0.515824,-0.744621,0.161351,-0.62038,-0.767479,0.767052,-0.30134,-0.566363,0.759453,-0.431196,-0.487075,0.845454,-0.423261,-0.325541,0.900632,-0.245338,-0.358654,0.905728,-0.387127,-0.17246,0.956298,-0.224525,-0.187262,0.127628,0.638203,0.759178,0.104221,0.624653,0.773888,0.188116,0.342967,0.920286,0.134831,0.407239,0.903287,0.061983,0.628956,0.774957,0.131993,0.456282,0.879971,0.181219,0.584674,0.790735,0.120518,0.603565,0.78811,0.032624,0.615436,0.787469,0.462752,0.107181,0.879971,0.544633,0.036378,0.837855,0.436689,-0.275369,0.85641,0.371471,-0.14951,0.916288,0.687521,-0.052614,0.724204,0.628193,-0.29194,0.721152,0.094668,0.663961,0.741722,0.178686,0.502731,0.845759,0.167852,0.70043,0.693686,0.262795,0.595141,0.759423,0.121952,0.634175,0.763482,0.238411,0.634693,0.735038,0.281747,0.168096,0.944639,0.322245,-0.01236,0.946562,0.442061,-0.062899,0.894742,0.309885,0.085299,0.946928,0.354747,-0.20072,0.913144,0.513901,-0.230445,0.826289,0.357128,0.164525,0.919431,0.330515,-0.022217,0.94351,0.312998,-0.1536,0.937223,0.633564,-0.221473,0.741295,0.54857,-0.11417,0.828242,0.234565,0.298074,0.92526,0.188452,0.221412,0.956786,0.323832,0.353313,0.877651,0.220832,0.704733,0.674184,0.245247,0.645344,0.723411,0.709128,0.704093,0.036714,0.667806,0.732231,0.133518,0.356273,0.607166,0.710196,0.855708,0.512406,0.071932,0.574602,-0.28193,0.768303,0.682852,-0.267983,0.679586,0.751396,-0.300363,0.587481,0.697653,-0.192297,0.690115,0.601917,-0.111454,0.790735,0.974364,0.149693,0.167882,0.391827,-0.27427,0.87817,0.326731,-0.164037,0.930754,0.628986,0.040071,0.77633,0.529588,0.104099,0.841823,0.968108,0.233558,0.090457,0.000153,0.008026,-0.999939,0.665395,-0.395886,-0.632832,0.629383,-0.38255,-0.676351,-0.105289,-0.188299,-0.97644,0.153905,0.487655,0.85934,0.0936,0.429975,0.897946,0.205939,0.567248,0.797357,0.393078,0.189367,0.899777,0.248909,0.431196,0.867214,0.409162,0.380596,0.829279,0.507981,0.310526,0.80343,0.943114,0.305795,0.130406,0.91406,-0.198218,0.353801,0.974334,-0.225013,0.001282,0.936735,-0.349986,-0.00058,0.88876,-0.26252,0.375683,0.825404,-0.521317,-0.216559,0.918851,-0.319529,-0.231452,0.806146,-0.423536,-0.413129,0.724265,-0.567492,-0.391583,0.588275,-0.519974,-0.619282,0.449049,-0.624348,-0.639149,0.481277,-0.211829,0.850551,0.524308,-0.090518,0.846675,0.654317,-0.152501,0.740654,0.603046,-0.329905,0.726249,0.368175,-0.158116,0.916196,0.381024,-0.145116,0.913083,0.244942,-0.533494,-0.809534,0.155065,-0.61858,-0.770226,-0.806085,-0.330393,-0.490951,-0.366894,-0.397443,-0.84106,0.969451,-0.245094,0.007843,0.858913,-0.51088,-0.034974,0.829096,-0.509323,0.230476,0.924375,-0.26603,0.273354,0.963561,-0.145665,-0.224219,0.980987,-0.016388,-0.193335,0.892575,-0.140049,-0.42851,0.828211,-0.332377,-0.451125,0.766717,-0.318003,-0.557665,0.593249,-0.532029,-0.604114,0.470992,0.070009,0.87933,0.522752,0.210608,0.826014,0.640095,0.32963,0.69393,0.663778,0.267647,0.698386,0.355205,-0.041963,0.933836,0.384075,0.031068,0.922758,0.289499,-0.516923,-0.805567,0.2331,-0.623432,-0.7463,-0.878964,-0.468245,-0.089969,-0.325968,-0.471084,-0.819636,0.990173,0.139348,0.009461,0.994232,0.100681,0.036073,0.927305,0.236366,0.29017,0.880703,0.34727,0.322092,0.972961,0.186041,-0.136692,0.977111,0.178747,-0.115238,0.942259,0.147984,-0.300302,0.911802,0.131443,-0.388928,0.830592,0.014374,-0.556658,0.80929,-0.029756,-0.586627,0.460097,0.256325,0.850032,0.490371,0.346721,0.799554,0.639729,0.352794,0.682821,0.663472,0.167364,0.729209,0.352641,0.19367,0.915464,0.37022,0.242134,0.896817,0.613483,-0.20191,-0.763421,0.600696,-0.237922,-0.763207,-0.498672,-0.410077,-0.763604,-0.159124,-0.327738,-0.931242,0.983917,0.170354,-0.053163,0.976043,0.212989,-0.044221,0.959868,0.185247,0.210456,0.948637,0.192114,0.251289,0.201025,0.108493,0.97354,0.116398,-0.07416,0.990417,0.323801,-0.054384,0.944548,0.384411,0.092532,0.918485,0.704642,0.009796,0.709464,0.742241,-0.047182,0.668447,0.937834,-0.039308,-0.344829,0.928129,-0.112796,-0.354717,0.87289,-0.086398,-0.480178,0.858608,0.024079,-0.512009,0.98233,-0.001282,-0.186987,0.98001,-0.018128,-0.197974,0.632313,0.052156,-0.772912,0.703818,0.238777,-0.669027,-0.372356,-0.055696,-0.926389,-0.227577,0.059145,-0.971954,0.999237,0.037935,-0.005554,0.998627,0.03003,-0.042756,0.969695,-0.083316,0.22953,0.960265,0.063326,0.271798,-0.026307,-0.393292,0.919004,-0.49852,-0.864223,-0.067385,-0.345439,-0.937071,0.050417,0.174902,-0.470565,0.864834,-0.011383,-0.998383,-0.055208,0.621784,-0.451918,0.639607,0.916868,-0.112674,-0.382885,-0.126041,-0.978484,-0.163244,-0.096713,-0.982482,-0.159215,0.872951,-0.184698,-0.45143,0.973205,-0.093814,-0.209845,-0.072359,-0.951628,-0.298593,0.866207,0.001343,-0.499649,0.119633,-0.974639,-0.189062,0.024323,-0.784478,-0.619648,0.193945,0.283151,-0.939238,0.994598,-0.101871,-0.018738,-0.020325,-0.91757,-0.397015,0.953948,-0.15006,0.259682,0.117435,-0.932432,-0.341685,0.5862,0.307352,0.749565,0.502762,0.365551,0.783288,0.703818,0.198126,0.68218,0.938871,-0.059175,-0.339061,0.798517,-0.144597,-0.584307,0.985107,-0.047487,-0.165136,0.610767,-0.290933,-0.736381,-0.217597,-0.256752,-0.941649,0.998596,-0.047823,0.021973,0.953001,-0.008362,0.302805,0.852748,0.514359,-0.090609,0.885586,0.36668,-0.285043,0.872494,0.199835,-0.445845,0.572771,0.500351,0.649251,0.595355,0.589557,0.545824,0.535691,0.451766,0.71337,0.695273,0.013215,-0.718589,-0.262673,-0.275704,-0.92465,0.787347,0.604083,0.122929,0.690542,0.657247,0.301859,0.669759,0.742515,-0.00412,0.648274,0.748527,-0.139256,0.737541,0.606098,-0.297678,0.534867,0.624073,0.569597,0.536027,0.621906,0.570849,0.541307,0.596881,0.592181,0.740776,0.346995,-0.575152,-0.111332,-0.048524,-0.992584,0.694723,0.710288,0.113254,0.657979,0.681692,0.319865,0.755425,0.65508,0.013031,0.697775,0.706717,-0.11652,0.64214,0.7116,-0.285012,0.506211,0.708243,0.49205,0.550371,0.676687,0.489029,0.503922,0.654592,0.563494,0.605121,0.621937,-0.496963,-0.208197,0.334422,-0.919126,0.785485,0.595874,0.167089,0.75692,0.524674,0.389508,0.326487,0.253334,0.910581,0.395856,0.15659,0.904843,0.648122,0.230354,0.725822,0.800287,0.572161,-0.179205,0.788751,0.553453,-0.267434,0.790185,0.61269,0.013764,0.703604,0.63509,-0.318674,0.073061,0.763604,-0.641499,0.788568,0.572192,0.225166,0.721549,0.559557,0.407666,0.241523,-0.064821,0.9682,0.279794,0.169164,0.945006,0,-0.056795,0.998383,0,0.166631,0.985992,0.062746,0.621937,0.780511,0.058046,0.601978,0.796381,0,0.630604,0.776086,0,0.600452,0.799646,0.042146,0.4597,0.887051,0,0.454634,0.890652,0,-0.081027,0.996704,0.191504,-0.059511,0.979675,0.169317,0.139378,0.975646,0,0.122257,0.992492,0,-0.140385,0.990081,0.215186,-0.140904,0.966338,0.123753,0.402661,0.906919,0,0.42906,0.903256,0,-0.106418,0.994293,0.228126,-0.104801,0.967956,0,0.639668,0.768609,0.068575,0.617908,0.783227,0,-0.277505,0.960692,0.161626,-0.16657,0.972686,0.139683,-0.165075,0.976318,0,-0.077425,0.996979,0,-0.232032,0.972686,0.169958,-0.042482,0.984527,0.128452,-0.084384,0.988098,0,0.061983,0.998047,0,-0.062777,0.998016,0.233894,0.137333,0.962493,0.199347,0.121738,0.97232,0,0.285653,0.958312,0,-0.24955,0.968352,0.031892,-0.062105,0.997528,0.116947,0.068758,0.990722,0,0.310953,0.950407,0,-0.985778,-0.167882,-0.48027,-0.868526,-0.122288,-0.040223,-0.332377,0.942259,0,-0.165258,0.986236,0.301157,0.390912,0.869747,0,0.387402,0.921873,0,0.509659,0.860347,0.35844,0.474013,0.804224,0,0.63448,0.772912,0.440596,0.577929,0.686911,0,0.681112,0.732139,0.484817,0.612262,0.624531,0,0.369701,0.929136,0.302622,0.303415,0.9035,0.779992,-0.453993,-0.430616,0.70333,-0.394726,-0.591174,0.947844,0.197699,-0.249886,0.96469,0.182073,-0.19013,0.191382,0.243629,-0.950774,0.654347,0.48439,-0.580615,0.901669,-0.319071,0.291757,0.913633,-0.404309,0.042238,0.976562,0.214728,0.013825,0.975311,0.201239,0.090701,0.866756,-0.488296,-0.10123,0.99292,0.111576,-0.04004,0.819636,-0.503891,-0.272469,0.987152,0.10593,-0.119358,0.220008,0.02945,0.975036,0.094546,0.074068,0.992737,-0.123875,0.661855,0.73928,-0.103641,0.689413,0.71688,0,0.093966,0.995575,0,0.729637,0.683798,0.265084,0.221137,0.938505,0.251961,0.123966,0.959746,0.172063,0.805994,0.566332,-0.016175,0.739464,0.672964,0.462172,0.605274,0.648061,0.472793,0.485488,0.735343,0.200232,0.960997,-0.19068,0.385296,0.887112,0.253975,0.757836,0.602161,0.251045,0.71334,0.680532,-0.167272,0.307657,0.350078,0.884732,0.269631,0.883877,0.382122,-3.1e-05,-1,-6.1e-05,-0.15894,-0.744835,0.648,0.66039,0.727958,0.184118,0.809137,0.578997,0.10004,0.628346,-0.764489,0.143925,0.312082,-0.870876,0.37962,0.908841,0.409955,0.077029,0.663839,-0.727287,0.1742,0.435408,0.527146,0.729728,0.346629,-0.619678,0.704123,0.837581,0.54265,0.062838,0.472762,0.473373,0.743217,0.30369,-0.66216,0.685018,0.659261,-0.75164,0.019562,0.527024,0.535691,-0.659688,0.38551,-0.625568,-0.678213,0.442335,0.494705,-0.748039,0.73043,0.677145,-0.088839,0.795373,-0.553972,0.245857,0.491348,-0.690329,-0.531022,0.361553,0.646626,0.671621,0.424818,-0.440413,0.790887,0.693777,0.71633,0.07416,0.319071,0.632771,0.705527,0.43553,-0.511307,0.740837,0.746361,-0.634022,0.202307,0.777673,0.535966,0.328501,0.487014,0.854274,0.181585,0.309824,-0.833705,0.457045,0.694937,-0.622974,0.35902,0.535691,0.617573,-0.575823,0.533891,0.609943,0.585559,0.61391,-0.573199,0.542711,0.613819,-0.525498,-0.589099,-0.597613,0.543596,-0.589312,-0.456618,-0.634358,-0.623737,-0.578417,-0.629597,0.518662,-0.662893,0.489883,0.566179,-0.038423,-0.727226,0.685293,0.106326,-0.703635,-0.702536,-0.072817,0.709098,0.701315,-0.021271,0.702536,-0.711295,-0.509537,0.231422,0.8287,-0.349467,0.742546,0.571368,-0.698172,0.608203,0.377606,-0.790582,0.31312,0.5262,-0.910337,0.010926,0.413648,-0.717338,-0.28721,0.634724,-0.986999,-0.120731,0.106021,-0.849666,-0.517533,0.100955,-0.976257,-0.003693,-0.216498,-0.831629,-0.31312,-0.458602,-0.883816,0.292367,-0.365154,-0.67101,0.195471,-0.715171,-0.764092,0.593524,-0.252663,-0.463637,0.717124,-0.52031,-0.687185,0.724387,0.054994,-0.330454,0.943724,0.012574,-0.687887,0.614826,0.385662,-0.782556,0.290353,0.550707,-0.47618,0.220923,0.8511,-0.310862,0.748802,0.585315,-0.903287,-0.006073,0.428938,-0.69039,-0.31785,0.649861,-0.98117,-0.146031,0.126225,-0.827937,-0.551897,0.099429,-0.974059,-0.013825,-0.225837,-0.808313,-0.344096,-0.477676,-0.867458,0.306284,-0.39201,-0.642964,0.183782,-0.743492,-0.749931,0.6039,-0.269967,-0.428785,0.722556,-0.542222,-0.668813,0.742698,0.032441,-0.291208,0.956603,0.008179,-0.936552,0.338664,0.09006,-0.947417,0.164006,0.274697,-0.865108,0.491409,-0.100375,-0.049135,0.998627,-0.018097,-0.07178,0.759209,0.64684,-0.207617,0.728965,-0.652272,-0.454421,0.108188,-0.884152,-0.644948,-0.500015,-0.577929,-0.667562,-0.739433,0.087039,-0.509049,-0.469771,0.721213,-0.262276,0.150945,0.953093,0.670797,-0.195471,0.715384,0.83108,0.315622,0.457839,0.462905,-0.715171,0.523637,0.326731,-0.945036,-0.011444,0.348125,-0.740959,-0.574236,0.509323,-0.231452,-0.828852,0.71691,0.290201,-0.633839,0.850093,0.5168,-0.100925,-0.799219,0.304361,0.518235,0.288522,0.906095,0.309397,0.152715,0.951415,-0.267312,-0.935026,0.349681,-0.058443,-0.51384,-0.095492,0.852535,0.573901,0.506211,0.643696,-0.24604,-0.61565,0.748589,0.8417,-0.013916,0.53975,-0.152715,-0.951415,0.267312,0.935026,-0.349681,0.058443,-0.288522,-0.906095,-0.309397,0.799219,-0.304361,-0.518235,-0.573901,-0.506211,-0.643696,0.51384,0.095492,-0.852535,-0.8417,0.013916,-0.53975,0.24604,0.61565,-0.748589,0.207984,0.61034,-0.764306,-0.024201,0.557237,-0.829951,-0.135228,0.956816,-0.25721,0.111576,0.957121,-0.26722,0.599414,0.608448,-0.520005,0.545579,0.802301,-0.242134,0.484573,0.073092,-0.87167,0.294412,-0.061708,-0.953673,0.754051,0.308115,-0.580035,0.779321,-0.339885,-0.526383,0.634022,-0.537584,-0.555834,0.91879,0.077273,-0.387036,0.919584,-0.3867,0.069216,0.795648,-0.59151,0.130436,0.997223,0.051088,-0.054048,0.823176,-0.039918,0.566332,0.684561,-0.191961,0.703177,0.943327,0.244942,0.223792,0.546617,0.49733,0.673666,0.365917,0.427015,0.826868,0.78872,0.545274,0.283822,0.251839,0.910306,0.32841,0.026337,0.90286,0.42906,0.623951,0.776147,0.090762,0.612293,0.780999,0.122776,0.779809,0.545671,0.306772,0.934935,0.244392,0.257149,0.844783,0.528642,0.082797,0.825251,0.395154,-0.403455,0.907956,0.059969,-0.414686,0.743431,0.296945,-0.599261,0.585315,0.596576,-0.549028,0.998047,0.037019,-0.050203,0.862941,0.47734,-0.165685,0.53325,0.810053,-0.243782,0.67745,0.574297,-0.459517,0.963744,-0.093081,0.249947,0.910306,0.067202,-0.408368,0.838374,0.475814,-0.265908,-0.846065,0.464187,0.261971,-0.986053,0.032929,0.163091,-0.374035,-0.311838,0.873379,-0.893338,0.171422,0.415326,-0.405347,-0.403912,0.820063,-0.317392,-0.656178,0.684591,0.228828,-0.738243,0.63448,0.25013,-0.425581,0.869625,0.682882,-0.680349,0.265969,0.72692,-0.368542,0.579424,0.908383,-0.243416,-0.339946,0.976897,-0.189215,-0.099246,0.954009,0.248939,-0.166845,0.783898,-6.1e-05,0.620838,0.183874,-0.076296,0.979949,-0.515122,0.03827,0.856227,0.824885,0.119663,-0.552446,0.927732,-0.176733,-0.328654,-0.376202,-0.570574,0.729972,-0.769951,-0.265816,0.580065,0.833796,-0.304025,0.460738,0.722007,-0.652058,0.231239,0.200262,-0.734458,0.648396,0.236152,-0.458113,0.856929,-0.60387,0.723716,-0.333934,-0.370006,0.917753,-0.1442,-0.013489,0.889431,-0.456832,-0.560106,0.619465,-0.550005,0.544786,0.770501,0.330851,0.330363,0.888394,-0.318735,-0.545701,0.700583,-0.459731,-0.507187,0.860439,0.048677,-0.061769,0.909909,-0.410138,-0.078402,0.706656,-0.703177,-0.439344,0.861446,0.254585,-0.091922,0.714011,0.694052,-0.801386,0.103397,0.589099,-0.954985,0.284646,-0.083316,0.132237,0.44612,-0.885128,0.735679,0.360332,-0.573473,0.846431,0.413953,-0.33488,0.851924,0.093753,0.515152,0.062746,-0.015534,0.997894,-0.579119,0.169286,0.797449,0.137944,-0.271554,-0.952452,-0.795556,-0.513657,-0.321238,-0.77575,0.498581,-0.386761,-0.323954,0.467055,-0.822718,-0.765587,0.276803,0.580706,0.542985,0.540513,-0.642628,0.979858,0.013855,-0.199133,0.686148,-0.694632,-0.215979,0.65041,-0.585589,-0.483718,0.870083,0.010102,-0.492752,0.995788,0.073946,-0.053652,0.687613,-0.636097,0.350047,0.931639,0.286233,0.223823,0.767907,-0.178472,0.615162,0.19541,0.298593,-0.934141,0.327952,-0.551042,-0.767327,-0.217902,-0.557024,-0.801386,-0.094974,0.255562,-0.962096,-0.549883,0.525681,0.649037,-0.471755,0.215949,0.854854,0.386975,0.212195,0.897305,0.561357,0.590808,0.579455,-0.641407,-0.59798,-0.480605,-0.877346,0.018036,-0.479507,-0.940886,0.198981,0.274026,-0.714866,-0.233345,0.659139,-0.757927,-0.64449,-0.100742,-0.995819,0.072268,-0.055391,-0.699911,-0.612995,0.366497,-0.984863,0.127934,0.116703,0.26017,0.640919,0.72216,0.071841,0.692434,0.717887,0.042451,-0.091372,0.994903,-0.099734,0.669088,0.736442,-0.232063,0.603168,0.763085,0.322459,0.634693,0.702231,-0.247261,0.601825,0.759362,0.433668,-0.057649,0.899197,-0.23487,-0.073275,0.969237,0.080691,0.838191,0.539323,-0.129795,0.820887,0.556108,-0.476821,0.603656,0.638905,-0.574908,-0.142338,0.805689,0.698935,-0.097018,0.708548,0.503891,0.640187,0.579821,-0.342448,0.71923,0.60448,0.341411,0.749016,0.567766,0.438368,0.836665,0.328288,0.097293,0.943266,0.317423,-0.142613,0.930082,0.338481,-0.474532,0.804132,0.357982,0.710898,0.623066,0.326151,-0.758385,0.549181,0.351024,0.89639,-0.169591,0.409467,-0.869747,-0.266366,0.415387,0.974303,-0.0365,-0.222114,0.853572,-0.072298,-0.515885,0.998901,0.045167,0.01062,0.905881,0.22309,0.359935,-0.414411,0.243049,0.87701,0.458083,0.325144,0.827296,0.044435,-0.196356,-0.979492,-0.886563,-0.106784,-0.450056,-0.872677,0.056185,0.485,-0.998718,-0.031404,-0.038942,-0.981109,0.003052,0.193396,-0.019318,-0.135166,-0.990631,0.13068,0.481704,0.866512,0.109134,0.90762,-0.405316,-0.167058,0.896207,-0.410932,-0.065584,0.506363,0.859798,-0.761467,0.302805,0.573077,-0.631855,0.312174,-0.709403,-0.537797,-0.464827,-0.703299,-0.779962,-0.455031,0.429609,0.750725,0.322733,0.576373,0.823237,-0.405103,0.397656,0.56972,-0.398389,-0.718802,0.589923,0.364422,-0.720511,-0.454878,0.53267,0.713645,-0.47441,0.718284,-0.508896,0.461348,0.504868,0.729545,0.431074,0.755425,-0.493393,0.17774,0.527787,0.830531,0.147282,0.88406,-0.443525,-0.211615,0.873714,-0.437941,-0.108127,0.54207,0.833338,-0.787622,0.262551,0.55736,-0.608112,0.233497,-0.758721,-0.541642,-0.457656,-0.705069,-0.792322,-0.444838,0.417463,0.801569,0.308664,0.512009,0.846706,-0.397839,0.353221,0.508744,-0.419599,-0.751701,0.546922,0.290231,-0.785241,-0.54445,0.493088,0.678518,-0.543931,0.629566,-0.554735,0.577105,0.504105,0.642476,0.461654,0.65923,-0.593524,-0.156713,0.863491,-0.479354,-0.039979,0.547624,0.835749,0.102695,0.542131,0.833979,0.070528,0.870937,-0.486251,-0.165716,0.854122,-0.492904,0.060945,0.85873,-0.508713,-0.823939,-0.368999,-0.430006,-0.594928,-0.398389,0.69808,-0.512284,0.286203,0.809687,-0.768273,0.41258,-0.489364,-0.830042,-0.316538,-0.45909,-0.735801,0.418317,-0.532517,0.717215,0.462172,-0.52147,0.533799,0.285928,0.79577,0.688009,-0.361492,0.629231,0.804285,-0.315653,-0.503433,0.650075,0.511612,-0.561785,0.857875,-0.178411,-0.481857,-0.303293,0.504654,0.808252,-0.49968,0.739219,-0.451491,-0.490097,0.729301,-0.477371,0.435408,0.767205,-0.470901,0.335734,0.503647,0.795984,0.414686,0.757805,-0.503708,0.724357,0.684866,0.07889,0.981567,0.134983,-0.135136,0.835719,0.17832,-0.519364,0.659749,0.705802,-0.257912,0.608509,0.769829,0.192419,0.975555,0.180059,-0.125919,0.316874,0.793329,-0.519761,0.380291,0.214515,-0.899625,-0.326456,0.230293,-0.916715,-0.268868,0.765313,-0.584765,-0.85699,0.178655,-0.483322,-0.666066,0.691244,-0.28016,-0.996338,0.058748,-0.061647,-0.786187,0.606952,0.11594,-0.994537,0.067049,0.079836,-0.658437,0.696524,0.285134,0.880795,0.155278,-0.447249,0.986389,0.107028,-0.124699,0.680258,-0.721763,-0.127476,0.698843,-0.619617,-0.357219,0.964019,0.160039,-0.212195,0.768914,-0.590197,-0.245705,-0.348277,0.145726,-0.925962,0.402142,0.136876,-0.905271,0.367046,-0.59032,-0.718833,-0.22071,-0.627552,-0.746605,-0.885281,0.160863,-0.436293,-0.704917,-0.610218,-0.361522,-0.996887,0.078463,0.003082,-0.709708,-0.704459,0.00589,-0.996338,0.085208,-0.004578,-0.754082,-0.654958,-0.048585,0.875027,0.23423,0.423597,0.859737,-0.401288,0.315836,0.860134,0.222388,0.458968,-0.767724,0.134129,0.626576,-0.75042,-0.477859,0.456618,-0.717948,0.117008,0.686148,0.575701,0.640431,0.508286,-0.46144,0.561083,0.687185,0.867611,0.097537,-0.487533,0.899686,0.180212,-0.397565,0.929502,0.069765,0.362102,0.935057,0.008637,0.35435,0.789239,-0.012421,0.61391,0.784814,-0.012482,0.619556,-0.253639,-0.155126,0.954772,-0.254555,-0.088961,0.96292,0.365764,-0.050111,0.92935,0.336955,-0.121525,0.933622,-0.980468,-0.041475,0.192236,-0.984375,-0.094546,0.148442,0.819758,0.026521,-0.572039,0.947661,-0.020936,0.318522,0.794885,0.001404,0.606708,-0.262215,-0.023255,0.964721,0.397748,0.010895,0.917417,-0.9841,-0.092898,0.15128,0.913511,-0.406446,-0.01648,0.86288,-0.505051,0.018647,0.708029,-0.622669,-0.333048,0.741722,-0.573168,-0.348277,0.898221,-0.36433,0.245766,0.854427,-0.451399,0.25721,0.78576,-0.271645,0.55565,0.712027,-0.424207,0.559465,-0.239021,-0.239845,0.940916,-0.20896,-0.45555,0.865322,0.348338,-0.421491,0.837214,0.402051,-0.236457,0.884518,-0.067873,-0.635395,-0.769189,0.547044,-0.490127,-0.678579,-0.544115,-0.761376,-0.352428,-0.697836,-0.609363,-0.376354,-0.673147,-0.283883,0.682821,-0.48616,-0.488784,0.724357,-0.751061,-0.660176,0.005951,-0.816706,-0.576922,-0.009033,-0.750053,-0.524949,0.402264,-0.717032,-0.546648,0.432386,-0.500656,-0.496902,-0.708792,0.086276,-0.590411,-0.802454,0.824183,0.320505,-0.466842,0.972381,0.066744,0.223548,0.831904,0.122166,0.541246,-0.295999,0.141087,0.9447,0.416089,0.175329,0.892239,-0.954772,0.240944,0.174139,0.97943,0.094546,-0.178137,0.840999,0.054598,-0.538255,0.495621,0.63628,-0.591144,0.979064,0.163823,0.12064,0.84405,0.250191,0.474288,-0.291726,0.300607,0.908017,0.420576,0.326182,0.846553,0.095706,0.42082,-0.902066,-0.008576,-0.348674,-0.937193,-0.878201,-0.002503,-0.478256,-0.624165,0.640797,-0.446913,-0.804559,0.166845,0.569903,-0.997131,0.019837,-0.072817,-0.728507,0.665761,-0.16129,-0.976745,0.054933,0.20716,-0.839137,0.53972,-0.067263,-0.020905,-0.306009,-0.951781,-0.172948,0.323832,-0.930143,-0.717277,-0.694998,0.049471,-0.705863,-0.621693,-0.339366,0.002533,-0.999969,0.00351,-0.675771,-0.737083,-0.002777,-0.682424,-0.719474,-0.12888,-0.736686,-0.673391,-0.061403,-0.715201,-0.69042,0.108371,-0.690603,-0.693564,0.204901,0.001953,-0.999969,-0.002106,-0.64098,-0.671773,0.371227,0.717551,-0.696249,-0.016694,-0.000946,-0.999969,0.000153,-0.004547,-0.999969,0.003571,0.699484,-0.643788,-0.31019,0.64217,-0.757653,-0.116367,0.678732,-0.695029,-0.237129,0.755333,-0.654958,-0.021973,0.685171,-0.718284,0.12067,0.708884,-0.690573,0.143376,0.665548,-0.662709,0.343242,0.002319,-0.999969,0.002258,0.001862,-0.999969,0.002838,0.001343,-0.999969,-0.002747,0.187689,-0.662679,0.724967,-0.110141,-0.666768,0.737053,-0.430158,-0.657918,0.618091,0.002533,-0.999969,-0.003754,0.003113,-0.999969,0.003876,0.471908,-0.656087,0.588916,0.001312,-0.999969,0.004578,-0.000732,-0.999969,0.001862,-0.049959,-0.677419,-0.733848,0.124485,-0.690146,-0.712882,0.002899,-0.999969,0.006348,-0.317301,-0.669088,-0.672018,-0.003449,-0.999969,0.004273,0.385479,-0.655995,-0.648885,0.787988,-0.112033,0.605365,0.762047,-0.252937,0.596026,0.807367,-0.280251,0.519181,0.965545,0.231025,0.119694,0.808924,-0.243263,0.535173,0.723502,-0.496414,0.479659,0.766228,0.346721,0.540941,0.808832,0.32902,0.48735,0.822291,0.193945,0.534928,0.82635,0.175787,0.534959,0.889248,-0.024201,0.456771,0.898404,-0.046052,0.43672,0.043825,-0.951994,-0.302896,0.865444,-0.259102,0.428724,0.841456,0.078249,0.534593,0.662252,0.627064,0.410108,0.57503,0.638173,0.511917,0.654073,0.565447,0.502365,0.689779,0.488174,0.534654,0.491012,-0.025666,0.870754,0.125248,0.621662,-0.773186,0.252144,-0.005249,-0.96765,-0.207251,-0.007324,-0.97824,-0.18012,0.636799,-0.749657,0.25132,-0.112186,-0.961364,-0.183752,-0.109195,-0.976867,-0.6068,-0.012238,-0.794733,-0.435163,0.598743,-0.672353,-0.577258,-0.096072,-0.810846,-0.992004,-0.046907,0.117008,-0.773736,0.631092,0.054811,-0.998749,-0.028443,0.041047,0.717368,0.668935,0.194555,0.954131,-0.049593,0.295206,0.71514,-0.011933,-0.698843,0.478652,0.597308,-0.643483,0.965606,-0.097842,0.240791,0.701651,-0.107212,-0.704367,0.673727,-0.196204,-0.712424,0.203345,-0.225776,-0.952696,0.464919,-0.76046,-0.453322,0.166356,-0.789239,-0.591083,0.959929,-0.123692,0.251442,0.715964,-0.650227,0.254097,-0.584704,-0.203497,-0.785272,-0.983062,-0.009522,0.182958,-0.402875,-0.747124,-0.528642,-0.691397,-0.655629,0.303476,-0.181066,-0.223273,-0.957762,-0.044771,-0.841884,-0.537767,0.392254,0.648274,-0.652547,0.661763,-0.092227,-0.74398,0.202063,-0.124729,-0.971374,0.046297,0.695578,-0.716941,0.403974,-0.775964,-0.48439,0.122074,-0.852565,-0.508133,0.726493,0.674276,0.13242,0.9794,-0.0618,0.192206,0.663106,-0.705863,0.24897,-0.495437,0.622303,-0.606006,-0.555681,-0.199744,-0.807031,-0.994201,-0.040132,0.09949,-0.848964,0.526292,0.047151,-0.240974,-0.869015,-0.432112,-0.674032,-0.695578,0.248512,-0.188391,-0.167577,-0.967681,-0.027619,-0.891842,-0.451491,-0.244392,0.700644,-0.670339,0.18012,0.118686,0.97644,0,0.098788,0.995086,0.124851,0.753838,0.64507,0,0.756462,0.654012,0.624165,-0.435255,0.648793,0.411451,-0.090793,0.906857,0.910977,-0.411603,0.025269,0.929106,-0.173986,0.326304,0.690481,-0.669027,-0.274941,0.747276,-0.451338,-0.487686,0.340587,0.144963,0.928953,0.198187,0.800928,0.564959,0.909299,0.088504,0.406537,0.712241,0.65865,0.2425,-0.016449,0.482772,-0.875576,-0.552355,0.796258,-0.246651,-0.426283,0.899716,-0.09357,0.022156,0.657216,-0.753349,-0.11771,0.286233,-0.950896,-0.642842,0.614277,-0.457564,-0.04471,0.368664,-0.928465,-0.069613,0.308206,-0.948729,-0.106296,0.196631,-0.97467,-0.115513,0.223914,-0.967711,0.638844,0.320444,-0.699393,-0.073305,0.420331,-0.904386,-0.074496,0.547136,-0.833705,0.656087,0.406873,-0.635548,0.004547,0.521805,-0.853023,-0.00473,0.616932,-0.786981,-0.008087,0.436232,-0.899777,-0.029542,0.433576,-0.900601,-0.07709,0.289468,-0.95407,-0.086062,0.194617,-0.977081,-0.014954,0.279763,-0.959929,-0.051637,0.176122,-0.983001,-0.034211,0.427168,-0.9035,-0.061892,0.588153,-0.80636,-0.039766,0.282998,-0.958281,-0.060671,0.185278,-0.980804,-0.103702,0.066836,-0.99234,-0.168706,-0.706534,-0.687246,-0.196295,0.132847,-0.971496,-0.230873,0.137791,-0.963164,-0.663228,-0.44438,-0.602161,-0.716971,-0.411359,-0.562761,-0.80459,0.366344,-0.46733,-0.921445,-0.10773,-0.373211,-0.08182,0.074038,-0.993866,-0.143193,0.121158,-0.982238,-0.292917,-0.663533,-0.688406,-0.494247,-0.553484,-0.670309,-0.087527,0.065584,-0.993988,-0.21836,-0.70278,-0.677023,-0.108249,0.291238,-0.950468,-0.075137,0.677572,-0.73159,-0.059053,0.768609,-0.636952,-0.24897,0.397015,-0.883389,-0.317392,0.562151,-0.763665,0.070986,0.831233,-0.551317,-0.380657,0.920621,-0.086612,-0.901578,0.40144,0.161168,-0.250618,0.453841,-0.855098,-0.110935,0.436415,-0.89285,-0.689535,0.6892,-0.222419,-0.365368,0.531571,-0.764122,-0.774682,-0.435743,0.458174,-0.074282,-0.606586,0.791498,0.126774,0.083163,0.988433,-0.574602,0.225532,0.786706,-0.908902,-0.304056,0.285257,-0.616565,0.274331,0.737938,-0.994201,0.103092,-0.029542,-0.951506,0.301614,-0.060183,-0.999573,-0.028291,-0.00058,-0.877499,-0.282357,0.387555,-0.667104,0.368786,0.647206,-0.922269,0.377148,-0.084567,-0.877255,-0.322245,0.355693,-0.68923,0.3361,0.641804,-0.273476,-0.510514,0.81521,-0.023713,0.193365,0.980834,-0.980834,-0.190466,-0.040193,-0.676534,-0.359813,0.642476,-0.420881,0.341014,0.840571,-0.863521,0.453444,0.220618,-0.939634,-0.220893,0.261269,-0.775933,0.457717,0.434004,-0.999176,-0.030824,-0.025605,-0.859615,0.503403,-0.08713,-0.514908,-0.209937,-0.831111,-0.824946,-0.299234,-0.479446,-0.806543,0.445112,-0.388989,-0.327799,0.18009,-0.927396,-0.805414,-0.346416,-0.48088,-0.820826,0.405683,-0.40199,-0.920072,-0.264351,0.289071,-0.796594,0.494919,0.347026,0.238502,0.582293,0.777184,-0.215827,0.818842,0.531846,-0.18601,0.67037,0.718314,-0.348949,0.934446,0.070803,-0.747795,-0.378857,0.545183,-0.134007,-0.40849,0.902829,0.073824,0.232093,0.969878,-0.599261,0.395672,0.695883,-0.154485,0.822108,0.547929,-0.414899,0.9064,-0.079257,-0.213965,0.85641,0.469802,0.110324,0.626118,0.771844,-0.999084,0.04178,0.007569,-0.876034,-0.231269,0.423109,-0.58797,0.511612,0.626514,-0.83462,0.53563,-0.128361,-0.818476,-0.293558,0.493851,-0.617237,0.482406,0.621479,-0.227149,-0.360363,0.904721,-0.011902,0.275887,0.961089,-0.21308,0.730705,0.648549,-0.324259,0.917661,0.229621,-0.112644,0.925932,0.360454,-0.424268,0.896329,-0.128636,-0.98114,-0.16834,0.094668,-0.527482,-0.299203,0.795099,-0.243355,0.368053,0.897366,-0.770318,0.585345,0.252846,-0.990051,0.06592,0.12421,-0.950285,-0.247902,0.18833,-0.676687,0.565661,0.471236,-0.78753,0.614826,0.041719,-0.351878,0.927213,-0.128178,0.052828,0.758141,-0.649892,-0.315256,0.920743,-0.229804,-0.454268,0.857112,0.242775,-0.499313,-0.105594,-0.859951,-0.84582,-0.203955,-0.492904,-0.721061,0.575091,-0.386364,-0.265358,0.271493,-0.925108,-0.88934,-0.229926,-0.395154,-0.744865,0.533616,-0.400464,-0.949339,-0.069124,0.306467,-0.735252,0.577441,0.354839,0.159307,0.235206,0.95877,-0.640431,0.274819,0.717124,0.093814,0.640858,0.761895,-0.342418,0.815058,0.467299,-0.927366,0.327799,-0.180273,-0.981201,-0.119877,-0.151128,-0.859249,-0.238838,0.452345,-0.657399,0.436598,0.614154,-0.963958,0.225196,-0.141453,-0.686697,0.255318,0.680593,-0.667928,0.744163,0.007691,-0.428846,0.723319,0.541154,-0.664144,0.44792,0.598498,-0.876034,0.450362,-0.172277,-0.31251,0.874691,0.370464,-0.508011,0.837245,-0.202216,-0.687796,0.418958,0.592761,-0.260109,0.908567,0.326853,0.020356,0.262001,0.964843,0.03235,0.688711,0.724265,-0.191809,0.351939,0.916135,-0.787317,0.559343,0.259224,-0.025513,0.654897,0.755242,-0.23014,0.936338,0.265114,-0.748955,0.498459,0.436506,-0.861293,0.507126,-0.030946,-0.159124,0.938292,0.306986,-0.454756,0.88699,-0.079836,-0.756066,0.480422,-0.444411,-0.234016,0.120609,-0.96469,-0.302255,0.916471,-0.262123,0.045503,0.61858,-0.784387,-0.759911,0.450942,-0.468154,-0.335582,0.94116,-0.039064,-0.76278,0.564837,0.314737,-0.627979,0.744346,0.227119,-0.21836,-0.010559,0.975799,-0.339,-0.352977,0.872036,-0.480361,-0.86581,0.139897,0.82812,0.513291,-0.225227,0.866176,0.486587,0.11362,0.565722,-0.786309,0.248207,0.62096,-0.769402,-0.149541,0.766289,0.396008,0.505875,0.345012,-0.787042,0.511368,0.466292,-0.713004,-0.523576,0.588031,0.602802,-0.539262,0.847468,0.498001,-0.183721,0.836756,0.535966,0.111942,0.608661,-0.779931,0.145543,0.568743,-0.821558,-0.03946,0.718619,0.530259,0.449843,0.313486,0.580615,0.751366,0.118748,-0.683706,0.720023,0.50676,-0.750114,0.424848,0.721244,0.402966,-0.563372,0.491226,-0.835627,-0.245766,0.428571,0.470779,0.771142,-0.01767,-0.745811,0.665883,-0.425245,0.527238,0.735618,-0.698599,-0.555589,0.450819,-0.549608,0.601428,0.579791,-0.728813,-0.497848,0.470016,-0.212989,-0.589129,-0.779443,-0.142582,0.562822,-0.814142,-0.202582,-0.787866,-0.58153,-0.012543,0.287027,-0.957823,0.592853,-0.792962,-0.140233,-0.028657,-0.753502,-0.656789,0.022492,0.360912,-0.93231,0.634754,0.436171,-0.637806,0.547594,-0.707053,-0.447371,-0.06653,-0.496719,-0.865322,0.082766,0.651082,-0.754448,0.682089,0.616688,-0.392926,0.446333,-0.812922,0.374065,0.747185,0.407239,0.525163,-0.121982,0.460036,0.879452,-0.179205,-0.719535,0.670888,0.851558,0.37907,-0.362102,0.678243,-0.684408,0.267403,0.928922,0.360179,-0.085574,0.838008,0.46321,0.288308,0.284433,-0.543199,0.789911,0.464614,-0.590075,0.660237,-0.003693,0.754784,0.655934,-0.304361,-0.322123,0.89642,0.603351,-0.769951,-0.207617,0.805322,0.559832,-0.194922,0.870022,0.484329,0.0918,0.590808,-0.802881,0.079134,0.876186,0.481887,0.006348,0.863124,0.374371,0.338847,0.583056,-0.808161,-0.08298,0.500381,-0.765526,-0.40437,0.688192,0.504135,0.521683,0.458754,-0.808588,0.368358,0.408063,-0.730186,-0.54796,0.842982,0.525346,-0.115421,-0.053652,0.47148,0.880215,-0.071688,-0.703574,0.706992,0.074831,-0.301889,-0.950377,0.444288,0.714072,-0.540971,0.65923,-0.285623,0.695547,-0.289651,-0.256172,0.922208,-0.294778,-0.195227,0.935392,0.68218,-0.178625,0.709006,-0.282235,-0.720115,0.633839,0.468764,-0.684439,0.558336,-0.632557,-0.118656,0.765343,-0.6339,-0.18189,0.751701,-0.484176,-0.733696,0.476669,0.087161,0.342265,0.935545,-0.185583,0.598285,0.779473,0.688131,0.091281,0.71981,-0.801508,-0.027741,0.597339,-0.777306,-0.153325,0.610096,-0.98117,0.094424,-0.168371,-0.989776,0.03827,-0.137242,-0.463759,-0.821162,0.332499,-0.819453,-0.538133,-0.197211,-0.342418,0.724662,0.597949,-0.608783,0.785882,-0.108341,-0.429609,0.508011,-0.746544,-0.429762,-0.648061,-0.628712,-0.732139,-0.68096,0.014252,-0.728263,0.669668,-0.14539,-0.71395,-0.675436,0.184362,-0.741539,0.6639,0.096408,-0.610187,-0.748955,0.258217,-0.720939,0.657369,0.219275,-0.318064,-0.637104,0.702048,-0.387371,0.504593,0.771538,-0.713553,0.663747,0.224097,-0.604511,-0.747856,0.274331,-0.318674,-0.640156,0.698996,-0.387432,0.501175,0.773736,-0.751457,0.65685,0.061495,-0.721488,-0.661885,0.203345,-0.816645,0.525895,-0.237678,-0.767083,-0.629658,-0.122806,-0.548631,-0.762596,0.342662,-0.651143,0.758843,0.011628,-0.583178,0.531571,-0.614215,-0.585925,-0.611286,-0.531938,-0.567156,-0.56444,0.599719,-0.564776,0.620838,0.543596,0.552232,0.530076,-0.643422,0.636891,0.577105,0.511124,0.625813,-0.545518,0.557421,0.488784,-0.653279,-0.578143,-0.06943,-0.765099,-0.640126,0.095828,-0.663594,0.741874,0.035585,0.768273,0.639088,-0.034944,0.640767,-0.76693,-0.095431,0.732566,-0.67391,-0.063448,0.671834,0.737968,0.557878,0.568346,0.604755,0.498428,0.671987,-0.547685,-0.630024,0.542985,-0.555132,-0.641285,0.473067,0.604083,0.158971,-0.744835,0.648,0.02945,-0.672323,-0.739647,0.570086,-0.508682,-0.645161,0.674886,-0.544115,0.498398,-0.508591,-0.701437,0.499252,-0.502976,-0.593402,-0.628346,-0.679586,0.718467,0.148106,-0.290139,-0.895077,0.338542,-0.637074,-0.74337,0.203742,-0.823542,0.508866,0.250649,-0.905728,0.403485,0.129765,-0.672018,-0.733573,0.101108,-0.01767,-0.645161,0.763817,-0.19779,0.48442,0.852168,-0.825953,0.503311,0.253883,-0.65041,-0.743431,0.155675,-0.034944,-0.654897,0.754875,-0.213111,0.477004,0.852657,-0.795831,0.583605,-0.161229,-0.62508,-0.757347,-0.188818,-0.423566,0.515824,-0.744621,-0.161351,-0.62038,-0.767479,-0.767052,-0.30134,-0.566363,-0.900632,-0.245338,-0.358654,-0.845454,-0.423261,-0.325541,-0.759453,-0.431196,-0.487075,-0.956298,-0.224525,-0.187262,-0.905728,-0.387127,-0.17246,-0.127628,0.638203,0.759178,-0.134831,0.407239,0.903287,-0.188116,0.342967,0.920286,-0.104221,0.624653,0.773888,-0.131993,0.456282,0.879971,-0.061983,0.628956,0.774957,-0.181219,0.584674,0.790735,-0.120518,0.603565,0.78811,-0.032624,0.615436,0.787469,-0.462752,0.107181,0.879971,-0.371471,-0.14951,0.916288,-0.436689,-0.275369,0.85641,-0.544633,0.036378,0.837855,-0.628193,-0.29194,0.721152,-0.687521,-0.052614,0.724204,-0.178686,0.502731,0.845759,-0.094668,0.663961,0.741722,-0.262795,0.595141,0.759423,-0.167852,0.70043,0.693686,-0.121952,0.634175,0.763482,-0.238411,0.634693,0.735038,-0.281747,0.168096,0.944639,-0.309885,0.085299,0.946928,-0.442061,-0.062899,0.894742,-0.322245,-0.01236,0.946562,-0.513901,-0.230445,0.826289,-0.354747,-0.20072,0.913144,-0.357128,0.164525,0.919431,-0.330515,-0.022217,0.94351,-0.312998,-0.1536,0.937223,-0.54857,-0.11417,0.828242,-0.633564,-0.221473,0.741295,-0.234565,0.298074,0.92526,-0.188452,0.221412,0.956786,-0.323832,0.353313,0.877651,-0.245247,0.645344,0.723411,-0.220832,0.704733,0.674184,-0.667806,0.732231,0.133518,-0.709128,0.704093,0.036714,-0.356273,0.607166,0.710196,-0.855708,0.512406,0.071932,-0.682852,-0.267983,0.679586,-0.574602,-0.28193,0.768303,-0.751396,-0.300363,0.587481,-0.601917,-0.111454,0.790735,-0.697653,-0.192297,0.690115,-0.974364,0.149693,0.167882,-0.391827,-0.27427,0.87817,-0.326731,-0.164037,0.930754,-0.529588,0.104099,0.841823,-0.628986,0.040071,0.77633,-0.968108,0.233558,0.090457,-0.000153,0.008026,-0.999939,0.105289,-0.188299,-0.97644,-0.629383,-0.38255,-0.676351,-0.665395,-0.395886,-0.632832,-0.0936,0.429975,0.897946,-0.153905,0.487655,0.85934,-0.205939,0.567248,0.797357,-0.393078,0.189367,0.899777,-0.248909,0.431196,0.867214,-0.409162,0.380596,0.829279,-0.507981,0.310526,0.80343,-0.943114,0.305795,0.130406,-0.91406,-0.198218,0.353801,-0.88876,-0.26252,0.375683,-0.936735,-0.349986,-0.00058,-0.974334,-0.225013,0.001282,-0.825404,-0.521317,-0.216559,-0.724265,-0.567492,-0.391583,-0.806146,-0.423536,-0.413129,-0.918851,-0.319529,-0.231452,-0.449049,-0.624348,-0.639149,-0.588275,-0.519974,-0.619282,-0.481277,-0.211829,0.850551,-0.603046,-0.329905,0.726249,-0.654317,-0.152501,0.740654,-0.524308,-0.090518,0.846675,-0.368175,-0.158116,0.916196,-0.381024,-0.145116,0.913083,-0.244942,-0.533494,-0.809534,-0.155065,-0.61858,-0.770226,0.806085,-0.330393,-0.490951,0.366894,-0.397443,-0.84106,-0.969451,-0.245094,0.007843,-0.924375,-0.26603,0.273354,-0.829096,-0.509323,0.230476,-0.858913,-0.51088,-0.034974,-0.963561,-0.145665,-0.224219,-0.828211,-0.332377,-0.451125,-0.892575,-0.140049,-0.42851,-0.980987,-0.016388,-0.193335,-0.593249,-0.532029,-0.604114,-0.766717,-0.318003,-0.557665,-0.470992,0.070009,0.87933,-0.663778,0.267647,0.698386,-0.640095,0.32963,0.69393,-0.522752,0.210608,0.826014,-0.355205,-0.041963,0.933836,-0.384075,0.031068,0.922758,-0.289499,-0.516923,-0.805567,-0.2331,-0.623432,-0.7463,0.878964,-0.468245,-0.089969,0.325968,-0.471084,-0.819636,-0.990173,0.139348,0.009461,-0.880703,0.34727,0.322092,-0.927305,0.236366,0.29017,-0.994232,0.100681,0.036073,-0.972961,0.186041,-0.136692,-0.911802,0.131443,-0.388928,-0.942259,0.147984,-0.300302,-0.977111,0.178747,-0.115238,-0.80929,-0.029756,-0.586627,-0.830592,0.014374,-0.556658,-0.460097,0.256325,0.850032,-0.663472,0.167364,0.729209,-0.639729,0.352794,0.682821,-0.490371,0.346721,0.799554,-0.352641,0.19367,0.915464,-0.37022,0.242134,0.896817,-0.613483,-0.20191,-0.763421,-0.600696,-0.237922,-0.763207,0.498672,-0.410077,-0.763604,0.159124,-0.327738,-0.931242,-0.983917,0.170354,-0.053163,-0.948637,0.192114,0.251289,-0.959868,0.185247,0.210456,-0.976043,0.212989,-0.044221,-0.201025,0.108493,0.97354,-0.384411,0.092532,0.918485,-0.323801,-0.054384,0.944548,-0.116398,-0.07416,0.990417,-0.742241,-0.047182,0.668447,-0.704642,0.009796,0.709464,-0.937834,-0.039308,-0.344829,-0.858608,0.024079,-0.512009,-0.87289,-0.086398,-0.480178,-0.928129,-0.112796,-0.354717,-0.98233,-0.001282,-0.186987,-0.98001,-0.018128,-0.197974,-0.632313,0.052156,-0.772912,0.227577,0.059145,-0.971954,0.372356,-0.055696,-0.926389,-0.703818,0.238777,-0.669027,-0.999237,0.037935,-0.005554,-0.998627,0.03003,-0.042756,-0.969695,-0.083316,0.22953,-0.960265,0.063326,0.271798,0.026307,-0.393292,0.919004,-0.174902,-0.470565,0.864834,0.345439,-0.937071,0.050417,0.49852,-0.864223,-0.067385,-0.621784,-0.451918,0.639607,0.011383,-0.998383,-0.055208,-0.916868,-0.112674,-0.382885,-0.872951,-0.184698,-0.45143,0.096713,-0.982482,-0.159215,0.126041,-0.978484,-0.163244,-0.973205,-0.093814,-0.209845,0.072359,-0.951628,-0.298593,-0.866207,0.001343,-0.499649,-0.193945,0.283151,-0.939238,-0.024323,-0.784478,-0.619648,-0.119633,-0.974639,-0.189062,-0.994598,-0.101871,-0.018738,0.020325,-0.91757,-0.397015,-0.953948,-0.15006,0.259682,-0.117435,-0.932432,-0.341685,-0.502762,0.365551,0.783288,-0.5862,0.307352,0.749565,-0.703818,0.198126,0.68218,-0.798517,-0.144597,-0.584307,-0.938871,-0.059175,-0.339061,-0.985107,-0.047487,-0.165136,0.217597,-0.256752,-0.941649,-0.610767,-0.290933,-0.736381,-0.953001,-0.008362,0.302805,-0.998596,-0.047823,0.021973,-0.885586,0.36668,-0.285043,-0.852748,0.514359,-0.090609,-0.872494,0.199835,-0.445845,-0.595355,0.589557,0.545824,-0.572771,0.500351,0.649251,-0.535691,0.451766,0.71337,-0.695273,0.013215,-0.718589,0.262673,-0.275704,-0.92465,-0.690542,0.657247,0.301859,-0.787347,0.604083,0.122929,-0.648274,0.748527,-0.139256,-0.669759,0.742515,-0.00412,-0.737541,0.606098,-0.297678,-0.536027,0.621906,0.570849,-0.534867,0.624073,0.569597,-0.541307,0.596881,0.592181,-0.740776,0.346995,-0.575152,0.111332,-0.048524,-0.992584,-0.657979,0.681692,0.319865,-0.694723,0.710288,0.113254,-0.697775,0.706717,-0.11652,-0.755425,0.65508,0.013031,-0.64214,0.7116,-0.285012,-0.550371,0.676687,0.489029,-0.506211,0.708243,0.49205,-0.503922,0.654592,0.563494,-0.605121,0.621937,-0.496963,0.208197,0.334422,-0.919126,-0.75692,0.524674,0.389508,-0.785485,0.595874,0.167089,-0.395856,0.15659,0.904843,-0.326487,0.253334,0.910581,-0.648122,0.230354,0.725822,-0.788751,0.553453,-0.267434,-0.800287,0.572161,-0.179205,-0.790185,0.61269,0.013764,-0.073061,0.763604,-0.641499,-0.703604,0.63509,-0.318674,-0.788568,0.572192,0.225166,-0.721549,0.559557,0.407666,-0.279794,0.169164,0.945006,-0.241523,-0.064821,0.9682,-0.058046,0.601978,0.796381,-0.062746,0.621937,0.780511,-0.042146,0.4597,0.887051,-0.169317,0.139378,0.975646,-0.191504,-0.059511,0.979675,-0.215186,-0.140904,0.966338,-0.123753,0.402661,0.906919,-0.228126,-0.104801,0.967956,-0.068575,0.617908,0.783227,-0.139683,-0.165075,0.976318,-0.161626,-0.16657,0.972686,-0.128452,-0.084384,0.988098,-0.169958,-0.042482,0.984527,-0.199347,0.121738,0.97232,-0.233894,0.137333,0.962493,-0.116947,0.068758,0.990722,-0.031892,-0.062105,0.997528,0.040223,-0.332377,0.942259,0.48027,-0.868526,-0.122288,-0.301157,0.390912,0.869747,-0.35844,0.474013,0.804224,-0.440596,0.577929,0.686911,-0.484817,0.612262,0.624531,-0.302622,0.303415,0.9035,-0.779992,-0.453993,-0.430616,-0.96469,0.182073,-0.19013,-0.947844,0.197699,-0.249886,-0.70333,-0.394726,-0.591174,-0.654347,0.48439,-0.580615,-0.191382,0.243629,-0.950774,-0.901669,-0.319071,0.291757,-0.975311,0.201239,0.090701,-0.976562,0.214728,0.013825,-0.913633,-0.404309,0.042238,-0.99292,0.111576,-0.04004,-0.866756,-0.488296,-0.10123,-0.987152,0.10593,-0.119358,-0.819636,-0.503891,-0.272469,-0.094546,0.074068,0.992737,-0.220008,0.02945,0.975036,0.103641,0.689413,0.71688,0.123875,0.661855,0.73928,-0.251961,0.123966,0.959746,-0.265084,0.221137,0.938505,0.016175,0.739464,0.672964,-0.172063,0.805994,0.566332,-0.472793,0.485488,0.735343,-0.462172,0.605274,0.648061,-0.385296,0.887112,0.253975,-0.200232,0.960997,-0.19068,-0.757836,0.602161,0.251045,-0.71334,0.680532,-0.167272,-0.307657,0.350078,0.884732,-0.269631,0.883877,0.382122,3.1e-05,-1,-6.1e-05,0.15894,-0.744835,0.648,-0.66039,0.727958,0.184118,-0.312082,-0.870876,0.37962,-0.628346,-0.764489,0.143925,-0.809137,0.578997,0.10004,-0.908841,0.409955,0.077029,-0.663839,-0.727287,0.1742,-0.346629,-0.619678,0.704123,-0.435408,0.527146,0.729728,-0.837581,0.54265,0.062838,-0.659261,-0.75164,0.019562,-0.30369,-0.66216,0.685018,-0.472762,0.473373,0.743217,-0.527024,0.535691,-0.659688,-0.38551,-0.625568,-0.678213,-0.442335,0.494705,-0.748039,-0.491348,-0.690329,-0.531022,-0.795373,-0.553972,0.245857,-0.73043,0.677145,-0.088839,-0.424818,-0.440413,0.790887,-0.361553,0.646626,0.671621,-0.693777,0.71633,0.07416,-0.746361,-0.634022,0.202307,-0.43553,-0.511307,0.740837,-0.319071,0.632771,0.705527,-0.777673,0.535966,0.328501,-0.694937,-0.622974,0.35902,-0.309824,-0.833705,0.457045,-0.487014,0.854274,0.181585,-0.535691,0.617573,-0.575823,-0.613819,-0.525498,-0.589099,-0.61391,-0.573199,0.542711,-0.533891,0.609943,0.585559,0.597613,0.543596,-0.589312,0.662893,0.489883,0.566179,0.578417,-0.629597,0.518662,0.456618,-0.634358,-0.623737,-0.106326,-0.703635,-0.702536,0.038423,-0.727226,0.685293,0.072817,0.709098,0.701315,0.021271,0.702536,-0.711295,0.509537,0.231422,0.8287,0.790582,0.31312,0.5262,0.698172,0.608203,0.377606,0.349467,0.742546,0.571368,0.910337,0.010926,0.413648,0.717338,-0.28721,0.634724,0.986999,-0.120731,0.106021,0.849666,-0.517533,0.100955,0.976257,-0.003693,-0.216498,0.831629,-0.31312,-0.458602,0.883816,0.292367,-0.365154,0.67101,0.195471,-0.715171,0.764092,0.593524,-0.252663,0.463637,0.717124,-0.52031,0.687185,0.724387,0.054994,0.330454,0.943724,0.012574,0.687887,0.614826,0.385662,0.310862,0.748802,0.585315,0.47618,0.220923,0.8511,0.782556,0.290353,0.550707,0.903287,-0.006073,0.428938,0.69039,-0.31785,0.649861,0.98117,-0.146031,0.126225,0.827937,-0.551897,0.099429,0.974059,-0.013825,-0.225837,0.808313,-0.344096,-0.477676,0.867458,0.306284,-0.39201,0.642964,0.183782,-0.743492,0.749931,0.6039,-0.269967,0.428785,0.722556,-0.542222,0.668813,0.742698,0.032441,0.291208,0.956603,0.008179,0.936552,0.338664,0.09006,0.947417,0.164006,0.274697,0.865108,0.491409,-0.100375,0.049135,0.998627,-0.018097,0.07178,0.759209,0.64684,0.207617,0.728965,-0.652272,0.454421,0.108188,-0.884152,0.644948,-0.500015,-0.577929,0.667562,-0.739433,0.087039,0.509049,-0.469771,0.721213,0.262276,0.150945,0.953093,-0.83108,0.315622,0.457839,-0.670797,-0.195471,0.715384,-0.462905,-0.715171,0.523637,-0.326731,-0.945036,-0.011444,-0.348125,-0.740959,-0.574236,-0.509323,-0.231452,-0.828852,-0.71691,0.290201,-0.633839,-0.850093,0.5168,-0.100925,0.799219,0.304361,0.518235,0.935026,0.349681,-0.058443,-0.152715,0.951415,-0.267312,-0.288522,0.906095,0.309397,0.51384,-0.095492,0.852535,-0.573901,0.506211,0.643696,0.24604,-0.61565,0.748589,-0.8417,-0.013916,0.53975,0.152715,-0.951415,0.267312,-0.935026,-0.349681,0.058443,0.288522,-0.906095,-0.309397,-0.799219,-0.304361,-0.518235,0.573901,-0.506211,-0.643696,-0.51384,0.095492,-0.852535,0.8417,0.013916,-0.53975,-0.24604,0.61565,-0.748589,-0.207984,0.61034,-0.764306,-0.111576,0.957121,-0.26722,0.135228,0.956816,-0.25721,0.024201,0.557237,-0.829951,-0.545579,0.802301,-0.242134,-0.599414,0.608448,-0.520005,-0.294412,-0.061708,-0.953673,-0.484573,0.073092,-0.87167,-0.754051,0.308115,-0.580035,-0.634022,-0.537584,-0.555834,-0.779321,-0.339885,-0.526383,-0.91879,0.077273,-0.387036,-0.795648,-0.59151,0.130436,-0.919584,-0.3867,0.069216,-0.997223,0.051088,-0.054048,-0.684561,-0.191961,0.703177,-0.823176,-0.039918,0.566332,-0.943327,0.244942,0.223792,-0.365917,0.427015,0.826868,-0.546617,0.49733,0.673666,-0.78872,0.545274,0.283822,-0.026337,0.90286,0.42906,-0.251839,0.910306,0.32841,-0.623951,0.776147,0.090762,-0.612293,0.780999,0.122776,-0.844783,0.528642,0.082797,-0.934935,0.244392,0.257149,-0.779809,0.545671,0.306772,-0.825251,0.395154,-0.403455,-0.585315,0.596576,-0.549028,-0.743431,0.296945,-0.599261,-0.907956,0.059969,-0.414686,-0.862941,0.47734,-0.165685,-0.998047,0.037019,-0.050203,-0.53325,0.810053,-0.243782,-0.67745,0.574297,-0.459517,-0.838374,0.475814,-0.265908,-0.910306,0.067202,-0.408368,-0.963744,-0.093081,0.249947,0.846065,0.464187,0.261971,0.893338,0.171422,0.415326,0.374035,-0.311838,0.873379,0.986053,0.032929,0.163091,0.405347,-0.403912,0.820063,-0.25013,-0.425581,0.869625,-0.228828,-0.738243,0.63448,0.317392,-0.656178,0.684591,-0.72692,-0.368542,0.579424,-0.682882,-0.680349,0.265969,-0.976897,-0.189215,-0.099246,-0.908383,-0.243416,-0.339946,-0.783898,-6.1e-05,0.620838,-0.954009,0.248939,-0.166845,0.515122,0.03827,0.856227,-0.183874,-0.076296,0.979949,-0.927732,-0.176733,-0.328654,-0.824885,0.119663,-0.552446,0.769951,-0.265816,0.580065,0.376202,-0.570574,0.729972,-0.833796,-0.304025,0.460738,-0.236152,-0.458113,0.856929,-0.200262,-0.734458,0.648396,-0.722007,-0.652058,0.231239,0.60387,0.723716,-0.333934,0.560106,0.619465,-0.550005,0.013489,0.889431,-0.456832,0.370006,0.917753,-0.1442,-0.330363,0.888394,-0.318735,-0.544786,0.770501,0.330851,0.545701,0.700583,-0.459731,0.078402,0.706656,-0.703177,0.061769,0.909909,-0.410138,0.507187,0.860439,0.048677,0.091922,0.714011,0.694052,0.439344,0.861446,0.254585,0.801386,0.103397,0.589099,0.954985,0.284646,-0.083316,-0.735679,0.360332,-0.573473,-0.132237,0.44612,-0.885128,-0.851924,0.093753,0.515152,-0.846431,0.413953,-0.33488,0.579119,0.169286,0.797449,-0.062746,-0.015534,0.997894,-0.137944,-0.271554,-0.952452,0.795556,-0.513657,-0.321238,0.77575,0.498581,-0.386761,0.323954,0.467055,-0.822718,0.765587,0.276803,0.580706,-0.542985,0.540513,-0.642628,-0.979858,0.013855,-0.199133,-0.870083,0.010102,-0.492752,-0.65041,-0.585589,-0.483718,-0.686148,-0.694632,-0.215979,-0.995788,0.073946,-0.053652,-0.687613,-0.636097,0.350047,-0.931639,0.286233,0.223823,-0.767907,-0.178472,0.615162,-0.19541,0.298593,-0.934141,0.094974,0.255562,-0.962096,0.217902,-0.557024,-0.801386,-0.327952,-0.551042,-0.767327,0.549883,0.525681,0.649037,-0.561357,0.590808,0.579455,-0.386975,0.212195,0.897305,0.471755,0.215949,0.854854,0.641407,-0.59798,-0.480605,0.877346,0.018036,-0.479507,0.940886,0.198981,0.274026,0.714866,-0.233345,0.659139,0.995819,0.072268,-0.055391,0.757927,-0.64449,-0.100742,0.984863,0.127934,0.116703,0.699911,-0.612995,0.366497,-0.26017,0.640919,0.72216,-0.042451,-0.091372,0.994903,-0.071841,0.692434,0.717887,0.099734,0.669088,0.736442,0.232063,0.603168,0.763085,-0.322459,0.634693,0.702231,0.247261,0.601825,0.759362,-0.433668,-0.057649,0.899197,0.23487,-0.073275,0.969237,-0.080691,0.838191,0.539323,0.129795,0.820887,0.556108,0.476821,0.603656,0.638905,0.574908,-0.142338,0.805689,-0.698935,-0.097018,0.708548,-0.503891,0.640187,0.579821,0.342448,0.71923,0.60448,-0.341411,0.749016,0.567766,-0.438368,0.836665,0.328288,-0.097293,0.943266,0.317423,0.142613,0.930082,0.338481,0.474532,0.804132,0.357982,-0.710898,0.623066,0.326151,0.758385,0.549181,0.351024,-0.89639,-0.169591,0.409467,0.869747,-0.266366,0.415387,-0.974303,-0.0365,-0.222114,-0.853572,-0.072298,-0.515885,-0.998901,0.045167,0.01062,-0.905881,0.22309,0.359935,0.414411,0.243049,0.87701,-0.458083,0.325144,0.827296,-0.044435,-0.196356,-0.979492,0.886563,-0.106784,-0.450056,0.872677,0.056185,0.485,0.998718,-0.031404,-0.038942,0.981109,0.003052,0.193396,0.019318,-0.135166,-0.990631,-0.13068,0.481704,0.866512,0.065584,0.506363,0.859798,0.167058,0.896207,-0.410932,-0.109134,0.90762,-0.405316,0.761467,0.302805,0.573077,0.779962,-0.455031,0.429609,0.537797,-0.464827,-0.703299,0.631855,0.312174,-0.709403,-0.750725,0.322733,0.576373,-0.589923,0.364422,-0.720511,-0.56972,-0.398389,-0.718802,-0.823237,-0.405103,0.397656,0.454878,0.53267,0.713645,0.47441,0.718284,-0.508896,-0.461348,0.504868,0.729545,-0.431074,0.755425,-0.493393,-0.17774,0.527787,0.830531,0.108127,0.54207,0.833338,0.211615,0.873714,-0.437941,-0.147282,0.88406,-0.443525,0.787622,0.262551,0.55736,0.792322,-0.444838,0.417463,0.541642,-0.457656,-0.705069,0.608112,0.233497,-0.758721,-0.801569,0.308664,0.512009,-0.546922,0.290231,-0.785241,-0.508744,-0.419599,-0.751701,-0.846706,-0.397839,0.353221,0.543931,0.629566,-0.554735,0.54445,0.493088,0.678518,-0.577105,0.504105,0.642476,-0.461654,0.65923,-0.593524,0.156713,0.863491,-0.479354,-0.070528,0.870937,-0.486251,-0.102695,0.542131,0.833979,0.039979,0.547624,0.835749,0.165716,0.854122,-0.492904,-0.060945,0.85873,-0.508713,0.823939,-0.368999,-0.430006,0.768273,0.41258,-0.489364,0.512284,0.286203,0.809687,0.594928,-0.398389,0.69808,0.830042,-0.316538,-0.45909,0.735801,0.418317,-0.532517,-0.717215,0.462172,-0.52147,-0.804285,-0.315653,-0.503433,-0.688009,-0.361492,0.629231,-0.533799,0.285928,0.79577,-0.650075,0.511612,-0.561785,-0.857875,-0.178411,-0.481857,0.49968,0.739219,-0.451491,0.303293,0.504654,0.808252,0.490097,0.729301,-0.477371,-0.435408,0.767205,-0.470901,-0.335734,0.503647,0.795984,-0.414686,0.757805,-0.503708,-0.724357,0.684866,0.07889,-0.659749,0.705802,-0.257912,-0.835719,0.17832,-0.519364,-0.981567,0.134983,-0.135136,-0.608509,0.769829,0.192419,-0.975555,0.180059,-0.125919,-0.316874,0.793329,-0.519761,0.268868,0.765313,-0.584765,0.326456,0.230293,-0.916715,-0.380291,0.214515,-0.899625,0.85699,0.178655,-0.483322,0.666066,0.691244,-0.28016,0.786187,0.606952,0.11594,0.996338,0.058748,-0.061647,0.658437,0.696524,0.285134,0.994537,0.067049,0.079836,-0.880795,0.155278,-0.447249,-0.698843,-0.619617,-0.357219,-0.680258,-0.721763,-0.127476,-0.986389,0.107028,-0.124699,-0.768914,-0.590197,-0.245705,-0.964019,0.160039,-0.212195,0.348277,0.145726,-0.925962,0.22071,-0.627552,-0.746605,-0.367046,-0.59032,-0.718833,-0.402142,0.136876,-0.905271,0.885281,0.160863,-0.436293,0.704917,-0.610218,-0.361522,0.996887,0.078463,0.003082,0.709708,-0.704459,0.00589,0.996338,0.085208,-0.004578,0.754082,-0.654958,-0.048585,-0.859737,-0.401288,0.315836,-0.875027,0.23423,0.423597,-0.860134,0.222388,0.458968,0.767724,0.134129,0.626576,0.75042,-0.477859,0.456618,0.717948,0.117008,0.686148,-0.575701,0.640431,0.508286,0.46144,0.561083,0.687185,-0.867611,0.097537,-0.487533,-0.935057,0.008637,0.35435,-0.929502,0.069765,0.362102,-0.899686,0.180212,-0.397565,-0.784814,-0.012482,0.619556,-0.789239,-0.012421,0.61391,0.253639,-0.155126,0.954772,-0.336955,-0.121525,0.933622,-0.365764,-0.050111,0.92935,0.254555,-0.088961,0.96292,0.980468,-0.041475,0.192236,0.984375,-0.094546,0.148442,-0.819758,0.026521,-0.572039,-0.947661,-0.020936,0.318522,-0.794885,0.001404,0.606708,-0.397748,0.010895,0.917417,0.262215,-0.023255,0.964721,0.9841,-0.092898,0.15128,-0.913511,-0.406446,-0.01648,-0.741722,-0.573168,-0.348277,-0.708029,-0.622669,-0.333048,-0.86288,-0.505051,0.018647,-0.898221,-0.36433,0.245766,-0.854427,-0.451399,0.25721,-0.78576,-0.271645,0.55565,-0.712027,-0.424207,0.559465,0.239021,-0.239845,0.940916,-0.402051,-0.236457,0.884518,-0.348338,-0.421491,0.837214,0.20896,-0.45555,0.865322,0.067873,-0.635395,-0.769189,0.697836,-0.609363,-0.376354,0.544115,-0.761376,-0.352428,-0.547044,-0.490127,-0.678579,0.673147,-0.283883,0.682821,0.48616,-0.488784,0.724357,0.816706,-0.576922,-0.009033,0.751061,-0.660176,0.005951,0.717032,-0.546648,0.432386,0.750053,-0.524949,0.402264,-0.086276,-0.590411,-0.802454,0.500656,-0.496902,-0.708792,-0.824183,0.320505,-0.466842,-0.972381,0.066744,0.223548,-0.831904,0.122166,0.541246,-0.416089,0.175329,0.892239,0.295999,0.141087,0.9447,0.954772,0.240944,0.174139,-0.495621,0.63628,-0.591144,-0.840999,0.054598,-0.538255,-0.97943,0.094546,-0.178137,-0.979064,0.163823,0.12064,-0.84405,0.250191,0.474288,-0.420576,0.326182,0.846553,0.291726,0.300607,0.908017,-0.095706,0.42082,-0.902066,0.624165,0.640797,-0.446913,0.878201,-0.002503,-0.478256,0.008576,-0.348674,-0.937193,0.804559,0.166845,0.569903,0.728507,0.665761,-0.16129,0.997131,0.019837,-0.072817,0.839137,0.53972,-0.067263,0.976745,0.054933,0.20716,0.172948,0.323832,-0.930143,0.020905,-0.306009,-0.951781,-0.002533,-0.999969,0.00351,0.705863,-0.621693,-0.339366,0.717277,-0.694998,0.049471,0.675771,-0.737083,-0.002777,0.682424,-0.719474,-0.12888,0.736686,-0.673391,-0.061403,0.715201,-0.69042,0.108371,0.690603,-0.693564,0.204901,-0.001953,-0.999969,-0.002106,0.64098,-0.671773,0.371227,-0.717551,-0.696249,-0.016694,-0.699484,-0.643788,-0.31019,0.004547,-0.999969,0.003571,0.000946,-0.999969,0.000153,-0.64217,-0.757653,-0.116367,-0.678732,-0.695029,-0.237129,-0.755333,-0.654958,-0.021973,-0.685171,-0.718284,0.12067,-0.708884,-0.690573,0.143376,-0.665548,-0.662709,0.343242,-0.002319,-0.999969,0.002258,-0.001343,-0.999969,-0.002747,-0.001862,-0.999969,0.002838,0.110141,-0.666768,0.737053,-0.187689,-0.662679,0.724967,0.430158,-0.657918,0.618091,-0.002533,-0.999969,-0.003754,-0.003113,-0.999969,0.003876,-0.471908,-0.656087,0.588916,0.000732,-0.999969,0.001862,-0.001312,-0.999969,0.004578,-0.124485,-0.690146,-0.712882,0.049959,-0.677419,-0.733848,-0.002899,-0.999969,0.006348,0.317301,-0.669088,-0.672018,-0.385479,-0.655995,-0.648885,0.003449,-0.999969,0.004273,-0.762047,-0.252937,0.596026,-0.787988,-0.112033,0.605365,-0.807367,-0.280251,0.519181,-0.965545,0.231025,0.119694,-0.723502,-0.496414,0.479659,-0.808924,-0.243263,0.535173,-0.808832,0.32902,0.48735,-0.766228,0.346721,0.540941,-0.82635,0.175787,0.534959,-0.822291,0.193945,0.534928,-0.898404,-0.046052,0.43672,-0.889248,-0.024201,0.456771,-0.865444,-0.259102,0.428724,-0.043825,-0.951994,-0.302896,-0.841456,0.078249,0.534593,-0.662252,0.627064,0.410108,-0.57503,0.638173,0.511917,-0.654073,0.565447,0.502365,-0.689779,0.488174,0.534654,-0.491012,-0.025666,0.870754,-0.125248,0.621662,-0.773186,0.18012,0.636799,-0.749657,0.207251,-0.007324,-0.97824,-0.252144,-0.005249,-0.96765,0.183752,-0.109195,-0.976867,-0.25132,-0.112186,-0.961364,0.435163,0.598743,-0.672353,0.6068,-0.012238,-0.794733,0.577258,-0.096072,-0.810846,0.773736,0.631092,0.054811,0.992004,-0.046907,0.117008,0.998749,-0.028443,0.041047,-0.717368,0.668935,0.194555,-0.478652,0.597308,-0.643483,-0.71514,-0.011933,-0.698843,-0.954131,-0.049593,0.295206,-0.701651,-0.107212,-0.704367,-0.965606,-0.097842,0.240791,-0.203345,-0.225776,-0.952696,-0.673727,-0.196204,-0.712424,-0.166356,-0.789239,-0.591083,-0.464919,-0.76046,-0.453322,-0.959929,-0.123692,0.251442,-0.715964,-0.650227,0.254097,0.983062,-0.009522,0.182958,0.584704,-0.203497,-0.785272,0.691397,-0.655629,0.303476,0.402875,-0.747124,-0.528642,0.181066,-0.223273,-0.957762,0.044771,-0.841884,-0.537767,-0.392254,0.648274,-0.652547,-0.046297,0.695578,-0.716941,-0.202063,-0.124729,-0.971374,-0.661763,-0.092227,-0.74398,-0.122074,-0.852565,-0.508133,-0.403974,-0.775964,-0.48439,-0.726493,0.674276,0.13242,-0.9794,-0.0618,0.192206,-0.663106,-0.705863,0.24897,0.495437,0.622303,-0.606006,0.848964,0.526292,0.047151,0.994201,-0.040132,0.09949,0.555681,-0.199744,-0.807031,0.674032,-0.695578,0.248512,0.240974,-0.869015,-0.432112,0.027619,-0.891842,-0.451491,0.188391,-0.167577,-0.967681,0.244392,0.700644,-0.670339,-0.18012,0.118686,0.97644,-0.124851,0.753838,0.64507,-0.411451,-0.090793,0.906857,-0.624165,-0.435255,0.648793,-0.929106,-0.173986,0.326304,-0.910977,-0.411603,0.025269,-0.747276,-0.451338,-0.487686,-0.690481,-0.669027,-0.274941,-0.198187,0.800928,0.564959,-0.340587,0.144963,0.928953,-0.712241,0.65865,0.2425,-0.909299,0.088504,0.406537,0.513962,-0.01471,0.857662,0.48262,-0.110355,0.868831,0.022095,-0.657094,0.753441,-0.016236,-0.483016,0.875454,-0.117527,-0.285989,0.950987,0.579821,0.090945,0.809626,-0.06943,-0.308237,0.948759,-0.106265,-0.196509,0.9747,-0.115085,-0.223579,0.967834,-0.044618,-0.368297,0.928617,-0.073275,-0.420362,0.904355,-0.07416,-0.546525,0.834132,-0.757469,-0.344646,0.55443,-0.775323,-0.265419,0.573046,-0.005371,-0.615558,0.788049,-0.008301,-0.436018,0.899869,-0.029725,-0.433637,0.900571,0.004517,-0.521836,0.853023,-0.077364,-0.289285,0.9541,-0.000122,-0.293008,0.956084,0,-0.196265,0.980529,-0.086398,-0.194739,0.97702,-0.014985,-0.27955,0.95999,-0.051698,-0.176153,0.983001,-0.034089,-0.427076,0.903562,-0.061098,-0.587085,0.807184,-0.039705,-0.282723,0.958342,-0.06064,-0.1854,0.980773,0,-0.069887,0.997528,-0.104068,-0.066775,0.992309,0.011719,-0.714072,0.699942,0,-0.741417,0.67101,-0.196478,-0.132725,0.971465,-0.230903,-0.13712,0.963225,0.335154,-0.583728,0.739525,0.322581,-0.532548,0.782495,0.486404,0.136113,0.863063,0.565508,-0.221198,0.794488,-0.081881,-0.073885,0.993896,-0.143254,-0.121128,0.982238,0.172582,-0.708274,0.6845,0.305002,-0.692496,0.653737,-0.087527,-0.065432,0.993988,0.073,-0.697928,0.712394,-0.080905,-0.65157,0.754234,-0.074923,-0.743553,0.664418,-0.234596,-0.438978,0.867306,-0.108768,-0.32664,0.938841,0,-0.623035,0.782159,-3.1e-05,-0.275918,0.96115,0.049623,-0.813837,0.578936,0.600482,-0.406751,0.688437,0.233619,-0.272805,0.933256,-0.286996,-0.605213,0.742515,-0.249977,0.829218,0.499863,-0.045228,0.867702,0.494949,0,0.866268,0.499527,-0.153691,0.727683,0.668447,-0.514695,0.738517,0.435438,-0.553117,-0.827143,-0.099216,-0.966582,-0.212165,-0.143773,-0.575365,-0.223792,-0.786645,-0.005066,-0.741386,-0.67101,-0.61507,-0.274239,-0.739219,0.1901,-0.6498,-0.735923,-0.031526,-0.10239,-0.994232,0.170232,-0.31077,-0.935087,-0.024751,-0.825495,-0.563829,-0.668661,-0.366863,-0.646718,-0.050325,-0.166173,-0.984802,0.271737,-0.523972,-0.807184,-0.05826,-0.811762,-0.581011,-0.689535,-0.335398,-0.641865,-0.479263,-0.873775,0.082186,-0.962828,-0.261513,0.067354,-0.266152,-0.88702,0.377239,-0.795404,-0.288583,0.532914,-0.863491,-0.453261,-0.221198,-0.192297,-0.89404,-0.404553,-0.78225,-0.457808,-0.422407,-0.227363,-0.879025,-0.419019,-0.096286,-0.135258,-0.986114,0.29545,-0.561418,-0.772942,-0.330271,-0.943205,0.035005,-0.80697,-0.443617,0.389813,-0.807672,-0.470504,-0.355327,-0.438185,-0.796503,-0.416608,-0.364391,-0.929838,0.050905,-0.821162,-0.405194,0.401837,-0.010376,-0.698019,0.715995,-0.380535,-0.050996,0.923338,-0.92468,0.359081,-0.126499,-0.651936,0.49089,-0.577899,-0.87756,0.273995,-0.393414,-0.42439,0.63918,-0.641316,-0.589953,-0.799249,0.114566,-0.956847,-0.290323,-0.009491,-0.59859,-0.395367,-0.696646,-0.093478,-0.907132,-0.410291,-0.878475,0.323649,-0.35139,-0.332408,0.499161,-0.800165,-0.820673,0.390149,-0.417432,-0.959624,0.279366,0.031983,0.046785,-0.8905,-0.452528,-0.588061,-0.511307,-0.626637,0.046876,-0.190802,-0.980499,0.304453,-0.568529,-0.764214,-0.05002,-0.919706,-0.389325,-0.617634,-0.48146,-0.621815,-0.497543,-0.848262,0.181341,-0.914914,-0.393902,0.087924,-0.857967,0.269173,0.437452,-0.951231,0.306589,-0.033326,-0.923856,0.281777,-0.25898,-0.326823,0.41789,-0.847652,-0.34608,-0.869686,0.351909,-0.818995,-0.437452,0.371288,-0.773553,-0.576189,-0.263741,-0.072359,-0.947905,-0.31019,-0.224281,-0.9082,-0.353313,-0.67803,-0.572649,-0.460768,0.07947,-0.072939,-0.99414,0.434675,-0.485641,-0.758415,-0.816034,0.311014,0.487167,-0.944792,0.241279,-0.221595,-0.85284,0.346995,0.390088,-0.524033,0.425245,0.737877,-0.160405,-0.986785,0.021546,-0.721366,-0.574725,0.386395,-0.732231,-0.569048,-0.374157,-0.36195,-0.827693,-0.428785,-0.148778,-0.979003,0.139286,-0.74514,-0.533586,0.399976,0.086367,-0.657063,0.748833,-0.333506,-0.147038,0.931181,-0.980529,-0.190649,-0.046358,-0.641438,-0.273049,-0.71691,-0.88934,0.443617,-0.11066,-0.584155,0.624622,-0.518235,0.079287,-0.707724,-0.701987,0.001984,-0.925565,-0.378521,-0.661641,-0.43611,-0.609912,-0.068606,-0.286874,-0.955473,-0.686209,-0.2584,-0.679922,-0.104312,-0.098941,-0.989593,-0.633259,0.599384,-0.489578,-0.165746,0.624958,-0.76281,-0.663472,-0.448683,-0.598682,-0.156926,-0.205725,-0.965911,-0.797937,0.388379,-0.46086,-0.346049,0.430738,-0.833461,-0.687918,-0.418775,-0.59273,-0.762444,0.446394,-0.468337,-0.937986,-0.320322,0.132511,-0.944853,0.323588,0.050233,-0.808374,-0.466536,0.358898,-0.787225,-0.556261,-0.266121,-0.943663,0.059664,0.325419,-0.942778,0.329936,-0.047395,-0.756401,-0.501511,-0.419874,-0.048677,-0.111911,-0.992492,-0.915067,0.274209,-0.295663,-0.302713,0.465377,-0.831721,-0.755638,-0.48204,0.443403,-0.820887,-0.504593,-0.267342,-0.80871,0.408887,0.422773,-0.950255,0.220496,-0.219855,-0.760002,-0.450331,0.468551,-0.694845,0.418744,0.584643,-0.314097,-0.096591,0.944426,-0.343852,0.277749,0.897,-0.216742,0.010041,-0.976165,-0.341624,0.351054,-0.871792,0,0.260689,-0.965392,0,-0.054811,-0.998474,0.080142,-0.140904,-0.986755,0,-0.253517,-0.967315,0.464736,0.850581,-0.245949,0.801965,-0.596454,-0.032472,0.692526,-0.688894,0.213965,0.488693,0.863094,0.127323,0.105014,0.857814,-0.503098,0.767022,-0.566729,-0.300729,0.542283,-0.696219,0.47026,0.36726,0.813623,0.450636,0.497391,0.858943,-0.121525,0.785791,-0.61449,-0.070193,0.81402,-0.550432,0.1854,0.471053,0.881497,0.032075,0.050295,0.844691,-0.532853,0.32609,-0.751579,-0.573382,0.658132,-0.661519,-0.359447,0.378002,0.849452,-0.368114,0.680471,-0.513596,0.522599,0.305002,0.942045,0.1395,-0.177648,0.847621,-0.499954,0.477096,-0.530015,-0.70101,0.442427,0.817499,-0.368603,0.683035,-0.265969,-0.680197,0.457167,0.679006,-0.574389,0.587115,-0.43379,-0.683401,0.829493,-0.520341,0.202887,0.759819,0.630055,0.160131,0.893277,-0.372082,0.252144,0.702078,0.701346,-0.12302,0.841578,-0.523392,0.133183,0.794183,0.590442,-0.143468,0.573748,0.812891,0.099948,0.51033,-0.600909,0.615162,0.871151,-0.488083,-0.053499,0.74807,0.65978,0.071108,0.474776,0.785943,0.396039,0.59444,-0.713279,0.371227,0.199957,0.913053,-0.355358,0.68688,0.725272,-0.04593,0.855983,-0.445662,-0.261971,0.713584,-0.553362,-0.429579,0.547044,0.714377,-0.436323,0.645802,-0.518845,0.560076,-0.017487,0.60799,-0.793725,0.881497,-0.46498,-0.082003,0.878933,-0.400067,0.259529,0.320231,0.623066,-0.713584,0.55034,0.77517,-0.31016,0.946745,-0.286905,-0.14594,0.528642,0.8305,0.175329,0.744133,-0.638752,0.195471,0.789148,-0.611682,-0.055483,0.459151,0.88583,-0.066591,0.438032,0.898831,-0.012879,0.753288,-0.629414,-0.190649,0.831446,-0.555315,0.016877,0.41731,0.809503,0.412915,0.333934,0.862789,-0.379528,0.641285,-0.583544,-0.498154,0.812647,-0.575274,0.092715,0.405896,0.720786,0.561815,0.772698,0.633992,0.030366,0.825739,-0.53383,-0.181982,0.913755,-0.179968,-0.364177,0.543687,0.838252,0.040773,-0.290201,0.257027,-0.921781,-0.293619,0.195502,-0.935697,-0.727836,0.067476,-0.682363,-0.738273,0.145116,-0.658681,-0.079623,-0.67159,-0.736595,-0.539567,-0.607624,-0.582781,-0.633168,0.11771,-0.764977,-0.634816,0.182104,-0.750877,-0.420118,-0.646016,-0.637287,-0.75985,0.629414,-0.162542,-0.701041,0.657613,-0.275765,-0.766656,0.45851,-0.449416,-0.801691,0.026948,-0.597095,-0.777734,0.153417,-0.609546,-0.170415,0.058596,-0.983612,-0.197546,0.234718,-0.95175,-0.608722,-0.562426,-0.559557,-0.049348,-0.41258,-0.909574,-0.777856,0.5815,-0.238197,-0.31785,0.605762,-0.729362,-0.687399,-0.62917,-0.362774,-0.669179,-0.721274,0.178625,-0.670278,0.741905,-0.015748,-0.699362,0.525864,-0.484024,-0.696188,-0.716544,-0.042726,-0.622211,0.763634,-0.172246,-0.722892,-0.660482,-0.202857,-0.613636,0.751335,-0.242622,-0.787255,-0.52501,0.323374,-0.682424,0.615894,0.393597,-0.727897,-0.65215,-0.211676,-0.78576,-0.528306,0.321604,-0.683859,0.612323,0.39668,-0.609607,0.75103,-0.253456,-0.703848,-0.710257,0.008728,-0.592822,0.778008,-0.207923,-0.199255,-0.654317,-0.729453,-0.763573,-0.6386,-0.095462,-0.713858,0.640126,-0.283944,-0.185705,0.50322,-0.843959,0.07828,-0.201483,-0.976348,-0.200354,-0.1901,0.961089,-0.055239,0.000275,0.998444,0.056032,-0.133885,-0.98938,0.209662,-0.216651,0.953429,0.256142,0.320353,0.911985,0.303934,0.311472,-0.900327,0.334452,-0.349925,-0.875027,0.483383,0.306558,-0.819941,0.516923,0.338664,0.786157,0.540208,-0.560686,0.627491,0.435987,-0.701529,-0.563677,0.482681,-0.698569,0.528184,0.199286,-0.368206,0.908109,0.277474,-0.260811,-0.924619,0.343211,-0.661122,-0.667135,-0.038118,-0.131382,0.99057,0.023835,-0.001404,-0.999695,0.501663,0.361064,-0.786096,0.322611,0.396954,-0.859249,0.306345,0.160863,0.9382,0.565416,0.167211,0.807642,0.038392,-0.072237,-0.996643,-0.20484,-0.297403,0.932493,-0.819117,-0.46556,-0.335032,-0.736656,-0.662435,-0.135838,-0.410596,0.890194,-0.197333,-0.601001,0.736991,-0.309153,0.017273,-0.575854,-0.817347,0.189306,0.573626,-0.79693,-0.899625,-0.428694,0.082705,-0.696493,0.700156,0.156865,-0.712333,-0.684652,-0.154271,-0.89404,-0.437941,0.094028,-0.698447,0.693289,0.177343,-0.439863,0.88815,-0.132969,-0.730522,-0.65865,0.180151,-0.545061,0.817255,0.186956,-0.861599,-0.407025,-0.303232,-0.619037,0.730705,-0.28779,-0.900906,0.245155,0.358104,-0.845729,0.42262,0.325663,-0.759484,0.430616,0.487564,-0.767479,0.301035,0.565935,-0.956236,0.224738,0.187262,-0.905911,0.38667,0.172491,-0.126438,-0.434004,-0.891964,-0.175817,-0.365825,-0.913907,-0.105228,-0.622913,-0.77514,-0.12775,-0.635792,-0.761193,-0.132817,-0.45555,-0.880215,-0.062807,-0.628712,-0.775079,-0.120548,-0.603748,-0.787988,-0.181402,-0.583819,-0.791314,-0.032472,-0.615772,-0.787225,-0.372265,0.147588,-0.916288,-0.43675,0.272927,-0.857143,-0.543809,-0.036439,-0.838404,-0.463057,-0.106784,-0.879849,-0.628895,0.290567,-0.721122,-0.687094,0.052614,-0.724631,-0.178594,-0.500534,-0.847072,-0.094272,-0.664205,-0.741569,-0.263985,-0.597644,-0.757012,-0.16718,-0.701102,-0.693136,-0.121616,-0.634205,-0.763512,-0.237251,-0.634785,-0.735343,-0.310251,-0.085665,-0.946776,-0.442763,0.062441,-0.894436,-0.321909,0.011841,-0.946684,-0.281503,-0.169073,-0.944517,-0.51445,0.230842,-0.825831,-0.354656,0.200934,-0.913114,-0.331278,0.022431,-0.943236,-0.359478,-0.164342,-0.918546,-0.313089,0.154088,-0.937101,-0.548967,0.1142,-0.827967,-0.634541,0.222175,-0.740257,-0.187597,-0.221015,-0.95703,-0.23484,-0.297952,-0.92523,-0.325358,-0.353496,-0.87701,-0.246559,-0.645192,-0.723106,-0.220191,-0.705161,-0.673971,0.375134,-0.220985,-0.900204,0.377544,-0.26896,-0.886044,-0.35548,-0.607593,-0.710227,0.304025,-0.291604,-0.906919,-0.683309,0.268624,-0.678854,-0.574969,0.281625,-0.768151,-0.751976,0.300546,-0.586657,-0.602191,0.112064,-0.790429,-0.69747,0.193213,-0.690023,-0.108737,0.673696,-0.730918,-0.391583,0.273873,-0.878414,-0.327067,0.164068,-0.930631,-0.52974,-0.103366,-0.841823,-0.62862,-0.039827,-0.776666,-0.066134,0.282693,-0.956908,-0.924314,0.381237,-0.01529,-0.628834,0.383129,0.676565,-0.665212,0.395825,0.633045,-0.854701,0.507645,-0.10828,-0.092837,-0.43025,-0.897885,-0.153478,-0.487777,-0.85934,-0.205054,-0.567583,-0.797327,-0.248787,-0.431196,-0.867244,-0.39378,-0.18891,-0.899564,-0.409131,-0.379589,-0.829737,-0.507859,-0.31077,-0.8034,0.090609,-0.087252,-0.992035,-0.888852,0.262581,-0.375408,-0.936857,0.34962,0.003113,-0.974181,0.225684,0.000855,-0.913541,0.199438,-0.354381,-0.845027,0.375286,0.380871,-0.806238,0.423017,0.413495,-0.921171,0.315165,0.228248,-0.913236,0.358043,0.19425,-0.616352,0.412824,0.670553,-0.586963,0.519242,0.621143,-0.639515,0.206091,-0.740593,-0.660421,0.147069,-0.73632,-0.523606,0.090426,-0.847133,-0.523331,0.083895,-0.847957,-0.376476,0.155095,-0.913327,-0.43318,-0.002319,-0.901273,-0.344646,0.476424,0.808832,-0.235878,0.543138,0.805811,-0.93234,0.28312,0.224769,-0.589984,0.686697,0.424604,-0.927335,0.253334,-0.275399,-0.892575,0.358074,-0.273965,-0.928434,0.371319,0.010102,-0.971892,0.235206,-0.007904,-0.849605,-0.328501,0.412519,-0.888363,0.145665,0.435347,-0.977599,0.0365,0.207251,-0.935881,-0.299692,0.185095,0.888119,-0.346385,0.302011,-0.764244,0.313547,0.563524,-0.658834,-0.314402,-0.683401,-0.639882,-0.330699,-0.693655,-0.518723,-0.208502,-0.829096,-0.484848,-0.177465,-0.85638,-0.377483,-0.025575,-0.925626,-0.453261,-0.165929,-0.87579,0.804895,-0.169408,-0.568682,-0.290719,0.555681,0.778893,-0.912656,-0.394574,0.106449,-0.427137,0.776086,0.463881,-0.8829,-0.348247,-0.31492,-0.891018,-0.33842,-0.302499,-0.928098,-0.363231,-0.081759,-0.992065,-0.125492,0.001129,-0.620502,-0.631153,0.465377,-0.942625,-0.127293,0.308573,-0.979888,-0.159185,0.120212,-0.739372,-0.671773,0.044679,-0.38609,-0.51735,0.763695,-0.825129,0.007111,0.564867,-0.659139,-0.228492,-0.716453,-0.639058,-0.35783,-0.680837,-0.489425,-0.348552,-0.799341,-0.472732,-0.333842,-0.815485,-0.366558,-0.240028,-0.898862,-0.412244,-0.340648,-0.844966,-0.543016,-0.102329,0.83343,-0.595752,0.238075,0.767052,-0.954527,-0.262581,0.140965,-0.85815,0.265786,0.439192,-0.951506,-0.182714,-0.247353,-0.91818,-0.298013,-0.260933,-0.903867,-0.423719,-0.05887,-0.98645,-0.152562,0.060274,-0.351939,-0.540269,-0.764336,-0.312876,0.081088,-0.946287,-0.091067,0.11298,-0.98941,-0.055269,-0.723991,-0.687551,-0.80813,-0.410993,-0.421857,-0.710471,-0.000732,-0.703696,0.545274,0.824976,-0.148473,-0.863277,0.135075,0.486282,-0.916257,0.165502,0.364757,0.590381,0.807123,0.000763,-0.976653,0.051668,0.208441,0.551469,0.818232,0.162328,-0.913938,-0.398541,-0.076449,-0.876309,-0.328898,0.351939,-0.706504,-0.238289,0.666341,-0.495743,-0.093265,0.86343,-0.998779,-0.007385,0.048647,0.456679,0.783776,0.42082,-0.961943,-0.052126,-0.268105,0.337718,0.409101,0.847652,0.665059,0.565813,0.48732,-0.350841,0.093173,-0.931761,-0.092715,0.19248,-0.976897,0.490066,0.681173,0.54387,0.512497,0.640675,0.571703,-0.687033,0.069308,-0.723289,0.483016,0.874905,-0.0347,-0.897427,0.087405,0.432386,-0.879574,0.215125,0.424299,0.542039,0.840083,-0.01941,-0.939085,0.237312,0.248451,0.588458,0.795587,0.143803,-0.736869,0.447584,-0.506607,-0.924436,-0.355571,-0.137638,-0.860164,-0.066042,0.505692,0.297403,0.951048,-0.08359,-0.98938,0.142888,0.026124,0.475173,0.807215,0.350078,-0.95529,0.115543,-0.272042,0.493637,0.699698,0.516465,-0.511338,-0.54088,-0.667776,-0.586749,-0.425306,-0.689047,-0.701437,-0.303323,-0.644948,-0.874996,-0.097018,0.474258,-0.944243,-0.175939,0.278237,-0.982208,-0.127598,0.137577,-0.971282,0.224281,0.079196,-0.653584,0.237587,0.718558,-0.946715,-0.119968,-0.298807,-0.995636,-0.085971,-0.036225,-0.562059,-0.827052,-0.005768,-0.482162,-0.869289,-0.108615,-0.656636,-0.751976,-0.057466,-0.583575,-0.620319,-0.524003,-0.580859,-0.597613,-0.552599,-0.571032,-0.681967,-0.456954,-0.801202,-0.400708,0.44438,-0.96176,-0.162236,0.220527,-0.578143,-0.754479,-0.310526,-0.562944,-0.810022,-0.164129,-0.172979,-0.967376,-0.185034,-0.167211,-0.973998,-0.152806,-0.508805,-0.860866,0.000519,-0.506394,-0.677938,-0.532823,-0.541765,-0.693319,-0.475143,-0.576281,-0.719108,-0.388287,-0.729209,-0.356365,0.584124,-0.928678,-0.298074,0.220588,-0.497726,-0.79281,-0.351695,-0.265297,-0.943602,-0.198035,0.249336,-0.912839,-0.323283,0.239845,-0.924284,-0.296884,0.035463,-0.963775,-0.26429,0.06653,-0.996857,-0.042482,-0.405194,-0.910154,0.086093,-0.525163,-0.823603,0.214148,-0.399152,-0.861934,0.312601,-0.922117,-0.372204,0.105411,0.297525,-0.843562,-0.447066,0.19483,-0.908383,-0.369915,-0.478561,-0.825892,0.298074,-0.461409,-0.886532,0.033326,0.103702,-0.987335,0.119846,0.287912,-0.921323,-0.261208,0.230018,-0.901944,-0.365429,0.341441,-0.847163,-0.407086,-0.25428,0.074984,-0.964202,0.459487,-0.833094,-0.30781,0.402997,-0.822291,-0.401715,0.482223,-0.827265,-0.288217,-0.281991,-0.171758,-0.943907,-0.242805,0.063509,-0.967986,0,-0.16129,-0.986877,0,0.055361,-0.998444,-0.056917,-0.601947,-0.796503,-0.063051,-0.619922,-0.782098,0,-0.600085,-0.799921,0,-0.62801,-0.778161,-0.03882,-0.487411,-0.87228,0,-0.481216,-0.876583,0,-0.122257,-0.992492,-0.157537,-0.138798,-0.977691,-0.185583,0.060457,-0.980743,0,0.080111,-0.996765,-0.215644,0.141606,-0.966124,0,0.140996,-0.98999,0,-0.425642,-0.904874,-0.114109,-0.406293,-0.906583,-0.230811,0.104587,-0.967345,0,0.106052,-0.994354,-0.065493,-0.618946,-0.782678,0,-0.641316,-0.767266,0,-0.134037,-0.990966,-0.196509,-0.049257,-0.979247,-0.166631,0.176305,-0.970122,0,0.359905,-0.932981,0,-0.519028,-0.854732,-0.259499,-0.291849,-0.92056,-0.187139,0.051851,-0.980956,0,0.337992,-0.94113,0,-0.514145,-0.857662,-0.305124,-0.348949,-0.886044,-0.266121,-0.133885,-0.954588,0,0.160741,-0.986969,0,-0.895352,0.445357,0.586718,0.633381,0.504532,-0.029939,0.100864,-0.994446,0,0.354198,-0.935148,0,-0.22013,0.975463,0.448408,0.552812,0.702322,-0.024293,0.227607,-0.973418,0,0.414777,-0.909909,-0.329264,-0.582537,-0.743095,0,-0.54854,-0.836085,-0.445265,-0.739799,-0.504349,0,-0.748405,-0.663198,-0.51442,-0.689291,-0.510086,0,-0.719657,-0.694296,-0.616016,-0.786889,0.035554,0,-0.955992,-0.293374,-0.525285,-0.846828,-0.083224,0,-0.884701,-0.466079,-0.100131,0.898618,0.427076,-0.0553,0.820307,0.569201,-0.703207,0.394574,0.591388,-0.780114,0.453963,0.430464,-0.113987,0.979339,0.166967,-0.688894,0.720939,-0.075045,-0.218268,0.903012,-0.370006,-0.243355,0.964476,-0.102634,-0.913846,0.404004,-0.040681,-0.901944,0.318033,-0.292032,-0.136204,0.987365,0.080569,-0.866909,0.488113,0.100986,-0.089602,0.961119,0.261086,-0.819727,0.503861,0.272225,-0.0871,-0.112186,-0.989837,-0.204535,-0.070437,-0.976318,-0.267586,0.601276,-0.752861,-0.471114,0.601306,-0.645314,0,-0.128544,-0.991699,0,0.610797,-0.791742,-0.248909,-0.131321,-0.959563,-0.26487,-0.219855,-0.938871,-0.444197,0.662526,-0.603076,-0.299936,0.644368,-0.703421,-0.473891,-0.48442,-0.735343,-0.464492,-0.607898,-0.643941,-0.580279,0.360851,-0.730064,-0.457381,0.146184,-0.877163,0.383343,-0.389935,-0.837245,0.333171,-0.192358,-0.923032,-0.30546,-0.348552,-0.886105,-0.279946,0.480941,-0.830836,3.1e-05,1,6.1e-05,0.023835,-0.001373,-0.999695,-0.798608,-0.486465,-0.354289,-0.772332,-0.633229,-0.049471,-0.561693,0.813868,-0.148503,-0.581103,0.73162,-0.356395,9.2e-05,-0.652882,-0.757439,0.195349,0.502396,-0.84225,-0.773888,-0.496872,0.392621,-0.651234,0.646016,0.398144,-0.741752,-0.670644,0.00235,-0.802911,-0.466353,0.371197,-0.612079,0.667348,0.424207,-0.534623,0.844386,-0.033784,-0.737938,-0.503006,-0.449904,-0.601337,0.657582,-0.45378,-0.599384,-0.745476,-0.291513,-0.609241,-0.715323,0.342204,-0.653127,0.705863,-0.274178,-0.721824,0.425306,-0.545915,-0.74337,-0.481979,0.463729,-0.714743,0.612964,0.336711,-0.660573,-0.750359,-0.024384,-0.681936,-0.606189,0.409223,-0.763939,0.539048,0.354625,-0.687155,0.695303,-0.210517,0.31605,-0.619434,-0.718589,-0.6545,-0.598132,-0.462416,-0.643757,0.600726,-0.473952,0.333293,0.541978,-0.771447,0.072268,-0.114933,-0.990722,-0.169103,-0.281228,0.944609,-0.035859,-0.085421,0.995697,0.045473,-0.048097,-0.997803,0.241554,-0.280007,0.929075,0.252419,0.260506,0.931852,0.265786,0.40379,-0.875362,0.339427,-0.253975,-0.905667,0.44673,0.404157,-0.798151,0.509049,0.306284,0.804376,0.469466,-0.622517,-0.626118,0.587298,-0.573504,0.571062,0.883755,-0.334117,-0.327525,0.83401,-0.493118,-0.247353,0.326579,-0.746422,-0.579791,0.4897,-0.225074,-0.842311,0.701956,0.303201,-0.644429,0.948485,-0.169805,-0.267373,0.836024,0.539506,-0.099918,0.990051,-0.097385,-0.101382,0.818537,0.329569,0.470473,0.984069,-0.162023,0.072939,0.654378,-0.188421,0.732292,0.933988,-0.322947,0.152684,0.443007,-0.720511,0.533464,0.869503,-0.485244,0.091983,0.307199,-0.951567,-0.009949,0.828089,-0.555681,-0.073672,0.307138,-0.749352,-0.586596,0.473434,-0.219916,-0.852901,0.78637,-0.28843,-0.546251,0.691977,-0.612232,-0.382458,0.688528,0.319712,-0.650899,0.908109,-0.006104,-0.418653,0.826044,0.554735,-0.099399,0.981628,0.140538,-0.129002,0.806055,0.346782,0.479537,0.974944,0.00943,0.222175,0.640584,-0.182897,0.745781,0.868343,-0.309946,0.387127,0.426374,-0.722892,0.543687,0.759545,-0.596942,0.258278,0.287942,-0.957579,-0.007721,0.673086,-0.738914,-0.030091,0.946196,-0.153844,-0.284585,0.936552,-0.338664,-0.09006,0.859401,-0.499069,0.110965,0.213202,-0.758782,-0.615436,0.192175,-0.981353,0.002747,0.339518,-0.730644,0.592303,0.568957,-0.153539,0.807886,0.745933,0.412091,0.523179,0.766808,0.634785,-0.094974,0.619617,0.383984,-0.68453,0.390301,-0.193304,-0.900143,0.489761,-0.707236,-0.509781,0.627674,-0.267647,-0.730979,0.805841,0.179785,-0.564135,0.924955,0.365032,-0.105838,0.904263,0.20191,0.376202,0.766533,-0.236671,0.596973,0.588,-0.685385,0.429487,0.473403,-0.880337,-0.028993,-0.305612,-0.914975,0.263436,-0.1283,-0.955016,0.267312,-0.266793,-0.90878,-0.32075,-0.422468,-0.875973,-0.232734,-0.557787,-0.501022,-0.661641,-0.667989,-0.531907,-0.520371,-0.830866,0.029389,-0.55565,-0.898404,-0.084353,-0.430952,-0.926023,0.371776,-0.064882,-0.978698,0.204535,-0.016846,-0.78753,0.325541,0.523209,-0.861843,0.165532,0.479354,-0.496536,-0.082186,0.864101,-0.616321,-0.178503,0.766961,-0.223457,-0.612629,0.75811,-0.385907,-0.626087,0.677541,-0.107669,-0.957579,0.26719,-0.009186,-0.964171,0.265053,-0.112461,-0.59273,0.797479,-0.20484,-0.60979,0.765618,-0.715842,-0.665456,0.211402,-0.744835,-0.561083,0.361034,-0.408704,-0.017243,0.912473,-0.482528,-0.071535,0.872921,-0.828089,-0.399396,0.393353,-0.724418,0.425092,0.54265,-0.777581,0.342753,0.527116,-0.916807,-0.275094,0.289407,-0.87466,0.475234,-0.09534,-0.918027,0.390179,-0.070254,-0.959014,-0.260994,0.110141,-0.771386,0.103793,-0.627796,-0.821558,0.041993,-0.568529,-0.929991,-0.365368,-0.03946,-0.475143,-0.471664,-0.74279,-0.544694,-0.496658,-0.67571,-0.846767,-0.527085,-0.071749,-0.159429,-0.914029,-0.372936,-0.248848,-0.91055,-0.330027,-0.758049,-0.651357,0.032136,-0.842128,-0.530534,-0.096652,-0.934324,-0.249794,-0.254219,-0.785882,-0.545427,-0.291269,-0.617176,-0.777245,-0.122135,-0.59032,-0.593554,0.546953,-0.750664,-0.304514,0.586291,-0.907437,-0.066103,0.414899,-0.821528,-0.389752,0.416089,-0.862941,-0.47734,0.165654,-0.997742,-0.042604,0.051729,-0.538133,-0.807001,0.243141,-0.237251,0.699698,-0.673879,-0.436903,0.132908,-0.889615,-0.969543,0.080844,-0.231117,-0.941099,0.334635,-0.048067,0.286599,0.633778,-0.718436,0.356517,0.310953,-0.881008,-0.192755,0.293008,-0.93646,-0.128544,0.736015,-0.664632,-0.252449,0.42555,-0.868984,-0.229316,0.73809,-0.63448,0.325388,0.655049,-0.681906,0.409101,0.404401,-0.817957,-0.723624,0.368694,-0.583422,-0.682089,0.681204,-0.265816,-0.976196,0.187597,0.108737,-0.906186,0.229438,0.355144,-0.78225,0.000763,-0.622913,-0.949919,-0.257088,0.177557,0.521928,-0.044801,-0.851772,-0.182897,0.075869,-0.980163,-0.942686,0.197699,0.268715,-0.827113,-0.125523,0.547807,0.774957,0.262062,-0.575091,0.38432,0.55913,-0.734581,-0.250221,0.441084,-0.861843,-0.203406,0.712668,-0.671316,-0.729057,0.637135,-0.249916,-0.835688,0.282357,-0.470992,0.873806,-0.25486,-0.414106,-0.842463,0.473342,-0.257179,0.510239,-0.845607,0.156743,0.567766,-0.717521,0.403424,0.769585,0.589831,-0.244514,0.684408,0.308603,0.660543,0.033692,0.107028,0.993683,-0.100467,-0.737999,0.667257,-0.45912,0.884945,0.0777,-0.767571,0.136906,0.626118,0.154668,0.278512,0.947874,-0.560961,0.533006,0.633381,0.803491,-0.101138,-0.586627,0.142674,0.25132,-0.957305,-0.737144,-0.357402,0.573412,-0.992737,9.2e-05,-0.120273,-0.610065,0.709433,-0.352763,-0.931608,0.351848,0.091006,-0.050417,0.703452,-0.708945,-0.247353,0.802179,-0.543382,0.370342,-0.928861,0.003235,0.126225,-0.952086,0.278481,0.380352,-0.077944,-0.921537,-0.86581,-0.490921,0.096683,0.297067,0.576128,-0.761406,-0.943693,0.206305,0.258553,-0.870846,-0.011444,0.491379,-0.616443,-0.781945,0.092288,-0.64388,-0.764824,0.020051,-0.980102,-0.013459,0.198004,-0.525101,-0.727561,0.44142,-0.995849,-0.073244,0.053926,-0.602588,-0.556902,0.571551,-0.932859,-0.284677,-0.220649,0.613819,0.478164,0.628101,0.254555,-0.832789,0.491562,-0.329569,-0.81869,0.470199,-0.696158,0.436628,0.569781,-0.555284,-0.593982,-0.58208,-0.235237,-0.860286,0.452254,0.307657,-0.826075,0.472121,0.551195,-0.528092,-0.645955,0.878475,-0.019807,0.47734,0.58034,-0.800623,0.148778,0.581439,-0.640278,0.501938,0.942412,-0.19541,-0.27131,0.996002,-0.071688,0.052736,0.596088,-0.801721,-0.043275,0.984924,-0.127262,-0.1171,0.538743,-0.802179,0.257302,-0.011597,-0.999725,-0.019898,-0.071291,-0.691824,-0.718528,-0.260262,-0.640736,-0.722282,0.232612,-0.603107,-0.762963,0.099948,-0.668661,-0.736778,-0.323923,-0.634083,-0.702109,0.246467,-0.601184,-0.760125,0.023286,-0.998535,0.048341,-0.004395,-0.999542,-0.029176,0.129154,-0.820673,-0.556566,-0.079592,-0.838008,-0.539781,0.006348,-0.99939,-0.033784,0.475326,-0.60329,-0.640339,-0.503891,-0.638905,-0.581256,-0.018067,-0.998169,-0.057253,0.340922,-0.719291,-0.605274,-0.340953,-0.748619,-0.56856,-0.095645,-0.943693,-0.31666,-0.439375,-0.836482,-0.327433,0.47499,-0.804346,-0.356853,0.140751,-0.930692,-0.337565,-0.712272,-0.621693,-0.325755,0.759758,-0.547838,-0.350169,-0.0524,-0.997314,-0.050966,0.157537,-0.981811,-0.105777,-0.85406,0.079592,0.513993,-0.974731,0.041597,0.219367,-0.999146,-0.038728,-0.012238,-0.908414,-0.212622,-0.359905,-0.468032,-0.322184,-0.822871,0.424085,-0.239051,-0.87347,0.884365,0.118229,0.451552,0.977142,0.124668,0.172063,0.874355,-0.046175,-0.483047,0.998535,0.04004,0.035524,0.980651,0.002991,-0.195593,-0.98056,0.06653,0.184484,0.189428,-0.853328,0.485672,0.002106,-0.382611,-0.923887,-0.103702,-0.357799,-0.928007,-0.108127,-0.875851,0.47026,0.319315,-0.651906,0.687735,0.573229,-0.68218,-0.453841,0.653096,-0.299051,-0.695669,0.524186,-0.172918,0.833827,-0.65276,-0.314676,-0.689077,-0.515275,-0.719535,-0.465499,-0.255379,-0.704215,0.662435,-0.495926,-0.240913,0.834223,0.240577,-0.418256,-0.875851,0.477065,-0.536515,0.696066,-0.280496,-0.355327,-0.891659,-0.441816,-0.60921,0.658498,0.218146,-0.815516,0.535997,0.015778,-0.401288,-0.915799,-0.109531,-0.380566,-0.918241,-0.134281,-0.832148,0.53798,0.303629,-0.668355,0.679006,0.565081,-0.693747,-0.446455,0.717856,-0.278939,-0.637837,0.515793,-0.175207,0.838557,-0.730949,-0.31254,-0.606616,-0.563463,-0.713736,-0.415967,-0.206519,-0.694571,0.689108,-0.455336,-0.220893,0.862453,0.322764,-0.429212,-0.843532,0.478957,-0.462905,0.745842,-0.374859,-0.436964,-0.817621,-0.395642,-0.510544,0.76339,-0.098849,-0.458663,-0.883053,-0.05649,-0.842921,0.534989,0.158971,-0.831385,0.532395,0.019745,-0.460311,-0.887509,-0.096774,-0.484024,-0.869655,0.027039,-0.474227,-0.879971,0.391461,-0.245735,-0.886746,0.729148,-0.36729,0.57741,0.493088,-0.730613,0.472243,0.251839,-0.710349,-0.657216,0.428755,-0.284555,-0.857418,0.234504,-0.727317,-0.644948,-0.261025,-0.726249,-0.635914,-0.392804,-0.766839,0.507584,-0.670034,-0.443556,0.595172,-0.429334,-0.239998,-0.870663,-0.121708,-0.754906,-0.644398,-0.45027,-0.309366,-0.83755,0.176153,-0.353832,-0.918546,0.476943,-0.664266,0.575518,0.190985,-0.381176,-0.904538,-0.378826,-0.716147,0.586138,-0.245827,-0.325449,-0.913022,-0.263802,-0.363323,-0.893521,-0.461989,0.668599,0.582659,-0.837153,-0.179052,0.5168,-0.981628,-0.134953,0.134831,-0.628498,0.668905,0.396863,-0.975616,-0.180151,0.125217,-0.799158,0.516831,0.306864,0.206915,0.671255,0.711753,0.328135,-0.231849,0.915708,-0.382916,-0.215339,0.898312,-0.20246,0.647267,0.734855,0.41435,0.742973,0.52559,0.858455,-0.180029,0.480239,0.596088,0.720908,0.353435,0.996429,-0.057619,0.061342,0.762719,0.627796,0.155156,0.994476,-0.066622,-0.081027,-0.529099,-0.805261,0.267525,-0.716788,-0.687857,0.114139,-0.986633,-0.106815,0.122837,-0.881893,-0.154973,0.445235,-0.56624,-0.809687,0.153966,-0.963897,-0.159795,0.212928,0.173681,-0.8052,0.566942,-0.247963,-0.837123,0.487533,-0.40376,-0.137364,0.904477,0.34788,-0.146397,0.926023,0.500992,-0.827723,0.252693,0.88641,-0.160894,0.433973,0.705741,-0.708304,-0.013153,0.996887,-0.078616,-0.005036,0.655049,-0.75512,0.025697,0.996368,-0.084964,0.004547,-0.172338,-0.664388,0.727226,-0.419599,-0.100955,0.902066,-0.441816,-0.097476,0.891781,0.36729,-0.649617,0.665639,0.615528,-0.09122,0.7828,0.682119,-0.083865,0.726371,-0.553514,0.346171,0.757469,0.706442,0.39671,0.586108,-0.935514,-0.008759,-0.353099,-0.930662,-0.069582,-0.359111,-0.414594,0.074831,-0.906919,-0.466414,0.079714,-0.880947,-0.785882,0.012421,-0.618213,-0.791681,0.013764,-0.610767,-0.336894,0.124241,-0.933287,-0.367199,0.049867,-0.92877,0.256447,0.0889,-0.962432,0.255928,0.155522,-0.95407,-0.184454,0.051302,-0.981475,-0.233345,0.158818,-0.959319,-0.947966,0.020631,-0.317698,-0.569933,0.062563,-0.819269,-0.79635,-0.00174,-0.604785,-0.399762,-0.011689,-0.916532,0.264901,0.022736,-0.963988,-0.146397,-0.027558,-0.98883,-0.803247,0.457045,0.381909,-0.69158,0.64919,0.316568,-0.853603,0.520218,-0.026307,-0.946165,0.31727,0.063692,-0.842433,0.471023,-0.261483,-0.930204,0.295785,-0.21717,-0.696524,0.453444,-0.556047,-0.822138,0.189398,-0.536851,-0.426435,0.145146,-0.892758,-0.339183,0.464553,-0.817988,0.198706,0.507797,-0.838221,0.249672,0.157872,-0.955351,0.843623,0.39024,0.368755,0.502976,0.79986,0.327433,0.748314,0.663228,-0.010681,0.919401,-0.304605,-0.248756,0.459609,0.520859,-0.719321,0.769982,0.173009,-0.614124,0.922025,0.385907,0.029969,0.734458,0.678579,-0.009186,0.810633,0.406751,-0.421186,0.740898,0.535752,-0.404981,-0.963408,-0.221015,-0.151524,-0.823573,0.56444,0.055635,-0.972503,-0.066439,-0.223151,-0.878109,0.294565,-0.376934,-0.833369,-0.12186,-0.539079,-0.418317,-0.175787,-0.89111,0.298349,-0.141392,-0.943907,0.22132,0.150151,-0.963561,-0.732261,0.677786,0.066134,-0.803949,-0.259499,0.535051,-0.959563,-0.19367,0.204138,-0.960997,-0.262246,-0.087374,-0.82635,-0.355602,-0.436628,-0.408856,-0.455458,-0.790796,0.296548,-0.416791,-0.859249,0.583422,0.77987,0.226661,0.824488,-0.377606,0.42143,0.924284,-0.37785,0.053774,0.883572,0.460952,-0.082156,0.810297,-0.269601,-0.52028,0.705679,0.70513,-0.069216,0.955687,-0.280618,0.088687,0.650868,0.558519,-0.514176,0.960356,-0.263344,-0.091311,-0.949522,0.308176,-0.058107,-0.91583,-0.384716,0.114841,-0.002533,0.999969,-0.00351,-0.70867,0.616291,-0.343394,-0.717582,0.694662,0.049471,-0.675771,0.737083,-0.002777,-0.682424,0.719474,-0.12888,-0.736686,0.673391,-0.061403,-0.715232,0.69042,0.108371,-0.69097,0.693167,0.205023,-0.001953,0.999969,0.002106,-0.643361,0.668081,0.373791,0.705863,0.635029,-0.313761,0.004547,0.999969,-0.003571,0.000946,0.999969,-0.000153,0.72045,0.693289,-0.017151,0.642476,0.757378,-0.116398,0.678732,0.695029,-0.237129,0.755333,0.654958,-0.021973,0.685171,0.718284,0.12067,0.708487,0.69097,0.143315,-0.002289,0.999969,-0.002258,0.662923,0.666616,0.340709,-0.001343,0.999969,0.002747,-0.001862,0.999969,-0.002838,-0.111148,0.664266,0.739158,0.186163,0.665639,0.722648,-0.002533,0.999969,0.003754,-0.435011,0.648396,0.624744,0.465804,0.666738,0.581744,-0.003113,0.999969,-0.003845,0.000732,0.999969,-0.001862,-0.001312,0.999969,-0.004578,0.125767,0.685934,-0.716666,-0.05179,0.670339,-0.740226,-0.002899,0.999969,-0.006348,-0.322733,0.654286,-0.683889,0.392071,0.644795,-0.656117,0.003449,0.999969,-0.004273,-0.761559,0.251595,-0.597247,-0.786584,0.111698,-0.607257,-0.807092,0.279489,-0.520066,-0.13715,0.832759,-0.536332,-0.782189,0.356487,-0.51091,-0.813471,0.233863,-0.532456,-0.792169,-0.379284,-0.478103,-0.767632,-0.345653,-0.539659,-0.800378,-0.253365,-0.54329,-0.823695,-0.190191,-0.534165,0.358684,0.612171,0.704642,-0.892514,0.036409,-0.449507,0.420515,0.748955,0.51207,-0.866634,0.153722,-0.474624,-0.826838,-0.215827,-0.519364,-0.641285,-0.654256,-0.400861,-0.504257,-0.705344,-0.498184,0.22544,-0.946165,-0.232154,0.240699,-0.962951,-0.121372,-0.491012,0.027314,-0.870693,0.133091,0.758446,0.637989,0.20777,0.007324,0.978118,-0.250587,0.005341,0.968047,-0.264626,0.759606,0.594073,0.183843,0.109287,0.976836,-0.249641,0.112278,0.961791,0.506668,0.751305,0.422803,0.608325,0.012055,0.793573,0.578173,0.096103,0.810205,0.119633,0.66274,0.739219,0.119846,-0.020631,0.992553,0.106296,0.104007,0.988861,-0.617389,0.740928,0.264138,-0.716727,0.011933,0.697226,-0.299234,-0.025452,0.953825,-0.285562,0.66393,0.691061,-0.703482,0.107212,0.702536,-0.249611,0.044588,0.967284,-0.200598,0.226203,0.953185,-0.675924,0.196265,0.710318,-0.06943,-0.589801,0.804529,-0.49443,-0.625355,0.603687,-0.25016,0.12067,0.960631,-0.263497,-0.467086,0.84402,0.169225,0.234901,0.957152,0.583605,0.203986,0.785974,0.272927,-0.427076,0.862026,0.509323,-0.662404,0.549333,0.178381,0.223426,0.958251,0.211524,-0.529862,0.821253,-0.381268,0.678701,0.627674,-0.199988,0.124516,0.971831,-0.662862,0.091922,0.743065,-0.67513,0.66393,0.321482,-0.145634,-0.454451,0.87875,-0.642872,-0.548845,0.534257,-0.233894,0.052797,0.970824,-0.227668,0.675588,0.701193,-0.307749,-0.525437,0.793207,0.074221,0.655629,0.751396,0.111362,0.232368,0.966216,0.555864,0.200018,0.806818,0.285653,0.771081,0.569048,0.209021,-0.421979,0.882168,0.666219,-0.446089,0.597583,0.315653,-0.365276,0.875729,0.188513,0.167425,0.967681,-0.038636,0.659169,0.750969,0,-0.097751,-0.995209,-0.181188,-0.119572,-0.976135,0,0.639302,-0.768944,-0.181585,0.65392,-0.734428,-0.408155,0.086825,-0.90875,-0.638356,0.436323,-0.634114,0.423627,-0.098178,-0.900479,0.063997,0.318735,-0.945647,-0.123508,0.319559,-0.939451,-0.37608,0.05472,-0.924955,-0.30079,0.598407,-0.742546,-0.341716,-0.146794,-0.928251,0.308664,0.482406,-0.819727,0.416791,-0.130467,-0.899564,-0.022095,-0.657094,0.753441,-0.48262,-0.110355,0.868831,-0.513962,-0.01471,0.857662,0.016236,-0.483016,0.875454,-0.579821,0.090945,0.809626,0.117527,-0.285989,0.950987,0.115085,-0.223579,0.967834,0.106265,-0.196509,0.9747,0.06943,-0.308237,0.948759,0.044618,-0.368297,0.928617,0.757469,-0.344676,0.55443,0.07416,-0.546525,0.834132,0.073214,-0.420362,0.904386,0.775048,-0.264657,0.573748,0.029725,-0.433637,0.900571,0.008301,-0.436018,0.899869,0.005371,-0.615558,0.788049,-0.004517,-0.521836,0.853023,0.077273,-0.289285,0.9541,0.086337,-0.194739,0.97702,0.014985,-0.27955,0.95999,0.051698,-0.176153,0.983001,0.061098,-0.587085,0.807184,0.034089,-0.427076,0.903562,0.039705,-0.282723,0.958342,0.06064,-0.1854,0.980773,0.104068,-0.066775,0.992309,-0.011719,-0.714072,0.699942,0.230903,-0.13712,0.963225,0.196478,-0.132725,0.971465,-0.322581,-0.532548,0.782495,-0.335154,-0.583728,0.739525,-0.486404,0.136113,0.863063,-0.565508,-0.221198,0.794488,0.143254,-0.121128,0.982238,0.081881,-0.073885,0.993896,-0.305002,-0.692496,0.653737,-0.172582,-0.708274,0.6845,0.087527,-0.065432,0.993988,-0.073,-0.697928,0.712394,0.234596,-0.438978,0.867306,0.074892,-0.743553,0.664418,0.080874,-0.65157,0.754234,0.108768,-0.32664,0.938841,-0.233619,-0.272805,0.933256,-0.600482,-0.406751,0.688437,-0.049623,-0.813837,0.578936,0.286996,-0.605213,0.742515,0.045228,0.867733,0.494949,0.249977,0.829218,0.499863,0.514695,0.738517,0.435438,0.153691,0.727683,0.668447,0.575365,-0.223792,-0.786645,0.966582,-0.212165,-0.143773,0.553117,-0.827143,-0.099216,0.005066,-0.741386,-0.67101,0.61507,-0.274239,-0.739219,-0.1901,-0.6498,-0.735923,0.031526,-0.10239,-0.994232,-0.170232,-0.31077,-0.935087,0.050325,-0.166173,-0.984802,0.668661,-0.366863,-0.646718,0.024751,-0.825495,-0.563829,-0.271737,-0.523972,-0.807184,0.689535,-0.335398,-0.641865,0.05826,-0.811762,-0.581011,0.962828,-0.261513,0.067354,0.479263,-0.873775,0.082186,0.863491,-0.453261,-0.221198,0.795404,-0.288583,0.532914,0.266152,-0.88702,0.377239,0.192297,-0.89404,-0.404553,0.78225,-0.457808,-0.422407,0.227363,-0.879025,-0.419019,0.096286,-0.135258,-0.986114,-0.29545,-0.561418,-0.772942,0.807672,-0.470504,-0.355327,0.80697,-0.443617,0.389813,0.330271,-0.943205,0.035005,0.438185,-0.796503,-0.416608,0.821162,-0.405194,0.401837,0.364391,-0.929838,0.050905,0.380535,-0.050996,0.923338,0.010376,-0.698019,0.715995,0.651936,0.49089,-0.577899,0.92468,0.359081,-0.126499,0.87756,0.273995,-0.393414,0.42439,0.63918,-0.641316,0.59859,-0.395367,-0.696646,0.956847,-0.290323,-0.009491,0.589953,-0.799249,0.114566,0.093478,-0.907132,-0.410291,0.332408,0.499161,-0.800165,0.878475,0.323649,-0.35139,0.820673,0.390149,-0.417432,0.959624,0.279366,0.031983,-0.046876,-0.190802,-0.980499,0.588061,-0.511307,-0.626637,-0.046785,-0.8905,-0.452528,-0.304453,-0.568529,-0.764214,0.617634,-0.48146,-0.621815,0.05002,-0.919706,-0.389325,0.914914,-0.393902,0.087924,0.497543,-0.848262,0.181341,0.951231,0.306589,-0.033326,0.857967,0.269173,0.437452,0.923856,0.281777,-0.25898,0.326823,0.41789,-0.847652,0.773553,-0.576189,-0.263741,0.818995,-0.437452,0.371288,0.34608,-0.869686,0.351909,0.072359,-0.947905,-0.31019,-0.07947,-0.072939,-0.99414,0.67803,-0.572649,-0.460768,0.224281,-0.9082,-0.353313,-0.434675,-0.485641,-0.758415,0.944792,0.241279,-0.221595,0.816034,0.311014,0.487167,0.85284,0.346995,0.390088,0.524033,0.425245,0.737877,0.732231,-0.569048,-0.374157,0.721366,-0.574725,0.386395,0.160405,-0.986785,0.021546,0.36195,-0.827693,-0.428785,0.74514,-0.533586,0.399976,0.148778,-0.979003,0.139286,0.333506,-0.147038,0.931181,-0.086367,-0.657063,0.748833,0.641438,-0.273049,-0.71691,0.980529,-0.190649,-0.046358,0.584155,0.624622,-0.518235,0.88934,0.443617,-0.11066,0.661641,-0.43611,-0.609912,-0.001984,-0.925565,-0.378521,-0.079287,-0.707724,-0.701987,0.068606,-0.286874,-0.955473,0.686209,-0.2584,-0.679922,0.104312,-0.098941,-0.989593,0.633259,0.599384,-0.489578,0.165746,0.624958,-0.76281,0.156926,-0.205725,-0.965911,0.663472,-0.448683,-0.598682,0.346049,0.430738,-0.833461,0.797937,0.388379,-0.46086,0.687918,-0.418775,-0.59273,0.762444,0.446394,-0.468337,0.937986,-0.320322,0.132511,0.944853,0.323588,0.050233,0.787225,-0.556261,-0.266121,0.808374,-0.466536,0.358898,0.942778,0.329936,-0.047395,0.943663,0.059664,0.325419,0.048677,-0.111911,-0.992492,0.756401,-0.501511,-0.419874,0.302713,0.465377,-0.831721,0.915067,0.274209,-0.295663,0.820887,-0.504593,-0.267342,0.755638,-0.48204,0.443403,0.950255,0.220496,-0.219855,0.80871,0.408887,0.422773,0.760002,-0.450331,0.468551,0.694845,0.418744,0.584643,0.314097,-0.096591,0.944426,0.343852,0.277749,0.897,0.341624,0.351054,-0.871792,0.216742,0.010041,-0.976165,-0.080142,-0.140904,-0.986755,-0.692526,-0.688894,0.213965,-0.801965,-0.596454,-0.032472,-0.464736,0.850581,-0.245949,-0.488693,0.863094,0.127323,-0.767022,-0.566729,-0.300729,-0.105014,0.857814,-0.503098,-0.36726,0.813623,0.450636,-0.542283,-0.696219,0.47026,-0.81402,-0.550432,0.1854,-0.785791,-0.61449,-0.070193,-0.497391,0.858943,-0.121525,-0.471053,0.881497,0.032075,-0.658132,-0.661519,-0.359447,-0.32609,-0.751579,-0.573382,-0.050295,0.844691,-0.532853,-0.378002,0.849452,-0.368114,-0.680471,-0.513596,0.522599,-0.305002,0.942045,0.1395,-0.477096,-0.530015,-0.70101,0.177648,0.847621,-0.499954,-0.683035,-0.265969,-0.680197,-0.442427,0.817499,-0.368603,-0.587115,-0.43379,-0.683401,-0.457167,0.679006,-0.574389,-0.759819,0.630055,0.160131,-0.829493,-0.520341,0.202887,-0.702078,0.701346,-0.12302,-0.893277,-0.372082,0.252144,-0.573748,0.812891,0.099948,-0.794183,0.590442,-0.143468,-0.841578,-0.523392,0.133183,-0.51033,-0.600909,0.615162,-0.474776,0.785943,0.396039,-0.74807,0.65978,0.071108,-0.871151,-0.488083,-0.053499,-0.59444,-0.713279,0.371227,-0.855983,-0.445662,-0.261971,-0.68688,0.725272,-0.04593,-0.199957,0.913053,-0.355358,-0.713584,-0.553362,-0.429579,-0.645802,-0.518845,0.560076,-0.547044,0.714377,-0.436323,-0.878933,-0.400067,0.259529,-0.881497,-0.46498,-0.082003,0.017487,0.60799,-0.793725,-0.320231,0.623066,-0.713584,-0.946745,-0.286905,-0.14594,-0.55034,0.77517,-0.31016,-0.528642,0.8305,0.175329,-0.744133,-0.638752,0.195471,-0.789148,-0.611682,-0.055483,-0.459151,0.88583,-0.066591,-0.831446,-0.555315,0.016877,-0.753288,-0.629414,-0.190649,-0.438032,0.898831,-0.012879,-0.41731,0.809503,0.412915,-0.641285,-0.583544,-0.498154,-0.333934,0.862789,-0.379528,-0.405896,0.720786,0.561815,-0.812647,-0.575274,0.092715,-0.825739,-0.53383,-0.181982,-0.772698,0.633992,0.030366,-0.543687,0.838252,0.040773,-0.913755,-0.179968,-0.364177,0.727836,0.067476,-0.682363,0.293619,0.195502,-0.935697,0.290201,0.257027,-0.921781,0.738273,0.145116,-0.658681,0.539567,-0.607624,-0.582781,0.079623,-0.67159,-0.736595,0.634816,0.182104,-0.750877,0.633168,0.11771,-0.764977,0.420118,-0.646016,-0.637287,0.75985,0.629414,-0.162542,0.701041,0.657613,-0.275765,0.766656,0.45851,-0.449416,0.777734,0.153417,-0.609546,0.801691,0.026948,-0.597095,0.197546,0.234718,-0.95175,0.170415,0.058596,-0.983612,0.608722,-0.562426,-0.559557,0.049348,-0.41258,-0.909574,0.777856,0.5815,-0.238197,0.31785,0.605762,-0.729362,0.670278,0.741905,-0.015748,0.669179,-0.721274,0.178625,0.687399,-0.62917,-0.362774,0.699362,0.525864,-0.484024,0.622211,0.763634,-0.172246,0.696188,-0.716544,-0.042726,0.613636,0.751335,-0.242622,0.722892,-0.660482,-0.202857,0.682424,0.615894,0.393597,0.787255,-0.52501,0.323374,0.683859,0.612323,0.39668,0.78576,-0.528306,0.321604,0.727897,-0.65215,-0.211676,0.609607,0.75103,-0.253456,0.703848,-0.710257,0.008728,0.592822,0.778008,-0.207923,0.713858,0.640126,-0.283944,0.763573,-0.6386,-0.095462,0.199255,-0.654317,-0.729453,0.185705,0.50322,-0.843959,0.055239,0.000275,0.998444,0.200354,-0.1901,0.961089,-0.07828,-0.201483,-0.976348,-0.056032,-0.133885,-0.98938,-0.303934,0.311472,-0.900327,-0.256142,0.320353,0.911985,-0.209662,-0.216651,0.953429,-0.334452,-0.349925,-0.875027,-0.516923,0.338664,0.786157,-0.483383,0.306558,-0.819941,-0.435987,-0.701529,-0.563677,-0.540208,-0.560686,0.627491,-0.277474,-0.260811,-0.924619,-0.199286,-0.368206,0.908109,-0.482681,-0.698569,0.528184,-0.343211,-0.661122,-0.667135,0.038118,-0.131382,0.99057,-0.023835,-0.001404,-0.999695,-0.306345,0.160863,0.9382,-0.322611,0.396954,-0.859249,-0.501663,0.361064,-0.786096,-0.565416,0.167211,0.807642,-0.038392,-0.072237,-0.996643,0.20484,-0.297403,0.932493,0.410596,0.890194,-0.197333,0.736656,-0.662435,-0.135838,0.819117,-0.46556,-0.335032,0.601001,0.736991,-0.309153,-0.017273,-0.575854,-0.817347,-0.189306,0.573626,-0.79693,0.696493,0.700156,0.156865,0.899625,-0.428694,0.082705,0.698447,0.693289,0.177343,0.89404,-0.437941,0.094028,0.712333,-0.684652,-0.154271,0.439863,0.88815,-0.132969,0.730522,-0.65865,0.180151,0.545061,0.817255,0.186956,0.861599,-0.407025,-0.303232,0.619037,0.730705,-0.28779,0.759484,0.430616,0.487564,0.845729,0.42262,0.325663,0.900906,0.245155,0.358104,0.767479,0.301035,0.565935,0.905911,0.38667,0.172491,0.956236,0.224738,0.187262,0.105228,-0.622913,-0.77514,0.175817,-0.365825,-0.913907,0.126438,-0.434004,-0.891964,0.12775,-0.635792,-0.761193,0.062807,-0.628712,-0.775079,0.132817,-0.45555,-0.880215,0.120548,-0.603748,-0.787988,0.181402,-0.583819,-0.791314,0.032472,-0.615772,-0.787225,0.543809,-0.036439,-0.838404,0.43675,0.272927,-0.857143,0.372265,0.147588,-0.916288,0.463057,-0.106784,-0.879849,0.687094,0.052614,-0.724631,0.628895,0.290567,-0.721122,0.094272,-0.664205,-0.741569,0.178594,-0.500534,-0.847072,0.16718,-0.701102,-0.693136,0.263985,-0.597644,-0.757012,0.121616,-0.634205,-0.763512,0.237251,-0.634785,-0.735343,0.321909,0.011841,-0.946684,0.442763,0.062441,-0.894436,0.310251,-0.085665,-0.946776,0.281503,-0.169073,-0.944517,0.354656,0.200934,-0.913114,0.51445,0.230842,-0.825831,0.331278,0.022431,-0.943236,0.359478,-0.164342,-0.918546,0.313089,0.154088,-0.937101,0.634541,0.222175,-0.740257,0.548967,0.1142,-0.827967,0.187597,-0.221015,-0.95703,0.23484,-0.297952,-0.92523,0.325358,-0.353496,-0.87701,0.220191,-0.705161,-0.673971,0.246559,-0.645192,-0.723106,-0.377544,-0.26896,-0.886044,-0.375134,-0.220985,-0.900204,0.35548,-0.607593,-0.710227,-0.304025,-0.291604,-0.906919,0.574969,0.281625,-0.768151,0.683309,0.268624,-0.678854,0.751976,0.300546,-0.586657,0.69747,0.193213,-0.690023,0.602191,0.112064,-0.790429,0.108737,0.673696,-0.730918,0.391583,0.273873,-0.878414,0.327067,0.164068,-0.930631,0.62862,-0.039827,-0.776666,0.52974,-0.103366,-0.841823,0.066134,0.282693,-0.956908,0.665212,0.395825,0.633045,0.628834,0.383129,0.676565,0.924314,0.381237,-0.01529,0.854701,0.507645,-0.10828,0.153478,-0.487777,-0.85934,0.092837,-0.43025,-0.897885,0.205054,-0.567583,-0.797327,0.248787,-0.431196,-0.867244,0.39378,-0.18891,-0.899564,0.409131,-0.379589,-0.829737,0.507859,-0.31077,-0.8034,-0.090609,-0.087252,-0.992035,0.974181,0.225684,0.000855,0.936857,0.34962,0.003113,0.888852,0.262581,-0.375408,0.913541,0.199438,-0.354381,0.921171,0.315165,0.228248,0.806238,0.423017,0.413495,0.845027,0.375286,0.380871,0.913236,0.358043,0.19425,0.586963,0.519242,0.621143,0.616352,0.412824,0.670553,0.523606,0.090426,-0.847133,0.660421,0.147069,-0.73632,0.639515,0.206091,-0.740593,0.523331,0.083895,-0.847957,0.376476,0.155095,-0.913327,0.43318,-0.002319,-0.901273,0.344646,0.476424,0.808832,0.235878,0.543138,0.805811,0.93234,0.28312,0.224769,0.589984,0.686697,0.424604,0.928434,0.371319,0.010102,0.892575,0.358074,-0.273965,0.927335,0.253334,-0.275399,0.971892,0.235206,-0.007904,0.977599,0.0365,0.207251,0.888363,0.145665,0.435347,0.849605,-0.328501,0.412519,0.935881,-0.299692,0.185095,0.764244,0.313547,0.563524,-0.888119,-0.346385,0.302011,0.518723,-0.208502,-0.829096,0.639882,-0.330699,-0.693655,0.658834,-0.314402,-0.683401,0.484848,-0.177465,-0.85638,0.377483,-0.025575,-0.925626,0.453261,-0.165929,-0.87579,-0.804895,-0.169408,-0.568682,0.290719,0.555681,0.778893,0.912656,-0.394574,0.106449,0.427137,0.776086,0.463881,0.928098,-0.363231,-0.081759,0.891018,-0.33842,-0.302499,0.8829,-0.348247,-0.31492,0.992065,-0.125492,0.001129,0.979888,-0.159185,0.120212,0.942625,-0.127293,0.308573,0.620502,-0.631153,0.465377,0.739372,-0.671773,0.044679,0.825129,0.007111,0.564867,0.38609,-0.51735,0.763695,0.489425,-0.348552,-0.799341,0.639058,-0.35783,-0.680837,0.659139,-0.228492,-0.716453,0.472732,-0.333842,-0.815485,0.366558,-0.240028,-0.898862,0.412244,-0.340648,-0.844966,0.543016,-0.102329,0.83343,0.595752,0.238075,0.767052,0.954527,-0.262581,0.140965,0.85815,0.265786,0.439192,0.903867,-0.423719,-0.05887,0.91818,-0.298013,-0.260933,0.951506,-0.182714,-0.247353,0.98645,-0.152562,0.060274,0.091067,0.11298,-0.98941,0.312876,0.081088,-0.946287,0.351939,-0.540269,-0.764336,0.055269,-0.723991,-0.687551,0.710471,-0.000732,-0.703696,0.80813,-0.410993,-0.421857,0.916257,0.165502,0.364757,0.863277,0.135075,0.486282,-0.545274,0.824976,-0.148473,-0.590381,0.807123,0.000763,0.976653,0.051668,0.208441,-0.551469,0.818232,0.162328,0.706504,-0.238289,0.666341,0.876309,-0.328898,0.351939,0.913938,-0.398541,-0.076449,0.495743,-0.093265,0.86343,0.998779,-0.007385,0.048647,-0.456679,0.783776,0.42082,0.961943,-0.052126,-0.268105,-0.337718,0.409101,0.847652,0.092715,0.19248,-0.976897,0.350841,0.093173,-0.931761,-0.665059,0.565813,0.48732,-0.490066,0.681173,0.54387,0.687033,0.069308,-0.723289,-0.512497,0.640675,0.571703,0.879574,0.215125,0.424299,0.897427,0.087405,0.432386,-0.483016,0.874905,-0.0347,-0.542039,0.840083,-0.01941,0.939085,0.237312,0.248451,-0.588458,0.795587,0.143803,0.860164,-0.066042,0.505692,0.924436,-0.355571,-0.137638,0.736869,0.447584,-0.506607,-0.297403,0.951048,-0.08359,0.98938,0.142888,0.026124,-0.475173,0.807215,0.350078,0.95529,0.115543,-0.272042,-0.493637,0.699698,0.516465,0.586749,-0.425306,-0.689047,0.511338,-0.54088,-0.667776,0.701437,-0.303323,-0.644948,0.944243,-0.175939,0.278237,0.874996,-0.097018,0.474258,0.982208,-0.127598,0.137577,0.653584,0.237587,0.718558,0.971282,0.224281,0.079196,0.995636,-0.085971,-0.036225,0.946715,-0.119968,-0.298807,0.482162,-0.869289,-0.108615,0.562059,-0.827052,-0.005768,0.656636,-0.751976,-0.057466,0.580859,-0.597613,-0.552599,0.583575,-0.620319,-0.524003,0.571032,-0.681967,-0.456954,0.801202,-0.400708,0.44438,0.96176,-0.162236,0.220527,0.562944,-0.810022,-0.164129,0.578143,-0.754479,-0.310526,0.167211,-0.973998,-0.152806,0.172979,-0.967376,-0.185034,0.508805,-0.860866,0.000519,0.541765,-0.693319,-0.475143,0.506394,-0.677938,-0.532823,0.576281,-0.719108,-0.388287,0.729209,-0.356365,0.584124,0.928678,-0.298074,0.220588,0.265297,-0.943602,-0.198035,0.497726,-0.79281,-0.351695,-0.239845,-0.924284,-0.296884,-0.249336,-0.912839,-0.323283,-0.035463,-0.963775,-0.26429,0.405194,-0.910154,0.086093,-0.06653,-0.996857,-0.042482,0.525163,-0.823603,0.214148,0.399152,-0.861934,0.312601,0.922117,-0.372204,0.105411,-0.19483,-0.908383,-0.369915,-0.297525,-0.843562,-0.447066,0.461409,-0.886532,0.033326,0.478561,-0.825892,0.298074,-0.103702,-0.987335,0.119846,-0.230018,-0.901944,-0.365429,-0.287912,-0.921323,-0.261208,-0.341441,-0.847163,-0.407086,-0.459487,-0.833094,-0.30781,0.25428,0.074984,-0.964202,-0.402997,-0.822291,-0.401715,-0.482223,-0.827265,-0.288217,0.242805,0.063509,-0.967986,0.281991,-0.171758,-0.943907,0.063051,-0.619922,-0.782098,0.056917,-0.601947,-0.796503,0.03882,-0.487411,-0.87228,0.185583,0.060457,-0.980743,0.157537,-0.138798,-0.977691,0.215644,0.141606,-0.966124,0.114109,-0.406293,-0.906583,0.230811,0.104587,-0.967345,0.065493,-0.618946,-0.782678,0.166631,0.176305,-0.970122,0.196509,-0.049257,-0.979247,0.187139,0.051851,-0.980956,0.259499,-0.291849,-0.92056,0.266121,-0.133885,-0.954588,0.305124,-0.348949,-0.886044,0.029939,0.100864,-0.994446,-0.586718,0.633381,0.504532,0.024293,0.227607,-0.973418,-0.448408,0.552812,0.702322,0.329264,-0.582537,-0.743095,0.445265,-0.739799,-0.504349,0.51442,-0.689291,-0.510086,0.616016,-0.786889,0.035554,0.525285,-0.846828,-0.083224,0.703207,0.394574,0.591388,0.0553,0.820307,0.569201,0.100131,0.898618,0.427076,0.780114,0.453963,0.430464,0.688894,0.720939,-0.075045,0.113987,0.979339,0.166967,0.913846,0.404004,-0.040681,0.243355,0.964476,-0.102634,0.218268,0.903012,-0.370006,0.901944,0.318033,-0.292032,0.866909,0.488113,0.100986,0.136204,0.987365,0.080569,0.819727,0.503861,0.272225,0.089602,0.961119,0.261086,0.204535,-0.070437,-0.976318,0.0871,-0.112186,-0.989837,0.471114,0.601306,-0.645314,0.267586,0.601276,-0.752861,0.26487,-0.219855,-0.938871,0.248909,-0.131321,-0.959563,0.299936,0.644368,-0.703421,0.444197,0.662526,-0.603076,0.464492,-0.607898,-0.643941,0.473891,-0.48442,-0.735343,0.457381,0.146184,-0.877163,0.580279,0.360851,-0.730064,-0.383343,-0.389935,-0.837245,-0.333171,-0.192358,-0.923032,0.30546,-0.348552,-0.886105,0.279946,0.480941,-0.830836,-3.1e-05,1,6.1e-05,-0.023835,-0.001373,-0.999695,0.561693,0.813868,-0.148503,0.772332,-0.633229,-0.049471,0.798608,-0.486465,-0.354289,0.581103,0.73162,-0.356395,-9.2e-05,-0.652882,-0.757439,-0.195349,0.502396,-0.84225,0.651234,0.646016,0.398144,0.773888,-0.496872,0.392621,0.612079,0.667348,0.424207,0.802911,-0.466353,0.371197,0.741752,-0.670644,0.00235,0.534623,0.844386,-0.033784,0.737938,-0.503006,-0.449904,0.601337,0.657582,-0.45378,0.653127,0.705863,-0.274178,0.609241,-0.715323,0.342204,0.599384,-0.745476,-0.291513,0.721824,0.425306,-0.545915,0.714743,0.612964,0.336711,0.74337,-0.481979,0.463729,0.763939,0.539048,0.354625,0.681936,-0.606189,0.409223,0.660573,-0.750359,-0.024384,0.687155,0.695303,-0.210517,0.643757,0.600726,-0.473952,0.6545,-0.598132,-0.462416,-0.31605,-0.619434,-0.718589,-0.333293,0.541978,-0.771447,0.035859,-0.085421,0.995697,0.169103,-0.281228,0.944609,-0.072268,-0.114933,-0.990722,-0.045473,-0.048097,-0.997803,-0.265786,0.40379,-0.875362,-0.252419,0.260506,0.931852,-0.241554,-0.280007,0.929075,-0.339427,-0.253975,-0.905667,-0.509049,0.306284,0.804376,-0.44673,0.404157,-0.798151,-0.469466,-0.622517,-0.626118,-0.587298,-0.573504,0.571062,-0.326579,-0.746422,-0.579791,-0.83401,-0.493118,-0.247353,-0.883755,-0.334117,-0.327525,-0.4897,-0.225074,-0.842311,-0.701956,0.303201,-0.644429,-0.948485,-0.169805,-0.267373,-0.836024,0.539506,-0.099918,-0.990051,-0.097385,-0.101382,-0.818537,0.329569,0.470473,-0.984069,-0.162023,0.072939,-0.654378,-0.188421,0.732292,-0.933988,-0.322947,0.152684,-0.443007,-0.720511,0.533464,-0.869503,-0.485244,0.091983,-0.307199,-0.951567,-0.009949,-0.828089,-0.555681,-0.073672,-0.78637,-0.28843,-0.546251,-0.473434,-0.219916,-0.852901,-0.307138,-0.749352,-0.586596,-0.691977,-0.612232,-0.382458,-0.688528,0.319712,-0.650899,-0.908109,-0.006104,-0.418653,-0.826044,0.554735,-0.099399,-0.981628,0.140538,-0.129002,-0.806055,0.346782,0.479537,-0.974944,0.00943,0.222175,-0.640584,-0.182897,0.745781,-0.868343,-0.309946,0.387127,-0.426374,-0.722892,0.543687,-0.759545,-0.596942,0.258278,-0.287942,-0.957579,-0.007721,-0.673086,-0.738914,-0.030091,-0.946196,-0.153844,-0.284585,-0.936552,-0.338664,-0.09006,-0.859401,-0.499069,0.110965,-0.213202,-0.758782,-0.615436,-0.192175,-0.981353,0.002747,-0.339518,-0.730644,0.592303,-0.568957,-0.153539,0.807886,-0.745933,0.412091,0.523179,-0.766808,0.634785,-0.094974,-0.619617,0.383984,-0.68453,-0.390301,-0.193304,-0.900143,-0.627674,-0.267647,-0.730979,-0.489761,-0.707236,-0.509781,-0.805841,0.179785,-0.564135,-0.924955,0.365032,-0.105838,-0.904263,0.20191,0.376202,-0.766533,-0.236671,0.596973,-0.588,-0.685385,0.429487,-0.473403,-0.880337,-0.028993,0.266793,-0.90878,-0.32075,0.1283,-0.955016,0.267312,0.305612,-0.914975,0.263436,0.422468,-0.875973,-0.232734,0.557787,-0.501022,-0.661641,0.667989,-0.531907,-0.520371,0.830866,0.029389,-0.55565,0.898404,-0.084353,-0.430952,0.926023,0.371776,-0.064882,0.978698,0.204535,-0.016846,0.78753,0.325541,0.523209,0.861843,0.165532,0.479354,0.496536,-0.082186,0.864101,0.616321,-0.178503,0.766961,0.223457,-0.612629,0.75811,0.385907,-0.626087,0.677541,0.112461,-0.59273,0.797479,0.009186,-0.964171,0.265053,0.107669,-0.957579,0.26719,0.20484,-0.60979,0.765618,0.744835,-0.561083,0.361034,0.715842,-0.665456,0.211402,0.482528,-0.071535,0.872921,0.408704,-0.017243,0.912473,0.828089,-0.399396,0.393353,0.777581,0.342753,0.527116,0.724418,0.425092,0.54265,0.916807,-0.275094,0.289407,0.918027,0.390179,-0.070254,0.87466,0.475234,-0.09534,0.959014,-0.260994,0.110141,0.821558,0.041993,-0.568529,0.771386,0.103793,-0.627796,0.929991,-0.365368,-0.03946,0.544694,-0.496658,-0.67571,0.475143,-0.471664,-0.74279,0.846767,-0.527085,-0.071749,0.248848,-0.91055,-0.330027,0.159429,-0.914029,-0.372936,0.758049,-0.651357,0.032136,0.785882,-0.545427,-0.291269,0.934324,-0.249794,-0.254219,0.842128,-0.530534,-0.096652,0.617176,-0.777245,-0.122135,0.907437,-0.066103,0.414899,0.750664,-0.304514,0.586291,0.59032,-0.593554,0.546953,0.821528,-0.389752,0.416089,0.997742,-0.042604,0.051729,0.862941,-0.47734,0.165654,0.538133,-0.807001,0.243141,0.969543,0.080844,-0.231117,0.436903,0.132908,-0.889615,0.237251,0.699698,-0.673879,0.941099,0.334635,-0.048067,0.192755,0.293008,-0.93646,-0.356517,0.310953,-0.881008,-0.286599,0.633778,-0.718436,0.128544,0.736015,-0.664632,-0.325388,0.655049,-0.681906,0.229316,0.73809,-0.63448,0.252449,0.42555,-0.868984,-0.409101,0.404401,-0.817957,0.682089,0.681204,-0.265816,0.723624,0.368694,-0.583422,0.906186,0.229438,0.355144,0.976196,0.187597,0.108737,0.949919,-0.257088,0.177557,0.78225,0.000763,-0.622913,0.182897,0.075869,-0.980163,-0.521928,-0.044801,-0.851772,0.827113,-0.125523,0.547807,0.942686,0.197699,0.268715,-0.38432,0.55913,-0.734581,-0.774957,0.262062,-0.575091,0.729057,0.637135,-0.249916,0.203406,0.712668,-0.671316,0.250221,0.441084,-0.861843,0.835688,0.282357,-0.470992,-0.510239,-0.845607,0.156743,0.842463,0.473342,-0.257179,-0.873806,-0.25486,-0.414106,-0.567766,-0.717521,0.403424,-0.684408,0.308603,0.660543,-0.769585,0.589831,-0.244514,0.45912,0.884945,0.0777,0.100467,-0.737999,0.667257,-0.033692,0.107028,0.993683,0.767571,0.136906,0.626118,0.560961,0.533006,0.633381,-0.154668,0.278512,0.947874,-0.803491,-0.101138,-0.586627,-0.142674,0.25132,-0.957305,0.992737,9.2e-05,-0.120273,0.737144,-0.357402,0.573412,0.931608,0.351848,0.091006,0.610065,0.709433,-0.352763,0.247353,0.802179,-0.543382,0.050417,0.703452,-0.708945,-0.370342,-0.928861,0.003235,-0.126225,-0.952086,0.278481,-0.380352,-0.077944,-0.921537,0.86581,-0.490921,0.096683,-0.297067,0.576128,-0.761406,0.943693,0.206305,0.258553,0.64388,-0.764824,0.020051,0.616443,-0.781945,0.092288,0.870846,-0.011444,0.491379,0.980102,-0.013459,0.198004,0.525101,-0.727561,0.44142,0.995849,-0.073244,0.053926,0.602588,-0.556902,0.571551,0.932859,-0.284677,-0.220649,0.329569,-0.81869,0.470199,-0.254555,-0.832789,0.491562,-0.613819,0.478164,0.628101,0.696158,0.436628,0.569781,-0.307657,-0.826075,0.472121,0.235237,-0.860286,0.452254,0.555284,-0.593982,-0.58208,-0.551195,-0.528092,-0.645955,-0.878475,-0.019807,0.47734,-0.58034,-0.800623,0.148778,-0.581439,-0.640278,0.501938,-0.942412,-0.19541,-0.27131,-0.596088,-0.801721,-0.043275,-0.996002,-0.071688,0.052736,-0.538743,-0.802179,0.257302,-0.984924,-0.127262,-0.1171,0.071291,-0.691824,-0.718528,0.011597,-0.999725,-0.019898,0.260262,-0.640736,-0.722282,-0.232612,-0.603107,-0.762963,-0.099948,-0.668661,-0.736778,0.323923,-0.634083,-0.702109,-0.246467,-0.601184,-0.760125,-0.023286,-0.998535,0.048341,0.004395,-0.999542,-0.029176,-0.129154,-0.820673,-0.556566,0.079592,-0.838008,-0.539781,-0.006348,-0.99939,-0.033784,-0.475326,-0.60329,-0.640339,0.503891,-0.638905,-0.581256,0.018067,-0.998169,-0.057253,-0.340922,-0.719291,-0.605274,0.340953,-0.748619,-0.56856,0.095645,-0.943693,-0.31666,0.439375,-0.836482,-0.327433,-0.47499,-0.804346,-0.356853,-0.140751,-0.930692,-0.337565,0.712272,-0.621693,-0.325755,-0.759758,-0.547838,-0.350169,0.0524,-0.997314,-0.050966,-0.157537,-0.981811,-0.105777,0.85406,0.079592,0.513993,0.974731,0.041597,0.219367,0.999146,-0.038728,-0.012238,0.908414,-0.212622,-0.359905,0.468032,-0.322184,-0.822871,-0.424085,-0.239051,-0.87347,-0.884365,0.118229,0.451552,-0.977142,0.124668,0.172063,-0.874355,-0.046175,-0.483047,-0.998535,0.04004,0.035524,-0.980651,0.002991,-0.195593,0.98056,0.06653,0.184484,0.103702,-0.357799,-0.928007,-0.002106,-0.382611,-0.923887,-0.189428,-0.853328,0.485672,0.108127,-0.875851,0.47026,-0.653096,-0.299051,-0.695669,-0.573229,-0.68218,-0.453841,-0.319315,-0.651906,0.687735,-0.524186,-0.172918,0.833827,0.255379,-0.704215,0.662435,0.515275,-0.719535,-0.465499,0.65276,-0.314676,-0.689077,0.495926,-0.240913,0.834223,-0.240577,-0.418256,-0.875851,-0.477065,-0.536515,0.696066,0.280496,-0.355327,-0.891659,0.441816,-0.60921,0.658498,0.109531,-0.380566,-0.918241,-0.015778,-0.401288,-0.915799,-0.218146,-0.815516,0.535997,0.134281,-0.832148,0.53798,-0.717856,-0.278939,-0.637837,-0.565081,-0.693747,-0.446455,-0.303629,-0.668355,0.679006,-0.515793,-0.175207,0.838557,0.206519,-0.694571,0.689108,0.563463,-0.713736,-0.415967,0.730949,-0.31254,-0.606616,0.455336,-0.220893,0.862453,-0.478957,-0.462905,0.745842,-0.322764,-0.429212,-0.843532,0.374859,-0.436964,-0.817621,0.395642,-0.510544,0.76339,-0.158971,-0.831385,0.532395,0.05649,-0.842921,0.534989,0.098849,-0.458663,-0.883053,-0.019745,-0.460311,-0.887509,0.096774,-0.484024,-0.869655,-0.027039,-0.474227,-0.879971,-0.493088,-0.730613,0.472243,-0.729148,-0.36729,0.57741,-0.391461,-0.245735,-0.886746,-0.251839,-0.710349,-0.657216,-0.428755,-0.284555,-0.857418,-0.234504,-0.727317,-0.644948,0.670034,-0.443556,0.595172,0.392804,-0.766839,0.507584,0.261025,-0.726249,-0.635914,0.429334,-0.239998,-0.870663,0.121708,-0.754906,-0.644398,0.45027,-0.309366,-0.83755,-0.476943,-0.664266,0.575518,-0.176153,-0.353832,-0.918546,-0.190985,-0.381176,-0.904538,0.378826,-0.716147,0.586138,0.245827,-0.325449,-0.913022,0.263802,-0.363323,-0.893521,0.981628,-0.134953,0.134831,0.837153,-0.179052,0.5168,0.461989,0.668599,0.582659,0.628498,0.668905,0.396863,0.975616,-0.180151,0.125217,0.799158,0.516831,0.306864,0.382916,-0.215339,0.898312,-0.328135,-0.231849,0.915708,-0.206915,0.671255,0.711753,0.20246,0.647267,0.734855,-0.41435,0.742973,0.52559,-0.858455,-0.180029,0.480239,-0.996429,-0.057619,0.061342,-0.596088,0.720908,0.353435,-0.994476,-0.066622,-0.081027,-0.762719,0.627796,0.155156,0.986633,-0.106815,0.122837,0.716788,-0.687857,0.114139,0.529099,-0.805261,0.267525,0.881893,-0.154973,0.445235,0.963897,-0.159795,0.212928,0.56624,-0.809687,0.153966,0.40376,-0.137364,0.904477,0.247963,-0.837123,0.487533,-0.173681,-0.8052,0.566942,-0.34788,-0.146397,0.926023,-0.500992,-0.827723,0.252693,-0.88641,-0.160894,0.433973,-0.705741,-0.708304,-0.013153,-0.996887,-0.078616,-0.005036,-0.655049,-0.75512,0.025697,-0.996368,-0.084964,0.004547,0.419599,-0.100955,0.902066,0.172338,-0.664388,0.727226,0.441816,-0.097476,0.891781,-0.36729,-0.649617,0.665639,-0.615528,-0.09122,0.7828,-0.682119,-0.083865,0.726371,0.553514,0.346171,0.757469,-0.706442,0.39671,0.586108,0.414594,0.074831,-0.906919,0.930662,-0.069582,-0.359111,0.935514,-0.008759,-0.353099,0.466414,0.079714,-0.880947,0.791681,0.013764,-0.610767,0.785882,0.012421,-0.618213,-0.256447,0.0889,-0.962432,0.367199,0.049867,-0.92877,0.336894,0.124241,-0.933287,-0.255928,0.155522,-0.95407,0.184454,0.051302,-0.981475,0.233345,0.158818,-0.959319,0.947966,0.020631,-0.317698,0.569933,0.062563,-0.819269,0.79635,-0.00174,-0.604785,-0.264901,0.022736,-0.963988,0.399762,-0.011689,-0.916532,0.146397,-0.027558,-0.98883,0.853603,0.520218,-0.026307,0.69158,0.64919,0.316568,0.803247,0.457045,0.381909,0.946165,0.31727,0.063692,0.842433,0.471023,-0.261483,0.930204,0.295785,-0.21717,0.696524,0.453444,-0.556047,0.822138,0.189398,-0.536851,-0.198706,0.507797,-0.838221,0.339183,0.464553,-0.817988,0.426435,0.145146,-0.892758,-0.249672,0.157872,-0.955351,-0.748314,0.663228,-0.010681,-0.502976,0.79986,0.327433,-0.843623,0.39024,0.368755,-0.919401,-0.304605,-0.248756,-0.459609,0.520859,-0.719321,-0.769982,0.173009,-0.614124,-0.734458,0.678579,-0.009186,-0.922025,0.385907,0.029969,-0.740898,0.535752,-0.404981,-0.810633,0.406751,-0.421186,0.823573,0.56444,0.055635,0.963408,-0.221015,-0.151524,0.972503,-0.066439,-0.223151,0.878109,0.294565,-0.376934,0.833369,-0.12186,-0.539079,-0.298349,-0.141392,-0.943907,0.418317,-0.175787,-0.89111,-0.22132,0.150151,-0.963561,0.959563,-0.19367,0.204138,0.803949,-0.259499,0.535051,0.732261,0.677786,0.066134,0.960997,-0.262246,-0.087374,0.82635,-0.355602,-0.436628,-0.296548,-0.416791,-0.859249,0.408856,-0.455458,-0.790796,-0.924284,-0.37785,0.053774,-0.824488,-0.377606,0.42143,-0.583422,0.77987,0.226661,-0.883572,0.460952,-0.082156,-0.810297,-0.269601,-0.52028,-0.955687,-0.280618,0.088687,-0.705679,0.70513,-0.069216,-0.960356,-0.263344,-0.091311,-0.650868,0.558519,-0.514176,0.91583,-0.384716,0.114841,0.949522,0.308176,-0.058107,0.717582,0.694662,0.049471,0.70867,0.616291,-0.343394,0.002533,0.999969,-0.00351,0.675771,0.737083,-0.002777,0.682424,0.719474,-0.12888,0.736686,0.673391,-0.061403,0.715232,0.69042,0.108371,0.69097,0.693167,0.205023,0.001953,0.999969,0.002106,0.643361,0.668081,0.373791,-0.000946,0.999969,-0.000153,-0.004547,0.999969,-0.003571,-0.705863,0.635029,-0.313761,-0.72045,0.693289,-0.017151,-0.642476,0.757378,-0.116398,-0.678732,0.695029,-0.237129,-0.755333,0.654958,-0.021973,-0.685171,0.718284,0.12067,-0.708487,0.69097,0.143315,0.002289,0.999969,-0.002258,-0.662923,0.666616,0.340709,0.001862,0.999969,-0.002838,0.001343,0.999969,0.002747,-0.186163,0.665639,0.722648,0.111148,0.664266,0.739158,0.002533,0.999969,0.003754,0.435011,0.648396,0.624744,-0.465804,0.666738,0.581744,0.003113,0.999969,-0.003845,0.001312,0.999969,-0.004578,-0.000732,0.999969,-0.001862,0.05179,0.670339,-0.740226,-0.125767,0.685934,-0.716666,0.002899,0.999969,-0.006348,0.322733,0.654286,-0.683889,-0.003449,0.999969,-0.004273,-0.392071,0.644795,-0.656117,0.786584,0.111698,-0.607257,0.761559,0.251595,-0.597247,0.807092,0.279489,-0.520066,0.13715,0.832759,-0.536332,0.813471,0.233863,-0.532456,0.782189,0.356487,-0.51091,0.767632,-0.345653,-0.539659,0.792169,-0.379284,-0.478103,0.823695,-0.190191,-0.534165,0.800378,-0.253365,-0.54329,0.892514,0.036409,-0.449507,-0.358684,0.612171,0.704642,0.866634,0.153722,-0.474624,-0.420515,0.748955,0.51207,0.826838,-0.215827,-0.519364,0.641285,-0.654256,-0.400861,0.504257,-0.705344,-0.498184,-0.22544,-0.946165,-0.232154,-0.240699,-0.962951,-0.121372,0.491012,0.027314,-0.870693,0.250587,0.005341,0.968047,-0.20777,0.007324,0.978118,-0.133091,0.758446,0.637989,0.264626,0.759606,0.594073,0.249641,0.112278,0.961791,-0.183843,0.109287,0.976836,-0.608325,0.012055,0.793573,-0.506668,0.751305,0.422803,-0.578173,0.096103,0.810205,-0.119846,-0.020631,0.992553,-0.119633,0.66274,0.739219,-0.106296,0.104007,0.988861,0.299234,-0.025452,0.953825,0.716727,0.011933,0.697226,0.617389,0.740928,0.264138,0.285562,0.66393,0.691061,0.249611,0.044588,0.967284,0.703482,0.107212,0.702536,0.675924,0.196265,0.710318,0.200598,0.226203,0.953185,0.49443,-0.625355,0.603687,0.06943,-0.589801,0.804529,0.25016,0.12067,0.960631,0.263497,-0.467086,0.84402,-0.583605,0.203986,0.785974,-0.169225,0.234901,0.957152,-0.509323,-0.662404,0.549333,-0.272927,-0.427076,0.862026,-0.178381,0.223426,0.958251,-0.211524,-0.529862,0.821253,0.662862,0.091922,0.743065,0.199988,0.124516,0.971831,0.381268,0.678701,0.627674,0.67513,0.66393,0.321482,0.642872,-0.548845,0.534257,0.145634,-0.454451,0.87875,0.233894,0.052797,0.970824,0.227668,0.675588,0.701193,0.307749,-0.525437,0.793207,-0.555864,0.200018,0.806818,-0.111362,0.232368,0.966216,-0.074221,0.655629,0.751396,-0.285653,0.771081,0.569048,-0.666219,-0.446089,0.597583,-0.209021,-0.421979,0.882168,-0.188513,0.167425,0.967681,-0.315653,-0.365276,0.875729,0.038636,0.659169,0.750969,0.181188,-0.119572,-0.976135,0.181585,0.65392,-0.734428,0.638356,0.436323,-0.634114,0.408155,0.086825,-0.90875,-0.063997,0.318735,-0.945647,-0.423627,-0.098178,-0.900479,0.37608,0.05472,-0.924955,0.123508,0.319559,-0.939451,0.341716,-0.146794,-0.928251,0.30079,0.598407,-0.742546,-0.416791,-0.130467,-0.899564,-0.308664,0.482406,-0.819727,0.448561,0.373669,-0.811853,0.002716,-0.815882,-0.578173,-0.224708,-0.835749,-0.500992,0.23838,0.465468,-0.852321,-0.19834,-0.794702,-0.573656,0.270669,0.526994,-0.805597,-0.265358,-0.775719,-0.572558,0.119419,0.45848,-0.880612,-0.528916,-0.796289,-0.293497,-0.273873,0.349345,-0.896054,-0.892941,-0.358592,0.272011,-0.719718,0.606433,-0.337901,0.611347,0.48207,-0.627552,0.887906,0.32667,-0.323862,0.590503,-0.770409,-0.240242,0.014191,-0.850887,-0.525132,0.065249,-0.885617,-0.459761,-0.587542,0.431684,-0.684378,-0.389447,0.326884,-0.861049,0.083621,-0.817469,-0.569811,-0.500381,-0.827204,-0.255593,-0.866665,0.244575,-0.434797,0.515915,-0.807886,-0.284799,0.283303,0.321909,-0.903378,0.760918,0.571093,-0.307901,0.886319,-0.365856,0.283853,0.261666,-0.854366,-0.448927,-0.142033,0.346294,-0.927305,-0.290689,0.476302,-0.829798,0.192846,-0.825434,-0.530473,-0.195288,0.48674,-0.851405,0.291391,-0.836146,-0.464644,0.390454,-0.537187,-0.747612,0.204352,-0.486831,-0.849208,0.126408,0.837733,-0.531205,0.298624,0.790338,-0.534928,0.012696,-0.4344,-0.900601,-0.012757,0.870479,-0.491989,-0.223273,-0.459181,-0.859798,-0.179876,0.843806,-0.50557,-0.4391,-0.552477,-0.708457,-0.360973,0.778832,-0.512894,-0.776269,0.443983,-0.447462,-0.173589,0.9447,-0.278146,0.64626,0.261513,-0.71688,0.206061,-0.276528,-0.938627,0.815973,0.408948,-0.408551,-0.162481,-0.345805,-0.9241,-0.564928,0.199561,-0.800592,0.239753,0.900815,-0.361919,0.951537,-0.20304,0.230903,0.185919,-0.966643,-0.176122,-0.029908,-0.604053,-0.79635,0.908505,0.234565,-0.345744,-0.18302,-0.956694,-0.226234,-0.958586,-0.209723,0.192541,-0.903073,0.251961,-0.347758,0.047823,-0.564684,-0.823878,0.779443,0.625996,-0.023347,0.832423,-0.511948,-0.211951,-0.831629,-0.534135,-0.151769,-0.795068,0.605792,0.029023,0.221351,0.831629,0.509262,-0.238929,-0.465438,0.852199,-0.462844,-0.499741,0.732109,0.130589,0.902707,0.409925,0.175909,0.796258,0.578784,-0.289529,-0.513199,0.807947,0.300638,0.838801,0.453871,-0.17011,-0.5421,0.822901,0.493545,0.858303,0.140416,0.20954,-0.473342,0.855556,0.143071,0.914518,0.378368,-0.061068,-0.039583,0.997345,-0.601001,-0.419935,0.679983,0.095614,-0.619434,0.779168,0.435957,0.493942,0.752281,-0.067324,0.832392,0.550035,0.432875,-0.481155,0.762261,-0.2172,0.912778,0.345866,0.012177,0.85461,0.519089,0.570849,-0.3567,0.739494,-0.547105,0.508591,0.664815,-0.155095,-0.567827,0.808374,0.043275,-0.044069,0.998077,-0.10242,0.903104,0.417005,-0.412549,0.905484,0.099429,-0.18131,-0.415876,0.89114,-0.293985,0.894681,0.336314,0.184881,-0.40611,0.894894,0.293832,-0.464278,0.835505,-0.183721,0.819361,0.542985,0.191809,-0.437941,0.878292,-0.268227,0.811609,0.518906,-0.36848,0.610584,0.70098,-0.192206,0.533372,0.823725,-0.092746,-0.883023,0.460005,-0.248634,-0.849605,0.465072,-0.008209,0.484176,0.874905,0.020142,-0.910062,0.413953,0.211859,0.520035,0.827418,0.131138,-0.906003,0.402387,0.414075,0.613178,0.672689,0.297128,-0.84402,0.446425,0.838954,-0.458205,0.293497,0.92346,-0.063814,0.378277,0.085696,0.618915,0.780725,-0.333811,0.31724,0.887631,-0.139897,0.703818,0.696463,-0.958861,0.003662,0.283761,-0.851192,-0.430647,0.299966,0.260933,0.377087,0.888638,0.077151,0.621357,0.779717,-0.918912,-0.338694,0.202124,-0.606159,-0.549272,0.575182,0.17542,0.206641,0.962554,0.919218,-0.335307,0.206275,-0.096988,0.58208,0.807306,-0.197607,0.158696,0.967345,0.588702,-0.582476,0.560411,0.15125,-0.683737,0.713828,0.096927,0.45674,0.884274,-0.045869,0.468062,0.882473,-0.083621,-0.675619,0.732475,0.142369,0.816095,0.560045,0.17362,0.84341,0.508408,0.197699,0.943327,0.266518,0.165532,0.922788,0.34788,0.799585,0.460982,0.384838,0.832484,0.517899,0.196722,0.119144,0.667165,0.735313,0.140385,0.698233,0.701956,0.787988,0.374767,0.488418,0.192328,-0.885433,-0.423048,0.777123,-0.584338,-0.23365,0.711905,-0.51149,0.481155,0.189703,-0.784875,0.589862,0.124729,-0.890622,-0.437239,0.114353,-0.800867,0.587786,0.813807,0.52382,-0.251564,0.223457,0.913358,-0.340312,0.196265,0.930204,-0.310099,0.102481,0.419111,0.902097,0.709189,0.205084,0.67449,0.085391,0.418836,0.904019,0.193091,0.343303,-0.919156,0.169378,0.33845,-0.925596,0.742607,0.189093,-0.642415,0.084231,-0.4579,0.884976,0.623859,-0.430342,0.652364,0.065676,-0.414289,0.907743,0.746513,-0.35612,-0.561998,0.160192,-0.449904,-0.878567,0.132115,-0.425855,-0.895077,-0.395611,-0.721427,0.568316,-0.362041,-0.825556,0.432844,0.75103,-0.219489,0.622669,0.671163,0.094577,0.735221,-0.434523,-0.48909,0.756279,0.523148,0.392743,0.75631,0.032289,0.867031,0.497147,-0.875057,0.159886,0.456771,-0.516343,-0.856319,-0.008789,0.791314,-0.570605,0.219489,-0.327525,-0.578265,-0.747185,0.701407,-0.371166,-0.608478,-0.404401,0.191168,0.894345,0.691427,-0.4532,0.562548,0.902646,0.200201,0.380932,-0.026337,0.843776,0.535997,-0.522752,-0.385968,0.760063,0.601794,-0.734397,0.313822,-0.545762,-0.762719,0.346934,0.544572,-0.788995,-0.284371,-0.829585,-0.334361,-0.447157,0.222022,-0.507736,-0.832362,0.742882,-0.604297,0.287973,-0.55913,-0.828333,-0.034669,-0.328867,-0.586169,-0.74041,0.69509,-0.418195,-0.584704,0.675527,-0.193518,0.711447,-0.384747,-0.79812,0.463607,-0.440168,-0.590899,0.676046,0.544786,0.24073,0.803247,0.107242,0.783105,0.612537,-0.832453,0.120609,0.540757,0.674703,-0.641713,0.364544,0.590411,-0.055239,0.80517,-0.635945,-0.101566,0.764977,-0.553423,-0.711264,0.433332,0.712912,0.248085,0.655843,-0.757866,-0.002625,0.652364,0.394665,0.657063,0.642201,-0.732597,0.460372,0.501297,0.700888,0.202185,0.683981,0.38432,0.707114,0.593493,-0.737754,0.498245,0.455458,-0.727775,0.026032,0.685293,0.725211,-0.245186,0.643361,0.641102,-0.262856,0.721,-0.669942,-0.232704,0.704947,-0.755974,-0.28663,0.588458,0.543168,-0.716178,0.438185,0.578631,0.397534,0.712119,-0.833155,-0.081088,0.547014,-0.562273,-0.385815,0.731407,0.604358,-0.406537,-0.685171,-0.58095,-0.447981,-0.679525,-0.582781,0.679495,-0.445631,0.534928,0.720389,-0.441389,-0.95349,0.187628,-0.235817,-0.887722,-0.345225,0.304483,0.714835,-0.691824,-0.101596,0.713797,0.686483,0.138615,-0.64214,-0.755394,0.130222,0.730827,-0.671255,-0.123478,-0.634022,-0.556017,-0.5374,0.518418,-0.5674,-0.639729,0.60152,-0.003876,0.798822,-0.725578,0.091189,0.682028,-0.709738,-0.03238,0.703696,-0.63918,-0.476882,0.60329,0.511307,-0.58916,0.625629,0.772301,-0.099673,0.627369,0.060091,0.922971,0.380078,0.050691,0.790826,0.609912,0.029725,0.649495,0.759758,0.003845,-0.902921,-0.429731,-0.046358,-0.787286,0.614795,0.085086,0.955412,-0.282693,0.022797,0.414075,0.90994,0.138066,0.385266,-0.912381,-0.008911,-0.415815,0.909391,0.100009,-0.459883,-0.882321,-0.995819,0.003479,0.09122,-0.170629,-0.159459,0.97232,0.214606,0.597674,0.772454,-0.573321,0.814325,-0.09003,-0.486343,-0.778375,-0.396924,0.301645,-0.858486,0.414655,0.928495,0.358165,0.097842,0.199255,0.608417,-0.768151,-0.031251,0.915403,0.401288,-0.002533,0.738639,0.674062,-0.036988,0.624836,0.779839,0.284555,0.543535,0.789666,0.123661,0.686087,0.71691,0.063082,0.56328,0.823817,-0.413404,0.175939,0.893368,-0.471023,0.714713,0.516953,-0.51619,0.624256,0.586322,-0.09302,-0.899838,-0.426099,-0.136357,-0.791955,0.595111,0.806238,-0.204993,-0.554888,0.412641,-0.007721,0.910825,-0.029237,0.953459,-0.300058,0.82519,0.083041,-0.558641,-0.090182,0.419691,0.903134,-0.040254,0.359478,0.932249,0.12421,0.387799,-0.913327,0.820154,-0.274056,-0.502213,-0.183843,-0.37846,0.907132,-0.209967,-0.479629,0.851955,0.09183,-0.439894,-0.893307,0.83697,0.019166,-0.546892,-0.822504,-0.408979,-0.395184,0.485794,-0.323374,-0.812037,0.726371,-0.53032,-0.437117,-0.607105,-0.793329,-0.045076,-0.765984,0.476119,-0.431898,0.507645,0.230781,-0.830073,-0.430433,0.900967,0.054292,0.828852,0.41438,-0.375835,-0.380596,0.526109,0.76046,0.899594,0.206244,0.38493,0.838801,-0.182806,0.512772,-0.5056,-0.73455,0.452498,-0.63686,0.424421,0.643574,-0.713034,-0.321635,0.622974,-0.44554,0.888943,-0.105991,0.388226,0.918088,-0.079836,0.375988,0.866756,-0.327616,-0.435896,0.832026,-0.343059,0.949736,0.312906,-0.008362,0.921079,0.373943,-0.108402,-0.471114,0.834529,0.285623,0.348155,0.879727,0.32374,0.376629,0.916501,0.134709,-0.463057,0.878811,0.114872,0.917844,0.366497,0.152318,0.94821,0.309122,0.072909,-0.414106,0.748009,-0.518632,0.350475,0.764672,-0.540757,0.350597,0.379345,-0.856227,-0.384075,0.39433,-0.834834,0.885525,0.415754,-0.20719,0.859615,0.159032,-0.485519,-0.27607,-0.397748,-0.874966,0.36961,-0.421613,-0.827998,0.385357,-0.727226,-0.56798,-0.315134,-0.723228,-0.61446,0.819056,-0.300394,-0.488754,0.861232,-0.448897,-0.238166,-0.412488,-0.810175,-0.416456,0.395276,-0.845943,-0.357921,0.401563,-0.905301,-0.138371,-0.430189,-0.881924,-0.192633,0.9017,-0.411237,-0.133213,0.956298,-0.290811,-0.029756,-0.42494,-0.904721,0.029054,0.408826,-0.910672,0.059053,0.423872,-0.869961,0.251869,-0.386273,-0.890286,0.241157,0.956938,-0.287484,0.039857,0.932707,-0.335337,0.132481,0.821833,-0.474837,0.314768,0.341624,-0.747185,0.570055,0.408948,-0.818049,0.40434,0.901395,-0.393811,0.179846,-0.366436,-0.697317,0.615986,-0.259499,-0.857051,0.445021,0.80694,-0.255654,0.532395,0.278817,-0.446822,0.850032,-0.374279,-0.354534,0.856838,-0.372784,0.722831,0.581805,0.330332,0.685629,0.64864,0.327952,0.798547,0.504715,-0.453169,0.780938,0.429823,0.862972,0.346965,0.367199,0.886166,0.384625,0.25837,-0.319041,0.456038,0.830775,0.323099,0.434248,0.840815,0.822596,0.212012,0.527573,-0.332652,-0.052065,-0.941588,0.31193,-0.080782,-0.946654,0.817347,-0.129917,-0.561266,-0.389172,0.043611,0.920103,0.265816,0.007202,0.963988,0.714438,0.010407,0.699606,0.436415,0.897641,-0.061037,0.105716,0.970306,-0.217414,0.258126,0.930021,-0.261483,0.752922,0.655202,-0.061464,0.213477,0.509781,-0.833369,-0.273904,0.266152,-0.924161,-0.278329,0.907041,-0.315836,-0.202277,0.918332,-0.34019,-0.396954,0.551897,-0.733329,0.424543,0.890957,-0.160924,0.730186,0.670034,-0.133488,-0.134953,0.956847,-0.257302,0.533464,0.842128,-0.078616,0.994507,0.100864,-0.027406,-0.094546,0.988617,-0.116794,0.94641,0.319193,0.049043,0.398206,0.889218,0.225043,0.340678,0.898495,0.276803,0.67098,0.729942,0.1301,0.7846,0.60976,0.112003,0.502548,0.863063,0.050295,-0.125278,0.963042,0.23838,-0.177618,0.936552,0.302103,-0.103092,0.992065,0.071749,0.110813,0.144383,0.983276,0.608295,0.148076,0.779748,-0.356792,0.530686,0.768792,0.750328,0.631428,0.195624,0.15247,0.951567,0.266945,0.094943,0.845637,0.525193,0.729087,0.550279,0.406873,0.764,0.643025,-0.052675,0.178594,0.981445,-0.069704,0.167974,0.983673,0.064486,0.764519,0.642445,0.052126,0.778985,0.505356,-0.371136,0.143834,0.816004,-0.559832,0.185278,0.926695,-0.326914,0.76577,0.594653,-0.24485,-0.167364,0.086459,0.982086,0.424604,0.084109,0.901456,0.533769,0.09891,-0.839808,-0.083865,0.105197,-0.990905,-0.549028,0.661122,0.511307,-0.529649,0.814386,0.237037,-0.512894,0.856929,0.050478,-0.504776,0.860591,-0.067415,-0.508316,0.806269,-0.302499,-0.52327,0.632649,-0.570849,-0.54445,0.113163,0.831111,-0.468917,0.143712,-0.871456,0.303629,0.936674,0.174444,-0.370006,0.911679,0.178472,-0.386486,0.877194,0.284768,0.238472,0.922636,0.302988,0.31019,0.946135,-0.092532,-0.386242,0.916684,-0.102329,-0.375042,0.92584,0.046022,0.320231,0.945067,0.065127,0.204535,0.912351,-0.354625,-0.562761,0.758202,-0.329173,-0.449324,0.851527,-0.270119,0.273812,0.927396,-0.254738,-0.488479,0.442915,0.751793,0.123203,0.269234,0.955138,0.111057,0.358592,-0.926847,-0.548906,0.365886,-0.751518,0.848323,0.520646,0.096194,0.800226,0.57149,0.181677,0.848689,0.525193,0.062044,0.856716,0.513474,-0.048006,0.850856,0.471084,-0.232612,0.870022,0.471633,-0.143468,0.658498,0.23661,-0.714377,0.63274,0.324564,0.703024,-0.94467,0.1807,0.27369,-0.066317,-0.381329,0.922025,0.434858,0.369884,0.821009,-0.449904,0.871242,0.196173,-0.733512,-0.459731,-0.500565,0.03122,-0.991791,0.123936,0.9494,0.309946,-0.050356,0.079928,0.727256,-0.681661,-0.515549,0.855342,0.050356,0.289407,0.469253,0.834254,0.955351,0.278603,0.098086,0.211188,0.694296,-0.687979,-0.141209,-0.280618,0.949339,-0.988281,0.056612,0.141545,-0.557421,-0.682119,-0.473251,0.255226,-0.925718,0.279061,-0.430738,0.770867,-0.469222,0.670888,0.36137,-0.647511,0.31782,-0.574602,-0.754173,-0.771752,-0.230476,-0.592669,0.861995,0.462661,0.207099,-0.272561,0.862972,0.425367,-0.415235,-0.062716,0.907529,0.635792,-0.383251,0.669942,-0.422132,0.760826,0.492874,0.765465,0.589709,0.257393,0.594348,0.529405,-0.605304,-0.562517,0.718833,-0.408429,-0.395978,-0.213263,0.893124,0.695151,-0.319407,0.643971,0.414502,-0.441969,-0.795495,-0.718833,-0.313059,-0.620685,-0.527177,0.745933,-0.406964,0.621784,0.507279,-0.596667,0.400891,-0.45378,-0.795801,-0.727012,-0.276437,-0.628498,0.788598,0.553514,0.267739,-0.392132,0.774926,0.495651,-0.411939,-0.202338,0.888424,0.675375,-0.354534,0.646626,-0.579272,0.739372,-0.34312,0.587573,0.622639,-0.516739,0.416486,-0.342021,-0.842311,-0.719382,-0.248726,-0.648518,0.713675,0.583667,0.387249,-0.496536,0.680197,0.539171,-0.48323,-0.315653,0.816584,0.627522,-0.388989,0.674429,-0.411054,0.773125,0.482955,0.780114,0.542558,0.311411,0.656117,0.499557,-0.5656,-0.496658,0.752129,-0.433088,-0.44142,-0.200201,0.87466,0.647389,-0.381848,0.659566,0.432875,-0.465529,-0.771905,-0.695791,-0.273904,-0.66393,-0.452132,0.770257,-0.44969,0.689413,0.46028,-0.559282,0.41316,-0.489669,-0.767754,-0.708243,-0.237892,-0.664632,0.805841,0.507828,0.304483,-0.369488,0.803064,0.467483,-0.467483,-0.160131,0.86935,0.615467,-0.394665,0.682211,-0.526322,0.760735,-0.379742,0.641835,0.595965,-0.482498,0.45967,-0.361431,-0.811182,-0.683798,-0.229469,-0.692618,0.719596,0.555864,0.416089,-0.488693,0.701376,0.518876,-0.523118,-0.297891,0.798486,0.590289,-0.41084,0.694784,-0.431074,0.726676,0.534837,0.762383,0.506455,0.402753,0.690115,0.54265,-0.478774,-0.468703,0.7846,-0.405774,-0.495163,-0.290078,0.818903,0.606677,-0.448195,0.656514,0.482986,-0.407483,-0.774987,-0.653249,-0.226447,-0.722465,-0.434858,0.802057,-0.409345,0.71688,0.50914,-0.476272,0.46556,-0.424909,-0.77633,-0.657613,-0.193945,-0.727928,0.782159,0.478805,0.398663,-0.40495,0.750908,0.521653,-0.507584,-0.250984,0.824213,0.582812,-0.461226,0.668996,-0.460982,0.769402,0.442091,0.721519,0.466201,0.511856,0.801447,0.49736,-0.332041,-0.34547,0.826441,-0.444502,-0.643574,-0.219489,0.733207,0.454054,-0.461592,0.762047,0.579394,-0.382427,-0.719718,-0.536119,-0.115024,-0.836268,-0.441511,0.794366,-0.417096,0.744255,0.586352,-0.319681,0.607349,-0.270211,-0.747032,-0.529801,-0.128727,-0.838282,0.666036,0.545488,0.508682,-0.543565,0.709464,0.448469,-0.608325,-0.296701,0.736106,0.510392,-0.409314,0.756249,0.763726,0.574023,-0.295267,-0.447676,0.789483,-0.419813,-0.591021,0.654012,0.472152,0.693625,0.511643,0.507004,-0.447371,-0.329417,0.831446,0.482498,-0.433821,0.760888,0.641316,-0.262917,-0.720786,-0.425825,-0.081942,-0.901059,-0.142369,0.816095,0.560045,-0.165532,0.922788,0.34788,-0.197699,0.943327,0.266518,-0.17362,0.84341,0.508408,-0.832484,0.517899,0.196722,-0.799585,0.461013,0.384838,-0.140385,0.698233,0.701956,-0.119144,0.667165,0.735313,-0.787988,0.374767,0.488418,-0.192328,-0.885433,-0.423048,-0.189703,-0.784875,0.589862,-0.711905,-0.51149,0.481155,-0.777123,-0.584338,-0.23365,-0.124729,-0.890622,-0.437239,-0.114353,-0.800867,0.587786,-0.223457,0.913358,-0.340312,-0.813807,0.52382,-0.251564,-0.196265,0.930204,-0.310099,-0.102481,0.419111,0.902097,-0.709189,0.205084,0.67449,-0.085391,0.418836,0.904019,-0.193091,0.343303,-0.919156,-0.169378,0.33845,-0.925596,-0.742607,0.189093,-0.642415,-0.084231,-0.4579,0.884976,-0.623859,-0.430342,0.652364,-0.065676,-0.414289,0.907743,-0.160192,-0.449904,-0.878567,-0.746513,-0.35612,-0.561998,-0.132115,-0.425855,-0.895077,0.395611,-0.721427,0.568316,-0.671163,0.094577,0.735221,-0.75103,-0.219489,0.622669,0.362041,-0.825556,0.432844,0.434523,-0.48909,0.756279,-0.523148,0.392743,0.75631,0.875057,0.159886,0.456771,-0.032289,0.867031,0.497147,-0.791314,-0.570605,0.219489,0.516343,-0.856319,-0.008789,-0.701407,-0.371166,-0.608478,0.327525,-0.578265,-0.747185,0.404401,0.191168,0.894345,0.026368,0.843776,0.535997,-0.902646,0.200201,0.380963,-0.691427,-0.4532,0.562548,-0.601794,-0.734397,0.313822,0.522752,-0.385968,0.760063,-0.544572,-0.788995,-0.284371,0.545762,-0.762719,0.346934,-0.222022,-0.507736,-0.832362,0.829585,-0.334361,-0.447157,-0.742882,-0.604297,0.287973,-0.69509,-0.418195,-0.584704,0.328867,-0.586169,-0.74041,0.559099,-0.828333,-0.034669,-0.675527,-0.193518,0.711447,0.384747,-0.79812,0.463637,0.440168,-0.590899,0.676046,-0.544786,0.24073,0.803247,0.832453,0.120609,0.540757,-0.107242,0.783105,0.612537,-0.674703,-0.641713,0.364544,0.553453,-0.711234,0.433332,0.635945,-0.101566,0.764977,-0.590411,-0.055239,0.80517,0.757897,-0.002655,0.652364,-0.712943,0.248085,0.655843,0.732597,0.460402,0.501297,-0.394696,0.657063,0.642201,-0.700888,0.202185,0.683981,0.727775,0.026032,0.685293,0.737754,0.498245,0.455428,-0.38432,0.707114,0.593493,-0.725211,-0.245186,0.643361,0.755974,-0.28663,0.588458,0.669942,-0.232734,0.704978,-0.641102,-0.262856,0.721,-0.543168,-0.716178,0.438185,0.562273,-0.385815,0.731407,0.833155,-0.081088,0.547014,-0.578631,0.397534,0.712119,-0.604358,-0.406537,-0.685171,-0.534928,0.720389,-0.441389,0.582781,0.679495,-0.445631,0.58095,-0.447981,-0.679525,0.887722,-0.345195,0.304483,0.95349,0.187628,-0.235817,-0.713797,0.686483,0.138615,-0.714835,-0.691855,-0.101596,-0.730827,-0.671255,-0.123478,0.64214,-0.755394,0.130222,-0.518418,-0.5674,-0.639729,0.634022,-0.556017,-0.5374,0.725578,0.091189,0.682028,-0.60152,-0.003876,0.798822,0.709738,-0.03238,0.703696,-0.772301,-0.099673,0.627369,-0.511307,-0.58916,0.625629,0.63918,-0.476882,0.60329,-0.050691,0.790826,0.609912,-0.060091,0.922971,0.380078,-0.029725,0.649495,0.759758,-0.003845,-0.902921,-0.429731,0.046358,-0.787286,0.614795,-0.085086,0.955412,-0.282693,-0.022797,0.414075,0.90994,-0.138066,0.385266,-0.912381,0.008911,-0.415815,0.909391,-0.100009,-0.459883,-0.882321,0.995819,0.003479,0.09122,0.573321,0.814325,-0.09003,-0.214606,0.597674,0.772454,0.170629,-0.159459,0.97232,-0.301645,-0.858486,0.414655,0.486343,-0.778375,-0.396924,-0.199255,0.608417,-0.768151,-0.928495,0.358165,0.097842,0.002533,0.738639,0.674062,0.03122,0.915403,0.401288,0.036988,0.624836,0.779839,-0.123661,0.686087,0.71691,-0.284555,0.543535,0.789666,-0.063082,0.56328,0.823817,0.471053,0.714713,0.516953,0.413373,0.175939,0.893368,0.51619,0.624256,0.586322,0.09302,-0.899838,-0.426099,0.136357,-0.791955,0.595111,-0.806238,-0.204993,-0.554888,-0.412641,-0.007721,0.910855,0.029237,0.953459,-0.300058,-0.82519,0.083041,-0.558641,0.090182,0.419691,0.903134,0.040254,0.359478,0.932249,-0.12421,0.387799,-0.913327,-0.820154,-0.274056,-0.502213,0.183843,-0.37846,0.907132,0.209967,-0.479629,0.851955,-0.09183,-0.439894,-0.893307,-0.83697,0.019166,-0.546892,0.822504,-0.408979,-0.395184,0.607105,-0.793329,-0.045076,-0.726371,-0.53032,-0.437117,-0.485794,-0.323374,-0.812037,0.765984,0.476119,-0.431898,-0.507645,0.230781,-0.830073,0.430433,0.900967,0.054292,-0.828852,0.41438,-0.375835,0.380596,0.526109,0.76046,-0.899594,0.206244,0.38493,0.5056,-0.73455,0.452498,-0.838801,-0.182806,0.512772,0.63686,0.424421,0.643574,0.713034,-0.321635,0.622974,0.44554,0.888943,-0.105991,0.435896,0.832026,-0.343059,-0.375988,0.866756,-0.327616,-0.388226,0.918088,-0.079836,-0.921079,0.373943,-0.108402,-0.949736,0.312906,-0.008362,0.471114,0.834529,0.285623,0.463057,0.878811,0.114872,-0.376629,0.916501,0.134709,-0.348155,0.879727,0.32374,-0.94821,0.309122,0.072909,-0.917844,0.366497,0.152318,0.414106,0.748009,-0.518632,0.384075,0.39433,-0.834834,-0.350597,0.379345,-0.856227,-0.350475,0.764672,-0.540757,-0.859615,0.159032,-0.485519,-0.885525,0.415754,-0.20719,0.27607,-0.397748,-0.874966,0.315134,-0.723228,-0.61446,-0.385357,-0.727226,-0.56798,-0.36961,-0.421613,-0.827998,-0.861232,-0.448897,-0.238166,-0.819056,-0.300394,-0.488754,0.412488,-0.810175,-0.416456,0.430189,-0.881924,-0.192633,-0.401563,-0.905301,-0.138371,-0.395276,-0.845943,-0.357921,-0.956298,-0.290811,-0.029756,-0.9017,-0.411237,-0.133213,0.42494,-0.904721,0.029054,0.386273,-0.890286,0.241157,-0.423872,-0.869961,0.251869,-0.408826,-0.910672,0.059053,-0.932707,-0.335337,0.132481,-0.956938,-0.287484,0.039857,-0.821833,-0.474837,0.314768,-0.901395,-0.393811,0.179846,-0.408948,-0.818049,0.40434,-0.341624,-0.747185,0.570055,0.259499,-0.857051,0.445021,0.366436,-0.697317,0.615986,-0.80694,-0.255654,0.532395,-0.278817,-0.446822,0.850032,0.374279,-0.354534,0.856838,0.372784,0.722831,0.581805,0.453169,0.780938,0.429823,-0.327952,0.798547,0.504715,-0.330332,0.685629,0.64864,-0.886166,0.384625,0.25837,-0.862972,0.346965,0.367199,0.319041,0.456038,0.830775,-0.323099,0.434248,0.840815,-0.822596,0.212012,0.527573,0.332652,-0.052065,-0.941588,-0.31193,-0.080782,-0.946654,-0.817347,-0.129917,-0.561266,0.389172,0.043611,0.920103,-0.265816,0.007202,0.963988,-0.714438,0.010407,0.699606,-0.436415,0.897641,-0.061037,-0.752922,0.655202,-0.061464,-0.258126,0.930021,-0.261483,-0.105716,0.970306,-0.217414,-0.213477,0.509781,-0.833369,0.273904,0.266152,-0.924161,0.202277,0.918332,-0.34019,0.278329,0.907041,-0.315836,0.396954,0.551897,-0.733329,-0.730186,0.670034,-0.133488,-0.424543,0.890957,-0.160924,0.134953,0.956847,-0.257302,-0.994507,0.100864,-0.027406,-0.533464,0.842128,-0.078616,0.094546,0.988617,-0.116794,-0.94641,0.319193,0.049043,-0.67098,0.729942,0.1301,-0.340678,0.898495,0.276803,-0.398206,0.889218,0.225043,-0.7846,0.60976,0.112003,-0.502548,0.863063,0.050295,0.177618,0.936552,0.302103,0.125278,0.963042,0.23838,0.103092,0.992065,0.071749,-0.608295,0.148076,0.779748,-0.110813,0.144383,0.983276,0.356792,0.530686,0.768792,-0.750328,0.631428,0.195624,-0.729087,0.550279,0.406873,-0.094943,0.845637,0.525193,-0.15247,0.951567,0.266945,-0.764,0.643025,-0.052675,-0.764519,0.642445,0.052126,-0.167974,0.983673,0.064486,-0.178594,0.981445,-0.069704,-0.778985,0.505356,-0.371136,-0.76577,0.594653,-0.24485,-0.185278,0.926695,-0.326914,-0.143834,0.816004,-0.559832,-0.424604,0.084109,0.901456,0.167364,0.086459,0.982086,-0.533769,0.09891,-0.839808,0.083865,0.105197,-0.990905,0.549028,0.661122,0.511307,0.529649,0.814386,0.237037,0.512894,0.856929,0.050478,0.504776,0.860591,-0.067415,0.508316,0.806269,-0.302499,0.52327,0.632649,-0.570849,0.54445,0.113163,0.831111,0.468917,0.143712,-0.871456,-0.303629,0.936674,0.174444,-0.238472,0.922636,0.302988,0.386486,0.877194,0.284768,0.370006,0.911679,0.178472,-0.31019,0.946135,-0.092532,-0.320231,0.945067,0.065127,0.375042,0.92584,0.046022,0.386242,0.916684,-0.102329,-0.204535,0.912351,-0.354625,-0.273812,0.927396,-0.254738,0.449324,0.851527,-0.270119,0.562761,0.758232,-0.329173,-0.123203,0.269234,0.955138,0.488479,0.442915,0.751793,-0.111057,0.358592,-0.926847,0.548875,0.365886,-0.751518,-0.848323,0.520646,0.096194,-0.800226,0.57149,0.181677,-0.856716,0.513474,-0.048006,-0.848689,0.525193,0.062044,-0.850856,0.471084,-0.232612,-0.870022,0.471633,-0.143468,-0.658498,0.23661,-0.714377,-0.63274,0.324564,0.703024,0.94467,0.1807,0.27369,0.449904,0.871242,0.196173,-0.434858,0.369884,0.821009,0.066317,-0.381329,0.922025,-0.03122,-0.991791,0.123936,0.733512,-0.459731,-0.500565,-0.079928,0.727256,-0.681661,-0.9494,0.309946,-0.050356,0.515549,0.855342,0.050356,-0.211188,0.694296,-0.687979,-0.955351,0.278603,0.098086,-0.289407,0.469253,0.834254,0.141209,-0.280618,0.949339,-0.255226,-0.925718,0.279061,0.557421,-0.682119,-0.473251,0.988281,0.056612,0.141545,0.430738,0.770867,-0.469222,0.771752,-0.230476,-0.592669,-0.31782,-0.574602,-0.754173,-0.670888,0.36137,-0.647511,-0.861995,0.462661,0.207099,-0.635792,-0.383251,0.669942,0.415235,-0.062716,0.907529,0.272561,0.862972,0.425367,0.422132,0.760826,0.492874,0.562517,0.718833,-0.408429,-0.594348,0.529405,-0.605304,-0.765465,0.589709,0.257393,-0.695151,-0.319407,0.643971,0.395978,-0.213263,0.893124,0.718833,-0.313059,-0.620685,-0.414502,-0.441969,-0.795495,0.527177,0.745933,-0.406964,0.727012,-0.276437,-0.628498,-0.400891,-0.45378,-0.795801,-0.621784,0.507279,-0.596667,-0.788598,0.553514,0.267739,-0.675375,-0.354534,0.646626,0.411939,-0.202338,0.888424,0.392132,0.774926,0.495651,0.579272,0.739372,-0.34312,0.719382,-0.248726,-0.648518,-0.416486,-0.342021,-0.842311,-0.587573,0.622639,-0.516739,-0.713675,0.583667,0.387249,-0.627522,-0.388989,0.674429,0.48323,-0.315653,0.816584,0.496536,0.680197,0.539171,0.411054,0.773125,0.482955,0.496658,0.752129,-0.433088,-0.656117,0.499557,-0.5656,-0.780114,0.542558,0.311411,-0.647389,-0.381848,0.659566,0.44142,-0.200201,0.87466,0.695791,-0.273904,-0.66393,-0.432875,-0.465529,-0.771905,0.452132,0.770257,-0.44969,0.708243,-0.237892,-0.664632,-0.41316,-0.489669,-0.767754,-0.689413,0.46028,-0.559282,-0.805841,0.507828,0.304483,-0.615467,-0.394665,0.682211,0.467483,-0.160131,0.86935,0.369488,0.803064,0.467483,0.526322,0.760735,-0.379742,0.683798,-0.229469,-0.692618,-0.45967,-0.361431,-0.811182,-0.641835,0.595965,-0.482498,-0.719596,0.555864,0.416089,-0.590289,-0.41084,0.694784,0.523118,-0.297891,0.798486,0.488693,0.701376,0.518876,0.431074,0.726676,0.534837,0.468703,0.7846,-0.405774,-0.690115,0.54265,-0.478774,-0.762383,0.506455,0.402753,-0.606677,-0.448195,0.656514,0.495163,-0.290078,0.818903,0.653249,-0.226447,-0.722465,-0.482986,-0.407483,-0.774987,0.434858,0.802057,-0.409345,0.657613,-0.193945,-0.727928,-0.46556,-0.424909,-0.77633,-0.71688,0.50914,-0.476272,-0.782159,0.478805,0.398663,-0.582812,-0.461226,0.668996,0.507584,-0.250984,0.824213,0.40495,0.750908,0.521653,0.460982,0.769402,0.442091,0.34547,0.826441,-0.444502,-0.801447,0.49736,-0.332041,-0.721519,0.466201,0.511856,-0.454054,-0.461592,0.762047,0.643574,-0.219489,0.733207,0.536119,-0.115024,-0.836268,-0.579394,-0.382427,-0.719718,0.441511,0.794366,-0.417096,0.529801,-0.128727,-0.838282,-0.607349,-0.270211,-0.747032,-0.744255,0.586352,-0.319681,-0.666036,0.545488,0.508682,-0.510392,-0.409314,0.756249,0.608325,-0.296701,0.736106,0.543565,0.709464,0.448469,-0.763726,0.574023,-0.295267,-0.693625,0.511643,0.507004,0.591021,0.654012,0.472152,0.447676,0.789483,-0.419813,-0.482498,-0.433821,0.760888,0.447371,-0.329417,0.831446,0.425825,-0.081942,-0.901059,-0.641316,-0.262917,-0.720786,-0.165838,-0.901578,-0.399518,-0.1966,-0.921842,-0.333903,-0.173559,-0.807794,-0.56328,-0.141118,-0.787744,-0.599597,0.64568,-0.761162,-0.060701,0.465346,-0.794305,-0.390484,-0.140477,-0.698447,-0.701682,-0.119388,-0.666921,-0.735466,0.637593,-0.631703,-0.440901,-0.102603,0.580004,0.8081,0.445387,0.607868,0.657338,0.583972,0.721397,0.372143,-0.192572,0.887265,0.419111,-0.053926,0.580401,0.812525,-0.124729,0.891812,0.434858,-0.224189,-0.91464,0.336375,0.575518,-0.778008,0.251869,-0.196875,-0.931272,0.306497,0.644978,-0.418134,-0.639607,-0.102084,-0.416547,-0.903348,-0.084994,-0.416181,-0.905271,-0.170171,-0.337321,0.925871,-0.193518,-0.342509,0.91934,0.662404,-0.337291,0.668905,0.490066,-0.738365,-0.46324,-0.051363,-0.889096,-0.454756,-0.044893,-0.913327,-0.404706,-0.159886,0.453719,0.876644,0.665456,0.284188,0.690176,-0.132389,0.428053,0.893979,0.471175,0.721,-0.508042,0.52974,0.80166,-0.276894,-0.810327,0.160924,-0.563402,-0.667379,-0.189184,-0.720267,0.514145,0.629597,-0.582446,-0.520341,-0.520402,-0.677053,-0.76455,-0.010346,-0.644459,0.127781,0.708274,-0.694235,0.65743,0.752953,0.027863,-0.867306,0.41612,-0.273141,0.495621,0.759026,-0.422132,-0.54207,0.578722,-0.609272,-0.318369,0.746055,-0.584826,0.651875,0.166967,-0.739677,0.486801,-0.238685,-0.840236,-0.761528,0.525895,-0.378765,0.634907,0.183691,-0.75042,-0.734886,0.675008,-0.065157,0.643117,0.529893,-0.552751,-0.599475,0.68804,0.408887,0.349132,0.714988,-0.60567,-0.682974,0.716208,-0.143284,0.55565,0.714743,-0.424696,-0.476791,0.601642,-0.640828,-0.807855,0.449355,-0.381298,0.68453,0.717765,0.12714,-0.768242,0.108585,-0.630848,0.528611,0.823634,-0.205298,0.502335,0.690573,-0.52028,-0.581713,-0.379955,-0.719169,-0.800348,0.122593,-0.58681,0.123508,0.807398,-0.576922,-0.854915,0.486648,-0.179601,-0.80874,0.092013,-0.580889,0.836451,0.035035,-0.546861,0.799615,0.484451,-0.354747,-0.541368,-0.231269,-0.808313,0.761345,-0.02942,-0.647633,-0.622761,0.479537,-0.618213,0.513108,0.658315,-0.550707,-0.542131,-0.196722,-0.816919,-0.620899,0.426466,-0.657704,0.509659,0.619678,-0.596789,0.796411,-0.013794,-0.604572,-0.701163,0.269906,-0.659902,-0.745598,0.276437,-0.606342,0.776299,0.173132,-0.606098,0.647023,0.345744,-0.679525,-0.380535,-0.917753,0.113468,-0.633564,0.636555,-0.439711,0.189428,0.973022,0.131474,0.200903,-0.953795,-0.223304,-0.287332,0.828639,0.480331,0.242103,0.824519,0.511399,0.372143,-0.927305,0.039613,-0.285531,-0.958251,0.013001,0.377453,-0.72689,0.573687,0.043916,0.677419,0.734275,-0.269234,0.638081,0.721335,-0.347118,-0.918119,0.191046,0.673666,0.727195,-0.131535,-0.7257,0.673635,0.139744,0.501511,0.613392,-0.610065,-0.647664,0.573809,-0.501206,-0.701773,0.033753,-0.71157,0.784936,-0.112796,-0.60918,0.717124,0.054628,-0.694784,0.50969,-0.657186,-0.555254,-0.643483,-0.555925,-0.526139,-0.618763,0.106693,-0.778252,-0.047945,-0.747459,-0.662526,-0.061892,-0.896207,-0.439253,-0.029756,-0.649586,-0.759697,-0.015503,0.582354,0.812769,-0.003571,0.903928,0.427595,-0.085452,-0.956023,0.280465,-0.022828,-0.411756,-0.910977,-0.138035,-0.382794,0.91345,-0.047792,-0.918821,-0.391705,-0.100131,0.461104,0.881649,-0.476485,-0.253456,-0.841823,0.66979,-0.624409,0.401807,0.962035,-0.010315,0.272652,-0.25605,0.136174,-0.956999,0.982208,-0.090976,-0.164159,0.210364,-0.005951,-0.977569,-0.085299,-0.532334,-0.842189,0.633045,-0.773766,0.022217,0.034211,-0.674764,-0.737236,-0.022919,-0.850887,-0.524796,0.03354,-0.618275,-0.785211,-0.086612,-0.644459,-0.759697,-0.558336,-0.439497,-0.703574,-0.06943,-0.568987,-0.819391,-0.785516,-0.230628,-0.574206,-0.619526,-0.208747,-0.756676,-0.771569,0.007416,-0.636067,-0.074068,0.653066,0.753624,-0.080508,0.872677,0.481552,-0.743584,0.212561,0.6339,-0.913755,0.065737,0.400861,-0.188147,-0.896023,0.402081,-0.903623,0.11005,0.413923,0.090915,-0.416456,-0.904569,0.036683,-0.360179,-0.932127,-0.269021,-0.272378,0.923795,-0.862331,0.310617,0.399762,-0.053438,-0.935514,-0.349132,-0.003723,-0.850185,-0.526414,-0.218451,0.377941,0.899655,-0.886105,-0.046266,0.461135,-0.485397,0.461745,0.742363,-0.74105,0.524033,0.419721,-0.507187,0.325663,0.797906,-0.639332,0.049867,0.767296,-0.53328,-0.236244,0.81225,-0.619556,0.147313,0.770959,-0.835231,-0.423109,0.351146,-0.576586,-0.478805,0.661977,-0.837733,-0.140782,-0.527573,-0.690939,-0.660268,0.29429,-0.447035,0.492477,0.746727,-0.135746,0.046175,0.989654,-0.729881,0.057466,-0.681143,-0.633442,-0.613086,-0.47203,-0.910916,-0.380047,0.160466,-0.375988,-0.866665,0.32786,-0.388012,-0.91821,0.079257,-0.906308,-0.421339,0.032319,0.328501,-0.873592,0.35902,0.283486,-0.95468,0.090487,-0.89404,-0.43791,-0.09415,-0.376476,-0.916501,-0.135197,-0.348033,-0.879879,-0.323496,-0.886776,-0.416974,-0.199316,0.294259,-0.950163,-0.102756,0.350719,-0.88525,-0.305429,-0.967925,-0.060671,0.243721,-0.351573,-0.375408,0.85757,-0.349986,-0.767571,0.536912,-0.908475,-0.314158,0.275521,0.567431,-0.255409,0.782769,0.388501,-0.684133,0.617237,-0.956481,0.264077,0.123905,-0.385357,0.729209,0.565416,-0.371075,0.42024,0.828028,-0.981903,0.101718,0.159581,0.432997,0.610431,0.663198,0.570421,0.224799,0.789972,-0.918699,0.392468,0.043825,-0.401471,0.905393,0.138035,-0.395276,0.846095,0.357585,-0.921903,0.3708,0.112033,0.267312,0.955504,0.124607,0.349101,0.845302,0.404431,-0.941679,0.321146,-0.100314,-0.423811,0.8699,-0.252174,-0.408673,0.910733,-0.059114,-0.910855,0.409314,-0.0524,0.332743,0.909238,-0.250069,0.265572,0.962645,-0.052492,0.418043,0.837001,-0.352977,-0.409528,0.817774,-0.404309,-0.341655,0.74984,-0.566546,0.531419,0.679891,-0.505295,-0.970519,0.211158,-0.116092,-0.952025,0.233772,-0.197394,-0.279214,0.445967,-0.850368,0.616504,0.369701,-0.69512,-0.952361,0.14655,-0.267403,-0.893246,-0.350261,-0.281747,-0.32783,-0.798456,-0.504898,-0.330271,-0.687185,-0.647023,-0.934263,-0.22306,-0.278146,0.431959,-0.733512,-0.524705,0.513077,-0.597308,-0.616352,-0.323832,-0.43495,-0.840175,-0.968444,-0.037935,-0.246315,0.558794,-0.412,-0.719687,-0.30961,0.086276,0.946928,-0.950346,0.031373,0.30958,0.552507,0.015381,0.833338,-0.264809,-0.008148,-0.964263,-0.939085,0.052828,-0.339518,0.656789,-0.010376,-0.75396,0.622883,-0.774194,0.112217,-0.259102,-0.927671,0.268746,-0.109531,-0.970214,0.216041,0.934996,-0.350169,0.05591,-0.134281,-0.936979,-0.32252,0.676992,-0.493637,-0.545854,-0.974517,-0.169958,0.146275,-0.959319,-0.238716,0.150609,-0.859828,-0.439528,-0.259774,0.7228,-0.68981,-0.040681,-0.426435,-0.890683,0.157476,-0.993255,-0.092318,0.070101,0.248177,-0.965789,0.075014,-0.534623,-0.840907,0.083621,-0.996918,-0.073794,0.026154,0.806513,-0.591083,-0.011475,-0.344249,-0.897671,-0.275033,-0.400037,-0.886319,-0.233131,0.395245,-0.911496,-0.11359,-0.50325,-0.862667,-0.050172,0.676412,-0.736503,0.001495,-0.975555,-0.129368,-0.177526,-0.98938,-0.086337,-0.116825,-0.99704,-0.0618,-0.045625,0.505448,-0.852687,0.131962,-0.250435,-0.916807,0.311014,-0.898282,-0.364483,0.245369,0.704001,-0.668081,-0.240883,-0.094241,-0.844447,-0.527238,-0.152776,-0.951689,-0.266274,0.665944,-0.730522,-0.151006,0.643178,-0.765404,-0.020386,-0.168004,-0.983734,-0.063387,-0.178503,-0.981597,0.067537,0.648122,-0.757622,0.076601,0.645955,-0.714957,0.267434,-0.185461,-0.926695,0.326792,-0.143651,-0.81457,0.561968,0.63976,-0.669179,0.377941,0.430128,-0.866054,0.254707,-0.237617,-0.969115,0.065523,-0.219886,-0.967437,-0.125095,0.478103,-0.854152,-0.204474,-0.867275,-0.477554,-0.140416,-0.863186,-0.449873,-0.229102,-0.871059,-0.491104,-0.000275,-0.863826,-0.501144,-0.051332,-0.865932,-0.470748,0.168798,-0.884426,-0.458022,0.089297,-0.665975,-0.74572,-0.018281,-0.662191,-0.746635,-0.063173,-0.238472,-0.922788,-0.302561,-0.904111,-0.349345,-0.24601,-0.934996,-0.338237,-0.106601,-0.304239,-0.93646,-0.174444,-0.320414,-0.944975,-0.065432,-0.93231,-0.357616,-0.053743,-0.929411,-0.368664,0.015381,-0.310312,-0.946104,0.09241,-0.273629,-0.927213,0.255654,-0.901791,-0.416333,0.115665,-0.810266,-0.520218,0.269814,-0.204443,-0.91232,0.354686,-0.150761,-0.912168,0.380993,-0.813349,-0.533982,0.230811,-0.68685,-0.675008,-0.269356,-0.111881,-0.901364,-0.418317,0.616443,-0.774712,-0.140721,0.518326,-0.84872,-0.104617,0.525529,-0.845973,0.090091,0.518235,-0.854976,-0.020661,0.494888,-0.854305,0.158757,0.531571,-0.82696,0.183111,0.42494,-0.849117,-0.313608,0.533891,-0.786554,0.310251,-0.668813,-0.097629,-0.736961,0.708762,-0.694845,0.121769,0.926267,-0.364544,0.09537,-0.248787,0.474899,-0.844111,0.877102,-0.293405,-0.38023,0.080966,0.227271,-0.970428,-0.325785,-0.330027,-0.885952,0.528489,-0.79754,-0.290872,-0.16068,-0.405652,-0.899777,0.573229,-0.811335,-0.114444,0.63741,-0.717307,0.28132,-0.529923,-0.101016,-0.841975,0.965697,-0.129032,-0.225227,0.169988,0.119327,-0.978179,-0.287088,0.284982,-0.914518,0.968749,-0.109653,0.222419,-0.692953,-0.466567,0.549638,0.384625,-0.821375,0.421155,0.725852,-0.659627,0.194922,-0.868618,-0.014466,0.495224,0.216376,-0.917295,-0.334239,-0.812464,-0.578112,-0.075259,-0.990783,-0.125004,-0.052095,0.619922,-0.697043,-0.360302,-0.851283,-0.211646,0.480087,0.832545,-0.533616,0.148625,0.734214,-0.541704,-0.409192,-0.952422,-0.294992,-0.076266,0.37672,-0.831874,-0.407453,-0.695853,-0.705313,-0.135075,-0.597369,-0.628101,0.498581,0.526139,-0.772423,0.355632,-0.628285,-0.604938,0.489151,0.488907,-0.797479,0.353496,0.807092,-0.570849,0.15067,-0.863491,-0.177587,0.47203,0.342967,-0.844569,-0.411115,-0.72512,-0.672964,-0.145817,-0.963836,-0.252205,-0.085726,0.712882,-0.570391,-0.40791,-0.590136,-0.681753,0.432295,0.53444,-0.80282,0.264229,0.865963,-0.489425,0.102542,-0.844172,-0.322459,0.428205,0.415326,-0.782952,-0.463088,-0.681356,-0.673818,-0.285806,-0.924467,-0.299356,-0.235939,0.802087,-0.473312,-0.364116,-0.90817,-0.203314,0.365825,0.803827,-0.541948,0.245155,0.708884,-0.583087,-0.396802,-0.966369,-0.228431,-0.117985,0.350108,-0.844935,-0.404279,-0.727103,-0.661702,-0.182745,-0.633778,-0.614277,0.470077,0.490768,-0.791498,0.364208,-0.691885,-0.555712,0.460921,0.415723,-0.823023,0.387005,0.764977,-0.609058,0.209296,-0.901944,-0.127232,0.41261,0.286874,-0.876492,-0.386547,-0.77224,-0.611988,-0.170507,-0.971129,-0.171514,-0.165654,0.693045,-0.638722,-0.334178,-0.643635,-0.656514,0.393292,0.484817,-0.820246,0.303476,0.834529,-0.529923,0.150609,-0.880734,-0.279,0.382641,0.398389,-0.800165,-0.448317,-0.697958,-0.647267,-0.306375,-0.926084,-0.255837,-0.277291,0.793176,-0.51381,-0.326792,-0.921995,-0.205725,0.327982,0.786248,-0.580798,0.210791,0.737541,-0.55681,-0.382061,-0.956298,-0.196875,-0.216071,0.361614,-0.8034,-0.473006,-0.723594,-0.628346,-0.285562,-0.67452,-0.634205,0.377789,0.451521,-0.822596,0.345531,-0.699118,-0.61034,0.372387,0.416791,-0.842647,0.340861,0.758232,-0.612323,0.223792,-0.932585,-0.17362,0.316385,0.328257,-0.828761,-0.453169,-0.746239,-0.60509,-0.277383,-0.963408,-0.16596,-0.210456,0.712851,-0.59273,-0.374798,-0.966399,-0.172765,0.190191,0.681509,-0.661946,0.31196,0.748558,-0.620533,-0.233589,-0.915128,-0.140233,-0.377941,0.363109,-0.847957,-0.38609,-0.717765,-0.581317,-0.383221,-0.773797,-0.601917,0.19718,0.32664,-0.883816,0.33488,-0.698416,-0.697684,0.159368,0.426893,-0.861263,0.275582,0.744499,-0.605823,0.280435,-0.931272,-0.301584,0.204291,0.457442,-0.797632,-0.393017,-0.647511,-0.659566,-0.381664,-0.896512,-0.243782,-0.369884,0.814631,-0.527879,-0.24012,0.786767,-0.571886,-0.232154,-0.918882,-0.371319,-0.133183,-0.942595,-0.321543,0.089816,0.703116,-0.645985,0.297067,0.406323,-0.824885,-0.392926,-0.550951,-0.759575,-0.345622,-0.700736,-0.710654,0.062227,0.362835,-0.89935,0.243843,0.173589,-0.807825,-0.56325,0.1966,-0.921842,-0.333903,0.165838,-0.901578,-0.399518,0.141118,-0.787744,-0.599597,-0.465346,-0.794305,-0.390484,-0.64568,-0.761162,-0.060701,0.119388,-0.666921,-0.735466,0.140477,-0.698447,-0.701682,-0.637593,-0.631703,-0.440901,-0.583972,0.721397,0.372143,-0.445387,0.607868,0.657338,0.102603,0.580004,0.8081,0.192572,0.887265,0.419111,0.053926,0.580401,0.812525,0.124729,0.891812,0.434858,-0.575518,-0.778008,0.251869,0.224189,-0.91464,0.336375,0.196875,-0.931272,0.306497,-0.645009,-0.418134,-0.639607,0.102084,-0.416547,-0.903348,0.084994,-0.416181,-0.905271,0.170171,-0.337321,0.925871,0.193518,-0.342509,0.91934,-0.662404,-0.337291,0.668905,-0.490066,-0.738365,-0.46324,0.051363,-0.889096,-0.454756,0.044893,-0.913327,-0.404706,-0.665456,0.284188,0.690176,0.159886,0.453719,0.876644,0.132389,0.428053,0.893979,0.810327,0.160924,-0.563402,-0.52974,0.80166,-0.276894,-0.471175,0.721,-0.508042,0.667379,-0.189184,-0.720267,-0.514145,0.629597,-0.582446,0.520341,-0.520402,-0.677053,-0.127781,0.708274,-0.694235,0.76455,-0.010346,-0.644459,0.867306,0.41612,-0.273141,-0.65743,0.752953,0.027863,0.54207,0.578722,-0.609272,-0.495621,0.759026,-0.422101,-0.486801,-0.238685,-0.840236,-0.651906,0.166967,-0.739677,0.318369,0.746055,-0.584826,0.761528,0.525895,-0.378765,0.734886,0.675008,-0.065157,-0.634907,0.183691,-0.75042,0.599475,0.68804,0.408887,-0.643117,0.529893,-0.552751,0.682974,0.716208,-0.143284,-0.349132,0.714988,-0.60567,0.807855,0.449355,-0.381298,0.476791,0.601642,-0.640828,-0.55565,0.714713,-0.424696,-0.68453,0.717765,0.12714,0.768242,0.108585,-0.630848,-0.528611,0.823634,-0.205298,-0.502335,0.690573,-0.52028,0.581713,-0.379955,-0.719169,-0.123478,0.807398,-0.576922,0.800348,0.122593,-0.58681,-0.836451,0.035035,-0.546861,0.80874,0.092013,-0.580889,0.854915,0.486648,-0.179601,-0.799615,0.484451,-0.354747,-0.761345,-0.02942,-0.647633,0.541368,-0.231269,-0.808313,-0.513108,0.658315,-0.550707,0.622761,0.479537,-0.618213,-0.509659,0.619678,-0.596789,0.620899,0.426466,-0.657704,0.542131,-0.196722,-0.816919,-0.796411,-0.013794,-0.604572,-0.776299,0.173132,-0.606098,0.745598,0.276437,-0.606342,0.701163,0.269906,-0.659902,-0.647023,0.345744,-0.679525,-0.189428,0.973022,0.131474,0.633564,0.636555,-0.439711,0.380535,-0.917753,0.113468,-0.200903,-0.953795,-0.223304,-0.372143,-0.927305,0.039613,-0.242103,0.824519,0.511399,0.287332,0.828639,0.480331,0.285531,-0.958251,0.013001,-0.043886,0.677419,0.734245,-0.377453,-0.72689,0.573687,0.347118,-0.918119,0.191076,0.269234,0.638081,0.721335,0.7257,0.673635,0.139744,-0.673696,0.727195,-0.131535,0.647664,0.573809,-0.501206,-0.501511,0.613392,-0.610065,-0.784936,-0.112796,-0.60918,0.701773,0.033753,-0.71157,0.643483,-0.555925,-0.526139,-0.50969,-0.657186,-0.555254,-0.717124,0.054628,-0.694784,0.618763,0.106693,-0.778252,0.061892,-0.896207,-0.439253,0.047945,-0.747459,-0.662526,0.029756,-0.649586,-0.759697,0.015503,0.582354,0.812769,0.003571,0.903928,0.427595,0.085452,-0.956023,0.280465,0.022828,-0.411756,-0.910977,0.138035,-0.382794,0.91345,0.047792,-0.918821,-0.391705,0.100131,0.461104,0.881649,-0.962035,-0.010315,0.272652,-0.66979,-0.624409,0.401807,0.476485,-0.253456,-0.841823,0.25605,0.136174,-0.956999,-0.210364,-0.005951,-0.977569,-0.982208,-0.090976,-0.164159,-0.633045,-0.773766,0.022217,0.085299,-0.532334,-0.842189,0.022919,-0.850887,-0.524796,-0.034211,-0.674764,-0.737236,-0.03354,-0.618275,-0.785211,0.558336,-0.439497,-0.703574,0.086612,-0.644459,-0.759667,0.06943,-0.568987,-0.819391,0.619526,-0.208747,-0.756676,0.785516,-0.230628,-0.574206,0.771569,0.007416,-0.636067,0.074068,0.653066,0.753624,0.080508,0.872677,0.481552,0.743584,0.212561,0.6339,0.913755,0.065737,0.400861,0.188147,-0.896023,0.402081,0.903623,0.11005,0.413923,-0.090915,-0.416456,-0.904569,-0.036683,-0.360179,-0.932127,0.269021,-0.272378,0.923795,0.862331,0.310617,0.399762,0.053438,-0.935514,-0.349132,0.003723,-0.850185,-0.526414,0.218451,0.377941,0.899655,0.886105,-0.046266,0.461135,0.507187,0.325663,0.797906,0.74105,0.524033,0.419721,0.485397,0.461745,0.742363,0.639332,0.049867,0.767296,0.53328,-0.236244,0.81225,0.619556,0.147313,0.770959,0.835231,-0.423109,0.351146,0.576586,-0.478805,0.661977,0.837733,-0.140782,-0.527573,0.690939,-0.660268,0.29429,0.135746,0.046175,0.989654,0.447035,0.492477,0.746727,0.729881,0.057466,-0.681143,0.633442,-0.613086,-0.47203,0.388012,-0.91821,0.079257,0.375988,-0.866665,0.32786,0.910916,-0.380047,0.160466,0.906308,-0.421339,0.032319,-0.283486,-0.95468,0.090487,-0.328501,-0.873592,0.35902,0.348033,-0.879879,-0.323496,0.376476,-0.916501,-0.135197,0.89404,-0.43791,-0.09415,0.886776,-0.416974,-0.199316,-0.350719,-0.88525,-0.305429,-0.294259,-0.950163,-0.102756,0.349986,-0.767571,0.536912,0.351573,-0.375408,0.85757,0.967925,-0.060671,0.243721,0.908475,-0.314158,0.275521,-0.388501,-0.684133,0.617237,-0.567431,-0.255379,0.782769,0.371075,0.42024,0.828028,0.385357,0.729209,0.565416,0.956481,0.264077,0.123905,0.981903,0.101718,0.159581,-0.570421,0.224799,0.789972,-0.432997,0.610431,0.663198,0.395276,0.846095,0.357585,0.401471,0.905393,0.138035,0.918699,0.392468,0.043825,0.921903,0.3708,0.112033,-0.349101,0.845302,0.404431,-0.267312,0.955504,0.124607,0.408673,0.910733,-0.059114,0.423811,0.8699,-0.252174,0.941679,0.321146,-0.100314,0.910855,0.409314,-0.0524,-0.265572,0.962645,-0.052492,-0.332743,0.909238,-0.250069,0.341655,0.74984,-0.566546,0.409528,0.817774,-0.404309,-0.418043,0.837001,-0.352977,-0.531419,0.679891,-0.505295,0.952025,0.233772,-0.197394,0.970519,0.211158,-0.116092,0.279214,0.445967,-0.850368,-0.616504,0.369701,-0.69512,0.952361,0.14655,-0.267403,0.330271,-0.687185,-0.647023,0.32783,-0.798456,-0.504898,0.893246,-0.350261,-0.281747,0.934263,-0.22306,-0.278146,-0.513077,-0.597308,-0.616352,-0.431959,-0.733512,-0.524705,0.323832,-0.43495,-0.840175,0.968444,-0.037935,-0.246315,-0.558794,-0.412,-0.719687,0.30961,0.086276,0.946928,0.950346,0.031373,0.30958,-0.552507,0.015381,0.833338,0.264809,-0.008148,-0.964263,0.939085,0.052828,-0.339518,-0.656789,-0.010376,-0.75396,0.109531,-0.970214,0.216041,0.259102,-0.927671,0.268746,-0.622883,-0.774194,0.112217,-0.934996,-0.350169,0.05591,0.134281,-0.936979,-0.32252,-0.676992,-0.493637,-0.545854,0.959319,-0.238716,0.150609,0.974517,-0.169958,0.146275,0.859828,-0.439528,-0.259774,0.426435,-0.890683,0.157476,-0.7228,-0.68981,-0.040681,0.993255,-0.092318,0.070101,0.534623,-0.840907,0.083621,-0.248177,-0.965789,0.075014,0.996918,-0.073794,0.026154,0.400037,-0.886319,-0.233131,0.344249,-0.897671,-0.275033,-0.806513,-0.591083,-0.011475,-0.395245,-0.911496,-0.11359,0.50325,-0.862667,-0.050172,-0.676412,-0.736503,0.001495,0.98938,-0.086337,-0.116825,0.975555,-0.129368,-0.177526,0.99704,-0.0618,-0.045625,0.250435,-0.916807,0.311014,-0.505448,-0.852687,0.131962,0.898282,-0.364483,0.245369,0.152776,-0.951689,-0.266274,0.094241,-0.844447,-0.527238,-0.704001,-0.668081,-0.240883,-0.665944,-0.730522,-0.151006,0.178503,-0.981597,0.067537,0.168004,-0.983734,-0.063387,-0.643178,-0.765404,-0.020386,-0.648122,-0.757622,0.076601,0.143651,-0.81457,0.561968,0.185461,-0.926695,0.326792,-0.645955,-0.714957,0.267434,-0.63976,-0.669179,0.377941,0.237617,-0.969115,0.065523,-0.430128,-0.866054,0.254707,0.219886,-0.967437,-0.125095,-0.478103,-0.854152,-0.204474,0.867275,-0.477554,-0.140416,0.863186,-0.449873,-0.229102,0.871059,-0.491104,-0.000275,0.863826,-0.501144,-0.051332,0.865932,-0.470748,0.168798,0.884426,-0.458022,0.089297,0.665975,-0.74572,-0.018281,0.662191,-0.746635,-0.063173,0.934996,-0.338206,-0.106601,0.904111,-0.349345,-0.24601,0.238472,-0.922788,-0.302561,0.304239,-0.93646,-0.174444,0.929411,-0.368664,0.015381,0.93231,-0.357616,-0.053743,0.320414,-0.944975,-0.065432,0.310312,-0.946104,0.09241,0.810266,-0.520218,0.269814,0.901791,-0.416333,0.115665,0.273629,-0.927213,0.255654,0.204443,-0.91232,0.354686,0.813349,-0.533982,0.230811,0.150761,-0.912168,0.380993,0.68685,-0.675008,-0.269356,0.111881,-0.901364,-0.418317,-0.616443,-0.774712,-0.140721,-0.518326,-0.84872,-0.104617,-0.518235,-0.854976,-0.020661,-0.525529,-0.845973,0.090091,-0.494888,-0.854305,0.158757,-0.531571,-0.82696,0.183111,-0.42494,-0.849117,-0.313608,-0.533891,-0.786554,0.310251,-0.926267,-0.364544,0.09537,-0.708762,-0.694845,0.121769,0.668813,-0.097629,-0.736961,0.248787,0.474899,-0.844111,-0.080966,0.227271,-0.970428,-0.877102,-0.293405,-0.38023,-0.528489,-0.79754,-0.290872,0.325785,-0.330027,-0.885952,-0.63741,-0.717307,0.28132,-0.573229,-0.811335,-0.114444,0.16068,-0.405652,-0.899777,0.529923,-0.101016,-0.841975,0.287088,0.284982,-0.914518,-0.169988,0.119327,-0.978179,-0.965697,-0.129032,-0.225227,-0.968749,-0.109653,0.222419,-0.725852,-0.659627,0.194922,-0.384625,-0.821375,0.421155,0.692953,-0.466567,0.549638,0.868618,-0.014466,0.495224,0.990783,-0.125004,-0.052095,0.812464,-0.578112,-0.075259,-0.216376,-0.917295,-0.334239,-0.619922,-0.697043,-0.360302,-0.734214,-0.541704,-0.409192,-0.832545,-0.533616,0.148625,0.851283,-0.211646,0.480087,0.952422,-0.294992,-0.076266,0.695853,-0.705313,-0.135075,-0.37672,-0.831874,-0.407453,-0.526139,-0.772423,0.355632,0.597369,-0.628101,0.498581,-0.807092,-0.570849,0.15067,-0.488907,-0.797479,0.353496,0.628285,-0.604938,0.489151,0.863491,-0.177587,0.47203,0.963836,-0.252205,-0.085726,0.72512,-0.672964,-0.145817,-0.342967,-0.844569,-0.411115,-0.712882,-0.570391,-0.40791,-0.865963,-0.489425,0.102542,-0.53444,-0.80282,0.264229,0.590136,-0.681753,0.432295,0.844172,-0.322459,0.428205,0.924467,-0.299356,-0.235939,0.681356,-0.673818,-0.285806,-0.415326,-0.782952,-0.463088,-0.802087,-0.473312,-0.364116,-0.708884,-0.583087,-0.396802,-0.803827,-0.541948,0.245155,0.90817,-0.203314,0.365825,0.966369,-0.228431,-0.117985,0.727103,-0.661702,-0.182745,-0.350108,-0.844935,-0.404279,-0.490768,-0.791498,0.364208,0.633778,-0.614277,0.470077,-0.764977,-0.609058,0.209296,-0.415723,-0.823023,0.387005,0.691885,-0.555712,0.460921,0.901944,-0.127232,0.41261,0.971129,-0.171514,-0.165654,0.77224,-0.611988,-0.170507,-0.286874,-0.876492,-0.386547,-0.693045,-0.638722,-0.334178,-0.834529,-0.529923,0.150609,-0.484817,-0.820246,0.303476,0.643635,-0.656514,0.393292,0.880734,-0.279,0.382641,0.926084,-0.255837,-0.277291,0.697958,-0.647267,-0.306375,-0.398389,-0.800165,-0.448317,-0.793176,-0.51381,-0.326792,-0.737541,-0.55681,-0.382061,-0.786248,-0.580798,0.210791,0.921995,-0.205725,0.327982,0.956298,-0.196875,-0.216071,0.723594,-0.628346,-0.285562,-0.361614,-0.8034,-0.473006,-0.451521,-0.822596,0.345531,0.67452,-0.634205,0.377789,-0.758232,-0.612323,0.223792,-0.416791,-0.842647,0.340861,0.699118,-0.61034,0.372387,0.932585,-0.17362,0.316385,0.963408,-0.16596,-0.210456,0.746239,-0.60509,-0.277383,-0.328257,-0.828761,-0.453169,-0.712851,-0.59273,-0.374798,-0.748558,-0.620533,-0.233589,-0.681509,-0.661946,0.31196,0.966399,-0.172765,0.190191,0.915128,-0.140233,-0.377941,0.717765,-0.581317,-0.383221,-0.363109,-0.847957,-0.38609,-0.32664,-0.883816,0.33488,0.773797,-0.601917,0.19718,-0.744499,-0.605823,0.280435,-0.426893,-0.861263,0.275582,0.698416,-0.697684,0.159368,0.931272,-0.301584,0.204291,0.896512,-0.243782,-0.369884,0.647511,-0.659566,-0.381664,-0.457442,-0.797632,-0.393017,-0.814631,-0.527879,-0.24012,0.942595,-0.321543,0.089816,0.918882,-0.371319,-0.133183,-0.786767,-0.571886,-0.232154,-0.703116,-0.645985,0.297067,0.550951,-0.759575,-0.345622,-0.406323,-0.824885,-0.392926,-0.362835,-0.89935,0.243843,0.700736,-0.710654,0.062227,-0.600787,0.577013,-0.55324,-0.600787,-0.577013,-0.55324,-0.926084,-0.269265,-0.264229,-0.926084,0.269265,-0.264229,-0.926084,-0.269265,0.264229,-0.600787,-0.577013,0.55324,-0.600787,0.577013,0.55324,-0.926084,0.269265,0.264229,0.55327,-0.577837,-0.599963,0.55327,0.577837,-0.599963,0.891171,0.329936,-0.311319,0.891171,-0.329936,-0.311319,0.891171,0.329936,0.311319,0.553301,0.577837,0.599933,0.553301,-0.577837,0.599933,0.891171,-0.329936,0.311319,-0.591632,0.580309,-0.559618,-0.039277,0.707083,-0.705985,-0.039277,-0.707083,-0.705985,-0.591632,-0.580309,-0.559618,-0.039277,-0.707083,0.705985,-0.039277,0.707083,0.705985,-0.591632,0.580309,0.559618,-0.591632,-0.580309,0.559618,-0.03827,0.721976,-0.690848,-0.03827,-0.721976,-0.690848,-0.03827,0.721976,0.690848,-0.03827,-0.721976,0.690848,-0.03827,0.721671,-0.691122,-0.03827,-0.721671,-0.691122,-0.03827,-0.721671,0.691122,-0.03827,0.721671,0.691122,-0.039277,0.707083,-0.706015,-0.039277,-0.707083,0.706015,-0.039277,0.707083,0.706015,-0.029542,0.70397,-0.709586,-0.029542,-0.70397,-0.709586,-0.029542,-0.70397,0.709586,-0.029542,0.70397,0.709586,-0.045412,0.711539,-0.701132,0,0.688589,-0.72512,0,-0.688589,-0.72512,-0.045412,-0.711539,-0.701132,0,-0.688589,0.72512,0,0.688589,0.72512,-0.045412,0.711539,0.701132,-0.045412,-0.711539,0.701132,-0.707083,0.707083,0,-0.707083,-0.707083,0,-0.718894,-0.69509,-0.002411,-0.715903,-0.697592,0.028504,-0.715903,-0.697592,-0.028504,-0.718894,-0.69509,0.002411,-0.711875,-0.702261,0,-0.701163,-0.712973,0,-0.711875,0.702261,0,-0.718894,0.69509,-0.002411,-0.715903,0.697592,0.028504,-0.701163,0.712973,0,-0.715903,0.697592,-0.028504,-0.718894,0.69509,0.002411,0.702475,-0.711692,0,0.695791,-0.718223,0.002289,0.698477,-0.714927,0.031159,0.694418,-0.719535,0,0.698477,-0.714927,-0.031159,0.695791,-0.718223,-0.002289,0.695791,0.718223,0.002289,0.698477,0.714927,0.031159,0.698477,0.714927,-0.031159,0.695791,0.718223,-0.002319,0.702475,0.711692,0,0.694418,0.719535,0,-0.00058,-0.999969,0,-0.001068,-0.999084,0.042634,-0.001068,-0.999084,-0.042634,-0.001068,0.999084,0.042634,-0.00058,0.999969,0,-0.001068,0.999084,-0.042634,-0.001068,-0.999115,0.04181,-0.001068,-0.999115,-0.04181,-0.001068,0.999115,0.04181,-0.001068,0.999115,-0.04181,0,0.718436,-0.695578,-0.318003,0.898312,-0.30311,0,0.718436,0.695578,-0.318003,0.898312,0.30311,0,0.999969,-0.001007,-0.000702,0.999969,-0.000702,-0.000946,0.999969,0,-0.000702,0.999969,0.000702,0,0.999969,0.001007,-0.724601,-0.001465,-0.689138,0,-3.1e-05,-1,0,-3.1e-05,1,-0.724601,-0.001465,0.689138,-0.708121,0.706076,0,-0.999969,-0.002075,0,-0.025605,0.709037,-0.704672,-0.025605,-0.709067,-0.704672,-0.025605,-0.709067,0.704672,-0.025605,0.709067,0.704672,-0.31663,-0.899441,-0.301126,-0.705741,-0.708457,0,-0.58327,-0.579608,-0.569048,-0.31663,-0.899441,0.301126,-0.58327,-0.579608,0.569048,0,-0.718955,-0.695029,0,-0.702017,-0.712149,0,-0.718955,0.695029,0,-0.702017,0.712149,-0.584857,0.577807,-0.569231,-0.708457,0.705741,0,-0.584857,0.577807,0.569231,0,0.700613,-0.713492,0,0.700613,0.713492,-0.724082,-0.001129,-0.689688,-0.724082,-0.001129,0.689688,-0.999969,-0.001617,0,-0.999969,-0.001923,0,-0.716178,-0.001373,-0.697897,-0.716178,-0.001373,0.697897,0,0,-0.999969,-0.204291,-0.005799,-0.978881,-0.158422,-0.003235,-0.987335,-0.15125,-0.000549,-0.988495,-0.207862,-9.2e-05,-0.978149,-0.15125,-0.000549,0.988495,-0.158422,-0.003235,0.987335,-0.204291,-0.005799,0.978881,-0.207862,-9.2e-05,0.978149,-0.173833,-0.042238,-0.983856,-0.159825,-0.032075,-0.986602,-0.159825,-0.032075,0.986602,-0.173833,-0.042238,0.983856,-0.118229,-0.103671,-0.987548,-0.151402,-0.110446,-0.982269,-0.151402,-0.110446,0.982269,-0.118198,-0.103671,0.987548,0,-0.009888,-0.999939,-0.23545,-0.008667,-0.971831,-0.239692,-6.1e-05,-0.970824,-0.239692,-6.1e-05,0.970824,-0.23545,-0.008667,0.971831,0,-0.009888,0.999939,0,-0.061678,-0.998077,-0.199713,-0.055696,-0.97824,-0.199713,-0.055696,0.97824,0,-0.061678,0.998077,0,-0.12302,-0.992401,-0.137364,-0.116977,-0.983581,-0.137364,-0.116977,0.983581,0,-0.12302,0.992401,-0.181707,-0.014405,-0.983215,-0.115787,-0.002167,-0.993255,-0.115787,-0.002167,0.993255,-0.181707,-0.014405,0.983215,-0.994263,-0.106693,0,-0.999603,-0.027497,0,-0.318369,-0.073916,-0.945067,-0.318369,-0.073916,0.945067,-0.974273,-0.225349,0,-0.428724,-0.263619,-0.864101,-0.428724,-0.263619,0.864101,-0.87878,-0.477218,0,0,-0.745781,-0.666158,-0.239601,-0.970855,0,-0.206854,-0.714743,-0.66805,0,-0.745781,0.666158,-0.206854,-0.714743,0.66805,-0.227577,-0.50383,-0.833247,-0.415357,-0.909635,0,-0.235694,-0.971801,0,-0.126804,-0.458174,-0.879757,-0.227577,-0.50383,0.833247,-0.126804,-0.458174,0.879757,-0.680685,-0.732566,0,-0.240394,-0.675588,-0.696951,-0.149052,-0.9888,0,-0.240394,-0.675588,0.696951,-0.095187,-0.12595,-0.987426,-0.080172,-0.129673,-0.988281,-0.095187,-0.12595,0.987426,-0.080172,-0.129673,0.988281,-0.099765,-0.1395,-0.985168,0,-0.142033,-0.989837,-0.099765,-0.1395,0.985168,0,-0.142033,0.989837,-0.310648,-0.281442,-0.907865,-0.310648,-0.281442,0.907865,-0.759117,-0.650929,0,-0.207465,0,-0.97824,-0.14832,0,-0.988922,-0.207465,0,0.97824,-0.14832,0,0.988922,-0.239265,0,-0.970946,-0.239265,0,0.970946,-0.109897,0,-0.993927,-1,0,0,-0.109897,0,0.993927,-0.700888,0.082186,-0.708487,-0.736015,-0.000641,-0.676931,0,0.003845,-0.999969,-0.700095,-0.084109,-0.709067,0,-0.003906,-0.999969,-0.700095,-0.084109,0.709067,-0.736015,-0.000641,0.676931,0,-0.003906,0.999969,-0.700888,0.082186,0.708487,0,0.003845,0.999969,-0.992615,0.121128,0,-0.999969,-0.000885,0,-0.992279,-0.123997,0,-0.744682,0.088595,-0.661489,-0.744682,0.088595,0.661489,-0.992645,0.120945,0,-0.744224,-0.091006,-0.661641,-0.744224,-0.091006,0.661641,-0.992248,-0.12421,0,0.600787,0.577013,-0.55324,0.926084,0.269265,-0.264229,0.926084,-0.269265,-0.264229,0.600787,-0.577013,-0.55324,0.926084,-0.269265,0.264229,0.926084,0.269265,0.264229,0.600757,0.577013,0.55324,0.600757,-0.577013,0.55324,-0.55327,-0.577837,-0.599963,-0.891171,-0.329936,-0.311319,-0.891171,0.329936,-0.311319,-0.55327,0.577837,-0.599963,-0.891171,0.329936,0.311319,-0.891171,-0.329936,0.311319,-0.553301,-0.577837,0.599933,-0.553301,0.577837,0.599933,0.591632,0.580309,-0.559618,0.591632,-0.580309,-0.559618,0.039277,-0.707083,-0.705985,0.039277,0.707083,-0.705985,0.039277,-0.707083,0.705985,0.591632,-0.580309,0.559618,0.591632,0.580309,0.559618,0.039277,0.707083,0.705985,0.03827,0.721976,-0.690848,0.03827,-0.721976,-0.690848,0.03827,-0.721976,0.690848,0.03827,0.721976,0.690848,0.03827,-0.721671,-0.691122,0.03827,0.721671,-0.691122,0.03827,-0.721671,0.691122,0.03827,0.721671,0.691122,0.039277,0.707083,-0.706015,0.039277,-0.707083,0.706015,0.039277,0.707083,0.706015,0.029542,-0.70397,-0.709586,0.029542,0.70397,-0.709586,0.029542,-0.70397,0.709586,0.029542,0.70397,0.709586,0.045412,0.711539,-0.701132,0.045412,-0.711539,-0.701132,0.045412,-0.711539,0.701132,0.045412,0.711539,0.701132,0.707083,0.707083,0,0.707083,-0.707083,0,0.715903,-0.697592,0.028504,0.718894,-0.69509,-0.002411,0.715903,-0.697592,-0.028504,0.718894,-0.69509,0.002411,0.701163,-0.712973,0,0.711875,-0.702261,0,0.711875,0.702261,0,0.701163,0.712973,0,0.715903,0.697592,0.028504,0.718894,0.69509,-0.002411,0.715903,0.697592,-0.028504,0.718894,0.69509,0.002411,-0.702475,-0.711692,0,-0.694418,-0.719535,0,-0.698477,-0.714927,0.031159,-0.695791,-0.718223,0.002289,-0.698477,-0.714927,-0.031159,-0.695791,-0.718223,-0.002289,-0.698477,0.714927,0.031159,-0.695791,0.718223,0.002289,-0.698477,0.714927,-0.031159,-0.695791,0.718223,-0.002319,-0.694418,0.719535,0,-0.702475,0.711692,0,0.00058,-0.999969,0,0.001068,-0.999084,0.042634,0.001068,-0.999084,-0.042634,0.00058,0.999969,0,0.001068,0.999084,0.042634,0.001068,0.999084,-0.042634,0.001068,-0.999115,0.04181,0.001068,-0.999115,-0.04181,0.001068,0.999115,0.04181,0.001068,0.999115,-0.04181,0.318003,0.898312,-0.30311,0.318003,0.898312,0.30311,0.000946,0.999969,0,0.000702,0.999969,-0.000702,0.000702,0.999969,0.000702,0.724601,-0.001465,-0.689138,0.724601,-0.001465,0.689138,0.708121,0.706076,0,0.999969,-0.002075,0,0.025605,-0.709067,-0.704672,0.025605,0.709067,-0.704672,0.025605,-0.709067,0.704672,0.025605,0.709037,0.704672,0,-0.999969,0,0.31663,-0.899441,-0.301126,0.58327,-0.579608,-0.569048,0.705741,-0.708457,0,0.58327,-0.579608,0.569048,0.31663,-0.899441,0.301126,0.708457,0.705741,0,0.584857,0.577807,-0.569231,0.584857,0.577807,0.569231,0.724082,-0.001129,-0.689688,0.724082,-0.001129,0.689688,0.999969,-0.001617,0,0.999969,-0.001923,0,0.716178,-0.001373,-0.697897,0.716178,-0.001373,0.697897,0.204291,-0.005799,-0.978881,0.207862,-9.2e-05,-0.978149,0.15125,-0.000549,-0.988495,0.158422,-0.003235,-0.987335,0.15125,-0.000549,0.988495,0.207862,-9.2e-05,0.978149,0.204291,-0.005799,0.978881,0.158422,-0.003235,0.987335,0.173833,-0.042238,-0.983856,0.159825,-0.032075,-0.986602,0.173833,-0.042238,0.983856,0.159825,-0.032075,0.986602,0.118198,-0.103671,-0.987548,0.151402,-0.110446,-0.982269,0.118198,-0.103671,0.987548,0.151402,-0.110446,0.982269,0.239692,-6.1e-05,-0.970824,0.23545,-0.008667,-0.971831,0.239692,-6.1e-05,0.970824,0.23545,-0.008667,0.971831,0.199713,-0.055696,-0.97824,0.199713,-0.055696,0.97824,0.137364,-0.116977,-0.983581,0.137364,-0.116977,0.983581,0.115787,-0.002167,-0.993255,0.181707,-0.014405,-0.983215,0.115787,-0.002167,0.993255,0.181707,-0.014405,0.983215,0.999603,-0.027497,0,0.994263,-0.106693,0,0.318339,-0.073916,-0.945067,0.318369,-0.073916,0.945067,0.974273,-0.225349,0,0.428724,-0.263619,-0.864101,0.428724,-0.263619,0.864101,0.87878,-0.477218,0,0.206854,-0.714743,-0.66805,0.239601,-0.970855,0,0.206854,-0.714743,0.66805,0.227577,-0.50383,-0.833247,0.126804,-0.458174,-0.879757,0.235694,-0.971801,0,0.415357,-0.909635,0,0.126804,-0.458174,0.879757,0.227577,-0.50383,0.833247,0.680685,-0.732566,0,0.240394,-0.675588,0.696951,0.149052,-0.9888,0,0.240394,-0.675588,-0.696951,0.080172,-0.129673,-0.988281,0.095187,-0.12595,-0.987426,0.080172,-0.129673,0.988281,0.095187,-0.12595,0.987426,0.099765,-0.1395,-0.985168,0.099765,-0.1395,0.985168,0.310648,-0.281442,-0.907865,0.310648,-0.281442,0.907865,0.759117,-0.650929,0,0.207465,0,-0.97824,0.14832,0,-0.988922,0.207465,0,0.97824,0.14832,0,0.988922,0.239265,0,-0.970946,0.239265,0,0.970946,0.109897,0,-0.993927,0.109897,0,0.993927,0.700888,0.082186,-0.708487,0.736015,-0.000641,-0.676931,0.700095,-0.084109,-0.709067,0.700095,-0.084109,0.709067,0.736015,-0.000641,0.676931,0.700888,0.082186,0.708487,0.992615,0.121128,0,0.999969,-0.000885,0,0.992279,-0.123997,0,0.744682,0.088595,-0.661489,0.744682,0.088595,0.661489,0.992645,0.120945,0,0.744224,-0.091006,-0.661672,0.744224,-0.091006,0.661641,0.992248,-0.12421,0], - - "colors": [], - - "uvs": [[0.5,1,0.511819,0.833333,0.627999,0.943628,0.625001,1,0.999996,0.833333,1,1,0,1,0,0.833333,0.377998,0.943628,0.375,1,0.511818,0.833334,0.725813,0.056373,0.724368,0,0.448736,0,0.45728,0.166667,1,0.166667,1,0,0.833333,-2e-06,0.999999,0.731146,0.943627,0.731146,0.833333,1,0.833333,0,1,0.591823,0.943627,0.591823,0.833333,1,0.833333,1e-06,0.42642,0.975702,0.426522,0.971785,0.401039,0.948388,0.400294,0.956541,0,0,3e-06,0.166667,0.768127,0.340071,0.536255,0,1,0.680143,0.301643,0.340072,0,0.680143,0.603286,0,0.226202,0.244188,-0,0.488376,0.452404,0,0.823031,0.244188,0.646063,0,1,0.488376,1,0.5,0.474169,0.5,0.469518,0.25,1,0.25,0.732434,0,0.5,0,0,0.5,0,0.25,0.5,0.25,0.5,0.5,-0,0.583333,0.5,0.583333,1,0.583333,0.336453,0.25,0.672906,0.25,0.584992,0,0.292496,0,0.38041,0.5,0.76082,0.5,0.579103,0.5,0.537438,0.25,0.495773,0,0.59831,0.5,0.551856,0.25,0.505402,0,0.446672,0.5,0.509276,0.25,0.571881,0,0.75804,0.5,0.622561,0.25,0.487082,0,0.435684,0.5,0.552885,0.25,0.670086,0,0.487237,0.5,0.51186,0.25,0.536484,0,0.220717,0.161827,0,0.323653,0.441435,0,0.358987,0.164142,0.648551,0,0,0.666667,0,0.75,0.576256,1,0.577205,0.833333,0.578154,0.666667,1,0.75,1,0.666667,0.525216,1,0.54958,0.833333,0.573945,0.666667,0.426865,1,0.433467,0.833333,0.440069,0.666667,0.508507,1,0.591685,0.833333,0.674862,0.666667,0.380608,1,0.457363,0.833333,0.534117,0.666667,0.610871,0.5,0.575905,1,0.637543,0.833333,0.699182,0.666667,0.706969,1,0.61654,0.833333,0.526112,0.666667,0.676164,1,0.613189,0.833333,0.550213,0.666667,0.788128,0.165872,0.576256,0,1,0.331744,0.318689,0.196285,0,0.331744,0.525216,0,0.29269,0.218498,0,0.491586,0.508507,0,0.713432,0.245793,0.426865,0,1,0.491586,0.787952,0.191778,0.575905,0,1,0.383556,0.271985,0.21598,0,0.383556,0.380608,0,0.361181,0.266701,0,0.532564,0.676164,0,0.853485,0.266282,0.706969,0,1,0.532564,0.403644,0,0.427375,0.5,0.213688,0.665036,-0,0.830071,0.464868,0,0.237932,0.664964,0.921199,0.256201,1,0.512296,0.487704,0,0,0.373463,1,0.280699,-0,0.125,0.666667,0,0.666667,0.5,0.333333,0,0.333333,0.5,0.666666,0.5,0.499999,0.686732,0.999999,0.373463,1,0.48718,0.499999,0.48718,-1e-06,0.487179,0.500001,0,0.500001,1,-0,0.499999,1,0.743119,0.5,0.760241,-0,0.777363,0.999999,0.12156,0.499999,0.259257,0.5,0.510241,1,0.243119,1e-06,0.396954,0.5,1,0.666667,0.25,0.333333,0.25,1,0.499999,0.5,1e-06,0.166667,0,0.166667,0.5,0.166667,0.25,-0,0.500001,1,0.500001,0.499999,0,0.499999,1,0.999999,0.5,0.499998,0.5,-1e-06,0.5,0.499999,0.5,0.499999,0.25,0.51583,0.067167,0.517635,0.059034,0.490472,0.049857,0.487136,0.056193,0.514061,0.075156,0.483817,0.062511,0.630989,0.067489,0.626944,0.043364,0.605158,0.056185,0.608555,0.07045,0.635284,0.088641,0.611652,0.084007,0.885368,0.116279,0.892089,0.105726,0.871846,0.091624,0.8576,0.106263,0.878645,0.126912,0.845081,0.118521,0.777382,0.071343,0.784177,0.035389,0.760176,0.025612,0.757238,0.060407,0.773941,0.100169,0.754963,0.090899,0.799806,0.081818,0.812072,0.048901,0.792513,0.106803,0.734535,0.016727,0.734804,0.054719,0.733706,0.088264,0.708687,0.054747,0.704082,0.01539,0.65686,0.019982,0.668315,0.056389,0.709926,0.087546,0.676935,0.084468,0.537991,0.06869,0.539951,0.060834,0.536047,0.076342,0.849106,0.070144,0.832622,0.092153,0.820619,0.109128,0.590402,0.060538,0.593546,0.069504,0.596461,0.078,0.909248,0.126243,0.912938,0.113964,0.90633,0.136277,0.950583,0.136636,0.95281,0.130379,0.935798,0.125061,0.934441,0.131332,0.94844,0.142887,0.933047,0.137099,0.574828,0.059368,0.575445,0.068044,0.575715,0.076371,0.984799,0.147246,0.985982,0.140651,0.968626,0.134871,0.966431,0.141269,0.983593,0.153732,0.964387,0.14757,0.938533,0.215524,0.969872,0.217499,0.968902,0.21384,0.93697,0.211448,0.903589,0.217939,0.901708,0.213871,0.937591,0.219825,0.970896,0.221507,0.90054,0.22476,0.944221,0.242041,0.977165,0.239875,0.974947,0.233579,0.940078,0.236147,0.913212,0.252666,0.907853,0.245161,0.973565,0.229259,0.940206,0.230694,0.907023,0.2375,0.940125,0.223789,0.97206,0.225263,0.904631,0.22809,0.940559,0.19558,0.969212,0.200444,0.970928,0.197221,0.941928,0.192071,0.912362,0.190015,0.914905,0.185874,0.939891,0.203076,0.968243,0.206975,0.967219,0.203577,0.938928,0.199081,0.909387,0.197005,0.91051,0.193356,0.939493,0.20714,0.968103,0.210279,0.908454,0.205064,0.951188,0.184193,0.976087,0.188201,0.978297,0.185206,0.952059,0.180877,0.925943,0.179,0.9264,0.175629,0.948372,0.186728,0.974485,0.191135,0.922791,0.181296,0.96328,0.169925,0.984851,0.172519,0.984514,0.165668,0.964397,0.163257,0.943596,0.165657,0.945446,0.159095,0.972807,0.194144,0.944872,0.189169,0.918278,0.183379,0.961294,0.17273,0.983672,0.175405,0.939946,0.169458,0.982004,0.178788,0.959135,0.174996,0.937526,0.171583,0.871096,0.225364,0.870534,0.217339,0.833997,0.233129,0.832539,0.224899,0.867071,0.23724,0.833055,0.249785,0.885307,0.275542,0.879485,0.26239,0.856709,0.292665,0.847431,0.280325,0.876508,0.253172,0.842744,0.268694,0.872842,0.245045,0.839236,0.260394,0.886852,0.190165,0.894159,0.183994,0.849276,0.197505,0.850397,0.194153,0.876548,0.198259,0.879293,0.194244,0.843831,0.206051,0.847757,0.201467,0.875709,0.205613,0.837955,0.211447,0.901593,0.171848,0.90204,0.168292,0.86923,0.178211,0.87417,0.175667,0.896012,0.177242,0.86516,0.184869,0.923655,0.158229,0.924831,0.15392,0.898562,0.146971,0.903143,0.144247,0.895807,0.180681,0.862581,0.187721,0.917763,0.160621,0.890763,0.15262,0.913364,0.162537,0.890777,0.155849,0.510002,0.085254,0.477871,0.074312,0.5073,0.089525,0.474373,0.081885,0.507154,0.093774,0.471984,0.086071,0.506603,0.100973,0.471966,0.090833,0.507214,0.109359,0.472678,0.1006,0.506818,0.114278,0.472576,0.105153,0.508332,0.119376,0.472677,0.109721,0.509979,0.124662,0.47274,0.114564,0.51293,0.130159,0.472661,0.119718,0.512632,0.135499,0.47271,0.12501,0.509796,0.140349,0.472553,0.129923,0.507142,0.145135,0.47098,0.13352,0.504962,0.150191,0.470603,0.137465,0.50486,0.155825,0.46902,0.141229,0.503939,0.161284,0.467148,0.145496,0.503752,0.167158,0.464982,0.149818,0.498444,0.170592,0.462426,0.153852,0.495756,0.176536,0.459427,0.158053,0.492744,0.181069,0.456447,0.162276,0.484108,0.188183,0.451613,0.169417,0.602466,0.185752,0.55147,0.163239,0.551469,0.170551,0.59705,0.194788,0.624807,0.196391,0.622491,0.207096,0.551638,0.178407,0.59992,0.209543,0.621681,0.221875,0.577962,0.240314,0.533239,0.197972,0.526465,0.204491,0.569189,0.247828,0.595861,0.254761,0.585514,0.265013,0.583641,0.229964,0.538894,0.192218,0.606021,0.243921,0.546014,0.183832,0.588947,0.219703,0.612503,0.235817,0.594319,0.14187,0.55486,0.131188,0.552201,0.138439,0.592481,0.149325,0.621798,0.151171,0.622017,0.161068,0.593683,0.155425,0.552068,0.144051,0.55162,0.149801,0.5972,0.160901,0.622085,0.164518,0.622859,0.168582,0.553273,0.157099,0.598315,0.16998,0.626654,0.17792,0.591152,0.121977,0.548215,0.109347,0.548905,0.114818,0.590376,0.125947,0.614321,0.129239,0.614582,0.132019,0.550725,0.120143,0.591059,0.131639,0.617078,0.138538,0.591616,0.135657,0.55321,0.125768,0.617914,0.141431,0.579353,0.09679,0.539404,0.09446,0.546901,0.099209,0.581758,0.106439,0.599186,0.100488,0.60229,0.113066,0.582274,0.111156,0.549141,0.104066,0.603762,0.115743,0.535836,0.089852,0.5758,0.092821,0.593383,0.093964,0.730471,0.112198,0.70975,0.108834,0.788055,0.124032,0.771357,0.120659,0.749718,0.116981,0.646251,0.101508,0.616279,0.096597,0.878384,0.135666,0.84217,0.129189,0.684414,0.103353,0.809893,0.124274,0.791981,0.155991,0.794048,0.152742,0.769746,0.143881,0.768928,0.145574,0.788518,0.161142,0.766542,0.153403,0.708607,0.138037,0.712118,0.134142,0.684493,0.131389,0.675885,0.134019,0.718393,0.16232,0.695781,0.158914,0.827774,0.159694,0.830146,0.155559,0.823685,0.166285,0.646593,0.126408,0.648217,0.130427,0.655522,0.139926,0.86549,0.158984,0.862479,0.163017,0.849291,0.171959,0.620387,0.121654,0.619256,0.118823,0.632038,0.134913,0.757819,0.141654,0.75843,0.140123,0.741169,0.135584,0.741322,0.138002,0.754113,0.151222,0.743361,0.154995,0.726112,0.136144,0.724765,0.141029,0.731569,0.160587,0.795822,0.149525,0.771538,0.141001,0.712162,0.118294,0.687701,0.114021,0.832752,0.151409,0.644354,0.109937,0.872413,0.148504,0.616468,0.107665,0.759129,0.138572,0.744069,0.132287,0.729012,0.126732,0.730802,0.177463,0.731719,0.175599,0.716646,0.173859,0.717338,0.175929,0.729105,0.184424,0.719634,0.182632,0.764389,0.17749,0.764078,0.172425,0.752256,0.170046,0.750843,0.173694,0.752677,0.195249,0.743696,0.190451,0.736377,0.186896,0.741319,0.173546,0.741813,0.171202,0.666359,0.160486,0.661066,0.154849,0.632221,0.146704,0.635349,0.150669,0.674987,0.17066,0.642666,0.158731,0.836456,0.185183,0.843672,0.183382,0.815714,0.18117,0.811782,0.183963,0.827844,0.190915,0.800368,0.191556,0.696809,0.17201,0.693797,0.168253,0.703191,0.179287,0.786327,0.174946,0.788079,0.178546,0.772927,0.193829,0.734614,0.165862,0.718692,0.166141,0.765872,0.156837,0.751873,0.156956,0.744613,0.160776,0.657414,0.144218,0.632705,0.137697,0.847061,0.174407,0.821687,0.169599,0.694594,0.161981,0.788519,0.164566,0.770773,0.2171,0.770404,0.211521,0.751597,0.212214,0.751798,0.218652,0.772599,0.23804,0.755043,0.239207,0.698341,0.204572,0.68631,0.221904,0.706086,0.226763,0.714538,0.208536,0.698385,0.197322,0.716031,0.201374,0.794663,0.214924,0.796431,0.208902,0.789254,0.235049,0.674032,0.199339,0.669293,0.217537,0.674318,0.191622,0.819733,0.207199,0.81664,0.213726,0.810418,0.230639,0.650384,0.21006,0.647336,0.189527,0.646507,0.180186,0.740193,0.21624,0.740804,0.209779,0.732753,0.207474,0.731795,0.213958,0.740138,0.238918,0.72993,0.236082,0.724274,0.211781,0.720524,0.232685,0.726005,0.205041,0.741008,0.201167,0.752766,0.204969,0.742096,0.198095,0.75192,0.202088,0.726805,0.196895,0.726901,0.19343,0.71732,0.191601,0.716865,0.195191,0.734384,0.195093,0.734116,0.19833,0.821874,0.201796,0.823722,0.198614,0.799958,0.201059,0.799576,0.204263,0.644741,0.173457,0.672963,0.183168,0.644884,0.169087,0.674755,0.17963,0.772623,0.202912,0.773497,0.206044,0.69975,0.191656,0.700261,0.188068,0.744481,0.291661,0.743235,0.279445,0.727253,0.281039,0.729849,0.294028,0.745416,0.311435,0.729465,0.315862,0.694198,0.288308,0.686421,0.309894,0.701985,0.315634,0.707743,0.293333,0.702488,0.275443,0.711942,0.278693,0.719082,0.280154,0.718236,0.295284,0.716398,0.317995,0.814081,0.273202,0.802222,0.263005,0.781674,0.270571,0.789729,0.284446,0.814677,0.287657,0.79136,0.299626,0.639647,0.25498,0.631403,0.266316,0.647832,0.282231,0.658201,0.268006,0.650341,0.24074,0.666784,0.254105,0.762222,0.276236,0.764247,0.29172,0.76618,0.309643,0.666949,0.298453,0.677044,0.279139,0.685243,0.266007,0.746497,0.335311,0.731755,0.335285,0.750396,0.360038,0.728379,0.357179,0.678843,0.323644,0.670291,0.341042,0.691324,0.349576,0.697619,0.329313,0.715833,0.332805,0.710635,0.35418,0.81939,0.300276,0.796564,0.313939,0.832208,0.311144,0.808576,0.331403,0.618731,0.275768,0.611711,0.290923,0.627135,0.306921,0.636861,0.292939,0.770441,0.328774,0.779042,0.348515,0.648076,0.326524,0.659628,0.312741,0.754535,0.25188,0.73804,0.249769,0.703638,0.237321,0.716355,0.242691,0.726293,0.247259,0.818515,0.238721,0.795082,0.245629,0.643652,0.219598,0.667255,0.230393,0.774,0.249864,0.687112,0.233503,0.730983,0.258072,0.465824,0.333333,1,0.333333,0.999998,0.5,0.741927,0.600754,0.666667,1,0.741928,0.591823,0.426318,0.979619,0.399548,0.964695,0,0.333333,0.333333,1,0.426113,0.987453,0.398057,0.981002,0.333333,-2e-06,0.666667,2e-06,0.446951,0.591823,0.666667,0.591823,0.333333,-1e-06,0.666667,1e-06,0.666667,0.591824,0.411382,0.731145,0.666666,0.731145,0.732912,0.333333,0.738544,0.553049,0.482912,0.666667,0.747864,0.916666,0.742685,0.714605,0.491456,0.833333,1,0.833333,0.285395,0.605183,0.083333,0.5,0.166667,1,0.547274,0.333334,0.559093,0.166667,0,0.166667,0.285395,0.591823,0.083333,0.591823,0.426011,0.99137,0.397312,0.989156,0.425909,0.995287,0.396567,0.99731,0.166667,-1e-06,0,0.591823,0.209893,0.591823,0.18991,0.731145,0.166667,-2e-06,0.74462,0.790107,0.75,1,0.523637,0.666667,0.392731,0.666667,0.408507,0.370011,0.419321,0.166667,0.428185,1e-06,0.570912,1e-06,0.642727,0.666667,0.658504,0.370011,0.523638,0.666667,0.669321,0.166667,0.678183,0,0.559094,0.166667,0.736841,0.486621,0.474369,0.5,0.513378,0.614459,0.535455,0.5,0.535457,0.500001,0.5,-1e-06,0.513379,0.591823,0.5,0.999998,0.426216,0.983536,0.398803,0.972849,0.5,0.591823,0.737184,0.5,0.474368,0.5,0.737184,0.499998,0.230307,0.105986,0.255336,0.130406,0.181,0.180725,0.283422,0.027533,0.334018,0.078082,0.505041,0.752586,0.435447,0.767592,0.419773,0.692592,0.475022,0.677263,0.520994,0.834491,0.442272,0.83787,0.513415,0.918655,0.441207,0.909668,0.489918,1,0.430936,0.989717,0.371232,0.983601,0.375429,0.906849,0.375939,0.841287,0.371596,0.775898,0.362123,0.700305,0.361776,0.144455,0.2683,0.162845,0.268776,0.197655,0.361874,0.216775,0.310628,0.78016,0.304922,0.708125,0.314199,0.843041,0.314096,0.90584,0.312766,0.980145,0.255631,0.978408,0.254918,0.906025,0.254425,0.844794,0.251495,0.783716,0.247972,0.709936,0.33431,0.283246,0.255788,0.230053,0.231351,0.255087,0.283673,0.333908,0.193169,0.785155,0.1917,0.714484,0.195407,0.846472,0.196757,0.907393,0.199776,0.978311,0.145143,0.980511,0.138509,0.910541,0.135742,0.848461,0.13426,0.786142,0.136254,0.71303,0.217145,0.361672,0.198888,0.268018,0.164091,0.268442,0.14462,0.361672,0.072997,0.78386,0.08092,0.711407,0.072663,0.850791,0.078467,0.916945,0.091745,0.986651,0.040444,0.999999,0.013815,0.929922,0,0.85405,0.006472,0.77696,0.026926,0.701446,0.077947,0.33382,0.131768,0.255378,0.106921,0.230879,0.027203,0.28262,0.010431,0.601522,0.080279,0.589208,0.093461,0.663619,0.038099,0.677263,0,0.521331,0.073905,0.519825,0.006688,0.439978,0.077825,0.449495,0.031172,0.361672,0.088093,0.372882,0.146903,0.376509,0.142001,0.453882,0.139949,0.519017,0.143342,0.582988,0.150514,0.657491,0,0.21601,0.093351,0.198716,0.093109,0.163798,0.000339,0.144199,0.20299,0.580307,0.206748,0.651087,0.201954,0.517975,0.203064,0.455399,0.205465,0.38086,0.262677,0.383396,0.262307,0.45605,0.261523,0.517171,0.261751,0.578957,0.262346,0.65074,0.027992,0.078117,0.106215,0.13141,0.130684,0.106411,0.078534,0.027712,0.320704,0.579357,0.318627,0.652429,0.320874,0.517316,0.320908,0.455727,0.318791,0.384186,0.373942,0.382395,0.380181,0.453392,0.382194,0.517126,0.380712,0.581192,0.375548,0.656265,0.144827,6.4e-05,0.163129,0.093465,0.197925,0.093003,0.217045,0,0.44454,0.584871,0.433535,0.663131,0.44728,0.515114,0.441666,0.447193,0.428037,0.376204,0.48077,0.361672,0.50767,0.434653,0.521272,0.51168,0.516493,0.593345,0.492272,0.675548,0.590077,0.941196,0.533989,0.667621,0.595109,0.642011,0.75245,0.875255,0.414714,0.944054,0.467647,0.667874,0.250704,0.878618,0.406218,0.642674,0.127668,0.752425,0.359352,0.596015,0.058594,0.591182,0.333684,0.534953,0.057159,0.415416,0.333258,0.468574,0.123693,0.252473,0.358468,0.407189,0.247706,0.127136,0.405257,0.360168,0.410172,0.05803,0.466347,0.334366,0.586035,0.060171,0.532776,0.334049,0.748359,0.125354,0.594147,0.359178,0.873745,0.248479,0.641207,0.405896,0.943061,0.410889,0.66677,0.467104,0.941925,0.587262,0.667106,0.533539,0.877696,0.751129,0.642009,0.594982,0.908049,0.770518,0.774246,0.905702,1.1716,0.94386,0.952595,1.16722,0.978869,0.594235,1.28931,0.654333,0.97854,0.404324,1.28752,0.342283,0.905366,0.229453,1.16846,0.054949,0.770803,0.095323,0.947711,-0.166696,0.594651,0.022921,0.657169,-0.287446,0.404451,0.022163,0.34397,-0.287446,0.22907,0.094898,0.404452,0.022163,0.055434,-0.169281,0.094158,0.229172,-0.167355,0.0508,0.020691,0.405174,0.094158,0.229171,-0.28954,0.340442,0.020564,0.596336,-0.291096,0.656078,0.094452,0.773207,-0.17008,0.94932,0.229417,0.908878,0.053688,1.17208,0.406211,0.981029,0.344341,1.29199,0.597758,0.979506,0.661271,1.29074,6e-06,0.499999,1.00001,0.75,2e-06,0.75,-5e-06,0.500001,0.999995,0.25,-2e-06,0.250001,6e-06,0.749998,-6e-06,0.250001,1.00001,0.75,1.00001,0.5,1,0.25,1.00001,0.75,1e-05,0.749999,7e-06,0.499999,0.999994,0.25,3e-06,0.25,0.25,0.5,0.25,1,0.75,0.5,0.737184,0.499999,0.999999,0.500001,0.5,0.591824,0.5,3e-06,0.426215,0.983536,0.285457,0,0.267727,0.5,0.767728,0.500001,0.785455,0,0.75,1,0.428184,1e-06,0.401593,0.500001,0.267728,0.5,0.375001,1,0.535456,0.5,0.678183,1e-06,0.651591,0.5,0.535455,0.500001,0.624999,1,0.500001,0.591823,0.737183,0.5,0.474367,0.5,0.285456,0,0.250001,1,0.767727,0.5,0.749999,1,0.428183,0,0.401593,0.5,0.401592,0.500005,0.651591,0.500001,0.625,1,0.651592,0.500008,0.748932,0.958333,0.495728,0.916667,1,0.916667,0.083333,0,0.041667,0.5,0.083333,1,1,0.083333,0.565003,0.083334,0.565002,0.083334,0,0.083333,0.083333,-1e-06,0.041667,0.591823,0.42596,0.993329,0.396939,0.993233,-0,0.916667,0.54536,0.914046,0.560973,0.941226,0.52881,0.956341,0.516085,0.925641,0.332377,0.928242,0.374928,0.949032,0.357527,1,0.306914,0.977149,1,0.54878,0.389303,0.948677,0.37902,0.998519,0.648838,0,0.525473,0.94829,0.551774,0.925211,1,0.589233,0.201908,0.860886,0.215787,0.865226,0.244624,0.886807,0.2299,0.892598,0.273461,0.908388,0.257891,0.924309,0.22837,0.869162,0.257973,0.881558,0.287576,0.893955,0.215139,0.865024,0.243936,0.887078,0.272733,0.909132,0.289146,0.922834,0.270147,0.937519,0.304832,0.937279,0.282403,0.950729,0.298776,0.902527,0.274319,0.942016,0.309977,0.911098,0.290746,0.959722,0.550024,0.922162,0.520314,0.935842,0.55574,0.932109,0.524542,0.946044,0.638691,0,0.268616,0.913342,0.240043,0.888609,1,0.295285,0.238189,0.889338,0.424094,0.5,1,0.71563,0.424095,0.71563,0.504196,0,0.312551,0.944388,0.294659,0.963939,0.32027,0.951497,0.321177,0.91967,0.29883,0.968435,0.499999,0.999999,0.504197,0,-1e-06,0.500001,0.499998,0.495803,0.272734,0.909132,0.243818,0.887124,1,0.550689,0.5,0.999999,0.504197,0.525557,0.495803,0.5,1,0.572447,1,0.429088,0.25,0,0,0.429089,0.5,0.429088,0.75,0,0.5,1,0.491556,0.999999,0.491556,-1e-06,0.745778,0,0.745778,0.999999,0.5,0.536223,0,0.572447,0,0.749999,1,0.787952,0.280155,0.901544,0.25202,0.883899,0.221754,0.867093,0.212046,0.5,0.25,-1e-06,0.500001,0.999999,0.497903,0.750001,0.500001,1,-1e-06,0.75,0.558357,0.936667,0.526676,0.951193,0.75,1e-06,-1e-06,0.25,1,0.27439,0.521389,0.812455,0.521388,1,0.260694,1,0.260694,0.812455,0,0.812456,0.521388,0.464104,0.260694,0.495628,-0,0.527152,0.760694,0.999999,0.424095,0,1,0.178908,0.424094,0.183315,1,0.357815,0.424094,0.36663,1,0.5,0.35336,0.475233,0.373726,0.484664,0.367727,0.492227,0.345253,0.485138,0.282909,0.440502,0.304798,0.455571,0.295238,0.466483,0.273637,0.453058,0.264952,0.430605,0.253654,0.442104,0.242273,0.415371,0.233253,0.428166,0.332419,0.465969,0.323036,0.477194,0.757099,0.649952,0.783028,0.613233,0.802122,0.615829,0.791498,0.636812,0.738339,0.627327,0.760433,0.596058,0.843309,0.626268,0.831431,0.636183,0.809712,0.634316,0.822525,0.618739,0.342985,0.470332,0.333744,0.481265,0.282349,0.571715,0.303331,0.581151,0.290572,0.603388,0.273006,0.592342,0.27596,0.625708,0.26226,0.616727,0.264335,0.561942,0.255479,0.58346,0.246413,0.611332,0.915546,0.534993,0.893382,0.512779,0.910885,0.498006,0.932757,0.51786,0.928867,0.483005,0.95028,0.500452,0.870235,0.495068,0.885796,0.477293,0.901667,0.459443,0.328761,0.593299,0.317571,0.6188,0.306453,0.643352,0.855832,0.485546,0.871511,0.467451,0.887294,0.44935,0.845147,0.476321,0.858514,0.457441,0.87192,0.43851,0.809943,0.561268,0.792682,0.550454,0.796314,0.54532,0.81274,0.556193,0.820281,0.567331,0.822364,0.562573,0.287755,0.475237,0.310561,0.488322,0.305324,0.491559,0.285453,0.477545,0.227367,0.436516,0.24718,0.449867,0.245204,0.452295,0.224654,0.440366,0.265467,0.461079,0.263213,0.46354,0.334308,0.499941,0.355953,0.510823,0.352277,0.51576,0.331235,0.504405,0.843779,0.588132,0.846836,0.584232,0.862452,0.604408,0.866158,0.599825,0.321032,0.494289,0.317311,0.498424,0.361799,0.500238,0.340144,0.491484,0.292098,0.469783,0.270154,0.456122,0.250951,0.44513,0.230896,0.43151,0.317311,0.481383,0.796511,0.587583,0.810717,0.591093,0.776543,0.573272,0.832756,0.603468,0.852199,0.615763,0.327836,0.486485,0.358479,0.505512,0.337045,0.495884,0.289994,0.472558,0.267725,0.458696,0.249074,0.447475,0.229228,0.433877,0.313933,0.484614,0.803196,0.574246,0.815223,0.578487,0.784754,0.561662,0.857363,0.609938,0.838385,0.595591,0.324431,0.49024,0.283701,0.52382,0.299808,0.532387,0.297826,0.536143,0.28152,0.527458,0.320083,0.544493,0.318321,0.548363,0.348723,0.554892,0.347444,0.558756,0.884766,0.557006,0.866203,0.539982,0.868841,0.537089,0.888067,0.554517,0.845712,0.525115,0.847925,0.521911,0.832318,0.517476,0.834492,0.514019,0.821373,0.509908,0.823825,0.506443,0.855613,0.632107,0.846538,0.640916,0.944369,0.528643,0.926973,0.546514,0.961627,0.510636,0.877262,0.60855,0.873909,0.613304,0.863761,0.623239,0.868682,0.618123,0.898696,0.567316,0.895099,0.56981,2e-06,0.666667,1e-06,0.333333,1,0.666667,1,0.666666,-1e-06,0.666667,1e-06,0.333334,1,0.666667,0.999999,0.333333,-0,0.666666,0.999999,0.666667,1,0.333334,3e-06,0.666667,1e-06,0.666667,0.999997,0.666667,-2e-06,0.666667,2e-06,0.666666,0.999999,0.333334,0.333334,1,0.999996,0.333333,-3e-06,0.333333,-1e-06,0.333333,0.999997,0.333334,0,0.333334,1,0.333334,0.325659,0.524449,0.30856,0.515405,0.294513,0.507689,0.856519,0.562107,0.875462,0.578415,0.834038,0.543844,0.3505,0.535326,0.271877,0.492878,0.249521,0.478445,0.232407,0.468064,0.213326,0.45644,0.822529,0.536835,0.808843,0.527614,0.88618,0.58918,0.24952,0.478445,0.213327,0.45644,0.322871,0.534471,0.304184,0.523896,0.289107,0.515755,0.861361,0.551044,0.880114,0.567711,0.839875,0.534479,0.349612,0.545109,0.265089,0.500545,0.242674,0.485897,0.258301,0.508212,0.235828,0.49335,0.226009,0.475949,0.219611,0.483833,0.207663,0.464476,0.201999,0.472513,0.827423,0.527155,0.815108,0.518761,0.89064,0.579495,0.827424,0.527155,0.890639,0.579495,0.625,0.500001,0.625001,0.999997,0.500001,0.999998,0.500001,0.25,0.625001,0.25,0.625,0.5,0.499999,1e-06,0.624999,0,0.625001,0.249999,0.6875,0.5,0.6875,0.999996,0.687501,0.25,0.687499,0,0.8125,0.500001,0.8125,0.999997,0.75,0.999997,0.6875,0,0.687501,0.249999,0.6875,0.499999,0.6875,0.999997,0.8125,0,0.812501,0.249999,0.750001,0.25,0.812501,0.25,0.8125,0.5,0.8125,0.500003,0.8125,0.999995,0.6875,0.999998,0.8125,1e-06,0.8125,0.999996,0.84375,0.500004,0.84375,0.999998,0.875,0.500003,0.875,0.999996,0.8125,0.375,0.75,0.375,0.843751,0.25,0.84375,0.375,0.84375,0.5,0.875001,0.25,0.875,0.375,0.875,0.5,0.84375,1e-06,0.875,1e-06,0.875001,0.250001,0.84375,0.500006,0.84375,0.999996,0.812499,0.375,0.84375,0.500003,0.84375,0.999993,0.84375,3e-06,0.843751,0.249998,0.84375,0.500002,1,0.166666,0,0.166666,0.5,0.666666,0.5,0.833333,1,0.333333,1e-06,0.166667,1e-06,0.5,0.5,0.768112,1,0.749999,0,0.786223,0.5,0.75,1,0.374999,0,0.374999,1,0.375,1e-06,0.375,-0,0.375,0.5,0.408582,-0,0.442166,0.5,0.375,1,0.249999,1,0.125,-0,0.124999,0,0.249999,1,0.124999,0.5,0.140471,0.5,0.280942,-0,0.155943,0,0.311885,0.5,0.124999,0.5,0.249999,0.500002,0.249999,0.999999,0.125,0.500001,0.280942,0.499999,0.125,0.250001,0.25,0.250001,0,0.25,0.249999,0.25,0.148207,-1e-06,0.155942,0.25,0.296413,0.249999,0.125,-1e-06,0.125,0.25,0.25,0.236918,0.889838,0.208524,0.862955,0.265312,0.916721,0.745778,0.499999,0.491555,0.5,0.255347,0.247814,0.510694,0.232052,-0,0.263576,1,0.625,0,0.625,-0,0.624999,1,0.624999,0.5,0.652167,-0,0.679335,0.5,0.625,1,0.312499,-0,0.3125,1,0.3125,-0,0.312499,0.5,0.344763,-0,0.377025,0.5,0.3125,1,0.0625,-0,0.0625,0.5,0.070235,-0,0.077971,0.5,0.070236,0.499999,0.062499,0.375001,0,0.375,0.25,0.375,0,0.375001,0.25,0.374999,0,0.375001,0.249999,0.374999,0.249999,0.375,0.144339,0.375001,0.288678,0.374999,0.125,0.57442,0.5,0.569345,0.5,0.5,0.397642,0.502097,0.5,0.5,0.768977,1,0.786224,1,0.442165,0.5,0.408583,1,0.155943,0.5,0.280941,1,0.311885,0.999998,0.155942,0.25,0.132735,0.249999,0,0.25,0.265471,0.287213,0.5,-2e-06,0.5,0.324418,0,0.28721,0.5,1,0.679336,0.5,0.652168,0.5,0.536222,1,0.377025,0.5,0.344762,1,0.077971,0.375,0.136603,0.375001,0.273207,0.374999,0.136603,0.5,-3e-06,0.500002,0.5,0.265676,0.916349,0.237262,0.889703,0.208848,0.863056,0.303605,0.954164,0.293617,0.944004,0.313592,0.964323,0.279647,0.930177,0.5,0.125,5e-06,0.249979,0.25,0.125,0,0.1875,0.5,0.1875,0.499999,0.375,0.25,0.375,0.250001,0.1875,-2e-06,0.1875,0.250001,0.125,0.250002,0.1875,0.708333,0.5,0.75,0.25,0.708333,0.25,0.708333,0,0.916667,0.5,0.916667,0.25,0.916667,0,0.541667,0.5,0.583333,0.5,0.583333,0.25,0.541667,0.25,0.583333,0,0.541667,0,0.395833,0.5,0.416667,0.5,0.416667,0.25,0.395833,0.25,0.416667,0,0.395833,0,0.500007,0.25,0.75,-7e-06,0.5,0.500002,0.5,-2e-06,0.5,0.749999,0.5,0.374999,0.500003,0.125,0.750001,0.5,0.500001,0.375,1,0.0625,0.5,0.0625,0.500001,0.125,0.375001,0.125,0.5,0.749998,0.5,2e-06,0.499999,1,0.500002,3e-06,2e-06,0.833333,1e-06,0.250001,1,0.25,2e-06,0.583333]], - - "faces": [43,910,1,2,903,0,0,1,2,3,0,1,2,3,43,903,2,3,906,0,3,2,4,5,3,2,4,5,43,906,3,4,904,0,6,7,8,9,5,4,6,7,43,5,914,904,4,0,10,0,9,8,8,9,7,6,43,9,905,908,8,0,11,12,13,14,10,11,12,13,43,11,913,905,9,0,15,16,12,11,14,15,11,10,43,1,910,14,12,0,17,16,18,19,1,0,16,17,43,912,0,12,14,0,5,20,19,18,18,19,17,16,43,8,908,907,7,0,21,16,22,23,13,12,20,21,43,7,907,909,6,0,23,22,5,24,21,20,22,23,43,914,5,13,15,0,5,20,25,16,9,8,24,25,43,6,909,15,13,0,26,27,28,29,23,22,25,24,43,10,911,913,11,0,21,16,5,24,26,27,15,14,43,0,912,911,10,0,15,16,30,31,19,18,27,26,43,113,27,28,112,0,6,30,16,5,28,29,30,31,43,115,112,28,18,0,6,5,16,30,32,31,30,33,43,115,18,29,114,0,6,30,16,5,32,33,34,35,43,118,114,29,20,0,6,5,16,30,36,35,34,37,43,119,118,20,30,0,6,30,16,5,38,36,37,39,43,76,16,18,28,0,6,32,33,30,40,41,33,30,43,75,19,16,76,0,5,34,32,6,42,43,41,40,43,29,18,16,19,0,16,33,32,34,34,33,41,43,43,74,17,19,75,0,5,35,36,6,44,45,43,42,43,30,20,17,74,0,16,37,35,5,39,37,45,44,43,29,19,17,20,0,30,36,35,37,34,43,45,37,43,119,30,31,117,0,6,30,16,5,38,39,46,47,43,117,31,33,109,0,6,30,16,5,47,46,48,49,43,109,33,24,108,0,6,5,16,30,49,48,50,51,43,110,108,24,32,0,6,30,16,5,52,51,50,53,43,111,110,32,23,0,6,5,16,30,54,52,53,55,43,116,111,23,26,0,6,30,16,5,56,54,55,57,43,78,21,25,72,0,5,38,39,6,58,59,60,61,43,26,23,21,78,0,16,40,38,5,57,55,59,58,43,32,25,21,23,0,30,39,38,40,53,60,59,55,43,71,22,24,33,0,6,41,42,30,62,63,50,48,43,72,25,22,71,0,5,43,41,6,61,60,63,62,43,32,24,22,25,0,16,42,41,43,53,50,63,60,43,116,26,27,113,0,6,30,16,5,56,57,29,28,43,78,77,27,26,0,6,5,16,30,58,64,29,57,43,77,76,28,27,0,6,5,16,30,64,40,30,29,43,74,73,31,30,0,6,5,16,30,44,65,46,39,43,73,71,33,31,0,6,5,16,30,65,62,48,46,43,47,55,56,48,0,6,5,16,30,66,67,68,69,43,48,56,54,46,0,6,5,16,30,69,68,70,71,43,56,34,35,54,0,6,5,16,30,68,72,73,70,43,46,54,53,45,0,6,5,16,30,71,70,74,75,43,54,35,67,53,0,6,5,16,30,70,73,76,74,43,45,53,52,44,0,6,5,16,30,75,74,77,78,43,53,67,66,52,0,6,5,16,30,74,76,79,77,43,44,52,51,43,0,6,5,16,30,78,77,80,81,43,52,66,65,51,0,6,5,16,30,77,79,82,80,43,43,51,50,42,0,6,5,16,30,81,80,83,84,43,51,65,39,50,0,6,5,16,30,80,82,85,83,43,42,50,49,41,0,6,5,16,30,84,83,86,87,43,50,39,40,49,0,6,5,16,30,83,85,88,86,43,55,47,41,49,0,6,5,16,30,67,66,87,86,43,34,57,59,35,0,6,5,16,30,72,89,90,73,43,35,59,60,36,0,6,5,16,30,73,90,91,92,43,36,60,61,37,0,6,5,16,30,92,91,93,94,43,37,61,62,38,0,6,5,16,30,94,93,95,96,43,38,62,63,39,0,6,5,16,30,96,95,97,85,43,39,63,64,40,0,6,5,16,30,85,97,98,88,43,37,68,69,36,0,6,5,16,30,94,99,100,92,43,68,66,67,69,0,6,5,16,30,99,79,76,100,43,38,70,68,37,0,6,5,16,30,96,101,99,94,43,70,65,66,68,0,6,5,16,30,101,82,79,99,43,35,36,69,67,0,6,5,16,30,73,92,100,76,43,38,39,65,70,0,6,5,16,30,96,85,82,101,43,58,72,71,57,0,6,5,16,30,102,61,62,89,43,57,71,73,59,0,6,5,16,30,89,62,65,90,43,59,73,74,60,0,6,5,16,30,90,65,44,91,43,60,74,75,61,0,6,5,16,30,91,44,42,93,43,61,75,76,62,0,6,5,16,30,93,42,40,95,43,62,76,77,63,0,6,5,16,30,95,40,64,97,43,63,77,78,64,0,6,5,16,30,97,64,58,98,43,72,58,64,78,0,6,5,16,30,61,102,98,58,43,64,58,79,80,0,6,5,16,30,98,102,103,104,43,58,57,81,79,0,6,5,16,30,102,89,105,103,43,40,64,80,82,0,6,5,16,30,88,98,104,106,43,57,34,83,81,0,6,5,16,30,89,72,107,105,43,55,49,84,85,0,6,5,16,30,67,86,108,109,43,56,55,85,86,0,6,5,16,30,68,67,109,110,43,34,56,86,83,0,6,5,16,30,72,68,110,107,43,49,40,82,84,0,6,5,16,30,86,88,106,108,43,84,82,87,88,0,6,5,16,30,108,106,111,112,43,83,86,90,89,0,6,5,16,30,107,110,113,114,43,86,85,91,90,0,6,5,16,30,110,109,115,113,43,85,84,88,91,0,6,5,16,30,109,108,112,115,43,81,83,89,92,0,6,5,16,30,105,107,114,116,43,82,80,93,87,0,6,5,16,30,106,104,117,111,43,79,81,92,94,0,6,5,16,30,103,105,116,118,43,80,79,94,93,0,6,5,16,30,104,103,118,117,43,91,95,89,90,0,6,5,16,30,115,119,114,113,43,95,91,88,87,0,6,5,16,30,119,115,112,111,43,95,94,92,89,0,6,5,16,30,119,118,116,114,43,94,95,87,93,0,6,5,16,30,118,119,111,117,43,117,109,103,105,0,44,45,46,47,47,49,120,121,43,105,103,896,125,0,47,46,48,16,121,120,122,123,43,114,118,107,104,0,16,5,0,49,35,36,124,125,43,104,107,123,294,0,49,0,6,50,125,124,126,127,43,294,123,127,303,0,49,16,5,0,127,126,128,129,43,320,129,124,900,0,44,16,30,50,130,131,132,133,43,900,124,126,273,0,46,45,50,51,133,132,134,135,43,273,126,125,896,0,47,44,45,46,135,134,123,122,43,303,127,128,304,0,49,16,5,0,129,128,136,137,43,304,128,130,305,0,49,16,5,0,137,136,138,139,43,152,131,129,320,0,49,30,51,52,140,141,131,130,43,305,130,131,152,0,52,51,50,53,139,138,141,140,43,103,109,108,96,0,49,16,44,53,120,49,51,142,43,896,103,96,897,0,30,49,53,50,122,120,142,143,43,96,108,110,99,0,49,16,44,53,142,51,52,144,43,897,96,99,894,0,30,49,53,50,143,142,144,145,43,97,115,114,104,0,53,50,54,55,146,32,35,125,43,293,97,104,294,0,44,53,55,56,147,146,125,127,43,101,113,112,98,0,53,50,54,55,148,28,31,149,43,295,101,98,296,0,44,53,55,56,150,148,149,151,43,98,112,115,97,0,53,50,54,55,149,31,32,146,43,296,98,97,293,0,44,53,55,56,151,149,146,147,43,99,110,111,100,0,44,16,30,50,144,52,54,152,43,894,99,100,312,0,5,44,50,6,145,144,152,153,43,100,111,116,102,0,57,58,59,60,152,54,56,154,43,312,100,102,145,0,51,57,60,30,153,152,154,155,43,102,116,113,101,0,61,62,58,57,154,56,28,148,43,145,102,101,295,0,50,61,57,51,155,154,148,150,43,106,119,117,105,0,44,5,0,53,156,38,47,121,43,121,106,105,125,0,16,44,53,49,157,156,121,123,43,107,118,119,106,0,53,0,6,50,124,36,38,156,43,123,107,106,121,0,49,53,50,30,126,124,156,157,43,131,130,128,120,0,6,5,16,30,141,138,136,158,43,131,120,124,129,0,6,30,16,5,141,158,132,131,43,122,126,124,120,0,44,16,30,50,159,134,132,158,43,127,122,120,128,0,5,44,50,6,128,159,158,136,43,121,125,126,122,0,49,16,5,0,157,123,134,159,43,123,121,122,127,0,30,49,0,6,126,157,159,128,43,151,302,233,132,0,51,50,63,64,160,161,162,163,43,318,151,132,235,0,30,51,64,65,164,160,163,165,43,132,233,301,150,0,64,63,44,47,163,162,166,167,43,235,132,150,308,0,65,64,47,16,165,163,167,168,43,150,301,234,133,0,51,50,66,67,167,166,169,170,43,308,150,133,236,0,30,51,67,68,168,167,170,171,43,133,234,300,149,0,67,66,44,47,170,169,172,173,43,236,133,149,319,0,68,67,47,16,171,170,173,174,43,149,300,242,134,0,51,50,69,70,173,172,175,176,43,319,149,134,244,0,30,51,70,71,174,173,176,177,43,134,242,299,148,0,70,69,44,47,176,175,178,179,43,244,134,148,310,0,71,70,47,16,177,176,179,180,43,148,299,243,135,0,51,50,72,73,179,178,181,182,43,310,148,135,245,0,30,51,73,74,180,179,182,183,43,135,243,298,147,0,73,72,44,47,182,181,184,185,43,245,135,147,321,0,74,73,47,16,183,182,185,186,43,136,252,302,151,0,49,16,5,0,187,188,161,160,43,249,136,151,318,0,30,49,0,6,189,187,160,164,43,146,297,252,136,0,0,5,16,49,190,191,188,187,43,311,146,136,249,0,6,0,49,30,192,190,187,189,43,145,295,253,137,0,51,50,62,58,155,150,193,194,43,312,145,137,254,0,30,51,58,59,153,155,194,195,43,137,253,297,146,0,58,62,44,47,194,193,191,190,43,254,137,146,311,0,59,58,47,16,195,194,190,192,43,147,298,260,138,0,51,50,75,76,185,184,196,197,43,321,147,138,262,0,30,51,76,77,186,185,197,198,43,138,260,292,144,0,76,75,44,47,197,196,199,200,43,262,138,144,317,0,77,76,47,16,198,197,200,201,43,144,292,261,139,0,51,50,78,79,200,199,202,203,43,317,144,139,263,0,30,51,79,80,201,200,203,204,43,139,261,291,143,0,79,78,44,47,203,202,205,206,43,263,139,143,313,0,80,79,47,16,204,203,206,207,43,154,322,316,140,0,47,16,30,51,208,209,210,211,43,307,154,140,288,0,44,47,51,50,212,208,211,213,43,153,309,322,154,0,47,16,30,51,214,215,209,208,43,306,153,154,307,0,44,47,51,50,216,214,208,212,43,152,320,309,153,0,47,16,30,51,140,130,215,214,43,305,152,153,306,0,44,47,51,50,139,140,214,216,43,142,314,313,143,0,47,16,30,51,217,218,207,206,43,290,142,143,291,0,44,47,51,50,219,217,206,205,43,141,315,314,142,0,47,16,30,51,220,221,218,217,43,289,141,142,290,0,44,47,51,50,222,220,217,219,43,140,316,315,141,0,47,16,30,51,211,210,221,220,43,288,140,141,289,0,44,47,51,50,213,211,220,222,43,894,312,254,158,0,6,5,16,30,145,153,195,223,43,311,249,158,254,0,6,5,16,30,192,189,223,195,43,895,158,249,318,0,6,30,16,5,224,223,189,164,43,895,318,235,159,0,6,5,16,30,224,164,165,225,43,889,159,235,308,0,6,30,16,5,226,225,165,168,43,276,155,157,275,0,44,81,82,50,227,228,229,230,43,894,158,155,276,0,16,83,81,44,145,223,228,227,43,895,157,155,158,0,30,82,81,83,224,229,228,223,43,283,156,159,889,0,44,84,85,16,231,232,225,226,43,275,157,156,283,0,50,82,84,44,230,229,232,231,43,895,159,156,157,0,30,85,84,82,224,225,232,229,43,889,308,236,319,0,6,5,16,30,226,168,171,174,43,901,889,319,244,0,6,5,16,30,233,226,174,177,43,901,245,321,898,0,6,30,16,5,233,183,186,234,43,901,244,310,245,0,6,30,16,5,233,177,180,183,43,902,898,321,262,0,6,5,16,30,235,234,186,198,43,902,263,313,893,0,6,30,16,5,235,204,207,236,43,902,262,317,263,0,6,30,16,5,235,198,201,204,43,349,345,168,160,0,0,5,16,49,237,238,239,240,43,347,349,160,166,0,6,0,49,30,241,237,240,242,43,343,339,172,162,0,0,5,16,49,243,244,245,246,43,341,343,162,170,0,6,0,49,30,247,243,246,248,43,164,176,333,335,0,49,16,5,0,249,250,251,252,43,174,164,335,337,0,30,49,0,6,253,249,252,254,43,178,167,161,169,0,6,30,16,5,255,256,257,258,43,181,171,163,173,0,6,30,16,5,259,260,261,262,43,184,177,165,175,0,6,5,16,30,263,264,265,266,43,161,167,166,160,0,0,5,16,49,257,256,242,240,43,169,161,160,168,0,6,0,49,30,258,257,240,239,43,163,171,170,162,0,0,5,16,49,261,260,248,246,43,173,163,162,172,0,6,0,49,30,262,261,246,245,43,164,174,175,165,0,49,16,5,0,249,253,266,265,43,176,164,165,177,0,30,49,0,6,250,249,265,264,43,186,365,237,230,0,86,87,88,89,267,268,269,270,43,185,186,230,229,0,54,86,89,90,271,267,270,272,43,302,185,229,233,0,50,54,90,63,161,271,272,162,43,230,237,351,188,0,89,88,91,92,270,269,273,274,43,229,230,188,187,0,90,89,92,56,272,270,274,275,43,233,229,187,301,0,63,90,56,44,162,272,275,166,43,188,351,238,228,0,86,87,93,94,274,273,276,277,43,187,188,228,227,0,54,86,94,95,275,274,277,278,43,301,187,227,234,0,50,54,95,66,166,275,278,169,43,228,238,366,190,0,94,93,91,92,277,276,279,280,43,227,228,190,189,0,95,94,92,56,278,277,280,281,43,234,227,189,300,0,66,95,56,44,169,278,281,172,43,190,366,246,226,0,86,87,96,97,280,279,282,283,43,189,190,226,225,0,54,86,97,98,281,280,283,284,43,300,189,225,242,0,50,54,98,69,172,281,284,175,43,226,246,354,192,0,97,96,91,92,283,282,285,286,43,225,226,192,191,0,98,97,92,56,284,283,286,287,43,242,225,191,299,0,69,98,56,44,175,284,287,178,43,192,354,247,224,0,86,87,99,100,286,285,288,289,43,191,192,224,223,0,54,86,100,101,287,286,289,290,43,299,191,223,243,0,50,54,101,72,178,287,290,181,43,224,247,367,194,0,100,99,91,92,289,288,291,292,43,223,224,194,193,0,101,100,92,56,290,289,292,293,43,243,223,193,298,0,72,101,56,44,181,290,293,184,43,196,355,255,222,0,86,87,102,103,294,295,296,297,43,195,196,222,221,0,54,86,103,104,298,294,297,299,43,297,195,221,252,0,50,54,104,105,191,298,299,188,43,222,255,365,186,0,103,102,91,92,297,296,268,267,43,221,222,186,185,0,104,103,92,56,299,297,267,271,43,252,221,185,302,0,105,104,56,44,188,299,271,161,43,200,356,256,220,0,86,87,106,107,300,301,302,303,43,199,200,220,219,0,54,86,107,108,304,300,303,305,43,295,199,219,253,0,50,54,108,62,150,304,305,193,43,220,256,355,196,0,107,106,91,92,303,302,295,294,43,219,220,196,195,0,108,107,92,56,305,303,294,298,43,253,219,195,297,0,62,108,56,44,193,305,298,191,43,194,367,264,218,0,86,87,109,110,292,291,306,307,43,193,194,218,217,0,54,86,110,111,293,292,307,308,43,298,193,217,260,0,50,54,111,75,184,293,308,196,43,218,264,364,206,0,110,109,91,92,307,306,309,310,43,217,218,206,205,0,111,110,92,56,308,307,310,311,43,260,217,205,292,0,75,111,56,44,196,308,311,199,43,206,364,265,216,0,86,87,112,113,310,309,312,313,43,205,206,216,215,0,54,86,113,114,311,310,313,314,43,292,205,215,261,0,50,54,114,78,199,311,314,202,43,216,265,360,208,0,113,112,91,92,313,312,315,316,43,215,216,208,207,0,114,113,92,56,314,313,316,317,43,261,215,207,291,0,78,114,56,44,202,314,317,205,43,178,307,288,213,0,56,44,50,54,255,212,213,318,43,167,178,213,214,0,92,56,54,86,256,255,318,319,43,166,167,214,363,0,91,92,86,87,242,256,319,320,43,179,306,307,178,0,56,44,50,54,321,216,212,255,43,180,179,178,169,0,92,56,54,86,322,321,255,258,43,353,180,169,168,0,91,92,86,87,323,322,258,239,43,181,305,306,179,0,56,44,50,54,259,139,216,321,43,171,181,179,180,0,92,56,54,86,260,259,321,322,43,170,171,180,353,0,91,92,86,87,248,260,322,323,43,182,304,305,181,0,56,44,50,54,324,137,139,259,43,183,182,181,173,0,92,56,54,86,325,324,259,262,43,352,183,173,172,0,91,92,86,87,326,325,262,245,43,201,294,303,184,0,56,44,50,54,327,127,129,263,43,202,201,184,175,0,92,56,54,86,328,327,263,266,43,359,202,175,174,0,91,92,86,87,329,328,266,253,43,184,303,304,182,0,56,44,50,54,263,129,137,324,43,177,184,182,183,0,92,56,54,86,264,263,324,325,43,176,177,183,352,0,91,92,86,87,250,264,325,326,43,197,296,293,203,0,56,44,50,54,330,151,147,331,43,198,197,203,204,0,92,56,54,86,332,330,331,333,43,357,198,204,358,0,91,92,86,87,334,332,333,335,43,209,290,291,207,0,56,44,50,54,336,219,205,317,43,210,209,207,208,0,92,56,54,86,337,336,317,316,43,361,210,208,360,0,91,92,86,87,338,337,316,315,43,199,295,296,197,0,56,44,50,54,304,150,151,330,43,200,199,197,198,0,92,56,54,86,300,304,330,332,43,356,200,198,357,0,91,92,86,87,301,300,332,334,43,203,293,294,201,0,56,44,50,54,331,147,127,327,43,204,203,201,202,0,92,56,54,86,333,331,327,328,43,358,204,202,359,0,91,92,86,87,335,333,328,329,43,211,289,290,209,0,56,44,50,54,339,222,219,336,43,212,211,209,210,0,92,56,54,86,340,339,336,337,43,362,212,210,361,0,91,92,86,87,341,340,337,338,43,213,288,289,211,0,56,44,50,54,318,213,222,339,43,214,213,211,212,0,92,56,54,86,319,318,339,340,43,363,214,212,362,0,91,92,86,87,320,319,340,341,43,887,231,237,365,0,6,115,116,30,342,343,269,268,43,888,239,231,887,0,5,117,115,6,344,345,343,342,43,351,237,231,239,0,16,116,115,117,273,269,343,345,43,882,232,239,888,0,5,118,119,6,346,347,345,344,43,366,238,232,882,0,16,120,118,5,279,276,347,346,43,351,239,232,238,0,30,119,118,120,273,345,347,276,43,651,240,248,644,0,5,121,122,6,348,349,350,351,43,367,247,240,651,0,16,123,121,5,291,288,349,348,43,354,248,240,247,0,30,122,121,123,285,350,349,288,43,645,241,246,366,0,6,124,125,30,352,353,282,279,43,644,248,241,645,0,5,126,124,6,351,350,353,352,43,354,246,241,248,0,16,125,124,126,285,282,353,350,43,642,250,256,356,0,6,127,128,30,354,355,302,301,43,643,257,250,642,0,5,129,127,6,356,357,355,354,43,355,256,250,257,0,16,128,127,129,295,302,355,357,43,637,251,257,643,0,5,130,131,6,358,359,357,356,43,365,255,251,637,0,16,132,130,5,268,296,359,358,43,355,257,251,255,0,30,131,130,132,295,357,359,296,43,404,258,266,397,0,5,133,134,6,360,361,362,363,43,360,265,258,404,0,16,135,133,5,315,312,361,360,43,364,266,258,265,0,30,134,133,135,309,362,361,312,43,398,259,264,367,0,6,136,137,30,364,365,306,291,43,397,266,259,398,0,5,138,136,6,363,362,365,364,43,364,264,259,266,0,16,137,136,138,309,306,365,362,43,900,272,309,320,0,6,30,16,5,133,366,215,130,43,890,322,309,272,0,6,5,16,30,367,209,215,366,43,272,900,281,269,0,139,30,50,140,366,133,368,369,43,890,272,269,280,0,16,139,140,44,367,366,369,370,43,913,267,271,905,0,5,141,142,6,15,371,372,11,43,280,269,267,913,0,44,140,141,5,370,369,371,15,43,281,271,267,269,0,50,142,141,140,368,372,371,369,43,273,896,282,270,0,143,16,44,45,135,122,373,374,43,900,273,270,281,0,30,143,45,50,133,135,374,368,43,908,268,270,282,0,5,144,45,44,12,375,374,373,43,905,271,268,908,0,6,142,144,5,11,372,375,12,43,281,270,268,271,0,50,45,144,142,368,374,375,372,43,892,316,322,890,0,6,30,16,5,376,210,209,367,43,892,891,315,316,0,6,30,16,5,376,377,221,210,43,899,314,315,891,0,6,30,16,5,378,218,221,377,43,899,893,313,314,0,6,30,16,5,378,236,207,218,43,278,891,892,274,0,50,30,16,44,379,377,376,380,43,912,278,274,911,0,6,50,44,5,18,379,380,27,43,274,892,890,280,0,44,16,30,50,380,376,367,370,43,911,274,280,913,0,5,44,50,6,27,380,370,15,43,909,276,275,15,0,5,44,50,6,22,227,230,25,43,283,914,15,275,0,44,5,6,50,231,9,25,230,43,277,897,894,276,0,50,30,16,44,381,143,145,227,43,907,277,276,909,0,6,50,44,5,20,381,227,22,43,282,896,897,277,0,50,30,16,44,373,122,143,381,43,908,282,277,907,0,6,50,44,5,12,373,381,20,43,279,899,891,278,0,50,30,16,44,382,378,377,379,43,14,279,278,912,0,6,50,44,5,16,382,379,18,43,284,893,899,279,0,44,16,30,50,383,236,378,382,43,910,284,279,14,0,5,44,50,6,0,383,382,16,43,283,889,901,285,0,44,16,30,50,231,226,233,384,43,914,283,285,904,0,5,44,50,6,9,231,384,7,43,286,902,893,284,0,50,30,16,44,385,235,236,383,43,903,286,284,910,0,6,50,44,5,3,385,383,0,43,285,901,898,287,0,50,30,16,44,384,233,234,386,43,904,285,287,906,0,6,50,44,5,7,384,386,5,43,287,898,902,286,0,44,16,30,50,386,234,235,385,43,906,287,286,903,0,5,44,50,6,5,386,385,3,43,637,382,887,365,0,6,5,16,30,358,387,342,268,43,645,366,882,376,0,6,5,16,30,352,279,346,388,43,398,367,651,371,0,6,5,16,30,364,291,348,389,43,641,357,358,640,0,6,5,16,30,390,334,335,391,43,404,403,361,360,0,6,5,16,30,360,392,338,315,43,639,640,327,328,0,6,5,16,30,393,391,394,395,43,402,330,329,403,0,6,5,16,30,396,397,398,392,43,333,176,352,323,0,6,5,16,30,251,250,326,399,43,334,333,323,324,0,6,5,16,30,400,251,399,401,43,885,334,324,884,0,6,5,16,30,402,400,401,403,43,323,352,172,339,0,6,5,16,30,399,326,245,244,43,324,323,339,340,0,6,5,16,30,401,399,244,404,43,884,324,340,883,0,6,5,16,30,403,401,404,405,43,325,353,168,345,0,6,5,16,30,406,323,239,238,43,326,325,345,346,0,6,5,16,30,407,406,238,408,43,648,326,346,649,0,6,5,16,30,409,407,408,410,43,341,170,353,325,0,6,5,16,30,247,248,323,406,43,342,341,325,326,0,6,5,16,30,411,247,406,407,43,647,342,326,648,0,6,5,16,30,412,411,407,409,43,640,358,359,327,0,6,5,16,30,391,335,329,394,43,327,359,174,337,0,6,5,16,30,394,329,253,254,43,328,327,337,338,0,6,5,16,30,395,394,254,413,43,639,328,338,638,0,6,5,16,30,393,395,413,414,43,329,362,361,403,0,6,5,16,30,398,341,338,392,43,331,363,362,329,0,6,5,16,30,415,320,341,398,43,332,331,329,330,0,6,5,16,30,416,415,398,397,43,401,332,330,402,0,6,5,16,30,417,416,397,396,43,347,166,363,331,0,6,5,16,30,241,242,320,415,43,348,347,331,332,0,6,5,16,30,418,241,415,416,43,400,348,332,401,0,6,5,16,30,419,418,416,417,43,336,335,333,334,0,6,5,16,30,420,252,251,400,43,380,336,334,885,0,6,5,16,30,421,420,400,402,43,338,337,335,336,0,6,5,16,30,413,254,252,420,43,638,338,336,380,0,6,5,16,30,414,413,420,421,43,340,339,343,344,0,6,5,16,30,404,244,243,422,43,883,340,344,375,0,6,5,16,30,405,404,422,423,43,344,343,341,342,0,6,5,16,30,422,243,247,411,43,375,344,342,647,0,6,5,16,30,423,422,411,412,43,346,345,349,350,0,6,5,16,30,408,238,237,424,43,649,346,350,370,0,6,5,16,30,410,408,424,425,43,350,349,347,348,0,6,5,16,30,424,237,241,418,43,370,350,348,400,0,6,5,16,30,425,424,418,419,43,641,642,356,357,0,6,5,16,30,390,354,301,334,43,372,390,388,368,0,6,5,16,30,426,427,428,429,43,389,372,368,387,0,6,5,16,30,430,426,429,431,43,368,388,650,369,0,6,5,16,30,429,428,432,433,43,387,368,369,399,0,6,5,16,30,431,429,433,434,43,370,400,399,369,0,6,5,16,30,425,419,434,433,43,649,370,369,650,0,6,5,16,30,410,425,433,432,43,372,389,398,371,0,6,5,16,30,426,430,364,389,43,390,372,371,651,0,6,5,16,30,427,426,389,348,43,377,392,386,373,0,6,5,16,30,435,436,437,438,43,391,377,373,385,0,6,5,16,30,439,435,438,440,43,373,386,393,374,0,6,5,16,30,438,437,441,442,43,385,373,374,646,0,6,5,16,30,440,438,442,443,43,375,647,646,374,0,6,5,16,30,423,412,443,442,43,883,375,374,393,0,6,5,16,30,405,423,442,441,43,377,391,645,376,0,6,5,16,30,435,439,352,388,43,392,377,376,882,0,6,5,16,30,436,435,388,346,43,381,396,384,378,0,6,5,16,30,444,445,446,447,43,394,381,378,383,0,6,5,16,30,448,444,447,449,43,378,384,395,379,0,6,5,16,30,447,446,450,451,43,383,378,379,886,0,6,5,16,30,449,447,451,452,43,379,395,638,380,0,6,5,16,30,451,450,414,421,43,886,379,380,885,0,6,5,16,30,452,451,421,402,43,382,637,396,381,0,6,5,16,30,387,358,445,444,43,887,382,381,394,0,6,5,16,30,342,387,444,448,43,556,395,384,396,0,6,5,16,30,453,450,446,445,43,886,806,394,383,0,6,5,16,30,452,454,448,449,43,802,393,386,392,0,6,5,16,30,455,441,437,436,43,727,391,385,646,0,6,5,16,30,456,439,440,443,43,481,389,387,399,0,6,5,16,30,457,430,431,434,43,731,650,388,390,0,6,5,16,30,458,432,428,427,43,427,406,408,429,0,6,5,16,30,459,460,461,462,43,429,408,467,430,0,6,5,16,30,462,461,463,464,43,430,467,466,431,0,6,5,16,30,464,463,465,466,43,431,466,465,432,0,6,5,16,30,466,465,467,468,43,432,465,416,433,0,6,5,16,30,468,467,469,470,43,433,416,418,434,0,6,5,16,30,470,469,471,472,43,406,435,437,408,0,6,5,16,30,460,473,474,461,43,408,437,438,410,0,6,5,16,30,461,474,475,476,43,410,438,439,412,0,6,5,16,30,476,475,477,478,43,412,439,440,414,0,6,5,16,30,478,477,479,480,43,414,440,441,416,0,6,5,16,30,480,479,481,469,43,416,441,442,418,0,6,5,16,30,469,481,482,471,43,425,449,450,426,0,6,5,16,30,483,484,485,486,43,426,450,448,424,0,6,5,16,30,486,485,487,488,43,450,405,407,448,0,6,5,16,30,485,489,490,487,43,424,448,447,423,0,6,5,16,30,488,487,491,492,43,448,407,461,447,0,6,5,16,30,487,490,493,491,43,423,447,446,422,0,6,5,16,30,492,491,494,495,43,447,461,460,446,0,6,5,16,30,491,493,496,494,43,422,446,445,421,0,6,5,16,30,495,494,497,498,43,446,460,459,445,0,6,5,16,30,494,496,499,497,43,421,445,444,420,0,6,5,16,30,498,497,500,501,43,445,459,415,444,0,6,5,16,30,497,499,502,500,43,420,444,443,419,0,6,5,16,30,501,500,503,504,43,444,415,417,443,0,6,5,16,30,500,502,505,503,43,449,425,419,443,0,6,5,16,30,484,483,504,503,43,405,451,453,407,0,6,5,16,30,489,506,507,490,43,407,453,454,409,0,6,5,16,30,490,507,508,509,43,409,454,455,411,0,6,5,16,30,509,508,510,511,43,411,455,456,413,0,6,5,16,30,511,510,512,513,43,413,456,457,415,0,6,5,16,30,513,512,514,502,43,415,457,458,417,0,6,5,16,30,502,514,515,505,43,411,462,463,409,0,6,5,16,30,511,516,517,509,43,462,460,461,463,0,6,5,16,30,516,496,493,517,43,413,464,462,411,0,6,5,16,30,513,518,516,511,43,464,459,460,462,0,6,5,16,30,518,499,496,516,43,407,409,463,461,0,6,5,16,30,490,509,517,493,43,413,415,459,464,0,6,5,16,30,513,502,499,518,43,414,468,469,412,0,6,5,16,30,480,519,520,478,43,468,465,466,469,0,6,5,16,30,519,467,465,520,43,412,469,470,410,0,6,5,16,30,478,520,521,476,43,469,466,467,470,0,6,5,16,30,520,465,463,521,43,414,416,465,468,0,6,5,16,30,480,469,467,519,43,408,410,470,467,0,6,5,16,30,461,476,521,463,43,452,472,471,451,0,6,5,16,30,522,523,524,506,43,472,428,427,471,0,6,5,16,30,523,525,459,524,43,451,471,473,453,0,6,5,16,30,506,524,526,507,43,471,427,429,473,0,6,5,16,30,524,459,462,526,43,453,473,474,454,0,6,5,16,30,507,526,527,508,43,473,429,430,474,0,6,5,16,30,526,462,464,527,43,454,474,475,455,0,6,5,16,30,508,527,528,510,43,474,430,431,475,0,6,5,16,30,527,464,466,528,43,455,475,476,456,0,6,5,16,30,510,528,529,512,43,475,431,432,476,0,6,5,16,30,528,466,468,529,43,456,476,477,457,0,6,5,16,30,512,529,530,514,43,476,432,433,477,0,6,5,16,30,529,468,470,530,43,457,477,478,458,0,6,5,16,30,514,530,531,515,43,477,433,434,478,0,6,5,16,30,530,470,472,531,43,428,472,478,434,0,6,5,16,30,525,523,531,472,43,472,452,458,478,0,6,5,16,30,523,522,515,531,43,436,480,479,435,0,6,5,16,30,532,533,534,473,43,480,397,398,479,0,6,5,16,30,533,363,364,534,43,435,479,481,437,0,6,5,16,30,473,534,457,474,43,479,398,389,481,0,6,5,16,30,534,364,430,457,43,437,481,482,438,0,6,5,16,30,474,457,535,475,43,481,399,400,482,0,6,5,16,30,457,434,419,535,43,438,482,483,439,0,6,5,16,30,475,535,536,477,43,482,400,401,483,0,6,5,16,30,535,419,417,536,43,439,483,484,440,0,6,5,16,30,477,536,537,479,43,483,401,402,484,0,6,5,16,30,536,417,396,537,43,440,484,485,441,0,6,5,16,30,479,537,538,481,43,484,402,403,485,0,6,5,16,30,537,396,392,538,43,441,485,486,442,0,6,5,16,30,481,538,539,482,43,485,403,404,486,0,6,5,16,30,538,392,360,539,43,397,480,486,404,0,6,5,16,30,363,533,539,360,43,480,436,442,486,0,6,5,16,30,533,532,482,539,43,458,452,487,488,0,6,5,16,30,515,522,540,541,43,452,451,489,487,0,6,5,16,30,522,506,542,540,43,417,458,488,490,0,6,5,16,30,505,515,541,543,43,451,405,491,489,0,6,5,16,30,506,489,544,542,43,449,443,492,493,0,6,5,16,30,484,503,545,546,43,450,449,493,494,0,6,5,16,30,485,484,546,547,43,405,450,494,491,0,6,5,16,30,489,485,547,544,43,443,417,490,492,0,6,5,16,30,503,505,543,545,43,492,490,495,496,0,6,5,16,30,545,543,548,549,43,491,494,498,497,0,6,5,16,30,544,547,550,551,43,494,493,499,498,0,6,5,16,30,547,546,552,550,43,493,492,496,499,0,6,5,16,30,546,545,549,552,43,489,491,497,500,0,6,5,16,30,542,544,551,553,43,490,488,501,495,0,6,5,16,30,543,541,554,548,43,487,489,500,502,0,6,5,16,30,540,542,553,555,43,488,487,502,501,0,6,5,16,30,541,540,555,554,43,499,503,497,498,0,6,5,16,30,552,556,551,550,43,503,499,496,495,0,6,5,16,30,556,552,549,548,43,503,502,500,497,0,6,5,16,30,556,555,553,551,43,502,503,495,501,0,6,5,16,30,555,556,548,554,43,442,436,504,505,0,6,5,16,30,482,532,557,558,43,436,435,506,504,0,6,5,16,30,532,473,559,557,43,418,442,505,507,0,6,5,16,30,471,482,558,560,43,435,406,508,506,0,6,5,16,30,473,460,561,559,43,428,434,510,509,0,6,5,16,30,525,472,562,563,43,427,428,509,511,0,6,5,16,30,459,525,563,564,43,434,418,507,510,0,6,5,16,30,472,471,560,562,43,406,427,511,508,0,6,5,16,30,460,459,564,561,43,508,511,512,513,0,6,5,16,30,561,564,565,566,43,510,507,514,515,0,6,5,16,30,562,560,567,568,43,511,509,516,512,0,6,5,16,30,564,563,569,565,43,509,510,515,516,0,6,5,16,30,563,562,568,569,43,506,508,513,517,0,6,5,16,30,559,561,566,570,43,507,505,518,514,0,6,5,16,30,560,558,571,567,43,504,506,517,519,0,6,5,16,30,557,559,570,572,43,505,504,519,518,0,6,5,16,30,558,557,572,571,43,516,520,513,512,0,6,5,16,30,569,573,566,565,43,520,516,515,514,0,6,5,16,30,573,569,568,567,43,520,519,517,513,0,6,5,16,30,573,572,570,566,43,519,520,514,518,0,6,5,16,30,572,573,567,571,43,522,521,527,523,0,6,5,16,30,574,575,576,577,43,521,522,524,528,0,6,5,16,30,575,574,578,579,43,521,525,526,527,0,6,5,16,30,575,580,581,576,43,525,521,528,529,0,6,5,16,30,580,575,579,582,43,536,537,522,523,0,6,5,16,30,583,584,574,577,43,537,535,524,522,0,6,5,16,30,584,585,578,574,43,534,536,523,527,0,6,5,16,30,586,583,577,576,43,535,533,528,524,0,6,5,16,30,585,587,579,578,43,532,531,526,525,0,6,5,16,30,588,589,581,580,43,530,532,525,529,0,6,5,16,30,590,588,580,582,43,531,534,527,526,0,6,5,16,30,589,586,576,581,43,533,530,529,528,0,6,5,16,30,587,590,582,579,43,635,614,530,533,0,6,5,16,30,591,592,590,587,43,607,623,534,531,0,6,5,16,30,593,594,586,589,43,614,613,532,530,0,6,5,16,30,592,595,588,590,43,613,607,531,532,0,6,5,16,30,595,593,589,588,43,606,635,533,535,0,6,5,16,30,596,591,587,585,43,623,599,536,534,0,6,5,16,30,594,597,583,586,43,605,606,535,537,0,6,5,16,30,598,596,585,584,43,599,605,537,536,0,6,5,16,30,597,598,584,583,43,539,538,546,540,0,6,5,16,30,599,600,601,602,43,538,539,541,544,0,6,5,16,30,600,599,603,604,43,538,542,545,546,0,6,5,16,30,600,605,606,601,43,542,538,544,543,0,6,5,16,30,605,600,604,607,43,553,554,539,540,0,6,5,16,30,608,609,599,602,43,554,552,541,539,0,6,5,16,30,609,610,603,599,43,551,553,540,546,0,6,5,16,30,611,608,602,601,43,552,550,544,541,0,6,5,16,30,610,612,604,603,43,548,549,545,542,0,6,5,16,30,613,614,606,605,43,547,548,542,543,0,6,5,16,30,615,613,605,607,43,550,547,543,544,0,6,5,16,30,612,615,607,604,43,549,551,546,545,0,6,5,16,30,614,611,601,606,43,598,624,551,549,0,6,5,16,30,616,617,611,614,43,636,591,547,550,0,6,5,16,30,618,619,615,612,43,591,592,548,547,0,6,5,16,30,619,620,613,615,43,592,598,549,548,0,6,5,16,30,620,616,614,613,43,590,636,550,552,0,6,5,16,30,621,618,612,610,43,624,583,553,551,0,6,5,16,30,617,622,608,611,43,589,590,552,554,0,6,5,16,30,623,621,610,609,43,583,589,554,553,0,6,5,16,30,622,623,609,608,43,561,605,599,555,0,6,5,16,30,624,598,597,625,43,643,561,555,637,0,6,5,16,30,356,624,625,358,43,556,396,637,555,0,6,5,16,30,453,445,358,625,43,600,556,555,599,0,6,5,16,30,626,453,625,597,43,557,638,395,556,0,6,5,16,30,627,414,450,453,43,601,557,556,600,0,6,5,16,30,628,627,453,626,43,558,639,638,557,0,6,5,16,30,629,393,414,627,43,602,558,557,601,0,6,5,16,30,630,629,627,628,43,559,640,639,558,0,6,5,16,30,631,391,393,629,43,603,559,558,602,0,6,5,16,30,632,631,629,630,43,560,641,640,559,0,6,5,16,30,633,390,391,631,43,604,560,559,603,0,6,5,16,30,634,633,631,632,43,562,642,641,560,0,6,5,16,30,635,354,390,633,43,606,562,560,604,0,6,5,16,30,596,635,633,634,43,561,643,642,562,0,6,5,16,30,624,356,354,635,43,605,561,562,606,0,6,5,16,30,598,624,635,596,43,569,589,583,563,0,6,5,16,30,636,623,622,637,43,613,569,563,607,0,6,5,16,30,595,636,637,593,43,564,608,607,563,0,6,5,16,30,638,639,593,637,43,584,564,563,583,0,6,5,16,30,640,638,637,622,43,565,609,608,564,0,6,5,16,30,641,642,639,638,43,585,565,564,584,0,6,5,16,30,643,641,638,640,43,566,610,609,565,0,6,5,16,30,644,645,642,641,43,586,566,565,585,0,6,5,16,30,646,644,641,643,43,567,611,610,566,0,6,5,16,30,647,648,645,644,43,587,567,566,586,0,6,5,16,30,649,647,644,646,43,568,612,611,567,0,6,5,16,30,650,651,648,647,43,588,568,567,587,0,6,5,16,30,652,650,647,649,43,570,614,612,568,0,6,5,16,30,653,592,651,650,43,590,570,568,588,0,6,5,16,30,621,653,650,652,43,569,613,614,570,0,6,5,16,30,636,595,592,653,43,589,569,570,590,0,6,5,16,30,623,636,653,621,43,633,631,571,574,0,6,5,16,30,654,655,656,657,43,627,625,576,573,0,6,5,16,30,658,659,660,661,43,572,575,574,571,0,6,5,16,30,662,663,657,656,43,629,572,571,631,0,6,5,16,30,664,662,656,655,43,573,576,575,572,0,6,5,16,30,661,660,663,662,43,627,573,572,629,0,6,5,16,30,658,661,662,664,43,628,626,582,577,0,6,5,16,30,665,666,667,668,43,634,632,578,580,0,6,5,16,30,669,670,671,672,43,577,582,581,579,0,6,5,16,30,668,667,673,674,43,628,577,579,630,0,6,5,16,30,665,668,674,675,43,579,581,580,578,0,6,5,16,30,674,673,672,671,43,630,579,578,632,0,6,5,16,30,675,674,671,670,43,626,584,583,624,0,6,5,16,30,666,640,622,617,43,628,585,584,626,0,6,5,16,30,665,643,640,666,43,630,586,585,628,0,6,5,16,30,675,646,643,665,43,632,587,586,630,0,6,5,16,30,670,649,646,675,43,634,588,587,632,0,6,5,16,30,669,652,649,670,43,636,590,588,634,0,6,5,16,30,618,621,652,669,43,592,616,622,598,0,6,5,16,30,620,676,677,616,43,597,626,624,598,0,6,5,16,30,678,666,617,616,43,621,597,598,622,0,6,5,16,30,679,678,616,677,43,596,582,626,597,0,6,5,16,30,680,667,666,678,43,620,596,597,621,0,6,5,16,30,681,680,678,679,43,595,581,582,596,0,6,5,16,30,682,673,667,680,43,619,595,596,620,0,6,5,16,30,683,682,680,681,43,594,580,581,595,0,6,5,16,30,684,672,673,682,43,618,594,595,619,0,6,5,16,30,685,684,682,683,43,593,634,580,594,0,6,5,16,30,686,669,672,684,43,617,593,594,618,0,6,5,16,30,687,686,684,685,43,591,636,634,593,0,6,5,16,30,619,618,669,686,43,615,591,593,617,0,6,5,16,30,688,619,686,687,43,616,592,591,615,0,6,5,16,30,676,620,619,688,43,625,600,599,623,0,6,5,16,30,659,626,597,594,43,627,601,600,625,0,6,5,16,30,658,628,626,659,43,629,602,601,627,0,6,5,16,30,664,630,628,658,43,631,603,602,629,0,6,5,16,30,655,632,630,664,43,633,604,603,631,0,6,5,16,30,654,634,632,655,43,635,606,604,633,0,6,5,16,30,591,596,634,654,43,608,625,623,607,0,6,5,16,30,639,659,594,593,43,609,576,625,608,0,6,5,16,30,642,660,659,639,43,610,575,576,609,0,6,5,16,30,645,663,660,642,43,611,574,575,610,0,6,5,16,30,648,657,663,645,43,612,633,574,611,0,6,5,16,30,651,654,657,648,43,614,635,633,612,0,6,5,16,30,592,591,654,651,43,673,653,655,675,0,6,5,16,30,689,690,691,692,43,675,655,713,676,0,6,5,16,30,692,691,693,694,43,676,713,712,677,0,6,5,16,30,694,693,695,696,43,677,712,711,678,0,6,5,16,30,696,695,697,698,43,678,711,663,679,0,6,5,16,30,698,697,699,700,43,679,663,665,680,0,6,5,16,30,700,699,701,702,43,653,681,683,655,0,6,5,16,30,690,703,704,691,43,655,683,684,657,0,6,5,16,30,691,704,705,706,43,657,684,685,659,0,6,5,16,30,706,705,707,708,43,659,685,686,661,0,6,5,16,30,708,707,709,710,43,661,686,687,663,0,6,5,16,30,710,709,711,699,43,663,687,688,665,0,6,5,16,30,699,711,712,701,43,672,696,694,671,0,6,5,16,30,713,714,715,716,43,696,652,654,694,0,6,5,16,30,714,717,718,715,43,671,694,693,670,0,6,5,16,30,716,715,719,720,43,694,654,707,693,0,6,5,16,30,715,718,721,719,43,670,693,692,669,0,6,5,16,30,720,719,722,723,43,693,707,706,692,0,6,5,16,30,719,721,724,722,43,669,692,691,668,0,6,5,16,30,723,722,725,726,43,692,706,705,691,0,6,5,16,30,722,724,727,725,43,668,691,690,667,0,6,5,16,30,726,725,728,729,43,691,705,662,690,0,6,5,16,30,725,727,730,728,43,667,690,689,666,0,6,5,16,30,729,728,731,732,43,690,662,664,689,0,6,5,16,30,728,730,733,731,43,652,697,699,654,0,6,5,16,30,717,734,735,718,43,654,699,700,656,0,6,5,16,30,718,735,736,737,43,656,700,701,658,0,6,5,16,30,737,736,738,739,43,658,701,702,660,0,6,5,16,30,739,738,740,741,43,660,702,703,662,0,6,5,16,30,741,740,742,730,43,662,703,704,664,0,6,5,16,30,730,742,743,733,43,658,708,709,656,0,6,5,16,30,739,744,745,737,43,708,706,707,709,0,6,5,16,30,744,724,721,745,43,660,710,708,658,0,6,5,16,30,741,746,744,739,43,710,705,706,708,0,6,5,16,30,746,727,724,744,43,654,656,709,707,0,6,5,16,30,718,737,745,721,43,660,662,705,710,0,6,5,16,30,741,730,727,746,43,661,714,715,659,0,6,5,16,30,710,747,748,708,43,714,711,712,715,0,6,5,16,30,747,697,695,748,43,659,715,716,657,0,6,5,16,30,708,748,749,706,43,715,712,713,716,0,6,5,16,30,748,695,693,749,43,661,663,711,714,0,6,5,16,30,710,699,697,747,43,655,657,716,713,0,6,5,16,30,691,706,749,693,43,698,718,717,697,0,6,5,16,30,750,751,752,734,43,718,674,673,717,0,6,5,16,30,751,753,689,752,43,697,717,719,699,0,6,5,16,30,734,752,754,735,43,717,673,675,719,0,6,5,16,30,752,689,692,754,43,699,719,720,700,0,6,5,16,30,735,754,755,736,43,719,675,676,720,0,6,5,16,30,754,692,694,755,43,700,720,721,701,0,6,5,16,30,736,755,756,738,43,720,676,677,721,0,6,5,16,30,755,694,696,756,43,701,721,722,702,0,6,5,16,30,738,756,757,740,43,721,677,678,722,0,6,5,16,30,756,696,698,757,43,702,722,723,703,0,6,5,16,30,740,757,758,742,43,722,678,679,723,0,6,5,16,30,757,698,700,758,43,703,723,724,704,0,6,5,16,30,742,758,759,743,43,723,679,680,724,0,6,5,16,30,758,700,702,759,43,674,718,724,680,0,6,5,16,30,753,751,759,702,43,718,698,704,724,0,6,5,16,30,751,750,743,759,43,682,726,725,681,0,6,5,16,30,760,761,762,703,43,726,644,645,725,0,6,5,16,30,761,351,352,762,43,681,725,727,683,0,6,5,16,30,703,762,456,704,43,725,645,391,727,0,6,5,16,30,762,352,439,456,43,683,727,728,684,0,6,5,16,30,704,456,763,705,43,727,646,647,728,0,6,5,16,30,456,443,412,763,43,684,728,729,685,0,6,5,16,30,705,763,764,707,43,728,647,648,729,0,6,5,16,30,763,412,409,764,43,685,729,730,686,0,6,5,16,30,707,764,765,709,43,729,648,649,730,0,6,5,16,30,764,409,410,765,43,686,730,731,687,0,6,5,16,30,709,765,458,711,43,730,649,650,731,0,6,5,16,30,765,410,432,458,43,687,731,732,688,0,6,5,16,30,711,458,766,712,43,731,390,651,732,0,6,5,16,30,458,427,348,766,43,644,726,732,651,0,6,5,16,30,351,761,766,348,43,726,682,688,732,0,6,5,16,30,761,760,712,766,43,704,698,733,734,0,6,5,16,30,743,750,767,768,43,698,697,735,733,0,6,5,16,30,750,734,769,767,43,664,704,734,736,0,6,5,16,30,733,743,768,770,43,697,652,737,735,0,6,5,16,30,734,717,771,769,43,695,689,738,739,0,6,5,16,30,772,731,773,774,43,696,695,739,740,0,6,5,16,30,714,772,774,775,43,652,696,740,737,0,6,5,16,30,717,714,775,771,43,689,664,736,738,0,6,5,16,30,731,733,770,773,43,738,736,741,742,0,6,5,16,30,773,770,776,777,43,737,740,744,743,0,6,5,16,30,771,775,778,779,43,740,739,745,744,0,6,5,16,30,775,774,780,778,43,739,738,742,745,0,6,5,16,30,774,773,777,780,43,735,737,743,746,0,6,5,16,30,769,771,779,781,43,736,734,747,741,0,6,5,16,30,770,768,782,776,43,733,735,746,748,0,6,5,16,30,767,769,781,783,43,734,733,748,747,0,6,5,16,30,768,767,783,782,43,745,749,743,744,0,6,5,16,30,780,784,779,778,43,749,745,742,741,0,6,5,16,30,784,780,777,776,43,749,748,746,743,0,6,5,16,30,784,783,781,779,43,748,749,741,747,0,6,5,16,30,783,784,776,782,43,688,682,750,751,0,6,5,16,30,712,760,785,786,43,682,681,752,750,0,6,5,16,30,760,703,787,785,43,665,688,751,753,0,6,5,16,30,701,712,786,788,43,681,653,754,752,0,6,5,16,30,703,690,789,787,43,674,680,756,755,0,6,5,16,30,753,702,790,791,43,673,674,755,757,0,6,5,16,30,689,753,791,792,43,680,665,753,756,0,6,5,16,30,702,701,788,790,43,653,673,757,754,0,6,5,16,30,690,689,792,789,43,754,757,758,759,0,6,5,16,30,789,792,793,794,43,756,753,760,761,0,6,5,16,30,790,788,795,796,43,757,755,762,758,0,6,5,16,30,792,791,797,793,43,755,756,761,762,0,6,5,16,30,791,790,796,797,43,752,754,759,763,0,6,5,16,30,787,789,794,798,43,753,751,764,760,0,6,5,16,30,788,786,799,795,43,750,752,763,765,0,6,5,16,30,785,787,798,800,43,751,750,765,764,0,6,5,16,30,786,785,800,799,43,762,766,759,758,0,6,5,16,30,797,801,794,793,43,766,762,761,760,0,6,5,16,30,801,797,796,795,43,766,765,763,759,0,6,5,16,30,801,800,798,794,43,765,766,760,764,0,6,5,16,30,800,801,795,799,43,768,767,773,769,0,6,5,16,30,802,803,804,805,43,767,768,770,774,0,6,5,16,30,803,802,806,807,43,767,771,772,773,0,6,5,16,30,803,808,809,804,43,771,767,774,775,0,6,5,16,30,808,803,807,810,43,782,783,768,769,0,6,5,16,30,811,812,802,805,43,783,781,770,768,0,6,5,16,30,812,813,806,802,43,780,782,769,773,0,6,5,16,30,814,811,805,804,43,781,779,774,770,0,6,5,16,30,813,815,807,806,43,778,777,772,771,0,6,5,16,30,816,817,809,808,43,776,778,771,775,0,6,5,16,30,818,816,808,810,43,777,780,773,772,0,6,5,16,30,817,814,804,809,43,779,776,775,774,0,6,5,16,30,815,818,810,807,43,880,860,776,779,0,6,5,16,30,819,820,818,815,43,853,868,780,777,0,6,5,16,30,821,822,814,817,43,860,859,778,776,0,6,5,16,30,820,823,816,818,43,859,853,777,778,0,6,5,16,30,823,821,817,816,43,852,880,779,781,0,6,5,16,30,824,819,815,813,43,868,845,782,780,0,6,5,16,30,822,825,811,814,43,851,852,781,783,0,6,5,16,30,826,824,813,812,43,845,851,783,782,0,6,5,16,30,825,826,812,811,43,785,784,792,786,0,6,5,16,30,827,828,829,830,43,784,785,787,790,0,6,5,16,30,828,827,831,832,43,784,788,791,792,0,6,5,16,30,828,833,834,829,43,788,784,790,789,0,6,5,16,30,833,828,832,835,43,799,800,785,786,0,6,5,16,30,836,837,827,830,43,800,798,787,785,0,6,5,16,30,837,838,831,827,43,797,799,786,792,0,6,5,16,30,839,836,830,829,43,798,796,790,787,0,6,5,16,30,838,840,832,831,43,794,795,791,788,0,6,5,16,30,841,842,834,833,43,793,794,788,789,0,6,5,16,30,843,841,833,835,43,796,793,789,790,0,6,5,16,30,840,843,835,832,43,795,797,792,791,0,6,5,16,30,842,839,829,834,43,844,869,797,795,0,6,5,16,30,844,845,839,842,43,881,837,793,796,0,6,5,16,30,846,847,843,840,43,837,838,794,793,0,6,5,16,30,847,848,841,843,43,838,844,795,794,0,6,5,16,30,848,844,842,841,43,836,881,796,798,0,6,5,16,30,849,846,840,838,43,869,829,799,797,0,6,5,16,30,845,850,836,839,43,835,836,798,800,0,6,5,16,30,851,849,838,837,43,829,835,800,799,0,6,5,16,30,850,851,837,836,43,807,851,845,801,0,6,5,16,30,852,826,825,853,43,888,807,801,882,0,6,5,16,30,344,852,853,346,43,802,392,882,801,0,6,5,16,30,455,436,346,853,43,846,802,801,845,0,6,5,16,30,854,455,853,825,43,803,883,393,802,0,6,5,16,30,855,405,441,455,43,847,803,802,846,0,6,5,16,30,856,855,455,854,43,804,884,883,803,0,6,5,16,30,857,403,405,855,43,848,804,803,847,0,6,5,16,30,858,857,855,856,43,805,885,884,804,0,6,5,16,30,859,402,403,857,43,849,805,804,848,0,6,5,16,30,860,859,857,858,43,806,886,885,805,0,6,5,16,30,454,452,402,859,43,850,806,805,849,0,6,5,16,30,861,454,859,860,43,808,887,394,806,0,6,5,16,30,862,342,448,454,43,852,808,806,850,0,6,5,16,30,824,862,454,861,43,807,888,887,808,0,6,5,16,30,852,344,342,862,43,851,807,808,852,0,6,5,16,30,826,852,862,824,43,815,835,829,809,0,6,5,16,30,863,851,850,864,43,859,815,809,853,0,6,5,16,30,823,863,864,821,43,810,854,853,809,0,6,5,16,30,865,866,821,864,43,830,810,809,829,0,6,5,16,30,867,865,864,850,43,811,855,854,810,0,6,5,16,30,868,869,866,865,43,831,811,810,830,0,6,5,16,30,870,868,865,867,43,812,856,855,811,0,6,5,16,30,871,872,869,868,43,832,812,811,831,0,6,5,16,30,873,871,868,870,43,813,857,856,812,0,6,5,16,30,874,875,872,871,43,833,813,812,832,0,6,5,16,30,876,874,871,873,43,814,858,857,813,0,6,5,16,30,877,878,875,874,43,834,814,813,833,0,6,5,16,30,879,877,874,876,43,816,860,858,814,0,6,5,16,30,880,820,878,877,43,836,816,814,834,0,6,5,16,30,849,880,877,879,43,815,859,860,816,0,6,5,16,30,863,823,820,880,43,835,815,816,836,0,6,5,16,30,851,863,880,849,43,878,876,817,820,0,6,5,16,30,881,882,883,884,43,872,870,822,819,0,6,5,16,30,885,886,887,888,43,818,821,820,817,0,6,5,16,30,889,890,884,883,43,874,818,817,876,0,6,5,16,30,891,889,883,882,43,819,822,821,818,0,6,5,16,30,888,887,890,889,43,872,819,818,874,0,6,5,16,30,885,888,889,891,43,873,871,828,823,0,6,5,16,30,892,893,894,895,43,879,877,824,826,0,6,5,16,30,896,897,898,899,43,823,828,827,825,0,6,5,16,30,895,894,900,901,43,873,823,825,875,0,6,5,16,30,892,895,901,902,43,825,827,826,824,0,6,5,16,30,901,900,899,898,43,875,825,824,877,0,6,5,16,30,902,901,898,897,43,871,830,829,869,0,6,5,16,30,893,867,850,845,43,873,831,830,871,0,6,5,16,30,892,870,867,893,43,875,832,831,873,0,6,5,16,30,902,873,870,892,43,877,833,832,875,0,6,5,16,30,897,876,873,902,43,879,834,833,877,0,6,5,16,30,896,879,876,897,43,881,836,834,879,0,6,5,16,30,846,849,879,896,43,843,871,869,844,0,6,5,16,30,903,893,845,844,43,866,843,844,867,0,6,5,16,30,904,903,844,905,43,842,828,871,843,0,6,5,16,30,906,894,893,903,43,865,842,843,866,0,6,5,16,30,907,906,903,904,43,841,827,828,842,0,6,5,16,30,908,900,894,906,43,864,841,842,865,0,6,5,16,30,909,908,906,907,43,840,826,827,841,0,6,5,16,30,910,899,900,908,43,863,840,841,864,0,6,5,16,30,911,910,908,909,43,839,879,826,840,0,6,5,16,30,912,896,899,910,43,862,839,840,863,0,6,5,16,30,913,912,910,911,43,837,881,879,839,0,6,5,16,30,847,846,896,912,43,861,837,839,862,0,6,5,16,30,914,847,912,913,43,870,846,845,868,0,6,5,16,30,886,854,825,822,43,872,847,846,870,0,6,5,16,30,885,856,854,886,43,874,848,847,872,0,6,5,16,30,891,858,856,885,43,876,849,848,874,0,6,5,16,30,882,860,858,891,43,878,850,849,876,0,6,5,16,30,881,861,860,882,43,880,852,850,878,0,6,5,16,30,819,824,861,881,43,854,870,868,853,0,6,5,16,30,866,886,822,821,43,855,822,870,854,0,6,5,16,30,869,887,886,866,43,856,821,822,855,0,6,5,16,30,872,890,887,869,43,857,820,821,856,0,6,5,16,30,875,884,890,872,43,858,878,820,857,0,6,5,16,30,878,881,884,875,43,860,880,878,858,0,6,5,16,30,820,819,881,878,43,838,915,867,844,0,6,30,16,5,848,915,905,844,43,837,861,915,838,0,6,5,16,30,847,914,915,848,43,666,689,695,916,0,6,5,16,30,732,731,772,916,43,672,916,695,696,0,6,30,16,5,713,916,772,714,43,1827,1820,919,918,0,0,3,2,1,917,918,919,920,43,1820,1823,920,919,0,3,5,4,2,918,921,922,919,43,1823,1821,921,920,0,6,9,8,7,921,923,924,922,43,922,921,1821,1831,0,10,8,9,0,925,924,923,926,43,926,925,1825,1822,0,11,14,13,12,927,928,929,930,43,928,926,1822,1830,0,15,11,12,16,931,927,930,932,43,918,929,931,1827,0,17,19,18,16,920,933,934,917,43,1829,931,929,917,0,5,18,19,20,935,934,933,936,43,925,924,1824,1825,0,21,23,22,16,928,937,938,929,43,924,923,1826,1824,0,23,24,5,22,937,939,940,938,43,1831,932,930,922,0,5,16,25,20,926,941,942,925,43,923,930,932,1826,0,26,29,28,27,939,942,941,940,43,927,928,1830,1828,0,21,24,5,16,943,931,932,944,43,917,927,1828,1829,0,15,31,30,16,936,943,944,935,43,1030,1029,945,944,0,6,5,16,30,945,946,947,948,43,1032,935,945,1029,0,6,30,16,5,949,950,947,946,43,1032,1031,946,935,0,6,5,16,30,949,951,952,950,43,1035,937,946,1031,0,6,30,16,5,953,954,952,951,43,1036,947,937,1035,0,6,5,16,30,955,956,954,953,43,993,945,935,933,0,6,30,33,32,957,947,950,958,43,992,993,933,936,0,5,6,32,34,959,957,958,960,43,946,936,933,935,0,16,34,32,33,952,960,958,950,43,991,992,936,934,0,5,6,36,35,961,959,960,962,43,947,991,934,937,0,16,5,35,37,956,961,962,954,43,946,937,934,936,0,30,37,35,36,952,954,962,960,43,1036,1034,948,947,0,6,5,16,30,955,963,964,956,43,1034,1026,950,948,0,6,5,16,30,963,965,966,964,43,1026,1025,941,950,0,6,30,16,5,965,967,968,966,43,1027,949,941,1025,0,6,5,16,30,969,970,968,967,43,1028,940,949,1027,0,6,30,16,5,971,972,970,969,43,1033,943,940,1028,0,6,5,16,30,973,974,972,971,43,995,989,942,938,0,5,6,39,38,975,976,977,978,43,943,995,938,940,0,16,5,38,40,974,975,978,972,43,949,940,938,942,0,30,40,38,39,970,972,978,977,43,988,950,941,939,0,6,30,42,41,979,966,968,980,43,989,988,939,942,0,5,6,41,43,976,979,980,977,43,949,942,939,941,0,16,43,41,42,970,977,980,968,43,1033,1030,944,943,0,6,5,16,30,973,945,948,974,43,995,943,944,994,0,6,30,16,5,975,974,948,981,43,994,944,945,993,0,6,30,16,5,981,948,947,957,43,991,947,948,990,0,6,30,16,5,961,956,964,982,43,990,948,950,988,0,6,30,16,5,982,964,966,979,43,964,965,973,972,0,6,30,16,5,983,984,985,986,43,965,963,971,973,0,6,30,16,5,984,987,988,985,43,973,971,952,951,0,6,30,16,5,985,988,989,990,43,963,962,970,971,0,6,30,16,5,987,991,992,988,43,971,970,984,952,0,6,30,16,5,988,992,993,989,43,962,961,969,970,0,6,30,16,5,991,994,995,992,43,970,969,983,984,0,6,30,16,5,992,995,996,993,43,961,960,968,969,0,6,30,16,5,994,997,998,995,43,969,968,982,983,0,6,30,16,5,995,998,999,996,43,960,959,967,968,0,6,30,16,5,997,1000,1001,998,43,968,967,956,982,0,6,30,16,5,998,1001,1002,999,43,959,958,966,967,0,6,30,16,5,1000,1003,1004,1001,43,967,966,957,956,0,6,30,16,5,1001,1004,1005,1002,43,972,966,958,964,0,6,30,16,5,986,1004,1003,983,43,951,952,976,974,0,6,30,16,5,990,989,1006,1007,43,952,953,977,976,0,6,30,16,5,989,1008,1009,1006,43,953,954,978,977,0,6,30,16,5,1008,1010,1011,1009,43,954,955,979,978,0,6,30,16,5,1010,1012,1013,1011,43,955,956,980,979,0,6,30,16,5,1012,1002,1014,1013,43,956,957,981,980,0,6,30,16,5,1002,1005,1015,1014,43,954,953,986,985,0,6,30,16,5,1010,1008,1016,1017,43,985,986,984,983,0,6,30,16,5,1017,1016,993,996,43,955,954,985,987,0,6,30,16,5,1012,1010,1017,1018,43,987,985,983,982,0,6,30,16,5,1018,1017,996,999,43,952,984,986,953,0,6,30,16,5,989,993,1016,1008,43,955,987,982,956,0,6,30,16,5,1012,1018,999,1002,43,975,974,988,989,0,6,30,16,5,1019,1007,979,976,43,974,976,990,988,0,6,30,16,5,1007,1006,982,979,43,976,977,991,990,0,6,30,16,5,1006,1009,961,982,43,977,978,992,991,0,6,30,16,5,1009,1011,959,961,43,978,979,993,992,0,6,30,16,5,1011,1013,957,959,43,979,980,994,993,0,6,30,16,5,1013,1014,981,957,43,980,981,995,994,0,6,30,16,5,1014,1015,975,981,43,989,995,981,975,0,6,30,16,5,976,975,1015,1019,43,981,997,996,975,0,6,30,16,5,1015,1020,1021,1019,43,975,996,998,974,0,6,30,16,5,1019,1021,1022,1007,43,957,999,997,981,0,6,30,16,5,1005,1023,1020,1015,43,974,998,1000,951,0,6,30,16,5,1007,1022,1024,990,43,972,1002,1001,966,0,6,30,16,5,986,1025,1026,1004,43,973,1003,1002,972,0,6,30,16,5,985,1027,1025,986,43,951,1000,1003,973,0,6,30,16,5,990,1024,1027,985,43,966,1001,999,957,0,6,30,16,5,1004,1026,1023,1005,43,1001,1005,1004,999,0,6,30,16,5,1026,1028,1029,1023,43,1000,1006,1007,1003,0,6,30,16,5,1024,1030,1031,1027,43,1003,1007,1008,1002,0,6,30,16,5,1027,1031,1032,1025,43,1002,1008,1005,1001,0,6,30,16,5,1025,1032,1028,1026,43,998,1009,1006,1000,0,6,30,16,5,1022,1033,1030,1024,43,999,1004,1010,997,0,6,30,16,5,1023,1029,1034,1020,43,996,1011,1009,998,0,6,30,16,5,1021,1035,1033,1022,43,997,1010,1011,996,0,6,30,16,5,1020,1034,1035,1021,43,1008,1007,1006,1012,0,6,30,16,5,1032,1031,1030,1036,43,1012,1004,1005,1008,0,6,30,16,5,1036,1029,1028,1032,43,1012,1006,1009,1011,0,6,30,16,5,1036,1030,1033,1035,43,1011,1010,1004,1012,0,6,30,16,5,1035,1034,1029,1036,43,1034,1022,1020,1026,0,44,47,46,45,963,1037,1038,965,43,1022,1042,1813,1020,0,47,16,48,46,1037,1039,1040,1038,43,1031,1021,1024,1035,0,16,49,0,5,951,1041,1042,953,43,1021,1211,1040,1024,0,49,50,6,0,1041,1043,1044,1042,43,1211,1220,1044,1040,0,49,0,5,16,1043,1045,1046,1044,43,1237,1817,1041,1046,0,44,50,30,16,1047,1048,1049,1050,43,1817,1190,1043,1041,0,46,51,50,45,1048,1051,1052,1049,43,1190,1813,1042,1043,0,47,46,45,44,1051,1040,1039,1052,43,1220,1221,1045,1044,0,49,0,5,16,1045,1053,1054,1046,43,1221,1222,1047,1045,0,49,0,5,16,1053,1055,1056,1054,43,1069,1237,1046,1048,0,49,52,51,30,1057,1047,1050,1058,43,1222,1069,1048,1047,0,52,53,50,51,1055,1057,1058,1056,43,1020,1013,1025,1026,0,49,53,44,16,1038,1059,967,965,43,1813,1814,1013,1020,0,30,50,53,49,1040,1060,1059,1038,43,1013,1016,1027,1025,0,49,53,44,16,1059,1061,969,967,43,1814,1811,1016,1013,0,30,50,53,49,1060,1062,1061,1059,43,1014,1021,1031,1032,0,53,55,54,50,1063,1041,951,949,43,1210,1211,1021,1014,0,44,56,55,53,1064,1043,1041,1063,43,1018,1015,1029,1030,0,53,55,54,50,1065,1066,946,945,43,1212,1213,1015,1018,0,44,56,55,53,1067,1068,1066,1065,43,1015,1014,1032,1029,0,53,55,54,50,1066,1063,949,946,43,1213,1210,1014,1015,0,44,56,55,53,1068,1064,1063,1066,43,1016,1017,1028,1027,0,44,50,30,16,1061,1069,971,969,43,1811,1229,1017,1016,0,5,6,50,44,1062,1070,1069,1061,43,1017,1019,1033,1028,0,57,60,59,58,1069,1071,973,971,43,1229,1062,1019,1017,0,51,30,60,57,1070,1072,1071,1069,43,1019,1018,1030,1033,0,61,57,58,62,1071,1065,945,973,43,1062,1212,1018,1019,0,50,51,57,61,1072,1067,1065,1071,43,1023,1022,1034,1036,0,44,53,0,5,1073,1037,963,955,43,1038,1042,1022,1023,0,16,49,53,44,1074,1039,1037,1073,43,1024,1023,1036,1035,0,53,50,6,0,1042,1073,955,953,43,1040,1038,1023,1024,0,49,30,50,53,1044,1074,1073,1042,43,1048,1037,1045,1047,0,6,30,16,5,1058,1075,1054,1056,43,1048,1046,1041,1037,0,6,5,16,30,1058,1050,1049,1075,43,1039,1037,1041,1043,0,44,50,30,16,1076,1075,1049,1052,43,1044,1045,1037,1039,0,5,6,50,44,1046,1054,1075,1076,43,1038,1039,1043,1042,0,49,0,5,16,1074,1076,1052,1039,43,1040,1044,1039,1038,0,30,6,0,49,1044,1046,1076,1074,43,1068,1049,1150,1219,0,51,64,63,50,1077,1078,1079,1080,43,1235,1152,1049,1068,0,30,65,64,51,1081,1082,1078,1077,43,1049,1067,1218,1150,0,64,47,44,63,1078,1083,1084,1079,43,1152,1225,1067,1049,0,65,16,47,64,1082,1085,1083,1078,43,1067,1050,1151,1218,0,51,67,66,50,1083,1086,1087,1084,43,1225,1153,1050,1067,0,30,68,67,51,1085,1088,1086,1083,43,1050,1066,1217,1151,0,67,47,44,66,1086,1089,1090,1087,43,1153,1236,1066,1050,0,68,16,47,67,1088,1091,1089,1086,43,1066,1051,1159,1217,0,51,70,69,50,1089,1092,1093,1090,43,1236,1161,1051,1066,0,30,71,70,51,1091,1094,1092,1089,43,1051,1065,1216,1159,0,70,47,44,69,1092,1095,1096,1093,43,1161,1227,1065,1051,0,71,16,47,70,1094,1097,1095,1092,43,1065,1052,1160,1216,0,51,73,72,50,1095,1098,1099,1096,43,1227,1162,1052,1065,0,30,74,73,51,1097,1100,1098,1095,43,1052,1064,1215,1160,0,73,47,44,72,1098,1101,1102,1099,43,1162,1238,1064,1052,0,74,16,47,73,1100,1103,1101,1098,43,1053,1068,1219,1169,0,49,0,5,16,1104,1077,1080,1105,43,1166,1235,1068,1053,0,30,6,0,49,1106,1081,1077,1104,43,1063,1053,1169,1214,0,0,49,16,5,1107,1104,1105,1108,43,1228,1166,1053,1063,0,6,30,49,0,1109,1106,1104,1107,43,1062,1054,1170,1212,0,51,58,62,50,1072,1110,1111,1067,43,1229,1171,1054,1062,0,30,59,58,51,1070,1112,1110,1072,43,1054,1063,1214,1170,0,58,47,44,62,1110,1107,1108,1111,43,1171,1228,1063,1054,0,59,16,47,58,1112,1109,1107,1110,43,1064,1055,1177,1215,0,51,76,75,50,1101,1113,1114,1102,43,1238,1179,1055,1064,0,30,77,76,51,1103,1115,1113,1101,43,1055,1061,1209,1177,0,76,47,44,75,1113,1116,1117,1114,43,1179,1234,1061,1055,0,77,16,47,76,1115,1118,1116,1113,43,1061,1056,1178,1209,0,51,79,78,50,1116,1119,1120,1117,43,1234,1180,1056,1061,0,30,80,79,51,1118,1121,1119,1116,43,1056,1060,1208,1178,0,79,47,44,78,1119,1122,1123,1120,43,1180,1230,1060,1056,0,80,16,47,79,1121,1124,1122,1119,43,1071,1057,1233,1239,0,47,51,30,16,1125,1126,1127,1128,43,1224,1205,1057,1071,0,44,50,51,47,1129,1130,1126,1125,43,1070,1071,1239,1226,0,47,51,30,16,1131,1125,1128,1132,43,1223,1224,1071,1070,0,44,50,51,47,1133,1129,1125,1131,43,1069,1070,1226,1237,0,47,51,30,16,1057,1131,1132,1047,43,1222,1223,1070,1069,0,44,50,51,47,1055,1133,1131,1057,43,1059,1060,1230,1231,0,47,51,30,16,1134,1122,1124,1135,43,1207,1208,1060,1059,0,44,50,51,47,1136,1123,1122,1134,43,1058,1059,1231,1232,0,47,51,30,16,1137,1134,1135,1138,43,1206,1207,1059,1058,0,44,50,51,47,1139,1136,1134,1137,43,1057,1058,1232,1233,0,47,51,30,16,1126,1137,1138,1127,43,1205,1206,1058,1057,0,44,50,51,47,1130,1139,1137,1126,43,1811,1075,1171,1229,0,6,30,16,5,1062,1140,1112,1070,43,1228,1171,1075,1166,0,6,30,16,5,1109,1112,1140,1106,43,1812,1235,1166,1075,0,6,5,16,30,1141,1081,1106,1140,43,1812,1076,1152,1235,0,6,30,16,5,1141,1142,1082,1081,43,1806,1225,1152,1076,0,6,5,16,30,1143,1085,1082,1142,43,1193,1192,1074,1072,0,44,50,82,81,1144,1145,1146,1147,43,1811,1193,1072,1075,0,16,44,81,83,1062,1144,1147,1140,43,1812,1075,1072,1074,0,30,83,81,82,1141,1140,1147,1146,43,1200,1806,1076,1073,0,44,16,85,84,1148,1143,1142,1149,43,1192,1200,1073,1074,0,50,44,84,82,1145,1148,1149,1146,43,1812,1074,1073,1076,0,30,82,84,85,1141,1146,1149,1142,43,1806,1236,1153,1225,0,6,30,16,5,1143,1091,1088,1085,43,1818,1161,1236,1806,0,6,30,16,5,1150,1094,1091,1143,43,1818,1815,1238,1162,0,6,5,16,30,1150,1151,1103,1100,43,1818,1162,1227,1161,0,6,5,16,30,1150,1100,1097,1094,43,1819,1179,1238,1815,0,6,30,16,5,1152,1115,1103,1151,43,1819,1810,1230,1180,0,6,5,16,30,1152,1153,1124,1121,43,1819,1180,1234,1179,0,6,5,16,30,1152,1121,1118,1115,43,1266,1077,1085,1262,0,0,49,16,5,1154,1155,1156,1157,43,1264,1083,1077,1266,0,6,30,49,0,1158,1159,1155,1154,43,1260,1079,1089,1256,0,0,49,16,5,1160,1161,1162,1163,43,1258,1087,1079,1260,0,6,30,49,0,1164,1165,1161,1160,43,1081,1252,1250,1093,0,49,0,5,16,1166,1167,1168,1169,43,1091,1254,1252,1081,0,30,6,0,49,1170,1171,1167,1166,43,1095,1086,1078,1084,0,6,5,16,30,1172,1173,1174,1175,43,1098,1090,1080,1088,0,6,5,16,30,1176,1177,1178,1179,43,1101,1092,1082,1094,0,6,30,16,5,1180,1181,1182,1183,43,1078,1077,1083,1084,0,0,49,16,5,1174,1155,1159,1175,43,1086,1085,1077,1078,0,6,30,49,0,1173,1156,1155,1174,43,1080,1079,1087,1088,0,0,49,16,5,1178,1161,1165,1179,43,1090,1089,1079,1080,0,6,30,49,0,1177,1162,1161,1178,43,1081,1082,1092,1091,0,49,0,5,16,1166,1182,1181,1170,43,1093,1094,1082,1081,0,30,6,0,49,1169,1183,1182,1166,43,1103,1147,1154,1282,0,86,89,88,87,1184,1185,1186,1187,43,1102,1146,1147,1103,0,54,90,89,86,1188,1189,1185,1184,43,1219,1150,1146,1102,0,50,63,90,54,1080,1079,1189,1188,43,1147,1105,1268,1154,0,89,92,91,88,1185,1190,1191,1186,43,1146,1104,1105,1147,0,90,56,92,89,1189,1192,1190,1185,43,1150,1218,1104,1146,0,63,44,56,90,1079,1084,1192,1189,43,1105,1145,1155,1268,0,86,94,93,87,1190,1193,1194,1191,43,1104,1144,1145,1105,0,54,95,94,86,1192,1195,1193,1190,43,1218,1151,1144,1104,0,50,66,95,54,1084,1087,1195,1192,43,1145,1107,1283,1155,0,94,92,91,93,1193,1196,1197,1194,43,1144,1106,1107,1145,0,95,56,92,94,1195,1198,1196,1193,43,1151,1217,1106,1144,0,66,44,56,95,1087,1090,1198,1195,43,1107,1143,1163,1283,0,86,97,96,87,1196,1199,1200,1197,43,1106,1142,1143,1107,0,54,98,97,86,1198,1201,1199,1196,43,1217,1159,1142,1106,0,50,69,98,54,1090,1093,1201,1198,43,1143,1109,1271,1163,0,97,92,91,96,1199,1202,1203,1200,43,1142,1108,1109,1143,0,98,56,92,97,1201,1204,1202,1199,43,1159,1216,1108,1142,0,69,44,56,98,1093,1096,1204,1201,43,1109,1141,1164,1271,0,86,100,99,87,1202,1205,1206,1203,43,1108,1140,1141,1109,0,54,101,100,86,1204,1207,1205,1202,43,1216,1160,1140,1108,0,50,72,101,54,1096,1099,1207,1204,43,1141,1111,1284,1164,0,100,92,91,99,1205,1208,1209,1206,43,1140,1110,1111,1141,0,101,56,92,100,1207,1210,1208,1205,43,1160,1215,1110,1140,0,72,44,56,101,1099,1102,1210,1207,43,1113,1139,1172,1272,0,86,103,102,87,1211,1212,1213,1214,43,1112,1138,1139,1113,0,54,104,103,86,1215,1216,1212,1211,43,1214,1169,1138,1112,0,50,105,104,54,1108,1105,1216,1215,43,1139,1103,1282,1172,0,103,92,91,102,1212,1184,1187,1213,43,1138,1102,1103,1139,0,104,56,92,103,1216,1188,1184,1212,43,1169,1219,1102,1138,0,105,44,56,104,1105,1080,1188,1216,43,1117,1137,1173,1273,0,86,107,106,87,1217,1218,1219,1220,43,1116,1136,1137,1117,0,54,108,107,86,1221,1222,1218,1217,43,1212,1170,1136,1116,0,50,62,108,54,1067,1111,1222,1221,43,1137,1113,1272,1173,0,107,92,91,106,1218,1211,1214,1219,43,1136,1112,1113,1137,0,108,56,92,107,1222,1215,1211,1218,43,1170,1214,1112,1136,0,62,44,56,108,1111,1108,1215,1222,43,1111,1135,1181,1284,0,86,110,109,87,1208,1223,1224,1209,43,1110,1134,1135,1111,0,54,111,110,86,1210,1225,1223,1208,43,1215,1177,1134,1110,0,50,75,111,54,1102,1114,1225,1210,43,1135,1123,1281,1181,0,110,92,91,109,1223,1226,1227,1224,43,1134,1122,1123,1135,0,111,56,92,110,1225,1228,1226,1223,43,1177,1209,1122,1134,0,75,44,56,111,1114,1117,1228,1225,43,1123,1133,1182,1281,0,86,113,112,87,1226,1229,1230,1227,43,1122,1132,1133,1123,0,54,114,113,86,1228,1231,1229,1226,43,1209,1178,1132,1122,0,50,78,114,54,1117,1120,1231,1228,43,1133,1125,1277,1182,0,113,92,91,112,1229,1232,1233,1230,43,1132,1124,1125,1133,0,114,56,92,113,1231,1234,1232,1229,43,1178,1208,1124,1132,0,78,44,56,114,1120,1123,1234,1231,43,1095,1130,1205,1224,0,56,54,50,44,1172,1235,1130,1129,43,1084,1131,1130,1095,0,92,86,54,56,1175,1236,1235,1172,43,1083,1280,1131,1084,0,91,87,86,92,1159,1237,1236,1175,43,1096,1095,1224,1223,0,56,54,50,44,1238,1172,1129,1133,43,1097,1086,1095,1096,0,92,86,54,56,1239,1173,1172,1238,43,1270,1085,1086,1097,0,91,87,86,92,1240,1156,1173,1239,43,1098,1096,1223,1222,0,56,54,50,44,1176,1238,1133,1055,43,1088,1097,1096,1098,0,92,86,54,56,1179,1239,1238,1176,43,1087,1270,1097,1088,0,91,87,86,92,1165,1240,1239,1179,43,1099,1098,1222,1221,0,56,54,50,44,1241,1176,1055,1053,43,1100,1090,1098,1099,0,92,86,54,56,1242,1177,1176,1241,43,1269,1089,1090,1100,0,91,87,86,92,1243,1162,1177,1242,43,1118,1101,1220,1211,0,56,54,50,44,1244,1180,1045,1043,43,1119,1092,1101,1118,0,92,86,54,56,1245,1181,1180,1244,43,1276,1091,1092,1119,0,91,87,86,92,1246,1170,1181,1245,43,1101,1099,1221,1220,0,56,54,50,44,1180,1241,1053,1045,43,1094,1100,1099,1101,0,92,86,54,56,1183,1242,1241,1180,43,1093,1269,1100,1094,0,91,87,86,92,1169,1243,1242,1183,43,1114,1120,1210,1213,0,56,54,50,44,1247,1248,1064,1068,43,1115,1121,1120,1114,0,92,86,54,56,1249,1250,1248,1247,43,1274,1275,1121,1115,0,91,87,86,92,1251,1252,1250,1249,43,1126,1124,1208,1207,0,56,54,50,44,1253,1234,1123,1136,43,1127,1125,1124,1126,0,92,86,54,56,1254,1232,1234,1253,43,1278,1277,1125,1127,0,91,87,86,92,1255,1233,1232,1254,43,1116,1114,1213,1212,0,56,54,50,44,1221,1247,1068,1067,43,1117,1115,1114,1116,0,92,86,54,56,1217,1249,1247,1221,43,1273,1274,1115,1117,0,91,87,86,92,1220,1251,1249,1217,43,1120,1118,1211,1210,0,56,54,50,44,1248,1244,1043,1064,43,1121,1119,1118,1120,0,92,86,54,56,1250,1245,1244,1248,43,1275,1276,1119,1121,0,91,87,86,92,1252,1246,1245,1250,43,1128,1126,1207,1206,0,56,54,50,44,1256,1253,1136,1139,43,1129,1127,1126,1128,0,92,86,54,56,1257,1254,1253,1256,43,1279,1278,1127,1129,0,91,87,86,92,1258,1255,1254,1257,43,1130,1128,1206,1205,0,56,54,50,44,1235,1256,1139,1130,43,1131,1129,1128,1130,0,92,86,54,56,1236,1257,1256,1235,43,1280,1279,1129,1131,0,91,87,86,92,1237,1258,1257,1236,43,1804,1282,1154,1148,0,6,30,116,115,1259,1187,1186,1260,43,1805,1804,1148,1156,0,5,6,115,117,1261,1259,1260,1262,43,1268,1156,1148,1154,0,16,117,115,116,1191,1262,1260,1186,43,1799,1805,1156,1149,0,5,6,119,118,1263,1261,1262,1264,43,1283,1799,1149,1155,0,16,5,118,120,1197,1263,1264,1194,43,1268,1155,1149,1156,0,30,120,118,119,1191,1194,1264,1262,43,1568,1561,1165,1157,0,5,6,122,121,1265,1266,1267,1268,43,1284,1568,1157,1164,0,16,5,121,123,1209,1265,1268,1206,43,1271,1164,1157,1165,0,30,123,121,122,1203,1206,1268,1267,43,1562,1283,1163,1158,0,6,30,125,124,1269,1197,1200,1270,43,1561,1562,1158,1165,0,5,6,124,126,1266,1269,1270,1267,43,1271,1165,1158,1163,0,16,126,124,125,1203,1267,1270,1200,43,1559,1273,1173,1167,0,6,30,128,127,1271,1220,1219,1272,43,1560,1559,1167,1174,0,5,6,127,129,1273,1271,1272,1274,43,1272,1174,1167,1173,0,16,129,127,128,1214,1274,1272,1219,43,1554,1560,1174,1168,0,5,6,131,130,1275,1273,1274,1276,43,1282,1554,1168,1172,0,16,5,130,132,1187,1275,1276,1213,43,1272,1172,1168,1174,0,30,132,130,131,1214,1213,1276,1274,43,1321,1314,1183,1175,0,5,6,134,133,1277,1278,1279,1280,43,1277,1321,1175,1182,0,16,5,133,135,1233,1277,1280,1230,43,1281,1182,1175,1183,0,30,135,133,134,1227,1230,1280,1279,43,1315,1284,1181,1176,0,6,30,137,136,1281,1209,1224,1282,43,1314,1315,1176,1183,0,5,6,136,138,1278,1281,1282,1279,43,1281,1183,1176,1181,0,16,138,136,137,1227,1279,1282,1224,43,1817,1237,1226,1189,0,6,5,16,30,1048,1047,1132,1283,43,1807,1189,1226,1239,0,6,30,16,5,1284,1283,1132,1128,43,1189,1186,1198,1817,0,139,140,50,30,1283,1285,1286,1048,43,1807,1197,1186,1189,0,16,44,140,139,1284,1287,1285,1283,43,1830,1822,1188,1184,0,5,6,142,141,932,930,1288,1289,43,1197,1830,1184,1186,0,44,5,141,140,1287,932,1289,1285,43,1198,1186,1184,1188,0,50,140,141,142,1286,1285,1289,1288,43,1190,1187,1199,1813,0,143,45,44,16,1051,1290,1291,1040,43,1817,1198,1187,1190,0,30,50,45,143,1048,1286,1290,1051,43,1825,1199,1187,1185,0,5,44,45,144,929,1291,1290,1292,43,1822,1825,1185,1188,0,6,5,144,142,930,929,1292,1288,43,1198,1188,1185,1187,0,50,142,144,45,1286,1288,1292,1290,43,1809,1807,1239,1233,0,6,5,16,30,1293,1284,1128,1127,43,1809,1233,1232,1808,0,6,5,16,30,1293,1127,1138,1294,43,1816,1808,1232,1231,0,6,5,16,30,1295,1294,1138,1135,43,1816,1231,1230,1810,0,6,5,16,30,1295,1135,1124,1153,43,1195,1191,1809,1808,0,50,44,16,30,1296,1297,1293,1294,43,1829,1828,1191,1195,0,6,5,44,50,935,944,1297,1296,43,1191,1197,1807,1809,0,44,50,30,16,1297,1287,1284,1293,43,1828,1830,1197,1191,0,5,6,50,44,944,932,1287,1297,43,1826,932,1192,1193,0,5,6,50,44,940,941,1145,1144,43,1200,1192,932,1831,0,44,50,6,5,1148,1145,941,926,43,1194,1193,1811,1814,0,50,44,16,30,1298,1144,1062,1060,43,1824,1826,1193,1194,0,6,5,44,50,938,940,1144,1298,43,1199,1194,1814,1813,0,50,44,16,30,1291,1298,1060,1040,43,1825,1824,1194,1199,0,6,5,44,50,929,938,1298,1291,43,1196,1195,1808,1816,0,50,44,16,30,1299,1296,1294,1295,43,931,1829,1195,1196,0,6,5,44,50,934,935,1296,1299,43,1201,1196,1816,1810,0,44,50,30,16,1300,1299,1295,1153,43,1827,931,1196,1201,0,5,6,50,44,917,934,1299,1300,43,1200,1202,1818,1806,0,44,50,30,16,1148,1301,1150,1143,43,1831,1821,1202,1200,0,5,6,50,44,926,923,1301,1148,43,1203,1201,1810,1819,0,50,44,16,30,1302,1300,1153,1152,43,1820,1827,1201,1203,0,6,5,44,50,918,917,1300,1302,43,1202,1204,1815,1818,0,50,44,16,30,1301,1303,1151,1150,43,1821,1823,1204,1202,0,6,5,44,50,923,921,1303,1301,43,1204,1203,1819,1815,0,44,50,30,16,1303,1302,1152,1151,43,1823,1820,1203,1204,0,5,6,50,44,921,918,1302,1303,43,1554,1282,1804,1299,0,6,30,16,5,1275,1187,1259,1304,43,1562,1293,1799,1283,0,6,30,16,5,1269,1305,1263,1197,43,1315,1288,1568,1284,0,6,30,16,5,1281,1306,1265,1209,43,1558,1557,1275,1274,0,6,30,16,5,1307,1308,1252,1251,43,1321,1277,1278,1320,0,6,30,16,5,1277,1233,1255,1309,43,1556,1245,1244,1557,0,6,30,16,5,1310,1311,1312,1308,43,1319,1320,1246,1247,0,6,30,16,5,1313,1309,1314,1315,43,1250,1240,1269,1093,0,6,30,16,5,1168,1316,1243,1169,43,1251,1241,1240,1250,0,6,30,16,5,1317,1318,1316,1168,43,1802,1801,1241,1251,0,6,30,16,5,1319,1320,1318,1317,43,1240,1256,1089,1269,0,6,30,16,5,1316,1163,1162,1243,43,1241,1257,1256,1240,0,6,30,16,5,1318,1321,1163,1316,43,1801,1800,1257,1241,0,6,30,16,5,1320,1322,1321,1318,43,1242,1262,1085,1270,0,6,30,16,5,1323,1157,1156,1240,43,1243,1263,1262,1242,0,6,30,16,5,1324,1325,1157,1323,43,1565,1566,1263,1243,0,6,30,16,5,1326,1327,1325,1324,43,1258,1242,1270,1087,0,6,30,16,5,1164,1323,1240,1165,43,1259,1243,1242,1258,0,6,30,16,5,1328,1324,1323,1164,43,1564,1565,1243,1259,0,6,30,16,5,1329,1326,1324,1328,43,1557,1244,1276,1275,0,6,30,16,5,1308,1312,1246,1252,43,1244,1254,1091,1276,0,6,30,16,5,1312,1171,1170,1246,43,1245,1255,1254,1244,0,6,30,16,5,1311,1330,1171,1312,43,1556,1555,1255,1245,0,6,30,16,5,1310,1331,1330,1311,43,1246,1320,1278,1279,0,6,30,16,5,1314,1309,1255,1258,43,1248,1246,1279,1280,0,6,30,16,5,1332,1314,1258,1237,43,1249,1247,1246,1248,0,6,30,16,5,1333,1315,1314,1332,43,1318,1319,1247,1249,0,6,30,16,5,1334,1313,1315,1333,43,1264,1248,1280,1083,0,6,30,16,5,1158,1332,1237,1159,43,1265,1249,1248,1264,0,6,30,16,5,1335,1333,1332,1158,43,1317,1318,1249,1265,0,6,30,16,5,1336,1334,1333,1335,43,1253,1251,1250,1252,0,6,30,16,5,1337,1317,1168,1167,43,1297,1802,1251,1253,0,6,30,16,5,1338,1319,1317,1337,43,1255,1253,1252,1254,0,6,30,16,5,1330,1337,1167,1171,43,1555,1297,1253,1255,0,6,30,16,5,1331,1338,1337,1330,43,1257,1261,1260,1256,0,6,30,16,5,1321,1339,1160,1163,43,1800,1292,1261,1257,0,6,30,16,5,1322,1340,1339,1321,43,1261,1259,1258,1260,0,6,30,16,5,1339,1328,1164,1160,43,1292,1564,1259,1261,0,6,30,16,5,1340,1329,1328,1339,43,1263,1267,1266,1262,0,6,30,16,5,1325,1341,1154,1157,43,1566,1287,1267,1263,0,6,30,16,5,1327,1342,1341,1325,43,1267,1265,1264,1266,0,6,30,16,5,1341,1335,1158,1154,43,1287,1317,1265,1267,0,6,30,16,5,1342,1336,1335,1341,43,1558,1274,1273,1559,0,6,30,16,5,1307,1251,1220,1271,43,1289,1285,1305,1307,0,6,30,16,5,1343,1344,1345,1346,43,1306,1304,1285,1289,0,6,30,16,5,1347,1348,1344,1343,43,1285,1286,1567,1305,0,6,30,16,5,1344,1349,1350,1345,43,1304,1316,1286,1285,0,6,30,16,5,1348,1351,1349,1344,43,1287,1286,1316,1317,0,6,30,16,5,1342,1349,1351,1336,43,1566,1567,1286,1287,0,6,30,16,5,1327,1350,1349,1342,43,1289,1288,1315,1306,0,6,30,16,5,1343,1306,1281,1347,43,1307,1568,1288,1289,0,6,30,16,5,1346,1265,1306,1343,43,1294,1290,1303,1309,0,6,30,16,5,1352,1353,1354,1355,43,1308,1302,1290,1294,0,6,30,16,5,1356,1357,1353,1352,43,1290,1291,1310,1303,0,6,30,16,5,1353,1358,1359,1354,43,1302,1563,1291,1290,0,6,30,16,5,1357,1360,1358,1353,43,1292,1291,1563,1564,0,6,30,16,5,1340,1358,1360,1329,43,1800,1310,1291,1292,0,6,30,16,5,1322,1359,1358,1340,43,1294,1293,1562,1308,0,6,30,16,5,1352,1305,1269,1356,43,1309,1799,1293,1294,0,6,30,16,5,1355,1263,1305,1352,43,1298,1295,1301,1313,0,6,30,16,5,1361,1362,1363,1364,43,1311,1300,1295,1298,0,6,30,16,5,1365,1366,1362,1361,43,1295,1296,1312,1301,0,6,30,16,5,1362,1367,1368,1363,43,1300,1803,1296,1295,0,6,30,16,5,1366,1369,1367,1362,43,1296,1297,1555,1312,0,6,30,16,5,1367,1338,1331,1368,43,1803,1802,1297,1296,0,6,30,16,5,1369,1319,1338,1367,43,1299,1298,1313,1554,0,6,30,16,5,1304,1361,1364,1275,43,1804,1311,1298,1299,0,6,30,16,5,1259,1365,1361,1304,43,1473,1313,1301,1312,0,6,30,16,5,1370,1364,1363,1368,43,1803,1300,1311,1723,0,6,30,16,5,1369,1366,1365,1371,43,1719,1309,1303,1310,0,6,30,16,5,1372,1355,1354,1359,43,1644,1563,1302,1308,0,6,30,16,5,1373,1360,1357,1356,43,1398,1316,1304,1306,0,6,30,16,5,1374,1351,1348,1347,43,1648,1307,1305,1567,0,6,30,16,5,1375,1346,1345,1350,43,1344,1346,1325,1323,0,6,30,16,5,1376,1377,1378,1379,43,1346,1347,1384,1325,0,6,30,16,5,1377,1380,1381,1378,43,1347,1348,1383,1384,0,6,30,16,5,1380,1382,1383,1381,43,1348,1349,1382,1383,0,6,30,16,5,1382,1384,1385,1383,43,1349,1350,1333,1382,0,6,30,16,5,1384,1386,1387,1385,43,1350,1351,1335,1333,0,6,30,16,5,1386,1388,1389,1387,43,1323,1325,1354,1352,0,6,30,16,5,1379,1378,1390,1391,43,1325,1327,1355,1354,0,6,30,16,5,1378,1392,1393,1390,43,1327,1329,1356,1355,0,6,30,16,5,1392,1394,1395,1393,43,1329,1331,1357,1356,0,6,30,16,5,1394,1396,1397,1395,43,1331,1333,1358,1357,0,6,30,16,5,1396,1387,1398,1397,43,1333,1335,1359,1358,0,6,30,16,5,1387,1389,1399,1398,43,1342,1343,1367,1366,0,6,30,16,5,1400,1401,1402,1403,43,1343,1341,1365,1367,0,6,30,16,5,1401,1404,1405,1402,43,1367,1365,1324,1322,0,6,30,16,5,1402,1405,1406,1407,43,1341,1340,1364,1365,0,6,30,16,5,1404,1408,1409,1405,43,1365,1364,1378,1324,0,6,30,16,5,1405,1409,1410,1406,43,1340,1339,1363,1364,0,6,30,16,5,1408,1411,1412,1409,43,1364,1363,1377,1378,0,6,30,16,5,1409,1412,1413,1410,43,1339,1338,1362,1363,0,6,30,16,5,1411,1414,1415,1412,43,1363,1362,1376,1377,0,6,30,16,5,1412,1415,1416,1413,43,1338,1337,1361,1362,0,6,30,16,5,1414,1417,1418,1415,43,1362,1361,1332,1376,0,6,30,16,5,1415,1418,1419,1416,43,1337,1336,1360,1361,0,6,30,16,5,1417,1420,1421,1418,43,1361,1360,1334,1332,0,6,30,16,5,1418,1421,1422,1419,43,1366,1360,1336,1342,0,6,30,16,5,1403,1421,1420,1400,43,1322,1324,1370,1368,0,6,30,16,5,1407,1406,1423,1424,43,1324,1326,1371,1370,0,6,30,16,5,1406,1425,1426,1423,43,1326,1328,1372,1371,0,6,30,16,5,1425,1427,1428,1426,43,1328,1330,1373,1372,0,6,30,16,5,1427,1429,1430,1428,43,1330,1332,1374,1373,0,6,30,16,5,1429,1419,1431,1430,43,1332,1334,1375,1374,0,6,30,16,5,1419,1422,1432,1431,43,1328,1326,1380,1379,0,6,30,16,5,1427,1425,1433,1434,43,1379,1380,1378,1377,0,6,30,16,5,1434,1433,1410,1413,43,1330,1328,1379,1381,0,6,30,16,5,1429,1427,1434,1435,43,1381,1379,1377,1376,0,6,30,16,5,1435,1434,1413,1416,43,1324,1378,1380,1326,0,6,30,16,5,1406,1410,1433,1425,43,1330,1381,1376,1332,0,6,30,16,5,1429,1435,1416,1419,43,1331,1329,1386,1385,0,6,30,16,5,1396,1394,1436,1437,43,1385,1386,1383,1382,0,6,30,16,5,1437,1436,1383,1385,43,1329,1327,1387,1386,0,6,30,16,5,1394,1392,1438,1436,43,1386,1387,1384,1383,0,6,30,16,5,1436,1438,1381,1383,43,1331,1385,1382,1333,0,6,30,16,5,1396,1437,1385,1387,43,1325,1384,1387,1327,0,6,30,16,5,1378,1381,1438,1392,43,1369,1368,1388,1389,0,6,30,16,5,1439,1424,1440,1441,43,1389,1388,1344,1345,0,6,30,16,5,1441,1440,1376,1442,43,1368,1370,1390,1388,0,6,30,16,5,1424,1423,1443,1440,43,1388,1390,1346,1344,0,6,30,16,5,1440,1443,1377,1376,43,1370,1371,1391,1390,0,6,30,16,5,1423,1426,1444,1443,43,1390,1391,1347,1346,0,6,30,16,5,1443,1444,1380,1377,43,1371,1372,1392,1391,0,6,30,16,5,1426,1428,1445,1444,43,1391,1392,1348,1347,0,6,30,16,5,1444,1445,1382,1380,43,1372,1373,1393,1392,0,6,30,16,5,1428,1430,1446,1445,43,1392,1393,1349,1348,0,6,30,16,5,1445,1446,1384,1382,43,1373,1374,1394,1393,0,6,30,16,5,1430,1431,1447,1446,43,1393,1394,1350,1349,0,6,30,16,5,1446,1447,1386,1384,43,1374,1375,1395,1394,0,6,30,16,5,1431,1432,1448,1447,43,1394,1395,1351,1350,0,6,30,16,5,1447,1448,1388,1386,43,1345,1351,1395,1389,0,6,30,16,5,1442,1388,1448,1441,43,1389,1395,1375,1369,0,6,30,16,5,1441,1448,1432,1439,43,1353,1352,1396,1397,0,6,30,16,5,1449,1391,1450,1451,43,1397,1396,1315,1314,0,6,30,16,5,1451,1450,1281,1278,43,1352,1354,1398,1396,0,6,30,16,5,1391,1390,1374,1450,43,1396,1398,1306,1315,0,6,30,16,5,1450,1374,1347,1281,43,1354,1355,1399,1398,0,6,30,16,5,1390,1393,1452,1374,43,1398,1399,1317,1316,0,6,30,16,5,1374,1452,1336,1351,43,1355,1356,1400,1399,0,6,30,16,5,1393,1395,1453,1452,43,1399,1400,1318,1317,0,6,30,16,5,1452,1453,1334,1336,43,1356,1357,1401,1400,0,6,30,16,5,1395,1397,1454,1453,43,1400,1401,1319,1318,0,6,30,16,5,1453,1454,1313,1334,43,1357,1358,1402,1401,0,6,30,16,5,1397,1398,1455,1454,43,1401,1402,1320,1319,0,6,30,16,5,1454,1455,1309,1313,43,1358,1359,1403,1402,0,6,30,16,5,1398,1399,1456,1455,43,1402,1403,1321,1320,0,6,30,16,5,1455,1456,1277,1309,43,1314,1321,1403,1397,0,6,30,16,5,1278,1277,1456,1451,43,1397,1403,1359,1353,0,6,30,16,5,1451,1456,1399,1449,43,1375,1405,1404,1369,0,6,30,16,5,1432,1457,1458,1439,43,1369,1404,1406,1368,0,6,30,16,5,1439,1458,1459,1424,43,1334,1407,1405,1375,0,6,30,16,5,1422,1460,1457,1432,43,1368,1406,1408,1322,0,6,30,16,5,1424,1459,1461,1407,43,1366,1410,1409,1360,0,6,30,16,5,1403,1462,1463,1421,43,1367,1411,1410,1366,0,6,30,16,5,1402,1464,1462,1403,43,1322,1408,1411,1367,0,6,30,16,5,1407,1461,1464,1402,43,1360,1409,1407,1334,0,6,30,16,5,1421,1463,1460,1422,43,1409,1413,1412,1407,0,6,30,16,5,1463,1465,1466,1460,43,1408,1414,1415,1411,0,6,30,16,5,1461,1467,1468,1464,43,1411,1415,1416,1410,0,6,30,16,5,1464,1468,1469,1462,43,1410,1416,1413,1409,0,6,30,16,5,1462,1469,1465,1463,43,1406,1417,1414,1408,0,6,30,16,5,1459,1470,1467,1461,43,1407,1412,1418,1405,0,6,30,16,5,1460,1466,1471,1457,43,1404,1419,1417,1406,0,6,30,16,5,1458,1472,1470,1459,43,1405,1418,1419,1404,0,6,30,16,5,1457,1471,1472,1458,43,1416,1415,1414,1420,0,6,30,16,5,1469,1468,1467,1473,43,1420,1412,1413,1416,0,6,30,16,5,1473,1466,1465,1469,43,1420,1414,1417,1419,0,6,30,16,5,1473,1467,1470,1472,43,1419,1418,1412,1420,0,6,30,16,5,1472,1471,1466,1473,43,1359,1422,1421,1353,0,6,30,16,5,1399,1474,1475,1449,43,1353,1421,1423,1352,0,6,30,16,5,1449,1475,1476,1391,43,1335,1424,1422,1359,0,6,30,16,5,1389,1477,1474,1399,43,1352,1423,1425,1323,0,6,30,16,5,1391,1476,1478,1379,43,1345,1426,1427,1351,0,6,30,16,5,1442,1479,1480,1388,43,1344,1428,1426,1345,0,6,30,16,5,1376,1481,1479,1442,43,1351,1427,1424,1335,0,6,30,16,5,1388,1480,1477,1389,43,1323,1425,1428,1344,0,6,30,16,5,1379,1478,1481,1376,43,1425,1430,1429,1428,0,6,30,16,5,1478,1482,1483,1481,43,1427,1432,1431,1424,0,6,30,16,5,1480,1484,1485,1477,43,1428,1429,1433,1426,0,6,30,16,5,1481,1483,1486,1479,43,1426,1433,1432,1427,0,6,30,16,5,1479,1486,1484,1480,43,1423,1434,1430,1425,0,6,30,16,5,1476,1487,1482,1478,43,1424,1431,1435,1422,0,6,30,16,5,1477,1485,1488,1474,43,1421,1436,1434,1423,0,6,30,16,5,1475,1489,1487,1476,43,1422,1435,1436,1421,0,6,30,16,5,1474,1488,1489,1475,43,1433,1429,1430,1437,0,6,30,16,5,1486,1483,1482,1490,43,1437,1431,1432,1433,0,6,30,16,5,1490,1485,1484,1486,43,1437,1430,1434,1436,0,6,30,16,5,1490,1482,1487,1489,43,1436,1435,1431,1437,0,6,30,16,5,1489,1488,1485,1490,43,1439,1440,1444,1438,0,6,30,16,5,1491,1492,1493,1494,43,1438,1445,1441,1439,0,6,30,16,5,1494,1495,1496,1491,43,1438,1444,1443,1442,0,6,30,16,5,1494,1493,1497,1498,43,1442,1446,1445,1438,0,6,30,16,5,1498,1499,1495,1494,43,1453,1440,1439,1454,0,6,30,16,5,1500,1492,1491,1501,43,1454,1439,1441,1452,0,6,30,16,5,1501,1491,1496,1502,43,1451,1444,1440,1453,0,6,30,16,5,1503,1493,1492,1500,43,1452,1441,1445,1450,0,6,30,16,5,1502,1496,1495,1504,43,1449,1442,1443,1448,0,6,30,16,5,1505,1498,1497,1506,43,1447,1446,1442,1449,0,6,30,16,5,1507,1499,1498,1505,43,1448,1443,1444,1451,0,6,30,16,5,1506,1497,1493,1503,43,1450,1445,1446,1447,0,6,30,16,5,1504,1495,1499,1507,43,1552,1450,1447,1531,0,6,30,16,5,1508,1504,1507,1509,43,1524,1448,1451,1540,0,6,30,16,5,1510,1506,1503,1511,43,1531,1447,1449,1530,0,6,30,16,5,1509,1507,1505,1512,43,1530,1449,1448,1524,0,6,30,16,5,1512,1505,1506,1510,43,1523,1452,1450,1552,0,6,30,16,5,1513,1502,1504,1508,43,1540,1451,1453,1516,0,6,30,16,5,1511,1503,1500,1514,43,1522,1454,1452,1523,0,6,30,16,5,1515,1501,1502,1513,43,1516,1453,1454,1522,0,6,30,16,5,1514,1500,1501,1515,43,1456,1457,1463,1455,0,6,30,16,5,1516,1517,1518,1519,43,1455,1461,1458,1456,0,6,30,16,5,1519,1520,1521,1516,43,1455,1463,1462,1459,0,6,30,16,5,1519,1518,1522,1523,43,1459,1460,1461,1455,0,6,30,16,5,1523,1524,1520,1519,43,1470,1457,1456,1471,0,6,30,16,5,1525,1517,1516,1526,43,1471,1456,1458,1469,0,6,30,16,5,1526,1516,1521,1527,43,1468,1463,1457,1470,0,6,30,16,5,1528,1518,1517,1525,43,1469,1458,1461,1467,0,6,30,16,5,1527,1521,1520,1529,43,1465,1459,1462,1466,0,6,30,16,5,1530,1523,1522,1531,43,1464,1460,1459,1465,0,6,30,16,5,1532,1524,1523,1530,43,1467,1461,1460,1464,0,6,30,16,5,1529,1520,1524,1532,43,1466,1462,1463,1468,0,6,30,16,5,1531,1522,1518,1528,43,1515,1466,1468,1541,0,6,30,16,5,1533,1531,1528,1534,43,1553,1467,1464,1508,0,6,30,16,5,1535,1529,1532,1536,43,1508,1464,1465,1509,0,6,30,16,5,1536,1532,1530,1537,43,1509,1465,1466,1515,0,6,30,16,5,1537,1530,1531,1533,43,1507,1469,1467,1553,0,6,30,16,5,1538,1527,1529,1535,43,1541,1468,1470,1500,0,6,30,16,5,1534,1528,1525,1539,43,1506,1471,1469,1507,0,6,30,16,5,1540,1526,1527,1538,43,1500,1470,1471,1506,0,6,30,16,5,1539,1525,1526,1540,43,1478,1472,1516,1522,0,6,30,16,5,1541,1542,1514,1515,43,1560,1554,1472,1478,0,6,30,16,5,1273,1275,1542,1541,43,1473,1472,1554,1313,0,6,30,16,5,1370,1542,1275,1364,43,1517,1516,1472,1473,0,6,30,16,5,1543,1514,1542,1370,43,1474,1473,1312,1555,0,6,30,16,5,1544,1370,1368,1331,43,1518,1517,1473,1474,0,6,30,16,5,1545,1543,1370,1544,43,1475,1474,1555,1556,0,6,30,16,5,1546,1544,1331,1310,43,1519,1518,1474,1475,0,6,30,16,5,1547,1545,1544,1546,43,1476,1475,1556,1557,0,6,30,16,5,1548,1546,1310,1308,43,1520,1519,1475,1476,0,6,30,16,5,1549,1547,1546,1548,43,1477,1476,1557,1558,0,6,30,16,5,1550,1548,1308,1307,43,1521,1520,1476,1477,0,6,30,16,5,1551,1549,1548,1550,43,1479,1477,1558,1559,0,6,30,16,5,1552,1550,1307,1271,43,1523,1521,1477,1479,0,6,30,16,5,1513,1551,1550,1552,43,1478,1479,1559,1560,0,6,30,16,5,1541,1552,1271,1273,43,1522,1523,1479,1478,0,6,30,16,5,1515,1513,1552,1541,43,1486,1480,1500,1506,0,6,30,16,5,1553,1554,1539,1540,43,1530,1524,1480,1486,0,6,30,16,5,1512,1510,1554,1553,43,1481,1480,1524,1525,0,6,30,16,5,1555,1554,1510,1556,43,1501,1500,1480,1481,0,6,30,16,5,1557,1539,1554,1555,43,1482,1481,1525,1526,0,6,30,16,5,1558,1555,1556,1559,43,1502,1501,1481,1482,0,6,30,16,5,1560,1557,1555,1558,43,1483,1482,1526,1527,0,6,30,16,5,1561,1558,1559,1562,43,1503,1502,1482,1483,0,6,30,16,5,1563,1560,1558,1561,43,1484,1483,1527,1528,0,6,30,16,5,1564,1561,1562,1565,43,1504,1503,1483,1484,0,6,30,16,5,1566,1563,1561,1564,43,1485,1484,1528,1529,0,6,30,16,5,1567,1564,1565,1568,43,1505,1504,1484,1485,0,6,30,16,5,1569,1566,1564,1567,43,1487,1485,1529,1531,0,6,30,16,5,1570,1567,1568,1509,43,1507,1505,1485,1487,0,6,30,16,5,1538,1569,1567,1570,43,1486,1487,1531,1530,0,6,30,16,5,1553,1570,1509,1512,43,1506,1507,1487,1486,0,6,30,16,5,1540,1538,1570,1553,43,1550,1491,1488,1548,0,6,30,16,5,1571,1572,1573,1574,43,1544,1490,1493,1542,0,6,30,16,5,1575,1576,1577,1578,43,1489,1488,1491,1492,0,6,30,16,5,1579,1573,1572,1580,43,1546,1548,1488,1489,0,6,30,16,5,1581,1574,1573,1579,43,1490,1489,1492,1493,0,6,30,16,5,1576,1579,1580,1577,43,1544,1546,1489,1490,0,6,30,16,5,1575,1581,1579,1576,43,1545,1494,1499,1543,0,6,30,16,5,1582,1583,1584,1585,43,1551,1497,1495,1549,0,6,30,16,5,1586,1587,1588,1589,43,1494,1496,1498,1499,0,6,30,16,5,1583,1590,1591,1584,43,1545,1547,1496,1494,0,6,30,16,5,1582,1592,1590,1583,43,1496,1495,1497,1498,0,6,30,16,5,1590,1588,1587,1591,43,1547,1549,1495,1496,0,6,30,16,5,1592,1589,1588,1590,43,1543,1541,1500,1501,0,6,30,16,5,1585,1534,1539,1557,43,1545,1543,1501,1502,0,6,30,16,5,1582,1585,1557,1560,43,1547,1545,1502,1503,0,6,30,16,5,1592,1582,1560,1563,43,1549,1547,1503,1504,0,6,30,16,5,1589,1592,1563,1566,43,1551,1549,1504,1505,0,6,30,16,5,1586,1589,1566,1569,43,1553,1551,1505,1507,0,6,30,16,5,1535,1586,1569,1538,43,1509,1515,1539,1533,0,6,30,16,5,1537,1533,1593,1594,43,1514,1515,1541,1543,0,6,30,16,5,1595,1533,1534,1585,43,1538,1539,1515,1514,0,6,30,16,5,1596,1593,1533,1595,43,1513,1514,1543,1499,0,6,30,16,5,1597,1595,1585,1584,43,1537,1538,1514,1513,0,6,30,16,5,1598,1596,1595,1597,43,1512,1513,1499,1498,0,6,30,16,5,1599,1597,1584,1591,43,1536,1537,1513,1512,0,6,30,16,5,1600,1598,1597,1599,43,1511,1512,1498,1497,0,6,30,16,5,1601,1599,1591,1587,43,1535,1536,1512,1511,0,6,30,16,5,1602,1600,1599,1601,43,1510,1511,1497,1551,0,6,30,16,5,1603,1601,1587,1586,43,1534,1535,1511,1510,0,6,30,16,5,1604,1602,1601,1603,43,1508,1510,1551,1553,0,6,30,16,5,1536,1603,1586,1535,43,1532,1534,1510,1508,0,6,30,16,5,1605,1604,1603,1536,43,1533,1532,1508,1509,0,6,30,16,5,1594,1605,1536,1537,43,1542,1540,1516,1517,0,6,30,16,5,1578,1511,1514,1543,43,1544,1542,1517,1518,0,6,30,16,5,1575,1578,1543,1545,43,1546,1544,1518,1519,0,6,30,16,5,1581,1575,1545,1547,43,1548,1546,1519,1520,0,6,30,16,5,1574,1581,1547,1549,43,1550,1548,1520,1521,0,6,30,16,5,1571,1574,1549,1551,43,1552,1550,1521,1523,0,6,30,16,5,1508,1571,1551,1513,43,1525,1524,1540,1542,0,6,30,16,5,1556,1510,1511,1578,43,1526,1525,1542,1493,0,6,30,16,5,1559,1556,1578,1577,43,1527,1526,1493,1492,0,6,30,16,5,1562,1559,1577,1580,43,1528,1527,1492,1491,0,6,30,16,5,1565,1562,1580,1572,43,1529,1528,1491,1550,0,6,30,16,5,1568,1565,1572,1571,43,1531,1529,1550,1552,0,6,30,16,5,1509,1568,1571,1508,43,1590,1592,1572,1570,0,6,30,16,5,1606,1607,1608,1609,43,1592,1593,1630,1572,0,6,30,16,5,1607,1610,1611,1608,43,1593,1594,1629,1630,0,6,30,16,5,1610,1612,1613,1611,43,1594,1595,1628,1629,0,6,30,16,5,1612,1614,1615,1613,43,1595,1596,1580,1628,0,6,30,16,5,1614,1616,1617,1615,43,1596,1597,1582,1580,0,6,30,16,5,1616,1618,1619,1617,43,1570,1572,1600,1598,0,6,30,16,5,1609,1608,1620,1621,43,1572,1574,1601,1600,0,6,30,16,5,1608,1622,1623,1620,43,1574,1576,1602,1601,0,6,30,16,5,1622,1624,1625,1623,43,1576,1578,1603,1602,0,6,30,16,5,1624,1626,1627,1625,43,1578,1580,1604,1603,0,6,30,16,5,1626,1617,1628,1627,43,1580,1582,1605,1604,0,6,30,16,5,1617,1619,1629,1628,43,1589,1588,1611,1613,0,6,30,16,5,1630,1631,1632,1633,43,1613,1611,1571,1569,0,6,30,16,5,1633,1632,1634,1635,43,1588,1587,1610,1611,0,6,30,16,5,1631,1636,1637,1632,43,1611,1610,1624,1571,0,6,30,16,5,1632,1637,1638,1634,43,1587,1586,1609,1610,0,6,30,16,5,1636,1639,1640,1637,43,1610,1609,1623,1624,0,6,30,16,5,1637,1640,1641,1638,43,1586,1585,1608,1609,0,6,30,16,5,1639,1642,1643,1640,43,1609,1608,1622,1623,0,6,30,16,5,1640,1643,1644,1641,43,1585,1584,1607,1608,0,6,30,16,5,1642,1645,1646,1643,43,1608,1607,1579,1622,0,6,30,16,5,1643,1646,1647,1644,43,1584,1583,1606,1607,0,6,30,16,5,1645,1648,1649,1646,43,1607,1606,1581,1579,0,6,30,16,5,1646,1649,1650,1647,43,1569,1571,1616,1614,0,6,30,16,5,1635,1634,1651,1652,43,1571,1573,1617,1616,0,6,30,16,5,1634,1653,1654,1651,43,1573,1575,1618,1617,0,6,30,16,5,1653,1655,1656,1654,43,1575,1577,1619,1618,0,6,30,16,5,1655,1657,1658,1656,43,1577,1579,1620,1619,0,6,30,16,5,1657,1647,1659,1658,43,1579,1581,1621,1620,0,6,30,16,5,1647,1650,1660,1659,43,1575,1573,1626,1625,0,6,30,16,5,1655,1653,1661,1662,43,1625,1626,1624,1623,0,6,30,16,5,1662,1661,1638,1641,43,1577,1575,1625,1627,0,6,30,16,5,1657,1655,1662,1663,43,1627,1625,1623,1622,0,6,30,16,5,1663,1662,1641,1644,43,1571,1624,1626,1573,0,6,30,16,5,1634,1638,1661,1653,43,1577,1627,1622,1579,0,6,30,16,5,1657,1663,1644,1647,43,1578,1576,1632,1631,0,6,30,16,5,1626,1624,1664,1665,43,1631,1632,1629,1628,0,6,30,16,5,1665,1664,1613,1615,43,1576,1574,1633,1632,0,6,30,16,5,1624,1622,1666,1664,43,1632,1633,1630,1629,0,6,30,16,5,1664,1666,1611,1613,43,1578,1631,1628,1580,0,6,30,16,5,1626,1665,1615,1617,43,1572,1630,1633,1574,0,6,30,16,5,1608,1611,1666,1622,43,1615,1614,1634,1635,0,6,30,16,5,1667,1652,1668,1669,43,1635,1634,1590,1591,0,6,30,16,5,1669,1668,1606,1670,43,1614,1616,1636,1634,0,6,30,16,5,1652,1651,1671,1668,43,1634,1636,1592,1590,0,6,30,16,5,1668,1671,1607,1606,43,1616,1617,1637,1636,0,6,30,16,5,1651,1654,1672,1671,43,1636,1637,1593,1592,0,6,30,16,5,1671,1672,1610,1607,43,1617,1618,1638,1637,0,6,30,16,5,1654,1656,1673,1672,43,1637,1638,1594,1593,0,6,30,16,5,1672,1673,1612,1610,43,1618,1619,1639,1638,0,6,30,16,5,1656,1658,1674,1673,43,1638,1639,1595,1594,0,6,30,16,5,1673,1674,1614,1612,43,1619,1620,1640,1639,0,6,30,16,5,1658,1659,1675,1674,43,1639,1640,1596,1595,0,6,30,16,5,1674,1675,1616,1614,43,1620,1621,1641,1640,0,6,30,16,5,1659,1660,1676,1675,43,1640,1641,1597,1596,0,6,30,16,5,1675,1676,1618,1616,43,1591,1597,1641,1635,0,6,30,16,5,1670,1618,1676,1669,43,1635,1641,1621,1615,0,6,30,16,5,1669,1676,1660,1667,43,1599,1598,1642,1643,0,6,30,16,5,1677,1621,1678,1679,43,1643,1642,1562,1561,0,6,30,16,5,1679,1678,1269,1266,43,1598,1600,1644,1642,0,6,30,16,5,1621,1620,1373,1678,43,1642,1644,1308,1562,0,6,30,16,5,1678,1373,1356,1269,43,1600,1601,1645,1644,0,6,30,16,5,1620,1623,1680,1373,43,1644,1645,1564,1563,0,6,30,16,5,1373,1680,1329,1360,43,1601,1602,1646,1645,0,6,30,16,5,1623,1625,1681,1680,43,1645,1646,1565,1564,0,6,30,16,5,1680,1681,1326,1329,43,1602,1603,1647,1646,0,6,30,16,5,1625,1627,1682,1681,43,1646,1647,1566,1565,0,6,30,16,5,1681,1682,1327,1326,43,1603,1604,1648,1647,0,6,30,16,5,1627,1628,1375,1682,43,1647,1648,1567,1566,0,6,30,16,5,1682,1375,1350,1327,43,1604,1605,1649,1648,0,6,30,16,5,1628,1629,1683,1375,43,1648,1649,1568,1307,0,6,30,16,5,1375,1683,1265,1346,43,1561,1568,1649,1643,0,6,30,16,5,1266,1265,1683,1679,43,1643,1649,1605,1599,0,6,30,16,5,1679,1683,1629,1677,43,1621,1651,1650,1615,0,6,30,16,5,1660,1684,1685,1667,43,1615,1650,1652,1614,0,6,30,16,5,1667,1685,1686,1652,43,1581,1653,1651,1621,0,6,30,16,5,1650,1687,1684,1660,43,1614,1652,1654,1569,0,6,30,16,5,1652,1686,1688,1635,43,1612,1656,1655,1606,0,6,30,16,5,1689,1690,1691,1649,43,1613,1657,1656,1612,0,6,30,16,5,1633,1692,1690,1689,43,1569,1654,1657,1613,0,6,30,16,5,1635,1688,1692,1633,43,1606,1655,1653,1581,0,6,30,16,5,1649,1691,1687,1650,43,1655,1659,1658,1653,0,6,30,16,5,1691,1693,1694,1687,43,1654,1660,1661,1657,0,6,30,16,5,1688,1695,1696,1692,43,1657,1661,1662,1656,0,6,30,16,5,1692,1696,1697,1690,43,1656,1662,1659,1655,0,6,30,16,5,1690,1697,1693,1691,43,1652,1663,1660,1654,0,6,30,16,5,1686,1698,1695,1688,43,1653,1658,1664,1651,0,6,30,16,5,1687,1694,1699,1684,43,1650,1665,1663,1652,0,6,30,16,5,1685,1700,1698,1686,43,1651,1664,1665,1650,0,6,30,16,5,1684,1699,1700,1685,43,1662,1661,1660,1666,0,6,30,16,5,1697,1696,1695,1701,43,1666,1658,1659,1662,0,6,30,16,5,1701,1694,1693,1697,43,1666,1660,1663,1665,0,6,30,16,5,1701,1695,1698,1700,43,1665,1664,1658,1666,0,6,30,16,5,1700,1699,1694,1701,43,1605,1668,1667,1599,0,6,30,16,5,1629,1702,1703,1677,43,1599,1667,1669,1598,0,6,30,16,5,1677,1703,1704,1621,43,1582,1670,1668,1605,0,6,30,16,5,1619,1705,1702,1629,43,1598,1669,1671,1570,0,6,30,16,5,1621,1704,1706,1609,43,1591,1672,1673,1597,0,6,30,16,5,1670,1707,1708,1618,43,1590,1674,1672,1591,0,6,30,16,5,1606,1709,1707,1670,43,1597,1673,1670,1582,0,6,30,16,5,1618,1708,1705,1619,43,1570,1671,1674,1590,0,6,30,16,5,1609,1706,1709,1606,43,1671,1676,1675,1674,0,6,30,16,5,1706,1710,1711,1709,43,1673,1678,1677,1670,0,6,30,16,5,1708,1712,1713,1705,43,1674,1675,1679,1672,0,6,30,16,5,1709,1711,1714,1707,43,1672,1679,1678,1673,0,6,30,16,5,1707,1714,1712,1708,43,1669,1680,1676,1671,0,6,30,16,5,1704,1715,1710,1706,43,1670,1677,1681,1668,0,6,30,16,5,1705,1713,1716,1702,43,1667,1682,1680,1669,0,6,30,16,5,1703,1717,1715,1704,43,1668,1681,1682,1667,0,6,30,16,5,1702,1716,1717,1703,43,1679,1675,1676,1683,0,6,30,16,5,1714,1711,1710,1718,43,1683,1677,1678,1679,0,6,30,16,5,1718,1713,1712,1714,43,1683,1676,1680,1682,0,6,30,16,5,1718,1710,1715,1717,43,1682,1681,1677,1683,0,6,30,16,5,1717,1716,1713,1718,43,1685,1686,1690,1684,0,6,30,16,5,1719,1720,1721,1722,43,1684,1691,1687,1685,0,6,30,16,5,1722,1723,1724,1719,43,1684,1690,1689,1688,0,6,30,16,5,1722,1721,1725,1726,43,1688,1692,1691,1684,0,6,30,16,5,1726,1727,1723,1722,43,1699,1686,1685,1700,0,6,30,16,5,1728,1720,1719,1729,43,1700,1685,1687,1698,0,6,30,16,5,1729,1719,1724,1730,43,1697,1690,1686,1699,0,6,30,16,5,1731,1721,1720,1728,43,1698,1687,1691,1696,0,6,30,16,5,1730,1724,1723,1732,43,1695,1688,1689,1694,0,6,30,16,5,1733,1726,1725,1734,43,1693,1692,1688,1695,0,6,30,16,5,1735,1727,1726,1733,43,1694,1689,1690,1697,0,6,30,16,5,1734,1725,1721,1731,43,1696,1691,1692,1693,0,6,30,16,5,1732,1723,1727,1735,43,1797,1696,1693,1777,0,6,30,16,5,1736,1732,1735,1737,43,1770,1694,1697,1785,0,6,30,16,5,1738,1734,1731,1739,43,1777,1693,1695,1776,0,6,30,16,5,1737,1735,1733,1740,43,1776,1695,1694,1770,0,6,30,16,5,1740,1733,1734,1738,43,1769,1698,1696,1797,0,6,30,16,5,1741,1730,1732,1736,43,1785,1697,1699,1762,0,6,30,16,5,1739,1731,1728,1742,43,1768,1700,1698,1769,0,6,30,16,5,1743,1729,1730,1741,43,1762,1699,1700,1768,0,6,30,16,5,1742,1728,1729,1743,43,1702,1703,1709,1701,0,6,30,16,5,1744,1745,1746,1747,43,1701,1707,1704,1702,0,6,30,16,5,1747,1748,1749,1744,43,1701,1709,1708,1705,0,6,30,16,5,1747,1746,1750,1751,43,1705,1706,1707,1701,0,6,30,16,5,1751,1752,1748,1747,43,1716,1703,1702,1717,0,6,30,16,5,1753,1745,1744,1754,43,1717,1702,1704,1715,0,6,30,16,5,1754,1744,1749,1755,43,1714,1709,1703,1716,0,6,30,16,5,1756,1746,1745,1753,43,1715,1704,1707,1713,0,6,30,16,5,1755,1749,1748,1757,43,1711,1705,1708,1712,0,6,30,16,5,1758,1751,1750,1759,43,1710,1706,1705,1711,0,6,30,16,5,1760,1752,1751,1758,43,1713,1707,1706,1710,0,6,30,16,5,1757,1748,1752,1760,43,1712,1708,1709,1714,0,6,30,16,5,1759,1750,1746,1756,43,1761,1712,1714,1786,0,6,30,16,5,1761,1759,1756,1762,43,1798,1713,1710,1754,0,6,30,16,5,1763,1757,1760,1764,43,1754,1710,1711,1755,0,6,30,16,5,1764,1760,1758,1765,43,1755,1711,1712,1761,0,6,30,16,5,1765,1758,1759,1761,43,1753,1715,1713,1798,0,6,30,16,5,1766,1755,1757,1763,43,1786,1714,1716,1746,0,6,30,16,5,1762,1756,1753,1767,43,1752,1717,1715,1753,0,6,30,16,5,1768,1754,1755,1766,43,1746,1716,1717,1752,0,6,30,16,5,1767,1753,1754,1768,43,1724,1718,1762,1768,0,6,30,16,5,1769,1770,1742,1743,43,1805,1799,1718,1724,0,6,30,16,5,1261,1263,1770,1769,43,1719,1718,1799,1309,0,6,30,16,5,1372,1770,1263,1355,43,1763,1762,1718,1719,0,6,30,16,5,1771,1742,1770,1372,43,1720,1719,1310,1800,0,6,30,16,5,1772,1372,1359,1322,43,1764,1763,1719,1720,0,6,30,16,5,1773,1771,1372,1772,43,1721,1720,1800,1801,0,6,30,16,5,1774,1772,1322,1320,43,1765,1764,1720,1721,0,6,30,16,5,1775,1773,1772,1774,43,1722,1721,1801,1802,0,6,30,16,5,1776,1774,1320,1319,43,1766,1765,1721,1722,0,6,30,16,5,1777,1775,1774,1776,43,1723,1722,1802,1803,0,6,30,16,5,1371,1776,1319,1369,43,1767,1766,1722,1723,0,6,30,16,5,1778,1777,1776,1371,43,1725,1723,1311,1804,0,6,30,16,5,1779,1371,1365,1259,43,1769,1767,1723,1725,0,6,30,16,5,1741,1778,1371,1779,43,1724,1725,1804,1805,0,6,30,16,5,1769,1779,1259,1261,43,1768,1769,1725,1724,0,6,30,16,5,1743,1741,1779,1769,43,1732,1726,1746,1752,0,6,30,16,5,1780,1781,1767,1768,43,1776,1770,1726,1732,0,6,30,16,5,1740,1738,1781,1780,43,1727,1726,1770,1771,0,6,30,16,5,1782,1781,1738,1783,43,1747,1746,1726,1727,0,6,30,16,5,1784,1767,1781,1782,43,1728,1727,1771,1772,0,6,30,16,5,1785,1782,1783,1786,43,1748,1747,1727,1728,0,6,30,16,5,1787,1784,1782,1785,43,1729,1728,1772,1773,0,6,30,16,5,1788,1785,1786,1789,43,1749,1748,1728,1729,0,6,30,16,5,1790,1787,1785,1788,43,1730,1729,1773,1774,0,6,30,16,5,1791,1788,1789,1792,43,1750,1749,1729,1730,0,6,30,16,5,1793,1790,1788,1791,43,1731,1730,1774,1775,0,6,30,16,5,1794,1791,1792,1795,43,1751,1750,1730,1731,0,6,30,16,5,1796,1793,1791,1794,43,1733,1731,1775,1777,0,6,30,16,5,1797,1794,1795,1737,43,1753,1751,1731,1733,0,6,30,16,5,1766,1796,1794,1797,43,1732,1733,1777,1776,0,6,30,16,5,1780,1797,1737,1740,43,1752,1753,1733,1732,0,6,30,16,5,1768,1766,1797,1780,43,1795,1737,1734,1793,0,6,30,16,5,1798,1799,1800,1801,43,1789,1736,1739,1787,0,6,30,16,5,1802,1803,1804,1805,43,1735,1734,1737,1738,0,6,30,16,5,1806,1800,1799,1807,43,1791,1793,1734,1735,0,6,30,16,5,1808,1801,1800,1806,43,1736,1735,1738,1739,0,6,30,16,5,1803,1806,1807,1804,43,1789,1791,1735,1736,0,6,30,16,5,1802,1808,1806,1803,43,1790,1740,1745,1788,0,6,30,16,5,1809,1810,1811,1812,43,1796,1743,1741,1794,0,6,30,16,5,1813,1814,1815,1816,43,1740,1742,1744,1745,0,6,30,16,5,1810,1817,1818,1811,43,1790,1792,1742,1740,0,6,30,16,5,1809,1819,1817,1810,43,1742,1741,1743,1744,0,6,30,16,5,1817,1815,1814,1818,43,1792,1794,1741,1742,0,6,30,16,5,1819,1816,1815,1817,43,1788,1786,1746,1747,0,6,30,16,5,1812,1762,1767,1784,43,1790,1788,1747,1748,0,6,30,16,5,1809,1812,1784,1787,43,1792,1790,1748,1749,0,6,30,16,5,1819,1809,1787,1790,43,1794,1792,1749,1750,0,6,30,16,5,1816,1819,1790,1793,43,1796,1794,1750,1751,0,6,30,16,5,1813,1816,1793,1796,43,1798,1796,1751,1753,0,6,30,16,5,1763,1813,1796,1766,43,1760,1761,1786,1788,0,6,30,16,5,1820,1761,1762,1812,43,1783,1784,1761,1760,0,6,30,16,5,1821,1822,1761,1820,43,1759,1760,1788,1745,0,6,30,16,5,1823,1820,1812,1811,43,1782,1783,1760,1759,0,6,30,16,5,1824,1821,1820,1823,43,1758,1759,1745,1744,0,6,30,16,5,1825,1823,1811,1818,43,1781,1782,1759,1758,0,6,30,16,5,1826,1824,1823,1825,43,1757,1758,1744,1743,0,6,30,16,5,1827,1825,1818,1814,43,1780,1781,1758,1757,0,6,30,16,5,1828,1826,1825,1827,43,1756,1757,1743,1796,0,6,30,16,5,1829,1827,1814,1813,43,1779,1780,1757,1756,0,6,30,16,5,1830,1828,1827,1829,43,1754,1756,1796,1798,0,6,30,16,5,1764,1829,1813,1763,43,1778,1779,1756,1754,0,6,30,16,5,1831,1830,1829,1764,43,1787,1785,1762,1763,0,6,30,16,5,1805,1739,1742,1771,43,1789,1787,1763,1764,0,6,30,16,5,1802,1805,1771,1773,43,1791,1789,1764,1765,0,6,30,16,5,1808,1802,1773,1775,43,1793,1791,1765,1766,0,6,30,16,5,1801,1808,1775,1777,43,1795,1793,1766,1767,0,6,30,16,5,1798,1801,1777,1778,43,1797,1795,1767,1769,0,6,30,16,5,1736,1798,1778,1741,43,1771,1770,1785,1787,0,6,30,16,5,1783,1738,1739,1805,43,1772,1771,1787,1739,0,6,30,16,5,1786,1783,1805,1804,43,1773,1772,1739,1738,0,6,30,16,5,1789,1786,1804,1807,43,1774,1773,1738,1737,0,6,30,16,5,1792,1789,1807,1799,43,1775,1774,1737,1795,0,6,30,16,5,1795,1792,1799,1798,43,1777,1775,1795,1797,0,6,30,16,5,1737,1795,1798,1736,43,1755,1761,1784,1832,0,6,5,16,30,1765,1761,1822,1832,43,1754,1755,1832,1778,0,6,30,16,5,1764,1765,1832,1831,43,1583,1833,1612,1606,0,6,30,16,5,1648,1833,1689,1649,43,1589,1613,1612,1833,0,6,5,16,30,1630,1633,1689,1833,43,1837,1836,1839,1838,0,6,5,16,30,1834,1835,1836,1837,43,1836,2072,2077,1839,0,6,5,16,30,1835,1838,1839,1836,43,1839,2077,2078,1840,0,6,5,16,30,1836,1839,1840,1841,43,1838,1839,1840,1841,0,6,5,16,30,1837,1836,1841,1842,43,1847,1846,1848,1849,0,6,5,16,30,1843,1844,1845,1846,43,1846,2088,2092,1848,0,6,5,16,30,1844,1847,1848,1845,43,1859,1856,1862,1863,0,6,5,16,30,1849,1850,1851,1852,43,1855,1852,1865,1864,0,6,5,16,30,1853,1854,1855,1856,43,1852,1837,1866,1865,0,6,5,16,30,1854,1834,1857,1855,43,1869,1860,1870,1871,0,6,5,16,30,1858,1859,1860,1861,43,1847,1849,1869,1871,0,6,5,16,30,1843,1846,1858,1861,43,1859,1863,1870,1860,0,6,5,16,30,1849,1852,1860,1859,43,1840,1842,1843,1841,0,44,16,30,50,1841,1862,1863,1842,43,2078,2083,1842,1840,0,5,145,30,50,1840,1864,1862,1841,43,1870,1863,1874,1875,0,6,5,16,30,1860,1852,1865,1866,43,1875,1874,1877,1876,0,6,5,16,30,1866,1865,1867,1868,43,2084,2122,1878,1844,0,5,146,50,6,1869,1870,1871,1872,43,2122,2088,1846,1878,0,146,16,30,50,1870,1847,1844,1871,43,1844,1878,1879,1845,0,5,44,50,6,1872,1871,1873,1874,43,1878,1846,1847,1879,0,44,16,30,50,1871,1844,1843,1873,43,1845,1879,1880,1872,0,6,0,147,30,1874,1873,1875,1876,43,1879,1847,1871,1880,0,0,5,16,147,1873,1843,1861,1875,43,1870,1875,1880,1871,0,6,5,16,30,1860,1866,1875,1861,43,1875,1876,1872,1880,0,6,5,16,30,1866,1868,1876,1875,43,1837,1838,1885,1866,0,6,30,16,5,1834,1837,1877,1857,43,1838,1841,1886,1885,0,6,30,16,5,1837,1842,1878,1877,43,1843,1867,1886,1841,0,6,30,16,5,1863,1879,1878,1842,43,1843,1882,1883,1867,0,148,30,16,5,1863,1880,1881,1879,43,1881,1882,1843,1842,0,6,5,16,30,1882,1880,1863,1862,43,1881,1842,2083,2126,0,6,5,145,30,1882,1862,1864,1883,43,1872,1876,1877,1873,0,6,5,16,30,1876,1868,1867,1884,43,2126,2084,1844,1881,0,149,16,30,150,1883,1869,1872,1882,43,1845,1872,1873,1884,0,6,5,16,30,1874,1876,1884,1885,43,1844,1845,1882,1881,0,6,30,16,5,1872,1874,1880,1882,43,1883,1882,1845,1884,0,6,30,16,5,1881,1880,1874,1885,43,1887,1913,1914,1888,0,5,44,50,6,1886,1887,1888,1889,43,1913,1900,1901,1914,0,44,16,30,50,1887,1890,1891,1888,43,1896,1915,1916,1899,0,5,44,50,6,1892,1893,1894,1895,43,1915,1902,1903,1916,0,44,16,30,50,1893,1896,1897,1894,43,1899,1916,1917,1890,0,5,44,50,6,1895,1894,1898,1899,43,1916,1903,1904,1917,0,44,16,30,50,1894,1897,1900,1898,43,1890,1917,1918,1891,0,5,44,50,6,1899,1898,1901,1902,43,1917,1904,1905,1918,0,44,16,30,50,1898,1900,1903,1901,43,1898,1919,1920,1897,0,5,44,50,6,1904,1905,1906,1907,43,1919,1907,1906,1920,0,44,16,30,50,1905,1908,1909,1906,43,1897,1920,1915,1896,0,5,44,50,6,1907,1906,1893,1892,43,1920,1906,1902,1915,0,44,16,30,50,1906,1909,1896,1893,43,1895,1922,1919,1898,0,5,44,50,6,1910,1911,1905,1904,43,1922,1909,1907,1919,0,44,16,30,50,1911,1912,1908,1905,43,1892,1923,1924,1893,0,5,44,50,6,1913,1914,1915,1916,43,1923,1910,1911,1924,0,44,16,30,50,1914,1917,1918,1915,43,1893,1924,1921,1894,0,5,44,50,6,1916,1915,1919,1920,43,1924,1911,1908,1921,0,44,16,30,50,1915,1918,1921,1919,43,1889,1925,1923,1892,0,5,44,50,6,1922,1923,1914,1913,43,1925,1912,1910,1923,0,44,16,30,50,1923,1924,1917,1914,43,1888,1914,1925,1889,0,5,44,50,6,1889,1888,1923,1922,43,1914,1901,1912,1925,0,44,16,30,50,1888,1891,1924,1923,43,1891,1918,1913,1887,0,5,44,50,6,1902,1901,1887,1886,43,1918,1905,1900,1913,0,44,16,30,50,1901,1903,1890,1887,43,1944,1952,1954,1939,0,16,151,152,44,1925,1926,1927,1928,43,1952,1953,1955,1954,0,151,153,154,152,1926,1929,1930,1927,43,1940,1956,1958,1951,0,16,151,152,44,1931,1932,1933,1934,43,1956,1957,1959,1958,0,151,153,154,152,1932,1935,1936,1933,43,1951,1958,1960,1949,0,16,151,152,44,1934,1933,1937,1938,43,1958,1959,1961,1960,0,151,153,154,152,1933,1936,1939,1937,43,1950,1962,1964,1947,0,16,151,152,44,1940,1941,1942,1943,43,1962,1963,1965,1964,0,151,153,154,152,1941,1944,1945,1942,43,1949,1960,1962,1950,0,16,151,152,44,1938,1937,1941,1940,43,1960,1961,1963,1962,0,151,153,154,152,1937,1939,1944,1941,43,1948,1966,1968,1946,0,16,151,152,44,1946,1947,1948,1949,43,1966,1967,1969,1968,0,151,153,154,152,1947,1950,1951,1948,43,1945,1970,1972,1941,0,16,151,155,44,1952,1953,1954,1955,43,1970,1971,1973,1972,0,151,153,154,155,1953,1956,1957,1954,43,1946,1968,1970,1945,0,16,151,152,44,1949,1948,1953,1952,43,1968,1969,1971,1970,0,151,153,154,152,1948,1951,1956,1953,43,1943,1974,1952,1944,0,16,151,152,44,1958,1959,1926,1925,43,1974,1975,1953,1952,0,151,153,154,152,1959,1960,1929,1926,43,1942,1976,1974,1943,0,16,151,152,44,1961,1962,1959,1958,43,1976,1977,1975,1974,0,151,153,154,152,1962,1963,1960,1959,43,1941,1972,1976,1942,0,16,151,152,44,1955,1954,1962,1961,43,1972,1973,1977,1976,0,151,153,154,152,1954,1957,1963,1962,43,1939,1954,1956,1940,0,16,151,152,44,1928,1927,1932,1931,43,1954,1955,1957,1956,0,151,153,154,152,1927,1930,1935,1932,43,1883,1990,1980,1867,0,16,49,156,157,1881,1964,1965,1879,43,1990,1891,1887,1980,0,49,30,6,156,1964,1902,1886,1965,43,1867,1980,1989,1886,0,5,44,50,0,1879,1965,1966,1878,43,1980,1887,1888,1989,0,44,16,49,50,1965,1886,1889,1966,43,1886,1989,1978,1885,0,158,159,0,5,1878,1966,1967,1877,43,1989,1888,1889,1978,0,159,160,6,0,1966,1889,1922,1967,43,1885,1978,1988,1866,0,16,49,159,158,1877,1967,1968,1857,43,1978,1889,1892,1988,0,49,30,160,159,1967,1922,1913,1968,43,1865,1986,1985,1864,0,30,161,162,6,1855,1969,1970,1856,43,1986,1893,1894,1985,0,161,16,5,162,1969,1916,1920,1970,43,1866,1988,1986,1865,0,5,44,163,6,1857,1968,1969,1855,43,1988,1892,1893,1986,0,44,16,30,163,1968,1913,1916,1969,43,1862,1984,1983,1863,0,30,161,0,6,1851,1971,1972,1852,43,1984,1895,1898,1983,0,161,16,5,0,1971,1910,1904,1972,43,1874,1982,1987,1877,0,5,44,50,6,1865,1973,1974,1867,43,1982,1897,1896,1987,0,44,16,30,50,1973,1907,1892,1974,43,1863,1983,1982,1874,0,5,44,50,6,1852,1972,1973,1865,43,1983,1898,1897,1982,0,44,16,30,50,1972,1904,1907,1973,43,1884,1979,1990,1883,0,164,165,0,5,1885,1975,1964,1881,43,1979,1890,1891,1990,0,165,166,6,0,1975,1899,1902,1964,43,1873,1981,1979,1884,0,167,168,169,170,1884,1976,1975,1885,43,1981,1899,1890,1979,0,168,171,166,169,1976,1895,1899,1975,43,1877,1987,1981,1873,0,16,49,168,167,1867,1974,1976,1884,43,1987,1896,1899,1981,0,49,30,171,168,1974,1892,1895,1976,43,1856,1991,1993,1862,0,6,172,49,30,1850,1977,1978,1851,43,1991,1855,1864,1993,0,172,5,16,49,1977,1853,1856,1978,43,1921,1996,1994,1894,0,44,53,0,5,1919,1979,1980,1920,43,1996,1922,1895,1994,0,53,50,6,0,1979,1911,1910,1980,43,1908,1995,1996,1921,0,16,49,53,44,1921,1981,1979,1919,43,1995,1909,1922,1996,0,49,30,50,53,1981,1912,1911,1979,43,1964,1999,1998,1947,0,151,173,47,16,1942,1982,1983,1943,43,1999,1966,1948,1998,0,173,152,44,47,1982,1947,1946,1983,43,1965,2000,1999,1964,0,153,174,173,151,1945,1984,1982,1942,43,2000,1967,1966,1999,0,174,154,152,173,1984,1950,1947,1982,43,1985,2001,1993,1864,0,175,53,0,5,1970,1985,1978,1856,43,2001,1984,1862,1993,0,53,163,6,0,1985,1971,1851,1978,43,1894,1994,2001,1985,0,16,176,53,175,1920,1980,1985,1970,43,1994,1895,1984,2001,0,176,30,163,53,1980,1910,1971,1985,43,1953,2002,2003,1955,0,153,177,178,154,1929,1986,1987,1930,43,1957,2014,2004,1959,0,153,177,178,154,1935,1988,1989,1936,43,1959,2004,2005,1961,0,153,177,178,154,1936,1989,1990,1939,43,1963,2006,2007,1965,0,153,177,178,154,1944,1991,1992,1945,43,1961,2005,2006,1963,0,153,177,178,154,1939,1990,1991,1944,43,1967,2008,2009,1969,0,153,177,178,154,1950,1993,1994,1951,43,1971,2010,2011,1973,0,153,177,178,154,1956,1995,1996,1957,43,1969,2009,2010,1971,0,153,177,178,154,1951,1994,1995,1956,43,1975,2012,2002,1953,0,153,177,178,154,1960,1997,1986,1929,43,1977,2013,2012,1975,0,153,177,178,154,1963,1998,1997,1960,43,1973,2011,2013,1977,0,153,177,178,154,1957,1996,1998,1963,43,1955,2003,2014,1957,0,153,177,178,154,1930,1987,1988,1935,43,2015,2000,1965,2007,0,179,174,153,177,1999,1984,1945,1992,43,2008,1967,2000,2015,0,178,154,174,179,1993,1950,1984,1999,43,2016,1834,2071,2262,0,50,6,5,44,2000,2001,2002,2003,43,2262,2072,1836,2016,0,44,16,30,50,2003,1838,1835,2000,43,1834,2016,2017,1835,0,5,44,50,6,2001,2000,2004,2005,43,2016,1836,1837,2017,0,44,16,30,50,2000,1835,1834,2004,43,2092,2265,2018,1848,0,5,44,180,6,1848,2006,2007,1845,43,2265,2094,1850,2018,0,44,16,30,180,2006,2008,2009,2007,43,1848,2018,2019,1849,0,5,181,50,6,1845,2007,2010,1846,43,2018,1850,1851,2019,0,181,16,30,50,2007,2009,2011,2010,43,1835,2017,2020,1853,0,6,0,49,30,2005,2004,2012,2013,43,2017,1837,1852,2020,0,0,5,16,49,2004,1834,1854,2012,43,1853,2020,2021,1854,0,6,0,182,30,2013,2012,2014,2015,43,2020,1852,1855,2021,0,0,5,16,182,2012,1854,1853,2014,43,1857,2022,2023,1858,0,6,183,182,30,2016,2017,2018,2019,43,2022,1856,1859,2023,0,183,5,16,182,2017,1850,1849,2018,43,1858,2023,2024,1861,0,6,183,49,30,2019,2018,2020,2021,43,2023,1859,1860,2024,0,183,5,16,49,2018,1849,1859,2020,43,1869,2025,2024,1860,0,184,185,0,5,1858,2022,2020,1859,43,2025,1868,1861,2024,0,185,186,6,0,2022,2023,2021,2020,43,1849,2019,2025,1869,0,16,49,185,184,1846,2010,2022,1858,43,2019,1851,1868,2025,0,49,30,186,185,2010,2011,2023,2022,43,1991,2026,2021,1855,0,184,187,183,5,1977,2024,2014,1853,43,2026,1992,1854,2021,0,187,186,6,183,2024,2025,2015,2014,43,1856,2022,2026,1991,0,16,182,187,184,1850,2017,2024,1977,43,2022,1857,1992,2026,0,182,30,186,187,2017,2016,2025,2024,43,1905,2027,2028,1900,0,16,182,53,44,1903,2026,2027,1890,43,2027,1934,1938,2028,0,182,30,50,53,2026,2028,2029,2027,43,1901,2039,2029,1912,0,16,49,53,44,1891,2030,2031,1924,43,2039,1926,1927,2029,0,49,30,50,53,2030,2032,2033,2031,43,1912,2029,2030,1910,0,16,49,53,44,1924,2031,2034,1917,43,2029,1927,1929,2030,0,49,30,50,53,2031,2033,2035,2034,43,1911,2031,2032,1908,0,16,49,53,44,1918,2036,2037,1921,43,2031,1928,1931,2032,0,49,30,50,53,2036,2038,2039,2037,43,1910,2030,2031,1911,0,16,49,53,44,1917,2034,2036,1918,43,2030,1929,1928,2031,0,49,30,50,53,2034,2035,2038,2036,43,1909,2033,2034,1907,0,16,49,53,44,1912,2040,2041,1908,43,2033,1930,1932,2034,0,49,30,50,53,2040,2042,2043,2041,43,1906,2035,2036,1902,0,16,49,53,44,1909,2044,2045,1896,43,2035,1933,1937,2036,0,49,30,50,53,2044,2046,2047,2045,43,1907,2034,2035,1906,0,16,49,53,44,1908,2041,2044,1909,43,2034,1932,1933,2035,0,49,30,50,53,2041,2043,2046,2044,43,1904,2037,2027,1905,0,16,161,187,44,1900,2048,2026,1903,43,2037,1935,1934,2027,0,161,30,50,187,2048,2049,2028,2026,43,1903,2038,2037,1904,0,16,49,53,44,1897,2050,2048,1900,43,2038,1936,1935,2037,0,49,30,50,53,2050,2051,2049,2048,43,1902,2036,2038,1903,0,16,49,53,44,1896,2045,2050,1897,43,2036,1937,1936,2038,0,49,30,50,53,2045,2047,2051,2050,43,1900,2028,2039,1901,0,16,49,53,44,1890,2027,2030,1891,43,2028,1938,1926,2039,0,49,30,50,53,2027,2029,2032,2030,43,1995,2040,2033,1909,0,47,188,53,44,1981,2052,2040,1912,43,2040,1997,1930,2033,0,188,51,50,53,2052,2053,2042,2040,43,1908,2032,2040,1995,0,16,49,188,47,1921,2037,2052,1981,43,2032,1931,1997,2040,0,49,30,51,188,2037,2039,2053,2052,43,1938,2041,2053,1926,0,16,49,53,44,2029,2054,2055,2032,43,2041,1939,1940,2053,0,49,30,50,53,2054,1928,1931,2055,43,1937,2042,2043,1936,0,16,49,53,44,2047,2056,2057,2051,43,2042,1941,1942,2043,0,49,30,50,53,2056,1955,1961,2057,43,1936,2043,2044,1935,0,16,49,53,44,2051,2057,2058,2049,43,2043,1942,1943,2044,0,49,30,50,53,2057,1961,1958,2058,43,1935,2044,2045,1934,0,16,49,187,44,2049,2058,2059,2028,43,2044,1943,1944,2045,0,49,30,50,187,2058,1958,1925,2059,43,1932,2046,2047,1933,0,16,49,53,44,2043,2060,2061,2046,43,2046,1946,1945,2047,0,49,30,50,53,2060,1949,1952,2061,43,1933,2047,2042,1937,0,16,49,53,44,2046,2061,2056,2047,43,2047,1945,1941,2042,0,49,30,50,53,2061,1952,1955,2056,43,1930,2049,2046,1932,0,16,49,53,44,2042,2062,2060,2043,43,2049,1948,1946,2046,0,49,30,50,53,2062,1946,1949,2060,43,1929,2050,2051,1928,0,16,49,53,44,2035,2063,2064,2038,43,2050,1949,1950,2051,0,49,30,50,53,2063,1938,1940,2064,43,1928,2051,2048,1931,0,16,49,53,44,2038,2064,2065,2039,43,2051,1950,1947,2048,0,49,30,50,53,2064,1940,1943,2065,43,1927,2052,2050,1929,0,16,49,53,44,2033,2066,2063,2035,43,2052,1951,1949,2050,0,49,30,50,53,2066,1934,1938,2063,43,1926,2053,2052,1927,0,16,49,53,44,2032,2055,2066,2033,43,2053,1940,1951,2052,0,49,30,50,53,2055,1931,1934,2066,43,1934,2045,2041,1938,0,16,49,53,44,2028,2059,2054,2029,43,2045,1944,1939,2041,0,49,30,50,53,2059,1925,1928,2054,43,1997,2054,2049,1930,0,47,52,53,44,2053,2067,2062,2042,43,2054,1998,1948,2049,0,52,51,50,53,2067,1983,1946,2062,43,1931,2048,2054,1997,0,16,49,52,47,2039,2065,2067,2053,43,2048,1947,1998,2054,0,49,30,51,52,2065,1943,1983,2067,43,2008,2015,2055,2062,0,178,154,174,179,1993,1999,2068,2069,43,2015,2007,2063,2055,0,179,174,153,177,1999,1992,2070,2068,43,2014,2003,2067,2056,0,153,177,178,154,1988,1987,2071,2072,43,2013,2011,2059,2057,0,153,177,178,154,1998,1996,2073,2074,43,2012,2013,2057,2058,0,153,177,178,154,1997,1998,2074,2075,43,2002,2012,2058,2068,0,153,177,178,154,1986,1997,2075,2076,43,2010,2009,2061,2060,0,153,177,178,154,1995,1994,2077,2078,43,2011,2010,2060,2059,0,153,177,178,154,1996,1995,2078,2073,43,2009,2008,2062,2061,0,153,177,178,154,1994,1993,2069,2077,43,2006,2005,2065,2064,0,153,177,178,154,1991,1990,2079,2080,43,2007,2006,2064,2063,0,153,177,178,154,1992,1991,2080,2070,43,2005,2004,2066,2065,0,153,177,178,154,1990,1989,2081,2079,43,2004,2014,2056,2066,0,153,177,178,154,1989,1988,2072,2081,43,2003,2002,2068,2067,0,153,177,178,154,1987,1986,2076,2071,43,2074,2075,2076,2073,0,6,30,16,5,2082,2083,2084,2085,43,2073,2076,2077,2072,0,6,30,16,5,2085,2084,1839,1838,43,2076,2079,2078,2077,0,6,30,16,5,2084,2086,1840,1839,43,2075,2080,2079,2076,0,6,30,16,5,2083,2087,2086,2084,43,2089,2091,2090,2087,0,6,30,16,5,2088,2089,2090,2091,43,2087,2090,2092,2088,0,6,30,16,5,2091,2090,1848,1847,43,2103,2107,2106,2100,0,6,30,16,5,2092,2093,2094,2095,43,2099,2108,2109,2096,0,6,30,16,5,2096,2097,2098,2099,43,2096,2109,2110,2074,0,6,30,16,5,2099,2098,2100,2082,43,2113,2115,2114,2104,0,6,30,16,5,2101,2102,2103,2104,43,2089,2115,2113,2091,0,6,30,16,5,2088,2102,2101,2089,43,2103,2104,2114,2107,0,6,30,16,5,2092,2104,2103,2093,43,2079,2080,2082,2081,0,44,50,30,16,2086,2087,2105,2106,43,2078,2079,2081,2083,0,5,50,30,145,1840,2086,2106,1864,43,2114,2119,2118,2107,0,6,30,16,5,2103,2107,2108,2093,43,2119,2120,2121,2118,0,6,30,16,5,2107,2109,2110,2108,43,2084,2085,2123,2122,0,5,6,50,146,1869,2111,2112,1870,43,2122,2123,2087,2088,0,146,50,30,16,1870,2112,2091,1847,43,2085,2086,2124,2123,0,5,6,50,44,2111,2113,2114,2112,43,2123,2124,2089,2087,0,44,50,30,16,2112,2114,2088,2091,43,2086,2116,2125,2124,0,6,30,147,0,2113,2115,2116,2114,43,2124,2125,2115,2089,0,0,147,16,5,2114,2116,2102,2088,43,2114,2115,2125,2119,0,6,30,16,5,2103,2102,2116,2107,43,2119,2125,2116,2120,0,6,30,16,5,2107,2116,2115,2109,43,2074,2110,2131,2075,0,6,5,16,30,2082,2100,2117,2083,43,2075,2131,2132,2080,0,6,5,16,30,2083,2117,2118,2087,43,2082,2080,2132,2111,0,6,5,16,30,2105,2087,2118,2119,43,2082,2111,2129,2128,0,148,5,16,30,2105,2119,2120,2121,43,2127,2081,2082,2128,0,6,30,16,5,2122,2106,2105,2121,43,2127,2126,2083,2081,0,6,30,145,5,2122,1883,1864,2106,43,2116,2117,2121,2120,0,6,30,16,5,2115,2123,2110,2109,43,2126,2127,2085,2084,0,149,150,30,16,1883,2122,2111,1869,43,2086,2130,2117,2116,0,6,30,16,5,2113,2124,2123,2115,43,2085,2127,2128,2086,0,6,5,16,30,2111,2122,2121,2113,43,2129,2130,2086,2128,0,6,5,16,30,2120,2124,2113,2121,43,2133,2134,2160,2159,0,5,6,50,44,2125,2126,2127,2128,43,2159,2160,2147,2146,0,44,50,30,16,2128,2127,2129,2130,43,2142,2145,2162,2161,0,5,6,50,44,2131,2132,2133,2134,43,2161,2162,2149,2148,0,44,50,30,16,2134,2133,2135,2136,43,2145,2136,2163,2162,0,5,6,50,44,2132,2137,2138,2133,43,2162,2163,2150,2149,0,44,50,30,16,2133,2138,2139,2135,43,2136,2137,2164,2163,0,5,6,50,44,2137,2140,2141,2138,43,2163,2164,2151,2150,0,44,50,30,16,2138,2141,2142,2139,43,2144,2143,2166,2165,0,5,6,50,44,2143,2144,2145,2146,43,2165,2166,2152,2153,0,44,50,30,16,2146,2145,2147,2148,43,2143,2142,2161,2166,0,5,6,50,44,2144,2131,2134,2145,43,2166,2161,2148,2152,0,44,50,30,16,2145,2134,2136,2147,43,2141,2144,2165,2168,0,5,6,50,44,2149,2143,2146,2150,43,2168,2165,2153,2155,0,44,50,30,16,2150,2146,2148,2151,43,2138,2139,2170,2169,0,5,6,50,44,2152,2153,2154,2155,43,2169,2170,2157,2156,0,44,50,30,16,2155,2154,2156,2157,43,2139,2140,2167,2170,0,5,6,50,44,2153,2158,2159,2154,43,2170,2167,2154,2157,0,44,50,30,16,2154,2159,2160,2156,43,2135,2138,2169,2171,0,5,6,50,44,2161,2152,2155,2162,43,2171,2169,2156,2158,0,44,50,30,16,2162,2155,2157,2163,43,2134,2135,2171,2160,0,5,6,50,44,2126,2161,2162,2127,43,2160,2171,2158,2147,0,44,50,30,16,2127,2162,2163,2129,43,2137,2133,2159,2164,0,5,6,50,44,2140,2125,2128,2141,43,2164,2159,2146,2151,0,44,50,30,16,2141,2128,2130,2142,43,2190,2185,2200,2198,0,16,44,152,151,2164,2165,2166,2167,43,2198,2200,2201,2199,0,151,152,154,153,2167,2166,2168,2169,43,2186,2197,2204,2202,0,16,44,152,151,2170,2171,2172,2173,43,2202,2204,2205,2203,0,151,152,154,153,2173,2172,2174,2175,43,2197,2195,2206,2204,0,16,44,152,151,2171,2176,2177,2172,43,2204,2206,2207,2205,0,151,152,154,153,2172,2177,2178,2174,43,2196,2193,2210,2208,0,16,44,152,151,2179,2180,2181,2182,43,2208,2210,2211,2209,0,151,152,154,153,2182,2181,2183,2184,43,2195,2196,2208,2206,0,16,44,152,151,2176,2179,2182,2177,43,2206,2208,2209,2207,0,151,152,154,153,2177,2182,2184,2178,43,2194,2192,2214,2212,0,16,44,152,151,2185,2186,2187,2188,43,2212,2214,2215,2213,0,151,152,154,153,2188,2187,2189,2190,43,2191,2187,2218,2216,0,16,44,155,151,2191,2192,2193,2194,43,2216,2218,2219,2217,0,151,155,154,153,2194,2193,2195,2196,43,2192,2191,2216,2214,0,16,44,152,151,2186,2191,2194,2187,43,2214,2216,2217,2215,0,151,152,154,153,2187,2194,2196,2189,43,2189,2190,2198,2220,0,16,44,152,151,2197,2164,2167,2198,43,2220,2198,2199,2221,0,151,152,154,153,2198,2167,2169,2199,43,2188,2189,2220,2222,0,16,44,152,151,2200,2197,2198,2201,43,2222,2220,2221,2223,0,151,152,154,153,2201,2198,2199,2202,43,2187,2188,2222,2218,0,16,44,152,151,2192,2200,2201,2193,43,2218,2222,2223,2219,0,151,152,154,153,2193,2201,2202,2195,43,2185,2186,2202,2200,0,16,44,152,151,2165,2170,2173,2166,43,2200,2202,2203,2201,0,151,152,154,153,2166,2173,2175,2168,43,2129,2111,2226,2236,0,16,157,156,49,2120,2119,2203,2204,43,2236,2226,2133,2137,0,49,156,6,30,2204,2203,2125,2140,43,2111,2132,2235,2226,0,5,0,50,44,2119,2118,2205,2203,43,2226,2235,2134,2133,0,44,50,49,16,2203,2205,2126,2125,43,2132,2131,2224,2235,0,158,5,0,159,2118,2117,2206,2205,43,2235,2224,2135,2134,0,159,0,6,160,2205,2206,2161,2126,43,2131,2110,2234,2224,0,16,158,159,49,2117,2100,2207,2206,43,2224,2234,2138,2135,0,49,159,160,30,2206,2207,2152,2161,43,2109,2108,2231,2232,0,30,6,162,161,2098,2097,2208,2209,43,2232,2231,2140,2139,0,161,162,5,16,2209,2208,2158,2153,43,2110,2109,2232,2234,0,5,6,163,44,2100,2098,2209,2207,43,2234,2232,2139,2138,0,44,163,30,16,2207,2209,2153,2152,43,2106,2107,2229,2230,0,30,6,0,161,2094,2093,2210,2211,43,2230,2229,2144,2141,0,161,0,5,16,2211,2210,2143,2149,43,2118,2121,2233,2228,0,5,6,50,44,2108,2110,2212,2213,43,2228,2233,2142,2143,0,44,50,30,16,2213,2212,2131,2144,43,2107,2118,2228,2229,0,5,6,50,44,2093,2108,2213,2210,43,2229,2228,2143,2144,0,44,50,30,16,2210,2213,2144,2143,43,2130,2129,2236,2225,0,164,5,0,165,2124,2120,2204,2214,43,2225,2236,2137,2136,0,165,0,6,166,2214,2204,2140,2137,43,2117,2130,2225,2227,0,167,170,169,168,2123,2124,2214,2215,43,2227,2225,2136,2145,0,168,169,166,171,2215,2214,2137,2132,43,2121,2117,2227,2233,0,16,167,168,49,2110,2123,2215,2212,43,2233,2227,2145,2142,0,49,168,171,30,2212,2215,2132,2131,43,2100,2106,2239,2237,0,6,30,49,172,2095,2094,2216,2217,43,2237,2239,2108,2099,0,172,49,16,5,2217,2216,2097,2096,43,2167,2140,2240,2242,0,44,5,0,53,2159,2158,2218,2219,43,2242,2240,2141,2168,0,53,0,6,50,2219,2218,2149,2150,43,2154,2167,2242,2241,0,16,44,53,49,2160,2159,2219,2220,43,2241,2242,2168,2155,0,49,53,50,30,2220,2219,2150,2151,43,2210,2193,2244,2245,0,151,16,47,173,2181,2180,2221,2222,43,2245,2244,2194,2212,0,173,47,44,152,2222,2221,2185,2188,43,2211,2210,2245,2246,0,153,151,173,174,2183,2181,2222,2223,43,2246,2245,2212,2213,0,174,173,152,154,2223,2222,2188,2190,43,2231,2108,2239,2247,0,175,5,0,53,2208,2097,2216,2224,43,2247,2239,2106,2230,0,53,0,6,163,2224,2216,2094,2211,43,2140,2231,2247,2240,0,16,175,53,176,2158,2208,2224,2218,43,2240,2247,2230,2141,0,176,53,163,30,2218,2224,2211,2149,43,2199,2201,2249,2248,0,153,154,178,177,2169,2168,2225,2226,43,2203,2205,2250,2260,0,153,154,178,177,2175,2174,2227,2228,43,2205,2207,2251,2250,0,153,154,178,177,2174,2178,2229,2227,43,2209,2211,2253,2252,0,153,154,178,177,2184,2183,2230,2231,43,2207,2209,2252,2251,0,153,154,178,177,2178,2184,2231,2229,43,2213,2215,2255,2254,0,153,154,178,177,2190,2189,2232,2233,43,2217,2219,2257,2256,0,153,154,178,177,2196,2195,2234,2235,43,2215,2217,2256,2255,0,153,154,178,177,2189,2196,2235,2232,43,2221,2199,2248,2258,0,153,154,178,177,2199,2169,2226,2236,43,2223,2221,2258,2259,0,153,154,178,177,2202,2199,2236,2237,43,2219,2223,2259,2257,0,153,154,178,177,2195,2202,2237,2234,43,2201,2203,2260,2249,0,153,154,178,177,2168,2175,2228,2225,43,2261,2253,2211,2246,0,179,177,153,174,2238,2230,2183,2223,43,2254,2261,2246,2213,0,178,179,174,154,2233,2238,2223,2190,43,2263,2262,2071,2069,0,50,44,5,6,2239,2003,2002,2240,43,2262,2263,2073,2072,0,44,50,30,16,2003,2239,2085,1838,43,2069,2070,2264,2263,0,5,6,50,44,2240,2241,2242,2239,43,2263,2264,2074,2073,0,44,50,30,16,2239,2242,2082,2085,43,2092,2090,2266,2265,0,5,6,180,44,1848,2090,2243,2006,43,2265,2266,2093,2094,0,44,180,30,16,2006,2243,2244,2008,43,2090,2091,2267,2266,0,5,6,50,181,2090,2089,2245,2243,43,2266,2267,2095,2093,0,181,50,30,16,2243,2245,2246,2244,43,2070,2097,2268,2264,0,6,30,49,0,2241,2247,2248,2242,43,2264,2268,2096,2074,0,0,49,16,5,2242,2248,2099,2082,43,2097,2098,2269,2268,0,6,30,182,0,2247,2249,2250,2248,43,2268,2269,2099,2096,0,0,182,16,5,2248,2250,2096,2099,43,2101,2102,2271,2270,0,6,30,182,183,2251,2252,2253,2254,43,2270,2271,2103,2100,0,183,182,16,5,2254,2253,2092,2095,43,2102,2105,2272,2271,0,6,30,49,183,2252,2255,2256,2253,43,2271,2272,2104,2103,0,183,49,16,5,2253,2256,2104,2092,43,2113,2104,2272,2273,0,184,5,0,185,2101,2104,2256,2257,43,2273,2272,2105,2112,0,185,0,6,186,2257,2256,2255,2258,43,2091,2113,2273,2267,0,16,184,185,49,2089,2101,2257,2245,43,2267,2273,2112,2095,0,49,185,186,30,2245,2257,2258,2246,43,2237,2099,2269,2274,0,184,5,183,187,2217,2096,2250,2259,43,2274,2269,2098,2238,0,187,183,6,186,2259,2250,2249,2260,43,2100,2237,2274,2270,0,16,184,187,182,2095,2217,2259,2254,43,2270,2274,2238,2101,0,182,187,186,30,2254,2259,2260,2251,43,2151,2146,2276,2275,0,16,44,53,182,2142,2130,2261,2262,43,2275,2276,2184,2180,0,182,53,50,30,2262,2261,2263,2264,43,2147,2158,2277,2287,0,16,44,53,49,2129,2163,2265,2266,43,2287,2277,2173,2172,0,49,53,50,30,2266,2265,2267,2268,43,2158,2156,2278,2277,0,16,44,53,49,2163,2157,2269,2265,43,2277,2278,2175,2173,0,49,53,50,30,2265,2269,2270,2267,43,2157,2154,2280,2279,0,16,44,53,49,2156,2160,2271,2272,43,2279,2280,2177,2174,0,49,53,50,30,2272,2271,2273,2274,43,2156,2157,2279,2278,0,16,44,53,49,2157,2156,2272,2269,43,2278,2279,2174,2175,0,49,53,50,30,2269,2272,2274,2270,43,2155,2153,2282,2281,0,16,44,53,49,2151,2148,2275,2276,43,2281,2282,2178,2176,0,49,53,50,30,2276,2275,2277,2278,43,2152,2148,2284,2283,0,16,44,53,49,2147,2136,2279,2280,43,2283,2284,2183,2179,0,49,53,50,30,2280,2279,2281,2282,43,2153,2152,2283,2282,0,16,44,53,49,2148,2147,2280,2275,43,2282,2283,2179,2178,0,49,53,50,30,2275,2280,2282,2277,43,2150,2151,2275,2285,0,16,44,187,161,2139,2142,2262,2283,43,2285,2275,2180,2181,0,161,187,50,30,2283,2262,2264,2284,43,2149,2150,2285,2286,0,16,44,53,49,2135,2139,2283,2285,43,2286,2285,2181,2182,0,49,53,50,30,2285,2283,2284,2286,43,2148,2149,2286,2284,0,16,44,53,49,2136,2135,2285,2279,43,2284,2286,2182,2183,0,49,53,50,30,2279,2285,2286,2281,43,2146,2147,2287,2276,0,16,44,53,49,2130,2129,2266,2261,43,2276,2287,2172,2184,0,49,53,50,30,2261,2266,2268,2263,43,2241,2155,2281,2288,0,47,44,53,188,2220,2151,2276,2287,43,2288,2281,2176,2243,0,188,53,50,51,2287,2276,2278,2288,43,2154,2241,2288,2280,0,16,47,188,49,2160,2220,2287,2271,43,2280,2288,2243,2177,0,49,188,51,30,2271,2287,2288,2273,43,2184,2172,2301,2289,0,16,44,53,49,2263,2268,2289,2290,43,2289,2301,2186,2185,0,49,53,50,30,2290,2289,2170,2165,43,2183,2182,2291,2290,0,16,44,53,49,2281,2286,2291,2292,43,2290,2291,2188,2187,0,49,53,50,30,2292,2291,2200,2192,43,2182,2181,2292,2291,0,16,44,53,49,2286,2284,2293,2291,43,2291,2292,2189,2188,0,49,53,50,30,2291,2293,2197,2200,43,2181,2180,2293,2292,0,16,44,187,49,2284,2264,2294,2293,43,2292,2293,2190,2189,0,49,187,50,30,2293,2294,2164,2197,43,2178,2179,2295,2294,0,16,44,53,49,2277,2282,2295,2296,43,2294,2295,2191,2192,0,49,53,50,30,2296,2295,2191,2186,43,2179,2183,2290,2295,0,16,44,53,49,2282,2281,2292,2295,43,2295,2290,2187,2191,0,49,53,50,30,2295,2292,2192,2191,43,2176,2178,2294,2297,0,16,44,53,49,2278,2277,2296,2297,43,2297,2294,2192,2194,0,49,53,50,30,2297,2296,2186,2185,43,2175,2174,2299,2298,0,16,44,53,49,2270,2274,2298,2299,43,2298,2299,2196,2195,0,49,53,50,30,2299,2298,2179,2176,43,2174,2177,2296,2299,0,16,44,53,49,2274,2273,2300,2298,43,2299,2296,2193,2196,0,49,53,50,30,2298,2300,2180,2179,43,2173,2175,2298,2300,0,16,44,53,49,2267,2270,2299,2301,43,2300,2298,2195,2197,0,49,53,50,30,2301,2299,2176,2171,43,2172,2173,2300,2301,0,16,44,53,49,2268,2267,2301,2289,43,2301,2300,2197,2186,0,49,53,50,30,2289,2301,2171,2170,43,2180,2184,2289,2293,0,16,44,53,49,2264,2263,2290,2294,43,2293,2289,2185,2190,0,49,53,50,30,2294,2290,2165,2164,43,2243,2176,2297,2302,0,47,44,53,52,2288,2278,2297,2302,43,2302,2297,2194,2244,0,52,53,50,51,2302,2297,2185,2221,43,2177,2243,2302,2296,0,16,47,52,49,2273,2288,2302,2300,43,2296,2302,2244,2193,0,49,52,51,30,2300,2302,2221,2180,43,2254,2310,2303,2261,0,178,179,174,154,2233,2303,2304,2238,43,2261,2303,2311,2253,0,179,177,153,174,2238,2304,2305,2230,43,2260,2304,2315,2249,0,153,154,178,177,2228,2306,2307,2225,43,2259,2305,2307,2257,0,153,154,178,177,2237,2308,2309,2234,43,2258,2306,2305,2259,0,153,154,178,177,2236,2310,2308,2237,43,2248,2316,2306,2258,0,153,154,178,177,2226,2311,2310,2236,43,2256,2308,2309,2255,0,153,154,178,177,2235,2312,2313,2232,43,2257,2307,2308,2256,0,153,154,178,177,2234,2309,2312,2235,43,2255,2309,2310,2254,0,153,154,178,177,2232,2313,2303,2233,43,2252,2312,2313,2251,0,153,154,178,177,2231,2314,2315,2229,43,2253,2311,2312,2252,0,153,154,178,177,2230,2305,2314,2231,43,2251,2313,2314,2250,0,153,154,178,177,2229,2315,2316,2227,43,2250,2314,2304,2260,0,153,154,178,177,2227,2316,2306,2228,43,2249,2315,2316,2248,0,153,154,178,177,2225,2307,2311,2226,43,2319,2349,2350,2334,0,189,190,191,192,2317,2318,2319,2320,43,2531,2319,2334,2530,0,193,189,192,194,2321,2317,2320,2322,43,2321,2338,2346,2325,0,195,196,197,198,2323,2324,2325,2326,43,2547,2321,2325,2539,0,199,195,198,200,2327,2323,2326,2328,43,2328,2345,2337,2320,0,201,202,203,204,2329,2330,2331,2332,43,2540,2328,2320,2548,0,205,201,204,206,2333,2329,2332,2334,43,2317,2347,2339,2318,0,207,208,209,210,2335,2336,2337,2338,43,2538,2317,2318,2546,0,211,207,210,212,2339,2335,2338,2340,43,2347,2317,2326,2340,0,208,207,213,214,2336,2335,2341,2342,43,2317,2538,2545,2326,0,207,211,215,213,2335,2339,2343,2341,43,2318,2339,2348,2324,0,210,209,216,217,2338,2337,2344,2345,43,2546,2318,2324,2537,0,212,210,217,218,2340,2338,2345,2346,43,2323,2341,2343,2322,0,219,220,221,222,2347,2348,2349,2350,43,2544,2323,2322,2542,0,223,219,222,224,2351,2347,2350,2352,43,2332,2353,2349,2319,0,225,226,190,189,2353,2354,2318,2317,43,2456,2332,2319,2531,0,227,225,189,193,2355,2353,2317,2321,43,2320,2337,2342,2327,0,204,203,228,229,2332,2331,2356,2357,43,2548,2320,2327,2543,0,206,204,229,230,2334,2332,2357,2358,43,2322,2343,2338,2321,0,222,221,196,195,2350,2349,2324,2323,43,2542,2322,2321,2547,0,224,222,195,199,2352,2350,2323,2327,43,2324,2348,2341,2323,0,217,216,220,219,2345,2344,2348,2347,43,2537,2324,2323,2544,0,218,217,219,223,2346,2345,2347,2351,43,2325,2346,2344,2331,0,198,197,231,232,2326,2325,2359,2360,43,2539,2325,2331,2541,0,200,198,232,233,2328,2326,2360,2361,43,2327,2342,2340,2326,0,229,228,214,213,2357,2356,2342,2341,43,2543,2327,2326,2545,0,230,229,213,215,2358,2357,2341,2343,43,2329,2352,2345,2328,0,234,235,202,201,2362,2363,2330,2329,43,2474,2329,2328,2540,0,236,234,201,205,2364,2362,2329,2333,43,2335,2351,2355,2330,0,237,238,239,240,2365,2366,2367,2368,43,2487,2335,2330,2391,0,241,237,240,242,2369,2365,2368,2370,43,2330,2355,2352,2329,0,240,239,235,234,2368,2367,2363,2362,43,2391,2330,2329,2474,0,242,240,234,236,2370,2368,2362,2364,43,2331,2344,2354,2333,0,232,231,243,244,2360,2359,2371,2372,43,2541,2331,2333,2435,0,233,232,244,245,2361,2360,2372,2373,43,2333,2354,2353,2332,0,244,243,226,225,2372,2371,2354,2353,43,2435,2333,2332,2456,0,245,244,225,227,2373,2372,2353,2355,43,2334,2350,2356,2336,0,246,247,248,249,2320,2319,2374,2375,43,2530,2334,2336,2362,0,250,246,249,251,2322,2320,2375,2376,43,2336,2356,2351,2335,0,249,248,238,237,2375,2374,2366,2365,43,2362,2336,2335,2487,0,251,249,237,241,2376,2375,2365,2369,43,2373,2496,2500,2375,0,252,253,254,255,2377,2378,2379,2380,43,2381,2373,2375,2383,0,256,252,255,257,2381,2377,2380,2382,43,2364,2502,2496,2373,0,258,259,253,252,2383,2384,2378,2377,43,2481,2364,2373,2381,0,260,258,252,256,2385,2383,2377,2381,43,2365,2498,2506,2372,0,261,262,263,264,2386,2387,2388,2389,43,2480,2365,2372,2380,0,265,261,264,266,2390,2386,2389,2391,43,2372,2506,2504,2374,0,264,263,267,268,2389,2388,2392,2393,43,2380,2372,2374,2382,0,266,264,268,269,2391,2389,2393,2394,43,2359,2508,2502,2364,0,270,271,259,258,2395,2396,2384,2383,43,2476,2359,2364,2481,0,272,270,258,260,2397,2395,2383,2385,43,2374,2504,2508,2359,0,268,267,271,270,2393,2392,2396,2395,43,2382,2374,2359,2476,0,269,268,270,272,2394,2393,2395,2397,43,2361,2510,2492,2367,0,273,274,275,276,2398,2399,2400,2401,43,2482,2361,2367,2485,0,277,273,276,278,2402,2398,2401,2403,43,2366,2494,2512,2369,0,279,280,281,282,2404,2405,2406,2407,43,2484,2366,2369,2483,0,283,279,282,284,2408,2404,2407,2409,43,2369,2512,2510,2361,0,282,281,274,273,2407,2406,2399,2398,43,2483,2369,2361,2482,0,284,282,273,277,2409,2407,2398,2402,43,2370,2514,2494,2366,0,285,286,280,279,2410,2411,2405,2404,43,2378,2370,2366,2484,0,287,285,279,283,2412,2410,2404,2408,43,2375,2500,2514,2370,0,255,254,286,285,2380,2379,2411,2410,43,2383,2375,2370,2378,0,257,255,285,287,2382,2380,2410,2412,43,2377,2518,2515,2371,0,288,289,290,291,2413,2414,2415,2416,43,2385,2377,2371,2379,0,292,288,291,293,2417,2413,2416,2418,43,2360,2520,2518,2377,0,294,295,289,288,2419,2420,2414,2413,43,2477,2360,2377,2385,0,296,294,288,292,2421,2419,2413,2417,43,2357,2522,2517,2363,0,297,298,299,300,2422,2423,2424,2425,43,2478,2357,2363,2488,0,301,297,300,302,2426,2422,2425,2427,43,2367,2492,2523,2368,0,276,275,303,304,2401,2400,2428,2429,43,2485,2367,2368,2486,0,278,276,304,305,2403,2401,2429,2430,43,2368,2523,2520,2360,0,304,303,295,294,2429,2428,2420,2419,43,2486,2368,2360,2477,0,305,304,294,296,2430,2429,2419,2421,43,2376,2526,2522,2357,0,306,307,298,297,2431,2432,2423,2422,43,2384,2376,2357,2478,0,308,306,297,301,2433,2431,2422,2426,43,2371,2515,2528,2358,0,291,290,309,310,2416,2415,2434,2435,43,2379,2371,2358,2479,0,293,291,310,311,2418,2416,2435,2436,43,2358,2528,2526,2376,0,310,309,307,306,2435,2434,2432,2431,43,2479,2358,2376,2384,0,311,310,306,308,2436,2435,2431,2433,43,2363,2517,2530,2362,0,300,299,250,251,2425,2424,2322,2376,43,2488,2363,2362,2487,0,302,300,251,241,2427,2425,2376,2369,43,2399,2381,2383,2401,0,312,256,257,313,2437,2381,2382,2438,43,2458,2399,2401,2466,0,314,312,313,315,2439,2437,2438,2440,43,2389,2481,2381,2399,0,316,260,256,312,2441,2385,2381,2437,43,2709,2389,2399,2458,0,317,316,312,314,2442,2441,2437,2439,43,2388,2480,2380,2398,0,318,265,266,319,2443,2390,2391,2444,43,2459,2388,2398,2460,0,320,318,319,321,2445,2443,2444,2446,43,2398,2380,2382,2395,0,319,266,269,322,2444,2391,2394,2447,43,2460,2398,2395,2462,0,321,319,322,323,2446,2444,2447,2448,43,2392,2476,2481,2389,0,324,272,260,316,2449,2397,2385,2441,43,2461,2392,2389,2709,0,325,324,316,317,2450,2449,2441,2442,43,2395,2382,2476,2392,0,322,269,272,324,2447,2394,2397,2449,43,2462,2395,2392,2461,0,323,322,324,325,2448,2447,2449,2450,43,2403,2482,2485,2406,0,326,277,278,327,2451,2402,2403,2452,43,2463,2403,2406,2468,0,328,326,327,329,2453,2451,2452,2454,43,2387,2484,2483,2405,0,330,283,284,331,2455,2408,2409,2456,43,2757,2387,2405,2464,0,332,330,331,333,2457,2455,2456,2458,43,2405,2483,2482,2403,0,331,284,277,326,2456,2409,2402,2451,43,2464,2405,2403,2463,0,333,331,326,328,2458,2456,2451,2453,43,2386,2378,2484,2387,0,334,287,283,330,2459,2412,2408,2455,43,2465,2386,2387,2757,0,335,334,330,332,2460,2459,2455,2457,43,2401,2383,2378,2386,0,313,257,287,334,2438,2382,2412,2459,43,2466,2401,2386,2465,0,315,313,334,335,2440,2438,2459,2460,43,2397,2385,2379,2404,0,336,292,293,337,2461,2417,2418,2462,43,2467,2397,2404,2471,0,338,336,337,339,2463,2461,2462,2464,43,2393,2477,2385,2397,0,340,296,292,336,2465,2421,2417,2461,43,2469,2393,2397,2467,0,341,340,336,338,2466,2465,2461,2463,43,2394,2478,2488,2402,0,342,301,302,343,2467,2426,2427,2468,43,2470,2394,2402,2475,0,344,342,343,345,2469,2467,2468,2470,43,2406,2485,2486,2390,0,327,278,305,346,2452,2403,2430,2471,43,2468,2406,2390,2590,0,329,327,346,347,2454,2452,2471,2472,43,2390,2486,2477,2393,0,346,305,296,340,2471,2430,2421,2465,43,2590,2390,2393,2469,0,347,346,340,341,2472,2471,2465,2466,43,2396,2384,2478,2394,0,348,308,301,342,2473,2433,2426,2467,43,2472,2396,2394,2470,0,349,348,342,344,2474,2473,2467,2469,43,2404,2379,2479,2400,0,337,293,311,350,2462,2418,2436,2475,43,2471,2404,2400,2473,0,339,337,350,351,2464,2462,2475,2476,43,2400,2479,2384,2396,0,350,311,308,348,2475,2436,2433,2473,43,2473,2400,2396,2472,0,351,350,348,349,2476,2475,2473,2474,43,2402,2488,2487,2391,0,343,302,241,242,2468,2427,2369,2370,43,2475,2402,2391,2474,0,345,343,242,236,2470,2468,2370,2364,43,2532,2531,2530,2517,0,352,193,194,353,2477,2321,2322,2424,43,2525,2532,2517,2522,0,354,352,353,355,2478,2477,2424,2423,43,2527,2525,2522,2526,0,356,354,355,357,2479,2478,2423,2432,43,2529,2527,2526,2528,0,358,356,357,359,2480,2479,2432,2434,43,2516,2529,2528,2515,0,360,358,359,361,2481,2480,2434,2415,43,2519,2516,2515,2518,0,362,360,361,363,2482,2481,2415,2414,43,2521,2519,2518,2520,0,364,362,363,365,2483,2482,2414,2420,43,2524,2521,2520,2523,0,366,364,365,367,2484,2483,2420,2428,43,2491,2524,2523,2492,0,368,366,367,369,2485,2484,2428,2400,43,2509,2491,2492,2510,0,370,368,369,371,2486,2485,2400,2399,43,2511,2509,2510,2512,0,372,370,371,373,2487,2486,2399,2406,43,2493,2511,2512,2494,0,374,372,373,375,2488,2487,2406,2405,43,2513,2493,2494,2514,0,376,374,375,377,2489,2488,2405,2411,43,2499,2513,2514,2500,0,378,376,377,379,2490,2489,2411,2379,43,2495,2499,2500,2496,0,380,378,379,381,2491,2490,2379,2378,43,2501,2495,2496,2502,0,382,380,381,383,2492,2491,2378,2384,43,2507,2501,2502,2508,0,384,382,383,385,2493,2492,2384,2396,43,2503,2507,2508,2504,0,386,384,385,387,2494,2493,2396,2392,43,2505,2503,2504,2506,0,388,386,387,389,2495,2494,2392,2388,43,2497,2505,2506,2498,0,390,388,389,391,2496,2495,2388,2387,43,2421,2448,2439,2408,0,392,393,394,395,2497,2498,2499,2500,43,2420,2421,2408,2407,0,396,392,395,397,2501,2497,2500,2502,43,2408,2439,2442,2411,0,395,394,398,399,2500,2499,2503,2504,43,2407,2408,2411,2710,0,397,395,399,400,2502,2500,2504,2505,43,2410,2441,2440,2409,0,401,402,403,404,2506,2507,2508,2509,43,2686,2410,2409,2734,0,405,401,404,406,2510,2506,2509,2511,43,2413,2443,2441,2410,0,407,408,402,401,2512,2513,2507,2506,43,2412,2413,2410,2686,0,409,407,401,405,2514,2512,2506,2510,43,2411,2442,2444,2415,0,399,398,410,411,2504,2503,2515,2516,43,2710,2411,2415,2414,0,400,399,411,412,2505,2504,2516,2517,43,2415,2444,2443,2413,0,411,410,408,407,2516,2515,2513,2512,43,2414,2415,2413,2412,0,412,411,407,409,2517,2516,2512,2514,43,2425,2451,2446,2418,0,413,414,415,416,2518,2519,2520,2521,43,2424,2425,2418,2663,0,417,413,416,418,2522,2518,2521,2523,43,2417,2445,2447,2419,0,419,420,421,422,2524,2525,2526,2527,43,2416,2417,2419,2758,0,423,419,422,424,2528,2524,2527,2529,43,2418,2446,2445,2417,0,416,415,420,419,2521,2520,2525,2524,43,2663,2418,2417,2416,0,418,416,419,423,2523,2521,2524,2528,43,2419,2447,2449,2422,0,422,421,425,426,2527,2526,2530,2531,43,2758,2419,2422,2639,0,424,422,426,427,2529,2527,2531,2532,43,2422,2449,2448,2421,0,426,425,393,392,2531,2530,2498,2497,43,2639,2422,2421,2420,0,427,426,392,396,2532,2531,2497,2501,43,2430,2454,2450,2423,0,428,429,430,431,2533,2534,2535,2536,43,2429,2430,2423,2614,0,432,428,431,433,2537,2533,2536,2538,43,2423,2450,2453,2428,0,431,430,434,435,2536,2535,2539,2540,43,2614,2423,2428,2602,0,433,431,435,436,2538,2536,2540,2541,43,2427,2452,2451,2425,0,437,438,414,413,2542,2543,2519,2518,43,2426,2427,2425,2424,0,439,437,413,417,2544,2542,2518,2522,43,2428,2453,2452,2427,0,435,434,438,437,2540,2539,2543,2542,43,2602,2428,2427,2426,0,436,435,437,439,2541,2540,2542,2544,43,2437,2490,2489,2434,0,440,441,442,443,2545,2546,2547,2548,43,2436,2437,2434,2433,0,444,440,443,445,2549,2545,2548,2550,43,2432,2455,2454,2430,0,446,447,429,428,2551,2552,2534,2533,43,2431,2432,2430,2429,0,448,446,428,432,2553,2551,2533,2537,43,2434,2489,2455,2432,0,443,442,447,446,2548,2547,2552,2551,43,2433,2434,2432,2431,0,445,443,446,448,2550,2548,2551,2553,43,2435,2456,2457,2438,0,245,227,449,450,2373,2355,2554,2555,43,2541,2435,2438,2534,0,233,245,450,451,2361,2373,2555,2556,43,2438,2457,2490,2437,0,450,449,441,440,2555,2554,2546,2545,43,2534,2438,2437,2436,0,451,450,440,444,2556,2555,2545,2549,43,2448,2499,2495,2439,0,393,378,380,394,2498,2490,2491,2499,43,2439,2495,2501,2442,0,394,380,382,398,2499,2491,2492,2503,43,2441,2505,2497,2440,0,402,388,390,403,2507,2495,2496,2508,43,2443,2503,2505,2441,0,408,386,388,402,2513,2494,2495,2507,43,2442,2501,2507,2444,0,398,382,384,410,2503,2492,2493,2515,43,2444,2507,2503,2443,0,410,384,386,408,2515,2493,2494,2513,43,2451,2491,2509,2446,0,414,368,370,415,2519,2485,2486,2520,43,2445,2511,2493,2447,0,420,372,374,421,2525,2487,2488,2526,43,2446,2509,2511,2445,0,415,370,372,420,2520,2486,2487,2525,43,2447,2493,2513,2449,0,421,374,376,425,2526,2488,2489,2530,43,2449,2513,2499,2448,0,425,376,378,393,2530,2489,2490,2498,43,2454,2516,2519,2450,0,429,360,362,430,2534,2481,2482,2535,43,2450,2519,2521,2453,0,430,362,364,434,2535,2482,2483,2539,43,2452,2524,2491,2451,0,438,366,368,414,2543,2484,2485,2519,43,2453,2521,2524,2452,0,434,364,366,438,2539,2483,2484,2543,43,2490,2525,2527,2489,0,441,354,356,442,2546,2478,2479,2547,43,2455,2529,2516,2454,0,447,358,360,429,2552,2480,2481,2534,43,2489,2527,2529,2455,0,442,356,358,447,2547,2479,2480,2552,43,2456,2531,2532,2457,0,227,193,352,449,2355,2321,2477,2554,43,2457,2532,2525,2490,0,449,352,354,441,2554,2477,2478,2546,43,2630,2537,2544,2624,0,452,218,223,453,2557,2346,2351,2558,43,2536,2545,2538,2629,0,454,215,211,455,2559,2343,2339,2560,43,2533,2546,2537,2630,0,456,212,218,452,2561,2340,2346,2557,43,2629,2538,2546,2533,0,455,211,212,456,2560,2339,2340,2561,43,2623,2547,2539,2628,0,457,199,200,458,2562,2327,2328,2563,43,2627,2540,2548,2535,0,459,205,206,460,2564,2333,2334,2565,43,2628,2539,2541,2534,0,458,200,233,451,2563,2328,2361,2556,43,2475,2474,2540,2627,0,345,236,205,459,2470,2364,2333,2564,43,2626,2542,2547,2623,0,461,224,199,457,2566,2352,2327,2562,43,2535,2548,2543,2625,0,460,206,230,462,2565,2334,2358,2567,43,2624,2544,2542,2626,0,453,223,224,461,2558,2351,2352,2566,43,2625,2543,2545,2536,0,462,230,215,454,2567,2358,2343,2559,43,2554,2565,2569,2558,0,463,464,465,466,2568,2569,2570,2571,43,2635,2554,2558,2574,0,467,463,466,468,2572,2568,2571,2573,43,2559,2570,2564,2553,0,469,470,471,472,2574,2575,2576,2577,43,2575,2559,2553,2634,0,473,469,472,474,2578,2574,2577,2579,43,2552,2563,2565,2554,0,475,476,464,463,2580,2581,2569,2568,43,2636,2552,2554,2635,0,477,475,463,467,2582,2580,2568,2572,43,2553,2564,2566,2555,0,472,471,478,479,2577,2576,2583,2584,43,2634,2553,2555,2571,0,474,472,479,480,2579,2577,2584,2585,43,2473,2472,2562,2551,0,351,349,481,482,2476,2474,2586,2587,43,2471,2473,2551,2633,0,339,351,482,483,2464,2476,2587,2588,43,2550,2561,2433,2431,0,484,485,445,448,2589,2590,2550,2553,43,2632,2550,2431,2429,0,486,484,448,432,2591,2589,2553,2537,43,2551,2562,2563,2552,0,482,481,476,475,2587,2586,2581,2580,43,2633,2551,2552,2636,0,483,482,475,477,2588,2587,2580,2582,43,2555,2566,2561,2550,0,479,478,485,484,2584,2583,2590,2589,43,2571,2555,2550,2632,0,480,479,484,486,2585,2584,2589,2591,43,2557,2568,2567,2556,0,487,488,489,490,2592,2593,2594,2595,43,2573,2557,2556,2572,0,491,487,490,492,2596,2592,2595,2597,43,2556,2567,2560,2549,0,490,489,493,494,2595,2594,2598,2599,43,2572,2556,2549,2631,0,492,490,494,495,2597,2595,2599,2600,43,2558,2569,2568,2557,0,466,465,488,487,2571,2570,2593,2592,43,2574,2558,2557,2573,0,468,466,487,491,2573,2571,2592,2596,43,2549,2560,2570,2559,0,494,493,470,469,2599,2598,2575,2574,43,2631,2549,2559,2575,0,495,494,469,473,2600,2599,2574,2578,43,2565,2576,2582,2569,0,464,496,497,465,2569,2601,2602,2570,43,2570,2583,2577,2564,0,470,498,499,471,2575,2603,2604,2576,43,2563,2578,2576,2565,0,476,500,496,464,2581,2605,2601,2569,43,2564,2577,2580,2566,0,471,499,501,478,2576,2604,2606,2583,43,2472,2470,2597,2562,0,349,344,502,481,2474,2469,2607,2586,43,2561,2579,2436,2433,0,485,503,444,445,2590,2608,2549,2550,43,2562,2597,2578,2563,0,481,502,500,476,2586,2607,2605,2581,43,2566,2580,2579,2561,0,478,501,503,485,2583,2606,2608,2590,43,2568,2581,2598,2567,0,488,504,505,489,2593,2609,2610,2594,43,2567,2598,2584,2560,0,489,505,506,493,2594,2610,2611,2598,43,2569,2582,2581,2568,0,465,497,504,488,2570,2602,2609,2593,43,2560,2584,2583,2570,0,493,506,498,470,2598,2611,2603,2575,43,2585,2599,2608,2594,0,507,508,509,510,2612,2613,2614,2615,43,2776,2585,2594,2770,0,511,507,510,512,2616,2612,2615,2617,43,2595,2609,2601,2587,0,513,514,515,516,2618,2619,2620,2621,43,2769,2595,2587,2775,0,517,513,516,518,2622,2618,2621,2623,43,2585,2776,2768,2586,0,507,511,519,520,2612,2616,2624,2625,43,2599,2585,2586,2600,0,508,507,520,521,2613,2612,2625,2626,43,2587,2601,2600,2586,0,516,515,521,520,2621,2620,2626,2625,43,2775,2587,2586,2768,0,518,516,520,519,2623,2621,2625,2624,43,2591,2605,2603,2588,0,522,523,524,525,2627,2628,2629,2630,43,2767,2591,2588,2774,0,526,522,525,527,2631,2627,2630,2632,43,2589,2604,2606,2592,0,528,529,530,531,2633,2634,2635,2636,43,2773,2589,2592,2766,0,532,528,531,533,2637,2633,2636,2638,43,2588,2603,2602,2426,0,525,524,436,439,2630,2629,2541,2544,43,2774,2588,2426,2424,0,527,525,439,417,2632,2630,2544,2522,43,2590,2469,2604,2589,0,347,341,529,528,2472,2466,2634,2633,43,2468,2590,2589,2773,0,329,347,528,532,2454,2472,2633,2637,43,2593,2607,2605,2591,0,534,535,523,522,2639,2640,2628,2627,43,2772,2593,2591,2767,0,536,534,522,526,2641,2639,2627,2631,43,2592,2606,2610,2596,0,531,530,537,538,2636,2635,2642,2643,43,2766,2592,2596,2771,0,533,531,538,539,2638,2636,2643,2644,43,2594,2608,2607,2593,0,510,509,535,534,2615,2614,2640,2639,43,2770,2594,2593,2772,0,512,510,534,536,2617,2615,2639,2641,43,2596,2610,2609,2595,0,538,537,514,513,2643,2642,2619,2618,43,2771,2596,2595,2769,0,539,538,513,517,2644,2643,2618,2622,43,2576,2625,2536,2582,0,496,462,454,497,2601,2567,2559,2602,43,2583,2624,2626,2577,0,498,453,461,499,2603,2558,2566,2604,43,2578,2535,2625,2576,0,500,460,462,496,2605,2565,2567,2601,43,2577,2626,2623,2580,0,499,461,457,501,2604,2566,2562,2606,43,2470,2475,2627,2597,0,344,345,459,502,2469,2470,2564,2607,43,2579,2628,2534,2436,0,503,458,451,444,2608,2563,2556,2549,43,2597,2627,2535,2578,0,502,459,460,500,2607,2564,2565,2605,43,2580,2623,2628,2579,0,501,457,458,503,2606,2562,2563,2608,43,2581,2629,2533,2598,0,504,455,456,505,2609,2560,2561,2610,43,2598,2533,2630,2584,0,505,456,452,506,2610,2561,2557,2611,43,2582,2536,2629,2581,0,497,454,455,504,2602,2559,2560,2609,43,2584,2630,2624,2583,0,506,452,453,498,2611,2557,2558,2603,43,2599,2611,2620,2608,0,508,540,541,509,2613,2645,2646,2614,43,2609,2621,2613,2601,0,514,542,543,515,2619,2647,2648,2620,43,2600,2612,2611,2599,0,521,544,540,508,2626,2649,2645,2613,43,2601,2613,2612,2600,0,515,543,544,521,2620,2648,2649,2626,43,2605,2617,2615,2603,0,523,545,546,524,2628,2650,2651,2629,43,2604,2616,2618,2606,0,529,547,548,530,2634,2652,2653,2635,43,2603,2615,2614,2602,0,524,546,433,436,2629,2651,2538,2541,43,2469,2467,2616,2604,0,341,338,547,529,2466,2463,2652,2634,43,2607,2619,2617,2605,0,535,549,545,523,2640,2654,2650,2628,43,2606,2618,2622,2610,0,530,548,550,537,2635,2653,2655,2642,43,2608,2620,2619,2607,0,509,541,549,535,2614,2646,2654,2640,43,2610,2622,2621,2609,0,537,550,542,514,2642,2655,2647,2619,43,2611,2631,2575,2620,0,540,495,473,541,2645,2600,2578,2646,43,2621,2574,2573,2613,0,542,468,491,543,2647,2573,2596,2648,43,2612,2572,2631,2611,0,544,492,495,540,2649,2597,2600,2645,43,2613,2573,2572,2612,0,543,491,492,544,2648,2596,2597,2649,43,2617,2571,2632,2615,0,545,480,486,546,2650,2585,2591,2651,43,2616,2633,2636,2618,0,547,483,477,548,2652,2588,2582,2653,43,2615,2632,2429,2614,0,546,486,432,433,2651,2591,2537,2538,43,2467,2471,2633,2616,0,338,339,483,547,2463,2464,2588,2652,43,2619,2634,2571,2617,0,549,474,480,545,2654,2579,2585,2650,43,2618,2636,2635,2622,0,548,477,467,550,2653,2582,2572,2655,43,2620,2575,2634,2619,0,541,473,474,549,2646,2578,2579,2654,43,2622,2635,2574,2621,0,550,467,468,542,2655,2572,2573,2647,43,2637,2759,2761,2645,0,551,552,553,554,2656,2657,2658,2659,43,2719,2637,2645,2726,0,555,551,554,556,2660,2656,2659,2661,43,2638,2720,2727,2646,0,557,558,559,560,2662,2663,2664,2665,43,2760,2638,2646,2762,0,561,557,560,562,2666,2662,2665,2667,43,2640,2764,2759,2637,0,563,564,552,551,2668,2669,2657,2656,43,2721,2640,2637,2719,0,565,563,551,555,2670,2668,2656,2660,43,2641,2722,2720,2638,0,566,567,558,557,2671,2672,2663,2662,43,2765,2641,2638,2760,0,568,566,557,561,2673,2671,2662,2666,43,2465,2757,2755,2642,0,335,332,569,570,2460,2457,2674,2675,43,2466,2465,2642,2723,0,315,335,570,571,2440,2460,2675,2676,43,2639,2420,2724,2643,0,427,396,572,573,2532,2501,2677,2678,43,2758,2639,2643,2756,0,424,427,573,574,2529,2532,2678,2679,43,2642,2755,2764,2640,0,570,569,564,563,2675,2674,2669,2668,43,2723,2642,2640,2721,0,571,570,563,565,2676,2675,2668,2670,43,2643,2724,2722,2641,0,573,572,567,566,2678,2677,2672,2671,43,2756,2643,2641,2765,0,574,573,566,568,2679,2678,2671,2673,43,2647,2753,2763,2644,0,575,576,577,578,2680,2681,2682,2683,43,2728,2647,2644,2725,0,579,575,578,580,2684,2680,2683,2685,43,2648,2729,2725,2644,0,581,582,580,578,2686,2687,2685,2683,43,2754,2648,2644,2763,0,583,581,578,577,2688,2686,2683,2682,43,2645,2761,2753,2647,0,554,553,576,575,2659,2658,2681,2680,43,2726,2645,2647,2728,0,556,554,575,579,2661,2659,2680,2684,43,2646,2727,2729,2648,0,560,559,582,581,2665,2664,2687,2686,43,2762,2646,2648,2754,0,562,560,581,583,2667,2665,2686,2688,43,2650,2753,2761,2656,0,584,576,553,585,2689,2681,2658,2690,43,2661,2650,2656,2668,0,586,584,585,587,2691,2689,2690,2692,43,2651,2662,2669,2657,0,588,589,590,591,2693,2694,2695,2696,43,2754,2651,2657,2762,0,583,588,591,562,2688,2693,2696,2667,43,2650,2661,2660,2649,0,584,586,592,593,2689,2691,2697,2698,43,2753,2650,2649,2763,0,576,584,593,577,2681,2689,2698,2682,43,2651,2754,2763,2649,0,588,583,577,593,2693,2688,2682,2698,43,2662,2651,2649,2660,0,589,588,593,592,2694,2693,2698,2697,43,2652,2664,2666,2654,0,594,595,596,597,2699,2700,2701,2702,43,2755,2652,2654,2764,0,569,594,597,564,2674,2699,2702,2669,43,2653,2756,2765,2655,0,598,574,568,599,2703,2679,2673,2704,43,2665,2653,2655,2667,0,600,598,599,601,2705,2703,2704,2706,43,2464,2463,2664,2652,0,333,328,595,594,2458,2453,2700,2699,43,2757,2464,2652,2755,0,332,333,594,569,2457,2458,2699,2674,43,2416,2758,2756,2653,0,423,424,574,598,2528,2529,2679,2703,43,2663,2416,2653,2665,0,418,423,598,600,2523,2528,2703,2705,43,2654,2666,2670,2658,0,597,596,602,603,2702,2701,2707,2708,43,2764,2654,2658,2759,0,564,597,603,552,2669,2702,2708,2657,43,2655,2765,2760,2659,0,599,568,561,604,2704,2673,2666,2709,43,2667,2655,2659,2671,0,601,599,604,605,2706,2704,2709,2710,43,2658,2670,2668,2656,0,603,602,587,585,2708,2707,2692,2690,43,2759,2658,2656,2761,0,552,603,585,553,2657,2708,2690,2658,43,2659,2760,2762,2657,0,604,561,562,591,2709,2666,2667,2696,43,2671,2659,2657,2669,0,605,604,591,590,2710,2709,2696,2695,43,2775,2661,2668,2769,0,518,586,587,517,2623,2691,2692,2622,43,2662,2776,2770,2669,0,589,511,512,590,2694,2616,2617,2695,43,2661,2775,2768,2660,0,586,518,519,592,2691,2623,2624,2697,43,2776,2662,2660,2768,0,511,589,592,519,2616,2694,2697,2624,43,2664,2773,2766,2666,0,595,532,533,596,2700,2637,2638,2701,43,2774,2665,2667,2767,0,527,600,601,526,2632,2705,2706,2631,43,2463,2468,2773,2664,0,328,329,532,595,2453,2454,2637,2700,43,2424,2663,2665,2774,0,417,418,600,527,2522,2523,2705,2632,43,2666,2766,2771,2670,0,596,533,539,602,2701,2638,2644,2707,43,2767,2667,2671,2772,0,526,601,605,536,2631,2706,2710,2641,43,2670,2771,2769,2668,0,602,539,517,587,2707,2644,2622,2692,43,2772,2671,2669,2770,0,536,605,590,512,2641,2710,2695,2617,43,2679,2715,2707,2673,0,606,607,608,609,2711,2712,2713,2714,43,2702,2679,2673,2696,0,610,606,609,611,2715,2711,2714,2716,43,2680,2703,2697,2674,0,612,613,614,615,2717,2718,2719,2720,43,2716,2680,2674,2708,0,616,612,615,617,2721,2717,2720,2722,43,2673,2707,2706,2672,0,609,608,618,619,2714,2713,2723,2724,43,2696,2673,2672,2695,0,611,609,619,620,2716,2714,2724,2725,43,2674,2697,2695,2672,0,615,614,620,619,2720,2719,2725,2724,43,2708,2674,2672,2706,0,617,615,619,618,2722,2720,2724,2723,43,2675,2711,2713,2677,0,621,622,623,624,2726,2727,2728,2729,43,2698,2675,2677,2700,0,625,621,624,626,2730,2726,2729,2731,43,2676,2699,2701,2678,0,627,628,629,630,2732,2733,2734,2735,43,2712,2676,2678,2714,0,631,627,630,632,2736,2732,2735,2737,43,2461,2709,2711,2675,0,325,317,622,621,2450,2442,2727,2726,43,2462,2461,2675,2698,0,323,325,621,625,2448,2450,2726,2730,43,2414,2412,2699,2676,0,412,409,628,627,2517,2514,2733,2732,43,2710,2414,2676,2712,0,400,412,627,631,2505,2517,2732,2736,43,2677,2713,2717,2681,0,624,623,633,634,2729,2728,2738,2739,43,2700,2677,2681,2704,0,626,624,634,635,2731,2729,2739,2740,43,2678,2701,2705,2682,0,630,629,636,637,2735,2734,2741,2742,43,2714,2678,2682,2718,0,632,630,637,638,2737,2735,2742,2743,43,2681,2717,2715,2679,0,634,633,607,606,2739,2738,2712,2711,43,2704,2681,2679,2702,0,635,634,606,610,2740,2739,2711,2715,43,2682,2705,2703,2680,0,637,636,613,612,2742,2741,2718,2717,43,2718,2682,2680,2716,0,638,637,612,616,2743,2742,2717,2721,43,2691,2702,2696,2684,0,639,610,611,640,2744,2715,2716,2745,43,2737,2691,2684,2730,0,641,639,640,642,2746,2744,2745,2747,43,2692,2738,2731,2685,0,643,644,645,646,2748,2749,2750,2751,43,2703,2692,2685,2697,0,613,643,646,614,2718,2748,2751,2719,43,2684,2696,2695,2683,0,640,611,620,647,2745,2716,2725,2752,43,2730,2684,2683,2739,0,642,640,647,648,2747,2745,2752,2753,43,2685,2731,2739,2683,0,646,645,648,647,2751,2750,2753,2752,43,2697,2685,2683,2695,0,614,646,647,620,2719,2751,2752,2725,43,2687,2698,2700,2689,0,649,625,626,650,2754,2730,2731,2755,43,2732,2687,2689,2740,0,651,649,650,652,2756,2754,2755,2757,43,2688,2733,2741,2690,0,653,654,655,656,2758,2759,2760,2761,43,2699,2688,2690,2701,0,628,653,656,629,2733,2758,2761,2734,43,2460,2462,2698,2687,0,321,323,625,649,2446,2448,2730,2754,43,2459,2460,2687,2732,0,320,321,649,651,2445,2446,2754,2756,43,2686,2734,2733,2688,0,405,406,654,653,2510,2511,2759,2758,43,2412,2686,2688,2699,0,409,405,653,628,2514,2510,2758,2733,43,2689,2700,2704,2693,0,650,626,635,657,2755,2731,2740,2762,43,2740,2689,2693,2735,0,652,650,657,658,2757,2755,2762,2763,43,2690,2741,2736,2694,0,656,655,659,660,2761,2760,2764,2765,43,2701,2690,2694,2705,0,629,656,660,636,2734,2761,2765,2741,43,2693,2704,2702,2691,0,657,635,610,639,2762,2740,2715,2744,43,2735,2693,2691,2737,0,658,657,639,641,2763,2762,2744,2746,43,2694,2736,2738,2692,0,660,659,644,643,2765,2764,2749,2748,43,2705,2694,2692,2703,0,636,660,643,613,2741,2765,2748,2718,43,2715,2745,2751,2707,0,607,661,662,608,2712,2766,2767,2713,43,2746,2716,2708,2752,0,663,616,617,664,2768,2721,2722,2769,43,2707,2751,2744,2706,0,608,662,665,618,2713,2767,2770,2723,43,2752,2708,2706,2744,0,664,617,618,665,2769,2722,2723,2770,43,2711,2749,2742,2713,0,622,666,667,623,2727,2771,2772,2728,43,2750,2712,2714,2743,0,668,631,632,669,2773,2736,2737,2774,43,2709,2458,2749,2711,0,317,314,666,622,2442,2439,2771,2727,43,2407,2710,2712,2750,0,397,400,631,668,2502,2505,2736,2773,43,2713,2742,2747,2717,0,623,667,670,633,2728,2772,2775,2738,43,2743,2714,2718,2748,0,669,632,638,671,2774,2737,2743,2776,43,2717,2747,2745,2715,0,633,670,661,607,2738,2775,2766,2712,43,2748,2718,2716,2746,0,671,638,616,663,2776,2743,2721,2768,43,2745,2747,2719,2726,0,661,670,555,556,2766,2775,2660,2661,43,2720,2748,2746,2727,0,558,671,663,559,2663,2776,2768,2664,43,2742,2721,2719,2747,0,667,565,555,670,2772,2670,2660,2775,43,2720,2722,2743,2748,0,558,567,669,671,2663,2672,2774,2776,43,2458,2466,2723,2749,0,314,315,571,666,2439,2440,2676,2771,43,2724,2420,2407,2750,0,572,396,397,668,2677,2501,2502,2773,43,2742,2749,2723,2721,0,667,666,571,565,2772,2771,2676,2670,43,2724,2750,2743,2722,0,572,668,669,567,2677,2773,2774,2672,43,2744,2751,2728,2725,0,665,662,579,580,2770,2767,2684,2685,43,2729,2752,2744,2725,0,582,664,665,580,2687,2769,2770,2685,43,2745,2726,2728,2751,0,661,556,579,662,2766,2661,2684,2767,43,2729,2727,2746,2752,0,582,559,663,664,2687,2664,2768,2769,43,2778,2779,2780,2793,0,6,5,16,30,2777,2778,2779,2780,43,2780,2781,2782,2793,0,6,5,16,30,2779,2781,2782,2780,43,2778,2793,2784,2785,0,6,5,16,30,2777,2780,2783,2784,43,2782,2783,2784,2793,0,6,5,16,30,2782,2785,2783,2780,43,2794,2800,2803,2802,0,6,5,16,30,2786,2787,2788,2789,43,2800,2801,2804,2803,0,6,5,16,30,2787,2790,2791,2788,43,2778,2785,2806,2807,0,6,5,16,30,2777,2784,2792,2793,43,2779,2778,2807,2805,0,6,5,16,30,2778,2777,2793,2794,43,2805,2807,2809,2808,0,6,5,16,30,2794,2793,2795,2796,43,2807,2806,2810,2809,0,6,5,16,30,2793,2792,2797,2795,43,2803,2804,2812,2813,0,6,5,16,30,2788,2791,2798,2799,43,2802,2803,2813,2811,0,6,5,16,30,2789,2788,2799,2800,43,2800,2820,2821,2801,0,6,5,16,30,2787,2801,2802,2790,43,2801,2821,2819,2799,0,6,5,16,30,2790,2802,2803,2804,43,2821,2786,2787,2819,0,6,5,16,30,2802,2805,2806,2803,43,2799,2819,2818,2798,0,6,5,16,30,2804,2803,2807,2808,43,2819,2787,2824,2818,0,6,5,16,30,2803,2806,2809,2807,43,2798,2818,2817,2797,0,6,5,16,30,2808,2807,2810,2811,43,2818,2824,2823,2817,0,6,5,16,30,2807,2809,2812,2810,43,2797,2817,2816,2796,0,6,5,16,30,2811,2810,2813,2814,43,2817,2823,2822,2816,0,6,5,16,30,2810,2812,2815,2813,43,2796,2816,2815,2795,0,6,5,16,30,2814,2813,2816,2817,43,2816,2822,2791,2815,0,6,5,16,30,2813,2815,2818,2816,43,2795,2815,2814,2794,0,6,5,16,30,2817,2816,2819,2786,43,2815,2791,2792,2814,0,6,5,16,30,2816,2818,2820,2819,43,2820,2800,2794,2814,0,6,5,16,30,2801,2787,2786,2819,43,2789,2825,2826,2788,0,6,5,16,30,2821,2822,2823,2824,43,2825,2823,2824,2826,0,6,5,16,30,2822,2812,2809,2823,43,2790,2827,2825,2789,0,6,5,16,30,2825,2826,2822,2821,43,2827,2822,2823,2825,0,6,5,16,30,2826,2815,2812,2822,43,2787,2788,2826,2824,0,6,5,16,30,2806,2824,2823,2809,43,2790,2791,2822,2827,0,6,5,16,30,2825,2818,2815,2826,43,2779,2834,2833,2780,0,6,5,16,30,2778,2827,2828,2779,43,2834,2801,2799,2833,0,6,5,16,30,2827,2790,2804,2828,43,2780,2833,2832,2781,0,6,5,16,30,2779,2828,2829,2781,43,2833,2799,2798,2832,0,6,5,16,30,2828,2804,2808,2829,43,2781,2832,2831,2782,0,6,5,16,30,2781,2829,2830,2782,43,2832,2798,2797,2831,0,6,5,16,30,2829,2808,2811,2830,43,2782,2831,2830,2783,0,6,5,16,30,2782,2830,2831,2785,43,2831,2797,2796,2830,0,6,5,16,30,2830,2811,2814,2831,43,2783,2830,2829,2784,0,6,5,16,30,2785,2831,2832,2783,43,2830,2796,2795,2829,0,6,5,16,30,2831,2814,2817,2832,43,2784,2829,2828,2785,0,6,5,16,30,2783,2832,2833,2784,43,2829,2795,2794,2828,0,6,5,16,30,2832,2817,2786,2833,43,2801,2834,2835,2804,0,6,5,16,30,2790,2827,2834,2791,43,2834,2779,2805,2835,0,6,5,16,30,2827,2778,2794,2834,43,2785,2828,2836,2806,0,6,5,16,30,2784,2833,2835,2792,43,2828,2794,2802,2836,0,6,5,16,30,2833,2786,2789,2835,43,2806,2836,2837,2810,0,6,5,16,30,2792,2835,2836,2797,43,2836,2802,2811,2837,0,6,5,16,30,2835,2789,2800,2836,43,2804,2835,2838,2812,0,6,5,16,30,2791,2834,2837,2798,43,2835,2805,2808,2838,0,6,5,16,30,2834,2794,2796,2837,43,2809,2839,2838,2808,0,6,5,16,30,2795,2838,2837,2796,43,2839,2813,2812,2838,0,6,5,16,30,2838,2799,2798,2837,43,2813,2839,2837,2811,0,6,5,16,30,2799,2838,2836,2800,43,2839,2809,2810,2837,0,6,5,16,30,2838,2795,2797,2836,43,2820,2814,2842,2843,0,6,5,16,30,2801,2819,2839,2840,43,2821,2820,2843,2844,0,6,5,16,30,2802,2801,2840,2841,43,2786,2821,2844,2841,0,6,5,16,30,2805,2802,2841,2842,43,2814,2792,2840,2842,0,6,5,16,30,2819,2820,2843,2839,43,2842,2840,2845,2846,0,6,5,16,30,2839,2843,2844,2845,43,2841,2844,2848,2847,0,6,5,16,30,2842,2841,2846,2847,43,2844,2843,2849,2848,0,6,5,16,30,2841,2840,2848,2846,43,2843,2842,2846,2849,0,6,5,16,30,2840,2839,2845,2848,43,2849,2850,2847,2848,0,6,5,16,30,2848,2849,2847,2846,43,2850,2849,2846,2845,0,6,5,16,30,2849,2848,2845,2844,43,2851,2852,2855,2856,0,6,5,16,30,2850,2851,2852,2853,43,2852,2851,2854,2853,0,6,5,16,30,2851,2850,2854,2855,43,2858,2859,2855,2852,0,6,5,16,30,2856,2857,2852,2851,43,2857,2858,2852,2853,0,6,5,16,30,2858,2856,2851,2855,43,2860,2857,2853,2854,0,6,5,16,30,2859,2858,2855,2854,43,2859,2861,2856,2855,0,6,5,16,30,2857,2860,2853,2852,43,2887,2909,2861,2859,0,6,5,16,30,2861,2862,2860,2857,43,2915,2880,2857,2860,0,6,5,16,30,2863,2864,2858,2859,43,2880,2881,2858,2857,0,6,5,16,30,2864,2865,2856,2858,43,2881,2887,2859,2858,0,6,5,16,30,2865,2861,2857,2856,43,2862,2892,2891,2864,0,6,5,16,30,2866,2867,2868,2869,43,2888,2862,2864,2890,0,6,5,16,30,2870,2866,2869,2871,43,2862,2888,2889,2863,0,6,5,16,30,2866,2870,2872,2873,43,2892,2862,2863,2893,0,6,5,16,30,2867,2866,2873,2874,43,2866,2896,2893,2863,0,6,5,16,30,2875,2876,2874,2873,43,2897,2866,2863,2889,0,6,5,16,30,2877,2875,2873,2872,43,2865,2899,2890,2864,0,6,5,16,30,2878,2879,2871,2869,43,2895,2865,2864,2891,0,6,5,16,30,2880,2878,2869,2868,43,2873,2907,2899,2865,0,6,5,16,30,2881,2882,2879,2878,43,2916,2873,2865,2895,0,6,5,16,30,2883,2881,2878,2880,43,2867,2922,2896,2866,0,6,5,16,30,2884,2885,2876,2875,43,2900,2867,2866,2897,0,6,5,16,30,2886,2884,2875,2877,43,2872,2906,2907,2873,0,6,5,16,30,2887,2888,2882,2881,43,2917,2872,2873,2916,0,6,5,16,30,2889,2887,2881,2883,43,2871,2905,2906,2872,0,6,5,16,30,2890,2891,2888,2887,43,2918,2871,2872,2917,0,6,5,16,30,2892,2890,2887,2889,43,2870,2904,2905,2871,0,6,5,16,30,2893,2894,2891,2890,43,2919,2870,2871,2918,0,6,5,16,30,2895,2893,2890,2892,43,2869,2903,2904,2870,0,6,5,16,30,2896,2897,2894,2893,43,2920,2869,2870,2919,0,6,5,16,30,2898,2896,2893,2895,43,2868,2902,2903,2869,0,6,5,16,30,2899,2900,2897,2896,43,2921,2868,2869,2920,0,6,5,16,30,2901,2899,2896,2898,43,2867,2900,2902,2868,0,6,5,16,30,2884,2886,2900,2899,43,2922,2867,2868,2921,0,6,5,16,30,2885,2884,2899,2901,43,2911,2910,2879,2874,0,6,5,16,30,2902,2903,2904,2905,43,2914,2913,2875,2877,0,6,5,16,30,2906,2907,2908,2909,43,2874,2879,2878,2876,0,6,5,16,30,2905,2904,2910,2911,43,2911,2874,2876,2912,0,6,5,16,30,2902,2905,2911,2912,43,2876,2878,2877,2875,0,6,5,16,30,2911,2910,2909,2908,43,2912,2876,2875,2913,0,6,5,16,30,2912,2911,2908,2907,43,2881,2901,2907,2887,0,6,5,16,30,2865,2913,2882,2861,43,2886,2910,2909,2887,0,6,5,16,30,2914,2903,2862,2861,43,2906,2886,2887,2907,0,6,5,16,30,2888,2914,2861,2882,43,2885,2879,2910,2886,0,6,5,16,30,2915,2904,2903,2914,43,2905,2885,2886,2906,0,6,5,16,30,2891,2915,2914,2888,43,2884,2878,2879,2885,0,6,5,16,30,2916,2910,2904,2915,43,2904,2884,2885,2905,0,6,5,16,30,2894,2916,2915,2891,43,2883,2877,2878,2884,0,6,5,16,30,2917,2909,2910,2916,43,2903,2883,2884,2904,0,6,5,16,30,2897,2917,2916,2894,43,2882,2914,2877,2883,0,6,5,16,30,2918,2906,2909,2917,43,2902,2882,2883,2903,0,6,5,16,30,2900,2918,2917,2897,43,2880,2915,2914,2882,0,6,5,16,30,2864,2863,2906,2918,43,2900,2880,2882,2902,0,6,5,16,30,2886,2864,2918,2900,43,2901,2881,2880,2900,0,6,5,16,30,2913,2865,2864,2886,43,2899,2898,2888,2890,0,6,5,16,30,2879,2919,2870,2871,43,2898,2897,2889,2888,0,6,5,16,30,2919,2877,2872,2870,43,2894,2895,2891,2892,0,6,5,16,30,2920,2880,2868,2867,43,2896,2894,2892,2893,0,6,5,16,30,2876,2920,2867,2874,43,2922,2923,2894,2896,0,6,5,16,30,2885,2921,2920,2876,43,2923,2916,2895,2894,0,6,5,16,30,2921,2883,2880,2920,43,2901,2900,2897,2898,0,6,5,16,30,2913,2886,2877,2919,43,2907,2901,2898,2899,0,6,5,16,30,2882,2913,2919,2879,43,2919,2918,2917,2908,0,6,5,16,30,2895,2892,2889,2922,43,2923,2908,2917,2916,0,6,5,16,30,2921,2922,2889,2883,43,2921,2920,2919,2908,0,6,5,16,30,2901,2898,2895,2922,43,2923,2922,2921,2908,0,6,5,16,30,2921,2885,2901,2922,43,2924,2925,2926,2939,0,6,5,16,30,2923,2924,2925,2926,43,2926,2927,2928,2939,0,6,5,16,30,2925,2927,2928,2926,43,2924,2939,2930,2931,0,6,5,16,30,2923,2926,2929,2930,43,2928,2929,2930,2939,0,6,5,16,30,2928,2931,2929,2926,43,2940,2946,2949,2948,0,6,5,16,30,2932,2933,2934,2935,43,2946,2947,2950,2949,0,6,5,16,30,2933,2936,2937,2934,43,2924,2931,2952,2953,0,6,5,16,30,2923,2930,2938,2939,43,2925,2924,2953,2951,0,6,5,16,30,2924,2923,2939,2940,43,2951,2953,2955,2954,0,6,5,16,30,2940,2939,2941,2942,43,2953,2952,2956,2955,0,6,5,16,30,2939,2938,2943,2941,43,2949,2950,2958,2959,0,6,5,16,30,2934,2937,2944,2945,43,2948,2949,2959,2957,0,6,5,16,30,2935,2934,2945,2946,43,2946,2966,2967,2947,0,6,5,16,30,2933,2947,2948,2936,43,2947,2967,2965,2945,0,6,5,16,30,2936,2948,2949,2950,43,2967,2932,2933,2965,0,6,5,16,30,2948,2951,2952,2949,43,2945,2965,2964,2944,0,6,5,16,30,2950,2949,2953,2954,43,2965,2933,2970,2964,0,6,5,16,30,2949,2952,2955,2953,43,2944,2964,2963,2943,0,6,5,16,30,2954,2953,2956,2957,43,2964,2970,2969,2963,0,6,5,16,30,2953,2955,2958,2956,43,2943,2963,2962,2942,0,6,5,16,30,2957,2956,2959,2960,43,2963,2969,2968,2962,0,6,5,16,30,2956,2958,2961,2959,43,2942,2962,2961,2941,0,6,5,16,30,2960,2959,2962,2963,43,2962,2968,2937,2961,0,6,5,16,30,2959,2961,2964,2962,43,2941,2961,2960,2940,0,6,5,16,30,2963,2962,2965,2932,43,2961,2937,2938,2960,0,6,5,16,30,2962,2964,2966,2965,43,2966,2946,2940,2960,0,6,5,16,30,2947,2933,2932,2965,43,2935,2971,2972,2934,0,6,5,16,30,2967,2968,2969,2970,43,2971,2969,2970,2972,0,6,5,16,30,2968,2958,2955,2969,43,2936,2973,2971,2935,0,6,5,16,30,2971,2972,2968,2967,43,2973,2968,2969,2971,0,6,5,16,30,2972,2961,2958,2968,43,2933,2934,2972,2970,0,6,5,16,30,2952,2970,2969,2955,43,2936,2937,2968,2973,0,6,5,16,30,2971,2964,2961,2972,43,2925,2980,2979,2926,0,6,5,16,30,2924,2973,2974,2925,43,2980,2947,2945,2979,0,6,5,16,30,2973,2936,2950,2974,43,2926,2979,2978,2927,0,6,5,16,30,2925,2974,2975,2927,43,2979,2945,2944,2978,0,6,5,16,30,2974,2950,2954,2975,43,2927,2978,2977,2928,0,6,5,16,30,2927,2975,2976,2928,43,2978,2944,2943,2977,0,6,5,16,30,2975,2954,2957,2976,43,2928,2977,2976,2929,0,6,5,16,30,2928,2976,2977,2931,43,2977,2943,2942,2976,0,6,5,16,30,2976,2957,2960,2977,43,2929,2976,2975,2930,0,6,5,16,30,2931,2977,2978,2929,43,2976,2942,2941,2975,0,6,5,16,30,2977,2960,2963,2978,43,2930,2975,2974,2931,0,6,5,16,30,2929,2978,2979,2930,43,2975,2941,2940,2974,0,6,5,16,30,2978,2963,2932,2979,43,2947,2980,2981,2950,0,6,5,16,30,2936,2973,2980,2937,43,2980,2925,2951,2981,0,6,5,16,30,2973,2924,2940,2980,43,2931,2974,2982,2952,0,6,5,16,30,2930,2979,2981,2938,43,2974,2940,2948,2982,0,6,5,16,30,2979,2932,2935,2981,43,2952,2982,2983,2956,0,6,5,16,30,2938,2981,2982,2943,43,2982,2948,2957,2983,0,6,5,16,30,2981,2935,2946,2982,43,2950,2981,2984,2958,0,6,5,16,30,2937,2980,2983,2944,43,2981,2951,2954,2984,0,6,5,16,30,2980,2940,2942,2983,43,2955,2985,2984,2954,0,6,5,16,30,2941,2984,2983,2942,43,2985,2959,2958,2984,0,6,5,16,30,2984,2945,2944,2983,43,2959,2985,2983,2957,0,6,5,16,30,2945,2984,2982,2946,43,2985,2955,2956,2983,0,6,5,16,30,2984,2941,2943,2982,43,2966,2960,2988,2989,0,6,5,16,30,2947,2965,2985,2986,43,2967,2966,2989,2990,0,6,5,16,30,2948,2947,2986,2987,43,2932,2967,2990,2987,0,6,5,16,30,2951,2948,2987,2988,43,2960,2938,2986,2988,0,6,5,16,30,2965,2966,2989,2985,43,2988,2986,2991,2992,0,6,5,16,30,2985,2989,2990,2991,43,2987,2990,2994,2993,0,6,5,16,30,2988,2987,2992,2993,43,2990,2989,2995,2994,0,6,5,16,30,2987,2986,2994,2992,43,2989,2988,2992,2995,0,6,5,16,30,2986,2985,2991,2994,43,2995,2996,2993,2994,0,6,5,16,30,2994,2995,2993,2992,43,2996,2995,2992,2991,0,6,5,16,30,2995,2994,2991,2990,43,2997,2998,3001,3002,0,6,5,16,30,2996,2997,2998,2999,43,2998,2997,3000,2999,0,6,5,16,30,2997,2996,3000,3001,43,3004,3005,3001,2998,0,6,5,16,30,3002,3003,2998,2997,43,3003,3004,2998,2999,0,6,5,16,30,3004,3002,2997,3001,43,3006,3003,2999,3000,0,6,5,16,30,3005,3004,3001,3000,43,3005,3007,3002,3001,0,6,5,16,30,3003,3006,2999,2998,43,3033,3055,3007,3005,0,6,5,16,30,3007,3008,3006,3003,43,3061,3026,3003,3006,0,6,5,16,30,3009,3010,3004,3005,43,3026,3027,3004,3003,0,6,5,16,30,3010,3011,3002,3004,43,3027,3033,3005,3004,0,6,5,16,30,3011,3007,3003,3002,43,3008,3038,3037,3010,0,6,5,16,30,3012,3013,3014,3015,43,3034,3008,3010,3036,0,6,5,16,30,3016,3012,3015,3017,43,3008,3034,3035,3009,0,6,5,16,30,3012,3016,3018,3019,43,3038,3008,3009,3039,0,6,5,16,30,3013,3012,3019,3020,43,3012,3042,3039,3009,0,6,5,16,30,3021,3022,3020,3019,43,3043,3012,3009,3035,0,6,5,16,30,3023,3021,3019,3018,43,3011,3045,3036,3010,0,6,5,16,30,3024,3025,3017,3015,43,3041,3011,3010,3037,0,6,5,16,30,3026,3024,3015,3014,43,3019,3053,3045,3011,0,6,5,16,30,3027,3028,3025,3024,43,3062,3019,3011,3041,0,6,5,16,30,3029,3027,3024,3026,43,3013,3068,3042,3012,0,6,5,16,30,3030,3031,3022,3021,43,3046,3013,3012,3043,0,6,5,16,30,3032,3030,3021,3023,43,3018,3052,3053,3019,0,6,5,16,30,3033,3034,3028,3027,43,3063,3018,3019,3062,0,6,5,16,30,3035,3033,3027,3029,43,3017,3051,3052,3018,0,6,5,16,30,3036,3037,3034,3033,43,3064,3017,3018,3063,0,6,5,16,30,3038,3036,3033,3035,43,3016,3050,3051,3017,0,6,5,16,30,3039,3040,3037,3036,43,3065,3016,3017,3064,0,6,5,16,30,3041,3039,3036,3038,43,3015,3049,3050,3016,0,6,5,16,30,3042,3043,3040,3039,43,3066,3015,3016,3065,0,6,5,16,30,3044,3042,3039,3041,43,3014,3048,3049,3015,0,6,5,16,30,3045,3046,3043,3042,43,3067,3014,3015,3066,0,6,5,16,30,3047,3045,3042,3044,43,3013,3046,3048,3014,0,6,5,16,30,3030,3032,3046,3045,43,3068,3013,3014,3067,0,6,5,16,30,3031,3030,3045,3047,43,3057,3056,3025,3020,0,6,5,16,30,3048,3049,3050,3051,43,3060,3059,3021,3023,0,6,5,16,30,3052,3053,3054,3055,43,3020,3025,3024,3022,0,6,5,16,30,3051,3050,3056,3057,43,3057,3020,3022,3058,0,6,5,16,30,3048,3051,3057,3058,43,3022,3024,3023,3021,0,6,5,16,30,3057,3056,3055,3054,43,3058,3022,3021,3059,0,6,5,16,30,3058,3057,3054,3053,43,3027,3047,3053,3033,0,6,5,16,30,3011,3059,3028,3007,43,3032,3056,3055,3033,0,6,5,16,30,3060,3049,3008,3007,43,3052,3032,3033,3053,0,6,5,16,30,3034,3060,3007,3028,43,3031,3025,3056,3032,0,6,5,16,30,3061,3050,3049,3060,43,3051,3031,3032,3052,0,6,5,16,30,3037,3061,3060,3034,43,3030,3024,3025,3031,0,6,5,16,30,3062,3056,3050,3061,43,3050,3030,3031,3051,0,6,5,16,30,3040,3062,3061,3037,43,3029,3023,3024,3030,0,6,5,16,30,3063,3055,3056,3062,43,3049,3029,3030,3050,0,6,5,16,30,3043,3063,3062,3040,43,3028,3060,3023,3029,0,6,5,16,30,3064,3052,3055,3063,43,3048,3028,3029,3049,0,6,5,16,30,3046,3064,3063,3043,43,3026,3061,3060,3028,0,6,5,16,30,3010,3009,3052,3064,43,3046,3026,3028,3048,0,6,5,16,30,3032,3010,3064,3046,43,3047,3027,3026,3046,0,6,5,16,30,3059,3011,3010,3032,43,3045,3044,3034,3036,0,6,5,16,30,3025,3065,3016,3017,43,3044,3043,3035,3034,0,6,5,16,30,3065,3023,3018,3016,43,3040,3041,3037,3038,0,6,5,16,30,3066,3026,3014,3013,43,3042,3040,3038,3039,0,6,5,16,30,3022,3066,3013,3020,43,3068,3069,3040,3042,0,6,5,16,30,3031,3067,3066,3022,43,3069,3062,3041,3040,0,6,5,16,30,3067,3029,3026,3066,43,3047,3046,3043,3044,0,6,5,16,30,3059,3032,3023,3065,43,3053,3047,3044,3045,0,6,5,16,30,3028,3059,3065,3025,43,3065,3064,3063,3054,0,6,5,16,30,3041,3038,3035,3068,43,3069,3054,3063,3062,0,6,5,16,30,3067,3068,3035,3029,43,3067,3066,3065,3054,0,6,5,16,30,3047,3044,3041,3068,43,3069,3068,3067,3054,0,6,5,16,30,3067,3031,3047,3068,43,3070,3094,3093,3072,0,6,5,16,30,3069,3070,3071,3072,43,3090,3070,3072,3092,0,6,5,16,30,3073,3069,3072,3074,43,3070,3090,3091,3071,0,6,5,16,30,3069,3073,3075,3076,43,3094,3070,3071,3095,0,6,5,16,30,3070,3069,3076,3077,43,3074,3098,3095,3071,0,6,5,16,30,3078,3079,3077,3076,43,3099,3074,3071,3091,0,6,5,16,30,3080,3078,3076,3075,43,3073,3101,3092,3072,0,6,5,16,30,3081,3082,3074,3072,43,3097,3073,3072,3093,0,6,5,16,30,3083,3081,3072,3071,43,3081,3109,3101,3073,0,6,5,16,30,3084,3085,3082,3081,43,3111,3081,3073,3097,0,6,5,16,30,3086,3084,3081,3083,43,3075,3117,3098,3074,0,6,5,16,30,3087,3088,3079,3078,43,3102,3075,3074,3099,0,6,5,16,30,3089,3087,3078,3080,43,3080,3108,3109,3081,0,6,5,16,30,3090,3091,3085,3084,43,3112,3080,3081,3111,0,6,5,16,30,3092,3090,3084,3086,43,3079,3107,3108,3080,0,6,5,16,30,3093,3094,3091,3090,43,3113,3079,3080,3112,0,6,5,16,30,3095,3093,3090,3092,43,3078,3106,3107,3079,0,6,5,16,30,3096,3097,3094,3093,43,3114,3078,3079,3113,0,6,5,16,30,3098,3096,3093,3095,43,3077,3105,3106,3078,0,6,5,16,30,3099,3100,3097,3096,43,3115,3077,3078,3114,0,6,5,16,30,3101,3099,3096,3098,43,3076,3104,3105,3077,0,6,5,16,30,3102,3103,3100,3099,43,3116,3076,3077,3115,0,6,5,16,30,3104,3102,3099,3101,43,3075,3102,3104,3076,0,6,5,16,30,3087,3089,3103,3102,43,3117,3075,3076,3116,0,6,5,16,30,3088,3087,3102,3104,43,3083,3103,3109,3089,0,6,5,16,30,3105,3106,3085,3107,43,3108,3088,3089,3109,0,6,5,16,30,3091,3108,3107,3085,43,3107,3087,3088,3108,0,6,5,16,30,3094,3109,3108,3091,43,3106,3086,3087,3107,0,6,5,16,30,3097,3110,3109,3094,43,3105,3085,3086,3106,0,6,5,16,30,3100,3111,3110,3097,43,3104,3084,3085,3105,0,6,5,16,30,3103,3112,3111,3100,43,3102,3082,3084,3104,0,6,5,16,30,3089,3113,3112,3103,43,3103,3083,3082,3102,0,6,5,16,30,3106,3105,3113,3089,43,3101,3100,3090,3092,0,6,5,16,30,3082,3114,3073,3074,43,3100,3099,3091,3090,0,6,5,16,30,3114,3080,3075,3073,43,3096,3097,3093,3094,0,6,5,16,30,3115,3083,3071,3070,43,3098,3096,3094,3095,0,6,5,16,30,3079,3115,3070,3077,43,3117,3118,3096,3098,0,6,5,16,30,3088,3116,3115,3079,43,3118,3111,3097,3096,0,6,5,16,30,3116,3086,3083,3115,43,3103,3102,3099,3100,0,6,5,16,30,3106,3089,3080,3114,43,3109,3103,3100,3101,0,6,5,16,30,3085,3106,3114,3082,43,3114,3113,3112,3110,0,6,5,16,30,3098,3095,3092,3117,43,3118,3110,3112,3111,0,6,5,16,30,3116,3117,3092,3086,43,3116,3115,3114,3110,0,6,5,16,30,3104,3101,3098,3117,43,3118,3117,3116,3110,0,6,5,16,30,3116,3088,3104,3117,43,3175,3138,3142,3177,0,672,12,13,673,3118,3119,3120,3121,43,3179,3148,3138,3175,0,674,16,12,672,3122,3123,3119,3118,43,3181,3145,3139,3183,0,151,16,675,676,3124,3125,3126,3127,43,3183,3139,3147,3185,0,676,675,5,677,3127,3126,3128,3129,43,3177,3142,3141,3191,0,151,16,22,678,3121,3120,3130,3131,43,3191,3141,3144,3193,0,678,22,5,677,3131,3130,3132,3133,43,3195,3143,3149,3189,0,151,16,5,677,3134,3135,3136,3137,43,3193,3144,3143,3195,0,679,27,28,680,3133,3132,3135,3134,43,3197,3146,3148,3179,0,151,16,5,677,3138,3139,3123,3122,43,3185,3147,3146,3197,0,674,16,30,681,3129,3128,3139,3138,43,3198,3199,3201,3200,0,92,674,681,86,3140,3141,3142,3143,43,3200,3201,3203,3202,0,153,151,677,682,3143,3142,3144,3145,43,3204,3205,3207,3206,0,683,679,680,684,3146,3147,3148,3149,43,3206,3207,3209,3208,0,685,686,677,682,3149,3148,3150,3151,43,3210,3211,3205,3204,0,687,688,677,682,3152,3153,3147,3146,43,3212,3213,3211,3210,0,689,690,691,687,3154,3155,3153,3152,43,3218,3219,3199,3198,0,692,693,677,682,3156,3157,3141,3140,43,3216,3217,3219,3218,0,153,151,693,692,3158,3159,3157,3156,43,3202,3203,3221,3220,0,92,674,694,695,3145,3144,3160,3161,43,3220,3221,3213,3212,0,695,694,673,696,3161,3160,3155,3154,43,3222,3174,3176,3223,0,697,698,696,699,3162,3163,3164,3165,43,3224,3178,3174,3222,0,700,92,698,697,3166,3167,3163,3162,43,3225,3180,3182,3226,0,177,153,701,702,3168,3169,3170,3171,43,3226,3182,3184,3227,0,702,701,682,703,3171,3170,3172,3173,43,3228,3186,3180,3225,0,15,674,704,705,3174,3175,3169,3168,43,3229,3188,3186,3228,0,705,704,681,706,3176,3177,3175,3174,43,3223,3176,3190,3230,0,177,153,707,708,3165,3164,3178,3179,43,3230,3190,3192,3231,0,708,707,682,703,3179,3178,3180,3181,43,3232,3194,3188,3229,0,177,153,682,703,3182,3183,3177,3176,43,3231,3192,3194,3232,0,709,683,684,710,3181,3180,3183,3182,43,3233,3196,3178,3224,0,177,153,682,703,3184,3185,3167,3166,43,3227,3184,3196,3233,0,700,92,86,7,3173,3172,3185,3184,43,3171,3234,3235,3170,0,5,700,7,6,3186,3187,3188,3189,43,3234,3198,3200,3235,0,700,92,86,7,3187,3140,3143,3188,43,3170,3235,3236,3172,0,30,177,703,6,3189,3188,3190,3191,43,3235,3200,3202,3236,0,177,153,682,703,3188,3143,3145,3190,43,3168,3237,3238,3167,0,711,709,710,712,3192,3193,3194,3195,43,3237,3204,3206,3238,0,709,683,684,710,3193,3146,3149,3194,43,3167,3238,3239,3173,0,30,713,703,6,3195,3194,3196,3197,43,3238,3206,3208,3239,0,713,685,682,703,3194,3149,3151,3196,43,3165,3240,3237,3168,0,714,715,703,6,3198,3199,3193,3192,43,3240,3210,3204,3237,0,715,687,682,703,3199,3152,3146,3193,43,3166,3241,3240,3165,0,30,713,715,714,3200,3201,3199,3198,43,3241,3212,3210,3240,0,713,689,687,715,3201,3154,3152,3199,43,3163,3244,3234,3171,0,50,716,703,6,3202,3203,3187,3186,43,3244,3218,3198,3234,0,716,692,682,703,3203,3156,3140,3187,43,3169,3243,3244,3163,0,30,717,716,50,3204,3205,3203,3202,43,3243,3216,3218,3244,0,717,153,692,716,3205,3158,3156,3203,43,3172,3236,3245,3162,0,5,700,718,719,3191,3190,3206,3207,43,3236,3202,3220,3245,0,700,92,695,718,3190,3145,3161,3206,43,3162,3245,3241,3166,0,719,718,699,0,3207,3206,3201,3200,43,3245,3220,3212,3241,0,718,695,696,699,3206,3161,3154,3201,43,3140,3187,3189,3246,0,6,5,16,30,3208,3209,3137,3210,43,3140,3248,3181,3187,0,6,30,16,5,3208,3211,3124,3209,43,3209,3254,3253,3208,0,720,721,722,704,3150,3212,3213,3151,43,3254,3215,3214,3253,0,721,86,681,722,3212,3214,3215,3213,43,3239,3255,3252,3173,0,705,723,724,725,3196,3216,3217,3197,43,3255,3242,3164,3252,0,723,706,30,724,3216,3218,3219,3217,43,3208,3253,3255,3239,0,704,722,723,705,3151,3213,3216,3196,43,3253,3214,3242,3255,0,722,681,706,723,3213,3215,3218,3216,43,3215,3260,3259,3214,0,92,726,727,674,3214,3220,3221,3215,43,3260,3217,3216,3259,0,726,728,704,727,3220,3159,3158,3221,43,3242,3261,3258,3164,0,15,729,730,16,3218,3222,3223,3219,43,3261,3243,3169,3258,0,729,731,725,730,3222,3205,3204,3223,43,3214,3259,3261,3242,0,674,727,729,15,3215,3221,3222,3218,43,3259,3216,3243,3261,0,727,704,731,729,3221,3158,3205,3222,43,3149,3250,3246,3189,0,6,30,16,5,3136,3224,3210,3137,43,3145,3181,3248,3256,0,6,5,16,30,3125,3124,3211,3225,43,3164,3264,3263,3252,0,6,30,16,5,3219,3226,3227,3217,43,3262,3264,3164,3258,0,6,30,16,5,3228,3226,3219,3223,43,3174,3265,3266,3176,0,698,732,733,696,3163,3229,3230,3164,43,3265,3175,3177,3266,0,732,672,673,733,3229,3118,3121,3230,43,3178,3267,3265,3174,0,92,44,732,698,3167,3231,3229,3163,43,3267,3179,3175,3265,0,44,674,672,732,3231,3122,3118,3229,43,3180,3268,3269,3182,0,153,49,734,701,3169,3232,3233,3170,43,3268,3181,3183,3269,0,49,151,676,734,3232,3124,3127,3233,43,3182,3269,3270,3184,0,701,734,0,682,3170,3233,3234,3172,43,3269,3183,3185,3270,0,734,676,677,0,3233,3127,3129,3234,43,3186,3271,3268,3180,0,674,44,735,704,3175,3235,3232,3169,43,3271,3187,3181,3268,0,44,92,720,735,3235,3209,3124,3232,43,3188,3272,3271,3186,0,704,736,50,681,3177,3236,3235,3175,43,3272,3189,3187,3271,0,736,720,86,50,3236,3137,3209,3235,43,3176,3266,3273,3190,0,153,737,738,707,3164,3230,3237,3178,43,3266,3177,3191,3273,0,737,151,678,738,3230,3121,3131,3237,43,3190,3273,3274,3192,0,707,738,0,682,3178,3237,3238,3180,43,3273,3191,3193,3274,0,738,678,677,0,3237,3131,3133,3238,43,3194,3275,3272,3188,0,153,49,739,682,3183,3239,3236,3177,43,3275,3195,3189,3272,0,49,151,677,739,3239,3134,3137,3236,43,3192,3274,3275,3194,0,683,740,741,684,3180,3238,3239,3183,43,3274,3193,3195,3275,0,740,679,680,741,3238,3133,3134,3239,43,3196,3276,3267,3178,0,153,49,0,682,3185,3240,3231,3167,43,3276,3197,3179,3267,0,49,151,677,0,3240,3138,3122,3231,43,3184,3270,3276,3196,0,92,44,50,86,3172,3234,3240,3185,43,3270,3185,3197,3276,0,44,674,681,50,3234,3129,3138,3240,43,3199,3290,3280,3201,0,674,15,31,681,3141,3241,3242,3142,43,3201,3280,3279,3203,0,151,21,24,677,3142,3242,3243,3144,43,3205,3284,3277,3207,0,679,26,29,680,3147,3244,3245,3148,43,3285,3209,3207,3277,0,20,677,686,25,3246,3150,3148,3245,43,3211,3283,3284,3205,0,688,23,24,677,3153,3247,3244,3147,43,3213,3282,3283,3211,0,690,21,23,691,3155,3248,3247,3153,43,3219,3278,3290,3199,0,693,19,20,677,3157,3249,3241,3141,43,3217,3289,3278,3219,0,151,17,19,693,3159,3250,3249,3157,43,3203,3279,3281,3221,0,674,15,11,694,3144,3243,3251,3160,43,3221,3281,3282,3213,0,694,11,14,673,3160,3251,3248,3155,43,3286,3254,3209,3285,0,8,721,720,10,3252,3212,3150,3246,43,3287,3215,3254,3286,0,7,86,721,8,3253,3214,3212,3252,43,3288,3260,3215,3287,0,2,726,92,4,3254,3220,3214,3253,43,3289,3217,3260,3288,0,1,728,726,2,3250,3159,3220,3254,43,3121,3293,3294,3119,0,711,740,741,712,3255,3256,3257,3258,43,3293,3130,3131,3294,0,740,27,28,741,3256,3259,3260,3257,43,3119,3294,3291,3123,0,6,50,44,5,3258,3257,3261,3262,43,3294,3131,3122,3291,0,50,30,16,44,3257,3260,3263,3261,43,3124,3295,3293,3121,0,714,742,0,6,3264,3265,3256,3255,43,3295,3133,3130,3293,0,742,22,5,0,3265,3266,3259,3256,43,3120,3296,3295,3124,0,30,49,742,714,3267,3268,3265,3264,43,3296,3132,3133,3295,0,49,16,22,742,3268,3269,3266,3265,43,3137,3297,3296,3120,0,719,743,744,0,3270,3271,3268,3267,43,3297,3136,3132,3296,0,743,12,13,744,3271,3272,3269,3268,43,3126,3292,3297,3137,0,5,44,745,719,3273,3274,3271,3270,43,3292,3125,3136,3297,0,44,16,12,745,3274,3275,3272,3271,43,3313,3328,3354,3304,0,6,5,16,30,3276,3277,3278,3279,43,3312,3299,3357,3329,0,6,5,16,30,3280,3281,3282,3283,43,3333,3298,3302,3352,0,6,5,16,30,3284,3285,3286,3287,43,3298,3333,3355,3300,0,6,5,16,30,3285,3284,3288,3289,43,3301,3356,3357,3299,0,6,5,16,30,3290,3291,3282,3281,43,3300,3355,3356,3301,0,6,5,16,30,3289,3288,3291,3290,43,3304,3354,3353,3303,0,6,5,16,30,3279,3278,3292,3293,43,3303,3353,3352,3302,0,6,5,16,30,3293,3292,3287,3286,43,3299,3312,3320,3305,0,6,5,16,30,3281,3280,3294,3295,43,3305,3320,3319,3306,0,6,5,16,30,3295,3294,3296,3297,43,3306,3319,3318,3307,0,6,5,16,30,3297,3296,3298,3299,43,3307,3318,3317,3308,0,6,5,16,30,3299,3298,3300,3301,43,3308,3317,3316,3309,0,6,5,16,30,3301,3300,3302,3303,43,3309,3316,3315,3310,0,6,5,16,30,3303,3302,3304,3305,43,3310,3315,3314,3311,0,6,5,16,30,3305,3304,3306,3307,43,3311,3314,3313,3304,0,6,5,16,30,3307,3306,3276,3279,43,3314,3327,3328,3313,0,6,5,16,30,3306,3308,3277,3276,43,3315,3326,3327,3314,0,6,5,16,30,3304,3309,3308,3306,43,3316,3325,3326,3315,0,6,5,16,30,3302,3310,3309,3304,43,3317,3324,3325,3316,0,6,5,16,30,3300,3311,3310,3302,43,3318,3323,3324,3317,0,6,5,16,30,3298,3312,3311,3300,43,3319,3322,3323,3318,0,6,5,16,30,3296,3313,3312,3298,43,3320,3321,3322,3319,0,6,5,16,30,3294,3314,3313,3296,43,3312,3329,3321,3320,0,6,5,16,30,3280,3283,3314,3294,43,3321,3329,3357,3330,0,6,5,16,30,3314,3283,3282,3315,43,3322,3321,3330,3336,0,6,5,16,30,3313,3314,3315,3316,43,3323,3322,3336,3337,0,6,5,16,30,3312,3313,3316,3317,43,3324,3323,3337,3342,0,6,5,16,30,3311,3312,3317,3318,43,3325,3324,3342,3343,0,6,5,16,30,3310,3311,3318,3319,43,3326,3325,3343,3348,0,6,5,16,30,3309,3310,3319,3320,43,3327,3326,3348,3349,0,6,5,16,30,3308,3309,3320,3321,43,3328,3327,3349,3354,0,6,5,16,30,3277,3308,3321,3278,43,3330,3357,3356,3331,0,6,5,16,30,3315,3282,3291,3322,43,3331,3356,3355,3332,0,6,5,16,30,3322,3291,3288,3323,42,3332,3355,3333,0,6,5,16,3323,3288,3284,42,3334,3332,3333,0,6,5,16,3324,3323,3284,43,3335,3331,3332,3334,0,6,5,16,30,3325,3322,3323,3324,43,3336,3330,3331,3335,0,6,5,16,30,3316,3315,3322,3325,43,3337,3336,3335,3338,0,6,5,16,30,3317,3316,3325,3326,43,3338,3335,3334,3339,0,6,5,16,30,3326,3325,3324,3327,42,3339,3334,3333,0,6,5,16,3327,3324,3284,42,3340,3339,3333,0,6,5,16,3328,3327,3284,43,3341,3338,3339,3340,0,6,5,16,30,3329,3326,3327,3328,43,3342,3337,3338,3341,0,6,5,16,30,3318,3317,3326,3329,43,3343,3342,3341,3344,0,6,5,16,30,3319,3318,3329,3330,43,3344,3341,3340,3345,0,6,5,16,30,3330,3329,3328,3331,42,3345,3340,3333,0,6,5,16,3331,3328,3284,42,3346,3345,3333,0,6,5,16,3332,3331,3284,43,3347,3344,3345,3346,0,6,5,16,30,3333,3330,3331,3332,43,3348,3343,3344,3347,0,6,5,16,30,3320,3319,3330,3333,43,3349,3348,3347,3350,0,6,5,16,30,3321,3320,3333,3334,43,3350,3347,3346,3351,0,6,5,16,30,3334,3333,3332,3335,42,3351,3346,3333,0,6,5,16,3335,3332,3284,42,3352,3351,3333,0,6,5,16,3287,3335,3284,43,3353,3350,3351,3352,0,6,5,16,30,3292,3334,3335,3287,43,3354,3349,3350,3353,0,6,5,16,30,3278,3321,3334,3292,43,3358,3364,3412,3388,0,6,5,16,30,3336,3337,3338,3339,43,3377,3389,3416,3360,0,6,5,16,30,3340,3341,3342,3343,43,3361,3415,3414,3362,0,6,5,16,30,3344,3345,3346,3347,43,3359,3417,3390,3365,0,6,5,16,30,3348,3349,3350,3351,43,3365,3390,3415,3361,0,6,5,16,30,3351,3350,3345,3344,43,3360,3416,3417,3359,0,6,5,16,30,3343,3342,3349,3348,43,3362,3414,3413,3363,0,6,5,16,30,3347,3346,3352,3353,43,3363,3413,3412,3364,0,6,5,16,30,3353,3352,3338,3337,43,3364,3358,3376,3366,0,6,5,16,30,3337,3336,3354,3355,43,3366,3376,3375,3367,0,6,5,16,30,3355,3354,3356,3357,43,3367,3375,3378,3368,0,6,5,16,30,3357,3356,3358,3359,43,3368,3378,3379,3369,0,6,5,16,30,3359,3358,3360,3361,43,3369,3379,3380,3370,0,6,5,16,30,3361,3360,3362,3363,43,3370,3380,3374,3371,0,6,5,16,30,3363,3362,3364,3365,43,3371,3374,3373,3372,0,6,5,16,30,3365,3364,3366,3367,43,3372,3373,3377,3360,0,6,5,16,30,3367,3366,3340,3343,43,3358,3388,3387,3376,0,6,5,16,30,3336,3339,3368,3354,43,3376,3387,3386,3375,0,6,5,16,30,3354,3368,3369,3356,43,3375,3386,3385,3378,0,6,5,16,30,3356,3369,3370,3358,43,3378,3385,3384,3379,0,6,5,16,30,3358,3370,3371,3360,43,3379,3384,3383,3380,0,6,5,16,30,3360,3371,3372,3362,43,3380,3383,3382,3374,0,6,5,16,30,3362,3372,3373,3364,43,3374,3382,3381,3373,0,6,5,16,30,3364,3373,3374,3366,43,3373,3381,3389,3377,0,6,5,16,30,3366,3374,3341,3340,43,3393,3416,3389,3381,0,6,5,16,30,3375,3342,3341,3374,43,3394,3393,3381,3382,0,6,5,16,30,3376,3375,3374,3373,43,3399,3394,3382,3383,0,6,5,16,30,3377,3376,3373,3372,43,3400,3399,3383,3384,0,6,5,16,30,3378,3377,3372,3371,43,3405,3400,3384,3385,0,6,5,16,30,3379,3378,3371,3370,43,3406,3405,3385,3386,0,6,5,16,30,3380,3379,3370,3369,43,3411,3406,3386,3387,0,6,5,16,30,3381,3380,3369,3368,43,3412,3411,3387,3388,0,6,5,16,30,3338,3381,3368,3339,42,3391,3415,3390,0,6,5,16,3382,3345,3350,43,3391,3390,3417,3392,0,6,5,16,30,3382,3350,3349,3383,43,3392,3417,3416,3393,0,6,5,16,30,3383,3349,3342,3375,43,3395,3392,3393,3394,0,6,5,16,30,3384,3383,3375,3376,43,3396,3391,3392,3395,0,6,5,16,30,3385,3382,3383,3384,42,3396,3415,3391,0,6,5,16,3385,3345,3382,42,3397,3415,3396,0,6,5,16,3386,3345,3385,43,3397,3396,3395,3398,0,6,5,16,30,3386,3385,3384,3387,43,3398,3395,3394,3399,0,6,5,16,30,3387,3384,3376,3377,43,3401,3398,3399,3400,0,6,5,16,30,3388,3387,3377,3378,43,3402,3397,3398,3401,0,6,5,16,30,3389,3386,3387,3388,42,3402,3415,3397,0,6,5,16,3389,3345,3386,42,3403,3415,3402,0,6,5,16,3390,3345,3389,43,3403,3402,3401,3404,0,6,5,16,30,3390,3389,3388,3391,43,3404,3401,3400,3405,0,6,5,16,30,3391,3388,3378,3379,43,3407,3404,3405,3406,0,6,5,16,30,3392,3391,3379,3380,43,3408,3403,3404,3407,0,6,5,16,30,3393,3390,3391,3392,42,3408,3415,3403,0,6,5,16,3393,3345,3390,42,3409,3415,3408,0,6,5,16,3394,3345,3393,43,3409,3408,3407,3410,0,6,5,16,30,3394,3393,3392,3395,43,3410,3407,3406,3411,0,6,5,16,30,3395,3392,3380,3381,43,3413,3410,3411,3412,0,6,5,16,30,3352,3395,3381,3338,43,3414,3409,3410,3413,0,6,5,16,30,3346,3394,3395,3352,42,3414,3415,3409,0,6,5,16,3346,3345,3394,42,3530,3419,3475,0,746,747,748,3396,3397,3398,43,3529,3420,3419,3530,0,749,750,747,746,3399,3400,3397,3396,43,3528,3421,3420,3529,0,751,752,753,754,3401,3402,3400,3399,43,3527,3422,3421,3528,0,755,756,752,751,3403,3404,3402,3401,43,3526,3423,3422,3527,0,757,758,756,755,3405,3406,3404,3403,43,3525,3424,3423,3526,0,759,760,758,757,3407,3408,3406,3405,43,3424,3427,3428,3423,0,760,761,762,758,3408,3409,3410,3406,43,3423,3428,3429,3422,0,758,762,763,756,3406,3410,3411,3404,43,3422,3429,3430,3421,0,756,763,764,752,3404,3411,3412,3402,43,3421,3430,3431,3420,0,752,764,765,753,3402,3412,3413,3400,43,3420,3431,3432,3419,0,750,766,767,747,3400,3413,3414,3397,42,3419,3432,3475,0,747,767,748,3397,3414,3398,42,3432,3433,3475,0,767,768,748,3414,3415,3398,43,3431,3434,3433,3432,0,766,769,768,767,3413,3416,3415,3414,43,3430,3435,3434,3431,0,764,770,771,765,3412,3417,3416,3413,43,3429,3436,3435,3430,0,763,772,770,764,3411,3418,3417,3412,43,3428,3437,3436,3429,0,762,773,772,763,3410,3419,3418,3411,43,3427,3438,3437,3428,0,761,774,773,762,3409,3420,3419,3410,43,3438,3441,3442,3437,0,774,775,776,773,3420,3421,3422,3419,43,3437,3442,3443,3436,0,773,776,777,772,3419,3422,3423,3418,43,3436,3443,3444,3435,0,772,777,778,770,3418,3423,3424,3417,43,3435,3444,3445,3434,0,770,778,779,771,3417,3424,3425,3416,43,3434,3445,3446,3433,0,769,780,781,768,3416,3425,3426,3415,42,3433,3446,3475,0,768,781,748,3415,3426,3398,42,3446,3447,3475,0,781,782,748,3426,3427,3398,43,3445,3448,3447,3446,0,780,783,782,781,3425,3428,3427,3426,43,3444,3449,3448,3445,0,778,784,785,779,3424,3429,3428,3425,43,3443,3450,3449,3444,0,777,786,784,778,3423,3430,3429,3424,43,3442,3451,3450,3443,0,776,787,786,777,3422,3431,3430,3423,43,3441,3452,3451,3442,0,775,788,787,776,3421,3432,3431,3422,43,3452,3455,3456,3451,0,788,789,790,787,3432,3433,3434,3431,43,3451,3456,3457,3450,0,787,790,791,786,3431,3434,3435,3430,43,3450,3457,3458,3449,0,786,791,792,784,3430,3435,3436,3429,43,3449,3458,3459,3448,0,784,792,793,785,3429,3436,3437,3428,43,3448,3459,3460,3447,0,783,794,795,782,3428,3437,3438,3427,42,3447,3460,3475,0,782,795,748,3427,3438,3398,42,3460,3461,3475,0,795,796,748,3438,3439,3398,43,3459,3462,3461,3460,0,794,797,796,795,3437,3440,3439,3438,43,3458,3463,3462,3459,0,792,798,799,793,3436,3441,3440,3437,43,3457,3464,3463,3458,0,791,800,798,792,3435,3442,3441,3436,43,3456,3465,3464,3457,0,790,801,800,791,3434,3443,3442,3435,43,3455,3466,3465,3456,0,789,802,801,790,3433,3444,3443,3434,43,3466,3469,3470,3465,0,802,803,804,801,3444,3445,3446,3443,43,3465,3470,3471,3464,0,801,804,805,800,3443,3446,3447,3442,43,3464,3471,3472,3463,0,800,805,806,798,3442,3447,3448,3441,43,3463,3472,3473,3462,0,798,806,807,799,3441,3448,3449,3440,43,3462,3473,3474,3461,0,797,808,809,796,3440,3449,3450,3439,42,3461,3474,3475,0,796,809,748,3439,3450,3398,42,3474,3476,3475,0,809,810,748,3450,3451,3398,43,3473,3477,3476,3474,0,808,811,810,809,3449,3452,3451,3450,43,3472,3478,3477,3473,0,812,813,814,815,3448,3453,3452,3449,43,3471,3479,3478,3472,0,816,817,813,812,3447,3454,3453,3448,43,3470,3480,3479,3471,0,818,819,817,816,3446,3455,3454,3447,43,3469,3481,3480,3470,0,820,821,819,818,3445,3456,3455,3446,43,3481,3484,3485,3480,0,821,822,823,819,3456,3457,3458,3455,43,3480,3485,3486,3479,0,819,823,824,817,3455,3458,3459,3454,43,3479,3486,3487,3478,0,817,824,825,813,3454,3459,3460,3453,43,3478,3487,3488,3477,0,813,825,826,814,3453,3460,3461,3452,43,3477,3488,3489,3476,0,811,827,828,810,3452,3461,3462,3451,42,3476,3489,3475,0,810,828,748,3451,3462,3398,42,3489,3490,3475,0,828,829,748,3462,3463,3398,43,3488,3491,3490,3489,0,827,830,829,828,3461,3464,3463,3462,43,3487,3492,3491,3488,0,825,831,832,826,3460,3465,3464,3461,43,3486,3493,3492,3487,0,824,833,831,825,3459,3466,3465,3460,43,3485,3494,3493,3486,0,823,834,833,824,3458,3467,3466,3459,43,3484,3495,3494,3485,0,822,835,834,823,3457,3468,3467,3458,43,3495,3498,3499,3494,0,835,836,837,834,3468,3469,3470,3467,43,3494,3499,3500,3493,0,834,837,838,833,3467,3470,3471,3466,43,3493,3500,3501,3492,0,833,838,839,831,3466,3471,3472,3465,43,3492,3501,3502,3491,0,831,839,840,832,3465,3472,3473,3464,43,3491,3502,3503,3490,0,830,841,842,829,3464,3473,3474,3463,42,3490,3503,3475,0,829,842,748,3463,3474,3398,42,3503,3504,3475,0,842,843,748,3474,3475,3398,43,3502,3505,3504,3503,0,841,844,843,842,3473,3476,3475,3474,43,3501,3506,3505,3502,0,839,845,846,840,3472,3477,3476,3473,43,3500,3507,3506,3501,0,838,847,845,839,3471,3478,3477,3472,43,3499,3508,3507,3500,0,837,848,847,838,3470,3479,3478,3471,43,3498,3509,3508,3499,0,836,849,848,837,3469,3480,3479,3470,43,3509,3512,3513,3508,0,849,850,851,848,3480,3481,3482,3479,43,3508,3513,3514,3507,0,848,851,852,847,3479,3482,3483,3478,43,3507,3514,3515,3506,0,847,852,853,845,3478,3483,3484,3477,43,3506,3515,3516,3505,0,845,853,854,846,3477,3484,3485,3476,43,3505,3516,3517,3504,0,844,855,856,843,3476,3485,3486,3475,42,3504,3517,3475,0,843,856,748,3475,3486,3398,42,3517,3518,3475,0,856,857,748,3486,3487,3398,43,3516,3519,3518,3517,0,855,858,857,856,3485,3488,3487,3486,43,3515,3520,3519,3516,0,853,859,860,854,3484,3489,3488,3485,43,3514,3521,3520,3515,0,852,861,859,853,3483,3490,3489,3484,43,3513,3522,3521,3514,0,851,862,861,852,3482,3491,3490,3483,43,3512,3523,3522,3513,0,850,863,862,851,3481,3492,3491,3482,43,3523,3525,3526,3522,0,863,864,865,862,3492,3407,3405,3491,43,3522,3526,3527,3521,0,862,865,866,861,3491,3405,3403,3490,43,3521,3527,3528,3520,0,861,866,867,859,3490,3403,3401,3489,43,3520,3528,3529,3519,0,859,867,868,860,3489,3401,3399,3488,43,3519,3529,3530,3518,0,858,749,746,857,3488,3399,3396,3487,42,3518,3530,3475,0,857,746,748,3487,3396,3398,43,3524,3531,3546,3418,0,869,870,871,872,3493,3494,3495,3496,43,3511,3532,3531,3524,0,873,874,870,869,3497,3498,3494,3493,43,3510,3533,3532,3511,0,875,876,874,873,3499,3500,3498,3497,43,3497,3534,3533,3510,0,877,878,876,875,3501,3502,3500,3499,43,3496,3535,3534,3497,0,879,880,878,877,3503,3504,3502,3501,43,3483,3536,3535,3496,0,881,882,880,879,3505,3506,3504,3503,43,3482,3537,3536,3483,0,883,884,882,881,3507,3508,3506,3505,43,3468,3538,3537,3482,0,885,886,884,883,3509,3510,3508,3507,43,3467,3539,3538,3468,0,887,888,886,885,3511,3512,3510,3509,43,3454,3540,3539,3467,0,889,890,888,887,3513,3514,3512,3511,43,3453,3541,3540,3454,0,891,892,890,889,3515,3516,3514,3513,43,3440,3542,3541,3453,0,893,894,892,891,3517,3518,3516,3515,43,3439,3543,3542,3440,0,895,896,894,893,3519,3520,3518,3517,43,3426,3544,3543,3439,0,897,898,896,895,3521,3522,3520,3519,43,3425,3545,3544,3426,0,899,900,898,897,3523,3524,3522,3521,43,3418,3546,3545,3425,0,872,871,900,899,3496,3495,3524,3523,42,3562,3563,3547,0,6,16,5,3525,3525,3525,42,3562,3561,3563,0,6,5,16,3525,3525,3525,42,3561,3560,3563,0,6,5,16,3525,3525,3525,42,3560,3559,3563,0,6,5,16,3525,3525,3525,42,3559,3558,3563,0,6,5,16,3525,3525,3525,42,3558,3557,3563,0,6,5,16,3525,3525,3525,42,3557,3556,3563,0,6,5,16,3525,3525,3525,42,3556,3555,3563,0,6,5,16,3525,3525,3525,42,3555,3554,3563,0,6,5,16,3525,3525,3525,42,3554,3553,3563,0,6,5,16,3525,3525,3525,42,3553,3552,3563,0,6,5,16,3525,3525,3525,42,3552,3551,3563,0,6,5,16,3525,3525,3525,42,3551,3550,3563,0,6,5,16,3525,3525,3525,42,3550,3549,3563,0,6,5,16,3525,3525,3525,42,3549,3548,3563,0,6,5,16,3525,3525,3525,42,3548,3547,3563,0,6,5,16,3525,3525,3525,43,3418,3425,3564,3579,0,872,899,901,902,3496,3523,3526,3527,43,3579,3564,3424,3525,0,902,901,903,904,3527,3526,3408,3407,43,3425,3426,3565,3564,0,899,897,905,901,3523,3521,3528,3526,43,3564,3565,3427,3424,0,901,905,906,903,3526,3528,3409,3408,43,3426,3439,3566,3565,0,897,895,907,905,3521,3519,3529,3528,43,3565,3566,3438,3427,0,905,907,908,906,3528,3529,3420,3409,43,3439,3440,3567,3566,0,895,893,909,907,3519,3517,3530,3529,43,3566,3567,3441,3438,0,907,909,910,908,3529,3530,3421,3420,43,3440,3453,3568,3567,0,893,891,911,909,3517,3515,3531,3530,43,3567,3568,3452,3441,0,909,911,912,910,3530,3531,3432,3421,43,3453,3454,3569,3568,0,891,889,913,911,3515,3513,3532,3531,43,3568,3569,3455,3452,0,911,913,914,912,3531,3532,3433,3432,43,3454,3467,3570,3569,0,889,887,915,913,3513,3511,3533,3532,43,3569,3570,3466,3455,0,913,915,916,914,3532,3533,3444,3433,43,3467,3468,3571,3570,0,887,885,917,918,3511,3509,3534,3533,43,3570,3571,3469,3466,0,918,917,919,916,3533,3534,3445,3444,43,3468,3482,3572,3571,0,885,883,920,917,3509,3507,3535,3534,43,3571,3572,3481,3469,0,917,920,921,919,3534,3535,3456,3445,43,3482,3483,3573,3572,0,883,881,922,923,3507,3505,3536,3535,43,3572,3573,3484,3481,0,923,922,924,921,3535,3536,3457,3456,43,3483,3496,3574,3573,0,881,879,925,922,3505,3503,3537,3536,43,3573,3574,3495,3484,0,922,925,926,924,3536,3537,3468,3457,43,3496,3497,3575,3574,0,879,877,927,925,3503,3501,3538,3537,43,3574,3575,3498,3495,0,925,927,928,926,3537,3538,3469,3468,43,3497,3510,3576,3575,0,877,875,929,927,3501,3499,3539,3538,43,3575,3576,3509,3498,0,927,929,930,928,3538,3539,3480,3469,43,3510,3511,3577,3576,0,875,873,931,929,3499,3497,3540,3539,43,3576,3577,3512,3509,0,929,931,932,930,3539,3540,3481,3480,43,3511,3524,3578,3577,0,873,869,933,931,3497,3493,3541,3540,43,3577,3578,3523,3512,0,931,933,934,932,3540,3541,3492,3481,43,3525,3523,3578,3579,0,904,934,933,902,3407,3492,3541,3527,43,3579,3578,3524,3418,0,902,933,869,872,3527,3541,3493,3496,43,3612,3629,3639,3620,0,6,5,16,30,3542,3543,3544,3545,43,3613,3630,3641,3622,0,6,5,16,30,3546,3547,3548,3549,43,3614,3631,3642,3623,0,6,5,16,30,3550,3551,3552,3553,43,3615,3632,3643,3624,0,6,5,16,30,3554,3555,3556,3557,43,3616,3633,3644,3625,0,6,5,16,30,3558,3559,3560,3561,43,3617,3634,3645,3626,0,6,5,16,30,3562,3563,3564,3565,43,3618,3635,3646,3627,0,6,5,16,30,3566,3567,3568,3569,43,3619,3636,3647,3628,0,6,5,16,30,3570,3571,3572,3573,43,3620,3639,3684,3711,0,6,5,16,30,3545,3544,3574,3575,43,3685,3640,3621,3712,0,16,5,6,30,3576,3577,3578,3579,43,3622,3641,3686,3713,0,6,5,16,30,3549,3548,3580,3581,43,3623,3642,3687,3714,0,6,5,16,30,3553,3552,3582,3583,43,3624,3643,3688,3715,0,6,5,16,30,3557,3556,3584,3585,43,3625,3644,3689,3716,0,6,5,16,30,3561,3560,3586,3587,43,3626,3645,3690,3717,0,6,5,16,30,3565,3564,3588,3589,43,3627,3646,3691,3718,0,6,5,16,30,3569,3568,3590,3591,43,3628,3647,3692,3719,0,6,5,16,30,3573,3572,3592,3593,43,6604,6603,6725,6695,0,6,30,16,5,3594,3595,3596,3597,43,3711,3684,6604,6603,0,6,5,16,30,3575,3574,3594,3595,43,6604,3685,3712,6603,0,16,5,6,30,3594,3576,3579,3595,43,3713,3686,3580,3588,0,6,5,16,30,3581,3580,3598,3599,43,3714,3687,3581,3589,0,6,5,16,30,3583,3582,3600,3601,43,3715,3688,3582,3590,0,6,5,16,30,3585,3584,3602,3603,43,3716,3689,3583,3591,0,6,5,16,30,3587,3586,3604,3605,43,3717,3690,3584,3592,0,6,5,16,30,3589,3588,3606,3607,43,3718,3691,3585,3593,0,6,5,16,30,3591,3590,3608,3609,43,3719,3692,3586,3594,0,6,5,16,30,3593,3592,3610,3611,43,3629,3612,3720,3728,0,6,5,16,30,3543,3542,3612,3613,43,3630,3613,3721,3729,0,6,5,16,30,3547,3546,3614,3615,43,3631,3614,3722,3730,0,6,5,16,30,3551,3550,3616,3617,43,3632,3615,3723,3731,0,6,5,16,30,3555,3554,3618,3619,43,3633,3616,3724,3732,0,6,5,16,30,3559,3558,3620,3621,43,3634,3617,3725,3733,0,6,5,16,30,3563,3562,3622,3623,43,3635,3618,3726,3734,0,6,5,16,30,3567,3566,3624,3625,43,3636,3619,3727,3735,0,6,5,16,30,3571,3570,3626,3627,43,3728,3720,3588,3580,0,6,5,16,30,3613,3612,3599,3598,43,3729,3721,3589,3581,0,6,5,16,30,3615,3614,3601,3600,43,3730,3722,3590,3582,0,6,5,16,30,3617,3616,3603,3602,43,3731,3723,3591,3583,0,6,5,16,30,3619,3618,3605,3604,43,3732,3724,3592,3584,0,6,5,16,30,3621,3620,3607,3606,43,3733,3725,3593,3585,0,6,5,16,30,3623,3622,3609,3608,43,3734,3726,3594,3586,0,6,5,16,30,3625,3624,3611,3610,43,3735,3727,3595,3587,0,6,5,16,30,3627,3626,3628,3629,43,3781,3798,3797,3780,0,6,5,16,30,3630,3631,3632,3633,43,3783,3779,3799,3782,0,6,5,16,30,3634,3635,3636,3637,43,3785,3801,3800,3784,0,6,5,16,30,3638,3639,3640,3641,43,3787,3777,3802,3786,0,6,5,16,30,3642,3643,3644,3645,43,3789,3775,3803,3788,0,6,5,16,30,3646,3647,3648,3649,43,3791,3805,3804,3790,0,6,5,16,30,3650,3651,3652,3653,43,3793,3807,3806,3792,0,6,5,16,30,3654,3655,3656,3657,43,3795,3809,3808,3794,0,6,5,16,30,3658,3659,3660,3661,43,3796,3810,3798,3781,0,6,5,16,30,3662,3663,3631,3630,43,3764,3778,3779,3783,0,6,5,16,30,3664,3665,3635,3634,43,3762,3772,3801,3785,0,6,5,16,30,3666,3667,3639,3638,43,3760,3776,3777,3787,0,6,5,16,30,3668,3669,3643,3642,43,3758,3774,3775,3789,0,6,5,16,30,3670,3671,3647,3646,43,3756,3770,3805,3791,0,6,5,16,30,3672,3673,3651,3650,43,3754,3768,3807,3793,0,6,5,16,30,3674,3675,3655,3654,43,3752,3766,3809,3795,0,6,5,16,30,3676,3677,3659,3658,43,3765,3812,3778,3764,0,6,5,16,30,3678,3679,3665,3664,43,3763,3773,3772,3762,0,6,5,16,30,3680,3681,3667,3666,43,3761,3815,3776,3760,0,6,5,16,30,3682,3683,3669,3668,43,3759,3817,3774,3758,0,6,5,16,30,3684,3685,3671,3670,43,3757,3771,3770,3756,0,6,5,16,30,3686,3687,3673,3672,43,3755,3769,3768,3754,0,6,5,16,30,3688,3689,3675,3674,43,3753,3767,3766,3752,0,6,5,16,30,3690,3691,3677,3676,43,6842,3823,3838,6858,0,6,5,16,30,3692,3693,3694,3695,43,3839,3824,6842,6858,0,16,5,6,30,3696,3697,3692,3695,43,3840,3825,6842,6858,0,6,5,16,30,3698,3699,3692,3695,43,6842,3826,3841,6858,0,16,5,6,30,3692,3700,3701,3695,43,3827,3811,3812,3765,0,6,5,16,30,3702,3703,3679,3678,43,3828,3813,3773,3763,0,6,5,16,30,3704,3705,3681,3680,43,3829,3814,3815,3761,0,6,5,16,30,3706,3707,3683,3682,43,3830,3816,3817,3759,0,6,5,16,30,3708,3709,3685,3684,43,3831,3818,3771,3757,0,6,5,16,30,3710,3711,3687,3686,43,3832,3819,3769,3755,0,6,5,16,30,3712,3713,3689,3688,43,3833,3820,3767,3753,0,6,5,16,30,3714,3715,3691,3690,43,3836,3821,3825,3840,0,6,5,16,30,3716,3717,3699,3698,43,3826,3822,3837,3841,0,16,5,6,30,3700,3718,3719,3701,43,3780,3797,3811,3827,0,6,5,16,30,3633,3632,3703,3702,43,3782,3799,3813,3828,0,6,5,16,30,3637,3636,3705,3704,43,3784,3800,3814,3829,0,6,5,16,30,3641,3640,3707,3706,43,3786,3802,3816,3830,0,6,5,16,30,3645,3644,3709,3708,43,3788,3803,3818,3831,0,6,5,16,30,3649,3648,3711,3710,43,3790,3804,3819,3832,0,6,5,16,30,3653,3652,3713,3712,43,3792,3806,3820,3833,0,6,5,16,30,3657,3656,3715,3714,43,3794,3808,3821,3836,0,6,5,16,30,3661,3660,3717,3716,43,3842,3843,3753,3752,0,6,5,16,30,3720,3721,3690,3676,43,3844,3845,3755,3754,0,6,5,16,30,3722,3723,3688,3674,43,3846,3847,3757,3756,0,6,5,16,30,3724,3725,3686,3672,43,3848,3849,3759,3758,0,6,5,16,30,3726,3727,3684,3670,43,3850,3851,3761,3760,0,6,5,16,30,3728,3729,3682,3668,43,3852,3853,3763,3762,0,6,5,16,30,3730,3731,3680,3666,43,3854,3855,3765,3764,0,6,5,16,30,3732,3733,3678,3664,43,3856,3857,3766,3767,0,6,5,16,30,3734,3735,3677,3691,43,3858,3859,3768,3769,0,6,5,16,30,3736,3737,3675,3689,43,3860,3861,3770,3771,0,6,5,16,30,3738,3739,3673,3687,43,3862,3863,3772,3773,0,6,5,16,30,3740,3741,3667,3681,43,3864,3865,3775,3774,0,6,5,16,30,3742,3743,3647,3671,43,3866,3867,3777,3776,0,6,5,16,30,3744,3745,3643,3669,43,3868,3869,3779,3778,0,6,5,16,30,3746,3747,3635,3665,43,3870,3871,3781,3780,0,6,5,16,30,3748,3749,3630,3633,43,3872,3873,3783,3782,0,6,5,16,30,3750,3751,3634,3637,43,3874,3875,3785,3784,0,6,5,16,30,3752,3753,3638,3641,43,3876,3877,3787,3786,0,6,5,16,30,3754,3755,3642,3645,43,3878,3879,3789,3788,0,6,5,16,30,3756,3757,3646,3649,43,3880,3881,3791,3790,0,6,5,16,30,3758,3759,3650,3653,43,3882,3883,3793,3792,0,6,5,16,30,3760,3761,3654,3657,43,3884,3885,3795,3794,0,6,5,16,30,3762,3763,3658,3661,43,3871,3886,3796,3781,0,6,5,16,30,3749,3764,3662,3630,43,3873,3854,3764,3783,0,6,5,16,30,3751,3732,3664,3634,43,3875,3852,3762,3785,0,6,5,16,30,3753,3730,3666,3638,43,3877,3850,3760,3787,0,6,5,16,30,3755,3728,3668,3642,43,3879,3848,3758,3789,0,6,5,16,30,3757,3726,3670,3646,43,3881,3846,3756,3791,0,6,5,16,30,3759,3724,3672,3650,43,3883,3844,3754,3793,0,6,5,16,30,3761,3722,3674,3654,43,3885,3842,3752,3795,0,6,5,16,30,3763,3720,3676,3658,43,3887,3888,3797,3798,0,6,5,16,30,3765,3766,3632,3631,43,3869,3889,3799,3779,0,6,5,16,30,3747,3767,3636,3635,43,3890,3891,3800,3801,0,6,5,16,30,3768,3769,3640,3639,43,3867,3892,3802,3777,0,6,5,16,30,3745,3770,3644,3643,43,3865,3893,3803,3775,0,6,5,16,30,3743,3771,3648,3647,43,3894,3895,3804,3805,0,6,5,16,30,3772,3773,3652,3651,43,3896,3897,3806,3807,0,6,5,16,30,3774,3775,3656,3655,43,3898,3899,3808,3809,0,6,5,16,30,3776,3777,3660,3659,43,3900,3887,3798,3810,0,6,5,16,30,3778,3765,3631,3663,43,3863,3890,3801,3772,0,6,5,16,30,3741,3768,3639,3667,43,3861,3894,3805,3770,0,6,5,16,30,3739,3772,3651,3673,43,3859,3896,3807,3768,0,6,5,16,30,3737,3774,3655,3675,43,3857,3898,3809,3766,0,6,5,16,30,3735,3776,3659,3677,43,3901,3902,3812,3811,0,6,5,16,30,3779,3780,3679,3703,43,3903,3862,3773,3813,0,6,5,16,30,3781,3740,3681,3705,43,3904,3905,3815,3814,0,6,5,16,30,3782,3783,3683,3707,43,3906,3907,3817,3816,0,6,5,16,30,3784,3785,3685,3709,43,3908,3860,3771,3818,0,6,5,16,30,3786,3738,3687,3711,43,3909,3858,3769,3819,0,6,5,16,30,3787,3736,3689,3713,43,3910,3856,3767,3820,0,6,5,16,30,3788,3734,3691,3715,43,3911,3915,3825,3821,0,6,5,16,30,3789,3790,3699,3717,43,3826,3916,3912,3822,0,16,5,6,30,3700,3791,3792,3718,43,3902,3868,3778,3812,0,6,5,16,30,3780,3746,3665,3679,43,3905,3866,3776,3815,0,6,5,16,30,3783,3744,3669,3683,43,3907,3864,3774,3817,0,6,5,16,30,3785,3742,3671,3685,43,6842,6934,3913,3823,0,6,5,16,30,3692,3793,3794,3693,43,3914,6934,6842,3824,0,16,5,6,30,3795,3793,3692,3697,43,3915,6934,6842,3825,0,6,5,16,30,3790,3793,3692,3699,43,6842,6934,3916,3826,0,16,5,6,30,3692,3793,3791,3700,43,3855,3917,3827,3765,0,6,5,16,30,3733,3796,3702,3678,43,3853,3918,3828,3763,0,6,5,16,30,3731,3797,3704,3680,43,3851,3919,3829,3761,0,6,5,16,30,3729,3798,3706,3682,43,3849,3920,3830,3759,0,6,5,16,30,3727,3799,3708,3684,43,3847,3921,3831,3757,0,6,5,16,30,3725,3800,3710,3686,43,3845,3922,3832,3755,0,6,5,16,30,3723,3801,3712,3688,43,3843,3923,3833,3753,0,6,5,16,30,3721,3802,3714,3690,43,3926,3928,3836,3840,0,6,5,16,30,3803,3804,3716,3698,43,3837,3929,3927,3841,0,16,5,6,30,3719,3805,3806,3701,43,3838,3924,6948,6858,0,6,5,16,30,3694,3807,3808,3695,43,6948,3925,3839,6858,0,16,5,6,30,3808,3809,3696,3695,43,6948,3926,3840,6858,0,6,5,16,30,3808,3803,3698,3695,43,3841,3927,6948,6858,0,16,5,6,30,3701,3806,3808,3695,43,3917,3870,3780,3827,0,6,5,16,30,3796,3748,3633,3702,43,3918,3872,3782,3828,0,6,5,16,30,3797,3750,3637,3704,43,3919,3874,3784,3829,0,6,5,16,30,3798,3752,3641,3706,43,3920,3876,3786,3830,0,6,5,16,30,3799,3754,3645,3708,43,3921,3878,3788,3831,0,6,5,16,30,3800,3756,3649,3710,43,3922,3880,3790,3832,0,6,5,16,30,3801,3758,3653,3712,43,3923,3882,3792,3833,0,6,5,16,30,3802,3760,3657,3714,43,3928,3884,3794,3836,0,6,5,16,30,3804,3762,3661,3716,43,3888,3901,3811,3797,0,6,5,16,30,3766,3779,3703,3632,43,3889,3903,3813,3799,0,6,5,16,30,3767,3781,3705,3636,43,3891,3904,3814,3800,0,6,5,16,30,3769,3782,3707,3640,43,3892,3906,3816,3802,0,6,5,16,30,3770,3784,3709,3644,43,3893,3908,3818,3803,0,6,5,16,30,3771,3786,3711,3648,43,3895,3909,3819,3804,0,6,5,16,30,3773,3787,3713,3652,43,3897,3910,3820,3806,0,6,5,16,30,3775,3788,3715,3656,43,3899,3911,3821,3808,0,6,5,16,30,3777,3789,3717,3660,43,3886,3900,3810,3796,0,6,5,16,30,3764,3778,3663,3662,43,3596,3695,3931,3930,0,6,5,16,30,3810,3811,3812,3813,43,3930,3931,3843,3842,0,6,5,16,30,3813,3812,3721,3720,43,3597,3696,3933,3932,0,6,5,16,30,3814,3815,3816,3817,43,3932,3933,3845,3844,0,6,5,16,30,3817,3816,3723,3722,43,3598,3697,3935,3934,0,6,5,16,30,3818,3819,3820,3821,43,3934,3935,3847,3846,0,6,5,16,30,3821,3820,3725,3724,43,3599,3698,3937,3936,0,6,5,16,30,3822,3823,3824,3825,43,3936,3937,3849,3848,0,6,5,16,30,3825,3824,3727,3726,43,3600,3699,3939,3938,0,6,5,16,30,3826,3827,3828,3829,43,3938,3939,3851,3850,0,6,5,16,30,3829,3828,3729,3728,43,3601,3700,3941,3940,0,6,5,16,30,3830,3831,3832,3833,43,3940,3941,3853,3852,0,6,5,16,30,3833,3832,3731,3730,43,3602,3701,3943,3942,0,6,5,16,30,3834,3835,3836,3837,43,3942,3943,3855,3854,0,6,5,16,30,3837,3836,3733,3732,43,3704,3604,3945,3944,0,6,5,16,30,3838,3839,3840,3841,43,3944,3945,3857,3856,0,6,5,16,30,3841,3840,3735,3734,43,3705,3605,3947,3946,0,6,5,16,30,3842,3843,3844,3845,43,3946,3947,3859,3858,0,6,5,16,30,3845,3844,3737,3736,43,3706,3606,3949,3948,0,6,5,16,30,3846,3847,3848,3849,43,3948,3949,3861,3860,0,6,5,16,30,3849,3848,3739,3738,43,3709,3607,3951,3950,0,6,5,16,30,3850,3851,3852,3853,43,3950,3951,3863,3862,0,6,5,16,30,3853,3852,3741,3740,43,3609,3739,3953,3952,0,6,5,16,30,3854,3855,3856,3857,43,3952,3953,3865,3864,0,6,5,16,30,3857,3856,3743,3742,43,3610,3740,3955,3954,0,6,5,16,30,3858,3859,3860,3861,43,3954,3955,3867,3866,0,6,5,16,30,3861,3860,3745,3744,43,3611,3742,3957,3956,0,6,5,16,30,3862,3863,3864,3865,43,3956,3957,3869,3868,0,6,5,16,30,3865,3864,3747,3746,43,3672,3751,3959,3958,0,6,5,16,30,3866,3867,3868,3869,43,3958,3959,3871,3870,0,6,5,16,30,3869,3868,3749,3748,43,3671,3750,3961,3960,0,6,5,16,30,3870,3871,3872,3873,43,3960,3961,3873,3872,0,6,5,16,30,3873,3872,3751,3750,43,3670,3749,3963,3962,0,6,5,16,30,3874,3875,3876,3877,43,3962,3963,3875,3874,0,6,5,16,30,3877,3876,3753,3752,43,3669,3748,3965,3964,0,6,5,16,30,3878,3879,3880,3881,43,3964,3965,3877,3876,0,6,5,16,30,3881,3880,3755,3754,43,3668,3747,3967,3966,0,6,5,16,30,3882,3883,3884,3885,43,3966,3967,3879,3878,0,6,5,16,30,3885,3884,3757,3756,43,3667,3746,3969,3968,0,6,5,16,30,3886,3887,3888,3889,43,3968,3969,3881,3880,0,6,5,16,30,3889,3888,3759,3758,43,3666,3745,3971,3970,0,6,5,16,30,3890,3891,3892,3893,43,3970,3971,3883,3882,0,6,5,16,30,3893,3892,3761,3760,43,3665,3744,3973,3972,0,6,5,16,30,3894,3895,3896,3897,43,3972,3973,3885,3884,0,6,5,16,30,3897,3896,3763,3762,43,3751,3603,3974,3959,0,6,5,16,30,3867,3898,3899,3868,43,3959,3974,3886,3871,0,6,5,16,30,3868,3899,3764,3749,43,3750,3602,3942,3961,0,6,5,16,30,3871,3834,3837,3872,43,3961,3942,3854,3873,0,6,5,16,30,3872,3837,3732,3751,43,3749,3601,3940,3963,0,6,5,16,30,3875,3830,3833,3876,43,3963,3940,3852,3875,0,6,5,16,30,3876,3833,3730,3753,43,3748,3600,3938,3965,0,6,5,16,30,3879,3826,3829,3880,43,3965,3938,3850,3877,0,6,5,16,30,3880,3829,3728,3755,43,3747,3599,3936,3967,0,6,5,16,30,3883,3822,3825,3884,43,3967,3936,3848,3879,0,6,5,16,30,3884,3825,3726,3757,43,3746,3598,3934,3969,0,6,5,16,30,3887,3818,3821,3888,43,3969,3934,3846,3881,0,6,5,16,30,3888,3821,3724,3759,43,3745,3597,3932,3971,0,6,5,16,30,3891,3814,3817,3892,43,3971,3932,3844,3883,0,6,5,16,30,3892,3817,3722,3761,43,3744,3596,3930,3973,0,6,5,16,30,3895,3810,3813,3896,43,3973,3930,3842,3885,0,6,5,16,30,3896,3813,3720,3763,43,3743,3655,3976,3975,0,6,5,16,30,3900,3901,3902,3903,43,3975,3976,3888,3887,0,6,5,16,30,3903,3902,3766,3765,43,3742,3654,3977,3957,0,6,5,16,30,3863,3904,3905,3864,43,3957,3977,3889,3869,0,6,5,16,30,3864,3905,3767,3747,43,3741,3653,3979,3978,0,6,5,16,30,3906,3907,3908,3909,43,3978,3979,3891,3890,0,6,5,16,30,3909,3908,3769,3768,43,3740,3652,3980,3955,0,6,5,16,30,3859,3910,3911,3860,43,3955,3980,3892,3867,0,6,5,16,30,3860,3911,3770,3745,43,3739,3651,3981,3953,0,6,5,16,30,3855,3912,3913,3856,43,3953,3981,3893,3865,0,6,5,16,30,3856,3913,3771,3743,43,3738,3650,3983,3982,0,6,5,16,30,3914,3915,3916,3917,43,3982,3983,3895,3894,0,6,5,16,30,3917,3916,3773,3772,43,3737,3649,3985,3984,0,6,5,16,30,3918,3919,3920,3921,43,3984,3985,3897,3896,0,6,5,16,30,3921,3920,3775,3774,43,3736,3648,3987,3986,0,6,5,16,30,3922,3923,3924,3925,43,3986,3987,3899,3898,0,6,5,16,30,3925,3924,3777,3776,43,3608,3743,3975,3988,0,6,5,16,30,3926,3900,3903,3927,43,3988,3975,3887,3900,0,6,5,16,30,3927,3903,3765,3778,43,3607,3741,3978,3951,0,6,5,16,30,3851,3906,3909,3852,43,3951,3978,3890,3863,0,6,5,16,30,3852,3909,3768,3741,43,3606,3738,3982,3949,0,6,5,16,30,3847,3914,3917,3848,43,3949,3982,3894,3861,0,6,5,16,30,3848,3917,3772,3739,43,3605,3737,3984,3947,0,6,5,16,30,3843,3918,3921,3844,43,3947,3984,3896,3859,0,6,5,16,30,3844,3921,3774,3737,43,3604,3736,3986,3945,0,6,5,16,30,3839,3922,3925,3840,43,3945,3986,3898,3857,0,6,5,16,30,3840,3925,3776,3735,43,3664,3710,3990,3989,0,6,5,16,30,3928,3929,3930,3931,43,3989,3990,3902,3901,0,6,5,16,30,3931,3930,3780,3779,43,3663,3709,3950,3991,0,6,5,16,30,3932,3850,3853,3933,43,3991,3950,3862,3903,0,6,5,16,30,3933,3853,3740,3781,43,3662,3708,3993,3992,0,6,5,16,30,3934,3935,3936,3937,43,3992,3993,3905,3904,0,6,5,16,30,3937,3936,3783,3782,43,3661,3707,3995,3994,0,6,5,16,30,3938,3939,3940,3941,43,3994,3995,3907,3906,0,6,5,16,30,3941,3940,3785,3784,43,3660,3706,3948,3996,0,6,5,16,30,3942,3846,3849,3943,43,3996,3948,3860,3908,0,6,5,16,30,3943,3849,3738,3786,43,3659,3705,3946,3997,0,6,5,16,30,3944,3842,3845,3945,43,3997,3946,3858,3909,0,6,5,16,30,3945,3845,3736,3787,43,3658,3704,3944,3998,0,6,5,16,30,3946,3838,3841,3947,43,3998,3944,3856,3910,0,6,5,16,30,3947,3841,3734,3788,43,3656,3702,4001,3999,0,6,5,16,30,3948,3949,3950,3951,43,4002,3703,3657,4000,0,16,5,6,30,3952,3953,3954,3955,43,3999,4001,3915,3911,0,6,5,16,30,3951,3950,3790,3789,43,3916,4002,4000,3912,0,16,5,6,30,3791,3952,3955,3792,43,3710,3611,3956,3990,0,6,5,16,30,3929,3862,3865,3930,43,3990,3956,3868,3902,0,6,5,16,30,3930,3865,3746,3780,43,3708,3610,3954,3993,0,6,5,16,30,3935,3858,3861,3936,43,3993,3954,3866,3905,0,6,5,16,30,3936,3861,3744,3783,43,3707,3609,3952,3995,0,6,5,16,30,3939,3854,3857,3940,43,3995,3952,3864,3907,0,6,5,16,30,3940,3857,3742,3785,43,7023,6618,6715,7020,0,6,5,16,30,3956,3957,3958,3959,43,3702,6618,7023,4001,0,6,5,16,30,3949,3957,3956,3950,43,7023,6618,3703,4002,0,16,5,6,30,3956,3957,3953,3952,43,6934,7023,7020,3913,0,6,5,16,30,3793,3956,3959,3794,43,7020,7023,6934,3914,0,16,5,6,30,3959,3956,3793,3795,43,4001,7023,6934,3915,0,6,5,16,30,3950,3956,3793,3790,43,6934,7023,4002,3916,0,16,5,6,30,3793,3956,3952,3791,43,3701,3683,4003,3943,0,6,5,16,30,3835,3960,3961,3836,43,3943,4003,3917,3855,0,6,5,16,30,3836,3961,3796,3733,43,3700,3682,4004,3941,0,6,5,16,30,3831,3962,3963,3832,43,3941,4004,3918,3853,0,6,5,16,30,3832,3963,3797,3731,43,3699,3681,4005,3939,0,6,5,16,30,3827,3964,3965,3828,43,3939,4005,3919,3851,0,6,5,16,30,3828,3965,3798,3729,43,3698,3680,4006,3937,0,6,5,16,30,3823,3966,3967,3824,43,3937,4006,3920,3849,0,6,5,16,30,3824,3967,3799,3727,43,3697,3679,4007,3935,0,6,5,16,30,3819,3968,3969,3820,43,3935,4007,3921,3847,0,6,5,16,30,3820,3969,3800,3725,43,3696,3678,4008,3933,0,6,5,16,30,3815,3970,3971,3816,43,3933,4008,3922,3845,0,6,5,16,30,3816,3971,3801,3723,43,3695,3677,4009,3931,0,6,5,16,30,3811,3972,3973,3812,43,3931,4009,3923,3843,0,6,5,16,30,3812,3973,3802,3721,43,4012,3673,6705,7031,0,6,5,16,30,3974,3975,3976,3977,43,6705,3674,4013,7031,0,16,5,6,30,3976,3978,3979,3977,43,3693,3675,4014,4010,0,6,5,16,30,3980,3981,3982,3983,43,4015,3676,3694,4011,0,16,5,6,30,3984,3985,3986,3987,43,4010,4014,3928,3926,0,6,5,16,30,3983,3982,3804,3803,43,3929,4015,4011,3927,0,16,5,6,30,3805,3984,3987,3806,43,7031,6705,6622,7038,0,6,5,16,30,3977,3976,3988,3989,43,6622,3693,4010,7038,0,6,5,16,30,3988,3980,3983,3989,43,4011,3694,6622,7038,0,16,5,6,30,3987,3986,3988,3989,43,3924,7031,7038,6948,0,6,5,16,30,3807,3977,3989,3808,43,7038,7031,3925,6948,0,16,5,6,30,3989,3977,3809,3808,43,7038,4010,3926,6948,0,6,5,16,30,3989,3983,3803,3808,43,3927,4011,7038,6948,0,16,5,6,30,3806,3987,3989,3808,43,3683,3672,3958,4003,0,6,5,16,30,3960,3866,3869,3961,43,4003,3958,3870,3917,0,6,5,16,30,3961,3869,3748,3796,43,3682,3671,3960,4004,0,6,5,16,30,3962,3870,3873,3963,43,4004,3960,3872,3918,0,6,5,16,30,3963,3873,3750,3797,43,3681,3670,3962,4005,0,6,5,16,30,3964,3874,3877,3965,43,4005,3962,3874,3919,0,6,5,16,30,3965,3877,3752,3798,43,3680,3669,3964,4006,0,6,5,16,30,3966,3878,3881,3967,43,4006,3964,3876,3920,0,6,5,16,30,3967,3881,3754,3799,43,3679,3668,3966,4007,0,6,5,16,30,3968,3882,3885,3969,43,4007,3966,3878,3921,0,6,5,16,30,3969,3885,3756,3800,43,3678,3667,3968,4008,0,6,5,16,30,3970,3886,3889,3971,43,4008,3968,3880,3922,0,6,5,16,30,3971,3889,3758,3801,43,3677,3666,3970,4009,0,6,5,16,30,3972,3890,3893,3973,43,4009,3970,3882,3923,0,6,5,16,30,3973,3893,3760,3802,43,3675,3665,3972,4014,0,6,5,16,30,3981,3894,3897,3982,43,4014,3972,3884,3928,0,6,5,16,30,3982,3897,3762,3804,43,3655,3664,3989,3976,0,6,5,16,30,3901,3928,3931,3902,43,3976,3989,3901,3888,0,6,5,16,30,3902,3931,3779,3766,43,3654,3663,3991,3977,0,6,5,16,30,3904,3932,3933,3905,43,3977,3991,3903,3889,0,6,5,16,30,3905,3933,3781,3767,43,3653,3662,3992,3979,0,6,5,16,30,3907,3934,3937,3908,43,3979,3992,3904,3891,0,6,5,16,30,3908,3937,3782,3769,43,3652,3661,3994,3980,0,6,5,16,30,3910,3938,3941,3911,43,3980,3994,3906,3892,0,6,5,16,30,3911,3941,3784,3770,43,3651,3660,3996,3981,0,6,5,16,30,3912,3942,3943,3913,43,3981,3996,3908,3893,0,6,5,16,30,3913,3943,3786,3771,43,3650,3659,3997,3983,0,6,5,16,30,3915,3944,3945,3916,43,3983,3997,3909,3895,0,6,5,16,30,3916,3945,3787,3773,43,3649,3658,3998,3985,0,6,5,16,30,3919,3946,3947,3920,43,3985,3998,3910,3897,0,6,5,16,30,3920,3947,3788,3775,43,3648,3656,3999,3987,0,6,5,16,30,3923,3948,3951,3924,43,3987,3999,3911,3899,0,6,5,16,30,3924,3951,3789,3777,43,3603,3608,3988,3974,0,6,5,16,30,3898,3926,3927,3899,43,3974,3988,3900,3886,0,6,5,16,30,3899,3927,3778,3764,43,3656,3648,4029,4037,0,6,5,16,30,3948,3923,3990,3991,43,3658,3649,4030,4039,0,6,5,16,30,3946,3919,3992,3993,43,3659,3650,4031,4040,0,6,5,16,30,3944,3915,3994,3995,43,3660,3651,4032,4041,0,6,5,16,30,3942,3912,3996,3997,43,3661,3652,4033,4042,0,6,5,16,30,3938,3910,3998,3999,43,3662,3653,4034,4043,0,6,5,16,30,3934,3907,4000,4001,43,3663,3654,4035,4044,0,6,5,16,30,3932,3904,4002,4003,43,3664,3655,4036,4045,0,6,5,16,30,3928,3901,4004,4005,43,4056,4046,3665,3675,0,6,5,16,30,4006,4007,3894,3981,43,4058,4047,3666,3677,0,6,5,16,30,4008,4009,3890,3972,43,4059,4048,3667,3678,0,6,5,16,30,4010,4011,3886,3970,43,4060,4049,3668,3679,0,6,5,16,30,4012,4013,3882,3968,43,4061,4050,3669,3680,0,6,5,16,30,4014,4015,3878,3966,43,4062,4051,3670,3681,0,6,5,16,30,4016,4017,3874,3964,43,4063,4052,3671,3682,0,6,5,16,30,4018,4019,3870,3962,43,4064,4053,3672,3683,0,6,5,16,30,4020,4021,3866,3960,43,3702,3656,4037,4065,0,6,5,16,30,3949,3948,3991,4022,43,4038,3657,3703,4066,0,16,5,6,30,4023,3954,3953,4024,43,3704,3658,4039,4067,0,6,5,16,30,3838,3946,3993,4025,43,3705,3659,4040,4068,0,6,5,16,30,3842,3944,3995,4026,43,3706,3660,4041,4069,0,6,5,16,30,3846,3942,3997,4027,43,3707,3661,4042,4070,0,6,5,16,30,3939,3938,3999,4028,43,3708,3662,4043,4071,0,6,5,16,30,3935,3934,4001,4029,43,3709,3663,4044,4072,0,6,5,16,30,3850,3932,4003,4030,43,3710,3664,4045,4073,0,6,5,16,30,3929,3928,4005,4031,43,7090,7052,6618,6715,0,6,30,16,5,4032,4033,3957,3958,43,6618,3702,4065,7052,0,6,5,16,30,3957,3949,4022,4033,43,4066,3703,6618,7052,0,16,5,6,30,4024,3953,3957,4033,43,3604,3704,4067,4016,0,6,5,16,30,3839,3838,4025,4034,43,3605,3705,4068,4017,0,6,5,16,30,3843,3842,4026,4035,43,3606,3706,4069,4018,0,6,5,16,30,3847,3846,4027,4036,43,3609,3707,4070,4101,0,6,5,16,30,3854,3939,4028,4037,43,3610,3708,4071,4100,0,6,5,16,30,3858,3935,4029,4038,43,3607,3709,4072,4019,0,6,5,16,30,3851,3850,4030,4039,43,3611,3710,4073,4099,0,6,5,16,30,3862,3929,4031,4040,43,3673,4054,7100,6705,0,6,5,16,30,3975,4041,4042,3976,43,7100,4055,3674,6705,0,16,5,6,30,4042,4043,3978,3976,43,4074,4056,3675,3693,0,6,5,16,30,4044,4006,3981,3980,43,3676,4057,4075,3694,0,16,5,6,30,3985,4045,4046,3986,43,4076,4058,3677,3695,0,6,5,16,30,4047,4008,3972,3811,43,4077,4059,3678,3696,0,6,5,16,30,4048,4010,3970,3815,43,4078,4060,3679,3697,0,6,5,16,30,4049,4012,3968,3819,43,4079,4061,3680,3698,0,6,5,16,30,4050,4014,3966,3823,43,4080,4062,3681,3699,0,6,5,16,30,4051,4016,3964,3827,43,4081,4063,3682,3700,0,6,5,16,30,4052,4018,3962,3831,43,4082,4064,3683,3701,0,6,5,16,30,4053,4020,3960,3835,43,6705,6622,7053,7100,0,6,30,16,5,3976,3988,4054,4042,43,7053,4074,3693,6622,0,6,5,16,30,4054,4044,3980,3988,43,3694,4075,7053,6622,0,16,5,6,30,3986,4046,4054,3988,43,4021,4076,3695,3596,0,6,5,16,30,4055,4047,3811,3810,43,4022,4077,3696,3597,0,6,5,16,30,4056,4048,3815,3814,43,4023,4078,3697,3598,0,6,5,16,30,4057,4049,3819,3818,43,4024,4079,3698,3599,0,6,5,16,30,4058,4050,3823,3822,43,4025,4080,3699,3600,0,6,5,16,30,4059,4051,3827,3826,43,4026,4081,3700,3601,0,6,5,16,30,4060,4052,3831,3830,43,4027,4082,3701,3602,0,6,5,16,30,4061,4053,3835,3834,43,3736,3604,4016,4083,0,6,5,16,30,3922,3839,4034,4062,43,3737,3605,4017,4084,0,6,5,16,30,3918,3843,4035,4063,43,3738,3606,4018,4085,0,6,5,16,30,3914,3847,4036,4064,43,3739,3609,4101,4086,0,6,5,16,30,3855,3854,4037,4065,43,3740,3610,4100,4087,0,6,5,16,30,3859,3858,4038,4066,43,3741,3607,4019,4088,0,6,5,16,30,3906,3851,4039,4067,43,3742,3611,4099,4089,0,6,5,16,30,3863,3862,4040,4068,43,3743,3608,4020,4090,0,6,5,16,30,3900,3926,4069,4070,43,3648,3736,4083,4029,0,6,5,16,30,3923,3922,4062,3990,43,3649,3737,4084,4030,0,6,5,16,30,3919,3918,4063,3992,43,3650,3738,4085,4031,0,6,5,16,30,3915,3914,4064,3994,43,3651,3739,4086,4032,0,6,5,16,30,3912,3855,4065,3996,43,3652,3740,4087,4033,0,6,5,16,30,3910,3859,4066,3998,43,3653,3741,4088,4034,0,6,5,16,30,3907,3906,4067,4000,43,3654,3742,4089,4035,0,6,5,16,30,3904,3863,4068,4002,43,3655,3743,4090,4036,0,6,5,16,30,3901,3900,4070,4004,43,4091,4021,3596,3744,0,6,5,16,30,4071,4055,3810,3895,43,4092,4022,3597,3745,0,6,5,16,30,4072,4056,3814,3891,43,4093,4023,3598,3746,0,6,5,16,30,4073,4057,3818,3887,43,4094,4024,3599,3747,0,6,5,16,30,4074,4058,3822,3883,43,4095,4025,3600,3748,0,6,5,16,30,4075,4059,3826,3879,43,4096,4026,3601,3749,0,6,5,16,30,4076,4060,3830,3875,43,4097,4027,3602,3750,0,6,5,16,30,4077,4061,3834,3871,43,4098,4028,3603,3751,0,6,5,16,30,4078,4079,3898,3867,43,4046,4091,3744,3665,0,6,5,16,30,4007,4071,3895,3894,43,4047,4092,3745,3666,0,6,5,16,30,4009,4072,3891,3890,43,4048,4093,3746,3667,0,6,5,16,30,4011,4073,3887,3886,43,4049,4094,3747,3668,0,6,5,16,30,4013,4074,3883,3882,43,4050,4095,3748,3669,0,6,5,16,30,4015,4075,3879,3878,43,4051,4096,3749,3670,0,6,5,16,30,4017,4076,3875,3874,43,4052,4097,3750,3671,0,6,5,16,30,4019,4077,3871,3870,43,4053,4098,3751,3672,0,6,5,16,30,4021,4078,3867,3866,43,4028,4020,3608,3603,0,6,5,16,30,4079,4069,3926,3898,43,4037,4029,4115,4123,0,6,5,16,30,3991,3990,4080,4081,43,4123,4115,3612,3620,0,6,5,16,30,4081,4080,3542,3545,43,4039,4030,4116,4125,0,6,5,16,30,3993,3992,4082,4083,43,4125,4116,3613,3622,0,6,5,16,30,4083,4082,3546,3549,43,4040,4031,4117,4126,0,6,5,16,30,3995,3994,4084,4085,43,4126,4117,3614,3623,0,6,5,16,30,4085,4084,3550,3553,43,4041,4032,4118,4127,0,6,5,16,30,3997,3996,4086,4087,43,4127,4118,3615,3624,0,6,5,16,30,4087,4086,3554,3557,43,4042,4033,4119,4128,0,6,5,16,30,3999,3998,4088,4089,43,4128,4119,3616,3625,0,6,5,16,30,4089,4088,3558,3561,43,4043,4034,4120,4129,0,6,5,16,30,4001,4000,4090,4091,43,4129,4120,3617,3626,0,6,5,16,30,4091,4090,3562,3565,43,4044,4035,4121,4130,0,6,5,16,30,4003,4002,4092,4093,43,4130,4121,3618,3627,0,6,5,16,30,4093,4092,3566,3569,43,4045,4036,4122,4131,0,6,5,16,30,4005,4004,4094,4095,43,4131,4122,3619,3628,0,6,5,16,30,4095,4094,3570,3573,43,3639,3629,4132,4142,0,6,5,16,30,3544,3543,4096,4097,43,4142,4132,4046,4056,0,6,5,16,30,4097,4096,4007,4006,43,3641,3630,4133,4144,0,6,5,16,30,3548,3547,4098,4099,43,4144,4133,4047,4058,0,6,5,16,30,4099,4098,4009,4008,43,3642,3631,4134,4145,0,6,5,16,30,3552,3551,4100,4101,43,4145,4134,4048,4059,0,6,5,16,30,4101,4100,4011,4010,43,3643,3632,4135,4146,0,6,5,16,30,3556,3555,4102,4103,43,4146,4135,4049,4060,0,6,5,16,30,4103,4102,4013,4012,43,3644,3633,4136,4147,0,6,5,16,30,3560,3559,4104,4105,43,4147,4136,4050,4061,0,6,5,16,30,4105,4104,4015,4014,43,3645,3634,4137,4148,0,6,5,16,30,3564,3563,4106,4107,43,4148,4137,4051,4062,0,6,5,16,30,4107,4106,4017,4016,43,3646,3635,4138,4149,0,6,5,16,30,3568,3567,4108,4109,43,4149,4138,4052,4063,0,6,5,16,30,4109,4108,4019,4018,43,3647,3636,4139,4150,0,6,5,16,30,3572,3571,4110,4111,43,4150,4139,4053,4064,0,6,5,16,30,4111,4110,4021,4020,43,4065,4037,4123,4151,0,6,5,16,30,4022,3991,4081,4112,43,4124,4038,4066,4152,0,16,5,6,30,4113,4023,4024,4114,43,4151,4123,3620,3711,0,6,5,16,30,4112,4081,3545,3575,43,3621,4124,4152,3712,0,16,5,6,30,3578,4113,4114,3579,43,4067,4039,4125,4153,0,6,5,16,30,4025,3993,4083,4115,43,4153,4125,3622,3713,0,6,5,16,30,4115,4083,3549,3581,43,4068,4040,4126,4154,0,6,5,16,30,4026,3995,4085,4116,43,4154,4126,3623,3714,0,6,5,16,30,4116,4085,3553,3583,43,4069,4041,4127,4155,0,6,5,16,30,4027,3997,4087,4117,43,4155,4127,3624,3715,0,6,5,16,30,4117,4087,3557,3585,43,4070,4042,4128,4156,0,6,5,16,30,4028,3999,4089,4118,43,4156,4128,3625,3716,0,6,5,16,30,4118,4089,3561,3587,43,4071,4043,4129,4157,0,6,5,16,30,4029,4001,4091,4119,43,4157,4129,3626,3717,0,6,5,16,30,4119,4091,3565,3589,43,4072,4044,4130,4158,0,6,5,16,30,4030,4003,4093,4120,43,4158,4130,3627,3718,0,6,5,16,30,4120,4093,3569,3591,43,4073,4045,4131,4159,0,6,5,16,30,4031,4005,4095,4121,43,4159,4131,3628,3719,0,6,5,16,30,4121,4095,3573,3593,43,7180,7142,7052,7090,0,6,30,16,5,4122,4123,4033,4032,43,7052,4065,4151,7142,0,6,5,16,30,4033,4022,4112,4123,43,4152,4066,7052,7142,0,16,5,6,30,4114,4024,4033,4123,43,6725,6603,7142,7180,0,6,30,16,5,3596,3595,4123,4122,43,7142,4151,3711,6603,0,6,5,16,30,4123,4112,3575,3595,43,3712,4152,7142,6603,0,16,5,6,30,3579,4114,4123,3595,43,4016,4067,4153,4102,0,6,5,16,30,4034,4025,4115,4124,43,4102,4153,3713,3588,0,6,5,16,30,4124,4115,3581,3599,43,4017,4068,4154,4103,0,6,5,16,30,4035,4026,4116,4125,43,4103,4154,3714,3589,0,6,5,16,30,4125,4116,3583,3601,43,4018,4069,4155,4104,0,6,5,16,30,4036,4027,4117,4126,43,4104,4155,3715,3590,0,6,5,16,30,4126,4117,3585,3603,43,4101,4070,4156,4187,0,6,5,16,30,4037,4028,4118,4127,43,4187,4156,3716,3591,0,6,5,16,30,4127,4118,3587,3605,43,4100,4071,4157,4186,0,6,5,16,30,4038,4029,4119,4128,43,4186,4157,3717,3592,0,6,5,16,30,4128,4119,3589,3607,43,4019,4072,4158,4105,0,6,5,16,30,4039,4030,4120,4129,43,4105,4158,3718,3593,0,6,5,16,30,4129,4120,3591,3609,43,4099,4073,4159,4185,0,6,5,16,30,4040,4031,4121,4130,43,4185,4159,3719,3594,0,6,5,16,30,4130,4121,3593,3611,43,4140,3637,6695,7190,0,6,5,16,30,4131,4132,3597,4133,43,6695,3638,4141,7190,0,16,5,6,30,3597,4134,4135,4133,43,3684,3639,4142,4160,0,6,5,16,30,3574,3544,4097,4136,43,4143,3640,3685,4161,0,16,5,6,30,4137,3577,3576,4138,43,4054,4140,7190,7100,0,6,5,16,30,4041,4131,4133,4042,43,7190,4141,4055,7100,0,16,5,6,30,4133,4135,4043,4042,43,4160,4142,4056,4074,0,6,5,16,30,4136,4097,4006,4044,43,4057,4143,4161,4075,0,16,5,6,30,4045,4137,4138,4046,43,3686,3641,4144,4162,0,6,5,16,30,3580,3548,4099,4139,43,4162,4144,4058,4076,0,6,5,16,30,4139,4099,4008,4047,43,3687,3642,4145,4163,0,6,5,16,30,3582,3552,4101,4140,43,4163,4145,4059,4077,0,6,5,16,30,4140,4101,4010,4048,43,3688,3643,4146,4164,0,6,5,16,30,3584,3556,4103,4141,43,4164,4146,4060,4078,0,6,5,16,30,4141,4103,4012,4049,43,3689,3644,4147,4165,0,6,5,16,30,3586,3560,4105,4142,43,4165,4147,4061,4079,0,6,5,16,30,4142,4105,4014,4050,43,3690,3645,4148,4166,0,6,5,16,30,3588,3564,4107,4143,43,4166,4148,4062,4080,0,6,5,16,30,4143,4107,4016,4051,43,3691,3646,4149,4167,0,6,5,16,30,3590,3568,4109,4144,43,4167,4149,4063,4081,0,6,5,16,30,4144,4109,4018,4052,43,3692,3647,4150,4168,0,6,5,16,30,3592,3572,4111,4145,43,4168,4150,4064,4082,0,6,5,16,30,4145,4111,4020,4053,43,7190,7143,6604,6695,0,6,30,16,5,4133,4054,3594,3597,43,6604,3684,4160,7143,0,6,5,16,30,3594,3574,4136,4054,43,4161,3685,6604,7143,0,16,5,6,30,4138,3576,3594,4054,43,7100,7053,7143,7190,0,6,30,16,5,4042,4054,4054,4133,43,7143,4160,4074,7053,0,6,5,16,30,4054,4136,4044,4054,43,4075,4161,7143,7053,0,16,5,6,30,4046,4138,4054,4054,43,4162,4107,3580,3686,0,6,5,16,30,4139,4055,3598,3580,43,4107,4162,4076,4021,0,6,5,16,30,4055,4139,4047,4055,43,3581,3687,4163,4108,0,6,5,16,30,3600,3582,4140,4056,43,4108,4163,4077,4022,0,6,5,16,30,4056,4140,4048,4056,43,3582,3688,4164,4109,0,6,5,16,30,3602,3584,4141,4146,43,4109,4164,4078,4023,0,6,5,16,30,4146,4141,4049,4057,43,3583,3689,4165,4110,0,6,5,16,30,3604,3586,4142,4147,43,4110,4165,4079,4024,0,6,5,16,30,4147,4142,4050,4058,43,3584,3690,4166,4111,0,6,5,16,30,3606,3588,4143,4148,43,4111,4166,4080,4025,0,6,5,16,30,4148,4143,4051,4059,43,3585,3691,4167,4112,0,6,5,16,30,3608,3590,4144,4149,43,4112,4167,4081,4026,0,6,5,16,30,4149,4144,4052,4060,43,3586,3692,4168,4113,0,6,5,16,30,3610,3592,4145,4150,43,4113,4168,4082,4027,0,6,5,16,30,4150,4145,4053,4061,43,4083,4016,4102,4169,0,6,5,16,30,4062,4034,4124,4151,43,4169,4102,3588,3720,0,6,5,16,30,4151,4124,3599,3612,43,4084,4017,4103,4170,0,6,5,16,30,4063,4035,4125,4152,43,4170,4103,3589,3721,0,6,5,16,30,4152,4125,3601,3614,43,4085,4018,4104,4171,0,6,5,16,30,4064,4036,4126,4153,43,4171,4104,3590,3722,0,6,5,16,30,4153,4126,3603,3616,43,4086,4101,4187,4172,0,6,5,16,30,4065,4037,4127,4154,43,4172,4187,3591,3723,0,6,5,16,30,4154,4127,3605,3618,43,4087,4100,4186,4173,0,6,5,16,30,4066,4038,4128,4155,43,4173,4186,3592,3724,0,6,5,16,30,4155,4128,3607,3620,43,4088,4019,4105,4174,0,6,5,16,30,4067,4039,4129,4156,43,4174,4105,3593,3725,0,6,5,16,30,4156,4129,3609,3622,43,4089,4099,4185,4175,0,6,5,16,30,4068,4040,4130,4157,43,4175,4185,3594,3726,0,6,5,16,30,4157,4130,3611,3624,43,4090,4020,4106,4176,0,6,5,16,30,4070,4069,4158,4159,43,4176,4106,3595,3727,0,6,5,16,30,4159,4158,3628,3626,43,4029,4083,4169,4115,0,6,5,16,30,3990,4062,4151,4080,43,4115,4169,3720,3612,0,6,5,16,30,4080,4151,3612,3542,43,4030,4084,4170,4116,0,6,5,16,30,3992,4063,4152,4082,43,4116,4170,3721,3613,0,6,5,16,30,4082,4152,3614,3546,43,4031,4085,4171,4117,0,6,5,16,30,3994,4064,4153,4084,43,4117,4171,3722,3614,0,6,5,16,30,4084,4153,3616,3550,43,4032,4086,4172,4118,0,6,5,16,30,3996,4065,4154,4086,43,4118,4172,3723,3615,0,6,5,16,30,4086,4154,3618,3554,43,4033,4087,4173,4119,0,6,5,16,30,3998,4066,4155,4088,43,4119,4173,3724,3616,0,6,5,16,30,4088,4155,3620,3558,43,4034,4088,4174,4120,0,6,5,16,30,4000,4067,4156,4090,43,4120,4174,3725,3617,0,6,5,16,30,4090,4156,3622,3562,43,4035,4089,4175,4121,0,6,5,16,30,4002,4068,4157,4092,43,4121,4175,3726,3618,0,6,5,16,30,4092,4157,3624,3566,43,4036,4090,4176,4122,0,6,5,16,30,4004,4070,4159,4094,43,4122,4176,3727,3619,0,6,5,16,30,4094,4159,3626,3570,43,4021,4091,4177,4107,0,6,5,16,30,4055,4071,4160,4055,43,4107,4177,3728,3580,0,6,5,16,30,4055,4160,3613,3598,43,3729,3581,4108,4178,0,6,5,16,30,3615,3600,4056,4161,43,4178,4108,4022,4092,0,6,5,16,30,4161,4056,4056,4072,43,3730,3582,4109,4179,0,6,5,16,30,3617,3602,4146,4162,43,4179,4109,4023,4093,0,6,5,16,30,4162,4146,4057,4073,43,3731,3583,4110,4180,0,6,5,16,30,3619,3604,4147,4163,43,4180,4110,4024,4094,0,6,5,16,30,4163,4147,4058,4074,43,3732,3584,4111,4181,0,6,5,16,30,3621,3606,4148,4164,43,4181,4111,4025,4095,0,6,5,16,30,4164,4148,4059,4075,43,3733,3585,4112,4182,0,6,5,16,30,3623,3608,4149,4165,43,4182,4112,4026,4096,0,6,5,16,30,4165,4149,4060,4076,43,3734,3586,4113,4183,0,6,5,16,30,3625,3610,4150,4166,43,4183,4113,4027,4097,0,6,5,16,30,4166,4150,4061,4077,43,3735,3587,4114,4184,0,6,5,16,30,3627,3629,4167,4168,43,4184,4114,4028,4098,0,6,5,16,30,4168,4167,4079,4078,43,3629,3728,4177,4132,0,6,5,16,30,3543,3613,4160,4096,43,4132,4177,4091,4046,0,6,5,16,30,4096,4160,4071,4007,43,3630,3729,4178,4133,0,6,5,16,30,3547,3615,4161,4098,43,4133,4178,4092,4047,0,6,5,16,30,4098,4161,4072,4009,43,3631,3730,4179,4134,0,6,5,16,30,3551,3617,4162,4100,43,4134,4179,4093,4048,0,6,5,16,30,4100,4162,4073,4011,43,3632,3731,4180,4135,0,6,5,16,30,3555,3619,4163,4102,43,4135,4180,4094,4049,0,6,5,16,30,4102,4163,4074,4013,43,3633,3732,4181,4136,0,6,5,16,30,3559,3621,4164,4104,43,4136,4181,4095,4050,0,6,5,16,30,4104,4164,4075,4015,43,3634,3733,4182,4137,0,6,5,16,30,3563,3623,4165,4106,43,4137,4182,4096,4051,0,6,5,16,30,4106,4165,4076,4017,43,3635,3734,4183,4138,0,6,5,16,30,3567,3625,4166,4108,43,4138,4183,4097,4052,0,6,5,16,30,4108,4166,4077,4019,43,3636,3735,4184,4139,0,6,5,16,30,3571,3627,4168,4110,43,4139,4184,4098,4053,0,6,5,16,30,4110,4168,4078,4021,43,3587,3595,4106,4114,0,6,5,16,30,3629,3628,4158,4167,43,4114,4106,4020,4028,0,6,5,16,30,4167,4158,4069,4079,43,4220,4228,4247,4237,0,6,5,16,30,4169,4170,4171,4172,43,4221,4230,4249,4238,0,6,5,16,30,4173,4174,4175,4176,43,4222,4231,4250,4239,0,6,5,16,30,4177,4178,4179,4180,43,4223,4232,4251,4240,0,6,5,16,30,4181,4182,4183,4184,43,4224,4233,4252,4241,0,6,5,16,30,4185,4186,4187,4188,43,4225,4234,4253,4242,0,6,5,16,30,4189,4190,4191,4192,43,4226,4235,4254,4243,0,6,5,16,30,4193,4194,4195,4196,43,4227,4236,4255,4244,0,6,5,16,30,4197,4198,4199,4200,43,4228,4319,4292,4247,0,6,5,16,30,4170,4201,4202,4171,43,4293,4320,4229,4248,0,16,5,6,30,4203,4204,4205,4206,43,4230,4321,4294,4249,0,6,5,16,30,4174,4207,4208,4175,43,4231,4322,4295,4250,0,6,5,16,30,4178,4209,4210,4179,43,4232,4323,4296,4251,0,6,5,16,30,4182,4211,4212,4183,43,4233,4324,4297,4252,0,6,5,16,30,4186,4213,4214,4187,43,4234,4325,4298,4253,0,6,5,16,30,4190,4215,4216,4191,43,4235,4326,4299,4254,0,6,5,16,30,4194,4217,4218,4195,43,4236,4327,4300,4255,0,6,5,16,30,4198,4219,4220,4199,43,7236,7235,7357,7327,0,6,5,16,30,4221,4222,4223,4224,43,4319,7235,7236,4292,0,6,5,16,30,4201,4222,4221,4202,43,7236,7235,4320,4293,0,16,5,6,30,4221,4222,4204,4203,43,4188,4294,4321,4196,0,6,5,16,30,4225,4208,4207,4226,43,4322,4197,4189,4295,0,6,5,16,30,4209,4227,4228,4210,43,4323,4198,4190,4296,0,6,5,16,30,4211,4229,4230,4212,43,4324,4199,4191,4297,0,6,5,16,30,4213,4231,4232,4214,43,4325,4200,4192,4298,0,6,5,16,30,4215,4233,4234,4216,43,4326,4201,4193,4299,0,6,5,16,30,4217,4235,4236,4218,43,4327,4202,4194,4300,0,6,5,16,30,4219,4237,4238,4220,43,4237,4336,4328,4220,0,6,5,16,30,4172,4239,4240,4169,43,4238,4337,4329,4221,0,6,5,16,30,4176,4241,4242,4173,43,4239,4338,4330,4222,0,6,5,16,30,4180,4243,4244,4177,43,4240,4339,4331,4223,0,6,5,16,30,4184,4245,4246,4181,43,4241,4340,4332,4224,0,6,5,16,30,4188,4247,4248,4185,43,4242,4341,4333,4225,0,6,5,16,30,4192,4249,4250,4189,43,4243,4342,4334,4226,0,6,5,16,30,4196,4251,4252,4193,43,4244,4343,4335,4227,0,6,5,16,30,4200,4253,4254,4197,43,4336,4188,4196,4328,0,6,5,16,30,4239,4225,4226,4240,43,4337,4189,4197,4329,0,6,5,16,30,4241,4228,4227,4242,43,4338,4190,4198,4330,0,6,5,16,30,4243,4230,4229,4244,43,4339,4191,4199,4331,0,6,5,16,30,4245,4232,4231,4246,43,4340,4192,4200,4332,0,6,5,16,30,4247,4234,4233,4248,43,4341,4193,4201,4333,0,6,5,16,30,4249,4236,4235,4250,43,4342,4194,4202,4334,0,6,5,16,30,4251,4238,4237,4252,43,4343,4195,4203,4335,0,6,5,16,30,4253,4255,4256,4254,43,4389,4388,4405,4406,0,6,5,16,30,4257,4258,4259,4260,43,4391,4390,4407,4387,0,6,5,16,30,4261,4262,4263,4264,43,4393,4392,4408,4409,0,6,5,16,30,4265,4266,4267,4268,43,4395,4394,4410,4385,0,6,5,16,30,4269,4270,4271,4272,43,4397,4396,4411,4383,0,6,5,16,30,4273,4274,4275,4276,43,4399,4398,4412,4413,0,6,5,16,30,4277,4278,4279,4280,43,4401,4400,4414,4415,0,6,5,16,30,4281,4282,4283,4284,43,4403,4402,4416,4417,0,6,5,16,30,4285,4286,4287,4288,43,4404,4389,4406,4418,0,6,5,16,30,4289,4257,4260,4290,43,4372,4391,4387,4386,0,6,5,16,30,4291,4261,4264,4292,43,4370,4393,4409,4380,0,6,5,16,30,4293,4265,4268,4294,43,4368,4395,4385,4384,0,6,5,16,30,4295,4269,4272,4296,43,4366,4397,4383,4382,0,6,5,16,30,4297,4273,4276,4298,43,4364,4399,4413,4378,0,6,5,16,30,4299,4277,4280,4300,43,4362,4401,4415,4376,0,6,5,16,30,4301,4281,4284,4302,43,4360,4403,4417,4374,0,6,5,16,30,4303,4285,4288,4304,43,4373,4372,4386,4420,0,6,5,16,30,4305,4291,4292,4306,43,4371,4370,4380,4381,0,6,5,16,30,4307,4293,4294,4308,43,4369,4368,4384,4423,0,6,5,16,30,4309,4295,4296,4310,43,4367,4366,4382,4425,0,6,5,16,30,4311,4297,4298,4312,43,4365,4364,4378,4379,0,6,5,16,30,4313,4299,4300,4314,43,4363,4362,4376,4377,0,6,5,16,30,4315,4301,4302,4316,43,4361,4360,4374,4375,0,6,5,16,30,4317,4303,4304,4318,43,7474,7490,4446,4431,0,6,5,16,30,4319,4320,4321,4322,43,4447,7490,7474,4432,0,16,5,6,30,4323,4320,4319,4324,43,4448,7490,7474,4433,0,6,5,16,30,4325,4320,4319,4326,43,7474,7490,4449,4434,0,16,5,6,30,4319,4320,4327,4328,43,4435,4373,4420,4419,0,6,5,16,30,4329,4305,4306,4330,43,4436,4371,4381,4421,0,6,5,16,30,4331,4307,4308,4332,43,4437,4369,4423,4422,0,6,5,16,30,4333,4309,4310,4334,43,4438,4367,4425,4424,0,6,5,16,30,4335,4311,4312,4336,43,4439,4365,4379,4426,0,6,5,16,30,4337,4313,4314,4338,43,4440,4363,4377,4427,0,6,5,16,30,4339,4315,4316,4340,43,4441,4361,4375,4428,0,6,5,16,30,4341,4317,4318,4342,43,4444,4448,4433,4429,0,6,5,16,30,4343,4325,4326,4344,43,4434,4449,4445,4430,0,16,5,6,30,4328,4327,4345,4346,43,4388,4435,4419,4405,0,6,5,16,30,4258,4329,4330,4259,43,4390,4436,4421,4407,0,6,5,16,30,4262,4331,4332,4263,43,4392,4437,4422,4408,0,6,5,16,30,4266,4333,4334,4267,43,4394,4438,4424,4410,0,6,5,16,30,4270,4335,4336,4271,43,4396,4439,4426,4411,0,6,5,16,30,4274,4337,4338,4275,43,4398,4440,4427,4412,0,6,5,16,30,4278,4339,4340,4279,43,4400,4441,4428,4414,0,6,5,16,30,4282,4341,4342,4283,43,4402,4444,4429,4416,0,6,5,16,30,4286,4343,4344,4287,43,4450,4360,4361,4451,0,6,5,16,30,4347,4303,4317,4348,43,4452,4362,4363,4453,0,6,5,16,30,4349,4301,4315,4350,43,4454,4364,4365,4455,0,6,5,16,30,4351,4299,4313,4352,43,4456,4366,4367,4457,0,6,5,16,30,4353,4297,4311,4354,43,4458,4368,4369,4459,0,6,5,16,30,4355,4295,4309,4356,43,4460,4370,4371,4461,0,6,5,16,30,4357,4293,4307,4358,43,4462,4372,4373,4463,0,6,5,16,30,4359,4291,4305,4360,43,4464,4375,4374,4465,0,6,5,16,30,4361,4318,4304,4362,43,4466,4377,4376,4467,0,6,5,16,30,4363,4316,4302,4364,43,4468,4379,4378,4469,0,6,5,16,30,4365,4314,4300,4366,43,4470,4381,4380,4471,0,6,5,16,30,4367,4308,4294,4368,43,4472,4382,4383,4473,0,6,5,16,30,4369,4298,4276,4370,43,4474,4384,4385,4475,0,6,5,16,30,4371,4296,4272,4372,43,4476,4386,4387,4477,0,6,5,16,30,4373,4292,4264,4374,43,4478,4388,4389,4479,0,6,5,16,30,4375,4258,4257,4376,43,4480,4390,4391,4481,0,6,5,16,30,4377,4262,4261,4378,43,4482,4392,4393,4483,0,6,5,16,30,4379,4266,4265,4380,43,4484,4394,4395,4485,0,6,5,16,30,4381,4270,4269,4382,43,4486,4396,4397,4487,0,6,5,16,30,4383,4274,4273,4384,43,4488,4398,4399,4489,0,6,5,16,30,4385,4278,4277,4386,43,4490,4400,4401,4491,0,6,5,16,30,4387,4282,4281,4388,43,4492,4402,4403,4493,0,6,5,16,30,4389,4286,4285,4390,43,4479,4389,4404,4494,0,6,5,16,30,4376,4257,4289,4391,43,4481,4391,4372,4462,0,6,5,16,30,4378,4261,4291,4359,43,4483,4393,4370,4460,0,6,5,16,30,4380,4265,4293,4357,43,4485,4395,4368,4458,0,6,5,16,30,4382,4269,4295,4355,43,4487,4397,4366,4456,0,6,5,16,30,4384,4273,4297,4353,43,4489,4399,4364,4454,0,6,5,16,30,4386,4277,4299,4351,43,4491,4401,4362,4452,0,6,5,16,30,4388,4281,4301,4349,43,4493,4403,4360,4450,0,6,5,16,30,4390,4285,4303,4347,43,4495,4406,4405,4496,0,6,5,16,30,4392,4260,4259,4393,43,4477,4387,4407,4497,0,6,5,16,30,4374,4264,4263,4394,43,4498,4409,4408,4499,0,6,5,16,30,4395,4268,4267,4396,43,4475,4385,4410,4500,0,6,5,16,30,4372,4272,4271,4397,43,4473,4383,4411,4501,0,6,5,16,30,4370,4276,4275,4398,43,4502,4413,4412,4503,0,6,5,16,30,4399,4280,4279,4400,43,4504,4415,4414,4505,0,6,5,16,30,4401,4284,4283,4402,43,4506,4417,4416,4507,0,6,5,16,30,4403,4288,4287,4404,43,4508,4418,4406,4495,0,6,5,16,30,4405,4290,4260,4392,43,4471,4380,4409,4498,0,6,5,16,30,4368,4294,4268,4395,43,4469,4378,4413,4502,0,6,5,16,30,4366,4300,4280,4399,43,4467,4376,4415,4504,0,6,5,16,30,4364,4302,4284,4401,43,4465,4374,4417,4506,0,6,5,16,30,4362,4304,4288,4403,43,4509,4419,4420,4510,0,6,5,16,30,4406,4330,4306,4407,43,4511,4421,4381,4470,0,6,5,16,30,4408,4332,4308,4367,43,4512,4422,4423,4513,0,6,5,16,30,4409,4334,4310,4410,43,4514,4424,4425,4515,0,6,5,16,30,4411,4336,4312,4412,43,4516,4426,4379,4468,0,6,5,16,30,4413,4338,4314,4365,43,4517,4427,4377,4466,0,6,5,16,30,4414,4340,4316,4363,43,4518,4428,4375,4464,0,6,5,16,30,4415,4342,4318,4361,43,4519,4429,4433,4523,0,6,5,16,30,4416,4344,4326,4417,43,4434,4430,4520,4524,0,16,5,6,30,4328,4346,4418,4419,43,4510,4420,4386,4476,0,6,5,16,30,4407,4306,4292,4373,43,4513,4423,4384,4474,0,6,5,16,30,4410,4310,4296,4371,43,4515,4425,4382,4472,0,6,5,16,30,4412,4312,4298,4369,43,7474,4431,4521,7566,0,6,5,16,30,4319,4322,4420,4421,43,4522,4432,7474,7566,0,16,5,6,30,4422,4324,4319,4421,43,4523,4433,7474,7566,0,6,5,16,30,4417,4326,4319,4421,43,7474,4434,4524,7566,0,16,5,6,30,4319,4328,4419,4421,43,4463,4373,4435,4525,0,6,5,16,30,4360,4305,4329,4423,43,4461,4371,4436,4526,0,6,5,16,30,4358,4307,4331,4424,43,4459,4369,4437,4527,0,6,5,16,30,4356,4309,4333,4425,43,4457,4367,4438,4528,0,6,5,16,30,4354,4311,4335,4426,43,4455,4365,4439,4529,0,6,5,16,30,4352,4313,4337,4427,43,4453,4363,4440,4530,0,6,5,16,30,4350,4315,4339,4428,43,4451,4361,4441,4531,0,6,5,16,30,4348,4317,4341,4429,43,4534,4448,4444,4536,0,6,5,16,30,4430,4325,4343,4431,43,4445,4449,4535,4537,0,16,5,6,30,4345,4327,4432,4433,43,4446,7490,7580,4532,0,6,5,16,30,4321,4320,4434,4435,43,7580,7490,4447,4533,0,16,5,6,30,4434,4320,4323,4436,43,7580,7490,4448,4534,0,6,5,16,30,4434,4320,4325,4430,43,4449,7490,7580,4535,0,16,5,6,30,4327,4320,4434,4432,43,4525,4435,4388,4478,0,6,5,16,30,4423,4329,4258,4375,43,4526,4436,4390,4480,0,6,5,16,30,4424,4331,4262,4377,43,4527,4437,4392,4482,0,6,5,16,30,4425,4333,4266,4379,43,4528,4438,4394,4484,0,6,5,16,30,4426,4335,4270,4381,43,4529,4439,4396,4486,0,6,5,16,30,4427,4337,4274,4383,43,4530,4440,4398,4488,0,6,5,16,30,4428,4339,4278,4385,43,4531,4441,4400,4490,0,6,5,16,30,4429,4341,4282,4387,43,4536,4444,4402,4492,0,6,5,16,30,4431,4343,4286,4389,43,4496,4405,4419,4509,0,6,5,16,30,4393,4259,4330,4406,43,4497,4407,4421,4511,0,6,5,16,30,4394,4263,4332,4408,43,4499,4408,4422,4512,0,6,5,16,30,4396,4267,4334,4409,43,4500,4410,4424,4514,0,6,5,16,30,4397,4271,4336,4411,43,4501,4411,4426,4516,0,6,5,16,30,4398,4275,4338,4413,43,4503,4412,4427,4517,0,6,5,16,30,4400,4279,4340,4414,43,4505,4414,4428,4518,0,6,5,16,30,4402,4283,4342,4415,43,4507,4416,4429,4519,0,6,5,16,30,4404,4287,4344,4416,43,4494,4404,4418,4508,0,6,5,16,30,4391,4289,4290,4405,43,4204,4538,4539,4303,0,6,5,16,30,4437,4438,4439,4440,43,4538,4450,4451,4539,0,6,5,16,30,4438,4347,4348,4439,43,4205,4540,4541,4304,0,6,5,16,30,4441,4442,4443,4444,43,4540,4452,4453,4541,0,6,5,16,30,4442,4349,4350,4443,43,4206,4542,4543,4305,0,6,5,16,30,4445,4446,4447,4448,43,4542,4454,4455,4543,0,6,5,16,30,4446,4351,4352,4447,43,4207,4544,4545,4306,0,6,5,16,30,4449,4450,4451,4452,43,4544,4456,4457,4545,0,6,5,16,30,4450,4353,4354,4451,43,4208,4546,4547,4307,0,6,5,16,30,4453,4454,4455,4456,43,4546,4458,4459,4547,0,6,5,16,30,4454,4355,4356,4455,43,4209,4548,4549,4308,0,6,5,16,30,4457,4458,4459,4460,43,4548,4460,4461,4549,0,6,5,16,30,4458,4357,4358,4459,43,4210,4550,4551,4309,0,6,5,16,30,4461,4462,4463,4464,43,4550,4462,4463,4551,0,6,5,16,30,4462,4359,4360,4463,43,4312,4552,4553,4212,0,6,5,16,30,4465,4466,4467,4468,43,4552,4464,4465,4553,0,6,5,16,30,4466,4361,4362,4467,43,4313,4554,4555,4213,0,6,5,16,30,4469,4470,4471,4472,43,4554,4466,4467,4555,0,6,5,16,30,4470,4363,4364,4471,43,4314,4556,4557,4214,0,6,5,16,30,4473,4474,4475,4476,43,4556,4468,4469,4557,0,6,5,16,30,4474,4365,4366,4475,43,4317,4558,4559,4215,0,6,5,16,30,4477,4478,4479,4480,43,4558,4470,4471,4559,0,6,5,16,30,4478,4367,4368,4479,43,4217,4560,4561,4347,0,6,5,16,30,4481,4482,4483,4484,43,4560,4472,4473,4561,0,6,5,16,30,4482,4369,4370,4483,43,4218,4562,4563,4348,0,6,5,16,30,4485,4486,4487,4488,43,4562,4474,4475,4563,0,6,5,16,30,4486,4371,4372,4487,43,4219,4564,4565,4350,0,6,5,16,30,4489,4490,4491,4492,43,4564,4476,4477,4565,0,6,5,16,30,4490,4373,4374,4491,43,4280,4566,4567,4359,0,6,5,16,30,4493,4494,4495,4496,43,4566,4478,4479,4567,0,6,5,16,30,4494,4375,4376,4495,43,4279,4568,4569,4358,0,6,5,16,30,4497,4498,4499,4500,43,4568,4480,4481,4569,0,6,5,16,30,4498,4377,4378,4499,43,4278,4570,4571,4357,0,6,5,16,30,4501,4502,4503,4504,43,4570,4482,4483,4571,0,6,5,16,30,4502,4379,4380,4503,43,4277,4572,4573,4356,0,6,5,16,30,4505,4506,4507,4508,43,4572,4484,4485,4573,0,6,5,16,30,4506,4381,4382,4507,43,4276,4574,4575,4355,0,6,5,16,30,4509,4510,4511,4512,43,4574,4486,4487,4575,0,6,5,16,30,4510,4383,4384,4511,43,4275,4576,4577,4354,0,6,5,16,30,4513,4514,4515,4516,43,4576,4488,4489,4577,0,6,5,16,30,4514,4385,4386,4515,43,4274,4578,4579,4353,0,6,5,16,30,4517,4518,4519,4520,43,4578,4490,4491,4579,0,6,5,16,30,4518,4387,4388,4519,43,4273,4580,4581,4352,0,6,5,16,30,4521,4522,4523,4524,43,4580,4492,4493,4581,0,6,5,16,30,4522,4389,4390,4523,43,4359,4567,4582,4211,0,6,5,16,30,4496,4495,4525,4526,43,4567,4479,4494,4582,0,6,5,16,30,4495,4376,4391,4525,43,4358,4569,4550,4210,0,6,5,16,30,4500,4499,4462,4461,43,4569,4481,4462,4550,0,6,5,16,30,4499,4378,4359,4462,43,4357,4571,4548,4209,0,6,5,16,30,4504,4503,4458,4457,43,4571,4483,4460,4548,0,6,5,16,30,4503,4380,4357,4458,43,4356,4573,4546,4208,0,6,5,16,30,4508,4507,4454,4453,43,4573,4485,4458,4546,0,6,5,16,30,4507,4382,4355,4454,43,4355,4575,4544,4207,0,6,5,16,30,4512,4511,4450,4449,43,4575,4487,4456,4544,0,6,5,16,30,4511,4384,4353,4450,43,4354,4577,4542,4206,0,6,5,16,30,4516,4515,4446,4445,43,4577,4489,4454,4542,0,6,5,16,30,4515,4386,4351,4446,43,4353,4579,4540,4205,0,6,5,16,30,4520,4519,4442,4441,43,4579,4491,4452,4540,0,6,5,16,30,4519,4388,4349,4442,43,4352,4581,4538,4204,0,6,5,16,30,4524,4523,4438,4437,43,4581,4493,4450,4538,0,6,5,16,30,4523,4390,4347,4438,43,4351,4583,4584,4263,0,6,5,16,30,4527,4528,4529,4530,43,4583,4495,4496,4584,0,6,5,16,30,4528,4392,4393,4529,43,4350,4565,4585,4262,0,6,5,16,30,4492,4491,4531,4532,43,4565,4477,4497,4585,0,6,5,16,30,4491,4374,4394,4531,43,4349,4586,4587,4261,0,6,5,16,30,4533,4534,4535,4536,43,4586,4498,4499,4587,0,6,5,16,30,4534,4395,4396,4535,43,4348,4563,4588,4260,0,6,5,16,30,4488,4487,4537,4538,43,4563,4475,4500,4588,0,6,5,16,30,4487,4372,4397,4537,43,4347,4561,4589,4259,0,6,5,16,30,4484,4483,4539,4540,43,4561,4473,4501,4589,0,6,5,16,30,4483,4370,4398,4539,43,4346,4590,4591,4258,0,6,5,16,30,4541,4542,4543,4544,43,4590,4502,4503,4591,0,6,5,16,30,4542,4399,4400,4543,43,4345,4592,4593,4257,0,6,5,16,30,4545,4546,4547,4548,43,4592,4504,4505,4593,0,6,5,16,30,4546,4401,4402,4547,43,4344,4594,4595,4256,0,6,5,16,30,4549,4550,4551,4552,43,4594,4506,4507,4595,0,6,5,16,30,4550,4403,4404,4551,43,4216,4596,4583,4351,0,6,5,16,30,4553,4554,4528,4527,43,4596,4508,4495,4583,0,6,5,16,30,4554,4405,4392,4528,43,4215,4559,4586,4349,0,6,5,16,30,4480,4479,4534,4533,43,4559,4471,4498,4586,0,6,5,16,30,4479,4368,4395,4534,43,4214,4557,4590,4346,0,6,5,16,30,4476,4475,4542,4541,43,4557,4469,4502,4590,0,6,5,16,30,4475,4366,4399,4542,43,4213,4555,4592,4345,0,6,5,16,30,4472,4471,4546,4545,43,4555,4467,4504,4592,0,6,5,16,30,4471,4364,4401,4546,43,4212,4553,4594,4344,0,6,5,16,30,4468,4467,4550,4549,43,4553,4465,4506,4594,0,6,5,16,30,4467,4362,4403,4550,43,4272,4597,4598,4318,0,6,5,16,30,4555,4556,4557,4558,43,4597,4509,4510,4598,0,6,5,16,30,4556,4406,4407,4557,43,4271,4599,4558,4317,0,6,5,16,30,4559,4560,4478,4477,43,4599,4511,4470,4558,0,6,5,16,30,4560,4408,4367,4478,43,4270,4600,4601,4316,0,6,5,16,30,4561,4562,4563,4564,43,4600,4512,4513,4601,0,6,5,16,30,4562,4409,4410,4563,43,4269,4602,4603,4315,0,6,5,16,30,4565,4566,4567,4568,43,4602,4514,4515,4603,0,6,5,16,30,4566,4411,4412,4567,43,4268,4604,4556,4314,0,6,5,16,30,4569,4570,4474,4473,43,4604,4516,4468,4556,0,6,5,16,30,4570,4413,4365,4474,43,4267,4605,4554,4313,0,6,5,16,30,4571,4572,4470,4469,43,4605,4517,4466,4554,0,6,5,16,30,4572,4414,4363,4470,43,4266,4606,4552,4312,0,6,5,16,30,4573,4574,4466,4465,43,4606,4518,4464,4552,0,6,5,16,30,4574,4415,4361,4466,43,4264,4607,4609,4310,0,6,5,16,30,4575,4576,4577,4578,43,4610,4608,4265,4311,0,16,5,6,30,4579,4580,4581,4582,43,4607,4519,4523,4609,0,6,5,16,30,4576,4416,4417,4577,43,4524,4520,4608,4610,0,16,5,6,30,4419,4418,4580,4579,43,4318,4598,4564,4219,0,6,5,16,30,4558,4557,4490,4489,43,4598,4510,4476,4564,0,6,5,16,30,4557,4407,4373,4490,43,4316,4601,4562,4218,0,6,5,16,30,4564,4563,4486,4485,43,4601,4513,4474,4562,0,6,5,16,30,4563,4410,4371,4486,43,4315,4603,4560,4217,0,6,5,16,30,4568,4567,4482,4481,43,4603,4515,4472,4560,0,6,5,16,30,4567,4412,4369,4482,43,7655,7652,7347,7250,0,6,5,16,30,4583,4584,4585,4586,43,4310,4609,7655,7250,0,6,5,16,30,4578,4577,4583,4586,43,7655,4610,4311,7250,0,16,5,6,30,4583,4579,4582,4586,43,7566,4521,7652,7655,0,6,5,16,30,4421,4420,4584,4583,43,7652,4522,7566,7655,0,16,5,6,30,4584,4422,4421,4583,43,4609,4523,7566,7655,0,6,5,16,30,4577,4417,4421,4583,43,7566,4524,4610,7655,0,16,5,6,30,4421,4419,4579,4583,43,4309,4551,4611,4291,0,6,5,16,30,4464,4463,4587,4588,43,4551,4463,4525,4611,0,6,5,16,30,4463,4360,4423,4587,43,4308,4549,4612,4290,0,6,5,16,30,4460,4459,4589,4590,43,4549,4461,4526,4612,0,6,5,16,30,4459,4358,4424,4589,43,4307,4547,4613,4289,0,6,5,16,30,4456,4455,4591,4592,43,4547,4459,4527,4613,0,6,5,16,30,4455,4356,4425,4591,43,4306,4545,4614,4288,0,6,5,16,30,4452,4451,4593,4594,43,4545,4457,4528,4614,0,6,5,16,30,4451,4354,4426,4593,43,4305,4543,4615,4287,0,6,5,16,30,4448,4447,4595,4596,43,4543,4455,4529,4615,0,6,5,16,30,4447,4352,4427,4595,43,4304,4541,4616,4286,0,6,5,16,30,4444,4443,4597,4598,43,4541,4453,4530,4616,0,6,5,16,30,4443,4350,4428,4597,43,4303,4539,4617,4285,0,6,5,16,30,4440,4439,4599,4600,43,4539,4451,4531,4617,0,6,5,16,30,4439,4348,4429,4599,43,4620,4281,7337,7663,0,6,30,16,5,4601,4602,4603,4604,43,7337,4282,4621,7663,0,16,30,6,5,4603,4605,4606,4604,43,4301,4618,4622,4283,0,6,5,16,30,4607,4608,4609,4610,43,4623,4619,4302,4284,0,16,5,6,30,4611,4612,4613,4614,43,4618,4534,4536,4622,0,6,5,16,30,4608,4430,4431,4609,43,4537,4535,4619,4623,0,16,5,6,30,4433,4432,4612,4611,43,7663,7670,7254,7337,0,6,5,16,30,4604,4615,4616,4603,43,7254,7670,4618,4301,0,6,5,16,30,4616,4615,4608,4607,43,4619,7670,7254,4302,0,16,5,6,30,4612,4615,4616,4613,43,4532,7580,7670,7663,0,6,5,16,30,4435,4434,4615,4604,43,7670,7580,4533,7663,0,16,5,6,30,4615,4434,4436,4604,43,7670,7580,4534,4618,0,6,5,16,30,4615,4434,4430,4608,43,4535,7580,7670,4619,0,16,5,6,30,4432,4434,4615,4612,43,4291,4611,4566,4280,0,6,5,16,30,4588,4587,4494,4493,43,4611,4525,4478,4566,0,6,5,16,30,4587,4423,4375,4494,43,4290,4612,4568,4279,0,6,5,16,30,4590,4589,4498,4497,43,4612,4526,4480,4568,0,6,5,16,30,4589,4424,4377,4498,43,4289,4613,4570,4278,0,6,5,16,30,4592,4591,4502,4501,43,4613,4527,4482,4570,0,6,5,16,30,4591,4425,4379,4502,43,4288,4614,4572,4277,0,6,5,16,30,4594,4593,4506,4505,43,4614,4528,4484,4572,0,6,5,16,30,4593,4426,4381,4506,43,4287,4615,4574,4276,0,6,5,16,30,4596,4595,4510,4509,43,4615,4529,4486,4574,0,6,5,16,30,4595,4427,4383,4510,43,4286,4616,4576,4275,0,6,5,16,30,4598,4597,4514,4513,43,4616,4530,4488,4576,0,6,5,16,30,4597,4428,4385,4514,43,4285,4617,4578,4274,0,6,5,16,30,4600,4599,4518,4517,43,4617,4531,4490,4578,0,6,5,16,30,4599,4429,4387,4518,43,4283,4622,4580,4273,0,6,5,16,30,4610,4609,4522,4521,43,4622,4536,4492,4580,0,6,5,16,30,4609,4431,4389,4522,43,4263,4584,4597,4272,0,6,5,16,30,4530,4529,4556,4555,43,4584,4496,4509,4597,0,6,5,16,30,4529,4393,4406,4556,43,4262,4585,4599,4271,0,6,5,16,30,4532,4531,4560,4559,43,4585,4497,4511,4599,0,6,5,16,30,4531,4394,4408,4560,43,4261,4587,4600,4270,0,6,5,16,30,4536,4535,4562,4561,43,4587,4499,4512,4600,0,6,5,16,30,4535,4396,4409,4562,43,4260,4588,4602,4269,0,6,5,16,30,4538,4537,4566,4565,43,4588,4500,4514,4602,0,6,5,16,30,4537,4397,4411,4566,43,4259,4589,4604,4268,0,6,5,16,30,4540,4539,4570,4569,43,4589,4501,4516,4604,0,6,5,16,30,4539,4398,4413,4570,43,4258,4591,4605,4267,0,6,5,16,30,4544,4543,4572,4571,43,4591,4503,4517,4605,0,6,5,16,30,4543,4400,4414,4572,43,4257,4593,4606,4266,0,6,5,16,30,4548,4547,4574,4573,43,4593,4505,4518,4606,0,6,5,16,30,4547,4402,4415,4574,43,4256,4595,4607,4264,0,6,5,16,30,4552,4551,4576,4575,43,4595,4507,4519,4607,0,6,5,16,30,4551,4404,4416,4576,43,4211,4582,4596,4216,0,6,5,16,30,4526,4525,4554,4553,43,4582,4494,4508,4596,0,6,5,16,30,4525,4391,4405,4554,43,4264,4645,4637,4256,0,6,5,16,30,4575,4617,4618,4552,43,4266,4647,4638,4257,0,6,5,16,30,4573,4619,4620,4548,43,4267,4648,4639,4258,0,6,5,16,30,4571,4621,4622,4544,43,4268,4649,4640,4259,0,6,5,16,30,4569,4623,4624,4540,43,4269,4650,4641,4260,0,6,5,16,30,4565,4625,4626,4538,43,4270,4651,4642,4261,0,6,5,16,30,4561,4627,4628,4536,43,4271,4652,4643,4262,0,6,5,16,30,4559,4629,4630,4532,43,4272,4653,4644,4263,0,6,5,16,30,4555,4631,4632,4530,43,4664,4283,4273,4654,0,6,5,16,30,4633,4610,4521,4634,43,4666,4285,4274,4655,0,6,5,16,30,4635,4600,4517,4636,43,4667,4286,4275,4656,0,6,5,16,30,4637,4598,4513,4638,43,4668,4287,4276,4657,0,6,5,16,30,4639,4596,4509,4640,43,4669,4288,4277,4658,0,6,5,16,30,4641,4594,4505,4642,43,4670,4289,4278,4659,0,6,5,16,30,4643,4592,4501,4644,43,4671,4290,4279,4660,0,6,5,16,30,4645,4590,4497,4646,43,4672,4291,4280,4661,0,6,5,16,30,4647,4588,4493,4648,43,4310,4673,4645,4264,0,6,5,16,30,4578,4649,4617,4575,43,4646,4674,4311,4265,0,16,5,6,30,4650,4651,4582,4581,43,4312,4675,4647,4266,0,6,5,16,30,4465,4652,4619,4573,43,4313,4676,4648,4267,0,6,5,16,30,4469,4653,4621,4571,43,4314,4677,4649,4268,0,6,5,16,30,4473,4654,4623,4569,43,4315,4678,4650,4269,0,6,5,16,30,4568,4655,4625,4565,43,4316,4679,4651,4270,0,6,5,16,30,4564,4656,4627,4561,43,4317,4680,4652,4271,0,6,5,16,30,4477,4657,4629,4559,43,4318,4681,4653,4272,0,6,5,16,30,4558,4658,4631,4555,43,7722,7684,7250,7347,0,6,5,16,30,4585,4033,4586,4585,43,7250,7684,4673,4310,0,6,5,16,30,4586,4033,4649,4578,43,4674,7684,7250,4311,0,16,5,6,30,4651,4033,4586,4582,43,4212,4624,4675,4312,0,6,5,16,30,4468,4659,4652,4465,43,4213,4625,4676,4313,0,6,5,16,30,4472,4660,4653,4469,43,4214,4626,4677,4314,0,6,5,16,30,4476,4661,4654,4473,43,4217,4709,4678,4315,0,6,5,16,30,4481,4662,4655,4568,43,4218,4708,4679,4316,0,6,5,16,30,4485,4663,4656,4564,43,4215,4627,4680,4317,0,6,5,16,30,4480,4664,4657,4477,43,4219,4707,4681,4318,0,6,5,16,30,4489,4665,4658,4558,43,4281,4662,7732,7337,0,6,30,16,5,4602,4666,4667,4603,43,7732,4663,4282,7337,0,16,30,6,5,4667,4668,4605,4603,43,4682,4301,4283,4664,0,6,5,16,30,4669,4607,4610,4633,43,4284,4302,4683,4665,0,16,5,6,30,4614,4613,4670,4671,43,4684,4303,4285,4666,0,6,5,16,30,4672,4440,4600,4635,43,4685,4304,4286,4667,0,6,5,16,30,4673,4444,4598,4637,43,4686,4305,4287,4668,0,6,5,16,30,4674,4448,4596,4639,43,4687,4306,4288,4669,0,6,5,16,30,4675,4452,4594,4641,43,4688,4307,4289,4670,0,6,5,16,30,4676,4456,4592,4643,43,4689,4308,4290,4671,0,6,5,16,30,4677,4460,4590,4645,43,4690,4309,4291,4672,0,6,5,16,30,4678,4464,4588,4647,43,7337,7254,7685,7732,0,6,5,16,30,4603,4616,4054,4667,43,7685,7254,4301,4682,0,6,5,16,30,4054,4616,4607,4669,43,4302,7254,7685,4683,0,16,5,6,30,4613,4616,4054,4670,43,4629,4204,4303,4684,0,6,5,16,30,4679,4437,4440,4672,43,4630,4205,4304,4685,0,6,5,16,30,4680,4441,4444,4673,43,4631,4206,4305,4686,0,6,5,16,30,4681,4445,4448,4674,43,4632,4207,4306,4687,0,6,5,16,30,4682,4449,4452,4675,43,4633,4208,4307,4688,0,6,5,16,30,4683,4453,4456,4676,43,4634,4209,4308,4689,0,6,5,16,30,4684,4457,4460,4677,43,4635,4210,4309,4690,0,6,5,16,30,4685,4461,4464,4678,43,4344,4691,4624,4212,0,6,5,16,30,4549,4686,4659,4468,43,4345,4692,4625,4213,0,6,5,16,30,4545,4687,4660,4472,43,4346,4693,4626,4214,0,6,5,16,30,4541,4688,4661,4476,43,4347,4694,4709,4217,0,6,5,16,30,4484,4689,4662,4481,43,4348,4695,4708,4218,0,6,5,16,30,4488,4690,4663,4485,43,4349,4696,4627,4215,0,6,5,16,30,4533,4691,4664,4480,43,4350,4697,4707,4219,0,6,5,16,30,4492,4692,4665,4489,43,4351,4698,4628,4216,0,6,5,16,30,4527,4693,4694,4553,43,4256,4637,4691,4344,0,6,5,16,30,4552,4618,4686,4549,43,4257,4638,4692,4345,0,6,5,16,30,4548,4620,4687,4545,43,4258,4639,4693,4346,0,6,5,16,30,4544,4622,4688,4541,43,4259,4640,4694,4347,0,6,5,16,30,4540,4624,4689,4484,43,4260,4641,4695,4348,0,6,5,16,30,4538,4626,4690,4488,43,4261,4642,4696,4349,0,6,5,16,30,4536,4628,4691,4533,43,4262,4643,4697,4350,0,6,5,16,30,4532,4630,4692,4492,43,4263,4644,4698,4351,0,6,5,16,30,4530,4632,4693,4527,43,4699,4352,4204,4629,0,6,5,16,30,4695,4524,4437,4679,43,4700,4353,4205,4630,0,6,5,16,30,4696,4520,4441,4680,43,4701,4354,4206,4631,0,6,5,16,30,4697,4516,4445,4681,43,4702,4355,4207,4632,0,6,5,16,30,4698,4512,4449,4682,43,4703,4356,4208,4633,0,6,5,16,30,4699,4508,4453,4683,43,4704,4357,4209,4634,0,6,5,16,30,4700,4504,4457,4684,43,4705,4358,4210,4635,0,6,5,16,30,4701,4500,4461,4685,43,4706,4359,4211,4636,0,6,5,16,30,4702,4496,4526,4703,43,4654,4273,4352,4699,0,6,5,16,30,4634,4521,4524,4695,43,4655,4274,4353,4700,0,6,5,16,30,4636,4517,4520,4696,43,4656,4275,4354,4701,0,6,5,16,30,4638,4513,4516,4697,43,4657,4276,4355,4702,0,6,5,16,30,4640,4509,4512,4698,43,4658,4277,4356,4703,0,6,5,16,30,4642,4505,4508,4699,43,4659,4278,4357,4704,0,6,5,16,30,4644,4501,4504,4700,43,4660,4279,4358,4705,0,6,5,16,30,4646,4497,4500,4701,43,4661,4280,4359,4706,0,6,5,16,30,4648,4493,4496,4702,43,4636,4211,4216,4628,0,6,5,16,30,4703,4526,4553,4694,43,4645,4731,4723,4637,0,6,5,16,30,4617,4704,4705,4618,43,4731,4228,4220,4723,0,6,5,16,30,4704,4170,4169,4705,43,4647,4733,4724,4638,0,6,5,16,30,4619,4706,4707,4620,43,4733,4230,4221,4724,0,6,5,16,30,4706,4174,4173,4707,43,4648,4734,4725,4639,0,6,5,16,30,4621,4708,4709,4622,43,4734,4231,4222,4725,0,6,5,16,30,4708,4178,4177,4709,43,4649,4735,4726,4640,0,6,5,16,30,4623,4710,4711,4624,43,4735,4232,4223,4726,0,6,5,16,30,4710,4182,4181,4711,43,4650,4736,4727,4641,0,6,5,16,30,4625,4712,4713,4626,43,4736,4233,4224,4727,0,6,5,16,30,4712,4186,4185,4713,43,4651,4737,4728,4642,0,6,5,16,30,4627,4714,4715,4628,43,4737,4234,4225,4728,0,6,5,16,30,4714,4190,4189,4715,43,4652,4738,4729,4643,0,6,5,16,30,4629,4716,4717,4630,43,4738,4235,4226,4729,0,6,5,16,30,4716,4194,4193,4717,43,4653,4739,4730,4644,0,6,5,16,30,4631,4718,4719,4632,43,4739,4236,4227,4730,0,6,5,16,30,4718,4198,4197,4719,43,4247,4750,4740,4237,0,6,5,16,30,4171,4720,4721,4172,43,4750,4664,4654,4740,0,6,5,16,30,4720,4633,4634,4721,43,4249,4752,4741,4238,0,6,5,16,30,4175,4722,4723,4176,43,4752,4666,4655,4741,0,6,5,16,30,4722,4635,4636,4723,43,4250,4753,4742,4239,0,6,5,16,30,4179,4724,4725,4180,43,4753,4667,4656,4742,0,6,5,16,30,4724,4637,4638,4725,43,4251,4754,4743,4240,0,6,5,16,30,4183,4726,4727,4184,43,4754,4668,4657,4743,0,6,5,16,30,4726,4639,4640,4727,43,4252,4755,4744,4241,0,6,5,16,30,4187,4728,4729,4188,43,4755,4669,4658,4744,0,6,5,16,30,4728,4641,4642,4729,43,4253,4756,4745,4242,0,6,5,16,30,4191,4730,4731,4192,43,4756,4670,4659,4745,0,6,5,16,30,4730,4643,4644,4731,43,4254,4757,4746,4243,0,6,5,16,30,4195,4732,4733,4196,43,4757,4671,4660,4746,0,6,5,16,30,4732,4645,4646,4733,43,4255,4758,4747,4244,0,6,5,16,30,4199,4734,4735,4200,43,4758,4672,4661,4747,0,6,5,16,30,4734,4647,4648,4735,43,4673,4759,4731,4645,0,6,5,16,30,4649,4736,4704,4617,43,4732,4760,4674,4646,0,16,5,6,30,4737,4738,4651,4650,43,4759,4319,4228,4731,0,6,5,16,30,4736,4201,4170,4704,43,4229,4320,4760,4732,0,16,5,6,30,4205,4204,4738,4737,43,4675,4761,4733,4647,0,6,5,16,30,4652,4739,4706,4619,43,4761,4321,4230,4733,0,6,5,16,30,4739,4207,4174,4706,43,4676,4762,4734,4648,0,6,5,16,30,4653,4740,4708,4621,43,4762,4322,4231,4734,0,6,5,16,30,4740,4209,4178,4708,43,4677,4763,4735,4649,0,6,5,16,30,4654,4741,4710,4623,43,4763,4323,4232,4735,0,6,5,16,30,4741,4211,4182,4710,43,4678,4764,4736,4650,0,6,5,16,30,4655,4742,4712,4625,43,4764,4324,4233,4736,0,6,5,16,30,4742,4213,4186,4712,43,4679,4765,4737,4651,0,6,5,16,30,4656,4743,4714,4627,43,4765,4325,4234,4737,0,6,5,16,30,4743,4215,4190,4714,43,4680,4766,4738,4652,0,6,5,16,30,4657,4744,4716,4629,43,4766,4326,4235,4738,0,6,5,16,30,4744,4217,4194,4716,43,4681,4767,4739,4653,0,6,5,16,30,4658,4745,4718,4631,43,4767,4327,4236,4739,0,6,5,16,30,4745,4219,4198,4718,43,7812,7774,7684,7722,0,6,5,16,30,4746,4033,4033,4585,43,7684,7774,4759,4673,0,6,5,16,30,4033,4033,4736,4649,43,4760,7774,7684,4674,0,16,5,6,30,4738,4033,4033,4651,43,7357,7235,7774,7812,0,6,5,16,30,4223,4222,4033,4746,43,7774,7235,4319,4759,0,6,5,16,30,4033,4222,4201,4736,43,4320,7235,7774,4760,0,16,5,6,30,4204,4222,4033,4738,43,4624,4710,4761,4675,0,6,5,16,30,4659,4747,4739,4652,43,4710,4196,4321,4761,0,6,5,16,30,4747,4226,4207,4739,43,4625,4711,4762,4676,0,6,5,16,30,4660,4748,4740,4653,43,4711,4197,4322,4762,0,6,5,16,30,4748,4227,4209,4740,43,4626,4712,4763,4677,0,6,5,16,30,4661,4749,4741,4654,43,4712,4198,4323,4763,0,6,5,16,30,4749,4229,4211,4741,43,4709,4795,4764,4678,0,6,5,16,30,4662,4750,4742,4655,43,4795,4199,4324,4764,0,6,5,16,30,4750,4231,4213,4742,43,4708,4794,4765,4679,0,6,5,16,30,4663,4751,4743,4656,43,4794,4200,4325,4765,0,6,5,16,30,4751,4233,4215,4743,43,4627,4713,4766,4680,0,6,5,16,30,4664,4752,4744,4657,43,4713,4201,4326,4766,0,6,5,16,30,4752,4235,4217,4744,43,4707,4793,4767,4681,0,6,5,16,30,4665,4753,4745,4658,43,4793,4202,4327,4767,0,6,5,16,30,4753,4237,4219,4745,43,4748,4245,7327,7822,0,6,30,16,5,4754,4755,4224,4756,43,7327,4246,4749,7822,0,16,30,6,5,4224,4757,4758,4756,43,4292,4768,4750,4247,0,6,5,16,30,4202,4759,4720,4171,43,4751,4769,4293,4248,0,16,5,6,30,4760,4761,4203,4206,43,4662,4748,7822,7732,0,6,30,16,5,4666,4754,4756,4667,43,7822,4749,4663,7732,0,16,30,6,5,4756,4758,4668,4667,43,4768,4682,4664,4750,0,6,5,16,30,4759,4669,4633,4720,43,4665,4683,4769,4751,0,16,5,6,30,4671,4670,4761,4760,43,4294,4770,4752,4249,0,6,5,16,30,4208,4762,4722,4175,43,4770,4684,4666,4752,0,6,5,16,30,4762,4672,4635,4722,43,4295,4771,4753,4250,0,6,5,16,30,4210,4763,4724,4179,43,4771,4685,4667,4753,0,6,5,16,30,4763,4673,4637,4724,43,4296,4772,4754,4251,0,6,5,16,30,4212,4764,4726,4183,43,4772,4686,4668,4754,0,6,5,16,30,4764,4674,4639,4726,43,4297,4773,4755,4252,0,6,5,16,30,4214,4765,4728,4187,43,4773,4687,4669,4755,0,6,5,16,30,4765,4675,4641,4728,43,4298,4774,4756,4253,0,6,5,16,30,4216,4766,4730,4191,43,4774,4688,4670,4756,0,6,5,16,30,4766,4676,4643,4730,43,4299,4775,4757,4254,0,6,5,16,30,4218,4767,4732,4195,43,4775,4689,4671,4757,0,6,5,16,30,4767,4677,4645,4732,43,4300,4776,4758,4255,0,6,5,16,30,4220,4768,4734,4199,43,4776,4690,4672,4758,0,6,5,16,30,4768,4678,4647,4734,43,7822,7775,7236,7327,0,6,5,16,30,4756,4054,4221,4224,43,7236,7775,4768,4292,0,6,5,16,30,4221,4054,4759,4202,43,4769,7775,7236,4293,0,16,5,6,30,4761,4054,4221,4203,43,7732,7685,7775,7822,0,6,5,16,30,4667,4054,4054,4756,43,7775,7685,4682,4768,0,6,5,16,30,4054,4054,4669,4759,43,4683,7685,7775,4769,0,16,5,6,30,4670,4054,4054,4761,43,4188,4715,4770,4294,0,6,5,16,30,4225,4679,4762,4208,43,4715,4629,4684,4770,0,6,5,16,30,4679,4679,4672,4762,43,4189,4716,4771,4295,0,6,5,16,30,4228,4680,4763,4210,43,4716,4630,4685,4771,0,6,5,16,30,4680,4680,4673,4763,43,4190,4717,4772,4296,0,6,5,16,30,4230,4769,4764,4212,43,4717,4631,4686,4772,0,6,5,16,30,4769,4681,4674,4764,43,4191,4718,4773,4297,0,6,5,16,30,4232,4770,4765,4214,43,4718,4632,4687,4773,0,6,5,16,30,4770,4682,4675,4765,43,4192,4719,4774,4298,0,6,5,16,30,4234,4771,4766,4216,43,4719,4633,4688,4774,0,6,5,16,30,4771,4683,4676,4766,43,4193,4720,4775,4299,0,6,5,16,30,4236,4772,4767,4218,43,4720,4634,4689,4775,0,6,5,16,30,4772,4684,4677,4767,43,4194,4721,4776,4300,0,6,5,16,30,4238,4773,4768,4220,43,4721,4635,4690,4776,0,6,5,16,30,4773,4685,4678,4768,43,4691,4777,4710,4624,0,6,5,16,30,4686,4774,4747,4659,43,4777,4328,4196,4710,0,6,5,16,30,4774,4240,4226,4747,43,4692,4778,4711,4625,0,6,5,16,30,4687,4775,4748,4660,43,4778,4329,4197,4711,0,6,5,16,30,4775,4242,4227,4748,43,4693,4779,4712,4626,0,6,5,16,30,4688,4776,4749,4661,43,4779,4330,4198,4712,0,6,5,16,30,4776,4244,4229,4749,43,4694,4780,4795,4709,0,6,5,16,30,4689,4777,4750,4662,43,4780,4331,4199,4795,0,6,5,16,30,4777,4246,4231,4750,43,4695,4781,4794,4708,0,6,5,16,30,4690,4778,4751,4663,43,4781,4332,4200,4794,0,6,5,16,30,4778,4248,4233,4751,43,4696,4782,4713,4627,0,6,5,16,30,4691,4779,4752,4664,43,4782,4333,4201,4713,0,6,5,16,30,4779,4250,4235,4752,43,4697,4783,4793,4707,0,6,5,16,30,4692,4780,4753,4665,43,4783,4334,4202,4793,0,6,5,16,30,4780,4252,4237,4753,43,4698,4784,4714,4628,0,6,5,16,30,4693,4781,4782,4694,43,4784,4335,4203,4714,0,6,5,16,30,4781,4254,4256,4782,43,4637,4723,4777,4691,0,6,5,16,30,4618,4705,4774,4686,43,4723,4220,4328,4777,0,6,5,16,30,4705,4169,4240,4774,43,4638,4724,4778,4692,0,6,5,16,30,4620,4707,4775,4687,43,4724,4221,4329,4778,0,6,5,16,30,4707,4173,4242,4775,43,4639,4725,4779,4693,0,6,5,16,30,4622,4709,4776,4688,43,4725,4222,4330,4779,0,6,5,16,30,4709,4177,4244,4776,43,4640,4726,4780,4694,0,6,5,16,30,4624,4711,4777,4689,43,4726,4223,4331,4780,0,6,5,16,30,4711,4181,4246,4777,43,4641,4727,4781,4695,0,6,5,16,30,4626,4713,4778,4690,43,4727,4224,4332,4781,0,6,5,16,30,4713,4185,4248,4778,43,4642,4728,4782,4696,0,6,5,16,30,4628,4715,4779,4691,43,4728,4225,4333,4782,0,6,5,16,30,4715,4189,4250,4779,43,4643,4729,4783,4697,0,6,5,16,30,4630,4717,4780,4692,43,4729,4226,4334,4783,0,6,5,16,30,4717,4193,4252,4780,43,4644,4730,4784,4698,0,6,5,16,30,4632,4719,4781,4693,43,4730,4227,4335,4784,0,6,5,16,30,4719,4197,4254,4781,43,4629,4715,4785,4699,0,6,5,16,30,4679,4679,4783,4695,43,4715,4188,4336,4785,0,6,5,16,30,4679,4225,4239,4783,43,4337,4786,4716,4189,0,6,5,16,30,4241,4784,4680,4228,43,4786,4700,4630,4716,0,6,5,16,30,4784,4696,4680,4680,43,4338,4787,4717,4190,0,6,5,16,30,4243,4785,4769,4230,43,4787,4701,4631,4717,0,6,5,16,30,4785,4697,4681,4769,43,4339,4788,4718,4191,0,6,5,16,30,4245,4786,4770,4232,43,4788,4702,4632,4718,0,6,5,16,30,4786,4698,4682,4770,43,4340,4789,4719,4192,0,6,5,16,30,4247,4787,4771,4234,43,4789,4703,4633,4719,0,6,5,16,30,4787,4699,4683,4771,43,4341,4790,4720,4193,0,6,5,16,30,4249,4788,4772,4236,43,4790,4704,4634,4720,0,6,5,16,30,4788,4700,4684,4772,43,4342,4791,4721,4194,0,6,5,16,30,4251,4789,4773,4238,43,4791,4705,4635,4721,0,6,5,16,30,4789,4701,4685,4773,43,4343,4792,4722,4195,0,6,5,16,30,4253,4790,4167,4255,43,4792,4706,4636,4722,0,6,5,16,30,4790,4702,4703,4167,43,4237,4740,4785,4336,0,6,5,16,30,4172,4721,4783,4239,43,4740,4654,4699,4785,0,6,5,16,30,4721,4634,4695,4783,43,4238,4741,4786,4337,0,6,5,16,30,4176,4723,4784,4241,43,4741,4655,4700,4786,0,6,5,16,30,4723,4636,4696,4784,43,4239,4742,4787,4338,0,6,5,16,30,4180,4725,4785,4243,43,4742,4656,4701,4787,0,6,5,16,30,4725,4638,4697,4785,43,4240,4743,4788,4339,0,6,5,16,30,4184,4727,4786,4245,43,4743,4657,4702,4788,0,6,5,16,30,4727,4640,4698,4786,43,4241,4744,4789,4340,0,6,5,16,30,4188,4729,4787,4247,43,4744,4658,4703,4789,0,6,5,16,30,4729,4642,4699,4787,43,4242,4745,4790,4341,0,6,5,16,30,4192,4731,4788,4249,43,4745,4659,4704,4790,0,6,5,16,30,4731,4644,4700,4788,43,4243,4746,4791,4342,0,6,5,16,30,4196,4733,4789,4251,43,4746,4660,4705,4791,0,6,5,16,30,4733,4646,4701,4789,43,4244,4747,4792,4343,0,6,5,16,30,4200,4735,4790,4253,43,4747,4661,4706,4792,0,6,5,16,30,4735,4648,4702,4790,43,4195,4722,4714,4203,0,6,5,16,30,4255,4167,4782,4256,43,4722,4636,4628,4714,0,6,5,16,30,4167,4703,4694,4782,43,4800,7855,7886,4828,0,6,5,16,30,4791,4792,4793,4794,43,4827,7885,7884,4826,0,6,5,16,30,4795,4796,4797,4798,43,4801,4800,4828,4831,0,6,5,16,30,4799,4791,4794,4800,43,4830,4827,4826,4829,0,6,5,16,30,4801,4795,4798,4802,43,4831,4802,4796,4801,0,6,5,16,30,4800,4803,4804,4799,43,4803,4830,4829,4804,0,6,5,16,30,4805,4801,4802,4806,43,4825,4798,4818,4833,0,6,5,16,30,4807,4808,4809,4810,43,4833,4818,4817,4832,0,6,5,16,30,4810,4809,4811,4812,43,4824,4825,4833,4835,0,6,5,16,30,4813,4807,4810,4814,43,4835,4833,4832,4834,0,6,5,16,30,4814,4810,4812,4815,43,4822,4823,4837,4839,0,6,5,16,30,4816,4817,4818,4819,43,4839,4837,4836,4838,0,6,5,16,30,4819,4818,4820,4821,43,4797,4821,4841,4820,0,6,5,16,30,4822,4823,4824,4825,43,4820,4841,4840,4819,0,6,5,16,30,4825,4824,4826,4827,43,4820,4819,4844,4847,0,6,5,16,30,4825,4827,4828,4829,43,4797,4820,4847,4811,0,6,5,16,30,4822,4825,4829,4830,43,4821,4797,4811,4852,0,6,5,16,30,4823,4822,4830,4831,43,4848,4807,4796,4802,0,6,5,16,30,4832,4833,4804,4803,43,4823,4822,4857,4861,0,6,5,16,30,4817,4816,4834,4835,43,4858,4853,4803,4804,0,6,5,16,30,4836,4837,4805,4806,43,4825,4824,4866,4871,0,6,5,16,30,4807,4813,4838,4839,43,4867,4862,4805,4806,0,6,5,16,30,4840,4841,4842,4843,43,4798,4825,4871,4816,0,6,5,16,30,4808,4807,4839,4844,43,4812,4867,4806,5663,0,6,5,16,30,4845,4840,4843,4846,43,5664,4799,4876,4881,0,6,5,16,30,4847,4848,4849,4850,43,4877,4872,4817,4818,0,6,5,16,30,4851,4852,4811,4809,43,5663,5664,4881,4812,0,6,5,16,30,4846,4847,4850,4845,43,4816,4877,4818,4798,0,6,5,16,30,4844,4851,4809,4808,43,4809,4845,4885,4882,0,6,5,16,30,4853,4854,4855,4856,43,4886,4882,4808,4849,0,6,5,16,30,4857,4856,4858,4859,43,4850,4809,4882,4886,0,6,5,16,30,4860,4853,4856,4857,43,4889,4888,4863,4868,0,6,5,16,30,4861,4862,4863,4864,43,4883,4889,4868,4813,0,6,5,16,30,4865,4861,4864,4866,43,4880,4875,4890,4891,0,6,5,16,30,4867,4868,4869,4870,43,4813,4880,4891,4883,0,6,5,16,30,4866,4867,4870,4865,43,4893,4898,4897,4892,0,6,5,16,30,4871,4872,4873,4874,43,4900,4893,4892,4899,0,6,5,16,30,4875,4871,4874,4876,43,4905,4903,4864,4869,0,6,5,16,30,4877,4878,4879,4880,43,4906,4904,4903,4905,0,6,5,16,30,4881,4882,4878,4877,43,4894,4905,4869,4814,0,6,5,16,30,4883,4877,4880,4884,43,4895,4906,4905,4894,0,6,5,16,30,4885,4881,4877,4883,43,4910,4908,4907,4909,0,6,5,16,30,4886,4887,4888,4889,43,4879,4874,4908,4910,0,6,5,16,30,4890,4891,4887,4886,43,4894,4910,4909,4895,0,6,5,16,30,4883,4886,4889,4885,43,4814,4879,4910,4894,0,6,5,16,30,4884,4890,4886,4883,43,4913,4882,4885,4911,0,6,5,16,30,4892,4856,4855,4893,43,4914,4808,4882,4913,0,6,5,16,30,4894,4858,4856,4892,43,4918,4796,4807,4915,0,6,5,16,30,4895,4804,4833,4896,43,4916,4801,4796,4918,0,6,5,16,30,4897,4799,4804,4895,43,4917,4800,4801,4916,0,6,5,16,30,4898,4791,4799,4897,43,7996,7855,4800,4917,0,6,5,16,30,4899,4792,4791,4898,43,4935,4937,4898,4893,0,6,5,16,30,4900,4901,4872,4871,43,4938,4935,4893,4900,0,6,5,16,30,4902,4900,4871,4875,43,4942,4941,4904,4906,0,6,5,16,30,4903,4904,4882,4881,43,4936,4942,4906,4895,0,6,5,16,30,4905,4903,4881,4885,43,4909,4907,4943,4944,0,6,5,16,30,4889,4888,4906,4907,43,4895,4909,4944,4936,0,6,5,16,30,4885,4889,4907,4905,43,4920,7999,8032,4945,0,6,5,16,30,4908,4909,4910,4911,43,4921,4920,4945,4946,0,6,5,16,30,4912,4908,4911,4913,43,4919,4921,4946,4947,0,6,5,16,30,4914,4912,4913,4915,43,4922,4919,4947,4948,0,6,5,16,30,4916,4914,4915,4917,43,4924,4923,4949,4950,0,6,5,16,30,4918,4919,4920,4921,43,4926,4924,4950,4952,0,6,5,16,30,4922,4918,4921,4923,43,4957,4898,4937,4953,0,6,5,16,30,4924,4872,4901,4925,43,4958,4846,4843,4959,0,6,5,16,30,4926,4927,4928,4929,43,4961,4958,4959,4960,0,6,5,16,30,4930,4926,4929,4931,43,4962,4957,4953,4966,0,6,5,16,30,4932,4924,4925,4933,43,4971,4962,4966,4967,0,6,5,16,30,4934,4932,4933,4935,43,4972,4961,4960,4973,0,6,5,16,30,4936,4930,4931,4937,43,4975,4972,4973,4974,0,6,5,16,30,4938,4936,4937,4939,43,4976,4971,4967,4980,0,6,5,16,30,4940,4934,4935,4941,43,5163,4998,5002,5156,0,6,5,16,30,4942,4943,4944,4945,43,5162,5000,4997,5161,0,6,5,16,30,4946,4947,4948,4949,43,5160,4999,4995,5004,0,6,5,16,30,4950,4951,4952,4953,43,5004,4995,4994,5005,0,6,5,16,30,4953,4952,4954,4955,43,5005,4994,4991,5158,0,6,5,16,30,4955,4954,4956,4957,43,5159,4992,4993,5154,0,6,5,16,30,4958,4959,4960,4961,43,5006,4990,5001,5157,0,6,5,16,30,4962,4963,4964,4965,43,5155,4989,4996,5003,0,6,5,16,30,4966,4967,4968,4969,43,5007,8096,7996,4917,0,6,5,16,30,4970,4971,4899,4898,43,5008,5007,4917,4916,0,6,5,16,30,4972,4970,4898,4897,43,5009,5008,4916,4918,0,6,5,16,30,4973,4972,4897,4895,43,5010,5009,4918,4915,0,6,5,16,30,4974,4973,4895,4896,43,5012,5011,4914,4913,0,6,5,16,30,4975,4976,4894,4892,43,5014,5012,4913,4911,0,6,5,16,30,4977,4975,4892,4893,43,5024,5023,4924,4926,0,6,5,16,30,4978,4979,4918,4922,43,5015,5017,5023,5024,0,6,5,16,30,4980,4981,4979,4978,43,5023,5026,4923,4924,0,6,5,16,30,4979,4982,4919,4918,43,5017,5018,5026,5023,0,6,5,16,30,4981,4983,4982,4979,43,5027,5028,4919,4922,0,6,5,16,30,4984,4985,4914,4916,43,5019,5022,5028,5027,0,6,5,16,30,4986,4987,4985,4984,43,5028,5029,4921,4919,0,6,5,16,30,4985,4988,4912,4914,43,5022,5020,5029,5028,0,6,5,16,30,4987,4989,4988,4985,43,5029,5030,4920,4921,0,6,5,16,30,4988,4990,4908,4912,43,5020,5021,5030,5029,0,6,5,16,30,4989,4991,4990,4988,43,5030,8125,7999,4920,0,6,5,16,30,4990,4992,4909,4908,43,5021,8114,8125,5030,0,6,5,16,30,4991,4993,4992,4990,43,5031,8126,8096,5007,0,6,5,16,30,4994,4995,4971,4970,43,4945,8032,8126,5031,0,6,5,16,30,4911,4910,4995,4994,43,5032,5031,5007,5008,0,6,5,16,30,4996,4994,4970,4972,43,4946,4945,5031,5032,0,6,5,16,30,4913,4911,4994,4996,43,5033,5032,5008,5009,0,6,5,16,30,4997,4996,4972,4973,43,4947,4946,5032,5033,0,6,5,16,30,4915,4913,4996,4997,43,5034,5033,5009,5010,0,6,5,16,30,4998,4997,4973,4974,43,4948,4947,5033,5034,0,6,5,16,30,4917,4915,4997,4998,43,5036,5035,5011,5012,0,6,5,16,30,4999,5000,4976,4975,43,4950,4949,5035,5036,0,6,5,16,30,4921,4920,5000,4999,43,5038,5036,5012,5014,0,6,5,16,30,5001,4999,4975,4977,43,4952,4950,5036,5038,0,6,5,16,30,4923,4921,4999,5001,43,5066,5065,4927,4956,0,6,5,16,30,5002,5003,5004,5005,43,4954,4934,5065,5066,0,6,5,16,30,5006,5007,5003,5002,43,5067,5066,4956,4963,0,6,5,16,30,5008,5002,5005,5009,43,4965,4954,5066,5067,0,6,5,16,30,5010,5006,5002,5008,43,5068,5067,4963,4970,0,6,5,16,30,5011,5008,5009,5012,43,4968,4965,5067,5068,0,6,5,16,30,5013,5010,5008,5011,43,5069,5068,4970,4977,0,6,5,16,30,5014,5011,5012,5015,43,4979,4968,5068,5069,0,6,5,16,30,5016,5013,5011,5014,43,5070,5071,4937,4935,0,6,5,16,30,5017,5018,4901,4900,43,4810,4846,5071,5070,0,6,5,16,30,5019,4927,5018,5017,43,5072,5070,4935,4938,0,6,5,16,30,5020,5017,4900,4902,43,4851,4810,5070,5072,0,6,5,16,30,5021,5019,5017,5020,43,5073,5071,4846,4958,0,6,5,16,30,5022,5018,4927,4926,43,4953,4937,5071,5073,0,6,5,16,30,4925,4901,5018,5022,43,5074,5073,4958,4961,0,6,5,16,30,5023,5022,4926,4930,43,4966,4953,5073,5074,0,6,5,16,30,4933,4925,5022,5023,43,5075,5074,4961,4972,0,6,5,16,30,5024,5023,4930,4936,43,4967,4966,5074,5075,0,6,5,16,30,4935,4933,5023,5024,43,5076,5075,4972,4975,0,6,5,16,30,5025,5024,4936,4938,43,4980,4967,5075,5076,0,6,5,16,30,4941,4935,5024,5025,43,5164,5079,4989,5155,0,6,5,16,30,5026,5027,4967,4966,43,5154,4993,5079,5164,0,6,5,16,30,4961,4960,5027,5026,43,5081,5098,4853,4858,0,6,5,16,30,5028,5029,4837,4836,43,4859,4987,5098,5081,0,6,5,16,30,5030,5031,5029,5028,43,5083,5082,4862,4867,0,6,5,16,30,5032,5033,4841,4840,43,4868,4863,5082,5083,0,6,5,16,30,4864,4863,5033,5032,43,5080,5083,4867,4812,0,6,5,16,30,5034,5032,4840,4845,43,4813,4868,5083,5080,0,6,5,16,30,4866,4864,5032,5034,43,5085,5084,4875,4880,0,6,5,16,30,5035,5036,4868,4867,43,4881,4876,5084,5085,0,6,5,16,30,4850,4849,5036,5035,43,5080,5085,4880,4813,0,6,5,16,30,5034,5035,4867,4866,43,4812,4881,5085,5080,0,6,5,16,30,4845,4850,5035,5034,43,5088,5087,4939,4940,0,6,5,16,30,5037,5038,5039,5040,43,4860,4856,5087,5088,0,6,5,16,30,5041,5042,5038,5037,43,5090,5089,4941,4942,0,6,5,16,30,5043,5044,4904,4903,43,4870,4865,5089,5090,0,6,5,16,30,5045,5046,5044,5043,43,5086,5090,4942,4936,0,6,5,16,30,5047,5043,4903,4905,43,4815,4870,5090,5086,0,6,5,16,30,5048,5045,5043,5047,43,5092,5091,4873,4878,0,6,5,16,30,5049,5050,5051,5052,43,4944,4943,5091,5092,0,6,5,16,30,4907,4906,5050,5049,43,5086,5092,4878,4815,0,6,5,16,30,5047,5049,5052,5048,43,4936,4944,5092,5086,0,6,5,16,30,4905,4907,5049,5047,43,5094,5095,4983,4982,0,6,5,16,30,5053,5054,5055,5056,43,4854,4887,5095,5094,0,6,5,16,30,5057,5058,5054,5053,43,5095,5093,4981,4983,0,6,5,16,30,5054,5059,5060,5055,43,4887,4855,5093,5095,0,6,5,16,30,5058,5061,5059,5054,43,5096,5097,4985,4984,0,6,5,16,30,5062,5063,5064,5065,43,4901,4902,5097,5096,0,6,5,16,30,5066,5067,5063,5062,43,5097,5099,4986,4985,0,6,5,16,30,5063,5068,5069,5064,43,4902,4988,5099,5097,0,6,5,16,30,5067,5070,5068,5063,43,5087,5100,5078,4939,0,6,5,16,30,5038,5071,5072,5039,43,4856,5077,5100,5087,0,6,5,16,30,5042,5073,5071,5038,43,5100,5099,4988,5078,0,6,5,16,30,5071,5068,5070,5072,43,5077,4986,5099,5100,0,6,5,16,30,5073,5069,5068,5071,43,5103,5101,7873,7893,0,6,5,16,30,5074,5075,5076,5077,43,4832,4817,5101,5103,0,6,5,16,30,4812,4811,5075,5074,43,5104,5103,7893,7896,0,6,5,16,30,5078,5074,5077,5079,43,4834,4832,5103,5104,0,6,5,16,30,4815,4812,5074,5078,43,5106,5105,7899,7902,0,6,5,16,30,5080,5081,5082,5083,43,4838,4836,5105,5106,0,6,5,16,30,4821,4820,5081,5080,43,5102,5107,7905,7876,0,6,5,16,30,5084,5085,5086,5087,43,4819,4840,5107,5102,0,6,5,16,30,4827,4826,5085,5084,43,5108,5102,7876,7909,0,6,5,16,30,5088,5084,5087,5089,43,4844,4819,5102,5108,0,6,5,16,30,4828,4827,5084,5088,43,5110,5665,8819,7944,0,6,5,16,30,5090,5091,5092,5093,43,4876,4799,5665,5110,0,6,5,16,30,4849,4848,5091,5090,43,5101,5114,7940,7873,0,6,5,16,30,5075,5094,5095,5076,43,4817,4872,5114,5101,0,6,5,16,30,4811,4852,5094,5075,43,5115,5111,7943,7964,0,6,5,16,30,5096,5097,5098,5099,43,4890,4875,5111,5115,0,6,5,16,30,4869,4868,5097,5096,43,5116,5117,7983,7982,0,6,5,16,30,5100,5101,5102,5103,43,4907,4908,5117,5116,0,6,5,16,30,4888,4887,5101,5100,43,5117,5112,7942,7983,0,6,5,16,30,5101,5104,5105,5102,43,4908,4874,5112,5117,0,6,5,16,30,4887,4891,5104,5101,43,5118,5116,7982,8029,0,6,5,16,30,5106,5100,5103,5107,43,4943,4907,5116,5118,0,6,5,16,30,4906,4888,5100,5106,43,5111,5122,8188,7943,0,6,5,16,30,5097,5108,5109,5098,43,4875,5084,5122,5111,0,6,5,16,30,4868,5036,5108,5097,43,5122,5110,7944,8188,0,6,5,16,30,5108,5090,5093,5109,43,5084,4876,5110,5122,0,6,5,16,30,5036,4849,5090,5108,43,5113,5123,8196,7941,0,6,5,16,30,5110,5111,5112,5113,43,4873,5091,5123,5113,0,6,5,16,30,5051,5050,5111,5110,43,5123,5118,8029,8196,0,6,5,16,30,5111,5106,5107,5112,43,5091,4943,5118,5123,0,6,5,16,30,5050,4906,5106,5111,43,5125,5124,4934,4954,0,6,5,16,30,5114,5115,5007,5006,43,4959,4843,5124,5125,0,6,5,16,30,4929,4928,5115,5114,43,5126,5125,4954,4965,0,6,5,16,30,5116,5114,5006,5010,43,4960,4959,5125,5126,0,6,5,16,30,4931,4929,5114,5116,43,5127,5126,4965,4968,0,6,5,16,30,5117,5116,5010,5013,43,4973,4960,5126,5127,0,6,5,16,30,4937,4931,5116,5117,43,5128,5127,4968,4979,0,6,5,16,30,5118,5117,5013,5016,43,4974,4973,5127,5128,0,6,5,16,30,4939,4937,5117,5118,43,8235,5129,5109,7908,0,6,5,16,30,5119,5120,5121,5122,43,8019,5130,5129,8235,0,6,5,16,30,5123,5124,5120,5119,43,5129,5124,4843,5109,0,6,5,16,30,5120,5115,4928,5121,43,5132,5131,7957,7990,0,6,5,16,30,5125,5126,5127,5128,43,4912,4884,5131,5132,0,6,5,16,30,5129,5130,5126,5125,43,5136,5134,8008,8016,0,6,5,16,30,5131,5132,5133,5134,43,4928,4927,5134,5136,0,6,5,16,30,5135,5004,5132,5131,43,5135,5137,8017,8014,0,6,5,16,30,5136,5137,5138,5139,43,4930,4929,5137,5135,0,6,5,16,30,5140,5141,5137,5136,43,5138,5133,4925,4951,0,6,5,16,30,5142,5143,5144,5145,43,8040,8005,5133,5138,0,6,5,16,30,5146,5147,5143,5142,43,5132,5139,5013,4912,0,6,5,16,30,5125,5148,5149,5129,43,7990,8104,5139,5132,0,6,5,16,30,5128,5150,5148,5125,43,5133,5141,5025,4925,0,6,5,16,30,5143,5151,5152,5144,43,8005,8119,5141,5133,0,6,5,16,30,5147,5153,5151,5143,43,5141,5140,5016,5025,0,6,5,16,30,5151,5154,5155,5152,43,8119,8108,5140,5141,0,6,5,16,30,5153,5156,5154,5151,43,5139,5142,5037,5013,0,6,5,16,30,5148,5157,5158,5149,43,8104,8134,5142,5139,0,6,5,16,30,5150,5159,5157,5148,43,5142,5138,4951,5037,0,6,5,16,30,5157,5142,5145,5158,43,8134,8040,5138,5142,0,6,5,16,30,5159,5146,5142,5157,43,5134,5143,8168,8008,0,6,5,16,30,5132,5160,5161,5133,43,4927,5065,5143,5134,0,6,5,16,30,5004,5003,5160,5132,43,5143,5130,8019,8168,0,6,5,16,30,5160,5124,5123,5161,43,5143,5065,4934,5130,0,6,5,16,30,5160,5003,5007,5124,43,5129,5130,4934,5124,0,6,5,16,30,5120,5124,5007,5115,43,5145,5144,4824,4835,0,6,5,16,30,5162,5163,4813,4814,43,4837,4823,5144,5145,0,6,5,16,30,4818,4817,5163,5162,43,5146,5145,4835,4834,0,6,5,16,30,5164,5162,4814,4815,43,4836,4837,5145,5146,0,6,5,16,30,4820,4818,5162,5164,43,5147,5144,4823,4861,0,6,5,16,30,5165,5163,4817,4835,43,4866,4824,5144,5147,0,6,5,16,30,4838,4813,5163,5165,43,5151,5150,4992,5159,0,6,5,16,30,5166,5167,4959,4958,43,5158,4991,5150,5151,0,6,5,16,30,4957,4956,5167,5166,43,5149,5152,5088,4940,0,6,5,16,30,5168,5169,5037,5040,43,4941,5089,5152,5149,0,6,5,16,30,4904,5044,5169,5168,43,5152,5148,4860,5088,0,6,5,16,30,5169,5170,5041,5037,43,5089,4865,5148,5152,0,6,5,16,30,5044,5046,5170,5169,43,8254,5153,5104,7896,0,6,5,16,30,5171,5172,5078,5079,43,7899,5105,5153,8254,0,6,5,16,30,5082,5081,5172,5171,43,5153,5146,4834,5104,0,6,5,16,30,5172,5164,4815,5078,43,5105,4836,5146,5153,0,6,5,16,30,5081,4820,5164,5172,43,5165,5003,4996,5166,0,6,5,16,30,5173,4969,4968,5174,43,5167,5168,4998,5163,0,6,5,16,30,5175,5176,4943,4942,43,5169,5171,4858,4804,0,6,5,16,30,5177,5178,4836,4806,43,5157,5001,5172,5177,0,6,5,16,30,4965,4964,5179,5180,43,5171,5176,5081,4858,0,6,5,16,30,5178,5181,5028,4836,43,5176,5170,4859,5081,0,6,5,16,30,5181,5182,5030,5028,43,5179,5178,4807,4848,0,6,5,16,30,5183,5184,4833,4832,43,4849,4808,5178,5179,0,6,5,16,30,4859,4858,5184,5183,43,5180,5178,4808,4914,0,6,5,16,30,5185,5184,4858,4894,43,4915,4807,5178,5180,0,6,5,16,30,4896,4833,5184,5185,43,5182,5181,4922,4948,0,6,5,16,30,5186,5187,4916,4917,43,4949,4923,5181,5182,0,6,5,16,30,4920,4919,5187,5186,43,5191,5185,4990,5006,0,6,5,16,30,5188,5189,4963,4962,43,5156,5002,5185,5191,0,6,5,16,30,4945,4944,5189,5188,43,5180,5186,5010,4915,0,6,5,16,30,5185,5190,4974,4896,43,4914,5011,5186,5180,0,6,5,16,30,4894,4976,5190,5185,43,5181,5188,5027,4922,0,6,5,16,30,5187,5191,4984,4916,43,4923,5026,5188,5181,0,6,5,16,30,4919,4982,5191,5187,43,5188,5187,5019,5027,0,6,5,16,30,5191,5192,4986,4984,43,5026,5018,5187,5188,0,6,5,16,30,4982,4983,5192,5191,43,5186,5189,5034,5010,0,6,5,16,30,5190,5193,4998,4974,43,5011,5035,5189,5186,0,6,5,16,30,4976,5000,5193,5190,43,5189,5182,4948,5034,0,6,5,16,30,5193,5186,4917,4998,43,5035,4949,5182,5189,0,6,5,16,30,5000,4920,5186,5193,43,5183,5190,5094,4982,0,6,5,16,30,5194,5195,5053,5056,43,4853,5098,5190,5183,0,6,5,16,30,4837,5029,5195,5194,43,5190,5184,4854,5094,0,6,5,16,30,5195,5196,5057,5053,43,5098,4987,5184,5190,0,6,5,16,30,5029,5031,5196,5195,43,5192,5194,4845,4809,0,6,5,16,30,5197,5198,4854,4853,43,5195,5192,4809,4850,0,6,5,16,30,5199,5197,4853,4860,43,4981,5093,5199,5198,0,6,5,16,30,5060,5059,5200,5201,43,5093,4855,5196,5199,0,6,5,16,30,5059,5061,5202,5200,43,8017,5137,5200,8306,0,6,5,16,30,5138,5137,5203,5204,43,5137,4929,5197,5200,0,6,5,16,30,5137,5141,5205,5203,43,5666,5203,5171,5169,0,6,5,16,30,5206,5207,5178,5177,43,4805,4862,5203,5666,0,6,5,16,30,4842,4841,5207,5206,43,5209,5204,5000,5162,0,6,5,16,30,5208,5209,4947,4946,43,5177,5172,5204,5209,0,6,5,16,30,5180,5179,5209,5208,43,5203,5208,5176,5171,0,6,5,16,30,5207,5210,5181,5178,43,4862,5082,5208,5203,0,6,5,16,30,4841,5033,5210,5207,43,5208,5202,5170,5176,0,6,5,16,30,5210,5211,5182,5181,43,5082,4863,5202,5208,0,6,5,16,30,5033,4863,5211,5210,43,5235,5234,4843,4846,0,6,5,16,30,5212,5213,4928,4927,43,4847,4844,5234,5235,0,6,5,16,30,4829,4828,5213,5212,43,5232,5235,4846,4810,0,6,5,16,30,5214,5212,4927,5019,43,4811,4847,5235,5232,0,6,5,16,30,4830,4829,5212,5214,43,5236,5232,4810,4851,0,6,5,16,30,5215,5214,5019,5021,43,4852,4811,5232,5236,0,6,5,16,30,4831,4830,5214,5215,43,5238,5237,4856,4860,0,6,5,16,30,5216,5217,5042,5041,43,4861,4857,5237,5238,0,6,5,16,30,4835,4834,5217,5216,43,5240,5239,4865,4870,0,6,5,16,30,5218,5219,5046,5045,43,4871,4866,5239,5240,0,6,5,16,30,4839,4838,5219,5218,43,5233,5240,4870,4815,0,6,5,16,30,5220,5218,5045,5048,43,4816,4871,5240,5233,0,6,5,16,30,4844,4839,5218,5220,43,5242,5241,4872,4877,0,6,5,16,30,5221,5222,4852,4851,43,4878,4873,5241,5242,0,6,5,16,30,5052,5051,5222,5221,43,5233,5242,4877,4816,0,6,5,16,30,5220,5221,4851,4844,43,4815,4878,5242,5233,0,6,5,16,30,5048,5052,5221,5220,43,8343,5243,5108,7909,0,6,5,16,30,5223,5224,5088,5089,43,7908,5109,5243,8343,0,6,5,16,30,5122,5121,5224,5223,43,5243,5234,4844,5108,0,6,5,16,30,5224,5213,4828,5088,43,5109,4843,5234,5243,0,6,5,16,30,5121,4928,5213,5224,43,8351,5244,5113,7941,0,6,5,16,30,5225,5226,5110,5113,43,7940,5114,5244,8351,0,6,5,16,30,5095,5094,5226,5225,43,5244,5241,4873,5113,0,6,5,16,30,5226,5222,5051,5110,43,5114,4872,5241,5244,0,6,5,16,30,5094,4852,5222,5226,43,5238,5245,5147,4861,0,6,5,16,30,5216,5227,5165,4835,43,4860,5148,5245,5238,0,6,5,16,30,5041,5170,5227,5216,43,5245,5239,4866,5147,0,6,5,16,30,5227,5219,4838,5165,43,5148,4865,5239,5245,0,6,5,16,30,5170,5046,5219,5227,43,5250,5249,4885,4845,0,6,5,16,30,5228,5229,4855,4854,43,4896,4933,5251,5246,0,6,5,16,30,5230,5231,5232,5233,43,5252,5251,4933,4955,0,6,5,16,30,5234,5232,5231,5235,43,5253,5252,4955,4964,0,6,5,16,30,5236,5234,5235,5237,43,5254,5253,4964,4969,0,6,5,16,30,5238,5236,5237,5239,43,5255,5254,4969,4978,0,6,5,16,30,5240,5238,5239,5241,43,5248,5256,5131,4884,0,6,5,16,30,5242,5243,5126,5130,43,5256,8361,7957,5131,0,6,5,16,30,5243,5244,5127,5126,43,5257,5247,4842,5193,0,6,5,16,30,5245,5246,5247,5248,43,5260,8372,7885,4827,0,6,5,16,30,5249,5250,4796,4795,43,4828,7886,8372,5260,0,6,5,16,30,4794,4793,5250,5249,43,5261,5260,4827,4830,0,6,5,16,30,5251,5249,4795,4801,43,4831,4828,5260,5261,0,6,5,16,30,4800,4794,5249,5251,43,5258,5261,4830,4803,0,6,5,16,30,5252,5251,4801,4805,43,4802,4831,5261,5258,0,6,5,16,30,4803,4800,5251,5252,43,5262,5259,4822,4839,0,6,5,16,30,5253,5254,4816,4819,43,4841,4821,5259,5262,0,6,5,16,30,4824,4823,5254,5253,43,5263,5262,4839,4838,0,6,5,16,30,5255,5253,4819,4821,43,4840,4841,5262,5263,0,6,5,16,30,4826,4824,5253,5255,43,5264,5259,4821,4852,0,6,5,16,30,5256,5254,4823,4831,43,4857,4822,5259,5264,0,6,5,16,30,4834,4816,5254,5256,43,5258,5266,4848,4802,0,6,5,16,30,5252,5257,4832,4803,43,4803,4853,5266,5258,0,6,5,16,30,4805,4837,5257,5252,43,5268,5269,4886,4849,0,6,5,16,30,5258,5259,4857,4859,43,4982,4983,5269,5268,0,6,5,16,30,5056,5055,5259,5258,43,5269,5267,4850,4886,0,6,5,16,30,5259,5260,4860,4857,43,4983,4981,5267,5269,0,6,5,16,30,5055,5060,5260,5259,43,5270,5271,4900,4899,0,6,5,16,30,5261,5262,4875,4876,43,4984,4985,5271,5270,0,6,5,16,30,5065,5064,5262,5261,43,5271,5272,4938,4900,0,6,5,16,30,5262,5263,4902,4875,43,4985,4986,5272,5271,0,6,5,16,30,5064,5069,5263,5262,43,5265,5273,5077,4856,0,6,5,16,30,5264,5265,5073,5042,43,4851,5072,5273,5265,0,6,5,16,30,5021,5020,5265,5264,43,5273,5272,4986,5077,0,6,5,16,30,5265,5263,5069,5073,43,5072,4938,5272,5273,0,6,5,16,30,5020,4902,5263,5265,43,8377,5274,5106,7902,0,6,5,16,30,5266,5267,5080,5083,43,7905,5107,5274,8377,0,6,5,16,30,5086,5085,5267,5266,43,5274,5263,4838,5106,0,6,5,16,30,5267,5255,4821,5080,43,5107,4840,5263,5274,0,6,5,16,30,5085,4826,5255,5267,43,5266,5275,5179,4848,0,6,5,16,30,5257,5268,5183,4832,43,4853,5183,5275,5266,0,6,5,16,30,4837,5194,5268,5257,43,5275,5268,4849,5179,0,6,5,16,30,5268,5258,4859,5183,43,5183,4982,5268,5275,0,6,5,16,30,5194,5056,5258,5268,43,5276,5267,4981,5198,0,6,5,16,30,5269,5260,5060,5201,43,5195,4850,5267,5276,0,6,5,16,30,5199,4860,5260,5269,43,5265,5277,5236,4851,0,6,5,16,30,5264,5270,5215,5021,43,4856,5237,5277,5265,0,6,5,16,30,5042,5217,5270,5264,43,5277,5264,4852,5236,0,6,5,16,30,5270,5256,4831,5215,43,5237,4857,5264,5277,0,6,5,16,30,5217,4834,5256,5270,43,5280,5279,5211,5212,0,6,5,16,30,5271,5272,5273,5274,43,4996,4989,5279,5280,0,6,5,16,30,4968,4967,5272,5271,43,5283,5282,5214,5215,0,6,5,16,30,5275,5276,5277,5278,43,5001,4990,5282,5283,0,6,5,16,30,4964,4963,5276,5275,43,5278,5285,5217,5210,0,6,5,16,30,5279,5280,5281,5282,43,4993,4992,5285,5278,0,6,5,16,30,4960,4959,5280,5279,43,5284,5286,5218,5216,0,6,5,16,30,5283,5284,5285,5286,43,4991,4994,5286,5284,0,6,5,16,30,4956,4954,5284,5283,43,5286,5287,5219,5218,0,6,5,16,30,5284,5287,5288,5285,43,4994,4995,5287,5286,0,6,5,16,30,4954,4952,5287,5284,43,5287,5288,5220,5219,0,6,5,16,30,5287,5289,5290,5288,43,4995,4999,5288,5287,0,6,5,16,30,4952,4951,5289,5287,43,5295,5280,5212,5227,0,6,5,16,30,5291,5271,5274,5292,43,5166,4996,5280,5295,0,6,5,16,30,5174,4968,5271,5291,43,5289,5290,5222,5221,0,6,5,16,30,5293,5294,5295,5296,43,4997,5000,5290,5289,0,6,5,16,30,4948,4947,5294,5293,43,5291,5294,5226,5223,0,6,5,16,30,5297,5298,5299,5300,43,4998,5168,5294,5291,0,6,5,16,30,4943,5176,5298,5297,43,5281,5291,5223,5213,0,6,5,16,30,5301,5297,5300,5302,43,5002,4998,5291,5281,0,6,5,16,30,4944,4943,5297,5301,43,5279,5292,5224,5211,0,6,5,16,30,5272,5303,5304,5273,43,4989,5079,5292,5279,0,6,5,16,30,4967,5027,5303,5272,43,5292,5278,5210,5224,0,6,5,16,30,5303,5279,5282,5304,43,5079,4993,5278,5292,0,6,5,16,30,5027,4960,5279,5303,43,5285,5293,5225,5217,0,6,5,16,30,5280,5305,5306,5281,43,4992,5150,5293,5285,0,6,5,16,30,4959,5167,5305,5280,43,5293,5284,5216,5225,0,6,5,16,30,5305,5283,5286,5306,43,5150,4991,5284,5293,0,6,5,16,30,5167,4956,5283,5305,43,5296,5283,5215,5228,0,6,5,16,30,5307,5275,5278,5308,43,5172,5001,5283,5296,0,6,5,16,30,5179,4964,5275,5307,43,5282,5297,5229,5214,0,6,5,16,30,5276,5309,5310,5277,43,4990,5185,5297,5282,0,6,5,16,30,4963,5189,5309,5276,43,5297,5281,5213,5229,0,6,5,16,30,5309,5301,5302,5310,43,5185,5002,5281,5297,0,6,5,16,30,5189,4944,5301,5309,43,5294,5298,5230,5226,0,6,5,16,30,5298,5311,5312,5299,43,5168,5201,5298,5294,0,6,5,16,30,5176,5313,5311,5298,43,5290,5299,5231,5222,0,6,5,16,30,5294,5314,5315,5295,43,5000,5204,5299,5290,0,6,5,16,30,4947,5209,5314,5294,43,5299,5296,5228,5231,0,6,5,16,30,5314,5307,5308,5315,43,5204,5172,5296,5299,0,6,5,16,30,5209,5179,5307,5314,43,5302,5301,4988,4902,0,6,5,16,30,5316,5317,5070,5067,43,5212,5211,5301,5302,0,6,5,16,30,5274,5273,5317,5316,43,5305,5304,4987,4859,0,6,5,16,30,5318,5319,5031,5030,43,5215,5214,5304,5305,0,6,5,16,30,5278,5277,5319,5318,43,5300,5307,4940,4939,0,6,5,16,30,5320,5321,5040,5039,43,5210,5217,5307,5300,0,6,5,16,30,5282,5281,5321,5320,43,5306,5308,4904,4941,0,6,5,16,30,5322,5323,4882,4904,43,5216,5218,5308,5306,0,6,5,16,30,5286,5285,5323,5322,43,5308,5309,4903,4904,0,6,5,16,30,5323,5324,4878,4882,43,5218,5219,5309,5308,0,6,5,16,30,5285,5288,5324,5323,43,5309,5310,4864,4903,0,6,5,16,30,5324,5325,4879,4878,43,5219,5220,5310,5309,0,6,5,16,30,5288,5290,5325,5324,43,5317,5302,4902,4901,0,6,5,16,30,5326,5316,5067,5066,43,5227,5212,5302,5317,0,6,5,16,30,5292,5274,5316,5326,43,5311,5312,4863,4888,0,6,5,16,30,5327,5328,4863,4862,43,5221,5222,5312,5311,0,6,5,16,30,5296,5295,5328,5327,43,5313,5316,4855,4887,0,6,5,16,30,5329,5330,5061,5058,43,5223,5226,5316,5313,0,6,5,16,30,5300,5299,5330,5329,43,5303,5313,4887,4854,0,6,5,16,30,5331,5329,5058,5057,43,5213,5223,5313,5303,0,6,5,16,30,5302,5300,5329,5331,43,5301,5314,5078,4988,0,6,5,16,30,5317,5332,5072,5070,43,5211,5224,5314,5301,0,6,5,16,30,5273,5304,5332,5317,43,5314,5300,4939,5078,0,6,5,16,30,5332,5320,5039,5072,43,5224,5210,5300,5314,0,6,5,16,30,5304,5282,5320,5332,43,5307,5315,5149,4940,0,6,5,16,30,5321,5333,5168,5040,43,5217,5225,5315,5307,0,6,5,16,30,5281,5306,5333,5321,43,5315,5306,4941,5149,0,6,5,16,30,5333,5322,4904,5168,43,5225,5216,5306,5315,0,6,5,16,30,5306,5286,5322,5333,43,5318,5305,4859,5170,0,6,5,16,30,5334,5318,5030,5182,43,5228,5215,5305,5318,0,6,5,16,30,5308,5278,5318,5334,43,5304,5319,5184,4987,0,6,5,16,30,5319,5335,5196,5031,43,5214,5229,5319,5304,0,6,5,16,30,5277,5310,5335,5319,43,5319,5303,4854,5184,0,6,5,16,30,5335,5331,5057,5196,43,5229,5213,5303,5319,0,6,5,16,30,5310,5302,5331,5335,43,5316,5320,5196,4855,0,6,5,16,30,5330,5336,5202,5061,43,5226,5230,5320,5316,0,6,5,16,30,5299,5312,5336,5330,43,5312,5321,5202,4863,0,6,5,16,30,5328,5337,5211,4863,43,5222,5231,5321,5312,0,6,5,16,30,5295,5315,5337,5328,43,5321,5318,5170,5202,0,6,5,16,30,5337,5334,5182,5211,43,5231,5228,5318,5321,0,6,5,16,30,5315,5308,5334,5337,43,5201,5168,5167,5324,0,6,5,16,30,5313,5176,5175,5338,43,5328,5327,5177,5209,0,6,5,16,30,5339,5340,5180,5208,43,5325,5326,5327,5328,0,6,5,16,30,5341,5342,5340,5339,43,5177,5327,5006,5157,0,6,5,16,30,5180,5340,4962,4965,43,5326,5191,5006,5327,0,6,5,16,30,5342,5188,4962,5340,43,5329,5326,5325,5330,0,6,5,16,30,5343,5342,5341,5344,43,5326,5329,5156,5191,0,6,5,16,30,5342,5343,4945,5188,43,5334,5333,5162,5161,0,6,5,16,30,5345,5346,4946,4949,43,5332,5331,5333,5334,0,6,5,16,30,5347,5348,5346,5345,43,5328,5209,5162,5333,0,6,5,16,30,5339,5208,4946,5346,43,5333,5331,5325,5328,0,6,5,16,30,5346,5348,5341,5339,43,5337,5336,5335,5338,0,6,5,16,30,5349,5350,5351,5352,43,5340,5337,5338,5339,0,6,5,16,30,5353,5349,5352,5354,43,5341,5337,5340,5342,0,6,5,16,30,5355,5349,5353,5356,43,5341,5344,5336,5337,0,6,5,16,30,5355,5357,5350,5349,43,5343,5345,5331,5332,0,6,5,16,30,5358,5359,5348,5347,43,5345,5330,5325,5331,0,6,5,16,30,5359,5344,5341,5348,43,5346,5339,5338,5347,0,6,5,16,30,5360,5354,5352,5361,43,5347,5338,5335,5348,0,6,5,16,30,5361,5352,5351,5362,43,5350,5349,5336,5344,0,6,5,16,30,5363,5364,5350,5357,43,5404,5418,5349,5350,0,6,5,16,30,5365,5366,5364,5363,43,5352,5351,5160,5004,0,6,5,16,30,5367,5368,4950,4953,43,5348,5335,5351,5352,0,6,5,16,30,5362,5351,5368,5367,43,5353,5005,5158,5354,0,6,5,16,30,5369,4955,4957,5370,43,5355,5151,5159,5356,0,6,5,16,30,5371,5166,4958,5372,43,5354,5158,5151,5355,0,6,5,16,30,5370,4957,5166,5371,43,5353,5352,5004,5005,0,6,5,16,30,5369,5367,4953,4955,43,5358,5357,5164,5155,0,6,5,16,30,5373,5374,5026,4966,43,5359,5358,5155,5003,0,6,5,16,30,5375,5373,4966,4969,43,5357,5360,5154,5164,0,6,5,16,30,5374,5376,4961,5026,43,5356,5159,5154,5360,0,6,5,16,30,5372,4958,4961,5376,43,5361,5363,5194,5192,0,6,5,16,30,5377,5378,5198,5197,43,4892,4897,5363,5361,0,6,5,16,30,4874,4873,5378,5377,43,5364,5361,5192,5195,0,6,5,16,30,5379,5377,5197,5199,43,4899,4892,5361,5364,0,6,5,16,30,4876,4874,5377,5379,43,5367,5368,5096,4984,0,6,5,16,30,5380,5381,5062,5065,43,5198,5199,5368,5367,0,6,5,16,30,5201,5200,5381,5380,43,5368,5365,4901,5096,0,6,5,16,30,5381,5382,5066,5062,43,5199,5196,5365,5368,0,6,5,16,30,5200,5202,5382,5381,43,8481,5369,5136,8016,0,6,5,16,30,5383,5384,5131,5134,43,8306,5200,5369,8481,0,6,5,16,30,5204,5203,5384,5383,43,5369,5366,4928,5136,0,6,5,16,30,5384,5385,5135,5131,43,5200,5197,5366,5369,0,6,5,16,30,5203,5205,5385,5384,43,5362,5372,5257,5193,0,6,5,16,30,5386,5387,5245,5248,43,4896,5246,5372,5362,0,6,5,16,30,5230,5233,5387,5386,43,5367,5373,5276,5198,0,6,5,16,30,5380,5388,5269,5201,43,4984,5270,5373,5367,0,6,5,16,30,5065,5261,5388,5380,43,5373,5364,5195,5276,0,6,5,16,30,5388,5379,5199,5269,43,5270,4899,5364,5373,0,6,5,16,30,5261,4876,5379,5388,43,5371,5374,5295,5227,0,6,5,16,30,5389,5390,5291,5292,43,5230,5298,5374,5371,0,6,5,16,30,5312,5311,5390,5389,43,5374,5370,5166,5295,0,6,5,16,30,5390,5391,5174,5291,43,5298,5201,5370,5374,0,6,5,16,30,5311,5313,5391,5390,43,5365,5375,5317,4901,0,6,5,16,30,5382,5392,5326,5066,43,5196,5320,5375,5365,0,6,5,16,30,5202,5336,5392,5382,43,5375,5371,5227,5317,0,6,5,16,30,5392,5389,5292,5326,43,5320,5230,5371,5375,0,6,5,16,30,5336,5312,5389,5392,43,5201,5324,5376,5370,0,6,5,16,30,5313,5338,5393,5391,43,5379,5380,5330,5345,0,6,5,16,30,5394,5395,5344,5359,43,5402,5378,5380,5379,0,6,5,16,30,5396,5397,5395,5394,43,5381,5380,5378,5382,0,6,5,16,30,5398,5395,5397,5399,43,5329,5330,5380,5381,0,6,5,16,30,5343,5344,5395,5398,43,5381,5163,5156,5329,0,6,5,16,30,5398,4942,4945,5343,43,5382,5167,5163,5381,0,6,5,16,30,5399,5175,4942,5398,43,5379,5345,5343,5403,0,6,5,16,30,5394,5359,5358,5400,43,5350,5344,5341,5384,0,6,5,16,30,5363,5357,5355,5401,43,5384,5383,5404,5350,0,6,5,16,30,5401,5402,5365,5363,43,5384,5323,5322,5383,0,6,5,16,30,5401,5403,5404,5402,43,5323,5384,5341,5342,0,6,5,16,30,5403,5401,5355,5356,43,5385,5359,5003,5165,0,6,5,16,30,5405,5375,4969,5173,43,5387,5388,5357,5358,0,6,5,16,30,5406,5407,5374,5373,43,5385,5387,5358,5359,0,6,5,16,30,5405,5406,5373,5375,43,5388,5386,5360,5357,0,6,5,16,30,5407,5408,5376,5374,43,5393,5394,5165,5166,0,6,5,16,30,5409,5410,5173,5174,43,5385,5165,5394,5392,0,6,5,16,30,5405,5173,5410,5411,43,5390,5391,5388,5387,0,6,5,16,30,5412,5413,5407,5406,43,5392,5390,5387,5385,0,6,5,16,30,5411,5412,5406,5405,43,5391,5389,5386,5388,0,6,5,16,30,5413,5414,5408,5407,43,5376,5393,5166,5370,0,6,5,16,30,5393,5409,5174,5391,43,5352,5353,5347,5348,0,6,5,16,30,5367,5369,5361,5362,43,5353,5354,5346,5347,0,6,5,16,30,5369,5370,5360,5361,43,5400,5401,5394,5393,0,6,5,16,30,5415,5416,5410,5409,43,5322,5323,5401,5400,0,6,5,16,30,5404,5403,5416,5415,43,5399,5401,5323,5342,0,6,5,16,30,5417,5416,5403,5356,43,5392,5394,5401,5399,0,6,5,16,30,5411,5410,5416,5417,43,5397,5398,5391,5390,0,6,5,16,30,5418,5419,5413,5412,43,5340,5339,5398,5397,0,6,5,16,30,5353,5354,5419,5418,43,5399,5397,5390,5392,0,6,5,16,30,5417,5418,5412,5411,43,5342,5340,5397,5399,0,6,5,16,30,5356,5353,5418,5417,43,5398,5396,5389,5391,0,6,5,16,30,5419,5420,5414,5413,43,5339,5346,5396,5398,0,6,5,16,30,5354,5360,5420,5419,43,5400,5395,5377,5322,0,6,5,16,30,5415,5421,5422,5404,43,5393,5376,5395,5400,0,6,5,16,30,5409,5393,5421,5415,43,5355,5396,5346,5354,0,6,5,16,30,5371,5420,5360,5370,43,5389,5396,5355,5356,0,6,5,16,30,5414,5420,5371,5372,43,5386,5389,5356,5360,0,6,5,16,30,5408,5414,5372,5376,43,5376,5324,5167,5382,0,6,5,16,30,5393,5338,5175,5399,43,5402,5379,5322,5377,0,6,5,16,30,5396,5394,5404,5422,43,5403,5383,5322,5379,0,6,5,16,30,5400,5402,5404,5394,43,5383,5403,5343,5404,0,6,5,16,30,5402,5400,5358,5365,43,5404,5343,5332,5418,0,6,5,16,30,5365,5358,5347,5366,43,5407,5406,4888,4889,0,6,5,16,30,5423,5424,4862,4861,43,4869,4864,5406,5407,0,6,5,16,30,4880,4879,5424,5423,43,5405,5407,4889,4883,0,6,5,16,30,5425,5423,4861,4865,43,4814,4869,5407,5405,0,6,5,16,30,4884,4880,5423,5425,43,5409,5408,4874,4879,0,6,5,16,30,5426,5427,4891,4890,43,4891,4890,5408,5409,0,6,5,16,30,4870,4869,5427,5426,43,5405,5409,4879,4814,0,6,5,16,30,5425,5426,4890,4884,43,4883,4891,5409,5405,0,6,5,16,30,4865,4870,5426,5425,43,5412,5410,4999,5160,0,6,5,16,30,5428,5429,4951,4950,43,5161,4997,5410,5412,0,6,5,16,30,4949,4948,5429,5428,43,8523,5411,5115,7964,0,6,5,16,30,5430,5431,5096,5099,43,7942,5112,5411,8523,0,6,5,16,30,5105,5104,5431,5430,43,5411,5408,4890,5115,0,6,5,16,30,5431,5427,4869,5096,43,5112,4874,5408,5411,0,6,5,16,30,5104,4891,5427,5431,43,5413,5414,5289,5221,0,6,5,16,30,5432,5433,5293,5296,43,5220,5288,5414,5413,0,6,5,16,30,5290,5289,5433,5432,43,5414,5410,4997,5289,0,6,5,16,30,5433,5429,4948,5293,43,5288,4999,5410,5414,0,6,5,16,30,5289,4951,5429,5433,43,5406,5415,5311,4888,0,6,5,16,30,5424,5434,5327,4862,43,4864,5310,5415,5406,0,6,5,16,30,4879,5325,5434,5424,43,5415,5413,5221,5311,0,6,5,16,30,5434,5432,5296,5327,43,5310,5220,5413,5415,0,6,5,16,30,5325,5290,5432,5434,43,5416,5412,5160,5351,0,6,5,16,30,5435,5428,4950,5368,43,5334,5161,5412,5416,0,6,5,16,30,5345,4949,5428,5435,43,5351,5335,5417,5416,0,6,5,16,30,5368,5351,5436,5435,43,5349,5417,5335,5336,0,6,5,16,30,5364,5436,5351,5350,43,5419,5418,5332,5334,0,6,5,16,30,5437,5366,5347,5345,43,5417,5349,5418,5419,0,6,5,16,30,5436,5364,5366,5437,43,5417,5419,5334,5416,0,6,5,16,30,5436,5437,5345,5435,43,5420,5402,5377,5424,0,6,5,16,30,5438,5396,5422,5439,43,5423,5378,5402,5420,0,6,5,16,30,5440,5397,5396,5438,43,5425,5376,5382,5422,0,6,5,16,30,5441,5393,5399,5442,43,5424,5377,5395,5421,0,6,5,16,30,5439,5422,5421,5443,43,5421,5395,5376,5425,0,6,5,16,30,5443,5421,5393,5441,43,5422,5382,5378,5423,0,6,5,16,30,5442,5399,5397,5440,43,5430,5429,5249,5250,0,6,5,16,30,5444,5445,5229,5228,43,4932,4931,5429,5430,0,6,5,16,30,5446,5447,5445,5444,43,5426,5431,4927,4928,0,6,5,16,30,5448,5449,5004,5135,43,5246,5251,5431,5426,0,6,5,16,30,5233,5232,5449,5448,43,5432,5431,5251,5252,0,6,5,16,30,5450,5449,5232,5234,43,4956,4927,5431,5432,0,6,5,16,30,5005,5004,5449,5450,43,5433,5432,5252,5253,0,6,5,16,30,5451,5450,5234,5236,43,4963,4956,5432,5433,0,6,5,16,30,5009,5005,5450,5451,43,5434,5433,5253,5254,0,6,5,16,30,5452,5451,5236,5238,43,4970,4963,5433,5434,0,6,5,16,30,5012,5009,5451,5452,43,5435,5434,5254,5255,0,6,5,16,30,5453,5452,5238,5240,43,4977,4970,5434,5435,0,6,5,16,30,5015,5012,5452,5453,43,4930,5135,5436,5428,0,6,5,16,30,5140,5136,5454,5455,43,5436,8546,8361,5256,0,6,5,16,30,5454,5456,5244,5243,43,5135,8014,8546,5436,0,6,5,16,30,5136,5139,5456,5454,43,5437,5427,5247,5257,0,6,5,16,30,5457,5458,5246,5245,43,5197,4929,5427,5437,0,6,5,16,30,5205,5141,5458,5457,43,5437,5438,5366,5197,0,6,5,16,30,5457,5459,5385,5205,43,5257,5372,5438,5437,0,6,5,16,30,5245,5387,5459,5457,43,5438,5426,4928,5366,0,6,5,16,30,5459,5448,5135,5385,43,5372,5246,5426,5438,0,6,5,16,30,5387,5233,5448,5459,43,5442,5440,4884,4912,0,6,5,16,30,5460,5461,5130,5129,43,4911,4885,5440,5442,0,6,5,16,30,4893,4855,5461,5460,43,5444,5445,4929,4930,0,6,5,16,30,5462,5463,5141,5140,43,4931,4932,5445,5444,0,6,5,16,30,5447,5446,5463,5462,43,5441,5446,4933,4896,0,6,5,16,30,5464,5465,5231,5230,43,4897,4898,5446,5441,0,6,5,16,30,4873,4872,5465,5464,43,5447,5443,4926,4952,0,6,5,16,30,5466,5467,4922,4923,43,4951,4925,5443,5447,0,6,5,16,30,5145,5144,5467,5466,43,5448,5446,4898,4957,0,6,5,16,30,5468,5465,4872,4924,43,4955,4933,5446,5448,0,6,5,16,30,5235,5231,5465,5468,43,5449,5448,4957,4962,0,6,5,16,30,5469,5468,4924,4932,43,4964,4955,5448,5449,0,6,5,16,30,5237,5235,5468,5469,43,5450,5449,4962,4971,0,6,5,16,30,5470,5469,4932,4934,43,4969,4964,5449,5450,0,6,5,16,30,5239,5237,5469,5470,43,5451,5450,4971,4976,0,6,5,16,30,5471,5470,4934,4940,43,4978,4969,5450,5451,0,6,5,16,30,5241,5239,5470,5471,43,5442,5452,5014,4911,0,6,5,16,30,5460,5472,4977,4893,43,4912,5013,5452,5442,0,6,5,16,30,5129,5149,5472,5460,43,5443,5454,5024,4926,0,6,5,16,30,5467,5473,4978,4922,43,4925,5025,5454,5443,0,6,5,16,30,5144,5152,5473,5467,43,5454,5453,5015,5024,0,6,5,16,30,5473,5474,4980,4978,43,5025,5016,5453,5454,0,6,5,16,30,5152,5155,5474,5473,43,5452,5455,5038,5014,0,6,5,16,30,5472,5475,5001,4977,43,5013,5037,5455,5452,0,6,5,16,30,5149,5158,5475,5472,43,5455,5447,4952,5038,0,6,5,16,30,5475,5466,4923,5001,43,5037,4951,5447,5455,0,6,5,16,30,5158,5145,5466,5475,43,5439,5456,5193,4842,0,6,5,16,30,5476,5477,5248,5247,43,4845,5194,5456,5439,0,6,5,16,30,4854,5198,5477,5476,43,5440,5457,5248,4884,0,6,5,16,30,5461,5478,5242,5130,43,4885,5249,5457,5440,0,6,5,16,30,4855,5229,5478,5461,43,5439,5458,5250,4845,0,6,5,16,30,5476,5479,5228,4854,43,4842,5247,5458,5439,0,6,5,16,30,5247,5246,5479,5476,43,5456,5459,5362,5193,0,6,5,16,30,5477,5480,5386,5248,43,5194,5363,5459,5456,0,6,5,16,30,5198,5378,5480,5477,43,5459,5441,4896,5362,0,6,5,16,30,5480,5464,5230,5386,43,5363,4897,5441,5459,0,6,5,16,30,5378,4873,5464,5480,43,5249,5429,5460,5457,0,6,5,16,30,5229,5445,5481,5478,43,5460,5444,4930,5428,0,6,5,16,30,5481,5462,5140,5455,43,5429,4931,5444,5460,0,6,5,16,30,5445,5447,5462,5481,43,5458,5461,5430,5250,0,6,5,16,30,5479,5482,5444,5228,43,5247,5427,5461,5458,0,6,5,16,30,5246,5458,5482,5479,43,5461,5445,4932,5430,0,6,5,16,30,5482,5463,5446,5444,43,5427,4929,5445,5461,0,6,5,16,30,5458,5141,5463,5482,43,5436,5256,5248,5428,0,6,5,16,30,5454,5243,5242,5455,43,5463,5462,5464,5465,0,6,5,16,30,5483,5484,5485,5486,43,5467,5466,5428,5248,0,6,5,16,30,5487,5488,5455,5242,43,5465,5464,5466,5467,0,6,5,16,30,5486,5485,5488,5487,43,5469,5468,5457,5460,0,6,5,16,30,5489,5490,5478,5481,43,5462,5463,5468,5469,0,6,5,16,30,5484,5483,5490,5489,43,5466,5469,5460,5428,0,6,5,16,30,5488,5489,5481,5455,43,5464,5462,5469,5466,0,6,5,16,30,5485,5484,5489,5488,43,5468,5467,5248,5457,0,6,5,16,30,5490,5487,5242,5478,43,5463,5465,5467,5468,0,6,5,16,30,5483,5486,5487,5490,43,5480,5453,5016,5474,0,6,5,16,30,5491,5474,5155,5492,43,5473,5015,5453,5480,0,6,5,16,30,5493,4980,5474,5491,43,5471,5019,5187,5479,0,6,5,16,30,5494,4986,5192,5495,43,5479,5187,5018,5472,0,6,5,16,30,5495,5192,4983,5496,43,5478,5140,8108,8591,0,6,5,16,30,5497,5154,5156,5498,43,5474,5016,5140,5478,0,6,5,16,30,5492,5155,5154,5497,43,8587,8114,5021,5470,0,6,5,16,30,5499,4993,4991,5500,43,5470,5021,5020,5476,0,6,5,16,30,5500,4991,4989,5501,43,5476,5020,5022,5477,0,6,5,16,30,5501,4989,4987,5502,43,5477,5022,5019,5471,0,6,5,16,30,5502,4987,4986,5494,43,5472,5018,5017,5475,0,6,5,16,30,5496,4983,4981,5503,43,5475,5017,5015,5473,0,6,5,16,30,5503,4981,4980,5493,43,5503,5502,5493,5512,0,6,5,16,30,5504,5505,5506,5507,43,5513,5492,5502,5503,0,6,5,16,30,5508,5509,5505,5504,43,5509,5496,5501,5504,0,6,5,16,30,5510,5511,5512,5513,43,5504,5501,5495,5510,0,6,5,16,30,5513,5512,5514,5515,43,5505,5500,8615,8636,0,6,5,16,30,5516,5517,5518,5519,43,5512,5493,5500,5505,0,6,5,16,30,5507,5506,5517,5516,43,8630,8621,5498,5507,0,6,5,16,30,5520,5521,5522,5523,43,5507,5498,5497,5508,0,6,5,16,30,5523,5522,5524,5525,43,5508,5497,5499,5506,0,6,5,16,30,5525,5524,5526,5527,43,5506,5499,5496,5509,0,6,5,16,30,5527,5526,5511,5510,43,5510,5495,5494,5511,0,6,5,16,30,5515,5514,5528,5529,43,5511,5494,5492,5513,0,6,5,16,30,5529,5528,5509,5508,43,8640,5514,5505,8636,0,6,5,16,30,5530,5531,5516,5519,43,8630,5507,5514,8640,0,6,5,16,30,5520,5523,5531,5530,43,5514,5515,5512,5505,0,6,5,16,30,5531,5532,5507,5516,43,5507,5508,5515,5514,0,6,5,16,30,5523,5525,5532,5531,43,5515,5516,5503,5512,0,6,5,16,30,5532,5533,5504,5507,43,5508,5506,5516,5515,0,6,5,16,30,5525,5527,5533,5532,43,5516,5517,5513,5503,0,6,5,16,30,5533,5534,5508,5504,43,5506,5509,5517,5516,0,6,5,16,30,5527,5510,5534,5533,43,5518,5517,5509,5504,0,6,5,16,30,5535,5534,5510,5513,43,5511,5513,5517,5518,0,6,5,16,30,5529,5508,5534,5535,43,5511,5518,5504,5510,0,6,5,16,30,5529,5535,5513,5515,43,5523,5519,5489,5491,0,6,5,16,30,5536,5537,5538,5539,43,5524,5520,5519,5523,0,6,5,16,30,5540,5541,5537,5536,43,5525,5521,5520,5524,0,6,5,16,30,5540,5542,5541,5540,43,5526,5522,5521,5525,0,6,5,16,30,5540,5543,5542,5540,43,5492,5494,5522,5526,0,6,5,16,30,5509,5528,5543,5540,43,5519,5527,5488,5489,0,6,5,16,30,5537,5544,5545,5538,43,5520,5528,5527,5519,0,6,5,16,30,5541,5546,5544,5537,43,5521,5529,5528,5520,0,6,5,16,30,5542,5547,5546,5541,43,5522,5530,5529,5521,0,6,5,16,30,5543,5548,5547,5542,43,5494,5495,5530,5522,0,6,5,16,30,5528,5514,5548,5543,43,5535,5531,5484,5487,0,6,5,16,30,5549,5550,5551,5552,43,5536,5532,5531,5535,0,6,5,16,30,5553,5554,5550,5549,43,5537,5533,5532,5536,0,6,5,16,30,5555,5556,5554,5553,43,5538,5534,5533,5537,0,6,5,16,30,5557,5558,5556,5555,43,5496,5499,5534,5538,0,6,5,16,30,5511,5526,5558,5557,43,5531,5539,5486,5484,0,6,5,16,30,5550,5559,5560,5551,43,5532,5540,5539,5531,0,6,5,16,30,5554,5561,5559,5550,43,5533,5541,5540,5532,0,6,5,16,30,5556,5562,5561,5554,43,5534,5542,5541,5533,0,6,5,16,30,5558,5563,5562,5556,43,5499,5497,5542,5534,0,6,5,16,30,5526,5524,5563,5558,43,5539,5543,5485,5486,0,6,5,16,30,5559,5564,5565,5560,43,5540,5544,5543,5539,0,6,5,16,30,5561,5566,5564,5559,43,5541,5545,5544,5540,0,6,5,16,30,5562,5567,5566,5561,43,5543,8672,8604,5485,0,6,5,16,30,5564,5568,5569,5565,43,5544,8673,8672,5543,0,6,5,16,30,5566,5570,5568,5564,43,5545,8674,8673,5544,0,6,5,16,30,5567,5571,5570,5566,43,5550,5546,5490,5483,0,6,5,16,30,5572,5573,5574,5575,43,5551,5547,5546,5550,0,6,5,16,30,5576,5577,5573,5572,43,5552,5548,5547,5551,0,6,5,16,30,5578,5579,5577,5576,43,5553,5549,5548,5552,0,6,5,16,30,5580,5581,5579,5578,43,5500,5493,5549,5553,0,6,5,16,30,5517,5506,5581,5580,43,8683,5550,5483,8610,0,6,5,16,30,5582,5572,5575,5583,43,8684,5551,5550,8683,0,6,5,16,30,5584,5576,5572,5582,43,8685,5552,5551,8684,0,6,5,16,30,5585,5578,5576,5584,43,8686,5553,5552,8685,0,6,5,16,30,5586,5580,5578,5585,43,8615,5500,5553,8686,0,6,5,16,30,5518,5517,5580,5586,43,5527,5554,5482,5488,0,6,5,16,30,5544,5587,5588,5545,43,5528,5555,5554,5527,0,6,5,16,30,5546,5589,5587,5544,43,5529,5556,5555,5528,0,6,5,16,30,5547,5590,5589,5546,43,5530,5557,5556,5529,0,6,5,16,30,5548,5591,5590,5547,43,5495,5501,5557,5530,0,6,5,16,30,5514,5512,5591,5548,43,5554,5535,5487,5482,0,6,5,16,30,5587,5549,5552,5588,43,5555,5536,5535,5554,0,6,5,16,30,5589,5553,5549,5587,43,5556,5537,5536,5555,0,6,5,16,30,5590,5555,5553,5589,43,5557,5538,5537,5556,0,6,5,16,30,5591,5557,5555,5590,43,5501,5496,5538,5557,0,6,5,16,30,5512,5511,5557,5591,43,5558,5523,5491,5481,0,6,5,16,30,5592,5536,5539,5593,43,5559,5524,5523,5558,0,6,5,16,30,5594,5540,5536,5592,43,5560,5525,5524,5559,0,6,5,16,30,5595,5540,5540,5594,43,5561,5526,5525,5560,0,6,5,16,30,5596,5540,5540,5595,43,5502,5492,5526,5561,0,6,5,16,30,5505,5509,5540,5596,43,5546,5558,5481,5490,0,6,5,16,30,5573,5592,5593,5574,43,5547,5559,5558,5546,0,6,5,16,30,5577,5594,5592,5573,43,5548,5560,5559,5547,0,6,5,16,30,5579,5595,5594,5577,43,5549,5561,5560,5548,0,6,5,16,30,5581,5596,5595,5579,43,5493,5502,5561,5549,0,6,5,16,30,5506,5505,5596,5581,43,5490,5481,5562,5563,0,6,5,16,30,5574,5593,5597,5598,43,5481,5491,5564,5562,0,6,5,16,30,5593,5539,5599,5597,43,5482,5487,5565,5566,0,6,5,16,30,5588,5552,5600,5601,43,5488,5482,5566,5567,0,6,5,16,30,5545,5588,5601,5602,43,8610,5483,5568,8702,0,6,5,16,30,5583,5575,5603,5604,43,5483,5490,5563,5568,0,6,5,16,30,5575,5574,5598,5603,43,5485,8604,8703,5569,0,6,5,16,30,5565,5569,5605,5606,43,5486,5485,5569,5570,0,6,5,16,30,5560,5565,5606,5607,43,5484,5486,5570,5571,0,6,5,16,30,5551,5560,5607,5608,43,5487,5484,5571,5565,0,6,5,16,30,5552,5551,5608,5600,43,5489,5488,5567,5572,0,6,5,16,30,5538,5545,5602,5609,43,5491,5489,5572,5564,0,6,5,16,30,5539,5538,5609,5599,43,8709,8674,5545,5573,0,6,5,16,30,5610,5571,5567,5611,43,5573,5545,5541,5574,0,6,5,16,30,5611,5567,5562,5612,43,5576,5542,5497,5575,0,6,5,16,30,5613,5563,5524,5614,43,5574,5541,5542,5576,0,6,5,16,30,5612,5562,5563,5613,43,5577,5498,8621,8714,0,6,5,16,30,5615,5522,5521,5616,43,5575,5497,5498,5577,0,6,5,16,30,5614,5524,5522,5615,43,5579,5575,5577,5578,0,6,5,16,30,5617,5614,5615,5618,43,5578,5577,8714,8717,0,6,5,16,30,5618,5615,5616,5619,43,5580,5574,5576,5581,0,6,5,16,30,5620,5612,5613,5621,43,5581,5576,5575,5579,0,6,5,16,30,5621,5613,5614,5617,43,5582,5573,5574,5580,0,6,5,16,30,5622,5611,5612,5620,43,8721,8709,5573,5582,0,6,5,16,30,5623,5610,5611,5622,43,8723,8721,5582,5583,0,6,5,16,30,5624,5623,5622,5625,43,5583,5582,5580,5584,0,6,5,16,30,5625,5622,5620,5626,43,5585,5581,5579,5586,0,6,5,16,30,5627,5621,5617,5628,43,5584,5580,5581,5585,0,6,5,16,30,5626,5620,5621,5627,43,5587,5578,8717,8727,0,6,5,16,30,5629,5618,5619,5630,43,5586,5579,5578,5587,0,6,5,16,30,5628,5617,5618,5629,43,5588,5586,5587,5589,0,6,5,16,30,5631,5628,5629,5632,43,5589,5587,8727,8731,0,6,5,16,30,5632,5629,5630,5633,43,5590,5584,5585,5591,0,6,5,16,30,5634,5626,5627,5635,43,5591,5585,5586,5588,0,6,5,16,30,5635,5627,5628,5631,43,5592,5583,5584,5590,0,6,5,16,30,5636,5625,5626,5634,43,8735,8723,5583,5592,0,6,5,16,30,5637,5624,5625,5636,43,8736,8735,5592,5593,0,6,5,16,30,5638,5637,5636,5639,43,5593,5592,5590,5594,0,6,5,16,30,5639,5636,5634,5640,43,5596,5591,5588,5595,0,6,5,16,30,5641,5635,5631,5642,43,5594,5590,5591,5596,0,6,5,16,30,5640,5634,5635,5641,43,5597,5589,8731,8742,0,6,5,16,30,5643,5632,5633,5644,43,5595,5588,5589,5597,0,6,5,16,30,5642,5631,5632,5643,43,5598,5595,5597,5599,0,6,5,16,30,5645,5642,5643,5646,43,5599,5597,8742,8745,0,6,5,16,30,5646,5643,5644,5647,43,5601,5594,5596,5600,0,6,5,16,30,5648,5640,5641,5649,43,5600,5596,5595,5598,0,6,5,16,30,5649,5641,5642,5645,43,5602,5593,5594,5601,0,6,5,16,30,5650,5639,5640,5648,43,8749,8736,5593,5602,0,6,5,16,30,5651,5638,5639,5650,43,8751,8749,5602,5603,0,6,5,16,30,5652,5651,5650,5653,43,5603,5602,5601,5604,0,6,5,16,30,5653,5650,5648,5654,43,5605,5600,5598,5606,0,6,5,16,30,5655,5649,5645,5656,43,5604,5601,5600,5605,0,6,5,16,30,5654,5648,5649,5655,43,5607,5599,8745,8755,0,6,5,16,30,5657,5646,5647,5658,43,5606,5598,5599,5607,0,6,5,16,30,5656,5645,5646,5657,43,5608,5606,5607,5609,0,6,5,16,30,5659,5656,5657,5660,43,5609,5607,8755,8759,0,6,5,16,30,5660,5657,5658,5661,43,5610,5604,5605,5611,0,6,5,16,30,5662,5654,5655,5663,43,5611,5605,5606,5608,0,6,5,16,30,5663,5655,5656,5659,43,5612,5603,5604,5610,0,6,5,16,30,5664,5653,5654,5662,43,8763,8751,5603,5612,0,6,5,16,30,5665,5652,5653,5664,43,5611,5613,5612,5610,0,6,5,16,30,5663,5666,5664,5662,43,5608,5609,5613,5611,0,6,5,16,30,5659,5660,5666,5663,43,5613,8765,8763,5612,0,6,5,16,30,5666,5667,5665,5664,43,5609,8759,8765,5613,0,6,5,16,30,5660,5661,5667,5666,43,5615,5614,5480,5474,0,6,5,16,30,5668,5669,5491,5492,43,5563,5562,5614,5615,0,6,5,16,30,5598,5597,5669,5668,43,5614,5624,5473,5480,0,6,5,16,30,5669,5670,5493,5491,43,5562,5564,5624,5614,0,6,5,16,30,5597,5599,5670,5669,43,5616,5623,5471,5479,0,6,5,16,30,5671,5672,5494,5495,43,5566,5565,5623,5616,0,6,5,16,30,5601,5600,5672,5671,43,5622,5616,5479,5472,0,6,5,16,30,5673,5671,5495,5496,43,5567,5566,5616,5622,0,6,5,16,30,5602,5601,5671,5673,43,8775,5617,5478,8591,0,6,5,16,30,5674,5675,5497,5498,43,8702,5568,5617,8775,0,6,5,16,30,5604,5603,5675,5674,43,5617,5615,5474,5478,0,6,5,16,30,5675,5668,5492,5497,43,5568,5563,5615,5617,0,6,5,16,30,5603,5598,5668,5675,43,5621,8774,8587,5470,0,6,5,16,30,5676,5677,5499,5500,43,5569,8703,8774,5621,0,6,5,16,30,5606,5605,5677,5676,43,5618,5621,5470,5476,0,6,5,16,30,5678,5676,5500,5501,43,5570,5569,5621,5618,0,6,5,16,30,5607,5606,5676,5678,43,5619,5618,5476,5477,0,6,5,16,30,5679,5678,5501,5502,43,5571,5570,5618,5619,0,6,5,16,30,5608,5607,5678,5679,43,5623,5619,5477,5471,0,6,5,16,30,5672,5679,5502,5494,43,5565,5571,5619,5623,0,6,5,16,30,5600,5608,5679,5672,43,5620,5622,5472,5475,0,6,5,16,30,5680,5673,5496,5503,43,5572,5567,5622,5620,0,6,5,16,30,5609,5602,5673,5680,43,5624,5620,5475,5473,0,6,5,16,30,5670,5680,5503,5493,43,5564,5572,5620,5624,0,6,5,16,30,5599,5609,5680,5670,43,5625,5422,5423,5626,0,6,5,16,30,5681,5442,5440,5682,43,5627,5421,5425,5628,0,6,5,16,30,5683,5443,5441,5684,43,5629,5424,5421,5627,0,6,5,16,30,5685,5439,5443,5683,43,5628,5425,5422,5625,0,6,5,16,30,5684,5441,5442,5681,43,5626,5423,5420,5630,0,6,5,16,30,5682,5440,5438,5686,43,5630,5420,5424,5629,0,6,5,16,30,5686,5438,5439,5685,43,5632,5630,5629,5631,0,6,5,16,30,5687,5686,5685,5688,43,5633,5626,5630,5632,0,6,5,16,30,5689,5682,5686,5687,43,5634,5628,5625,5635,0,6,5,16,30,5690,5684,5681,5691,43,5631,5629,5627,5636,0,6,5,16,30,5688,5685,5683,5692,43,5636,5627,5628,5634,0,6,5,16,30,5692,5683,5684,5690,43,5635,5625,5626,5633,0,6,5,16,30,5691,5681,5682,5689,43,5633,5632,5631,5636,0,6,5,16,30,5689,5687,5688,5692,43,5634,5635,5633,5636,0,6,5,16,30,5690,5691,5689,5692,43,5645,4978,5451,5637,0,6,5,16,30,5693,5241,5471,5694,43,5637,5451,4976,5647,0,6,5,16,30,5694,5471,4940,5695,43,5638,5435,5255,5639,0,6,5,16,30,5696,5453,5240,5697,43,5646,4977,5435,5638,0,6,5,16,30,5698,5015,5453,5696,43,5639,5255,4978,5645,0,6,5,16,30,5697,5240,5241,5693,43,5640,5128,4979,5644,0,6,5,16,30,5699,5118,5016,5700,43,5649,4974,5128,5640,0,6,5,16,30,5701,4939,5118,5699,43,5643,4980,5076,5641,0,6,5,16,30,5702,4941,5025,5703,43,5641,5076,4975,5648,0,6,5,16,30,5703,5025,4938,5704,43,5644,4979,5069,5642,0,6,5,16,30,5700,5016,5014,5705,43,5642,5069,4977,5646,0,6,5,16,30,5705,5014,5015,5698,43,5647,4976,4980,5643,0,6,5,16,30,5695,4940,4941,5702,43,5648,4975,4974,5649,0,6,5,16,30,5704,4938,4939,5701,43,5651,5648,5649,5650,0,6,5,16,30,5706,5704,5701,5707,43,5652,5647,5643,5656,0,6,5,16,30,5708,5695,5702,5709,43,5657,5642,5646,5653,0,6,5,16,30,5710,5705,5698,5711,43,5655,5644,5642,5657,0,6,5,16,30,5712,5700,5705,5710,43,5658,5641,5648,5651,0,6,5,16,30,5713,5703,5704,5706,43,5656,5643,5641,5658,0,6,5,16,30,5709,5702,5703,5713,43,5650,5649,5640,5659,0,6,5,16,30,5707,5701,5699,5714,43,5659,5640,5644,5655,0,6,5,16,30,5714,5699,5700,5712,43,5660,5639,5645,5654,0,6,5,16,30,5715,5697,5693,5716,43,5653,5646,5638,5661,0,6,5,16,30,5711,5698,5696,5717,43,5661,5638,5639,5660,0,6,5,16,30,5717,5696,5697,5715,43,5662,5637,5647,5652,0,6,5,16,30,5718,5694,5695,5708,43,5654,5645,5637,5662,0,6,5,16,30,5716,5693,5694,5718,43,5667,4804,4829,5668,0,6,5,16,30,5719,4806,4802,5720,43,5668,4829,4826,5669,0,6,5,16,30,5720,4802,4798,5721,43,5669,4826,7884,8825,0,6,5,16,30,5721,4798,4797,5722,43,5670,5663,4806,5063,0,6,5,16,30,5723,4846,4843,5724,43,5063,4806,4805,5671,0,6,5,16,30,5724,4843,4842,5725,43,5064,5664,5663,5670,0,6,5,16,30,5726,4847,4846,5723,43,5672,4799,5664,5064,0,6,5,16,30,5727,4848,4847,5726,43,5665,5673,8829,8819,0,6,5,16,30,5091,5728,5729,5092,43,4799,5672,5673,5665,0,6,5,16,30,4848,5727,5728,5091,43,4804,5667,5674,5169,0,6,5,16,30,4806,5719,5730,5177,43,5666,5675,5671,4805,0,6,5,16,30,5206,5731,5725,4842,43,5169,5674,5675,5666,0,6,5,16,30,5177,5730,5731,5206,43,5039,5668,5669,5040,0,6,5,16,30,5732,5720,5721,5733,43,5040,5669,8825,8138,0,6,5,16,30,5733,5721,5722,5734,43,5046,5670,5063,5041,0,6,5,16,30,5735,5723,5724,5736,43,5041,5063,5671,5042,0,6,5,16,30,5736,5724,5725,5737,43,5044,5064,5670,5046,0,6,5,16,30,5738,5726,5723,5735,43,5045,5672,5064,5044,0,6,5,16,30,5739,5727,5726,5738,43,5673,5119,8144,8829,0,6,5,16,30,5728,5740,5741,5729,43,5672,5045,5119,5673,0,6,5,16,30,5727,5739,5740,5728,43,5675,5205,5042,5671,0,6,5,16,30,5731,5742,5737,5725,43,5674,5173,5205,5675,0,6,5,16,30,5730,5743,5742,5731,43,5055,5676,5677,5056,0,6,5,16,30,5744,5745,5746,5747,43,5676,5045,5044,5677,0,6,5,16,30,5745,5739,5738,5746,43,5056,5677,5678,5057,0,6,5,16,30,5747,5746,5748,5749,43,5677,5044,5046,5678,0,6,5,16,30,5746,5738,5735,5748,43,5060,5681,5679,5058,0,6,5,16,30,5750,5751,5752,5753,43,5681,5041,5042,5679,0,6,5,16,30,5751,5736,5737,5752,43,5057,5678,5681,5060,0,6,5,16,30,5749,5748,5751,5750,43,5678,5046,5041,5681,0,6,5,16,30,5748,5735,5736,5751,43,5061,5682,8841,8164,0,6,5,16,30,5754,5755,5756,5757,43,5682,5040,8138,8841,0,6,5,16,30,5755,5733,5734,5756,43,5062,5683,5682,5061,0,6,5,16,30,5758,5759,5755,5754,43,5683,5039,5040,5682,0,6,5,16,30,5759,5732,5733,5755,43,5119,5684,8833,8144,0,6,5,16,30,5740,5760,5761,5741,43,5684,5121,8156,8833,0,6,5,16,30,5760,5762,5763,5761,43,5045,5676,5684,5119,0,6,5,16,30,5739,5745,5760,5740,43,5676,5055,5121,5684,0,6,5,16,30,5745,5744,5762,5760,43,5205,5686,5679,5042,0,6,5,16,30,5742,5764,5752,5737,43,5686,5207,5058,5679,0,6,5,16,30,5764,5765,5753,5752,43,5173,5685,5686,5205,0,6,5,16,30,5743,5766,5764,5742,43,5685,5175,5207,5686,0,6,5,16,30,5766,5767,5765,5764,43,5048,5687,5688,5049,0,6,5,16,30,5768,5769,5770,5771,43,5687,5055,5056,5688,0,6,5,16,30,5769,5744,5747,5770,43,5049,5688,5689,5047,0,6,5,16,30,5771,5770,5772,5773,43,5688,5056,5057,5689,0,6,5,16,30,5770,5747,5749,5772,43,5052,5692,5690,5051,0,6,5,16,30,5774,5775,5776,5777,43,5692,5060,5058,5690,0,6,5,16,30,5775,5750,5753,5776,43,5047,5689,5692,5052,0,6,5,16,30,5773,5772,5775,5774,43,5689,5057,5060,5692,0,6,5,16,30,5772,5749,5750,5775,43,5053,5693,8854,8153,0,6,5,16,30,5778,5779,5780,5781,43,5693,5061,8164,8854,0,6,5,16,30,5779,5754,5757,5780,43,5054,5694,5693,5053,0,6,5,16,30,5782,5783,5779,5778,43,5694,5062,5061,5693,0,6,5,16,30,5783,5758,5754,5779,43,5121,5695,8846,8156,0,6,5,16,30,5762,5784,5785,5763,43,5695,5120,8147,8846,0,6,5,16,30,5784,5786,5787,5785,43,5055,5687,5695,5121,0,6,5,16,30,5744,5769,5784,5762,43,5687,5048,5120,5695,0,6,5,16,30,5769,5768,5786,5784,43,5207,5697,5690,5058,0,6,5,16,30,5765,5788,5776,5753,43,5697,5206,5051,5690,0,6,5,16,30,5788,5789,5777,5776,43,5175,5696,5697,5207,0,6,5,16,30,5767,5790,5788,5765,43,5696,5174,5206,5697,0,6,5,16,30,5790,5791,5789,5788,43,8153,8859,5698,5053,0,5,44,50,6,5781,5792,5793,5778,43,5053,5698,5699,5054,0,6,0,161,30,5778,5793,5794,5782,43,5174,5700,5701,5206,0,5,44,50,6,5791,5795,5796,5789,43,5206,5701,5702,5051,0,5,44,50,6,5789,5796,5797,5777,43,5051,5702,5703,5052,0,5,44,50,6,5777,5797,5798,5774,43,5120,5048,5707,5705,0,6,5,16,30,5786,5768,5799,5800,43,8147,5120,5705,5783,0,6,5,16,30,5787,5786,5800,5801,43,5049,5047,5708,5706,0,6,5,16,30,5771,5773,5802,5803,43,5048,5049,5706,5707,0,6,5,16,30,5768,5771,5803,5799,43,5047,5052,5703,5708,0,6,5,16,30,5773,5774,5798,5802,43,5680,5712,5711,5059,0,5,44,50,6,5804,5805,5806,5807,43,5712,5683,5062,5711,0,44,16,30,50,5805,5759,5758,5806,43,5043,5709,5712,5680,0,5,44,50,6,5808,5809,5805,5804,43,5709,5039,5683,5712,0,44,16,30,50,5809,5732,5759,5805,43,5691,5713,5710,5050,0,5,44,50,6,5810,5811,5812,5813,43,5713,5694,5054,5710,0,44,16,30,50,5811,5783,5782,5812,43,5059,5711,5713,5691,0,5,44,935,6,5807,5806,5811,5810,43,5711,5062,5694,5713,0,44,16,30,935,5806,5758,5783,5811,43,5050,5710,5714,5704,0,6,0,49,30,5813,5812,5814,5815,43,5710,5054,5699,5714,0,0,5,16,49,5812,5782,5794,5814,43,5680,5724,5715,5043,0,5,936,937,6,5804,5816,5817,5808,43,5724,5725,5716,5715,0,936,44,938,937,5816,5818,5819,5817,43,5725,5726,5717,5716,0,44,939,940,938,5818,5820,5821,5819,43,5726,5685,5173,5717,0,939,16,30,940,5820,5766,5743,5821,43,5059,5721,5724,5680,0,5,91,941,6,5807,5822,5816,5804,43,5721,5722,5725,5724,0,91,44,50,941,5822,5823,5818,5816,43,5722,5723,5726,5725,0,44,47,942,50,5823,5824,5820,5818,43,5723,5175,5685,5726,0,47,16,30,942,5824,5767,5766,5820,43,5691,5727,5721,5059,0,5,943,87,6,5810,5825,5822,5807,43,5727,5728,5722,5721,0,943,944,50,87,5825,5826,5823,5822,43,5728,5729,5723,5722,0,944,945,51,50,5826,5827,5824,5823,43,5729,5696,5175,5723,0,945,16,30,51,5827,5790,5767,5824,43,5050,5718,5727,5691,0,5,946,947,6,5813,5828,5825,5810,43,5718,5719,5728,5727,0,946,44,948,947,5828,5829,5826,5825,43,5719,5720,5729,5728,0,44,949,950,948,5829,5830,5827,5826,43,5720,5174,5696,5729,0,949,16,30,950,5830,5791,5790,5827,43,5704,5732,5718,5050,0,50,951,952,6,5815,5831,5828,5813,43,5732,5731,5719,5718,0,951,53,0,952,5831,5832,5829,5828,43,5731,5730,5720,5719,0,53,953,719,0,5832,5833,5830,5829,43,5730,5700,5174,5720,0,953,44,5,719,5833,5795,5791,5830,43,5039,5709,5733,5668,0,6,5,16,30,5732,5809,5834,5720,43,5667,5668,5733,5734,0,6,5,16,30,5719,5720,5834,5835,43,5667,5734,5735,5674,0,6,5,16,30,5719,5835,5836,5730,43,5173,5674,5735,5717,0,6,30,16,5,5743,5730,5836,5821,43,5043,5736,5733,5709,0,6,30,16,5,5808,5837,5834,5809,43,5716,5717,5735,5737,0,6,5,16,30,5819,5821,5836,5838,43,5733,5736,5738,5734,0,6,5,16,30,5834,5837,5839,5835,43,5734,5738,5737,5735,0,6,30,16,5,5835,5839,5838,5836,43,5715,5716,5737,5738,0,6,5,16,30,5817,5819,5838,5839,43,5043,5715,5738,5736,0,6,5,16,30,5808,5817,5839,5837,43,3161,5739,5740,3157,0,719,954,744,0,5840,5841,5842,5843,43,5739,3162,3166,5740,0,954,12,13,744,5841,3207,3200,5842,43,3151,5741,5739,3161,0,5,955,954,719,5844,5845,5841,5840,43,5741,3172,3162,5739,0,955,16,12,954,5845,3191,3207,5841,43,3154,5742,5743,3160,0,30,49,187,50,5846,5847,5848,5849,43,5742,3169,3163,5743,0,49,16,675,187,5847,3204,3202,5848,43,3160,5743,5744,3152,0,50,187,0,6,5849,5848,5850,5851,43,5743,3163,3171,5744,0,187,675,5,0,5848,3202,3186,5850,43,3157,5740,5746,3158,0,30,176,956,714,5843,5842,5852,5853,43,5740,3166,3165,5746,0,176,16,22,956,5842,3200,3198,5852,43,3158,5746,5747,3155,0,714,742,183,6,5853,5852,5854,5855,43,5746,3165,3168,5747,0,742,22,5,183,5852,3198,3192,5854,43,3156,5748,5745,3150,0,30,957,0,6,5856,5857,5858,5859,43,5748,3167,3173,5745,0,957,16,5,0,5857,3195,3197,5858,43,3155,5747,5748,3156,0,711,958,741,712,5855,5854,5857,5856,43,5747,3168,3167,5748,0,958,27,28,741,5854,3192,3195,5857,43,3153,5749,5741,3151,0,30,49,183,6,5860,5861,5845,5844,43,5749,3170,3172,5741,0,49,16,5,183,5861,3189,3191,5845,43,3152,5744,5749,3153,0,5,175,163,6,5851,5850,5861,5860,43,5744,3171,3170,5749,0,175,16,30,163,5850,3186,3189,5861,43,3247,5753,5754,3159,0,959,960,186,30,5862,5863,5864,5865,43,5753,3263,3264,5754,0,960,952,6,186,5863,3227,3226,5864,43,3159,5754,5752,3249,0,16,955,961,962,5865,5864,5866,5867,43,5754,3264,3262,5752,0,955,5,963,961,5864,3226,3228,5866,43,3251,5750,5753,3247,0,964,965,966,959,5868,5869,5863,5862,43,5750,3252,3263,5753,0,965,967,952,966,5869,3217,3227,5863,43,3150,5745,5750,3251,0,725,968,965,964,5859,5858,5869,5868,43,5745,3173,3252,5750,0,968,0,967,965,5858,3197,3217,5869,43,3257,5751,5742,3154,0,969,970,971,725,5870,5871,5847,5846,43,5751,3258,3169,5742,0,970,972,0,971,5871,3223,3204,5847,43,3249,5752,5751,3257,0,962,961,970,969,5867,5866,5871,5870,43,5752,3262,3258,5751,0,961,963,972,970,5866,3228,3223,5871,43,3147,5755,5756,3146,0,5,181,50,6,3128,5872,5873,3139,43,5755,3152,3153,5756,0,181,16,30,50,5872,5851,5860,5873,43,3146,5756,5757,3148,0,30,161,0,6,3139,5873,5874,3123,43,5756,3153,3151,5757,0,161,16,5,0,5873,5860,5844,5874,43,3144,5758,5759,3143,0,711,958,741,712,3132,5875,5876,3135,43,5758,3155,3156,5759,0,958,27,28,741,5875,5855,5856,5876,43,3143,5759,5760,3149,0,30,49,183,6,3135,5876,5877,3136,43,5759,3156,3150,5760,0,49,16,5,183,5876,5856,5859,5877,43,3141,5761,5758,3144,0,714,742,0,6,3130,5878,5875,3132,43,5761,3158,3155,5758,0,742,22,5,0,5878,5853,5855,5875,43,3142,5762,5761,3141,0,30,176,973,714,3120,5879,5878,3130,43,5762,3157,3158,5761,0,176,16,22,973,5879,5843,5853,5878,43,3139,5765,5755,3147,0,50,187,183,6,3126,5880,5872,3128,43,5765,3160,3152,5755,0,187,675,5,183,5880,5849,5851,5872,43,3145,5764,5765,3139,0,30,49,187,50,3125,5881,5880,3126,43,5764,3154,3160,5765,0,49,16,675,187,5881,5846,5849,5880,43,3148,5757,5766,3138,0,5,44,974,719,3123,5874,5882,3119,43,5757,3151,3161,5766,0,44,16,12,974,5874,5844,5840,5882,43,3138,5766,5762,3142,0,719,974,975,0,3119,5882,5879,3120,43,5766,3161,3157,5762,0,974,12,13,975,5882,5840,5843,5879,43,3246,5767,5763,3140,0,976,966,186,30,3210,5883,5884,3208,43,5767,3247,3159,5763,0,966,977,6,186,5883,5862,5865,5884,43,3140,5763,5768,3248,0,16,184,978,962,3208,5884,5885,3211,43,5763,3159,3249,5768,0,184,5,979,978,5884,5865,5867,5885,43,3250,5769,5767,3246,0,980,981,966,976,3224,5886,5883,3210,43,5769,3251,3247,5767,0,981,9,977,966,5886,5868,5862,5883,43,3149,5760,5769,3250,0,725,968,982,980,3136,5877,5886,3224,43,5760,3150,3251,5769,0,968,0,9,982,5877,5859,5868,5886,43,3256,5770,5764,3145,0,969,983,968,725,3225,5887,5881,3125,43,5770,3257,3154,5764,0,983,984,0,968,5887,5870,5846,5881,43,3248,5768,5770,3256,0,962,978,985,969,3211,5885,5887,3225,43,5768,3249,3257,5770,0,978,979,984,985,5885,5867,5870,5887,43,3136,5771,5772,3132,0,719,986,987,0,3272,5888,5889,3269,43,5771,3222,3223,5772,0,986,697,699,987,5888,3162,3165,5889,43,3125,5773,5771,3136,0,5,988,986,719,3275,5890,5888,3272,43,5773,3224,3222,5771,0,988,700,697,986,5890,3166,3162,5888,43,3129,5774,5775,3135,0,30,989,990,50,5891,5892,5893,5894,43,5774,3225,3226,5775,0,989,177,702,990,5892,3168,3171,5893,43,3135,5775,5776,3127,0,50,990,991,6,5894,5893,5895,5896,43,5775,3226,3227,5776,0,990,702,703,991,5893,3171,3173,5895,43,3134,5777,5774,3129,0,16,992,993,725,5897,5898,5892,5891,43,5777,3228,3225,5774,0,992,15,705,993,5898,3174,3168,5892,43,3122,5778,5777,3134,0,725,994,995,30,3263,5899,5898,5897,43,5778,3229,3228,5777,0,994,705,706,995,5899,3176,3174,5898,43,3132,5772,5779,3133,0,30,996,997,714,3269,5889,5900,3266,43,5772,3223,3230,5779,0,996,177,708,997,5889,3165,3179,5900,43,3133,5779,5780,3130,0,714,997,991,6,3266,5900,5901,3259,43,5779,3230,3231,5780,0,997,708,703,991,5900,3179,3181,5901,43,3131,5781,5778,3122,0,30,989,991,6,3260,5902,5899,3263,43,5781,3232,3229,5778,0,989,177,703,991,5902,3182,3176,5899,43,3130,5780,5781,3131,0,711,998,999,712,3259,5901,5902,3260,43,5780,3231,3232,5781,0,998,709,710,999,5901,3181,3182,5902,43,3128,5782,5773,3125,0,30,989,991,6,5903,5904,5890,3275,43,5782,3233,3224,5773,0,989,177,703,991,5904,3184,3166,5890,43,3127,5776,5782,3128,0,5,988,1000,6,5896,5895,5904,5903,43,5776,3227,3233,5782,0,988,700,7,1000,5895,3173,3184,5904,43,5785,5800,5787,5786,0,6,30,16,5,5905,5906,5907,5908,43,5787,5800,5789,5788,0,6,30,16,5,5907,5906,5909,5910,43,5785,5792,5791,5800,0,6,30,16,5,5905,5911,5912,5906,43,5789,5800,5791,5790,0,6,30,16,5,5909,5906,5912,5913,43,5801,5809,5810,5807,0,6,30,16,5,5914,5915,5916,5917,43,5807,5810,5811,5808,0,6,30,16,5,5917,5916,5918,5919,43,5785,5814,5813,5792,0,6,30,16,5,5905,5920,5921,5911,43,5786,5812,5814,5785,0,6,30,16,5,5908,5922,5920,5905,43,5812,5815,5816,5814,0,6,30,16,5,5922,5923,5924,5920,43,5814,5816,5817,5813,0,6,30,16,5,5920,5924,5925,5921,43,5810,5820,5819,5811,0,6,30,16,5,5916,5926,5927,5918,43,5809,5818,5820,5810,0,6,30,16,5,5915,5928,5926,5916,43,5807,5808,5828,5827,0,6,30,16,5,5917,5919,5929,5930,43,5808,5806,5826,5828,0,6,30,16,5,5919,5931,5932,5929,43,5828,5826,5794,5793,0,6,30,16,5,5929,5932,5933,5934,43,5806,5805,5825,5826,0,6,30,16,5,5931,5935,5936,5932,43,5826,5825,5831,5794,0,6,30,16,5,5932,5936,5937,5933,43,5805,5804,5824,5825,0,6,30,16,5,5935,5938,5939,5936,43,5825,5824,5830,5831,0,6,30,16,5,5936,5939,5940,5937,43,5804,5803,5823,5824,0,6,30,16,5,5938,5941,5942,5939,43,5824,5823,5829,5830,0,6,30,16,5,5939,5942,5943,5940,43,5803,5802,5822,5823,0,6,30,16,5,5941,5944,5945,5942,43,5823,5822,5798,5829,0,6,30,16,5,5942,5945,5946,5943,43,5802,5801,5821,5822,0,6,30,16,5,5944,5914,5947,5945,43,5822,5821,5799,5798,0,6,30,16,5,5945,5947,5948,5946,43,5827,5821,5801,5807,0,6,30,16,5,5930,5947,5914,5917,43,5796,5795,5833,5832,0,6,30,16,5,5949,5950,5951,5952,43,5832,5833,5831,5830,0,6,30,16,5,5952,5951,5937,5940,43,5797,5796,5832,5834,0,6,30,16,5,5953,5949,5952,5954,43,5834,5832,5830,5829,0,6,30,16,5,5954,5952,5940,5943,43,5794,5831,5833,5795,0,6,30,16,5,5933,5937,5951,5950,43,5797,5834,5829,5798,0,6,30,16,5,5953,5954,5943,5946,43,5786,5787,5840,5841,0,6,30,16,5,5908,5907,5955,5956,43,5841,5840,5806,5808,0,6,30,16,5,5956,5955,5931,5919,43,5787,5788,5839,5840,0,6,30,16,5,5907,5910,5957,5955,43,5840,5839,5805,5806,0,6,30,16,5,5955,5957,5935,5931,43,5788,5789,5838,5839,0,6,30,16,5,5910,5909,5958,5957,43,5839,5838,5804,5805,0,6,30,16,5,5957,5958,5938,5935,43,5789,5790,5837,5838,0,6,30,16,5,5909,5913,5959,5958,43,5838,5837,5803,5804,0,6,30,16,5,5958,5959,5941,5938,43,5790,5791,5836,5837,0,6,30,16,5,5913,5912,5960,5959,43,5837,5836,5802,5803,0,6,30,16,5,5959,5960,5944,5941,43,5791,5792,5835,5836,0,6,30,16,5,5912,5911,5961,5960,43,5836,5835,5801,5802,0,6,30,16,5,5960,5961,5914,5944,43,5808,5811,5842,5841,0,6,30,16,5,5919,5918,5962,5956,43,5841,5842,5812,5786,0,6,30,16,5,5956,5962,5922,5908,43,5792,5813,5843,5835,0,6,30,16,5,5911,5921,5963,5961,43,5835,5843,5809,5801,0,6,30,16,5,5961,5963,5915,5914,43,5813,5817,5844,5843,0,6,30,16,5,5921,5925,5964,5963,43,5843,5844,5818,5809,0,6,30,16,5,5963,5964,5928,5915,43,5811,5819,5845,5842,0,6,30,16,5,5918,5927,5965,5962,43,5842,5845,5815,5812,0,6,30,16,5,5962,5965,5923,5922,43,5816,5815,5845,5846,0,6,30,16,5,5924,5923,5965,5966,43,5846,5845,5819,5820,0,6,30,16,5,5966,5965,5927,5926,43,5820,5818,5844,5846,0,6,30,16,5,5926,5928,5964,5966,43,5846,5844,5817,5816,0,6,30,16,5,5966,5964,5925,5924,43,5827,5850,5849,5821,0,6,30,16,5,5930,5967,5968,5947,43,5828,5851,5850,5827,0,6,30,16,5,5929,5969,5967,5930,43,5793,5848,5851,5828,0,6,30,16,5,5934,5970,5969,5929,43,5821,5849,5847,5799,0,6,30,16,5,5947,5968,5971,5948,43,5849,5853,5852,5847,0,6,30,16,5,5968,5972,5973,5971,43,5848,5854,5855,5851,0,6,30,16,5,5970,5974,5975,5969,43,5851,5855,5856,5850,0,6,30,16,5,5969,5975,5976,5967,43,5850,5856,5853,5849,0,6,30,16,5,5967,5976,5972,5968,43,5856,5855,5854,5857,0,6,30,16,5,5976,5975,5974,5977,43,5857,5852,5853,5856,0,6,30,16,5,5977,5973,5972,5976,43,5858,5863,5862,5859,0,6,30,16,5,5978,5979,5980,5981,43,5859,5860,5861,5858,0,6,30,16,5,5981,5982,5983,5978,43,5865,5859,5862,5866,0,6,30,16,5,5984,5981,5980,5985,43,5864,5860,5859,5865,0,6,30,16,5,5986,5982,5981,5984,43,5867,5861,5860,5864,0,6,30,16,5,5987,5983,5982,5986,43,5866,5862,5863,5868,0,6,30,16,5,5985,5980,5979,5988,43,5894,5866,5868,5916,0,6,30,16,5,5989,5985,5988,5990,43,5922,5867,5864,5887,0,6,30,16,5,5991,5987,5986,5992,43,5887,5864,5865,5888,0,6,30,16,5,5992,5986,5984,5993,43,5888,5865,5866,5894,0,6,30,16,5,5993,5984,5985,5989,43,5869,5871,5898,5899,0,6,30,16,5,5994,5995,5996,5997,43,5895,5897,5871,5869,0,6,30,16,5,5998,5999,5995,5994,43,5869,5870,5896,5895,0,6,30,16,5,5994,6000,6001,5998,43,5899,5900,5870,5869,0,6,30,16,5,5997,6002,6000,5994,43,5873,5870,5900,5903,0,6,30,16,5,6003,6000,6002,6004,43,5904,5896,5870,5873,0,6,30,16,5,6005,6001,6000,6003,43,5872,5871,5897,5906,0,6,30,16,5,6006,5995,5999,6007,43,5902,5898,5871,5872,0,6,30,16,5,6008,5996,5995,6006,43,5880,5872,5906,5914,0,6,30,16,5,6009,6006,6007,6010,43,5923,5902,5872,5880,0,6,30,16,5,6011,6008,6006,6009,43,5874,5873,5903,5929,0,6,30,16,5,6012,6003,6004,6013,43,5907,5904,5873,5874,0,6,30,16,5,6014,6005,6003,6012,43,5879,5880,5914,5913,0,6,30,16,5,6015,6009,6010,6016,43,5924,5923,5880,5879,0,6,30,16,5,6017,6011,6009,6015,43,5878,5879,5913,5912,0,6,30,16,5,6018,6015,6016,6019,43,5925,5924,5879,5878,0,6,30,16,5,6020,6017,6015,6018,43,5877,5878,5912,5911,0,6,30,16,5,6021,6018,6019,6022,43,5926,5925,5878,5877,0,6,30,16,5,6023,6020,6018,6021,43,5876,5877,5911,5910,0,6,30,16,5,6024,6021,6022,6025,43,5927,5926,5877,5876,0,6,30,16,5,6026,6023,6021,6024,43,5875,5876,5910,5909,0,6,30,16,5,6027,6024,6025,6028,43,5928,5927,5876,5875,0,6,30,16,5,6029,6026,6024,6027,43,5874,5875,5909,5907,0,6,30,16,5,6012,6027,6028,6014,43,5929,5928,5875,5874,0,6,30,16,5,6013,6029,6027,6012,43,5918,5881,5886,5917,0,6,30,16,5,6030,6031,6032,6033,43,5921,5884,5882,5920,0,6,30,16,5,6034,6035,6036,6037,43,5881,5883,5885,5886,0,6,30,16,5,6031,6038,6039,6032,43,5918,5919,5883,5881,0,6,30,16,5,6030,6040,6038,6031,43,5883,5882,5884,5885,0,6,30,16,5,6038,6036,6035,6039,43,5919,5920,5882,5883,0,6,30,16,5,6040,6037,6036,6038,43,5888,5894,5914,5908,0,6,30,16,5,5993,5989,6010,6041,43,5893,5894,5916,5917,0,6,30,16,5,6042,5989,5990,6033,43,5913,5914,5894,5893,0,6,30,16,5,6016,6010,5989,6042,43,5892,5893,5917,5886,0,6,30,16,5,6043,6042,6033,6032,43,5912,5913,5893,5892,0,6,30,16,5,6019,6016,6042,6043,43,5891,5892,5886,5885,0,6,30,16,5,6044,6043,6032,6039,43,5911,5912,5892,5891,0,6,30,16,5,6022,6019,6043,6044,43,5890,5891,5885,5884,0,6,30,16,5,6045,6044,6039,6035,43,5910,5911,5891,5890,0,6,30,16,5,6025,6022,6044,6045,43,5889,5890,5884,5921,0,6,30,16,5,6046,6045,6035,6034,43,5909,5910,5890,5889,0,6,30,16,5,6028,6025,6045,6046,43,5887,5889,5921,5922,0,6,30,16,5,5992,6046,6034,5991,43,5907,5909,5889,5887,0,6,30,16,5,6014,6028,6046,5992,43,5908,5907,5887,5888,0,6,30,16,5,6041,6014,5992,5993,43,5906,5897,5895,5905,0,6,30,16,5,6007,5999,5998,6047,43,5905,5895,5896,5904,0,6,30,16,5,6047,5998,6001,6005,43,5901,5899,5898,5902,0,6,30,16,5,6048,5997,5996,6008,43,5903,5900,5899,5901,0,6,30,16,5,6004,6002,5997,6048,43,5929,5903,5901,5930,0,6,30,16,5,6013,6004,6048,6049,43,5930,5901,5902,5923,0,6,30,16,5,6049,6048,6008,6011,43,5908,5905,5904,5907,0,6,30,16,5,6041,6047,6005,6014,43,5914,5906,5905,5908,0,6,30,16,5,6010,6007,6047,6041,43,5926,5915,5924,5925,0,6,30,16,5,6023,6050,6017,6020,43,5930,5923,5924,5915,0,6,30,16,5,6049,6011,6017,6050,43,5928,5915,5926,5927,0,6,30,16,5,6029,6050,6023,6026,43,5930,5915,5928,5929,0,6,30,16,5,6049,6050,6029,6013,43,5931,5946,5933,5932,0,6,30,16,5,6051,6052,6053,6054,43,5933,5946,5935,5934,0,6,30,16,5,6053,6052,6055,6056,43,5931,5938,5937,5946,0,6,30,16,5,6051,6057,6058,6052,43,5935,5946,5937,5936,0,6,30,16,5,6055,6052,6058,6059,43,5947,5955,5956,5953,0,6,30,16,5,6060,6061,6062,6063,43,5953,5956,5957,5954,0,6,30,16,5,6063,6062,6064,6065,43,5931,5960,5959,5938,0,6,30,16,5,6051,6066,6067,6057,43,5932,5958,5960,5931,0,6,30,16,5,6054,6068,6066,6051,43,5958,5961,5962,5960,0,6,30,16,5,6068,6069,6070,6066,43,5960,5962,5963,5959,0,6,30,16,5,6066,6070,6071,6067,43,5956,5966,5965,5957,0,6,30,16,5,6062,6072,6073,6064,43,5955,5964,5966,5956,0,6,30,16,5,6061,6074,6072,6062,43,5953,5954,5974,5973,0,6,30,16,5,6063,6065,6075,6076,43,5954,5952,5972,5974,0,6,30,16,5,6065,6077,6078,6075,43,5974,5972,5940,5939,0,6,30,16,5,6075,6078,6079,6080,43,5952,5951,5971,5972,0,6,30,16,5,6077,6081,6082,6078,43,5972,5971,5977,5940,0,6,30,16,5,6078,6082,6083,6079,43,5951,5950,5970,5971,0,6,30,16,5,6081,6084,6085,6082,43,5971,5970,5976,5977,0,6,30,16,5,6082,6085,6086,6083,43,5950,5949,5969,5970,0,6,30,16,5,6084,6087,6088,6085,43,5970,5969,5975,5976,0,6,30,16,5,6085,6088,6089,6086,43,5949,5948,5968,5969,0,6,30,16,5,6087,6090,6091,6088,43,5969,5968,5944,5975,0,6,30,16,5,6088,6091,6092,6089,43,5948,5947,5967,5968,0,6,30,16,5,6090,6060,6093,6091,43,5968,5967,5945,5944,0,6,30,16,5,6091,6093,6094,6092,43,5973,5967,5947,5953,0,6,30,16,5,6076,6093,6060,6063,43,5942,5941,5979,5978,0,6,30,16,5,6095,6096,6097,6098,43,5978,5979,5977,5976,0,6,30,16,5,6098,6097,6083,6086,43,5943,5942,5978,5980,0,6,30,16,5,6099,6095,6098,6100,43,5980,5978,5976,5975,0,6,30,16,5,6100,6098,6086,6089,43,5940,5977,5979,5941,0,6,30,16,5,6079,6083,6097,6096,43,5943,5980,5975,5944,0,6,30,16,5,6099,6100,6089,6092,43,5932,5933,5986,5987,0,6,30,16,5,6054,6053,6101,6102,43,5987,5986,5952,5954,0,6,30,16,5,6102,6101,6077,6065,43,5933,5934,5985,5986,0,6,30,16,5,6053,6056,6103,6101,43,5986,5985,5951,5952,0,6,30,16,5,6101,6103,6081,6077,43,5934,5935,5984,5985,0,6,30,16,5,6056,6055,6104,6103,43,5985,5984,5950,5951,0,6,30,16,5,6103,6104,6084,6081,43,5935,5936,5983,5984,0,6,30,16,5,6055,6059,6105,6104,43,5984,5983,5949,5950,0,6,30,16,5,6104,6105,6087,6084,43,5936,5937,5982,5983,0,6,30,16,5,6059,6058,6106,6105,43,5983,5982,5948,5949,0,6,30,16,5,6105,6106,6090,6087,43,5937,5938,5981,5982,0,6,30,16,5,6058,6057,6107,6106,43,5982,5981,5947,5948,0,6,30,16,5,6106,6107,6060,6090,43,5954,5957,5988,5987,0,6,30,16,5,6065,6064,6108,6102,43,5987,5988,5958,5932,0,6,30,16,5,6102,6108,6068,6054,43,5938,5959,5989,5981,0,6,30,16,5,6057,6067,6109,6107,43,5981,5989,5955,5947,0,6,30,16,5,6107,6109,6061,6060,43,5959,5963,5990,5989,0,6,30,16,5,6067,6071,6110,6109,43,5989,5990,5964,5955,0,6,30,16,5,6109,6110,6074,6061,43,5957,5965,5991,5988,0,6,30,16,5,6064,6073,6111,6108,43,5988,5991,5961,5958,0,6,30,16,5,6108,6111,6069,6068,43,5962,5961,5991,5992,0,6,30,16,5,6070,6069,6111,6112,43,5992,5991,5965,5966,0,6,30,16,5,6112,6111,6073,6072,43,5966,5964,5990,5992,0,6,30,16,5,6072,6074,6110,6112,43,5992,5990,5963,5962,0,6,30,16,5,6112,6110,6071,6070,43,5973,5996,5995,5967,0,6,30,16,5,6076,6113,6114,6093,43,5974,5997,5996,5973,0,6,30,16,5,6075,6115,6113,6076,43,5939,5994,5997,5974,0,6,30,16,5,6080,6116,6115,6075,43,5967,5995,5993,5945,0,6,30,16,5,6093,6114,6117,6094,43,5995,5999,5998,5993,0,6,30,16,5,6114,6118,6119,6117,43,5994,6000,6001,5997,0,6,30,16,5,6116,6120,6121,6115,43,5997,6001,6002,5996,0,6,30,16,5,6115,6121,6122,6113,43,5996,6002,5999,5995,0,6,30,16,5,6113,6122,6118,6114,43,6002,6001,6000,6003,0,6,30,16,5,6122,6121,6120,6123,43,6003,5998,5999,6002,0,6,30,16,5,6123,6119,6118,6122,43,6004,6009,6008,6005,0,6,30,16,5,6124,6125,6126,6127,43,6005,6006,6007,6004,0,6,30,16,5,6127,6128,6129,6124,43,6011,6005,6008,6012,0,6,30,16,5,6130,6127,6126,6131,43,6010,6006,6005,6011,0,6,30,16,5,6132,6128,6127,6130,43,6013,6007,6006,6010,0,6,30,16,5,6133,6129,6128,6132,43,6012,6008,6009,6014,0,6,30,16,5,6131,6126,6125,6134,43,6040,6012,6014,6062,0,6,30,16,5,6135,6131,6134,6136,43,6068,6013,6010,6033,0,6,30,16,5,6137,6133,6132,6138,43,6033,6010,6011,6034,0,6,30,16,5,6138,6132,6130,6139,43,6034,6011,6012,6040,0,6,30,16,5,6139,6130,6131,6135,43,6015,6017,6044,6045,0,6,30,16,5,6140,6141,6142,6143,43,6041,6043,6017,6015,0,6,30,16,5,6144,6145,6141,6140,43,6015,6016,6042,6041,0,6,30,16,5,6140,6146,6147,6144,43,6045,6046,6016,6015,0,6,30,16,5,6143,6148,6146,6140,43,6019,6016,6046,6049,0,6,30,16,5,6149,6146,6148,6150,43,6050,6042,6016,6019,0,6,30,16,5,6151,6147,6146,6149,43,6018,6017,6043,6052,0,6,30,16,5,6152,6141,6145,6153,43,6048,6044,6017,6018,0,6,30,16,5,6154,6142,6141,6152,43,6026,6018,6052,6060,0,6,30,16,5,6155,6152,6153,6156,43,6069,6048,6018,6026,0,6,30,16,5,6157,6154,6152,6155,43,6020,6019,6049,6075,0,6,30,16,5,6158,6149,6150,6159,43,6053,6050,6019,6020,0,6,30,16,5,6160,6151,6149,6158,43,6025,6026,6060,6059,0,6,30,16,5,6161,6155,6156,6162,43,6070,6069,6026,6025,0,6,30,16,5,6163,6157,6155,6161,43,6024,6025,6059,6058,0,6,30,16,5,6164,6161,6162,6165,43,6071,6070,6025,6024,0,6,30,16,5,6166,6163,6161,6164,43,6023,6024,6058,6057,0,6,30,16,5,6167,6164,6165,6168,43,6072,6071,6024,6023,0,6,30,16,5,6169,6166,6164,6167,43,6022,6023,6057,6056,0,6,30,16,5,6170,6167,6168,6171,43,6073,6072,6023,6022,0,6,30,16,5,6172,6169,6167,6170,43,6021,6022,6056,6055,0,6,30,16,5,6173,6170,6171,6174,43,6074,6073,6022,6021,0,6,30,16,5,6175,6172,6170,6173,43,6020,6021,6055,6053,0,6,30,16,5,6158,6173,6174,6160,43,6075,6074,6021,6020,0,6,30,16,5,6159,6175,6173,6158,43,6064,6027,6032,6063,0,6,30,16,5,6176,6177,6178,6179,43,6067,6030,6028,6066,0,6,30,16,5,6180,6181,6182,6183,43,6027,6029,6031,6032,0,6,30,16,5,6177,6184,6185,6178,43,6064,6065,6029,6027,0,6,30,16,5,6176,6186,6184,6177,43,6029,6028,6030,6031,0,6,30,16,5,6184,6182,6181,6185,43,6065,6066,6028,6029,0,6,30,16,5,6186,6183,6182,6184,43,6034,6040,6060,6054,0,6,30,16,5,6139,6135,6156,6187,43,6039,6040,6062,6063,0,6,30,16,5,6188,6135,6136,6179,43,6059,6060,6040,6039,0,6,30,16,5,6162,6156,6135,6188,43,6038,6039,6063,6032,0,6,30,16,5,6189,6188,6179,6178,43,6058,6059,6039,6038,0,6,30,16,5,6165,6162,6188,6189,43,6037,6038,6032,6031,0,6,30,16,5,6190,6189,6178,6185,43,6057,6058,6038,6037,0,6,30,16,5,6168,6165,6189,6190,43,6036,6037,6031,6030,0,6,30,16,5,6191,6190,6185,6181,43,6056,6057,6037,6036,0,6,30,16,5,6171,6168,6190,6191,43,6035,6036,6030,6067,0,6,30,16,5,6192,6191,6181,6180,43,6055,6056,6036,6035,0,6,30,16,5,6174,6171,6191,6192,43,6033,6035,6067,6068,0,6,30,16,5,6138,6192,6180,6137,43,6053,6055,6035,6033,0,6,30,16,5,6160,6174,6192,6138,43,6054,6053,6033,6034,0,6,30,16,5,6187,6160,6138,6139,43,6052,6043,6041,6051,0,6,30,16,5,6153,6145,6144,6193,43,6051,6041,6042,6050,0,6,30,16,5,6193,6144,6147,6151,43,6047,6045,6044,6048,0,6,30,16,5,6194,6143,6142,6154,43,6049,6046,6045,6047,0,6,30,16,5,6150,6148,6143,6194,43,6075,6049,6047,6076,0,6,30,16,5,6159,6150,6194,6195,43,6076,6047,6048,6069,0,6,30,16,5,6195,6194,6154,6157,43,6054,6051,6050,6053,0,6,30,16,5,6187,6193,6151,6160,43,6060,6052,6051,6054,0,6,30,16,5,6156,6153,6193,6187,43,6072,6061,6070,6071,0,6,30,16,5,6169,6196,6163,6166,43,6076,6069,6070,6061,0,6,30,16,5,6195,6157,6163,6196,43,6074,6061,6072,6073,0,6,30,16,5,6175,6196,6169,6172,43,6076,6061,6074,6075,0,6,30,16,5,6195,6196,6175,6159,43,6077,6079,6100,6101,0,6,30,16,5,6197,6198,6199,6200,43,6097,6099,6079,6077,0,6,30,16,5,6201,6202,6198,6197,43,6077,6078,6098,6097,0,6,30,16,5,6197,6203,6204,6201,43,6101,6102,6078,6077,0,6,30,16,5,6200,6205,6203,6197,43,6081,6078,6102,6105,0,6,30,16,5,6206,6203,6205,6207,43,6106,6098,6078,6081,0,6,30,16,5,6208,6204,6203,6206,43,6080,6079,6099,6108,0,6,30,16,5,6209,6198,6202,6210,43,6104,6100,6079,6080,0,6,30,16,5,6211,6199,6198,6209,43,6088,6080,6108,6116,0,6,30,16,5,6212,6209,6210,6213,43,6118,6104,6080,6088,0,6,30,16,5,6214,6211,6209,6212,43,6082,6081,6105,6124,0,6,30,16,5,6215,6206,6207,6216,43,6109,6106,6081,6082,0,6,30,16,5,6217,6208,6206,6215,43,6087,6088,6116,6115,0,6,30,16,5,6218,6212,6213,6219,43,6119,6118,6088,6087,0,6,30,16,5,6220,6214,6212,6218,43,6086,6087,6115,6114,0,6,30,16,5,6221,6218,6219,6222,43,6120,6119,6087,6086,0,6,30,16,5,6223,6220,6218,6221,43,6085,6086,6114,6113,0,6,30,16,5,6224,6221,6222,6225,43,6121,6120,6086,6085,0,6,30,16,5,6226,6223,6221,6224,43,6084,6085,6113,6112,0,6,30,16,5,6227,6224,6225,6228,43,6122,6121,6085,6084,0,6,30,16,5,6229,6226,6224,6227,43,6083,6084,6112,6111,0,6,30,16,5,6230,6227,6228,6231,43,6123,6122,6084,6083,0,6,30,16,5,6232,6229,6227,6230,43,6082,6083,6111,6109,0,6,30,16,5,6215,6230,6231,6217,43,6124,6123,6083,6082,0,6,30,16,5,6216,6232,6230,6215,43,6090,6096,6116,6110,0,6,30,16,5,6233,6234,6213,6235,43,6115,6116,6096,6095,0,6,30,16,5,6219,6213,6234,6236,43,6114,6115,6095,6094,0,6,30,16,5,6222,6219,6236,6237,43,6113,6114,6094,6093,0,6,30,16,5,6225,6222,6237,6238,43,6112,6113,6093,6092,0,6,30,16,5,6228,6225,6238,6239,43,6111,6112,6092,6091,0,6,30,16,5,6231,6228,6239,6240,43,6109,6111,6091,6089,0,6,30,16,5,6217,6231,6240,6241,43,6110,6109,6089,6090,0,6,30,16,5,6235,6217,6241,6233,43,6108,6099,6097,6107,0,6,30,16,5,6210,6202,6201,6242,43,6107,6097,6098,6106,0,6,30,16,5,6242,6201,6204,6208,43,6103,6101,6100,6104,0,6,30,16,5,6243,6200,6199,6211,43,6105,6102,6101,6103,0,6,30,16,5,6207,6205,6200,6243,43,6124,6105,6103,6125,0,6,30,16,5,6216,6207,6243,6244,43,6125,6103,6104,6118,0,6,30,16,5,6244,6243,6211,6214,43,6110,6107,6106,6109,0,6,30,16,5,6235,6242,6208,6217,43,6116,6108,6107,6110,0,6,30,16,5,6213,6210,6242,6235,43,6121,6117,6119,6120,0,6,30,16,5,6226,6245,6220,6223,43,6125,6118,6119,6117,0,6,30,16,5,6244,6214,6220,6245,43,6123,6117,6121,6122,0,6,30,16,5,6232,6245,6226,6229,43,6125,6117,6123,6124,0,6,30,16,5,6244,6245,6232,6216,43,6182,6184,6149,6145,0,672,673,13,12,6246,6247,6248,6249,43,6186,6182,6145,6155,0,674,672,12,16,6250,6246,6249,6251,43,6188,6190,6146,6152,0,151,676,675,16,6252,6253,6254,6255,43,6190,6192,6154,6146,0,676,677,5,675,6253,6256,6257,6254,43,6184,6198,6148,6149,0,151,678,22,16,6247,6258,6259,6248,43,6198,6200,6151,6148,0,678,677,5,22,6258,6260,6261,6259,43,6202,6196,6156,6150,0,151,677,5,16,6262,6263,6264,6265,43,6200,6202,6150,6151,0,679,680,28,27,6260,6262,6265,6261,43,6204,6186,6155,6153,0,151,677,5,16,6266,6250,6251,6267,43,6192,6204,6153,6154,0,674,681,30,16,6256,6266,6267,6257,43,6205,6207,6208,6206,0,92,86,681,674,6268,6269,6270,6271,43,6207,6209,6210,6208,0,153,682,677,151,6269,6272,6273,6270,43,6211,6213,6214,6212,0,683,684,680,679,6274,6275,6276,6277,43,6213,6215,6216,6214,0,685,682,677,686,6275,6278,6279,6276,43,6217,6211,6212,6218,0,687,682,677,688,6280,6274,6277,6281,43,6219,6217,6218,6220,0,689,687,691,690,6282,6280,6281,6283,43,6225,6205,6206,6226,0,692,682,677,693,6284,6268,6271,6285,43,6223,6225,6226,6224,0,153,692,693,151,6286,6284,6285,6287,43,6209,6227,6228,6210,0,92,695,694,674,6272,6288,6289,6273,43,6227,6219,6220,6228,0,695,696,673,694,6288,6282,6283,6289,43,6229,6230,6183,6181,0,697,699,696,698,6290,6291,6292,6293,43,6231,6229,6181,6185,0,700,697,698,92,6294,6290,6293,6295,43,6232,6233,6189,6187,0,177,702,701,153,6296,6297,6298,6299,43,6233,6234,6191,6189,0,702,703,682,701,6297,6300,6301,6298,43,6235,6232,6187,6193,0,15,705,704,674,6302,6296,6299,6303,43,6236,6235,6193,6195,0,705,706,681,704,6304,6302,6303,6305,43,6230,6237,6197,6183,0,177,708,707,153,6291,6306,6307,6292,43,6237,6238,6199,6197,0,708,703,682,707,6306,6308,6309,6307,43,6239,6236,6195,6201,0,177,703,682,153,6310,6304,6305,6311,43,6238,6239,6201,6199,0,709,710,684,683,6308,6310,6311,6309,43,6240,6231,6185,6203,0,177,703,682,153,6312,6294,6295,6313,43,6234,6240,6203,6191,0,700,7,86,92,6300,6312,6313,6301,43,6178,6177,6242,6241,0,5,6,7,700,6314,6315,6316,6317,43,6241,6242,6207,6205,0,700,7,86,92,6317,6316,6269,6268,43,6177,6179,6243,6242,0,30,6,703,177,6315,6318,6319,6316,43,6242,6243,6209,6207,0,177,703,682,153,6316,6319,6272,6269,43,6175,6174,6245,6244,0,711,712,710,709,6320,6321,6322,6323,43,6244,6245,6213,6211,0,709,710,684,683,6323,6322,6275,6274,43,6174,6180,6246,6245,0,30,6,703,713,6321,6324,6325,6322,43,6245,6246,6215,6213,0,713,703,682,685,6322,6325,6278,6275,43,6172,6175,6244,6247,0,714,6,703,715,6326,6320,6323,6327,43,6247,6244,6211,6217,0,715,703,682,687,6327,6323,6274,6280,43,6173,6172,6247,6248,0,30,714,715,713,6328,6326,6327,6329,43,6248,6247,6217,6219,0,713,715,687,689,6329,6327,6280,6282,43,6170,6178,6241,6251,0,50,6,703,716,6330,6314,6317,6331,43,6251,6241,6205,6225,0,716,703,682,692,6331,6317,6268,6284,43,6176,6170,6251,6250,0,30,50,716,717,6332,6330,6331,6333,43,6250,6251,6225,6223,0,717,716,692,153,6333,6331,6284,6286,43,6179,6169,6252,6243,0,5,719,718,700,6318,6334,6335,6319,43,6243,6252,6227,6209,0,700,718,695,92,6319,6335,6288,6272,43,6169,6173,6248,6252,0,719,0,699,718,6334,6328,6329,6335,43,6252,6248,6219,6227,0,718,699,696,695,6335,6329,6282,6288,43,6147,6253,6196,6194,0,6,30,16,5,6336,6337,6263,6338,43,6147,6194,6188,6255,0,6,5,16,30,6336,6338,6252,6339,43,6216,6215,6260,6261,0,720,704,722,721,6279,6278,6340,6341,43,6261,6260,6221,6222,0,721,722,681,86,6341,6340,6342,6343,43,6246,6180,6259,6262,0,705,725,724,723,6325,6324,6344,6345,43,6262,6259,6171,6249,0,723,724,30,706,6345,6344,6346,6347,43,6215,6246,6262,6260,0,704,705,723,722,6278,6325,6345,6340,43,6260,6262,6249,6221,0,722,723,706,681,6340,6345,6347,6342,43,6222,6221,6266,6267,0,92,674,727,726,6343,6342,6348,6349,43,6267,6266,6223,6224,0,726,727,704,728,6349,6348,6286,6287,43,6249,6171,6265,6268,0,15,16,730,729,6347,6346,6350,6351,43,6268,6265,6176,6250,0,729,730,725,731,6351,6350,6332,6333,43,6221,6249,6268,6266,0,674,15,729,727,6342,6347,6351,6348,43,6266,6268,6250,6223,0,727,729,731,704,6348,6351,6333,6286,43,6156,6196,6253,6257,0,6,5,16,30,6264,6263,6337,6352,43,6152,6263,6255,6188,0,6,30,16,5,6255,6353,6339,6252,43,6171,6259,6270,6271,0,6,5,16,30,6346,6344,6354,6355,43,6269,6265,6171,6271,0,6,5,16,30,6356,6350,6346,6355,43,6181,6183,6273,6272,0,698,696,733,732,6293,6292,6357,6358,43,6272,6273,6184,6182,0,732,733,673,672,6358,6357,6247,6246,43,6185,6181,6272,6274,0,92,698,732,44,6295,6293,6358,6359,43,6274,6272,6182,6186,0,44,732,672,674,6359,6358,6246,6250,43,6187,6189,6276,6275,0,153,701,734,49,6299,6298,6360,6361,43,6275,6276,6190,6188,0,49,734,676,151,6361,6360,6253,6252,43,6189,6191,6277,6276,0,701,682,0,734,6298,6301,6362,6360,43,6276,6277,6192,6190,0,734,0,677,676,6360,6362,6256,6253,43,6193,6187,6275,6278,0,674,704,735,44,6303,6299,6361,6363,43,6278,6275,6188,6194,0,44,735,720,92,6363,6361,6252,6338,43,6195,6193,6278,6279,0,704,681,50,736,6305,6303,6363,6364,43,6279,6278,6194,6196,0,736,50,86,720,6364,6363,6338,6263,43,6183,6197,6280,6273,0,153,707,738,737,6292,6307,6365,6357,43,6273,6280,6198,6184,0,737,738,678,151,6357,6365,6258,6247,43,6197,6199,6281,6280,0,707,682,0,738,6307,6309,6366,6365,43,6280,6281,6200,6198,0,738,0,677,678,6365,6366,6260,6258,43,6201,6195,6279,6282,0,153,682,739,49,6311,6305,6364,6367,43,6282,6279,6196,6202,0,49,739,677,151,6367,6364,6263,6262,43,6199,6201,6282,6281,0,683,684,741,740,6309,6311,6367,6366,43,6281,6282,6202,6200,0,740,741,680,679,6366,6367,6262,6260,43,6203,6185,6274,6283,0,153,682,0,49,6313,6295,6359,6368,43,6283,6274,6186,6204,0,49,0,677,151,6368,6359,6250,6266,43,6191,6203,6283,6277,0,92,86,50,44,6301,6313,6368,6362,43,6277,6283,6204,6192,0,44,50,681,674,6362,6368,6266,6256,43,6206,6208,6287,6297,0,674,681,31,15,6271,6270,6369,6370,43,6208,6210,6286,6287,0,151,677,24,21,6270,6273,6371,6369,43,6212,6214,6284,6291,0,679,680,29,26,6277,6276,6372,6373,43,6292,6284,6214,6216,0,20,25,686,677,6374,6372,6276,6279,43,6218,6212,6291,6290,0,688,677,24,23,6281,6277,6373,6375,43,6220,6218,6290,6289,0,690,691,23,21,6283,6281,6375,6376,43,6226,6206,6297,6285,0,693,677,20,19,6285,6271,6370,6377,43,6224,6226,6285,6296,0,151,693,19,17,6287,6285,6377,6378,43,6210,6228,6288,6286,0,674,694,11,15,6273,6289,6379,6371,43,6228,6220,6289,6288,0,694,673,14,11,6289,6283,6376,6379,43,6293,6292,6216,6261,0,8,10,720,721,6380,6374,6279,6341,43,6294,6293,6261,6222,0,7,8,721,86,6381,6380,6341,6343,43,6295,6294,6222,6267,0,2,4,92,726,6382,6381,6343,6349,43,6296,6295,6267,6224,0,1,2,726,728,6378,6382,6349,6287,43,6128,6126,6301,6300,0,711,712,741,740,6383,6384,6385,6386,43,6300,6301,6138,6137,0,740,741,28,27,6386,6385,6387,6388,43,6126,6130,6298,6301,0,6,5,44,50,6384,6389,6390,6385,43,6301,6298,6129,6138,0,50,44,16,30,6385,6390,6391,6387,43,6131,6128,6300,6302,0,714,6,0,742,6392,6383,6386,6393,43,6302,6300,6137,6140,0,742,0,5,22,6393,6386,6388,6394,43,6127,6131,6302,6303,0,30,714,742,49,6395,6392,6393,6396,43,6303,6302,6140,6139,0,49,742,22,16,6396,6393,6394,6397,43,6144,6127,6303,6304,0,719,0,744,743,6398,6395,6396,6399,43,6304,6303,6139,6143,0,743,744,13,12,6399,6396,6397,6400,43,6133,6144,6304,6299,0,5,719,745,44,6401,6398,6399,6402,43,6299,6304,6143,6132,0,44,745,12,16,6402,6399,6400,6403,43,6320,6311,6361,6335,0,6,30,16,5,6404,6405,6406,6407,43,6319,6336,6364,6306,0,6,30,16,5,6408,6409,6410,6411,43,6340,6359,6309,6305,0,6,30,16,5,6412,6413,6414,6415,43,6305,6307,6362,6340,0,6,30,16,5,6415,6416,6417,6412,43,6308,6306,6364,6363,0,6,30,16,5,6418,6411,6410,6419,43,6307,6308,6363,6362,0,6,30,16,5,6416,6418,6419,6417,43,6311,6310,6360,6361,0,6,30,16,5,6405,6420,6421,6406,43,6310,6309,6359,6360,0,6,30,16,5,6420,6414,6413,6421,43,6306,6312,6327,6319,0,6,30,16,5,6411,6422,6423,6408,43,6312,6313,6326,6327,0,6,30,16,5,6422,6424,6425,6423,43,6313,6314,6325,6326,0,6,30,16,5,6424,6426,6427,6425,43,6314,6315,6324,6325,0,6,30,16,5,6426,6428,6429,6427,43,6315,6316,6323,6324,0,6,30,16,5,6428,6430,6431,6429,43,6316,6317,6322,6323,0,6,30,16,5,6430,6432,6433,6431,43,6317,6318,6321,6322,0,6,30,16,5,6432,6434,6435,6433,43,6318,6311,6320,6321,0,6,30,16,5,6434,6405,6404,6435,43,6321,6320,6335,6334,0,6,30,16,5,6435,6404,6407,6436,43,6322,6321,6334,6333,0,6,30,16,5,6433,6435,6436,6437,43,6323,6322,6333,6332,0,6,30,16,5,6431,6433,6437,6438,43,6324,6323,6332,6331,0,6,30,16,5,6429,6431,6438,6439,43,6325,6324,6331,6330,0,6,30,16,5,6427,6429,6439,6440,43,6326,6325,6330,6329,0,6,30,16,5,6425,6427,6440,6441,43,6327,6326,6329,6328,0,6,30,16,5,6423,6425,6441,6442,43,6319,6327,6328,6336,0,6,30,16,5,6408,6423,6442,6409,43,6328,6337,6364,6336,0,6,30,16,5,6442,6443,6410,6409,43,6329,6343,6337,6328,0,6,30,16,5,6441,6444,6443,6442,43,6330,6344,6343,6329,0,6,30,16,5,6440,6445,6444,6441,43,6331,6349,6344,6330,0,6,30,16,5,6439,6446,6445,6440,43,6332,6350,6349,6331,0,6,30,16,5,6438,6447,6446,6439,43,6333,6355,6350,6332,0,6,30,16,5,6437,6448,6447,6438,43,6334,6356,6355,6333,0,6,30,16,5,6436,6449,6448,6437,43,6335,6361,6356,6334,0,6,30,16,5,6407,6406,6449,6436,43,6337,6338,6363,6364,0,6,30,16,5,6443,6450,6419,6410,43,6338,6339,6362,6363,0,6,30,16,5,6450,6451,6417,6419,42,6339,6340,6362,0,6,16,5,6451,6412,6417,42,6341,6340,6339,0,6,16,5,6452,6412,6451,43,6342,6341,6339,6338,0,6,30,16,5,6453,6452,6451,6450,43,6343,6342,6338,6337,0,6,30,16,5,6444,6453,6450,6443,43,6344,6345,6342,6343,0,6,30,16,5,6445,6454,6453,6444,43,6345,6346,6341,6342,0,6,30,16,5,6454,6455,6452,6453,42,6346,6340,6341,0,6,16,5,6455,6412,6452,42,6347,6340,6346,0,6,16,5,6456,6412,6455,43,6348,6347,6346,6345,0,6,30,16,5,6457,6456,6455,6454,43,6349,6348,6345,6344,0,6,30,16,5,6446,6457,6454,6445,43,6350,6351,6348,6349,0,6,30,16,5,6447,6458,6457,6446,43,6351,6352,6347,6348,0,6,30,16,5,6458,6459,6456,6457,42,6352,6340,6347,0,6,16,5,6459,6412,6456,42,6353,6340,6352,0,6,16,5,6460,6412,6459,43,6354,6353,6352,6351,0,6,30,16,5,6461,6460,6459,6458,43,6355,6354,6351,6350,0,6,30,16,5,6448,6461,6458,6447,43,6356,6357,6354,6355,0,6,30,16,5,6449,6462,6461,6448,43,6357,6358,6353,6354,0,6,30,16,5,6462,6463,6460,6461,42,6358,6340,6353,0,6,16,5,6463,6412,6460,42,6359,6340,6358,0,6,16,5,6413,6412,6463,43,6360,6359,6358,6357,0,6,30,16,5,6421,6413,6463,6462,43,6361,6360,6357,6356,0,6,30,16,5,6406,6421,6462,6449,43,6365,6395,6419,6371,0,6,30,16,5,6464,6465,6466,6467,43,6384,6367,6423,6396,0,6,30,16,5,6468,6469,6470,6471,43,6368,6369,6421,6422,0,6,30,16,5,6472,6473,6474,6475,43,6366,6372,6397,6424,0,6,30,16,5,6476,6477,6478,6479,43,6372,6368,6422,6397,0,6,30,16,5,6477,6472,6475,6478,43,6367,6366,6424,6423,0,6,30,16,5,6469,6476,6479,6470,43,6369,6370,6420,6421,0,6,30,16,5,6473,6480,6481,6474,43,6370,6371,6419,6420,0,6,30,16,5,6480,6467,6466,6481,43,6371,6373,6383,6365,0,6,30,16,5,6467,6482,6483,6464,43,6373,6374,6382,6383,0,6,30,16,5,6482,6484,6485,6483,43,6374,6375,6385,6382,0,6,30,16,5,6484,6486,6487,6485,43,6375,6376,6386,6385,0,6,30,16,5,6486,6488,6489,6487,43,6376,6377,6387,6386,0,6,30,16,5,6488,6490,6491,6489,43,6377,6378,6381,6387,0,6,30,16,5,6490,6492,6493,6491,43,6378,6379,6380,6381,0,6,30,16,5,6492,6494,6495,6493,43,6379,6367,6384,6380,0,6,30,16,5,6494,6469,6468,6495,43,6365,6383,6394,6395,0,6,30,16,5,6464,6483,6496,6465,43,6383,6382,6393,6394,0,6,30,16,5,6483,6485,6497,6496,43,6382,6385,6392,6393,0,6,30,16,5,6485,6487,6498,6497,43,6385,6386,6391,6392,0,6,30,16,5,6487,6489,6499,6498,43,6386,6387,6390,6391,0,6,30,16,5,6489,6491,6500,6499,43,6387,6381,6389,6390,0,6,30,16,5,6491,6493,6501,6500,43,6381,6380,6388,6389,0,6,30,16,5,6493,6495,6502,6501,43,6380,6384,6396,6388,0,6,30,16,5,6495,6468,6471,6502,43,6400,6388,6396,6423,0,6,30,16,5,6503,6502,6471,6470,43,6401,6389,6388,6400,0,6,30,16,5,6504,6501,6502,6503,43,6406,6390,6389,6401,0,6,30,16,5,6505,6500,6501,6504,43,6407,6391,6390,6406,0,6,30,16,5,6506,6499,6500,6505,43,6412,6392,6391,6407,0,6,30,16,5,6507,6498,6499,6506,43,6413,6393,6392,6412,0,6,30,16,5,6508,6497,6498,6507,43,6418,6394,6393,6413,0,6,30,16,5,6509,6496,6497,6508,43,6419,6395,6394,6418,0,6,30,16,5,6466,6465,6496,6509,42,6398,6397,6422,0,6,16,5,6510,6478,6475,43,6398,6399,6424,6397,0,6,30,16,5,6510,6511,6479,6478,43,6399,6400,6423,6424,0,6,30,16,5,6511,6503,6470,6479,43,6402,6401,6400,6399,0,6,30,16,5,6512,6504,6503,6511,43,6403,6402,6399,6398,0,6,30,16,5,6513,6512,6511,6510,42,6403,6398,6422,0,6,16,5,6513,6510,6475,42,6404,6403,6422,0,6,16,5,6514,6513,6475,43,6404,6405,6402,6403,0,6,30,16,5,6514,6515,6512,6513,43,6405,6406,6401,6402,0,6,30,16,5,6515,6505,6504,6512,43,6408,6407,6406,6405,0,6,30,16,5,6516,6506,6505,6515,43,6409,6408,6405,6404,0,6,30,16,5,6517,6516,6515,6514,42,6409,6404,6422,0,6,16,5,6517,6514,6475,42,6410,6409,6422,0,6,16,5,6518,6517,6475,43,6410,6411,6408,6409,0,6,30,16,5,6518,6519,6516,6517,43,6411,6412,6407,6408,0,6,30,16,5,6519,6507,6506,6516,43,6414,6413,6412,6411,0,6,30,16,5,6520,6508,6507,6519,43,6415,6414,6411,6410,0,6,30,16,5,6521,6520,6519,6518,42,6415,6410,6422,0,6,16,5,6521,6518,6475,42,6416,6415,6422,0,6,16,5,6522,6521,6475,43,6416,6417,6414,6415,0,6,30,16,5,6522,6523,6520,6521,43,6417,6418,6413,6414,0,6,30,16,5,6523,6509,6508,6520,43,6420,6419,6418,6417,0,6,30,16,5,6481,6466,6509,6523,43,6421,6420,6417,6416,0,6,30,16,5,6474,6481,6523,6522,42,6421,6416,6422,0,6,16,5,6474,6522,6475,42,6537,6482,6426,0,746,748,747,6524,6525,6526,43,6536,6537,6426,6427,0,749,746,747,750,6527,6524,6526,6528,43,6535,6536,6427,6428,0,751,754,753,752,6529,6527,6528,6530,43,6534,6535,6428,6429,0,755,751,752,756,6531,6529,6530,6532,43,6533,6534,6429,6430,0,757,755,756,758,6533,6531,6532,6534,43,6532,6533,6430,6431,0,759,757,758,760,6535,6533,6534,6536,43,6431,6430,6435,6434,0,760,758,762,761,6536,6534,6537,6538,43,6430,6429,6436,6435,0,758,756,763,762,6534,6532,6539,6537,43,6429,6428,6437,6436,0,756,752,764,763,6532,6530,6540,6539,43,6428,6427,6438,6437,0,752,753,765,764,6530,6528,6541,6540,43,6427,6426,6439,6438,0,750,747,767,766,6528,6526,6542,6541,42,6426,6482,6439,0,747,748,767,6526,6525,6542,42,6439,6482,6440,0,767,748,768,6542,6525,6543,43,6438,6439,6440,6441,0,766,767,768,769,6541,6542,6543,6544,43,6437,6438,6441,6442,0,764,765,771,770,6540,6541,6544,6545,43,6436,6437,6442,6443,0,763,764,770,772,6539,6540,6545,6546,43,6435,6436,6443,6444,0,762,763,772,773,6537,6539,6546,6547,43,6434,6435,6444,6445,0,761,762,773,774,6538,6537,6547,6548,43,6445,6444,6449,6448,0,774,773,776,775,6548,6547,6549,6550,43,6444,6443,6450,6449,0,773,772,777,776,6547,6546,3423,6549,43,6443,6442,6451,6450,0,772,770,778,777,6546,6545,6551,3423,43,6442,6441,6452,6451,0,770,771,779,778,6545,6544,6552,6551,43,6441,6440,6453,6452,0,769,768,781,780,6544,6543,6553,6552,42,6440,6482,6453,0,768,748,781,6543,6525,6553,42,6453,6482,6454,0,781,748,782,6553,6525,6554,43,6452,6453,6454,6455,0,780,781,782,783,6552,6553,6554,6555,43,6451,6452,6455,6456,0,778,779,785,784,6551,6552,6555,6556,43,6450,6451,6456,6457,0,777,778,784,786,3423,6551,6556,6557,43,6449,6450,6457,6458,0,776,777,786,787,6549,3423,6557,6558,43,6448,6449,6458,6459,0,775,776,787,788,6550,6549,6558,6559,43,6459,6458,6463,6462,0,788,787,790,789,6559,6558,6560,6561,43,6458,6457,6464,6463,0,787,786,791,790,6558,6557,6562,6560,43,6457,6456,6465,6464,0,786,784,792,791,6557,6556,6563,6562,43,6456,6455,6466,6465,0,784,785,793,792,6556,6555,6564,6563,43,6455,6454,6467,6466,0,783,782,795,794,6555,6554,6565,6564,42,6454,6482,6467,0,782,748,795,6554,6525,6565,42,6467,6482,6468,0,795,748,796,6565,6525,6566,43,6466,6467,6468,6469,0,794,795,796,797,6564,6565,6566,6567,43,6465,6466,6469,6470,0,792,793,799,798,6563,6564,6567,6568,43,6464,6465,6470,6471,0,791,792,798,800,6562,6563,6568,6569,43,6463,6464,6471,6472,0,790,791,800,801,6560,6562,6569,6570,43,6462,6463,6472,6473,0,789,790,801,802,6561,6560,6570,6571,43,6473,6472,6477,6476,0,802,801,804,803,6571,6570,6572,6573,43,6472,6471,6478,6477,0,801,800,805,804,6570,6569,6574,6572,43,6471,6470,6479,6478,0,800,798,806,805,6569,6568,6575,6574,43,6470,6469,6480,6479,0,798,799,807,806,6568,6567,6576,6575,43,6469,6468,6481,6480,0,797,796,809,808,6567,6566,6577,6576,42,6468,6482,6481,0,796,748,809,6566,6525,6577,42,6481,6482,6483,0,809,748,810,6577,6525,6578,43,6480,6481,6483,6484,0,808,809,810,811,6576,6577,6578,6579,43,6479,6480,6484,6485,0,812,815,814,813,6575,6576,6579,6580,43,6478,6479,6485,6486,0,816,812,813,817,6574,6575,6580,6581,43,6477,6478,6486,6487,0,818,816,817,819,6572,6574,6581,6582,43,6476,6477,6487,6488,0,820,818,819,821,6573,6572,6582,6583,43,6488,6487,6492,6491,0,821,819,823,822,6583,6582,6584,6585,43,6487,6486,6493,6492,0,819,817,824,823,6582,6581,6586,6584,43,6486,6485,6494,6493,0,817,813,825,824,6581,6580,6587,6586,43,6485,6484,6495,6494,0,813,814,826,825,6580,6579,6588,6587,43,6484,6483,6496,6495,0,811,810,828,827,6579,6578,6589,6588,42,6483,6482,6496,0,810,748,828,6578,6525,6589,42,6496,6482,6497,0,828,748,829,6589,6525,6590,43,6495,6496,6497,6498,0,827,828,829,830,6588,6589,6590,6591,43,6494,6495,6498,6499,0,825,826,832,831,6587,6588,6591,6592,43,6493,6494,6499,6500,0,824,825,831,833,6586,6587,6592,6593,43,6492,6493,6500,6501,0,823,824,833,834,6584,6586,6593,6594,43,6491,6492,6501,6502,0,822,823,834,835,6585,6584,6594,6595,43,6502,6501,6506,6505,0,835,834,837,836,6595,6594,6596,6597,43,6501,6500,6507,6506,0,834,833,838,837,6594,6593,3471,6596,43,6500,6499,6508,6507,0,833,831,839,838,6593,6592,6598,3471,43,6499,6498,6509,6508,0,831,832,840,839,6592,6591,6599,6598,43,6498,6497,6510,6509,0,830,829,842,841,6591,6590,6600,6599,42,6497,6482,6510,0,829,748,842,6590,6525,6600,42,6510,6482,6511,0,842,748,843,6600,6525,6601,43,6509,6510,6511,6512,0,841,842,843,844,6599,6600,6601,6602,43,6508,6509,6512,6513,0,839,840,846,845,6598,6599,6602,6603,43,6507,6508,6513,6514,0,838,839,845,847,3471,6598,6603,6604,43,6506,6507,6514,6515,0,837,838,847,848,6596,3471,6604,6605,43,6505,6506,6515,6516,0,836,837,848,849,6597,6596,6605,6606,43,6516,6515,6520,6519,0,849,848,851,850,6606,6605,6607,6608,43,6515,6514,6521,6520,0,848,847,852,851,6605,6604,6609,6607,43,6514,6513,6522,6521,0,847,845,853,852,6604,6603,6610,6609,43,6513,6512,6523,6522,0,845,846,854,853,6603,6602,6611,6610,43,6512,6511,6524,6523,0,844,843,856,855,6602,6601,6612,6611,42,6511,6482,6524,0,843,748,856,6601,6525,6612,42,6524,6482,6525,0,856,748,857,6612,6525,6613,43,6523,6524,6525,6526,0,855,856,857,858,6611,6612,6613,6614,43,6522,6523,6526,6527,0,853,854,860,859,6610,6611,6614,6615,43,6521,6522,6527,6528,0,852,853,859,861,6609,6610,6615,6616,43,6520,6521,6528,6529,0,851,852,861,862,6607,6609,6616,6617,43,6519,6520,6529,6530,0,850,851,862,863,6608,6607,6617,6618,43,6530,6529,6533,6532,0,863,862,865,864,6618,6617,6533,6535,43,6529,6528,6534,6533,0,862,861,866,865,6617,6616,6531,6533,43,6528,6527,6535,6534,0,861,859,867,866,6616,6615,6529,6531,43,6527,6526,6536,6535,0,859,860,868,867,6615,6614,6527,6529,43,6526,6525,6537,6536,0,858,857,746,749,6614,6613,6524,6527,42,6525,6482,6537,0,857,748,746,6613,6525,6524,43,6531,6425,6553,6538,0,869,872,871,870,6619,6620,6621,6622,43,6518,6531,6538,6539,0,873,869,870,874,6623,6619,6622,6624,43,6517,6518,6539,6540,0,875,873,874,876,6625,6623,6624,6626,43,6504,6517,6540,6541,0,877,875,876,878,6627,6625,6626,6628,43,6503,6504,6541,6542,0,879,877,878,880,6629,6627,6628,6630,43,6490,6503,6542,6543,0,881,879,880,882,6631,6629,6630,6632,43,6489,6490,6543,6544,0,883,881,882,884,6633,6631,6632,6634,43,6475,6489,6544,6545,0,885,883,884,886,6635,6633,6634,6636,43,6474,6475,6545,6546,0,887,885,886,888,6637,6635,6636,6638,43,6461,6474,6546,6547,0,889,887,888,890,6639,6637,6638,6640,43,6460,6461,6547,6548,0,891,889,890,892,6641,6639,6640,6642,43,6447,6460,6548,6549,0,893,891,892,894,6643,6641,6642,6644,43,6446,6447,6549,6550,0,895,893,894,896,6645,6643,6644,6646,43,6433,6446,6550,6551,0,897,895,896,898,6647,6645,6646,6648,43,6432,6433,6551,6552,0,899,897,898,900,6649,6647,6648,6650,43,6425,6432,6552,6553,0,872,899,900,871,6620,6649,6650,6621,42,6569,6554,6570,0,6,5,16,6651,6651,6651,42,6569,6570,6568,0,6,16,5,6651,6651,6651,42,6568,6570,6567,0,6,16,5,6651,6651,6651,42,6567,6570,6566,0,6,16,5,6651,6651,6651,42,6566,6570,6565,0,6,16,5,6651,6651,6651,42,6565,6570,6564,0,6,16,5,6651,6651,6651,42,6564,6570,6563,0,6,16,5,6651,6651,6651,42,6563,6570,6562,0,6,16,5,6651,6651,6651,42,6562,6570,6561,0,6,16,5,6651,6651,6651,42,6561,6570,6560,0,6,16,5,6651,6651,6651,42,6560,6570,6559,0,6,16,5,6651,6651,6651,42,6559,6570,6558,0,6,16,5,6651,6651,6651,42,6558,6570,6557,0,6,16,5,6651,6651,6651,42,6557,6570,6556,0,6,16,5,6651,6651,6651,42,6556,6570,6555,0,6,16,5,6651,6651,6651,42,6555,6570,6554,0,6,16,5,6651,6651,6651,43,6425,6586,6571,6432,0,872,902,901,899,6620,6652,6653,6649,43,6586,6532,6431,6571,0,902,904,903,901,6652,6535,6536,6653,43,6432,6571,6572,6433,0,899,901,905,897,6649,6653,6654,6647,43,6571,6431,6434,6572,0,901,903,906,905,6653,6536,6538,6654,43,6433,6572,6573,6446,0,897,905,907,895,6647,6654,6655,6645,43,6572,6434,6445,6573,0,905,906,908,907,6654,6538,6548,6655,43,6446,6573,6574,6447,0,895,907,909,893,6645,6655,6656,6643,43,6573,6445,6448,6574,0,907,908,910,909,6655,6548,6550,6656,43,6447,6574,6575,6460,0,893,909,911,891,6643,6656,6657,6641,43,6574,6448,6459,6575,0,909,910,912,911,6656,6550,6559,6657,43,6460,6575,6576,6461,0,891,911,913,889,6641,6657,6658,6639,43,6575,6459,6462,6576,0,911,912,914,913,6657,6559,6561,6658,43,6461,6576,6577,6474,0,889,913,915,887,6639,6658,6659,6637,43,6576,6462,6473,6577,0,913,914,916,915,6658,6561,6571,6659,43,6474,6577,6578,6475,0,887,918,917,885,6637,6659,6660,6635,43,6577,6473,6476,6578,0,918,916,919,917,6659,6571,6573,6660,43,6475,6578,6579,6489,0,885,917,920,883,6635,6660,6661,6633,43,6578,6476,6488,6579,0,917,919,921,920,6660,6573,6583,6661,43,6489,6579,6580,6490,0,883,923,922,881,6633,6661,6662,6631,43,6579,6488,6491,6580,0,923,921,924,922,6661,6583,6585,6662,43,6490,6580,6581,6503,0,881,922,925,879,6631,6662,6663,6629,43,6580,6491,6502,6581,0,922,924,926,925,6662,6585,6595,6663,43,6503,6581,6582,6504,0,879,925,927,877,6629,6663,6664,6627,43,6581,6502,6505,6582,0,925,926,928,927,6663,6595,6597,6664,43,6504,6582,6583,6517,0,877,927,929,875,6627,6664,6665,6625,43,6582,6505,6516,6583,0,927,928,930,929,6664,6597,6606,6665,43,6517,6583,6584,6518,0,875,929,931,873,6625,6665,6666,6623,43,6583,6516,6519,6584,0,929,930,932,931,6665,6606,6608,6666,43,6518,6584,6585,6531,0,873,931,933,869,6623,6666,6667,6619,43,6584,6519,6530,6585,0,931,932,934,933,6666,6608,6618,6667,43,6532,6586,6585,6530,0,904,902,933,934,6535,6652,6667,6618,43,6586,6425,6531,6585,0,902,872,869,933,6652,6620,6619,6667,43,6623,6631,6650,6640,0,6,30,16,5,6668,6669,6670,6671,43,6624,6633,6652,6641,0,6,30,16,5,6672,6673,6674,6675,43,6625,6634,6653,6642,0,6,30,16,5,6676,6677,6678,6679,43,6626,6635,6654,6643,0,6,30,16,5,6680,6681,6682,6683,43,6627,6636,6655,6644,0,6,30,16,5,6684,6685,6686,6687,43,6628,6637,6656,6645,0,6,30,16,5,6688,6689,6690,6691,43,6629,6638,6657,6646,0,6,30,16,5,6692,6693,6694,6695,43,6630,6639,6658,6647,0,6,30,16,5,6696,6697,6698,6699,43,6631,6726,6696,6650,0,6,30,16,5,6669,3579,3576,6670,43,6697,6727,6632,6651,0,16,30,6,5,3574,3575,6700,6701,43,6633,6728,6698,6652,0,6,30,16,5,6673,6702,6703,6674,43,6634,6729,6699,6653,0,6,30,16,5,6677,6704,6705,6678,43,6635,6730,6700,6654,0,6,30,16,5,6681,6706,6707,6682,43,6636,6731,6701,6655,0,6,30,16,5,6685,6708,6709,6686,43,6637,6732,6702,6656,0,6,30,16,5,6689,6710,6711,6690,43,6638,6733,6703,6657,0,6,30,16,5,6693,6712,6713,6694,43,6639,6734,6704,6658,0,6,30,16,5,6697,6714,6715,6698,43,6604,6695,6725,6603,0,6,5,16,30,3594,3597,3596,3595,43,6726,6603,6604,6696,0,6,30,16,5,3579,3595,3594,3576,43,6604,6603,6727,6697,0,16,30,6,5,3594,3595,3575,3574,43,6728,6595,6587,6698,0,6,30,16,5,6702,6716,6717,6703,43,6729,6596,6588,6699,0,6,30,16,5,6704,6718,6719,6705,43,6730,6597,6589,6700,0,6,30,16,5,6706,6720,6721,6707,43,6731,6598,6590,6701,0,6,30,16,5,6708,6722,6723,6709,43,6732,6599,6591,6702,0,6,30,16,5,6710,6724,6725,6711,43,6733,6600,6592,6703,0,6,30,16,5,6712,6726,6727,6713,43,6734,6601,6593,6704,0,6,30,16,5,6714,6728,6729,6715,43,6640,6743,6735,6623,0,6,30,16,5,6671,6730,6731,6668,43,6641,6744,6736,6624,0,6,30,16,5,6675,6732,6733,6672,43,6642,6745,6737,6625,0,6,30,16,5,6679,6734,6735,6676,43,6643,6746,6738,6626,0,6,30,16,5,6683,6736,6737,6680,43,6644,6747,6739,6627,0,6,30,16,5,6687,6738,6739,6684,43,6645,6748,6740,6628,0,6,30,16,5,6691,6740,6741,6688,43,6646,6749,6741,6629,0,6,30,16,5,6695,6742,6743,6692,43,6647,6750,6742,6630,0,6,30,16,5,6699,6744,6745,6696,43,6743,6587,6595,6735,0,6,30,16,5,6730,6717,6716,6731,43,6744,6588,6596,6736,0,6,30,16,5,6732,6719,6718,6733,43,6745,6589,6597,6737,0,6,30,16,5,6734,6721,6720,6735,43,6746,6590,6598,6738,0,6,30,16,5,6736,6723,6722,6737,43,6747,6591,6599,6739,0,6,30,16,5,6738,6725,6724,6739,43,6748,6592,6600,6740,0,6,30,16,5,6740,6727,6726,6741,43,6749,6593,6601,6741,0,6,30,16,5,6742,6729,6728,6743,43,6750,6594,6602,6742,0,6,30,16,5,6744,6746,6747,6745,43,6796,6795,6812,6813,0,6,30,16,5,6748,6749,6750,6751,43,6798,6797,6814,6794,0,6,30,16,5,6752,6753,6754,6755,43,6800,6799,6815,6816,0,6,30,16,5,6756,6757,6758,6759,43,6802,6801,6817,6792,0,6,30,16,5,6760,6761,6762,6763,43,6804,6803,6818,6790,0,6,30,16,5,6764,6765,6766,6767,43,6806,6805,6819,6820,0,6,30,16,5,6768,6769,6770,6771,43,6808,6807,6821,6822,0,6,30,16,5,6772,6773,6774,6775,43,6810,6809,6823,6824,0,6,30,16,5,6776,6777,6778,6779,43,6811,6796,6813,6825,0,6,30,16,5,6780,6748,6751,6781,43,6779,6798,6794,6793,0,6,30,16,5,6782,6752,6755,6783,43,6777,6800,6816,6787,0,6,30,16,5,6784,6756,6759,6785,43,6775,6802,6792,6791,0,6,30,16,5,6786,6760,6763,6787,43,6773,6804,6790,6789,0,6,30,16,5,6788,6764,6767,6789,43,6771,6806,6820,6785,0,6,30,16,5,6790,6768,6771,6791,43,6769,6808,6822,6783,0,6,30,16,5,6792,6772,6775,6793,43,6767,6810,6824,6781,0,6,30,16,5,6794,6776,6779,6795,43,6780,6779,6793,6827,0,6,30,16,5,6796,6782,6783,6797,43,6778,6777,6787,6788,0,6,30,16,5,6798,6784,6785,6799,43,6776,6775,6791,6830,0,6,30,16,5,6800,6786,6787,6801,43,6774,6773,6789,6832,0,6,30,16,5,6802,6788,6789,6803,43,6772,6771,6785,6786,0,6,30,16,5,6804,6790,6791,6805,43,6770,6769,6783,6784,0,6,30,16,5,6806,6792,6793,6807,43,6768,6767,6781,6782,0,6,30,16,5,6808,6794,6795,6809,43,6842,6858,6854,6838,0,6,30,16,5,3692,3695,3696,3697,43,6855,6858,6842,6839,0,16,30,6,5,3694,3695,3692,3693,43,6856,6858,6842,6840,0,6,30,16,5,3701,3695,3692,3700,43,6842,6858,6857,6841,0,16,30,6,5,3692,3695,3698,3699,43,6843,6780,6827,6826,0,6,30,16,5,6810,6796,6797,6811,43,6844,6778,6788,6828,0,6,30,16,5,6812,6798,6799,6813,43,6845,6776,6830,6829,0,6,30,16,5,6814,6800,6801,6815,43,6846,6774,6832,6831,0,6,30,16,5,6816,6802,6803,6817,43,6847,6772,6786,6833,0,6,30,16,5,6818,6804,6805,6819,43,6848,6770,6784,6834,0,6,30,16,5,6820,6806,6807,6821,43,6849,6768,6782,6835,0,6,30,16,5,6822,6808,6809,6823,43,6852,6856,6840,6836,0,6,30,16,5,6824,3701,3700,6825,43,6841,6857,6853,6837,0,16,30,6,5,3699,3698,6826,6827,43,6795,6843,6826,6812,0,6,30,16,5,6749,6810,6811,6750,43,6797,6844,6828,6814,0,6,30,16,5,6753,6812,6813,6754,43,6799,6845,6829,6815,0,6,30,16,5,6757,6814,6815,6758,43,6801,6846,6831,6817,0,6,30,16,5,6761,6816,6817,6762,43,6803,6847,6833,6818,0,6,30,16,5,6765,6818,6819,6766,43,6805,6848,6834,6819,0,6,30,16,5,6769,6820,6821,6770,43,6807,6849,6835,6821,0,6,30,16,5,6773,6822,6823,6774,43,6809,6852,6836,6823,0,6,30,16,5,6777,6824,6825,6778,43,6859,6767,6768,6860,0,6,30,16,5,6828,6794,6808,6829,43,6861,6769,6770,6862,0,6,30,16,5,6830,6792,6806,6831,43,6863,6771,6772,6864,0,6,30,16,5,6832,6790,6804,6833,43,6865,6773,6774,6866,0,6,30,16,5,6834,6788,6802,6835,43,6867,6775,6776,6868,0,6,30,16,5,6836,6786,6800,6837,43,6869,6777,6778,6870,0,6,30,16,5,6838,6784,6798,6839,43,6871,6779,6780,6872,0,6,30,16,5,6840,6782,6796,6841,43,6873,6782,6781,6874,0,6,30,16,5,6842,6809,6795,6843,43,6875,6784,6783,6876,0,6,30,16,5,6844,6807,6793,6845,43,6877,6786,6785,6878,0,6,30,16,5,6846,6805,6791,6847,43,6879,6788,6787,6880,0,6,30,16,5,6848,6799,6785,6849,43,6881,6789,6790,6882,0,6,30,16,5,6850,6789,6767,6851,43,6883,6791,6792,6884,0,6,30,16,5,6852,6787,6763,6853,43,6885,6793,6794,6886,0,6,30,16,5,6854,6783,6755,6855,43,6887,6795,6796,6888,0,6,30,16,5,6856,6749,6748,6857,43,6889,6797,6798,6890,0,6,30,16,5,6858,6753,6752,6859,43,6891,6799,6800,6892,0,6,30,16,5,6860,6757,6756,6861,43,6893,6801,6802,6894,0,6,30,16,5,6862,6761,6760,6863,43,6895,6803,6804,6896,0,6,30,16,5,6864,6765,6764,6865,43,6897,6805,6806,6898,0,6,30,16,5,6866,6769,6768,6867,43,6899,6807,6808,6900,0,6,30,16,5,6868,6773,6772,6869,43,6901,6809,6810,6902,0,6,30,16,5,6870,6777,6776,6871,43,6888,6796,6811,6903,0,6,30,16,5,6857,6748,6780,6872,43,6890,6798,6779,6871,0,6,30,16,5,6859,6752,6782,6840,43,6892,6800,6777,6869,0,6,30,16,5,6861,6756,6784,6838,43,6894,6802,6775,6867,0,6,30,16,5,6863,6760,6786,6836,43,6896,6804,6773,6865,0,6,30,16,5,6865,6764,6788,6834,43,6898,6806,6771,6863,0,6,30,16,5,6867,6768,6790,6832,43,6900,6808,6769,6861,0,6,30,16,5,6869,6772,6792,6830,43,6902,6810,6767,6859,0,6,30,16,5,6871,6776,6794,6828,43,6904,6813,6812,6905,0,6,30,16,5,6873,6751,6750,6874,43,6886,6794,6814,6906,0,6,30,16,5,6855,6755,6754,6875,43,6907,6816,6815,6908,0,6,30,16,5,6876,6759,6758,6877,43,6884,6792,6817,6909,0,6,30,16,5,6853,6763,6762,6878,43,6882,6790,6818,6910,0,6,30,16,5,6851,6767,6766,6879,43,6911,6820,6819,6912,0,6,30,16,5,6880,6771,6770,6881,43,6913,6822,6821,6914,0,6,30,16,5,6882,6775,6774,6883,43,6915,6824,6823,6916,0,6,30,16,5,6884,6779,6778,6885,43,6917,6825,6813,6904,0,6,30,16,5,6886,6781,6751,6873,43,6880,6787,6816,6907,0,6,30,16,5,6849,6785,6759,6876,43,6878,6785,6820,6911,0,6,30,16,5,6847,6791,6771,6880,43,6876,6783,6822,6913,0,6,30,16,5,6845,6793,6775,6882,43,6874,6781,6824,6915,0,6,30,16,5,6843,6795,6779,6884,43,6918,6826,6827,6919,0,6,30,16,5,6887,6811,6797,6888,43,6920,6828,6788,6879,0,6,30,16,5,6889,6813,6799,6848,43,6921,6829,6830,6922,0,6,30,16,5,6890,6815,6801,6891,43,6923,6831,6832,6924,0,6,30,16,5,6892,6817,6803,6893,43,6925,6833,6786,6877,0,6,30,16,5,6894,6819,6805,6846,43,6926,6834,6784,6875,0,6,30,16,5,6895,6821,6807,6844,43,6927,6835,6782,6873,0,6,30,16,5,6896,6823,6809,6842,43,6928,6836,6840,6932,0,6,30,16,5,6897,6825,3700,3791,43,6841,6837,6929,6933,0,16,30,6,5,3699,6827,6898,3790,43,6919,6827,6793,6885,0,6,30,16,5,6888,6797,6783,6854,43,6922,6830,6791,6883,0,6,30,16,5,6891,6801,6787,6852,43,6924,6832,6789,6881,0,6,30,16,5,6893,6803,6789,6850,43,6842,6838,6930,6934,0,6,30,16,5,3692,3697,3795,3793,43,6931,6839,6842,6934,0,16,30,6,5,3794,3693,3692,3793,43,6932,6840,6842,6934,0,6,30,16,5,3791,3700,3692,3793,43,6842,6841,6933,6934,0,16,30,6,5,3692,3699,3790,3793,43,6872,6780,6843,6935,0,6,30,16,5,6841,6796,6810,6899,43,6870,6778,6844,6936,0,6,30,16,5,6839,6798,6812,6900,43,6868,6776,6845,6937,0,6,30,16,5,6837,6800,6814,6901,43,6866,6774,6846,6938,0,6,30,16,5,6835,6802,6816,6902,43,6864,6772,6847,6939,0,6,30,16,5,6833,6804,6818,6903,43,6862,6770,6848,6940,0,6,30,16,5,6831,6806,6820,6904,43,6860,6768,6849,6941,0,6,30,16,5,6829,6808,6822,6905,43,6944,6856,6852,6946,0,6,30,16,5,3806,3701,6824,6906,43,6853,6857,6945,6947,0,16,30,6,5,6826,3698,3803,6907,43,6854,6858,6948,6942,0,6,30,16,5,3696,3695,3808,3809,43,6948,6858,6855,6943,0,16,30,6,5,3808,3695,3694,3807,43,6948,6858,6856,6944,0,6,30,16,5,3808,3695,3701,3806,43,6857,6858,6948,6945,0,16,30,6,5,3698,3695,3808,3803,43,6935,6843,6795,6887,0,6,30,16,5,6899,6810,6749,6856,43,6936,6844,6797,6889,0,6,30,16,5,6900,6812,6753,6858,43,6937,6845,6799,6891,0,6,30,16,5,6901,6814,6757,6860,43,6938,6846,6801,6893,0,6,30,16,5,6902,6816,6761,6862,43,6939,6847,6803,6895,0,6,30,16,5,6903,6818,6765,6864,43,6940,6848,6805,6897,0,6,30,16,5,6904,6820,6769,6866,43,6941,6849,6807,6899,0,6,30,16,5,6905,6822,6773,6868,43,6946,6852,6809,6901,0,6,30,16,5,6906,6824,6777,6870,43,6905,6812,6826,6918,0,6,30,16,5,6874,6750,6811,6887,43,6906,6814,6828,6920,0,6,30,16,5,6875,6754,6813,6889,43,6908,6815,6829,6921,0,6,30,16,5,6877,6758,6815,6890,43,6909,6817,6831,6923,0,6,30,16,5,6878,6762,6817,6892,43,6910,6818,6833,6925,0,6,30,16,5,6879,6766,6819,6894,43,6912,6819,6834,6926,0,6,30,16,5,6881,6770,6821,6895,43,6914,6821,6835,6927,0,6,30,16,5,6883,6774,6823,6896,43,6916,6823,6836,6928,0,6,30,16,5,6885,6778,6825,6897,43,6903,6811,6825,6917,0,6,30,16,5,6872,6780,6781,6886,43,6605,6949,6950,6708,0,6,30,16,5,6908,6909,6910,6911,43,6949,6859,6860,6950,0,6,30,16,5,6909,6828,6829,6910,43,6606,6951,6952,6709,0,6,30,16,5,6912,6913,6914,6915,43,6951,6861,6862,6952,0,6,30,16,5,6913,6830,6831,6914,43,6607,6953,6954,6710,0,6,30,16,5,6916,6917,6918,6919,43,6953,6863,6864,6954,0,6,30,16,5,6917,6832,6833,6918,43,6608,6955,6956,6711,0,6,30,16,5,6920,6921,6922,6923,43,6955,6865,6866,6956,0,6,30,16,5,6921,6834,6835,6922,43,6609,6957,6958,6712,0,6,30,16,5,6924,6925,6926,6927,43,6957,6867,6868,6958,0,6,30,16,5,6925,6836,6837,6926,43,6610,6959,6960,6713,0,6,30,16,5,6928,6929,6930,6931,43,6959,6869,6870,6960,0,6,30,16,5,6929,6838,6839,6930,43,6611,6961,6962,6714,0,6,30,16,5,6932,6933,6934,6935,43,6961,6871,6872,6962,0,6,30,16,5,6933,6840,6841,6934,43,6718,6963,6964,6613,0,6,30,16,5,6936,6937,6938,6939,43,6963,6873,6874,6964,0,6,30,16,5,6937,6842,6843,6938,43,6719,6965,6966,6614,0,6,30,16,5,6940,6941,6942,6943,43,6965,6875,6876,6966,0,6,30,16,5,6941,6844,6845,6942,43,6720,6967,6968,6615,0,6,30,16,5,6944,6945,6946,6947,43,6967,6877,6878,6968,0,6,30,16,5,6945,6846,6847,6946,43,6723,6969,6970,6616,0,6,30,16,5,6948,6949,6950,6951,43,6969,6879,6880,6970,0,6,30,16,5,6949,6848,6849,6950,43,6619,6971,6972,6754,0,6,30,16,5,6952,6953,6954,6955,43,6971,6881,6882,6972,0,6,30,16,5,6953,6850,6851,6954,43,6620,6973,6974,6755,0,6,30,16,5,6956,6957,6958,6959,43,6973,6883,6884,6974,0,6,30,16,5,6957,6852,6853,6958,43,6621,6975,6976,6757,0,6,30,16,5,6960,6961,6962,6963,43,6975,6885,6886,6976,0,6,30,16,5,6961,6854,6855,6962,43,6683,6977,6978,6766,0,6,30,16,5,6964,6965,6966,6967,43,6977,6887,6888,6978,0,6,30,16,5,6965,6856,6857,6966,43,6682,6979,6980,6765,0,6,30,16,5,6968,6969,6970,6971,43,6979,6889,6890,6980,0,6,30,16,5,6969,6858,6859,6970,43,6681,6981,6982,6764,0,6,30,16,5,6972,6973,6974,6975,43,6981,6891,6892,6982,0,6,30,16,5,6973,6860,6861,6974,43,6680,6983,6984,6763,0,6,30,16,5,6976,6977,6978,6979,43,6983,6893,6894,6984,0,6,30,16,5,6977,6862,6863,6978,43,6679,6985,6986,6762,0,6,30,16,5,6980,6981,6982,6983,43,6985,6895,6896,6986,0,6,30,16,5,6981,6864,6865,6982,43,6678,6987,6988,6761,0,6,30,16,5,6984,6985,6986,6987,43,6987,6897,6898,6988,0,6,30,16,5,6985,6866,6867,6986,43,6677,6989,6990,6760,0,6,30,16,5,6988,6989,6990,6991,43,6989,6899,6900,6990,0,6,30,16,5,6989,6868,6869,6990,43,6676,6991,6992,6759,0,6,30,16,5,6992,6993,6994,6995,43,6991,6901,6902,6992,0,6,30,16,5,6993,6870,6871,6994,43,6766,6978,6993,6612,0,6,30,16,5,6967,6966,6996,6997,43,6978,6888,6903,6993,0,6,30,16,5,6966,6857,6872,6996,43,6765,6980,6961,6611,0,6,30,16,5,6971,6970,6933,6932,43,6980,6890,6871,6961,0,6,30,16,5,6970,6859,6840,6933,43,6764,6982,6959,6610,0,6,30,16,5,6975,6974,6929,6928,43,6982,6892,6869,6959,0,6,30,16,5,6974,6861,6838,6929,43,6763,6984,6957,6609,0,6,30,16,5,6979,6978,6925,6924,43,6984,6894,6867,6957,0,6,30,16,5,6978,6863,6836,6925,43,6762,6986,6955,6608,0,6,30,16,5,6983,6982,6921,6920,43,6986,6896,6865,6955,0,6,30,16,5,6982,6865,6834,6921,43,6761,6988,6953,6607,0,6,30,16,5,6987,6986,6917,6916,43,6988,6898,6863,6953,0,6,30,16,5,6986,6867,6832,6917,43,6760,6990,6951,6606,0,6,30,16,5,6991,6990,6913,6912,43,6990,6900,6861,6951,0,6,30,16,5,6990,6869,6830,6913,43,6759,6992,6949,6605,0,6,30,16,5,6995,6994,6909,6908,43,6992,6902,6859,6949,0,6,30,16,5,6994,6871,6828,6909,43,6758,6994,6995,6666,0,6,30,16,5,6998,6999,7000,7001,43,6994,6904,6905,6995,0,6,30,16,5,6999,6873,6874,7000,43,6757,6976,6996,6665,0,6,30,16,5,6963,6962,7002,7003,43,6976,6886,6906,6996,0,6,30,16,5,6962,6855,6875,7002,43,6756,6997,6998,6664,0,6,30,16,5,7004,7005,7006,7007,43,6997,6907,6908,6998,0,6,30,16,5,7005,6876,6877,7006,43,6755,6974,6999,6663,0,6,30,16,5,6959,6958,7008,7009,43,6974,6884,6909,6999,0,6,30,16,5,6958,6853,6878,7008,43,6754,6972,7000,6662,0,6,30,16,5,6955,6954,7010,7011,43,6972,6882,6910,7000,0,6,30,16,5,6954,6851,6879,7010,43,6753,7001,7002,6661,0,6,30,16,5,7012,7013,7014,7015,43,7001,6911,6912,7002,0,6,30,16,5,7013,6880,6881,7014,43,6752,7003,7004,6660,0,6,30,16,5,7016,7017,7018,7019,43,7003,6913,6914,7004,0,6,30,16,5,7017,6882,6883,7018,43,6751,7005,7006,6659,0,6,30,16,5,7020,7021,7022,7023,43,7005,6915,6916,7006,0,6,30,16,5,7021,6884,6885,7022,43,6617,7007,6994,6758,0,6,30,16,5,7024,7025,6999,6998,43,7007,6917,6904,6994,0,6,30,16,5,7025,6886,6873,6999,43,6616,6970,6997,6756,0,6,30,16,5,6951,6950,7005,7004,43,6970,6880,6907,6997,0,6,30,16,5,6950,6849,6876,7005,43,6615,6968,7001,6753,0,6,30,16,5,6947,6946,7013,7012,43,6968,6878,6911,7001,0,6,30,16,5,6946,6847,6880,7013,43,6614,6966,7003,6752,0,6,30,16,5,6943,6942,7017,7016,43,6966,6876,6913,7003,0,6,30,16,5,6942,6845,6882,7017,43,6613,6964,7005,6751,0,6,30,16,5,6939,6938,7021,7020,43,6964,6874,6915,7005,0,6,30,16,5,6938,6843,6884,7021,43,6675,7008,7009,6724,0,6,30,16,5,7026,7027,7028,7029,43,7008,6918,6919,7009,0,6,30,16,5,7027,6887,6888,7028,43,6674,7010,6969,6723,0,6,30,16,5,7030,7031,6949,6948,43,7010,6920,6879,6969,0,6,30,16,5,7031,6889,6848,6949,43,6673,7011,7012,6722,0,6,30,16,5,7032,7033,7034,7035,43,7011,6921,6922,7012,0,6,30,16,5,7033,6890,6891,7034,43,6672,7013,7014,6721,0,6,30,16,5,7036,7037,7038,7039,43,7013,6923,6924,7014,0,6,30,16,5,7037,6892,6893,7038,43,6671,7015,6967,6720,0,6,30,16,5,7040,7041,6945,6944,43,7015,6925,6877,6967,0,6,30,16,5,7041,6894,6846,6945,43,6670,7016,6965,6719,0,6,30,16,5,7042,7043,6941,6940,43,7016,6926,6875,6965,0,6,30,16,5,7043,6895,6844,6941,43,6669,7017,6963,6718,0,6,30,16,5,7044,7045,6937,6936,43,7017,6927,6873,6963,0,6,30,16,5,7045,6896,6842,6937,43,6667,7018,7021,6716,0,6,30,16,5,7046,7047,3952,3953,43,7022,7019,6668,6717,0,16,30,6,5,3950,7048,7049,3949,43,7018,6928,6932,7021,0,6,30,16,5,7047,6897,3791,3952,43,6933,6929,7019,7022,0,16,30,6,5,3790,6898,7048,3950,43,6724,7009,6975,6621,0,6,30,16,5,7029,7028,6961,6960,43,7009,6919,6885,6975,0,6,30,16,5,7028,6888,6854,6961,43,6722,7012,6973,6620,0,6,30,16,5,7035,7034,6957,6956,43,7012,6922,6883,6973,0,6,30,16,5,7034,6891,6852,6957,43,6721,7014,6971,6619,0,6,30,16,5,7039,7038,6953,6952,43,7014,6924,6881,6971,0,6,30,16,5,7038,6893,6850,6953,43,7023,7020,6715,6618,0,6,30,16,5,3956,3959,3958,3957,43,6716,7021,7023,6618,0,6,30,16,5,3953,3952,3956,3957,43,7023,7022,6717,6618,0,16,30,6,5,3956,3950,3949,3957,43,6934,6930,7020,7023,0,6,30,16,5,3793,3795,3959,3956,43,7020,6931,6934,7023,0,16,30,6,5,3959,3794,3793,3956,43,7021,6932,6934,7023,0,6,30,16,5,3952,3791,3793,3956,43,6934,6933,7022,7023,0,16,30,6,5,3793,3790,3950,3956,43,6714,6962,7024,6694,0,6,30,16,5,6935,6934,7050,7051,43,6962,6872,6935,7024,0,6,30,16,5,6934,6841,6899,7050,43,6713,6960,7025,6693,0,6,30,16,5,6931,6930,7052,7053,43,6960,6870,6936,7025,0,6,30,16,5,6930,6839,6900,7052,43,6712,6958,7026,6692,0,6,30,16,5,6927,6926,7054,7055,43,6958,6868,6937,7026,0,6,30,16,5,6926,6837,6901,7054,43,6711,6956,7027,6691,0,6,30,16,5,6923,6922,7056,7057,43,6956,6866,6938,7027,0,6,30,16,5,6922,6835,6902,7056,43,6710,6954,7028,6690,0,6,30,16,5,6919,6918,7058,7059,43,6954,6864,6939,7028,0,6,30,16,5,6918,6833,6903,7058,43,6709,6952,7029,6689,0,6,30,16,5,6915,6914,7060,7061,43,6952,6862,6940,7029,0,6,30,16,5,6914,6831,6904,7060,43,6708,6950,7030,6688,0,6,30,16,5,6911,6910,7062,7063,43,6950,6860,6941,7030,0,6,30,16,5,6910,6829,6905,7062,43,7034,7031,6705,6684,0,6,30,16,5,3979,3977,3976,3978,43,6705,7031,7035,6685,0,16,30,6,5,3976,3977,3974,3975,43,6706,7032,7036,6686,0,6,30,16,5,3986,3987,7064,7065,43,7037,7033,6707,6687,0,16,30,6,5,7066,3983,3980,7067,43,7032,6944,6946,7036,0,6,30,16,5,3987,3806,6906,7064,43,6947,6945,7033,7037,0,16,30,6,5,6907,3803,3983,7066,43,7031,7038,6622,6705,0,6,30,16,5,3977,3989,3988,3976,43,6622,7038,7032,6706,0,6,30,16,5,3988,3989,3987,3986,43,7033,7038,6622,6707,0,16,30,6,5,3983,3989,3988,3980,43,6942,6948,7038,7031,0,6,30,16,5,3809,3808,3989,3977,43,7038,6948,6943,7031,0,16,30,6,5,3989,3808,3807,3977,43,7038,6948,6944,7032,0,6,30,16,5,3989,3808,3806,3987,43,6945,6948,7038,7033,0,16,30,6,5,3803,3808,3989,3983,43,6694,7024,6977,6683,0,6,30,16,5,7051,7050,6965,6964,43,7024,6935,6887,6977,0,6,30,16,5,7050,6899,6856,6965,43,6693,7025,6979,6682,0,6,30,16,5,7053,7052,6969,6968,43,7025,6936,6889,6979,0,6,30,16,5,7052,6900,6858,6969,43,6692,7026,6981,6681,0,6,30,16,5,7055,7054,6973,6972,43,7026,6937,6891,6981,0,6,30,16,5,7054,6901,6860,6973,43,6691,7027,6983,6680,0,6,30,16,5,7057,7056,6977,6976,43,7027,6938,6893,6983,0,6,30,16,5,7056,6902,6862,6977,43,6690,7028,6985,6679,0,6,30,16,5,7059,7058,6981,6980,43,7028,6939,6895,6985,0,6,30,16,5,7058,6903,6864,6981,43,6689,7029,6987,6678,0,6,30,16,5,7061,7060,6985,6984,43,7029,6940,6897,6987,0,6,30,16,5,7060,6904,6866,6985,43,6688,7030,6989,6677,0,6,30,16,5,7063,7062,6989,6988,43,7030,6941,6899,6989,0,6,30,16,5,7062,6905,6868,6989,43,6686,7036,6991,6676,0,6,30,16,5,7065,7064,6993,6992,43,7036,6946,6901,6991,0,6,30,16,5,7064,6906,6870,6993,43,6666,6995,7008,6675,0,6,30,16,5,7001,7000,7027,7026,43,6995,6905,6918,7008,0,6,30,16,5,7000,6874,6887,7027,43,6665,6996,7010,6674,0,6,30,16,5,7003,7002,7031,7030,43,6996,6906,6920,7010,0,6,30,16,5,7002,6875,6889,7031,43,6664,6998,7011,6673,0,6,30,16,5,7007,7006,7033,7032,43,6998,6908,6921,7011,0,6,30,16,5,7006,6877,6890,7033,43,6663,6999,7013,6672,0,6,30,16,5,7009,7008,7037,7036,43,6999,6909,6923,7013,0,6,30,16,5,7008,6878,6892,7037,43,6662,7000,7015,6671,0,6,30,16,5,7011,7010,7041,7040,43,7000,6910,6925,7015,0,6,30,16,5,7010,6879,6894,7041,43,6661,7002,7016,6670,0,6,30,16,5,7015,7014,7043,7042,43,7002,6912,6926,7016,0,6,30,16,5,7014,6881,6895,7043,43,6660,7004,7017,6669,0,6,30,16,5,7019,7018,7045,7044,43,7004,6914,6927,7017,0,6,30,16,5,7018,6883,6896,7045,43,6659,7006,7018,6667,0,6,30,16,5,7023,7022,7047,7046,43,7006,6916,6928,7018,0,6,30,16,5,7022,6885,6897,7047,43,6612,6993,7007,6617,0,6,30,16,5,6997,6996,7025,7024,43,6993,6903,6917,7007,0,6,30,16,5,6996,6872,6886,7025,43,6667,7062,7054,6659,0,6,30,16,5,7046,7068,7069,7023,43,6669,7064,7055,6660,0,6,30,16,5,7044,7070,7071,7019,43,6670,7065,7056,6661,0,6,30,16,5,7042,7072,7073,7015,43,6671,7066,7057,6662,0,6,30,16,5,7040,7074,7075,7011,43,6672,7067,7058,6663,0,6,30,16,5,7036,7076,7077,7009,43,6673,7068,7059,6664,0,6,30,16,5,7032,7078,7079,7007,43,6674,7069,7060,6665,0,6,30,16,5,7030,7080,7081,7003,43,6675,7070,7061,6666,0,6,30,16,5,7026,7082,7083,7001,43,7081,6686,6676,7071,0,6,30,16,5,7084,7065,6992,7085,43,7083,6688,6677,7072,0,6,30,16,5,7086,7063,6988,7087,43,7084,6689,6678,7073,0,6,30,16,5,7088,7061,6984,7089,43,7085,6690,6679,7074,0,6,30,16,5,7090,7059,6980,7091,43,7086,6691,6680,7075,0,6,30,16,5,7092,7057,6976,7093,43,7087,6692,6681,7076,0,6,30,16,5,7094,7055,6972,7095,43,7088,6693,6682,7077,0,6,30,16,5,7096,7053,6968,7097,43,7089,6694,6683,7078,0,6,30,16,5,7098,7051,6964,7099,43,6716,7091,7062,6667,0,6,30,16,5,3953,4024,7068,7046,43,7063,7092,6717,6668,0,16,30,6,5,7100,4022,3949,7049,43,6718,7093,7064,6669,0,6,30,16,5,6936,7101,7070,7044,43,6719,7094,7065,6670,0,6,30,16,5,6940,7102,7072,7042,43,6720,7095,7066,6671,0,6,30,16,5,6944,7103,7074,7040,43,6721,7096,7067,6672,0,6,30,16,5,7039,7104,7076,7036,43,6722,7097,7068,6673,0,6,30,16,5,7035,7105,7078,7032,43,6723,7098,7069,6674,0,6,30,16,5,6948,7106,7080,7030,43,6724,7099,7070,6675,0,6,30,16,5,7029,7107,7082,7026,43,7090,6715,6618,7052,0,6,5,16,30,4032,3958,3957,4033,43,6618,7052,7091,6716,0,6,30,16,5,3957,4033,4024,3953,43,7092,7052,6618,6717,0,16,30,6,5,4022,4033,3957,3949,43,6613,7039,7093,6718,0,6,30,16,5,6939,7108,7101,6936,43,6614,7040,7094,6719,0,6,30,16,5,6943,7109,7102,6940,43,6615,7041,7095,6720,0,6,30,16,5,6947,7110,7103,6944,43,6619,7128,7096,6721,0,6,30,16,5,6952,7111,7104,7039,43,6620,7127,7097,6722,0,6,30,16,5,6956,7112,7105,7035,43,6616,7042,7098,6723,0,6,30,16,5,6951,7113,7106,6948,43,6621,7126,7099,6724,0,6,30,16,5,6960,7114,7107,7029,43,6684,6705,7100,7079,0,6,30,16,5,3978,3976,4042,4043,43,7100,6705,6685,7080,0,16,30,6,5,4042,3976,3975,4041,43,7101,6706,6686,7081,0,6,30,16,5,4046,3986,7065,7084,43,6687,6707,7102,7082,0,16,30,6,5,7067,3980,4044,7115,43,7103,6708,6688,7083,0,6,30,16,5,7116,6911,7063,7086,43,7104,6709,6689,7084,0,6,30,16,5,7117,6915,7061,7088,43,7105,6710,6690,7085,0,6,30,16,5,7118,6919,7059,7090,43,7106,6711,6691,7086,0,6,30,16,5,7119,6923,7057,7092,43,7107,6712,6692,7087,0,6,30,16,5,7120,6927,7055,7094,43,7108,6713,6693,7088,0,6,30,16,5,7121,6931,7053,7096,43,7109,6714,6694,7089,0,6,30,16,5,7122,6935,7051,7098,43,6705,7100,7053,6622,0,6,5,16,30,3976,4042,4054,3988,43,7053,6622,6706,7101,0,6,30,16,5,4054,3988,3986,4046,43,6707,6622,7053,7102,0,16,30,6,5,3980,3988,4054,4044,43,7044,6605,6708,7103,0,6,30,16,5,7123,6908,6911,7116,43,7045,6606,6709,7104,0,6,30,16,5,7124,6912,6915,7117,43,7046,6607,6710,7105,0,6,30,16,5,7125,6916,6919,7118,43,7047,6608,6711,7106,0,6,30,16,5,7126,6920,6923,7119,43,7048,6609,6712,7107,0,6,30,16,5,7127,6924,6927,7120,43,7049,6610,6713,7108,0,6,30,16,5,7128,6928,6931,7121,43,7050,6611,6714,7109,0,6,30,16,5,7129,6932,6935,7122,43,6751,7110,7039,6613,0,6,30,16,5,7020,7130,7108,6939,43,6752,7111,7040,6614,0,6,30,16,5,7016,7131,7109,6943,43,6753,7112,7041,6615,0,6,30,16,5,7012,7132,7110,6947,43,6754,7113,7128,6619,0,6,30,16,5,6955,7133,7111,6952,43,6755,7114,7127,6620,0,6,30,16,5,6959,7134,7112,6956,43,6756,7115,7042,6616,0,6,30,16,5,7004,7135,7113,6951,43,6757,7116,7126,6621,0,6,30,16,5,6963,7136,7114,6960,43,6758,7117,7043,6617,0,6,30,16,5,6998,7137,7138,7024,43,6659,7054,7110,6751,0,6,30,16,5,7023,7069,7130,7020,43,6660,7055,7111,6752,0,6,30,16,5,7019,7071,7131,7016,43,6661,7056,7112,6753,0,6,30,16,5,7015,7073,7132,7012,43,6662,7057,7113,6754,0,6,30,16,5,7011,7075,7133,6955,43,6663,7058,7114,6755,0,6,30,16,5,7009,7077,7134,6959,43,6664,7059,7115,6756,0,6,30,16,5,7007,7079,7135,7004,43,6665,7060,7116,6757,0,6,30,16,5,7003,7081,7136,6963,43,6666,7061,7117,6758,0,6,30,16,5,7001,7083,7137,6998,43,7118,6759,6605,7044,0,6,30,16,5,7139,6995,6908,7123,43,7119,6760,6606,7045,0,6,30,16,5,7140,6991,6912,7124,43,7120,6761,6607,7046,0,6,30,16,5,7141,6987,6916,7125,43,7121,6762,6608,7047,0,6,30,16,5,7142,6983,6920,7126,43,7122,6763,6609,7048,0,6,30,16,5,7143,6979,6924,7127,43,7123,6764,6610,7049,0,6,30,16,5,7144,6975,6928,7128,43,7124,6765,6611,7050,0,6,30,16,5,7145,6971,6932,7129,43,7125,6766,6612,7051,0,6,30,16,5,7146,6967,6997,7147,43,7071,6676,6759,7118,0,6,30,16,5,7085,6992,6995,7139,43,7072,6677,6760,7119,0,6,30,16,5,7087,6988,6991,7140,43,7073,6678,6761,7120,0,6,30,16,5,7089,6984,6987,7141,43,7074,6679,6762,7121,0,6,30,16,5,7091,6980,6983,7142,43,7075,6680,6763,7122,0,6,30,16,5,7093,6976,6979,7143,43,7076,6681,6764,7123,0,6,30,16,5,7095,6972,6975,7144,43,7077,6682,6765,7124,0,6,30,16,5,7097,6968,6971,7145,43,7078,6683,6766,7125,0,6,30,16,5,7099,6964,6967,7146,43,7051,6612,6617,7043,0,6,30,16,5,7147,6997,7024,7138,43,7062,7152,7144,7054,0,6,30,16,5,7068,7148,7149,7069,43,7152,6631,6623,7144,0,6,30,16,5,7148,6669,6668,7149,43,7064,7154,7145,7055,0,6,30,16,5,7070,7150,7151,7071,43,7154,6633,6624,7145,0,6,30,16,5,7150,6673,6672,7151,43,7065,7155,7146,7056,0,6,30,16,5,7072,7152,7153,7073,43,7155,6634,6625,7146,0,6,30,16,5,7152,6677,6676,7153,43,7066,7156,7147,7057,0,6,30,16,5,7074,7154,7155,7075,43,7156,6635,6626,7147,0,6,30,16,5,7154,6681,6680,7155,43,7067,7157,7148,7058,0,6,30,16,5,7076,7156,7157,7077,43,7157,6636,6627,7148,0,6,30,16,5,7156,6685,6684,7157,43,7068,7158,7149,7059,0,6,30,16,5,7078,7158,7159,7079,43,7158,6637,6628,7149,0,6,30,16,5,7158,6689,6688,7159,43,7069,7159,7150,7060,0,6,30,16,5,7080,7160,7161,7081,43,7159,6638,6629,7150,0,6,30,16,5,7160,6693,6692,7161,43,7070,7160,7151,7061,0,6,30,16,5,7082,7162,7163,7083,43,7160,6639,6630,7151,0,6,30,16,5,7162,6697,6696,7163,43,6650,7171,7161,6640,0,6,30,16,5,6670,7164,7165,6671,43,7171,7081,7071,7161,0,6,30,16,5,7164,7084,7085,7165,43,6652,7173,7162,6641,0,6,30,16,5,6674,7166,7167,6675,43,7173,7083,7072,7162,0,6,30,16,5,7166,7086,7087,7167,43,6653,7174,7163,6642,0,6,30,16,5,6678,7168,7169,6679,43,7174,7084,7073,7163,0,6,30,16,5,7168,7088,7089,7169,43,6654,7175,7164,6643,0,6,30,16,5,6682,7170,7171,6683,43,7175,7085,7074,7164,0,6,30,16,5,7170,7090,7091,7171,43,6655,7176,7165,6644,0,6,30,16,5,6686,7172,7173,6687,43,7176,7086,7075,7165,0,6,30,16,5,7172,7092,7093,7173,43,6656,7177,7166,6645,0,6,30,16,5,6690,7174,7175,6691,43,7177,7087,7076,7166,0,6,30,16,5,7174,7094,7095,7175,43,6657,7178,7167,6646,0,6,30,16,5,6694,7176,7177,6695,43,7178,7088,7077,7167,0,6,30,16,5,7176,7096,7097,7177,43,6658,7179,7168,6647,0,6,30,16,5,6698,7178,7179,6699,43,7179,7089,7078,7168,0,6,30,16,5,7178,7098,7099,7179,43,7091,7181,7152,7062,0,6,30,16,5,4024,4114,7148,7068,43,7153,7182,7092,7063,0,16,30,6,5,7180,4112,4022,7100,43,7181,6726,6631,7152,0,6,30,16,5,4114,3579,6669,7148,43,6632,6727,7182,7153,0,16,30,6,5,6700,3575,4112,7180,43,7093,7183,7154,7064,0,6,30,16,5,7101,7181,7150,7070,43,7183,6728,6633,7154,0,6,30,16,5,7181,6702,6673,7150,43,7094,7184,7155,7065,0,6,30,16,5,7102,7182,7152,7072,43,7184,6729,6634,7155,0,6,30,16,5,7182,6704,6677,7152,43,7095,7185,7156,7066,0,6,30,16,5,7103,7183,7154,7074,43,7185,6730,6635,7156,0,6,30,16,5,7183,6706,6681,7154,43,7096,7186,7157,7067,0,6,30,16,5,7104,7184,7156,7076,43,7186,6731,6636,7157,0,6,30,16,5,7184,6708,6685,7156,43,7097,7187,7158,7068,0,6,30,16,5,7105,7185,7158,7078,43,7187,6732,6637,7158,0,6,30,16,5,7185,6710,6689,7158,43,7098,7188,7159,7069,0,6,30,16,5,7106,7186,7160,7080,43,7188,6733,6638,7159,0,6,30,16,5,7186,6712,6693,7160,43,7099,7189,7160,7070,0,6,30,16,5,7107,7187,7162,7082,43,7189,6734,6639,7160,0,6,30,16,5,7187,6714,6697,7162,43,7180,7090,7052,7142,0,6,5,16,30,4122,4032,4033,4123,43,7052,7142,7181,7091,0,6,30,16,5,4033,4123,4114,4024,43,7182,7142,7052,7092,0,16,30,6,5,4112,4123,4033,4022,43,6725,7180,7142,6603,0,6,5,16,30,3596,4122,4123,3595,43,7142,6603,6726,7181,0,6,30,16,5,4123,3595,3579,4114,43,6727,6603,7142,7182,0,16,30,6,5,3575,3595,4123,4112,43,7039,7129,7183,7093,0,6,30,16,5,7108,7188,7181,7101,43,7129,6595,6728,7183,0,6,30,16,5,7188,6716,6702,7181,43,7040,7130,7184,7094,0,6,30,16,5,7109,7189,7182,7102,43,7130,6596,6729,7184,0,6,30,16,5,7189,6718,6704,7182,43,7041,7131,7185,7095,0,6,30,16,5,7110,7190,7183,7103,43,7131,6597,6730,7185,0,6,30,16,5,7190,6720,6706,7183,43,7128,7218,7186,7096,0,6,30,16,5,7111,7191,7184,7104,43,7218,6598,6731,7186,0,6,30,16,5,7191,6722,6708,7184,43,7127,7217,7187,7097,0,6,30,16,5,7112,7192,7185,7105,43,7217,6599,6732,7187,0,6,30,16,5,7192,6724,6710,7185,43,7042,7132,7188,7098,0,6,30,16,5,7113,7193,7186,7106,43,7132,6600,6733,7188,0,6,30,16,5,7193,6726,6712,7186,43,7126,7216,7189,7099,0,6,30,16,5,7114,7194,7187,7107,43,7216,6601,6734,7189,0,6,30,16,5,7194,6728,6714,7187,43,7169,7190,6695,6648,0,6,30,16,5,4135,4133,3597,4134,43,6695,7190,7170,6649,0,16,30,6,5,3597,4133,4131,4132,43,6696,7191,7171,6650,0,6,30,16,5,3576,4138,7164,6670,43,7172,7192,6697,6651,0,16,30,6,5,7195,4136,3574,6701,43,7079,7100,7190,7169,0,6,30,16,5,4043,4042,4133,4135,43,7190,7100,7080,7170,0,16,30,6,5,4133,4042,4041,4131,43,7191,7101,7081,7171,0,6,30,16,5,4138,4046,7084,7164,43,7082,7102,7192,7172,0,16,30,6,5,7115,4044,4136,7195,43,6698,7193,7173,6652,0,6,30,16,5,6703,7196,7166,6674,43,7193,7103,7083,7173,0,6,30,16,5,7196,7116,7086,7166,43,6699,7194,7174,6653,0,6,30,16,5,6705,7197,7168,6678,43,7194,7104,7084,7174,0,6,30,16,5,7197,7117,7088,7168,43,6700,7195,7175,6654,0,6,30,16,5,6707,7198,7170,6682,43,7195,7105,7085,7175,0,6,30,16,5,7198,7118,7090,7170,43,6701,7196,7176,6655,0,6,30,16,5,6709,7199,7172,6686,43,7196,7106,7086,7176,0,6,30,16,5,7199,7119,7092,7172,43,6702,7197,7177,6656,0,6,30,16,5,6711,7200,7174,6690,43,7197,7107,7087,7177,0,6,30,16,5,7200,7120,7094,7174,43,6703,7198,7178,6657,0,6,30,16,5,6713,7201,7176,6694,43,7198,7108,7088,7178,0,6,30,16,5,7201,7121,7096,7176,43,6704,7199,7179,6658,0,6,30,16,5,6715,7202,7178,6698,43,7199,7109,7089,7179,0,6,30,16,5,7202,7122,7098,7178,43,7190,6695,6604,7143,0,6,5,16,30,4133,3597,3594,4054,43,6604,7143,7191,6696,0,6,30,16,5,3594,4054,4138,3576,43,7192,7143,6604,6697,0,16,30,6,5,4136,4054,3594,3574,43,7100,7190,7143,7053,0,6,5,16,30,4042,4133,4054,4054,43,7143,7053,7101,7191,0,6,30,16,5,4054,4054,4046,4138,43,7102,7053,7143,7192,0,16,30,6,5,4044,4054,4054,4136,43,7193,6698,6587,7134,0,6,30,16,5,7196,6703,6717,7123,43,7134,7044,7103,7193,0,6,30,16,5,7123,7123,7116,7196,43,6588,7135,7194,6699,0,6,30,16,5,6719,7124,7197,6705,43,7135,7045,7104,7194,0,6,30,16,5,7124,7124,7117,7197,43,6589,7136,7195,6700,0,6,30,16,5,6721,7203,7198,6707,43,7136,7046,7105,7195,0,6,30,16,5,7203,7125,7118,7198,43,6590,7137,7196,6701,0,6,30,16,5,6723,7204,7199,6709,43,7137,7047,7106,7196,0,6,30,16,5,7204,7126,7119,7199,43,6591,7138,7197,6702,0,6,30,16,5,6725,7205,7200,6711,43,7138,7048,7107,7197,0,6,30,16,5,7205,7127,7120,7200,43,6592,7139,7198,6703,0,6,30,16,5,6727,7206,7201,6713,43,7139,7049,7108,7198,0,6,30,16,5,7206,7128,7121,7201,43,6593,7140,7199,6704,0,6,30,16,5,6729,7207,7202,6715,43,7140,7050,7109,7199,0,6,30,16,5,7207,7129,7122,7202,43,7110,7200,7129,7039,0,6,30,16,5,7130,7208,7188,7108,43,7200,6735,6595,7129,0,6,30,16,5,7208,6731,6716,7188,43,7111,7201,7130,7040,0,6,30,16,5,7131,7209,7189,7109,43,7201,6736,6596,7130,0,6,30,16,5,7209,6733,6718,7189,43,7112,7202,7131,7041,0,6,30,16,5,7132,7210,7190,7110,43,7202,6737,6597,7131,0,6,30,16,5,7210,6735,6720,7190,43,7113,7203,7218,7128,0,6,30,16,5,7133,7211,7191,7111,43,7203,6738,6598,7218,0,6,30,16,5,7211,6737,6722,7191,43,7114,7204,7217,7127,0,6,30,16,5,7134,7212,7192,7112,43,7204,6739,6599,7217,0,6,30,16,5,7212,6739,6724,7192,43,7115,7205,7132,7042,0,6,30,16,5,7135,7213,7193,7113,43,7205,6740,6600,7132,0,6,30,16,5,7213,6741,6726,7193,43,7116,7206,7216,7126,0,6,30,16,5,7136,7214,7194,7114,43,7206,6741,6601,7216,0,6,30,16,5,7214,6743,6728,7194,43,7117,7207,7133,7043,0,6,30,16,5,7137,7215,7216,7138,43,7207,6742,6602,7133,0,6,30,16,5,7215,6745,6747,7216,43,7054,7144,7200,7110,0,6,30,16,5,7069,7149,7208,7130,43,7144,6623,6735,7200,0,6,30,16,5,7149,6668,6731,7208,43,7055,7145,7201,7111,0,6,30,16,5,7071,7151,7209,7131,43,7145,6624,6736,7201,0,6,30,16,5,7151,6672,6733,7209,43,7056,7146,7202,7112,0,6,30,16,5,7073,7153,7210,7132,43,7146,6625,6737,7202,0,6,30,16,5,7153,6676,6735,7210,43,7057,7147,7203,7113,0,6,30,16,5,7075,7155,7211,7133,43,7147,6626,6738,7203,0,6,30,16,5,7155,6680,6737,7211,43,7058,7148,7204,7114,0,6,30,16,5,7077,7157,7212,7134,43,7148,6627,6739,7204,0,6,30,16,5,7157,6684,6739,7212,43,7059,7149,7205,7115,0,6,30,16,5,7079,7159,7213,7135,43,7149,6628,6740,7205,0,6,30,16,5,7159,6688,6741,7213,43,7060,7150,7206,7116,0,6,30,16,5,7081,7161,7214,7136,43,7150,6629,6741,7206,0,6,30,16,5,7161,6692,6743,7214,43,7061,7151,7207,7117,0,6,30,16,5,7083,7163,7215,7137,43,7151,6630,6742,7207,0,6,30,16,5,7163,6696,6745,7215,43,7044,7134,7208,7118,0,6,30,16,5,7123,7123,7217,7139,43,7134,6587,6743,7208,0,6,30,16,5,7123,6717,6730,7217,43,6744,7209,7135,6588,0,6,30,16,5,6732,7218,7124,6719,43,7209,7119,7045,7135,0,6,30,16,5,7218,7140,7124,7124,43,6745,7210,7136,6589,0,6,30,16,5,6734,7219,7203,6721,43,7210,7120,7046,7136,0,6,30,16,5,7219,7141,7125,7203,43,6746,7211,7137,6590,0,6,30,16,5,6736,7220,7204,6723,43,7211,7121,7047,7137,0,6,30,16,5,7220,7142,7126,7204,43,6747,7212,7138,6591,0,6,30,16,5,6738,7221,7205,6725,43,7212,7122,7048,7138,0,6,30,16,5,7221,7143,7127,7205,43,6748,7213,7139,6592,0,6,30,16,5,6740,7222,7206,6727,43,7213,7123,7049,7139,0,6,30,16,5,7222,7144,7128,7206,43,6749,7214,7140,6593,0,6,30,16,5,6742,7223,7207,6729,43,7214,7124,7050,7140,0,6,30,16,5,7223,7145,7129,7207,43,6750,7215,7141,6594,0,6,30,16,5,6744,7224,7225,6746,43,7215,7125,7051,7141,0,6,30,16,5,7224,7146,7147,7225,43,6640,7161,7208,6743,0,6,30,16,5,6671,7165,7217,6730,43,7161,7071,7118,7208,0,6,30,16,5,7165,7085,7139,7217,43,6641,7162,7209,6744,0,6,30,16,5,6675,7167,7218,6732,43,7162,7072,7119,7209,0,6,30,16,5,7167,7087,7140,7218,43,6642,7163,7210,6745,0,6,30,16,5,6679,7169,7219,6734,43,7163,7073,7120,7210,0,6,30,16,5,7169,7089,7141,7219,43,6643,7164,7211,6746,0,6,30,16,5,6683,7171,7220,6736,43,7164,7074,7121,7211,0,6,30,16,5,7171,7091,7142,7220,43,6644,7165,7212,6747,0,6,30,16,5,6687,7173,7221,6738,43,7165,7075,7122,7212,0,6,30,16,5,7173,7093,7143,7221,43,6645,7166,7213,6748,0,6,30,16,5,6691,7175,7222,6740,43,7166,7076,7123,7213,0,6,30,16,5,7175,7095,7144,7222,43,6646,7167,7214,6749,0,6,30,16,5,6695,7177,7223,6742,43,7167,7077,7124,7214,0,6,30,16,5,7177,7097,7145,7223,43,6647,7168,7215,6750,0,6,30,16,5,6699,7179,7224,6744,43,7168,7078,7125,7215,0,6,30,16,5,7179,7099,7146,7224,43,6594,7141,7133,6602,0,6,30,16,5,6746,7225,7216,6747,43,7141,7051,7043,7133,0,6,30,16,5,7225,7147,7138,7216,43,7255,7272,7282,7263,0,6,30,16,5,7226,7227,7228,7229,43,7256,7273,7284,7265,0,6,30,16,5,7230,7231,7232,7233,43,7257,7274,7285,7266,0,6,30,16,5,7234,7235,7236,7237,43,7258,7275,7286,7267,0,6,30,16,5,7238,7239,7240,7241,43,7259,7276,7287,7268,0,6,30,16,5,7242,7243,7244,7245,43,7260,7277,7288,7269,0,6,30,16,5,7246,7247,7248,7249,43,7261,7278,7289,7270,0,6,30,16,5,7250,7251,7252,7253,43,7262,7279,7290,7271,0,6,30,16,5,7254,7255,7256,7257,43,7263,7282,7328,7358,0,6,30,16,5,7229,7228,4203,4204,43,7329,7283,7264,7359,0,16,30,6,5,4202,7258,7259,4201,43,7265,7284,7330,7360,0,6,30,16,5,7233,7232,7260,7261,43,7266,7285,7331,7361,0,6,30,16,5,7237,7236,7262,7263,43,7267,7286,7332,7362,0,6,30,16,5,7241,7240,7264,7265,43,7268,7287,7333,7363,0,6,30,16,5,7245,7244,7266,7267,43,7269,7288,7334,7364,0,6,30,16,5,7249,7248,7268,7269,43,7270,7289,7335,7365,0,6,30,16,5,7253,7252,7270,7271,43,7271,7290,7336,7366,0,6,30,16,5,7257,7256,7272,7273,43,7236,7327,7357,7235,0,6,30,16,5,4221,4224,4223,4222,43,7358,7328,7236,7235,0,6,30,16,5,4204,4203,4221,4222,43,7236,7329,7359,7235,0,16,30,6,5,4221,4202,4201,4222,43,7219,7227,7360,7330,0,6,30,16,5,7274,7275,7261,7260,43,7361,7331,7220,7228,0,6,30,16,5,7263,7262,7276,7277,43,7362,7332,7221,7229,0,6,30,16,5,7265,7264,7278,7279,43,7363,7333,7222,7230,0,6,30,16,5,7267,7266,7280,7281,43,7364,7334,7223,7231,0,6,30,16,5,7269,7268,7282,7283,43,7365,7335,7224,7232,0,6,30,16,5,7271,7270,7284,7285,43,7366,7336,7225,7233,0,6,30,16,5,7273,7272,7286,7287,43,7272,7255,7367,7375,0,6,30,16,5,7227,7226,7288,7289,43,7273,7256,7368,7376,0,6,30,16,5,7231,7230,7290,7291,43,7274,7257,7369,7377,0,6,30,16,5,7235,7234,7292,7293,43,7275,7258,7370,7378,0,6,30,16,5,7239,7238,7294,7295,43,7276,7259,7371,7379,0,6,30,16,5,7243,7242,7296,7297,43,7277,7260,7372,7380,0,6,30,16,5,7247,7246,7298,7299,43,7278,7261,7373,7381,0,6,30,16,5,7251,7250,7300,7301,43,7279,7262,7374,7382,0,6,30,16,5,7255,7254,7302,7303,43,7375,7367,7227,7219,0,6,30,16,5,7289,7288,7275,7274,43,7376,7368,7228,7220,0,6,30,16,5,7291,7290,7277,7276,43,7377,7369,7229,7221,0,6,30,16,5,7293,7292,7279,7278,43,7378,7370,7230,7222,0,6,30,16,5,7295,7294,7281,7280,43,7379,7371,7231,7223,0,6,30,16,5,7297,7296,7283,7282,43,7380,7372,7232,7224,0,6,30,16,5,7299,7298,7285,7284,43,7381,7373,7233,7225,0,6,30,16,5,7301,7300,7287,7286,43,7382,7374,7234,7226,0,6,30,16,5,7303,7302,7304,7305,43,7428,7445,7444,7427,0,6,30,16,5,7306,7307,7308,7309,43,7430,7426,7446,7429,0,6,30,16,5,7310,7311,7312,7313,43,7432,7448,7447,7431,0,6,30,16,5,7314,7315,7316,7317,43,7434,7424,7449,7433,0,6,30,16,5,7318,7319,7320,7321,43,7436,7422,7450,7435,0,6,30,16,5,7322,7323,7324,7325,43,7438,7452,7451,7437,0,6,30,16,5,7326,7327,7328,7329,43,7440,7454,7453,7439,0,6,30,16,5,7330,7331,7332,7333,43,7442,7456,7455,7441,0,6,30,16,5,7334,7335,7336,7337,43,7443,7457,7445,7428,0,6,30,16,5,7338,7339,7307,7306,43,7411,7425,7426,7430,0,6,30,16,5,7340,7341,7311,7310,43,7409,7419,7448,7432,0,6,30,16,5,7342,7343,7315,7314,43,7407,7423,7424,7434,0,6,30,16,5,7344,7345,7319,7318,43,7405,7421,7422,7436,0,6,30,16,5,7346,7347,7323,7322,43,7403,7417,7452,7438,0,6,30,16,5,7348,7349,7327,7326,43,7401,7415,7454,7440,0,6,30,16,5,7350,7351,7331,7330,43,7399,7413,7456,7442,0,6,30,16,5,7352,7353,7335,7334,43,7412,7459,7425,7411,0,6,30,16,5,7354,7355,7341,7340,43,7410,7420,7419,7409,0,6,30,16,5,7356,7357,7343,7342,43,7408,7462,7423,7407,0,6,30,16,5,7358,7359,7345,7344,43,7406,7464,7421,7405,0,6,30,16,5,7360,7361,7347,7346,43,7404,7418,7417,7403,0,6,30,16,5,7362,7363,7349,7348,43,7402,7416,7415,7401,0,6,30,16,5,7364,7365,7351,7350,43,7400,7414,7413,7399,0,6,30,16,5,7366,7367,7353,7352,43,7474,7470,7486,7490,0,6,30,16,5,4319,4324,4323,4320,43,7487,7471,7474,7490,0,16,30,6,5,4321,4322,4319,4320,43,7488,7472,7474,7490,0,6,30,16,5,4327,4328,4319,4320,43,7474,7473,7489,7490,0,16,30,6,5,4319,4326,4325,4320,43,7475,7458,7459,7412,0,6,30,16,5,7368,7369,7355,7354,43,7476,7460,7420,7410,0,6,30,16,5,7370,7371,7357,7356,43,7477,7461,7462,7408,0,6,30,16,5,7372,7373,7359,7358,43,7478,7463,7464,7406,0,6,30,16,5,7374,7375,7361,7360,43,7479,7465,7418,7404,0,6,30,16,5,7376,7377,7363,7362,43,7480,7466,7416,7402,0,6,30,16,5,7378,7379,7365,7364,43,7481,7467,7414,7400,0,6,30,16,5,7380,7381,7367,7366,43,7484,7468,7472,7488,0,6,30,16,5,7382,7383,4328,4327,43,7473,7469,7485,7489,0,16,30,6,5,4326,7384,7385,4325,43,7427,7444,7458,7475,0,6,30,16,5,7309,7308,7369,7368,43,7429,7446,7460,7476,0,6,30,16,5,7313,7312,7371,7370,43,7431,7447,7461,7477,0,6,30,16,5,7317,7316,7373,7372,43,7433,7449,7463,7478,0,6,30,16,5,7321,7320,7375,7374,43,7435,7450,7465,7479,0,6,30,16,5,7325,7324,7377,7376,43,7437,7451,7466,7480,0,6,30,16,5,7329,7328,7379,7378,43,7439,7453,7467,7481,0,6,30,16,5,7333,7332,7381,7380,43,7441,7455,7468,7484,0,6,30,16,5,7337,7336,7383,7382,43,7491,7492,7400,7399,0,6,30,16,5,7386,7387,7366,7352,43,7493,7494,7402,7401,0,6,30,16,5,7388,7389,7364,7350,43,7495,7496,7404,7403,0,6,30,16,5,7390,7391,7362,7348,43,7497,7498,7406,7405,0,6,30,16,5,7392,7393,7360,7346,43,7499,7500,7408,7407,0,6,30,16,5,7394,7395,7358,7344,43,7501,7502,7410,7409,0,6,30,16,5,7396,7397,7356,7342,43,7503,7504,7412,7411,0,6,30,16,5,7398,7399,7354,7340,43,7505,7506,7413,7414,0,6,30,16,5,7400,7401,7353,7367,43,7507,7508,7415,7416,0,6,30,16,5,7402,7403,7351,7365,43,7509,7510,7417,7418,0,6,30,16,5,7404,7405,7349,7363,43,7511,7512,7419,7420,0,6,30,16,5,7406,7407,7343,7357,43,7513,7514,7422,7421,0,6,30,16,5,7408,7409,7323,7347,43,7515,7516,7424,7423,0,6,30,16,5,7410,7411,7319,7345,43,7517,7518,7426,7425,0,6,30,16,5,7412,7413,7311,7341,43,7519,7520,7428,7427,0,6,30,16,5,7414,7415,7306,7309,43,7521,7522,7430,7429,0,6,30,16,5,7416,7417,7310,7313,43,7523,7524,7432,7431,0,6,30,16,5,7418,7419,7314,7317,43,7525,7526,7434,7433,0,6,30,16,5,7420,7421,7318,7321,43,7527,7528,7436,7435,0,6,30,16,5,7422,7423,7322,7325,43,7529,7530,7438,7437,0,6,30,16,5,7424,7425,7326,7329,43,7531,7532,7440,7439,0,6,30,16,5,7426,7427,7330,7333,43,7533,7534,7442,7441,0,6,30,16,5,7428,7429,7334,7337,43,7520,7535,7443,7428,0,6,30,16,5,7415,7430,7338,7306,43,7522,7503,7411,7430,0,6,30,16,5,7417,7398,7340,7310,43,7524,7501,7409,7432,0,6,30,16,5,7419,7396,7342,7314,43,7526,7499,7407,7434,0,6,30,16,5,7421,7394,7344,7318,43,7528,7497,7405,7436,0,6,30,16,5,7423,7392,7346,7322,43,7530,7495,7403,7438,0,6,30,16,5,7425,7390,7348,7326,43,7532,7493,7401,7440,0,6,30,16,5,7427,7388,7350,7330,43,7534,7491,7399,7442,0,6,30,16,5,7429,7386,7352,7334,43,7536,7537,7444,7445,0,6,30,16,5,7431,7432,7308,7307,43,7518,7538,7446,7426,0,6,30,16,5,7413,7433,7312,7311,43,7539,7540,7447,7448,0,6,30,16,5,7434,7435,7316,7315,43,7516,7541,7449,7424,0,6,30,16,5,7411,7436,7320,7319,43,7514,7542,7450,7422,0,6,30,16,5,7409,7437,7324,7323,43,7543,7544,7451,7452,0,6,30,16,5,7438,7439,7328,7327,43,7545,7546,7453,7454,0,6,30,16,5,7440,7441,7332,7331,43,7547,7548,7455,7456,0,6,30,16,5,7442,7443,7336,7335,43,7549,7536,7445,7457,0,6,30,16,5,7444,7431,7307,7339,43,7512,7539,7448,7419,0,6,30,16,5,7407,7434,7315,7343,43,7510,7543,7452,7417,0,6,30,16,5,7405,7438,7327,7349,43,7508,7545,7454,7415,0,6,30,16,5,7403,7440,7331,7351,43,7506,7547,7456,7413,0,6,30,16,5,7401,7442,7335,7353,43,7550,7551,7459,7458,0,6,30,16,5,7445,7446,7355,7369,43,7552,7511,7420,7460,0,6,30,16,5,7447,7406,7357,7371,43,7553,7554,7462,7461,0,6,30,16,5,7448,7449,7359,7373,43,7555,7556,7464,7463,0,6,30,16,5,7450,7451,7361,7375,43,7557,7509,7418,7465,0,6,30,16,5,7452,7404,7363,7377,43,7558,7507,7416,7466,0,6,30,16,5,7453,7402,7365,7379,43,7559,7505,7414,7467,0,6,30,16,5,7454,7400,7367,7381,43,7560,7564,7472,7468,0,6,30,16,5,7455,4419,4328,7383,43,7473,7565,7561,7469,0,16,30,6,5,4326,4417,7456,7384,43,7551,7517,7425,7459,0,6,30,16,5,7446,7412,7341,7355,43,7554,7515,7423,7462,0,6,30,16,5,7449,7410,7345,7359,43,7556,7513,7421,7464,0,6,30,16,5,7451,7408,7347,7361,43,7474,7566,7562,7470,0,6,30,16,5,4319,4421,4422,4324,43,7563,7566,7474,7471,0,16,30,6,5,4420,4421,4319,4322,43,7564,7566,7474,7472,0,6,30,16,5,4419,4421,4319,4328,43,7474,7566,7565,7473,0,16,30,6,5,4319,4421,4417,4326,43,7504,7567,7475,7412,0,6,30,16,5,7399,7457,7368,7354,43,7502,7568,7476,7410,0,6,30,16,5,7397,7458,7370,7356,43,7500,7569,7477,7408,0,6,30,16,5,7395,7459,7372,7358,43,7498,7570,7478,7406,0,6,30,16,5,7393,7460,7374,7360,43,7496,7571,7479,7404,0,6,30,16,5,7391,7461,7376,7362,43,7494,7572,7480,7402,0,6,30,16,5,7389,7462,7378,7364,43,7492,7573,7481,7400,0,6,30,16,5,7387,7463,7380,7366,43,7576,7578,7484,7488,0,6,30,16,5,4432,7464,7382,4327,43,7485,7579,7577,7489,0,16,30,6,5,7385,7465,4430,4325,43,7486,7574,7580,7490,0,6,30,16,5,4323,4436,4434,4320,43,7580,7575,7487,7490,0,16,30,6,5,4434,4435,4321,4320,43,7580,7576,7488,7490,0,6,30,16,5,4434,4432,4327,4320,43,7489,7577,7580,7490,0,16,30,6,5,4325,4430,4434,4320,43,7567,7519,7427,7475,0,6,30,16,5,7457,7414,7309,7368,43,7568,7521,7429,7476,0,6,30,16,5,7458,7416,7313,7370,43,7569,7523,7431,7477,0,6,30,16,5,7459,7418,7317,7372,43,7570,7525,7433,7478,0,6,30,16,5,7460,7420,7321,7374,43,7571,7527,7435,7479,0,6,30,16,5,7461,7422,7325,7376,43,7572,7529,7437,7480,0,6,30,16,5,7462,7424,7329,7378,43,7573,7531,7439,7481,0,6,30,16,5,7463,7426,7333,7380,43,7578,7533,7441,7484,0,6,30,16,5,7464,7428,7337,7382,43,7537,7550,7458,7444,0,6,30,16,5,7432,7445,7369,7308,43,7538,7552,7460,7446,0,6,30,16,5,7433,7447,7371,7312,43,7540,7553,7461,7447,0,6,30,16,5,7435,7448,7373,7316,43,7541,7555,7463,7449,0,6,30,16,5,7436,7450,7375,7320,43,7542,7557,7465,7450,0,6,30,16,5,7437,7452,7377,7324,43,7544,7558,7466,7451,0,6,30,16,5,7439,7453,7379,7328,43,7546,7559,7467,7453,0,6,30,16,5,7441,7454,7381,7332,43,7548,7560,7468,7455,0,6,30,16,5,7443,7455,7383,7336,43,7535,7549,7457,7443,0,6,30,16,5,7430,7444,7339,7338,43,7237,7340,7582,7581,0,6,30,16,5,7466,7467,7468,7469,43,7581,7582,7492,7491,0,6,30,16,5,7469,7468,7387,7386,43,7238,7341,7584,7583,0,6,30,16,5,7470,7471,7472,7473,43,7583,7584,7494,7493,0,6,30,16,5,7473,7472,7389,7388,43,7239,7342,7586,7585,0,6,30,16,5,7474,7475,7476,7477,43,7585,7586,7496,7495,0,6,30,16,5,7477,7476,7391,7390,43,7240,7343,7588,7587,0,6,30,16,5,7478,7479,7480,7481,43,7587,7588,7498,7497,0,6,30,16,5,7481,7480,7393,7392,43,7241,7344,7590,7589,0,6,30,16,5,7482,7483,7484,7485,43,7589,7590,7500,7499,0,6,30,16,5,7485,7484,7395,7394,43,7242,7345,7592,7591,0,6,30,16,5,7486,7487,7488,7489,43,7591,7592,7502,7501,0,6,30,16,5,7489,7488,7397,7396,43,7243,7346,7594,7593,0,6,30,16,5,7490,7491,7492,7493,43,7593,7594,7504,7503,0,6,30,16,5,7493,7492,7399,7398,43,7350,7245,7596,7595,0,6,30,16,5,7494,7495,7496,7497,43,7595,7596,7506,7505,0,6,30,16,5,7497,7496,7401,7400,43,7351,7246,7598,7597,0,6,30,16,5,7498,7499,7500,7501,43,7597,7598,7508,7507,0,6,30,16,5,7501,7500,7403,7402,43,7352,7247,7600,7599,0,6,30,16,5,7502,7503,7504,7505,43,7599,7600,7510,7509,0,6,30,16,5,7505,7504,7405,7404,43,7355,7248,7602,7601,0,6,30,16,5,7506,7507,7508,7509,43,7601,7602,7512,7511,0,6,30,16,5,7509,7508,7407,7406,43,7251,7386,7604,7603,0,6,30,16,5,7510,7511,7512,7513,43,7603,7604,7514,7513,0,6,30,16,5,7513,7512,7409,7408,43,7252,7387,7606,7605,0,6,30,16,5,7514,7515,7516,7517,43,7605,7606,7516,7515,0,6,30,16,5,7517,7516,7411,7410,43,7253,7389,7608,7607,0,6,30,16,5,7518,7519,7520,7521,43,7607,7608,7518,7517,0,6,30,16,5,7521,7520,7413,7412,43,7315,7398,7610,7609,0,6,30,16,5,7522,7523,7524,7525,43,7609,7610,7520,7519,0,6,30,16,5,7525,7524,7415,7414,43,7314,7397,7612,7611,0,6,30,16,5,7526,7527,7528,7529,43,7611,7612,7522,7521,0,6,30,16,5,7529,7528,7417,7416,43,7313,7396,7614,7613,0,6,30,16,5,7530,7531,7532,7533,43,7613,7614,7524,7523,0,6,30,16,5,7533,7532,7419,7418,43,7312,7395,7616,7615,0,6,30,16,5,7534,7535,7536,7537,43,7615,7616,7526,7525,0,6,30,16,5,7537,7536,7421,7420,43,7311,7394,7618,7617,0,6,30,16,5,7538,7539,7540,7541,43,7617,7618,7528,7527,0,6,30,16,5,7541,7540,7423,7422,43,7310,7393,7620,7619,0,6,30,16,5,7542,7543,7544,7545,43,7619,7620,7530,7529,0,6,30,16,5,7545,7544,7425,7424,43,7309,7392,7622,7621,0,6,30,16,5,7546,7547,7548,7549,43,7621,7622,7532,7531,0,6,30,16,5,7549,7548,7427,7426,43,7308,7391,7624,7623,0,6,30,16,5,7550,7551,7552,7553,43,7623,7624,7534,7533,0,6,30,16,5,7553,7552,7429,7428,43,7398,7244,7625,7610,0,6,30,16,5,7523,7554,7555,7524,43,7610,7625,7535,7520,0,6,30,16,5,7524,7555,7430,7415,43,7397,7243,7593,7612,0,6,30,16,5,7527,7490,7493,7528,43,7612,7593,7503,7522,0,6,30,16,5,7528,7493,7398,7417,43,7396,7242,7591,7614,0,6,30,16,5,7531,7486,7489,7532,43,7614,7591,7501,7524,0,6,30,16,5,7532,7489,7396,7419,43,7395,7241,7589,7616,0,6,30,16,5,7535,7482,7485,7536,43,7616,7589,7499,7526,0,6,30,16,5,7536,7485,7394,7421,43,7394,7240,7587,7618,0,6,30,16,5,7539,7478,7481,7540,43,7618,7587,7497,7528,0,6,30,16,5,7540,7481,7392,7423,43,7393,7239,7585,7620,0,6,30,16,5,7543,7474,7477,7544,43,7620,7585,7495,7530,0,6,30,16,5,7544,7477,7390,7425,43,7392,7238,7583,7622,0,6,30,16,5,7547,7470,7473,7548,43,7622,7583,7493,7532,0,6,30,16,5,7548,7473,7388,7427,43,7391,7237,7581,7624,0,6,30,16,5,7551,7466,7469,7552,43,7624,7581,7491,7534,0,6,30,16,5,7552,7469,7386,7429,43,7390,7298,7627,7626,0,6,30,16,5,7556,7557,7558,7559,43,7626,7627,7537,7536,0,6,30,16,5,7559,7558,7432,7431,43,7389,7297,7628,7608,0,6,30,16,5,7519,7560,7561,7520,43,7608,7628,7538,7518,0,6,30,16,5,7520,7561,7433,7413,43,7388,7296,7630,7629,0,6,30,16,5,7562,7563,7564,7565,43,7629,7630,7540,7539,0,6,30,16,5,7565,7564,7435,7434,43,7387,7295,7631,7606,0,6,30,16,5,7515,7566,7567,7516,43,7606,7631,7541,7516,0,6,30,16,5,7516,7567,7436,7411,43,7386,7294,7632,7604,0,6,30,16,5,7511,7568,7569,7512,43,7604,7632,7542,7514,0,6,30,16,5,7512,7569,7437,7409,43,7385,7293,7634,7633,0,6,30,16,5,7570,7571,7572,7573,43,7633,7634,7544,7543,0,6,30,16,5,7573,7572,7439,7438,43,7384,7292,7636,7635,0,6,30,16,5,7574,7575,7576,7577,43,7635,7636,7546,7545,0,6,30,16,5,7577,7576,7441,7440,43,7383,7291,7638,7637,0,6,30,16,5,7578,7579,7580,7581,43,7637,7638,7548,7547,0,6,30,16,5,7581,7580,7443,7442,43,7249,7390,7626,7639,0,6,30,16,5,7582,7556,7559,7583,43,7639,7626,7536,7549,0,6,30,16,5,7583,7559,7431,7444,43,7248,7388,7629,7602,0,6,30,16,5,7507,7562,7565,7508,43,7602,7629,7539,7512,0,6,30,16,5,7508,7565,7434,7407,43,7247,7385,7633,7600,0,6,30,16,5,7503,7570,7573,7504,43,7600,7633,7543,7510,0,6,30,16,5,7504,7573,7438,7405,43,7246,7384,7635,7598,0,6,30,16,5,7499,7574,7577,7500,43,7598,7635,7545,7508,0,6,30,16,5,7500,7577,7440,7403,43,7245,7383,7637,7596,0,6,30,16,5,7495,7578,7581,7496,43,7596,7637,7547,7506,0,6,30,16,5,7496,7581,7442,7401,43,7307,7356,7641,7640,0,6,30,16,5,7584,7585,7586,7587,43,7640,7641,7551,7550,0,6,30,16,5,7587,7586,7446,7445,43,7306,7355,7601,7642,0,6,30,16,5,7588,7506,7509,7589,43,7642,7601,7511,7552,0,6,30,16,5,7589,7509,7406,7447,43,7305,7354,7644,7643,0,6,30,16,5,7590,7591,7592,7593,43,7643,7644,7554,7553,0,6,30,16,5,7593,7592,7449,7448,43,7304,7353,7646,7645,0,6,30,16,5,7594,7595,7596,7597,43,7645,7646,7556,7555,0,6,30,16,5,7597,7596,7451,7450,43,7303,7352,7599,7647,0,6,30,16,5,7598,7502,7505,7599,43,7647,7599,7509,7557,0,6,30,16,5,7599,7505,7404,7452,43,7302,7351,7597,7648,0,6,30,16,5,7600,7498,7501,7601,43,7648,7597,7507,7558,0,6,30,16,5,7601,7501,7402,7453,43,7301,7350,7595,7649,0,6,30,16,5,7602,7494,7497,7603,43,7649,7595,7505,7559,0,6,30,16,5,7603,7497,7400,7454,43,7299,7348,7653,7650,0,6,30,16,5,7604,4582,4579,7605,43,7654,7349,7300,7651,0,16,30,6,5,4577,4578,7606,7607,43,7650,7653,7564,7560,0,6,30,16,5,7605,4579,4419,7455,43,7565,7654,7651,7561,0,16,30,6,5,4417,4577,7607,7456,43,7356,7253,7607,7641,0,6,30,16,5,7585,7518,7521,7586,43,7641,7607,7517,7551,0,6,30,16,5,7586,7521,7412,7446,43,7354,7252,7605,7644,0,6,30,16,5,7591,7514,7517,7592,43,7644,7605,7515,7554,0,6,30,16,5,7592,7517,7410,7449,43,7353,7251,7603,7646,0,6,30,16,5,7595,7510,7513,7596,43,7646,7603,7513,7556,0,6,30,16,5,7596,7513,7408,7451,43,7655,7250,7347,7652,0,6,30,16,5,4583,4586,4585,4584,43,7348,7250,7655,7653,0,6,30,16,5,4582,4586,4583,4579,43,7655,7250,7349,7654,0,16,30,6,5,4583,4586,4578,4577,43,7566,7655,7652,7562,0,6,30,16,5,4421,4583,4584,4422,43,7652,7655,7566,7563,0,16,30,6,5,4584,4583,4421,4420,43,7653,7655,7566,7564,0,6,30,16,5,4579,4583,4421,4419,43,7566,7655,7654,7565,0,16,30,6,5,4421,4583,4577,4417,43,7346,7326,7656,7594,0,6,30,16,5,7491,7608,7609,7492,43,7594,7656,7567,7504,0,6,30,16,5,7492,7609,7457,7399,43,7345,7325,7657,7592,0,6,30,16,5,7487,7610,7611,7488,43,7592,7657,7568,7502,0,6,30,16,5,7488,7611,7458,7397,43,7344,7324,7658,7590,0,6,30,16,5,7483,7612,7613,7484,43,7590,7658,7569,7500,0,6,30,16,5,7484,7613,7459,7395,43,7343,7323,7659,7588,0,6,30,16,5,7479,7614,7615,7480,43,7588,7659,7570,7498,0,6,30,16,5,7480,7615,7460,7393,43,7342,7322,7660,7586,0,6,30,16,5,7475,7616,7617,7476,43,7586,7660,7571,7496,0,6,30,16,5,7476,7617,7461,7391,43,7341,7321,7661,7584,0,6,30,16,5,7471,7618,7619,7472,43,7584,7661,7572,7494,0,6,30,16,5,7472,7619,7462,7389,43,7340,7320,7662,7582,0,6,30,16,5,7467,7620,7621,7468,43,7582,7662,7573,7492,0,6,30,16,5,7468,7621,7463,7387,43,7666,7663,7337,7316,0,6,5,16,30,4606,4604,4603,4605,43,7337,7663,7667,7317,0,16,5,6,30,4603,4604,4601,4602,43,7338,7318,7668,7664,0,6,30,16,5,4613,7622,7623,4612,43,7669,7319,7339,7665,0,16,30,6,5,7624,7625,4607,4608,43,7664,7668,7578,7576,0,6,30,16,5,4612,7623,7464,4432,43,7579,7669,7665,7577,0,16,30,6,5,7465,7624,4608,4430,43,7663,7337,7254,7670,0,6,30,16,5,4604,4603,4616,4615,43,7254,7338,7664,7670,0,6,30,16,5,4616,4613,4612,4615,43,7665,7339,7254,7670,0,16,30,6,5,4608,4607,4616,4615,43,7574,7663,7670,7580,0,6,30,16,5,4436,4604,4615,4434,43,7670,7663,7575,7580,0,16,30,6,5,4615,4604,4435,4434,43,7670,7664,7576,7580,0,6,30,16,5,4615,4612,4432,4434,43,7577,7665,7670,7580,0,16,30,6,5,4430,4608,4615,4434,43,7326,7315,7609,7656,0,6,30,16,5,7608,7522,7525,7609,43,7656,7609,7519,7567,0,6,30,16,5,7609,7525,7414,7457,43,7325,7314,7611,7657,0,6,30,16,5,7610,7526,7529,7611,43,7657,7611,7521,7568,0,6,30,16,5,7611,7529,7416,7458,43,7324,7313,7613,7658,0,6,30,16,5,7612,7530,7533,7613,43,7658,7613,7523,7569,0,6,30,16,5,7613,7533,7418,7459,43,7323,7312,7615,7659,0,6,30,16,5,7614,7534,7537,7615,43,7659,7615,7525,7570,0,6,30,16,5,7615,7537,7420,7460,43,7322,7311,7617,7660,0,6,30,16,5,7616,7538,7541,7617,43,7660,7617,7527,7571,0,6,30,16,5,7617,7541,7422,7461,43,7321,7310,7619,7661,0,6,30,16,5,7618,7542,7545,7619,43,7661,7619,7529,7572,0,6,30,16,5,7619,7545,7424,7462,43,7320,7309,7621,7662,0,6,30,16,5,7620,7546,7549,7621,43,7662,7621,7531,7573,0,6,30,16,5,7621,7549,7426,7463,43,7318,7308,7623,7668,0,6,30,16,5,7622,7550,7553,7623,43,7668,7623,7533,7578,0,6,30,16,5,7623,7553,7428,7464,43,7298,7307,7640,7627,0,6,30,16,5,7557,7584,7587,7558,43,7627,7640,7550,7537,0,6,30,16,5,7558,7587,7445,7432,43,7297,7306,7642,7628,0,6,30,16,5,7560,7588,7589,7561,43,7628,7642,7552,7538,0,6,30,16,5,7561,7589,7447,7433,43,7296,7305,7643,7630,0,6,30,16,5,7563,7590,7593,7564,43,7630,7643,7553,7540,0,6,30,16,5,7564,7593,7448,7435,43,7295,7304,7645,7631,0,6,30,16,5,7566,7594,7597,7567,43,7631,7645,7555,7541,0,6,30,16,5,7567,7597,7450,7436,43,7294,7303,7647,7632,0,6,30,16,5,7568,7598,7599,7569,43,7632,7647,7557,7542,0,6,30,16,5,7569,7599,7452,7437,43,7293,7302,7648,7634,0,6,30,16,5,7571,7600,7601,7572,43,7634,7648,7558,7544,0,6,30,16,5,7572,7601,7453,7439,43,7292,7301,7649,7636,0,6,30,16,5,7575,7602,7603,7576,43,7636,7649,7559,7546,0,6,30,16,5,7576,7603,7454,7441,43,7291,7299,7650,7638,0,6,30,16,5,7579,7604,7605,7580,43,7638,7650,7560,7548,0,6,30,16,5,7580,7605,7455,7443,43,7244,7249,7639,7625,0,6,30,16,5,7554,7582,7583,7555,43,7625,7639,7549,7535,0,6,30,16,5,7555,7583,7444,7430,43,7299,7291,7686,7694,0,6,30,16,5,7604,7579,7626,7627,43,7301,7292,7687,7696,0,6,30,16,5,7602,7575,7628,7629,43,7302,7293,7688,7697,0,6,30,16,5,7600,7571,7630,7631,43,7303,7294,7689,7698,0,6,30,16,5,7598,7568,7632,7633,43,7304,7295,7690,7699,0,6,30,16,5,7594,7566,7634,7635,43,7305,7296,7691,7700,0,6,30,16,5,7590,7563,7636,7637,43,7306,7297,7692,7701,0,6,30,16,5,7588,7560,7638,7639,43,7307,7298,7693,7702,0,6,30,16,5,7584,7557,7640,7641,43,7713,7703,7308,7318,0,6,30,16,5,7642,7643,7550,7622,43,7715,7704,7309,7320,0,6,30,16,5,7644,7645,7546,7620,43,7716,7705,7310,7321,0,6,30,16,5,7646,7647,7542,7618,43,7717,7706,7311,7322,0,6,30,16,5,7648,7649,7538,7616,43,7718,7707,7312,7323,0,6,30,16,5,7650,7651,7534,7614,43,7719,7708,7313,7324,0,6,30,16,5,7652,7653,7530,7612,43,7720,7709,7314,7325,0,6,30,16,5,7654,7655,7526,7610,43,7721,7710,7315,7326,0,6,30,16,5,7656,7657,7522,7608,43,7348,7299,7694,7723,0,6,30,16,5,4582,7604,7627,4651,43,7695,7300,7349,7724,0,16,30,6,5,7658,7606,4578,4649,43,7350,7301,7696,7725,0,6,30,16,5,7494,7602,7629,7659,43,7351,7302,7697,7726,0,6,30,16,5,7498,7600,7631,7660,43,7352,7303,7698,7727,0,6,30,16,5,7502,7598,7633,7661,43,7353,7304,7699,7728,0,6,30,16,5,7595,7594,7635,7662,43,7354,7305,7700,7729,0,6,30,16,5,7591,7590,7637,7663,43,7355,7306,7701,7730,0,6,30,16,5,7506,7588,7639,7664,43,7356,7307,7702,7731,0,6,30,16,5,7585,7584,7641,7665,43,7722,7347,7250,7684,0,6,30,16,5,4585,4585,4586,4033,43,7250,7348,7723,7684,0,6,30,16,5,4586,4582,4651,4033,43,7724,7349,7250,7684,0,16,30,6,5,4649,4578,4586,4033,43,7245,7350,7725,7671,0,6,30,16,5,7495,7494,7659,7666,43,7246,7351,7726,7672,0,6,30,16,5,7499,7498,7660,7667,43,7247,7352,7727,7673,0,6,30,16,5,7503,7502,7661,7668,43,7251,7353,7728,7760,0,6,30,16,5,7510,7595,7662,7669,43,7252,7354,7729,7759,0,6,30,16,5,7514,7591,7663,7670,43,7248,7355,7730,7674,0,6,30,16,5,7507,7506,7664,7671,43,7253,7356,7731,7758,0,6,30,16,5,7518,7585,7665,7672,43,7316,7337,7732,7711,0,6,5,16,30,4605,4603,4667,4668,43,7732,7337,7317,7712,0,16,5,6,30,4667,4603,4602,4666,43,7733,7713,7318,7338,0,6,30,16,5,4670,7642,7622,4613,43,7319,7714,7734,7339,0,16,30,6,5,7625,7673,4669,4607,43,7735,7715,7320,7340,0,6,30,16,5,7674,7644,7620,7467,43,7736,7716,7321,7341,0,6,30,16,5,7675,7646,7618,7471,43,7737,7717,7322,7342,0,6,30,16,5,7676,7648,7616,7475,43,7738,7718,7323,7343,0,6,30,16,5,7677,7650,7614,7479,43,7739,7719,7324,7344,0,6,30,16,5,7678,7652,7612,7483,43,7740,7720,7325,7345,0,6,30,16,5,7679,7654,7610,7487,43,7741,7721,7326,7346,0,6,30,16,5,7680,7656,7608,7491,43,7337,7732,7685,7254,0,6,30,16,5,4603,4667,4054,4616,43,7685,7733,7338,7254,0,6,30,16,5,4054,4670,4613,4616,43,7339,7734,7685,7254,0,16,30,6,5,4607,4669,4054,4616,43,7676,7735,7340,7237,0,6,30,16,5,7681,7674,7467,7466,43,7677,7736,7341,7238,0,6,30,16,5,7682,7675,7471,7470,43,7678,7737,7342,7239,0,6,30,16,5,7683,7676,7475,7474,43,7679,7738,7343,7240,0,6,30,16,5,7684,7677,7479,7478,43,7680,7739,7344,7241,0,6,30,16,5,7685,7678,7483,7482,43,7681,7740,7345,7242,0,6,30,16,5,7686,7679,7487,7486,43,7682,7741,7346,7243,0,6,30,16,5,7687,7680,7491,7490,43,7383,7245,7671,7742,0,6,30,16,5,7578,7495,7666,7688,43,7384,7246,7672,7743,0,6,30,16,5,7574,7499,7667,7689,43,7385,7247,7673,7744,0,6,30,16,5,7570,7503,7668,7690,43,7386,7251,7760,7745,0,6,30,16,5,7511,7510,7669,7691,43,7387,7252,7759,7746,0,6,30,16,5,7515,7514,7670,7692,43,7388,7248,7674,7747,0,6,30,16,5,7562,7507,7671,7693,43,7389,7253,7758,7748,0,6,30,16,5,7519,7518,7672,7694,43,7390,7249,7675,7749,0,6,30,16,5,7556,7582,7695,7696,43,7291,7383,7742,7686,0,6,30,16,5,7579,7578,7688,7626,43,7292,7384,7743,7687,0,6,30,16,5,7575,7574,7689,7628,43,7293,7385,7744,7688,0,6,30,16,5,7571,7570,7690,7630,43,7294,7386,7745,7689,0,6,30,16,5,7568,7511,7691,7632,43,7295,7387,7746,7690,0,6,30,16,5,7566,7515,7692,7634,43,7296,7388,7747,7691,0,6,30,16,5,7563,7562,7693,7636,43,7297,7389,7748,7692,0,6,30,16,5,7560,7519,7694,7638,43,7298,7390,7749,7693,0,6,30,16,5,7557,7556,7696,7640,43,7750,7676,7237,7391,0,6,30,16,5,7697,7681,7466,7551,43,7751,7677,7238,7392,0,6,30,16,5,7698,7682,7470,7547,43,7752,7678,7239,7393,0,6,30,16,5,7699,7683,7474,7543,43,7753,7679,7240,7394,0,6,30,16,5,7700,7684,7478,7539,43,7754,7680,7241,7395,0,6,30,16,5,7701,7685,7482,7535,43,7755,7681,7242,7396,0,6,30,16,5,7702,7686,7486,7531,43,7756,7682,7243,7397,0,6,30,16,5,7703,7687,7490,7527,43,7757,7683,7244,7398,0,6,30,16,5,7704,7705,7554,7523,43,7703,7750,7391,7308,0,6,30,16,5,7643,7697,7551,7550,43,7704,7751,7392,7309,0,6,30,16,5,7645,7698,7547,7546,43,7705,7752,7393,7310,0,6,30,16,5,7647,7699,7543,7542,43,7706,7753,7394,7311,0,6,30,16,5,7649,7700,7539,7538,43,7707,7754,7395,7312,0,6,30,16,5,7651,7701,7535,7534,43,7708,7755,7396,7313,0,6,30,16,5,7653,7702,7531,7530,43,7709,7756,7397,7314,0,6,30,16,5,7655,7703,7527,7526,43,7710,7757,7398,7315,0,6,30,16,5,7657,7704,7523,7522,43,7683,7675,7249,7244,0,6,30,16,5,7705,7695,7582,7554,43,7694,7686,7776,7784,0,6,30,16,5,7627,7626,7706,7707,43,7784,7776,7255,7263,0,6,30,16,5,7707,7706,7226,7229,43,7696,7687,7777,7786,0,6,30,16,5,7629,7628,7708,7709,43,7786,7777,7256,7265,0,6,30,16,5,7709,7708,7230,7233,43,7697,7688,7778,7787,0,6,30,16,5,7631,7630,7710,7711,43,7787,7778,7257,7266,0,6,30,16,5,7711,7710,7234,7237,43,7698,7689,7779,7788,0,6,30,16,5,7633,7632,7712,7713,43,7788,7779,7258,7267,0,6,30,16,5,7713,7712,7238,7241,43,7699,7690,7780,7789,0,6,30,16,5,7635,7634,7714,7715,43,7789,7780,7259,7268,0,6,30,16,5,7715,7714,7242,7245,43,7700,7691,7781,7790,0,6,30,16,5,7637,7636,7716,7717,43,7790,7781,7260,7269,0,6,30,16,5,7717,7716,7246,7249,43,7701,7692,7782,7791,0,6,30,16,5,7639,7638,7718,7719,43,7791,7782,7261,7270,0,6,30,16,5,7719,7718,7250,7253,43,7702,7693,7783,7792,0,6,30,16,5,7641,7640,7720,7721,43,7792,7783,7262,7271,0,6,30,16,5,7721,7720,7254,7257,43,7282,7272,7793,7803,0,6,30,16,5,7228,7227,7722,7723,43,7803,7793,7703,7713,0,6,30,16,5,7723,7722,7643,7642,43,7284,7273,7794,7805,0,6,30,16,5,7232,7231,7724,7725,43,7805,7794,7704,7715,0,6,30,16,5,7725,7724,7645,7644,43,7285,7274,7795,7806,0,6,30,16,5,7236,7235,7726,7727,43,7806,7795,7705,7716,0,6,30,16,5,7727,7726,7647,7646,43,7286,7275,7796,7807,0,6,30,16,5,7240,7239,7728,7729,43,7807,7796,7706,7717,0,6,30,16,5,7729,7728,7649,7648,43,7287,7276,7797,7808,0,6,30,16,5,7244,7243,7730,7731,43,7808,7797,7707,7718,0,6,30,16,5,7731,7730,7651,7650,43,7288,7277,7798,7809,0,6,30,16,5,7248,7247,7732,7733,43,7809,7798,7708,7719,0,6,30,16,5,7733,7732,7653,7652,43,7289,7278,7799,7810,0,6,30,16,5,7252,7251,7734,7735,43,7810,7799,7709,7720,0,6,30,16,5,7735,7734,7655,7654,43,7290,7279,7800,7811,0,6,30,16,5,7256,7255,7736,7737,43,7811,7800,7710,7721,0,6,30,16,5,7737,7736,7657,7656,43,7723,7694,7784,7813,0,6,30,16,5,4651,7627,7707,4738,43,7785,7695,7724,7814,0,16,30,6,5,7738,7658,4649,4736,43,7813,7784,7263,7358,0,6,30,16,5,4738,7707,7229,4204,43,7264,7785,7814,7359,0,16,30,6,5,7259,7738,4736,4201,43,7725,7696,7786,7815,0,6,30,16,5,7659,7629,7709,7739,43,7815,7786,7265,7360,0,6,30,16,5,7739,7709,7233,7261,43,7726,7697,7787,7816,0,6,30,16,5,7660,7631,7711,7740,43,7816,7787,7266,7361,0,6,30,16,5,7740,7711,7237,7263,43,7727,7698,7788,7817,0,6,30,16,5,7661,7633,7713,7741,43,7817,7788,7267,7362,0,6,30,16,5,7741,7713,7241,7265,43,7728,7699,7789,7818,0,6,30,16,5,7662,7635,7715,7742,43,7818,7789,7268,7363,0,6,30,16,5,7742,7715,7245,7267,43,7729,7700,7790,7819,0,6,30,16,5,7663,7637,7717,7743,43,7819,7790,7269,7364,0,6,30,16,5,7743,7717,7249,7269,43,7730,7701,7791,7820,0,6,30,16,5,7664,7639,7719,7744,43,7820,7791,7270,7365,0,6,30,16,5,7744,7719,7253,7271,43,7731,7702,7792,7821,0,6,30,16,5,7665,7641,7721,7745,43,7821,7792,7271,7366,0,6,30,16,5,7745,7721,7257,7273,43,7812,7722,7684,7774,0,6,30,16,5,4746,4585,4033,4033,43,7684,7723,7813,7774,0,6,30,16,5,4033,4651,4738,4033,43,7814,7724,7684,7774,0,16,30,6,5,4736,4649,4033,4033,43,7357,7812,7774,7235,0,6,30,16,5,4223,4746,4033,4222,43,7774,7813,7358,7235,0,6,30,16,5,4033,4738,4204,4222,43,7359,7814,7774,7235,0,16,30,6,5,4201,4736,4033,4222,43,7671,7725,7815,7761,0,6,30,16,5,7666,7659,7739,7746,43,7761,7815,7360,7227,0,6,30,16,5,7746,7739,7261,7275,43,7672,7726,7816,7762,0,6,30,16,5,7667,7660,7740,7747,43,7762,7816,7361,7228,0,6,30,16,5,7747,7740,7263,7277,43,7673,7727,7817,7763,0,6,30,16,5,7668,7661,7741,7748,43,7763,7817,7362,7229,0,6,30,16,5,7748,7741,7265,7279,43,7760,7728,7818,7850,0,6,30,16,5,7669,7662,7742,7749,43,7850,7818,7363,7230,0,6,30,16,5,7749,7742,7267,7281,43,7759,7729,7819,7849,0,6,30,16,5,7670,7663,7743,7750,43,7849,7819,7364,7231,0,6,30,16,5,7750,7743,7269,7283,43,7674,7730,7820,7764,0,6,30,16,5,7671,7664,7744,7751,43,7764,7820,7365,7232,0,6,30,16,5,7751,7744,7271,7285,43,7758,7731,7821,7848,0,6,30,16,5,7672,7665,7745,7752,43,7848,7821,7366,7233,0,6,30,16,5,7752,7745,7273,7287,43,7801,7822,7327,7280,0,6,5,16,30,4758,4756,4224,4757,43,7327,7822,7802,7281,0,16,5,6,30,4224,4756,4754,4755,43,7328,7282,7803,7823,0,6,30,16,5,4203,7228,7723,4761,43,7804,7283,7329,7824,0,16,30,6,5,7753,7258,4202,4759,43,7711,7732,7822,7801,0,6,5,16,30,4668,4667,4756,4758,43,7822,7732,7712,7802,0,16,5,6,30,4756,4667,4666,4754,43,7823,7803,7713,7733,0,6,30,16,5,4761,7723,7642,4670,43,7714,7804,7824,7734,0,16,30,6,5,7673,7753,4759,4669,43,7330,7284,7805,7825,0,6,30,16,5,7260,7232,7725,7754,43,7825,7805,7715,7735,0,6,30,16,5,7754,7725,7644,7674,43,7331,7285,7806,7826,0,6,30,16,5,7262,7236,7727,7755,43,7826,7806,7716,7736,0,6,30,16,5,7755,7727,7646,7675,43,7332,7286,7807,7827,0,6,30,16,5,7264,7240,7729,7756,43,7827,7807,7717,7737,0,6,30,16,5,7756,7729,7648,7676,43,7333,7287,7808,7828,0,6,30,16,5,7266,7244,7731,7757,43,7828,7808,7718,7738,0,6,30,16,5,7757,7731,7650,7677,43,7334,7288,7809,7829,0,6,30,16,5,7268,7248,7733,7758,43,7829,7809,7719,7739,0,6,30,16,5,7758,7733,7652,7678,43,7335,7289,7810,7830,0,6,30,16,5,7270,7252,7735,7759,43,7830,7810,7720,7740,0,6,30,16,5,7759,7735,7654,7679,43,7336,7290,7811,7831,0,6,30,16,5,7272,7256,7737,7760,43,7831,7811,7721,7741,0,6,30,16,5,7760,7737,7656,7680,43,7822,7327,7236,7775,0,6,30,16,5,4756,4224,4221,4054,43,7236,7328,7823,7775,0,6,30,16,5,4221,4203,4761,4054,43,7824,7329,7236,7775,0,16,30,6,5,4759,4202,4221,4054,43,7732,7822,7775,7685,0,6,30,16,5,4667,4756,4054,4054,43,7775,7823,7733,7685,0,6,30,16,5,4054,4761,4670,4054,43,7734,7824,7775,7685,0,16,30,6,5,4669,4759,4054,4054,43,7219,7330,7825,7766,0,6,30,16,5,7274,7260,7754,7681,43,7766,7825,7735,7676,0,6,30,16,5,7681,7754,7674,7681,43,7220,7331,7826,7767,0,6,30,16,5,7276,7262,7755,7682,43,7767,7826,7736,7677,0,6,30,16,5,7682,7755,7675,7682,43,7221,7332,7827,7768,0,6,30,16,5,7278,7264,7756,7761,43,7768,7827,7737,7678,0,6,30,16,5,7761,7756,7676,7683,43,7222,7333,7828,7769,0,6,30,16,5,7280,7266,7757,7762,43,7769,7828,7738,7679,0,6,30,16,5,7762,7757,7677,7684,43,7223,7334,7829,7770,0,6,30,16,5,7282,7268,7758,7763,43,7770,7829,7739,7680,0,6,30,16,5,7763,7758,7678,7685,43,7224,7335,7830,7771,0,6,30,16,5,7284,7270,7759,7764,43,7771,7830,7740,7681,0,6,30,16,5,7764,7759,7679,7686,43,7225,7336,7831,7772,0,6,30,16,5,7286,7272,7760,7765,43,7772,7831,7741,7682,0,6,30,16,5,7765,7760,7680,7687,43,7742,7671,7761,7832,0,6,30,16,5,7688,7666,7746,7766,43,7832,7761,7227,7367,0,6,30,16,5,7766,7746,7275,7288,43,7743,7672,7762,7833,0,6,30,16,5,7689,7667,7747,7767,43,7833,7762,7228,7368,0,6,30,16,5,7767,7747,7277,7290,43,7744,7673,7763,7834,0,6,30,16,5,7690,7668,7748,7768,43,7834,7763,7229,7369,0,6,30,16,5,7768,7748,7279,7292,43,7745,7760,7850,7835,0,6,30,16,5,7691,7669,7749,7769,43,7835,7850,7230,7370,0,6,30,16,5,7769,7749,7281,7294,43,7746,7759,7849,7836,0,6,30,16,5,7692,7670,7750,7770,43,7836,7849,7231,7371,0,6,30,16,5,7770,7750,7283,7296,43,7747,7674,7764,7837,0,6,30,16,5,7693,7671,7751,7771,43,7837,7764,7232,7372,0,6,30,16,5,7771,7751,7285,7298,43,7748,7758,7848,7838,0,6,30,16,5,7694,7672,7752,7772,43,7838,7848,7233,7373,0,6,30,16,5,7772,7752,7287,7300,43,7749,7675,7765,7839,0,6,30,16,5,7696,7695,7773,7774,43,7839,7765,7234,7374,0,6,30,16,5,7774,7773,7304,7302,43,7686,7742,7832,7776,0,6,30,16,5,7626,7688,7766,7706,43,7776,7832,7367,7255,0,6,30,16,5,7706,7766,7288,7226,43,7687,7743,7833,7777,0,6,30,16,5,7628,7689,7767,7708,43,7777,7833,7368,7256,0,6,30,16,5,7708,7767,7290,7230,43,7688,7744,7834,7778,0,6,30,16,5,7630,7690,7768,7710,43,7778,7834,7369,7257,0,6,30,16,5,7710,7768,7292,7234,43,7689,7745,7835,7779,0,6,30,16,5,7632,7691,7769,7712,43,7779,7835,7370,7258,0,6,30,16,5,7712,7769,7294,7238,43,7690,7746,7836,7780,0,6,30,16,5,7634,7692,7770,7714,43,7780,7836,7371,7259,0,6,30,16,5,7714,7770,7296,7242,43,7691,7747,7837,7781,0,6,30,16,5,7636,7693,7771,7716,43,7781,7837,7372,7260,0,6,30,16,5,7716,7771,7298,7246,43,7692,7748,7838,7782,0,6,30,16,5,7638,7694,7772,7718,43,7782,7838,7373,7261,0,6,30,16,5,7718,7772,7300,7250,43,7693,7749,7839,7783,0,6,30,16,5,7640,7696,7774,7720,43,7783,7839,7374,7262,0,6,30,16,5,7720,7774,7302,7254,43,7676,7750,7840,7766,0,6,30,16,5,7681,7697,7775,7681,43,7766,7840,7375,7219,0,6,30,16,5,7681,7775,7289,7274,43,7376,7220,7767,7841,0,6,30,16,5,7291,7276,7682,7776,43,7841,7767,7677,7751,0,6,30,16,5,7776,7682,7682,7698,43,7377,7221,7768,7842,0,6,30,16,5,7293,7278,7761,7777,43,7842,7768,7678,7752,0,6,30,16,5,7777,7761,7683,7699,43,7378,7222,7769,7843,0,6,30,16,5,7295,7280,7762,7778,43,7843,7769,7679,7753,0,6,30,16,5,7778,7762,7684,7700,43,7379,7223,7770,7844,0,6,30,16,5,7297,7282,7763,7779,43,7844,7770,7680,7754,0,6,30,16,5,7779,7763,7685,7701,43,7380,7224,7771,7845,0,6,30,16,5,7299,7284,7764,7780,43,7845,7771,7681,7755,0,6,30,16,5,7780,7764,7686,7702,43,7381,7225,7772,7846,0,6,30,16,5,7301,7286,7765,7781,43,7846,7772,7682,7756,0,6,30,16,5,7781,7765,7687,7703,43,7382,7226,7773,7847,0,6,30,16,5,7303,7305,7225,7782,43,7847,7773,7683,7757,0,6,30,16,5,7782,7225,7705,7704,43,7272,7375,7840,7793,0,6,30,16,5,7227,7289,7775,7722,43,7793,7840,7750,7703,0,6,30,16,5,7722,7775,7697,7643,43,7273,7376,7841,7794,0,6,30,16,5,7231,7291,7776,7724,43,7794,7841,7751,7704,0,6,30,16,5,7724,7776,7698,7645,43,7274,7377,7842,7795,0,6,30,16,5,7235,7293,7777,7726,43,7795,7842,7752,7705,0,6,30,16,5,7726,7777,7699,7647,43,7275,7378,7843,7796,0,6,30,16,5,7239,7295,7778,7728,43,7796,7843,7753,7706,0,6,30,16,5,7728,7778,7700,7649,43,7276,7379,7844,7797,0,6,30,16,5,7243,7297,7779,7730,43,7797,7844,7754,7707,0,6,30,16,5,7730,7779,7701,7651,43,7277,7380,7845,7798,0,6,30,16,5,7247,7299,7780,7732,43,7798,7845,7755,7708,0,6,30,16,5,7732,7780,7702,7653,43,7278,7381,7846,7799,0,6,30,16,5,7251,7301,7781,7734,43,7799,7846,7756,7709,0,6,30,16,5,7734,7781,7703,7655,43,7279,7382,7847,7800,0,6,30,16,5,7255,7303,7782,7736,43,7800,7847,7757,7710,0,6,30,16,5,7736,7782,7704,7657,43,7226,7234,7765,7773,0,6,30,16,5,7305,7304,7773,7225,43,7773,7765,7675,7683,0,6,30,16,5,7225,7773,7695,7705,43,7856,7889,7886,7855,0,6,30,16,5,7783,7784,4793,4792,43,7888,7887,7884,7885,0,6,30,16,5,7785,7786,4797,4796,43,7857,7892,7889,7856,0,6,30,16,5,7787,7788,7784,7783,43,7891,7890,7887,7888,0,6,30,16,5,7789,7790,7786,7785,43,7892,7857,7851,7858,0,6,30,16,5,7788,7787,7791,7792,43,7859,7860,7890,7891,0,6,30,16,5,7793,7794,7790,7789,43,7883,7895,7875,7853,0,6,30,16,5,7795,7796,7797,7798,43,7895,7894,7874,7875,0,6,30,16,5,7796,7799,7800,7797,43,7882,7898,7895,7883,0,6,30,16,5,7801,7802,7796,7795,43,7898,7897,7894,7895,0,6,30,16,5,7802,7803,7799,7796,43,7880,7904,7901,7881,0,6,30,16,5,7804,7805,7806,7807,43,7904,7903,7900,7901,0,6,30,16,5,7805,7808,7809,7806,43,7852,7878,7907,7879,0,6,30,16,5,7810,7811,7812,7813,43,7878,7877,7906,7907,0,6,30,16,5,7811,7814,7815,7812,43,7878,7915,7912,7877,0,6,30,16,5,7811,7816,7817,7814,43,7852,7867,7915,7878,0,6,30,16,5,7810,7818,7816,7811,43,7879,7920,7867,7852,0,6,30,16,5,7813,7819,7818,7810,43,7916,7858,7851,7863,0,6,30,16,5,7820,7792,7791,7821,43,7881,7929,7925,7880,0,6,30,16,5,7807,7822,7823,7804,43,7926,7860,7859,7921,0,6,30,16,5,7824,7794,7793,7825,43,7883,7939,7934,7882,0,6,30,16,5,7795,7826,7827,7801,43,7935,7862,7861,7930,0,6,30,16,5,7828,7829,7830,7831,43,7853,7872,7939,7883,0,6,30,16,5,7798,7832,7826,7795,43,7868,8817,7862,7935,0,6,30,16,5,7833,7834,7829,7828,43,8818,7954,7949,7854,0,6,30,16,5,7835,7836,7837,7838,43,7950,7875,7874,7945,0,6,30,16,5,7839,7797,7800,7840,43,8817,7868,7954,8818,0,6,30,16,5,7834,7833,7836,7835,43,7872,7853,7875,7950,0,6,30,16,5,7832,7798,7797,7839,43,7865,7955,7959,7913,0,6,30,16,5,7841,7842,7843,7844,43,7960,7917,7864,7955,0,6,30,16,5,7845,7846,7847,7842,43,7918,7960,7955,7865,0,6,30,16,5,7848,7845,7842,7841,43,7963,7936,7931,7962,0,6,30,16,5,7849,7850,7851,7852,43,7956,7869,7936,7963,0,6,30,16,5,7853,7854,7850,7849,43,7953,7966,7965,7948,0,6,30,16,5,7855,7856,7857,7858,43,7869,7956,7966,7953,0,6,30,16,5,7854,7853,7856,7855,43,7968,7967,7972,7973,0,6,30,16,5,7859,7860,7861,7862,43,7975,7974,7967,7968,0,6,30,16,5,7863,7864,7860,7859,43,7980,7937,7932,7978,0,6,30,16,5,7865,7866,7867,7868,43,7981,7980,7978,7979,0,6,30,16,5,7869,7865,7868,7870,43,7969,7870,7937,7980,0,6,30,16,5,7871,7872,7866,7865,43,7970,7969,7980,7981,0,6,30,16,5,7873,7871,7865,7869,43,7987,7986,7984,7985,0,6,30,16,5,7874,7875,7876,7877,43,7952,7987,7985,7947,0,6,30,16,5,7878,7874,7877,7879,43,7969,7970,7986,7987,0,6,30,16,5,7871,7873,7875,7874,43,7870,7969,7987,7952,0,6,30,16,5,7872,7871,7874,7878,43,7991,7988,7959,7955,0,6,30,16,5,7880,7881,7843,7842,43,7992,7991,7955,7864,0,6,30,16,5,7882,7880,7842,7847,43,7997,7993,7863,7851,0,6,30,16,5,7883,7884,7821,7791,43,7994,7997,7851,7857,0,6,30,16,5,7885,7883,7791,7787,43,7995,7994,7857,7856,0,6,30,16,5,7886,7885,7787,7783,43,7996,7995,7856,7855,0,6,30,16,5,4899,7886,7783,4792,43,8021,7968,7973,8023,0,6,30,16,5,7887,7859,7862,7888,43,8024,7975,7968,8021,0,6,30,16,5,7889,7863,7859,7887,43,8028,7981,7979,8027,0,6,30,16,5,7890,7869,7870,7891,43,8022,7970,7981,8028,0,6,30,16,5,7892,7873,7869,7890,43,7986,8031,8030,7984,0,6,30,16,5,7875,7893,7894,7876,43,7970,8022,8031,7986,0,6,30,16,5,7873,7892,7893,7875,43,8000,8033,8032,7999,0,6,30,16,5,7895,7896,4910,4909,43,8001,8034,8033,8000,0,6,30,16,5,7897,7898,7896,7895,43,7998,8035,8034,8001,0,6,30,16,5,7899,7900,7898,7897,43,8002,8036,8035,7998,0,6,30,16,5,7901,7902,7900,7899,43,8004,8038,8037,8003,0,6,30,16,5,7903,7904,7905,7906,43,8007,8041,8038,8004,0,6,30,16,5,7907,7908,7904,7903,43,8046,8042,8023,7973,0,6,30,16,5,7909,7910,7888,7862,43,8047,8048,7911,7914,0,6,30,16,5,7911,7912,7913,7914,43,8050,8049,8048,8047,0,6,30,16,5,7915,7916,7912,7911,43,8051,8055,8042,8046,0,6,30,16,5,7917,7918,7910,7909,43,8060,8056,8055,8051,0,6,30,16,5,7919,7920,7918,7917,43,8061,8062,8049,8050,0,6,30,16,5,7921,7922,7916,7915,43,8064,8063,8062,8061,0,6,30,16,5,7923,7924,7922,7921,43,8065,8069,8056,8060,0,6,30,16,5,7925,7926,7920,7919,43,8271,8264,8091,8087,0,6,30,16,5,7927,7928,7929,7930,43,8270,8269,8086,8089,0,6,30,16,5,7931,7932,7933,7934,43,8268,8093,8084,8088,0,6,30,16,5,7935,7936,7937,7938,43,8093,8094,8083,8084,0,6,30,16,5,7936,7939,7940,7937,43,8094,8266,8080,8083,0,6,30,16,5,7939,7941,7942,7940,43,8267,8262,8082,8081,0,6,30,16,5,7943,7944,7945,7946,43,8095,8265,8090,8079,0,6,30,16,5,7947,7948,7949,7950,43,8263,8092,8085,8078,0,6,30,16,5,7951,7952,7953,7954,43,8097,7995,7996,8096,0,6,30,16,5,7955,7886,4899,4971,43,8098,7994,7995,8097,0,6,30,16,5,7956,7885,7886,7955,43,8099,7997,7994,8098,0,6,30,16,5,7957,7883,7885,7956,43,8100,7993,7997,8099,0,6,30,16,5,7958,7884,7883,7957,43,8102,7991,7992,8101,0,6,30,16,5,7959,7880,7882,7960,43,8105,7988,7991,8102,0,6,30,16,5,7961,7881,7880,7959,43,8117,8007,8004,8116,0,6,30,16,5,7962,7907,7903,7963,43,8106,8117,8116,8109,0,6,30,16,5,7964,7962,7963,7965,43,8116,8004,8003,8120,0,6,30,16,5,7963,7903,7906,7966,43,8109,8116,8120,8110,0,6,30,16,5,7965,7963,7966,7967,43,8121,8002,7998,8122,0,6,30,16,5,7968,7901,7899,7969,43,8111,8121,8122,8115,0,6,30,16,5,7970,7968,7969,7971,43,8122,7998,8001,8123,0,6,30,16,5,7969,7899,7897,7972,43,8115,8122,8123,8112,0,6,30,16,5,7971,7969,7972,7973,43,8123,8001,8000,8124,0,6,30,16,5,7972,7897,7895,7974,43,8112,8123,8124,8113,0,6,30,16,5,7973,7972,7974,7975,43,8124,8000,7999,8125,0,6,30,16,5,7974,7895,4909,4992,43,8113,8124,8125,8114,0,6,30,16,5,7975,7974,4992,4993,43,8127,8097,8096,8126,0,6,30,16,5,7976,7955,4971,4995,43,8033,8127,8126,8032,0,6,30,16,5,7896,7976,4995,4910,43,8128,8098,8097,8127,0,6,30,16,5,7977,7956,7955,7976,43,8034,8128,8127,8033,0,6,30,16,5,7898,7977,7976,7896,43,8129,8099,8098,8128,0,6,30,16,5,7978,7957,7956,7977,43,8035,8129,8128,8034,0,6,30,16,5,7900,7978,7977,7898,43,8130,8100,8099,8129,0,6,30,16,5,7979,7958,7957,7978,43,8036,8130,8129,8035,0,6,30,16,5,7902,7979,7978,7900,43,8132,8102,8101,8131,0,6,30,16,5,7980,7959,7960,7981,43,8038,8132,8131,8037,0,6,30,16,5,7904,7980,7981,7905,43,8135,8105,8102,8132,0,6,30,16,5,7982,7961,7959,7980,43,8041,8135,8132,8038,0,6,30,16,5,7908,7982,7980,7904,43,8170,8045,8009,8169,0,6,30,16,5,7983,7984,7985,7986,43,8043,8170,8169,8020,0,6,30,16,5,7987,7983,7986,7988,43,8171,8052,8045,8170,0,6,30,16,5,7989,7990,7984,7983,43,8054,8171,8170,8043,0,6,30,16,5,7991,7989,7983,7987,43,8172,8059,8052,8171,0,6,30,16,5,7992,7993,7990,7989,43,8057,8172,8171,8054,0,6,30,16,5,7994,7992,7989,7991,43,8173,8066,8059,8172,0,6,30,16,5,7995,7996,7993,7992,43,8068,8173,8172,8057,0,6,30,16,5,7997,7995,7992,7994,43,8174,8021,8023,8175,0,6,30,16,5,7998,7887,7888,7999,43,7866,8174,8175,7914,0,6,30,16,5,8000,7998,7999,7914,43,8176,8024,8021,8174,0,6,30,16,5,8001,7889,7887,7998,43,7919,8176,8174,7866,0,6,30,16,5,8002,8001,7998,8000,43,8177,8047,7914,8175,0,6,30,16,5,8003,7911,7914,7999,43,8042,8177,8175,8023,0,6,30,16,5,7910,8003,7999,7888,43,8178,8050,8047,8177,0,6,30,16,5,8004,7915,7911,8003,43,8055,8178,8177,8042,0,6,30,16,5,7918,8004,8003,7910,43,8179,8061,8050,8178,0,6,30,16,5,8005,7921,7915,8004,43,8056,8179,8178,8055,0,6,30,16,5,7920,8005,8004,7918,43,8180,8064,8061,8179,0,6,30,16,5,8006,7923,7921,8005,43,8069,8180,8179,8056,0,6,30,16,5,7926,8006,8005,7920,43,8272,8263,8078,8183,0,6,30,16,5,8007,7951,7954,8008,43,8262,8272,8183,8082,0,6,30,16,5,7944,8007,8008,7945,43,8185,7926,7921,8204,0,6,30,16,5,8009,7824,7825,8010,43,7927,8185,8204,8076,0,6,30,16,5,8011,8009,8010,8012,43,8187,7935,7930,8186,0,6,30,16,5,8013,7828,7831,8014,43,7936,8187,8186,7931,0,6,30,16,5,7850,8013,8014,7851,43,8184,7868,7935,8187,0,6,30,16,5,8015,7833,7828,8013,43,7869,8184,8187,7936,0,6,30,16,5,7854,8015,8013,7850,43,8190,7953,7948,8189,0,6,30,16,5,8016,7855,7858,8017,43,7954,8190,8189,7949,0,6,30,16,5,7836,8016,8017,7837,43,8184,7869,7953,8190,0,6,30,16,5,8015,7854,7855,8016,43,7868,8184,8190,7954,0,6,30,16,5,7833,8015,8016,7836,43,8193,8026,8025,8192,0,6,30,16,5,8018,8019,8020,8021,43,7928,8193,8192,7924,0,6,30,16,5,8022,8018,8021,8023,43,8195,8028,8027,8194,0,6,30,16,5,8024,7890,7891,8025,43,7938,8195,8194,7933,0,6,30,16,5,8026,8024,8025,8027,43,8191,8022,8028,8195,0,6,30,16,5,8028,7892,7890,8024,43,7871,8191,8195,7938,0,6,30,16,5,8029,8028,8024,8026,43,8198,7951,7946,8197,0,6,30,16,5,8030,8031,8032,8033,43,8031,8198,8197,8030,0,6,30,16,5,7893,8030,8033,7894,43,8191,7871,7951,8198,0,6,30,16,5,8028,8029,8031,8030,43,8022,8191,8198,8031,0,6,30,16,5,7892,8028,8030,7893,43,8200,8071,8072,8201,0,6,30,16,5,8034,8035,8036,8037,43,7922,8200,8201,7961,0,6,30,16,5,8038,8034,8037,8039,43,8201,8072,8070,8199,0,6,30,16,5,8037,8036,8040,8041,43,7961,8201,8199,7923,0,6,30,16,5,8039,8037,8041,8042,43,8202,8073,8074,8203,0,6,30,16,5,8043,8044,8045,8046,43,7976,8202,8203,7977,0,6,30,16,5,8047,8043,8046,8048,43,8203,8074,8075,8205,0,6,30,16,5,8046,8045,8049,8050,43,7977,8203,8205,8077,0,6,30,16,5,8048,8046,8050,8051,43,8192,8025,8182,8206,0,6,30,16,5,8021,8020,8052,8053,43,7924,8192,8206,8181,0,6,30,16,5,8023,8021,8053,8054,43,8206,8182,8077,8205,0,6,30,16,5,8053,8052,8051,8050,43,8181,8206,8205,8075,0,6,30,16,5,8054,8053,8050,8049,43,8209,7893,7873,8207,0,6,30,16,5,8055,5077,5076,8056,43,7894,8209,8207,7874,0,6,30,16,5,7799,8055,8056,7800,43,8210,7896,7893,8209,0,6,30,16,5,8057,5079,5077,8055,43,7897,8210,8209,7894,0,6,30,16,5,7803,8057,8055,7799,43,8212,7902,7899,8211,0,6,30,16,5,8058,5083,5082,8059,43,7903,8212,8211,7900,0,6,30,16,5,7808,8058,8059,7809,43,8208,7876,7905,8213,0,6,30,16,5,8060,5087,5086,8061,43,7877,8208,8213,7906,0,6,30,16,5,7814,8060,8061,7815,43,8214,7909,7876,8208,0,6,30,16,5,8062,5089,5087,8060,43,7912,8214,8208,7877,0,6,30,16,5,7817,8062,8060,7814,43,8216,7944,8819,8820,0,6,30,16,5,8063,5093,5092,8064,43,7949,8216,8820,7854,0,6,30,16,5,7837,8063,8064,7838,43,8207,7873,7940,8220,0,6,30,16,5,8056,5076,5095,8065,43,7874,8207,8220,7945,0,6,30,16,5,7800,8056,8065,7840,43,8221,7964,7943,8217,0,6,30,16,5,8066,5099,5098,8067,43,7965,8221,8217,7948,0,6,30,16,5,7857,8066,8067,7858,43,8222,7982,7983,8223,0,6,30,16,5,8068,5103,5102,8069,43,7984,8222,8223,7985,0,6,30,16,5,7876,8068,8069,7877,43,8223,7983,7942,8218,0,6,30,16,5,8069,5102,5105,8070,43,7985,8223,8218,7947,0,6,30,16,5,7877,8069,8070,7879,43,8224,8029,7982,8222,0,6,30,16,5,8071,5107,5103,8068,43,8030,8224,8222,7984,0,6,30,16,5,7894,8071,8068,7876,43,8217,7943,8188,8228,0,6,30,16,5,8067,5098,5109,8072,43,7948,8217,8228,8189,0,6,30,16,5,7858,8067,8072,8017,43,8228,8188,7944,8216,0,6,30,16,5,8072,5109,5093,8063,43,8189,8228,8216,7949,0,6,30,16,5,8017,8072,8063,7837,43,8219,7941,8196,8229,0,6,30,16,5,8073,5113,5112,8074,43,7946,8219,8229,8197,0,6,30,16,5,8032,8073,8074,8033,43,8229,8196,8029,8224,0,6,30,16,5,8074,5112,5107,8071,43,8197,8229,8224,8030,0,6,30,16,5,8033,8074,8071,7894,43,8231,8043,8020,8230,0,6,30,16,5,8075,7987,7988,8076,43,8048,8231,8230,7911,0,6,30,16,5,7912,8075,8076,7913,43,8232,8054,8043,8231,0,6,30,16,5,8077,7991,7987,8075,43,8049,8232,8231,8048,0,6,30,16,5,7916,8077,8075,7912,43,8233,8057,8054,8232,0,6,30,16,5,8078,7994,7991,8077,43,8062,8233,8232,8049,0,6,30,16,5,7922,8078,8077,7916,43,8234,8068,8057,8233,0,6,30,16,5,8079,7997,7994,8078,43,8063,8234,8233,8062,0,6,30,16,5,7924,8079,8078,7922,43,8235,7908,8215,8236,0,6,30,16,5,5119,5122,8080,8081,43,8019,8235,8236,8237,0,6,30,16,5,5123,5119,8081,8082,43,8236,8215,7911,8230,0,6,30,16,5,8081,8080,7913,8076,43,8239,7990,7957,8238,0,6,30,16,5,8083,5128,5127,8084,43,7989,8239,8238,7958,0,6,30,16,5,8085,8083,8084,8086,43,8243,8016,8008,8241,0,6,30,16,5,8087,5134,5133,8088,43,8010,8243,8241,8009,0,6,30,16,5,8089,8087,8088,7985,43,8242,8014,8017,8244,0,6,30,16,5,8090,5139,5138,8091,43,8012,8242,8244,8011,0,6,30,16,5,8092,8090,8091,8093,43,8245,8039,8006,8240,0,6,30,16,5,8094,8095,8096,8097,43,8040,8245,8240,8005,0,6,30,16,5,5146,8094,8097,5147,43,8239,7989,8103,8246,0,6,30,16,5,8083,8085,8098,8099,43,7990,8239,8246,8104,0,6,30,16,5,5128,8083,8099,5150,43,8240,8006,8118,8248,0,6,30,16,5,8097,8096,8100,8101,43,8005,8240,8248,8119,0,6,30,16,5,5147,8097,8101,5153,43,8248,8118,8107,8247,0,6,30,16,5,8101,8100,8102,8103,43,8119,8248,8247,8108,0,6,30,16,5,5153,8101,8103,5156,43,8246,8103,8133,8249,0,6,30,16,5,8099,8098,8104,8105,43,8104,8246,8249,8134,0,6,30,16,5,5150,8099,8105,5159,43,8249,8133,8039,8245,0,6,30,16,5,8105,8104,8095,8094,43,8134,8249,8245,8040,0,6,30,16,5,5159,8105,8094,5146,43,8241,8008,8168,8250,0,6,30,16,5,8088,5133,5161,8106,43,8009,8241,8250,8169,0,6,30,16,5,7985,8088,8106,7986,43,8250,8168,8019,8237,0,6,30,16,5,8106,5161,5123,8082,43,8250,8237,8020,8169,0,6,30,16,5,8106,8082,7988,7986,43,8236,8230,8020,8237,0,6,30,16,5,8081,8076,7988,8082,43,8252,7898,7882,8251,0,6,30,16,5,8107,7802,7801,8108,43,7901,8252,8251,7881,0,6,30,16,5,7806,8107,8108,7807,43,8253,7897,7898,8252,0,6,30,16,5,8109,7803,7802,8107,43,7900,8253,8252,7901,0,6,30,16,5,7809,8109,8107,7806,43,8255,7929,7881,8251,0,6,30,16,5,8110,7822,7807,8108,43,7934,8255,8251,7882,0,6,30,16,5,7827,8110,8108,7801,43,8259,8267,8081,8258,0,6,30,16,5,8111,7943,7946,8112,43,8266,8259,8258,8080,0,6,30,16,5,7941,8111,8112,7942,43,8257,8026,8193,8260,0,6,30,16,5,8113,8019,8018,8114,43,8027,8257,8260,8194,0,6,30,16,5,7891,8113,8114,8025,43,8260,8193,7928,8256,0,6,30,16,5,8114,8018,8022,8115,43,8194,8260,8256,7933,0,6,30,16,5,8025,8114,8115,8027,43,8254,7896,8210,8261,0,6,30,16,5,5171,5079,8057,8116,43,7899,8254,8261,8211,0,6,30,16,5,5082,5171,8116,8059,43,8261,8210,7897,8253,0,6,30,16,5,8116,8057,7803,8109,43,8211,8261,8253,7900,0,6,30,16,5,8059,8116,8109,7809,43,8273,8274,8085,8092,0,6,30,16,5,8117,8118,7953,7952,43,8275,8271,8087,8276,0,6,30,16,5,8119,7927,7930,8120,43,8277,7860,7926,8279,0,6,30,16,5,8121,7794,7824,8122,43,8265,8285,8280,8090,0,6,30,16,5,7948,8123,8124,7949,43,8279,7926,8185,8284,0,6,30,16,5,8122,7824,8009,8125,43,8284,8185,7927,8278,0,6,30,16,5,8125,8009,8011,8126,43,8287,7916,7863,8286,0,6,30,16,5,8127,7820,7821,8128,43,7917,8287,8286,7864,0,6,30,16,5,7846,8127,8128,7847,43,8288,7992,7864,8286,0,6,30,16,5,8129,7882,7847,8128,43,7993,8288,8286,7863,0,6,30,16,5,7884,8129,8128,7821,43,8290,8036,8002,8289,0,6,30,16,5,8130,7902,7901,8131,43,8037,8290,8289,8003,0,6,30,16,5,7905,8130,8131,7906,43,8299,8095,8079,8293,0,6,30,16,5,8132,7947,7950,8133,43,8264,8299,8293,8091,0,6,30,16,5,7928,8132,8133,7929,43,8288,7993,8100,8294,0,6,30,16,5,8129,7884,7958,8134,43,7992,8288,8294,8101,0,6,30,16,5,7882,8129,8134,7960,43,8289,8002,8121,8296,0,6,30,16,5,8131,7901,7968,8135,43,8003,8289,8296,8120,0,6,30,16,5,7906,8131,8135,7966,43,8296,8121,8111,8295,0,6,30,16,5,8135,7968,7970,8136,43,8120,8296,8295,8110,0,6,30,16,5,7966,8135,8136,7967,43,8294,8100,8130,8297,0,6,30,16,5,8134,7958,7979,8137,43,8101,8294,8297,8131,0,6,30,16,5,7960,8134,8137,7981,43,8297,8130,8036,8290,0,6,30,16,5,8137,7979,7902,8130,43,8131,8297,8290,8037,0,6,30,16,5,7981,8137,8130,7905,43,8291,8071,8200,8298,0,6,30,16,5,8138,8035,8034,8139,43,7921,8291,8298,8204,0,6,30,16,5,7825,8138,8139,8010,43,8298,8200,7922,8292,0,6,30,16,5,8139,8034,8038,8140,43,8204,8298,8292,8076,0,6,30,16,5,8010,8139,8140,8012,43,8300,7865,7913,8302,0,6,30,16,5,8141,7841,7844,8142,43,8303,7918,7865,8300,0,6,30,16,5,8143,7848,7841,8141,43,8070,8307,8308,8199,0,6,30,16,5,8040,8144,8145,8041,43,8199,8308,8304,7923,0,6,30,16,5,8041,8145,8146,8042,43,8017,8306,8309,8244,0,6,30,16,5,5138,5204,8147,8091,43,8244,8309,8305,8011,0,6,30,16,5,8091,8147,8148,8093,43,8821,8277,8279,8312,0,6,30,16,5,8149,8121,8122,8150,43,7861,8821,8312,7930,0,6,30,16,5,7830,8149,8150,7831,43,8318,8270,8089,8313,0,6,30,16,5,8151,7931,7934,8152,43,8285,8318,8313,8280,0,6,30,16,5,8123,8151,8152,8124,43,8312,8279,8284,8317,0,6,30,16,5,8150,8122,8125,8153,43,7930,8312,8317,8186,0,6,30,16,5,7831,8150,8153,8014,43,8317,8284,8278,8311,0,6,30,16,5,8153,8125,8126,8154,43,8186,8317,8311,7931,0,6,30,16,5,8014,8153,8154,7851,43,8345,7914,7911,8344,0,6,30,16,5,8155,7914,7913,8156,43,7915,8345,8344,7912,0,6,30,16,5,7816,8155,8156,7817,43,8341,7866,7914,8345,0,6,30,16,5,8157,8000,7914,8155,43,7867,8341,8345,7915,0,6,30,16,5,7818,8157,8155,7816,43,8346,7919,7866,8341,0,6,30,16,5,8158,8002,8000,8157,43,7920,8346,8341,7867,0,6,30,16,5,7819,8158,8157,7818,43,8348,7928,7924,8347,0,6,30,16,5,8159,8022,8023,8160,43,7929,8348,8347,7925,0,6,30,16,5,7822,8159,8160,7823,43,8350,7938,7933,8349,0,6,30,16,5,8161,8026,8027,8162,43,7939,8350,8349,7934,0,6,30,16,5,7826,8161,8162,7827,43,8342,7871,7938,8350,0,6,30,16,5,8163,8029,8026,8161,43,7872,8342,8350,7939,0,6,30,16,5,7832,8163,8161,7826,43,8353,7950,7945,8352,0,6,30,16,5,8164,7839,7840,8165,43,7951,8353,8352,7946,0,6,30,16,5,8031,8164,8165,8032,43,8342,7872,7950,8353,0,6,30,16,5,8163,7832,7839,8164,43,7871,8342,8353,7951,0,6,30,16,5,8029,8163,8164,8031,43,8343,7909,8214,8354,0,6,30,16,5,5223,5089,8062,8166,43,7908,8343,8354,8215,0,6,30,16,5,5122,5223,8166,8080,43,8354,8214,7912,8344,0,6,30,16,5,8166,8062,7817,8156,43,8215,8354,8344,7911,0,6,30,16,5,8080,8166,8156,7913,43,8351,7941,8219,8355,0,6,30,16,5,5225,5113,8073,8167,43,7940,8351,8355,8220,0,6,30,16,5,5095,5225,8167,8065,43,8355,8219,7946,8352,0,6,30,16,5,8167,8073,8032,8165,43,8220,8355,8352,7945,0,6,30,16,5,8065,8167,8165,7840,43,8348,7929,8255,8356,0,6,30,16,5,8159,7822,8110,8168,43,7928,8348,8356,8256,0,6,30,16,5,8022,8159,8168,8115,43,8356,8255,7934,8349,0,6,30,16,5,8168,8110,7827,8162,43,8256,8356,8349,7933,0,6,30,16,5,8115,8168,8162,8027,43,8362,7913,7959,8360,0,6,30,16,5,8169,7844,7843,8170,43,7971,8357,8363,8018,0,6,30,16,5,8171,8172,8173,8174,43,8364,8044,8018,8363,0,6,30,16,5,8175,8176,8174,8173,43,8365,8053,8044,8364,0,6,30,16,5,8177,8178,8176,8175,43,8366,8058,8053,8365,0,6,30,16,5,8179,8180,8178,8177,43,8367,8067,8058,8366,0,6,30,16,5,8181,8182,8180,8179,43,8359,7958,8238,8368,0,6,30,16,5,8183,8086,8084,8184,43,8368,8238,7957,8361,0,6,30,16,5,8184,8084,5127,5244,43,8369,8301,7910,8358,0,6,30,16,5,8185,8186,8187,8188,43,8373,7888,7885,8372,0,6,30,16,5,8189,7785,4796,5250,43,7889,8373,8372,7886,0,6,30,16,5,7784,8189,5250,4793,43,8374,7891,7888,8373,0,6,30,16,5,8190,7789,7785,8189,43,7892,8374,8373,7889,0,6,30,16,5,7788,8190,8189,7784,43,8370,7859,7891,8374,0,6,30,16,5,8191,7793,7789,8190,43,7858,8370,8374,7892,0,6,30,16,5,7792,8191,8190,7788,43,8375,7904,7880,8371,0,6,30,16,5,8192,7805,7804,8193,43,7907,8375,8371,7879,0,6,30,16,5,7812,8192,8193,7813,43,8376,7903,7904,8375,0,6,30,16,5,8194,7808,7805,8192,43,7906,8376,8375,7907,0,6,30,16,5,7815,8194,8192,7812,43,8378,7920,7879,8371,0,6,30,16,5,8195,7819,7813,8193,43,7925,8378,8371,7880,0,6,30,16,5,7823,8195,8193,7804,43,8370,7858,7916,8380,0,6,30,16,5,8191,7792,7820,8196,43,7859,8370,8380,7921,0,6,30,16,5,7793,8191,8196,7825,43,8382,7917,7960,8383,0,6,30,16,5,8197,7846,7845,8198,43,8071,8382,8383,8072,0,6,30,16,5,8035,8197,8198,8036,43,8383,7960,7918,8381,0,6,30,16,5,8198,7845,7848,8199,43,8072,8383,8381,8070,0,6,30,16,5,8036,8198,8199,8040,43,8384,7974,7975,8385,0,6,30,16,5,8200,7864,7863,8201,43,8073,8384,8385,8074,0,6,30,16,5,8044,8200,8201,8045,43,8385,7975,8024,8386,0,6,30,16,5,8201,7863,7889,8202,43,8074,8385,8386,8075,0,6,30,16,5,8045,8201,8202,8049,43,8379,7924,8181,8387,0,6,30,16,5,8203,8023,8054,8204,43,7919,8379,8387,8176,0,6,30,16,5,8002,8203,8204,8001,43,8387,8181,8075,8386,0,6,30,16,5,8204,8054,8049,8202,43,8176,8387,8386,8024,0,6,30,16,5,8001,8204,8202,7889,43,8377,7902,8212,8388,0,6,30,16,5,5266,5083,8058,8205,43,7905,8377,8388,8213,0,6,30,16,5,5086,5266,8205,8061,43,8388,8212,7903,8376,0,6,30,16,5,8205,8058,7808,8194,43,8213,8388,8376,7906,0,6,30,16,5,8061,8205,8194,7815,43,8380,7916,8287,8389,0,6,30,16,5,8196,7820,8127,8206,43,7921,8380,8389,8291,0,6,30,16,5,7825,8196,8206,8138,43,8389,8287,7917,8382,0,6,30,16,5,8206,8127,7846,8197,43,8291,8389,8382,8071,0,6,30,16,5,8138,8206,8197,8035,43,8390,8307,8070,8381,0,6,30,16,5,8207,8144,8040,8199,43,8303,8390,8381,7918,0,6,30,16,5,8143,8207,8199,7848,43,8379,7919,8346,8391,0,6,30,16,5,8203,8002,8158,8208,43,7924,8379,8391,8347,0,6,30,16,5,8023,8203,8208,8160,43,8391,8346,7920,8378,0,6,30,16,5,8208,8158,7819,8195,43,8347,8391,8378,7925,0,6,30,16,5,8160,8208,8195,7823,43,8394,8321,8320,8393,0,6,30,16,5,8209,8210,8211,8212,43,8085,8394,8393,8078,0,6,30,16,5,7953,8209,8212,7954,43,8397,8324,8323,8396,0,6,30,16,5,8213,8214,8215,8216,43,8090,8397,8396,8079,0,6,30,16,5,7949,8213,8216,7950,43,8392,8319,8326,8399,0,6,30,16,5,8217,8218,8219,8220,43,8082,8392,8399,8081,0,6,30,16,5,7945,8217,8220,7946,43,8398,8325,8327,8400,0,6,30,16,5,8221,8222,8223,8224,43,8080,8398,8400,8083,0,6,30,16,5,7942,8221,8224,7940,43,8400,8327,8328,8401,0,6,30,16,5,8224,8223,8225,8226,43,8083,8400,8401,8084,0,6,30,16,5,7940,8224,8226,7937,43,8401,8328,8329,8402,0,6,30,16,5,8226,8225,8227,8228,43,8084,8401,8402,8088,0,6,30,16,5,7937,8226,8228,7938,43,8409,8336,8321,8394,0,6,30,16,5,8229,8230,8210,8209,43,8274,8409,8394,8085,0,6,30,16,5,8118,8229,8209,7953,43,8403,8330,8331,8404,0,6,30,16,5,8231,8232,8233,8234,43,8086,8403,8404,8089,0,6,30,16,5,7933,8231,8234,7934,43,8405,8332,8335,8408,0,6,30,16,5,8235,8236,8237,8238,43,8087,8405,8408,8276,0,6,30,16,5,7930,8235,8238,8120,43,8395,8322,8332,8405,0,6,30,16,5,8239,8240,8236,8235,43,8091,8395,8405,8087,0,6,30,16,5,7929,8239,8235,7930,43,8393,8320,8333,8406,0,6,30,16,5,8212,8211,8241,8242,43,8078,8393,8406,8183,0,6,30,16,5,7954,8212,8242,8008,43,8406,8333,8319,8392,0,6,30,16,5,8242,8241,8218,8217,43,8183,8406,8392,8082,0,6,30,16,5,8008,8242,8217,7945,43,8399,8326,8334,8407,0,6,30,16,5,8220,8219,8243,8244,43,8081,8399,8407,8258,0,6,30,16,5,7946,8220,8244,8112,43,8407,8334,8325,8398,0,6,30,16,5,8244,8243,8222,8221,43,8258,8407,8398,8080,0,6,30,16,5,8112,8244,8221,7942,43,8410,8337,8324,8397,0,6,30,16,5,8245,8246,8214,8213,43,8280,8410,8397,8090,0,6,30,16,5,8124,8245,8213,7949,43,8396,8323,8338,8411,0,6,30,16,5,8216,8215,8247,8248,43,8079,8396,8411,8293,0,6,30,16,5,7950,8216,8248,8133,43,8411,8338,8322,8395,0,6,30,16,5,8248,8247,8240,8239,43,8293,8411,8395,8091,0,6,30,16,5,8133,8248,8239,7929,43,8408,8335,8339,8412,0,6,30,16,5,8238,8237,8249,8250,43,8276,8408,8412,8310,0,6,30,16,5,8120,8238,8250,8251,43,8404,8331,8340,8413,0,6,30,16,5,8234,8233,8252,8253,43,8089,8404,8413,8313,0,6,30,16,5,7934,8234,8253,8152,43,8413,8340,8337,8410,0,6,30,16,5,8253,8252,8246,8245,43,8313,8413,8410,8280,0,6,30,16,5,8152,8253,8245,8124,43,8416,7977,8077,8415,0,6,30,16,5,8254,8048,8051,8255,43,8321,8416,8415,8320,0,6,30,16,5,8210,8254,8255,8211,43,8419,7927,8076,8418,0,6,30,16,5,8256,8011,8012,8257,43,8324,8419,8418,8323,0,6,30,16,5,8214,8256,8257,8215,43,8414,8025,8026,8421,0,6,30,16,5,8258,8020,8019,8259,43,8319,8414,8421,8326,0,6,30,16,5,8218,8258,8259,8219,43,8420,8027,7979,8422,0,6,30,16,5,8260,7891,7870,8261,43,8325,8420,8422,8327,0,6,30,16,5,8222,8260,8261,8223,43,8422,7979,7978,8423,0,6,30,16,5,8261,7870,7868,8262,43,8327,8422,8423,8328,0,6,30,16,5,8223,8261,8262,8225,43,8423,7978,7932,8424,0,6,30,16,5,8262,7868,7867,8263,43,8328,8423,8424,8329,0,6,30,16,5,8225,8262,8263,8227,43,8431,7976,7977,8416,0,6,30,16,5,8264,8047,8048,8254,43,8336,8431,8416,8321,0,6,30,16,5,8230,8264,8254,8210,43,8425,7962,7931,8426,0,6,30,16,5,8265,7852,7851,8266,43,8330,8425,8426,8331,0,6,30,16,5,8232,8265,8266,8233,43,8427,7961,7923,8430,0,6,30,16,5,8267,8039,8042,8268,43,8332,8427,8430,8335,0,6,30,16,5,8236,8267,8268,8237,43,8417,7922,7961,8427,0,6,30,16,5,8269,8038,8039,8267,43,8322,8417,8427,8332,0,6,30,16,5,8240,8269,8267,8236,43,8415,8077,8182,8428,0,6,30,16,5,8255,8051,8052,8270,43,8320,8415,8428,8333,0,6,30,16,5,8211,8255,8270,8241,43,8428,8182,8025,8414,0,6,30,16,5,8270,8052,8020,8258,43,8333,8428,8414,8319,0,6,30,16,5,8241,8270,8258,8218,43,8421,8026,8257,8429,0,6,30,16,5,8259,8019,8113,8271,43,8326,8421,8429,8334,0,6,30,16,5,8219,8259,8271,8243,43,8429,8257,8027,8420,0,6,30,16,5,8271,8113,7891,8260,43,8334,8429,8420,8325,0,6,30,16,5,8243,8271,8260,8222,43,8432,8278,7927,8419,0,6,30,16,5,8272,8126,8011,8256,43,8337,8432,8419,8324,0,6,30,16,5,8246,8272,8256,8214,43,8418,8076,8292,8433,0,6,30,16,5,8257,8012,8140,8273,43,8323,8418,8433,8338,0,6,30,16,5,8215,8257,8273,8247,43,8433,8292,7922,8417,0,6,30,16,5,8273,8140,8038,8269,43,8338,8433,8417,8322,0,6,30,16,5,8247,8273,8269,8240,43,8430,7923,8304,8434,0,6,30,16,5,8268,8042,8146,8274,43,8335,8430,8434,8339,0,6,30,16,5,8237,8268,8274,8249,43,8426,7931,8311,8435,0,6,30,16,5,8266,7851,8154,8275,43,8331,8426,8435,8340,0,6,30,16,5,8233,8266,8275,8252,43,8435,8311,8278,8432,0,6,30,16,5,8275,8154,8126,8272,43,8340,8435,8432,8337,0,6,30,16,5,8252,8275,8272,8246,43,8310,8438,8275,8276,0,6,30,16,5,8251,8276,8119,8120,43,8442,8318,8285,8441,0,6,30,16,5,8277,8151,8123,8278,43,8439,8442,8441,8440,0,6,30,16,5,8279,8277,8278,8280,43,8285,8265,8095,8441,0,6,30,16,5,8123,7948,7947,8278,43,8440,8441,8095,8299,0,6,30,16,5,8280,8278,7947,8132,43,8443,8444,8439,8440,0,6,30,16,5,8281,8282,8279,8280,43,8440,8299,8264,8443,0,6,30,16,5,8280,8132,7928,8281,43,8448,8269,8270,8447,0,6,30,16,5,8283,7932,7931,8284,43,8446,8448,8447,8445,0,6,30,16,5,8285,8283,8284,8286,43,8442,8447,8270,8318,0,6,30,16,5,8277,8284,7931,8151,43,8447,8442,8439,8445,0,6,30,16,5,8284,8277,8279,8286,43,8451,8452,8449,8450,0,6,30,16,5,8287,8288,8289,8290,43,8454,8453,8452,8451,0,6,30,16,5,8291,8292,8288,8287,43,8455,8456,8454,8451,0,6,30,16,5,8293,8294,8291,8287,43,8455,8451,8450,8458,0,6,30,16,5,8293,8287,8290,8295,43,8457,8446,8445,8459,0,6,30,16,5,8296,8285,8286,8297,43,8459,8445,8439,8444,0,6,30,16,5,8297,8286,8279,8282,43,8460,8461,8452,8453,0,6,30,16,5,8298,8299,8288,8292,43,8461,8462,8449,8452,0,6,30,16,5,8299,8300,8289,8288,43,8464,8458,8450,8463,0,6,30,16,5,8301,8295,8290,8302,43,8519,8464,8463,8534,0,6,30,16,5,8303,8301,8302,8304,43,8466,8093,8268,8465,0,6,30,16,5,8305,7936,7935,8306,43,8462,8466,8465,8449,0,6,30,16,5,8300,8305,8306,8289,43,8467,8468,8266,8094,0,6,30,16,5,8307,8308,7941,7939,43,8469,8470,8267,8259,0,6,30,16,5,8309,8310,7943,8111,43,8468,8469,8259,8266,0,6,30,16,5,8308,8309,8111,7941,43,8467,8094,8093,8466,0,6,30,16,5,8307,7939,7936,8305,43,8472,8263,8272,8471,0,6,30,16,5,8311,7951,8007,8312,43,8473,8092,8263,8472,0,6,30,16,5,8313,7952,7951,8311,43,8471,8272,8262,8474,0,6,30,16,5,8312,8007,7944,8314,43,8470,8474,8262,8267,0,6,30,16,5,8310,8314,7944,7943,43,8475,8300,8302,8477,0,6,30,16,5,8315,8141,8142,8316,43,7967,8475,8477,7972,0,6,30,16,5,7860,8315,8316,7861,43,8478,8303,8300,8475,0,6,30,16,5,8317,8143,8141,8315,43,7974,8478,8475,7967,0,6,30,16,5,7864,8317,8315,7860,43,8482,8073,8202,8483,0,6,30,16,5,8318,8044,8043,8319,43,8307,8482,8483,8308,0,6,30,16,5,8144,8318,8319,8145,43,8483,8202,7976,8479,0,6,30,16,5,8319,8043,8047,8320,43,8308,8483,8479,8304,0,6,30,16,5,8145,8319,8320,8146,43,8481,8016,8243,8484,0,6,30,16,5,5383,5134,8087,8321,43,8306,8481,8484,8309,0,6,30,16,5,5204,5383,8321,8147,43,8484,8243,8010,8480,0,6,30,16,5,8321,8087,8089,8322,43,8309,8484,8480,8305,0,6,30,16,5,8147,8321,8322,8148,43,8476,8301,8369,8487,0,6,30,16,5,8323,8186,8185,8324,43,7971,8476,8487,8357,0,6,30,16,5,8171,8323,8324,8172,43,8482,8307,8390,8488,0,6,30,16,5,8318,8144,8207,8325,43,8073,8482,8488,8384,0,6,30,16,5,8044,8318,8325,8200,43,8488,8390,8303,8478,0,6,30,16,5,8325,8207,8143,8317,43,8384,8488,8478,7974,0,6,30,16,5,8200,8325,8317,7864,43,8486,8336,8409,8489,0,6,30,16,5,8326,8230,8229,8327,43,8339,8486,8489,8412,0,6,30,16,5,8249,8326,8327,8250,43,8489,8409,8274,8485,0,6,30,16,5,8327,8229,8118,8328,43,8412,8489,8485,8310,0,6,30,16,5,8250,8327,8328,8251,43,8479,7976,8431,8490,0,6,30,16,5,8320,8047,8264,8329,43,8304,8479,8490,8434,0,6,30,16,5,8146,8320,8329,8274,43,8490,8431,8336,8486,0,6,30,16,5,8329,8264,8230,8326,43,8434,8490,8486,8339,0,6,30,16,5,8274,8329,8326,8249,43,8310,8485,8491,8438,0,6,30,16,5,8251,8328,8330,8276,43,8494,8459,8444,8495,0,6,30,16,5,8331,8297,8282,8332,43,8517,8494,8495,8493,0,6,30,16,5,8333,8331,8332,8334,43,8496,8497,8493,8495,0,6,30,16,5,8335,8336,8334,8332,43,8443,8496,8495,8444,0,6,30,16,5,8281,8335,8332,8282,43,8496,8443,8264,8271,0,6,30,16,5,8335,8281,7928,7927,43,8497,8496,8271,8275,0,6,30,16,5,8336,8335,7927,8119,43,8494,8518,8457,8459,0,6,30,16,5,8331,8337,8296,8297,43,8464,8499,8455,8458,0,6,30,16,5,8301,8338,8293,8295,43,8499,8464,8519,8498,0,6,30,16,5,8338,8301,8303,8339,43,8499,8498,8436,8437,0,6,30,16,5,8338,8339,8340,8341,43,8437,8456,8455,8499,0,6,30,16,5,8341,8294,8293,8338,43,8500,8273,8092,8473,0,6,30,16,5,8342,8117,7952,8313,43,8502,8472,8471,8503,0,6,30,16,5,8343,8311,8312,8344,43,8500,8473,8472,8502,0,6,30,16,5,8342,8313,8311,8343,43,8503,8471,8474,8501,0,6,30,16,5,8344,8312,8314,8345,43,8508,8274,8273,8509,0,6,30,16,5,8346,8118,8117,8347,43,8500,8507,8509,8273,0,6,30,16,5,8342,8348,8347,8117,43,8505,8502,8503,8506,0,6,30,16,5,8349,8343,8344,8350,43,8507,8500,8502,8505,0,6,30,16,5,8348,8342,8343,8349,43,8506,8503,8501,8504,0,6,30,16,5,8350,8344,8345,8351,43,8491,8485,8274,8508,0,6,30,16,5,8330,8328,8118,8346,43,8466,8462,8461,8467,0,6,30,16,5,8305,8300,8299,8307,43,8467,8461,8460,8468,0,6,30,16,5,8307,8299,8298,8308,43,8515,8508,8509,8516,0,6,30,16,5,8352,8346,8347,8353,43,8436,8515,8516,8437,0,6,30,16,5,8340,8352,8353,8341,43,8514,8456,8437,8516,0,6,30,16,5,8354,8294,8341,8353,43,8507,8514,8516,8509,0,6,30,16,5,8348,8354,8353,8347,43,8512,8505,8506,8513,0,6,30,16,5,8355,8349,8350,8356,43,8454,8512,8513,8453,0,6,30,16,5,8291,8355,8356,8292,43,8514,8507,8505,8512,0,6,30,16,5,8354,8348,8349,8355,43,8456,8514,8512,8454,0,6,30,16,5,8294,8354,8355,8291,43,8513,8506,8504,8511,0,6,30,16,5,8356,8350,8351,8357,43,8453,8513,8511,8460,0,6,30,16,5,8292,8356,8357,8298,43,8515,8436,8492,8510,0,6,30,16,5,8352,8340,8358,8359,43,8508,8515,8510,8491,0,6,30,16,5,8346,8352,8359,8330,43,8469,8468,8460,8511,0,6,30,16,5,8309,8308,8298,8357,43,8504,8470,8469,8511,0,6,30,16,5,8351,8310,8309,8357,43,8501,8474,8470,8504,0,6,30,16,5,8345,8314,8310,8351,43,8491,8497,8275,8438,0,6,30,16,5,8330,8336,8119,8276,43,8517,8492,8436,8494,0,6,30,16,5,8333,8358,8340,8331,43,8518,8494,8436,8498,0,6,30,16,5,8337,8331,8340,8339,43,8498,8519,8457,8518,0,6,30,16,5,8339,8303,8296,8337,43,8519,8534,8446,8457,0,6,30,16,5,8303,8304,8285,8296,43,8522,7963,7962,8521,0,6,30,16,5,8360,7849,7852,8361,43,7937,8522,8521,7932,0,6,30,16,5,7866,8360,8361,7867,43,8520,7956,7963,8522,0,6,30,16,5,8362,7853,7849,8360,43,7870,8520,8522,7937,0,6,30,16,5,7872,8362,8360,7866,43,8525,7952,7947,8524,0,6,30,16,5,8363,7878,7879,8364,43,7966,8525,8524,7965,0,6,30,16,5,7856,8363,8364,7857,43,8520,7870,7952,8525,0,6,30,16,5,8362,7872,7878,8363,43,7956,8520,8525,7966,0,6,30,16,5,7853,8362,8363,7856,43,8528,8268,8088,8526,0,6,30,16,5,8365,7935,7938,8366,43,8269,8528,8526,8086,0,6,30,16,5,7932,8365,8366,7933,43,8523,7964,8221,8527,0,6,30,16,5,5430,5099,8066,8367,43,7942,8523,8527,8218,0,6,30,16,5,5105,5430,8367,8070,43,8527,8221,7965,8524,0,6,30,16,5,8367,8066,7857,8364,43,8218,8527,8524,7947,0,6,30,16,5,8070,8367,8364,7879,43,8529,8330,8403,8530,0,6,30,16,5,8368,8232,8231,8369,43,8329,8529,8530,8402,0,6,30,16,5,8227,8368,8369,8228,43,8530,8403,8086,8526,0,6,30,16,5,8369,8231,7933,8366,43,8402,8530,8526,8088,0,6,30,16,5,8228,8369,8366,7938,43,8521,7962,8425,8531,0,6,30,16,5,8361,7852,8265,8370,43,7932,8521,8531,8424,0,6,30,16,5,7867,8361,8370,8263,43,8531,8425,8330,8529,0,6,30,16,5,8370,8265,8232,8368,43,8424,8531,8529,8329,0,6,30,16,5,8263,8370,8368,8227,43,8532,8465,8268,8528,0,6,30,16,5,8371,8306,7935,8365,43,8448,8532,8528,8269,0,6,30,16,5,8283,8371,8365,7932,43,8465,8532,8533,8449,0,6,30,16,5,8306,8371,8372,8289,43,8463,8450,8449,8533,0,6,30,16,5,8302,8290,8289,8372,43,8535,8448,8446,8534,0,6,30,16,5,8373,8283,8285,8304,43,8533,8535,8534,8463,0,6,30,16,5,8372,8373,8304,8302,43,8533,8532,8448,8535,0,6,30,16,5,8372,8371,8283,8373,43,8536,8540,8492,8517,0,6,30,16,5,8374,8375,8358,8333,43,8539,8536,8517,8493,0,6,30,16,5,8376,8374,8333,8334,43,8541,8538,8497,8491,0,6,30,16,5,8377,8378,8336,8330,43,8540,8537,8510,8492,0,6,30,16,5,8375,8379,8359,8358,43,8537,8541,8491,8510,0,6,30,16,5,8379,8377,8330,8359,43,8538,8539,8493,8497,0,6,30,16,5,8378,8376,8334,8336,43,8547,8362,8360,8545,0,6,30,16,5,8380,8169,8170,8381,43,8015,8547,8545,8013,0,6,30,16,5,8382,8380,8381,8383,43,8542,8010,8009,8548,0,6,30,16,5,8384,8089,7985,8385,43,8357,8542,8548,8363,0,6,30,16,5,8172,8384,8385,8173,43,8549,8364,8363,8548,0,6,30,16,5,8386,8175,8173,8385,43,8045,8549,8548,8009,0,6,30,16,5,7984,8386,8385,7985,43,8550,8365,8364,8549,0,6,30,16,5,8387,8177,8175,8386,43,8052,8550,8549,8045,0,6,30,16,5,7990,8387,8386,7984,43,8551,8366,8365,8550,0,6,30,16,5,8388,8179,8177,8387,43,8059,8551,8550,8052,0,6,30,16,5,7993,8388,8387,7990,43,8552,8367,8366,8551,0,6,30,16,5,8389,8181,8179,8388,43,8066,8552,8551,8059,0,6,30,16,5,7996,8389,8388,7993,43,8012,8544,8553,8242,0,6,30,16,5,8092,8390,8391,8090,43,8553,8368,8361,8546,0,6,30,16,5,8391,8184,5244,5456,43,8242,8553,8546,8014,0,6,30,16,5,8090,8391,5456,5139,43,8554,8369,8358,8543,0,6,30,16,5,8392,8185,8188,8393,43,8305,8554,8543,8011,0,6,30,16,5,8148,8392,8393,8093,43,8554,8305,8480,8555,0,6,30,16,5,8392,8148,8322,8394,43,8369,8554,8555,8487,0,6,30,16,5,8185,8392,8394,8324,43,8555,8480,8010,8542,0,6,30,16,5,8394,8322,8089,8384,43,8487,8555,8542,8357,0,6,30,16,5,8324,8394,8384,8172,43,8559,7989,7958,8557,0,6,30,16,5,8395,8085,8086,8396,43,7988,8559,8557,7959,0,6,30,16,5,7881,8395,8396,7843,43,8561,8012,8011,8562,0,6,30,16,5,8397,8092,8093,8398,43,8013,8561,8562,8015,0,6,30,16,5,8383,8397,8398,8382,43,8558,7971,8018,8563,0,6,30,16,5,8399,8171,8174,8400,43,7972,8558,8563,7973,0,6,30,16,5,7861,8399,8400,7862,43,8564,8041,8007,8560,0,6,30,16,5,8401,7908,7907,8402,43,8039,8564,8560,8006,0,6,30,16,5,8095,8401,8402,8096,43,8565,8046,7973,8563,0,6,30,16,5,8403,7909,7862,8400,43,8044,8565,8563,8018,0,6,30,16,5,8176,8403,8400,8174,43,8566,8051,8046,8565,0,6,30,16,5,8404,7917,7909,8403,43,8053,8566,8565,8044,0,6,30,16,5,8178,8404,8403,8176,43,8567,8060,8051,8566,0,6,30,16,5,8405,7919,7917,8404,43,8058,8567,8566,8053,0,6,30,16,5,8180,8405,8404,8178,43,8568,8065,8060,8567,0,6,30,16,5,8406,7925,7919,8405,43,8067,8568,8567,8058,0,6,30,16,5,8182,8406,8405,8180,43,8559,7988,8105,8569,0,6,30,16,5,8395,7881,7961,8407,43,7989,8559,8569,8103,0,6,30,16,5,8085,8395,8407,8098,43,8560,8007,8117,8571,0,6,30,16,5,8402,7907,7962,8408,43,8006,8560,8571,8118,0,6,30,16,5,8096,8402,8408,8100,43,8571,8117,8106,8570,0,6,30,16,5,8408,7962,7964,8409,43,8118,8571,8570,8107,0,6,30,16,5,8100,8408,8409,8102,43,8569,8105,8135,8572,0,6,30,16,5,8407,7961,7982,8410,43,8103,8569,8572,8133,0,6,30,16,5,8098,8407,8410,8104,43,8572,8135,8041,8564,0,6,30,16,5,8410,7982,7908,8401,43,8133,8572,8564,8039,0,6,30,16,5,8104,8410,8401,8095,43,8556,7910,8301,8573,0,6,30,16,5,8411,8187,8186,8412,43,7913,8556,8573,8302,0,6,30,16,5,7844,8411,8412,8142,43,8557,7958,8359,8574,0,6,30,16,5,8396,8086,8183,8413,43,7959,8557,8574,8360,0,6,30,16,5,7843,8396,8413,8170,43,8556,7913,8362,8575,0,6,30,16,5,8411,7844,8169,8414,43,7910,8556,8575,8358,0,6,30,16,5,8187,8411,8414,8188,43,8573,8301,8476,8576,0,6,30,16,5,8412,8186,8323,8415,43,8302,8573,8576,8477,0,6,30,16,5,8142,8412,8415,8316,43,8576,8476,7971,8558,0,6,30,16,5,8415,8323,8171,8399,43,8477,8576,8558,7972,0,6,30,16,5,8316,8415,8399,7861,43,8360,8574,8577,8545,0,6,30,16,5,8170,8413,8416,8381,43,8577,8544,8012,8561,0,6,30,16,5,8416,8390,8092,8397,43,8545,8577,8561,8013,0,6,30,16,5,8381,8416,8397,8383,43,8575,8362,8547,8578,0,6,30,16,5,8414,8169,8380,8417,43,8358,8575,8578,8543,0,6,30,16,5,8188,8414,8417,8393,43,8578,8547,8015,8562,0,6,30,16,5,8417,8380,8382,8398,43,8543,8578,8562,8011,0,6,30,16,5,8393,8417,8398,8093,43,8553,8544,8359,8368,0,6,30,16,5,8391,8390,8183,8184,43,8580,8582,8581,8579,0,6,30,16,5,8418,8419,8420,8421,43,8584,8359,8544,8583,0,6,30,16,5,8422,8183,8390,8423,43,8582,8584,8583,8581,0,6,30,16,5,8419,8422,8423,8420,43,8586,8577,8574,8585,0,6,30,16,5,8424,8416,8413,8425,43,8579,8586,8585,8580,0,6,30,16,5,8421,8424,8425,8418,43,8583,8544,8577,8586,0,6,30,16,5,8423,8390,8416,8424,43,8581,8583,8586,8579,0,6,30,16,5,8420,8423,8424,8421,43,8585,8574,8359,8584,0,6,30,16,5,8425,8413,8183,8422,43,8580,8585,8584,8582,0,6,30,16,5,8418,8425,8422,8419,43,8599,8593,8107,8570,0,6,30,16,5,8426,8427,8102,8409,43,8592,8599,8570,8106,0,6,30,16,5,8428,8426,8409,7964,43,8589,8598,8295,8111,0,6,30,16,5,8429,8430,8136,7970,43,8598,8590,8110,8295,0,6,30,16,5,8430,8431,7967,8136,43,8597,8591,8108,8247,0,6,30,16,5,8432,5498,5156,8103,43,8593,8597,8247,8107,0,6,30,16,5,8427,8432,8103,8102,43,8587,8588,8113,8114,0,6,30,16,5,5499,8433,7975,4993,43,8588,8595,8112,8113,0,6,30,16,5,8433,8434,7973,7975,43,8595,8596,8115,8112,0,6,30,16,5,8434,8435,7971,7973,43,8596,8589,8111,8115,0,6,30,16,5,8435,8429,7970,7971,43,8590,8594,8109,8110,0,6,30,16,5,8431,8436,7965,7967,43,8594,8592,8106,8109,0,6,30,16,5,8436,8428,7964,7965,43,8626,8637,8614,8625,0,6,30,16,5,8437,8438,8439,8440,43,8638,8626,8625,8613,0,6,30,16,5,8441,8437,8440,8442,43,8633,8627,8624,8618,0,6,30,16,5,8443,8444,8445,8446,43,8627,8634,8617,8624,0,6,30,16,5,8444,8447,8448,8445,43,8628,8636,8615,8623,0,6,30,16,5,8449,5519,5518,8450,43,8637,8628,8623,8614,0,6,30,16,5,8438,8449,8450,8439,43,8630,8631,8620,8621,0,6,30,16,5,5520,8451,8452,5521,43,8631,8632,8619,8620,0,6,30,16,5,8451,8453,8454,8452,43,8632,8629,8622,8619,0,6,30,16,5,8453,8455,8456,8454,43,8629,8633,8618,8622,0,6,30,16,5,8455,8443,8446,8456,43,8634,8635,8616,8617,0,6,30,16,5,8447,8457,8458,8448,43,8635,8638,8613,8616,0,6,30,16,5,8457,8441,8442,8458,43,8640,8636,8628,8639,0,6,30,16,5,5530,5519,8449,8459,43,8630,8640,8639,8631,0,6,30,16,5,5520,5530,8459,8451,43,8639,8628,8637,8641,0,6,30,16,5,8459,8449,8438,8460,43,8631,8639,8641,8632,0,6,30,16,5,8451,8459,8460,8453,43,8641,8637,8626,8642,0,6,30,16,5,8460,8438,8437,8461,43,8632,8641,8642,8629,0,6,30,16,5,8453,8460,8461,8455,43,8642,8626,8638,8643,0,6,30,16,5,8461,8437,8441,8462,43,8629,8642,8643,8633,0,6,30,16,5,8455,8461,8462,8443,43,8644,8627,8633,8643,0,6,30,16,5,8463,8444,8443,8462,43,8635,8644,8643,8638,0,6,30,16,5,8457,8463,8462,8441,43,8635,8634,8627,8644,0,6,30,16,5,8457,8447,8444,8463,43,8649,8612,8609,8645,0,6,30,16,5,8464,8465,8466,8467,43,8650,8649,8645,8646,0,6,30,16,5,8468,8464,8467,8469,43,8651,8650,8646,8647,0,6,30,16,5,8468,8468,8469,8470,43,8652,8651,8647,8648,0,6,30,16,5,8468,8468,8470,8471,43,8613,8652,8648,8616,0,6,30,16,5,8442,8468,8471,8458,43,8645,8609,8608,8653,0,6,30,16,5,8467,8466,8472,8473,43,8646,8645,8653,8654,0,6,30,16,5,8469,8467,8473,8474,43,8647,8646,8654,8655,0,6,30,16,5,8470,8469,8474,8475,43,8648,8647,8655,8656,0,6,30,16,5,8471,8470,8475,8476,43,8616,8648,8656,8617,0,6,30,16,5,8458,8471,8476,8448,43,8661,8607,8603,8657,0,6,30,16,5,8477,8478,8479,8480,43,8662,8661,8657,8658,0,6,30,16,5,8481,8477,8480,8482,43,8663,8662,8658,8659,0,6,30,16,5,8483,8481,8482,8484,43,8664,8663,8659,8660,0,6,30,16,5,8485,8483,8484,8486,43,8618,8664,8660,8622,0,6,30,16,5,8446,8485,8486,8456,43,8657,8603,8606,8665,0,6,30,16,5,8480,8479,8487,8488,43,8658,8657,8665,8666,0,6,30,16,5,8482,8480,8488,8489,43,8659,8658,8666,8667,0,6,30,16,5,8484,8482,8489,8490,43,8660,8659,8667,8668,0,6,30,16,5,8486,8484,8490,8491,43,8622,8660,8668,8619,0,6,30,16,5,8456,8486,8491,8454,43,8665,8606,8605,8669,0,6,30,16,5,8488,8487,8492,8493,43,8666,8665,8669,8670,0,6,30,16,5,8489,8488,8493,8494,43,8667,8666,8670,8671,0,6,30,16,5,8490,8489,8494,8495,43,8669,8605,8604,8672,0,6,30,16,5,8493,8492,5569,5568,43,8670,8669,8672,8673,0,6,30,16,5,8494,8493,5568,5570,43,8671,8670,8673,8674,0,6,30,16,5,8495,8494,5570,5571,43,8679,8602,8611,8675,0,6,30,16,5,8496,8497,8498,8499,43,8680,8679,8675,8676,0,6,30,16,5,8500,8496,8499,8501,43,8681,8680,8676,8677,0,6,30,16,5,8502,8500,8501,8503,43,8682,8681,8677,8678,0,6,30,16,5,8504,8502,8503,8505,43,8623,8682,8678,8614,0,6,30,16,5,8450,8504,8505,8439,43,8683,8610,8602,8679,0,6,30,16,5,5582,5583,8497,8496,43,8684,8683,8679,8680,0,6,30,16,5,5584,5582,8496,8500,43,8685,8684,8680,8681,0,6,30,16,5,5585,5584,8500,8502,43,8686,8685,8681,8682,0,6,30,16,5,5586,5585,8502,8504,43,8615,8686,8682,8623,0,6,30,16,5,5518,5586,8504,8450,43,8653,8608,8601,8687,0,6,30,16,5,8473,8472,8506,8507,43,8654,8653,8687,8688,0,6,30,16,5,8474,8473,8507,8508,43,8655,8654,8688,8689,0,6,30,16,5,8475,8474,8508,8509,43,8656,8655,8689,8690,0,6,30,16,5,8476,8475,8509,8510,43,8617,8656,8690,8624,0,6,30,16,5,8448,8476,8510,8445,43,8687,8601,8607,8661,0,6,30,16,5,8507,8506,8478,8477,43,8688,8687,8661,8662,0,6,30,16,5,8508,8507,8477,8481,43,8689,8688,8662,8663,0,6,30,16,5,8509,8508,8481,8483,43,8690,8689,8663,8664,0,6,30,16,5,8510,8509,8483,8485,43,8624,8690,8664,8618,0,6,30,16,5,8445,8510,8485,8446,43,8691,8600,8612,8649,0,6,30,16,5,8511,8512,8465,8464,43,8692,8691,8649,8650,0,6,30,16,5,8513,8511,8464,8468,43,8693,8692,8650,8651,0,6,30,16,5,8514,8513,8468,8468,43,8694,8693,8651,8652,0,6,30,16,5,8515,8514,8468,8468,43,8625,8694,8652,8613,0,6,30,16,5,8440,8515,8468,8442,43,8675,8611,8600,8691,0,6,30,16,5,8499,8498,8512,8511,43,8676,8675,8691,8692,0,6,30,16,5,8501,8499,8511,8513,43,8677,8676,8692,8693,0,6,30,16,5,8503,8501,8513,8514,43,8678,8677,8693,8694,0,6,30,16,5,8505,8503,8514,8515,43,8614,8678,8694,8625,0,6,30,16,5,8439,8505,8515,8440,43,8611,8696,8695,8600,0,6,30,16,5,8498,8516,8517,8512,43,8600,8695,8697,8612,0,6,30,16,5,8512,8517,8518,8465,43,8601,8699,8698,8607,0,6,30,16,5,8506,8519,8520,8478,43,8608,8700,8699,8601,0,6,30,16,5,8472,8521,8519,8506,43,8610,8702,8701,8602,0,6,30,16,5,5583,5604,8522,8497,43,8602,8701,8696,8611,0,6,30,16,5,8497,8522,8516,8498,43,8605,8704,8703,8604,0,6,30,16,5,8492,8523,5605,5569,43,8606,8705,8704,8605,0,6,30,16,5,8487,8524,8523,8492,43,8603,8706,8705,8606,0,6,30,16,5,8479,8525,8524,8487,43,8607,8698,8706,8603,0,6,30,16,5,8478,8520,8525,8479,43,8609,8707,8700,8608,0,6,30,16,5,8466,8526,8521,8472,43,8612,8697,8707,8609,0,6,30,16,5,8465,8518,8526,8466,43,8709,8708,8671,8674,0,6,30,16,5,5610,8527,8495,5571,43,8708,8710,8667,8671,0,6,30,16,5,8527,8528,8490,8495,43,8712,8711,8619,8668,0,6,30,16,5,8529,8530,8454,8491,43,8710,8712,8668,8667,0,6,30,16,5,8528,8529,8491,8490,43,8713,8714,8621,8620,0,6,30,16,5,8531,5616,5521,8452,43,8711,8713,8620,8619,0,6,30,16,5,8530,8531,8452,8454,43,8716,8715,8713,8711,0,6,30,16,5,8532,8533,8531,8530,43,8715,8717,8714,8713,0,6,30,16,5,8533,5619,5616,8531,43,8718,8719,8712,8710,0,6,30,16,5,8534,8535,8529,8528,43,8719,8716,8711,8712,0,6,30,16,5,8535,8532,8530,8529,43,8720,8718,8710,8708,0,6,30,16,5,8536,8534,8528,8527,43,8721,8720,8708,8709,0,6,30,16,5,5623,8536,8527,5610,43,8723,8722,8720,8721,0,6,30,16,5,5624,8537,8536,5623,43,8722,8724,8718,8720,0,6,30,16,5,8537,8538,8534,8536,43,8725,8726,8716,8719,0,6,30,16,5,8539,8540,8532,8535,43,8724,8725,8719,8718,0,6,30,16,5,8538,8539,8535,8534,43,8728,8727,8717,8715,0,6,30,16,5,8541,5630,5619,8533,43,8726,8728,8715,8716,0,6,30,16,5,8540,8541,8533,8532,43,8729,8730,8728,8726,0,6,30,16,5,8542,8543,8541,8540,43,8730,8731,8727,8728,0,6,30,16,5,8543,5633,5630,8541,43,8732,8733,8725,8724,0,6,30,16,5,8544,8545,8539,8538,43,8733,8729,8726,8725,0,6,30,16,5,8545,8542,8540,8539,43,8734,8732,8724,8722,0,6,30,16,5,8546,8544,8538,8537,43,8735,8734,8722,8723,0,6,30,16,5,5637,8546,8537,5624,43,8736,8737,8734,8735,0,6,30,16,5,5638,8547,8546,5637,43,8737,8738,8732,8734,0,6,30,16,5,8547,8548,8544,8546,43,8740,8739,8729,8733,0,6,30,16,5,8549,8550,8542,8545,43,8738,8740,8733,8732,0,6,30,16,5,8548,8549,8545,8544,43,8741,8742,8731,8730,0,6,30,16,5,8551,5644,5633,8543,43,8739,8741,8730,8729,0,6,30,16,5,8550,8551,8543,8542,43,8743,8744,8741,8739,0,6,30,16,5,8552,8553,8551,8550,43,8744,8745,8742,8741,0,6,30,16,5,8553,5647,5644,8551,43,8747,8746,8740,8738,0,6,30,16,5,8554,8555,8549,8548,43,8746,8743,8739,8740,0,6,30,16,5,8555,8552,8550,8549,43,8748,8747,8738,8737,0,6,30,16,5,8556,8554,8548,8547,43,8749,8748,8737,8736,0,6,30,16,5,5651,8556,8547,5638,43,8751,8750,8748,8749,0,6,30,16,5,5652,8557,8556,5651,43,8750,8752,8747,8748,0,6,30,16,5,8557,8558,8554,8556,43,8753,8754,8743,8746,0,6,30,16,5,8559,8560,8552,8555,43,8752,8753,8746,8747,0,6,30,16,5,8558,8559,8555,8554,43,8756,8755,8745,8744,0,6,30,16,5,8561,5658,5647,8553,43,8754,8756,8744,8743,0,6,30,16,5,8560,8561,8553,8552,43,8757,8758,8756,8754,0,6,30,16,5,8562,8563,8561,8560,43,8758,8759,8755,8756,0,6,30,16,5,8563,5661,5658,8561,43,8760,8761,8753,8752,0,6,30,16,5,8564,8565,8559,8558,43,8761,8757,8754,8753,0,6,30,16,5,8565,8562,8560,8559,43,8762,8760,8752,8750,0,6,30,16,5,8566,8564,8558,8557,43,8763,8762,8750,8751,0,6,30,16,5,5665,8566,8557,5652,43,8761,8760,8762,8764,0,6,30,16,5,8565,8564,8566,8567,43,8757,8761,8764,8758,0,6,30,16,5,8562,8565,8567,8563,43,8764,8762,8763,8765,0,6,30,16,5,8567,8566,5665,5667,43,8758,8764,8765,8759,0,6,30,16,5,8563,8567,5667,5661,43,8767,8593,8599,8766,0,6,30,16,5,8568,8427,8426,8569,43,8696,8767,8766,8695,0,6,30,16,5,8516,8568,8569,8517,43,8766,8599,8592,8778,0,6,30,16,5,8569,8426,8428,8570,43,8695,8766,8778,8697,0,6,30,16,5,8517,8569,8570,8518,43,8768,8598,8589,8777,0,6,30,16,5,8571,8430,8429,8572,43,8699,8768,8777,8698,0,6,30,16,5,8519,8571,8572,8520,43,8776,8590,8598,8768,0,6,30,16,5,8573,8431,8430,8571,43,8700,8776,8768,8699,0,6,30,16,5,8521,8573,8571,8519,43,8775,8591,8597,8769,0,6,30,16,5,5674,5498,8432,8574,43,8702,8775,8769,8701,0,6,30,16,5,5604,5674,8574,8522,43,8769,8597,8593,8767,0,6,30,16,5,8574,8432,8427,8568,43,8701,8769,8767,8696,0,6,30,16,5,8522,8574,8568,8516,43,8773,8588,8587,8774,0,6,30,16,5,8575,8433,5499,5677,43,8704,8773,8774,8703,0,6,30,16,5,8523,8575,5677,5605,43,8770,8595,8588,8773,0,6,30,16,5,8576,8434,8433,8575,43,8705,8770,8773,8704,0,6,30,16,5,8524,8576,8575,8523,43,8771,8596,8595,8770,0,6,30,16,5,8577,8435,8434,8576,43,8706,8771,8770,8705,0,6,30,16,5,8525,8577,8576,8524,43,8777,8589,8596,8771,0,6,30,16,5,8572,8429,8435,8577,43,8698,8777,8771,8706,0,6,30,16,5,8520,8572,8577,8525,43,8772,8594,8590,8776,0,6,30,16,5,8578,8436,8431,8573,43,8707,8772,8776,8700,0,6,30,16,5,8526,8578,8573,8521,43,8778,8592,8594,8772,0,6,30,16,5,8570,8428,8436,8578,43,8697,8778,8772,8707,0,6,30,16,5,8518,8570,8578,8526,43,8779,8780,8539,8538,0,6,30,16,5,8579,8580,8376,8378,43,8781,8782,8541,8537,0,6,30,16,5,8581,8582,8377,8379,43,8783,8781,8537,8540,0,6,30,16,5,8583,8581,8379,8375,43,8782,8779,8538,8541,0,6,30,16,5,8582,8579,8378,8377,43,8780,8784,8536,8539,0,6,30,16,5,8580,8584,8374,8376,43,8784,8783,8540,8536,0,6,30,16,5,8584,8583,8375,8374,43,8786,8785,8783,8784,0,6,30,16,5,8585,8586,8583,8584,43,8787,8786,8784,8780,0,6,30,16,5,8587,8585,8584,8580,43,8788,8789,8779,8782,0,6,30,16,5,8588,8589,8579,8582,43,8785,8790,8781,8783,0,6,30,16,5,8586,8590,8581,8583,43,8790,8788,8782,8781,0,6,30,16,5,8590,8588,8582,8581,43,8789,8787,8780,8779,0,6,30,16,5,8589,8587,8580,8579,43,8787,8790,8785,8786,0,6,30,16,5,8587,8590,8586,8585,43,8788,8790,8787,8789,0,6,30,16,5,8588,8590,8587,8589,43,8799,8791,8568,8067,0,6,30,16,5,8591,8592,8406,8182,43,8791,8801,8065,8568,0,6,30,16,5,8592,8593,7925,8406,43,8792,8793,8367,8552,0,6,30,16,5,8594,8595,8181,8389,43,8800,8792,8552,8066,0,6,30,16,5,8596,8594,8389,7996,43,8793,8799,8067,8367,0,6,30,16,5,8595,8591,8182,8181,43,8794,8798,8068,8234,0,6,30,16,5,8597,8598,7997,8079,43,8803,8794,8234,8063,0,6,30,16,5,8599,8597,8079,7924,43,8797,8795,8180,8069,0,6,30,16,5,8600,8601,8006,7926,43,8795,8802,8064,8180,0,6,30,16,5,8601,8602,7923,8006,43,8798,8796,8173,8068,0,6,30,16,5,8598,8603,7995,7997,43,8796,8800,8066,8173,0,6,30,16,5,8603,8596,7996,7995,43,8801,8797,8069,8065,0,6,30,16,5,8593,8600,7926,7925,43,8802,8803,8063,8064,0,6,30,16,5,8602,8599,7924,7923,43,8805,8804,8803,8802,0,6,30,16,5,8604,8605,8599,8602,43,8806,8810,8797,8801,0,6,30,16,5,8606,8607,8600,8593,43,8811,8807,8800,8796,0,6,30,16,5,8608,8609,8596,8603,43,8809,8811,8796,8798,0,6,30,16,5,8610,8608,8603,8598,43,8812,8805,8802,8795,0,6,30,16,5,8611,8604,8602,8601,43,8810,8812,8795,8797,0,6,30,16,5,8607,8611,8601,8600,43,8804,8813,8794,8803,0,6,30,16,5,8605,8612,8597,8599,43,8813,8809,8798,8794,0,6,30,16,5,8612,8610,8598,8597,43,8814,8808,8799,8793,0,6,30,16,5,8613,8614,8591,8595,43,8807,8815,8792,8800,0,6,30,16,5,8609,8615,8594,8596,43,8815,8814,8793,8792,0,6,30,16,5,8615,8613,8595,8594,43,8816,8806,8801,8791,0,6,30,16,5,8616,8606,8593,8592,43,8808,8816,8791,8799,0,6,30,16,5,8614,8616,8592,8591,43,8822,8823,7890,7860,0,6,30,16,5,8617,8618,7790,7794,43,8823,8824,7887,7890,0,6,30,16,5,8618,8619,7786,7790,43,8824,8825,7884,7887,0,6,30,16,5,8619,5722,4797,7786,43,8826,8166,7862,8817,0,6,30,16,5,8620,8621,7829,7834,43,8166,8827,7861,7862,0,6,30,16,5,8621,8622,7830,7829,43,8167,8826,8817,8818,0,6,30,16,5,8623,8620,7834,7835,43,8828,8167,8818,7854,0,6,30,16,5,8624,8623,7835,7838,43,8820,8819,8829,8830,0,6,30,16,5,8064,5092,5729,8625,43,7854,8820,8830,8828,0,6,30,16,5,7838,8064,8625,8624,43,7860,8277,8831,8822,0,6,30,16,5,7794,8121,8626,8617,43,8821,7861,8827,8832,0,6,30,16,5,8149,7830,8622,8627,43,8277,8821,8832,8831,0,6,30,16,5,8121,8149,8627,8626,43,8136,8137,8824,8823,0,6,30,16,5,8628,8629,8619,8618,43,8137,8138,8825,8824,0,6,30,16,5,8629,5734,5722,8619,43,8145,8139,8166,8826,0,6,30,16,5,8630,8631,8621,8620,43,8139,8140,8827,8166,0,6,30,16,5,8631,8632,8622,8621,43,8142,8145,8826,8167,0,6,30,16,5,8633,8630,8620,8623,43,8143,8142,8167,8828,0,6,30,16,5,8634,8633,8623,8624,43,8830,8829,8144,8225,0,6,30,16,5,8625,5729,5741,8635,43,8828,8830,8225,8143,0,6,30,16,5,8624,8625,8635,8634,43,8832,8827,8140,8314,0,6,30,16,5,8627,8622,8632,8636,43,8831,8832,8314,8281,0,6,30,16,5,8626,8627,8636,8637,43,8157,8158,8835,8834,0,6,30,16,5,8638,8639,8640,8641,43,8834,8835,8142,8143,0,6,30,16,5,8641,8640,8633,8634,43,8158,8159,8836,8835,0,6,30,16,5,8639,8642,8643,8640,43,8835,8836,8145,8142,0,6,30,16,5,8640,8643,8630,8633,43,8162,8160,8837,8839,0,6,30,16,5,8644,8645,8646,8647,43,8839,8837,8140,8139,0,6,30,16,5,8647,8646,8632,8631,43,8159,8162,8839,8836,0,6,30,16,5,8642,8644,8647,8643,43,8836,8839,8139,8145,0,6,30,16,5,8643,8647,8631,8630,43,8163,8164,8841,8840,0,6,30,16,5,8648,5757,5756,8649,43,8840,8841,8138,8137,0,6,30,16,5,8649,5756,5734,8629,43,8165,8163,8840,8842,0,6,30,16,5,8650,8648,8649,8651,43,8842,8840,8137,8136,0,6,30,16,5,8651,8649,8629,8628,43,8225,8144,8833,8843,0,6,30,16,5,8635,5741,5761,8652,43,8843,8833,8156,8227,0,6,30,16,5,8652,5761,5763,8653,43,8143,8225,8843,8834,0,6,30,16,5,8634,8635,8652,8641,43,8834,8843,8227,8157,0,6,30,16,5,8641,8652,8653,8638,43,8314,8140,8837,8845,0,6,30,16,5,8636,8632,8646,8654,43,8845,8837,8160,8316,0,6,30,16,5,8654,8646,8645,8655,43,8281,8314,8845,8844,0,6,30,16,5,8637,8636,8654,8656,43,8844,8845,8316,8283,0,6,30,16,5,8656,8654,8655,8657,43,8148,8149,8848,8847,0,6,30,16,5,8658,8659,8660,8661,43,8847,8848,8158,8157,0,6,30,16,5,8661,8660,8639,8638,43,8149,8146,8849,8848,0,6,30,16,5,8659,8662,8663,8660,43,8848,8849,8159,8158,0,6,30,16,5,8660,8663,8642,8639,43,8152,8151,8850,8852,0,6,30,16,5,8664,8665,8666,8667,43,8852,8850,8160,8162,0,6,30,16,5,8667,8666,8645,8644,43,8146,8152,8852,8849,0,6,30,16,5,8662,8664,8667,8663,43,8849,8852,8162,8159,0,6,30,16,5,8663,8667,8644,8642,43,8154,8153,8854,8853,0,6,30,16,5,8668,5781,5780,8669,43,8853,8854,8164,8163,0,6,30,16,5,8669,5780,5757,8648,43,8155,8154,8853,8855,0,6,30,16,5,8670,8668,8669,8671,43,8855,8853,8163,8165,0,6,30,16,5,8671,8669,8648,8650,43,8227,8156,8846,8856,0,6,30,16,5,8653,5763,5785,8672,43,8856,8846,8147,8226,0,6,30,16,5,8672,5785,5787,8673,43,8157,8227,8856,8847,0,6,30,16,5,8638,8653,8672,8661,43,8847,8856,8226,8148,0,6,30,16,5,8661,8672,8673,8658,43,8316,8160,8850,8858,0,6,30,16,5,8655,8645,8666,8674,43,8858,8850,8151,8315,0,6,30,16,5,8674,8666,8665,8675,43,8283,8316,8858,8857,0,6,30,16,5,8657,8655,8674,8676,43,8857,8858,8315,8282,0,6,30,16,5,8676,8674,8675,8677,43,8153,8154,8860,8859,0,5,6,50,44,5781,8668,8678,5792,43,8154,8155,8861,8860,0,6,30,161,0,8668,8670,8679,8678,43,8282,8315,8863,8862,0,5,6,50,44,8677,8675,8680,8681,43,8315,8151,8864,8863,0,5,6,50,44,8675,8665,8682,8680,43,8151,8152,8865,8864,0,5,6,50,44,8665,8664,8683,8682,43,8226,8867,8869,8148,0,6,30,16,5,8673,8684,8685,8658,43,8147,5783,8867,8226,0,6,30,16,5,5787,5801,8684,8673,43,8149,8868,8870,8146,0,6,30,16,5,8659,8686,8687,8662,43,8148,8869,8868,8149,0,6,30,16,5,8658,8685,8686,8659,43,8146,8870,8865,8152,0,6,30,16,5,8662,8687,8683,8664,43,8838,8161,8873,8874,0,5,6,50,44,8688,8689,8690,8691,43,8874,8873,8165,8842,0,44,50,30,16,8691,8690,8650,8651,43,8141,8838,8874,8871,0,5,6,50,44,8692,8688,8691,8693,43,8871,8874,8842,8136,0,44,50,30,16,8693,8691,8651,8628,43,8851,8150,8872,8875,0,5,6,50,44,8694,8695,8696,8697,43,8875,8872,8155,8855,0,44,50,30,16,8697,8696,8670,8671,43,8161,8851,8875,8873,0,5,6,935,44,8689,8694,8697,8690,43,8873,8875,8855,8165,0,44,935,30,16,8690,8697,8671,8650,43,8150,8866,8876,8872,0,6,30,49,0,8695,8698,8699,8696,43,8872,8876,8861,8155,0,0,49,16,5,8696,8699,8679,8670,43,8838,8141,8877,8886,0,5,6,937,936,8688,8692,8700,8701,43,8886,8877,8878,8887,0,936,937,938,44,8701,8700,8702,8703,43,8887,8878,8879,8888,0,44,938,940,939,8703,8702,8704,8705,43,8888,8879,8281,8844,0,939,940,30,16,8705,8704,8637,8656,43,8161,8838,8886,8883,0,5,6,941,91,8689,8688,8701,8706,43,8883,8886,8887,8884,0,91,941,50,44,8706,8701,8703,8707,43,8884,8887,8888,8885,0,44,50,942,47,8707,8703,8705,8708,43,8885,8888,8844,8283,0,47,942,30,16,8708,8705,8656,8657,43,8851,8161,8883,8889,0,5,6,87,943,8694,8689,8706,8709,43,8889,8883,8884,8890,0,943,87,50,944,8709,8706,8707,8710,43,8890,8884,8885,8891,0,944,50,51,945,8710,8707,8708,8711,43,8891,8885,8283,8857,0,945,51,30,16,8711,8708,8657,8676,43,8150,8851,8889,8880,0,5,6,947,946,8695,8694,8709,8712,43,8880,8889,8890,8881,0,946,947,948,44,8712,8709,8710,8713,43,8881,8890,8891,8882,0,44,948,950,949,8713,8710,8711,8714,43,8882,8891,8857,8282,0,949,950,30,16,8714,8711,8676,8677,43,8866,8150,8880,8894,0,50,6,952,951,8698,8695,8712,8715,43,8894,8880,8881,8893,0,951,952,0,53,8715,8712,8713,8716,43,8893,8881,8882,8892,0,53,0,719,953,8716,8713,8714,8717,43,8892,8882,8282,8862,0,953,719,5,44,8717,8714,8677,8681,43,8136,8823,8895,8871,0,6,30,16,5,8628,8618,8718,8693,43,8822,8896,8895,8823,0,6,30,16,5,8617,8719,8718,8618,43,8822,8831,8897,8896,0,6,30,16,5,8617,8626,8720,8719,43,8281,8879,8897,8831,0,6,5,16,30,8637,8704,8720,8626,43,8141,8871,8895,8898,0,6,5,16,30,8692,8693,8718,8721,43,8878,8899,8897,8879,0,6,30,16,5,8702,8722,8720,8704,43,8895,8896,8900,8898,0,6,30,16,5,8718,8719,8723,8721,43,8896,8897,8899,8900,0,6,5,16,30,8719,8720,8722,8723,43,8877,8900,8899,8878,0,6,30,16,5,8700,8723,8722,8702,43,8141,8898,8900,8877,0,6,30,16,5,8692,8721,8723,8700,43,6168,6164,8902,8901,0,719,0,744,954,8724,8725,8726,8727,43,8901,8902,6173,6169,0,954,744,13,12,8727,8726,6328,6334,43,6158,6168,8901,8903,0,5,719,954,955,8728,8724,8727,8729,43,8903,8901,6169,6179,0,955,954,12,16,8729,8727,6334,6318,43,6161,6167,8905,8904,0,30,50,187,49,8730,8731,8732,8733,43,8904,8905,6170,6176,0,49,187,675,16,8733,8732,6330,6332,43,6167,6159,8906,8905,0,50,6,0,187,8731,8734,8735,8732,43,8905,8906,6178,6170,0,187,0,5,675,8732,8735,6314,6330,43,6164,6165,8908,8902,0,30,714,956,176,8725,8736,8737,8726,43,8902,8908,6172,6173,0,176,956,22,16,8726,8737,6326,6328,43,6165,6162,8909,8908,0,714,6,183,742,8736,8738,8739,8737,43,8908,8909,6175,6172,0,742,183,5,22,8737,8739,6320,6326,43,6163,6157,8907,8910,0,30,6,0,957,8740,8741,8742,8743,43,8910,8907,6180,6174,0,957,0,5,16,8743,8742,6324,6321,43,6162,6163,8910,8909,0,711,712,741,958,8738,8740,8743,8739,43,8909,8910,6174,6175,0,958,741,28,27,8739,8743,6321,6320,43,6160,6158,8903,8911,0,30,6,183,49,8744,8728,8729,8745,43,8911,8903,6179,6177,0,49,183,5,16,8745,8729,6318,6315,43,6159,6160,8911,8906,0,5,6,163,175,8734,8744,8745,8735,43,8906,8911,6177,6178,0,175,163,30,16,8735,8745,6315,6314,43,6254,6166,8916,8915,0,959,30,186,960,8746,8747,8748,8749,43,8915,8916,6271,6270,0,960,186,6,952,8749,8748,6355,6354,43,6166,6256,8914,8916,0,16,962,961,955,8747,8750,8751,8748,43,8916,8914,6269,6271,0,955,961,963,5,8748,8751,6356,6355,43,6258,6254,8915,8912,0,964,959,966,965,8752,8746,8749,8753,43,8912,8915,6270,6259,0,965,966,952,967,8753,8749,6354,6344,43,6157,6258,8912,8907,0,725,964,965,968,8741,8752,8753,8742,43,8907,8912,6259,6180,0,968,965,967,0,8742,8753,6344,6324,43,6264,6161,8904,8913,0,969,725,971,970,8754,8730,8733,8755,43,8913,8904,6176,6265,0,970,971,0,972,8755,8733,6332,6350,43,6256,6264,8913,8914,0,962,969,970,961,8750,8754,8755,8751,43,8914,8913,6265,6269,0,961,970,972,963,8751,8755,6350,6356,43,6154,6153,8918,8917,0,5,6,50,181,6257,6267,8756,8757,43,8917,8918,6160,6159,0,181,50,30,16,8757,8756,8744,8734,43,6153,6155,8919,8918,0,30,6,0,161,6267,6251,8758,8756,43,8918,8919,6158,6160,0,161,0,5,16,8756,8758,8728,8744,43,6151,6150,8921,8920,0,711,712,741,958,6261,6265,8759,8760,43,8920,8921,6163,6162,0,958,741,28,27,8760,8759,8740,8738,43,6150,6156,8922,8921,0,30,6,183,49,6265,6264,8761,8759,43,8921,8922,6157,6163,0,49,183,5,16,8759,8761,8741,8740,43,6148,6151,8920,8923,0,714,6,0,742,6259,6261,8760,8762,43,8923,8920,6162,6165,0,742,0,5,22,8762,8760,8738,8736,43,6149,6148,8923,8924,0,30,714,973,176,6248,6259,8762,8763,43,8924,8923,6165,6164,0,176,973,22,16,8763,8762,8736,8725,43,6146,6154,8917,8927,0,50,6,183,187,6254,6257,8757,8764,43,8927,8917,6159,6167,0,187,183,5,675,8764,8757,8734,8731,43,6152,6146,8927,8926,0,30,50,187,49,6255,6254,8764,8765,43,8926,8927,6167,6161,0,49,187,675,16,8765,8764,8731,8730,43,6155,6145,8928,8919,0,5,719,974,44,6251,6249,8766,8758,43,8919,8928,6168,6158,0,44,974,12,16,8758,8766,8724,8728,43,6145,6149,8924,8928,0,719,0,975,974,6249,6248,8763,8766,43,8928,8924,6164,6168,0,974,975,13,12,8766,8763,8725,8724,43,6253,6147,8925,8929,0,976,30,186,966,6337,6336,8767,8768,43,8929,8925,6166,6254,0,966,186,6,977,8768,8767,8747,8746,43,6147,6255,8930,8925,0,16,962,978,184,6336,6339,8769,8767,43,8925,8930,6256,6166,0,184,978,979,5,8767,8769,8750,8747,43,6257,6253,8929,8931,0,980,976,966,981,6352,6337,8768,8770,43,8931,8929,6254,6258,0,981,966,977,9,8770,8768,8746,8752,43,6156,6257,8931,8922,0,725,980,982,968,6264,6352,8770,8761,43,8922,8931,6258,6157,0,968,982,9,0,8761,8770,8752,8741,43,6263,6152,8926,8932,0,969,725,968,983,6353,6255,8765,8771,43,8932,8926,6161,6264,0,983,968,0,984,8771,8765,8730,8754,43,6255,6263,8932,8930,0,962,969,985,978,6339,6353,8771,8769,43,8930,8932,6264,6256,0,978,985,984,979,8769,8771,8754,8750,43,6143,6139,8934,8933,0,719,0,987,986,6400,6397,8772,8773,43,8933,8934,6230,6229,0,986,987,699,697,8773,8772,6291,6290,43,6132,6143,8933,8935,0,5,719,986,988,6403,6400,8773,8774,43,8935,8933,6229,6231,0,988,986,697,700,8774,8773,6290,6294,43,6136,6142,8937,8936,0,30,50,990,989,8775,8776,8777,8778,43,8936,8937,6233,6232,0,989,990,702,177,8778,8777,6297,6296,43,6142,6134,8938,8937,0,50,6,991,990,8776,8779,8780,8777,43,8937,8938,6234,6233,0,990,991,703,702,8777,8780,6300,6297,43,6141,6136,8936,8939,0,16,725,993,992,8781,8775,8778,8782,43,8939,8936,6232,6235,0,992,993,705,15,8782,8778,6296,6302,43,6129,6141,8939,8940,0,725,30,995,994,6391,8781,8782,8783,43,8940,8939,6235,6236,0,994,995,706,705,8783,8782,6302,6304,43,6139,6140,8941,8934,0,30,714,997,996,6397,6394,8784,8772,43,8934,8941,6237,6230,0,996,997,708,177,8772,8784,6306,6291,43,6140,6137,8942,8941,0,714,6,991,997,6394,6388,8785,8784,43,8941,8942,6238,6237,0,997,991,703,708,8784,8785,6308,6306,43,6138,6129,8940,8943,0,30,6,991,989,6387,6391,8783,8786,43,8943,8940,6236,6239,0,989,991,703,177,8786,8783,6304,6310,43,6137,6138,8943,8942,0,711,712,999,998,6388,6387,8786,8785,43,8942,8943,6239,6238,0,998,999,710,709,8785,8786,6310,6308,43,6135,6132,8935,8944,0,30,6,991,989,8787,6403,8774,8788,43,8944,8935,6231,6240,0,989,991,703,177,8788,8774,6294,6312,43,6134,6135,8944,8938,0,5,6,1000,988,8779,8787,8788,8780,43,8938,8944,6240,6234,0,988,1000,7,700,8780,8788,6312,6300,43,9384,8993,8992,8991,0,1001,1002,1003,1004,8789,8790,8791,8792,43,8973,8972,8979,8978,0,1005,1006,1007,1008,8793,8794,8795,8796,43,9014,9013,8975,8976,0,712,28,27,711,8797,8798,8799,8800,43,8972,8973,9001,9157,0,6,5,16,30,8794,8793,8801,8802,43,9005,9017,9174,9002,0,6,30,16,5,8803,8804,8805,8806,43,8975,9158,9174,9017,0,6,5,16,30,8799,8807,8805,8804,43,8975,9013,9159,9158,0,6,5,16,30,8799,8798,8808,8807,43,9017,9005,9020,9021,0,5,6,50,1009,8804,8803,8809,8810,43,8976,8975,9017,9021,0,6,5,16,30,8800,8799,8804,8810,43,8979,8972,9022,9023,0,1007,1006,1010,1011,8795,8794,8811,8812,43,9023,9022,9013,9014,0,1011,1010,28,712,8812,8811,8798,8797,43,8972,9157,9156,9022,0,6,5,16,30,8794,8802,8813,8811,43,9159,9013,9022,9156,0,6,30,16,5,8808,8798,8811,8813,43,9032,9054,9026,9019,0,6,5,16,30,8814,8815,8816,8817,43,9033,9036,9035,9034,0,6,30,16,5,8818,8819,8820,8821,43,9036,9037,8997,9035,0,6,30,16,5,8819,8822,8823,8820,43,8985,8996,9040,9039,0,6,30,49,0,8824,8825,8826,8827,43,9039,9040,8994,8988,0,0,49,16,5,8827,8826,8828,8829,43,8987,8999,9459,9038,0,6,30,1012,0,8830,8831,8832,8833,43,9038,9459,8998,8986,0,0,1012,16,5,8833,8832,8834,8835,43,8985,9012,8989,8996,0,6,30,16,5,8824,8836,8837,8825,43,9019,9020,9005,9032,0,6,5,16,30,8817,8809,8803,8814,43,9383,8974,9177,9391,0,1002,1003,1013,1014,8838,8839,8840,8841,43,9041,9176,9025,9024,0,1015,50,30,16,8842,8843,8844,8845,43,9002,9041,9032,9005,0,6,30,16,5,8806,8842,8814,8803,43,9042,9168,9169,9049,0,1016,1017,1018,1019,8846,8847,8848,8849,43,9049,9169,9000,8971,0,1019,1018,1020,1021,8849,8848,8850,8851,43,8977,9042,9049,9043,0,1016,1022,1023,1019,8852,8846,8849,8853,43,9043,9049,8971,8980,0,1019,1023,1024,1021,8853,8849,8851,8854,43,9038,8986,9046,9048,0,1025,1022,1023,1026,8833,8835,8855,8856,43,9048,9046,8985,9039,0,1026,1023,1024,1027,8856,8855,8824,8827,43,8987,9038,9048,9047,0,1016,1025,1026,1019,8830,8833,8856,8857,43,9047,9048,9039,8988,0,1019,1026,1027,1021,8857,8856,8827,8829,43,8971,9000,9052,9050,0,1021,1020,1028,1029,8851,8850,8858,8859,43,9050,9052,9008,9006,0,1029,1028,1030,1031,8859,8858,8860,8861,43,8980,8971,9050,9051,0,1021,1024,1032,1033,8854,8851,8859,8862,43,9051,9050,9006,9007,0,1033,1032,1034,1035,8862,8859,8861,8863,43,9386,9056,8974,9383,0,1036,1037,1004,1001,8864,8865,8839,8838,43,9056,9386,9004,9003,0,1037,1036,1038,1039,8865,8864,8866,8867,43,9024,9025,9055,9054,0,6,30,16,5,8845,8844,8868,8815,43,9026,9054,9055,9027,0,6,30,16,5,8816,8815,8868,8869,43,9024,9054,9032,9041,0,6,30,16,5,8845,8815,8814,8842,43,8977,8969,9387,9042,0,6,30,16,5,8852,8870,8871,8846,43,9042,9387,9389,9168,0,6,30,16,5,8846,8871,8872,8847,43,9404,8982,9057,9478,0,30,6,0,1040,8873,8874,8875,8876,43,9478,9057,8983,9385,0,1040,0,5,16,8876,8875,8877,8878,43,9044,8981,9058,9059,0,1023,1024,1041,1042,8879,8880,8881,8882,43,9059,9058,8984,9045,0,1042,1041,1021,1019,8882,8881,8883,8884,43,8982,9044,9059,9057,0,1022,1023,1042,1025,8874,8879,8882,8875,43,9057,9059,9045,8983,0,1025,1042,1019,1016,8875,8882,8884,8877,43,8981,9053,9060,9058,0,6,30,16,5,8880,8885,8886,8881,43,9009,9011,9060,9053,0,6,30,16,5,8887,8888,8886,8885,43,8984,9058,9060,9011,0,6,30,16,5,8883,8881,8886,8888,43,9035,9062,9061,9034,0,6,30,16,5,8820,8889,8890,8821,43,9062,9065,9066,9061,0,6,30,16,5,8889,8891,8892,8890,43,8990,9062,9035,8997,0,6,30,16,5,8893,8889,8820,8823,43,8990,9064,9065,9062,0,6,5,16,30,8893,8894,8891,8889,43,8989,9012,9010,9063,0,6,5,16,30,8837,8836,8895,8896,43,9491,9069,8982,9404,0,1043,50,30,16,8897,8898,8874,8873,43,9073,9070,8981,9044,0,1044,1027,1021,1019,8899,8900,8880,8879,43,9069,9073,9044,8982,0,1025,1044,1019,1016,8898,8899,8879,8874,43,9053,8981,9070,9074,0,44,5,162,1045,8885,8880,8900,8901,43,9009,9053,9074,9071,0,16,44,1045,182,8887,8885,8901,8902,43,9063,9010,9072,9076,0,1046,5,0,1047,8896,8895,8903,8904,43,9065,9078,9077,9066,0,6,30,16,5,8891,8905,8906,8892,43,9064,9075,9078,9065,0,6,5,16,30,8894,8907,8905,8891,43,9033,9080,9081,9036,0,6,30,16,5,8818,8908,8909,8819,43,8995,9037,9036,9081,0,6,5,16,30,8910,8822,8819,8909,43,9385,8983,9087,9510,0,30,6,162,1048,8878,8877,8911,8912,43,9510,9087,8986,8998,0,1048,162,5,16,8912,8911,8835,8834,43,9006,9008,9091,9089,0,1031,1030,1049,1050,8861,8860,8913,8914,43,9089,9091,9001,8973,0,1050,1049,1051,1008,8914,8913,8801,8793,43,9007,9006,9089,9090,0,1035,1034,1052,1053,8863,8861,8914,8915,43,9090,9089,8973,8978,0,1053,1052,1005,1008,8915,8914,8793,8796,43,8984,9011,9093,9088,0,6,30,49,1054,8883,8888,8916,8917,43,9088,9093,9012,8985,0,1054,49,16,5,8917,8916,8836,8824,43,9011,9009,9092,9093,0,6,30,1055,0,8888,8887,8918,8916,43,9093,9092,9010,9012,0,0,1055,16,5,8916,8918,8895,8836,43,9177,8974,9094,9175,0,0,6,1056,1057,8840,8839,8919,8920,43,9175,9094,9025,9176,0,1057,1056,30,49,8920,8919,8844,8843,43,9045,8984,9088,9097,0,1023,1024,1058,1059,8884,8883,8917,8921,43,9097,9088,8985,9046,0,1059,1058,1021,1019,8921,8917,8824,8855,43,8983,9045,9097,9087,0,1022,1023,1059,1025,8877,8884,8921,8911,43,9087,9097,9046,8986,0,1025,1059,1019,1016,8911,8921,8855,8835,43,9055,9025,9094,9098,0,1060,5,1061,1062,8868,8844,8919,8922,43,9098,9094,8974,9056,0,1062,1061,6,50,8922,8919,8839,8865,43,9027,9055,9098,9095,0,16,1060,1062,176,8869,8868,8922,8923,43,9095,9098,9056,9003,0,176,1062,50,30,8923,8922,8865,8867,43,9009,9071,9099,9092,0,16,181,1063,1055,8887,8902,8924,8918,43,9092,9099,9072,9010,0,1055,1063,50,30,8918,8924,8903,8895,43,8995,9081,9102,9199,0,5,6,50,44,8910,8909,8925,8926,43,9081,9080,9101,9102,0,5,6,50,44,8909,8908,8927,8925,43,9047,8988,9201,9200,0,5,6,50,44,8857,8829,8928,8929,43,8987,9047,9200,9202,0,5,6,50,44,8830,8857,8929,8930,43,8999,8987,9202,9723,0,5,6,50,1064,8831,8830,8930,8931,43,8988,8994,9103,9201,0,5,6,50,44,8829,8828,8932,8928,43,9029,9028,9105,9104,0,5,6,163,1065,8933,8934,8935,8936,43,9104,9105,9031,9030,0,1065,163,30,16,8936,8935,8937,8938,43,9016,9015,9106,9107,0,30,6,952,1066,8939,8940,8941,8942,43,9107,9106,9067,9068,0,1066,952,0,49,8942,8941,8943,8944,43,9015,9029,9104,9106,0,6,5,1065,50,8940,8933,8936,8941,43,9106,9104,9030,9067,0,50,1065,16,30,8941,8936,8938,8943,43,9018,9016,9107,9108,0,30,6,0,725,8945,8939,8942,8946,43,9108,9107,9068,9079,0,725,0,5,16,8946,8942,8944,8947,43,9096,8991,8992,9109,0,0,6,1067,1068,8948,8792,8791,8949,43,9109,8992,9100,9082,0,1068,1067,30,737,8949,8791,8950,8951,43,9028,9096,9109,9105,0,5,0,1068,44,8934,8948,8949,8935,43,9105,9109,9082,9031,0,44,1068,737,16,8935,8949,8951,8937,43,9030,9031,9111,9110,0,5,6,186,184,8938,8937,8952,8953,43,9110,9111,9033,9034,0,184,186,30,16,8953,8952,8818,8821,43,9068,9067,9112,9113,0,49,0,719,1069,8944,8943,8954,8955,43,9113,9112,9061,9066,0,1069,719,5,16,8955,8954,8890,8892,43,9067,9030,9110,9112,0,30,6,1070,49,8943,8938,8953,8954,43,9112,9110,9034,9061,0,49,1070,5,16,8954,8953,8821,8890,43,9066,9077,9114,9113,0,6,5,675,50,8892,8906,8956,8955,43,9113,9114,9079,9068,0,50,675,16,30,8955,8956,8947,8944,43,9031,9082,9115,9111,0,1071,1072,1073,1074,8937,8951,8957,8952,43,9111,9115,9080,9033,0,1074,1073,16,5,8952,8957,8908,8818,43,9101,9080,9115,9116,0,175,5,0,1075,8927,8908,8957,8958,43,9116,9115,9082,9100,0,1075,0,6,1076,8958,8957,8951,8950,43,8969,8977,9117,8970,0,5,6,1077,1078,8870,8852,8959,8960,43,8970,9117,9069,9491,0,1078,1077,50,1043,8960,8959,8898,8897,43,9043,8980,9118,9121,0,1023,1024,1079,1080,8853,8854,8961,8962,43,9121,9118,9070,9073,0,1080,1079,1027,1044,8962,8961,8900,8899,43,8977,9043,9121,9117,0,1022,1023,1080,1081,8852,8853,8962,8959,43,9117,9121,9073,9069,0,1081,1080,1044,1025,8959,8962,8899,8898,43,9074,9070,9118,9122,0,1045,162,952,1082,8901,8900,8961,8963,43,9122,9118,8980,9051,0,1082,952,6,186,8963,8961,8854,8862,43,9071,9074,9122,9119,0,182,1045,1082,1083,8902,8901,8963,8964,43,9119,9122,9051,9007,0,1083,1082,186,30,8964,8963,8862,8863,43,8978,8979,9124,9120,0,6,30,49,1084,8796,8795,8965,8966,43,9120,9124,9076,9072,0,1084,49,16,5,8966,8965,8904,8903,43,9099,9071,9119,9125,0,1063,181,91,1085,8924,8902,8964,8967,43,9125,9119,9007,9090,0,1085,91,5,1086,8967,8964,8863,8915,43,9072,9099,9125,9120,0,50,1063,1085,1087,8903,8924,8967,8966,43,9120,9125,9090,8978,0,1087,1085,1086,6,8966,8967,8915,8796,43,9003,9004,9388,9143,0,1039,1038,1088,1089,8867,8866,8968,8969,43,9143,9388,9384,8991,0,1089,1088,1002,1003,8969,8968,8789,8792,43,9020,9019,9138,9139,0,49,1061,719,1090,8809,8817,8970,8971,43,9139,9138,9015,9016,0,1090,719,5,16,8971,8970,8940,8939,43,9021,9020,9139,9140,0,1009,50,1091,1092,8810,8809,8971,8972,43,9140,9139,9016,9018,0,1092,1091,30,16,8972,8971,8939,8945,43,9026,9027,9142,9141,0,5,6,163,44,8816,8869,8973,8974,43,9141,9142,9028,9029,0,44,163,30,16,8974,8973,8934,8933,43,9029,9015,9138,9141,0,30,6,0,49,8933,8940,8970,8974,43,9141,9138,9019,9026,0,49,0,5,16,8974,8970,8817,8816,43,8996,8989,9150,9151,0,1093,1094,1095,1096,8825,8837,8975,8976,43,9151,9150,8990,8997,0,1096,1095,6,1097,8976,8975,8893,8823,43,9040,8996,9151,9152,0,1098,1093,1096,1099,8826,8825,8976,8977,43,9152,9151,8997,9037,0,1099,1096,1097,1100,8977,8976,8823,8822,43,8994,9040,9152,9153,0,49,1098,1099,1066,8828,8826,8977,8978,43,9153,9152,9037,8995,0,1066,1099,1100,30,8978,8977,8822,8910,43,8989,9063,9149,9150,0,1094,737,1069,1101,8837,8896,8979,8975,43,9150,9149,9064,8990,0,1101,1069,16,5,8975,8979,8894,8893,43,9075,9064,9149,9144,0,1102,16,1103,1104,8907,8894,8979,8980,43,9144,9149,9063,9076,0,1104,1103,1105,1106,8980,8979,8896,8904,43,9014,8976,9146,9145,0,711,712,741,740,8797,8800,8981,8982,43,9145,9146,9084,9083,0,740,741,28,27,8982,8981,8983,8984,43,8976,9021,9140,9146,0,6,5,44,50,8800,8810,8972,8981,43,9146,9140,9018,9084,0,50,44,16,30,8981,8972,8945,8983,43,9023,9014,9145,9147,0,714,6,0,742,8812,8797,8982,8985,43,9147,9145,9083,9086,0,742,0,5,22,8985,8982,8984,8986,43,8979,9023,9147,9148,0,30,714,742,49,8795,8812,8985,8987,43,9148,9147,9086,9085,0,49,742,22,16,8987,8985,8986,8988,43,9095,9003,9143,9154,0,1107,5,0,53,8923,8867,8969,8989,43,9154,9143,8991,9096,0,53,0,6,50,8989,8969,8792,8948,43,9027,9095,9154,9142,0,16,1107,53,182,8869,8923,8989,8973,43,9142,9154,9096,9028,0,182,53,50,30,8973,8989,8948,8934,43,9103,8994,9153,9224,0,44,5,0,53,8932,8828,8978,8990,43,9224,9153,8995,9199,0,53,0,6,50,8990,8978,8910,8926,43,9124,8979,9148,9155,0,719,0,744,743,8965,8795,8987,8991,43,9155,9148,9085,9123,0,743,744,13,12,8991,8987,8988,8992,43,9076,9124,9155,9144,0,5,719,745,44,8904,8965,8991,8980,43,9144,9155,9123,9075,0,44,745,12,16,8980,8991,8992,8907,43,9163,9164,9156,9157,0,44,50,30,16,8993,8994,8813,8802,43,9164,9165,9159,9156,0,44,50,30,16,8994,8995,8808,8813,43,9165,9166,9158,9159,0,44,50,30,16,8995,8996,8807,8808,43,9160,9161,9168,9389,0,44,50,51,47,8997,8998,8847,8872,43,9161,9162,9169,9168,0,0,161,1069,719,8998,8999,8848,8847,43,9172,9175,9176,9171,0,6,30,16,5,9000,8920,8843,9001,43,9390,9391,9177,9170,0,6,30,16,5,9002,8841,8840,9003,43,9170,9177,9175,9172,0,6,30,16,5,9003,8840,8920,9000,43,9158,9166,9173,9174,0,6,5,16,30,8807,8996,9004,8805,43,9002,9174,9173,9171,0,6,30,16,5,8806,8805,9004,9001,43,9002,9171,9176,9041,0,6,30,16,5,8806,9001,8843,8842,43,9001,9179,9163,9157,0,6,30,16,5,8801,9005,8993,8802,43,9001,9091,9180,9179,0,6,30,16,5,8801,8913,9006,9005,43,9008,9181,9180,9091,0,6,30,16,5,8860,9007,9006,8913,43,9008,9052,9167,9181,0,6,5,16,30,8860,8858,9008,9007,43,9000,9178,9167,9052,0,6,30,16,5,8850,9009,9008,8858,43,9000,9169,9162,9178,0,6,5,16,30,8850,8848,8999,9009,43,9123,9085,9183,9182,0,719,0,987,986,8992,8988,9010,9011,43,9182,9183,9127,9126,0,986,987,699,697,9011,9010,9012,9013,43,9075,9123,9182,9184,0,5,719,986,988,8907,8992,9011,9014,43,9184,9182,9126,9128,0,988,986,697,700,9014,9011,9013,9015,43,9079,9114,9186,9185,0,30,50,990,989,8947,8956,9016,9017,43,9185,9186,9130,9129,0,989,990,702,177,9017,9016,9018,9019,43,9114,9077,9187,9186,0,50,6,991,990,8956,8906,9020,9016,43,9186,9187,9131,9130,0,990,991,703,702,9016,9020,9021,9018,43,9108,9079,9185,9188,0,16,725,993,992,8946,8947,9017,9022,43,9188,9185,9129,9132,0,992,993,705,15,9022,9017,9019,9023,43,9018,9108,9188,9189,0,725,30,995,994,8945,8946,9022,9024,43,9189,9188,9132,9133,0,994,995,706,705,9024,9022,9023,9025,43,9085,9086,9190,9183,0,30,714,997,996,8988,8986,9026,9010,43,9183,9190,9134,9127,0,996,997,708,177,9010,9026,9027,9012,43,9086,9083,9191,9190,0,714,6,991,997,8986,8984,9028,9026,43,9190,9191,9135,9134,0,997,991,703,708,9026,9028,9029,9027,43,9084,9018,9189,9192,0,30,6,991,989,8983,8945,9024,9030,43,9192,9189,9133,9136,0,989,991,703,177,9030,9024,9025,9031,43,9083,9084,9192,9191,0,711,712,999,998,8984,8983,9030,9028,43,9191,9192,9136,9135,0,998,999,710,709,9028,9030,9031,9029,43,9078,9075,9184,9193,0,30,6,991,989,8905,8907,9014,9032,43,9193,9184,9128,9137,0,989,991,703,177,9032,9014,9015,9033,43,9077,9078,9193,9187,0,5,6,1000,988,8906,8905,9032,9020,43,9187,9193,9137,9131,0,988,1000,7,700,9020,9032,9033,9021,43,9199,9102,9205,9204,0,1108,1109,1110,1111,8926,8925,9034,9035,43,9200,9201,9207,9206,0,1112,1113,1114,1115,8929,8928,9036,9037,43,9202,9200,9206,9208,0,1116,1112,1115,1117,8930,8929,9037,9038,43,9723,9202,9208,9724,0,1118,1116,1117,1119,8931,8930,9038,9039,43,9201,9103,9209,9207,0,1113,1120,1121,1114,8928,8932,9040,9036,43,8992,9211,9210,9100,0,1122,1123,1124,1125,8791,9041,9042,8950,43,8992,8993,9725,9211,0,1122,1126,1127,1123,8791,8790,9043,9041,43,9203,9101,9116,9222,0,1128,1129,1130,1131,9044,8927,8958,9045,43,9222,9116,9100,9210,0,1131,1130,1125,1124,9045,8958,8950,9042,43,9209,9103,9224,9225,0,1121,1120,1132,1133,9040,8932,8990,9046,43,9225,9224,9199,9204,0,1133,1132,1108,1111,9046,8990,8926,9035,43,9241,9237,9250,9249,0,1134,1135,1136,1137,9047,9048,9049,9050,43,9249,9250,9246,9242,0,1137,1136,1138,1139,9050,9049,9051,9052,43,9235,9241,9249,9251,0,1140,1134,1137,1141,9053,9047,9050,9054,43,9251,9249,9242,9247,0,1141,1137,1139,1142,9054,9050,9052,9055,43,9239,9240,9253,9252,0,1143,1144,1145,1146,9056,9057,9058,9059,43,9252,9253,9243,9244,0,1146,1145,1147,1148,9059,9058,9060,9061,43,9240,9238,9254,9253,0,1144,1149,1150,1145,9057,9062,9063,9058,43,9253,9254,9245,9243,0,1145,1150,1151,1147,9058,9063,9064,9060,43,9237,9236,9255,9250,0,1135,1152,1153,1136,9048,9065,9066,9049,43,9250,9255,9295,9246,0,1136,1153,1154,1138,9049,9066,9067,9051,43,9238,9234,9256,9254,0,1149,1155,1156,1150,9062,9068,9069,9063,43,9254,9256,9248,9245,0,1150,1156,1157,1151,9063,9069,9070,9064,43,9234,9726,9680,9256,0,1155,1158,1159,1156,9068,9071,9072,9069,43,9256,9680,9727,9248,0,1156,1159,1160,1157,9069,9072,9073,9070,43,9212,9685,9634,9213,0,1161,1162,1163,1164,9074,9075,9076,9077,43,9194,9212,9213,9220,0,1165,1161,1164,1166,9078,9074,9077,9079,43,9196,9261,9217,9216,0,1167,1168,1169,1170,9080,9081,9082,9083,43,9722,9198,9214,9297,0,1171,1172,1173,1174,9084,9085,9086,9087,43,9198,9197,9215,9214,0,1172,1175,1176,1173,9085,9088,9089,9086,43,9197,9196,9216,9215,0,1175,1167,1170,1176,9088,9080,9083,9089,43,9195,9262,9218,9219,0,1177,1178,1179,1180,9090,9091,9092,9093,43,9264,9194,9220,9223,0,1181,1165,1166,1182,9094,9078,9079,9095,43,9263,9264,9223,9221,0,1183,1181,1182,1184,9096,9094,9095,9097,43,9265,9195,9219,9226,0,1185,1177,1180,1186,9098,9090,9093,9099,43,9261,9265,9226,9217,0,1168,1185,1186,1169,9081,9098,9099,9082,43,9204,9205,9296,9266,0,1111,1110,1187,1188,9035,9034,9100,9101,43,9206,9207,9268,9267,0,1115,1114,1189,1190,9037,9036,9102,9103,43,9208,9206,9267,9269,0,1117,1115,1190,1191,9038,9037,9103,9104,43,9724,9208,9269,9728,0,1119,1117,1191,1192,9039,9038,9104,9105,43,9207,9209,9274,9268,0,1114,1121,1193,1189,9036,9040,9106,9102,43,9210,9211,9271,9270,0,1124,1123,1194,1195,9042,9041,9107,9108,43,9211,9725,9729,9271,0,1123,1127,1196,1194,9041,9043,9109,9107,43,9273,9275,9203,9222,0,1197,1198,1128,1131,9110,9111,9044,9045,43,9270,9273,9222,9210,0,1195,1197,1131,1124,9108,9110,9045,9042,43,9272,9274,9209,9225,0,1199,1193,1121,1133,9112,9106,9040,9046,43,9266,9272,9225,9204,0,1188,1199,1133,1111,9101,9112,9046,9035,43,9266,9296,9285,9276,0,1188,1187,1200,1201,9101,9100,9113,9114,43,9276,9285,9262,9195,0,1201,1200,1178,1177,9114,9113,9091,9090,43,9267,9268,9278,9277,0,1190,1189,1202,1203,9103,9102,9115,9116,43,9277,9278,9196,9197,0,1203,1202,1167,1175,9116,9115,9080,9088,43,9269,9267,9277,9279,0,1191,1190,1203,1204,9104,9103,9116,9117,43,9279,9277,9197,9198,0,1204,1203,1175,1172,9117,9116,9088,9085,43,9728,9269,9279,9730,0,1192,1191,1204,1205,9105,9104,9117,9118,43,9730,9279,9198,9722,0,1205,1204,1172,1171,9118,9117,9085,9084,43,9268,9274,9284,9278,0,1189,1193,1206,1202,9102,9106,9119,9115,43,9278,9284,9261,9196,0,1202,1206,1168,1167,9115,9119,9081,9080,43,9270,9271,9281,9280,0,1195,1194,1207,1208,9108,9107,9120,9121,43,9280,9281,9212,9194,0,1208,1207,1161,1165,9121,9120,9074,9078,43,9271,9729,9731,9281,0,1194,1196,1209,1207,9107,9109,9122,9120,43,9281,9731,9685,9212,0,1207,1209,1162,1161,9120,9122,9075,9074,43,9264,9263,9286,9283,0,1181,1183,1210,1211,9094,9096,9123,9124,43,9283,9286,9275,9273,0,1211,1210,1198,1197,9124,9123,9111,9110,43,9194,9264,9283,9280,0,1165,1181,1211,1208,9078,9094,9124,9121,43,9280,9283,9273,9270,0,1208,1211,1197,1195,9121,9124,9110,9108,43,9265,9261,9284,9282,0,1185,1168,1206,1212,9098,9081,9119,9125,43,9282,9284,9274,9272,0,1212,1206,1193,1199,9125,9119,9106,9112,43,9195,9265,9282,9276,0,1177,1185,1212,1201,9090,9098,9125,9114,43,9276,9282,9272,9266,0,1201,1212,1199,1188,9114,9125,9112,9101,43,9259,9260,9291,9289,0,1213,1214,1215,1216,9126,9127,9128,9129,43,9289,9291,9241,9235,0,1216,1215,1134,1140,9129,9128,9047,9053,43,9260,9229,9292,9291,0,1214,1217,1218,1215,9127,9130,9131,9128,43,9291,9292,9237,9241,0,1215,1218,1135,1134,9128,9131,9048,9047,43,9229,9230,9288,9292,0,1217,1219,1220,1218,9130,9132,9133,9131,43,9292,9288,9236,9237,0,1218,1220,1152,1135,9131,9133,9065,9048,43,9228,9227,9293,9294,0,1221,1222,1223,1224,9134,9135,9136,9137,43,9294,9293,9240,9239,0,1224,1223,1144,1143,9137,9136,9057,9056,43,9227,9258,9290,9293,0,1222,1225,1226,1223,9135,9138,9139,9136,43,9293,9290,9238,9240,0,1223,1226,1149,1144,9136,9139,9062,9057,43,9258,9257,9287,9290,0,1225,1227,1228,1226,9138,9140,9141,9139,43,9290,9287,9234,9238,0,1226,1228,1155,1149,9139,9141,9068,9062,43,9257,9298,9732,9287,0,1227,1229,1230,1228,9140,9142,9143,9141,43,9287,9732,9726,9234,0,1228,1230,1158,1155,9141,9143,9071,9068,43,9205,9102,9101,9203,0,1231,1232,1129,1128,9034,8925,8927,9044,43,9255,9236,9239,9252,0,1233,1234,1143,1146,9066,9065,9056,9059,43,9295,9255,9252,9244,0,1235,1233,1146,1148,9067,9066,9059,9061,43,9218,9262,9263,9221,0,1236,1237,1183,1184,9092,9091,9096,9097,43,9296,9205,9203,9275,0,1238,1231,1128,1198,9100,9034,9044,9111,43,9285,9296,9275,9286,0,1239,1238,1198,1210,9113,9100,9111,9123,43,9262,9285,9286,9263,0,1237,1239,1210,1183,9091,9113,9123,9096,43,9288,9230,9228,9294,0,1240,1241,1221,1224,9133,9132,9134,9137,43,9236,9288,9294,9239,0,1234,1240,1224,1143,9065,9133,9137,9056,43,8956,8955,9299,9311,0,5,6,1242,92,9144,9145,9146,9147,43,9311,9299,9300,9312,0,92,1242,1243,674,9147,9146,9148,9149,43,9312,9300,8958,8957,0,674,1243,30,16,9149,9148,9150,9151,43,8946,8949,9309,9303,0,6,5,1244,1242,9152,9153,9154,9155,43,9303,9309,9310,9304,0,1242,1244,674,1243,9155,9154,9156,9157,43,9304,9310,8964,8967,0,1243,674,16,30,9157,9156,9158,9159,43,8951,8945,9307,9315,0,5,6,86,1245,9160,9161,9162,9163,43,9315,9307,9308,9316,0,1245,86,681,674,9163,9162,9164,9165,43,9316,9308,8968,8962,0,674,681,30,16,9165,9164,9166,9167,43,8954,8956,9311,9321,0,6,5,92,1246,9168,9144,9147,9169,43,9321,9311,9312,9322,0,1246,92,674,1247,9169,9147,9149,9170,43,9322,9312,8957,8959,0,1247,674,16,30,9170,9149,9151,9171,43,8950,8953,9317,9319,0,6,5,1248,86,9172,9173,9174,9175,43,9319,9317,9318,9320,0,86,1248,1249,681,9175,9174,9176,9177,43,9320,9318,8960,8963,0,681,1249,16,30,9177,9176,9178,9179,43,8952,8951,9315,9313,0,5,6,1250,92,9180,9160,9163,9181,43,9313,9315,9316,9314,0,92,1250,681,674,9181,9163,9165,9182,43,9314,9316,8962,8961,0,674,681,30,16,9182,9165,9167,9183,43,8948,8947,9305,9301,0,5,6,86,92,9184,9185,9186,9187,43,9301,9305,9306,9302,0,92,86,681,674,9187,9186,9188,9189,43,9302,9306,8966,8965,0,674,681,30,16,9189,9188,9190,9191,43,8955,8948,9301,9299,0,5,6,86,92,9145,9184,9187,9146,43,9299,9301,9302,9300,0,92,86,681,674,9146,9187,9189,9148,43,9300,9302,8965,8958,0,674,681,30,16,9148,9189,9191,9150,43,8947,8946,9303,9305,0,5,6,86,92,9185,9152,9155,9186,43,9305,9303,9304,9306,0,92,86,681,674,9186,9155,9157,9188,43,9306,9304,8967,8966,0,674,681,30,16,9188,9157,9159,9190,43,8953,8952,9313,9317,0,5,6,86,92,9173,9180,9181,9174,43,9317,9313,9314,9318,0,92,86,681,674,9174,9181,9182,9176,43,9318,9314,8961,8960,0,674,681,30,16,9176,9182,9183,9178,43,8945,8954,9321,9307,0,6,5,1251,86,9161,9168,9169,9162,43,9307,9321,9322,9308,0,86,1251,1252,681,9162,9169,9170,9164,43,9308,9322,8959,8968,0,681,1252,16,30,9164,9170,9171,9166,43,8949,8950,9319,9309,0,6,5,92,1253,9153,9172,9175,9154,43,9309,9319,9320,9310,0,1253,92,674,681,9154,9175,9177,9156,43,9310,9320,8963,8964,0,681,674,16,30,9156,9177,9179,9158,43,8964,8963,9325,9329,0,6,5,1248,1254,9158,9179,9192,9193,43,8968,8959,9332,9328,0,6,5,1255,1242,9166,9171,9194,9195,43,8960,8961,9331,9330,0,5,6,86,92,9178,9183,9196,9197,43,8966,8967,9327,9323,0,5,6,1250,1245,9190,9159,9198,9199,43,8958,8965,9326,9333,0,5,6,86,92,9150,9191,9200,9201,43,8965,8966,9323,9326,0,5,6,1250,92,9191,9190,9199,9200,43,8961,8962,9324,9331,0,5,6,86,92,9183,9167,9202,9196,43,8963,8960,9330,9325,0,6,5,92,1254,9179,9178,9197,9192,43,8959,8957,9334,9332,0,6,5,92,1256,9171,9151,9203,9194,43,8962,8968,9328,9324,0,5,6,86,92,9167,9166,9195,9202,43,8967,8964,9329,9327,0,6,5,1248,1257,9159,9158,9193,9198,43,8957,8958,9333,9334,0,5,6,1242,92,9151,9150,9201,9203,43,8954,8945,9343,9357,0,30,16,1258,681,9168,9161,9204,9205,43,9357,9343,9344,9358,0,681,1258,92,1250,9205,9204,9206,9207,43,9358,9344,9137,9128,0,1250,92,5,6,9207,9206,9033,9015,43,8945,8951,9335,9343,0,6,30,153,1259,9161,9160,9208,9204,43,9343,9335,9336,9344,0,1259,153,151,677,9204,9208,9209,9206,43,9344,9336,9131,9137,0,677,151,16,5,9206,9209,9021,9033,43,9130,9131,9336,9350,0,5,6,86,92,9018,9021,9209,9210,43,9350,9336,9335,9349,0,92,86,681,674,9210,9209,9208,9211,43,9349,9335,8951,8952,0,674,681,30,16,9211,9208,9160,9180,43,9129,9130,9350,9338,0,5,6,86,92,9019,9018,9210,9212,43,9338,9350,9349,9337,0,92,86,681,674,9212,9210,9211,9213,43,9337,9349,8952,8953,0,674,681,30,16,9213,9211,9180,9173,43,9132,9129,9338,9356,0,5,6,86,92,9023,9019,9212,9214,43,9356,9338,9337,9355,0,92,86,681,1260,9214,9212,9213,9215,43,9355,9337,8953,8950,0,1260,681,30,16,9215,9213,9173,9172,43,9133,9132,9356,9346,0,5,6,86,1248,9025,9023,9214,9216,43,9346,9356,9355,9345,0,1248,86,1261,1258,9216,9214,9215,9217,43,9345,9355,8950,8949,0,1258,1261,30,16,9217,9215,9172,9153,43,9136,9133,9346,9340,0,5,6,1254,92,9031,9025,9216,9218,43,9340,9346,9345,9339,0,92,1254,1262,1263,9218,9216,9217,9219,43,9339,9345,8949,8946,0,1263,1262,30,16,9219,9217,9153,9152,43,9135,9136,9340,9342,0,5,6,86,92,9029,9031,9218,9220,43,9342,9340,9339,9341,0,92,86,1264,1265,9220,9218,9219,9221,43,9341,9339,8946,8947,0,1265,1264,30,16,9221,9219,9152,9185,43,9134,9135,9342,9348,0,5,6,86,1245,9027,9029,9220,9222,43,9348,9342,9341,9347,0,1245,86,1264,1265,9222,9220,9221,9223,43,9347,9341,8947,8948,0,1265,1264,30,16,9223,9221,9185,9184,43,9127,9134,9348,9352,0,5,6,1250,92,9012,9027,9222,9224,43,9352,9348,9347,9351,0,92,1250,1264,1265,9224,9222,9223,9225,43,9351,9347,8948,8955,0,1265,1264,30,16,9225,9223,9184,9145,43,9126,9127,9352,9354,0,5,6,1246,92,9013,9012,9224,9226,43,9354,9352,9351,9353,0,92,1246,1247,674,9226,9224,9225,9227,43,9353,9351,8955,8956,0,674,1247,30,16,9227,9225,9145,9144,43,9128,9126,9354,9358,0,5,6,86,1255,9015,9013,9226,9207,43,9358,9354,9353,9357,0,1255,86,681,1258,9207,9226,9227,9205,43,9357,9353,8956,8954,0,1258,681,30,16,9205,9227,9144,9168,43,9384,9413,9414,8993,0,1001,1004,1003,1002,8789,9228,9229,8790,43,9394,9399,9400,9393,0,1005,1008,1007,1006,9230,9231,9232,9233,43,9432,9397,9396,9431,0,712,711,27,28,9234,9235,9236,9237,43,9393,9579,9420,9394,0,6,30,16,5,9233,9238,9239,9230,43,9423,9421,9595,9435,0,6,5,16,30,9240,9241,9242,9243,43,9396,9435,9595,9580,0,6,30,16,5,9236,9243,9242,9244,43,9396,9580,9581,9431,0,6,30,16,5,9236,9244,9245,9237,43,9435,9439,9438,9423,0,5,1009,50,6,9243,9246,9247,9240,43,9397,9439,9435,9396,0,6,30,16,5,9235,9246,9243,9236,43,9400,9441,9440,9393,0,1007,1011,1010,1006,9232,9248,9249,9233,43,9441,9432,9431,9440,0,1011,712,28,1010,9248,9234,9237,9249,43,9393,9440,9578,9579,0,6,30,16,5,9233,9249,9250,9238,43,9581,9578,9440,9431,0,6,5,16,30,9245,9250,9249,9237,43,9450,9437,9444,9473,0,6,30,16,5,9251,9252,9253,9254,43,9451,9452,9453,9454,0,6,5,16,30,9255,9256,9257,9258,43,9454,9453,9418,9455,0,6,5,16,30,9258,9257,9259,9260,43,9407,9457,9458,9417,0,6,0,49,30,9261,9262,9263,9264,43,9457,9410,9415,9458,0,0,5,16,49,9262,9265,9266,9263,43,9409,9456,9459,8999,0,6,0,1012,30,9267,9268,8832,8831,43,9456,9408,8998,9459,0,0,5,16,1012,9268,9269,8834,8832,43,9407,9417,9411,9430,0,6,5,16,30,9261,9264,9270,9271,43,9437,9450,9423,9438,0,6,30,16,5,9252,9251,9240,9247,43,9383,9391,9598,9395,0,1002,1014,1013,1003,8838,8841,9272,9273,43,9460,9442,9443,9597,0,1015,16,30,50,9274,9275,9276,9277,43,9421,9423,9450,9460,0,6,5,16,30,9241,9240,9251,9274,43,9461,9468,9590,9589,0,1016,1019,1018,1017,9278,9279,9280,9281,43,9468,9392,9419,9590,0,1019,1021,1020,1018,9279,9282,9283,9280,43,9398,9462,9468,9461,0,1016,1019,1023,1022,9284,9285,9279,9278,43,9462,9401,9392,9468,0,1019,1021,1024,1023,9285,9286,9282,9279,43,9456,9467,9465,9408,0,1025,1026,1023,1022,9268,9287,9288,9269,43,9467,9457,9407,9465,0,1026,1027,1024,1023,9287,9262,9261,9288,43,9409,9466,9467,9456,0,1016,1019,1026,1025,9267,9289,9287,9268,43,9466,9410,9457,9467,0,1019,1021,1027,1026,9289,9265,9262,9287,43,9392,9469,9471,9419,0,1021,1029,1028,1020,9282,9290,9291,9283,43,9469,9424,9426,9471,0,1029,1031,1030,1028,9290,9292,9293,9291,43,9401,9470,9469,9392,0,1021,1033,1032,1024,9286,9294,9290,9282,43,9470,9425,9424,9469,0,1033,1035,1034,1032,9294,9295,9292,9290,43,9386,9383,9395,9475,0,1036,1001,1004,1037,8864,8838,9273,9296,43,9475,9422,9004,9386,0,1037,1039,1038,1036,9296,9297,8866,8864,43,9442,9473,9474,9443,0,6,5,16,30,9275,9254,9298,9276,43,9444,9445,9474,9473,0,6,5,16,30,9253,9299,9298,9254,43,9442,9460,9450,9473,0,6,5,16,30,9275,9274,9251,9254,43,9398,9461,9387,8969,0,6,5,16,30,9284,9278,8871,8870,43,9461,9589,9389,9387,0,6,5,16,30,9278,9281,8872,8871,43,9404,9478,9476,9403,0,30,1040,0,6,8873,8876,9300,9301,43,9478,9385,9405,9476,0,1040,16,5,0,8876,8878,9302,9300,43,9463,9479,9477,9402,0,1023,1042,1041,1024,9303,9304,9305,9306,43,9479,9464,9406,9477,0,1042,1019,1021,1041,9304,9307,9308,9305,43,9403,9476,9479,9463,0,1022,1025,1042,1023,9301,9300,9304,9303,43,9476,9405,9464,9479,0,1025,1016,1019,1042,9300,9302,9307,9304,43,9402,9477,9480,9472,0,6,5,16,30,9306,9305,9309,9310,43,9427,9472,9480,9429,0,6,5,16,30,9311,9310,9309,9312,43,9406,9429,9480,9477,0,6,5,16,30,9308,9312,9309,9305,43,9453,9452,9481,9482,0,6,5,16,30,9257,9256,9313,9314,43,9482,9481,9486,9485,0,6,5,16,30,9314,9313,9315,9316,43,9412,9418,9453,9482,0,6,5,16,30,9317,9259,9257,9314,43,9412,9482,9485,9484,0,6,30,16,5,9317,9314,9316,9318,43,9411,9483,9428,9430,0,6,30,16,5,9270,9319,9320,9271,43,9491,9404,9403,9489,0,1043,16,30,50,8897,8873,9301,9321,43,9494,9463,9402,9490,0,1044,1019,1021,1027,9322,9303,9306,9323,43,9489,9403,9463,9494,0,1025,1016,1019,1044,9321,9301,9303,9322,43,9472,9495,9490,9402,0,44,1045,162,5,9310,9324,9323,9306,43,9427,9492,9495,9472,0,16,182,1045,44,9311,9325,9324,9310,43,9483,9497,9493,9428,0,1046,1047,0,5,9319,9326,9327,9320,43,9485,9486,9498,9499,0,6,5,16,30,9316,9315,9328,9329,43,9484,9485,9499,9496,0,6,30,16,5,9318,9316,9329,9330,43,9451,9454,9502,9501,0,6,5,16,30,9255,9258,9331,9332,43,9416,9502,9454,9455,0,6,30,16,5,9333,9331,9258,9260,43,9385,9510,9508,9405,0,30,1048,162,6,8878,8912,9334,9302,43,9510,8998,9408,9508,0,1048,16,5,162,8912,8834,9269,9334,43,9424,9511,9513,9426,0,1031,1050,1049,1030,9292,9335,9336,9293,43,9511,9394,9420,9513,0,1050,1008,1051,1049,9335,9230,9239,9336,43,9425,9512,9511,9424,0,1035,1053,1052,1034,9295,9337,9335,9292,43,9512,9399,9394,9511,0,1053,1008,1005,1052,9337,9231,9230,9335,43,9406,9509,9515,9429,0,6,1054,49,30,9308,9338,9339,9312,43,9509,9407,9430,9515,0,1054,5,16,49,9338,9261,9271,9339,43,9429,9515,9514,9427,0,6,0,1055,30,9312,9339,9340,9311,43,9515,9430,9428,9514,0,0,5,16,1055,9339,9271,9320,9340,43,9598,9596,9516,9395,0,0,1057,1056,6,9272,9341,9342,9273,43,9596,9597,9443,9516,0,1057,49,30,1056,9341,9277,9276,9342,43,9464,9519,9509,9406,0,1023,1059,1058,1024,9307,9343,9338,9308,43,9519,9465,9407,9509,0,1059,1019,1021,1058,9343,9288,9261,9338,43,9405,9508,9519,9464,0,1022,1025,1059,1023,9302,9334,9343,9307,43,9508,9408,9465,9519,0,1025,1016,1019,1059,9334,9269,9288,9343,43,9474,9520,9516,9443,0,1060,1062,1061,5,9298,9344,9342,9276,43,9520,9475,9395,9516,0,1062,50,6,1061,9344,9296,9273,9342,43,9445,9517,9520,9474,0,16,176,1062,1060,9299,9345,9344,9298,43,9517,9422,9475,9520,0,176,30,50,1062,9345,9297,9296,9344,43,9427,9514,9521,9492,0,16,1055,1063,181,9311,9340,9346,9325,43,9514,9428,9493,9521,0,1055,30,50,1063,9340,9320,9327,9346,43,9416,9620,9524,9502,0,5,44,50,6,9333,9347,9348,9331,43,9502,9524,9523,9501,0,5,44,50,6,9331,9348,9349,9332,43,9466,9621,9622,9410,0,5,44,50,6,9289,9350,9351,9265,43,9409,9623,9621,9466,0,5,44,50,6,9267,9352,9350,9289,43,8999,9723,9623,9409,0,5,1064,50,6,8831,8931,9352,9267,43,9410,9622,9525,9415,0,5,44,50,6,9265,9351,9353,9266,43,9447,9526,9527,9446,0,5,1065,163,6,9354,9355,9356,9357,43,9526,9448,9449,9527,0,1065,16,30,163,9355,9358,9359,9356,43,9434,9529,9528,9433,0,30,1066,952,6,9360,9361,9362,9363,43,9529,9488,9487,9528,0,1066,49,0,952,9361,9364,9365,9362,43,9433,9528,9526,9447,0,6,50,1065,5,9363,9362,9355,9354,43,9528,9487,9448,9526,0,50,30,16,1065,9362,9365,9358,9355,43,9436,9530,9529,9434,0,30,725,0,6,9366,9367,9361,9360,43,9530,9500,9488,9529,0,725,16,5,0,9367,9368,9364,9361,43,9518,9531,9414,9413,0,0,1068,1067,6,9369,9370,9229,9228,43,9531,9503,9522,9414,0,1068,737,30,1067,9370,9371,9372,9229,43,9446,9527,9531,9518,0,5,44,1068,0,9357,9356,9370,9369,43,9527,9449,9503,9531,0,44,16,737,1068,9356,9359,9371,9370,43,9448,9532,9533,9449,0,5,184,186,6,9358,9373,9374,9359,43,9532,9452,9451,9533,0,184,16,30,186,9373,9256,9255,9374,43,9488,9535,9534,9487,0,49,1069,719,0,9364,9375,9376,9365,43,9535,9486,9481,9534,0,1069,16,5,719,9375,9315,9313,9376,43,9487,9534,9532,9448,0,30,49,1070,6,9365,9376,9373,9358,43,9534,9481,9452,9532,0,49,16,5,1070,9376,9313,9256,9373,43,9486,9535,9536,9498,0,6,50,675,5,9315,9375,9377,9328,43,9535,9488,9500,9536,0,50,30,16,675,9375,9364,9368,9377,43,9449,9533,9537,9503,0,1071,1074,1073,1072,9359,9374,9378,9371,43,9533,9451,9501,9537,0,1074,5,16,1073,9374,9255,9332,9378,43,9523,9538,9537,9501,0,175,1075,0,5,9349,9379,9378,9332,43,9538,9522,9503,9537,0,1075,1076,6,0,9379,9372,9371,9378,43,8969,8970,9539,9398,0,5,1078,1077,6,8870,8960,9380,9284,43,8970,9491,9489,9539,0,1078,1043,50,1077,8960,8897,9321,9380,43,9462,9543,9540,9401,0,1023,1080,1079,1024,9285,9381,9382,9286,43,9543,9494,9490,9540,0,1080,1044,1027,1079,9381,9322,9323,9382,43,9398,9539,9543,9462,0,1022,1081,1080,1023,9284,9380,9381,9285,43,9539,9489,9494,9543,0,1081,1025,1044,1080,9380,9321,9322,9381,43,9495,9544,9540,9490,0,1045,1082,952,162,9324,9383,9382,9323,43,9544,9470,9401,9540,0,1082,186,6,952,9383,9294,9286,9382,43,9492,9541,9544,9495,0,182,1083,1082,1045,9325,9384,9383,9324,43,9541,9425,9470,9544,0,1083,30,186,1082,9384,9295,9294,9383,43,9399,9542,9546,9400,0,6,1084,49,30,9231,9385,9386,9232,43,9542,9493,9497,9546,0,1084,5,16,49,9385,9327,9326,9386,43,9521,9547,9541,9492,0,1063,1085,91,181,9346,9387,9384,9325,43,9547,9512,9425,9541,0,1085,1086,5,91,9387,9337,9295,9384,43,9493,9542,9547,9521,0,50,1087,1085,1063,9327,9385,9387,9346,43,9542,9399,9512,9547,0,1087,6,1086,1085,9385,9231,9337,9387,43,9422,9565,9388,9004,0,1039,1089,1088,1038,9297,9388,8968,8866,43,9565,9413,9384,9388,0,1089,1003,1002,1088,9388,9228,8789,8968,43,9438,9561,9560,9437,0,49,1090,719,1061,9247,9389,9390,9252,43,9561,9434,9433,9560,0,1090,16,5,719,9389,9360,9363,9390,43,9439,9562,9561,9438,0,1009,1092,1091,50,9246,9391,9389,9247,43,9562,9436,9434,9561,0,1092,16,30,1091,9391,9366,9360,9389,43,9444,9563,9564,9445,0,5,44,163,6,9253,9392,9393,9299,43,9563,9447,9446,9564,0,44,16,30,163,9392,9354,9357,9393,43,9447,9563,9560,9433,0,30,49,0,6,9354,9392,9390,9363,43,9563,9444,9437,9560,0,49,16,5,0,9392,9253,9252,9390,43,9417,9573,9572,9411,0,1093,1096,1095,1094,9264,9394,9395,9270,43,9573,9418,9412,9572,0,1096,1097,6,1095,9394,9259,9317,9395,43,9458,9574,9573,9417,0,1098,1099,1096,1093,9263,9396,9394,9264,43,9574,9455,9418,9573,0,1099,1100,1097,1096,9396,9260,9259,9394,43,9415,9575,9574,9458,0,49,1066,1099,1098,9266,9397,9396,9263,43,9575,9416,9455,9574,0,1066,30,1100,1099,9397,9333,9260,9396,43,9411,9572,9571,9483,0,1094,1101,1069,737,9270,9395,9398,9319,43,9572,9412,9484,9571,0,1101,5,16,1069,9395,9317,9318,9398,43,9496,9566,9571,9484,0,1102,1104,1103,16,9330,9399,9398,9318,43,9566,9497,9483,9571,0,1104,1106,1105,1103,9399,9326,9319,9398,43,9432,9567,9568,9397,0,711,740,741,712,9234,9400,9401,9235,43,9567,9504,9505,9568,0,740,27,28,741,9400,9402,9403,9401,43,9397,9568,9562,9439,0,6,50,44,5,9235,9401,9391,9246,43,9568,9505,9436,9562,0,50,30,16,44,9401,9403,9366,9391,43,9441,9569,9567,9432,0,714,742,0,6,9248,9404,9400,9234,43,9569,9507,9504,9567,0,742,22,5,0,9404,9405,9402,9400,43,9400,9570,9569,9441,0,30,49,742,714,9232,9406,9404,9248,43,9570,9506,9507,9569,0,49,16,22,742,9406,9407,9405,9404,43,9517,9576,9565,9422,0,1107,53,0,5,9345,9408,9388,9297,43,9576,9518,9413,9565,0,53,50,6,0,9408,9369,9228,9388,43,9445,9564,9576,9517,0,16,182,53,1107,9299,9393,9408,9345,43,9564,9446,9518,9576,0,182,30,50,53,9393,9357,9369,9408,43,9525,9646,9575,9415,0,44,53,0,5,9353,9409,9397,9266,43,9646,9620,9416,9575,0,53,50,6,0,9409,9347,9333,9397,43,9546,9577,9570,9400,0,719,743,744,0,9386,9410,9406,9232,43,9577,9545,9506,9570,0,743,12,13,744,9410,9411,9407,9406,43,9497,9566,9577,9546,0,5,44,745,719,9326,9399,9410,9386,43,9566,9496,9545,9577,0,44,16,12,745,9399,9330,9411,9410,43,9584,9579,9578,9585,0,44,16,30,50,9412,9238,9250,9413,43,9585,9578,9581,9586,0,44,16,30,50,9413,9250,9245,9414,43,9586,9581,9580,9587,0,44,16,30,50,9414,9245,9244,9415,43,9160,9389,9589,9582,0,44,47,51,50,8997,8872,9281,9416,43,9582,9589,9590,9583,0,0,719,1069,161,9416,9281,9280,9417,43,9593,9592,9597,9596,0,6,5,16,30,9418,9419,9277,9341,43,9390,9591,9598,9391,0,6,5,16,30,9002,9420,9272,8841,43,9591,9593,9596,9598,0,6,5,16,30,9420,9418,9341,9272,43,9580,9595,9594,9587,0,6,30,16,5,9244,9242,9421,9415,43,9421,9592,9594,9595,0,6,5,16,30,9241,9419,9421,9242,43,9421,9460,9597,9592,0,6,5,16,30,9241,9274,9277,9419,43,9420,9579,9584,9600,0,6,5,16,30,9239,9238,9412,9422,43,9420,9600,9601,9513,0,6,5,16,30,9239,9422,9423,9336,43,9426,9513,9601,9602,0,6,5,16,30,9293,9336,9423,9424,43,9426,9602,9588,9471,0,6,30,16,5,9293,9424,9425,9291,43,9419,9471,9588,9599,0,6,5,16,30,9283,9291,9425,9426,43,9419,9599,9583,9590,0,6,30,16,5,9283,9426,9417,9280,43,9545,9603,9604,9506,0,719,986,987,0,9411,9427,9428,9407,43,9603,9548,9549,9604,0,986,697,699,987,9427,9429,9430,9428,43,9496,9605,9603,9545,0,5,988,986,719,9330,9431,9427,9411,43,9605,9550,9548,9603,0,988,700,697,986,9431,9432,9429,9427,43,9500,9606,9607,9536,0,30,989,990,50,9368,9433,9434,9377,43,9606,9551,9552,9607,0,989,177,702,990,9433,9435,9436,9434,43,9536,9607,9608,9498,0,50,990,991,6,9377,9434,9437,9328,43,9607,9552,9553,9608,0,990,702,703,991,9434,9436,9438,9437,43,9530,9609,9606,9500,0,16,992,993,725,9367,9439,9433,9368,43,9609,9554,9551,9606,0,992,15,705,993,9439,9440,9435,9433,43,9436,9610,9609,9530,0,725,994,995,30,9366,9441,9439,9367,43,9610,9555,9554,9609,0,994,705,706,995,9441,9442,9440,9439,43,9506,9604,9611,9507,0,30,996,997,714,9407,9428,9443,9405,43,9604,9549,9556,9611,0,996,177,708,997,9428,9430,9444,9443,43,9507,9611,9612,9504,0,714,997,991,6,9405,9443,9445,9402,43,9611,9556,9557,9612,0,997,708,703,991,9443,9444,9446,9445,43,9505,9613,9610,9436,0,30,989,991,6,9403,9447,9441,9366,43,9613,9558,9555,9610,0,989,177,703,991,9447,9448,9442,9441,43,9504,9612,9613,9505,0,711,998,999,712,9402,9445,9447,9403,43,9612,9557,9558,9613,0,998,709,710,999,9445,9446,9448,9447,43,9499,9614,9605,9496,0,30,989,991,6,9329,9449,9431,9330,43,9614,9559,9550,9605,0,989,177,703,991,9449,9450,9432,9431,43,9498,9608,9614,9499,0,5,988,1000,6,9328,9437,9449,9329,43,9608,9553,9559,9614,0,988,700,7,1000,9437,9438,9450,9449,43,9620,9625,9626,9524,0,1108,1111,1110,1109,9347,9451,9452,9348,43,9621,9627,9628,9622,0,1112,1115,1114,1113,9350,9453,9454,9351,43,9623,9629,9627,9621,0,1116,1117,1115,1112,9352,9455,9453,9350,43,9723,9724,9629,9623,0,1118,1119,1117,1116,8931,9039,9455,9352,43,9622,9628,9630,9525,0,1113,1114,1121,1120,9351,9454,9456,9353,43,9414,9522,9631,9632,0,1122,1125,1124,1123,9229,9372,9457,9458,43,9414,9632,9725,8993,0,1122,1123,1127,1126,9229,9458,9043,8790,43,9624,9644,9538,9523,0,1128,1131,1130,1129,9459,9460,9379,9349,43,9644,9631,9522,9538,0,1131,1124,1125,1130,9460,9457,9372,9379,43,9630,9647,9646,9525,0,1121,1133,1132,1120,9456,9461,9409,9353,43,9647,9625,9620,9646,0,1133,1111,1108,1132,9461,9451,9347,9409,43,9664,9672,9673,9660,0,1134,1137,1136,1135,9462,9463,9464,9465,43,9672,9665,9669,9673,0,1137,1139,1138,1136,9463,9466,9467,9464,43,9658,9674,9672,9664,0,1140,1141,1137,1134,9468,9469,9463,9462,43,9674,9670,9665,9672,0,1141,1142,1139,1137,9469,9470,9466,9463,43,9662,9675,9676,9663,0,1143,1146,1145,1144,9471,9472,9473,9474,43,9675,9667,9666,9676,0,1146,1148,1147,1145,9472,9475,9476,9473,43,9663,9676,9677,9661,0,1144,1145,1150,1149,9474,9473,9477,9478,43,9676,9666,9668,9677,0,1145,1147,1151,1150,9473,9476,9479,9477,43,9660,9673,9678,9659,0,1135,1136,1153,1152,9465,9464,9480,9481,43,9673,9669,9720,9678,0,1136,1138,1154,1153,9464,9467,9482,9480,43,9661,9677,9679,9657,0,1149,1150,1156,1155,9478,9477,9483,9484,43,9677,9668,9671,9679,0,1150,1151,1157,1156,9477,9479,9485,9483,43,9657,9679,9680,9726,0,1155,1156,1159,1158,9484,9483,9072,9071,43,9679,9671,9727,9680,0,1156,1157,1160,1159,9483,9485,9073,9072,43,9633,9635,9634,9685,0,1161,1164,1163,1162,9486,9487,9076,9075,43,9615,9642,9635,9633,0,1165,1166,1164,1161,9488,9489,9487,9486,43,9617,9638,9639,9686,0,1167,1170,1169,1168,9490,9491,9492,9493,43,9722,9297,9636,9619,0,1171,1174,1173,1172,9084,9087,9494,9495,43,9619,9636,9637,9618,0,1172,1173,1176,1175,9495,9494,9496,9497,43,9618,9637,9638,9617,0,1175,1176,1170,1167,9497,9496,9491,9490,43,9616,9641,9640,9687,0,1177,1180,1179,1178,9498,9499,9500,9501,43,9689,9645,9642,9615,0,1181,1182,1166,1165,9502,9503,9489,9488,43,9688,9643,9645,9689,0,1183,1184,1182,1181,9504,9505,9503,9502,43,9690,9648,9641,9616,0,1185,1186,1180,1177,9506,9507,9499,9498,43,9686,9639,9648,9690,0,1168,1169,1186,1185,9493,9492,9507,9506,43,9625,9691,9721,9626,0,1111,1188,1187,1110,9451,9508,9509,9452,43,9627,9692,9693,9628,0,1115,1190,1189,1114,9453,9510,9511,9454,43,9629,9694,9692,9627,0,1117,1191,1190,1115,9455,9512,9510,9453,43,9724,9728,9694,9629,0,1119,1192,1191,1117,9039,9105,9512,9455,43,9628,9693,9699,9630,0,1114,1189,1193,1121,9454,9511,9513,9456,43,9631,9695,9696,9632,0,1124,1195,1194,1123,9457,9514,9515,9458,43,9632,9696,9729,9725,0,1123,1194,1196,1127,9458,9515,9109,9043,43,9698,9644,9624,9700,0,1197,1131,1128,1198,9516,9460,9459,9517,43,9695,9631,9644,9698,0,1195,1124,1131,1197,9514,9457,9460,9516,43,9697,9647,9630,9699,0,1199,1133,1121,1193,9518,9461,9456,9513,43,9691,9625,9647,9697,0,1188,1111,1133,1199,9508,9451,9461,9518,43,9691,9701,9710,9721,0,1188,1201,1200,1187,9508,9519,9520,9509,43,9701,9616,9687,9710,0,1201,1177,1178,1200,9519,9498,9501,9520,43,9692,9702,9703,9693,0,1190,1203,1202,1189,9510,9521,9522,9511,43,9702,9618,9617,9703,0,1203,1175,1167,1202,9521,9497,9490,9522,43,9694,9704,9702,9692,0,1191,1204,1203,1190,9512,9523,9521,9510,43,9704,9619,9618,9702,0,1204,1172,1175,1203,9523,9495,9497,9521,43,9728,9730,9704,9694,0,1192,1205,1204,1191,9105,9118,9523,9512,43,9730,9722,9619,9704,0,1205,1171,1172,1204,9118,9084,9495,9523,43,9693,9703,9709,9699,0,1189,1202,1206,1193,9511,9522,9524,9513,43,9703,9617,9686,9709,0,1202,1167,1168,1206,9522,9490,9493,9524,43,9695,9705,9706,9696,0,1195,1208,1207,1194,9514,9525,9526,9515,43,9705,9615,9633,9706,0,1208,1165,1161,1207,9525,9488,9486,9526,43,9696,9706,9731,9729,0,1194,1207,1209,1196,9515,9526,9122,9109,43,9706,9633,9685,9731,0,1207,1161,1162,1209,9526,9486,9075,9122,43,9689,9708,9711,9688,0,1181,1211,1210,1183,9502,9527,9528,9504,43,9708,9698,9700,9711,0,1211,1197,1198,1210,9527,9516,9517,9528,43,9615,9705,9708,9689,0,1165,1208,1211,1181,9488,9525,9527,9502,43,9705,9695,9698,9708,0,1208,1195,1197,1211,9525,9514,9516,9527,43,9690,9707,9709,9686,0,1185,1212,1206,1168,9506,9529,9524,9493,43,9707,9697,9699,9709,0,1212,1199,1193,1206,9529,9518,9513,9524,43,9616,9701,9707,9690,0,1177,1201,1212,1185,9498,9519,9529,9506,43,9701,9691,9697,9707,0,1201,1188,1199,1212,9519,9508,9518,9529,43,9683,9714,9716,9684,0,1213,1216,1215,1214,9530,9531,9532,9533,43,9714,9658,9664,9716,0,1216,1140,1134,1215,9531,9468,9462,9532,43,9684,9716,9717,9651,0,1214,1215,1218,1217,9533,9532,9534,9535,43,9716,9664,9660,9717,0,1215,1134,1135,1218,9532,9462,9465,9534,43,9651,9717,9713,9652,0,1217,1218,1220,1219,9535,9534,9536,9537,43,9717,9660,9659,9713,0,1218,1135,1152,1220,9534,9465,9481,9536,43,9650,9719,9718,9649,0,1221,1224,1223,1222,9538,9539,9540,9541,43,9719,9662,9663,9718,0,1224,1143,1144,1223,9539,9471,9474,9540,43,9649,9718,9715,9682,0,1222,1223,1226,1225,9541,9540,9542,9543,43,9718,9663,9661,9715,0,1223,1144,1149,1226,9540,9474,9478,9542,43,9682,9715,9712,9681,0,1225,1226,1228,1227,9543,9542,9544,9545,43,9715,9661,9657,9712,0,1226,1149,1155,1228,9542,9478,9484,9544,43,9681,9712,9732,9298,0,1227,1228,1230,1229,9545,9544,9143,9142,43,9712,9657,9726,9732,0,1228,1155,1158,1230,9544,9484,9071,9143,43,9626,9624,9523,9524,0,1231,1128,1129,1232,9452,9459,9349,9348,43,9678,9675,9662,9659,0,1233,1146,1143,1234,9480,9472,9471,9481,43,9720,9667,9675,9678,0,1235,1148,1146,1233,9482,9475,9472,9480,43,9640,9643,9688,9687,0,1236,1184,1183,1237,9500,9505,9504,9501,43,9721,9700,9624,9626,0,1238,1198,1128,1231,9509,9517,9459,9452,43,9710,9711,9700,9721,0,1239,1210,1198,1238,9520,9528,9517,9509,43,9687,9688,9711,9710,0,1237,1183,1210,1239,9501,9504,9528,9520,43,9713,9719,9650,9652,0,1240,1224,1221,1241,9536,9539,9538,9537,43,9659,9662,9719,9713,0,1234,1143,1224,1240,9481,9471,9539,9536,43,9370,9745,9733,9369,0,5,92,1242,6,9546,9547,9548,9549,43,9745,9746,9734,9733,0,92,674,1243,1242,9547,9550,9551,9548,43,9746,9371,9372,9734,0,674,16,30,1243,9550,9552,9553,9551,43,9360,9737,9743,9363,0,6,1242,1244,5,9554,9555,9556,9557,43,9737,9738,9744,9743,0,1242,1243,674,1244,9555,9558,9559,9556,43,9738,9381,9378,9744,0,1243,30,16,674,9558,9560,9561,9559,43,9741,9359,9365,9749,0,86,6,5,1245,9562,9563,9564,9565,43,9749,9750,9742,9741,0,1245,674,681,86,9565,9566,9567,9562,43,9750,9376,9382,9742,0,674,16,30,681,9566,9568,9569,9567,43,9368,9755,9745,9370,0,6,1246,92,5,9570,9571,9547,9546,43,9755,9756,9746,9745,0,1246,1247,674,92,9571,9572,9550,9547,43,9756,9373,9371,9746,0,1247,30,16,674,9572,9573,9552,9550,43,9364,9753,9751,9367,0,6,86,1248,5,9574,9575,9576,9577,43,9753,9754,9752,9751,0,86,681,1249,1248,9575,9578,9579,9576,43,9754,9377,9374,9752,0,681,30,16,1249,9578,9580,9581,9579,43,9366,9747,9749,9365,0,5,92,1250,6,9582,9583,9565,9564,43,9747,9748,9750,9749,0,92,674,681,1250,9583,9584,9566,9565,43,9748,9375,9376,9750,0,674,16,30,681,9584,9585,9568,9566,43,9362,9735,9739,9361,0,5,92,86,6,9586,9587,9588,9589,43,9735,9736,9740,9739,0,92,674,681,86,9587,9590,9591,9588,43,9736,9379,9380,9740,0,674,16,30,681,9590,9592,9593,9591,43,9369,9733,9735,9362,0,5,92,86,6,9549,9548,9587,9586,43,9733,9734,9736,9735,0,92,674,681,86,9548,9551,9590,9587,43,9734,9372,9379,9736,0,674,16,30,681,9551,9553,9592,9590,43,9361,9739,9737,9360,0,5,92,86,6,9589,9588,9555,9554,43,9739,9740,9738,9737,0,92,674,681,86,9588,9591,9558,9555,43,9740,9380,9381,9738,0,674,16,30,681,9591,9593,9560,9558,43,9367,9751,9747,9366,0,5,92,86,6,9577,9576,9583,9582,43,9751,9752,9748,9747,0,92,674,681,86,9576,9579,9584,9583,43,9752,9374,9375,9748,0,674,16,30,681,9579,9581,9585,9584,43,9359,9741,9755,9368,0,6,86,1251,5,9563,9562,9571,9570,43,9741,9742,9756,9755,0,86,681,1252,1251,9562,9567,9572,9571,43,9742,9382,9373,9756,0,681,30,16,1252,9567,9569,9573,9572,43,9363,9743,9753,9364,0,6,1253,92,5,9557,9556,9575,9574,43,9743,9744,9754,9753,0,1253,681,674,92,9556,9559,9578,9575,43,9744,9378,9377,9754,0,681,30,16,674,9559,9561,9580,9578,43,9378,9763,9759,9377,0,6,1254,1248,5,9561,9594,9595,9580,43,9382,9762,9766,9373,0,6,1242,1255,5,9569,9596,9597,9573,43,9374,9764,9765,9375,0,5,92,86,6,9581,9598,9599,9585,43,9380,9757,9761,9381,0,5,1245,1250,6,9593,9600,9601,9560,43,9372,9767,9760,9379,0,5,92,86,6,9553,9602,9603,9592,43,9379,9760,9757,9380,0,5,92,1250,6,9592,9603,9600,9593,43,9375,9765,9758,9376,0,5,92,86,6,9585,9599,9604,9568,43,9377,9759,9764,9374,0,6,1254,92,5,9580,9595,9598,9581,43,9373,9766,9768,9371,0,6,1256,92,5,9573,9597,9605,9552,43,9376,9758,9762,9382,0,5,92,86,6,9568,9604,9596,9569,43,9381,9761,9763,9378,0,6,1257,1248,5,9560,9601,9594,9561,43,9371,9768,9767,9372,0,5,92,1242,6,9552,9605,9602,9553,43,9777,9359,9368,9791,0,1258,16,30,681,9606,9563,9570,9607,43,9791,9792,9778,9777,0,681,1250,92,1258,9607,9608,9609,9606,43,9792,9550,9559,9778,0,1250,6,5,92,9608,9432,9450,9609,43,9359,9777,9769,9365,0,6,1259,153,30,9563,9606,9610,9564,43,9777,9778,9770,9769,0,1259,677,151,153,9606,9609,9611,9610,43,9778,9559,9553,9770,0,677,5,16,151,9609,9450,9438,9611,43,9552,9784,9770,9553,0,5,92,86,6,9436,9612,9611,9438,43,9784,9783,9769,9770,0,92,674,681,86,9612,9613,9610,9611,43,9783,9366,9365,9769,0,674,16,30,681,9613,9582,9564,9610,43,9551,9772,9784,9552,0,5,92,86,6,9435,9614,9612,9436,43,9772,9771,9783,9784,0,92,674,681,86,9614,9615,9613,9612,43,9771,9367,9366,9783,0,674,16,30,681,9615,9577,9582,9613,43,9554,9790,9772,9551,0,5,92,86,6,9440,9616,9614,9435,43,9790,9789,9771,9772,0,92,1260,681,86,9616,9617,9615,9614,43,9789,9364,9367,9771,0,1260,16,30,681,9617,9574,9577,9615,43,9555,9780,9790,9554,0,5,1248,86,6,9442,9618,9616,9440,43,9780,9779,9789,9790,0,1248,1258,1261,86,9618,9619,9617,9616,43,9779,9363,9364,9789,0,1258,16,30,1261,9619,9557,9574,9617,43,9558,9774,9780,9555,0,5,92,1254,6,9448,9620,9618,9442,43,9774,9773,9779,9780,0,92,1263,1262,1254,9620,9621,9619,9618,43,9773,9360,9363,9779,0,1263,16,30,1262,9621,9554,9557,9619,43,9557,9776,9774,9558,0,5,92,86,6,9446,9622,9620,9448,43,9776,9775,9773,9774,0,92,1265,1264,86,9622,9623,9621,9620,43,9775,9361,9360,9773,0,1265,16,30,1264,9623,9589,9554,9621,43,9556,9782,9776,9557,0,5,1245,86,6,9444,9624,9622,9446,43,9782,9781,9775,9776,0,1245,1265,1264,86,9624,9625,9623,9622,43,9781,9362,9361,9775,0,1265,16,30,1264,9625,9586,9589,9623,43,9549,9786,9782,9556,0,5,92,1250,6,9430,9626,9624,9444,43,9786,9785,9781,9782,0,92,1265,1264,1250,9626,9627,9625,9624,43,9785,9369,9362,9781,0,1265,16,30,1264,9627,9549,9586,9625,43,9548,9788,9786,9549,0,5,92,1246,6,9429,9628,9626,9430,43,9788,9787,9785,9786,0,92,674,1247,1246,9628,9629,9627,9626,43,9787,9370,9369,9785,0,674,16,30,1247,9629,9546,9549,9627,43,9550,9792,9788,9548,0,5,1255,86,6,9432,9608,9628,9429,43,9792,9791,9787,9788,0,1255,1258,681,86,9608,9607,9629,9628,43,9791,9368,9370,9787,0,1258,16,30,681,9607,9570,9546,9629,43,9219,9799,9797,9226,0,1180,1266,1267,1186,9093,9630,9631,9099,43,9226,9797,9793,9217,0,1186,1267,1268,1169,9099,9631,9632,9082,43,9223,9794,9802,9221,0,1182,1269,1270,1184,9095,9633,9634,9097,43,9220,9798,9794,9223,0,1166,1271,1269,1182,9079,9635,9633,9095,43,9218,9800,9799,9219,0,1179,1272,1266,1180,9092,9636,9630,9093,43,9216,9801,9795,9215,0,1170,1273,1274,1176,9083,9637,9638,9089,43,9215,9795,9796,9214,0,1176,1274,1275,1173,9089,9638,9639,9086,43,9214,9796,9816,9297,0,1173,1275,1276,1174,9086,9639,9640,9087,43,9217,9793,9801,9216,0,1169,1268,1273,1170,9082,9632,9637,9083,43,9213,9803,9798,9220,0,1164,1277,1271,1166,9077,9641,9635,9079,43,9634,9815,9803,9213,0,1163,1278,1277,1164,9076,9642,9641,9077,43,9221,9802,9800,9218,0,1184,1270,1279,1236,9097,9634,9636,9092,43,9648,9808,9810,9641,0,1186,1267,1266,1180,9507,9643,9644,9499,43,9639,9804,9808,9648,0,1169,1268,1267,1186,9492,9645,9643,9507,43,9643,9813,9805,9645,0,1184,1270,1269,1182,9505,9646,9647,9503,43,9645,9805,9809,9642,0,1182,1269,1271,1166,9503,9647,9648,9489,43,9641,9810,9811,9640,0,1180,1266,1272,1179,9499,9644,9649,9500,43,9637,9806,9812,9638,0,1176,1280,1273,1170,9496,9650,9651,9491,43,9636,9807,9806,9637,0,1173,1275,1274,1176,9494,9652,9650,9496,43,9297,9816,9807,9636,0,1174,1281,1275,1173,9087,9640,9652,9494,43,9638,9812,9804,9639,0,1170,1273,1268,1169,9491,9651,9645,9492,43,9642,9809,9814,9635,0,1166,1271,1277,1164,9489,9648,9653,9487,43,9635,9814,9815,9634,0,1164,1277,1278,1163,9487,9653,9642,9076,43,9640,9811,9813,9643,0,1236,1279,1270,1184,9500,9649,9646,9505,43,9799,9823,9821,9797,0,1266,1282,1283,1267,9630,9654,9655,9631,43,9823,9229,9260,9821,0,1282,1217,1214,1283,9654,9130,9127,9655,43,9797,9821,9817,9793,0,1267,1283,1284,1268,9631,9655,9656,9632,43,9821,9260,9259,9817,0,1283,1214,1213,1284,9655,9127,9126,9656,43,9794,9818,9826,9802,0,1269,1285,1286,1270,9633,9657,9658,9634,43,9818,9227,9228,9826,0,1285,1222,1221,1286,9657,9135,9134,9658,43,9798,9822,9818,9794,0,1271,1287,1285,1269,9635,9659,9657,9633,43,9822,9258,9227,9818,0,1287,1225,1222,1285,9659,9138,9135,9657,43,9800,9824,9823,9799,0,1272,1288,1282,1266,9636,9660,9654,9630,43,9824,9230,9229,9823,0,1288,1219,1217,1282,9660,9132,9130,9654,43,9801,9825,9819,9795,0,1273,1289,1290,1274,9637,9661,9662,9638,43,9825,9231,9232,9819,0,1289,1291,1292,1290,9661,9663,9664,9662,43,9795,9819,9820,9796,0,1274,1290,1293,1275,9638,9662,9665,9639,43,9819,9232,9233,9820,0,1290,1292,1294,1293,9662,9664,9666,9665,43,9796,9820,9840,9816,0,1275,1293,1295,1276,9639,9665,9667,9640,43,9820,9233,9656,9840,0,1293,1294,1296,1295,9665,9666,9668,9667,43,9793,9817,9825,9801,0,1268,1284,1289,1273,9632,9656,9661,9637,43,9817,9259,9231,9825,0,1284,1213,1291,1289,9656,9126,9663,9661,43,9803,9827,9822,9798,0,1277,1297,1287,1271,9641,9669,9659,9635,43,9827,9257,9258,9822,0,1297,1227,1225,1287,9669,9140,9138,9659,43,9815,9839,9827,9803,0,1278,1298,1297,1277,9642,9670,9669,9641,43,9839,9298,9257,9827,0,1298,1229,1227,1297,9670,9142,9140,9669,43,9802,9826,9824,9800,0,1270,1286,1299,1279,9634,9658,9660,9636,43,9826,9228,9230,9824,0,1286,1221,1241,1299,9658,9134,9132,9660,43,9808,9832,9834,9810,0,1267,1283,1282,1266,9643,9671,9672,9644,43,9832,9684,9651,9834,0,1283,1214,1217,1282,9671,9533,9535,9672,43,9804,9828,9832,9808,0,1268,1284,1283,1267,9645,9673,9671,9643,43,9828,9683,9684,9832,0,1284,1213,1214,1283,9673,9530,9533,9671,43,9813,9837,9829,9805,0,1270,1286,1285,1269,9646,9674,9675,9647,43,9837,9650,9649,9829,0,1286,1221,1222,1285,9674,9538,9541,9675,43,9805,9829,9833,9809,0,1269,1285,1287,1271,9647,9675,9676,9648,43,9829,9649,9682,9833,0,1285,1222,1225,1287,9675,9541,9543,9676,43,9810,9834,9835,9811,0,1266,1282,1288,1272,9644,9672,9677,9649,43,9834,9651,9652,9835,0,1282,1217,1219,1288,9672,9535,9537,9677,43,9806,9830,9836,9812,0,1280,1290,1289,1273,9650,9678,9679,9651,43,9830,9654,9653,9836,0,1290,1292,1291,1289,9678,9680,9681,9679,43,9807,9831,9830,9806,0,1275,1293,1290,1274,9652,9682,9678,9650,43,9831,9655,9654,9830,0,1293,1294,1292,1290,9682,9683,9680,9678,43,9816,9840,9831,9807,0,1281,1295,1293,1275,9640,9667,9682,9652,43,9840,9656,9655,9831,0,1295,1296,1294,1293,9667,9668,9683,9682,43,9812,9836,9828,9804,0,1273,1289,1284,1268,9651,9679,9673,9645,43,9836,9653,9683,9828,0,1289,1291,1213,1284,9679,9681,9530,9673,43,9809,9833,9838,9814,0,1271,1287,1300,1277,9648,9676,9684,9653,43,9833,9682,9681,9838,0,1287,1225,1227,1300,9676,9543,9545,9684,43,9814,9838,9839,9815,0,1277,1300,1298,1278,9653,9684,9670,9642,43,9838,9681,9298,9839,0,1300,1227,1229,1298,9684,9545,9142,9670,43,9811,9835,9837,9813,0,1279,1301,1286,1270,9649,9677,9674,9646,43,9835,9652,9650,9837,0,1301,1241,1221,1286,9677,9537,9538,9674,43,9846,9844,9884,9849,0,6,5,16,30,9685,9686,9687,9688,43,9849,9853,9852,9846,0,5,1009,50,6,9688,9689,9690,9685,43,9860,9851,9856,9862,0,6,30,16,5,9691,9692,9693,9694,43,9851,9860,9846,9852,0,6,30,16,5,9692,9691,9685,9690,43,9841,10999,9887,9842,0,1002,1014,1013,1003,9695,9696,9697,9698,43,9861,9854,9855,9886,0,1015,16,30,50,9699,9700,9701,9702,43,9844,9846,9860,9861,0,6,5,16,30,9686,9685,9691,9699,43,11008,9841,9842,9864,0,1036,1001,1004,1037,9703,9695,9698,9704,43,9864,9845,12193,11008,0,1037,1039,1038,1036,9704,9705,9706,9703,43,9854,9862,9863,9855,0,6,5,16,30,9700,9694,9707,9701,43,9856,9857,9863,9862,0,6,5,16,30,9693,9708,9707,9694,43,9854,9861,9860,9862,0,6,5,16,30,9700,9699,9691,9694,43,9887,9885,9865,9842,0,0,1057,1056,6,9697,9709,9710,9698,43,9885,9886,9855,9865,0,1057,49,30,1056,9709,9702,9701,9710,43,9863,9868,9865,9855,0,1060,1062,1061,5,9707,9711,9710,9701,43,9868,9864,9842,9865,0,1062,50,6,1061,9711,9704,9698,9710,43,9857,9866,9868,9863,0,16,176,1062,1060,9708,9712,9711,9707,43,9866,9845,9864,9868,0,176,30,50,1062,9712,9705,9704,9711,43,9845,9874,12194,12193,0,1039,1089,1088,1038,9705,9713,9714,9706,43,11007,12194,9874,9843,0,1002,1088,1089,1003,9715,9714,9713,9716,43,9852,9870,9869,9851,0,49,1090,719,1061,9690,9717,9718,9692,43,9870,9848,9847,9869,0,1090,16,5,719,9717,9719,9720,9718,43,9853,9871,9870,9852,0,1009,1092,1091,50,9689,9721,9717,9690,43,9871,9850,9848,9870,0,1092,16,30,1091,9721,9722,9719,9717,43,9856,9872,9873,9857,0,5,44,163,6,9693,9723,9724,9708,43,9872,9859,9858,9873,0,44,16,30,163,9723,9725,9726,9724,43,9859,9872,9869,9847,0,30,49,0,6,9725,9723,9718,9720,43,9872,9856,9851,9869,0,49,16,5,0,9723,9693,9692,9718,43,9866,9875,9874,9845,0,1107,53,0,5,9712,9727,9713,9705,43,9875,9867,9843,9874,0,53,50,6,0,9727,9728,9716,9713,43,9857,9873,9875,9866,0,16,182,53,1107,9708,9724,9727,9712,43,9873,9858,9867,9875,0,182,30,50,53,9724,9726,9728,9727,43,9879,9877,9882,9880,0,6,5,16,30,9729,9730,9731,9732,43,12192,9879,9880,12190,0,6,5,16,30,9733,9729,9732,9734,43,9878,9876,9883,9881,0,6,5,16,30,9735,9736,9737,9738,43,9877,9878,9881,9882,0,6,5,16,30,9730,9735,9738,9731,43,9882,9881,9886,9885,0,6,5,16,30,9731,9738,9702,9709,43,12190,9880,9887,10999,0,6,5,16,30,9734,9732,9697,9696,43,9880,9882,9885,9887,0,6,5,16,30,9732,9731,9709,9697,43,9844,9881,9883,9884,0,6,5,16,30,9686,9738,9737,9687,43,9844,9861,9886,9881,0,6,5,16,30,9686,9699,9702,9738,43,9879,9888,9889,9877,0,5,91,87,6,9729,9739,9740,9730,43,12192,12191,9888,9879,0,5,91,87,6,9733,9741,9739,9729,43,9878,9891,9890,9876,0,5,91,87,6,9735,9742,9743,9736,43,9877,9889,9891,9878,0,5,91,87,6,9730,9740,9742,9735,43,9894,9900,9902,9893,0,53,1302,1303,1304,9744,9745,9746,9747,43,9895,9899,9900,9894,0,1305,1306,1307,53,9748,9749,9745,9744,43,9892,9901,9899,9895,0,1308,1309,1310,1305,9750,9751,9749,9748,43,9921,9911,9913,9918,0,1308,1309,1310,1305,9752,9753,9754,9755,43,9918,9913,9912,9919,0,1305,1306,1307,53,9755,9754,9756,9757,43,9919,9912,9910,9920,0,53,1302,1303,1304,9757,9756,9758,9759,43,9924,9930,9932,9923,0,53,1302,1303,1304,9760,9761,9762,9763,43,9925,9929,9930,9924,0,1305,1306,1307,53,9764,9765,9761,9760,43,9922,9931,9929,9925,0,1308,1309,1310,1305,9766,9767,9765,9764,43,9951,9941,9943,9948,0,1308,1309,1310,1305,9768,9769,9770,9771,43,9948,9943,9942,9949,0,1305,1306,1307,53,9771,9770,9772,9773,43,9949,9942,9940,9950,0,53,1302,1303,1304,9773,9772,9774,9775,43,9900,9953,9955,9902,0,1302,1311,1312,1303,9745,9776,9777,9746,43,9899,9952,9953,9900,0,1306,1313,1311,1307,9749,9778,9776,9745,43,9901,9954,9952,9899,0,1309,1314,1313,1310,9751,9779,9778,9749,43,9897,9957,9958,9898,0,953,1315,1316,1317,9780,9781,9782,9783,43,9911,9960,9962,9913,0,1309,1318,1319,1310,9753,9784,9785,9754,43,9913,9962,9961,9912,0,1306,1313,1311,1307,9754,9785,9786,9756,43,9912,9961,9959,9910,0,1302,1320,1321,1303,9756,9786,9787,9758,43,9915,9964,9966,9917,0,1069,1322,1323,1324,9788,9789,9790,9791,43,9917,9966,9965,9916,0,1324,1325,1326,953,9791,9790,9792,9793,43,9916,9965,9963,9914,0,953,1327,1328,1317,9793,9792,9794,9795,43,9930,9968,9970,9932,0,1302,1311,1329,1303,9761,9796,9797,9762,43,9929,9967,9968,9930,0,1306,1313,1311,1307,9765,9798,9796,9761,43,9931,9969,9967,9929,0,1309,1318,1319,1310,9767,9799,9798,9765,43,9926,9972,9974,9928,0,953,1326,1316,1317,9800,9801,9802,9803,43,9927,9973,9971,9994,0,1069,1330,1325,1324,9804,9805,9806,9807,43,9941,9976,9978,9943,0,1309,1318,1313,1310,9769,9808,9809,9770,43,9943,9978,9977,9942,0,1306,1313,1311,1307,9770,9809,9810,9772,43,9942,9977,9975,9940,0,1302,1311,1329,1303,9772,9810,9811,9774,43,9945,9980,9982,9947,0,1069,1330,1325,1324,9812,9813,9814,9815,43,9947,9982,9981,9946,0,1324,1325,1326,953,9815,9814,9816,9817,43,9946,9981,9979,9944,0,953,1315,1331,1317,9817,9816,9818,9819,43,9957,9984,9985,9958,0,1315,1332,1333,1316,9781,9820,9821,9782,43,9984,9904,9905,9985,0,1332,1334,1335,1333,9820,9822,9823,9821,43,9956,9988,9986,9896,0,1325,1336,1337,1324,9824,9825,9826,9827,43,9988,9957,9897,9986,0,1336,1326,953,1337,9825,9781,9780,9826,43,9983,9989,9988,9956,0,1338,1339,1336,1325,9828,9829,9825,9824,43,9989,9984,9957,9988,0,1339,1340,1326,1336,9829,9820,9781,9825,43,9903,9987,9989,9983,0,1341,1342,1339,1338,9830,9831,9829,9828,43,9987,9904,9984,9989,0,1342,1343,1340,1339,9831,9822,9820,9829,43,9964,9991,9993,9966,0,1322,1344,1338,1323,9789,9832,9833,9790,43,9991,9907,9909,9993,0,1344,1345,1346,1338,9832,9834,9835,9833,43,9966,9993,9992,9965,0,1325,1338,1340,1326,9790,9833,9836,9792,43,9993,9909,9908,9992,0,1338,1341,1343,1340,9833,9835,9837,9836,43,9965,9992,9990,9963,0,1327,1347,1348,1328,9792,9836,9838,9794,43,9992,9908,9906,9990,0,1347,1334,1335,1348,9836,9837,9839,9838,43,9971,9972,9926,9994,0,1349,1326,953,1337,9806,9801,9800,9807,43,9972,9996,9998,9974,0,1326,1350,1351,1316,9801,9840,9841,9802,43,9996,9933,9935,9998,0,1350,1334,1335,1351,9840,9842,9843,9841,43,9973,9997,9999,9971,0,1330,1352,1353,1325,9805,9844,9845,9806,43,9997,9934,9995,9999,0,1352,1345,1346,1353,9844,9846,9847,9845,43,9933,9996,9999,9995,0,1343,1340,1339,1342,9842,9840,9845,9847,43,9996,9972,9971,9999,0,1340,1326,1336,1339,9840,9801,9806,9845,43,9980,10001,10003,9982,0,1330,1344,1338,1325,9813,9848,9849,9814,43,10001,9937,9939,10003,0,1344,1345,1346,1338,9848,9850,9851,9849,43,9982,10003,10002,9981,0,1325,1338,1340,1326,9814,9849,9852,9816,43,10003,9939,9938,10002,0,1338,1341,1343,1340,9849,9851,9853,9852,43,9981,10002,10000,9979,0,1315,1354,1348,1331,9816,9852,9854,9818,43,10002,9938,9936,10000,0,1354,1334,1335,1348,9852,9853,9855,9854,43,11193,11009,10011,10010,0,44,16,30,50,9856,9857,9858,9859,43,10011,11009,11186,10006,0,6,5,16,30,9858,9857,9860,9861,43,10012,10013,10021,10020,0,700,1245,86,7,9862,9863,9864,9865,43,10020,10021,10019,10018,0,700,92,86,7,9865,9864,9866,9867,43,10013,10012,10014,10015,0,1250,7,700,92,9863,9862,9868,9869,43,10023,10022,10024,10025,0,674,1355,706,1264,9870,9871,9872,9873,43,10031,10030,10028,10029,0,1265,15,706,681,9874,9875,9876,9877,43,10025,10024,10030,10031,0,1265,15,706,1264,9873,9872,9875,9874,43,10027,10026,10022,10023,0,1265,1355,1356,681,9878,9879,9871,9870,43,10019,10033,10032,10018,0,92,1357,1358,700,9866,9880,9881,9867,43,10033,10017,10016,10032,0,1357,86,7,1358,9880,9882,9883,9881,43,10029,10028,10034,10035,0,6,5,16,30,9877,9876,9884,9885,43,10015,10014,10036,10037,0,6,5,16,30,9869,9868,9886,9887,43,10026,10027,10039,10038,0,6,5,16,30,9879,9878,9888,9889,43,10051,10050,10040,10041,0,6,5,16,30,9890,9891,9892,9893,43,10060,10061,10043,10042,0,6,5,16,30,9894,9895,9896,9897,43,10058,10044,10045,10059,0,92,1357,1358,700,9898,9899,9900,9901,43,10050,10051,10055,10054,0,1265,1355,1356,681,9891,9890,9902,9903,43,10052,10053,10047,10046,0,1265,15,706,1264,9904,9905,9906,9907,43,10046,10047,10049,10048,0,1265,15,706,681,9907,9906,9908,9909,43,10054,10055,10053,10052,0,674,1355,706,1264,9903,9902,9905,9904,43,10062,10063,10061,10060,0,1250,7,700,92,9910,9911,9895,9894,43,10057,10056,10058,10059,0,700,92,86,7,9912,9913,9898,9901,43,10063,10062,10056,10057,0,700,1245,86,7,9911,9910,9913,9912,43,10064,10065,10071,10070,0,700,1245,86,7,9914,9915,9916,9917,43,10070,10071,10069,10068,0,700,92,86,7,9917,9916,9918,9919,43,10065,10064,10066,10067,0,1250,7,700,92,9915,9914,9920,9921,43,10069,10073,10072,10068,0,92,1357,1358,700,9918,9922,9923,9919,43,10067,10066,10074,10075,0,6,5,16,30,9921,9920,9924,9925,43,10076,10086,10087,10077,0,5,44,50,6,9926,9927,9928,9929,43,10086,10082,10083,10087,0,44,16,30,50,9927,9930,9931,9928,43,10077,10087,10084,10078,0,5,44,50,6,9929,9928,9932,9933,43,10087,10083,10080,10084,0,44,16,30,50,9928,9931,9934,9932,43,10090,10077,10078,10089,0,161,16,5,162,9935,9929,9933,9936,43,10091,10076,10077,10090,0,44,16,30,163,9937,9926,9929,9935,43,10084,10094,10092,10078,0,44,53,0,5,9932,9938,9939,9933,43,10094,10085,10079,10092,0,53,50,6,0,9938,9940,9941,9939,43,10080,10093,10094,10084,0,16,49,53,44,9934,9942,9938,9932,43,10093,10081,10085,10094,0,49,30,50,53,9942,9943,9940,9938,43,10078,10092,10095,10089,0,16,176,53,175,9933,9939,9944,9936,43,10092,10079,10088,10095,0,176,30,163,53,9939,9941,9945,9944,43,10109,10114,10112,10108,0,6,1254,1248,5,9946,9947,9948,9949,43,10114,10115,10113,10112,0,1254,1243,1359,1248,9947,9950,9951,9948,43,10115,10117,10116,10113,0,1243,1360,15,1359,9950,9952,9953,9951,43,10117,10110,10111,10116,0,1360,30,16,15,9952,9954,9955,9953,43,10118,10125,10124,10119,0,1360,30,16,15,9956,9957,9958,9959,43,10120,10118,10119,10122,0,1243,1360,15,1359,9960,9956,9959,9961,43,10121,10126,10127,10123,0,1254,1361,1107,1248,9962,9963,9964,9965,43,10126,10120,10122,10127,0,1361,1243,1359,1107,9963,9960,9961,9964,43,10129,10131,10130,10128,0,1361,1243,1359,1107,9966,9967,9968,9969,43,10132,10134,10135,10133,0,6,5,16,30,9970,9971,9972,9973,43,10130,10136,10137,10128,0,5,44,50,6,9968,9974,9975,9969,43,10136,10135,10134,10137,0,44,16,30,50,9974,9972,9971,9975,43,10129,10138,10139,10131,0,5,44,50,6,9966,9976,9977,9967,43,10138,10132,10133,10139,0,44,16,30,50,9976,9970,9973,9977,43,10141,10147,10146,10140,0,44,16,30,50,9978,9979,9980,9981,43,10150,10141,10140,10148,0,5,44,50,6,9982,9978,9981,9983,43,10143,10144,10145,10142,0,44,16,30,50,9984,9985,9986,9987,43,10149,10143,10142,10151,0,5,44,50,6,9988,9984,9987,9989,43,10147,10145,10144,10146,0,6,5,16,30,9979,9986,9985,9980,43,10150,10148,10149,10151,0,1361,1243,1359,1107,9982,9983,9988,9989,43,10153,10157,10155,10152,0,1361,1243,1359,1107,9990,9991,9992,9993,43,10156,10153,10152,10154,0,1254,1361,1107,1248,9994,9990,9993,9995,43,10157,10159,10158,10155,0,1243,1360,15,1359,9991,9996,9997,9992,43,10162,10160,10161,10164,0,1243,1360,15,1359,9998,9999,10000,10001,43,10163,10162,10164,10165,0,1254,1243,1359,1248,10002,9998,10001,10003,43,10166,10163,10165,10167,0,6,1254,1248,5,10004,10002,10003,10005,43,10197,10198,10199,10200,0,6,5,16,30,10006,10007,10008,10009,43,10200,10199,10185,10201,0,6,5,16,30,10009,10008,10010,10011,43,10205,10212,10293,10292,0,1016,1019,1018,1017,10012,10013,10014,10015,43,10212,10168,10186,10293,0,1019,1021,1020,1018,10013,10016,10017,10014,43,10170,10206,10212,10205,0,1016,1019,1023,1022,10018,10019,10013,10012,43,10168,10212,10206,10172,0,1024,1023,1019,1021,10016,10013,10019,10020,43,10202,10211,10209,10178,0,1025,1026,1023,1022,10021,10022,10023,10024,43,10211,10203,10177,10209,0,1026,1027,1024,1023,10022,10025,10026,10023,43,10168,10213,10215,10186,0,1021,1029,1028,1020,10016,10027,10028,10017,43,10213,10188,10190,10215,0,1029,1031,1030,1028,10027,10029,10030,10028,43,10213,10168,10172,10214,0,1032,1024,1021,1033,10027,10016,10020,10031,43,10214,10189,10188,10213,0,1033,1035,1034,1032,10031,10032,10029,10027,43,10207,10218,10217,10173,0,1023,1042,1041,1024,10033,10034,10035,10036,43,10218,10208,10176,10217,0,1042,1019,1021,1041,10034,10037,10038,10035,43,10174,10216,10218,10207,0,1022,1025,1042,1023,10039,10040,10034,10033,43,10216,10175,10208,10218,0,1025,1016,1019,1042,10040,10041,10037,10034,43,10176,10193,10219,10217,0,6,5,16,30,10038,10042,10043,10035,43,10225,10207,10173,10222,0,1044,1019,1021,1027,10044,10033,10036,10045,43,10221,10174,10207,10225,0,1025,1016,1019,1044,10046,10039,10033,10044,43,10188,10240,10242,10190,0,1031,1050,1049,1030,10029,10047,10048,10030,43,10240,10169,10187,10242,0,1050,1008,1051,1049,10047,10049,10050,10048,43,10189,10241,10240,10188,0,1035,1053,1052,1034,10032,10051,10047,10029,43,10241,10171,10169,10240,0,1053,1008,1005,1052,10051,10052,10049,10047,43,10176,10239,10244,10193,0,6,1054,49,30,10038,10053,10054,10042,43,10239,10177,10194,10244,0,1054,5,16,49,10053,10026,10055,10054,43,10193,10244,10243,10191,0,6,0,1055,30,10042,10054,10056,10057,43,10244,10194,10192,10243,0,0,5,16,1055,10054,10055,10058,10056,43,10208,10245,10239,10176,0,1023,1059,1058,1024,10037,10059,10053,10038,43,10245,10209,10177,10239,0,1059,1019,1021,1058,10059,10023,10026,10053,43,10175,10238,10245,10208,0,1022,1025,1059,1023,10041,10060,10059,10037,43,10238,10178,10209,10245,0,1025,1016,1019,1059,10060,10024,10023,10059,43,10191,10243,10246,10223,0,16,1055,1063,181,10057,10056,10061,10062,43,10243,10192,10224,10246,0,1055,30,50,1063,10056,10058,10063,10061,43,10195,10271,10272,10196,0,5,184,186,6,10064,10065,10066,10067,43,10271,10198,10197,10272,0,184,16,30,186,10065,10007,10006,10066,43,10206,10282,10279,10172,0,1023,1080,1079,1024,10019,10068,10069,10020,43,10282,10225,10222,10279,0,1080,1044,1027,1079,10068,10044,10045,10069,43,10170,10278,10282,10206,0,1022,1081,1080,1023,10018,10070,10068,10019,43,10278,10221,10225,10282,0,1081,1025,1044,1080,10070,10046,10044,10068,43,10226,10283,10279,10222,0,1045,1082,952,162,10071,10072,10069,10045,43,10283,10214,10172,10279,0,1082,186,6,952,10072,10031,10020,10069,43,10223,10280,10283,10226,0,182,1083,1082,1045,10062,10073,10072,10071,43,10280,10189,10214,10283,0,1083,30,186,1082,10073,10032,10031,10072,43,10246,10284,10280,10223,0,1063,1085,91,181,10061,10074,10073,10062,43,10284,10241,10189,10280,0,1085,1086,5,91,10074,10051,10032,10073,43,10224,10281,10284,10246,0,50,1087,1085,1063,10063,10075,10074,10061,43,10281,10171,10241,10284,0,1087,6,1086,1085,10075,10052,10051,10074,43,10204,10287,10286,10184,0,1098,1099,1096,1093,10076,10077,10078,10079,43,10287,10201,10185,10286,0,1099,1100,1097,1096,10077,10011,10010,10078,43,10183,10296,10297,10228,0,5,91,87,6,10080,10081,10082,10083,43,10228,10297,10295,10227,0,5,91,1077,6,10083,10082,10084,10085,43,10210,10298,10299,10180,0,5,91,1077,6,10086,10087,10088,10089,43,10179,10300,10298,10210,0,5,91,87,6,10090,10091,10087,10086,43,10302,10273,10227,10295,0,1362,0,5,1363,10092,10093,10085,10084,43,10294,10229,10273,10302,0,1364,6,0,1362,10094,10095,10093,10092,43,10303,10288,10182,10301,0,1365,0,5,91,10096,10097,10098,10099,43,10296,10183,10288,10303,0,87,6,0,1365,10081,10080,10097,10096,43,10249,10305,10306,10250,0,44,1366,1367,50,10100,10101,10102,10103,43,10250,10306,10304,10248,0,44,1368,1369,50,10103,10102,10104,10105,43,10251,10307,10308,10252,0,44,1368,1367,50,10106,10107,10108,10109,43,10253,10309,10307,10251,0,44,1368,1370,50,10110,10111,10107,10106,43,10312,10275,10248,10304,0,1371,1075,175,1368,10112,10113,10105,10104,43,10311,10247,10275,10312,0,1372,1076,1075,1371,10114,10115,10113,10112,43,10313,10289,10254,10310,0,1373,53,44,1368,10116,10117,10118,10119,43,10305,10249,10289,10313,0,1367,50,53,1373,10101,10100,10117,10116,43,10256,10315,10316,10257,0,1374,1375,1376,1377,10120,10121,10122,10123,43,10257,10316,10314,10255,0,1374,1378,150,1377,10123,10122,10124,10125,43,10258,10317,10318,10259,0,47,1375,150,51,10126,10127,10128,10129,43,10260,10319,10317,10258,0,47,1375,150,51,10130,10131,10127,10126,43,10322,10276,10255,10314,0,1379,1380,1374,1375,10132,10133,10125,10124,43,10321,10262,10276,10322,0,1381,1382,1380,1379,10134,10135,10133,10132,43,10323,10290,10261,10320,0,1383,1384,47,1375,10136,10137,10138,10139,43,10315,10256,10290,10323,0,150,1377,1384,1383,10121,10120,10137,10136,43,10237,10327,10328,10236,0,16,161,52,47,10140,10141,10142,10143,43,10236,10328,10325,10235,0,16,49,1305,47,10143,10142,10144,10145,43,10233,10330,10331,10230,0,16,49,1385,1374,10146,10147,10148,10149,43,10232,10329,10330,10233,0,16,49,1384,1374,10150,10151,10147,10146,43,10274,10332,10324,10231,0,1386,1379,1387,1374,10152,10153,10154,10155,43,10230,10331,10332,10274,0,16,161,1379,1386,10149,10148,10153,10152,43,10285,10333,10329,10232,0,1375,1388,52,47,10156,10157,10151,10150,43,10234,10326,10333,10285,0,16,161,1388,1375,10158,10159,10157,10156,43,10337,10263,10264,10338,0,1066,30,51,1389,10160,10161,10162,10163,43,10338,10264,10265,10335,0,1390,30,51,1389,10163,10162,10164,10165,43,10340,10267,10270,10341,0,1066,30,1377,1389,10166,10167,10168,10169,43,10339,10268,10267,10340,0,1066,30,1377,1391,10170,10171,10167,10166,43,10342,10277,10269,10334,0,1392,1393,1382,1394,10172,10173,10174,10175,43,10341,10270,10277,10342,0,1390,30,1393,1392,10169,10168,10173,10172,43,10343,10291,10268,10339,0,1395,1396,1377,1397,10176,10177,10171,10170,43,10336,10266,10291,10343,0,1390,30,1396,1395,10178,10179,10177,10176,43,10210,10348,10344,10179,0,1019,1398,1399,1016,10086,10180,10181,10090,43,10348,10211,10202,10344,0,1398,1026,1025,1399,10180,10022,10021,10181,43,10180,10345,10348,10210,0,1021,1400,1398,1019,10089,10182,10180,10086,43,10345,10203,10211,10348,0,1400,1027,1026,1398,10182,10025,10022,10180,43,10200,10349,10350,10197,0,5,44,50,6,10009,10183,10184,10006,43,10349,10228,10227,10350,0,44,16,30,50,10183,10083,10085,10184,43,10228,10349,10347,10183,0,30,49,0,6,10083,10183,10185,10080,43,10349,10200,10201,10347,0,49,16,5,0,10183,10009,10011,10185,43,10272,10352,10351,10196,0,1074,1401,1402,1071,10066,10186,10187,10067,43,10352,10273,10229,10351,0,1401,1073,1072,1402,10186,10093,10095,10187,43,10197,10350,10352,10272,0,5,44,1401,1074,10006,10184,10186,10066,43,10350,10227,10273,10352,0,44,16,1073,1401,10184,10085,10093,10186,43,10288,10353,10346,10182,0,1066,1403,1404,49,10097,10188,10189,10098,43,10353,10287,10204,10346,0,1403,1099,1098,1404,10188,10077,10076,10189,43,10183,10347,10353,10288,0,30,1405,1403,1066,10080,10185,10188,10097,43,10347,10201,10287,10353,0,1405,1100,1099,1403,10185,10011,10077,10188,43,10296,10356,10357,10297,0,91,1406,1407,87,10081,10190,10191,10082,43,10356,10249,10250,10357,0,1406,44,50,1407,10190,10100,10103,10191,43,10297,10357,10355,10295,0,91,1406,1408,1077,10082,10191,10192,10084,43,10357,10250,10248,10355,0,1406,44,50,1408,10191,10103,10105,10192,43,10298,10358,10359,10299,0,91,1409,1408,1077,10087,10193,10194,10088,43,10358,10251,10252,10359,0,1409,44,50,1408,10193,10106,10109,10194,43,10300,10360,10358,10298,0,91,1406,1408,87,10091,10195,10193,10087,43,10360,10253,10251,10358,0,1406,44,50,1408,10195,10110,10106,10193,43,10275,10362,10355,10248,0,1075,1410,1409,175,10113,10196,10192,10105,43,10362,10302,10295,10355,0,1410,1362,1363,1409,10196,10092,10084,10192,43,10247,10354,10362,10275,0,1076,1411,1410,1075,10115,10197,10196,10113,43,10354,10294,10302,10362,0,1411,1364,1362,1410,10197,10094,10092,10196,43,10289,10363,10361,10254,0,53,1412,1406,44,10117,10198,10199,10118,43,10363,10303,10301,10361,0,1412,1365,91,1406,10198,10096,10099,10199,43,10249,10356,10363,10289,0,50,1407,1412,53,10100,10190,10198,10117,43,10356,10296,10303,10363,0,1407,87,1365,1412,10190,10081,10096,10198,43,10305,10365,10366,10306,0,1366,1413,1414,1367,10101,10200,10201,10102,43,10365,10256,10257,10366,0,1413,1374,1377,1414,10200,10120,10123,10201,43,10306,10366,10364,10304,0,1368,1415,1414,1369,10102,10201,10202,10104,43,10366,10257,10255,10364,0,1415,1374,1377,1414,10201,10123,10125,10202,43,10307,10367,10368,10308,0,1368,1415,1416,1367,10107,10203,10204,10108,43,10367,10258,10259,10368,0,1415,47,51,1416,10203,10126,10129,10204,43,10309,10369,10367,10307,0,1368,1415,1414,1370,10111,10205,10203,10107,43,10369,10260,10258,10367,0,1415,47,51,1414,10205,10130,10126,10203,43,10276,10372,10364,10255,0,1380,1417,1415,1374,10133,10206,10202,10125,43,10372,10312,10304,10364,0,1417,1371,1368,1415,10206,10112,10104,10202,43,10262,10371,10372,10276,0,1382,1418,1417,1380,10135,10207,10206,10133,43,10371,10311,10312,10372,0,1418,1372,1371,1417,10207,10114,10112,10206,43,10290,10373,10370,10261,0,1384,1419,1415,47,10137,10208,10209,10138,43,10373,10313,10310,10370,0,1419,1373,1368,1415,10208,10116,10119,10209,43,10256,10365,10373,10290,0,1377,1416,1419,1384,10120,10200,10208,10137,43,10365,10305,10313,10373,0,1416,1367,1373,1419,10200,10101,10116,10208,43,10315,10375,10376,10316,0,1375,1420,1421,1376,10121,10210,10211,10122,43,10375,10232,10233,10376,0,1420,16,30,1421,10210,10150,10146,10211,43,10316,10376,10374,10314,0,1378,1420,1421,150,10122,10211,10212,10124,43,10376,10233,10230,10374,0,1420,16,30,1421,10211,10146,10149,10212,43,10317,10377,10378,10318,0,1375,1420,1421,150,10127,10213,10214,10128,43,10377,10236,10235,10378,0,1420,16,30,1421,10213,10143,10145,10214,43,10319,10379,10377,10317,0,1375,1420,1421,150,10131,10215,10213,10127,43,10379,10237,10236,10377,0,1420,16,30,1421,10215,10140,10143,10213,43,10274,10382,10374,10230,0,49,1422,1420,16,10152,10216,10212,10149,43,10382,10322,10314,10374,0,1422,1379,1375,1420,10216,10132,10124,10212,43,10231,10381,10382,10274,0,30,1423,1424,49,10155,10217,10216,10152,43,10381,10321,10322,10382,0,1423,1381,1379,1424,10217,10134,10132,10216,43,10285,10383,10380,10234,0,49,1425,1420,16,10156,10218,10219,10158,43,10383,10323,10320,10380,0,1425,1383,1375,1420,10218,10136,10139,10219,43,10232,10375,10383,10285,0,30,1421,1425,49,10150,10210,10218,10156,43,10375,10315,10323,10383,0,1421,150,1383,1425,10210,10121,10136,10218,43,10327,10387,10388,10328,0,161,1426,1427,52,10141,10220,10221,10142,43,10387,10337,10338,10388,0,1426,1066,1389,1427,10220,10160,10163,10221,43,10328,10388,10385,10325,0,49,1428,1429,1305,10142,10221,10222,10144,43,10388,10338,10335,10385,0,1428,1390,1389,1429,10221,10163,10165,10222,43,10330,10390,10391,10331,0,49,1430,1431,1385,10147,10223,10224,10148,43,10390,10340,10341,10391,0,1430,1066,1389,1431,10223,10166,10169,10224,43,10329,10389,10390,10330,0,49,1428,1432,1384,10151,10225,10223,10147,43,10389,10339,10340,10390,0,1428,1066,1391,1432,10225,10170,10166,10223,43,10332,10392,10384,10324,0,1379,1433,1434,1387,10153,10226,10227,10154,43,10392,10342,10334,10384,0,1433,1392,1394,1434,10226,10172,10175,10227,43,10331,10391,10392,10332,0,161,1426,1433,1379,10148,10224,10226,10153,43,10391,10341,10342,10392,0,1426,1390,1392,1433,10224,10169,10172,10226,43,10333,10393,10389,10329,0,1388,1435,1427,52,10157,10228,10225,10151,43,10393,10343,10339,10389,0,1435,1395,1397,1427,10228,10176,10170,10225,43,10326,10386,10393,10333,0,161,1426,1435,1388,10159,10229,10228,10157,43,10386,10336,10343,10393,0,1426,1390,1395,1435,10229,10178,10176,10228,43,10178,10396,10399,10202,0,5,44,1436,0,10024,10230,10231,10021,43,10396,11011,11388,10399,0,44,16,1012,1436,10230,10232,10233,10231,43,10205,10400,10394,10170,0,5,44,50,6,10012,10234,10235,10018,43,10400,11013,11010,10394,0,44,16,30,50,10234,10236,10237,10235,43,10292,10409,10400,10205,0,5,44,50,6,10015,10238,10234,10012,43,10409,12203,11013,10400,0,44,16,30,50,10238,10239,10236,10234,43,12197,10401,10395,11357,0,1040,1437,50,30,10240,10241,10242,10243,43,10401,10216,10174,10395,0,1437,0,6,50,10241,10040,10039,10242,43,11012,10398,10401,12197,0,16,44,1437,1040,10244,10245,10241,10240,43,10398,10175,10216,10401,0,44,5,0,1437,10245,10041,10040,10241,43,11357,10395,10402,11014,0,16,49,1438,1043,10243,10242,10246,10247,43,10395,10174,10221,10402,0,49,30,50,1438,10242,10039,10046,10246,43,12204,10404,10398,11012,0,1048,1439,50,30,10248,10249,10245,10244,43,10404,10238,10175,10398,0,1439,162,6,50,10249,10060,10041,10245,43,11011,10396,10404,12204,0,16,1107,1439,1048,10232,10230,10249,10248,43,10396,10178,10238,10404,0,1107,5,162,1439,10230,10024,10060,10249,43,11017,10408,10394,11010,0,1078,1440,1070,5,10250,10251,10235,10237,43,10408,10278,10170,10394,0,1440,1077,6,1070,10251,10070,10018,10235,43,11014,10402,10408,11017,0,1043,1438,1440,1078,10247,10246,10251,10250,43,10402,10221,10278,10408,0,1438,50,1077,1440,10246,10046,10070,10251,43,11487,10410,10397,12198,0,1441,1362,1061,5,10252,10253,10254,10255,43,10410,10300,10179,10397,0,1362,87,6,1061,10253,10091,10090,10254,43,11497,10411,10405,11015,0,1442,1443,1075,1064,10256,10257,10258,10259,43,10411,10309,10253,10405,0,1443,1370,50,1075,10257,10111,10110,10258,43,12202,10412,10406,11446,0,1444,1379,1445,1446,10260,10261,10262,10263,43,10412,10319,10260,10406,0,1379,150,51,1445,10261,10131,10130,10262,43,11515,10413,10403,11422,0,49,1379,1447,16,10264,10265,10266,10267,43,10413,10327,10237,10403,0,1379,1387,1446,1447,10265,10141,10140,10266,43,11016,10407,10414,12201,0,30,150,1448,1449,10268,10269,10270,10271,43,10407,10263,10337,10414,0,150,51,1450,1448,10269,10161,10160,10270,43,10344,10415,10397,10179,0,977,1451,1452,6,10181,10272,10254,10090,43,10415,11018,12198,10397,0,1451,1453,30,1452,10272,10273,10255,10254,43,10202,10399,10415,10344,0,0,1436,1454,977,10021,10231,10272,10181,43,10399,11388,11018,10415,0,1436,1012,1453,1454,10231,10233,10273,10272,43,12200,10416,10410,11487,0,1455,1456,1362,1441,10274,10275,10253,10252,43,10416,10360,10300,10410,0,1456,1407,87,1362,10275,10195,10091,10253,43,11015,10405,10416,12200,0,1064,1457,1456,1455,10259,10258,10275,10274,43,10405,10253,10360,10416,0,1457,50,1407,1456,10258,10110,10195,10275,43,11019,10417,10411,11497,0,1458,1459,1443,1442,10276,10277,10257,10256,43,10417,10369,10309,10411,0,1459,1414,1370,1443,10277,10205,10111,10257,43,11446,10406,10417,11019,0,1446,1445,1459,1458,10263,10262,10277,10276,43,10406,10260,10369,10417,0,1445,51,1414,1459,10262,10130,10205,10277,43,12196,10418,10412,12202,0,1460,1424,1379,1444,10278,10279,10261,10260,43,10418,10379,10319,10412,0,1424,1421,150,1379,10279,10215,10131,10261,43,11422,10403,10418,12196,0,16,737,1424,1460,10267,10266,10279,10278,43,10403,10237,10379,10418,0,737,30,1421,1424,10266,10140,10215,10279,43,12199,10419,10413,11515,0,1428,1461,1379,49,10280,10281,10265,10264,43,10419,10387,10327,10413,0,1461,1462,1387,1379,10281,10220,10141,10265,43,12201,10414,10419,12199,0,1449,1448,1463,1428,10271,10270,10281,10280,43,10414,10337,10387,10419,0,1448,1450,1462,1463,10270,10160,10220,10281,43,10430,10434,10435,10431,0,30,49,0,6,10282,10283,10284,10285,43,10434,10433,10432,10435,0,49,16,5,0,10283,10286,10287,10284,43,10195,10433,10434,10271,0,6,5,16,30,10064,10286,10283,10065,43,10198,10271,10434,10430,0,6,30,16,5,10007,10065,10283,10282,43,10181,10436,10437,10220,0,30,957,739,6,10288,10289,10290,10291,43,10436,10429,10428,10437,0,957,16,5,739,10289,10292,10293,10290,43,10429,10438,10439,10428,0,30,1464,0,6,10292,10294,10295,10293,43,10438,10430,10431,10439,0,1464,16,5,0,10294,10282,10285,10295,43,10181,10184,10286,10436,0,6,5,16,30,10288,10079,10078,10289,43,10185,10429,10436,10286,0,6,5,16,30,10010,10292,10289,10078,43,10185,10199,10438,10429,0,6,30,16,5,10010,10008,10294,10292,43,10198,10430,10438,10199,0,6,30,16,5,10007,10282,10294,10008,43,10292,10440,10441,10409,0,44,185,0,5,10015,10296,10297,10238,43,10440,10422,10420,10441,0,185,50,6,0,10296,10298,10299,10297,43,10409,10441,11631,12203,0,16,49,1465,44,10238,10297,10300,10239,43,10441,10420,12195,11631,0,49,30,50,1465,10297,10299,10301,10300,43,10186,10442,10443,10293,0,1021,1466,1467,1019,10017,10302,10303,10014,43,10442,10427,10421,10443,0,1466,1020,1018,1467,10302,10304,10305,10303,43,10293,10443,10440,10292,0,1019,1467,1468,1016,10014,10303,10296,10015,43,10443,10421,10422,10440,0,1467,1018,1017,1468,10303,10305,10298,10296,43,10242,10445,10446,10190,0,1050,1469,1470,1031,10048,10306,10307,10030,43,10445,10423,10425,10446,0,1469,1049,1030,1470,10306,10308,10309,10307,43,10187,10444,10445,10242,0,1008,1471,1469,1050,10050,10310,10306,10048,43,10444,10426,10423,10445,0,1471,1051,1049,1469,10310,10311,10308,10306,43,10190,10446,10447,10215,0,1031,1470,1472,1029,10030,10307,10312,10028,43,10446,10425,10424,10447,0,1470,1030,1028,1472,10307,10309,10313,10312,43,10215,10447,10442,10186,0,1029,1472,1466,1021,10028,10312,10302,10017,43,10447,10424,10427,10442,0,1472,1028,1020,1466,10312,10313,10304,10302,43,10455,10454,10458,10457,0,6,5,16,30,10314,3471,3471,3471,43,10457,10458,10459,10460,0,6,5,16,30,3471,3471,3471,3471,43,10459,10463,10462,10460,0,6,30,16,5,3471,3471,3471,3471,43,10462,10463,10465,10464,0,6,30,16,5,3471,3471,3471,3471,43,10474,10468,10469,10475,0,30,50,44,16,9980,9981,9978,9979,43,10468,10476,10478,10469,0,50,6,5,44,9981,9983,9982,9978,43,10471,10472,10473,10470,0,44,16,30,50,10315,9985,9986,9987,43,10477,10471,10470,10479,0,5,44,50,6,9988,10315,9987,9989,43,10475,10473,10472,10474,0,6,5,16,30,9979,9986,9985,9980,43,10478,10476,10477,10479,0,1361,1243,1359,1107,9982,9983,9988,9989,43,10481,10485,10483,10480,0,1361,1243,1359,1107,10316,10317,10318,10319,43,10484,10481,10480,10482,0,1254,1361,1107,1248,10320,10316,10319,10321,43,10485,10487,10486,10483,0,1243,1360,15,1359,10317,10322,10323,10318,43,10490,10488,10489,10492,0,1243,1360,15,1359,10324,10325,10326,10327,43,10491,10490,10492,10493,0,1254,1243,1359,1248,10328,10324,10327,10329,43,10496,10497,10495,10494,0,1254,1243,1359,1248,10330,10331,10332,10333,43,10497,10499,10498,10495,0,1243,1360,15,1359,10331,10334,10335,10332,43,10502,10500,10501,10504,0,1243,1360,15,1359,10336,10337,10338,10339,43,10503,10506,10507,10505,0,1254,1361,1107,1248,10340,10341,10342,10343,43,10506,10502,10504,10507,0,1361,1243,1359,1107,10341,10336,10339,10342,43,10509,10511,10510,10508,0,1361,1243,1359,1107,10344,10345,10346,10347,43,10512,10514,10515,10513,0,6,5,16,30,10348,10349,10350,10351,43,10510,10516,10517,10508,0,5,44,50,6,10346,10352,10353,10347,43,10516,10515,10514,10517,0,44,16,30,50,10352,10350,10349,10353,43,10519,10511,10509,10518,0,50,6,5,44,10354,10345,10344,10355,43,10513,10519,10518,10512,0,30,50,44,16,10351,10354,10355,10348,43,10527,10520,10528,10529,0,6,5,16,30,10356,10357,10358,10359,43,10530,10526,10527,10529,0,6,5,16,30,10360,10361,10356,10359,43,10531,10525,10526,10530,0,6,5,16,30,10362,10363,10361,10360,43,10532,10524,10525,10531,0,6,5,16,30,10364,10365,10363,10362,43,10533,10523,10524,10532,0,6,5,16,30,10366,10367,10365,10364,43,10534,10522,10523,10533,0,6,5,16,30,10368,10369,10367,10366,43,10535,10521,10522,10534,0,6,5,16,30,10370,10371,10369,10368,43,10528,10520,10521,10535,0,6,5,16,30,10358,10357,10371,10370,43,10544,10545,10543,10536,0,6,5,16,30,10372,10373,10374,10375,43,10546,10542,10543,10545,0,6,5,16,30,10376,10377,10374,10373,43,10547,10541,10542,10546,0,6,5,16,30,10378,10379,10377,10376,43,10548,10540,10541,10547,0,6,5,16,30,10380,10381,10379,10378,43,10549,10539,10540,10548,0,6,5,16,30,10382,10383,10381,10380,43,10550,10538,10539,10549,0,6,5,16,30,10384,10385,10383,10382,43,10551,10537,10538,10550,0,6,5,16,30,10386,10387,10385,10384,43,10544,10536,10537,10551,0,6,5,16,30,10372,10375,10387,10386,43,10553,10552,10545,10544,0,6,5,16,30,10388,10389,10373,10372,43,10548,10547,10552,10553,0,6,5,16,30,10380,10378,10389,10388,43,10554,10553,10544,10551,0,6,5,16,30,10390,10388,10372,10386,43,10549,10548,10553,10554,0,6,5,16,30,10382,10380,10388,10390,43,10552,10547,10546,10545,0,6,5,16,30,10389,10378,10376,10373,43,10551,10550,10549,10554,0,6,5,16,30,10386,10384,10382,10390,43,10556,10555,10528,10535,0,6,5,16,30,10391,10392,10358,10370,43,10537,10536,10555,10556,0,6,5,16,30,10387,10375,10392,10391,43,10557,10556,10535,10534,0,6,5,16,30,10393,10391,10370,10368,43,10538,10537,10556,10557,0,6,5,16,30,10385,10387,10391,10393,43,10558,10557,10534,10533,0,6,5,16,30,10394,10393,10368,10366,43,10539,10538,10557,10558,0,6,5,16,30,10383,10385,10393,10394,43,10559,10558,10533,10532,0,6,5,16,30,10395,10394,10366,10364,43,10540,10539,10558,10559,0,6,5,16,30,10381,10383,10394,10395,43,10560,10559,10532,10531,0,6,5,16,30,10396,10395,10364,10362,43,10541,10540,10559,10560,0,6,5,16,30,10379,10381,10395,10396,43,10561,10560,10531,10530,0,6,5,16,30,10397,10396,10362,10360,43,10542,10541,10560,10561,0,6,5,16,30,10377,10379,10396,10397,43,10562,10561,10530,10529,0,6,5,16,30,10398,10397,10360,10359,43,10543,10542,10561,10562,0,6,5,16,30,10374,10377,10397,10398,43,10562,10529,10528,10555,0,6,5,16,30,10398,10359,10358,10392,43,10543,10562,10555,10536,0,6,5,16,30,10374,10398,10392,10375,43,10520,10527,10563,10570,0,6,5,16,30,10357,10356,10399,10400,43,10563,10527,10526,10564,0,6,5,16,30,10399,10356,10361,10401,43,10564,10526,10525,10565,0,6,5,16,30,10401,10361,10363,10402,43,10565,10525,10524,10566,0,6,5,16,30,10402,10363,10365,10403,43,10566,10524,10523,10567,0,6,5,16,30,10403,10365,10367,10404,43,10567,10523,10522,10568,0,6,5,16,30,10404,10367,10369,10405,43,10568,10522,10521,10569,0,6,5,16,30,10405,10369,10371,10406,43,10520,10570,10569,10521,0,6,5,16,30,10357,10400,10406,10371,43,10572,10620,10621,10571,0,6,5,16,30,10407,10408,10409,10410,43,10573,10619,10620,10572,0,6,5,16,30,10411,10412,10408,10407,43,10574,10618,10619,10573,0,6,5,16,30,10413,10414,10412,10411,43,10575,10617,10618,10574,0,6,5,16,30,10415,10416,10414,10413,43,10576,10616,10617,10575,0,6,5,16,30,10417,10418,10416,10415,43,10577,10615,10616,10576,0,6,5,16,30,10419,10420,10418,10417,43,10578,10614,10615,10577,0,6,5,16,30,10421,10422,10420,10419,43,10578,10571,10621,10614,0,6,5,16,30,10421,10410,10409,10422,43,10598,10579,10586,10605,0,6,5,16,30,10423,10424,10425,10426,43,10579,10612,10613,10586,0,6,5,16,30,10424,10427,10428,10425,43,10598,10599,10580,10579,0,6,5,16,30,10423,10429,10430,10424,43,10579,10580,10611,10612,0,6,5,16,30,10424,10430,10431,10427,43,10599,10600,10581,10580,0,6,5,16,30,10429,10432,10433,10430,43,10580,10581,10610,10611,0,6,5,16,30,10430,10433,10434,10431,43,10600,10601,10582,10581,0,6,5,16,30,10432,10435,10436,10433,43,10581,10582,10609,10610,0,6,5,16,30,10433,10436,10437,10434,43,10601,10602,10583,10582,0,6,5,16,30,10435,10438,10439,10436,43,10582,10583,10608,10609,0,6,5,16,30,10436,10439,10440,10437,43,10602,10603,10584,10583,0,6,5,16,30,10438,10441,10442,10439,43,10583,10584,10607,10608,0,6,5,16,30,10439,10442,10443,10440,43,10603,10604,10585,10584,0,6,5,16,30,10441,10444,10445,10442,43,10584,10585,10606,10607,0,6,5,16,30,10442,10445,10446,10443,43,10604,10605,10586,10585,0,6,5,16,30,10444,10426,10425,10445,43,10585,10586,10613,10606,0,6,5,16,30,10445,10425,10428,10446,43,10590,10591,10592,10587,0,6,5,16,30,10447,10448,10449,10450,43,10589,10594,10595,10596,0,6,5,16,30,10451,10452,10453,10454,43,10592,10593,10588,10587,0,6,5,16,30,10449,10455,10456,10450,43,10587,10588,10597,10590,0,6,5,16,30,10450,10456,10457,10447,43,10593,10594,10589,10588,0,6,5,16,30,10455,10452,10451,10456,43,10588,10589,10596,10597,0,6,5,16,30,10456,10451,10454,10457,43,10597,10605,10604,10590,0,6,5,16,30,10457,10426,10444,10447,43,10590,10604,10603,10591,0,6,5,16,30,10447,10444,10441,10448,43,10591,10603,10602,10592,0,6,5,16,30,10448,10441,10438,10449,43,10592,10602,10601,10593,0,6,5,16,30,10449,10438,10435,10455,43,10593,10601,10600,10594,0,6,5,16,30,10455,10435,10432,10452,43,10594,10600,10599,10595,0,6,5,16,30,10452,10432,10429,10453,43,10595,10599,10598,10596,0,6,5,16,30,10453,10429,10423,10454,43,10597,10596,10598,10605,0,6,5,16,30,10457,10454,10423,10426,43,10613,10621,10620,10606,0,6,5,16,30,10428,10409,10408,10446,43,10606,10620,10619,10607,0,6,5,16,30,10446,10408,10412,10443,43,10607,10619,10618,10608,0,6,5,16,30,10443,10412,10414,10440,43,10608,10618,10617,10609,0,6,5,16,30,10440,10414,10416,10437,43,10609,10617,10616,10610,0,6,5,16,30,10437,10416,10418,10434,43,10610,10616,10615,10611,0,6,5,16,30,10434,10418,10420,10431,43,10611,10615,10614,10612,0,6,5,16,30,10431,10420,10422,10427,43,10613,10612,10614,10621,0,6,5,16,30,10428,10427,10422,10409,43,10622,10629,10624,10623,0,52,51,50,53,10458,10459,10460,10461,43,10626,10625,10631,10627,0,49,30,50,53,10462,10463,10464,10465,43,10635,10636,10638,10640,0,49,30,50,53,10466,10467,10468,10469,43,10640,10638,10637,10639,0,49,30,50,53,10469,10468,10470,10471,43,10639,10637,10634,10633,0,49,30,51,52,10471,10470,10472,10473,43,10633,10649,10650,10639,0,30,150,1473,49,10473,10474,10475,10471,43,10640,10651,10652,10635,0,30,51,52,49,10469,10476,10477,10466,43,10639,10650,10651,10640,0,30,51,52,49,10471,10475,10476,10469,43,10622,10655,10656,10629,0,30,150,1473,49,10458,10478,10479,10459,43,10655,10633,10634,10656,0,150,51,52,1473,10478,10473,10472,10479,43,10631,10657,10658,10627,0,30,1474,188,49,10464,10480,10481,10465,43,10657,10636,10635,10658,0,1474,50,53,188,10480,10467,10466,10481,43,10630,10659,10660,10632,0,30,51,52,49,10482,10483,10484,10485,43,10659,10637,10638,10660,0,51,50,53,52,10483,10470,10468,10484,43,10632,10660,10657,10631,0,30,51,52,49,10485,10484,10480,10464,43,10660,10638,10636,10657,0,51,50,53,52,10484,10468,10467,10480,43,10629,10656,10659,10630,0,30,150,1473,49,10459,10479,10483,10482,43,10656,10634,10637,10659,0,150,51,52,1473,10479,10472,10470,10483,43,10647,10663,10662,10646,0,30,150,1473,49,10486,10487,10488,10489,43,10663,10641,10642,10662,0,150,51,52,1473,10487,10490,10491,10488,43,10645,10661,10664,10648,0,30,51,188,49,10492,10493,10494,10495,43,10661,10643,10644,10664,0,51,50,53,188,10493,10496,10497,10494,43,10648,10664,10663,10647,0,30,51,52,49,10495,10494,10487,10486,43,10664,10644,10641,10663,0,51,50,53,52,10494,10497,10490,10487,43,10652,10665,10658,10635,0,51,1397,1066,30,10477,10498,10481,10466,43,10665,10653,10627,10658,0,1397,52,49,1066,10498,10499,10465,10481,43,10655,10622,10654,10666,0,1066,30,150,1475,10478,10458,10500,10501,43,10666,10649,10633,10655,0,1475,1473,49,1066,10501,10474,10473,10478,43,10649,10667,10668,10650,0,150,1476,1477,1473,10474,10502,10503,10475,43,10667,10642,10641,10668,0,1476,51,52,1477,10502,10491,10490,10503,43,10651,10669,10670,10652,0,51,1370,1478,52,10476,10504,10505,10477,43,10669,10644,10643,10670,0,1370,50,53,1478,10504,10497,10496,10505,43,10650,10668,10669,10651,0,51,1370,1373,52,10475,10503,10504,10476,43,10668,10641,10644,10669,0,1370,50,53,1373,10503,10490,10497,10504,43,10673,10648,10647,10674,0,1370,50,53,1373,10506,10495,10486,10507,43,10671,10645,10648,10673,0,1370,50,53,1373,10508,10492,10495,10506,43,10674,10647,10646,10672,0,1476,51,52,1477,10507,10486,10489,10509,43,10661,10675,10670,10643,0,951,1479,1370,50,10493,10510,10505,10496,43,10675,10665,10652,10670,0,1479,1397,51,1370,10510,10498,10477,10505,43,10645,10671,10675,10661,0,53,1478,1479,951,10492,10508,10510,10493,43,10671,10653,10665,10675,0,1478,52,1397,1479,10508,10499,10498,10510,43,10662,10676,10672,10646,0,1397,1480,1481,51,10488,10511,10509,10489,43,10676,10666,10654,10672,0,1480,1482,150,1481,10511,10501,10500,10509,43,10642,10667,10676,10662,0,52,1477,1483,1397,10491,10502,10511,10488,43,10667,10649,10666,10676,0,1477,1473,1482,1483,10502,10474,10501,10511,43,10705,10693,10700,10712,0,6,5,16,30,10512,10513,10514,10515,43,10706,10694,10693,10705,0,6,5,16,30,10516,10517,10513,10512,43,10711,10699,10694,10706,0,6,5,16,30,10518,10519,10517,10516,43,10704,10692,10695,10707,0,6,5,16,30,10520,10521,10522,10523,43,10708,10696,10691,10703,0,6,5,16,30,10524,10525,10526,10527,43,10689,10701,10707,10695,0,6,5,16,30,10528,10529,10523,10522,43,10710,10698,10696,10708,0,6,5,16,30,10530,10531,10525,10524,43,10701,10689,10697,10709,0,6,5,16,30,10529,10528,10532,10533,43,10709,10697,10690,10702,0,6,5,16,30,10533,10532,10534,10535,43,10702,10690,10698,10710,0,6,5,16,30,10535,10534,10531,10530,43,10703,10691,10699,10711,0,6,5,16,30,10527,10526,10519,10518,43,10712,10700,10692,10704,0,6,5,16,30,10515,10514,10521,10520,42,10719,10721,10713,0,6,5,16,10536,10537,10538,42,10718,10720,10713,0,6,5,16,10539,10540,10538,42,10717,10719,10713,0,6,5,16,10541,10536,10538,42,10720,10716,10713,0,6,5,16,10540,10542,10538,42,10714,10717,10713,0,6,5,16,10543,10541,10538,42,10716,10715,10713,0,6,5,16,10542,10544,10538,42,10721,10718,10713,0,6,5,16,10537,10539,10538,43,10722,10725,10718,10721,0,6,5,16,30,10545,10546,10539,10537,43,10727,10728,10715,10716,0,6,5,16,30,10547,10548,10544,10542,43,10729,10726,10717,10714,0,6,5,16,30,10549,10550,10541,10543,43,10723,10727,10716,10720,0,6,5,16,30,10551,10547,10542,10540,43,10726,10724,10719,10717,0,6,5,16,30,10550,10552,10536,10541,43,10725,10723,10720,10718,0,6,5,16,30,10546,10551,10540,10539,43,10724,10722,10721,10719,0,6,5,16,30,10552,10545,10537,10536,43,10735,10737,10722,10724,0,6,5,16,30,10553,10554,10545,10552,43,10734,10736,10723,10725,0,6,5,16,30,10555,10556,10551,10546,43,10733,10735,10724,10726,0,6,5,16,30,10557,10553,10552,10550,43,10736,10732,10727,10723,0,6,5,16,30,10556,10558,10547,10551,43,10730,10733,10726,10729,0,6,5,16,30,10559,10557,10550,10549,43,10732,10731,10728,10727,0,6,5,16,30,10558,10560,10548,10547,43,10737,10734,10725,10722,0,6,5,16,30,10554,10555,10546,10545,43,10759,10705,10712,10760,0,6,5,16,30,10561,10512,10515,10562,43,10758,10706,10705,10759,0,6,5,16,30,10563,10516,10512,10561,43,10757,10711,10706,10758,0,6,5,16,30,10564,10518,10516,10563,43,10755,10708,10703,10756,0,6,5,16,30,10565,10524,10527,10566,43,10762,10707,10701,10763,0,6,5,16,30,10567,10523,10529,10568,43,10766,10710,10708,10755,0,6,5,16,30,10569,10530,10524,10565,43,10763,10701,10709,10764,0,6,5,16,30,10568,10529,10533,10570,43,10764,10709,10702,10765,0,6,5,16,30,10570,10533,10535,10571,43,10765,10702,10710,10766,0,6,5,16,30,10571,10535,10530,10569,43,10756,10703,10711,10757,0,6,5,16,30,10566,10527,10518,10564,43,10760,10712,10704,10761,0,6,5,16,30,10562,10515,10520,10572,43,10767,10782,10779,10770,0,6,5,16,30,10573,10574,10575,10576,43,10772,10777,10776,10773,0,6,5,16,30,10577,10578,10579,10580,43,10771,10774,10775,10778,0,6,5,16,30,10581,10582,10583,10584,43,10768,10781,10777,10772,0,6,5,16,30,10585,10586,10578,10577,43,10769,10771,10778,10780,0,6,5,16,30,10587,10581,10584,10588,43,10768,10770,10779,10781,0,6,5,16,30,10585,10576,10575,10586,43,10767,10769,10780,10782,0,6,5,16,30,10573,10587,10588,10574,43,10783,10798,10795,10786,0,6,5,16,30,10589,10590,10591,10592,43,10788,10793,10792,10789,0,6,5,16,30,10593,10594,10595,10596,43,10787,10790,10791,10794,0,6,5,16,30,10597,10598,10599,10600,43,10788,10784,10797,10793,0,6,5,16,30,10593,10601,10602,10594,43,10785,10787,10794,10796,0,6,5,16,30,10603,10597,10600,10604,43,10784,10786,10795,10797,0,6,5,16,30,10601,10592,10591,10602,43,10785,10796,10798,10783,0,6,5,16,30,10603,10604,10590,10589,43,10741,10810,10807,10738,0,6,5,16,30,10605,10606,10607,10608,43,10803,10734,10737,10806,0,6,5,16,30,10609,10555,10554,10610,43,10744,10814,10812,10743,0,6,5,16,30,10611,10612,10613,10614,43,10799,10731,10732,10801,0,6,5,16,30,10615,10560,10558,10616,43,10742,10811,10813,10745,0,6,5,16,30,10617,10618,10619,10620,43,10802,10733,10730,10800,0,6,5,16,30,10621,10557,10559,10622,43,10743,10812,10809,10739,0,6,5,16,30,10614,10613,10623,10624,43,10801,10732,10736,10804,0,6,5,16,30,10616,10558,10556,10625,43,10740,10808,10811,10742,0,6,5,16,30,10626,10627,10618,10617,43,10805,10735,10733,10802,0,6,5,16,30,10628,10553,10557,10621,43,10739,10809,10810,10741,0,6,5,16,30,10624,10623,10606,10605,43,10804,10736,10734,10803,0,6,5,16,30,10625,10556,10555,10609,43,10738,10807,10808,10740,0,6,5,16,30,10608,10607,10627,10626,43,10806,10737,10735,10805,0,6,5,16,30,10610,10554,10553,10628,43,10818,10843,10842,10824,0,6,5,16,30,10629,10630,10631,10632,43,10819,10844,10843,10818,0,6,5,16,30,10633,10634,10630,10629,43,10817,10848,10841,10820,0,6,5,16,30,10635,10636,10637,10638,43,10845,10815,10820,10841,0,6,5,16,30,10639,10640,10638,10637,43,10815,10845,10846,10821,0,6,5,16,30,10640,10639,10641,10642,43,10821,10846,10847,10816,0,6,5,16,30,10642,10641,10643,10644,43,10824,10842,10848,10817,0,6,5,16,30,10632,10631,10636,10635,43,10838,10837,10827,10826,0,6,5,16,30,10645,10646,10647,10648,43,10837,10836,10828,10827,0,6,5,16,30,10646,10649,10650,10647,43,10840,10839,10832,10825,0,6,5,16,30,10651,10652,10653,10654,43,10835,10840,10825,10829,0,6,5,16,30,10655,10651,10654,10656,43,10834,10835,10829,10830,0,6,5,16,30,10657,10655,10656,10658,43,10833,10834,10830,10831,0,6,5,16,30,10659,10657,10658,10660,43,10839,10838,10826,10832,0,6,5,16,30,10652,10645,10648,10653,43,10848,10842,10838,10839,0,6,5,16,30,10636,10631,10645,10652,43,10847,10846,10834,10833,0,6,5,16,30,10643,10641,10657,10659,43,10846,10845,10835,10834,0,6,5,16,30,10641,10639,10655,10657,43,10845,10841,10840,10835,0,6,5,16,30,10639,10637,10651,10655,43,10841,10848,10839,10840,0,6,5,16,30,10637,10636,10652,10651,43,10843,10844,10836,10837,0,6,5,16,30,10630,10634,10649,10646,43,10842,10843,10837,10838,0,6,5,16,30,10631,10630,10646,10645,43,10836,10850,10849,10828,0,6,5,16,30,10649,10661,10662,10650,43,10844,10851,10850,10836,0,6,5,16,30,10634,10663,10661,10649,43,10852,10833,10831,10853,0,6,5,16,30,10664,10659,10660,10665,43,10854,10847,10833,10852,0,6,5,16,30,10666,10643,10659,10664,43,10819,10823,10851,10844,0,6,5,16,30,10633,10667,10663,10634,43,10816,10847,10854,10822,0,6,5,16,30,10644,10643,10666,10668,43,10879,10861,10886,10883,0,1484,953,1485,1486,10669,10670,10671,10672,43,10883,10886,10881,10628,0,1486,1485,1069,1487,10672,10671,10673,10674,43,10882,10884,10885,10887,0,1069,1487,1484,953,10675,10676,10677,10678,43,10887,10885,10628,10881,0,1069,1487,1484,953,10678,10677,10674,10673,43,10862,10880,10884,10882,0,1069,1487,1484,953,10679,10680,10676,10675,43,10861,10624,10629,10886,0,1488,44,47,1489,10670,10460,10459,10671,43,10886,10629,10630,10881,0,1489,47,16,1490,10671,10459,10482,10673,43,10631,10882,10887,10632,0,16,1490,1488,44,10464,10675,10678,10485,43,10632,10887,10881,10630,0,16,1490,1488,44,10485,10678,10673,10482,43,10625,10862,10882,10631,0,16,1490,1488,44,10463,10679,10675,10464,43,10863,10879,10883,10889,0,1491,1492,1493,1494,10681,10669,10672,10682,43,10889,10883,10628,10888,0,1494,1493,1495,1496,10682,10672,10674,10683,43,10884,10876,10877,10885,0,1495,1496,1491,1492,10676,10684,10685,10677,43,10885,10877,10888,10628,0,1495,1496,1491,1492,10677,10685,10683,10674,43,10880,10878,10876,10884,0,1495,1496,1491,1492,10680,10686,10684,10676,43,10868,10894,10895,10869,0,0,719,1069,49,10687,10688,10689,10690,43,10894,10759,10760,10895,0,719,5,16,1069,10688,10561,10562,10689,43,10867,10893,10894,10868,0,0,719,1069,49,10691,10692,10688,10687,43,10893,10758,10759,10894,0,719,5,16,1069,10692,10563,10561,10688,43,10866,10892,10893,10867,0,0,719,1069,49,10693,10694,10692,10691,43,10892,10757,10758,10893,0,719,5,16,1069,10694,10564,10563,10692,43,10864,10890,10891,10865,0,0,719,1069,49,10695,10696,10697,10698,43,10890,10755,10756,10891,0,719,5,16,1069,10696,10565,10566,10697,43,10871,10897,10898,10872,0,0,719,1069,49,10699,10700,10701,10702,43,10897,10762,10763,10898,0,719,5,16,1069,10700,10567,10568,10701,43,10875,10901,10890,10864,0,0,719,1069,49,10703,10704,10696,10695,43,10901,10766,10755,10890,0,719,5,16,1069,10704,10569,10565,10696,43,10872,10898,10899,10873,0,0,719,1069,49,10702,10701,10705,10706,43,10898,10763,10764,10899,0,719,5,16,1069,10701,10568,10570,10705,43,10873,10899,10900,10874,0,0,719,1069,49,10706,10705,10707,10708,43,10899,10764,10765,10900,0,719,5,16,1069,10705,10570,10571,10707,43,10874,10900,10901,10875,0,0,719,1069,49,10708,10707,10704,10703,43,10900,10765,10766,10901,0,719,5,16,1069,10707,10571,10569,10704,43,10865,10891,10892,10866,0,0,719,1069,49,10698,10697,10694,10693,43,10891,10756,10757,10892,0,719,5,16,1069,10697,10566,10564,10694,43,10869,10895,10896,10870,0,0,719,1069,49,10690,10689,10709,10710,43,10895,10760,10761,10896,0,719,5,16,1069,10689,10562,10572,10709,43,10746,10863,10889,10904,0,1497,1498,1499,1500,10711,10681,10682,10712,43,10904,10889,10888,10903,0,1500,1499,1501,1502,10712,10682,10683,10713,43,10876,10902,10752,10877,0,1501,1502,1497,1498,10684,10714,10715,10685,43,10877,10752,10903,10888,0,1501,1502,1497,1498,10685,10715,10713,10683,43,10878,10749,10902,10876,0,1501,1502,1497,1498,10686,10716,10714,10684,43,10746,10909,10910,10747,0,6,952,1066,30,10711,10717,10718,10719,43,10909,10868,10869,10910,0,952,0,49,1066,10717,10687,10690,10718,43,10904,10908,10909,10746,0,6,952,1066,30,10712,10720,10717,10711,43,10908,10867,10868,10909,0,952,0,49,1066,10720,10691,10687,10717,43,10903,10907,10908,10904,0,6,952,1066,30,10713,10721,10720,10712,43,10907,10866,10867,10908,0,952,0,49,1066,10721,10693,10691,10720,43,10902,10905,10906,10752,0,6,952,1066,30,10714,10722,10723,10715,43,10905,10864,10865,10906,0,952,0,49,1066,10722,10695,10698,10723,43,10748,10912,10913,10754,0,6,952,1066,30,10724,10725,10726,10727,43,10912,10871,10872,10913,0,952,0,49,1066,10725,10699,10702,10726,43,10749,10916,10905,10902,0,6,952,1066,30,10716,10728,10722,10714,43,10916,10875,10864,10905,0,952,0,49,1066,10728,10703,10695,10722,43,10754,10913,10914,10750,0,6,952,1066,30,10727,10726,10729,10730,43,10913,10872,10873,10914,0,952,0,49,1066,10726,10702,10706,10729,43,10750,10914,10915,10753,0,6,952,1066,30,10730,10729,10731,10732,43,10914,10873,10874,10915,0,952,0,49,1066,10729,10706,10708,10731,43,10753,10915,10916,10749,0,6,952,1066,30,10732,10731,10728,10716,43,10915,10874,10875,10916,0,952,0,49,1066,10731,10708,10703,10728,43,10752,10906,10907,10903,0,6,952,1066,30,10715,10723,10721,10713,43,10906,10865,10866,10907,0,952,0,49,1066,10723,10698,10693,10721,43,10747,10910,10911,10751,0,6,952,1066,30,10719,10718,10733,10734,43,10910,10869,10870,10911,0,952,0,49,1066,10718,10690,10710,10733,43,10464,10465,10921,10922,0,6,30,16,5,3471,3471,3471,3471,43,10922,10921,10924,10923,0,6,30,16,5,3471,3471,3471,3471,43,10924,10932,10929,10923,0,30,49,0,6,3471,3471,3471,3471,43,10934,10448,10456,10933,0,50,6,5,44,3471,10735,10736,10737,43,10933,10455,10457,10934,0,44,16,30,50,10737,10314,3471,3471,43,10448,10934,10935,10452,0,6,0,49,30,10735,3471,3471,10738,43,10934,10457,10460,10935,0,0,5,16,49,3471,3471,3471,3471,43,10452,10935,10936,10451,0,5,44,50,6,10738,3471,3471,10739,43,10935,10460,10462,10936,0,44,16,30,50,3471,3471,3471,3471,43,10451,10936,10937,10467,0,6,0,49,30,10739,3471,3471,10740,43,10936,10462,10464,10937,0,0,5,16,49,3471,3471,3471,3471,43,10467,10937,10938,10919,0,6,0,49,30,10740,3471,3471,10741,43,10937,10464,10922,10938,0,0,5,16,49,3471,3471,3471,3471,43,10919,10938,10939,10926,0,6,0,49,30,10741,3471,3471,10742,43,10938,10922,10923,10939,0,0,5,16,49,3471,3471,3471,3471,43,10929,10940,10939,10923,0,44,53,0,5,3471,10743,3471,3471,43,10940,10930,10926,10939,0,53,50,6,0,10743,10744,10742,3471,43,10449,10942,10941,10453,0,6,50,44,5,10745,10746,10747,10748,43,10942,10458,10454,10941,0,50,30,16,44,10746,3471,3471,10747,43,10450,10943,10942,10449,0,5,44,50,6,10749,3471,10746,10745,43,10943,10459,10458,10942,0,44,16,30,50,3471,3471,3471,10746,43,10461,10944,10943,10450,0,30,49,0,6,10750,3471,3471,10749,43,10944,10463,10459,10943,0,49,16,5,0,3471,3471,3471,3471,43,10466,10945,10944,10461,0,30,49,0,6,10751,3471,3471,10750,43,10945,10465,10463,10944,0,49,16,5,0,3471,3471,3471,3471,43,10465,10945,10946,10921,0,6,50,44,5,3471,3471,3471,3471,43,10945,10466,10920,10946,0,50,30,16,44,3471,10751,10752,3471,43,10921,10946,10947,10924,0,6,50,44,5,3471,3471,3471,3471,43,10946,10920,10925,10947,0,50,30,16,44,3471,10752,10753,3471,43,10931,10948,10947,10925,0,49,53,50,30,10754,10755,3471,10753,43,10948,10932,10924,10947,0,53,0,6,50,10755,3471,3471,3471,43,10932,10952,10949,10929,0,49,1069,719,0,3471,10756,10757,3471,43,10952,10927,10928,10949,0,1069,16,5,719,10756,10758,10759,10757,43,10950,10953,10949,10928,0,49,52,47,16,10760,10761,10757,10759,43,10953,10940,10929,10949,0,52,53,44,47,10761,10743,3471,10757,43,10950,10930,10940,10953,0,1091,50,53,1503,10760,10744,10743,10761,43,10954,10948,10931,10951,0,953,53,49,1504,10762,10755,10754,10763,43,10927,10952,10954,10951,0,5,719,953,44,10758,10756,10762,10763,43,10952,10932,10948,10954,0,719,0,53,953,10756,3471,10755,10762,43,10455,10956,10957,10454,0,5,44,50,6,10314,10764,10765,3471,43,10956,10917,10918,10957,0,44,16,30,50,10764,10766,10767,10765,43,10933,10959,10956,10455,0,0,53,50,6,10737,10768,10764,10314,43,10959,10955,10917,10956,0,53,49,30,50,10768,10769,10766,10764,43,10456,10955,10959,10933,0,5,44,53,0,10736,10769,10768,10737,43,10941,10960,10958,10453,0,50,1505,0,6,10747,10770,10771,10748,43,10454,10957,10960,10941,0,30,49,53,50,3471,10765,10770,10747,43,10957,10918,10958,10960,0,49,16,44,53,10765,10767,10771,10770,43,10203,10963,10961,10177,0,0,53,50,6,10025,10772,10773,10026,43,10963,10204,10184,10961,0,53,49,30,50,10772,10076,10079,10773,43,10177,10961,10964,10194,0,6,0,49,30,10026,10773,10774,10055,43,10961,10184,10181,10964,0,0,5,16,49,10773,10079,10288,10774,43,10220,10965,10964,10181,0,30,1506,0,6,10291,10775,10774,10288,43,10965,10192,10194,10964,0,1506,16,5,0,10775,10058,10055,10774,43,10299,10970,10962,10180,0,1363,1507,0,5,10088,10776,10777,10089,43,10970,10301,10182,10962,0,1507,87,6,0,10776,10099,10098,10777,43,10308,10971,10967,10252,0,1366,1508,53,44,10108,10778,10779,10109,43,10971,10310,10254,10967,0,1508,1370,50,53,10778,10119,10118,10779,43,10318,10972,10968,10259,0,1375,1473,52,47,10128,10780,10781,10129,43,10972,10320,10261,10968,0,1473,150,51,52,10780,10139,10138,10781,43,10325,10973,10966,10235,0,161,1509,1375,16,10144,10782,10783,10145,43,10973,10326,10234,10966,0,1509,1305,47,1375,10782,10159,10158,10783,43,10265,10969,10974,10335,0,30,150,1482,1390,10164,10784,10785,10165,43,10969,10266,10336,10974,0,150,51,1389,1482,10784,10179,10178,10785,43,10345,10975,10963,10203,0,719,953,53,0,10182,10786,10772,10025,43,10975,10346,10204,10963,0,953,1069,49,53,10786,10189,10076,10772,43,10180,10962,10975,10345,0,5,675,1510,719,10089,10777,10786,10182,43,10962,10182,10346,10975,0,675,16,1069,1510,10777,10098,10189,10786,43,10359,10976,10970,10299,0,1409,1412,1507,1363,10194,10787,10776,10088,43,10976,10361,10301,10970,0,1412,1407,87,1507,10787,10199,10099,10776,43,10252,10967,10976,10359,0,44,53,1412,1409,10109,10779,10787,10194,43,10967,10254,10361,10976,0,53,50,1407,1412,10779,10118,10199,10787,43,10368,10977,10971,10308,0,1413,1419,1511,1366,10204,10788,10778,10108,43,10977,10370,10310,10971,0,1419,1414,1370,1511,10788,10209,10119,10778,43,10259,10968,10977,10368,0,47,1384,1419,1413,10129,10781,10788,10204,43,10968,10261,10370,10977,0,1384,51,1414,1419,10781,10138,10209,10788,43,10378,10978,10972,10318,0,1512,1513,1514,1375,10214,10789,10780,10128,43,10978,10380,10320,10972,0,1513,1421,150,1514,10789,10219,10139,10780,43,10235,10966,10978,10378,0,16,49,1513,1512,10145,10783,10789,10214,43,10966,10234,10380,10978,0,49,30,1421,1513,10783,10158,10219,10789,43,10385,10979,10973,10325,0,1426,1515,1514,161,10222,10790,10782,10144,43,10979,10386,10326,10973,0,1515,1429,1305,1514,10790,10229,10159,10782,43,10335,10974,10979,10385,0,1390,1395,1515,1426,10165,10785,10790,10222,43,10974,10336,10386,10979,0,1395,1389,1429,1515,10785,10178,10229,10790,43,10191,10223,10226,10980,0,6,5,16,30,10057,10062,10071,10791,43,10173,10980,10226,10222,0,6,30,16,5,10036,10791,10071,10045,43,10191,10980,10219,10193,0,6,30,16,5,10057,10791,10043,10042,43,10173,10217,10219,10980,0,6,5,16,30,10036,10035,10043,10791,43,10685,10983,10984,10686,0,151,49,53,152,10792,10793,10794,10795,43,10983,10681,10682,10984,0,49,153,154,53,10793,10796,10797,10794,43,10686,10984,10985,10687,0,151,49,53,152,10795,10794,10798,10799,43,10984,10682,10683,10985,0,49,153,154,53,10794,10797,10800,10798,43,10687,10985,10982,10680,0,151,49,53,152,10799,10798,10801,10802,43,10985,10683,10678,10982,0,49,153,154,53,10798,10800,10803,10801,43,10679,10981,10986,10688,0,151,49,53,152,10804,10805,10806,10807,43,10981,10677,10684,10986,0,49,153,154,53,10805,10808,10809,10806,43,10688,10986,10983,10685,0,151,49,53,155,10807,10806,10793,10792,43,10986,10684,10681,10983,0,49,153,154,53,10806,10809,10796,10793,43,10684,10988,10987,10681,0,151,49,53,155,10809,10810,10811,10796,43,10988,10855,10858,10987,0,49,153,154,53,10810,10812,10813,10811,43,10677,10989,10988,10684,0,151,49,53,152,10808,10814,10810,10809,43,10989,10860,10855,10988,0,49,153,154,53,10814,10815,10812,10810,43,10683,10991,10990,10678,0,151,49,53,152,10800,10816,10817,10803,43,10991,10856,10859,10990,0,49,153,154,53,10816,10818,10819,10817,43,10682,10992,10991,10683,0,151,49,53,152,10797,10820,10816,10800,43,10992,10857,10856,10991,0,49,153,154,53,10820,10821,10818,10816,43,10681,10987,10992,10682,0,151,49,53,152,10796,10811,10820,10797,43,10987,10858,10857,10992,0,49,153,154,53,10811,10813,10821,10820,43,10104,10998,10995,10101,0,5,91,87,6,10822,10823,10824,10825,43,10998,10100,10105,10995,0,91,44,50,87,10823,10826,10827,10824,43,10097,10993,10998,10104,0,5,91,87,6,10828,10829,10823,10822,43,10993,10096,10100,10998,0,91,44,50,87,10829,10830,10826,10823,43,10103,10996,10994,10099,0,5,91,87,6,10831,10832,10833,10834,43,10996,10106,10098,10994,0,91,44,50,87,10832,10835,10836,10833,43,10106,10996,10997,10107,0,50,87,91,44,10835,10832,10837,10838,43,10996,10103,10102,10997,0,87,6,5,91,10832,10831,10839,10837,43,10101,10995,10997,10102,0,5,91,87,6,10825,10824,10837,10839,43,10995,10105,10107,10997,0,91,44,50,87,10824,10827,10838,10837,43,10010,11001,12207,11193,0,50,87,91,44,9859,10840,10841,9856,43,11001,10008,11189,12207,0,87,6,5,91,10840,10842,10843,10841,43,10011,11004,11005,10010,0,16,49,53,44,9858,10844,10845,9859,43,11004,10005,10009,11005,0,49,30,50,53,10844,10846,10847,10845,43,10005,11004,11002,10007,0,6,0,161,30,10846,10844,10848,10849,43,11004,10011,10006,11002,0,0,5,16,161,10844,9858,9861,10848,43,11001,11006,11003,10008,0,91,1516,0,5,10840,10850,10851,10842,43,11006,11000,10004,11003,0,1516,87,6,0,10850,10852,10853,10851,43,10010,11005,11006,11001,0,44,53,1365,91,9859,10845,10850,10840,43,11005,10009,11000,11006,0,53,50,87,1365,10845,10847,10852,10850,43,11025,11028,11063,11023,0,6,30,16,5,10854,10855,10856,10857,43,11028,11025,11031,11032,0,5,6,50,1009,10855,10854,10858,10859,43,11039,11041,11035,11030,0,6,5,16,30,10860,10861,10862,10863,43,11030,11031,11025,11039,0,6,5,16,30,10863,10858,10854,10860,43,11020,11021,11066,12189,0,1002,1003,1013,1014,10864,10865,10866,10867,43,11040,11065,11034,11033,0,1015,50,30,16,10868,10869,10870,10871,43,11023,11040,11039,11025,0,6,30,16,5,10857,10868,10860,10854,43,11008,11043,11021,11020,0,1036,1037,1004,1001,9703,10872,10865,10864,43,11043,11008,12193,11024,0,1037,1036,1038,1039,10872,9703,9706,10873,43,11033,11034,11042,11041,0,6,30,16,5,10871,10870,10874,10861,43,11035,11041,11042,11036,0,6,30,16,5,10862,10861,10874,10875,43,11033,11041,11039,11040,0,6,30,16,5,10871,10861,10860,10868,43,11066,11021,11044,11064,0,0,6,1056,1057,10866,10865,10876,10877,43,11064,11044,11034,11065,0,1057,1056,30,49,10877,10876,10870,10869,43,11042,11034,11044,11047,0,1060,5,1061,1062,10874,10870,10876,10878,43,11047,11044,11021,11043,0,1062,1061,6,50,10878,10876,10865,10872,43,11036,11042,11047,11045,0,16,1060,1062,176,10875,10874,10878,10879,43,11045,11047,11043,11024,0,176,1062,50,30,10879,10878,10872,10873,43,11024,12193,12194,11053,0,1039,1038,1088,1089,10873,9706,9714,10880,43,11007,11022,11053,12194,0,1002,1003,1089,1088,9715,10881,10880,9714,43,11031,11030,11048,11049,0,49,1061,719,1090,10858,10863,10882,10883,43,11049,11048,11026,11027,0,1090,719,5,16,10883,10882,10884,10885,43,11032,11031,11049,11050,0,1009,50,1091,1092,10859,10858,10883,10886,43,11050,11049,11027,11029,0,1092,1091,30,16,10886,10883,10885,10887,43,11035,11036,11052,11051,0,5,6,163,44,10862,10875,10888,10889,43,11051,11052,11037,11038,0,44,163,30,16,10889,10888,10890,10891,43,11038,11026,11048,11051,0,30,6,0,49,10891,10884,10882,10889,43,11051,11048,11030,11035,0,49,0,5,16,10889,10882,10863,10862,43,11045,11024,11053,11054,0,1107,5,0,53,10879,10873,10880,10892,43,11054,11053,11022,11046,0,53,0,6,50,10892,10880,10881,10893,43,11036,11045,11054,11052,0,16,1107,53,182,10875,10879,10892,10888,43,11052,11054,11046,11037,0,182,53,50,30,10888,10892,10893,10890,43,11058,11059,11061,11056,0,6,30,16,5,10894,10895,10896,10897,43,12192,12190,11059,11058,0,6,30,16,5,9733,9734,10895,10894,43,11057,11060,11062,11055,0,6,30,16,5,10898,10899,10900,10901,43,11056,11061,11060,11057,0,6,30,16,5,10897,10896,10899,10898,43,11061,11064,11065,11060,0,6,30,16,5,10896,10877,10869,10899,43,12190,12189,11066,11059,0,6,30,16,5,9734,10867,10866,10895,43,11059,11066,11064,11061,0,6,30,16,5,10895,10866,10877,10896,43,11023,11063,11062,11060,0,6,30,16,5,10857,10856,10900,10899,43,11023,11060,11065,11040,0,6,30,16,5,10857,10899,10869,10868,43,11058,11056,11068,11067,0,5,6,87,91,10894,10897,10902,10903,43,12192,11058,11067,12191,0,5,6,87,91,9733,10894,10903,9741,43,11057,11055,11069,11070,0,5,6,87,91,10898,10901,10904,10905,43,11056,11057,11070,11068,0,5,6,87,91,10897,10898,10905,10902,43,11073,11072,11081,11079,0,53,1304,1303,1302,10906,10907,10908,10909,43,11074,11073,11079,11078,0,1305,53,1307,1306,10910,10906,10909,10911,43,11071,11074,11078,11080,0,1308,1305,1310,1309,10912,10910,10911,10913,43,11100,11097,11092,11090,0,1308,1305,1310,1309,10914,10915,10916,10917,43,11097,11098,11091,11092,0,1305,53,1307,1306,10915,10918,10919,10916,43,11098,11099,11089,11091,0,53,1304,1303,1302,10918,10920,10921,10919,43,11103,11102,11111,11109,0,53,1304,1303,1302,10922,10923,10924,10925,43,11104,11103,11109,11108,0,1305,53,1307,1306,10926,10922,10925,10927,43,11101,11104,11108,11110,0,1308,1305,1310,1309,10928,10926,10927,10929,43,11130,11127,11122,11120,0,1308,1305,1310,1309,10930,10931,10932,10933,43,11127,11128,11121,11122,0,1305,53,1307,1306,10931,10934,10935,10932,43,11128,11129,11119,11121,0,53,1304,1303,1302,10934,10936,10937,10935,43,11079,11081,11134,11132,0,1302,1303,1312,1311,10909,10908,10938,10939,43,11078,11079,11132,11131,0,1306,1307,1311,1313,10911,10909,10939,10940,43,11080,11078,11131,11133,0,1309,1310,1313,1314,10913,10911,10940,10941,43,11076,11077,11137,11136,0,953,1317,1316,1315,10942,10943,10944,10945,43,11090,11092,11141,11139,0,1309,1310,1319,1318,10917,10916,10946,10947,43,11092,11091,11140,11141,0,1306,1307,1311,1313,10916,10919,10948,10946,43,11091,11089,11138,11140,0,1302,1303,1321,1320,10919,10921,10949,10948,43,11094,11096,11145,11143,0,1069,1324,1323,1322,10950,10951,10952,10953,43,11096,11095,11144,11145,0,1324,953,1326,1325,10951,10954,10955,10952,43,11095,11093,11142,11144,0,953,1317,1328,1327,10954,10956,10957,10955,43,11109,11111,11149,11147,0,1302,1303,1329,1311,10925,10924,10958,10959,43,11108,11109,11147,11146,0,1306,1307,1311,1313,10927,10925,10959,10960,43,11110,11108,11146,11148,0,1309,1310,1319,1318,10929,10927,10960,10961,43,11105,11107,11153,11151,0,953,1317,1316,1326,10962,10963,10964,10965,43,11106,11173,11150,11152,0,1069,1324,1325,1330,10966,10967,10968,10969,43,11120,11122,11157,11155,0,1309,1310,1313,1318,10933,10932,10970,10971,43,11122,11121,11156,11157,0,1306,1307,1311,1313,10932,10935,10972,10970,43,11121,11119,11154,11156,0,1302,1303,1329,1311,10935,10937,10973,10972,43,11124,11126,11161,11159,0,1069,1324,1325,1330,10974,10975,10976,10977,43,11126,11125,11160,11161,0,1324,953,1326,1325,10975,10978,10979,10976,43,11125,11123,11158,11160,0,953,1317,1331,1315,10978,10980,10981,10979,43,11136,11137,11164,11163,0,1315,1316,1333,1332,10945,10944,10982,10983,43,11163,11164,11084,11083,0,1332,1333,1335,1334,10983,10982,10984,10985,43,11135,11075,11165,11167,0,1325,1324,1337,1336,10986,10987,10988,10989,43,11167,11165,11076,11136,0,1336,1337,953,1326,10989,10988,10942,10945,43,11162,11135,11167,11168,0,1338,1325,1336,1339,10990,10986,10989,10991,43,11168,11167,11136,11163,0,1339,1336,1326,1340,10991,10989,10945,10983,43,11082,11162,11168,11166,0,1341,1338,1339,1342,10992,10990,10991,10993,43,11166,11168,11163,11083,0,1342,1339,1340,1343,10993,10991,10983,10985,43,11143,11145,11172,11170,0,1322,1323,1338,1344,10953,10952,10994,10995,43,11170,11172,11088,11086,0,1344,1338,1346,1345,10995,10994,10996,10997,43,11145,11144,11171,11172,0,1325,1326,1340,1338,10952,10955,10998,10994,43,11172,11171,11087,11088,0,1338,1340,1343,1341,10994,10998,10999,10996,43,11144,11142,11169,11171,0,1327,1328,1348,1347,10955,10957,11000,10998,43,11171,11169,11085,11087,0,1347,1348,1335,1334,10998,11000,11001,10999,43,11150,11173,11105,11151,0,1349,1337,953,1326,10968,10967,10962,10965,43,11151,11153,11177,11175,0,1326,1316,1351,1350,10965,10964,11002,11003,43,11175,11177,11114,11112,0,1350,1351,1335,1334,11003,11002,11004,11005,43,11152,11150,11178,11176,0,1330,1325,1353,1352,10969,10968,11006,11007,43,11176,11178,11174,11113,0,1352,1353,1346,1345,11007,11006,11008,11009,43,11112,11174,11178,11175,0,1343,1342,1339,1340,11005,11008,11006,11003,43,11175,11178,11150,11151,0,1340,1339,1336,1326,11003,11006,10968,10965,43,11159,11161,11182,11180,0,1330,1325,1338,1344,10977,10976,11010,11011,43,11180,11182,11118,11116,0,1344,1338,1346,1345,11011,11010,11012,11013,43,11161,11160,11181,11182,0,1325,1326,1340,1338,10976,10979,11014,11010,43,11182,11181,11117,11118,0,1338,1340,1343,1341,11010,11014,11015,11012,43,11160,11158,11179,11181,0,1315,1331,1348,1354,10979,10981,11016,11014,43,11181,11179,11115,11117,0,1354,1348,1335,1334,11014,11016,11017,11015,43,11193,11191,11192,11009,0,44,50,30,16,9856,11018,11019,9857,43,11192,11185,11186,11009,0,6,30,16,5,11019,11020,9860,9857,43,11194,11202,11203,11195,0,700,7,86,1245,11021,11022,11023,11024,43,11202,11200,11201,11203,0,700,7,86,92,11022,11025,11026,11023,43,11195,11197,11196,11194,0,1250,92,700,7,11024,11027,11028,11021,43,11205,11207,11206,11204,0,674,1264,706,1355,11029,11030,11031,11032,43,11213,11211,11210,11212,0,1265,681,706,15,11033,11034,11035,11036,43,11207,11213,11212,11206,0,1265,1264,706,15,11030,11033,11036,11031,43,11209,11205,11204,11208,0,1265,681,1356,1355,11037,11029,11032,11038,43,11201,11200,11214,11215,0,92,700,1358,1357,11026,11025,11039,11040,43,11215,11214,11198,11199,0,1357,1358,7,86,11040,11039,11041,11042,43,11211,11217,11216,11210,0,6,30,16,5,11034,11043,11044,11035,43,11197,11219,11218,11196,0,6,30,16,5,11027,11045,11046,11028,43,11208,11220,11221,11209,0,6,30,16,5,11038,11047,11048,11037,43,11233,11223,11222,11232,0,6,30,16,5,11049,11050,11051,11052,43,11242,11224,11225,11243,0,6,30,16,5,11053,11054,11055,11056,43,11240,11241,11227,11226,0,92,700,1358,1357,11057,11058,11059,11060,43,11232,11236,11237,11233,0,1265,681,1356,1355,11052,11061,11062,11049,43,11234,11228,11229,11235,0,1265,1264,706,15,11063,11064,11065,11066,43,11228,11230,11231,11229,0,1265,681,706,15,11064,11067,11068,11065,43,11236,11234,11235,11237,0,674,1264,706,1355,11061,11063,11066,11062,43,11244,11242,11243,11245,0,1250,92,700,7,11069,11053,11056,11070,43,11239,11241,11240,11238,0,700,7,86,92,11071,11058,11057,11072,43,11245,11239,11238,11244,0,700,7,86,1245,11070,11071,11072,11069,43,11246,11252,11253,11247,0,700,7,86,1245,11073,11074,11075,11076,43,11252,11250,11251,11253,0,700,7,86,92,11074,11077,11078,11075,43,11247,11249,11248,11246,0,1250,92,700,7,11076,11079,11080,11073,43,11251,11250,11254,11255,0,92,700,1358,1357,11078,11077,11081,11082,43,11249,11257,11256,11248,0,6,30,16,5,11079,11083,11084,11080,43,11258,11259,11269,11268,0,5,6,50,44,11085,11086,11087,11088,43,11268,11269,11265,11264,0,44,50,30,16,11088,11087,11089,11090,43,11259,11260,11266,11269,0,5,6,50,44,11086,11091,11092,11087,43,11269,11266,11262,11265,0,44,50,30,16,11087,11092,11093,11089,43,11272,11271,11260,11259,0,161,162,5,16,11094,11095,11091,11086,43,11273,11272,11259,11258,0,44,163,30,16,11096,11094,11086,11085,43,11266,11260,11274,11276,0,44,5,0,53,11092,11091,11097,11098,43,11276,11274,11261,11267,0,53,0,6,50,11098,11097,11099,11100,43,11262,11266,11276,11275,0,16,44,53,49,11093,11092,11098,11101,43,11275,11276,11267,11263,0,49,53,50,30,11101,11098,11100,11102,43,11260,11271,11277,11274,0,16,175,53,176,11091,11095,11103,11097,43,11274,11277,11270,11261,0,176,53,163,30,11097,11103,11104,11099,43,11291,11290,11294,11296,0,6,5,1248,1254,11105,11106,11107,11108,43,11296,11294,11295,11297,0,1254,1248,1359,1243,11108,11107,11109,11110,43,11297,11295,11298,11299,0,1243,1359,15,1360,11110,11109,11111,11112,43,11299,11298,11293,11292,0,1360,15,16,30,11112,11111,11113,11114,43,11300,11301,11306,11307,0,1360,15,16,30,11115,11116,11117,11118,43,11302,11304,11301,11300,0,1243,1359,15,1360,11119,11120,11116,11115,43,11303,11305,11309,11308,0,1254,1248,1107,1361,11121,11122,11123,11124,43,11308,11309,11304,11302,0,1361,1107,1359,1243,11124,11123,11120,11119,43,11311,11310,11312,11313,0,1361,1107,1359,1243,11125,11126,11127,11128,43,11314,11315,11317,11316,0,6,30,16,5,11129,11130,11131,11132,43,11312,11310,11319,11318,0,5,6,50,44,11127,11126,11133,11134,43,11318,11319,11316,11317,0,44,50,30,16,11134,11133,11132,11131,43,11311,11313,11321,11320,0,5,6,50,44,11125,11128,11135,11136,43,11320,11321,11315,11314,0,44,50,30,16,11136,11135,11130,11129,43,11323,11322,11328,11329,0,44,50,30,16,11137,11138,11139,11140,43,11332,11330,11322,11323,0,5,6,50,44,11141,11142,11138,11137,43,11325,11324,11327,11326,0,44,50,30,16,11143,11144,11145,11146,43,11331,11333,11324,11325,0,5,6,50,44,11147,11148,11144,11143,43,11329,11328,11326,11327,0,6,30,16,5,11140,11139,11146,11145,43,11332,11333,11331,11330,0,1361,1107,1359,1243,11141,11148,11147,11142,43,11335,11334,11337,11339,0,1361,1107,1359,1243,11149,11150,11151,11152,43,11338,11336,11334,11335,0,1254,1248,1107,1361,11153,11154,11150,11149,43,11339,11337,11340,11341,0,1243,1359,15,1360,11152,11151,11155,11156,43,11344,11346,11343,11342,0,1243,1359,15,1360,11157,11158,11159,11160,43,11345,11347,11346,11344,0,1254,1248,1359,1243,11161,11162,11158,11157,43,11348,11349,11347,11345,0,6,5,1248,1254,11163,11164,11162,11161,43,11380,11383,11382,11381,0,6,30,16,5,11165,11166,11167,11168,43,11383,11384,11368,11382,0,6,30,16,5,11166,11169,11170,11167,43,11389,11478,11479,11396,0,1016,1017,1018,1019,11171,11172,11173,11174,43,11396,11479,11369,11350,0,1019,1018,1020,1021,11174,11173,11175,11176,43,11352,11389,11396,11390,0,1016,1022,1023,1019,11177,11171,11174,11178,43,11350,11354,11390,11396,0,1024,1021,1019,1023,11176,11179,11178,11174,43,11385,11361,11393,11395,0,1025,1022,1023,1026,11180,11181,11182,11183,43,11395,11393,11360,11386,0,1026,1023,1024,1027,11183,11182,11184,11185,43,11350,11369,11399,11397,0,1021,1020,1028,1029,11176,11175,11186,11187,43,11397,11399,11373,11371,0,1029,1028,1030,1031,11187,11186,11188,11189,43,11397,11398,11354,11350,0,1032,1033,1021,1024,11187,11190,11179,11176,43,11398,11397,11371,11372,0,1033,1032,1034,1035,11190,11187,11189,11191,43,11391,11355,11401,11402,0,1023,1024,1041,1042,11192,11193,11194,11195,43,11402,11401,11359,11392,0,1042,1041,1021,1019,11195,11194,11196,11197,43,11356,11391,11402,11400,0,1022,1023,1042,1025,11198,11192,11195,11199,43,11400,11402,11392,11358,0,1025,1042,1019,1016,11199,11195,11197,11200,43,11359,11401,11403,11376,0,6,30,16,5,11196,11194,11201,11202,43,11409,11406,11355,11391,0,1044,1027,1021,1019,11203,11204,11193,11192,43,11405,11409,11391,11356,0,1025,1044,1019,1016,11205,11203,11192,11198,43,11371,11373,11427,11425,0,1031,1030,1049,1050,11189,11188,11206,11207,43,11425,11427,11370,11351,0,1050,1049,1051,1008,11207,11206,11208,11209,43,11372,11371,11425,11426,0,1035,1034,1052,1053,11191,11189,11207,11210,43,11426,11425,11351,11353,0,1053,1052,1005,1008,11210,11207,11209,11211,43,11359,11376,11429,11424,0,6,30,49,1054,11196,11202,11212,11213,43,11424,11429,11377,11360,0,1054,49,16,5,11213,11212,11214,11184,43,11376,11374,11428,11429,0,6,30,1055,0,11202,11215,11216,11212,43,11429,11428,11375,11377,0,0,1055,16,5,11212,11216,11217,11214,43,11392,11359,11424,11430,0,1023,1024,1058,1059,11197,11196,11213,11218,43,11430,11424,11360,11393,0,1059,1058,1021,1019,11218,11213,11184,11182,43,11358,11392,11430,11423,0,1022,1023,1059,1025,11200,11197,11218,11219,43,11423,11430,11393,11361,0,1025,1059,1019,1016,11219,11218,11182,11181,43,11374,11407,11431,11428,0,16,181,1063,1055,11215,11220,11221,11216,43,11428,11431,11408,11375,0,1055,1063,50,30,11216,11221,11222,11217,43,11378,11379,11458,11457,0,5,6,186,184,11223,11224,11225,11226,43,11457,11458,11380,11381,0,184,186,30,16,11226,11225,11165,11168,43,11390,11354,11465,11468,0,1023,1024,1079,1080,11178,11179,11227,11228,43,11468,11465,11406,11409,0,1080,1079,1027,1044,11228,11227,11204,11203,43,11352,11390,11468,11464,0,1022,1023,1080,1081,11177,11178,11228,11229,43,11464,11468,11409,11405,0,1081,1080,1044,1025,11229,11228,11203,11205,43,11410,11406,11465,11469,0,1045,162,952,1082,11230,11204,11227,11231,43,11469,11465,11354,11398,0,1082,952,6,186,11231,11227,11179,11190,43,11407,11410,11469,11466,0,182,1045,1082,1083,11220,11230,11231,11232,43,11466,11469,11398,11372,0,1083,1082,186,30,11232,11231,11190,11191,43,11431,11407,11466,11470,0,1063,181,91,1085,11221,11220,11232,11233,43,11470,11466,11372,11426,0,1085,91,5,1086,11233,11232,11191,11210,43,11408,11431,11470,11467,0,50,1063,1085,1087,11222,11221,11233,11234,43,11467,11470,11426,11353,0,1087,1085,1086,6,11234,11233,11210,11211,43,11387,11367,11472,11473,0,1098,1093,1096,1099,11235,11236,11237,11238,43,11473,11472,11368,11384,0,1099,1096,1097,1100,11238,11237,11170,11169,43,11366,11412,11483,11482,0,5,6,87,91,11239,11240,11241,11242,43,11412,11411,11481,11483,0,5,6,1077,91,11240,11243,11244,11241,43,11394,11363,11485,11484,0,5,6,1077,91,11245,11246,11247,11248,43,11362,11394,11484,11486,0,5,6,87,91,11249,11245,11248,11250,43,11489,11481,11411,11459,0,1362,1363,5,0,11251,11244,11243,11252,43,11480,11489,11459,11413,0,1364,1362,0,6,11253,11251,11252,11254,43,11490,11488,11365,11474,0,1365,91,5,0,11255,11256,11257,11258,43,11482,11490,11474,11366,0,87,1365,0,6,11242,11255,11258,11239,43,11434,11435,11493,11492,0,44,50,1367,1366,11259,11260,11261,11262,43,11435,11433,11491,11493,0,44,50,1369,1368,11260,11263,11264,11261,43,11436,11437,11495,11494,0,44,50,1367,1368,11265,11266,11267,11268,43,11438,11436,11494,11496,0,44,50,1370,1368,11269,11265,11268,11270,43,11500,11491,11433,11461,0,1371,1368,175,1075,11271,11264,11263,11272,43,11499,11500,11461,11432,0,1372,1371,1075,1076,11273,11271,11272,11274,43,11501,11498,11439,11475,0,1373,1368,44,53,11275,11276,11277,11278,43,11492,11501,11475,11434,0,1367,1373,53,50,11262,11275,11278,11259,43,11441,11442,11504,11503,0,1374,1377,1376,1375,11279,11280,11281,11282,43,11442,11440,11502,11504,0,1374,1377,150,1378,11280,11283,11284,11281,43,11443,11444,11506,11505,0,47,51,150,1375,11285,11286,11287,11288,43,11445,11443,11505,11507,0,47,51,150,1375,11289,11285,11288,11290,43,11510,11502,11440,11462,0,1379,1375,1374,1380,11291,11284,11283,11292,43,11509,11510,11462,11448,0,1381,1379,1380,1382,11293,11291,11292,11294,43,11511,11508,11447,11476,0,1383,1375,47,1384,11295,11296,11297,11298,43,11503,11511,11476,11441,0,150,1383,1384,1377,11282,11295,11298,11279,43,11421,11420,11517,11516,0,16,47,52,161,11299,11300,11301,11302,43,11420,11419,11513,11517,0,16,47,1305,49,11300,11303,11304,11301,43,11417,11414,11520,11519,0,16,1374,1385,49,11305,11306,11307,11308,43,11416,11417,11519,11518,0,16,1374,1384,49,11309,11305,11308,11310,43,11460,11415,11512,11521,0,1386,1374,1387,1379,11311,11312,11313,11314,43,11414,11460,11521,11520,0,16,1386,1379,161,11306,11311,11314,11307,43,11471,11416,11518,11522,0,1375,47,52,1388,11315,11309,11310,11316,43,11418,11471,11522,11514,0,16,1375,1388,161,11317,11315,11316,11318,43,11526,11527,11450,11449,0,1066,1389,51,30,11319,11320,11321,11322,43,11527,11524,11451,11450,0,1390,1389,51,30,11320,11323,11324,11321,43,11529,11530,11456,11453,0,1066,1389,1377,30,11325,11326,11327,11328,43,11528,11529,11453,11454,0,1066,1391,1377,30,11329,11325,11328,11330,43,11531,11523,11455,11463,0,1392,1394,1382,1393,11331,11332,11333,11334,43,11530,11531,11463,11456,0,1390,1392,1393,30,11326,11331,11334,11327,43,11532,11528,11454,11477,0,1395,1397,1377,1396,11335,11329,11330,11336,43,11525,11532,11477,11452,0,1390,1395,1396,30,11337,11335,11336,11338,43,11394,11362,11533,11537,0,1019,1016,1399,1398,11245,11249,11339,11340,43,11537,11533,11385,11395,0,1398,1399,1025,1026,11340,11339,11180,11183,43,11363,11394,11537,11534,0,1021,1019,1398,1400,11246,11245,11340,11341,43,11534,11537,11395,11386,0,1400,1398,1026,1027,11341,11340,11183,11185,43,11383,11380,11539,11538,0,5,6,50,44,11166,11165,11342,11343,43,11538,11539,11411,11412,0,44,50,30,16,11343,11342,11243,11240,43,11412,11366,11536,11538,0,30,6,0,49,11240,11239,11344,11343,43,11538,11536,11384,11383,0,49,0,5,16,11343,11344,11169,11166,43,11458,11379,11540,11541,0,1074,1071,1402,1401,11225,11224,11345,11346,43,11541,11540,11413,11459,0,1401,1402,1072,1073,11346,11345,11254,11252,43,11380,11458,11541,11539,0,5,1074,1401,44,11165,11225,11346,11342,43,11539,11541,11459,11411,0,44,1401,1073,16,11342,11346,11252,11243,43,11474,11365,11535,11542,0,1066,49,1404,1403,11258,11257,11347,11348,43,11542,11535,11387,11473,0,1403,1404,1098,1099,11348,11347,11235,11238,43,11366,11474,11542,11536,0,30,1066,1403,1405,11239,11258,11348,11344,43,11536,11542,11473,11384,0,1405,1403,1099,1100,11344,11348,11238,11169,43,11482,11483,11546,11545,0,91,87,1407,1406,11242,11241,11349,11350,43,11545,11546,11435,11434,0,1406,1407,50,44,11350,11349,11260,11259,43,11483,11481,11544,11546,0,91,1077,1408,1406,11241,11244,11351,11349,43,11546,11544,11433,11435,0,1406,1408,50,44,11349,11351,11263,11260,43,11484,11485,11548,11547,0,91,1077,1408,1409,11248,11247,11352,11353,43,11547,11548,11437,11436,0,1409,1408,50,44,11353,11352,11266,11265,43,11486,11484,11547,11549,0,91,87,1408,1406,11250,11248,11353,11354,43,11549,11547,11436,11438,0,1406,1408,50,44,11354,11353,11265,11269,43,11461,11433,11544,11551,0,1075,175,1409,1410,11272,11263,11351,11355,43,11551,11544,11481,11489,0,1410,1409,1363,1362,11355,11351,11244,11251,43,11432,11461,11551,11543,0,1076,1075,1410,1411,11274,11272,11355,11356,43,11543,11551,11489,11480,0,1411,1410,1362,1364,11356,11355,11251,11253,43,11475,11439,11550,11552,0,53,44,1406,1412,11278,11277,11357,11358,43,11552,11550,11488,11490,0,1412,1406,91,1365,11358,11357,11256,11255,43,11434,11475,11552,11545,0,50,53,1412,1407,11259,11278,11358,11350,43,11545,11552,11490,11482,0,1407,1412,1365,87,11350,11358,11255,11242,43,11492,11493,11555,11554,0,1366,1367,1414,1413,11262,11261,11359,11360,43,11554,11555,11442,11441,0,1413,1414,1377,1374,11360,11359,11280,11279,43,11493,11491,11553,11555,0,1368,1369,1414,1415,11261,11264,11361,11359,43,11555,11553,11440,11442,0,1415,1414,1377,1374,11359,11361,11283,11280,43,11494,11495,11557,11556,0,1368,1367,1416,1415,11268,11267,11362,11363,43,11556,11557,11444,11443,0,1415,1416,51,47,11363,11362,11286,11285,43,11496,11494,11556,11558,0,1368,1370,1414,1415,11270,11268,11363,11364,43,11558,11556,11443,11445,0,1415,1414,51,47,11364,11363,11285,11289,43,11462,11440,11553,11561,0,1380,1374,1415,1417,11292,11283,11361,11365,43,11561,11553,11491,11500,0,1417,1415,1368,1371,11365,11361,11264,11271,43,11448,11462,11561,11560,0,1382,1380,1417,1418,11294,11292,11365,11366,43,11560,11561,11500,11499,0,1418,1417,1371,1372,11366,11365,11271,11273,43,11476,11447,11559,11562,0,1384,47,1415,1419,11298,11297,11367,11368,43,11562,11559,11498,11501,0,1419,1415,1368,1373,11368,11367,11276,11275,43,11441,11476,11562,11554,0,1377,1384,1419,1416,11279,11298,11368,11360,43,11554,11562,11501,11492,0,1416,1419,1373,1367,11360,11368,11275,11262,43,11503,11504,11565,11564,0,1375,1376,1421,1420,11282,11281,11369,11370,43,11564,11565,11417,11416,0,1420,1421,30,16,11370,11369,11305,11309,43,11504,11502,11563,11565,0,1378,150,1421,1420,11281,11284,11371,11369,43,11565,11563,11414,11417,0,1420,1421,30,16,11369,11371,11306,11305,43,11505,11506,11567,11566,0,1375,150,1421,1420,11288,11287,11372,11373,43,11566,11567,11419,11420,0,1420,1421,30,16,11373,11372,11303,11300,43,11507,11505,11566,11568,0,1375,150,1421,1420,11290,11288,11373,11374,43,11568,11566,11420,11421,0,1420,1421,30,16,11374,11373,11300,11299,43,11460,11414,11563,11571,0,49,16,1420,1422,11311,11306,11371,11375,43,11571,11563,11502,11510,0,1422,1420,1375,1379,11375,11371,11284,11291,43,11415,11460,11571,11570,0,30,49,1424,1423,11312,11311,11375,11376,43,11570,11571,11510,11509,0,1423,1424,1379,1381,11376,11375,11291,11293,43,11471,11418,11569,11572,0,49,16,1420,1425,11315,11317,11377,11378,43,11572,11569,11508,11511,0,1425,1420,1375,1383,11378,11377,11296,11295,43,11416,11471,11572,11564,0,30,49,1425,1421,11309,11315,11378,11370,43,11564,11572,11511,11503,0,1421,1425,1383,150,11370,11378,11295,11282,43,11516,11517,11577,11576,0,161,52,1427,1426,11302,11301,11379,11380,43,11576,11577,11527,11526,0,1426,1427,1389,1066,11380,11379,11320,11319,43,11517,11513,11574,11577,0,49,1305,1429,1428,11301,11304,11381,11379,43,11577,11574,11524,11527,0,1428,1429,1389,1390,11379,11381,11323,11320,43,11519,11520,11580,11579,0,49,1385,1431,1430,11308,11307,11382,11383,43,11579,11580,11530,11529,0,1430,1431,1389,1066,11383,11382,11326,11325,43,11518,11519,11579,11578,0,49,1384,1432,1428,11310,11308,11383,11384,43,11578,11579,11529,11528,0,1428,1432,1391,1066,11384,11383,11325,11329,43,11521,11512,11573,11581,0,1379,1387,1434,1433,11314,11313,11385,11386,43,11581,11573,11523,11531,0,1433,1434,1394,1392,11386,11385,11332,11331,43,11520,11521,11581,11580,0,161,1379,1433,1426,11307,11314,11386,11382,43,11580,11581,11531,11530,0,1426,1433,1392,1390,11382,11386,11331,11326,43,11522,11518,11578,11582,0,1388,52,1427,1435,11316,11310,11384,11387,43,11582,11578,11528,11532,0,1435,1427,1397,1395,11387,11384,11329,11335,43,11514,11522,11582,11575,0,161,1388,1435,1426,11318,11316,11387,11388,43,11575,11582,11532,11525,0,1426,1435,1395,1390,11388,11387,11335,11337,43,11361,11385,11588,11585,0,5,0,1436,44,11181,11180,11389,11390,43,11585,11588,11388,11011,0,44,1436,1012,16,11390,11389,10233,10232,43,11389,11352,11583,11589,0,5,6,50,44,11171,11177,11391,11392,43,11589,11583,11010,11013,0,44,50,30,16,11392,11391,10237,10236,43,11478,11389,11589,11598,0,5,6,50,44,11172,11171,11392,11393,43,11598,11589,11013,12203,0,44,50,30,16,11393,11392,10236,10239,43,12197,11357,11584,11590,0,1040,30,50,1437,10240,10243,11394,11395,43,11590,11584,11356,11400,0,1437,50,6,0,11395,11394,11198,11199,43,11012,12197,11590,11587,0,16,1040,1437,44,10244,10240,11395,11396,43,11587,11590,11400,11358,0,44,1437,0,5,11396,11395,11199,11200,43,11357,11014,11591,11584,0,16,1043,1438,49,10243,10247,11397,11394,43,11584,11591,11405,11356,0,49,1438,50,30,11394,11397,11205,11198,43,12204,11012,11587,11593,0,1048,30,50,1439,10248,10244,11396,11398,43,11593,11587,11358,11423,0,1439,50,6,162,11398,11396,11200,11219,43,11011,12204,11593,11585,0,16,1048,1439,1107,10232,10248,11398,11390,43,11585,11593,11423,11361,0,1107,1439,162,5,11390,11398,11219,11181,43,11017,11010,11583,11597,0,1078,5,1070,1440,10250,10237,11391,11399,43,11597,11583,11352,11464,0,1440,1070,6,1077,11399,11391,11177,11229,43,11014,11017,11597,11591,0,1043,1078,1440,1438,10247,10250,11399,11397,43,11591,11597,11464,11405,0,1438,1440,1077,50,11397,11399,11229,11205,43,11487,12198,11586,11599,0,1441,5,1061,1362,10252,10255,11400,11401,43,11599,11586,11362,11486,0,1362,1061,6,87,11401,11400,11249,11250,43,11497,11015,11594,11600,0,1442,1064,1075,1443,10256,10259,11402,11403,43,11600,11594,11438,11496,0,1443,1075,50,1370,11403,11402,11269,11270,43,12202,11446,11595,11601,0,1444,1446,1445,1379,10260,10263,11404,11405,43,11601,11595,11445,11507,0,1379,1445,51,150,11405,11404,11289,11290,43,11515,11422,11592,11602,0,49,16,1447,1379,10264,10267,11406,11407,43,11602,11592,11421,11516,0,1379,1447,1446,1387,11407,11406,11299,11302,43,11016,12201,11603,11596,0,30,1449,1448,150,10268,10271,11408,11409,43,11596,11603,11526,11449,0,150,1448,1450,51,11409,11408,11319,11322,43,11533,11362,11586,11604,0,977,6,1452,1451,11339,11249,11400,11410,43,11604,11586,12198,11018,0,1451,1452,30,1453,11410,11400,10255,10273,43,11385,11533,11604,11588,0,0,977,1454,1436,11180,11339,11410,11389,43,11588,11604,11018,11388,0,1436,1454,1453,1012,11389,11410,10273,10233,43,12200,11487,11599,11605,0,1455,1441,1362,1456,10274,10252,11401,11411,43,11605,11599,11486,11549,0,1456,1362,87,1407,11411,11401,11250,11354,43,11015,12200,11605,11594,0,1064,1455,1456,1457,10259,10274,11411,11402,43,11594,11605,11549,11438,0,1457,1456,1407,50,11402,11411,11354,11269,43,11019,11497,11600,11606,0,1458,1442,1443,1459,10276,10256,11403,11412,43,11606,11600,11496,11558,0,1459,1443,1370,1414,11412,11403,11270,11364,43,11446,11019,11606,11595,0,1446,1458,1459,1445,10263,10276,11412,11404,43,11595,11606,11558,11445,0,1445,1459,1414,51,11404,11412,11364,11289,43,12196,12202,11601,11607,0,1460,1444,1379,1424,10278,10260,11405,11413,43,11607,11601,11507,11568,0,1424,1379,150,1421,11413,11405,11290,11374,43,11422,12196,11607,11592,0,16,1460,1424,737,10267,10278,11413,11406,43,11592,11607,11568,11421,0,737,1424,1421,30,11406,11413,11374,11299,43,12199,11515,11602,11608,0,1428,49,1379,1461,10280,10264,11407,11414,43,11608,11602,11516,11576,0,1461,1379,1387,1462,11414,11407,11302,11380,43,12201,12199,11608,11603,0,1449,1428,1463,1448,10271,10280,11414,11408,43,11603,11608,11576,11526,0,1448,1463,1462,1450,11408,11414,11380,11319,43,11619,11620,11624,11623,0,30,6,0,49,11415,11416,11417,11418,43,11623,11624,11621,11622,0,49,0,5,16,11418,11417,11419,11420,43,11378,11457,11623,11622,0,6,30,16,5,11223,11226,11418,11420,43,11381,11619,11623,11457,0,6,5,16,30,11168,11415,11418,11226,43,11364,11404,11626,11625,0,30,6,739,957,11421,11422,11423,11424,43,11625,11626,11617,11618,0,957,739,5,16,11424,11423,11425,11426,43,11618,11617,11628,11627,0,30,6,0,1464,11426,11425,11427,11428,43,11627,11628,11620,11619,0,1464,0,5,16,11428,11427,11416,11415,43,11364,11625,11472,11367,0,6,30,16,5,11421,11424,11237,11236,43,11368,11472,11625,11618,0,6,30,16,5,11170,11237,11424,11426,43,11368,11618,11627,11382,0,6,5,16,30,11170,11426,11428,11167,43,11381,11382,11627,11619,0,6,5,16,30,11168,11167,11428,11415,43,11478,11598,11630,11629,0,44,5,0,185,11172,11393,11429,11430,43,11629,11630,11609,11611,0,185,0,6,50,11430,11429,11431,11432,43,11598,12203,11631,11630,0,16,44,1465,49,11393,10239,10300,11429,43,11630,11631,12195,11609,0,49,1465,50,30,11429,10300,10301,11431,43,11369,11479,11633,11632,0,1021,1019,1467,1466,11175,11173,11433,11434,43,11632,11633,11610,11616,0,1466,1467,1018,1020,11434,11433,11435,11436,43,11479,11478,11629,11633,0,1019,1016,1468,1467,11173,11172,11430,11433,43,11633,11629,11611,11610,0,1467,1468,1017,1018,11433,11430,11432,11435,43,11427,11373,11636,11635,0,1050,1031,1470,1469,11206,11188,11437,11438,43,11635,11636,11614,11612,0,1469,1470,1030,1049,11438,11437,11439,11440,43,11370,11427,11635,11634,0,1008,1050,1469,1471,11208,11206,11438,11441,43,11634,11635,11612,11615,0,1471,1469,1049,1051,11441,11438,11440,11442,43,11373,11399,11637,11636,0,1031,1029,1472,1470,11188,11186,11443,11437,43,11636,11637,11613,11614,0,1470,1472,1028,1030,11437,11443,11444,11439,43,11399,11369,11632,11637,0,1029,1021,1466,1472,11186,11175,11434,11443,43,11637,11632,11616,11613,0,1472,1466,1020,1028,11443,11434,11436,11444,43,11645,11647,11648,11644,0,6,30,16,5,11445,3471,3471,3471,43,11647,11650,11649,11648,0,6,30,16,5,3471,3471,3471,3471,43,11649,11650,11652,11653,0,6,5,16,30,3471,3471,3471,3471,43,11652,11654,11655,11653,0,6,5,16,30,3471,3471,3471,3471,43,11664,11665,11659,11658,0,30,16,44,50,11139,11140,11137,11138,43,11658,11659,11668,11666,0,50,44,5,6,11138,11137,11141,11142,43,11661,11660,11663,11662,0,44,50,30,16,11446,11144,11145,11146,43,11667,11669,11660,11661,0,5,6,50,44,11147,11148,11144,11446,43,11665,11664,11662,11663,0,6,30,16,5,11140,11139,11146,11145,43,11668,11669,11667,11666,0,1361,1107,1359,1243,11141,11148,11147,11142,43,11671,11670,11673,11675,0,1361,1107,1359,1243,11447,11448,11449,11450,43,11674,11672,11670,11671,0,1254,1248,1107,1361,11451,11452,11448,11447,43,11675,11673,11676,11677,0,1243,1359,15,1360,11450,11449,11453,11454,43,11680,11682,11679,11678,0,1243,1359,15,1360,11455,11456,11457,11458,43,11681,11683,11682,11680,0,1254,1248,1359,1243,11459,11460,11456,11455,43,11686,11684,11685,11687,0,1254,1248,1359,1243,11461,11462,11463,11464,43,11687,11685,11688,11689,0,1243,1359,15,1360,11464,11463,11465,11466,43,11692,11694,11691,11690,0,1243,1359,15,1360,11467,11468,11469,11470,43,11693,11695,11697,11696,0,1254,1248,1107,1361,11471,11472,11473,11474,43,11696,11697,11694,11692,0,1361,1107,1359,1243,11474,11473,11468,11467,43,11699,11698,11700,11701,0,1361,1107,1359,1243,11475,11476,11477,11478,43,11702,11703,11705,11704,0,6,30,16,5,11479,11480,11481,11482,43,11700,11698,11707,11706,0,5,6,50,44,11477,11476,11483,11484,43,11706,11707,11704,11705,0,44,50,30,16,11484,11483,11482,11481,43,11709,11708,11699,11701,0,50,44,5,6,11485,11486,11475,11478,43,11703,11702,11708,11709,0,30,16,44,50,11480,11479,11486,11485,43,11717,11719,11718,11710,0,6,30,16,5,11487,11488,11489,11490,43,11720,11719,11717,11716,0,6,30,16,5,11491,11488,11487,11492,43,11721,11720,11716,11715,0,6,30,16,5,11493,11491,11492,11494,43,11722,11721,11715,11714,0,6,30,16,5,11495,11493,11494,11496,43,11723,11722,11714,11713,0,6,30,16,5,11497,11495,11496,11498,43,11724,11723,11713,11712,0,6,30,16,5,11499,11497,11498,11500,43,11725,11724,11712,11711,0,6,30,16,5,11501,11499,11500,11502,43,11718,11725,11711,11710,0,6,30,16,5,11489,11501,11502,11490,43,11734,11726,11733,11735,0,6,30,16,5,11503,11504,11505,11506,43,11736,11735,11733,11732,0,6,30,16,5,11507,11506,11505,11508,43,11737,11736,11732,11731,0,6,30,16,5,11509,11507,11508,11510,43,11738,11737,11731,11730,0,6,30,16,5,11511,11509,11510,11512,43,11739,11738,11730,11729,0,6,30,16,5,11513,11511,11512,11514,43,11740,11739,11729,11728,0,6,30,16,5,11515,11513,11514,11516,43,11741,11740,11728,11727,0,6,30,16,5,11517,11515,11516,11518,43,11734,11741,11727,11726,0,6,30,16,5,11503,11517,11518,11504,43,11743,11734,11735,11742,0,6,30,16,5,11519,11503,11506,11520,43,11738,11743,11742,11737,0,6,30,16,5,11511,11519,11520,11509,43,11744,11741,11734,11743,0,6,30,16,5,11521,11517,11503,11519,43,11739,11744,11743,11738,0,6,30,16,5,11513,11521,11519,11511,43,11742,11735,11736,11737,0,6,30,16,5,11520,11506,11507,11509,43,11741,11744,11739,11740,0,6,30,16,5,11517,11521,11513,11515,43,11746,11725,11718,11745,0,6,30,16,5,11522,11501,11489,11523,43,11727,11746,11745,11726,0,6,30,16,5,11518,11522,11523,11504,43,11747,11724,11725,11746,0,6,30,16,5,11524,11499,11501,11522,43,11728,11747,11746,11727,0,6,30,16,5,11516,11524,11522,11518,43,11748,11723,11724,11747,0,6,30,16,5,11525,11497,11499,11524,43,11729,11748,11747,11728,0,6,30,16,5,11514,11525,11524,11516,43,11749,11722,11723,11748,0,6,30,16,5,11526,11495,11497,11525,43,11730,11749,11748,11729,0,6,30,16,5,11512,11526,11525,11514,43,11750,11721,11722,11749,0,6,30,16,5,11527,11493,11495,11526,43,11731,11750,11749,11730,0,6,30,16,5,11510,11527,11526,11512,43,11751,11720,11721,11750,0,6,30,16,5,11528,11491,11493,11527,43,11732,11751,11750,11731,0,6,30,16,5,11508,11528,11527,11510,43,11752,11719,11720,11751,0,6,30,16,5,11529,11488,11491,11528,43,11733,11752,11751,11732,0,6,30,16,5,11505,11529,11528,11508,43,11752,11745,11718,11719,0,6,30,16,5,11529,11523,11489,11488,43,11733,11726,11745,11752,0,6,30,16,5,11505,11504,11523,11529,43,11710,11760,11753,11717,0,6,30,16,5,11490,11530,11531,11487,43,11753,11754,11716,11717,0,6,30,16,5,11531,11532,11492,11487,43,11754,11755,11715,11716,0,6,30,16,5,11532,11533,11494,11492,43,11755,11756,11714,11715,0,6,30,16,5,11533,11534,11496,11494,43,11756,11757,11713,11714,0,6,30,16,5,11534,11535,11498,11496,43,11757,11758,11712,11713,0,6,30,16,5,11535,11536,11500,11498,43,11758,11759,11711,11712,0,6,30,16,5,11536,11537,11502,11500,43,11710,11711,11759,11760,0,6,30,16,5,11490,11502,11537,11530,43,11762,11761,11811,11810,0,6,30,16,5,11538,11539,11540,11541,43,11763,11762,11810,11809,0,6,30,16,5,11542,11538,11541,11543,43,11764,11763,11809,11808,0,6,30,16,5,11544,11542,11543,11545,43,11765,11764,11808,11807,0,6,30,16,5,11546,11544,11545,11547,43,11766,11765,11807,11806,0,6,30,16,5,11548,11546,11547,11549,43,11767,11766,11806,11805,0,6,30,16,5,11550,11548,11549,11551,43,11768,11767,11805,11804,0,6,30,16,5,11552,11550,11551,11553,43,11768,11804,11811,11761,0,6,30,16,5,11552,11553,11540,11539,43,11788,11795,11776,11769,0,6,30,16,5,11554,11555,11556,11557,43,11769,11776,11803,11802,0,6,30,16,5,11557,11556,11558,11559,43,11788,11769,11770,11789,0,6,30,16,5,11554,11557,11560,11561,43,11769,11802,11801,11770,0,6,30,16,5,11557,11559,11562,11560,43,11789,11770,11771,11790,0,6,30,16,5,11561,11560,11563,11564,43,11770,11801,11800,11771,0,6,30,16,5,11560,11562,11565,11563,43,11790,11771,11772,11791,0,6,30,16,5,11564,11563,11566,11567,43,11771,11800,11799,11772,0,6,30,16,5,11563,11565,11568,11566,43,11791,11772,11773,11792,0,6,30,16,5,11567,11566,11569,11570,43,11772,11799,11798,11773,0,6,30,16,5,11566,11568,11571,11569,43,11792,11773,11774,11793,0,6,30,16,5,11570,11569,11572,11573,43,11773,11798,11797,11774,0,6,30,16,5,11569,11571,11574,11572,43,11793,11774,11775,11794,0,6,30,16,5,11573,11572,11575,11576,43,11774,11797,11796,11775,0,6,30,16,5,11572,11574,11577,11575,43,11794,11775,11776,11795,0,6,30,16,5,11576,11575,11556,11555,43,11775,11796,11803,11776,0,6,30,16,5,11575,11577,11558,11556,43,11780,11777,11782,11781,0,6,30,16,5,11578,11579,11580,11581,43,11779,11786,11785,11784,0,6,30,16,5,11582,11583,11584,11585,43,11782,11777,11778,11783,0,6,30,16,5,11580,11579,11586,11587,43,11777,11780,11787,11778,0,6,30,16,5,11579,11578,11588,11586,43,11783,11778,11779,11784,0,6,30,16,5,11587,11586,11582,11585,43,11778,11787,11786,11779,0,6,30,16,5,11586,11588,11583,11582,43,11787,11780,11794,11795,0,6,30,16,5,11588,11578,11576,11555,43,11780,11781,11793,11794,0,6,30,16,5,11578,11581,11573,11576,43,11781,11782,11792,11793,0,6,30,16,5,11581,11580,11570,11573,43,11782,11783,11791,11792,0,6,30,16,5,11580,11587,11567,11570,43,11783,11784,11790,11791,0,6,30,16,5,11587,11585,11564,11567,43,11784,11785,11789,11790,0,6,30,16,5,11585,11584,11561,11564,43,11785,11786,11788,11789,0,6,30,16,5,11584,11583,11554,11561,43,11787,11795,11788,11786,0,6,30,16,5,11588,11555,11554,11583,43,11803,11796,11810,11811,0,6,30,16,5,11558,11577,11541,11540,43,11796,11797,11809,11810,0,6,30,16,5,11577,11574,11543,11541,43,11797,11798,11808,11809,0,6,30,16,5,11574,11571,11545,11543,43,11798,11799,11807,11808,0,6,30,16,5,11571,11568,11547,11545,43,11799,11800,11806,11807,0,6,30,16,5,11568,11565,11549,11547,43,11800,11801,11805,11806,0,6,30,16,5,11565,11562,11551,11549,43,11801,11802,11804,11805,0,6,30,16,5,11562,11559,11553,11551,43,11803,11811,11804,11802,0,6,30,16,5,11558,11540,11553,11559,43,11812,11813,11814,11819,0,52,53,50,51,11589,11590,11591,11592,43,11816,11817,11821,11815,0,49,53,50,30,11593,11594,11595,11596,43,11825,11830,11828,11826,0,49,53,50,30,11597,11598,11599,11600,43,11830,11829,11827,11828,0,49,53,50,30,11598,11601,11602,11599,43,11829,11823,11824,11827,0,49,52,51,30,11601,11603,11604,11602,43,11823,11829,11840,11839,0,30,49,1473,150,11603,11601,11605,11606,43,11830,11825,11842,11841,0,30,49,52,51,11598,11597,11607,11608,43,11829,11830,11841,11840,0,30,49,52,51,11601,11598,11608,11605,43,11812,11819,11846,11845,0,30,49,1473,150,11589,11592,11609,11610,43,11845,11846,11824,11823,0,150,1473,52,51,11610,11609,11604,11603,43,11821,11817,11848,11847,0,30,49,188,1474,11595,11594,11611,11612,43,11847,11848,11825,11826,0,1474,188,53,50,11612,11611,11597,11600,43,11820,11822,11850,11849,0,30,49,52,51,11613,11614,11615,11616,43,11849,11850,11828,11827,0,51,52,53,50,11616,11615,11599,11602,43,11822,11821,11847,11850,0,30,49,52,51,11614,11595,11612,11615,43,11850,11847,11826,11828,0,51,52,53,50,11615,11612,11600,11599,43,11819,11820,11849,11846,0,30,49,1473,150,11592,11613,11616,11609,43,11846,11849,11827,11824,0,150,1473,52,51,11609,11616,11602,11604,43,11837,11836,11852,11853,0,30,49,1473,150,11617,11618,11619,11620,43,11853,11852,11832,11831,0,150,1473,52,51,11620,11619,11621,11622,43,11835,11838,11854,11851,0,30,49,188,51,11623,11624,11625,11626,43,11851,11854,11834,11833,0,51,188,53,50,11626,11625,11627,11628,43,11838,11837,11853,11854,0,30,49,52,51,11624,11617,11620,11625,43,11854,11853,11831,11834,0,51,52,53,50,11625,11620,11622,11627,43,11842,11825,11848,11855,0,51,30,1066,1397,11607,11597,11611,11629,43,11855,11848,11817,11843,0,1397,1066,49,52,11629,11611,11594,11630,43,11845,11856,11844,11812,0,1066,1475,150,30,11610,11631,11632,11589,43,11856,11845,11823,11839,0,1475,1066,49,1473,11631,11610,11603,11606,43,11839,11840,11858,11857,0,150,1473,1477,1476,11606,11605,11633,11634,43,11857,11858,11831,11832,0,1476,1477,52,51,11634,11633,11622,11621,43,11841,11842,11860,11859,0,51,52,1478,1370,11608,11607,11635,11636,43,11859,11860,11833,11834,0,1370,1478,53,50,11636,11635,11628,11627,43,11840,11841,11859,11858,0,51,52,1373,1370,11605,11608,11636,11633,43,11858,11859,11834,11831,0,1370,1373,53,50,11633,11636,11627,11622,43,11863,11864,11837,11838,0,1370,1373,53,50,11637,11638,11617,11624,43,11861,11863,11838,11835,0,1370,1373,53,50,11639,11637,11624,11623,43,11864,11862,11836,11837,0,1476,1477,52,51,11638,11640,11618,11617,43,11851,11833,11860,11865,0,951,50,1370,1479,11626,11628,11635,11641,43,11865,11860,11842,11855,0,1479,1370,51,1397,11641,11635,11607,11629,43,11835,11851,11865,11861,0,53,951,1479,1478,11623,11626,11641,11639,43,11861,11865,11855,11843,0,1478,1479,1397,52,11639,11641,11629,11630,43,11852,11836,11862,11866,0,1397,51,1481,1480,11619,11618,11640,11642,43,11866,11862,11844,11856,0,1480,1481,150,1482,11642,11640,11632,11631,43,11832,11852,11866,11857,0,52,1397,1483,1477,11621,11619,11642,11634,43,11857,11866,11856,11839,0,1477,1483,1482,1473,11634,11642,11631,11606,43,11895,11902,11890,11883,0,6,30,16,5,11643,11644,11645,11646,43,11896,11895,11883,11884,0,6,30,16,5,11647,11643,11646,11648,43,11901,11896,11884,11889,0,6,30,16,5,11649,11647,11648,11650,43,11894,11897,11885,11882,0,6,30,16,5,11651,11652,11653,11654,43,11898,11893,11881,11886,0,6,30,16,5,11655,11656,11657,11658,43,11879,11885,11897,11891,0,6,30,16,5,11659,11653,11652,11660,43,11900,11898,11886,11888,0,6,30,16,5,11661,11655,11658,11662,43,11891,11899,11887,11879,0,6,30,16,5,11660,11663,11664,11659,43,11899,11892,11880,11887,0,6,30,16,5,11663,11665,11666,11664,43,11892,11900,11888,11880,0,6,30,16,5,11665,11661,11662,11666,43,11893,11901,11889,11881,0,6,30,16,5,11656,11649,11650,11657,43,11902,11894,11882,11890,0,6,30,16,5,11644,11651,11654,11645,42,11909,11903,11911,0,6,16,5,11667,11668,11669,42,11908,11903,11910,0,6,16,5,11670,11668,11671,42,11907,11903,11909,0,6,16,5,11672,11668,11667,42,11910,11903,11906,0,6,16,5,11671,11668,11673,42,11904,11903,11907,0,6,16,5,11674,11668,11672,42,11906,11903,11905,0,6,16,5,11673,11668,11675,42,11911,11903,11908,0,6,16,5,11669,11668,11670,43,11912,11911,11908,11915,0,6,30,16,5,11676,11669,11670,11677,43,11917,11906,11905,11918,0,6,30,16,5,11678,11673,11675,11679,43,11919,11904,11907,11916,0,6,30,16,5,11680,11674,11672,11681,43,11913,11910,11906,11917,0,6,30,16,5,11682,11671,11673,11678,43,11916,11907,11909,11914,0,6,30,16,5,11681,11672,11667,11683,43,11915,11908,11910,11913,0,6,30,16,5,11677,11670,11671,11682,43,11914,11909,11911,11912,0,6,30,16,5,11683,11667,11669,11676,43,11925,11914,11912,11927,0,6,30,16,5,11684,11683,11676,11685,43,11924,11915,11913,11926,0,6,30,16,5,11686,11677,11682,11687,43,11923,11916,11914,11925,0,6,30,16,5,11688,11681,11683,11684,43,11926,11913,11917,11922,0,6,30,16,5,11687,11682,11678,11689,43,11920,11919,11916,11923,0,6,30,16,5,11690,11680,11681,11688,43,11922,11917,11918,11921,0,6,30,16,5,11689,11678,11679,11691,43,11927,11912,11915,11924,0,6,30,16,5,11685,11676,11677,11686,43,11949,11950,11902,11895,0,6,30,16,5,11692,11693,11644,11643,43,11948,11949,11895,11896,0,6,30,16,5,11694,11692,11643,11647,43,11947,11948,11896,11901,0,6,30,16,5,11695,11694,11647,11649,43,11945,11946,11893,11898,0,6,30,16,5,11696,11697,11656,11655,43,11952,11953,11891,11897,0,6,30,16,5,11698,11699,11660,11652,43,11956,11945,11898,11900,0,6,30,16,5,11700,11696,11655,11661,43,11953,11954,11899,11891,0,6,30,16,5,11699,11701,11663,11660,43,11954,11955,11892,11899,0,6,30,16,5,11701,11702,11665,11663,43,11955,11956,11900,11892,0,6,30,16,5,11702,11700,11661,11665,43,11946,11947,11901,11893,0,6,30,16,5,11697,11695,11649,11656,43,11950,11951,11894,11902,0,6,30,16,5,11693,11703,11651,11644,43,11957,11960,11969,11972,0,6,30,16,5,11704,11705,11706,11707,43,11962,11963,11966,11967,0,6,30,16,5,11708,11709,11710,11711,43,11961,11968,11965,11964,0,6,30,16,5,11712,11713,11714,11715,43,11958,11962,11967,11971,0,6,30,16,5,11716,11708,11711,11717,43,11959,11970,11968,11961,0,6,30,16,5,11718,11719,11713,11712,43,11958,11971,11969,11960,0,6,30,16,5,11716,11717,11706,11705,43,11957,11972,11970,11959,0,6,30,16,5,11704,11707,11719,11718,43,11973,11976,11985,11988,0,6,30,16,5,11720,11721,11722,11723,43,11978,11979,11982,11983,0,6,30,16,5,11724,11725,11726,11727,43,11977,11984,11981,11980,0,6,30,16,5,11728,11729,11730,11731,43,11978,11983,11987,11974,0,6,30,16,5,11724,11727,11732,11733,43,11975,11986,11984,11977,0,6,30,16,5,11734,11735,11729,11728,43,11974,11987,11985,11976,0,6,30,16,5,11733,11732,11722,11721,43,11975,11973,11988,11986,0,6,30,16,5,11734,11720,11723,11735,43,11931,11928,11997,12000,0,6,30,16,5,11736,11737,11738,11739,43,11993,11996,11927,11924,0,6,30,16,5,11740,11741,11685,11686,43,11934,11933,12002,12004,0,6,30,16,5,11742,11743,11744,11745,43,11989,11991,11922,11921,0,6,30,16,5,11746,11747,11689,11691,43,11932,11935,12003,12001,0,6,30,16,5,11748,11749,11750,11751,43,11992,11990,11920,11923,0,6,30,16,5,11752,11753,11690,11688,43,11933,11929,11999,12002,0,6,30,16,5,11743,11754,11755,11744,43,11991,11994,11926,11922,0,6,30,16,5,11747,11756,11687,11689,43,11930,11932,12001,11998,0,6,30,16,5,11757,11748,11751,11758,43,11995,11992,11923,11925,0,6,30,16,5,11759,11752,11688,11684,43,11929,11931,12000,11999,0,6,30,16,5,11754,11736,11739,11755,43,11994,11993,11924,11926,0,6,30,16,5,11756,11740,11686,11687,43,11928,11930,11998,11997,0,6,30,16,5,11737,11757,11758,11738,43,11996,11995,11925,11927,0,6,30,16,5,11741,11759,11684,11685,43,12008,12014,12032,12033,0,6,30,16,5,11760,11761,11762,11763,43,12009,12008,12033,12034,0,6,30,16,5,11764,11760,11763,11765,43,12007,12010,12031,12038,0,6,30,16,5,11766,11767,11768,11769,43,12035,12031,12010,12005,0,6,30,16,5,11770,11768,11767,11771,43,12005,12011,12036,12035,0,6,30,16,5,11771,11772,11773,11770,43,12011,12006,12037,12036,0,6,30,16,5,11772,11774,11775,11773,43,12014,12007,12038,12032,0,6,30,16,5,11761,11766,11769,11762,43,12028,12016,12017,12027,0,6,30,16,5,11776,11777,11778,11779,43,12027,12017,12018,12026,0,6,30,16,5,11779,11778,11780,11781,43,12030,12015,12022,12029,0,6,30,16,5,11782,11783,11784,11785,43,12025,12019,12015,12030,0,6,30,16,5,11786,11787,11783,11782,43,12024,12020,12019,12025,0,6,30,16,5,11788,11789,11787,11786,43,12023,12021,12020,12024,0,6,30,16,5,11790,11791,11789,11788,43,12029,12022,12016,12028,0,6,30,16,5,11785,11784,11777,11776,43,12038,12029,12028,12032,0,6,30,16,5,11769,11785,11776,11762,43,12037,12023,12024,12036,0,6,30,16,5,11775,11790,11788,11773,43,12036,12024,12025,12035,0,6,30,16,5,11773,11788,11786,11770,43,12035,12025,12030,12031,0,6,30,16,5,11770,11786,11782,11768,43,12031,12030,12029,12038,0,6,30,16,5,11768,11782,11785,11769,43,12033,12027,12026,12034,0,6,30,16,5,11763,11779,11781,11765,43,12032,12028,12027,12033,0,6,30,16,5,11762,11776,11779,11763,43,12026,12018,12039,12040,0,6,30,16,5,11781,11780,11792,11793,43,12034,12026,12040,12041,0,6,30,16,5,11765,11781,11793,11794,43,12042,12043,12021,12023,0,6,30,16,5,11795,11796,11791,11790,43,12044,12042,12023,12037,0,6,30,16,5,11797,11795,11790,11775,43,12009,12034,12041,12013,0,6,30,16,5,11764,11765,11794,11798,43,12006,12012,12044,12037,0,6,30,16,5,11774,11799,11797,11775,43,12069,12073,12076,12051,0,1484,1486,1485,953,11800,11801,11802,11803,43,12073,11818,12071,12076,0,1486,1487,1069,1485,11801,11804,11805,11802,43,12072,12077,12075,12074,0,1069,953,1484,1487,11806,11807,11808,11809,43,12077,12071,11818,12075,0,1069,953,1484,1487,11807,11805,11804,11808,43,12052,12072,12074,12070,0,1069,953,1484,1487,11810,11806,11809,11811,43,12051,12076,11819,11814,0,1488,1489,47,44,11803,11802,11592,11591,43,12076,12071,11820,11819,0,1489,1490,16,47,11802,11805,11613,11592,43,11821,11822,12077,12072,0,16,44,1488,1490,11595,11614,11807,11806,43,11822,11820,12071,12077,0,16,44,1488,1490,11614,11613,11805,11807,43,11815,11821,12072,12052,0,16,44,1488,1490,11596,11595,11806,11810,43,12053,12079,12073,12069,0,1491,1494,1493,1492,11812,11813,11801,11800,43,12079,12078,11818,12073,0,1494,1496,1495,1493,11813,11814,11804,11801,43,12074,12075,12067,12066,0,1495,1492,1491,1496,11809,11808,11815,11816,43,12075,11818,12078,12067,0,1495,1492,1491,1496,11808,11804,11814,11815,43,12070,12074,12066,12068,0,1495,1492,1491,1496,11811,11809,11816,11817,43,12058,12059,12085,12084,0,0,49,1069,719,11818,11819,11820,11821,43,12084,12085,11950,11949,0,719,1069,16,5,11821,11820,11693,11692,43,12057,12058,12084,12083,0,0,49,1069,719,11822,11818,11821,11823,43,12083,12084,11949,11948,0,719,1069,16,5,11823,11821,11692,11694,43,12056,12057,12083,12082,0,0,49,1069,719,11824,11822,11823,11825,43,12082,12083,11948,11947,0,719,1069,16,5,11825,11823,11694,11695,43,12054,12055,12081,12080,0,0,49,1069,719,11826,11827,11828,11829,43,12080,12081,11946,11945,0,719,1069,16,5,11829,11828,11697,11696,43,12061,12062,12088,12087,0,0,49,1069,719,11830,11831,11832,11833,43,12087,12088,11953,11952,0,719,1069,16,5,11833,11832,11699,11698,43,12065,12054,12080,12091,0,0,49,1069,719,11834,11826,11829,11835,43,12091,12080,11945,11956,0,719,1069,16,5,11835,11829,11696,11700,43,12062,12063,12089,12088,0,0,49,1069,719,11831,11836,11837,11832,43,12088,12089,11954,11953,0,719,1069,16,5,11832,11837,11701,11699,43,12063,12064,12090,12089,0,0,49,1069,719,11836,11838,11839,11837,43,12089,12090,11955,11954,0,719,1069,16,5,11837,11839,11702,11701,43,12064,12065,12091,12090,0,0,49,1069,719,11838,11834,11835,11839,43,12090,12091,11956,11955,0,719,1069,16,5,11839,11835,11700,11702,43,12055,12056,12082,12081,0,0,49,1069,719,11827,11824,11825,11828,43,12081,12082,11947,11946,0,719,1069,16,5,11828,11825,11695,11697,43,12059,12060,12086,12085,0,0,49,1069,719,11819,11840,11841,11820,43,12085,12086,11951,11950,0,719,1069,16,5,11820,11841,11703,11693,43,11936,12094,12079,12053,0,1497,1500,1499,1498,11842,11843,11813,11812,43,12094,12093,12078,12079,0,1500,1502,1501,1499,11843,11844,11814,11813,43,12066,12067,11942,12092,0,1501,1498,1497,1502,11816,11815,11845,11846,43,12067,12078,12093,11942,0,1501,1498,1497,1502,11815,11814,11844,11845,43,12068,12066,12092,11939,0,1501,1498,1497,1502,11817,11816,11846,11847,43,11936,11937,12100,12099,0,6,30,1066,952,11842,11848,11849,11850,43,12099,12100,12059,12058,0,952,1066,49,0,11850,11849,11819,11818,43,12094,11936,12099,12098,0,6,30,1066,952,11843,11842,11850,11851,43,12098,12099,12058,12057,0,952,1066,49,0,11851,11850,11818,11822,43,12093,12094,12098,12097,0,6,30,1066,952,11844,11843,11851,11852,43,12097,12098,12057,12056,0,952,1066,49,0,11852,11851,11822,11824,43,12092,11942,12096,12095,0,6,30,1066,952,11846,11845,11853,11854,43,12095,12096,12055,12054,0,952,1066,49,0,11854,11853,11827,11826,43,11938,11944,12103,12102,0,6,30,1066,952,11855,11856,11857,11858,43,12102,12103,12062,12061,0,952,1066,49,0,11858,11857,11831,11830,43,11939,12092,12095,12106,0,6,30,1066,952,11847,11846,11854,11859,43,12106,12095,12054,12065,0,952,1066,49,0,11859,11854,11826,11834,43,11944,11940,12104,12103,0,6,30,1066,952,11856,11860,11861,11857,43,12103,12104,12063,12062,0,952,1066,49,0,11857,11861,11836,11831,43,11940,11943,12105,12104,0,6,30,1066,952,11860,11862,11863,11861,43,12104,12105,12064,12063,0,952,1066,49,0,11861,11863,11838,11836,43,11943,11939,12106,12105,0,6,30,1066,952,11862,11847,11859,11863,43,12105,12106,12065,12064,0,952,1066,49,0,11863,11859,11834,11838,43,11942,12093,12097,12096,0,6,30,1066,952,11845,11844,11852,11853,43,12096,12097,12056,12055,0,952,1066,49,0,11853,11852,11824,11827,43,11937,11941,12101,12100,0,6,30,1066,952,11848,11864,11865,11849,43,12100,12101,12060,12059,0,952,1066,49,0,11849,11865,11840,11819,43,11654,12112,12111,11655,0,6,5,16,30,3471,3471,3471,3471,43,12112,12113,12114,12111,0,6,5,16,30,3471,3471,3471,3471,43,12114,12113,12119,12122,0,30,6,0,49,3471,3471,3471,3471,43,12124,12123,11646,11638,0,50,44,5,6,3471,11866,11867,11868,43,12123,12124,11647,11645,0,44,50,30,16,11866,3471,3471,11445,43,11638,11642,12125,12124,0,6,30,49,0,11868,11869,3471,3471,43,12124,12125,11650,11647,0,0,49,16,5,3471,3471,3471,3471,43,11642,11641,12126,12125,0,5,6,50,44,11869,11870,3471,3471,43,12125,12126,11652,11650,0,44,50,30,16,3471,3471,3471,3471,43,11641,11657,12127,12126,0,6,30,49,0,11870,11871,3471,3471,43,12126,12127,11654,11652,0,0,49,16,5,3471,3471,3471,3471,43,11657,12109,12128,12127,0,6,30,49,0,11871,11872,3471,3471,43,12127,12128,12112,11654,0,0,49,16,5,3471,3471,3471,3471,43,12109,12116,12129,12128,0,6,30,49,0,11872,11873,3471,3471,43,12128,12129,12113,12112,0,0,49,16,5,3471,3471,3471,3471,43,12119,12113,12129,12130,0,44,5,0,53,3471,3471,3471,11874,43,12130,12129,12116,12120,0,53,0,6,50,11874,3471,11873,11875,43,11639,11643,12131,12132,0,6,5,44,50,11876,11877,11878,11879,43,12132,12131,11644,11648,0,50,44,16,30,11879,11878,3471,3471,43,11640,11639,12132,12133,0,5,6,50,44,11880,11876,11879,3471,43,12133,12132,11648,11649,0,44,50,30,16,3471,11879,3471,3471,43,11651,11640,12133,12134,0,30,6,0,49,11881,11880,3471,3471,43,12134,12133,11649,11653,0,49,0,5,16,3471,3471,3471,3471,43,11656,11651,12134,12135,0,30,6,0,49,11882,11881,3471,3471,43,12135,12134,11653,11655,0,49,0,5,16,3471,3471,3471,3471,43,11655,12111,12136,12135,0,6,5,44,50,3471,3471,3471,3471,43,12135,12136,12110,11656,0,50,44,16,30,3471,3471,11883,11882,43,12111,12114,12137,12136,0,6,5,44,50,3471,3471,3471,3471,43,12136,12137,12115,12110,0,50,44,16,30,3471,3471,11884,11883,43,12121,12115,12137,12138,0,49,30,50,53,11885,11884,3471,11886,43,12138,12137,12114,12122,0,53,50,6,0,11886,3471,3471,3471,43,12122,12119,12139,12142,0,49,0,719,1069,3471,3471,11887,11888,43,12142,12139,12118,12117,0,1069,719,5,16,11888,11887,11889,11890,43,12140,12118,12139,12143,0,49,16,47,52,11891,11889,11887,11892,43,12143,12139,12119,12130,0,52,47,44,53,11892,11887,3471,11874,43,12140,12143,12130,12120,0,1091,1503,53,50,11891,11892,11874,11875,43,12144,12141,12121,12138,0,953,1504,49,53,11893,11894,11885,11886,43,12117,12141,12144,12142,0,5,44,953,719,11890,11894,11893,11888,43,12142,12144,12138,12122,0,719,953,53,0,11888,11893,11886,3471,43,11645,11644,12147,12146,0,5,6,50,44,11445,3471,11895,11896,43,12146,12147,12108,12107,0,44,50,30,16,11896,11895,11897,11898,43,12123,11645,12146,12149,0,0,6,50,53,11866,11445,11896,11899,43,12149,12146,12107,12145,0,53,50,30,49,11899,11896,11898,11900,43,11646,12123,12149,12145,0,5,0,53,44,11867,11866,11899,11900,43,12131,11643,12148,12150,0,50,6,0,1505,11878,11877,11901,11902,43,11644,12131,12150,12147,0,30,50,53,49,3471,11878,11902,11895,43,12147,12150,12148,12108,0,49,53,44,16,11895,11902,11901,11897,43,11386,11360,12151,12153,0,0,6,50,53,11185,11184,11903,11904,43,12153,12151,11367,11387,0,53,50,30,49,11904,11903,11236,11235,43,11360,11377,12154,12151,0,6,30,49,0,11184,11214,11905,11903,43,12151,12154,11364,11367,0,0,49,16,5,11903,11905,11421,11236,43,11404,11364,12154,12155,0,30,6,0,1506,11422,11421,11905,11906,43,12155,12154,11377,11375,0,1506,0,5,16,11906,11905,11214,11217,43,11485,11363,12152,12160,0,1363,5,0,1507,11247,11246,11907,11908,43,12160,12152,11365,11488,0,1507,0,6,87,11908,11907,11257,11256,43,11495,11437,12157,12161,0,1366,44,53,1508,11267,11266,11909,11910,43,12161,12157,11439,11498,0,1508,53,50,1370,11910,11909,11277,11276,43,11506,11444,12158,12162,0,1375,47,52,1473,11287,11286,11911,11912,43,12162,12158,11447,11508,0,1473,52,51,150,11912,11911,11297,11296,43,11513,11419,12156,12163,0,161,16,1375,1509,11304,11303,11913,11914,43,12163,12156,11418,11514,0,1509,1375,47,1305,11914,11913,11317,11318,43,11451,11524,12164,12159,0,30,1390,1482,150,11324,11323,11915,11916,43,12159,12164,11525,11452,0,150,1482,1389,51,11916,11915,11337,11338,43,11534,11386,12153,12165,0,719,0,53,953,11341,11185,11904,11917,43,12165,12153,11387,11535,0,953,53,49,1069,11917,11904,11235,11347,43,11363,11534,12165,12152,0,5,719,1510,675,11246,11341,11917,11907,43,12152,12165,11535,11365,0,675,1510,1069,16,11907,11917,11347,11257,43,11548,11485,12160,12166,0,1409,1363,1507,1412,11352,11247,11908,11918,43,12166,12160,11488,11550,0,1412,1507,87,1407,11918,11908,11256,11357,43,11437,11548,12166,12157,0,44,1409,1412,53,11266,11352,11918,11909,43,12157,12166,11550,11439,0,53,1412,1407,50,11909,11918,11357,11277,43,11557,11495,12161,12167,0,1413,1366,1511,1419,11362,11267,11910,11919,43,12167,12161,11498,11559,0,1419,1511,1370,1414,11919,11910,11276,11367,43,11444,11557,12167,12158,0,47,1413,1419,1384,11286,11362,11919,11911,43,12158,12167,11559,11447,0,1384,1419,1414,51,11911,11919,11367,11297,43,11567,11506,12162,12168,0,1512,1375,1514,1513,11372,11287,11912,11920,43,12168,12162,11508,11569,0,1513,1514,150,1421,11920,11912,11296,11377,43,11419,11567,12168,12156,0,16,1512,1513,49,11303,11372,11920,11913,43,12156,12168,11569,11418,0,49,1513,1421,30,11913,11920,11377,11317,43,11574,11513,12163,12169,0,1426,161,1514,1515,11381,11304,11914,11921,43,12169,12163,11514,11575,0,1515,1514,1305,1429,11921,11914,11318,11388,43,11524,11574,12169,12164,0,1390,1426,1515,1395,11323,11381,11921,11915,43,12164,12169,11575,11525,0,1395,1515,1429,1389,11915,11921,11388,11337,43,11374,12170,11410,11407,0,6,30,16,5,11215,11922,11230,11220,43,11355,11406,11410,12170,0,6,5,16,30,11193,11204,11230,11922,43,11374,11376,11403,12170,0,6,5,16,30,11215,11202,11201,11922,43,11355,12170,11403,11401,0,6,30,16,5,11193,11922,11201,11194,43,11875,11876,12174,12173,0,151,152,53,49,11923,11924,11925,11926,43,12173,12174,11872,11871,0,49,53,154,153,11926,11925,11927,11928,43,11876,11877,12175,12174,0,151,152,53,49,11924,11929,11930,11925,43,12174,12175,11873,11872,0,49,53,154,153,11925,11930,11931,11927,43,11877,11870,12172,12175,0,151,152,53,49,11929,11932,11933,11930,43,12175,12172,11868,11873,0,49,53,154,153,11930,11933,11934,11931,43,11869,11878,12176,12171,0,151,152,53,49,11935,11936,11937,11938,43,12171,12176,11874,11867,0,49,53,154,153,11938,11937,11939,11940,43,11878,11875,12173,12176,0,151,155,53,49,11936,11923,11926,11937,43,12176,12173,11871,11874,0,49,53,154,153,11937,11926,11928,11939,43,11874,11871,12177,12178,0,151,155,53,49,11939,11928,11941,11942,43,12178,12177,12048,12045,0,49,53,154,153,11942,11941,11943,11944,43,11867,11874,12178,12179,0,151,152,53,49,11940,11939,11942,11945,43,12179,12178,12045,12050,0,49,53,154,153,11945,11942,11944,11946,43,11873,11868,12180,12181,0,151,152,53,49,11931,11934,11947,11948,43,12181,12180,12049,12046,0,49,53,154,153,11948,11947,11949,11950,43,11872,11873,12181,12182,0,151,152,53,49,11927,11931,11948,11951,43,12182,12181,12046,12047,0,49,53,154,153,11951,11948,11950,11952,43,11871,11872,12182,12177,0,151,152,53,49,11928,11927,11951,11941,43,12177,12182,12047,12048,0,49,53,154,153,11941,11951,11952,11943,43,11286,11283,12185,12188,0,5,6,87,91,11953,11954,11955,11956,43,12188,12185,11287,11282,0,91,87,50,44,11956,11955,11957,11958,43,11279,11286,12188,12183,0,5,6,87,91,11959,11953,11956,11960,43,12183,12188,11282,11278,0,91,87,50,44,11960,11956,11958,11961,43,11285,11281,12184,12186,0,5,6,87,91,11962,11963,11964,11965,43,12186,12184,11280,11288,0,91,87,50,44,11965,11964,11966,11967,43,11288,11289,12187,12186,0,50,44,91,87,11967,11968,11969,11965,43,12186,12187,11284,11285,0,87,91,5,6,11965,11969,11970,11962,43,11283,11284,12187,12185,0,5,6,87,91,11954,11970,11969,11955,43,12185,12187,11289,11287,0,91,87,50,44,11955,11969,11968,11957,43,11191,11193,12207,12206,0,50,44,91,87,11018,9856,10841,11971,43,12206,12207,11189,11188,0,87,91,5,6,11971,10841,10843,11972,43,11192,11191,12211,12210,0,16,44,53,49,11019,11018,11973,11974,43,12210,12211,11190,11184,0,49,53,50,30,11974,11973,11975,11976,43,11184,11187,12208,12210,0,6,30,161,0,11976,11977,11978,11974,43,12210,12208,11185,11192,0,0,161,16,5,11974,11978,11020,11019,43,12206,11188,12209,12212,0,91,5,0,1516,11971,11972,11979,11980,43,12212,12209,11183,12205,0,1516,0,6,87,11980,11979,11981,11982,43,11191,12206,12212,12211,0,44,91,1365,53,11018,11971,11980,11973,43,12211,12212,12205,11190,0,53,1365,87,50,11973,11980,11982,11975,43,12221,12256,12216,12218,0,30,16,5,6,11983,11984,11985,11986,43,12218,12224,12225,12221,0,6,50,1009,5,11986,11987,11988,11983,43,12234,12228,12223,12232,0,5,16,30,6,11989,11990,11991,11992,43,12224,12218,12232,12223,0,5,16,30,6,11987,11986,11992,11991,43,12214,12259,13371,12213,0,1003,1013,1014,1002,11993,11994,11995,11996,43,12258,12227,12226,12233,0,50,30,16,1015,11997,11998,11999,12000,43,12233,12232,12218,12216,0,30,16,5,6,12000,11992,11986,11985,43,12236,12214,12213,13380,0,1037,1004,1001,1036,12001,11993,11996,12002,43,13380,14565,12217,12236,0,1036,1038,1039,1037,12002,12003,12004,12001,43,12227,12235,12234,12226,0,30,16,5,6,11998,12005,11989,11999,43,12234,12235,12229,12228,0,30,16,5,6,11989,12005,12006,11990,43,12234,12232,12233,12226,0,30,16,5,6,11989,11992,12000,11999,43,12214,12237,12257,12259,0,6,1056,1057,0,11993,12007,12008,11994,43,12237,12227,12258,12257,0,1056,30,49,1057,12007,11998,11997,12008,43,12227,12237,12240,12235,0,5,1061,1062,1060,11998,12007,12009,12005,43,12237,12214,12236,12240,0,1061,6,50,1062,12007,11993,12001,12009,43,12235,12240,12238,12229,0,1060,1062,176,16,12005,12009,12010,12006,43,12240,12236,12217,12238,0,1062,50,30,176,12009,12001,12004,12010,43,14565,14566,12246,12217,0,1038,1088,1089,1039,12003,12011,12012,12004,43,12215,12246,14566,13379,0,1003,1089,1088,1002,12013,12012,12011,12014,43,12223,12241,12242,12224,0,1061,719,1090,49,11991,12015,12016,11987,43,12241,12219,12220,12242,0,719,5,16,1090,12015,12017,12018,12016,43,12224,12242,12243,12225,0,50,1091,1092,1009,11987,12016,12019,11988,43,12242,12220,12222,12243,0,1091,30,16,1092,12016,12018,12020,12019,43,12229,12245,12244,12228,0,6,163,44,5,12006,12021,12022,11990,43,12245,12230,12231,12244,0,163,30,16,44,12021,12023,12024,12022,43,12219,12241,12244,12231,0,6,0,49,30,12017,12015,12022,12024,43,12241,12223,12228,12244,0,0,5,16,49,12015,11991,11990,12022,43,12217,12246,12247,12238,0,5,0,53,1107,12004,12012,12025,12010,43,12246,12215,12239,12247,0,0,6,50,53,12012,12013,12026,12025,43,12238,12247,12245,12229,0,1107,53,182,16,12010,12025,12021,12006,43,12247,12239,12230,12245,0,53,50,30,182,12025,12026,12023,12021,43,12252,12254,12249,12251,0,30,16,5,6,12027,12028,12029,12030,43,14562,12252,12251,14564,0,30,16,5,6,12031,12027,12030,12032,43,12253,12255,12248,12250,0,30,16,5,6,12033,12034,12035,12036,43,12254,12253,12250,12249,0,30,16,5,6,12028,12033,12036,12029,43,12257,12258,12253,12254,0,30,16,5,6,12008,11997,12033,12028,43,13371,12259,12252,14562,0,30,16,5,6,11995,11994,12027,12031,43,12259,12257,12254,12252,0,30,16,5,6,11994,12008,12028,12027,43,12256,12255,12253,12216,0,30,16,5,6,11984,12034,12033,11985,43,12253,12258,12233,12216,0,30,16,5,6,12033,11997,12000,11985,43,12249,12261,12260,12251,0,6,87,91,5,12029,12037,12038,12030,43,12251,12260,14563,14564,0,6,87,91,5,12030,12038,12039,12032,43,12248,12262,12263,12250,0,6,87,91,5,12035,12040,12041,12036,43,12250,12263,12261,12249,0,6,87,91,5,12036,12041,12037,12029,43,12265,12274,12272,12266,0,1304,1303,1302,53,12042,12043,12044,12045,43,12266,12272,12271,12267,0,53,1307,1306,1305,12045,12044,12046,12047,43,12267,12271,12273,12264,0,1305,1310,1309,1308,12047,12046,12048,12049,43,12290,12285,12283,12293,0,1305,1310,1309,1308,12050,12051,12052,12053,43,12291,12284,12285,12290,0,53,1307,1306,1305,12054,12055,12051,12050,43,12292,12282,12284,12291,0,1304,1303,1302,53,12056,12057,12055,12054,43,12295,12304,12302,12296,0,1304,1303,1302,53,12058,12059,12060,12061,43,12296,12302,12301,12297,0,53,1307,1306,1305,12061,12060,12062,12063,43,12297,12301,12303,12294,0,1305,1310,1309,1308,12063,12062,12064,12065,43,12320,12315,12313,12323,0,1305,1310,1309,1308,12066,12067,12068,12069,43,12321,12314,12315,12320,0,53,1307,1306,1305,12070,12071,12067,12066,43,12322,12312,12314,12321,0,1304,1303,1302,53,12072,12073,12071,12070,43,12274,12327,12325,12272,0,1303,1312,1311,1302,12043,12074,12075,12044,43,12272,12325,12324,12271,0,1307,1311,1313,1306,12044,12075,12076,12046,43,12271,12324,12326,12273,0,1310,1313,1314,1309,12046,12076,12077,12048,43,12270,12330,12329,12269,0,1317,1316,1315,953,12078,12079,12080,12081,43,12285,12334,12332,12283,0,1310,1319,1318,1309,12051,12082,12083,12052,43,12284,12333,12334,12285,0,1307,1311,1313,1306,12055,12084,12082,12051,43,12282,12331,12333,12284,0,1303,1321,1320,1302,12057,12085,12084,12055,43,12289,12338,12336,12287,0,1324,1323,1322,1069,12086,12087,12088,12089,43,12288,12337,12338,12289,0,953,1326,1325,1324,12090,12091,12087,12086,43,12286,12335,12337,12288,0,1317,1328,1327,953,12092,12093,12091,12090,43,12304,12342,12340,12302,0,1303,1329,1311,1302,12059,12094,12095,12060,43,12302,12340,12339,12301,0,1307,1311,1313,1306,12060,12095,12096,12062,43,12301,12339,12341,12303,0,1310,1319,1318,1309,12062,12096,12097,12064,43,12300,12346,12344,12298,0,1317,1316,1326,953,12098,12099,12100,12101,43,12366,12343,12345,12299,0,1324,1325,1330,1069,12102,12103,12104,12105,43,12315,12350,12348,12313,0,1310,1313,1318,1309,12067,12106,12107,12068,43,12314,12349,12350,12315,0,1307,1311,1313,1306,12071,12108,12106,12067,43,12312,12347,12349,12314,0,1303,1329,1311,1302,12073,12109,12108,12071,43,12319,12354,12352,12317,0,1324,1325,1330,1069,12110,12111,12112,12113,43,12318,12353,12354,12319,0,953,1326,1325,1324,12114,12115,12111,12110,43,12316,12351,12353,12318,0,1317,1331,1315,953,12116,12117,12115,12114,43,12330,12357,12356,12329,0,1316,1333,1332,1315,12079,12118,12119,12080,43,12357,12277,12276,12356,0,1333,1335,1334,1332,12118,12120,12121,12119,43,12268,12358,12360,12328,0,1324,1337,1336,1325,12122,12123,12124,12125,43,12358,12269,12329,12360,0,1337,953,1326,1336,12123,12081,12080,12124,43,12328,12360,12361,12355,0,1325,1336,1339,1338,12125,12124,12126,12127,43,12360,12329,12356,12361,0,1336,1326,1340,1339,12124,12080,12119,12126,43,12355,12361,12359,12275,0,1338,1339,1342,1341,12127,12126,12128,12129,43,12361,12356,12276,12359,0,1339,1340,1343,1342,12126,12119,12121,12128,43,12338,12365,12363,12336,0,1323,1338,1344,1322,12087,12130,12131,12088,43,12365,12281,12279,12363,0,1338,1346,1345,1344,12130,12132,12133,12131,43,12337,12364,12365,12338,0,1326,1340,1338,1325,12091,12134,12130,12087,43,12364,12280,12281,12365,0,1340,1343,1341,1338,12134,12135,12132,12130,43,12335,12362,12364,12337,0,1328,1348,1347,1327,12093,12136,12134,12091,43,12362,12278,12280,12364,0,1348,1335,1334,1347,12136,12137,12135,12134,43,12366,12298,12344,12343,0,1337,953,1326,1349,12102,12101,12100,12103,43,12346,12370,12368,12344,0,1316,1351,1350,1326,12099,12138,12139,12100,43,12370,12307,12305,12368,0,1351,1335,1334,1350,12138,12140,12141,12139,43,12343,12371,12369,12345,0,1325,1353,1352,1330,12103,12142,12143,12104,43,12371,12367,12306,12369,0,1353,1346,1345,1352,12142,12144,12145,12143,43,12367,12371,12368,12305,0,1342,1339,1340,1343,12144,12142,12139,12141,43,12371,12343,12344,12368,0,1339,1336,1326,1340,12142,12103,12100,12139,43,12354,12375,12373,12352,0,1325,1338,1344,1330,12111,12146,12147,12112,43,12375,12311,12309,12373,0,1338,1346,1345,1344,12146,12148,12149,12147,43,12353,12374,12375,12354,0,1326,1340,1338,1325,12115,12150,12146,12111,43,12374,12310,12311,12375,0,1340,1343,1341,1338,12150,12151,12148,12146,43,12351,12372,12374,12353,0,1331,1348,1354,1315,12117,12152,12150,12115,43,12372,12308,12310,12374,0,1348,1335,1334,1354,12152,12153,12151,12150,43,12382,12383,13381,13565,0,50,30,16,44,12154,12155,12156,12157,43,12378,13558,13381,12383,0,30,16,5,6,12158,12159,12156,12155,43,12392,12393,12385,12384,0,7,86,1245,700,12160,12161,12162,12163,43,12390,12391,12393,12392,0,7,86,92,700,12164,12165,12161,12160,43,12387,12386,12384,12385,0,92,700,7,1250,12166,12167,12163,12162,43,12397,12396,12394,12395,0,1264,706,1355,674,12168,12169,12170,12171,43,12401,12400,12402,12403,0,681,706,15,1265,12172,12173,12174,12175,43,12403,12402,12396,12397,0,1264,706,15,1265,12175,12174,12169,12168,43,12395,12394,12398,12399,0,681,1356,1355,1265,12171,12170,12176,12177,43,12390,12404,12405,12391,0,700,1358,1357,92,12164,12178,12179,12165,43,12404,12388,12389,12405,0,1358,7,86,1357,12178,12180,12181,12179,43,12407,12406,12400,12401,0,30,16,5,6,12182,12183,12173,12172,43,12409,12408,12386,12387,0,30,16,5,6,12184,12185,12167,12166,43,12410,12411,12399,12398,0,30,16,5,6,12186,12187,12177,12176,43,12413,12412,12422,12423,0,30,16,5,6,12188,12189,12190,12191,43,12414,12415,12433,12432,0,30,16,5,6,12192,12193,12194,12195,43,12431,12417,12416,12430,0,700,1358,1357,92,12196,12197,12198,12199,43,12426,12427,12423,12422,0,681,1356,1355,1265,12200,12201,12191,12190,43,12418,12419,12425,12424,0,1264,706,15,1265,12202,12203,12204,12205,43,12420,12421,12419,12418,0,681,706,15,1265,12206,12207,12203,12202,43,12424,12425,12427,12426,0,1264,706,1355,674,12205,12204,12201,12200,43,12432,12433,12435,12434,0,92,700,7,1250,12195,12194,12208,12209,43,12431,12430,12428,12429,0,7,86,92,700,12196,12199,12210,12211,43,12429,12428,12434,12435,0,7,86,1245,700,12211,12210,12209,12208,43,12442,12443,12437,12436,0,7,86,1245,700,12212,12213,12214,12215,43,12440,12441,12443,12442,0,7,86,92,700,12216,12217,12213,12212,43,12439,12438,12436,12437,0,92,700,7,1250,12218,12219,12215,12214,43,12440,12444,12445,12441,0,700,1358,1357,92,12216,12220,12221,12217,43,12447,12446,12438,12439,0,30,16,5,6,12222,12223,12219,12218,43,12449,12459,12458,12448,0,6,50,44,5,12224,12225,12226,12227,43,12459,12455,12454,12458,0,50,30,16,44,12225,12228,12229,12226,43,12450,12456,12459,12449,0,6,50,44,5,12230,12231,12225,12224,43,12456,12452,12455,12459,0,50,30,16,44,12231,12232,12228,12225,43,12461,12450,12449,12462,0,162,5,16,161,12233,12230,12224,12234,43,12462,12449,12448,12463,0,163,30,16,44,12234,12224,12227,12235,43,12450,12464,12466,12456,0,5,0,53,44,12230,12236,12237,12231,43,12464,12451,12457,12466,0,0,6,50,53,12236,12238,12239,12237,43,12456,12466,12465,12452,0,44,53,49,16,12231,12237,12240,12232,43,12466,12457,12453,12465,0,53,50,30,49,12237,12239,12241,12240,43,12461,12467,12464,12450,0,175,53,176,16,12233,12242,12236,12230,43,12467,12460,12451,12464,0,53,163,30,176,12242,12243,12238,12236,43,12480,12484,12486,12481,0,5,1248,1254,6,12244,12245,12246,12247,43,12484,12485,12487,12486,0,1248,1359,1243,1254,12245,12248,12249,12246,43,12485,12488,12489,12487,0,1359,15,1360,1243,12248,12250,12251,12249,43,12488,12483,12482,12489,0,15,16,30,1360,12250,12252,12253,12251,43,12491,12496,12497,12490,0,15,16,30,1360,12254,12255,12256,12257,43,12494,12491,12490,12492,0,1359,15,1360,1243,12258,12254,12257,12259,43,12495,12499,12498,12493,0,1248,1107,1361,1254,12260,12261,12262,12263,43,12499,12494,12492,12498,0,1107,1359,1243,1361,12261,12258,12259,12262,43,12500,12502,12503,12501,0,1107,1359,1243,1361,12264,12265,12266,12267,43,12505,12507,12506,12504,0,30,16,5,6,12268,12269,12270,12271,43,12500,12509,12508,12502,0,6,50,44,5,12264,12272,12273,12265,43,12509,12506,12507,12508,0,50,30,16,44,12272,12270,12269,12273,43,12503,12511,12510,12501,0,6,50,44,5,12266,12274,12275,12267,43,12511,12505,12504,12510,0,50,30,16,44,12274,12268,12271,12275,43,12512,12518,12519,12513,0,50,30,16,44,12276,12277,12278,12279,43,12520,12512,12513,12522,0,6,50,44,5,12280,12276,12279,12281,43,12514,12517,12516,12515,0,50,30,16,44,12282,12283,12284,12285,43,12523,12514,12515,12521,0,6,50,44,5,12286,12282,12285,12287,43,12518,12516,12517,12519,0,30,16,5,6,12277,12284,12283,12278,43,12523,12521,12520,12522,0,1107,1359,1243,1361,12286,12287,12280,12281,43,12524,12527,12529,12525,0,1107,1359,1243,1361,12288,12289,12290,12291,43,12526,12524,12525,12528,0,1248,1107,1361,1254,12292,12288,12291,12293,43,12527,12530,12531,12529,0,1359,15,1360,1243,12289,12294,12295,12290,43,12536,12533,12532,12534,0,1359,15,1360,1243,12296,12297,12298,12299,43,12537,12536,12534,12535,0,1248,1359,1243,1254,12300,12296,12299,12301,43,12539,12537,12535,12538,0,5,1248,1254,6,12302,12300,12301,12303,43,12572,12571,12570,12569,0,30,16,5,6,12304,12305,12306,12307,43,12573,12557,12571,12572,0,30,16,5,6,12308,12309,12305,12304,43,12664,12665,12584,12577,0,1017,1018,1019,1016,12310,12311,12312,12313,43,12665,12558,12540,12584,0,1018,1020,1021,1019,12311,12314,12315,12312,43,12577,12584,12578,12542,0,1022,1023,1019,1016,12313,12312,12316,12317,43,12544,12578,12584,12540,0,1021,1019,1023,1024,12318,12316,12312,12315,43,12550,12581,12583,12574,0,1022,1023,1026,1025,12319,12320,12321,12322,43,12581,12549,12575,12583,0,1023,1024,1027,1026,12320,12323,12324,12321,43,12558,12587,12585,12540,0,1020,1028,1029,1021,12314,12325,12326,12315,43,12587,12562,12560,12585,0,1028,1030,1031,1029,12325,12327,12328,12326,43,12586,12544,12540,12585,0,1033,1021,1024,1032,12329,12318,12315,12326,43,12585,12560,12561,12586,0,1032,1034,1035,1033,12326,12328,12330,12329,43,12545,12589,12590,12579,0,1024,1041,1042,1023,12331,12332,12333,12334,43,12589,12548,12580,12590,0,1041,1021,1019,1042,12332,12335,12336,12333,43,12579,12590,12588,12546,0,1023,1042,1025,1022,12334,12333,12337,12338,43,12590,12580,12547,12588,0,1042,1019,1016,1025,12333,12336,12339,12337,43,12589,12591,12565,12548,0,30,16,5,6,12332,12340,12341,12335,43,12594,12545,12579,12597,0,1027,1021,1019,1044,12342,12331,12334,12343,43,12597,12579,12546,12593,0,1044,1019,1016,1025,12343,12334,12338,12344,43,12562,12614,12612,12560,0,1030,1049,1050,1031,12327,12345,12346,12328,43,12614,12559,12541,12612,0,1049,1051,1008,1050,12345,12347,12348,12346,43,12560,12612,12613,12561,0,1034,1052,1053,1035,12328,12346,12349,12330,43,12612,12541,12543,12613,0,1052,1005,1008,1053,12346,12348,12350,12349,43,12565,12616,12611,12548,0,30,49,1054,6,12341,12351,12352,12335,43,12616,12566,12549,12611,0,49,16,5,1054,12351,12353,12323,12352,43,12563,12615,12616,12565,0,30,1055,0,6,12354,12355,12351,12341,43,12615,12564,12566,12616,0,1055,16,5,0,12355,12356,12353,12351,43,12548,12611,12617,12580,0,1024,1058,1059,1023,12335,12352,12357,12336,43,12611,12549,12581,12617,0,1058,1021,1019,1059,12352,12323,12320,12357,43,12580,12617,12610,12547,0,1023,1059,1025,1022,12336,12357,12358,12339,43,12617,12581,12550,12610,0,1059,1019,1016,1025,12357,12320,12319,12358,43,12595,12618,12615,12563,0,181,1063,1055,16,12359,12360,12355,12354,43,12618,12596,12564,12615,0,1063,50,30,1055,12360,12361,12356,12355,43,12568,12644,12643,12567,0,6,186,184,5,12362,12363,12364,12365,43,12644,12569,12570,12643,0,186,30,16,184,12363,12307,12306,12364,43,12544,12651,12654,12578,0,1024,1079,1080,1023,12318,12366,12367,12316,43,12651,12594,12597,12654,0,1079,1027,1044,1080,12366,12342,12343,12367,43,12578,12654,12650,12542,0,1023,1080,1081,1022,12316,12367,12368,12317,43,12654,12597,12593,12650,0,1080,1044,1025,1081,12367,12343,12344,12368,43,12594,12651,12655,12598,0,162,952,1082,1045,12342,12366,12369,12370,43,12651,12544,12586,12655,0,952,6,186,1082,12366,12318,12329,12369,43,12598,12655,12652,12595,0,1045,1082,1083,182,12370,12369,12371,12359,43,12655,12586,12561,12652,0,1082,186,30,1083,12369,12329,12330,12371,43,12595,12652,12656,12618,0,181,91,1085,1063,12359,12371,12372,12360,43,12652,12561,12613,12656,0,91,5,1086,1085,12371,12330,12349,12372,43,12618,12656,12653,12596,0,1063,1085,1087,50,12360,12372,12373,12361,43,12656,12613,12543,12653,0,1085,1086,6,1087,12372,12349,12350,12373,43,12556,12658,12659,12576,0,1093,1096,1099,1098,12374,12375,12376,12377,43,12658,12557,12573,12659,0,1096,1097,1100,1099,12375,12309,12308,12376,43,12600,12669,12668,12555,0,6,87,91,5,12378,12379,12380,12381,43,12599,12667,12669,12600,0,6,1077,91,5,12382,12383,12379,12378,43,12552,12671,12670,12582,0,6,1077,91,5,12384,12385,12386,12387,43,12582,12670,12672,12551,0,6,87,91,5,12387,12386,12388,12389,43,12667,12599,12645,12674,0,1363,5,0,1362,12383,12382,12390,12391,43,12674,12645,12601,12666,0,1362,0,6,1364,12391,12390,12392,12393,43,12673,12554,12660,12675,0,91,5,0,1365,12394,12395,12396,12397,43,12675,12660,12555,12668,0,1365,0,6,87,12397,12396,12381,12380,43,12622,12678,12677,12621,0,50,1367,1366,44,12398,12399,12400,12401,43,12620,12676,12678,12622,0,50,1369,1368,44,12402,12403,12399,12398,43,12624,12680,12679,12623,0,50,1367,1368,44,12404,12405,12406,12407,43,12623,12679,12681,12625,0,50,1370,1368,44,12407,12406,12408,12409,43,12676,12620,12647,12684,0,1368,175,1075,1371,12403,12402,12410,12411,43,12684,12647,12619,12683,0,1371,1075,1076,1372,12411,12410,12412,12413,43,12682,12626,12661,12685,0,1368,44,53,1373,12414,12415,12416,12417,43,12685,12661,12621,12677,0,1373,53,50,1367,12417,12416,12401,12400,43,12629,12688,12687,12628,0,1377,1376,1375,1374,12418,12419,12420,12421,43,12627,12686,12688,12629,0,1377,150,1378,1374,12422,12423,12419,12418,43,12631,12690,12689,12630,0,51,150,1375,47,12424,12425,12426,12427,43,12630,12689,12691,12632,0,51,150,1375,47,12427,12426,12428,12429,43,12686,12627,12648,12694,0,1375,1374,1380,1379,12423,12422,12430,12431,43,12694,12648,12634,12693,0,1379,1380,1382,1381,12431,12430,12432,12433,43,12692,12633,12662,12695,0,1375,47,1384,1383,12434,12435,12436,12437,43,12695,12662,12628,12687,0,1383,1384,1377,150,12437,12436,12421,12420,43,12608,12700,12699,12609,0,47,52,161,16,12438,12439,12440,12441,43,12607,12697,12700,12608,0,47,1305,49,16,12442,12443,12439,12438,43,12602,12703,12702,12605,0,1374,1385,49,16,12444,12445,12446,12447,43,12605,12702,12701,12604,0,1374,1384,49,16,12447,12446,12448,12449,43,12603,12696,12704,12646,0,1374,1387,1379,1386,12450,12451,12452,12453,43,12646,12704,12703,12602,0,1386,1379,161,16,12453,12452,12445,12444,43,12604,12701,12705,12657,0,47,52,1388,1375,12449,12448,12454,12455,43,12657,12705,12698,12606,0,1375,1388,161,16,12455,12454,12456,12457,43,12710,12636,12635,12709,0,1389,51,30,1066,12458,12459,12460,12461,43,12707,12637,12636,12710,0,1389,51,30,1390,12462,12463,12459,12458,43,12713,12642,12639,12712,0,1389,1377,30,1066,12464,12465,12466,12467,43,12712,12639,12640,12711,0,1391,1377,30,1066,12467,12466,12468,12469,43,12706,12641,12649,12714,0,1394,1382,1393,1392,12470,12471,12472,12473,43,12714,12649,12642,12713,0,1392,1393,30,1390,12473,12472,12465,12464,43,12711,12640,12663,12715,0,1397,1377,1396,1395,12469,12468,12474,12475,43,12715,12663,12638,12708,0,1395,1396,30,1390,12475,12474,12476,12477,43,12551,12716,12720,12582,0,1016,1399,1398,1019,12389,12478,12479,12387,43,12716,12574,12583,12720,0,1399,1025,1026,1398,12478,12322,12321,12479,43,12582,12720,12717,12552,0,1019,1398,1400,1021,12387,12479,12480,12384,43,12720,12583,12575,12717,0,1398,1026,1027,1400,12479,12321,12324,12480,43,12569,12722,12721,12572,0,6,50,44,5,12307,12481,12482,12304,43,12722,12599,12600,12721,0,50,30,16,44,12481,12382,12378,12482,43,12555,12719,12721,12600,0,6,0,49,30,12381,12483,12482,12378,43,12719,12573,12572,12721,0,0,5,16,49,12483,12308,12304,12482,43,12568,12723,12724,12644,0,1071,1402,1401,1074,12362,12484,12485,12363,43,12723,12601,12645,12724,0,1402,1072,1073,1401,12484,12392,12390,12485,43,12644,12724,12722,12569,0,1074,1401,44,5,12363,12485,12481,12307,43,12724,12645,12599,12722,0,1401,1073,16,44,12485,12390,12382,12481,43,12554,12718,12725,12660,0,49,1404,1403,1066,12395,12486,12487,12396,43,12718,12576,12659,12725,0,1404,1098,1099,1403,12486,12377,12376,12487,43,12660,12725,12719,12555,0,1066,1403,1405,30,12396,12487,12483,12381,43,12725,12659,12573,12719,0,1403,1099,1100,1405,12487,12376,12308,12483,43,12669,12729,12728,12668,0,87,1407,1406,91,12379,12488,12489,12380,43,12729,12622,12621,12728,0,1407,50,44,1406,12488,12398,12401,12489,43,12667,12727,12729,12669,0,1077,1408,1406,91,12383,12490,12488,12379,43,12727,12620,12622,12729,0,1408,50,44,1406,12490,12402,12398,12488,43,12671,12731,12730,12670,0,1077,1408,1409,91,12385,12491,12492,12386,43,12731,12624,12623,12730,0,1408,50,44,1409,12491,12404,12407,12492,43,12670,12730,12732,12672,0,87,1408,1406,91,12386,12492,12493,12388,43,12730,12623,12625,12732,0,1408,50,44,1406,12492,12407,12409,12493,43,12620,12727,12734,12647,0,175,1409,1410,1075,12402,12490,12494,12410,43,12727,12667,12674,12734,0,1409,1363,1362,1410,12490,12383,12391,12494,43,12647,12734,12726,12619,0,1075,1410,1411,1076,12410,12494,12495,12412,43,12734,12674,12666,12726,0,1410,1362,1364,1411,12494,12391,12393,12495,43,12626,12733,12735,12661,0,44,1406,1412,53,12415,12496,12497,12416,43,12733,12673,12675,12735,0,1406,91,1365,1412,12496,12394,12397,12497,43,12661,12735,12728,12621,0,53,1412,1407,50,12416,12497,12489,12401,43,12735,12675,12668,12728,0,1412,1365,87,1407,12497,12397,12380,12489,43,12678,12738,12737,12677,0,1367,1414,1413,1366,12399,12498,12499,12400,43,12738,12629,12628,12737,0,1414,1377,1374,1413,12498,12418,12421,12499,43,12676,12736,12738,12678,0,1369,1414,1415,1368,12403,12500,12498,12399,43,12736,12627,12629,12738,0,1414,1377,1374,1415,12500,12422,12418,12498,43,12680,12740,12739,12679,0,1367,1416,1415,1368,12405,12501,12502,12406,43,12740,12631,12630,12739,0,1416,51,47,1415,12501,12424,12427,12502,43,12679,12739,12741,12681,0,1370,1414,1415,1368,12406,12502,12503,12408,43,12739,12630,12632,12741,0,1414,51,47,1415,12502,12427,12429,12503,43,12627,12736,12744,12648,0,1374,1415,1417,1380,12422,12500,12504,12430,43,12736,12676,12684,12744,0,1415,1368,1371,1417,12500,12403,12411,12504,43,12648,12744,12743,12634,0,1380,1417,1418,1382,12430,12504,12505,12432,43,12744,12684,12683,12743,0,1417,1371,1372,1418,12504,12411,12413,12505,43,12633,12742,12745,12662,0,47,1415,1419,1384,12435,12506,12507,12436,43,12742,12682,12685,12745,0,1415,1368,1373,1419,12506,12414,12417,12507,43,12662,12745,12737,12628,0,1384,1419,1416,1377,12436,12507,12499,12421,43,12745,12685,12677,12737,0,1419,1373,1367,1416,12507,12417,12400,12499,43,12688,12748,12747,12687,0,1376,1421,1420,1375,12419,12508,12509,12420,43,12748,12605,12604,12747,0,1421,30,16,1420,12508,12447,12449,12509,43,12686,12746,12748,12688,0,150,1421,1420,1378,12423,12510,12508,12419,43,12746,12602,12605,12748,0,1421,30,16,1420,12510,12444,12447,12508,43,12690,12750,12749,12689,0,150,1421,1420,1375,12425,12511,12512,12426,43,12750,12607,12608,12749,0,1421,30,16,1420,12511,12442,12438,12512,43,12689,12749,12751,12691,0,150,1421,1420,1375,12426,12512,12513,12428,43,12749,12608,12609,12751,0,1421,30,16,1420,12512,12438,12441,12513,43,12602,12746,12754,12646,0,16,1420,1422,49,12444,12510,12514,12453,43,12746,12686,12694,12754,0,1420,1375,1379,1422,12510,12423,12431,12514,43,12646,12754,12753,12603,0,49,1424,1423,30,12453,12514,12515,12450,43,12754,12694,12693,12753,0,1424,1379,1381,1423,12514,12431,12433,12515,43,12606,12752,12755,12657,0,16,1420,1425,49,12457,12516,12517,12455,43,12752,12692,12695,12755,0,1420,1375,1383,1425,12516,12434,12437,12517,43,12657,12755,12747,12604,0,49,1425,1421,30,12455,12517,12509,12449,43,12755,12695,12687,12747,0,1425,1383,150,1421,12517,12437,12420,12509,43,12700,12760,12759,12699,0,52,1427,1426,161,12439,12518,12519,12440,43,12760,12710,12709,12759,0,1427,1389,1066,1426,12518,12458,12461,12519,43,12697,12757,12760,12700,0,1305,1429,1428,49,12443,12520,12518,12439,43,12757,12707,12710,12760,0,1429,1389,1390,1428,12520,12462,12458,12518,43,12703,12763,12762,12702,0,1385,1431,1430,49,12445,12521,12522,12446,43,12763,12713,12712,12762,0,1431,1389,1066,1430,12521,12464,12467,12522,43,12702,12762,12761,12701,0,1384,1432,1428,49,12446,12522,12523,12448,43,12762,12712,12711,12761,0,1432,1391,1066,1428,12522,12467,12469,12523,43,12696,12756,12764,12704,0,1387,1434,1433,1379,12451,12524,12525,12452,43,12756,12706,12714,12764,0,1434,1394,1392,1433,12524,12470,12473,12525,43,12704,12764,12763,12703,0,1379,1433,1426,161,12452,12525,12521,12445,43,12764,12714,12713,12763,0,1433,1392,1390,1426,12525,12473,12464,12521,43,12701,12761,12765,12705,0,52,1427,1435,1388,12448,12523,12526,12454,43,12761,12711,12715,12765,0,1427,1397,1395,1435,12523,12469,12475,12526,43,12705,12765,12758,12698,0,1388,1435,1426,161,12454,12526,12527,12456,43,12765,12715,12708,12758,0,1435,1395,1390,1426,12526,12475,12477,12527,43,12574,12771,12768,12550,0,0,1436,44,5,12322,12528,12529,12319,43,12771,13760,13383,12768,0,1436,1012,16,44,12528,12530,12531,12529,43,12542,12766,12772,12577,0,6,50,44,5,12317,12532,12533,12313,43,12766,13382,13385,12772,0,50,30,16,44,12532,12534,12535,12533,43,12577,12772,12781,12664,0,6,50,44,5,12313,12533,12536,12310,43,12772,13385,14575,12781,0,50,30,16,44,12533,12535,12537,12536,43,13729,12767,12773,14569,0,30,50,1437,1040,12538,12539,12540,12541,43,12767,12546,12588,12773,0,50,6,0,1437,12539,12338,12337,12540,43,14569,12773,12770,13384,0,1040,1437,44,16,12541,12540,12542,12543,43,12773,12588,12547,12770,0,1437,0,5,44,12540,12337,12339,12542,43,13386,12774,12767,13729,0,1043,1438,49,16,12544,12545,12539,12538,43,12774,12593,12546,12767,0,1438,50,30,49,12545,12344,12338,12539,43,13384,12770,12776,14576,0,30,50,1439,1048,12543,12542,12546,12547,43,12770,12547,12610,12776,0,50,6,162,1439,12542,12339,12358,12546,43,14576,12776,12768,13383,0,1048,1439,1107,16,12547,12546,12529,12531,43,12776,12610,12550,12768,0,1439,162,5,1107,12546,12358,12319,12529,43,13382,12766,12780,13389,0,5,1070,1440,1078,12534,12532,12548,12549,43,12766,12542,12650,12780,0,1070,6,1077,1440,12532,12317,12368,12548,43,13389,12780,12774,13386,0,1078,1440,1438,1043,12549,12548,12545,12544,43,12780,12650,12593,12774,0,1440,1077,50,1438,12548,12368,12344,12545,43,14570,12769,12782,13859,0,5,1061,1362,1441,12550,12551,12552,12553,43,12769,12551,12672,12782,0,1061,6,87,1362,12551,12389,12388,12552,43,13387,12777,12783,13869,0,1064,1075,1443,1442,12554,12555,12556,12557,43,12777,12625,12681,12783,0,1075,50,1370,1443,12555,12409,12408,12556,43,13818,12778,12784,14574,0,1446,1445,1379,1444,12558,12559,12560,12561,43,12778,12632,12691,12784,0,1445,51,150,1379,12559,12429,12428,12560,43,13794,12775,12785,13887,0,16,1447,1379,49,12562,12563,12564,12565,43,12775,12609,12699,12785,0,1447,1446,1387,1379,12563,12441,12440,12564,43,14573,12786,12779,13388,0,1449,1448,150,30,12566,12567,12568,12569,43,12786,12709,12635,12779,0,1448,1450,51,150,12567,12461,12460,12568,43,12551,12769,12787,12716,0,6,1452,1451,977,12389,12551,12570,12478,43,12769,14570,13390,12787,0,1452,30,1453,1451,12551,12550,12571,12570,43,12716,12787,12771,12574,0,977,1454,1436,0,12478,12570,12528,12322,43,12787,13390,13760,12771,0,1454,1453,1012,1436,12570,12571,12530,12528,43,13859,12782,12788,14572,0,1441,1362,1456,1455,12553,12552,12572,12573,43,12782,12672,12732,12788,0,1362,87,1407,1456,12552,12388,12493,12572,43,14572,12788,12777,13387,0,1455,1456,1457,1064,12573,12572,12555,12554,43,12788,12732,12625,12777,0,1456,1407,50,1457,12572,12493,12409,12555,43,13869,12783,12789,13391,0,1442,1443,1459,1458,12557,12556,12574,12575,43,12783,12681,12741,12789,0,1443,1370,1414,1459,12556,12408,12503,12574,43,13391,12789,12778,13818,0,1458,1459,1445,1446,12575,12574,12559,12558,43,12789,12741,12632,12778,0,1459,1414,51,1445,12574,12503,12429,12559,43,14574,12784,12790,14568,0,1444,1379,1424,1460,12561,12560,12576,12577,43,12784,12691,12751,12790,0,1379,150,1421,1424,12560,12428,12513,12576,43,14568,12790,12775,13794,0,1460,1424,737,16,12577,12576,12563,12562,43,12790,12751,12609,12775,0,1424,1421,30,737,12576,12513,12441,12563,43,13887,12785,12791,14571,0,49,1379,1461,1428,12565,12564,12578,12579,43,12785,12699,12759,12791,0,1379,1387,1462,1461,12564,12440,12519,12578,43,14571,12791,12786,14573,0,1428,1463,1448,1449,12579,12578,12567,12566,43,12791,12759,12709,12786,0,1463,1462,1450,1448,12578,12519,12461,12567,43,12803,12807,12806,12802,0,6,0,49,30,12580,12581,12582,12583,43,12807,12804,12805,12806,0,0,5,16,49,12581,12584,12585,12582,43,12643,12806,12805,12567,0,30,16,5,6,12364,12582,12585,12365,43,12802,12806,12643,12570,0,5,16,30,6,12583,12582,12364,12306,43,12592,12809,12808,12553,0,6,739,957,30,12586,12587,12588,12589,43,12809,12800,12801,12808,0,739,5,16,957,12587,12590,12591,12588,43,12800,12811,12810,12801,0,6,0,1464,30,12590,12592,12593,12591,43,12811,12803,12802,12810,0,0,5,16,1464,12592,12580,12583,12593,43,12808,12658,12556,12553,0,30,16,5,6,12588,12375,12374,12589,43,12658,12808,12801,12557,0,30,16,5,6,12375,12588,12591,12309,43,12801,12810,12571,12557,0,5,16,30,6,12591,12593,12305,12309,43,12571,12810,12802,12570,0,5,16,30,6,12305,12593,12583,12306,43,12781,12813,12812,12664,0,5,0,185,44,12536,12594,12595,12310,43,12813,12792,12794,12812,0,0,6,50,185,12594,12596,12597,12595,43,14575,14003,12813,12781,0,44,1465,49,16,12537,12598,12594,12536,43,14003,14567,12792,12813,0,1465,50,30,49,12598,12599,12596,12594,43,12665,12815,12814,12558,0,1019,1467,1466,1021,12311,12600,12601,12314,43,12815,12793,12799,12814,0,1467,1018,1020,1466,12600,12602,12603,12601,43,12664,12812,12815,12665,0,1016,1468,1467,1019,12310,12595,12600,12311,43,12812,12794,12793,12815,0,1468,1017,1018,1467,12595,12597,12602,12600,43,12562,12818,12817,12614,0,1031,1470,1469,1050,12327,12604,12605,12345,43,12818,12797,12795,12817,0,1470,1030,1049,1469,12604,12606,12607,12605,43,12614,12817,12816,12559,0,1050,1469,1471,1008,12345,12605,12608,12347,43,12817,12795,12798,12816,0,1469,1049,1051,1471,12605,12607,12609,12608,43,12587,12819,12818,12562,0,1029,1472,1470,1031,12325,12610,12604,12327,43,12819,12796,12797,12818,0,1472,1028,1030,1470,12610,12611,12606,12604,43,12558,12814,12819,12587,0,1021,1466,1472,1029,12314,12601,12610,12325,43,12814,12799,12796,12819,0,1466,1020,1028,1472,12601,12603,12611,12610,43,12829,12830,12826,12827,0,30,16,5,6,3423,3423,3423,12612,43,12832,12831,12830,12829,0,30,16,5,6,3423,3423,3423,3423,43,12832,12834,12835,12831,0,5,16,30,6,3423,3423,3423,3423,43,12836,12837,12835,12834,0,5,16,30,6,3423,3423,3423,3423,43,12847,12841,12840,12846,0,16,44,50,30,12278,12279,12276,12277,43,12841,12850,12848,12840,0,44,5,6,50,12279,12613,12280,12276,43,12842,12845,12844,12843,0,50,30,16,44,12282,12283,12284,12285,43,12851,12842,12843,12849,0,6,50,44,5,12286,12282,12285,12287,43,12846,12844,12845,12847,0,30,16,5,6,12277,12284,12283,12278,43,12851,12849,12848,12850,0,1107,1359,1243,1361,12286,12287,12280,12613,43,12852,12855,12857,12853,0,1107,1359,1243,1361,12614,12615,12616,12617,43,12854,12852,12853,12856,0,1248,1107,1361,1254,12618,12614,12617,12619,43,12855,12858,12859,12857,0,1359,15,1360,1243,12615,12620,12621,12616,43,12864,12861,12860,12862,0,1359,15,1360,1243,12622,12623,12624,12625,43,12865,12864,12862,12863,0,1248,1359,1243,1254,12626,12622,12625,12627,43,12866,12867,12869,12868,0,1248,1359,1243,1254,12628,12629,12630,12631,43,12867,12870,12871,12869,0,1359,15,1360,1243,12629,12632,12633,12630,43,12876,12873,12872,12874,0,1359,15,1360,1243,12634,12635,12636,12637,43,12877,12879,12878,12875,0,1248,1107,1361,1254,12638,12639,12640,12641,43,12879,12876,12874,12878,0,1107,1359,1243,1361,12639,12634,12637,12640,43,12880,12882,12883,12881,0,1107,1359,1243,1361,12642,12643,12644,12645,43,12885,12887,12886,12884,0,30,16,5,6,12646,12647,12648,12649,43,12880,12889,12888,12882,0,6,50,44,5,12642,12650,12651,12643,43,12889,12886,12887,12888,0,50,30,16,44,12650,12648,12647,12651,43,12890,12881,12883,12891,0,44,5,6,50,12652,12645,12644,12653,43,12884,12890,12891,12885,0,16,44,50,30,12649,12652,12653,12646,43,12901,12900,12892,12899,0,30,16,5,6,12654,12655,12656,12657,43,12901,12899,12898,12902,0,30,16,5,6,12654,12657,12658,12659,43,12902,12898,12897,12903,0,30,16,5,6,12659,12658,12660,12661,43,12903,12897,12896,12904,0,30,16,5,6,12661,12660,12662,12663,43,12904,12896,12895,12905,0,30,16,5,6,12663,12662,12664,12665,43,12905,12895,12894,12906,0,30,16,5,6,12665,12664,12666,12667,43,12906,12894,12893,12907,0,30,16,5,6,12667,12666,12668,12669,43,12907,12893,12892,12900,0,30,16,5,6,12669,12668,12656,12655,43,12908,12915,12917,12916,0,30,16,5,6,12670,12671,12672,12673,43,12917,12915,12914,12918,0,30,16,5,6,12672,12671,12674,12675,43,12918,12914,12913,12919,0,30,16,5,6,12675,12674,12676,12677,43,12919,12913,12912,12920,0,30,16,5,6,12677,12676,12678,12679,43,12920,12912,12911,12921,0,30,16,5,6,12679,12678,12680,12681,43,12921,12911,12910,12922,0,30,16,5,6,12681,12680,12682,12683,43,12922,12910,12909,12923,0,30,16,5,6,12683,12682,12684,12685,43,12923,12909,12908,12916,0,30,16,5,6,12685,12684,12670,12673,43,12916,12917,12924,12925,0,30,16,5,6,12673,12672,12686,12687,43,12925,12924,12919,12920,0,30,16,5,6,12687,12686,12677,12679,43,12923,12916,12925,12926,0,30,16,5,6,12685,12673,12687,12688,43,12926,12925,12920,12921,0,30,16,5,6,12688,12687,12679,12681,43,12917,12918,12919,12924,0,30,16,5,6,12672,12675,12677,12686,43,12926,12921,12922,12923,0,30,16,5,6,12688,12681,12683,12685,43,12907,12900,12927,12928,0,30,16,5,6,12669,12655,12689,12690,43,12928,12927,12908,12909,0,30,16,5,6,12690,12689,12670,12684,43,12906,12907,12928,12929,0,30,16,5,6,12667,12669,12690,12691,43,12929,12928,12909,12910,0,30,16,5,6,12691,12690,12684,12682,43,12905,12906,12929,12930,0,30,16,5,6,12665,12667,12691,12692,43,12930,12929,12910,12911,0,30,16,5,6,12692,12691,12682,12680,43,12904,12905,12930,12931,0,30,16,5,6,12663,12665,12692,12693,43,12931,12930,12911,12912,0,30,16,5,6,12693,12692,12680,12678,43,12903,12904,12931,12932,0,30,16,5,6,12661,12663,12693,12694,43,12932,12931,12912,12913,0,30,16,5,6,12694,12693,12678,12676,43,12902,12903,12932,12933,0,30,16,5,6,12659,12661,12694,12695,43,12933,12932,12913,12914,0,30,16,5,6,12695,12694,12676,12674,43,12901,12902,12933,12934,0,30,16,5,6,12654,12659,12695,12696,43,12934,12933,12914,12915,0,30,16,5,6,12696,12695,12674,12671,43,12927,12900,12901,12934,0,30,16,5,6,12689,12655,12654,12696,43,12908,12927,12934,12915,0,30,16,5,6,12670,12689,12696,12671,43,12942,12935,12899,12892,0,30,16,5,6,12697,12698,12657,12656,43,12936,12898,12899,12935,0,30,16,5,6,12699,12658,12657,12698,43,12937,12897,12898,12936,0,30,16,5,6,12700,12660,12658,12699,43,12938,12896,12897,12937,0,30,16,5,6,12701,12662,12660,12700,43,12939,12895,12896,12938,0,30,16,5,6,12702,12664,12662,12701,43,12940,12894,12895,12939,0,30,16,5,6,12703,12666,12664,12702,43,12941,12893,12894,12940,0,30,16,5,6,12704,12668,12666,12703,43,12893,12941,12942,12892,0,30,16,5,6,12668,12704,12697,12656,43,12943,12993,12992,12944,0,30,16,5,6,12705,12706,12707,12708,43,12944,12992,12991,12945,0,30,16,5,6,12708,12707,12709,12710,43,12945,12991,12990,12946,0,30,16,5,6,12710,12709,12711,12712,43,12946,12990,12989,12947,0,30,16,5,6,12712,12711,12713,12714,43,12947,12989,12988,12948,0,30,16,5,6,12714,12713,12715,12716,43,12948,12988,12987,12949,0,30,16,5,6,12716,12715,12717,12718,43,12949,12987,12986,12950,0,30,16,5,6,12718,12717,12719,12720,43,12986,12993,12943,12950,0,30,16,5,6,12719,12706,12705,12720,43,12977,12958,12951,12970,0,30,16,5,6,12721,12722,12723,12724,43,12958,12985,12984,12951,0,30,16,5,6,12722,12725,12726,12723,43,12951,12952,12971,12970,0,30,16,5,6,12723,12727,12728,12724,43,12984,12983,12952,12951,0,30,16,5,6,12726,12729,12727,12723,43,12952,12953,12972,12971,0,30,16,5,6,12727,12730,12731,12728,43,12983,12982,12953,12952,0,30,16,5,6,12729,12732,12730,12727,43,12953,12954,12973,12972,0,30,16,5,6,12730,12733,12734,12731,43,12982,12981,12954,12953,0,30,16,5,6,12732,12735,12733,12730,43,12954,12955,12974,12973,0,30,16,5,6,12733,12736,12737,12734,43,12981,12980,12955,12954,0,30,16,5,6,12735,12738,12736,12733,43,12955,12956,12975,12974,0,30,16,5,6,12736,12739,12740,12737,43,12980,12979,12956,12955,0,30,16,5,6,12738,12741,12739,12736,43,12956,12957,12976,12975,0,30,16,5,6,12739,12742,12743,12740,43,12979,12978,12957,12956,0,30,16,5,6,12741,12744,12742,12739,43,12957,12958,12977,12976,0,30,16,5,6,12742,12722,12721,12743,43,12978,12985,12958,12957,0,30,16,5,6,12744,12725,12722,12742,43,12959,12964,12963,12962,0,30,16,5,6,12745,12746,12747,12748,43,12968,12967,12966,12961,0,30,16,5,6,12749,12750,12751,12752,43,12959,12960,12965,12964,0,30,16,5,6,12745,12753,12754,12746,43,12962,12969,12960,12959,0,30,16,5,6,12748,12755,12753,12745,43,12960,12961,12966,12965,0,30,16,5,6,12753,12752,12751,12754,43,12969,12968,12961,12960,0,30,16,5,6,12755,12749,12752,12753,43,12962,12976,12977,12969,0,30,16,5,6,12748,12743,12721,12755,43,12963,12975,12976,12962,0,30,16,5,6,12747,12740,12743,12748,43,12964,12974,12975,12963,0,30,16,5,6,12746,12737,12740,12747,43,12965,12973,12974,12964,0,30,16,5,6,12754,12734,12737,12746,43,12966,12972,12973,12965,0,30,16,5,6,12751,12731,12734,12754,43,12967,12971,12972,12966,0,30,16,5,6,12750,12728,12731,12751,43,12968,12970,12971,12967,0,30,16,5,6,12749,12724,12728,12750,43,12977,12970,12968,12969,0,30,16,5,6,12721,12724,12749,12755,43,12978,12992,12993,12985,0,30,16,5,6,12744,12707,12706,12725,43,12979,12991,12992,12978,0,30,16,5,6,12741,12709,12707,12744,43,12980,12990,12991,12979,0,30,16,5,6,12738,12711,12709,12741,43,12981,12989,12990,12980,0,30,16,5,6,12735,12713,12711,12738,43,12982,12988,12989,12981,0,30,16,5,6,12732,12715,12713,12735,43,12983,12987,12988,12982,0,30,16,5,6,12729,12717,12715,12732,43,12984,12986,12987,12983,0,30,16,5,6,12726,12719,12717,12729,43,12993,12986,12984,12985,0,30,16,5,6,12706,12719,12726,12725,43,12995,12996,13001,12994,0,53,50,51,52,12756,12757,12758,12759,43,12999,13003,12997,12998,0,53,50,30,49,12760,12761,12762,12763,43,13012,13010,13008,13007,0,53,50,30,49,12764,12765,12766,12767,43,13011,13009,13010,13012,0,53,50,30,49,12768,12769,12765,12764,43,13005,13006,13009,13011,0,52,51,30,49,12770,12771,12769,12768,43,13011,13022,13021,13005,0,49,1473,150,30,12768,12772,12773,12770,43,13007,13024,13023,13012,0,49,52,51,30,12767,12774,12775,12764,43,13012,13023,13022,13011,0,49,52,51,30,12764,12775,12772,12768,43,13001,13028,13027,12994,0,49,1473,150,30,12758,12776,12777,12759,43,13028,13006,13005,13027,0,1473,52,51,150,12776,12771,12770,12777,43,12999,13030,13029,13003,0,49,188,1474,30,12760,12778,12779,12761,43,13030,13007,13008,13029,0,188,53,50,1474,12778,12767,12766,12779,43,13004,13032,13031,13002,0,49,52,51,30,12780,12781,12782,12783,43,13032,13010,13009,13031,0,52,53,50,51,12781,12765,12769,12782,43,13003,13029,13032,13004,0,49,52,51,30,12761,12779,12781,12780,43,13029,13008,13010,13032,0,52,53,50,51,12779,12766,12765,12781,43,13002,13031,13028,13001,0,49,1473,150,30,12783,12782,12776,12758,43,13031,13009,13006,13028,0,1473,52,51,150,12782,12769,12771,12776,43,13018,13034,13035,13019,0,49,1473,150,30,12784,12785,12786,12787,43,13034,13014,13013,13035,0,1473,52,51,150,12785,12788,12789,12786,43,13020,13036,13033,13017,0,49,188,51,30,12790,12791,12792,12793,43,13036,13016,13015,13033,0,188,53,50,51,12791,12794,12795,12792,43,13019,13035,13036,13020,0,49,52,51,30,12787,12786,12791,12790,43,13035,13013,13016,13036,0,52,53,50,51,12786,12789,12794,12791,43,13007,13030,13037,13024,0,30,1066,1397,51,12767,12778,12796,12774,43,13030,12999,13025,13037,0,1066,49,52,1397,12778,12760,12797,12796,43,13038,13026,12994,13027,0,1475,150,30,1066,12798,12799,12759,12777,43,13027,13005,13021,13038,0,1066,49,1473,1475,12777,12770,12773,12798,43,13022,13040,13039,13021,0,1473,1477,1476,150,12772,12800,12801,12773,43,13040,13013,13014,13039,0,1477,52,51,1476,12800,12789,12788,12801,43,13024,13042,13041,13023,0,52,1478,1370,51,12774,12802,12803,12775,43,13042,13015,13016,13041,0,1478,53,50,1370,12802,12795,12794,12803,43,13023,13041,13040,13022,0,52,1373,1370,51,12775,12803,12800,12772,43,13041,13016,13013,13040,0,1373,53,50,1370,12803,12794,12789,12800,43,13046,13019,13020,13045,0,1373,53,50,1370,12804,12787,12790,12805,43,13045,13020,13017,13043,0,1373,53,50,1370,12805,12790,12793,12806,43,13044,13018,13019,13046,0,1477,52,51,1476,12807,12784,12787,12804,43,13015,13042,13047,13033,0,50,1370,1479,951,12795,12802,12808,12792,43,13042,13024,13037,13047,0,1370,51,1397,1479,12802,12774,12796,12808,43,13033,13047,13043,13017,0,951,1479,1478,53,12792,12808,12806,12793,43,13047,13037,13025,13043,0,1479,1397,52,1478,12808,12796,12797,12806,43,13018,13044,13048,13034,0,51,1481,1480,1397,12784,12807,12809,12785,43,13044,13026,13038,13048,0,1481,150,1482,1480,12807,12799,12798,12809,43,13034,13048,13039,13014,0,1397,1483,1477,52,12785,12809,12801,12788,43,13048,13038,13021,13039,0,1483,1482,1473,1477,12809,12798,12773,12801,43,13084,13072,13065,13077,0,30,16,5,6,12810,12811,12812,12813,43,13077,13065,13066,13078,0,30,16,5,6,12813,12812,12814,12815,43,13078,13066,13071,13083,0,30,16,5,6,12815,12814,12816,12817,43,13079,13067,13064,13076,0,30,16,5,6,12818,12819,12820,12821,43,13075,13063,13068,13080,0,30,16,5,6,12822,12823,12824,12825,43,13067,13079,13073,13061,0,30,16,5,6,12819,12818,12826,12827,43,13080,13068,13070,13082,0,30,16,5,6,12825,12824,12828,12829,43,13081,13069,13061,13073,0,30,16,5,6,12830,12831,12827,12826,43,13074,13062,13069,13081,0,30,16,5,6,12832,12833,12831,12830,43,13082,13070,13062,13074,0,30,16,5,6,12829,12828,12833,12832,43,13083,13071,13063,13075,0,30,16,5,6,12817,12816,12823,12822,43,13076,13064,13072,13084,0,30,16,5,6,12821,12820,12811,12810,42,13085,13093,13091,0,16,5,6,12834,12835,12836,42,13085,13092,13090,0,16,5,6,12834,12837,12838,42,13085,13091,13089,0,16,5,6,12834,12836,12839,42,13085,13088,13092,0,16,5,6,12834,12840,12837,42,13085,13089,13086,0,16,5,6,12834,12839,12841,42,13085,13087,13088,0,16,5,6,12834,12842,12840,42,13085,13090,13093,0,16,5,6,12834,12838,12835,43,13093,13090,13097,13094,0,30,16,5,6,12835,12838,12843,12844,43,13088,13087,13100,13099,0,30,16,5,6,12840,12842,12845,12846,43,13086,13089,13098,13101,0,30,16,5,6,12841,12839,12847,12848,43,13092,13088,13099,13095,0,30,16,5,6,12837,12840,12846,12849,43,13089,13091,13096,13098,0,30,16,5,6,12839,12836,12850,12847,43,13090,13092,13095,13097,0,30,16,5,6,12838,12837,12849,12843,43,13091,13093,13094,13096,0,30,16,5,6,12836,12835,12844,12850,43,13096,13094,13109,13107,0,30,16,5,6,12850,12844,12851,12852,43,13097,13095,13108,13106,0,30,16,5,6,12843,12849,12853,12854,43,13098,13096,13107,13105,0,30,16,5,6,12847,12850,12852,12855,43,13095,13099,13104,13108,0,30,16,5,6,12849,12846,12856,12853,43,13101,13098,13105,13102,0,30,16,5,6,12848,12847,12855,12857,43,13099,13100,13103,13104,0,30,16,5,6,12846,12845,12858,12856,43,13094,13097,13106,13109,0,30,16,5,6,12844,12843,12854,12851,43,13132,13084,13077,13131,0,30,16,5,6,12859,12810,12813,12860,43,13131,13077,13078,13130,0,30,16,5,6,12860,12813,12815,12861,43,13130,13078,13083,13129,0,30,16,5,6,12861,12815,12817,12862,43,13128,13075,13080,13127,0,30,16,5,6,12863,12822,12825,12864,43,13135,13073,13079,13134,0,30,16,5,6,12865,12826,12818,12866,43,13127,13080,13082,13138,0,30,16,5,6,12864,12825,12829,12867,43,13136,13081,13073,13135,0,30,16,5,6,12868,12830,12826,12865,43,13137,13074,13081,13136,0,30,16,5,6,12869,12832,12830,12868,43,13138,13082,13074,13137,0,30,16,5,6,12867,12829,12832,12869,43,13129,13083,13075,13128,0,30,16,5,6,12862,12817,12822,12863,43,13133,13076,13084,13132,0,30,16,5,6,12870,12821,12810,12859,43,13142,13151,13154,13139,0,30,16,5,6,12871,12872,12873,12874,43,13145,13148,13149,13144,0,30,16,5,6,12875,12876,12877,12878,43,13150,13147,13146,13143,0,30,16,5,6,12879,12880,12881,12882,43,13144,13149,13153,13140,0,30,16,5,6,12878,12877,12883,12884,43,13152,13150,13143,13141,0,30,16,5,6,12885,12879,12882,12886,43,13153,13151,13142,13140,0,30,16,5,6,12883,12872,12871,12884,43,13154,13152,13141,13139,0,30,16,5,6,12873,12885,12886,12874,43,13158,13167,13170,13155,0,30,16,5,6,12887,12888,12889,12890,43,13161,13164,13165,13160,0,30,16,5,6,12891,12892,12893,12894,43,13166,13163,13162,13159,0,30,16,5,6,12895,12896,12897,12898,43,13165,13169,13156,13160,0,30,16,5,6,12893,12899,12900,12894,43,13168,13166,13159,13157,0,30,16,5,6,12901,12895,12898,12902,43,13169,13167,13158,13156,0,30,16,5,6,12899,12888,12887,12900,43,13155,13170,13168,13157,0,30,16,5,6,12890,12889,12901,12902,43,13110,13179,13182,13113,0,30,16,5,6,12903,12904,12905,12906,43,13178,13109,13106,13175,0,30,16,5,6,12907,12851,12854,12908,43,13115,13184,13186,13116,0,30,16,5,6,12909,12910,12911,12912,43,13173,13104,13103,13171,0,30,16,5,6,12913,12856,12858,12914,43,13117,13185,13183,13114,0,30,16,5,6,12915,12916,12917,12918,43,13172,13102,13105,13174,0,30,16,5,6,12919,12857,12855,12920,43,13111,13181,13184,13115,0,30,16,5,6,12921,12922,12910,12909,43,13176,13108,13104,13173,0,30,16,5,6,12923,12853,12856,12913,43,13114,13183,13180,13112,0,30,16,5,6,12918,12917,12924,12925,43,13174,13105,13107,13177,0,30,16,5,6,12920,12855,12852,12926,43,13113,13182,13181,13111,0,30,16,5,6,12906,12905,12922,12921,43,13175,13106,13108,13176,0,30,16,5,6,12908,12854,12853,12923,43,13112,13180,13179,13110,0,30,16,5,6,12925,12924,12904,12903,43,13177,13107,13109,13178,0,30,16,5,6,12926,12852,12851,12907,43,13196,13214,13215,13190,0,30,16,5,6,12927,12928,12929,12930,43,13190,13215,13216,13191,0,30,16,5,6,12930,12929,12931,12932,43,13192,13213,13220,13189,0,30,16,5,6,12933,12934,12935,12936,43,13213,13192,13187,13217,0,30,16,5,6,12934,12933,12937,12938,43,13193,13218,13217,13187,0,30,16,5,6,12939,12940,12938,12937,43,13188,13219,13218,13193,0,30,16,5,6,12941,12942,12940,12939,43,13189,13220,13214,13196,0,30,16,5,6,12936,12935,12928,12927,43,13198,13199,13209,13210,0,30,16,5,6,12943,12944,12945,12946,43,13199,13200,13208,13209,0,30,16,5,6,12944,12947,12948,12945,43,13197,13204,13211,13212,0,30,16,5,6,12949,12950,12951,12952,43,13201,13197,13212,13207,0,30,16,5,6,12953,12949,12952,12954,43,13202,13201,13207,13206,0,30,16,5,6,12955,12953,12954,12956,43,13203,13202,13206,13205,0,30,16,5,6,12957,12955,12956,12958,43,13204,13198,13210,13211,0,30,16,5,6,12950,12943,12946,12951,43,13211,13210,13214,13220,0,30,16,5,6,12951,12946,12928,12935,43,13205,13206,13218,13219,0,30,16,5,6,12958,12956,12940,12942,43,13206,13207,13217,13218,0,30,16,5,6,12956,12954,12938,12940,43,13207,13212,13213,13217,0,30,16,5,6,12954,12952,12934,12938,43,13212,13211,13220,13213,0,30,16,5,6,12952,12951,12935,12934,43,13209,13208,13216,13215,0,30,16,5,6,12945,12948,12931,12929,43,13210,13209,13215,13214,0,30,16,5,6,12946,12945,12929,12928,43,13200,13221,13222,13208,0,30,16,5,6,12947,12959,12960,12948,43,13208,13222,13223,13216,0,30,16,5,6,12948,12960,12961,12931,43,13225,13203,13205,13224,0,30,16,5,6,12962,12957,12958,12963,43,13224,13205,13219,13226,0,30,16,5,6,12963,12958,12942,12964,43,13216,13223,13195,13191,0,30,16,5,6,12931,12961,12965,12932,43,13194,13226,13219,13188,0,30,16,5,6,12966,12964,12942,12941,43,13255,13258,13233,13251,0,1486,1485,953,1484,12967,12968,12969,12970,43,13000,13253,13258,13255,0,1487,1069,1485,1486,12971,12972,12968,12967,43,13259,13257,13256,13254,0,953,1484,1487,1069,12973,12974,12975,12976,43,13253,13000,13257,13259,0,953,1484,1487,1069,12972,12971,12974,12973,43,13254,13256,13252,13234,0,953,1484,1487,1069,12976,12975,12977,12978,43,13258,13001,12996,13233,0,1489,47,44,1488,12968,12758,12757,12969,43,13253,13002,13001,13258,0,1490,16,47,1489,12972,12783,12758,12968,43,13004,13259,13254,13003,0,44,1488,1490,16,12780,12973,12976,12761,43,13002,13253,13259,13004,0,44,1488,1490,16,12783,12972,12973,12780,43,13003,13254,13234,12997,0,44,1488,1490,16,12761,12976,12978,12762,43,13261,13255,13251,13235,0,1494,1493,1492,1491,12979,12967,12970,12980,43,13260,13000,13255,13261,0,1496,1495,1493,1494,12981,12971,12967,12979,43,13257,13249,13248,13256,0,1492,1491,1496,1495,12974,12982,12983,12975,43,13000,13260,13249,13257,0,1492,1491,1496,1495,12971,12981,12982,12974,43,13256,13248,13250,13252,0,1492,1491,1496,1495,12975,12983,12984,12977,43,13241,13267,13266,13240,0,49,1069,719,0,12985,12986,12987,12988,43,13267,13132,13131,13266,0,1069,16,5,719,12986,12859,12860,12987,43,13240,13266,13265,13239,0,49,1069,719,0,12988,12987,12989,12990,43,13266,13131,13130,13265,0,1069,16,5,719,12987,12860,12861,12989,43,13239,13265,13264,13238,0,49,1069,719,0,12990,12989,12991,12992,43,13265,13130,13129,13264,0,1069,16,5,719,12989,12861,12862,12991,43,13237,13263,13262,13236,0,49,1069,719,0,12993,12994,12995,12996,43,13263,13128,13127,13262,0,1069,16,5,719,12994,12863,12864,12995,43,13244,13270,13269,13243,0,49,1069,719,0,12997,12998,12999,13000,43,13270,13135,13134,13269,0,1069,16,5,719,12998,12865,12866,12999,43,13236,13262,13273,13247,0,49,1069,719,0,12996,12995,13001,13002,43,13262,13127,13138,13273,0,1069,16,5,719,12995,12864,12867,13001,43,13245,13271,13270,13244,0,49,1069,719,0,13003,13004,12998,12997,43,13271,13136,13135,13270,0,1069,16,5,719,13004,12868,12865,12998,43,13246,13272,13271,13245,0,49,1069,719,0,13005,13006,13004,13003,43,13272,13137,13136,13271,0,1069,16,5,719,13006,12869,12868,13004,43,13247,13273,13272,13246,0,49,1069,719,0,13002,13001,13006,13005,43,13273,13138,13137,13272,0,1069,16,5,719,13001,12867,12869,13006,43,13238,13264,13263,13237,0,49,1069,719,0,12992,12991,12994,12993,43,13264,13129,13128,13263,0,1069,16,5,719,12991,12862,12863,12994,43,13242,13268,13267,13241,0,49,1069,719,0,13007,13008,12986,12985,43,13268,13133,13132,13267,0,1069,16,5,719,13008,12870,12859,12986,43,13276,13261,13235,13118,0,1500,1499,1498,1497,13009,12979,12980,13010,43,13275,13260,13261,13276,0,1502,1501,1499,1500,13011,12981,12979,13009,43,13249,13124,13274,13248,0,1498,1497,1502,1501,12982,13012,13013,12983,43,13260,13275,13124,13249,0,1498,1497,1502,1501,12981,13011,13012,12982,43,13248,13274,13121,13250,0,1498,1497,1502,1501,12983,13013,13014,12984,43,13119,13282,13281,13118,0,30,1066,952,6,13015,13016,13017,13010,43,13282,13241,13240,13281,0,1066,49,0,952,13016,12985,12988,13017,43,13118,13281,13280,13276,0,30,1066,952,6,13010,13017,13018,13009,43,13281,13240,13239,13280,0,1066,49,0,952,13017,12988,12990,13018,43,13276,13280,13279,13275,0,30,1066,952,6,13009,13018,13019,13011,43,13280,13239,13238,13279,0,1066,49,0,952,13018,12990,12992,13019,43,13124,13278,13277,13274,0,30,1066,952,6,13012,13020,13021,13013,43,13278,13237,13236,13277,0,1066,49,0,952,13020,12993,12996,13021,43,13126,13285,13284,13120,0,30,1066,952,6,13022,13023,13024,13025,43,13285,13244,13243,13284,0,1066,49,0,952,13023,12997,13000,13024,43,13274,13277,13288,13121,0,30,1066,952,6,13013,13021,13026,13014,43,13277,13236,13247,13288,0,1066,49,0,952,13021,12996,13002,13026,43,13122,13286,13285,13126,0,30,1066,952,6,13027,13028,13023,13022,43,13286,13245,13244,13285,0,1066,49,0,952,13028,13003,12997,13023,43,13125,13287,13286,13122,0,30,1066,952,6,13029,13030,13028,13027,43,13287,13246,13245,13286,0,1066,49,0,952,13030,13005,13003,13028,43,13121,13288,13287,13125,0,30,1066,952,6,13014,13026,13030,13029,43,13288,13247,13246,13287,0,1066,49,0,952,13026,13002,13005,13030,43,13275,13279,13278,13124,0,30,1066,952,6,13011,13019,13020,13012,43,13279,13238,13237,13278,0,1066,49,0,952,13019,12992,12993,13020,43,13123,13283,13282,13119,0,30,1066,952,6,13031,13032,13016,13015,43,13283,13242,13241,13282,0,1066,49,0,952,13032,13007,12985,13016,43,13294,13293,12837,12836,0,5,16,30,6,3423,3423,3423,3423,43,13295,13296,13293,13294,0,5,16,30,6,3423,3423,3423,3423,43,13295,13301,13304,13296,0,6,0,49,30,3423,3423,3423,3423,43,13305,12828,12820,13306,0,44,5,6,50,13033,13034,13035,3423,43,13306,12829,12827,13305,0,50,30,16,44,3423,3423,12612,13033,43,12824,13307,13306,12820,0,30,49,0,6,13036,3423,3423,13035,43,13307,12832,12829,13306,0,49,16,5,0,3423,3423,3423,3423,43,12823,13308,13307,12824,0,6,50,44,5,13037,3423,3423,13036,43,13308,12834,12832,13307,0,50,30,16,44,3423,3423,3423,3423,43,12839,13309,13308,12823,0,30,49,0,6,13038,3423,3423,13037,43,13309,12836,12834,13308,0,49,16,5,0,3423,3423,3423,3423,43,13291,13310,13309,12839,0,30,49,0,6,13039,3423,3423,13038,43,13310,13294,12836,13309,0,49,16,5,0,3423,3423,3423,3423,43,13298,13311,13310,13291,0,30,49,0,6,13040,3423,3423,13039,43,13311,13295,13294,13310,0,49,16,5,0,3423,3423,3423,3423,43,13295,13311,13312,13301,0,5,0,53,44,3423,3423,13041,3423,43,13311,13298,13302,13312,0,0,6,50,53,3423,13040,13042,13041,43,12825,13313,13314,12821,0,5,44,50,6,13043,13044,13045,13046,43,13313,12826,12830,13314,0,44,16,30,50,13044,3423,3423,13045,43,12821,13314,13315,12822,0,6,50,44,5,13046,13045,3423,13047,43,13314,12830,12831,13315,0,50,30,16,44,13045,3423,3423,3423,43,12822,13315,13316,12833,0,6,0,49,30,13047,3423,3423,13048,43,13315,12831,12835,13316,0,0,5,16,49,3423,3423,3423,3423,43,12833,13316,13317,12838,0,6,0,49,30,13048,3423,3423,13049,43,13316,12835,12837,13317,0,0,5,16,49,3423,3423,3423,3423,43,13293,13318,13317,12837,0,5,44,50,6,3423,3423,3423,3423,43,13318,13292,12838,13317,0,44,16,30,50,3423,13050,13049,3423,43,13296,13319,13318,13293,0,5,44,50,6,3423,3423,3423,3423,43,13319,13297,13292,13318,0,44,16,30,50,3423,13051,13050,3423,43,13297,13319,13320,13303,0,30,50,53,49,13051,3423,13052,13053,43,13319,13296,13304,13320,0,50,6,0,53,3423,3423,3423,13052,43,13301,13321,13324,13304,0,0,719,1069,49,3423,13054,13055,3423,43,13321,13300,13299,13324,0,719,5,16,1069,13054,13056,13057,13055,43,13300,13321,13325,13322,0,16,47,52,49,13056,13054,13058,13059,43,13321,13301,13312,13325,0,47,44,53,52,13054,3423,13041,13058,43,13325,13312,13302,13322,0,1503,53,50,1091,13058,13041,13042,13059,43,13323,13303,13320,13326,0,1504,49,53,953,13060,13053,13052,13061,43,13323,13326,13324,13299,0,44,953,719,5,13060,13061,13055,13057,43,13326,13320,13304,13324,0,953,53,0,719,13061,13052,3423,13055,43,12826,13329,13328,12827,0,6,50,44,5,3423,13062,13063,12612,43,13329,13290,13289,13328,0,50,30,16,44,13062,13064,13065,13063,43,12827,13328,13331,13305,0,6,50,53,0,12612,13063,13066,13033,43,13328,13289,13327,13331,0,50,30,49,53,13063,13065,13067,13066,43,13305,13331,13327,12828,0,0,53,44,5,13033,13066,13067,13034,43,12825,13330,13332,13313,0,6,0,1505,50,13043,13068,13069,13044,43,13313,13332,13329,12826,0,50,53,49,30,13044,13069,13062,3423,43,13332,13330,13290,13329,0,53,44,16,49,13069,13068,13064,13062,43,12549,13333,13335,12575,0,6,50,53,0,12323,13070,13071,12324,43,13333,12556,12576,13335,0,50,30,49,53,13070,12374,12377,13071,43,12566,13336,13333,12549,0,30,49,0,6,12353,13072,13070,12323,43,13336,12553,12556,13333,0,49,16,5,0,13072,12589,12374,13070,43,12553,13336,13337,12592,0,6,0,1506,30,12589,13072,13073,12586,43,13336,12566,12564,13337,0,0,5,16,1506,13072,12353,12356,13073,43,12552,13334,13342,12671,0,5,0,1507,1363,12384,13074,13075,12385,43,13334,12554,12673,13342,0,0,6,87,1507,13074,12395,12394,13075,43,12624,13339,13343,12680,0,44,53,1508,1366,12404,13076,13077,12405,43,13339,12626,12682,13343,0,53,50,1370,1508,13076,12415,12414,13077,43,12631,13340,13344,12690,0,47,52,1473,1375,12424,13078,13079,12425,43,13340,12633,12692,13344,0,52,51,150,1473,13078,12435,12434,13079,43,12607,13338,13345,12697,0,16,1375,1509,161,12442,13080,13081,12443,43,13338,12606,12698,13345,0,1375,47,1305,1509,13080,12457,12456,13081,43,12707,13346,13341,12637,0,1390,1482,150,30,12462,13082,13083,12463,43,13346,12708,12638,13341,0,1482,1389,51,150,13082,12477,12476,13083,43,12575,13335,13347,12717,0,0,53,953,719,12324,13071,13084,12480,43,13335,12576,12718,13347,0,53,49,1069,953,13071,12377,12486,13084,43,12717,13347,13334,12552,0,719,1510,675,5,12480,13084,13074,12384,43,13347,12718,12554,13334,0,1510,1069,16,675,13084,12486,12395,13074,43,12671,13342,13348,12731,0,1363,1507,1412,1409,12385,13075,13085,12491,43,13342,12673,12733,13348,0,1507,87,1407,1412,13075,12394,12496,13085,43,12731,13348,13339,12624,0,1409,1412,53,44,12491,13085,13076,12404,43,13348,12733,12626,13339,0,1412,1407,50,53,13085,12496,12415,13076,43,12680,13343,13349,12740,0,1366,1511,1419,1413,12405,13077,13086,12501,43,13343,12682,12742,13349,0,1511,1370,1414,1419,13077,12414,12506,13086,43,12740,13349,13340,12631,0,1413,1419,1384,47,12501,13086,13078,12424,43,13349,12742,12633,13340,0,1419,1414,51,1384,13086,12506,12435,13078,43,12690,13344,13350,12750,0,1375,1514,1513,1512,12425,13079,13087,12511,43,13344,12692,12752,13350,0,1514,150,1421,1513,13079,12434,12516,13087,43,12750,13350,13338,12607,0,1512,1513,49,16,12511,13087,13080,12442,43,13350,12752,12606,13338,0,1513,1421,30,49,13087,12516,12457,13080,43,12697,13345,13351,12757,0,161,1514,1515,1426,12443,13081,13088,12520,43,13345,12698,12758,13351,0,1514,1305,1429,1515,13081,12456,12527,13088,43,12757,13351,13346,12707,0,1426,1515,1395,1390,12520,13088,13082,12462,43,13351,12758,12708,13346,0,1515,1429,1389,1395,13088,12527,12477,13082,43,13352,12598,12595,12563,0,30,16,5,6,13089,12370,12359,12354,43,12594,12598,13352,12545,0,5,16,30,6,12342,12370,13089,12331,43,12565,12591,13352,12563,0,5,16,30,6,12341,12340,13089,12354,43,13352,12591,12589,12545,0,30,16,5,6,13089,12340,12332,12331,43,13058,13356,13355,13057,0,152,53,49,151,13090,13091,13092,13093,43,13356,13054,13053,13355,0,53,154,153,49,13091,13094,13095,13092,43,13059,13357,13356,13058,0,152,53,49,151,13096,13097,13091,13090,43,13357,13055,13054,13356,0,53,154,153,49,13097,13098,13094,13091,43,13052,13354,13357,13059,0,152,53,49,151,13099,13100,13097,13096,43,13354,13050,13055,13357,0,53,154,153,49,13100,13101,13098,13097,43,13060,13358,13353,13051,0,152,53,49,151,13102,13103,13104,13105,43,13358,13056,13049,13353,0,53,154,153,49,13103,13106,13107,13104,43,13057,13355,13358,13060,0,155,53,49,151,13093,13092,13103,13102,43,13355,13053,13056,13358,0,53,154,153,49,13092,13095,13106,13103,43,13053,13359,13360,13056,0,155,53,49,151,13095,13108,13109,13106,43,13359,13230,13227,13360,0,53,154,153,49,13108,13110,13111,13109,43,13056,13360,13361,13049,0,152,53,49,151,13106,13109,13112,13107,43,13360,13227,13232,13361,0,53,154,153,49,13109,13111,13113,13112,43,13050,13362,13363,13055,0,152,53,49,151,13101,13114,13115,13098,43,13362,13231,13228,13363,0,53,154,153,49,13114,13116,13117,13115,43,13055,13363,13364,13054,0,152,53,49,151,13098,13115,13118,13094,43,13363,13228,13229,13364,0,53,154,153,49,13115,13117,13119,13118,43,13054,13364,13359,13053,0,152,53,49,151,13094,13118,13108,13095,43,13364,13229,13230,13359,0,53,154,153,49,13118,13119,13110,13108,43,12473,13367,13370,12476,0,6,87,91,5,13120,13121,13122,13123,43,13367,12477,12472,13370,0,87,50,44,91,13121,13124,13125,13122,43,12476,13370,13365,12469,0,6,87,91,5,13123,13122,13126,13127,43,13370,12472,12468,13365,0,87,50,44,91,13122,13125,13128,13126,43,12471,13366,13368,12475,0,6,87,91,5,13129,13130,13131,13132,43,13366,12470,12478,13368,0,87,50,44,91,13130,13133,13134,13131,43,12479,13369,13368,12478,0,44,91,87,50,13135,13136,13131,13134,43,13369,12474,12475,13368,0,91,5,6,87,13136,13137,13132,13131,43,12474,13369,13367,12473,0,6,87,91,5,13137,13136,13121,13120,43,13369,12479,12477,13367,0,87,50,44,91,13136,13135,13124,13121,43,13565,14579,13373,12382,0,44,91,87,50,12157,13138,13139,12154,43,14579,13561,12380,13373,0,91,5,6,87,13138,13140,13141,13139,43,12382,13377,13376,12383,0,44,53,49,16,12154,13142,13143,12155,43,13377,12381,12377,13376,0,53,50,30,49,13142,13144,13145,13143,43,12379,13374,13376,12377,0,30,161,0,6,13146,13147,13143,13145,43,13374,12378,12383,13376,0,161,16,5,0,13147,12158,12155,13143,43,12380,13375,13378,13373,0,5,0,1516,91,13141,13148,13149,13139,43,13375,12376,13372,13378,0,0,6,87,1516,13148,13150,13151,13149,43,13373,13378,13377,12382,0,91,1365,53,44,13139,13149,13142,12154,43,13378,13372,12381,13377,0,1365,87,50,53,13149,13151,13144,13142,43,13395,13435,13400,13397,0,5,16,30,6,13152,13153,13154,13155,43,13404,13403,13397,13400,0,1009,50,6,5,13156,13157,13155,13154,43,13402,13407,13413,13411,0,30,16,5,6,13158,13159,13160,13161,43,13411,13397,13403,13402,0,30,16,5,6,13161,13155,13157,13158,43,14561,13438,13393,13392,0,1014,1013,1003,1002,13162,13163,13164,13165,43,13405,13406,13437,13412,0,16,30,50,1015,13166,13167,13168,13169,43,13397,13411,13412,13395,0,5,16,30,6,13155,13161,13169,13152,43,13392,13393,13415,13380,0,1001,1004,1037,1036,13165,13164,13170,12002,43,13396,14565,13380,13415,0,1039,1038,1036,1037,13171,12003,12002,13170,43,13413,13414,13406,13405,0,5,16,30,6,13160,13172,13167,13166,43,13408,13414,13413,13407,0,5,16,30,6,13173,13172,13160,13159,43,13412,13411,13413,13405,0,5,16,30,6,13169,13161,13160,13166,43,13436,13416,13393,13438,0,1057,1056,6,0,13174,13175,13164,13163,43,13437,13406,13416,13436,0,49,30,1056,1057,13168,13167,13175,13174,43,13419,13416,13406,13414,0,1062,1061,5,1060,13176,13175,13167,13172,43,13415,13393,13416,13419,0,50,6,1061,1062,13170,13164,13175,13176,43,13417,13419,13414,13408,0,176,1062,1060,16,13177,13176,13172,13173,43,13396,13415,13419,13417,0,30,50,1062,176,13171,13170,13176,13177,43,13425,14566,14565,13396,0,1089,1088,1038,1039,13178,12011,12003,13171,43,14566,13425,13394,13379,0,1088,1089,1003,1002,12011,13178,13179,12014,43,13421,13420,13402,13403,0,1090,719,1061,49,13180,13181,13158,13157,43,13399,13398,13420,13421,0,16,5,719,1090,13182,13183,13181,13180,43,13422,13421,13403,13404,0,1092,1091,50,1009,13184,13180,13157,13156,43,13401,13399,13421,13422,0,16,30,1091,1092,13185,13182,13180,13184,43,13423,13424,13408,13407,0,44,163,6,5,13186,13187,13173,13159,43,13410,13409,13424,13423,0,16,30,163,44,13188,13189,13187,13186,43,13423,13420,13398,13410,0,49,0,6,30,13186,13181,13183,13188,43,13407,13402,13420,13423,0,16,5,0,49,13159,13158,13181,13186,43,13426,13425,13396,13417,0,53,0,5,1107,13190,13178,13171,13177,43,13418,13394,13425,13426,0,50,6,0,53,13191,13179,13178,13190,43,13424,13426,13417,13408,0,182,53,1107,16,13187,13190,13177,13173,43,13409,13418,13426,13424,0,30,50,53,182,13189,13191,13190,13187,43,13428,13433,13431,13430,0,5,16,30,6,13192,13193,13194,13195,43,13430,13431,14562,14564,0,5,16,30,6,13195,13194,12031,12032,43,13427,13434,13432,13429,0,5,16,30,6,13196,13197,13198,13199,43,13429,13432,13433,13428,0,5,16,30,6,13199,13198,13193,13192,43,13432,13437,13436,13433,0,5,16,30,6,13198,13168,13174,13193,43,13431,13438,14561,14562,0,5,16,30,6,13194,13163,13162,12031,43,13433,13436,13438,13431,0,5,16,30,6,13193,13174,13163,13194,43,13432,13434,13435,13395,0,5,16,30,6,13198,13197,13153,13152,43,13412,13437,13432,13395,0,5,16,30,6,13169,13168,13198,13152,43,13439,13440,13428,13430,0,91,87,6,5,13200,13201,13192,13195,43,14563,13439,13430,14564,0,91,87,6,5,12039,13200,13195,12032,43,13442,13441,13427,13429,0,91,87,6,5,13202,13203,13196,13199,43,13440,13442,13429,13428,0,91,87,6,5,13201,13202,13199,13192,43,13451,13453,13444,13445,0,1302,1303,1304,53,13204,13205,13206,13207,43,13450,13451,13445,13446,0,1306,1307,53,1305,13208,13204,13207,13209,43,13452,13450,13446,13443,0,1309,1310,1305,1308,13210,13208,13209,13211,43,13462,13464,13469,13472,0,1309,1310,1305,1308,13212,13213,13214,13215,43,13464,13463,13470,13469,0,1306,1307,53,1305,13213,13216,13217,13214,43,13463,13461,13471,13470,0,1302,1303,1304,53,13216,13218,13219,13217,43,13481,13483,13474,13475,0,1302,1303,1304,53,13220,13221,13222,13223,43,13480,13481,13475,13476,0,1306,1307,53,1305,13224,13220,13223,13225,43,13482,13480,13476,13473,0,1309,1310,1305,1308,13226,13224,13225,13227,43,13492,13494,13499,13502,0,1309,1310,1305,1308,13228,13229,13230,13231,43,13494,13493,13500,13499,0,1306,1307,53,1305,13229,13232,13233,13230,43,13493,13491,13501,13500,0,1302,1303,1304,53,13232,13234,13235,13233,43,13504,13506,13453,13451,0,1311,1312,1303,1302,13236,13237,13205,13204,43,13503,13504,13451,13450,0,1313,1311,1307,1306,13238,13236,13204,13208,43,13505,13503,13450,13452,0,1314,1313,1310,1309,13239,13238,13208,13210,43,13508,13509,13449,13448,0,1315,1316,1317,953,13240,13241,13242,13243,43,13511,13513,13464,13462,0,1318,1319,1310,1309,13244,13245,13213,13212,43,13513,13512,13463,13464,0,1313,1311,1307,1306,13245,13246,13216,13213,43,13512,13510,13461,13463,0,1320,1321,1303,1302,13246,13247,13218,13216,43,13515,13517,13468,13466,0,1322,1323,1324,1069,13248,13249,13250,13251,43,13517,13516,13467,13468,0,1325,1326,953,1324,13249,13252,13253,13250,43,13516,13514,13465,13467,0,1327,1328,1317,953,13252,13254,13255,13253,43,13519,13521,13483,13481,0,1311,1329,1303,1302,13256,13257,13221,13220,43,13518,13519,13481,13480,0,1313,1311,1307,1306,13258,13256,13220,13224,43,13520,13518,13480,13482,0,1318,1319,1310,1309,13259,13258,13224,13226,43,13523,13525,13479,13477,0,1326,1316,1317,953,13260,13261,13262,13263,43,13524,13522,13545,13478,0,1330,1325,1324,1069,13264,13265,13266,13267,43,13527,13529,13494,13492,0,1318,1313,1310,1309,13268,13269,13229,13228,43,13529,13528,13493,13494,0,1313,1311,1307,1306,13269,13270,13232,13229,43,13528,13526,13491,13493,0,1311,1329,1303,1302,13270,13271,13234,13232,43,13531,13533,13498,13496,0,1330,1325,1324,1069,13272,13273,13274,13275,43,13533,13532,13497,13498,0,1325,1326,953,1324,13273,13276,13277,13274,43,13532,13530,13495,13497,0,1315,1331,1317,953,13276,13278,13279,13277,43,13535,13536,13509,13508,0,1332,1333,1316,1315,13280,13281,13241,13240,43,13455,13456,13536,13535,0,1334,1335,1333,1332,13282,13283,13281,13280,43,13539,13537,13447,13507,0,1336,1337,1324,1325,13284,13285,13286,13287,43,13508,13448,13537,13539,0,1326,953,1337,1336,13240,13243,13285,13284,43,13540,13539,13507,13534,0,1339,1336,1325,1338,13288,13284,13287,13289,43,13535,13508,13539,13540,0,1340,1326,1336,1339,13280,13240,13284,13288,43,13538,13540,13534,13454,0,1342,1339,1338,1341,13290,13288,13289,13291,43,13455,13535,13540,13538,0,1343,1340,1339,1342,13282,13280,13288,13290,43,13542,13544,13517,13515,0,1344,1338,1323,1322,13292,13293,13249,13248,43,13458,13460,13544,13542,0,1345,1346,1338,1344,13294,13295,13293,13292,43,13544,13543,13516,13517,0,1338,1340,1326,1325,13293,13296,13252,13249,43,13460,13459,13543,13544,0,1341,1343,1340,1338,13295,13297,13296,13293,43,13543,13541,13514,13516,0,1347,1348,1328,1327,13296,13298,13254,13252,43,13459,13457,13541,13543,0,1334,1335,1348,1347,13297,13299,13298,13296,43,13523,13477,13545,13522,0,1326,953,1337,1349,13260,13263,13266,13265,43,13547,13549,13525,13523,0,1350,1351,1316,1326,13300,13301,13261,13260,43,13484,13486,13549,13547,0,1334,1335,1351,1350,13302,13303,13301,13300,43,13548,13550,13522,13524,0,1352,1353,1325,1330,13304,13305,13265,13264,43,13485,13546,13550,13548,0,1345,1346,1353,1352,13306,13307,13305,13304,43,13547,13550,13546,13484,0,1340,1339,1342,1343,13300,13305,13307,13302,43,13523,13522,13550,13547,0,1326,1336,1339,1340,13260,13265,13305,13300,43,13552,13554,13533,13531,0,1344,1338,1325,1330,13308,13309,13273,13272,43,13488,13490,13554,13552,0,1345,1346,1338,1344,13310,13311,13309,13308,43,13554,13553,13532,13533,0,1338,1340,1326,1325,13309,13312,13276,13273,43,13490,13489,13553,13554,0,1341,1343,1340,1338,13311,13313,13312,13309,43,13553,13551,13530,13532,0,1354,1348,1331,1315,13312,13314,13278,13276,43,13489,13487,13551,13553,0,1334,1335,1348,1354,13313,13315,13314,13312,43,13381,13564,13563,13565,0,16,30,50,44,12156,13316,13317,12157,43,13381,13558,13557,13564,0,5,16,30,6,12156,12159,13318,13316,43,13567,13575,13574,13566,0,1245,86,7,700,13319,13320,13321,13322,43,13575,13573,13572,13574,0,92,86,7,700,13320,13323,13324,13321,43,13566,13568,13569,13567,0,7,700,92,1250,13322,13325,13326,13319,43,13576,13578,13579,13577,0,1355,706,1264,674,13327,13328,13329,13330,43,13584,13582,13583,13585,0,15,706,681,1265,13331,13332,13333,13334,43,13578,13584,13585,13579,0,15,706,1264,1265,13328,13331,13334,13329,43,13580,13576,13577,13581,0,1355,1356,681,1265,13335,13327,13330,13336,43,13587,13586,13572,13573,0,1357,1358,700,92,13337,13338,13324,13323,43,13571,13570,13586,13587,0,86,7,1358,1357,13339,13340,13338,13337,43,13582,13588,13589,13583,0,5,16,30,6,13332,13341,13342,13333,43,13568,13590,13591,13569,0,5,16,30,6,13325,13343,13344,13326,43,13581,13593,13592,13580,0,5,16,30,6,13336,13345,13346,13335,43,13604,13594,13595,13605,0,5,16,30,6,13347,13348,13349,13350,43,13615,13597,13596,13614,0,5,16,30,6,13351,13352,13353,13354,43,13598,13599,13613,13612,0,1357,1358,700,92,13355,13356,13357,13358,43,13605,13609,13608,13604,0,1355,1356,681,1265,13350,13359,13360,13347,43,13607,13601,13600,13606,0,15,706,1264,1265,13361,13362,13363,13364,43,13601,13603,13602,13600,0,15,706,681,1265,13362,13365,13366,13363,43,13609,13607,13606,13608,0,1355,706,1264,674,13359,13361,13364,13360,43,13617,13615,13614,13616,0,7,700,92,1250,13367,13351,13354,13368,43,13610,13612,13613,13611,0,92,86,7,700,13369,13358,13357,13370,43,13616,13610,13611,13617,0,1245,86,7,700,13368,13369,13370,13367,43,13619,13625,13624,13618,0,1245,86,7,700,13371,13372,13373,13374,43,13625,13623,13622,13624,0,92,86,7,700,13372,13375,13376,13373,43,13618,13620,13621,13619,0,7,700,92,1250,13374,13377,13378,13371,43,13627,13626,13622,13623,0,1357,1358,700,92,13379,13380,13376,13375,43,13620,13628,13629,13621,0,5,16,30,6,13377,13381,13382,13378,43,13640,13641,13631,13630,0,44,50,6,5,13383,13384,13385,13386,43,13636,13637,13641,13640,0,16,30,50,44,13387,13388,13384,13383,43,13641,13638,13632,13631,0,44,50,6,5,13384,13389,13390,13385,43,13637,13634,13638,13641,0,16,30,50,44,13388,13391,13389,13384,43,13631,13632,13643,13644,0,16,5,162,161,13385,13390,13392,13393,43,13630,13631,13644,13645,0,16,30,163,44,13386,13385,13393,13394,43,13648,13646,13632,13638,0,53,0,5,44,13395,13396,13390,13389,43,13639,13633,13646,13648,0,50,6,0,53,13397,13398,13396,13395,43,13647,13648,13638,13634,0,49,53,44,16,13399,13395,13389,13391,43,13635,13639,13648,13647,0,30,50,53,49,13400,13397,13395,13399,43,13646,13649,13643,13632,0,176,53,175,16,13396,13401,13392,13390,43,13633,13642,13649,13646,0,30,163,53,176,13398,13402,13401,13396,43,13668,13666,13662,13663,0,1254,1248,5,6,13403,13404,13405,13406,43,13669,13667,13666,13668,0,1243,1359,1248,1254,13407,13408,13404,13403,43,13671,13670,13667,13669,0,1360,15,1359,1243,13409,13410,13408,13407,43,13664,13665,13670,13671,0,30,16,15,1360,13411,13412,13410,13409,43,13679,13678,13673,13672,0,30,16,15,1360,13413,13414,13415,13416,43,13672,13673,13676,13674,0,1360,15,1359,1243,13416,13415,13417,13418,43,13680,13681,13677,13675,0,1361,1107,1248,1254,13419,13420,13421,13422,43,13674,13676,13681,13680,0,1243,1359,1107,1361,13418,13417,13420,13419,43,13685,13684,13682,13683,0,1243,1359,1107,1361,13423,13424,13425,13426,43,13688,13689,13687,13686,0,5,16,30,6,13427,13428,13429,13430,43,13690,13691,13682,13684,0,44,50,6,5,13431,13432,13425,13424,43,13689,13688,13691,13690,0,16,30,50,44,13428,13427,13432,13431,43,13692,13693,13685,13683,0,44,50,6,5,13433,13434,13423,13426,43,13686,13687,13693,13692,0,16,30,50,44,13430,13429,13434,13433,43,13701,13700,13694,13695,0,16,30,50,44,13435,13436,13437,13438,43,13695,13694,13702,13704,0,44,50,6,5,13438,13437,13439,13440,43,13698,13699,13696,13697,0,16,30,50,44,13441,13442,13443,13444,43,13697,13696,13705,13703,0,44,50,6,5,13444,13443,13445,13446,43,13699,13698,13700,13701,0,5,16,30,6,13442,13441,13436,13435,43,13702,13703,13705,13704,0,1243,1359,1107,1361,13439,13446,13445,13440,43,13711,13709,13706,13707,0,1243,1359,1107,1361,13447,13448,13449,13450,43,13707,13706,13708,13710,0,1361,1107,1248,1254,13450,13449,13451,13452,43,13713,13712,13709,13711,0,1360,15,1359,1243,13453,13454,13448,13447,43,13714,13715,13718,13716,0,1360,15,1359,1243,13455,13456,13457,13458,43,13716,13718,13719,13717,0,1243,1359,1248,1254,13458,13457,13459,13460,43,13717,13719,13721,13720,0,1254,1248,5,6,13460,13459,13461,13462,43,13753,13754,13755,13752,0,5,16,30,6,13463,13464,13465,13466,43,13754,13740,13756,13755,0,5,16,30,6,13464,13467,13468,13465,43,13768,13851,13850,13761,0,1019,1018,1017,1016,13469,13470,13471,13472,43,13722,13741,13851,13768,0,1021,1020,1018,1019,13473,13474,13470,13469,43,13762,13768,13761,13724,0,1019,1023,1022,1016,13475,13469,13472,13476,43,13768,13762,13726,13722,0,1023,1019,1021,1024,13469,13475,13477,13473,43,13767,13765,13733,13757,0,1026,1023,1022,1025,13478,13479,13480,13481,43,13758,13732,13765,13767,0,1027,1024,1023,1026,13482,13483,13479,13478,43,13769,13771,13741,13722,0,1029,1028,1020,1021,13484,13485,13474,13473,43,13743,13745,13771,13769,0,1031,1030,1028,1029,13486,13487,13485,13484,43,13722,13726,13770,13769,0,1024,1021,1033,1032,13473,13477,13488,13484,43,13744,13743,13769,13770,0,1035,1034,1032,1033,13489,13486,13484,13488,43,13774,13773,13727,13763,0,1042,1041,1024,1023,13490,13491,13492,13493,43,13764,13731,13773,13774,0,1019,1021,1041,1042,13494,13495,13491,13490,43,13772,13774,13763,13728,0,1025,1042,1023,1022,13496,13490,13493,13497,43,13730,13764,13774,13772,0,1016,1019,1042,1025,13498,13494,13490,13496,43,13748,13775,13773,13731,0,5,16,30,6,13499,13500,13491,13495,43,13763,13727,13778,13781,0,1019,1021,1027,1044,13493,13492,13501,13502,43,13728,13763,13781,13777,0,1016,1019,1044,1025,13497,13493,13502,13503,43,13797,13799,13745,13743,0,1050,1049,1030,1031,13504,13505,13487,13486,43,13723,13742,13799,13797,0,1008,1051,1049,1050,13506,13507,13505,13504,43,13798,13797,13743,13744,0,1053,1052,1034,1035,13508,13504,13486,13489,43,13725,13723,13797,13798,0,1008,1005,1052,1053,13509,13506,13504,13508,43,13796,13801,13748,13731,0,1054,49,30,6,13510,13511,13499,13495,43,13732,13749,13801,13796,0,5,16,49,1054,13483,13512,13511,13510,43,13801,13800,13746,13748,0,0,1055,30,6,13511,13513,13514,13499,43,13749,13747,13800,13801,0,5,16,1055,0,13512,13515,13513,13511,43,13802,13796,13731,13764,0,1059,1058,1024,1023,13516,13510,13495,13494,43,13765,13732,13796,13802,0,1019,1021,1058,1059,13479,13483,13510,13516,43,13795,13802,13764,13730,0,1025,1059,1023,1022,13517,13516,13494,13498,43,13733,13765,13802,13795,0,1016,1019,1059,1025,13480,13479,13516,13517,43,13800,13803,13779,13746,0,1055,1063,181,16,13513,13518,13519,13514,43,13747,13780,13803,13800,0,30,50,1063,1055,13515,13520,13518,13513,43,13829,13830,13751,13750,0,184,186,6,5,13521,13522,13523,13524,43,13753,13752,13830,13829,0,16,30,186,184,13463,13466,13522,13521,43,13840,13837,13726,13762,0,1080,1079,1024,1023,13525,13526,13477,13475,43,13781,13778,13837,13840,0,1044,1027,1079,1080,13502,13501,13526,13525,43,13836,13840,13762,13724,0,1081,1080,1023,1022,13527,13525,13475,13476,43,13777,13781,13840,13836,0,1025,1044,1080,1081,13503,13502,13525,13527,43,13841,13837,13778,13782,0,1082,952,162,1045,13528,13526,13501,13529,43,13770,13726,13837,13841,0,186,6,952,1082,13488,13477,13526,13528,43,13838,13841,13782,13779,0,1083,1082,1045,182,13530,13528,13529,13519,43,13744,13770,13841,13838,0,30,186,1082,1083,13489,13488,13528,13530,43,13842,13838,13779,13803,0,1085,91,181,1063,13531,13530,13519,13518,43,13798,13744,13838,13842,0,1086,5,91,1085,13508,13489,13530,13531,43,13839,13842,13803,13780,0,1087,1085,1063,50,13532,13531,13518,13520,43,13725,13798,13842,13839,0,6,1086,1085,1087,13509,13508,13531,13532,43,13845,13844,13739,13759,0,1099,1096,1093,1098,13533,13534,13535,13536,43,13756,13740,13844,13845,0,1100,1097,1096,1099,13468,13467,13534,13533,43,13854,13855,13784,13738,0,91,87,6,5,13537,13538,13539,13540,43,13855,13853,13783,13784,0,91,1077,6,5,13538,13541,13542,13539,43,13856,13857,13735,13766,0,91,1077,6,5,13543,13544,13545,13546,43,13858,13856,13766,13734,0,91,87,6,5,13547,13543,13546,13548,43,13831,13783,13853,13861,0,0,5,1363,1362,13549,13542,13541,13550,43,13785,13831,13861,13852,0,6,0,1362,1364,13551,13549,13550,13552,43,13846,13737,13860,13862,0,0,5,91,1365,13553,13554,13555,13556,43,13738,13846,13862,13854,0,6,0,1365,87,13540,13553,13556,13537,43,13864,13865,13807,13806,0,1366,1367,50,44,13557,13558,13559,13560,43,13865,13863,13805,13807,0,1368,1369,50,44,13558,13561,13562,13559,43,13866,13867,13809,13808,0,1368,1367,50,44,13563,13564,13565,13566,43,13868,13866,13808,13810,0,1368,1370,50,44,13567,13563,13566,13568,43,13833,13805,13863,13872,0,1075,175,1368,1371,13569,13562,13561,13570,43,13804,13833,13872,13871,0,1076,1075,1371,1372,13571,13569,13570,13572,43,13847,13811,13870,13873,0,53,44,1368,1373,13573,13574,13575,13576,43,13806,13847,13873,13864,0,50,53,1373,1367,13560,13573,13576,13557,43,13875,13876,13814,13813,0,1375,1376,1377,1374,13577,13578,13579,13580,43,13876,13874,13812,13814,0,1378,150,1377,1374,13578,13581,13582,13579,43,13877,13878,13816,13815,0,1375,150,51,47,13583,13584,13585,13586,43,13879,13877,13815,13817,0,1375,150,51,47,13587,13583,13586,13588,43,13834,13812,13874,13882,0,1380,1374,1375,1379,13589,13582,13581,13590,43,13820,13834,13882,13881,0,1382,1380,1379,1381,13591,13589,13590,13592,43,13848,13819,13880,13883,0,1384,47,1375,1383,13593,13594,13595,13596,43,13813,13848,13883,13875,0,1377,1384,1383,150,13580,13593,13596,13577,43,13888,13889,13792,13793,0,161,52,47,16,13597,13598,13599,13600,43,13889,13885,13791,13792,0,49,1305,47,16,13598,13601,13602,13599,43,13891,13892,13786,13789,0,49,1385,1374,16,13603,13604,13605,13606,43,13890,13891,13789,13788,0,49,1384,1374,16,13607,13603,13606,13608,43,13893,13884,13787,13832,0,1379,1387,1374,1386,13609,13610,13611,13612,43,13892,13893,13832,13786,0,161,1379,1386,16,13604,13609,13612,13605,43,13894,13890,13788,13843,0,1388,52,47,1375,13613,13607,13608,13614,43,13886,13894,13843,13790,0,161,1388,1375,16,13615,13613,13614,13616,43,13821,13822,13899,13898,0,30,51,1389,1066,13617,13618,13619,13620,43,13822,13823,13896,13899,0,30,51,1389,1390,13618,13621,13622,13619,43,13825,13828,13902,13901,0,30,1377,1389,1066,13623,13624,13625,13626,43,13826,13825,13901,13900,0,30,1377,1391,1066,13627,13623,13626,13628,43,13835,13827,13895,13903,0,1393,1382,1394,1392,13629,13630,13631,13632,43,13828,13835,13903,13902,0,30,1393,1392,1390,13624,13629,13632,13625,43,13849,13826,13900,13904,0,1396,1377,1397,1395,13633,13627,13628,13634,43,13824,13849,13904,13897,0,30,1396,1395,1390,13635,13633,13634,13636,43,13909,13905,13734,13766,0,1398,1399,1016,1019,13637,13638,13548,13546,43,13767,13757,13905,13909,0,1026,1025,1399,1398,13478,13481,13638,13637,43,13906,13909,13766,13735,0,1400,1398,1019,1021,13639,13637,13546,13545,43,13758,13767,13909,13906,0,1027,1026,1398,1400,13482,13478,13637,13639,43,13910,13911,13752,13755,0,44,50,6,5,13640,13641,13466,13465,43,13784,13783,13911,13910,0,16,30,50,44,13539,13542,13641,13640,43,13910,13908,13738,13784,0,49,0,6,30,13640,13642,13540,13539,43,13755,13756,13908,13910,0,16,5,0,49,13465,13468,13642,13640,43,13913,13912,13751,13830,0,1401,1402,1071,1074,13643,13644,13523,13522,43,13831,13785,13912,13913,0,1073,1072,1402,1401,13549,13551,13644,13643,43,13911,13913,13830,13752,0,44,1401,1074,5,13641,13643,13522,13466,43,13783,13831,13913,13911,0,16,1073,1401,44,13542,13549,13643,13641,43,13914,13907,13737,13846,0,1403,1404,49,1066,13645,13646,13554,13553,43,13845,13759,13907,13914,0,1099,1098,1404,1403,13533,13536,13646,13645,43,13908,13914,13846,13738,0,1405,1403,1066,30,13642,13645,13553,13540,43,13756,13845,13914,13908,0,1100,1099,1403,1405,13468,13533,13645,13642,43,13917,13918,13855,13854,0,1406,1407,87,91,13647,13648,13538,13537,43,13806,13807,13918,13917,0,44,50,1407,1406,13560,13559,13648,13647,43,13918,13916,13853,13855,0,1406,1408,1077,91,13648,13649,13541,13538,43,13807,13805,13916,13918,0,44,50,1408,1406,13559,13562,13649,13648,43,13919,13920,13857,13856,0,1409,1408,1077,91,13650,13651,13544,13543,43,13808,13809,13920,13919,0,44,50,1408,1409,13566,13565,13651,13650,43,13921,13919,13856,13858,0,1406,1408,87,91,13652,13650,13543,13547,43,13810,13808,13919,13921,0,44,50,1408,1406,13568,13566,13650,13652,43,13923,13916,13805,13833,0,1410,1409,175,1075,13653,13649,13562,13569,43,13861,13853,13916,13923,0,1362,1363,1409,1410,13550,13541,13649,13653,43,13915,13923,13833,13804,0,1411,1410,1075,1076,13654,13653,13569,13571,43,13852,13861,13923,13915,0,1364,1362,1410,1411,13552,13550,13653,13654,43,13924,13922,13811,13847,0,1412,1406,44,53,13655,13656,13574,13573,43,13862,13860,13922,13924,0,1365,91,1406,1412,13556,13555,13656,13655,43,13917,13924,13847,13806,0,1407,1412,53,50,13647,13655,13573,13560,43,13854,13862,13924,13917,0,87,1365,1412,1407,13537,13556,13655,13647,43,13926,13927,13865,13864,0,1413,1414,1367,1366,13657,13658,13558,13557,43,13813,13814,13927,13926,0,1374,1377,1414,1413,13580,13579,13658,13657,43,13927,13925,13863,13865,0,1415,1414,1369,1368,13658,13659,13561,13558,43,13814,13812,13925,13927,0,1374,1377,1414,1415,13579,13582,13659,13658,43,13928,13929,13867,13866,0,1415,1416,1367,1368,13660,13661,13564,13563,43,13815,13816,13929,13928,0,47,51,1416,1415,13586,13585,13661,13660,43,13930,13928,13866,13868,0,1415,1414,1370,1368,13662,13660,13563,13567,43,13817,13815,13928,13930,0,47,51,1414,1415,13588,13586,13660,13662,43,13933,13925,13812,13834,0,1417,1415,1374,1380,13663,13659,13582,13589,43,13872,13863,13925,13933,0,1371,1368,1415,1417,13570,13561,13659,13663,43,13932,13933,13834,13820,0,1418,1417,1380,1382,13664,13663,13589,13591,43,13871,13872,13933,13932,0,1372,1371,1417,1418,13572,13570,13663,13664,43,13934,13931,13819,13848,0,1419,1415,47,1384,13665,13666,13594,13593,43,13873,13870,13931,13934,0,1373,1368,1415,1419,13576,13575,13666,13665,43,13926,13934,13848,13813,0,1416,1419,1384,1377,13657,13665,13593,13580,43,13864,13873,13934,13926,0,1367,1373,1419,1416,13557,13576,13665,13657,43,13936,13937,13876,13875,0,1420,1421,1376,1375,13667,13668,13578,13577,43,13788,13789,13937,13936,0,16,30,1421,1420,13608,13606,13668,13667,43,13937,13935,13874,13876,0,1420,1421,150,1378,13668,13669,13581,13578,43,13789,13786,13935,13937,0,16,30,1421,1420,13606,13605,13669,13668,43,13938,13939,13878,13877,0,1420,1421,150,1375,13670,13671,13584,13583,43,13792,13791,13939,13938,0,16,30,1421,1420,13599,13602,13671,13670,43,13940,13938,13877,13879,0,1420,1421,150,1375,13672,13670,13583,13587,43,13793,13792,13938,13940,0,16,30,1421,1420,13600,13599,13670,13672,43,13943,13935,13786,13832,0,1422,1420,16,49,13673,13669,13605,13612,43,13882,13874,13935,13943,0,1379,1375,1420,1422,13590,13581,13669,13673,43,13942,13943,13832,13787,0,1423,1424,49,30,13674,13673,13612,13611,43,13881,13882,13943,13942,0,1381,1379,1424,1423,13592,13590,13673,13674,43,13944,13941,13790,13843,0,1425,1420,16,49,13675,13676,13616,13614,43,13883,13880,13941,13944,0,1383,1375,1420,1425,13596,13595,13676,13675,43,13936,13944,13843,13788,0,1421,1425,49,30,13667,13675,13614,13608,43,13875,13883,13944,13936,0,150,1383,1425,1421,13577,13596,13675,13667,43,13948,13949,13889,13888,0,1426,1427,52,161,13677,13678,13598,13597,43,13898,13899,13949,13948,0,1066,1389,1427,1426,13620,13619,13678,13677,43,13949,13946,13885,13889,0,1428,1429,1305,49,13678,13679,13601,13598,43,13899,13896,13946,13949,0,1390,1389,1429,1428,13619,13622,13679,13678,43,13951,13952,13892,13891,0,1430,1431,1385,49,13680,13681,13604,13603,43,13901,13902,13952,13951,0,1066,1389,1431,1430,13626,13625,13681,13680,43,13950,13951,13891,13890,0,1428,1432,1384,49,13682,13680,13603,13607,43,13900,13901,13951,13950,0,1066,1391,1432,1428,13628,13626,13680,13682,43,13953,13945,13884,13893,0,1433,1434,1387,1379,13683,13684,13610,13609,43,13903,13895,13945,13953,0,1392,1394,1434,1433,13632,13631,13684,13683,43,13952,13953,13893,13892,0,1426,1433,1379,161,13681,13683,13609,13604,43,13902,13903,13953,13952,0,1390,1392,1433,1426,13625,13632,13683,13681,43,13954,13950,13890,13894,0,1435,1427,52,1388,13685,13682,13607,13613,43,13904,13900,13950,13954,0,1395,1397,1427,1435,13634,13628,13682,13685,43,13947,13954,13894,13886,0,1426,1435,1388,161,13686,13685,13613,13615,43,13897,13904,13954,13947,0,1390,1395,1435,1426,13636,13634,13685,13686,43,13957,13960,13757,13733,0,44,1436,0,5,13687,13688,13481,13480,43,13383,13760,13960,13957,0,16,1012,1436,44,12531,12530,13688,13687,43,13961,13955,13724,13761,0,44,50,6,5,13689,13690,13476,13472,43,13385,13382,13955,13961,0,16,30,50,44,12535,12534,13690,13689,43,13970,13961,13761,13850,0,44,50,6,5,13691,13689,13472,13471,43,14575,13385,13961,13970,0,16,30,50,44,12537,12535,13689,13691,43,13962,13956,13729,14569,0,1437,50,30,1040,13692,13693,12538,12541,43,13772,13728,13956,13962,0,0,6,50,1437,13496,13497,13693,13692,43,13959,13962,14569,13384,0,44,1437,1040,16,13694,13692,12541,12543,43,13730,13772,13962,13959,0,5,0,1437,44,13498,13496,13692,13694,43,13956,13963,13386,13729,0,49,1438,1043,16,13693,13695,12544,12538,43,13728,13777,13963,13956,0,30,50,1438,49,13497,13503,13695,13693,43,13965,13959,13384,14576,0,1439,50,30,1048,13696,13694,12543,12547,43,13795,13730,13959,13965,0,162,6,50,1439,13517,13498,13694,13696,43,13957,13965,14576,13383,0,1107,1439,1048,16,13687,13696,12547,12531,43,13733,13795,13965,13957,0,5,162,1439,1107,13480,13517,13696,13687,43,13969,13955,13382,13389,0,1440,1070,5,1078,13697,13690,12534,12549,43,13836,13724,13955,13969,0,1077,6,1070,1440,13527,13476,13690,13697,43,13963,13969,13389,13386,0,1438,1440,1078,1043,13695,13697,12549,12544,43,13777,13836,13969,13963,0,50,1077,1440,1438,13503,13527,13697,13695,43,13971,13958,14570,13859,0,1362,1061,5,1441,13698,13699,12550,12553,43,13858,13734,13958,13971,0,87,6,1061,1362,13547,13548,13699,13698,43,13972,13966,13387,13869,0,1443,1075,1064,1442,13700,13701,12554,12557,43,13868,13810,13966,13972,0,1370,50,1075,1443,13567,13568,13701,13700,43,13973,13967,13818,14574,0,1379,1445,1446,1444,13702,13703,12558,12561,43,13879,13817,13967,13973,0,150,51,1445,1379,13587,13588,13703,13702,43,13974,13964,13794,13887,0,1379,1447,16,49,13704,13705,12562,12565,43,13888,13793,13964,13974,0,1387,1446,1447,1379,13597,13600,13705,13704,43,13968,13975,14573,13388,0,150,1448,1449,30,13706,13707,12566,12569,43,13821,13898,13975,13968,0,51,1450,1448,150,13617,13620,13707,13706,43,13976,13958,13734,13905,0,1451,1452,6,977,13708,13699,13548,13638,43,13390,14570,13958,13976,0,1453,30,1452,1451,12571,12550,13699,13708,43,13960,13976,13905,13757,0,1436,1454,977,0,13688,13708,13638,13481,43,13760,13390,13976,13960,0,1012,1453,1454,1436,12530,12571,13708,13688,43,13977,13971,13859,14572,0,1456,1362,1441,1455,13709,13698,12553,12573,43,13921,13858,13971,13977,0,1407,87,1362,1456,13652,13547,13698,13709,43,13966,13977,14572,13387,0,1457,1456,1455,1064,13701,13709,12573,12554,43,13810,13921,13977,13966,0,50,1407,1456,1457,13568,13652,13709,13701,43,13978,13972,13869,13391,0,1459,1443,1442,1458,13710,13700,12557,12575,43,13930,13868,13972,13978,0,1414,1370,1443,1459,13662,13567,13700,13710,43,13967,13978,13391,13818,0,1445,1459,1458,1446,13703,13710,12575,12558,43,13817,13930,13978,13967,0,51,1414,1459,1445,13588,13662,13710,13703,43,13979,13973,14574,14568,0,1424,1379,1444,1460,13711,13702,12561,12577,43,13940,13879,13973,13979,0,1421,150,1379,1424,13672,13587,13702,13711,43,13964,13979,14568,13794,0,737,1424,1460,16,13705,13711,12577,12562,43,13793,13940,13979,13964,0,30,1421,1424,737,13600,13672,13711,13705,43,13980,13974,13887,14571,0,1461,1379,49,1428,13712,13704,12565,12579,43,13948,13888,13974,13980,0,1462,1387,1379,1461,13677,13597,13704,13712,43,13975,13980,14571,14573,0,1448,1463,1428,1449,13707,13712,12579,12566,43,13898,13948,13980,13975,0,1450,1462,1463,1448,13620,13677,13712,13707,43,13995,13996,13992,13991,0,49,0,6,30,13713,13714,13715,13716,43,13994,13993,13996,13995,0,16,5,0,49,13717,13718,13714,13713,43,13994,13995,13829,13750,0,5,16,30,6,13717,13713,13521,13524,43,13829,13995,13991,13753,0,30,16,5,6,13521,13713,13716,13463,43,13997,13998,13776,13736,0,957,739,6,30,13719,13720,13721,13722,43,13990,13989,13998,13997,0,16,5,739,957,13723,13724,13720,13719,43,13999,14000,13989,13990,0,1464,0,6,30,13725,13726,13724,13723,43,13991,13992,14000,13999,0,16,5,0,1464,13716,13715,13726,13725,43,13739,13844,13997,13736,0,5,16,30,6,13535,13534,13719,13722,43,13990,13997,13844,13740,0,5,16,30,6,13723,13719,13534,13467,43,13754,13999,13990,13740,0,30,16,5,6,13464,13725,13723,13467,43,13991,13999,13754,13753,0,30,16,5,6,13716,13725,13464,13463,43,14001,14002,13970,13850,0,185,0,5,44,13727,13728,13691,13471,43,13983,13981,14002,14001,0,50,6,0,185,13729,13730,13728,13727,43,14002,14003,14575,13970,0,49,1465,44,16,13728,12598,12537,13691,43,13981,14567,14003,14002,0,30,50,1465,49,13730,12599,12598,13728,43,14004,14005,13851,13741,0,1466,1467,1019,1021,13731,13732,13470,13474,43,13988,13982,14005,14004,0,1020,1018,1467,1466,13733,13734,13732,13731,43,14005,14001,13850,13851,0,1467,1468,1016,1019,13732,13727,13471,13470,43,13982,13983,14001,14005,0,1018,1017,1468,1467,13734,13729,13727,13732,43,14007,14008,13745,13799,0,1469,1470,1031,1050,13735,13736,13487,13505,43,13984,13986,14008,14007,0,1049,1030,1470,1469,13737,13738,13736,13735,43,14006,14007,13799,13742,0,1471,1469,1050,1008,13739,13735,13505,13507,43,13987,13984,14007,14006,0,1051,1049,1469,1471,13740,13737,13735,13739,43,14008,14009,13771,13745,0,1470,1472,1029,1031,13736,13741,13485,13487,43,13986,13985,14009,14008,0,1030,1028,1472,1470,13738,13742,13741,13736,43,14009,14004,13741,13771,0,1472,1466,1021,1029,13741,13731,13474,13485,43,13985,13988,14004,14009,0,1028,1020,1466,1472,13742,13733,13731,13741,43,14016,14020,14019,14017,0,5,16,30,6,3423,3423,3423,13743,43,14020,14021,14022,14019,0,5,16,30,6,3423,3423,3423,3423,43,14025,14024,14022,14021,0,30,16,5,6,3423,3423,3423,3423,43,14025,14027,14026,14024,0,30,16,5,6,3423,3423,3423,3423,43,14030,14031,14037,14036,0,50,44,16,30,13437,13438,13435,13436,43,14038,14040,14031,14030,0,6,5,44,50,13439,13744,13438,13437,43,14034,14035,14032,14033,0,16,30,50,44,13441,13442,13443,13444,43,14033,14032,14041,14039,0,44,50,6,5,13444,13443,13445,13446,43,14035,14034,14036,14037,0,5,16,30,6,13442,13441,13436,13435,43,14038,14039,14041,14040,0,1243,1359,1107,1361,13439,13446,13445,13744,43,14047,14045,14042,14043,0,1243,1359,1107,1361,13745,13746,13747,13748,43,14043,14042,14044,14046,0,1361,1107,1248,1254,13748,13747,13749,13750,43,14049,14048,14045,14047,0,1360,15,1359,1243,13751,13752,13746,13745,43,14050,14051,14054,14052,0,1360,15,1359,1243,13753,13754,13755,13756,43,14052,14054,14055,14053,0,1243,1359,1248,1254,13756,13755,13757,13758,43,14059,14057,14056,14058,0,1243,1359,1248,1254,13759,13760,13761,13762,43,14061,14060,14057,14059,0,1360,15,1359,1243,13763,13764,13760,13759,43,14062,14063,14066,14064,0,1360,15,1359,1243,13765,13766,13767,13768,43,14068,14069,14067,14065,0,1361,1107,1248,1254,13769,13770,13771,13772,43,14064,14066,14069,14068,0,1243,1359,1107,1361,13768,13767,13770,13769,43,14073,14072,14070,14071,0,1243,1359,1107,1361,13773,13774,13775,13776,43,14076,14077,14075,14074,0,5,16,30,6,13777,13778,13779,13780,43,14078,14079,14070,14072,0,44,50,6,5,13781,13782,13775,13774,43,14077,14076,14079,14078,0,16,30,50,44,13778,13777,13782,13781,43,14073,14071,14080,14081,0,6,5,44,50,13773,13776,13783,13784,43,14081,14080,14074,14075,0,50,44,16,30,13784,13783,13780,13779,43,14082,14090,14091,14089,0,5,16,30,6,13785,13786,13787,13788,43,14088,14089,14091,14092,0,5,16,30,6,13789,13788,13787,13790,43,14087,14088,14092,14093,0,5,16,30,6,13791,13789,13790,13792,43,14086,14087,14093,14094,0,5,16,30,6,13793,13791,13792,13794,43,14085,14086,14094,14095,0,5,16,30,6,13795,13793,13794,13796,43,14084,14085,14095,14096,0,5,16,30,6,13797,13795,13796,13798,43,14083,14084,14096,14097,0,5,16,30,6,13799,13797,13798,13800,43,14082,14083,14097,14090,0,5,16,30,6,13785,13799,13800,13786,43,14107,14105,14098,14106,0,5,16,30,6,13801,13802,13803,13804,43,14104,14105,14107,14108,0,5,16,30,6,13805,13802,13801,13806,43,14103,14104,14108,14109,0,5,16,30,6,13807,13805,13806,13808,43,14102,14103,14109,14110,0,5,16,30,6,13809,13807,13808,13810,43,14101,14102,14110,14111,0,5,16,30,6,13811,13809,13810,13812,43,14100,14101,14111,14112,0,5,16,30,6,13813,13811,13812,13814,43,14099,14100,14112,14113,0,5,16,30,6,13815,13813,13814,13816,43,14098,14099,14113,14106,0,5,16,30,6,13803,13815,13816,13804,43,14114,14107,14106,14115,0,5,16,30,6,13817,13801,13804,13818,43,14109,14114,14115,14110,0,5,16,30,6,13808,13817,13818,13810,43,14115,14106,14113,14116,0,5,16,30,6,13818,13804,13816,13819,43,14110,14115,14116,14111,0,5,16,30,6,13810,13818,13819,13812,43,14109,14108,14107,14114,0,5,16,30,6,13808,13806,13801,13817,43,14112,14111,14116,14113,0,5,16,30,6,13814,13812,13819,13816,43,14117,14090,14097,14118,0,5,16,30,6,13820,13786,13800,13821,43,14098,14117,14118,14099,0,5,16,30,6,13803,13820,13821,13815,43,14118,14097,14096,14119,0,5,16,30,6,13821,13800,13798,13822,43,14099,14118,14119,14100,0,5,16,30,6,13815,13821,13822,13813,43,14119,14096,14095,14120,0,5,16,30,6,13822,13798,13796,13823,43,14100,14119,14120,14101,0,5,16,30,6,13813,13822,13823,13811,43,14120,14095,14094,14121,0,5,16,30,6,13823,13796,13794,13824,43,14101,14120,14121,14102,0,5,16,30,6,13811,13823,13824,13809,43,14121,14094,14093,14122,0,5,16,30,6,13824,13794,13792,13825,43,14102,14121,14122,14103,0,5,16,30,6,13809,13824,13825,13807,43,14122,14093,14092,14123,0,5,16,30,6,13825,13792,13790,13826,43,14103,14122,14123,14104,0,5,16,30,6,13807,13825,13826,13805,43,14123,14092,14091,14124,0,5,16,30,6,13826,13790,13787,13827,43,14104,14123,14124,14105,0,5,16,30,6,13805,13826,13827,13802,43,14091,14090,14117,14124,0,5,16,30,6,13787,13786,13820,13827,43,14124,14117,14098,14105,0,5,16,30,6,13827,13820,13803,13802,43,14089,14125,14132,14082,0,5,16,30,6,13788,13828,13829,13785,43,14089,14088,14126,14125,0,5,16,30,6,13788,13789,13830,13828,43,14088,14087,14127,14126,0,5,16,30,6,13789,13791,13831,13830,43,14087,14086,14128,14127,0,5,16,30,6,13791,13793,13832,13831,43,14086,14085,14129,14128,0,5,16,30,6,13793,13795,13833,13832,43,14085,14084,14130,14129,0,5,16,30,6,13795,13797,13834,13833,43,14084,14083,14131,14130,0,5,16,30,6,13797,13799,13835,13834,43,14132,14131,14083,14082,0,5,16,30,6,13829,13835,13799,13785,43,14182,14183,14133,14134,0,5,16,30,6,13836,13837,13838,13839,43,14181,14182,14134,14135,0,5,16,30,6,13840,13836,13839,13841,43,14180,14181,14135,14136,0,5,16,30,6,13842,13840,13841,13843,43,14179,14180,14136,14137,0,5,16,30,6,13844,13842,13843,13845,43,14178,14179,14137,14138,0,5,16,30,6,13846,13844,13845,13847,43,14177,14178,14138,14139,0,5,16,30,6,13848,13846,13847,13849,43,14176,14177,14139,14140,0,5,16,30,6,13850,13848,13849,13851,43,14133,14183,14176,14140,0,5,16,30,6,13838,13837,13850,13851,43,14141,14148,14167,14160,0,5,16,30,6,13852,13853,13854,13855,43,14174,14175,14148,14141,0,5,16,30,6,13856,13857,13853,13852,43,14161,14142,14141,14160,0,5,16,30,6,13858,13859,13852,13855,43,14142,14173,14174,14141,0,5,16,30,6,13859,13860,13856,13852,43,14162,14143,14142,14161,0,5,16,30,6,13861,13862,13859,13858,43,14143,14172,14173,14142,0,5,16,30,6,13862,13863,13860,13859,43,14163,14144,14143,14162,0,5,16,30,6,13864,13865,13862,13861,43,14144,14171,14172,14143,0,5,16,30,6,13865,13866,13863,13862,43,14164,14145,14144,14163,0,5,16,30,6,13867,13868,13865,13864,43,14145,14170,14171,14144,0,5,16,30,6,13868,13869,13866,13865,43,14165,14146,14145,14164,0,5,16,30,6,13870,13871,13868,13867,43,14146,14169,14170,14145,0,5,16,30,6,13871,13872,13869,13868,43,14166,14147,14146,14165,0,5,16,30,6,13873,13874,13871,13870,43,14147,14168,14169,14146,0,5,16,30,6,13874,13875,13872,13871,43,14167,14148,14147,14166,0,5,16,30,6,13854,13853,13874,13873,43,14148,14175,14168,14147,0,5,16,30,6,13853,13857,13875,13874,43,14153,14154,14149,14152,0,5,16,30,6,13876,13877,13878,13879,43,14156,14157,14158,14151,0,5,16,30,6,13880,13881,13882,13883,43,14155,14150,14149,14154,0,5,16,30,6,13884,13885,13878,13877,43,14150,14159,14152,14149,0,5,16,30,6,13885,13886,13879,13878,43,14156,14151,14150,14155,0,5,16,30,6,13880,13883,13885,13884,43,14151,14158,14159,14150,0,5,16,30,6,13883,13882,13886,13885,43,14167,14166,14152,14159,0,5,16,30,6,13854,13873,13879,13886,43,14166,14165,14153,14152,0,5,16,30,6,13873,13870,13876,13879,43,14165,14164,14154,14153,0,5,16,30,6,13870,13867,13877,13876,43,14164,14163,14155,14154,0,5,16,30,6,13867,13864,13884,13877,43,14163,14162,14156,14155,0,5,16,30,6,13864,13861,13880,13884,43,14162,14161,14157,14156,0,5,16,30,6,13861,13858,13881,13880,43,14161,14160,14158,14157,0,5,16,30,6,13858,13855,13882,13881,43,14158,14160,14167,14159,0,5,16,30,6,13882,13855,13854,13886,43,14183,14182,14168,14175,0,5,16,30,6,13837,13836,13875,13857,43,14182,14181,14169,14168,0,5,16,30,6,13836,13840,13872,13875,43,14181,14180,14170,14169,0,5,16,30,6,13840,13842,13869,13872,43,14180,14179,14171,14170,0,5,16,30,6,13842,13844,13866,13869,43,14179,14178,14172,14171,0,5,16,30,6,13844,13846,13863,13866,43,14178,14177,14173,14172,0,5,16,30,6,13846,13848,13860,13863,43,14177,14176,14174,14173,0,5,16,30,6,13848,13850,13856,13860,43,14174,14176,14183,14175,0,5,16,30,6,13856,13850,13837,13857,43,14191,14186,14185,14184,0,51,50,53,52,13887,13888,13889,13890,43,14187,14193,14189,14188,0,30,50,53,49,13891,13892,13893,13894,43,14198,14200,14202,14197,0,30,50,53,49,13895,13896,13897,13898,43,14200,14199,14201,14202,0,30,50,53,49,13896,13899,13900,13897,43,14199,14196,14195,14201,0,30,51,52,49,13899,13901,13902,13900,43,14211,14212,14201,14195,0,150,1473,49,30,13903,13904,13900,13902,43,14213,14214,14197,14202,0,51,52,49,30,13905,13906,13898,13897,43,14212,14213,14202,14201,0,51,52,49,30,13904,13905,13897,13900,43,14217,14218,14191,14184,0,150,1473,49,30,13907,13908,13887,13890,43,14195,14196,14218,14217,0,51,52,1473,150,13902,13901,13908,13907,43,14219,14220,14189,14193,0,1474,188,49,30,13909,13910,13893,13892,43,14198,14197,14220,14219,0,50,53,188,1474,13895,13898,13910,13909,43,14221,14222,14194,14192,0,51,52,49,30,13911,13912,13913,13914,43,14199,14200,14222,14221,0,50,53,52,51,13899,13896,13912,13911,43,14222,14219,14193,14194,0,51,52,49,30,13912,13909,13892,13913,43,14200,14198,14219,14222,0,50,53,52,51,13896,13895,13909,13912,43,14218,14221,14192,14191,0,150,1473,49,30,13908,13911,13914,13887,43,14196,14199,14221,14218,0,51,52,1473,150,13901,13899,13911,13908,43,14225,14224,14208,14209,0,150,1473,49,30,13915,13916,13917,13918,43,14203,14204,14224,14225,0,51,52,1473,150,13919,13920,13916,13915,43,14223,14226,14210,14207,0,51,188,49,30,13921,13922,13923,13924,43,14205,14206,14226,14223,0,50,53,188,51,13925,13926,13922,13921,43,14226,14225,14209,14210,0,51,52,49,30,13922,13915,13918,13923,43,14206,14203,14225,14226,0,50,53,52,51,13926,13919,13915,13922,43,14227,14220,14197,14214,0,1397,1066,30,51,13927,13910,13898,13906,43,14215,14189,14220,14227,0,52,49,1066,1397,13928,13893,13910,13927,43,14184,14216,14228,14217,0,30,150,1475,1066,13890,13929,13930,13907,43,14211,14195,14217,14228,0,1473,49,1066,1475,13903,13902,13907,13930,43,14229,14230,14212,14211,0,1476,1477,1473,150,13931,13932,13904,13903,43,14204,14203,14230,14229,0,51,52,1477,1476,13920,13919,13932,13931,43,14231,14232,14214,14213,0,1370,1478,52,51,13933,13934,13906,13905,43,14206,14205,14232,14231,0,50,53,1478,1370,13926,13925,13934,13933,43,14230,14231,14213,14212,0,1370,1373,52,51,13932,13933,13905,13904,43,14203,14206,14231,14230,0,50,53,1373,1370,13919,13926,13933,13932,43,14210,14209,14236,14235,0,50,53,1373,1370,13923,13918,13935,13936,43,14207,14210,14235,14233,0,50,53,1373,1370,13924,13923,13936,13937,43,14209,14208,14234,14236,0,51,52,1477,1476,13918,13917,13938,13935,43,14237,14232,14205,14223,0,1479,1370,50,951,13939,13934,13925,13921,43,14227,14214,14232,14237,0,1397,51,1370,1479,13927,13906,13934,13939,43,14233,14237,14223,14207,0,1478,1479,951,53,13937,13939,13921,13924,43,14215,14227,14237,14233,0,52,1397,1479,1478,13928,13927,13939,13937,43,14238,14234,14208,14224,0,1480,1481,51,1397,13940,13938,13917,13916,43,14228,14216,14234,14238,0,1482,150,1481,1480,13930,13929,13938,13940,43,14229,14238,14224,14204,0,1477,1483,1397,52,13931,13940,13916,13920,43,14211,14228,14238,14229,0,1473,1482,1483,1477,13903,13930,13940,13931,43,14255,14262,14274,14267,0,5,16,30,6,13941,13942,13943,13944,43,14256,14255,14267,14268,0,5,16,30,6,13945,13941,13944,13946,43,14261,14256,14268,14273,0,5,16,30,6,13947,13945,13946,13948,43,14254,14257,14269,14266,0,5,16,30,6,13949,13950,13951,13952,43,14258,14253,14265,14270,0,5,16,30,6,13953,13954,13955,13956,43,14263,14269,14257,14251,0,5,16,30,6,13957,13951,13950,13958,43,14260,14258,14270,14272,0,5,16,30,6,13959,13953,13956,13960,43,14251,14259,14271,14263,0,5,16,30,6,13958,13961,13962,13957,43,14259,14252,14264,14271,0,5,16,30,6,13961,13963,13964,13962,43,14252,14260,14272,14264,0,5,16,30,6,13963,13959,13960,13964,43,14253,14261,14273,14265,0,5,16,30,6,13954,13947,13948,13955,43,14262,14254,14266,14274,0,5,16,30,6,13942,13949,13952,13943,42,14283,14275,14281,0,5,16,6,13965,13966,13967,42,14282,14275,14280,0,5,16,6,13968,13966,13969,42,14281,14275,14279,0,5,16,6,13967,13966,13970,42,14278,14275,14282,0,5,16,6,13971,13966,13968,42,14279,14275,14276,0,5,16,6,13970,13966,13972,42,14277,14275,14278,0,5,16,6,13973,13966,13971,42,14280,14275,14283,0,5,16,6,13969,13966,13965,43,14287,14280,14283,14284,0,5,16,30,6,13974,13969,13965,13975,43,14290,14277,14278,14289,0,5,16,30,6,13976,13973,13971,13977,43,14288,14279,14276,14291,0,5,16,30,6,13978,13970,13972,13979,43,14289,14278,14282,14285,0,5,16,30,6,13977,13971,13968,13980,43,14286,14281,14279,14288,0,5,16,30,6,13981,13967,13970,13978,43,14285,14282,14280,14287,0,5,16,30,6,13980,13968,13969,13974,43,14284,14283,14281,14286,0,5,16,30,6,13975,13965,13967,13981,43,14299,14284,14286,14297,0,5,16,30,6,13982,13975,13981,13983,43,14298,14285,14287,14296,0,5,16,30,6,13984,13980,13974,13985,43,14297,14286,14288,14295,0,5,16,30,6,13983,13981,13978,13986,43,14294,14289,14285,14298,0,5,16,30,6,13987,13977,13980,13984,43,14295,14288,14291,14292,0,5,16,30,6,13986,13978,13979,13988,43,14293,14290,14289,14294,0,5,16,30,6,13989,13976,13977,13987,43,14296,14287,14284,14299,0,5,16,30,6,13985,13974,13975,13982,43,14267,14274,14322,14321,0,5,16,30,6,13944,13943,13990,13991,43,14268,14267,14321,14320,0,5,16,30,6,13946,13944,13991,13992,43,14273,14268,14320,14319,0,5,16,30,6,13948,13946,13992,13993,43,14270,14265,14318,14317,0,5,16,30,6,13956,13955,13994,13995,43,14269,14263,14325,14324,0,5,16,30,6,13951,13957,13996,13997,43,14272,14270,14317,14328,0,5,16,30,6,13960,13956,13995,13998,43,14263,14271,14326,14325,0,5,16,30,6,13957,13962,13999,13996,43,14271,14264,14327,14326,0,5,16,30,6,13962,13964,14000,13999,43,14264,14272,14328,14327,0,5,16,30,6,13964,13960,13998,14000,43,14265,14273,14319,14318,0,5,16,30,6,13955,13948,13993,13994,43,14274,14266,14323,14322,0,5,16,30,6,13943,13952,14001,13990,43,14344,14341,14332,14329,0,5,16,30,6,14002,14003,14004,14005,43,14339,14338,14335,14334,0,5,16,30,6,14006,14007,14008,14009,43,14336,14337,14340,14333,0,5,16,30,6,14010,14011,14012,14013,43,14343,14339,14334,14330,0,5,16,30,6,14014,14006,14009,14015,43,14333,14340,14342,14331,0,5,16,30,6,14013,14012,14016,14017,43,14332,14341,14343,14330,0,5,16,30,6,14004,14003,14014,14015,43,14331,14342,14344,14329,0,5,16,30,6,14017,14016,14002,14005,43,14360,14357,14348,14345,0,5,16,30,6,14018,14019,14020,14021,43,14355,14354,14351,14350,0,5,16,30,6,14022,14023,14024,14025,43,14352,14353,14356,14349,0,5,16,30,6,14026,14027,14028,14029,43,14346,14359,14355,14350,0,5,16,30,6,14030,14031,14022,14025,43,14349,14356,14358,14347,0,5,16,30,6,14029,14028,14032,14033,43,14348,14357,14359,14346,0,5,16,30,6,14020,14019,14031,14030,43,14358,14360,14345,14347,0,5,16,30,6,14032,14018,14021,14033,43,14372,14369,14300,14303,0,5,16,30,6,14034,14035,14036,14037,43,14296,14299,14368,14365,0,5,16,30,6,13985,13982,14038,14039,43,14376,14374,14305,14306,0,5,16,30,6,14040,14041,14042,14043,43,14293,14294,14363,14361,0,5,16,30,6,13989,13987,14044,14045,43,14373,14375,14307,14304,0,5,16,30,6,14046,14047,14048,14049,43,14295,14292,14362,14364,0,5,16,30,6,13986,13988,14050,14051,43,14374,14371,14301,14305,0,5,16,30,6,14041,14052,14053,14042,43,14294,14298,14366,14363,0,5,16,30,6,13987,13984,14054,14044,43,14370,14373,14304,14302,0,5,16,30,6,14055,14046,14049,14056,43,14297,14295,14364,14367,0,5,16,30,6,13983,13986,14051,14057,43,14371,14372,14303,14301,0,5,16,30,6,14052,14034,14037,14053,43,14298,14296,14365,14366,0,5,16,30,6,13984,13985,14039,14054,43,14369,14370,14302,14300,0,5,16,30,6,14035,14055,14056,14036,43,14299,14297,14367,14368,0,5,16,30,6,13982,13983,14057,14038,43,14405,14404,14386,14380,0,5,16,30,6,14058,14059,14060,14061,43,14406,14405,14380,14381,0,5,16,30,6,14062,14058,14061,14063,43,14410,14403,14382,14379,0,5,16,30,6,14064,14065,14066,14067,43,14377,14382,14403,14407,0,5,16,30,6,14068,14066,14065,14069,43,14407,14408,14383,14377,0,5,16,30,6,14069,14070,14071,14068,43,14408,14409,14378,14383,0,5,16,30,6,14070,14072,14073,14071,43,14404,14410,14379,14386,0,5,16,30,6,14059,14064,14067,14060,43,14399,14389,14388,14400,0,5,16,30,6,14074,14075,14076,14077,43,14398,14390,14389,14399,0,5,16,30,6,14078,14079,14075,14074,43,14401,14394,14387,14402,0,5,16,30,6,14080,14081,14082,14083,43,14402,14387,14391,14397,0,5,16,30,6,14083,14082,14084,14085,43,14397,14391,14392,14396,0,5,16,30,6,14085,14084,14086,14087,43,14396,14392,14393,14395,0,5,16,30,6,14087,14086,14088,14089,43,14400,14388,14394,14401,0,5,16,30,6,14077,14076,14081,14080,43,14404,14400,14401,14410,0,5,16,30,6,14059,14077,14080,14064,43,14408,14396,14395,14409,0,5,16,30,6,14070,14087,14089,14072,43,14407,14397,14396,14408,0,5,16,30,6,14069,14085,14087,14070,43,14403,14402,14397,14407,0,5,16,30,6,14065,14083,14085,14069,43,14410,14401,14402,14403,0,5,16,30,6,14064,14080,14083,14065,43,14406,14398,14399,14405,0,5,16,30,6,14062,14078,14074,14058,43,14405,14399,14400,14404,0,5,16,30,6,14058,14074,14077,14059,43,14412,14411,14390,14398,0,5,16,30,6,14090,14091,14079,14078,43,14413,14412,14398,14406,0,5,16,30,6,14092,14090,14078,14062,43,14395,14393,14415,14414,0,5,16,30,6,14089,14088,14093,14094,43,14409,14395,14414,14416,0,5,16,30,6,14072,14089,14094,14095,43,14385,14413,14406,14381,0,5,16,30,6,14096,14092,14062,14063,43,14409,14416,14384,14378,0,5,16,30,6,14072,14095,14097,14073,43,14423,14448,14445,14441,0,953,1485,1486,1484,14098,14099,14100,14101,43,14448,14443,14190,14445,0,1485,1069,1487,1486,14099,14102,14103,14100,43,14446,14447,14449,14444,0,1487,1484,953,1069,14104,14105,14106,14107,43,14447,14190,14443,14449,0,1487,1484,953,1069,14105,14103,14102,14106,43,14442,14446,14444,14424,0,1487,1484,953,1069,14108,14104,14107,14109,43,14186,14191,14448,14423,0,44,47,1489,1488,13888,13887,14099,14098,43,14191,14192,14443,14448,0,47,16,1490,1489,13887,13914,14102,14099,43,14444,14449,14194,14193,0,1490,1488,44,16,14107,14106,13913,13892,43,14449,14443,14192,14194,0,1490,1488,44,16,14106,14102,13914,13913,43,14424,14444,14193,14187,0,1490,1488,44,16,14109,14107,13892,13891,43,14441,14445,14451,14425,0,1492,1493,1494,1491,14101,14100,14110,14111,43,14445,14190,14450,14451,0,1493,1495,1496,1494,14100,14103,14112,14110,43,14438,14439,14447,14446,0,1496,1491,1492,1495,14113,14114,14105,14104,43,14439,14450,14190,14447,0,1496,1491,1492,1495,14114,14112,14103,14105,43,14440,14438,14446,14442,0,1496,1491,1492,1495,14115,14113,14104,14108,43,14456,14457,14431,14430,0,719,1069,49,0,14116,14117,14118,14119,43,14321,14322,14457,14456,0,5,16,1069,719,13991,13990,14117,14116,43,14455,14456,14430,14429,0,719,1069,49,0,14120,14116,14119,14121,43,14320,14321,14456,14455,0,5,16,1069,719,13992,13991,14116,14120,43,14454,14455,14429,14428,0,719,1069,49,0,14122,14120,14121,14123,43,14319,14320,14455,14454,0,5,16,1069,719,13993,13992,14120,14122,43,14452,14453,14427,14426,0,719,1069,49,0,14124,14125,14126,14127,43,14317,14318,14453,14452,0,5,16,1069,719,13995,13994,14125,14124,43,14459,14460,14434,14433,0,719,1069,49,0,14128,14129,14130,14131,43,14324,14325,14460,14459,0,5,16,1069,719,13997,13996,14129,14128,43,14463,14452,14426,14437,0,719,1069,49,0,14132,14124,14127,14133,43,14328,14317,14452,14463,0,5,16,1069,719,13998,13995,14124,14132,43,14460,14461,14435,14434,0,719,1069,49,0,14129,14134,14135,14130,43,14325,14326,14461,14460,0,5,16,1069,719,13996,13999,14134,14129,43,14461,14462,14436,14435,0,719,1069,49,0,14134,14136,14137,14135,43,14326,14327,14462,14461,0,5,16,1069,719,13999,14000,14136,14134,43,14462,14463,14437,14436,0,719,1069,49,0,14136,14132,14133,14137,43,14327,14328,14463,14462,0,5,16,1069,719,14000,13998,14132,14136,43,14453,14454,14428,14427,0,719,1069,49,0,14125,14122,14123,14126,43,14318,14319,14454,14453,0,5,16,1069,719,13994,13993,14122,14125,43,14457,14458,14432,14431,0,719,1069,49,0,14117,14138,14139,14118,43,14322,14323,14458,14457,0,5,16,1069,719,13990,14001,14138,14117,43,14425,14451,14466,14308,0,1498,1499,1500,1497,14111,14110,14140,14141,43,14451,14450,14465,14466,0,1499,1501,1502,1500,14110,14112,14142,14140,43,14464,14314,14439,14438,0,1502,1497,1498,1501,14143,14144,14114,14113,43,14314,14465,14450,14439,0,1502,1497,1498,1501,14144,14142,14112,14114,43,14311,14464,14438,14440,0,1502,1497,1498,1501,14145,14143,14113,14115,43,14471,14472,14309,14308,0,952,1066,30,6,14146,14147,14148,14141,43,14430,14431,14472,14471,0,0,49,1066,952,14119,14118,14147,14146,43,14470,14471,14308,14466,0,952,1066,30,6,14149,14146,14141,14140,43,14429,14430,14471,14470,0,0,49,1066,952,14121,14119,14146,14149,43,14469,14470,14466,14465,0,952,1066,30,6,14150,14149,14140,14142,43,14428,14429,14470,14469,0,0,49,1066,952,14123,14121,14149,14150,43,14467,14468,14314,14464,0,952,1066,30,6,14151,14152,14144,14143,43,14426,14427,14468,14467,0,0,49,1066,952,14127,14126,14152,14151,43,14474,14475,14316,14310,0,952,1066,30,6,14153,14154,14155,14156,43,14433,14434,14475,14474,0,0,49,1066,952,14131,14130,14154,14153,43,14478,14467,14464,14311,0,952,1066,30,6,14157,14151,14143,14145,43,14437,14426,14467,14478,0,0,49,1066,952,14133,14127,14151,14157,43,14475,14476,14312,14316,0,952,1066,30,6,14154,14158,14159,14155,43,14434,14435,14476,14475,0,0,49,1066,952,14130,14135,14158,14154,43,14476,14477,14315,14312,0,952,1066,30,6,14158,14160,14161,14159,43,14435,14436,14477,14476,0,0,49,1066,952,14135,14137,14160,14158,43,14477,14478,14311,14315,0,952,1066,30,6,14160,14157,14145,14161,43,14436,14437,14478,14477,0,0,49,1066,952,14137,14133,14157,14160,43,14468,14469,14465,14314,0,952,1066,30,6,14152,14150,14142,14144,43,14427,14428,14469,14468,0,0,49,1066,952,14126,14123,14150,14152,43,14472,14473,14313,14309,0,952,1066,30,6,14147,14162,14163,14148,43,14431,14432,14473,14472,0,0,49,1066,952,14118,14139,14162,14147,43,14027,14483,14484,14026,0,30,16,5,6,3423,3423,3423,3423,43,14483,14486,14485,14484,0,30,16,5,6,3423,3423,3423,3423,43,14494,14491,14485,14486,0,49,0,6,30,3423,3423,3423,3423,43,14010,14018,14495,14496,0,6,5,44,50,14164,14165,14166,3423,43,14017,14019,14496,14495,0,16,30,50,44,13743,3423,3423,14166,43,14496,14497,14014,14010,0,0,49,30,6,3423,3423,14167,14164,43,14019,14022,14497,14496,0,5,16,49,0,3423,3423,3423,3423,43,14497,14498,14013,14014,0,44,50,6,5,3423,3423,14168,14167,43,14022,14024,14498,14497,0,16,30,50,44,3423,3423,3423,3423,43,14498,14499,14029,14013,0,0,49,30,6,3423,3423,14169,14168,43,14024,14026,14499,14498,0,5,16,49,0,3423,3423,3423,3423,43,14499,14500,14481,14029,0,0,49,30,6,3423,3423,14170,14169,43,14026,14484,14500,14499,0,5,16,49,0,3423,3423,3423,3423,43,14500,14501,14488,14481,0,0,49,30,6,3423,3423,14171,14170,43,14484,14485,14501,14500,0,5,16,49,0,3423,3423,3423,3423,43,14502,14501,14485,14491,0,53,0,5,44,14172,3423,3423,3423,43,14492,14488,14501,14502,0,50,6,0,53,14173,14171,3423,14172,43,14504,14503,14015,14011,0,50,44,5,6,14174,14175,14176,14177,43,14020,14016,14503,14504,0,30,16,44,50,3423,3423,14175,14174,43,14505,14504,14011,14012,0,44,50,6,5,3423,14174,14177,14178,43,14021,14020,14504,14505,0,16,30,50,44,3423,3423,14174,3423,43,14506,14505,14012,14023,0,49,0,6,30,3423,3423,14178,14179,43,14025,14021,14505,14506,0,16,5,0,49,3423,3423,3423,3423,43,14507,14506,14023,14028,0,49,0,6,30,3423,3423,14179,14180,43,14027,14025,14506,14507,0,16,5,0,49,3423,3423,3423,3423,43,14507,14508,14483,14027,0,50,44,5,6,3423,3423,3423,3423,43,14028,14482,14508,14507,0,30,16,44,50,14180,14181,3423,3423,43,14508,14509,14486,14483,0,50,44,5,6,3423,3423,3423,3423,43,14482,14487,14509,14508,0,30,16,44,50,14181,14182,3423,3423,43,14510,14509,14487,14493,0,53,50,30,49,14183,3423,14182,14184,43,14494,14486,14509,14510,0,0,6,50,53,3423,3423,3423,14183,43,14514,14511,14491,14494,0,1069,719,0,49,14185,14186,3423,3423,43,14489,14490,14511,14514,0,16,5,719,1069,14187,14188,14186,14185,43,14515,14511,14490,14512,0,52,47,16,49,14189,14186,14188,14190,43,14502,14491,14511,14515,0,53,44,47,52,14172,3423,14186,14189,43,14492,14502,14515,14512,0,50,53,1503,1091,14173,14172,14189,14190,43,14510,14493,14513,14516,0,53,49,1504,953,14183,14184,14191,14192,43,14514,14516,14513,14489,0,719,953,44,5,14185,14192,14191,14187,43,14494,14510,14516,14514,0,0,53,953,719,3423,14183,14192,14185,43,14518,14519,14016,14017,0,44,50,6,5,14193,14194,3423,13743,43,14479,14480,14519,14518,0,16,30,50,44,14195,14196,14194,14193,43,14521,14518,14017,14495,0,53,50,6,0,14197,14193,13743,14166,43,14517,14479,14518,14521,0,49,30,50,53,14198,14195,14193,14197,43,14517,14521,14495,14018,0,44,53,0,5,14198,14197,14166,14165,43,14522,14520,14015,14503,0,1505,0,6,50,14199,14200,14176,14175,43,14519,14522,14503,14016,0,49,53,50,30,14194,14199,14175,3423,43,14480,14520,14522,14519,0,16,44,53,49,14196,14200,14199,14194,43,14525,14523,13732,13758,0,53,50,6,0,14201,14202,13483,13482,43,13759,13739,14523,14525,0,49,30,50,53,13536,13535,14202,14201,43,14523,14526,13749,13732,0,0,49,30,6,14202,14203,13512,13483,43,13739,13736,14526,14523,0,5,16,49,0,13535,13722,14203,14202,43,14527,14526,13736,13776,0,1506,0,6,30,14204,14203,13722,13721,43,13747,13749,14526,14527,0,16,5,0,1506,13515,13512,14203,14204,43,14532,14524,13735,13857,0,1507,0,5,1363,14205,14206,13545,13544,43,13860,13737,14524,14532,0,87,6,0,1507,13555,13554,14206,14205,43,14533,14529,13809,13867,0,1508,53,44,1366,14207,14208,13565,13564,43,13870,13811,14529,14533,0,1370,50,53,1508,13575,13574,14208,14207,43,14534,14530,13816,13878,0,1473,52,47,1375,14209,14210,13585,13584,43,13880,13819,14530,14534,0,150,51,52,1473,13595,13594,14210,14209,43,14535,14528,13791,13885,0,1509,1375,16,161,14211,14212,13602,13601,43,13886,13790,14528,14535,0,1305,47,1375,1509,13615,13616,14212,14211,43,14531,14536,13896,13823,0,150,1482,1390,30,14213,14214,13622,13621,43,13824,13897,14536,14531,0,51,1389,1482,150,13635,13636,14214,14213,43,14537,14525,13758,13906,0,953,53,0,719,14215,14201,13482,13639,43,13907,13759,14525,14537,0,1069,49,53,953,13646,13536,14201,14215,43,14524,14537,13906,13735,0,675,1510,719,5,14206,14215,13639,13545,43,13737,13907,14537,14524,0,16,1069,1510,675,13554,13646,14215,14206,43,14538,14532,13857,13920,0,1412,1507,1363,1409,14216,14205,13544,13651,43,13922,13860,14532,14538,0,1407,87,1507,1412,13656,13555,14205,14216,43,14529,14538,13920,13809,0,53,1412,1409,44,14208,14216,13651,13565,43,13811,13922,14538,14529,0,50,1407,1412,53,13574,13656,14216,14208,43,14539,14533,13867,13929,0,1419,1511,1366,1413,14217,14207,13564,13661,43,13931,13870,14533,14539,0,1414,1370,1511,1419,13666,13575,14207,14217,43,14530,14539,13929,13816,0,1384,1419,1413,47,14210,14217,13661,13585,43,13819,13931,14539,14530,0,51,1414,1419,1384,13594,13666,14217,14210,43,14540,14534,13878,13939,0,1513,1514,1375,1512,14218,14209,13584,13671,43,13941,13880,14534,14540,0,1421,150,1514,1513,13676,13595,14209,14218,43,14528,14540,13939,13791,0,49,1513,1512,16,14212,14218,13671,13602,43,13790,13941,14540,14528,0,30,1421,1513,49,13616,13676,14218,14212,43,14541,14535,13885,13946,0,1515,1514,161,1426,14219,14211,13601,13679,43,13947,13886,14535,14541,0,1429,1305,1514,1515,13686,13615,14211,14219,43,14536,14541,13946,13896,0,1395,1515,1426,1390,14214,14219,13679,13622,43,13897,13947,14541,14536,0,1389,1429,1515,1395,13636,13686,14219,14214,43,13779,13782,14542,13746,0,5,16,30,6,13519,13529,14220,13514,43,14542,13782,13778,13727,0,30,16,5,6,14220,13529,13501,13492,43,14542,13775,13748,13746,0,30,16,5,6,14220,13500,13499,13514,43,13773,13775,14542,13727,0,5,16,30,6,13491,13500,14220,13492,43,14545,14546,14248,14247,0,49,53,152,151,14221,14222,14223,14224,43,14243,14244,14546,14545,0,153,154,53,49,14225,14226,14222,14221,43,14546,14547,14249,14248,0,49,53,152,151,14222,14227,14228,14223,43,14244,14245,14547,14546,0,153,154,53,49,14226,14229,14227,14222,43,14547,14544,14242,14249,0,49,53,152,151,14227,14230,14231,14228,43,14245,14240,14544,14547,0,153,154,53,49,14229,14232,14230,14227,43,14543,14548,14250,14241,0,49,53,152,151,14233,14234,14235,14236,43,14239,14246,14548,14543,0,153,154,53,49,14237,14238,14234,14233,43,14548,14545,14247,14250,0,49,53,155,151,14234,14221,14224,14235,43,14246,14243,14545,14548,0,153,154,53,49,14238,14225,14221,14234,43,14550,14549,14243,14246,0,49,53,155,151,14239,14240,14225,14238,43,14417,14420,14549,14550,0,153,154,53,49,14241,14242,14240,14239,43,14551,14550,14246,14239,0,49,53,152,151,14243,14239,14238,14237,43,14422,14417,14550,14551,0,153,154,53,49,14244,14241,14239,14243,43,14553,14552,14240,14245,0,49,53,152,151,14245,14246,14232,14229,43,14418,14421,14552,14553,0,153,154,53,49,14247,14248,14246,14245,43,14554,14553,14245,14244,0,49,53,152,151,14249,14245,14229,14226,43,14419,14418,14553,14554,0,153,154,53,49,14250,14247,14245,14249,43,14549,14554,14244,14243,0,49,53,152,151,14240,14249,14226,14225,43,14420,14419,14554,14549,0,153,154,53,49,14242,14250,14249,14240,43,14560,14557,13655,13658,0,91,87,6,5,14251,14252,14253,14254,43,13654,13659,14557,14560,0,44,50,87,91,14255,14256,14252,14251,43,14555,14560,13658,13651,0,91,87,6,5,14257,14251,14254,14258,43,13650,13654,14560,14555,0,44,50,87,91,14259,14255,14251,14257,43,14558,14556,13653,13657,0,91,87,6,5,14260,14261,14262,14263,43,13660,13652,14556,14558,0,44,50,87,91,14264,14265,14261,14260,43,14558,14559,13661,13660,0,87,91,44,50,14260,14266,14267,14264,43,13657,13656,14559,14558,0,6,5,91,87,14263,14268,14266,14260,43,14557,14559,13656,13655,0,91,87,6,5,14252,14266,14268,14253,43,13659,13661,14559,14557,0,44,50,87,91,14256,14267,14266,14252,43,14578,14579,13565,13563,0,87,91,44,50,14269,13138,12157,13317,43,13560,13561,14579,14578,0,6,5,91,87,14270,13140,13138,14269,43,14582,14583,13563,13564,0,49,53,44,16,14271,14272,13317,13316,43,13556,13562,14583,14582,0,30,50,53,49,14273,14274,14272,14271,43,14582,14580,13559,13556,0,0,161,30,6,14271,14275,14276,14273,43,13564,13557,14580,14582,0,5,16,161,0,13316,13318,14275,14271,43,14584,14581,13560,14578,0,1516,0,5,91,14277,14278,14270,14269,43,14577,13555,14581,14584,0,87,6,0,1516,14279,14280,14278,14277,43,14583,14584,14578,13563,0,53,1365,91,44,14272,14277,14269,13317,43,13562,14577,14584,14583,0,50,87,1365,53,14274,14279,14277,14272,43,11941,11937,14309,14313,0,30,6,6,30,11864,11848,14148,14163,43,9848,9850,12222,12220,0,30,16,16,30,9719,9722,12020,12018,43,11132,11134,13506,13504,0,1311,1312,1312,1311,10939,10938,13237,13236,43,11219,11197,13569,13591,0,30,6,6,30,11045,11027,13326,13344,43,10107,10105,12477,12479,0,50,44,44,50,10838,10827,13124,13135,43,10371,10262,12634,12743,0,1418,1382,1382,1418,10207,10135,12432,12505,43,10187,10169,12541,12559,0,1051,1008,1008,1051,10050,10049,12348,12347,43,10426,10444,12816,12798,0,1051,1471,1471,1051,10311,10310,12608,12609,43,11676,11673,14045,14048,0,15,1359,1359,15,11453,11449,13746,13752,43,10138,10129,12501,12510,0,44,5,5,44,9976,9966,12267,12275,43,9907,9991,12363,12279,0,1345,1344,1344,1345,9834,9832,12131,12133,43,11675,11677,14049,14047,0,1243,1360,1360,1243,11450,11454,13751,13745,43,10119,10124,12496,12491,0,15,16,16,15,9959,9958,12255,12254,43,11696,11692,14064,14068,0,1361,1243,1243,1361,11474,11467,13768,13769,43,10104,10101,12473,12476,0,5,6,6,5,10822,10825,13120,13123,43,10854,10852,13224,13226,0,6,30,30,6,10666,10664,12963,12964,43,11640,11651,14023,14012,0,6,30,30,6,11880,11881,14179,14178,43,11176,11113,13485,13548,0,1352,1345,1345,1352,11007,11009,13306,13304,43,10126,10121,12493,12498,0,1361,1254,1254,1361,9963,9962,12263,12262,43,11880,11888,14260,14252,0,5,16,16,5,11666,11662,13959,13963,43,9904,9987,12359,12276,0,1343,1342,1342,1343,9822,9831,12128,12121,43,10990,10859,13231,13362,0,53,154,154,53,10817,10819,13116,13114,43,11678,11679,14051,14050,0,1360,15,15,1360,11458,11457,13754,13753,43,11709,11701,14073,14081,0,50,6,6,50,11485,11478,13773,13784,43,10860,10989,13361,13232,0,153,49,49,153,10815,10814,13112,13113,43,10622,10623,12995,12994,0,52,53,53,52,10458,10461,12756,12759,43,9903,9983,12355,12275,0,1341,1338,1338,1341,9830,9828,12127,12129,43,9847,9848,12220,12219,0,5,16,16,5,9720,9719,12018,12017,43,10131,10139,12511,12503,0,6,50,50,6,9967,9977,12274,12266,43,11943,11940,14312,14315,0,30,6,6,30,11862,11860,14159,14161,43,10113,10116,12488,12485,0,1359,15,15,1359,9951,9953,12250,12248,43,11215,11199,13571,13587,0,1357,86,86,1357,11040,11042,13339,13337,43,10321,10381,12753,12693,0,1381,1423,1423,1381,10134,10217,12515,12433,43,9883,9876,12248,12255,0,16,5,5,16,9737,9736,12035,12034,43,10111,10110,12482,12483,0,16,30,30,16,9955,9954,12253,12252,43,11887,11880,14252,14259,0,5,16,16,5,11664,11666,13963,13961,43,11609,12195,14567,13981,0,30,50,50,30,11431,10301,12599,13730,43,9853,9849,12221,12225,0,1009,5,5,1009,9689,9688,11983,11988,43,10151,10142,12514,12523,0,6,50,50,6,9989,9987,12282,12286,43,11680,11678,14050,14052,0,1243,1360,1360,1243,11455,11458,13753,13756,43,12155,11375,13747,14527,0,1506,16,16,1506,11906,11217,13515,14204,43,11692,11690,14062,14064,0,1243,1360,1360,1243,11467,11470,13765,13768,43,10324,10384,12756,12696,0,1387,1434,1434,1387,10154,10227,12524,12451,43,10123,10127,12499,12495,0,1248,1107,1107,1248,9965,9964,12261,12260,43,12044,12012,14384,14416,0,16,30,30,16,11797,11799,14097,14095,43,10951,10931,13303,13323,0,1504,49,49,1504,10763,10754,13053,13060,43,11141,11140,13512,13513,0,1313,1311,1311,1313,10946,10948,13246,13245,43,10125,10118,12490,12497,0,30,1360,1360,30,9957,9956,12257,12256,43,11886,11881,14253,14258,0,5,16,16,5,11658,11657,13954,13953,43,11882,11885,14257,14254,0,5,16,16,5,11654,11653,13950,13949,43,11148,11146,13518,13520,0,1318,1319,1319,1318,10961,10960,13258,13259,43,11940,11944,14316,14312,0,30,6,6,30,11860,11856,14155,14159,43,11665,11663,14035,14037,0,6,5,5,6,11140,11145,13442,13435,43,10102,10103,12475,12474,0,5,6,6,5,10839,10831,13132,13137,43,10122,10119,12491,12494,0,1359,15,15,1359,9961,9959,12254,12258,43,12183,11278,13650,14555,0,91,44,44,91,11960,11961,14259,14257,43,11708,11702,14074,14080,0,44,16,16,44,11486,11479,13780,13783,43,11117,11115,13487,13489,0,1334,1335,1335,1334,11015,11017,13315,13313,43,11147,11149,13521,13519,0,1311,1329,1329,1311,10959,10958,13257,13256,43,10128,10137,12509,12500,0,6,50,50,6,9969,9975,12272,12264,43,11920,11990,14362,14292,0,16,30,30,16,11690,11753,14050,13988,43,11523,11573,13945,13895,0,1394,1434,1434,1394,11332,11385,13684,13631,43,11703,11709,14081,14075,0,30,50,50,30,11480,11485,13784,13779,43,12013,12041,14413,14385,0,5,16,16,5,11798,11794,14092,14096,43,10106,10107,12479,12478,0,50,44,44,50,10835,10838,13135,13134,43,10139,10133,12505,12511,0,50,30,30,50,9977,9973,12268,12274,43,10625,10626,12998,12997,0,30,49,49,30,10463,10462,12763,12762,43,11113,11174,13546,13485,0,1345,1346,1346,1345,11009,11008,13307,13306,43,11134,11081,13453,13506,0,1312,1303,1303,1312,10938,10908,13205,13237,43,11116,11118,13490,13488,0,1345,1346,1346,1345,11013,11012,13311,13310,43,10127,10122,12494,12499,0,1107,1359,1359,1107,9964,9961,12258,12261,43,11596,11449,13821,13968,0,150,51,51,150,11409,11322,13617,13706,43,10116,10111,12483,12488,0,15,16,16,15,9953,9955,12252,12250,43,10105,10100,12472,12477,0,50,44,44,50,10827,10826,13125,13124,43,11690,11691,14063,14062,0,1360,15,15,1360,11470,11469,13766,13765,43,10108,10112,12484,12480,0,5,1248,1248,5,9949,9948,12245,12244,43,11691,11694,14066,14063,0,15,1359,1359,15,11469,11468,13767,13766,43,11103,11104,13476,13475,0,53,1305,1305,53,10922,10926,13225,13223,43,9901,9892,12264,12273,0,1309,1308,1308,1309,9751,9750,12049,12048,43,10121,10123,12495,12493,0,1254,1248,1248,1254,9962,9965,12260,12263,43,11662,11664,14036,14034,0,16,30,30,16,11146,11139,13436,13441,43,11174,11112,13484,13546,0,1342,1343,1343,1342,11008,11005,13302,13307,43,9893,9902,12274,12265,0,1304,1303,1303,1304,9747,9746,12043,12042,43,11118,11117,13489,13490,0,1341,1343,1343,1341,11012,11015,13313,13311,43,11196,11218,13590,13568,0,5,16,16,5,11028,11046,13343,13325,43,11102,11103,13475,13474,0,1304,53,53,1304,10923,10922,13223,13222,43,10855,10860,13232,13227,0,154,153,153,154,10812,10815,13113,13111,43,9991,9964,12336,12363,0,1344,1322,1322,1344,9832,9789,12088,12131,43,10148,10140,12512,12520,0,6,50,50,6,9983,9981,12276,12280,43,11139,11141,13513,13511,0,1318,1319,1319,1318,10947,10946,13245,13244,43,11131,11132,13504,13503,0,1313,1311,1311,1313,10940,10939,13236,13238,43,9963,9990,12362,12335,0,1328,1348,1348,1328,9794,9838,12136,12093,43,11879,11887,14259,14251,0,5,16,16,5,11659,11664,13961,13958,43,10626,10627,12999,12998,0,49,53,53,49,10462,10465,12760,12763,43,9985,9905,12277,12357,0,1333,1335,1335,1333,9821,9823,12120,12118,43,11080,11133,13505,13452,0,1309,1314,1314,1309,10913,10941,13239,13210,43,11663,11660,14032,14035,0,30,50,50,30,11145,11144,13443,13442,43,9958,9985,12357,12330,0,1316,1333,1333,1316,9782,9821,12118,12079,43,11140,11138,13510,13512,0,1320,1321,1321,1320,10948,10949,13247,13246,43,11137,11077,13449,13509,0,1316,1317,1317,1316,10944,10943,13242,13241,43,11661,11662,14034,14033,0,44,16,16,44,11446,11146,13441,13444,43,11668,11659,14031,14040,0,5,44,44,5,11141,11137,13438,13744,43,11146,11147,13519,13518,0,1313,1311,1311,1313,10960,10959,13256,13258,43,11657,11641,14013,14029,0,30,6,6,30,11871,11870,14168,14169,43,10115,10114,12486,12487,0,1243,1254,1254,1243,9950,9947,12246,12249,43,10147,10141,12513,12519,0,16,44,44,16,9979,9978,12279,12278,43,10097,10104,12476,12469,0,5,6,6,5,10828,10822,13123,13127,43,9983,9956,12328,12355,0,1338,1325,1325,1338,9828,9824,12125,12127,43,11126,11124,13496,13498,0,1324,1069,1069,1324,10975,10974,13275,13274,43,11198,11214,13586,13570,0,7,1358,1358,7,11041,11039,13338,13340,43,9858,9859,12231,12230,0,30,16,16,30,9726,9725,12024,12023,43,9876,9890,12262,12248,0,6,87,87,6,9736,9743,12040,12035,43,10830,10829,13201,13202,0,30,16,16,30,10658,10656,12953,12955,43,11133,11131,13503,13505,0,1314,1313,1313,1314,10941,10940,13238,13239,43,11677,11676,14048,14049,0,1360,15,15,1360,11454,11453,13752,13751,43,10831,10830,13202,13203,0,30,16,16,30,10660,10658,12955,12957,43,11944,11938,14310,14316,0,30,6,6,30,11856,11855,14156,14155,43,10117,10115,12487,12489,0,1360,1243,1243,1360,9952,9950,12249,12251,43,9987,9903,12275,12359,0,1342,1341,1341,1342,9831,9830,12129,12128,43,11701,11700,14072,14073,0,1243,1359,1359,1243,11478,11477,13774,13773,43,10858,10855,13227,13230,0,154,153,153,154,10813,10812,13111,13110,43,10103,10099,12471,12475,0,5,6,6,5,10831,10834,13129,13132,43,11904,11919,14291,14276,0,30,6,6,30,11674,11680,13979,13972,43,10109,10108,12480,12481,0,6,5,5,6,9946,9949,12244,12247,43,11705,11703,14075,14077,0,16,30,30,16,11481,11480,13779,13778,43,11989,11921,14293,14361,0,6,5,5,6,11746,11691,13989,14045,43,12117,12118,14490,14489,0,16,5,5,16,11890,11889,14188,14187,43,10141,10150,12522,12513,0,44,5,5,44,9978,9982,12281,12279,43,11095,11096,13468,13467,0,953,1324,1324,953,10954,10951,13250,13253,43,11918,11905,14277,14290,0,5,16,16,5,11679,11675,13973,13976,43,10826,10827,13199,13198,0,30,16,16,30,10648,10647,12944,12943,43,11698,11699,14071,14070,0,1107,1361,1361,1107,11476,11475,13776,13775,43,11702,11704,14076,14074,0,6,5,5,6,11479,11482,13777,13780,43,11353,11351,13723,13725,0,1008,1005,1005,1008,11211,11209,13506,13509,43,11885,11879,14251,14257,0,30,6,6,30,11653,11659,13958,13950,43,11704,11707,14079,14076,0,30,50,50,30,11482,11483,13782,13777,43,11480,11413,13785,13852,0,1364,6,6,1364,11253,11254,13551,13552,43,11706,11705,14077,14078,0,44,16,16,44,11484,11481,13778,13781,43,9986,9897,12269,12358,0,1337,953,953,1337,9826,9780,12081,12123,43,10082,10086,12458,12454,0,16,44,44,16,9930,9927,12226,12229,43,10085,10081,12453,12457,0,50,30,30,50,9940,9943,12241,12239,43,10428,10439,12811,12800,0,6,0,0,6,10293,10295,12592,12590,43,11096,11094,13466,13468,0,1324,1069,1069,1324,10951,10950,13251,13250,43,10080,10083,12455,12452,0,30,16,16,30,9934,9931,12228,12232,43,10142,10145,12517,12514,0,50,30,30,50,9987,9986,12283,12282,43,10578,10577,12949,12950,0,6,30,30,6,10421,10419,12718,12720,43,11214,11200,13572,13586,0,1358,700,700,1358,11039,11025,13324,13338,43,10070,10068,12440,12442,0,700,7,7,700,9917,9919,12216,12212,43,10692,10700,13072,13064,0,16,5,5,16,10521,10514,12811,12820,43,11201,11215,13587,13573,0,92,1357,1357,92,11026,11040,13337,13323,43,11119,11129,13501,13491,0,1303,1304,1304,1303,10937,10936,13235,13234,43,12205,11183,13555,14577,0,87,6,6,87,11982,11981,14280,14279,43,10231,10324,12696,12603,0,1374,1387,1387,1374,10155,10154,12451,12450,43,11342,11343,13715,13714,0,1360,15,15,1360,11160,11159,13456,13455,43,10856,10857,13229,13228,0,154,153,153,154,10818,10821,13119,13117,43,10827,10828,13200,13199,0,30,16,16,30,10647,10650,12947,12944,43,10679,10688,13060,13051,0,151,152,152,151,10804,10807,13102,13105,43,10965,10220,12592,13337,0,1506,30,30,1506,10775,10291,12586,13073,43,10437,10428,12800,12809,0,739,5,5,739,10290,10293,12590,12587,43,10700,10693,13065,13072,0,16,5,5,16,10514,10513,12812,12811,43,11185,12208,14580,13557,0,16,161,161,16,11020,11978,14275,13318,43,12120,12116,14488,14492,0,50,6,6,50,11875,11873,14171,14173,43,10069,10071,12443,12441,0,86,92,92,86,9918,9916,12213,12217,43,11878,11869,14241,14250,0,152,151,151,152,11936,11935,14236,14235,43,10068,10072,12444,12440,0,700,1358,1358,700,9919,9923,12220,12216,43,11693,11696,14068,14065,0,1254,1361,1361,1254,11471,11474,13769,13772,43,10220,10437,12809,12592,0,6,739,739,6,10291,10290,12587,12586,43,11093,11095,13467,13465,0,1317,953,953,1317,10956,10954,13253,13255,43,9892,9895,12267,12264,0,1308,1305,1305,1308,9750,9748,12047,12049,43,11694,11697,14069,14066,0,1359,1107,1107,1359,11468,11473,13770,13767,43,10129,10128,12500,12501,0,1361,1107,1107,1361,9966,9969,12264,12267,43,10065,10067,12439,12437,0,1250,92,92,1250,9915,9921,12218,12214,43,10859,10856,13228,13231,0,154,153,153,154,10819,10818,13117,13116,43,10140,10146,12518,12512,0,50,30,30,50,9981,9980,12277,12276,43,9891,9889,12261,12263,0,87,91,91,87,9742,9740,12037,12041,43,11339,11341,13713,13711,0,1243,1360,1360,1243,11152,11156,13453,13447,43,10100,10096,12468,12472,0,50,44,44,50,10826,10830,13128,13125,43,10152,10155,12527,12524,0,1107,1359,1359,1107,9993,9992,12289,12288,43,10857,10858,13230,13229,0,154,153,153,154,10821,10813,13110,13119,43,10565,10566,12938,12937,0,6,30,30,6,10402,10403,12701,12700,43,12039,12018,14390,14411,0,16,30,30,16,11792,11780,14079,14091,43,10564,10565,12937,12936,0,6,30,30,6,10401,10402,12700,12699,43,11463,11455,13827,13835,0,1393,1382,1382,1393,11334,11333,13630,13629,43,11695,11693,14065,14067,0,1248,1254,1254,1248,11472,11471,13772,13771,43,11814,11813,14185,14186,0,50,53,53,50,11591,11590,13889,13888,43,11077,11076,13448,13449,0,1317,953,953,1317,10943,10942,13243,13242,43,11813,11812,14184,14185,0,53,52,52,53,11590,11589,13890,13889,43,10918,10917,13289,13290,0,30,16,16,30,10767,10766,13065,13064,43,10124,10125,12497,12496,0,16,30,30,16,9958,9957,12256,12255,43,10566,10567,12939,12938,0,6,30,30,6,10403,10404,12702,12701,43,11697,11695,14067,14069,0,1107,1248,1248,1107,11473,11472,13771,13770,43,9890,9891,12263,12262,0,87,91,91,87,9743,9742,12041,12040,43,12189,12190,14562,14561,0,30,6,6,30,10867,9734,12031,13162,43,10439,10431,12803,12811,0,0,5,5,0,10295,10285,12580,12592,43,10053,10055,12427,12425,0,706,1355,1355,706,9905,9902,12201,12204,43,10156,10154,12526,12528,0,1254,1248,1248,1254,9994,9995,12292,12293,43,9894,9893,12265,12266,0,53,1304,1304,53,9744,9747,12042,12045,43,10863,10746,13118,13235,0,1498,1497,1497,1498,10681,10711,13010,12980,43,10088,10079,12451,12460,0,163,30,30,163,9945,9941,12238,12243,43,10823,10819,13191,13195,0,5,6,6,5,10667,10633,12932,12965,43,11183,12209,14581,13555,0,6,0,0,6,11981,11979,14278,14280,43,10110,10117,12489,12482,0,30,1360,1360,30,9954,9952,12251,12253,43,10687,10680,13052,13059,0,151,152,152,151,10799,10802,13099,13096,43,11325,11326,13698,13697,0,44,16,16,44,11143,11146,13441,13444,43,10821,10816,13188,13193,0,6,30,30,6,10642,10644,12941,12939,43,11111,11102,13474,13483,0,1303,1304,1304,1303,10924,10923,13222,13221,43,11105,11173,13545,13477,0,953,1337,1337,953,10962,10967,13266,13263,43,11700,11706,14078,14072,0,5,44,44,5,11477,11484,13781,13774,43,11107,11105,13477,13479,0,1317,953,953,1317,10963,10962,13263,13262,43,10153,10156,12528,12525,0,1361,1254,1254,1361,9990,9994,12293,12291,43,10079,10085,12457,12451,0,6,50,50,6,9941,9940,12239,12238,43,10155,10158,12530,12527,0,1359,15,15,1359,9992,9997,12294,12289,43,9867,9858,12230,12239,0,50,30,30,50,9728,9726,12023,12026,43,10817,10820,13192,13189,0,6,30,30,6,10635,10638,12933,12936,43,10112,10113,12485,12484,0,1248,1359,1359,1248,9948,9951,12248,12245,43,11206,11212,13584,13578,0,15,706,706,15,11031,11036,13331,13328,43,10816,10822,13194,13188,0,6,30,30,6,10644,10668,12966,12941,43,10262,10321,12693,12634,0,1382,1381,1381,1382,10135,10134,12433,12432,43,11173,11106,13478,13545,0,1324,1069,1069,1324,10967,10966,13267,13266,43,10829,10825,13197,13201,0,30,16,16,30,10656,10654,12949,12953,43,10381,10231,12603,12753,0,1423,30,30,1423,10217,10155,12450,12515,43,10157,10153,12525,12529,0,1243,1361,1361,1243,9991,9990,12291,12290,43,11341,11340,13712,13713,0,1360,15,15,1360,11156,11155,13454,13453,43,11232,11222,13594,13604,0,5,16,16,5,11052,11051,13348,13347,43,11194,11196,13568,13566,0,7,700,700,7,11021,11028,13325,13322,43,10054,10052,12424,12426,0,674,1264,1264,674,9903,9904,12205,12200,43,11223,11233,13605,13595,0,30,6,6,30,11050,11049,13350,13349,43,11370,11634,14006,13742,0,1008,1471,1471,1008,11208,11441,13739,13507,43,11318,11317,13689,13690,0,44,16,16,44,11134,11131,13428,13431,43,11707,11698,14070,14079,0,50,6,6,50,11483,11476,13775,13782,43,10114,10109,12481,12486,0,1254,6,6,1254,9947,9946,12247,12246,43,10083,10082,12454,12455,0,30,16,16,30,9931,9930,12229,12228,43,10071,10065,12437,12443,0,86,1245,1245,86,9916,9915,12214,12213,43,10623,10624,12996,12995,0,53,50,50,53,10461,10460,12757,12756,43,11189,10008,12380,13561,0,5,6,6,5,10843,10842,13141,13140,43,11965,11968,14340,14337,0,16,30,30,16,11714,11713,14012,14011,43,11613,11616,13988,13985,0,1028,1020,1020,1028,11444,11436,13733,13742,43,9896,9986,12358,12268,0,1324,1337,1337,1324,9827,9826,12123,12122,43,10056,10062,12434,12428,0,86,1245,1245,86,9913,9910,12209,12210,43,11062,11063,13435,13434,0,16,30,30,16,10900,10856,13153,13197,43,11937,11936,14308,14309,0,30,6,6,30,11848,11842,14141,14148,43,11971,11967,14339,14343,0,5,16,16,5,11717,11711,14006,14014,43,11611,11609,13981,13983,0,50,6,6,50,11432,11431,13730,13729,43,10063,10057,12429,12435,0,700,7,7,700,9911,9912,12211,12208,43,11672,11674,14046,14044,0,1248,1254,1254,1248,11452,11451,13750,13749,43,11959,11961,14333,14331,0,6,5,5,6,11718,11712,14013,14017,43,11208,11204,13576,13580,0,1355,1356,1356,1355,11038,11032,13327,13335,43,11669,11668,14040,14041,0,1107,1361,1361,1107,11148,11141,13744,13445,43,11046,11022,13394,13418,0,50,6,6,50,10893,10881,13179,13191,43,11966,11963,14335,14338,0,16,30,30,16,11710,11709,14008,14007,43,11327,11324,13696,13699,0,30,50,50,30,11145,11144,13443,13442,43,10081,10093,12465,12453,0,30,49,49,30,9943,9942,12240,12241,43,11958,11960,14332,14330,0,6,5,5,6,11716,11705,14004,14015,43,11932,11930,14302,14304,0,30,6,6,30,11748,11757,14056,14049,43,10038,10039,12411,12410,0,30,16,16,30,9889,9888,12187,12186,43,11931,11929,14301,14303,0,30,6,6,30,11736,11754,14053,14037,43,11615,11612,13984,13987,0,1051,1049,1049,1051,11442,11440,13737,13740,43,10453,10958,13330,12825,0,6,0,0,6,10748,10771,13068,13043,43,9906,9908,12280,12278,0,1335,1334,1334,1335,9839,9837,12135,12137,43,11666,11667,14039,14038,0,1243,1359,1359,1243,11142,11147,13446,13439,43,11670,11672,14044,14042,0,1107,1248,1248,1107,11448,11452,13749,13747,43,10788,10789,13161,13160,0,6,30,30,6,10593,10596,12891,12894,43,11957,11959,14331,14329,0,6,5,5,6,11704,11718,14017,14005,43,10796,10794,13166,13168,0,30,16,16,30,10604,10600,12895,12901,43,11317,11315,13687,13689,0,16,30,30,16,11131,11130,13429,13428,43,11610,11611,13983,13982,0,1018,1017,1017,1018,11435,11432,13729,13734,43,10037,10036,12408,12409,0,30,16,16,30,9887,9886,12185,12184,43,10797,10795,13167,13169,0,30,16,16,30,10602,10591,12888,12899,43,11935,11932,14304,14307,0,30,6,6,30,11749,11748,14049,14048,43,9908,9909,12281,12280,0,1343,1341,1341,1343,9837,9835,12132,12135,43,9916,9914,12286,12288,0,953,1317,1317,953,9793,9795,12092,12090,43,9921,9918,12290,12293,0,1308,1305,1305,1308,9752,9755,12050,12053,43,11753,11760,14132,14125,0,16,30,30,16,11531,11530,13829,13828,43,10673,10674,13046,13045,0,1370,1373,1373,1370,10506,10507,12804,12805,43,10798,10796,13168,13170,0,16,5,5,16,10590,10604,12901,12889,43,10035,10034,12406,12407,0,30,16,16,30,9885,9884,12183,12182,43,12068,11939,14311,14440,0,1501,1502,1502,1501,11817,11847,14145,14115,43,10433,10195,12567,12805,0,5,6,6,5,10286,10064,12365,12585,43,11316,11319,13691,13688,0,30,50,50,30,11132,11133,13432,13427,43,10064,10070,12442,12436,0,700,7,7,700,9914,9917,12212,12215,43,11674,11671,14043,14046,0,1254,1361,1361,1254,11451,11447,13748,13750,43,11614,11613,13985,13986,0,1030,1028,1028,1030,11439,11444,13742,13738,43,11205,11209,13581,13577,0,681,1265,1265,681,11029,11037,13336,13330,43,9950,9940,12312,12322,0,1304,1303,1303,1304,9775,9774,12073,12072,43,11313,11312,13684,13685,0,1243,1359,1359,1243,11128,11127,13424,13423,43,10795,10798,13170,13167,0,16,5,5,16,10591,10590,12889,12888,43,11962,11958,14330,14334,0,30,6,6,30,11708,11716,14015,14009,43,10819,10818,13190,13191,0,6,30,30,6,10633,10629,12930,12932,43,11964,11965,14337,14336,0,5,16,16,5,11715,11714,14011,14010,43,11197,11195,13567,13569,0,92,1250,1250,92,11027,11024,13319,13326,43,9909,9907,12279,12281,0,1346,1345,1345,1346,9835,9834,12133,12132,43,11638,11646,14018,14010,0,6,5,5,6,11868,11867,14165,14164,43,11929,11933,14305,14301,0,30,6,6,30,11754,11743,14042,14053,43,9969,9931,12303,12341,0,1318,1309,1309,1318,9799,9767,12064,12097,43,10674,10672,13044,13046,0,1476,1477,1477,1476,10507,10509,12807,12804,43,10334,10269,12641,12706,0,1394,1382,1382,1394,10175,10174,12471,12470,43,10793,10797,13169,13165,0,30,16,16,30,10594,10602,12899,12893,43,9932,9970,12342,12304,0,1303,1329,1329,1303,9762,9797,12094,12059,43,10815,10821,13193,13187,0,6,30,30,6,10640,10642,12939,12937,43,11456,11463,13835,13828,0,30,1393,1393,30,11327,11334,13629,13624,43,11408,11467,13839,13780,0,50,1087,1087,50,11222,11234,13532,13520,43,10563,10564,12936,12935,0,6,30,30,6,10399,10401,12699,12698,43,11612,11614,13986,13984,0,1049,1030,1030,1049,11440,11439,13738,13737,43,9917,9916,12288,12289,0,1324,953,953,1324,9791,9793,12090,12086,43,11875,11878,14250,14247,0,155,151,151,155,11923,11936,14235,14224,43,11673,11670,14042,14045,0,1359,1107,1107,1359,11449,11448,13747,13746,43,10058,10056,12428,12430,0,86,92,92,86,9898,9913,12210,12199,43,11227,11241,13613,13599,0,1358,700,700,1358,11059,11058,13357,13356,43,10820,10815,13187,13192,0,16,5,5,16,10638,10640,12937,12933,43,11179,11158,13530,13551,0,1348,1331,1331,1348,11016,10981,13278,13314,43,11207,11205,13577,13579,0,1264,674,674,1264,11030,11029,13330,13329,43,11195,11203,13575,13567,0,1245,86,86,1245,11024,11023,13320,13319,43,11616,11610,13982,13988,0,1020,1018,1018,1020,11436,11435,13734,13733,43,10790,10787,13159,13162,0,5,6,6,5,10598,10597,12898,12897,43,10057,10059,12431,12429,0,700,7,7,700,9912,9901,12196,12211,43,11273,11258,13630,13645,0,44,16,16,44,11096,11085,13386,13394,43,9941,9951,12323,12313,0,1309,1308,1308,1309,9769,9768,12069,12068,43,9915,9917,12289,12287,0,1069,1324,1324,1069,9788,9791,12086,12089,43,9919,9920,12292,12291,0,53,1304,1304,53,9757,9759,12056,12054,43,9871,9853,12225,12243,0,1092,1009,1009,1092,9721,9689,11988,12019,43,10870,10896,13268,13242,0,49,1069,1069,49,10710,10709,13008,13007,43,11344,11342,13714,13716,0,1243,1360,1360,1243,11157,11160,13455,13458,43,11816,11815,14187,14188,0,49,30,30,49,11593,11596,13891,13894,43,10897,10871,13243,13269,0,719,0,0,719,10700,10699,13000,12999,43,11870,11877,14249,14242,0,152,151,151,152,11932,11929,14228,14231,43,10154,10152,12524,12526,0,1248,1107,1107,1248,9995,9993,12288,12292,43,11499,11432,13804,13871,0,1372,1076,1076,1372,11273,11274,13571,13572,43,10469,10478,12850,12841,0,44,5,5,44,9978,9982,12613,12279,43,10479,10470,12842,12851,0,6,50,50,6,9989,9987,12282,12286,43,11199,11198,13570,13571,0,86,7,7,86,11042,11041,13340,13339,43,12208,11187,13559,14580,0,161,30,30,161,11978,11977,14276,14275,43,11202,11194,13566,13574,0,7,700,700,7,11022,11021,13322,13321,43,11312,11318,13690,13684,0,5,44,44,5,11127,11134,13431,13424,43,11817,11816,14188,14189,0,53,49,49,53,11594,11593,13894,13893,43,11086,11088,13460,13458,0,1345,1346,1346,1345,10997,10996,13295,13294,43,11292,11293,13665,13664,0,30,16,16,30,11114,11113,13412,13411,43,10150,10151,12523,12522,0,1361,1107,1107,1361,9982,9989,12286,12281,43,10028,10030,12402,12400,0,706,15,15,706,9876,9875,12174,12173,43,11876,11875,14247,14248,0,152,151,151,152,11924,11923,14224,14223,43,11757,11756,14128,14129,0,30,6,6,30,11535,11534,13832,13833,43,11960,11957,14329,14332,0,30,6,6,30,11705,11704,14005,14004,43,11135,11162,13534,13507,0,1325,1338,1338,1325,10986,10990,13289,13287,43,11967,11966,14338,14339,0,5,16,16,5,11711,11710,14007,14006,43,10671,10673,13045,13043,0,1370,1373,1373,1370,10508,10506,12805,12806,43,10066,10064,12436,12438,0,700,7,7,700,9920,9914,12215,12219,43,11190,12205,14577,13562,0,50,87,87,50,11975,11982,14279,14274,43,11345,11344,13716,13717,0,1254,1243,1243,1254,11161,11157,13458,13460,43,12003,11935,14307,14375,0,16,30,30,16,11750,11749,14048,14047,43,11758,11757,14129,14130,0,30,6,6,30,11536,11535,13833,13834,43,11467,11353,13725,13839,0,1087,6,6,1087,11234,11211,13509,13532,43,11413,11540,13912,13785,0,1072,1402,1402,1072,11254,11345,13644,13551,43,11204,11206,13578,13576,0,1355,706,706,1355,11032,11031,13328,13327,43,10144,10143,12515,12516,0,16,44,44,16,9985,9984,12285,12284,43,11159,11180,13552,13531,0,1330,1344,1344,1330,10977,11011,13308,13272,43,11933,11934,14306,14305,0,30,6,6,30,11743,11742,14043,14042,43,11642,11638,14010,14014,0,30,6,6,30,11869,11868,14164,14167,43,10800,10730,13102,13172,0,30,16,16,30,10622,10559,12857,12919,43,11236,11232,13604,13608,0,681,1265,1265,681,11061,11052,13347,13360,43,10789,10792,13164,13161,0,30,16,16,30,10596,10595,12892,12891,43,11905,11903,14275,14277,0,5,16,16,5,11675,11668,13966,13973,43,11088,11087,13459,13460,0,1341,1343,1343,1341,10996,10999,13297,13295,43,11343,11346,13718,13715,0,15,1359,1359,15,11159,11158,13457,13456,43,11643,11639,14011,14015,0,5,6,6,5,11877,11876,14177,14176,43,10146,10144,12516,12518,0,30,16,16,30,9980,9985,12284,12277,43,9859,9847,12219,12231,0,30,6,6,30,9725,9720,12017,12024,43,11258,11268,13640,13630,0,5,44,44,5,11085,11088,13383,13386,43,12110,12115,14487,14482,0,30,16,16,30,11883,11884,14182,14181,43,11314,11316,13688,13686,0,6,5,5,6,11129,11132,13427,13430,43,9918,9919,12291,12290,0,1305,53,53,1305,9755,9757,12054,12050,43,10093,10080,12452,12465,0,49,16,16,49,9942,9934,12232,12240,43,11224,11242,13614,13596,0,30,6,6,30,11054,11053,13354,13353,43,12116,12109,14481,14488,0,30,6,6,30,11873,11872,14170,14171,43,11287,11289,13661,13659,0,44,50,50,44,11957,11968,14267,14256,43,10270,10267,12639,12642,0,1377,30,30,1377,10168,10167,12466,12465,43,10955,10456,12828,13327,0,44,5,5,44,10769,10736,13034,13067,43,10294,10354,12726,12666,0,1364,1411,1411,1364,10094,10197,12495,12393,43,12209,11188,13560,14581,0,0,5,5,0,11979,11972,14270,14278,43,11243,11225,13597,13615,0,5,16,16,5,11056,11055,13352,13351,43,10384,10334,12706,12756,0,1434,1394,1394,1434,10227,10175,12470,12524,43,11349,11348,13720,13721,0,5,6,6,5,11164,11163,13462,13461,43,11903,11904,14276,14275,0,16,6,6,16,11668,11674,13972,13966,43,11229,11231,13603,13601,0,15,706,706,15,11065,11068,13365,13362,43,10265,10264,12636,12637,0,51,30,30,51,10164,10162,12459,12463,43,11289,11288,13660,13661,0,44,50,50,44,11968,11967,14264,14267,43,11290,11291,13663,13662,0,5,6,6,5,11106,11105,13406,13405,43,11162,11082,13454,13534,0,1338,1341,1341,1338,10990,10992,13291,13289,43,9973,9927,12299,12345,0,1330,1069,1069,1330,9805,9804,12105,12104,43,10089,10095,12467,12461,0,175,53,53,175,9936,9944,12242,12233,43,11346,11347,13719,13718,0,1359,1248,1248,1359,11158,11162,13459,13457,43,11765,11766,14138,14137,0,30,6,6,30,11546,11548,13847,13845,43,11764,11765,14137,14136,0,30,6,6,30,11544,11546,13845,13843,43,11990,11992,14364,14362,0,30,6,6,30,11753,11752,14051,14050,43,10471,10477,12849,12843,0,44,5,5,44,10315,9988,12287,12285,43,11763,11764,14136,14135,0,30,6,6,30,11542,11544,13843,13841,43,11027,11026,13398,13399,0,16,5,5,16,10885,10884,13183,13182,43,9889,9888,12260,12261,0,87,91,91,87,9740,9739,12038,12037,43,11762,11763,14135,14134,0,30,6,6,30,11538,11542,13841,13839,43,9850,9871,12243,12222,0,16,1092,1092,16,9722,9721,12019,12020,43,10731,10799,13171,13103,0,5,6,6,5,10560,10615,12914,12858,43,12022,12015,14387,14394,0,16,30,30,16,11784,11783,14082,14081,43,11761,11762,14134,14133,0,30,6,6,30,11539,11538,13839,13838,43,10927,10951,13323,13299,0,5,44,44,5,10758,10763,13060,13057,43,11996,11993,14365,14368,0,30,6,6,30,11741,11740,14039,14038,43,10025,10031,12403,12397,0,1265,1264,1264,1265,9873,9874,12175,12168,43,9946,9944,12316,12318,0,953,1317,1317,953,9817,9819,12116,12114,43,11294,11290,13662,13666,0,1248,5,5,1248,11107,11106,13405,13404,43,10224,10192,12564,12596,0,50,30,30,50,10063,10058,12356,12361,43,9888,12191,14563,12260,0,87,91,91,87,9739,9741,12039,12038,43,10267,10268,12640,12639,0,1377,30,30,1377,10167,10171,12468,12466,43,10791,10790,13162,13163,0,16,5,5,16,10599,10598,12897,12896,43,9945,9947,12319,12317,0,1069,1324,1324,1069,9812,9815,12110,12113,43,11055,11062,13434,13427,0,5,16,16,5,10901,10900,13197,13196,43,12190,10999,13371,14562,0,6,30,30,6,9734,9696,11995,12031,43,9920,9910,12282,12292,0,1304,1303,1303,1304,9759,9758,12057,12056,43,11934,12004,14376,14306,0,6,5,5,6,11742,11745,14040,14043,43,11994,11991,14363,14366,0,30,6,6,30,11756,11747,14044,14054,43,11767,11768,14140,14139,0,30,6,6,30,11550,11552,13851,13849,43,10704,10707,13079,13076,0,6,30,30,6,10520,10523,12818,12821,43,10468,10474,12846,12840,0,50,30,30,50,9981,9980,12277,12276,43,10762,10897,13269,13134,0,5,719,719,5,10567,10700,12999,12866,43,12016,12022,14394,14388,0,16,30,30,16,11777,11784,14081,14076,43,9911,9921,12293,12283,0,1309,1308,1308,1309,9753,9752,12053,12052,43,11138,11089,13461,13510,0,1321,1303,1303,1321,10949,10921,13218,13247,43,12048,12047,14419,14420,0,153,154,154,153,11943,11952,14250,14242,43,10034,10028,12400,12406,0,16,5,5,16,9884,9876,12173,12183,43,10792,10793,13165,13164,0,16,5,5,16,10595,10594,12893,12892,43,11142,11093,13465,13514,0,1328,1317,1317,1328,10957,10956,13255,13254,43,9947,9946,12318,12319,0,1324,953,953,1324,9815,9817,12114,12110,43,10751,10911,13283,13123,0,30,1066,1066,30,10734,10733,13032,13031,43,11348,11345,13717,13720,0,6,1254,1254,6,11163,11161,13460,13462,43,11759,11758,14130,14131,0,30,6,6,30,11537,11536,13834,13835,43,10264,10263,12635,12636,0,51,30,30,51,10162,10161,12460,12459,43,10824,10817,13189,13196,0,6,30,30,6,10632,10635,12936,12927,43,12049,12180,14552,14421,0,154,53,53,154,11949,11947,14246,14248,43,11230,11228,13600,13602,0,681,1265,1265,681,11067,11064,13363,13366,43,10849,10850,13222,13221,0,16,5,5,16,10662,10661,12960,12959,43,11094,11143,13515,13466,0,1069,1322,1322,1069,10950,10953,13248,13251,43,11760,11759,14131,14132,0,5,16,16,5,11530,11537,13835,13829,43,10958,10918,13290,13330,0,44,16,16,44,10771,10767,13064,13068,43,11991,11989,14361,14363,0,30,6,6,30,11747,11746,14045,14044,43,11992,11995,14367,14364,0,30,6,6,30,11752,11759,14057,14051,43,10095,10088,12460,12467,0,53,163,163,53,9944,9945,12243,12242,43,10061,10063,12435,12433,0,700,7,7,700,9895,9911,12208,12194,43,11321,11313,13685,13693,0,50,6,6,50,11135,11128,13423,13434,43,11993,11994,14366,14365,0,30,6,6,30,11740,11756,14054,14039,43,10143,10149,12521,12515,0,44,5,5,44,9984,9988,12287,12285,43,11861,11843,14215,14233,0,1478,52,52,1478,11639,11630,13928,13937,43,11240,11226,13598,13612,0,92,1357,1357,92,11057,11060,13355,13358,43,11320,11314,13686,13692,0,44,16,16,44,11136,11129,13430,13433,43,11087,11085,13457,13459,0,1334,1335,1335,1334,10999,11001,13299,13297,43,11029,11027,13399,13401,0,16,30,30,16,10887,10885,13182,13185,43,11112,11114,13486,13484,0,1334,1335,1335,1334,11005,11004,13303,13302,43,10470,10473,12845,12842,0,50,30,30,50,9987,9986,12283,12282,43,10794,10791,13163,13166,0,30,16,16,30,10600,10599,12896,12895,43,10818,10824,13196,13190,0,6,30,30,6,10629,10632,12927,12930,43,9884,9883,12255,12256,0,30,16,16,30,9687,9737,12034,11984,43,11452,11477,13849,13824,0,30,1396,1396,30,11338,11336,13633,13635,43,10896,10761,13133,13268,0,1069,16,16,1069,10709,10572,12870,13008,43,11090,11139,13511,13462,0,1309,1318,1318,1309,10917,10947,13244,13212,43,10476,10468,12840,12848,0,6,50,50,6,9983,9981,12276,12280,43,10145,10147,12519,12517,0,5,6,6,5,9986,9979,12278,12283,43,11756,11755,14127,14128,0,30,6,6,30,11534,11533,13831,13832,43,11766,11767,14139,14138,0,30,6,6,30,11548,11550,13849,13847,43,10475,10469,12841,12847,0,16,44,44,16,9979,9978,12279,12278,43,9843,9867,12239,12215,0,6,50,50,6,9716,9728,12026,12013,43,12179,12050,14422,14551,0,49,153,153,49,11945,11946,14244,14243,43,10850,10851,13223,13222,0,16,5,5,16,10661,10663,12961,12960,43,11235,11229,13601,13607,0,15,706,706,15,11066,11065,13362,13361,43,10501,10500,12872,12873,0,15,1360,1360,15,10338,10337,12636,12635,43,10745,10813,13185,13117,0,30,16,16,30,10620,10619,12916,12915,43,12060,12101,14473,14432,0,49,1066,1066,49,11840,11865,14162,14139,43,10062,10060,12432,12434,0,1250,92,92,1250,9910,9894,12195,12209,43,11231,11230,13602,13603,0,706,681,681,706,11068,11067,13366,13365,43,10750,10753,13125,13122,0,6,30,30,6,10730,10732,13029,13027,43,10761,10704,13076,13133,0,30,16,16,30,10572,10520,12821,12870,43,10149,10148,12520,12521,0,1359,1243,1243,1359,9988,9983,12280,12287,43,11315,11321,13693,13687,0,30,50,50,30,11130,11135,13434,13429,43,11200,11202,13574,13572,0,7,700,700,7,11025,11022,13321,13324,43,12107,12108,14480,14479,0,16,30,30,16,11898,11897,14196,14195,43,10091,10090,12462,12463,0,44,163,163,44,9937,9935,12234,12235,43,10472,10471,12843,12844,0,16,44,44,16,9985,10315,12285,12284,43,11477,11454,13826,13849,0,1396,1377,1377,1396,11336,11330,13627,13633,43,10006,11186,13558,12378,0,30,16,16,30,9861,9860,12159,12158,43,11755,11754,14126,14127,0,30,6,6,30,11533,11532,13830,13831,43,10912,10748,13120,13284,0,952,6,6,952,10725,10724,13025,13024,43,11228,11234,13606,13600,0,1264,1265,1265,1264,11064,11063,13364,13363,43,10930,10950,13322,13302,0,50,1091,1091,50,10744,10760,13059,13042,43,10753,10749,13121,13125,0,6,30,30,6,10732,10716,13014,13029,43,11083,11084,13456,13455,0,1334,1335,1335,1334,10985,10984,13283,13282,43,11165,11075,13447,13537,0,1337,1324,1324,1337,10988,10987,13286,13285,43,11203,11201,13573,13575,0,92,86,86,92,11023,11026,13323,13320,43,10498,10499,12871,12870,0,15,1360,1360,15,10335,10334,12633,12632,43,10031,10029,12401,12403,0,1265,681,681,1265,9874,9877,12172,12175,43,10739,10741,13113,13111,0,6,30,30,6,10624,10605,12906,12921,43,10039,10027,12399,12411,0,16,5,5,16,9888,9878,12177,12187,43,10744,10743,13115,13116,0,6,30,30,6,10611,10614,12909,12912,43,10814,10744,13116,13186,0,5,6,6,5,10612,10611,12912,12911,43,10747,10751,13123,13119,0,6,30,30,6,10719,10734,13031,13015,43,10742,10745,13117,13114,0,6,30,30,6,10617,10620,12915,12918,43,11288,11280,13652,13660,0,44,50,50,44,11967,11966,14265,14264,43,10828,10849,13221,13200,0,30,16,16,30,10650,10662,12959,12947,43,10950,10928,13300,13322,0,49,16,16,49,10760,10759,13056,13059,43,11268,11264,13636,13640,0,44,16,16,44,11088,11090,13387,13383,43,11347,11349,13721,13719,0,1248,5,5,1248,11162,11164,13461,13459,43,11963,11962,14334,14335,0,30,6,6,30,11709,11708,14009,14008,43,10989,10677,13049,13361,0,49,151,151,49,10814,10808,13107,13112,43,11961,11964,14336,14333,0,6,5,5,6,11712,11715,14010,14013,43,10354,10247,12619,12726,0,1411,1076,1076,1411,10197,10115,12412,12495,43,11265,11262,13634,13637,0,16,30,30,16,11089,11093,13391,13388,43,11263,11267,13639,13635,0,30,50,50,30,11102,11100,13397,13400,43,10090,10089,12461,12462,0,161,162,162,161,9935,9936,12233,12234,43,10853,10831,13203,13225,0,30,16,16,30,10665,10660,12957,12962,43,10741,10738,13110,13113,0,6,30,30,6,10605,10608,12903,12906,43,10196,10351,12723,12568,0,1071,1402,1402,1071,10067,10187,12484,12362,43,10029,10035,12407,12401,0,6,30,30,6,9877,9885,12182,12172,43,12102,12061,14433,14474,0,952,0,0,952,11858,11830,14131,14153,43,11754,11753,14125,14126,0,30,6,6,30,11532,11531,13828,13830,43,10707,10762,13134,13079,0,5,6,6,5,10523,10567,12866,12818,43,12020,12021,14393,14392,0,16,30,30,16,11789,11791,14088,14086,43,9990,9906,12278,12362,0,1348,1335,1335,1348,9838,9839,12137,12136,43,10746,10747,13119,13118,0,6,30,30,6,10711,10719,13015,13010,43,10999,9841,12213,13371,0,1014,1002,1002,1014,9696,9695,11996,11995,43,12019,12020,14392,14391,0,16,30,30,16,11787,11789,14086,14084,43,11253,11251,13623,13625,0,92,86,86,92,11075,11078,13375,13372,43,10511,10519,12891,12883,0,6,50,50,6,10345,10354,12653,12644,43,10488,10490,12862,12860,0,1360,1243,1243,1360,10325,10324,12625,12624,43,10738,10740,13112,13110,0,6,30,30,6,10608,10626,12925,12903,43,10026,10038,12410,12398,0,6,30,30,6,9879,9889,12186,12176,43,12018,12017,14389,14390,0,16,30,30,16,11780,11778,14075,14079,43,10118,10120,12492,12490,0,1360,1243,1243,1360,9956,9960,12259,12257,43,11277,11271,13643,13649,0,53,175,175,53,11103,11095,13392,13401,43,11158,11123,13495,13530,0,1331,1317,1317,1331,10981,10980,13279,13278,43,9978,9976,12348,12350,0,1313,1318,1318,1313,9809,9808,12107,12106,43,11003,10004,12376,13375,0,0,6,6,0,10851,10853,13150,13148,43,10678,10990,13362,13050,0,152,53,53,152,10803,10817,13114,13101,43,12141,12117,14489,14513,0,44,5,5,44,11894,11890,14187,14191,43,10487,10485,12857,12859,0,1360,1243,1243,1360,10322,10317,12616,12621,43,9849,9884,12256,12221,0,30,16,16,30,9688,9687,11984,11983,43,10496,10494,12866,12868,0,1254,1248,1248,1254,10330,10333,12628,12631,43,11270,11277,13649,13642,0,163,53,53,163,11104,11103,13401,13402,43,9975,9977,12349,12347,0,1329,1311,1311,1329,9811,9810,12108,12109,43,10495,10498,12870,12867,0,1359,15,15,1359,10332,10335,12632,12629,43,10502,10506,12878,12874,0,1243,1361,1361,1243,10336,10341,12640,12637,43,11154,11119,13491,13526,0,1329,1303,1303,1329,10973,10937,13234,13271,43,10748,10754,13126,13120,0,6,30,30,6,10724,10727,13022,13025,43,10993,10097,12469,13365,0,91,5,5,91,10829,10828,13127,13126,43,10060,10042,12414,12432,0,6,30,30,6,9894,9897,12192,12195,43,11246,11248,13620,13618,0,7,700,700,7,11073,11080,13377,13374,43,10518,10509,12881,12890,0,44,5,5,44,10355,10344,12645,12652,43,10508,10517,12889,12880,0,6,50,50,6,10347,10353,12650,12642,43,10773,10776,13148,13145,0,30,16,16,30,10580,10579,12876,12875,43,11069,11055,13427,13441,0,87,6,6,87,10904,10901,13196,13203,43,11255,11254,13626,13627,0,1357,1358,1358,1357,11082,11081,13380,13379,43,11250,11252,13624,13622,0,7,700,700,7,11077,11074,13373,13376,43,9977,9978,12350,12349,0,1311,1313,1313,1311,9810,9809,12106,12108,43,10494,10495,12867,12866,0,1248,1359,1359,1248,10333,10332,12629,12628,43,10478,10479,12851,12850,0,1361,1107,1107,1361,9982,9989,12286,12613,43,10004,11000,13372,12376,0,6,87,87,6,10853,10852,13151,13150,43,10516,10510,12882,12888,0,44,5,5,44,10352,10346,12643,12651,43,11242,11244,13616,13614,0,92,1250,1250,92,11053,11069,13368,13354,43,10506,10503,12875,12878,0,1361,1254,1254,1361,10341,10340,12641,12640,43,11375,11408,13780,13747,0,30,50,50,30,11217,11222,13520,13515,43,9968,9967,12339,12340,0,1311,1313,1313,1311,9796,9798,12096,12095,43,10481,10484,12856,12853,0,1361,1254,1254,1361,10316,10320,12619,12617,43,10499,10497,12869,12871,0,1360,1243,1243,1360,10334,10331,12630,12633,43,11271,11272,13644,13643,0,162,161,161,162,11095,11094,13393,13392,43,11278,11282,13654,13650,0,44,50,50,44,11961,11958,14255,14259,43,10994,10098,12470,13366,0,87,50,50,87,10833,10836,13133,13130,43,10490,10491,12863,12862,0,1243,1254,1254,1243,10324,10328,12627,12625,43,10500,10502,12874,12872,0,1360,1243,1243,1360,10337,10336,12637,12636,43,10492,10489,12861,12864,0,1359,15,15,1359,10327,10326,12623,12622,43,10728,10731,13103,13100,0,16,5,5,16,10548,10560,12858,12845,43,11282,11287,13659,13654,0,44,50,50,44,11958,11957,14256,14255,43,11432,11543,13915,13804,0,1076,1411,1411,1076,11274,11356,13654,13571,43,12118,12140,14512,14490,0,16,49,49,16,11889,11891,14190,14188,43,10033,10019,12391,12405,0,1357,92,92,1357,9880,9866,12165,12179,43,10519,10513,12885,12891,0,50,30,30,50,10354,10351,12646,12653,43,12045,12048,14420,14417,0,153,154,154,153,11944,11943,14242,14241,43,10730,10729,13101,13102,0,6,30,30,6,10559,10549,12848,12857,43,12015,12019,14391,14387,0,16,30,30,16,11783,11787,14084,14082,43,11026,11038,13410,13398,0,6,30,30,6,10884,10891,13188,13183,43,10486,10487,12859,12858,0,15,1360,1360,15,10323,10322,12621,12620,43,10484,10482,12854,12856,0,1254,1248,1248,1254,10320,10321,12618,12619,43,10043,10061,12433,12415,0,16,5,5,16,9896,9895,12194,12193,43,11076,11165,13537,13448,0,953,1337,1337,953,10942,10988,13285,13243,43,12046,12049,14421,14418,0,153,154,154,153,11950,11949,14248,14247,43,10485,10481,12853,12857,0,1243,1361,1361,1243,10317,10316,12617,12616,43,11249,11247,13619,13621,0,92,1250,1250,92,11079,11076,13371,13378,43,10099,10994,13366,12471,0,6,87,87,6,10834,10833,13130,13129,43,10754,10750,13122,13126,0,6,30,30,6,10727,10730,13027,13022,43,10784,10788,13160,13156,0,5,6,6,5,10601,10593,12894,12900,43,12040,12039,14411,14412,0,5,16,16,5,11793,11792,14091,14090,43,10474,10472,12844,12846,0,30,16,16,30,9980,9985,12284,12277,43,10772,10773,13145,13144,0,6,30,30,6,10577,10580,12875,12878,43,11264,11265,13637,13636,0,16,30,30,16,11090,11089,13388,13387,43,12195,10420,12792,14567,0,50,30,30,50,10301,10299,12596,12599,43,10473,10475,12847,12845,0,5,6,6,5,9986,9979,12278,12283,43,9962,9960,12332,12334,0,1319,1318,1318,1319,9785,9784,12083,12082,43,12008,12009,14381,14380,0,30,6,6,30,11760,11764,14063,14061,43,10713,10715,13087,13085,0,16,5,5,16,10538,10544,12842,12834,43,10654,10622,12994,13026,0,150,30,30,150,10500,10458,12759,12799,43,9995,9934,12306,12367,0,1346,1345,1345,1346,9847,9846,12145,12144,43,11247,11253,13625,13619,0,1245,86,86,1245,11076,11075,13372,13371,43,9902,9955,12327,12274,0,1303,1312,1312,1303,9746,9777,12074,12043,43,11844,11862,14234,14216,0,150,1481,1481,150,11632,11640,13938,13929,43,11252,11246,13618,13624,0,7,700,700,7,11074,11073,13374,13373,43,9954,9901,12273,12326,0,1314,1309,1309,1314,9779,9751,12048,12077,43,11234,11236,13608,13606,0,1264,674,674,1264,11063,11061,13360,13364,43,12050,12045,14417,14422,0,153,154,154,153,11946,11944,14241,14244,43,9933,9995,12367,12305,0,1343,1342,1342,1343,9842,9847,12144,12141,43,10503,10505,12877,12875,0,1254,1248,1248,1254,10340,10343,12638,12641,43,11291,11296,13668,13663,0,6,1254,1254,6,11105,11108,13403,13406,43,11256,11257,13629,13628,0,16,30,30,16,11084,11083,13382,13381,43,10009,10005,12377,12381,0,50,30,30,50,10847,10846,13145,13144,43,10497,10496,12868,12869,0,1243,1254,1254,1243,10331,10330,12631,12630,43,12047,12046,14418,14419,0,153,154,154,153,11952,11950,14247,14250,43,9967,9969,12341,12339,0,1319,1318,1318,1319,9798,9799,12097,12096,43,11995,11996,14368,14367,0,30,6,6,30,11759,11741,14038,14057,43,11560,11499,13871,13932,0,1418,1372,1372,1418,11366,11273,13572,13664,43,10504,10501,12873,12876,0,1359,15,15,1359,10339,10338,12635,12634,43,10044,10058,12430,12416,0,1357,92,92,1357,9899,9898,12199,12198,43,11311,11320,13692,13683,0,5,44,44,5,11125,11136,13433,13426,43,10770,10768,13140,13142,0,5,6,6,5,10576,10585,12884,12871,43,10510,10511,12883,12882,0,1359,1243,1243,1359,10346,10345,12644,12643,43,12017,12016,14388,14389,0,16,30,30,16,11778,11777,14076,14075,43,12004,12002,14374,14376,0,5,16,16,5,11745,11744,14041,14040,43,10482,10480,12852,12854,0,1248,1107,1107,1248,10321,10319,12614,12618,43,12159,11452,13824,14531,0,150,51,51,150,11916,11338,13635,14213,43,12001,12003,14375,14373,0,5,16,16,5,11751,11750,14047,14046,43,11267,11261,13633,13639,0,50,6,6,50,11100,11099,13398,13397,43,11248,11256,13628,13620,0,5,16,16,5,11080,11084,13381,13377,43,9970,9968,12340,12342,0,1329,1311,1311,1329,9797,9796,12095,12094,43,11124,11159,13531,13496,0,1069,1330,1330,1069,10974,10977,13272,13275,43,10677,10981,13353,13049,0,153,49,49,153,10808,10805,13104,13107,43,10774,10771,13143,13146,0,5,6,6,5,10582,10581,12882,12881,43,11768,11761,14133,14140,0,6,5,5,6,11552,11539,13838,13851,43,11275,11263,13635,13647,0,49,30,30,49,11101,11102,13400,13399,43,10263,10407,12779,12635,0,51,150,150,51,10161,10269,12568,12460,43,9934,9997,12369,12306,0,1345,1352,1352,1345,9846,9844,12143,12145,43,11451,12159,14531,13823,0,30,150,150,30,11324,11916,14213,13621,43,10787,10785,13157,13159,0,5,6,6,5,10597,10603,12902,12898,43,9960,9911,12283,12332,0,1318,1309,1309,1318,9784,9753,12052,12083,43,11221,11220,13592,13593,0,16,30,30,16,11048,11047,13346,13345,43,11285,11284,13656,13657,0,6,5,5,6,11962,11970,14268,14263,43,10624,10861,13233,12996,0,44,1488,1488,44,10460,10670,12969,12757,43,9910,9959,12331,12282,0,1303,1321,1321,1303,9758,9787,12085,12057,43,11284,11283,13655,13656,0,6,5,5,6,11970,11954,14253,14268,43,10862,10625,12997,13234,0,1490,16,16,1490,10679,10463,12762,12978,43,10480,10483,12855,12852,0,1107,1359,1359,1107,10319,10318,12615,12614,43,9955,9953,12325,12327,0,1312,1311,1311,1312,9777,9776,12075,12074,43,10489,10488,12860,12861,0,15,1360,1360,15,10326,10325,12624,12623,43,11233,11237,13609,13605,0,1355,1356,1356,1355,11049,11062,13359,13350,43,10767,10770,13142,13139,0,6,30,30,6,10573,10576,12871,12874,43,12014,12008,14380,14386,0,30,6,6,30,11761,11760,14061,14060,43,11936,12053,14425,14308,0,1497,1498,1498,1497,11842,11812,14111,14141,43,10769,10767,13139,13141,0,5,6,6,5,10587,10573,12874,12886,43,12000,11997,14369,14372,0,5,16,16,5,11739,11738,14035,14034,43,11028,11032,13404,13400,0,5,1009,1009,5,10855,10859,13156,13154,43,11998,12001,14373,14370,0,5,16,16,5,11758,11751,14046,14055,43,10714,10713,13085,13086,0,6,16,16,6,10543,10538,12834,12841,43,9961,9962,12334,12333,0,1311,1313,1313,1311,9786,9785,12082,12084,43,10005,10007,12379,12377,0,6,30,30,6,10846,10849,13146,13145,43,11225,11224,13596,13597,0,16,30,30,16,11055,11054,13353,13352,43,11226,11227,13599,13598,0,1357,1358,1358,1357,11060,11059,13356,13355,43,11448,11560,13932,13820,0,1382,1418,1418,1382,11294,11366,13664,13591,43,10768,10772,13144,13140,0,6,30,30,6,10585,10577,12878,12884,43,11244,11238,13610,13616,0,1245,86,86,1245,11069,11072,13369,13368,43,11319,11310,13682,13691,0,50,6,6,50,11133,11126,13425,13432,43,10096,10993,13365,12468,0,44,91,91,44,10830,10829,13126,13128,43,10192,10965,13337,12564,0,16,1506,1506,16,10058,10775,13073,12356,43,11222,11223,13595,13594,0,16,30,30,16,11051,11050,13349,13348,43,11404,12155,14527,13776,0,30,1506,1506,30,11422,11906,14204,13721,43,10917,10955,13327,13289,0,30,49,49,30,10766,10769,13067,13065,43,12053,12069,14441,14425,0,1491,1492,1492,1491,11812,11800,14101,14111,43,10696,10698,13070,13068,0,16,5,5,16,10525,10531,12828,12824,43,9841,11008,13380,12213,0,1001,1036,1036,1001,9695,9703,12002,11996,43,10030,10024,12396,12402,0,706,15,15,706,9875,9872,12169,12174,43,12052,12070,14442,14424,0,1069,1487,1487,1069,11810,11811,14108,14109,43,11237,11235,13607,13609,0,1355,706,706,1355,11062,11066,13361,13359,43,11295,11294,13666,13667,0,1359,1248,1248,1359,11109,11107,13404,13408,43,10452,10451,12823,12824,0,5,6,6,5,10738,10739,13037,13036,43,11164,11137,13509,13536,0,1333,1316,1316,1333,10982,10944,13241,13281,43,11509,11448,13820,13881,0,1381,1382,1382,1381,11293,11294,13591,13592,43,11324,11333,13705,13696,0,50,6,6,50,11144,11148,13445,13443,43,11283,11286,13658,13655,0,6,5,5,6,11954,11953,14254,14253,43,10981,10679,13051,13353,0,49,151,151,49,10805,10804,13105,13104,43,9951,9948,12320,12323,0,1308,1305,1305,1308,9768,9771,12066,12069,43,11986,11988,14360,14358,0,5,16,16,5,11735,11723,14018,14032,43,10982,10678,13050,13354,0,53,154,154,53,10801,10803,13101,13100,43,10450,10449,12821,12822,0,5,6,6,5,10749,10745,13046,13047,43,10920,10466,12838,13292,0,16,30,30,16,10752,10751,13049,13050,43,9938,9939,12311,12310,0,1343,1341,1341,1343,9853,9851,12148,12151,43,11332,11323,13695,13704,0,5,44,44,5,11141,11137,13438,13440,43,11261,11270,13642,13633,0,30,163,163,30,11099,11104,13402,13398,43,11997,11998,14370,14369,0,5,16,16,5,11738,11758,14055,14035,43,11293,11298,13670,13665,0,16,15,15,16,11113,11111,13410,13412,43,11297,11299,13671,13669,0,1243,1360,1360,1243,11110,11112,13409,13407,43,12009,12013,14385,14381,0,6,5,5,6,11764,11798,14096,14063,43,11983,11982,14354,14355,0,5,16,16,5,11727,11726,14023,14022,43,10799,10801,13173,13171,0,6,30,30,6,10615,10616,12913,12914,43,12140,12120,14492,14512,0,1091,50,50,1091,11891,11875,14173,14190,43,11241,11239,13611,13613,0,7,700,700,7,11058,11071,13370,13357,43,11007,9843,12215,13379,0,1002,1003,1003,1002,9715,9716,12013,12014,43,10000,9936,12308,12372,0,1348,1335,1335,1348,9854,9855,12153,12152,43,12069,12051,14423,14441,0,1484,953,953,1484,11800,11803,14098,14101,43,10786,10784,13156,13158,0,5,6,6,5,10592,10601,12900,12887,43,10247,10311,12683,12619,0,1076,1372,1372,1076,10115,10114,12413,12412,43,11988,11985,14357,14360,0,5,16,16,5,11723,11722,14019,14018,43,11170,11086,13458,13542,0,1344,1345,1345,1344,10995,10997,13294,13292,43,11166,11083,13455,13538,0,1342,1343,1343,1342,10993,10985,13282,13290,43,10027,10023,12395,12399,0,1265,681,681,1265,9878,9870,12171,12177,43,9952,9954,12326,12324,0,1313,1314,1314,1313,9778,9779,12077,12076,43,10785,10783,13155,13157,0,6,30,30,6,10603,10589,12890,12902,43,9949,9950,12322,12321,0,53,1304,1304,53,9773,9775,12072,12070,43,10015,10037,12409,12387,0,6,30,30,6,9869,9887,12184,12166,43,12002,11999,14371,14374,0,5,16,16,5,11744,11755,14052,14041,43,12041,12040,14412,14413,0,5,16,16,5,11794,11793,14090,14092,43,9998,9935,12307,12370,0,1351,1335,1335,1351,9841,9843,12140,12138,43,10911,10870,13242,13283,0,1066,49,49,1066,10733,10710,13007,13032,43,11299,11292,13664,13671,0,1360,30,30,1360,11112,11114,13411,13409,43,11085,11169,13541,13457,0,1335,1348,1348,1335,11001,11000,13298,13299,43,9948,9949,12321,12320,0,1305,53,53,1305,9771,9773,12070,12066,43,9928,9974,12346,12300,0,1317,1316,1316,1317,9803,9802,12099,12098,43,10871,10912,13284,13243,0,0,952,952,0,10699,10725,13024,13000,43,10467,10919,13291,12839,0,6,30,30,6,10740,10741,13039,13038,43,12191,11067,13439,14563,0,91,87,87,91,9741,10903,13200,12039,43,10277,10270,12642,12649,0,1393,30,30,1393,10173,10168,12465,12472,43,11071,11080,13452,13443,0,1308,1309,1309,1308,10912,10913,13210,13211,43,10783,10786,13158,13155,0,6,30,30,6,10589,10592,12887,12890,43,11985,11987,14359,14357,0,16,30,30,16,11722,11732,14031,14019,43,10825,10832,13204,13197,0,30,16,16,30,10654,10653,12950,12949,43,11084,11164,13536,13456,0,1335,1333,1333,1335,10984,10982,13281,13283,43,11002,10006,12378,13374,0,161,16,16,161,10848,9861,12158,13147,43,10509,10508,12880,12881,0,1361,1107,1107,1361,10344,10347,12642,12645,43,11328,11322,13694,13700,0,30,50,50,30,11139,11138,13437,13436,43,11981,11984,14356,14353,0,16,30,30,16,11730,11729,14028,14027,43,12042,12044,14416,14414,0,30,6,6,30,11795,11797,14095,14094,43,10740,10742,13114,13112,0,6,30,30,6,10626,10617,12918,12925,43,10771,10769,13141,13143,0,5,6,6,5,10581,10587,12886,12882,43,11987,11983,14355,14359,0,16,30,30,16,11732,11727,14022,14031,43,10680,10982,13354,13052,0,152,53,53,152,10802,10801,13100,13099,43,9935,9933,12305,12307,0,1335,1334,1334,1335,9843,9842,12141,12140,43,11000,10009,12381,13372,0,87,50,50,87,10852,10847,13144,13151,43,10076,10091,12463,12448,0,16,44,44,16,9926,9937,12235,12227,43,10444,10187,12559,12816,0,1471,1008,1008,1471,10310,10050,12347,12608,43,10743,10739,13111,13115,0,6,30,30,6,10614,10624,12921,12909,43,11378,11622,13994,13750,0,6,5,5,6,11223,11420,13717,13524,43,9953,9952,12324,12325,0,1311,1313,1313,1311,9776,9778,12076,12075,43,11082,11166,13538,13454,0,1341,1342,1342,1341,10992,10993,13290,13291,43,10008,11003,13375,12380,0,5,0,0,5,10842,10851,13148,13141,43,11238,11240,13612,13610,0,92,86,86,92,11072,11057,13358,13369,43,10505,10507,12879,12877,0,1248,1107,1107,1248,10343,10342,12639,12638,43,11254,11250,13622,13626,0,1358,700,700,1358,11081,11077,13376,13380,43,10059,10045,12417,12431,0,700,1358,1358,700,9901,9900,12197,12196,43,10879,10863,13235,13251,0,1492,1491,1491,1492,10669,10681,12980,12970,43,11281,11285,13657,13653,0,6,5,5,6,11963,11962,14263,14262,43,10688,10685,13057,13060,0,151,155,155,151,10807,10792,13093,13102,43,10448,10452,12824,12820,0,6,30,30,6,10735,10738,13036,13035,43,10806,10805,13177,13178,0,6,30,30,6,10610,10628,12926,12907,43,10832,10826,13198,13204,0,30,16,16,30,10653,10648,12943,12950,43,9939,9937,12309,12311,0,1346,1345,1345,1346,9851,9850,12149,12148,43,11512,11415,13787,13884,0,1387,1374,1374,1387,11313,11312,13611,13610,43,11952,11897,14269,14324,0,6,5,5,6,11698,11652,13951,13997,43,11686,11687,14059,14058,0,1254,1243,1243,1254,11461,11464,13759,13762,43,10032,10016,12388,12404,0,1358,7,7,1358,9881,9883,12180,12178,43,10007,11002,13374,12379,0,30,161,161,30,10849,10848,13147,13146,43,11999,12000,14372,14371,0,5,16,16,5,11755,11739,14034,14052,43,10804,10803,13175,13176,0,6,30,30,6,10625,10609,12908,12923,43,11081,11072,13444,13453,0,1303,1304,1304,1303,10908,10907,13206,13205,43,11310,11311,13683,13682,0,1107,1361,1361,1107,11126,11125,13426,13425,43,10507,10504,12876,12879,0,1107,1359,1359,1107,10342,10339,12634,12639,43,10694,10699,13071,13066,0,16,5,5,16,10517,10519,12816,12814,43,10017,10033,12405,12389,0,86,1357,1357,86,9882,9880,12179,12181,43,9956,9896,12268,12328,0,1325,1324,1324,1325,9824,9827,12122,12125,43,11120,11155,13527,13492,0,1309,1318,1318,1309,10933,10971,13268,13228,43,11689,11688,14060,14061,0,1360,15,15,1360,11466,11465,13764,13763,43,11617,11626,13998,13989,0,5,739,739,5,11425,11423,13720,13724,43,12061,12087,14459,14433,0,0,719,719,0,11830,11833,14128,14131,43,11262,11275,13647,13634,0,16,49,49,16,11093,11101,13399,13391,43,10570,10563,12935,12942,0,30,16,16,30,10400,10399,12698,12697,43,10811,10808,13180,13183,0,16,5,5,16,10618,10627,12924,12917,43,11984,11986,14358,14356,0,16,30,30,16,11729,11735,14032,14028,43,11968,11970,14342,14340,0,16,30,30,16,11713,11719,14016,14012,43,11322,11330,13702,13694,0,50,6,6,50,11138,11142,13439,13437,43,12086,12060,14432,14458,0,1069,49,49,1069,11841,11840,14139,14138,43,10477,10476,12848,12849,0,1359,1243,1243,1359,9988,9983,12280,12287,43,11812,11844,14216,14184,0,30,150,150,30,11589,11632,13929,13890,43,9964,9915,12287,12336,0,1322,1069,1069,1322,9789,9788,12089,12088,43,11286,11279,13651,13658,0,6,5,5,6,11953,11959,14258,14254,43,10810,10809,13181,13182,0,16,5,5,16,10606,10623,12922,12905,43,10808,10807,13179,13180,0,16,5,5,16,10627,10607,12904,12924,43,11251,11255,13627,13623,0,92,1357,1357,92,11078,11082,13379,13375,43,10432,10433,12805,12804,0,5,16,16,5,10287,10286,12585,12584,43,11881,11889,14261,14253,0,5,16,16,5,11657,11650,13947,13954,43,11298,11295,13667,13670,0,15,1359,1359,15,11111,11109,13408,13410,43,11257,11249,13621,13629,0,30,6,6,30,11083,11079,13378,13382,43,12121,12141,14513,14493,0,49,1504,1504,49,11885,11894,14191,14184,43,9937,10001,12373,12309,0,1345,1344,1344,1345,9850,9848,12147,12149,43,10269,10277,12649,12641,0,1382,1393,1393,1382,10174,10173,12472,12471,43,10812,10814,13186,13184,0,16,5,5,16,10613,10612,12911,12910,43,10024,10022,12394,12396,0,706,1355,1355,706,9872,9871,12170,12169,43,11969,11971,14343,14341,0,16,30,30,16,11706,11717,14014,14003,43,11296,11297,13669,13668,0,1254,1243,1243,1254,11108,11110,13407,13403,43,10802,10800,13172,13174,0,6,30,30,6,10621,10622,12919,12920,43,10715,10728,13100,13087,0,16,5,5,16,10544,10548,12845,12842,43,10493,10492,12864,12865,0,1248,1359,1359,1248,10329,10327,12622,12626,43,12043,12042,14414,14415,0,30,6,6,30,11796,11795,14094,14093,43,10036,10014,12386,12408,0,16,5,5,16,9886,9868,12167,12185,43,10229,10294,12666,12601,0,6,1364,1364,6,10095,10094,12393,12392,43,11323,11329,13701,13695,0,44,16,16,44,11137,11140,13435,13438,43,9936,9938,12310,12308,0,1335,1334,1334,1335,9855,9853,12151,12153,43,11188,11189,13561,13560,0,6,5,5,6,11972,10843,13140,14270,43,11210,11216,13588,13582,0,5,16,16,5,11035,11044,13341,13332,43,10803,10806,13178,13175,0,6,30,30,6,10609,10610,12907,12908,43,10689,10695,13067,13061,0,6,30,30,6,10528,10522,12819,12827,43,10880,10862,13234,13252,0,1487,1069,1069,1487,10680,10679,12978,12977,43,11217,11211,13583,13589,0,30,6,6,30,11043,11034,13333,13342,43,10018,10032,12404,12390,0,700,1358,1358,700,9867,9881,12178,12164,43,10466,10461,12833,12838,0,30,6,6,30,10751,10750,13048,13049,43,12108,12148,14520,14480,0,16,44,44,16,11897,11901,14200,14196,43,11890,11882,14254,14262,0,5,16,16,5,11645,11654,13949,13942,43,11628,11617,13989,14000,0,0,6,6,0,11427,11425,13724,13726,43,11152,11176,13548,13524,0,1330,1352,1352,1330,10969,11007,13304,13264,43,11679,11682,14054,14051,0,15,1359,1359,15,11457,11456,13755,13754,43,10435,10432,12804,12807,0,0,5,5,0,10284,10287,12584,12581,43,9914,9963,12335,12286,0,1317,1328,1328,1317,9795,9794,12093,12092,43,10491,10493,12865,12863,0,1254,1248,1248,1254,10328,10329,12626,12627,43,11687,11689,14061,14059,0,1243,1360,1360,1243,11464,11466,13763,13759,43,12148,11643,14015,14520,0,0,6,6,0,11901,11877,14176,14200,43,11186,11185,13557,13558,0,16,30,30,16,9860,11020,13318,12159,43,10627,10653,13025,12999,0,49,52,52,49,10465,10499,12797,12760,43,11681,11680,14052,14053,0,1254,1243,1243,1254,11459,11455,13756,13758,43,10813,10811,13183,13185,0,16,5,5,16,10619,10618,12917,12916,43,11453,11456,13828,13825,0,30,1377,1377,30,11328,11327,13624,13623,43,10571,10578,12950,12943,0,5,6,6,5,10410,10421,12720,12705,43,11883,11890,14262,14255,0,5,16,16,5,11646,11645,13942,13941,43,11177,11153,13525,13549,0,1351,1316,1316,1351,11002,10964,13261,13301,43,10023,10025,12397,12395,0,674,1264,1264,674,9870,9873,12168,12171,43,10022,10026,12398,12394,0,1356,1355,1355,1356,9871,9879,12176,12170,43,10807,10810,13182,13179,0,16,5,5,16,10607,10606,12905,12904,43,10456,10448,12820,12828,0,5,6,6,5,10736,10735,13035,13034,43,10422,10421,12793,12794,0,1017,1018,1018,1017,10298,10305,12602,12597,43,11326,11328,13700,13698,0,16,30,30,16,11146,11139,13436,13441,43,11213,11207,13579,13585,0,1264,1265,1265,1264,11033,11030,13329,13334,43,11646,12145,14517,14018,0,5,44,44,5,11867,11900,14198,14165,43,10693,10694,13066,13065,0,16,5,5,16,10513,10517,12814,12812,43,10431,10435,12807,12803,0,6,0,0,6,10285,10284,12581,12580,43,10165,10164,12536,12537,0,1248,1359,1359,1248,10003,10001,12296,12300,43,11862,11864,14236,14234,0,1477,1476,1476,1477,11640,11638,13935,13938,43,10425,10423,12795,12797,0,1030,1049,1049,1030,10309,10308,12607,12606,43,10169,10171,12543,12541,0,1005,1008,1008,1005,10049,10052,12350,12348,43,10698,10690,13062,13070,0,16,5,5,16,10531,10534,12833,12828,43,11153,11107,13479,13525,0,1316,1317,1317,1316,10964,10963,13262,13261,43,12145,12107,14479,14517,0,49,30,30,49,11900,11898,14195,14198,43,12109,11657,14029,14481,0,30,6,6,30,11872,11871,14169,14170,43,11978,11974,14346,14350,0,6,5,5,6,11724,11733,14030,14025,43,10699,10691,13063,13071,0,16,5,5,16,10519,10526,12823,12816,43,10697,10689,13061,13069,0,16,5,5,16,10532,10528,12827,12831,43,10162,10163,12535,12534,0,1243,1254,1254,1243,9998,10002,12301,12299,43,11449,11450,13822,13821,0,30,51,51,30,11322,11321,13618,13617,43,10055,10051,12423,12427,0,1356,1355,1355,1356,9902,9890,12191,12201,43,11074,11071,13443,13446,0,1305,1308,1308,1305,10910,10912,13211,13209,43,11972,11969,14341,14344,0,5,16,16,5,11707,11706,14003,14002,43,10067,10075,12447,12439,0,6,30,30,6,9921,9925,12222,12218,43,10427,10424,12796,12799,0,1020,1028,1028,1020,10304,10313,12611,12603,43,10050,10054,12426,12422,0,1265,681,681,1265,9891,9903,12200,12190,43,10167,10165,12537,12539,0,5,1248,1248,5,10005,10003,12300,12302,43,11626,11404,13776,13998,0,739,6,6,739,11423,11422,13721,13720,43,11976,11973,14345,14348,0,30,6,6,30,11721,11720,14021,14020,43,11100,11090,13462,13472,0,1308,1309,1309,1308,10914,10917,13212,13215,43,11889,11884,14256,14261,0,5,16,16,5,11650,11648,13945,13947,43,11329,11327,13699,13701,0,6,5,5,6,11140,11145,13442,13435,43,11068,11070,13442,13440,0,91,87,87,91,10902,10905,13202,13201,43,11187,11184,13556,13559,0,30,6,6,30,11977,11976,14273,14276,43,12101,11941,14313,14473,0,1066,30,30,1066,11865,11864,14163,14162,43,11894,11951,14323,14266,0,16,30,30,16,11651,11703,14001,13952,43,11455,11523,13895,13827,0,1382,1394,1394,1382,11333,11332,13631,13630,43,11337,11334,13706,13709,0,1359,1107,1107,1359,11151,11150,13449,13448,43,10046,10048,12420,12418,0,1265,681,681,1265,9907,9909,12206,12202,43,11688,11685,14057,14060,0,15,1359,1359,15,11465,11463,13760,13764,43,11970,11972,14344,14342,0,16,30,30,16,11719,11707,14002,14016,43,12087,11952,14324,14459,0,719,5,5,719,11833,11698,13997,14128,43,11067,11068,13440,13439,0,91,87,87,91,10903,10902,13201,13200,43,11919,11920,14292,14291,0,30,6,6,30,11680,11690,13988,13979,43,11340,11337,13709,13712,0,15,1359,1359,15,11155,11151,13448,13454,43,10685,10686,13058,13057,0,151,152,152,151,10792,10795,13090,13093,43,11634,11615,13987,14006,0,1471,1051,1051,1471,11441,11442,13740,13739,43,10160,10162,12534,12532,0,1360,1243,1243,1360,9999,9998,12299,12298,43,10686,10687,13059,13058,0,151,152,152,151,10795,10799,13096,13090,43,11620,11628,14000,13992,0,5,0,0,5,11416,11427,13726,13715,43,11843,11817,14189,14215,0,52,49,49,52,11630,11594,13893,13928,43,11106,11152,13524,13478,0,1069,1330,1330,1069,10966,10969,13264,13267,43,11656,12110,14482,14028,0,30,16,16,30,11882,11883,14181,14180,43,10086,10076,12448,12458,0,44,5,5,44,9927,9926,12227,12226,43,10695,10692,13064,13067,0,16,5,5,16,10522,10521,12820,12819,43,11212,11210,13582,13584,0,15,706,706,15,11036,11035,13332,13331,43,11977,11980,14352,14349,0,6,5,5,6,11728,11731,14026,14029,43,11683,11681,14053,14055,0,1248,1254,1254,1248,11460,11459,13758,13757,43,9979,10000,12372,12351,0,1331,1348,1348,1331,9818,9854,12152,12117,43,11331,11325,13697,13703,0,5,44,44,5,11147,11143,13444,13446,43,11334,11336,13708,13706,0,1107,1248,1248,1107,11150,11154,13451,13449,43,12115,12121,14493,14487,0,30,49,49,30,11884,11885,14184,14182,43,10861,10879,13251,13233,0,953,1484,1484,953,10670,10669,12970,12969,43,10163,10166,12538,12535,0,1254,6,6,1254,10002,10004,12303,12301,43,11101,11110,13482,13473,0,1308,1309,1309,1308,10928,10929,13226,13227,43,11211,11213,13585,13583,0,681,1265,1265,681,11034,11033,13334,13333,43,10001,9980,12352,12373,0,1344,1330,1330,1344,9848,9813,12112,12147,43,10074,10066,12438,12446,0,16,5,5,16,9924,9920,12219,12223,43,11863,11861,14233,14235,0,1373,1370,1370,1373,11637,11639,13937,13936,43,10161,10160,12532,12533,0,15,1360,1360,15,10000,9999,12298,12297,43,10805,10802,13174,13177,0,6,30,30,6,10628,10621,12920,12926,43,10801,10804,13176,13173,0,6,30,30,6,10616,10625,12923,12913,43,11974,11976,14348,14346,0,6,5,5,6,11733,11721,14020,14030,43,10049,10047,12419,12421,0,706,15,15,706,9908,9906,12203,12207,43,9905,9904,12276,12277,0,1335,1334,1334,1335,9823,9822,12121,12120,43,11336,11338,13710,13708,0,1248,1254,1254,1248,11154,11153,13452,13451,43,10045,10044,12416,12417,0,1358,1357,1357,1358,9900,9899,12198,12197,43,10424,10425,12797,12796,0,1028,1030,1030,1028,10313,10309,12606,12611,43,10420,10422,12794,12792,0,6,50,50,6,10299,10298,12597,12596,43,10809,10812,13184,13181,0,16,5,5,16,10623,10613,12910,12922,43,11682,11683,14055,14054,0,1359,1248,1248,1359,11456,11460,13757,13755,43,11089,11099,13471,13461,0,1303,1304,1304,1303,10921,10920,13219,13218,43,10782,10780,13152,13154,0,30,16,16,30,10574,10588,12885,12873,43,9994,9926,12298,12366,0,1337,953,953,1337,9807,9800,12101,12102,43,12171,11867,14239,14543,0,49,153,153,49,11938,11940,14237,14233,43,11307,11306,13678,13679,0,30,16,16,30,11118,11117,13414,13413,43,10041,10040,12412,12413,0,30,16,16,30,9893,9892,12189,12188,43,9897,9898,12270,12269,0,953,1317,1317,953,9780,9783,12078,12081,43,10691,10696,13068,13063,0,16,5,5,16,10526,10525,12824,12823,43,11302,11300,13672,13674,0,1243,1360,1360,1243,11119,11115,13416,13418,43,10423,10426,12798,12795,0,1049,1051,1051,1049,10308,10311,12609,12607,43,11868,12172,14544,14240,0,154,53,53,154,11934,11933,14230,14232,43,10780,10778,13150,13152,0,30,16,16,30,10588,10584,12879,12885,43,11685,11684,14056,14057,0,1359,1248,1248,1359,11463,11462,13761,13760,43,11415,11570,13942,13787,0,30,1423,1423,30,11312,11376,13674,13611,43,11921,11918,14290,14293,0,5,16,16,5,11691,11679,13976,13989,43,9924,9923,12295,12296,0,53,1304,1304,53,9760,9763,12058,12061,43,10690,10697,13069,13062,0,16,5,5,16,10534,10532,12831,12833,43,10567,10568,12940,12939,0,6,30,30,6,10404,10405,12703,12702,43,11220,11208,13580,13592,0,30,6,6,30,11047,11038,13335,13346,43,12070,12068,14440,14442,0,1495,1496,1496,1495,11811,11817,14115,14108,43,11143,11170,13542,13515,0,1322,1344,1344,1322,10953,10995,13292,13248,43,9926,9928,12300,12298,0,953,1317,1317,953,9800,9803,12098,12101,43,10779,10782,13154,13151,0,16,5,5,16,10575,10574,12873,12872,43,9922,9925,12297,12294,0,1308,1305,1305,1308,9766,9764,12063,12065,43,10291,10266,12638,12663,0,1396,30,30,1396,10177,10179,12476,12474,43,11951,12086,14458,14323,0,16,1069,1069,16,11703,11841,14138,14001,43,11022,11007,13379,13394,0,1003,1002,1002,1003,10881,9715,12014,13179,43,11973,11975,14347,14345,0,30,6,6,30,11720,11734,14033,14021,43,10926,10930,13302,13298,0,6,50,50,6,10742,10744,13042,13040,43,10073,10069,12441,12445,0,1357,92,92,1357,9922,9918,12217,12221,43,9898,9958,12330,12270,0,1317,1316,1316,1317,9783,9782,12079,12078,43,11050,11029,13401,13422,0,1092,16,16,1092,10886,10887,13185,13184,43,11330,11331,13703,13702,0,1243,1359,1359,1243,11142,11147,13446,13439,43,9925,9924,12296,12297,0,1305,53,53,1305,9764,9760,12061,12063,43,11309,11305,13677,13681,0,1107,1248,1248,1107,11123,11122,13421,13420,43,10776,10777,13149,13148,0,16,5,5,16,10579,10578,12877,12876,43,10569,10570,12942,12941,0,16,5,5,16,10406,10400,12697,12704,43,12021,12043,14415,14393,0,16,30,30,16,11791,11796,14093,14088,43,9895,9894,12266,12267,0,1305,53,53,1305,9748,9744,12045,12047,43,11684,11686,14058,14056,0,1248,1254,1254,1248,11462,11461,13762,13761,43,11130,11120,13492,13502,0,1308,1309,1309,1308,10930,10933,13228,13231,43,10781,10779,13151,13153,0,30,16,16,30,10586,10575,12872,12883,43,10421,10427,12799,12793,0,1018,1020,1020,1018,10305,10304,12603,12602,43,10159,10157,12529,12531,0,1360,1243,1243,1360,9996,9991,12290,12295,43,10775,10774,13146,13147,0,16,5,5,16,10583,10582,12881,12880,43,11072,11073,13445,13444,0,1304,53,53,1304,10907,10906,13207,13206,43,10778,10775,13147,13150,0,30,16,16,30,10584,10583,12880,12879,43,11938,12102,14474,14310,0,6,952,952,6,11855,11858,14153,14156,43,11169,11142,13514,13541,0,1348,1328,1328,1348,11000,10957,13254,13298,43,11454,11453,13825,13826,0,30,1377,1377,30,11330,11328,13623,13627,43,11338,11335,13707,13710,0,1254,1361,1361,1254,11153,11149,13450,13452,43,12007,12014,14386,14379,0,30,6,6,30,11766,11761,14060,14067,43,9931,9922,12294,12303,0,1309,1308,1308,1309,9767,9766,12065,12064,43,10777,10781,13153,13149,0,16,5,5,16,10578,10586,12883,12877,43,10449,10453,12825,12821,0,6,5,5,6,10745,10748,13043,13046,43,11038,11037,13409,13410,0,16,30,30,16,10891,10890,13189,13188,43,11239,11245,13617,13611,0,7,700,700,7,11071,11070,13367,13370,43,10576,10575,12947,12948,0,6,30,30,6,10417,10415,12714,12716,43,10052,10046,12418,12424,0,1265,1264,1264,1265,9904,9907,12202,12205,43,11869,12171,14543,14241,0,151,49,49,151,11935,11938,14233,14236,43,10048,10049,12421,12420,0,681,706,706,681,9909,9908,12207,12206,43,10577,10576,12948,12949,0,6,30,30,6,10419,10417,12716,12718,43,10158,10159,12531,12530,0,15,1360,1360,15,9997,9996,12295,12294,43,10928,10927,13299,13300,0,5,16,16,5,10759,10758,13057,13056,43,11020,12189,14561,13392,0,1002,1014,1014,1002,10864,10867,13162,13165,43,10931,10925,13297,13303,0,49,30,30,49,10754,10753,13051,13053,43,11335,11339,13711,13707,0,1361,1243,1243,1361,11149,11152,13447,13450,43,11306,11301,13673,13678,0,16,15,15,16,11117,11116,13415,13414,43,10568,10569,12941,12940,0,6,30,30,6,10405,10406,12704,12703,43,11982,11979,14351,14354,0,16,30,30,16,11726,11725,14024,14023,43,10019,10021,12393,12391,0,86,92,92,86,9866,9864,12161,12165,43,10047,10053,12425,12419,0,706,15,15,706,9906,9905,12204,12203,43,11980,11981,14353,14352,0,5,16,16,5,11731,11730,14027,14026,43,11218,11219,13591,13590,0,16,30,30,16,11046,11045,13344,13343,43,11157,11156,13528,13529,0,1313,1311,1311,1313,10970,10972,13270,13269,43,12005,12010,14382,14377,0,5,16,16,5,11771,11767,14066,14068,43,10351,10229,12601,12723,0,1402,1072,1072,1402,10187,10095,12392,12484,43,11303,11308,13680,13675,0,1254,1361,1361,1254,11121,11124,13419,13422,43,11110,11148,13520,13482,0,1309,1318,1318,1309,10929,10961,13259,13226,43,11304,11309,13681,13676,0,1359,1107,1107,1359,11120,11123,13420,13417,43,11073,11074,13446,13445,0,53,1305,1305,53,10906,10910,13209,13207,43,10729,10714,13086,13101,0,6,30,30,6,10549,10543,12841,12848,43,11149,11111,13483,13521,0,1329,1303,1303,1329,10958,10924,13221,13257,43,12006,12011,14383,14378,0,30,6,6,30,11774,11772,14071,14073,43,11008,11020,13392,13380,0,1036,1001,1001,1036,9703,10864,13165,12002,43,10042,10043,12415,12414,0,30,16,16,30,9897,9896,12193,12192,43,10166,10167,12539,12538,0,6,5,5,6,10004,10005,12302,12303,43,11104,11101,13473,13476,0,1305,1308,1308,1305,10926,10928,13227,13225,43,11815,12052,14424,14187,0,16,1490,1490,16,11596,11810,14109,13891,43,10515,10516,12888,12887,0,16,44,44,16,10350,10352,12651,12647,43,11308,11302,13674,13680,0,1361,1243,1243,1361,11124,11119,13418,13419,43,11351,11370,13742,13723,0,1008,1051,1051,1008,11209,11208,13507,13506,43,11664,11658,14030,14036,0,30,50,50,30,11139,11138,13437,13436,43,9997,9973,12345,12369,0,1352,1330,1330,1352,9844,9805,12104,12143,43,9944,9979,12351,12316,0,1317,1331,1331,1317,9819,9818,12117,12116,43,12051,11814,14186,14423,0,1488,44,44,1488,11803,11591,13888,14098,43,10014,10012,12384,12386,0,700,7,7,700,9868,9862,12163,12167,43,9980,9945,12317,12352,0,1330,1069,1069,1330,9813,9812,12113,12112,43,11659,11665,14037,14031,0,44,16,16,44,11137,11140,13435,13438,43,11032,11050,13422,13404,0,1009,1092,1092,1009,10859,10886,13184,13156,43,10195,10196,12568,12567,0,5,6,6,5,10064,10067,12362,12365,43,11301,11304,13676,13673,0,15,1359,1359,15,11116,11120,13417,13415,43,10075,10074,12446,12447,0,30,16,16,30,9925,9924,12223,12222,43,10072,10073,12445,12444,0,1358,1357,1357,1358,9923,9922,12221,12220,43,11156,11154,13526,13528,0,1311,1329,1329,1311,10972,10973,13271,13270,43,12012,12006,14378,14384,0,30,6,6,30,11799,11774,14073,14097,43,10281,10224,12596,12653,0,1087,50,50,1087,10075,10063,12361,12373,43,10171,10281,12653,12543,0,6,1087,1087,6,10052,10075,12373,12350,43,10925,10920,13292,13297,0,16,30,30,16,10753,10752,13050,13051,43,10130,10131,12503,12502,0,1359,1243,1243,1359,9968,9967,12266,12265,43,11573,11512,13884,13945,0,1434,1387,1387,1434,11385,11313,13610,13684,43,11099,11098,13470,13471,0,1304,53,53,1304,10920,10918,13217,13219,43,10051,10041,12413,12423,0,6,30,30,6,9890,9893,12188,12191,43,10451,10467,12839,12823,0,6,30,30,6,10739,10740,13038,13037,43,11641,11642,14014,14013,0,6,5,5,6,11870,11869,14167,14168,43,11658,11666,14038,14030,0,50,6,6,50,11138,11142,13439,13437,43,11097,11100,13472,13469,0,1305,1308,1308,1305,10915,10914,13215,13214,43,11063,11028,13400,13435,0,16,30,30,16,10856,10855,13154,13153,43,11639,11640,14012,14011,0,6,5,5,6,11876,11880,14178,14177,43,10040,10050,12422,12412,0,16,5,5,16,9892,9891,12190,12189,43,9940,9975,12347,12312,0,1303,1329,1329,1303,9774,9811,12109,12073,43,10013,10015,12387,12385,0,1250,92,92,1250,9863,9869,12166,12162,43,11272,11273,13645,13644,0,163,44,44,163,11094,11096,13394,13393,43,10653,10671,13043,13025,0,52,1478,1478,52,10499,10508,12806,12797,43,11897,11894,14266,14269,0,30,6,6,30,11652,11651,13952,13951,43,10514,10512,12884,12886,0,5,6,6,5,10349,10348,12649,12648,43,10134,10132,12504,12506,0,5,6,6,5,9971,9970,12271,12270,43,10574,10573,12945,12946,0,6,30,30,6,10413,10411,12710,12712,43,11660,11669,14041,14032,0,50,6,6,50,11144,11148,13445,13443,43,11570,11509,13881,13942,0,1423,1381,1381,1423,11376,11293,13592,13674,43,10575,10574,12946,12947,0,6,30,30,6,10415,10413,12712,12714,43,10268,10291,12663,12640,0,1377,1396,1396,1377,10171,10177,12474,12468,43,11209,11221,13593,13581,0,5,16,16,5,11037,11048,13345,13336,43,12010,12007,14379,14382,0,30,6,6,30,11767,11766,14067,14066,43,10098,10106,12478,12470,0,50,44,44,50,10836,10835,13134,13133,43,10749,10878,13250,13121,0,1502,1501,1501,1502,10716,10686,12984,13014,43,11075,11135,13507,13447,0,1324,1325,1325,1324,10987,10986,13287,13286,43,12011,12005,14377,14383,0,30,6,6,30,11772,11771,14068,14071,43,10517,10514,12886,12889,0,50,30,30,50,10353,10349,12648,12650,43,9974,9998,12370,12346,0,1316,1351,1351,1316,9802,9841,12138,12099,43,11155,11157,13529,13527,0,1318,1313,1313,1318,10971,10970,13269,13268,43,11979,11978,14350,14351,0,30,6,6,30,11725,11724,14025,14024,43,11667,11661,14033,14039,0,5,44,44,5,11147,11446,13444,13446,43,10851,10823,13195,13223,0,16,5,5,16,10663,10667,12965,12961,43,12172,11870,14242,14544,0,53,152,152,53,11933,11932,14231,14230,43,10919,10926,13298,13291,0,6,30,30,6,10741,10742,13040,13039,43,11245,11243,13615,13617,0,7,700,700,7,11070,11056,13351,13367,43,10822,10854,13226,13194,0,30,16,16,30,10668,10666,12964,12966,43,11016,11596,13968,13388,0,30,150,150,30,10268,11409,13706,12569,43,10020,10018,12390,12392,0,700,7,7,700,9865,9867,12164,12160,43,9976,9941,12313,12348,0,1318,1309,1309,1318,9808,9769,12068,12107,43,11888,11886,14258,14260,0,5,16,16,5,11662,11658,13953,13959,43,11333,11332,13704,13705,0,1107,1361,1361,1107,11148,11141,13440,13445,43,11098,11097,13469,13470,0,53,1305,1305,53,10918,10915,13214,13217,43,11651,11656,14028,14023,0,6,30,30,6,11881,11882,14180,14179,43,11884,11883,14255,14256,0,5,16,16,5,11648,11646,13941,13945,43,9959,9961,12333,12331,0,1321,1320,1320,1321,9787,9786,12084,12085,43,11622,11621,13993,13994,0,16,5,5,16,11420,11419,13718,13717,43,10672,10654,13026,13044,0,1481,150,150,1481,10509,10500,12799,12807,43,11280,12184,14556,13652,0,50,87,87,50,11966,11964,14261,14265,43,10135,10136,12508,12507,0,16,44,44,16,9972,9974,12273,12269,43,11279,12183,14555,13651,0,5,91,91,5,11959,11960,14257,14258,43,11877,11876,14248,14249,0,152,151,151,152,11929,11924,14223,14228,43,10137,10134,12506,12509,0,50,30,30,50,9975,9971,12270,12272,43,9923,9932,12304,12295,0,1304,1303,1303,1304,9763,9762,12059,12058,43,11184,11190,13562,13556,0,30,50,50,30,11976,11975,14274,14273,43,11300,11307,13679,13672,0,1360,30,30,1360,11115,11118,13413,13416,43,10969,10265,12637,13341,0,150,30,30,150,10784,10164,12463,13083,43,11975,11977,14349,14347,0,6,5,5,6,11734,11728,14029,14033,43,11543,11480,13852,13915,0,1411,1364,1364,1411,11356,11253,13552,13654,43,9927,9994,12366,12299,0,1069,1324,1324,1069,9804,9807,12102,12105,43,11216,11217,13589,13588,0,16,30,30,16,11044,11043,13342,13341,43,10572,10571,12943,12944,0,6,30,30,6,10407,10410,12705,12708,43,10012,10020,12392,12384,0,700,7,7,700,9862,9865,12160,12163,43,10132,10138,12510,12504,0,16,44,44,16,9970,9976,12275,12271,43,11867,12179,14551,14239,0,151,49,49,151,11940,11945,14243,14237,43,10878,10880,13252,13250,0,1496,1495,1495,1496,10686,10680,12977,12984,43,11621,11624,13996,13993,0,5,0,0,5,11419,11417,13714,13718,43,10512,10518,12890,12884,0,16,44,44,16,10348,10355,12652,12649,43,11070,11069,13441,13442,0,91,87,87,91,10905,10904,13203,13202,43,10266,10969,13341,12638,0,51,150,150,51,10179,10784,13083,12476,43,11305,11303,13675,13677,0,1248,1254,1254,1248,11122,11121,13422,13421,43,11129,11128,13500,13501,0,1304,53,53,1304,10936,10934,13233,13235,43,10311,10371,12743,12683,0,1372,1418,1418,1372,10114,10207,12505,12413,43,10136,10130,12502,12508,0,44,5,5,44,9974,9968,12265,12273,43,10483,10486,12858,12855,0,1359,15,15,1359,10318,10323,12620,12615,43,11671,11675,14047,14043,0,1361,1243,1243,1361,11447,11450,13745,13748,43,12184,11281,13653,14556,0,87,6,6,87,11964,11963,14262,14261,43,11127,11130,13502,13499,0,1305,1308,1308,1305,10931,10930,13231,13230,43,10461,10450,12822,12833,0,30,6,6,30,10750,10749,13047,13048,43,11624,11620,13992,13996,0,0,6,6,0,11417,11416,13715,13714,43,11037,11046,13418,13409,0,30,50,50,30,10890,10893,13191,13189,43,11450,11451,13823,13822,0,30,51,51,30,11321,11324,13621,13618,43,10164,10161,12533,12536,0,1359,15,15,1359,10001,10000,12297,12296,43,11928,11931,14303,14300,0,30,6,6,30,11737,11736,14037,14036,43,11125,11126,13498,13497,0,953,1324,1324,953,10978,10975,13274,13277,43,12180,11868,14240,14552,0,53,152,152,53,11947,11934,14232,14246,43,11115,11179,13551,13487,0,1335,1348,1348,1335,11017,11016,13314,13315,43,10573,10572,12944,12945,0,6,30,30,6,10411,10407,12708,12710,43,11540,11379,13751,13912,0,1402,1071,1071,1402,11345,11224,13523,13644,43,11864,11863,14235,14236,0,1373,1370,1370,1373,11638,11637,13936,13935,43,10513,10515,12887,12885,0,30,16,16,30,10351,10350,12647,12646,43,10133,10135,12507,12505,0,30,16,16,30,9973,9972,12269,12268,43,11180,11116,13488,13552,0,1344,1345,1345,1344,11011,11013,13310,13308,43,11699,11708,14080,14071,0,5,44,44,5,11475,11486,13783,13776,43,10101,10102,12474,12473,0,5,6,6,5,10825,10839,13137,13120,43,11379,11378,13750,13751,0,6,5,5,6,11224,11223,13524,13523,43,11114,11177,13549,13486,0,1335,1351,1351,1335,11004,11002,13301,13303,43,10407,11016,13388,12779,0,150,30,30,150,10269,10268,12569,12568,43,11930,11928,14300,14302,0,30,6,6,30,11757,11737,14036,14056,43,10021,10013,12385,12393,0,86,1245,1245,86,9864,9863,12162,12161,43,10016,10017,12389,12388,0,7,86,86,7,9883,9882,12181,12180,43,11123,11125,13497,13495,0,1317,953,953,1317,10980,10978,13277,13279,43,11939,11943,14315,14311,0,30,6,6,30,11847,11862,14161,14145,43,11128,11127,13499,13500,0,53,1305,1305,53,10934,10931,13230,13233,43,10120,10126,12498,12492,0,1243,1361,1361,1243,9960,9963,12262,12259,43,10852,10853,13225,13224,0,6,30,30,6,10664,10665,12962,12963,43,14588,14587,14589,14590,0,6,6,6,6,14281,14282,14283,14284,43,14590,14589,14591,14592,0,6,6,6,6,14284,14283,14285,14286,43,14592,14591,14593,14594,0,6,6,6,6,14286,14285,14287,14288,43,14593,14597,14598,14594,0,6,6,6,6,14287,14289,14290,14288,43,14597,14596,14595,14598,0,6,6,6,6,14289,14291,14292,14290,43,14600,14585,14586,14599,0,6,6,6,6,14293,14294,14295,14296,43,14599,14587,14588,14600,0,6,6,6,6,14296,14282,14281,14293,43,14602,14601,14613,14614,0,6,6,6,6,14297,14298,14299,14300,43,14615,14616,14601,14602,0,6,6,6,6,14301,14302,14298,14297,43,14604,14603,14606,14605,0,6,6,6,6,14303,14304,14305,14306,43,14608,14607,14603,14604,0,6,6,6,6,14307,14308,14304,14303,43,14609,14607,14608,14610,0,6,6,6,6,14309,14308,14307,14310,43,14611,14609,14610,14612,0,6,6,6,6,14311,14309,14310,14312,43,14613,14611,14612,14614,0,6,6,6,6,14299,14311,14312,14300,43,14620,14624,14623,14619,0,6,6,6,6,14313,14314,14315,14316,43,14624,14618,14617,14623,0,6,6,6,6,14314,14317,14318,14315,43,14618,14625,14626,14617,0,6,6,6,6,14317,14319,14320,14318,43,14625,14621,14622,14626,0,6,6,6,6,14319,14321,14322,14320,43,14630,14631,14632,14629,0,6,6,6,6,14323,14324,14325,14326,43,14635,14636,14633,14634,0,6,6,6,6,14327,14328,14329,14330,43,14637,14638,14640,14639,0,6,6,6,6,14331,14332,14333,14334,43,14639,14640,14636,14635,0,6,6,6,6,14334,14333,14328,14327,43,14627,14628,14642,14641,0,6,6,6,6,14335,14336,14337,14338,43,14641,14642,14630,14629,0,6,6,6,6,14338,14337,14323,14326,43,14620,14619,14644,14643,0,6,6,6,6,14313,14316,14339,14340,43,14622,14621,14646,14645,0,6,6,6,6,14322,14321,14341,14342,43,14652,14651,14649,14650,0,6,6,6,6,14343,14344,14345,14346,43,14654,14653,14651,14652,0,6,6,6,6,14347,14348,14344,14343,43,14656,14655,14653,14654,0,6,6,6,6,14349,14350,14348,14347,43,14656,14660,14659,14655,0,6,6,6,6,14349,14351,14352,14350,43,14660,14657,14658,14659,0,6,6,6,6,14351,14353,14354,14352,43,14661,14648,14647,14662,0,6,6,6,6,14355,14356,14357,14358,43,14662,14650,14649,14661,0,6,6,6,6,14358,14346,14345,14355,43,14676,14675,14663,14664,0,6,6,6,6,14359,14360,14361,14362,43,14664,14663,14678,14677,0,6,6,6,6,14362,14361,14363,14364,43,14667,14668,14665,14666,0,6,6,6,6,14365,14366,14367,14368,43,14666,14665,14669,14670,0,6,6,6,6,14368,14367,14369,14370,43,14672,14670,14669,14671,0,6,6,6,6,14371,14370,14369,14372,43,14674,14672,14671,14673,0,6,6,6,6,14373,14371,14372,14374,43,14676,14674,14673,14675,0,6,6,6,6,14359,14373,14374,14360,43,14681,14685,14686,14682,0,6,6,6,6,14375,14376,14377,14378,43,14685,14679,14680,14686,0,6,6,6,6,14376,14379,14380,14377,43,14679,14688,14687,14680,0,6,6,6,6,14379,14381,14382,14380,43,14688,14684,14683,14687,0,6,6,6,6,14381,14383,14384,14382,43,14691,14694,14693,14692,0,6,6,6,6,14385,14386,14387,14388,43,14696,14695,14698,14697,0,6,6,6,6,14389,14390,14391,14392,43,14701,14702,14700,14699,0,6,6,6,6,14393,14394,14395,14396,43,14697,14698,14702,14701,0,6,6,6,6,14392,14391,14394,14393,43,14703,14704,14690,14689,0,6,6,6,6,14397,14398,14399,14400,43,14691,14692,14704,14703,0,6,6,6,6,14385,14388,14398,14397,43,14705,14706,14681,14682,0,6,6,6,6,14401,14402,14375,14378,43,14707,14708,14683,14684,0,6,6,6,6,14403,14404,14384,14383,43,14634,14633,14695,14696,0,6,6,6,6,14330,14329,14390,14389,43,14628,14627,14689,14690,0,6,6,6,6,14336,14335,14400,14399,43,14591,14589,14651,14653,0,6,6,6,6,14285,14283,14344,14348,43,14597,14593,14655,14659,0,6,6,6,6,14289,14287,14350,14352,43,14618,14624,14686,14680,0,6,6,6,6,14317,14314,14377,14380,43,14622,14645,14707,14684,0,6,6,6,6,14322,14342,14403,14383,43,14620,14643,14705,14682,0,6,6,6,6,14313,14340,14401,14378,43,14644,14619,14681,14706,0,6,6,6,6,14339,14316,14375,14402,43,14592,14594,14656,14654,0,6,6,6,6,14286,14288,14349,14347,43,14635,14634,14696,14697,0,6,6,6,6,14327,14330,14389,14392,43,14626,14622,14684,14688,0,6,6,6,6,14320,14322,14383,14381,43,14608,14604,14666,14670,0,6,6,6,6,14307,14303,14368,14370,43,14633,14636,14698,14695,0,6,6,6,6,14329,14328,14391,14390,43,14624,14620,14682,14686,0,6,6,6,6,14314,14313,14378,14377,43,14623,14617,14679,14685,0,6,6,6,6,14315,14318,14379,14376,43,14643,14644,14706,14705,0,6,6,6,6,14340,14339,14402,14401,43,14641,14629,14691,14703,0,6,6,6,6,14338,14326,14385,14397,43,14621,14625,14687,14683,0,6,6,6,6,14321,14319,14382,14384,43,14589,14587,14649,14651,0,6,6,6,6,14283,14282,14345,14344,43,14600,14588,14650,14662,0,6,6,6,6,14293,14281,14346,14358,43,14615,14602,14664,14677,0,6,6,6,6,14301,14297,14362,14364,43,14606,14603,14665,14668,0,6,6,6,6,14305,14304,14367,14366,43,14588,14590,14652,14650,0,6,6,6,6,14281,14284,14343,14346,43,14639,14635,14697,14701,0,6,6,6,6,14334,14327,14392,14393,43,14602,14614,14676,14664,0,6,6,6,6,14297,14300,14359,14362,43,14613,14601,14663,14675,0,6,6,6,6,14299,14298,14361,14360,43,14593,14591,14653,14655,0,6,6,6,6,14287,14285,14348,14350,43,14594,14598,14660,14656,0,6,6,6,6,14288,14290,14351,14349,43,14603,14607,14669,14665,0,6,6,6,6,14304,14308,14369,14367,43,14638,14637,14699,14700,0,6,6,6,6,14332,14331,14396,14395,43,14585,14600,14662,14647,0,6,6,6,6,14294,14293,14358,14357,43,14598,14595,14657,14660,0,6,6,6,6,14290,14292,14353,14351,43,14605,14606,14668,14667,0,6,6,6,6,14306,14305,14366,14365,43,14630,14642,14704,14692,0,6,6,6,6,14323,14337,14398,14388,43,14617,14626,14688,14679,0,6,6,6,6,14318,14320,14381,14379,43,14610,14608,14670,14672,0,6,6,6,6,14310,14307,14370,14371,43,14646,14621,14683,14708,0,6,6,6,6,14341,14321,14384,14404,43,14637,14639,14701,14699,0,6,6,6,6,14331,14334,14393,14396,43,14632,14631,14693,14694,0,6,6,6,6,14325,14324,14387,14386,43,14616,14615,14677,14678,0,6,6,6,6,14302,14301,14364,14363,43,14627,14641,14703,14689,0,6,6,6,6,14335,14338,14397,14400,43,14614,14612,14674,14676,0,6,6,6,6,14300,14312,14373,14359,43,14590,14592,14654,14652,0,6,6,6,6,14284,14286,14347,14343,43,14601,14616,14678,14663,0,6,6,6,6,14298,14302,14363,14361,43,14595,14596,14658,14657,0,6,6,6,6,14292,14291,14354,14353,43,14604,14605,14667,14666,0,6,6,6,6,14303,14306,14365,14368,43,14631,14630,14692,14693,0,6,6,6,6,14324,14323,14388,14387,43,14587,14599,14661,14649,0,6,6,6,6,14282,14296,14355,14345,43,14607,14609,14671,14669,0,6,6,6,6,14308,14309,14372,14369,43,14612,14610,14672,14674,0,6,6,6,6,14312,14310,14371,14373,43,14645,14646,14708,14707,0,6,6,6,6,14342,14341,14404,14403,43,14619,14623,14685,14681,0,6,6,6,6,14316,14315,14376,14375,43,14636,14640,14702,14698,0,6,6,6,6,14328,14333,14394,14391,43,14586,14585,14647,14648,0,6,6,6,6,14295,14294,14357,14356,43,14609,14611,14673,14671,0,6,6,6,6,14309,14311,14374,14372,43,14642,14628,14690,14704,0,6,6,6,6,14337,14336,14399,14398,43,14596,14597,14659,14658,0,6,6,6,6,14291,14289,14352,14354,43,14640,14638,14700,14702,0,6,6,6,6,14333,14332,14395,14394,43,14629,14632,14694,14691,0,6,6,6,6,14326,14325,14386,14385,43,14625,14618,14680,14687,0,6,6,6,6,14319,14317,14380,14382,43,14599,14586,14648,14661,0,6,6,6,6,14296,14295,14356,14355,43,14611,14613,14675,14673,0,6,6,6,6,14311,14299,14360,14374,43,14789,14709,14711,14791,0,16,1517,0,5,14405,14406,14407,14408,43,14709,14811,14857,14711,0,1517,30,6,0,14406,14409,14410,14407,43,14709,14789,14792,14712,0,0,5,16,49,14406,14405,14411,14412,43,14811,14709,14712,14858,0,6,0,49,30,14409,14406,14412,14413,43,14717,14861,14833,14710,0,0,5,16,49,14414,14415,14416,14417,43,14797,14717,14710,14790,0,6,0,49,30,14418,14414,14417,14419,43,14711,14857,14856,14713,0,0,5,16,49,14407,14410,14420,14421,43,14791,14711,14713,14793,0,6,0,49,30,14408,14407,14421,14422,43,14714,14859,14858,14712,0,0,5,16,49,14423,14424,14413,14412,43,14794,14714,14712,14792,0,6,0,49,30,14425,14423,14412,14411,43,14715,14795,14793,14713,0,0,5,16,49,14426,14427,14422,14421,43,14863,14715,14713,14856,0,6,0,49,30,14428,14426,14421,14420,43,14718,14862,14859,14714,0,0,5,16,49,14429,14430,14424,14423,43,14798,14718,14714,14794,0,6,0,49,30,14431,14429,14423,14425,43,14715,14863,14860,14716,0,1070,5,16,49,14426,14428,14432,14433,43,14795,14715,14716,14796,0,6,1070,49,30,14427,14426,14433,14434,43,14716,14860,14861,14717,0,0,5,16,49,14433,14432,14415,14414,43,14796,14716,14717,14797,0,6,0,49,30,14434,14433,14414,14418,43,14719,14723,14724,14720,0,1518,5,16,1519,14435,14436,14437,14438,43,14725,14719,14720,14726,0,6,1518,1519,30,14439,14435,14438,14440,43,14726,14721,14722,14725,0,6,5,16,30,14440,14441,14442,14439,43,14724,14723,14728,14727,0,6,5,16,30,14437,14436,14443,14444,43,14727,14728,14729,14730,0,6,5,16,30,14444,14443,14445,14446,43,14736,14735,14732,14731,0,6,30,16,5,14447,14448,14449,14450,43,14735,14736,14734,14733,0,6,30,16,5,14448,14447,14451,14452,43,14734,14737,14738,14733,0,6,30,16,5,14451,14453,14454,14452,43,14737,14740,14739,14738,0,6,30,16,5,14453,14455,14456,14454,43,14744,14743,14742,14741,0,6,5,16,30,14457,14458,14459,14460,43,14747,14748,14743,14744,0,6,5,16,30,14461,14462,14458,14457,43,14746,14748,14747,14745,0,6,5,16,30,14463,14462,14461,14464,43,14745,14750,14749,14746,0,6,5,16,30,14464,14465,14466,14463,43,14757,14758,14756,14755,0,1254,1243,1359,1248,14467,14468,14469,14470,43,14758,14760,14759,14756,0,1243,1360,15,1359,14468,14471,14472,14469,43,14760,14753,14754,14759,0,1360,30,16,15,14471,14473,14474,14472,43,14761,14768,14767,14762,0,1360,30,16,15,14475,14476,14477,14478,43,14769,14763,14765,14770,0,1361,1243,1359,1107,14479,14480,14481,14482,43,14772,14774,14773,14771,0,1361,1243,1359,1107,14483,14484,14485,14486,43,14775,14777,14778,14776,0,6,5,16,30,14487,14488,14489,14490,43,14773,14779,14780,14771,0,5,44,50,6,14485,14491,14492,14486,43,14779,14778,14777,14780,0,44,16,30,50,14491,14489,14488,14492,43,14772,14781,14782,14774,0,5,44,50,6,14483,14493,14494,14484,43,14781,14775,14776,14782,0,44,16,30,50,14493,14487,14490,14494,43,14755,14783,14784,14757,0,1248,700,1520,1254,14470,14495,14496,14467,43,14783,14751,14752,14784,0,700,5,6,1520,14495,14497,14498,14496,43,14763,14785,14786,14765,0,1243,1521,1522,1359,14480,14499,14500,14481,43,14785,14761,14762,14786,0,1521,1360,15,1522,14499,14475,14478,14500,43,14788,14766,14764,14787,0,56,1248,1254,1523,14501,14502,14503,14504,43,14770,14788,14787,14769,0,1107,56,1523,1361,14482,14501,14504,14479,43,14791,14848,14810,14789,0,6,5,16,30,14408,14505,14506,14405,43,14789,14810,14849,14792,0,6,5,16,30,14405,14506,14507,14411,43,14854,14797,14790,14834,0,6,5,16,30,14508,14418,14419,14509,43,14848,14791,14793,14850,0,6,5,16,30,14505,14408,14422,14510,43,14851,14794,14792,14849,0,6,5,16,30,14511,14425,14411,14507,43,14795,14852,14850,14793,0,6,5,16,30,14427,14512,14510,14422,43,14855,14798,14794,14851,0,6,5,16,30,14513,14431,14425,14511,43,14852,14795,14796,14853,0,6,5,16,30,14512,14427,14434,14514,43,14853,14796,14797,14854,0,6,5,16,30,14514,14434,14418,14508,43,14799,14802,14803,14806,0,6,5,16,30,14515,14516,14517,14518,43,14802,14799,14800,14801,0,6,5,16,30,14516,14515,14519,14520,43,14806,14803,14804,14805,0,6,5,16,30,14518,14517,14521,14522,43,14810,14848,14819,14807,0,6,5,16,30,14506,14505,14523,14524,43,14849,14810,14807,14818,0,6,5,16,30,14507,14506,14524,14525,43,14807,14819,14836,14808,0,6,5,16,30,14524,14523,14526,14527,43,14818,14807,14808,14837,0,6,5,16,30,14525,14524,14527,14528,43,14808,14836,14844,14809,0,6,5,16,30,14527,14526,14529,14530,43,14837,14808,14809,14845,0,6,5,16,30,14528,14527,14530,14531,43,14813,14854,14834,14820,0,6,5,16,30,14532,14508,14509,14533,43,14842,14813,14820,14835,0,6,5,16,30,14534,14532,14533,14535,43,14819,14848,14850,14817,0,6,5,16,30,14523,14505,14510,14536,43,14836,14819,14817,14838,0,6,5,16,30,14526,14523,14536,14537,43,14816,14851,14849,14818,0,6,5,16,30,14538,14511,14507,14525,43,14839,14816,14818,14837,0,6,5,16,30,14539,14538,14525,14528,43,14817,14850,14852,14815,0,6,5,16,30,14536,14510,14512,14540,43,14838,14817,14815,14840,0,6,5,16,30,14537,14536,14540,14541,43,14812,14855,14851,14816,0,6,5,16,30,14542,14513,14511,14538,43,14843,14812,14816,14839,0,6,5,16,30,14543,14542,14538,14539,43,14815,14852,14853,14814,0,6,5,16,30,14540,14512,14514,14544,43,14840,14815,14814,14841,0,6,5,16,30,14541,14540,14544,14545,43,14814,14853,14854,14813,0,6,5,16,30,14544,14514,14508,14532,43,14841,14814,14813,14842,0,6,5,16,30,14545,14544,14532,14534,43,14821,14825,14832,14829,0,6,5,16,30,14546,14547,14548,14549,43,14822,14826,14825,14821,0,6,5,16,30,14550,14551,14547,14546,43,14823,14828,14826,14822,0,6,5,16,30,14552,14553,14551,14550,43,14824,14827,14828,14823,0,6,5,16,30,14554,14555,14553,14552,43,14829,14832,14831,14830,0,6,5,16,30,14549,14548,14556,14557,43,14844,14836,14827,14824,0,6,5,16,30,14529,14526,14555,14554,43,14841,14842,14832,14825,0,6,5,16,30,14545,14534,14548,14547,43,14840,14841,14825,14826,0,6,5,16,30,14541,14545,14547,14551,43,14838,14840,14826,14828,0,6,5,16,30,14537,14541,14551,14553,43,14836,14838,14828,14827,0,6,5,16,30,14526,14537,14553,14555,43,14842,14835,14831,14832,0,6,5,16,30,14534,14535,14556,14548,43,14846,14839,14837,14845,0,6,5,16,30,14558,14539,14528,14531,43,14847,14843,14839,14846,0,6,5,16,30,14559,14543,14539,14558,43,14894,14869,14866,14887,0,6,5,16,30,14560,14561,14562,14563,43,14869,14892,14889,14866,0,6,5,16,30,14561,14564,14565,14562,43,14896,14871,14868,14893,0,6,5,16,30,14566,14567,14568,14569,43,14871,14898,14891,14868,0,6,5,16,30,14567,14570,14571,14568,43,14888,14867,14880,14914,0,6,5,16,30,14572,14573,14574,14575,43,14867,14890,14911,14880,0,6,5,16,30,14573,14576,14577,14574,43,14916,14878,14876,14909,0,6,5,16,30,14578,14579,14580,14581,43,14878,14913,14907,14876,0,6,5,16,30,14579,14582,14583,14580,43,14910,14877,14874,14903,0,6,5,16,30,14584,14585,14586,14587,43,14877,14908,14905,14874,0,6,5,16,30,14585,14588,14589,14586,43,14904,14875,14872,14901,0,6,5,16,30,14590,14591,14592,14593,43,14875,14906,14899,14872,0,6,5,16,30,14591,14594,14595,14592,43,14884,14864,14873,14900,0,6,5,16,30,14596,14597,14598,14599,43,14864,14885,14902,14873,0,6,5,16,30,14597,14600,14601,14598,43,14918,14883,14864,14884,0,6,5,16,30,14602,14603,14597,14596,43,14883,14919,14885,14864,0,6,5,16,30,14603,14604,14600,14597,43,14886,14865,14870,14895,0,6,5,16,30,14605,14606,14607,14608,43,14865,14922,14897,14870,0,6,5,16,30,14606,14609,14610,14607,43,14921,14881,14865,14886,0,6,5,16,30,14611,14612,14606,14605,43,14881,14923,14922,14865,0,6,5,16,30,14612,14613,14609,14606,43,14890,14867,14866,14889,0,6,5,16,30,14576,14573,14562,14565,43,14867,14888,14887,14866,0,6,5,16,30,14573,14572,14563,14562,43,14892,14869,14868,14891,0,6,5,16,30,14564,14561,14568,14571,43,14869,14894,14893,14868,0,6,5,16,30,14561,14560,14569,14568,43,14898,14871,14870,14897,0,6,5,16,30,14570,14567,14607,14610,43,14871,14896,14895,14870,0,6,5,16,30,14567,14566,14608,14607,43,14900,14873,14872,14899,0,6,5,16,30,14599,14598,14592,14595,43,14873,14902,14901,14872,0,6,5,16,30,14598,14601,14593,14592,43,14906,14875,14874,14905,0,6,5,16,30,14594,14591,14586,14589,43,14875,14904,14903,14874,0,6,5,16,30,14591,14590,14587,14586,43,14908,14877,14876,14907,0,6,5,16,30,14588,14585,14580,14583,43,14877,14910,14909,14876,0,6,5,16,30,14585,14584,14581,14580,43,14915,14879,14878,14916,0,6,5,16,30,14614,14615,14579,14578,43,14879,14912,14913,14878,0,6,5,16,30,14615,14616,14582,14579,43,14914,14880,14879,14915,0,6,5,16,30,14575,14574,14615,14614,43,14880,14911,14912,14879,0,6,5,16,30,14574,14577,14616,14615,43,14920,14882,14881,14921,0,6,5,16,30,14617,14618,14612,14611,43,14882,14917,14923,14881,0,6,5,16,30,14618,14619,14613,14612,43,14919,14883,14882,14920,0,6,5,16,30,14604,14603,14618,14617,43,14883,14918,14917,14882,0,6,5,16,30,14603,14602,14619,14618,43,14925,14924,14929,14928,0,6,5,16,30,14620,14621,14622,14623,43,14941,14950,14924,14925,0,6,5,16,30,14624,14625,14621,14620,43,14924,14926,14927,14929,0,6,5,16,30,14621,14626,14627,14622,43,14950,14933,14926,14924,0,6,5,16,30,14625,14628,14626,14621,43,14928,14929,14946,14942,0,6,5,16,30,14623,14622,14629,14630,43,14929,14927,14936,14946,0,6,5,16,30,14622,14627,14631,14629,43,14942,14946,14947,14939,0,6,5,16,30,14630,14629,14632,14633,43,14946,14936,14934,14947,0,6,5,16,30,14629,14631,14634,14632,43,14931,14932,14945,14944,0,6,5,16,30,14635,14636,14637,14638,43,14943,14948,14932,14931,0,6,5,16,30,14639,14640,14636,14635,43,14932,14930,14938,14945,0,6,5,16,30,14636,14641,14642,14637,43,14948,14937,14930,14932,0,6,5,16,30,14640,14643,14641,14636,43,14944,14945,14949,14940,0,6,5,16,30,14638,14637,14644,14645,43,14948,14943,14939,14947,0,6,5,16,30,14640,14639,14633,14632,43,14945,14938,14935,14949,0,6,5,16,30,14637,14642,14646,14644,43,14947,14934,14937,14948,0,6,5,16,30,14632,14634,14643,14640,43,14968,14952,14958,14974,0,6,5,16,30,14647,14648,14649,14650,43,14970,14954,14957,14973,0,6,5,16,30,14651,14652,14653,14654,43,14969,14953,14956,14972,0,6,5,16,30,14655,14656,14657,14658,43,14974,14958,14955,14971,0,6,5,16,30,14650,14649,14659,14660,43,14972,14956,14954,14970,0,6,5,16,30,14658,14657,14652,14651,43,14973,14957,14952,14968,0,6,5,16,30,14654,14653,14648,14647,43,14967,14951,14953,14969,0,6,5,16,30,14661,14662,14656,14655,43,14959,14958,14952,14965,0,6,5,16,30,14663,14649,14648,14664,43,14960,14957,14954,14966,0,6,5,16,30,14665,14653,14652,14666,43,14961,14956,14953,14964,0,6,5,16,30,14667,14657,14656,14668,43,14959,14962,14955,14958,0,6,5,16,30,14663,14669,14659,14649,43,14956,14961,14966,14954,0,6,5,16,30,14657,14667,14666,14652,43,14957,14960,14965,14952,0,6,5,16,30,14653,14665,14664,14648,43,14953,14951,14963,14964,0,6,5,16,30,14656,14662,14670,14668,43,14977,14997,14991,14982,0,6,5,16,30,14671,14672,14673,14674,43,14979,14995,14992,14981,0,6,5,16,30,14675,14676,14677,14678,43,14978,14996,14993,14980,0,6,5,16,30,14679,14680,14681,14682,43,14982,14991,14994,14976,0,6,5,16,30,14674,14673,14683,14684,43,14980,14993,14995,14979,0,6,5,16,30,14682,14681,14676,14675,43,14981,14992,14997,14977,0,6,5,16,30,14678,14677,14672,14671,43,14975,14998,14996,14978,0,6,5,16,30,14685,14686,14680,14679,43,14990,14977,14982,14983,0,6,5,16,30,14687,14671,14674,14688,43,14981,14984,14989,14979,0,6,5,16,30,14678,14689,14690,14675,43,14988,14978,14980,14985,0,6,5,16,30,14691,14679,14682,14692,43,14986,14975,14978,14988,0,6,5,16,30,14693,14685,14679,14691,43,14983,14982,14976,14987,0,6,5,16,30,14688,14674,14684,14694,43,14984,14981,14977,14990,0,6,5,16,30,14689,14678,14671,14687,43,14985,14980,14979,14989,0,6,5,16,30,14692,14682,14675,14690,43,14999,15002,15003,15006,0,6,5,16,30,14695,14696,14697,14698,43,15002,14999,15000,15001,0,6,5,16,30,14696,14695,14699,14700,43,15006,15003,15004,15005,0,6,5,16,30,14698,14697,14701,14702,43,15007,15010,15009,15008,0,6,5,16,30,14703,14704,14705,14706,43,15011,15014,15013,15012,0,6,5,16,30,14707,14708,14709,14710,43,15014,15011,15010,15007,0,6,5,16,30,14708,14707,14704,14703,43,15015,15018,15017,15016,0,6,5,16,30,14711,14712,14713,14714,43,15019,15022,15021,15020,0,6,5,16,30,14715,14716,14717,14718,43,15022,15019,15018,15015,0,6,5,16,30,14716,14715,14712,14711,43,15023,15026,15027,15030,0,6,5,16,30,14719,14720,14721,14722,43,15026,15023,15024,15025,0,6,5,16,30,14720,14719,14723,14724,43,15030,15027,15028,15029,0,6,5,16,30,14722,14721,14725,14726,43,15031,15034,15033,15032,0,6,5,16,30,14727,14728,14729,14730,43,15035,15038,15037,15036,0,6,5,16,30,14731,14732,14733,14734,43,15038,15035,15034,15031,0,6,5,16,30,14732,14731,14728,14727,43,15039,15042,15041,15040,0,6,5,16,30,14735,14736,14737,14738,43,15043,15046,15045,15044,0,6,5,16,30,14739,14740,14741,14742,43,15046,15043,15042,15039,0,6,5,16,30,14740,14739,14736,14735,43,15047,15050,15051,15054,0,6,5,16,30,14743,14744,14745,14746,43,15050,15047,15048,15049,0,6,5,16,30,14744,14743,14747,14748,43,15054,15051,15052,15053,0,6,5,16,30,14746,14745,14749,14750,43,15055,15058,15057,15056,0,6,5,16,30,14751,14752,14753,14754,43,15059,15062,15061,15060,0,6,5,16,30,14755,14756,14757,14758,43,15062,15059,15058,15055,0,6,5,16,30,14756,14755,14752,14751,43,15063,15066,15065,15064,0,6,5,16,30,14759,14760,14761,14762,43,15067,15070,15069,15068,0,6,5,16,30,14763,14764,14765,14766,43,15070,15067,15066,15063,0,6,5,16,30,14764,14763,14760,14759,43,15071,15074,15075,15078,0,6,5,16,30,14767,14768,14769,14770,43,15074,15071,15072,15073,0,6,5,16,30,14768,14767,14771,14772,43,15078,15075,15076,15077,0,6,5,16,30,14770,14769,14773,14774,43,15079,15082,15081,15080,0,6,5,16,30,14775,14776,14777,14778,43,15083,15086,15085,15084,0,6,5,16,30,14779,14780,14781,14782,43,15086,15083,15082,15079,0,6,5,16,30,14780,14779,14776,14775,43,15087,15090,15091,15094,0,6,5,16,30,14783,14784,14785,14786,43,15090,15087,15088,15089,0,6,5,16,30,14784,14783,14787,14788,43,15094,15091,15092,15093,0,6,5,16,30,14786,14785,14789,14790,43,15095,15098,15097,15096,0,6,5,16,30,14791,14792,14793,14794,43,15099,15102,15101,15100,0,6,5,16,30,14795,14796,14797,14798,43,15102,15099,15098,15095,0,6,5,16,30,14796,14795,14792,14791,43,15107,15110,15103,15106,0,6,5,16,30,14799,14800,14801,14802,43,15106,15103,15104,15105,0,6,5,16,30,14802,14801,14803,14804,43,15110,15107,15108,15109,0,6,5,16,30,14800,14799,14805,14806,43,15191,15193,15113,15111,0,16,5,0,1517,14807,14808,14809,14810,43,15111,15113,15259,15213,0,1517,0,6,30,14810,14809,14811,14812,43,15111,15114,15194,15191,0,0,49,16,5,14810,14813,14814,14807,43,15213,15260,15114,15111,0,6,30,49,0,14812,14815,14813,14810,43,15119,15112,15235,15263,0,0,49,16,5,14816,14817,14818,14819,43,15199,15192,15112,15119,0,6,30,49,0,14820,14821,14817,14816,43,15113,15115,15258,15259,0,0,49,16,5,14809,14822,14823,14811,43,15193,15195,15115,15113,0,6,30,49,0,14808,14824,14822,14809,43,15116,15114,15260,15261,0,0,49,16,5,14825,14813,14815,14826,43,15196,15194,15114,15116,0,6,30,49,0,14827,14814,14813,14825,43,15117,15115,15195,15197,0,0,49,16,5,14828,14822,14824,14829,43,15265,15258,15115,15117,0,6,30,49,0,14830,14823,14822,14828,43,15120,15116,15261,15264,0,0,49,16,5,14831,14825,14826,14832,43,15200,15196,15116,15120,0,6,30,49,0,14833,14827,14825,14831,43,15117,15118,15262,15265,0,1070,49,16,5,14828,14834,14835,14830,43,15197,15198,15118,15117,0,6,30,49,1070,14829,14836,14834,14828,43,15118,15119,15263,15262,0,0,49,16,5,14834,14816,14819,14835,43,15198,15199,15119,15118,0,6,30,49,0,14836,14820,14816,14834,43,15121,15122,15126,15125,0,1518,1519,16,5,14837,14838,14839,14840,43,15127,15128,15122,15121,0,6,30,1519,1518,14841,14842,14838,14837,43,15128,15127,15124,15123,0,6,30,16,5,14842,14841,14843,14844,43,15126,15129,15130,15125,0,6,30,16,5,14839,14845,14846,14840,43,15129,15132,15131,15130,0,6,30,16,5,14845,14847,14848,14846,43,15138,15133,15134,15137,0,6,5,16,30,14849,14850,14851,14852,43,15137,15135,15136,15138,0,6,5,16,30,14852,14853,14854,14849,43,15136,15135,15140,15139,0,6,5,16,30,14854,14853,14855,14856,43,15139,15140,15141,15142,0,6,5,16,30,14856,14855,14857,14858,43,15146,15143,15144,15145,0,6,30,16,5,14859,14860,14861,14862,43,15149,15146,15145,15150,0,6,30,16,5,14863,14859,14862,14864,43,15148,15147,15149,15150,0,6,30,16,5,14865,14866,14863,14864,43,15147,15148,15151,15152,0,6,30,16,5,14866,14865,14867,14868,43,15159,15157,15158,15160,0,1254,1248,1359,1243,14869,14870,14871,14872,43,15160,15158,15161,15162,0,1243,1359,15,1360,14872,14871,14873,14874,43,15162,15161,15156,15155,0,1360,15,16,30,14874,14873,14875,14876,43,15163,15164,15169,15170,0,1360,15,16,30,14877,14878,14879,14880,43,15171,15172,15167,15165,0,1361,1107,1359,1243,14881,14882,14883,14884,43,15174,15173,15175,15176,0,1361,1107,1359,1243,14885,14886,14887,14888,43,15177,15178,15180,15179,0,6,30,16,5,14889,14890,14891,14892,43,15175,15173,15182,15181,0,5,6,50,44,14887,14886,14893,14894,43,15181,15182,15179,15180,0,44,50,30,16,14894,14893,14892,14891,43,15174,15176,15184,15183,0,5,6,50,44,14885,14888,14895,14896,43,15183,15184,15178,15177,0,44,50,30,16,14896,14895,14890,14889,43,15157,15159,15186,15185,0,1248,1254,1520,700,14870,14869,14897,14898,43,15185,15186,15154,15153,0,700,1520,6,5,14898,14897,14899,14900,43,15165,15167,15188,15187,0,1243,1359,1522,1521,14884,14883,14901,14902,43,15187,15188,15164,15163,0,1521,1522,15,1360,14902,14901,14878,14877,43,15190,15189,15166,15168,0,56,1523,1254,1248,14903,14904,14905,14906,43,15172,15171,15189,15190,0,1107,1361,1523,56,14882,14881,14904,14903,43,15193,15191,15212,15250,0,6,30,16,5,14808,14807,14907,14908,43,15191,15194,15251,15212,0,6,30,16,5,14807,14814,14909,14907,43,15256,15236,15192,15199,0,6,30,16,5,14910,14911,14821,14820,43,15250,15252,15195,15193,0,6,30,16,5,14908,14912,14824,14808,43,15253,15251,15194,15196,0,6,30,16,5,14913,14909,14814,14827,43,15197,15195,15252,15254,0,6,30,16,5,14829,14824,14912,14914,43,15257,15253,15196,15200,0,6,30,16,5,14915,14913,14827,14833,43,15254,15255,15198,15197,0,6,30,16,5,14914,14916,14836,14829,43,15255,15256,15199,15198,0,6,30,16,5,14916,14910,14820,14836,43,15201,15208,15205,15204,0,6,30,16,5,14917,14918,14919,14920,43,15204,15203,15202,15201,0,6,30,16,5,14920,14921,14922,14917,43,15208,15207,15206,15205,0,6,30,16,5,14918,14923,14924,14919,43,15212,15209,15221,15250,0,6,30,16,5,14907,14925,14926,14908,43,15251,15220,15209,15212,0,6,30,16,5,14909,14927,14925,14907,43,15209,15210,15238,15221,0,6,30,16,5,14925,14928,14929,14926,43,15220,15239,15210,15209,0,6,30,16,5,14927,14930,14928,14925,43,15210,15211,15246,15238,0,6,30,16,5,14928,14931,14932,14929,43,15239,15247,15211,15210,0,6,30,16,5,14930,14933,14931,14928,43,15215,15222,15236,15256,0,6,30,16,5,14934,14935,14911,14910,43,15244,15237,15222,15215,0,6,30,16,5,14936,14937,14935,14934,43,15221,15219,15252,15250,0,6,30,16,5,14926,14938,14912,14908,43,15238,15240,15219,15221,0,6,30,16,5,14929,14939,14938,14926,43,15218,15220,15251,15253,0,6,30,16,5,14940,14927,14909,14913,43,15241,15239,15220,15218,0,6,30,16,5,14941,14930,14927,14940,43,15219,15217,15254,15252,0,6,30,16,5,14938,14942,14914,14912,43,15240,15242,15217,15219,0,6,30,16,5,14939,14943,14942,14938,43,15214,15218,15253,15257,0,6,30,16,5,14944,14940,14913,14915,43,15245,15241,15218,15214,0,6,30,16,5,14945,14941,14940,14944,43,15217,15216,15255,15254,0,6,30,16,5,14942,14946,14916,14914,43,15242,15243,15216,15217,0,6,30,16,5,14943,14947,14946,14942,43,15216,15215,15256,15255,0,6,30,16,5,14946,14934,14910,14916,43,15243,15244,15215,15216,0,6,30,16,5,14947,14936,14934,14946,43,15223,15231,15234,15227,0,6,30,16,5,14948,14949,14950,14951,43,15224,15223,15227,15228,0,6,30,16,5,14952,14948,14951,14953,43,15225,15224,15228,15230,0,6,30,16,5,14954,14952,14953,14955,43,15226,15225,15230,15229,0,6,30,16,5,14956,14954,14955,14957,43,15231,15232,15233,15234,0,6,30,16,5,14949,14958,14959,14950,43,15246,15226,15229,15238,0,6,30,16,5,14932,14956,14957,14929,43,15243,15227,15234,15244,0,6,30,16,5,14947,14951,14950,14936,43,15242,15228,15227,15243,0,6,30,16,5,14943,14953,14951,14947,43,15240,15230,15228,15242,0,6,30,16,5,14939,14955,14953,14943,43,15238,15229,15230,15240,0,6,30,16,5,14929,14957,14955,14939,43,15244,15234,15233,15237,0,6,30,16,5,14936,14950,14959,14937,43,15248,15247,15239,15241,0,6,30,16,5,14960,14933,14930,14941,43,15249,15248,15241,15245,0,6,30,16,5,14961,14960,14941,14945,43,15296,15289,15268,15271,0,6,30,16,5,14962,14963,14964,14965,43,15271,15268,15291,15294,0,6,30,16,5,14965,14964,14966,14967,43,15298,15295,15270,15273,0,6,30,16,5,14968,14969,14970,14971,43,15273,15270,15293,15300,0,6,30,16,5,14971,14970,14972,14973,43,15290,15316,15282,15269,0,6,30,16,5,14974,14975,14976,14977,43,15269,15282,15313,15292,0,6,30,16,5,14977,14976,14978,14979,43,15318,15311,15278,15280,0,6,30,16,5,14980,14981,14982,14983,43,15280,15278,15309,15315,0,6,30,16,5,14983,14982,14984,14985,43,15312,15305,15276,15279,0,6,30,16,5,14986,14987,14988,14989,43,15279,15276,15307,15310,0,6,30,16,5,14989,14988,14990,14991,43,15306,15303,15274,15277,0,6,30,16,5,14992,14993,14994,14995,43,15277,15274,15301,15308,0,6,30,16,5,14995,14994,14996,14997,43,15286,15302,15275,15266,0,6,30,16,5,14998,14999,15000,15001,43,15266,15275,15304,15287,0,6,30,16,5,15001,15000,15002,15003,43,15320,15286,15266,15285,0,6,30,16,5,15004,14998,15001,15005,43,15285,15266,15287,15321,0,6,30,16,5,15005,15001,15003,15006,43,15288,15297,15272,15267,0,6,30,16,5,15007,15008,15009,15010,43,15267,15272,15299,15324,0,6,30,16,5,15010,15009,15011,15012,43,15323,15288,15267,15283,0,6,30,16,5,15013,15007,15010,15014,43,15283,15267,15324,15325,0,6,30,16,5,15014,15010,15012,15015,43,15292,15291,15268,15269,0,6,30,16,5,14979,14966,14964,14977,43,15269,15268,15289,15290,0,6,30,16,5,14977,14964,14963,14974,43,15294,15293,15270,15271,0,6,30,16,5,14967,14972,14970,14965,43,15271,15270,15295,15296,0,6,30,16,5,14965,14970,14969,14962,43,15300,15299,15272,15273,0,6,30,16,5,14973,15011,15009,14971,43,15273,15272,15297,15298,0,6,30,16,5,14971,15009,15008,14968,43,15302,15301,15274,15275,0,6,30,16,5,14999,14996,14994,15000,43,15275,15274,15303,15304,0,6,30,16,5,15000,14994,14993,15002,43,15308,15307,15276,15277,0,6,30,16,5,14997,14990,14988,14995,43,15277,15276,15305,15306,0,6,30,16,5,14995,14988,14987,14992,43,15310,15309,15278,15279,0,6,30,16,5,14991,14984,14982,14989,43,15279,15278,15311,15312,0,6,30,16,5,14989,14982,14981,14986,43,15317,15318,15280,15281,0,6,30,16,5,15016,14980,14983,15017,43,15281,15280,15315,15314,0,6,30,16,5,15017,14983,14985,15018,43,15316,15317,15281,15282,0,6,30,16,5,14975,15016,15017,14976,43,15282,15281,15314,15313,0,6,30,16,5,14976,15017,15018,14978,43,15322,15323,15283,15284,0,6,30,16,5,15019,15013,15014,15020,43,15284,15283,15325,15319,0,6,30,16,5,15020,15014,15015,15021,43,15321,15322,15284,15285,0,6,30,16,5,15006,15019,15020,15005,43,15285,15284,15319,15320,0,6,30,16,5,15005,15020,15021,15004,43,15327,15330,15331,15326,0,6,30,16,5,15022,15023,15024,15025,43,15343,15327,15326,15352,0,6,30,16,5,15026,15022,15025,15027,43,15326,15331,15329,15328,0,6,30,16,5,15025,15024,15028,15029,43,15352,15326,15328,15335,0,6,30,16,5,15027,15025,15029,15030,43,15330,15344,15348,15331,0,6,30,16,5,15023,15031,15032,15024,43,15331,15348,15338,15329,0,6,30,16,5,15024,15032,15033,15028,43,15344,15341,15349,15348,0,6,30,16,5,15031,15034,15035,15032,43,15348,15349,15336,15338,0,6,30,16,5,15032,15035,15036,15033,43,15333,15346,15347,15334,0,6,30,16,5,15037,15038,15039,15040,43,15345,15333,15334,15350,0,6,30,16,5,15041,15037,15040,15042,43,15334,15347,15340,15332,0,6,30,16,5,15040,15039,15043,15044,43,15350,15334,15332,15339,0,6,30,16,5,15042,15040,15044,15045,43,15346,15342,15351,15347,0,6,30,16,5,15038,15046,15047,15039,43,15350,15349,15341,15345,0,6,30,16,5,15042,15035,15034,15041,43,15347,15351,15337,15340,0,6,30,16,5,15039,15047,15048,15043,43,15349,15350,15339,15336,0,6,30,16,5,15035,15042,15045,15036,43,15370,15376,15360,15354,0,6,30,16,5,15049,15050,15051,15052,43,15372,15375,15359,15356,0,6,30,16,5,15053,15054,15055,15056,43,15371,15374,15358,15355,0,6,30,16,5,15057,15058,15059,15060,43,15376,15373,15357,15360,0,6,30,16,5,15050,15061,15062,15051,43,15374,15372,15356,15358,0,6,30,16,5,15058,15053,15056,15059,43,15375,15370,15354,15359,0,6,30,16,5,15054,15049,15052,15055,43,15369,15371,15355,15353,0,6,30,16,5,15063,15057,15060,15064,43,15361,15367,15354,15360,0,6,30,16,5,15065,15066,15052,15051,43,15362,15368,15356,15359,0,6,30,16,5,15067,15068,15056,15055,43,15363,15366,15355,15358,0,6,30,16,5,15069,15070,15060,15059,43,15361,15360,15357,15364,0,6,30,16,5,15065,15051,15062,15071,43,15358,15356,15368,15363,0,6,30,16,5,15059,15056,15068,15069,43,15359,15354,15367,15362,0,6,30,16,5,15055,15052,15066,15067,43,15355,15366,15365,15353,0,6,30,16,5,15060,15070,15072,15064,43,15379,15384,15393,15399,0,6,30,16,5,15073,15074,15075,15076,43,15381,15383,15394,15397,0,6,30,16,5,15077,15078,15079,15080,43,15380,15382,15395,15398,0,6,30,16,5,15081,15082,15083,15084,43,15384,15378,15396,15393,0,6,30,16,5,15074,15085,15086,15075,43,15382,15381,15397,15395,0,6,30,16,5,15082,15077,15080,15083,43,15383,15379,15399,15394,0,6,30,16,5,15078,15073,15076,15079,43,15377,15380,15398,15400,0,6,30,16,5,15087,15081,15084,15088,43,15392,15385,15384,15379,0,6,30,16,5,15089,15090,15074,15073,43,15383,15381,15391,15386,0,6,30,16,5,15078,15077,15091,15092,43,15390,15387,15382,15380,0,6,30,16,5,15093,15094,15082,15081,43,15388,15390,15380,15377,0,6,30,16,5,15095,15093,15081,15087,43,15385,15389,15378,15384,0,6,30,16,5,15090,15096,15085,15074,43,15386,15392,15379,15383,0,6,30,16,5,15092,15089,15073,15078,43,15387,15391,15381,15382,0,6,30,16,5,15094,15091,15077,15082,43,15401,15408,15405,15404,0,6,30,16,5,15097,15098,15099,15100,43,15404,15403,15402,15401,0,6,30,16,5,15100,15101,15102,15097,43,15408,15407,15406,15405,0,6,30,16,5,15098,15103,15104,15099,43,15409,15410,15411,15412,0,6,30,16,5,15105,15106,15107,15108,43,15413,15414,15415,15416,0,6,30,16,5,15109,15110,15111,15112,43,15416,15409,15412,15413,0,6,30,16,5,15112,15105,15108,15109,43,15417,15418,15419,15420,0,6,30,16,5,15113,15114,15115,15116,43,15421,15422,15423,15424,0,6,30,16,5,15117,15118,15119,15120,43,15424,15417,15420,15421,0,6,30,16,5,15120,15113,15116,15117,43,15425,15432,15429,15428,0,6,30,16,5,15121,15122,15123,15124,43,15428,15427,15426,15425,0,6,30,16,5,15124,15125,15126,15121,43,15432,15431,15430,15429,0,6,30,16,5,15122,15127,15128,15123,43,15433,15434,15435,15436,0,6,30,16,5,15129,15130,15131,15132,43,15437,15438,15439,15440,0,6,30,16,5,15133,15134,15135,15136,43,15440,15433,15436,15437,0,6,30,16,5,15136,15129,15132,15133,43,15441,15442,15443,15444,0,6,30,16,5,15137,15138,15139,15140,43,15445,15446,15447,15448,0,6,30,16,5,15141,15142,15143,15144,43,15448,15441,15444,15445,0,6,30,16,5,15144,15137,15140,15141,43,15449,15456,15453,15452,0,6,30,16,5,15145,15146,15147,15148,43,15452,15451,15450,15449,0,6,30,16,5,15148,15149,15150,15145,43,15456,15455,15454,15453,0,6,30,16,5,15146,15151,15152,15147,43,15457,15458,15459,15460,0,6,30,16,5,15153,15154,15155,15156,43,15461,15462,15463,15464,0,6,30,16,5,15157,15158,15159,15160,43,15464,15457,15460,15461,0,6,30,16,5,15160,15153,15156,15157,43,15465,15466,15467,15468,0,6,30,16,5,15161,15162,15163,15164,43,15469,15470,15471,15472,0,6,30,16,5,15165,15166,15167,15168,43,15472,15465,15468,15469,0,6,30,16,5,15168,15161,15164,15165,43,15473,15480,15477,15476,0,6,30,16,5,15169,15170,15171,15172,43,15476,15475,15474,15473,0,6,30,16,5,15172,15173,15174,15169,43,15480,15479,15478,15477,0,6,30,16,5,15170,15175,15176,15171,43,15481,15482,15483,15484,0,6,30,16,5,15177,15178,15179,15180,43,15485,15486,15487,15488,0,6,30,16,5,15181,15182,15183,15184,43,15488,15481,15484,15485,0,6,30,16,5,15184,15177,15180,15181,43,15489,15496,15493,15492,0,6,30,16,5,15185,15186,15187,15188,43,15492,15491,15490,15489,0,6,30,16,5,15188,15189,15190,15185,43,15496,15495,15494,15493,0,6,30,16,5,15186,15191,15192,15187,43,15497,15498,15499,15500,0,6,30,16,5,15193,15194,15195,15196,43,15501,15502,15503,15504,0,6,30,16,5,15197,15198,15199,15200,43,15504,15497,15500,15501,0,6,30,16,5,15200,15193,15196,15197,43,15509,15508,15505,15512,0,6,30,16,5,15201,15202,15203,15204,43,15508,15507,15506,15505,0,6,30,16,5,15202,15205,15206,15203,43,15512,15511,15510,15509,0,6,30,16,5,15204,15207,15208,15201,43,15595,15515,15513,15593,0,5,0,1517,16,15209,15210,15211,15212,43,15515,15661,15615,15513,0,0,6,30,1517,15210,15213,15214,15211,43,15516,15596,15593,15513,0,49,16,5,0,15215,15216,15212,15211,43,15662,15516,15513,15615,0,30,49,0,6,15217,15215,15211,15214,43,15514,15637,15665,15521,0,49,16,5,0,15218,15219,15220,15221,43,15594,15514,15521,15601,0,30,49,0,6,15222,15218,15221,15223,43,15517,15660,15661,15515,0,49,16,5,0,15224,15225,15213,15210,43,15597,15517,15515,15595,0,30,49,0,6,15226,15224,15210,15209,43,15516,15662,15663,15518,0,49,16,5,0,15215,15217,15227,15228,43,15596,15516,15518,15598,0,30,49,0,6,15216,15215,15228,15229,43,15517,15597,15599,15519,0,49,16,5,0,15224,15226,15230,15231,43,15660,15517,15519,15667,0,30,49,0,6,15225,15224,15231,15232,43,15518,15663,15666,15522,0,49,16,5,0,15228,15227,15233,15234,43,15598,15518,15522,15602,0,30,49,0,6,15229,15228,15234,15235,43,15520,15664,15667,15519,0,49,16,5,1070,15236,15237,15232,15231,43,15600,15520,15519,15599,0,30,49,1070,6,15238,15236,15231,15230,43,15521,15665,15664,15520,0,49,16,5,0,15221,15220,15237,15236,43,15601,15521,15520,15600,0,30,49,0,6,15223,15221,15236,15238,43,15524,15528,15527,15523,0,1519,16,5,1518,15239,15240,15241,15242,43,15530,15524,15523,15529,0,30,1519,1518,6,15243,15239,15242,15244,43,15529,15526,15525,15530,0,30,16,5,6,15244,15245,15246,15243,43,15531,15532,15527,15528,0,30,16,5,6,15247,15248,15241,15240,43,15534,15533,15532,15531,0,30,16,5,6,15249,15250,15248,15247,43,15535,15536,15539,15540,0,5,16,30,6,15251,15252,15253,15254,43,15537,15538,15540,15539,0,5,16,30,6,15255,15256,15254,15253,43,15537,15542,15541,15538,0,5,16,30,6,15255,15257,15258,15256,43,15542,15543,15544,15541,0,5,16,30,6,15257,15259,15260,15258,43,15545,15546,15547,15548,0,30,16,5,6,15261,15262,15263,15264,43,15548,15547,15552,15551,0,30,16,5,6,15264,15263,15265,15266,43,15549,15551,15552,15550,0,30,16,5,6,15267,15266,15265,15268,43,15550,15553,15554,15549,0,30,16,5,6,15268,15269,15270,15267,43,15559,15560,15562,15561,0,1248,1359,1243,1254,15271,15272,15273,15274,43,15560,15563,15564,15562,0,1359,15,1360,1243,15272,15275,15276,15273,43,15563,15558,15557,15564,0,15,16,30,1360,15275,15277,15278,15276,43,15566,15571,15572,15565,0,15,16,30,1360,15279,15280,15281,15282,43,15574,15569,15567,15573,0,1107,1359,1243,1361,15283,15284,15285,15286,43,15575,15577,15578,15576,0,1107,1359,1243,1361,15287,15288,15289,15290,43,15580,15582,15581,15579,0,30,16,5,6,15291,15292,15293,15294,43,15575,15584,15583,15577,0,6,50,44,5,15287,15295,15296,15288,43,15584,15581,15582,15583,0,50,30,16,44,15295,15293,15292,15296,43,15578,15586,15585,15576,0,6,50,44,5,15289,15297,15298,15290,43,15586,15580,15579,15585,0,50,30,16,44,15297,15291,15294,15298,43,15561,15588,15587,15559,0,1254,1520,700,1248,15274,15299,15300,15271,43,15588,15556,15555,15587,0,1520,6,5,700,15299,15301,15302,15300,43,15569,15590,15589,15567,0,1359,1522,1521,1243,15284,15303,15304,15285,43,15590,15566,15565,15589,0,1522,15,1360,1521,15303,15279,15282,15304,43,15591,15568,15570,15592,0,1523,1254,1248,56,15305,15306,15307,15308,43,15573,15591,15592,15574,0,1361,1523,56,1107,15286,15305,15308,15283,43,15593,15614,15652,15595,0,30,16,5,6,15212,15309,15310,15209,43,15596,15653,15614,15593,0,30,16,5,6,15216,15311,15309,15212,43,15638,15594,15601,15658,0,30,16,5,6,15312,15222,15223,15313,43,15654,15597,15595,15652,0,30,16,5,6,15314,15226,15209,15310,43,15653,15596,15598,15655,0,30,16,5,6,15311,15216,15229,15315,43,15597,15654,15656,15599,0,30,16,5,6,15226,15314,15316,15230,43,15655,15598,15602,15659,0,30,16,5,6,15315,15229,15235,15317,43,15657,15600,15599,15656,0,30,16,5,6,15318,15238,15230,15316,43,15658,15601,15600,15657,0,30,16,5,6,15313,15223,15238,15318,43,15610,15607,15606,15603,0,30,16,5,6,15319,15320,15321,15322,43,15605,15604,15603,15606,0,30,16,5,6,15323,15324,15322,15321,43,15609,15608,15607,15610,0,30,16,5,6,15325,15326,15320,15319,43,15611,15623,15652,15614,0,30,16,5,6,15327,15328,15310,15309,43,15622,15611,15614,15653,0,30,16,5,6,15329,15327,15309,15311,43,15612,15640,15623,15611,0,30,16,5,6,15330,15331,15328,15327,43,15641,15612,15611,15622,0,30,16,5,6,15332,15330,15327,15329,43,15613,15648,15640,15612,0,30,16,5,6,15333,15334,15331,15330,43,15649,15613,15612,15641,0,30,16,5,6,15335,15333,15330,15332,43,15624,15638,15658,15617,0,30,16,5,6,15336,15312,15313,15337,43,15639,15624,15617,15646,0,30,16,5,6,15338,15336,15337,15339,43,15621,15654,15652,15623,0,30,16,5,6,15340,15314,15310,15328,43,15642,15621,15623,15640,0,30,16,5,6,15341,15340,15328,15331,43,15622,15653,15655,15620,0,30,16,5,6,15329,15311,15315,15342,43,15641,15622,15620,15643,0,30,16,5,6,15332,15329,15342,15343,43,15619,15656,15654,15621,0,30,16,5,6,15344,15316,15314,15340,43,15644,15619,15621,15642,0,30,16,5,6,15345,15344,15340,15341,43,15620,15655,15659,15616,0,30,16,5,6,15342,15315,15317,15346,43,15643,15620,15616,15647,0,30,16,5,6,15343,15342,15346,15347,43,15618,15657,15656,15619,0,30,16,5,6,15348,15318,15316,15344,43,15645,15618,15619,15644,0,30,16,5,6,15349,15348,15344,15345,43,15617,15658,15657,15618,0,30,16,5,6,15337,15313,15318,15348,43,15646,15617,15618,15645,0,30,16,5,6,15339,15337,15348,15349,43,15633,15636,15629,15625,0,30,16,5,6,15350,15351,15352,15353,43,15625,15629,15630,15626,0,30,16,5,6,15353,15352,15354,15355,43,15626,15630,15632,15627,0,30,16,5,6,15355,15354,15356,15357,43,15627,15632,15631,15628,0,30,16,5,6,15357,15356,15358,15359,43,15634,15635,15636,15633,0,30,16,5,6,15360,15361,15351,15350,43,15628,15631,15640,15648,0,30,16,5,6,15359,15358,15331,15334,43,15629,15636,15646,15645,0,30,16,5,6,15352,15351,15339,15349,43,15630,15629,15645,15644,0,30,16,5,6,15354,15352,15349,15345,43,15632,15630,15644,15642,0,30,16,5,6,15356,15354,15345,15341,43,15631,15632,15642,15640,0,30,16,5,6,15358,15356,15341,15331,43,15636,15635,15639,15646,0,30,16,5,6,15351,15361,15338,15339,43,15649,15641,15643,15650,0,30,16,5,6,15335,15332,15343,15362,43,15650,15643,15647,15651,0,30,16,5,6,15362,15343,15347,15363,43,15691,15670,15673,15698,0,30,16,5,6,15364,15365,15366,15367,43,15670,15693,15696,15673,0,30,16,5,6,15365,15368,15369,15366,43,15697,15672,15675,15700,0,30,16,5,6,15370,15371,15372,15373,43,15672,15695,15702,15675,0,30,16,5,6,15371,15374,15375,15372,43,15718,15684,15671,15692,0,30,16,5,6,15376,15377,15378,15379,43,15684,15715,15694,15671,0,30,16,5,6,15377,15380,15381,15378,43,15713,15680,15682,15720,0,30,16,5,6,15382,15383,15384,15385,43,15680,15711,15717,15682,0,30,16,5,6,15383,15386,15387,15384,43,15707,15678,15681,15714,0,30,16,5,6,15388,15389,15390,15391,43,15678,15709,15712,15681,0,30,16,5,6,15389,15392,15393,15390,43,15705,15676,15679,15708,0,30,16,5,6,15394,15395,15396,15397,43,15676,15703,15710,15679,0,30,16,5,6,15395,15398,15399,15396,43,15704,15677,15668,15688,0,30,16,5,6,15400,15401,15402,15403,43,15677,15706,15689,15668,0,30,16,5,6,15401,15404,15405,15402,43,15688,15668,15687,15722,0,30,16,5,6,15403,15402,15406,15407,43,15668,15689,15723,15687,0,30,16,5,6,15402,15405,15408,15406,43,15699,15674,15669,15690,0,30,16,5,6,15409,15410,15411,15412,43,15674,15701,15726,15669,0,30,16,5,6,15410,15413,15414,15411,43,15690,15669,15685,15725,0,30,16,5,6,15412,15411,15415,15416,43,15669,15726,15727,15685,0,30,16,5,6,15411,15414,15417,15415,43,15693,15670,15671,15694,0,30,16,5,6,15368,15365,15378,15381,43,15670,15691,15692,15671,0,30,16,5,6,15365,15364,15379,15378,43,15695,15672,15673,15696,0,30,16,5,6,15374,15371,15366,15369,43,15672,15697,15698,15673,0,30,16,5,6,15371,15370,15367,15366,43,15701,15674,15675,15702,0,30,16,5,6,15413,15410,15372,15375,43,15674,15699,15700,15675,0,30,16,5,6,15410,15409,15373,15372,43,15703,15676,15677,15704,0,30,16,5,6,15398,15395,15401,15400,43,15676,15705,15706,15677,0,30,16,5,6,15395,15394,15404,15401,43,15709,15678,15679,15710,0,30,16,5,6,15392,15389,15396,15399,43,15678,15707,15708,15679,0,30,16,5,6,15389,15388,15397,15396,43,15711,15680,15681,15712,0,30,16,5,6,15386,15383,15390,15393,43,15680,15713,15714,15681,0,30,16,5,6,15383,15382,15391,15390,43,15720,15682,15683,15719,0,30,16,5,6,15385,15384,15418,15419,43,15682,15717,15716,15683,0,30,16,5,6,15384,15387,15420,15418,43,15719,15683,15684,15718,0,30,16,5,6,15419,15418,15377,15376,43,15683,15716,15715,15684,0,30,16,5,6,15418,15420,15380,15377,43,15725,15685,15686,15724,0,30,16,5,6,15416,15415,15421,15422,43,15685,15727,15721,15686,0,30,16,5,6,15415,15417,15423,15421,43,15724,15686,15687,15723,0,30,16,5,6,15422,15421,15406,15408,43,15686,15721,15722,15687,0,30,16,5,6,15421,15423,15407,15406,43,15732,15733,15728,15729,0,30,16,5,6,15424,15425,15426,15427,43,15729,15728,15754,15745,0,30,16,5,6,15427,15426,15428,15429,43,15733,15731,15730,15728,0,30,16,5,6,15425,15430,15431,15426,43,15728,15730,15737,15754,0,30,16,5,6,15426,15431,15432,15428,43,15746,15750,15733,15732,0,30,16,5,6,15433,15434,15425,15424,43,15750,15740,15731,15733,0,30,16,5,6,15434,15435,15430,15425,43,15743,15751,15750,15746,0,30,16,5,6,15436,15437,15434,15433,43,15751,15738,15740,15750,0,30,16,5,6,15437,15438,15435,15434,43,15748,15749,15736,15735,0,30,16,5,6,15439,15440,15441,15442,43,15735,15736,15752,15747,0,30,16,5,6,15442,15441,15443,15444,43,15749,15742,15734,15736,0,30,16,5,6,15440,15445,15446,15441,43,15736,15734,15741,15752,0,30,16,5,6,15441,15446,15447,15443,43,15744,15753,15749,15748,0,30,16,5,6,15448,15449,15440,15439,43,15751,15743,15747,15752,0,30,16,5,6,15437,15436,15444,15443,43,15753,15739,15742,15749,0,30,16,5,6,15449,15450,15445,15440,43,15752,15741,15738,15751,0,30,16,5,6,15443,15447,15438,15437,43,15778,15762,15756,15772,0,30,16,5,6,15451,15452,15453,15454,43,15777,15761,15758,15774,0,30,16,5,6,15455,15456,15457,15458,43,15776,15760,15757,15773,0,30,16,5,6,15459,15460,15461,15462,43,15775,15759,15762,15778,0,30,16,5,6,15463,15464,15452,15451,43,15774,15758,15760,15776,0,30,16,5,6,15458,15457,15460,15459,43,15772,15756,15761,15777,0,30,16,5,6,15454,15453,15456,15455,43,15773,15757,15755,15771,0,30,16,5,6,15462,15461,15465,15466,43,15769,15756,15762,15763,0,30,16,5,6,15467,15453,15452,15468,43,15770,15758,15761,15764,0,30,16,5,6,15469,15457,15456,15470,43,15768,15757,15760,15765,0,30,16,5,6,15471,15461,15460,15472,43,15762,15759,15766,15763,0,30,16,5,6,15452,15464,15473,15468,43,15758,15770,15765,15760,0,30,16,5,6,15457,15469,15472,15460,43,15756,15769,15764,15761,0,30,16,5,6,15453,15467,15470,15456,43,15768,15767,15755,15757,0,30,16,5,6,15471,15474,15465,15461,43,15786,15795,15801,15781,0,30,16,5,6,15475,15476,15477,15478,43,15785,15796,15799,15783,0,30,16,5,6,15479,15480,15481,15482,43,15784,15797,15800,15782,0,30,16,5,6,15483,15484,15485,15486,43,15780,15798,15795,15786,0,30,16,5,6,15487,15488,15476,15475,43,15783,15799,15797,15784,0,30,16,5,6,15482,15481,15484,15483,43,15781,15801,15796,15785,0,30,16,5,6,15478,15477,15480,15479,43,15782,15800,15802,15779,0,30,16,5,6,15486,15485,15489,15490,43,15787,15786,15781,15794,0,30,16,5,6,15491,15475,15478,15492,43,15783,15793,15788,15785,0,30,16,5,6,15482,15493,15494,15479,43,15789,15784,15782,15792,0,30,16,5,6,15495,15483,15486,15496,43,15792,15782,15779,15790,0,30,16,5,6,15496,15486,15490,15497,43,15791,15780,15786,15787,0,30,16,5,6,15498,15487,15475,15491,43,15794,15781,15785,15788,0,30,16,5,6,15492,15478,15479,15494,43,15793,15783,15784,15789,0,30,16,5,6,15493,15482,15483,15495,43,15810,15807,15806,15803,0,30,16,5,6,15499,15500,15501,15502,43,15805,15804,15803,15806,0,30,16,5,6,15503,15504,15502,15501,43,15809,15808,15807,15810,0,30,16,5,6,15505,15506,15500,15499,43,15812,15813,15814,15811,0,30,16,5,6,15507,15508,15509,15510,43,15816,15817,15818,15815,0,30,16,5,6,15511,15512,15513,15514,43,15811,15814,15815,15818,0,30,16,5,6,15510,15509,15514,15513,43,15820,15821,15822,15819,0,30,16,5,6,15515,15516,15517,15518,43,15824,15825,15826,15823,0,30,16,5,6,15519,15520,15521,15522,43,15819,15822,15823,15826,0,30,16,5,6,15518,15517,15522,15521,43,15834,15831,15830,15827,0,30,16,5,6,15523,15524,15525,15526,43,15829,15828,15827,15830,0,30,16,5,6,15527,15528,15526,15525,43,15833,15832,15831,15834,0,30,16,5,6,15529,15530,15524,15523,43,15836,15837,15838,15835,0,30,16,5,6,15531,15532,15533,15534,43,15840,15841,15842,15839,0,30,16,5,6,15535,15536,15537,15538,43,15835,15838,15839,15842,0,30,16,5,6,15534,15533,15538,15537,43,15844,15845,15846,15843,0,30,16,5,6,15539,15540,15541,15542,43,15848,15849,15850,15847,0,30,16,5,6,15543,15544,15545,15546,43,15843,15846,15847,15850,0,30,16,5,6,15542,15541,15546,15545,43,15858,15855,15854,15851,0,30,16,5,6,15547,15548,15549,15550,43,15853,15852,15851,15854,0,30,16,5,6,15551,15552,15550,15549,43,15857,15856,15855,15858,0,30,16,5,6,15553,15554,15548,15547,43,15860,15861,15862,15859,0,30,16,5,6,15555,15556,15557,15558,43,15864,15865,15866,15863,0,30,16,5,6,15559,15560,15561,15562,43,15859,15862,15863,15866,0,30,16,5,6,15558,15557,15562,15561,43,15868,15869,15870,15867,0,30,16,5,6,15563,15564,15565,15566,43,15872,15873,15874,15871,0,30,16,5,6,15567,15568,15569,15570,43,15867,15870,15871,15874,0,30,16,5,6,15566,15565,15570,15569,43,15882,15879,15878,15875,0,30,16,5,6,15571,15572,15573,15574,43,15877,15876,15875,15878,0,30,16,5,6,15575,15576,15574,15573,43,15881,15880,15879,15882,0,30,16,5,6,15577,15578,15572,15571,43,15884,15885,15886,15883,0,30,16,5,6,15579,15580,15581,15582,43,15888,15889,15890,15887,0,30,16,5,6,15583,15584,15585,15586,43,15883,15886,15887,15890,0,30,16,5,6,15582,15581,15586,15585,43,15898,15895,15894,15891,0,30,16,5,6,15587,15588,15589,15590,43,15893,15892,15891,15894,0,30,16,5,6,15591,15592,15590,15589,43,15897,15896,15895,15898,0,30,16,5,6,15593,15594,15588,15587,43,15900,15901,15902,15899,0,30,16,5,6,15595,15596,15597,15598,43,15904,15905,15906,15903,0,30,16,5,6,15599,15600,15601,15602,43,15899,15902,15903,15906,0,30,16,5,6,15598,15597,15602,15601,43,15910,15907,15914,15911,0,30,16,5,6,15603,15604,15605,15606,43,15909,15908,15907,15910,0,30,16,5,6,15607,15608,15604,15603,43,15913,15912,15911,15914,0,30,16,5,6,15609,15610,15606,15605,43,15915,15917,15997,15995,0,1517,0,5,16,15611,15612,15613,15614,43,16017,16063,15917,15915,0,30,6,0,1517,15615,15616,15612,15611,43,15995,15998,15918,15915,0,5,16,49,0,15614,15617,15618,15611,43,15915,15918,16064,16017,0,0,49,30,6,15611,15618,15619,15615,43,16067,16039,15916,15923,0,5,16,49,0,15620,15621,15622,15623,43,15923,15916,15996,16003,0,0,49,30,6,15623,15622,15624,15625,43,16063,16062,15919,15917,0,5,16,49,0,15616,15626,15627,15612,43,15917,15919,15999,15997,0,0,49,30,6,15612,15627,15628,15613,43,16065,16064,15918,15920,0,5,16,49,0,15629,15619,15618,15630,43,15920,15918,15998,16000,0,0,49,30,6,15630,15618,15617,15631,43,16001,15999,15919,15921,0,5,16,49,0,15632,15628,15627,15633,43,15921,15919,16062,16069,0,0,49,30,6,15633,15627,15626,15634,43,16068,16065,15920,15924,0,5,16,49,0,15635,15629,15630,15636,43,15924,15920,16000,16004,0,0,49,30,6,15636,15630,15631,15637,43,16069,16066,15922,15921,0,5,16,49,1070,15634,15638,15639,15633,43,15921,15922,16002,16001,0,1070,49,30,6,15633,15639,15640,15632,43,16066,16067,15923,15922,0,5,16,49,0,15638,15620,15623,15639,43,15922,15923,16003,16002,0,0,49,30,6,15639,15623,15625,15640,43,15929,15930,15926,15925,0,5,16,1519,1518,15641,15642,15643,15644,43,15925,15926,15932,15931,0,1518,1519,30,6,15644,15643,15645,15646,43,15927,15928,15931,15932,0,5,16,30,6,15647,15648,15646,15645,43,15929,15934,15933,15930,0,5,16,30,6,15641,15649,15650,15642,43,15934,15935,15936,15933,0,5,16,30,6,15649,15651,15652,15650,43,15941,15938,15937,15942,0,30,16,5,6,15653,15654,15655,15656,43,15942,15940,15939,15941,0,30,16,5,6,15656,15657,15658,15653,43,15943,15944,15939,15940,0,30,16,5,6,15659,15660,15658,15657,43,15946,15945,15944,15943,0,30,16,5,6,15661,15662,15660,15659,43,15949,15948,15947,15950,0,5,16,30,6,15663,15664,15665,15666,43,15954,15949,15950,15953,0,5,16,30,6,15667,15663,15666,15668,43,15954,15953,15951,15952,0,5,16,30,6,15667,15668,15669,15670,43,15956,15955,15952,15951,0,5,16,30,6,15671,15672,15670,15669,43,15964,15962,15961,15963,0,1243,1359,1248,1254,15673,15674,15675,15676,43,15966,15965,15962,15964,0,1360,15,1359,1243,15677,15678,15674,15673,43,15959,15960,15965,15966,0,30,16,15,1360,15679,15680,15678,15677,43,15974,15973,15968,15967,0,30,16,15,1360,15681,15682,15683,15684,43,15969,15971,15976,15975,0,1243,1359,1107,1361,15685,15686,15687,15688,43,15980,15979,15977,15978,0,1243,1359,1107,1361,15689,15690,15691,15692,43,15983,15984,15982,15981,0,5,16,30,6,15693,15694,15695,15696,43,15985,15986,15977,15979,0,44,50,6,5,15697,15698,15691,15690,43,15984,15983,15986,15985,0,16,30,50,44,15694,15693,15698,15697,43,15987,15988,15980,15978,0,44,50,6,5,15699,15700,15689,15692,43,15981,15982,15988,15987,0,16,30,50,44,15696,15695,15700,15699,43,15989,15990,15963,15961,0,700,1520,1254,1248,15701,15702,15676,15675,43,15957,15958,15990,15989,0,5,6,1520,700,15703,15704,15702,15701,43,15991,15992,15971,15969,0,1521,1522,1359,1243,15705,15706,15686,15685,43,15967,15968,15992,15991,0,1360,15,1522,1521,15684,15683,15706,15705,43,15972,15970,15993,15994,0,1248,1254,1523,56,15707,15708,15709,15710,43,15994,15993,15975,15976,0,56,1523,1361,1107,15710,15709,15688,15687,43,16054,16016,15995,15997,0,5,16,30,6,15711,15712,15614,15613,43,16016,16055,15998,15995,0,5,16,30,6,15712,15713,15617,15614,43,16003,15996,16040,16060,0,5,16,30,6,15625,15624,15714,15715,43,15997,15999,16056,16054,0,5,16,30,6,15613,15628,15716,15711,43,16000,15998,16055,16057,0,5,16,30,6,15631,15617,15713,15717,43,16058,16056,15999,16001,0,5,16,30,6,15718,15716,15628,15632,43,16004,16000,16057,16061,0,5,16,30,6,15637,15631,15717,15719,43,16001,16002,16059,16058,0,5,16,30,6,15632,15640,15720,15718,43,16002,16003,16060,16059,0,5,16,30,6,15640,15625,15715,15720,43,16008,16009,16012,16005,0,5,16,30,6,15721,15722,15723,15724,43,16005,16006,16007,16008,0,5,16,30,6,15724,15725,15726,15721,43,16009,16010,16011,16012,0,5,16,30,6,15722,15727,15728,15723,43,16054,16025,16013,16016,0,5,16,30,6,15711,15729,15730,15712,43,16016,16013,16024,16055,0,5,16,30,6,15712,15730,15731,15713,43,16025,16042,16014,16013,0,5,16,30,6,15729,15732,15733,15730,43,16013,16014,16043,16024,0,5,16,30,6,15730,15733,15734,15731,43,16042,16050,16015,16014,0,5,16,30,6,15732,15735,15736,15733,43,16014,16015,16051,16043,0,5,16,30,6,15733,15736,15737,15734,43,16060,16040,16026,16019,0,5,16,30,6,15715,15714,15738,15739,43,16019,16026,16041,16048,0,5,16,30,6,15739,15738,15740,15741,43,16054,16056,16023,16025,0,5,16,30,6,15711,15716,15742,15729,43,16025,16023,16044,16042,0,5,16,30,6,15729,15742,15743,15732,43,16057,16055,16024,16022,0,5,16,30,6,15717,15713,15731,15744,43,16022,16024,16043,16045,0,5,16,30,6,15744,15731,15734,15745,43,16056,16058,16021,16023,0,5,16,30,6,15716,15718,15746,15742,43,16023,16021,16046,16044,0,5,16,30,6,15742,15746,15747,15743,43,16061,16057,16022,16018,0,5,16,30,6,15719,15717,15744,15748,43,16018,16022,16045,16049,0,5,16,30,6,15748,15744,15745,15749,43,16058,16059,16020,16021,0,5,16,30,6,15718,15720,15750,15746,43,16021,16020,16047,16046,0,5,16,30,6,15746,15750,15751,15747,43,16059,16060,16019,16020,0,5,16,30,6,15720,15715,15739,15750,43,16020,16019,16048,16047,0,5,16,30,6,15750,15739,15741,15751,43,16031,16038,16035,16027,0,5,16,30,6,15752,15753,15754,15755,43,16032,16031,16027,16028,0,5,16,30,6,15756,15752,15755,15757,43,16034,16032,16028,16029,0,5,16,30,6,15758,15756,15757,15759,43,16033,16034,16029,16030,0,5,16,30,6,15760,15758,15759,15761,43,16038,16037,16036,16035,0,5,16,30,6,15753,15762,15763,15754,43,16042,16033,16030,16050,0,5,16,30,6,15732,15760,15761,15735,43,16048,16038,16031,16047,0,5,16,30,6,15741,15753,15752,15751,43,16047,16031,16032,16046,0,5,16,30,6,15751,15752,15756,15747,43,16046,16032,16034,16044,0,5,16,30,6,15747,15756,15758,15743,43,16044,16034,16033,16042,0,5,16,30,6,15743,15758,15760,15732,43,16041,16037,16038,16048,0,5,16,30,6,15740,15762,15753,15741,43,16045,16043,16051,16052,0,5,16,30,6,15745,15734,15737,15764,43,16049,16045,16052,16053,0,5,16,30,6,15749,15745,15764,15765,43,16075,16072,16093,16100,0,5,16,30,6,15766,15767,15768,15769,43,16098,16095,16072,16075,0,5,16,30,6,15770,15771,15767,15766,43,16077,16074,16099,16102,0,5,16,30,6,15772,15773,15774,15775,43,16104,16097,16074,16077,0,5,16,30,6,15776,15777,15773,15772,43,16073,16086,16120,16094,0,5,16,30,6,15778,15779,15780,15781,43,16096,16117,16086,16073,0,5,16,30,6,15782,15783,15779,15778,43,16084,16082,16115,16122,0,5,16,30,6,15784,15785,15786,15787,43,16119,16113,16082,16084,0,5,16,30,6,15788,15789,15785,15784,43,16083,16080,16109,16116,0,5,16,30,6,15790,15791,15792,15793,43,16114,16111,16080,16083,0,5,16,30,6,15794,15795,15791,15790,43,16081,16078,16107,16110,0,5,16,30,6,15796,15797,15798,15799,43,16112,16105,16078,16081,0,5,16,30,6,15800,15801,15797,15796,43,16070,16079,16106,16090,0,5,16,30,6,15802,15803,15804,15805,43,16091,16108,16079,16070,0,5,16,30,6,15806,15807,15803,15802,43,16089,16070,16090,16124,0,5,16,30,6,15808,15802,15805,15809,43,16125,16091,16070,16089,0,5,16,30,6,15810,15806,15802,15808,43,16071,16076,16101,16092,0,5,16,30,6,15811,15812,15813,15814,43,16128,16103,16076,16071,0,5,16,30,6,15815,15816,15812,15811,43,16087,16071,16092,16127,0,5,16,30,6,15817,15811,15814,15818,43,16129,16128,16071,16087,0,5,16,30,6,15819,15815,15811,15817,43,16073,16072,16095,16096,0,5,16,30,6,15778,15767,15771,15782,43,16094,16093,16072,16073,0,5,16,30,6,15781,15768,15767,15778,43,16075,16074,16097,16098,0,5,16,30,6,15766,15773,15777,15770,43,16100,16099,16074,16075,0,5,16,30,6,15769,15774,15773,15766,43,16077,16076,16103,16104,0,5,16,30,6,15772,15812,15816,15776,43,16102,16101,16076,16077,0,5,16,30,6,15775,15813,15812,15772,43,16079,16078,16105,16106,0,5,16,30,6,15803,15797,15801,15804,43,16108,16107,16078,16079,0,5,16,30,6,15807,15798,15797,15803,43,16081,16080,16111,16112,0,5,16,30,6,15796,15791,15795,15800,43,16110,16109,16080,16081,0,5,16,30,6,15799,15792,15791,15796,43,16083,16082,16113,16114,0,5,16,30,6,15790,15785,15789,15794,43,16116,16115,16082,16083,0,5,16,30,6,15793,15786,15785,15790,43,16085,16084,16122,16121,0,5,16,30,6,15820,15784,15787,15821,43,16118,16119,16084,16085,0,5,16,30,6,15822,15788,15784,15820,43,16086,16085,16121,16120,0,5,16,30,6,15779,15820,15821,15780,43,16117,16118,16085,16086,0,5,16,30,6,15783,15822,15820,15779,43,16088,16087,16127,16126,0,5,16,30,6,15823,15817,15818,15824,43,16123,16129,16087,16088,0,5,16,30,6,15825,15819,15817,15823,43,16089,16088,16126,16125,0,5,16,30,6,15808,15823,15824,15810,43,16124,16123,16088,16089,0,5,16,30,6,15809,15825,15823,15808,43,16130,16135,16134,16131,0,5,16,30,6,15826,15827,15828,15829,43,16156,16130,16131,16147,0,5,16,30,6,15830,15826,15829,15831,43,16132,16133,16135,16130,0,5,16,30,6,15832,15833,15827,15826,43,16139,16132,16130,16156,0,5,16,30,6,15834,15832,15826,15830,43,16135,16152,16148,16134,0,5,16,30,6,15827,15835,15836,15828,43,16133,16142,16152,16135,0,5,16,30,6,15833,15837,15835,15827,43,16152,16153,16145,16148,0,5,16,30,6,15835,15838,15839,15836,43,16142,16140,16153,16152,0,5,16,30,6,15837,15840,15838,15835,43,16138,16151,16150,16137,0,5,16,30,6,15841,15842,15843,15844,43,16154,16138,16137,16149,0,5,16,30,6,15845,15841,15844,15846,43,16136,16144,16151,16138,0,5,16,30,6,15847,15848,15842,15841,43,16143,16136,16138,16154,0,5,16,30,6,15849,15847,15841,15845,43,16151,16155,16146,16150,0,5,16,30,6,15842,15850,15851,15843,43,16149,16145,16153,16154,0,5,16,30,6,15846,15839,15838,15845,43,16144,16141,16155,16151,0,5,16,30,6,15848,15852,15850,15842,43,16140,16143,16154,16153,0,5,16,30,6,15840,15849,15845,15838,43,16158,16164,16180,16174,0,5,16,30,6,15853,15854,15855,15856,43,16160,16163,16179,16176,0,5,16,30,6,15857,15858,15859,15860,43,16159,16162,16178,16175,0,5,16,30,6,15861,15862,15863,15864,43,16164,16161,16177,16180,0,5,16,30,6,15854,15865,15866,15855,43,16162,16160,16176,16178,0,5,16,30,6,15862,15857,15860,15863,43,16163,16158,16174,16179,0,5,16,30,6,15858,15853,15856,15859,43,16157,16159,16175,16173,0,5,16,30,6,15867,15861,15864,15868,43,16164,16158,16171,16165,0,5,16,30,6,15854,15853,15869,15870,43,16163,16160,16172,16166,0,5,16,30,6,15858,15857,15871,15872,43,16162,16159,16170,16167,0,5,16,30,6,15862,15861,15873,15874,43,16168,16161,16164,16165,0,5,16,30,6,15875,15865,15854,15870,43,16167,16172,16160,16162,0,5,16,30,6,15874,15871,15857,15862,43,16166,16171,16158,16163,0,5,16,30,6,15872,15869,15853,15858,43,16157,16169,16170,16159,0,5,16,30,6,15867,15876,15873,15861,43,16203,16197,16188,16183,0,5,16,30,6,15877,15878,15879,15880,43,16201,16198,16187,16185,0,5,16,30,6,15881,15882,15883,15884,43,16202,16199,16186,16184,0,5,16,30,6,15885,15886,15887,15888,43,16197,16200,16182,16188,0,5,16,30,6,15878,15889,15890,15879,43,16199,16201,16185,16186,0,5,16,30,6,15886,15881,15884,15887,43,16198,16203,16183,16187,0,5,16,30,6,15882,15877,15880,15883,43,16204,16202,16184,16181,0,5,16,30,6,15891,15885,15888,15892,43,16183,16188,16189,16196,0,5,16,30,6,15880,15879,15893,15894,43,16190,16195,16185,16187,0,5,16,30,6,15895,15896,15884,15883,43,16184,16186,16191,16194,0,5,16,30,6,15888,15887,15897,15898,43,16181,16184,16194,16192,0,5,16,30,6,15892,15888,15898,15899,43,16188,16182,16193,16189,0,5,16,30,6,15879,15890,15900,15893,43,16187,16183,16196,16190,0,5,16,30,6,15883,15880,15894,15895,43,16186,16185,16195,16191,0,5,16,30,6,15887,15884,15896,15897,43,16208,16209,16212,16205,0,5,16,30,6,15901,15902,15903,15904,43,16205,16206,16207,16208,0,5,16,30,6,15904,15905,15906,15901,43,16209,16210,16211,16212,0,5,16,30,6,15902,15907,15908,15903,43,16216,16215,16214,16213,0,5,16,30,6,15909,15910,15911,15912,43,16220,16219,16218,16217,0,5,16,30,6,15913,15914,15915,15916,43,16217,16216,16213,16220,0,5,16,30,6,15916,15909,15912,15913,43,16224,16223,16222,16221,0,5,16,30,6,15917,15918,15919,15920,43,16228,16227,16226,16225,0,5,16,30,6,15921,15922,15923,15924,43,16225,16224,16221,16228,0,5,16,30,6,15924,15917,15920,15921,43,16232,16233,16236,16229,0,5,16,30,6,15925,15926,15927,15928,43,16229,16230,16231,16232,0,5,16,30,6,15928,15929,15930,15925,43,16233,16234,16235,16236,0,5,16,30,6,15926,15931,15932,15927,43,16240,16239,16238,16237,0,5,16,30,6,15933,15934,15935,15936,43,16244,16243,16242,16241,0,5,16,30,6,15937,15938,15939,15940,43,16241,16240,16237,16244,0,5,16,30,6,15940,15933,15936,15937,43,16248,16247,16246,16245,0,5,16,30,6,15941,15942,15943,15944,43,16252,16251,16250,16249,0,5,16,30,6,15945,15946,15947,15948,43,16249,16248,16245,16252,0,5,16,30,6,15948,15941,15944,15945,43,16256,16257,16260,16253,0,5,16,30,6,15949,15950,15951,15952,43,16253,16254,16255,16256,0,5,16,30,6,15952,15953,15954,15949,43,16257,16258,16259,16260,0,5,16,30,6,15950,15955,15956,15951,43,16264,16263,16262,16261,0,5,16,30,6,15957,15958,15959,15960,43,16268,16267,16266,16265,0,5,16,30,6,15961,15962,15963,15964,43,16265,16264,16261,16268,0,5,16,30,6,15964,15957,15960,15961,43,16272,16271,16270,16269,0,5,16,30,6,15965,15966,15967,15968,43,16276,16275,16274,16273,0,5,16,30,6,15969,15970,15971,15972,43,16273,16272,16269,16276,0,5,16,30,6,15972,15965,15968,15969,43,16280,16281,16284,16277,0,5,16,30,6,15973,15974,15975,15976,43,16277,16278,16279,16280,0,5,16,30,6,15976,15977,15978,15973,43,16281,16282,16283,16284,0,5,16,30,6,15974,15979,15980,15975,43,16288,16287,16286,16285,0,5,16,30,6,15981,15982,15983,15984,43,16292,16291,16290,16289,0,5,16,30,6,15985,15986,15987,15988,43,16289,16288,16285,16292,0,5,16,30,6,15988,15981,15984,15985,43,16296,16297,16300,16293,0,5,16,30,6,15989,15990,15991,15992,43,16293,16294,16295,16296,0,5,16,30,6,15992,15993,15994,15989,43,16297,16298,16299,16300,0,5,16,30,6,15990,15995,15996,15991,43,16304,16303,16302,16301,0,5,16,30,6,15997,15998,15999,16000,43,16308,16307,16306,16305,0,5,16,30,6,16001,16002,16003,16004,43,16305,16304,16301,16308,0,5,16,30,6,16004,15997,16000,16001,43,16316,16309,16312,16313,0,5,16,30,6,16005,16006,16007,16008,43,16309,16310,16311,16312,0,5,16,30,6,16006,16009,16010,16007,43,16313,16314,16315,16316,0,5,16,30,6,16008,16011,16012,16005,43,15393,15396,16200,16197,0,5,16,16,5,15075,15086,15889,15878,43,14976,14994,15798,15780,0,30,16,16,30,14684,14683,15488,15487,43,15494,15495,16299,16298,0,16,30,30,16,15192,15191,15996,15995,43,15441,15448,16252,16245,0,30,6,6,30,15137,15144,15945,15944,43,15397,15394,16198,16201,0,5,16,16,5,15080,15079,15882,15881,43,15036,15037,15841,15840,0,30,16,16,30,14734,14733,15536,15535,43,14757,14784,15588,15561,0,1254,1520,1520,1254,14467,14496,15299,15274,43,14725,14722,15526,15529,0,30,16,16,30,14439,14442,15245,15244,43,15456,15449,16253,16260,0,30,6,6,30,15146,15145,15952,15951,43,15512,15505,16309,16316,0,5,16,16,5,15204,15203,16006,16005,43,15329,15338,16142,16133,0,5,16,16,5,15028,15033,15837,15833,43,15362,15367,16171,16166,0,5,16,16,5,15067,15066,15869,15872,43,15106,15105,15909,15910,0,6,30,30,6,14802,14804,15607,15603,43,15168,15166,15970,15972,0,1248,1254,1254,1248,14906,14905,15708,15707,43,15050,15049,15853,15854,0,6,30,30,6,14744,14748,15551,15549,43,15473,15474,16278,16277,0,5,16,16,5,15169,15174,15977,15976,43,15319,15325,16129,16123,0,5,16,16,5,15021,15015,15819,15825,43,15213,15259,16063,16017,0,30,6,6,30,14812,14811,15616,15615,43,15107,15106,15910,15911,0,6,30,30,6,14799,14802,15603,15606,43,15046,15039,15843,15850,0,6,30,30,6,14740,14735,15542,15545,43,15049,15048,15852,15853,0,30,16,16,30,14748,14747,15552,15551,43,14909,14910,15714,15713,0,16,5,5,16,14581,14584,15391,15382,43,15459,15458,16262,16263,0,16,30,30,16,15155,15154,15959,15958,43,15225,15226,16030,16029,0,30,6,6,30,14954,14956,15761,15759,43,14908,14907,15711,15712,0,6,30,30,6,14588,14583,15386,15393,43,15088,15087,15891,15892,0,16,5,5,16,14787,14783,15590,15592,43,15224,15225,16029,16028,0,30,6,6,30,14952,14954,15759,15757,43,14959,14965,15769,15763,0,6,30,30,6,14663,14664,15467,15468,43,14898,14897,15701,15702,0,6,30,30,6,14570,14610,15413,15375,43,15159,15160,15964,15963,0,1254,1243,1243,1254,14869,14872,15673,15676,43,15390,15388,16192,16194,0,30,6,6,30,15093,15095,15899,15898,43,15189,15171,15975,15993,0,1523,1361,1361,1523,14904,14881,15688,15709,43,14846,14845,15649,15650,0,6,30,30,6,14558,14531,15335,15362,43,15288,15323,16127,16092,0,30,6,6,30,15007,15013,15818,15814,43,15488,15487,16291,16292,0,5,16,16,5,15184,15183,15986,15985,43,15098,15099,15903,15902,0,16,5,5,16,14792,14795,15602,15597,43,14736,14731,15535,15540,0,6,5,5,6,14447,14450,15251,15254,43,15122,15128,15932,15926,0,1519,30,30,1519,14838,14842,15645,15643,43,15409,15416,16220,16213,0,30,6,6,30,15105,15112,15913,15912,43,15304,15303,16107,16108,0,5,16,16,5,15002,14993,15798,15807,43,15223,15224,16028,16027,0,30,6,6,30,14948,14952,15757,15755,43,15051,15050,15854,15855,0,16,5,5,16,14745,14744,15549,15548,43,15127,15121,15925,15931,0,6,1518,1518,6,14841,14837,15644,15646,43,14942,14939,15743,15746,0,6,30,30,6,14630,14633,15436,15433,43,14960,14966,15770,15764,0,6,30,30,6,14665,14666,15469,15470,43,15158,15157,15961,15962,0,1359,1248,1248,1359,14871,14870,15675,15674,43,14777,14775,15579,15581,0,5,6,6,5,14488,14487,15294,15293,43,14830,14831,15635,15634,0,30,16,16,30,14557,14556,15361,15360,43,14733,14738,15542,15537,0,5,16,16,5,14452,14454,15257,15255,43,15055,15056,15860,15859,0,6,30,30,6,14751,14754,15555,15558,43,15344,15330,16134,16148,0,30,6,6,30,15031,15023,15828,15836,43,14944,14940,15744,15748,0,6,30,30,6,14638,14645,15448,15439,43,15332,15340,16144,16136,0,5,16,16,5,15044,15043,15848,15847,43,15352,15335,16139,16156,0,6,5,5,6,15027,15030,15834,15830,43,15260,15213,16017,16064,0,30,6,6,30,14815,14812,15615,15619,43,15367,15361,16165,16171,0,30,6,6,30,15066,15065,15870,15869,43,14723,14719,15523,15527,0,5,1518,1518,5,14436,14435,15242,15241,43,15237,15233,16037,16041,0,5,16,16,5,14937,14959,15762,15740,43,14824,14823,15627,15628,0,6,30,30,6,14554,14552,15357,15359,43,14727,14730,15534,15531,0,6,30,30,6,14444,14446,15249,15247,43,15306,15305,16109,16110,0,5,16,16,5,14992,14987,15792,15799,43,14912,14911,15715,15716,0,16,5,5,16,14616,14577,15380,15420,43,15192,15236,16040,15996,0,16,30,30,16,14821,14911,15714,15624,43,15417,15424,16228,16221,0,30,6,6,30,15113,15120,15921,15920,43,14886,14895,15699,15690,0,6,30,30,6,14605,14608,15409,15412,43,15153,15154,15958,15957,0,5,6,6,5,14900,14899,15704,15703,43,14913,14912,15716,15717,0,16,5,5,16,14582,14616,15420,15387,43,14934,14936,15740,15738,0,16,5,5,16,14634,14631,15435,15438,43,15495,15496,16300,16299,0,30,6,6,30,15191,15186,15991,15996,43,15451,15452,16256,16255,0,30,6,6,30,15149,15148,15949,15954,43,14923,14917,15721,15727,0,16,5,5,16,14613,14619,15423,15417,43,15298,15297,16101,16102,0,5,16,16,5,14968,15008,15813,15775,43,14822,14821,15625,15626,0,6,30,30,6,14550,14546,15353,15355,43,14965,14960,15764,15769,0,16,5,5,16,14664,14665,15470,15467,43,14893,14894,15698,15697,0,16,5,5,16,14569,14560,15367,15370,43,15021,15022,15826,15825,0,16,5,5,16,14717,14716,15521,15520,43,15502,15501,16305,16306,0,30,6,6,30,15198,15197,16004,16003,43,15047,15054,15858,15851,0,6,30,30,6,14743,14746,15547,15550,43,15176,15175,15979,15980,0,1243,1359,1359,1243,14888,14887,15690,15689,43,14939,14943,15747,15743,0,16,5,5,16,14633,14639,15444,15436,43,15504,15503,16307,16308,0,5,16,16,5,15200,15199,16002,16001,43,14764,14766,15570,15568,0,1254,1248,1248,1254,14503,14502,15307,15306,43,14722,14721,15525,15526,0,16,5,5,16,14442,14441,15246,15245,43,14890,14889,15693,15694,0,6,30,30,6,14576,14565,15368,15381,43,15110,15109,15913,15914,0,6,30,30,6,14800,14806,15609,15605,43,14859,14862,15666,15663,0,16,5,5,16,14424,14430,15233,15227,43,15180,15178,15982,15984,0,16,30,30,16,14891,14890,15695,15694,43,14998,14975,15779,15802,0,5,6,6,5,14686,14685,15490,15489,43,15084,15085,15889,15888,0,30,16,16,30,14782,14781,15584,15583,43,14751,14783,15587,15555,0,5,700,700,5,14497,14495,15300,15302,43,14994,14991,15795,15798,0,16,5,5,16,14683,14673,15476,15488,43,15339,15332,16136,16143,0,5,16,16,5,15045,15044,15847,15849,43,15041,15042,15846,15845,0,16,5,5,16,14737,14736,15541,15540,43,15449,15450,16254,16253,0,5,16,16,5,15145,15150,15953,15952,43,15387,15390,16194,16191,0,30,6,6,30,15094,15093,15898,15897,43,15103,15110,15914,15907,0,16,5,5,16,14801,14800,15605,15604,43,15442,15441,16245,16246,0,30,6,6,30,15138,15137,15944,15943,43,15042,15043,15847,15846,0,16,5,5,16,14736,14739,15546,15541,43,15400,15398,16202,16204,0,5,16,16,5,15088,15084,15885,15891,43,15072,15071,15875,15876,0,16,5,5,16,14771,14767,15574,15576,43,15443,15442,16246,16247,0,16,30,30,16,15139,15138,15943,15942,43,14769,14787,15591,15573,0,1361,1523,1523,1361,14479,14504,15305,15286,43,14847,14846,15650,15651,0,6,30,30,6,14559,14558,15362,15363,43,14919,14920,15724,15723,0,6,30,30,6,14604,14617,15422,15408,43,14915,14916,15720,15719,0,6,30,30,6,14614,14578,15385,15419,43,15079,15080,15884,15883,0,6,30,30,6,14775,14778,15579,15582,43,14928,14942,15746,15732,0,6,30,30,6,14623,14630,15433,15424,43,15126,15122,15926,15930,0,16,1519,1519,16,14839,14838,15643,15642,43,15448,15447,16251,16252,0,5,16,16,5,15144,15143,15946,15945,43,15312,15311,16115,16116,0,5,16,16,5,14986,14981,15786,15793,43,14927,14926,15730,15731,0,16,5,5,16,14627,14626,15431,15430,43,15447,15446,16250,16251,0,16,30,30,16,15143,15142,15947,15946,43,15078,15077,15881,15882,0,6,30,30,6,14770,14774,15577,15571,43,14776,14778,15582,15580,0,30,16,16,30,14490,14489,15292,15291,43,15027,15026,15830,15831,0,16,5,5,16,14721,14720,15525,15524,43,15019,15020,15824,15823,0,6,30,30,6,14715,14718,15519,15522,43,14724,14727,15531,15528,0,6,30,30,6,14437,14444,15247,15240,43,14949,14935,15739,15753,0,30,16,16,30,14644,14646,15450,15449,43,15308,15301,16105,16112,0,5,16,16,5,14997,14996,15801,15800,43,15446,15445,16249,16250,0,30,6,6,30,15142,15141,15948,15947,43,15247,15248,16052,16051,0,30,6,6,30,14933,14960,15764,15737,43,15454,15455,16259,16258,0,16,30,30,16,15152,15151,15956,15955,43,15452,15453,16257,16256,0,5,16,16,5,15148,15147,15950,15949,43,15018,15019,15823,15822,0,16,5,5,16,14712,14715,15522,15517,43,15257,15200,16004,16061,0,6,5,5,6,14915,14833,15637,15719,43,15121,15125,15929,15925,0,1518,5,5,1518,14837,14840,15641,15644,43,14728,14723,15527,15532,0,16,5,5,16,14443,14436,15241,15248,43,15028,15027,15831,15832,0,16,5,5,16,14725,14721,15524,15530,43,14829,14830,15634,15633,0,6,30,30,6,14549,14557,15360,15350,43,15056,15057,15861,15860,0,30,16,16,30,14754,14753,15556,15555,43,15184,15176,15980,15988,0,50,6,6,50,14895,14888,15689,15700,43,14887,14888,15692,15691,0,16,5,5,16,14563,14572,15379,15364,43,15214,15257,16061,16018,0,6,5,5,6,14944,14915,15719,15748,43,15165,15187,15991,15969,0,1243,1521,1521,1243,14884,14902,15705,15685,43,15439,15438,16242,16243,0,16,30,30,16,15135,15134,15939,15938,43,15160,15162,15966,15964,0,1243,1360,1360,1243,14872,14874,15677,15673,43,15038,15031,15835,15842,0,6,30,30,6,14732,14727,15534,15537,43,14719,14725,15529,15523,0,1518,6,6,1518,14435,14439,15244,15242,43,14943,14931,15735,15747,0,6,30,30,6,14639,14635,15442,15444,43,15465,15472,16276,16269,0,30,6,6,30,15161,15168,15969,15968,43,15297,15288,16092,16101,0,30,6,6,30,15008,15007,15814,15813,43,14823,14822,15626,15627,0,6,30,30,6,14552,14550,15355,15357,43,15020,15021,15825,15824,0,30,16,16,30,14718,14717,15520,15519,43,14720,14724,15528,15524,0,1519,16,16,1519,14438,14437,15240,15239,43,15503,15502,16306,16307,0,16,30,30,16,15199,15198,16003,16002,43,15093,15092,15896,15897,0,30,16,16,30,14790,14789,15594,15593,43,14966,14961,15765,15770,0,16,5,5,16,14666,14667,15472,15469,43,15145,15144,15948,15949,0,5,16,16,5,14862,14861,15664,15663,43,14896,14893,15697,15700,0,6,30,30,6,14566,14569,15370,15373,43,15109,15108,15912,15913,0,30,16,16,30,14806,14805,15610,15609,43,14907,14913,15717,15711,0,16,5,5,16,14583,14582,15387,15386,43,15249,15245,16049,16053,0,6,5,5,6,14961,14945,15749,15765,43,15480,15473,16277,16284,0,30,6,6,30,15170,15169,15976,15975,43,15450,15451,16255,16254,0,16,30,30,16,15150,15149,15954,15953,43,15403,15404,16208,16207,0,30,6,6,30,15101,15100,15901,15906,43,15343,15352,16156,16147,0,6,5,5,6,15026,15027,15830,15831,43,15345,15341,16145,16149,0,5,16,16,5,15041,15034,15839,15846,43,15342,15346,16150,16146,0,30,6,6,30,15046,15038,15843,15851,43,15011,15012,15816,15815,0,6,30,30,6,14707,14710,15511,15514,43,14858,14859,15663,15662,0,16,5,5,16,14413,14424,15227,15217,43,15065,15066,15870,15869,0,16,5,5,16,14761,14760,15565,15564,43,14729,14728,15532,15533,0,16,5,5,16,14445,14443,15248,15250,43,15458,15457,16261,16262,0,30,6,6,30,15154,15153,15960,15959,43,14734,14736,15540,15538,0,16,30,30,16,14451,14447,15254,15256,43,15434,15433,16237,16238,0,30,6,6,30,15130,15129,15936,15935,43,15402,15403,16207,16206,0,16,30,30,16,15102,15101,15906,15905,43,15064,15065,15869,15868,0,30,16,16,30,14762,14761,15564,15563,43,15063,15064,15868,15867,0,6,30,30,6,14759,14762,15563,15566,43,14833,14861,15665,15637,0,16,5,5,16,14416,14415,15220,15219,43,14920,14921,15725,15724,0,6,30,30,6,14617,14611,15416,15422,43,14735,14733,15537,15539,0,6,5,5,6,14448,14452,15255,15253,43,15327,15343,16147,16131,0,30,6,6,30,15022,15026,15831,15829,43,15100,15101,15905,15904,0,30,16,16,30,14798,14797,15600,15599,43,15132,15129,15933,15936,0,30,6,6,30,14847,14845,15650,15652,43,15208,15201,16005,16012,0,30,6,6,30,14918,14917,15724,15723,43,15172,15190,15994,15976,0,1107,56,56,1107,14882,14903,15710,15687,43,15013,15014,15818,15817,0,16,5,5,16,14709,14708,15513,15512,43,15171,15165,15969,15975,0,1361,1243,1243,1361,14881,14884,15685,15688,43,14772,14771,15575,15576,0,1361,1107,1107,1361,14483,14486,15287,15290,43,15085,15086,15890,15889,0,16,5,5,16,14781,14780,15585,15584,43,15034,15035,15839,15838,0,16,5,5,16,14728,14731,15538,15533,43,14800,14799,15603,15604,0,16,5,5,16,14519,14515,15322,15324,43,15061,15062,15866,15865,0,16,5,5,16,14757,14756,15561,15560,43,14761,14785,15589,15565,0,1360,1521,1521,1360,14475,14499,15304,15282,43,14753,14760,15564,15557,0,30,1360,1360,30,14473,14471,15276,15278,43,14931,14944,15748,15735,0,6,30,30,6,14635,14638,15439,15442,43,15404,15405,16209,16208,0,5,16,16,5,15100,15099,15902,15901,43,15372,15374,16178,16176,0,30,6,6,30,15053,15058,15863,15860,43,15435,15434,16238,16239,0,16,30,30,16,15131,15130,15935,15934,43,14922,14923,15727,15726,0,16,5,5,16,14609,14613,15417,15414,43,15511,15512,16316,16315,0,30,6,6,30,15207,15204,16005,16012,43,15187,15163,15967,15991,0,1521,1360,1360,1521,14902,14877,15684,15705,43,15510,15511,16315,16314,0,16,30,30,16,15208,15207,16012,16011,43,15322,15321,16125,16126,0,30,6,6,30,15019,15006,15810,15824,43,15353,15365,16169,16157,0,5,16,16,5,15064,15072,15876,15867,43,15087,15094,15898,15891,0,6,30,30,6,14783,14786,15587,15590,43,14732,14735,15539,15536,0,16,30,30,16,14449,14448,15253,15252,43,15144,15143,15947,15948,0,16,30,30,16,14861,14860,15665,15664,43,14755,14756,15560,15559,0,1248,1359,1359,1248,14470,14469,15272,15271,43,14737,14734,15538,15541,0,30,6,6,30,14453,14451,15256,15258,43,15068,15069,15873,15872,0,30,16,16,30,14766,14765,15568,15567,43,15392,15386,16190,16196,0,30,6,6,30,15089,15092,15895,15894,43,14775,14781,15585,15579,0,16,44,44,16,14487,14493,15298,15294,43,15156,15161,15965,15960,0,16,15,15,16,14875,14873,15678,15680,43,15258,15265,16069,16062,0,30,6,6,30,14823,14830,15634,15626,43,15179,15182,15986,15983,0,30,50,50,30,14892,14893,15698,15693,43,15006,15005,15809,15810,0,6,30,30,6,14698,14702,15505,15499,43,14904,14901,15705,15708,0,6,30,30,6,14590,14593,15394,15397,43,14863,14856,15660,15667,0,6,30,30,6,14428,14420,15225,15232,43,15453,15454,16258,16257,0,5,16,16,5,15147,15152,15955,15950,43,15411,15410,16214,16215,0,16,30,30,16,15107,15106,15911,15910,43,15509,15510,16314,16313,0,5,16,16,5,15201,15208,16011,16008,43,15399,15393,16197,16203,0,5,16,16,5,15076,15075,15878,15877,43,14758,14757,15561,15562,0,1243,1254,1254,1243,14468,14467,15274,15273,43,15320,15319,16123,16124,0,5,16,16,5,15004,15021,15825,15809,43,15316,15290,16094,16120,0,30,6,6,30,14975,14974,15781,15780,43,15408,15401,16205,16212,0,30,6,6,30,15098,15097,15904,15903,43,15330,15327,16131,16134,0,30,6,6,30,15023,15022,15829,15828,43,15181,15180,15984,15985,0,44,16,16,44,14894,14891,15694,15697,43,15066,15067,15871,15870,0,16,5,5,16,14760,14763,15570,15565,43,15412,15411,16215,16216,0,5,16,16,5,15108,15107,15910,15909,43,14780,14777,15581,15584,0,50,30,30,50,14492,14488,15293,15295,43,15375,15372,16176,16179,0,30,6,6,30,15054,15053,15860,15859,43,15108,15107,15911,15912,0,16,5,5,16,14805,14799,15606,15610,43,14845,14809,15613,15649,0,30,16,16,30,14531,14530,15333,15335,43,15501,15500,16304,16305,0,5,16,16,5,15197,15196,15997,16004,43,15440,15439,16243,16244,0,5,16,16,5,15136,15135,15938,15937,43,15378,15389,16193,16182,0,16,30,30,16,15085,15096,15900,15890,43,15057,15058,15862,15861,0,16,5,5,16,14753,14752,15557,15556,43,15425,15426,16230,16229,0,5,16,16,5,15121,15126,15929,15928,43,15289,15296,16100,16093,0,30,6,6,30,14963,14962,15769,15768,43,15058,15059,15863,15862,0,16,5,5,16,14752,14755,15562,15557,43,15426,15427,16231,16230,0,16,30,30,16,15126,15125,15930,15929,43,15203,15204,16008,16007,0,30,6,6,30,14921,14920,15721,15726,43,15461,15460,16264,16265,0,5,16,16,5,15157,15156,15957,15964,43,15318,15317,16121,16122,0,30,6,6,30,14980,15016,15821,15787,43,15325,15324,16128,16129,0,5,16,16,5,15015,15012,15815,15819,43,15262,15263,16067,16066,0,5,16,16,5,14835,14819,15620,15638,43,14895,14896,15700,15699,0,16,5,5,16,14608,14566,15373,15409,43,15002,15001,15805,15806,0,6,30,30,6,14696,14700,15503,15501,43,15178,15184,15988,15982,0,30,50,50,30,14890,14895,15700,15695,43,14768,14761,15565,15572,0,30,1360,1360,30,14476,14475,15282,15281,43,15264,15261,16065,16068,0,5,16,16,5,14832,14826,15629,15635,43,15001,15000,15804,15805,0,30,16,16,30,14700,14699,15504,15503,43,14843,14847,15651,15647,0,5,6,6,5,14543,14559,15363,15347,43,15386,15391,16195,16190,0,5,16,16,5,15092,15091,15896,15895,43,15012,15013,15817,15816,0,30,16,16,30,14710,14709,15512,15511,43,15395,15397,16201,16199,0,5,16,16,5,15083,15080,15881,15886,43,15235,15112,15916,16039,0,16,49,49,16,14818,14817,15622,15621,43,15394,15399,16203,16198,0,5,16,16,5,15079,15076,15877,15882,43,15173,15174,15978,15977,0,1107,1361,1361,1107,14886,14885,15692,15691,43,15074,15073,15877,15878,0,6,30,30,6,14768,14772,15575,15573,43,14955,14962,15766,15759,0,16,5,5,16,14659,14669,15473,15464,43,15000,14999,15803,15804,0,16,5,5,16,14699,14695,15502,15504,43,14759,14754,15558,15563,0,15,16,16,15,14472,14474,15277,15275,43,15323,15322,16126,16127,0,30,6,6,30,15013,15019,15824,15818,43,15140,15135,15939,15944,0,16,5,5,16,14855,14853,15658,15660,43,14762,14767,15571,15566,0,15,16,16,15,14478,14477,15280,15279,43,14782,14776,15580,15586,0,50,30,30,50,14494,14490,15291,15297,43,14935,14938,15742,15739,0,16,5,5,16,14646,14642,15445,15450,43,15469,15468,16272,16273,0,5,16,16,5,15165,15164,15965,15972,43,15471,15470,16274,16275,0,16,30,30,16,15167,15166,15971,15970,43,14788,14770,15574,15592,0,56,1107,1107,56,14501,14482,15283,15308,43,15202,15203,16007,16006,0,16,30,30,16,14922,14921,15726,15725,43,14951,14967,15771,15755,0,5,6,6,5,14662,14661,15466,15465,43,15498,15497,16301,16302,0,30,6,6,30,15194,15193,16000,15999,43,14744,14741,15545,15548,0,6,30,30,6,14457,14460,15261,15264,43,14801,14800,15604,15605,0,30,16,16,30,14520,14519,15324,15323,43,14809,14844,15648,15613,0,30,16,16,30,14530,14529,15334,15333,43,14937,14934,15738,15741,0,16,5,5,16,14643,14634,15438,15447,43,15261,15260,16064,16065,0,5,16,16,5,14826,14815,15619,15629,43,15300,15293,16097,16104,0,5,16,16,5,14973,14972,15777,15776,43,15263,15235,16039,16067,0,5,16,16,5,14819,14818,15621,15620,43,14987,14976,15780,15791,0,30,16,16,30,14694,14684,15487,15498,43,15161,15158,15962,15965,0,15,1359,1359,15,14873,14871,15674,15678,43,15232,15231,16035,16036,0,30,6,6,30,14958,14949,15754,15763,43,14917,14918,15722,15721,0,16,5,5,16,14619,14602,15407,15423,43,15073,15072,15876,15877,0,30,16,16,30,14772,14771,15576,15575,43,14710,14833,15637,15514,0,49,16,16,49,14417,14416,15219,15218,43,15496,15489,16293,16300,0,30,6,6,30,15186,15185,15992,15991,43,15023,15030,15834,15827,0,6,30,30,6,14719,14722,15523,15526,43,14749,14750,15554,15553,0,16,5,5,16,14466,14465,15270,15269,43,15507,15508,16312,16311,0,30,6,6,30,15205,15202,16007,16010,43,15500,15499,16303,16304,0,5,16,16,5,15196,15195,15998,15997,43,15398,15395,16199,16202,0,5,16,16,5,15084,15083,15886,15885,43,15152,15151,15955,15956,0,5,16,16,5,14868,14867,15672,15671,43,14975,14986,15790,15779,0,5,6,6,5,14685,14693,15497,15490,43,15233,15232,16036,16037,0,16,30,30,16,14959,14958,15763,15762,43,15005,15004,15808,15809,0,30,16,16,30,14702,14701,15506,15505,43,15143,15146,15950,15947,0,30,6,6,30,14860,14859,15666,15665,43,15508,15509,16313,16312,0,30,6,6,30,15202,15201,16008,16007,43,15313,15314,16118,16117,0,5,16,16,5,14978,15018,15822,15783,43,15169,15164,15968,15973,0,16,15,15,16,14879,14878,15683,15682,43,15499,15498,16302,16303,0,16,30,30,16,15195,15194,15999,15998,43,15314,15315,16119,16118,0,5,16,16,5,15018,14985,15788,15822,43,14778,14779,15583,15582,0,16,44,44,16,14489,14491,15296,15292,43,15259,15258,16062,16063,0,5,16,16,5,14811,14823,15626,15616,43,15069,15070,15874,15873,0,16,5,5,16,14765,14764,15569,15568,43,15391,15387,16191,16195,0,30,6,6,30,15091,15094,15897,15896,43,15418,15417,16221,16222,0,30,6,6,30,15114,15113,15920,15919,43,15003,15002,15806,15807,0,16,5,5,16,14697,14696,15501,15500,43,14899,14906,15710,15703,0,16,5,5,16,14595,14594,15399,15398,43,15419,15418,16222,16223,0,16,30,30,16,15115,15114,15919,15918,43,15112,15192,15996,15916,0,49,30,30,49,14817,14821,15624,15622,43,15464,15463,16267,16268,0,5,16,16,5,15160,15159,15962,15961,43,15328,15329,16133,16132,0,5,16,16,5,15029,15028,15833,15832,43,15102,15095,15899,15906,0,6,30,30,6,14796,14791,15598,15601,43,15150,15145,15949,15954,0,5,16,16,5,14864,14862,15663,15667,43,15163,15170,15974,15967,0,1360,30,30,1360,14877,14880,15681,15684,43,15373,15376,16180,16177,0,30,6,6,30,15061,15050,15855,15866,43,14811,14858,15662,15615,0,6,30,30,6,14409,14413,15217,15214,43,14812,14843,15647,15616,0,5,6,6,5,14542,14543,15347,15346,43,15077,15076,15880,15881,0,30,16,16,30,14774,14773,15578,15577,43,14741,14742,15546,15545,0,30,16,16,30,14460,14459,15262,15261,43,15492,15493,16297,16296,0,5,16,16,5,15188,15187,15990,15989,43,15416,15415,16219,16220,0,5,16,16,5,15112,15111,15914,15913,43,15138,15136,15940,15942,0,30,16,16,30,14849,14854,15657,15656,43,15265,15262,16066,16069,0,5,16,16,5,14830,14835,15638,15634,43,15388,15377,16181,16192,0,6,5,5,6,15095,15087,15892,15899,43,15462,15461,16265,16266,0,30,6,6,30,15158,15157,15964,15963,43,15415,15414,16218,16219,0,16,30,30,16,15111,15110,15915,15914,43,15351,15342,16146,16155,0,16,30,30,16,15047,15046,15851,15850,43,15481,15488,16292,16285,0,30,6,6,30,15177,15184,15985,15984,43,14806,14805,15609,15610,0,6,30,30,6,14518,14522,15325,15319,43,14785,14763,15567,15589,0,1521,1243,1243,1521,14499,14480,15285,15304,43,14889,14892,15696,15693,0,16,5,5,16,14565,14564,15369,15368,43,15414,15413,16217,16218,0,30,6,6,30,15110,15109,15916,15915,43,14821,14829,15633,15625,0,6,30,30,6,14546,14549,15350,15353,43,14940,14949,15753,15744,0,30,16,16,30,14645,14644,15449,15448,43,14787,14764,15568,15591,0,1523,1254,1254,1523,14504,14503,15306,15305,43,14938,14930,15734,15742,0,16,5,5,16,14642,14641,15446,15445,43,15071,15078,15882,15875,0,6,30,30,6,14767,14770,15571,15574,43,15147,15152,15956,15951,0,6,5,5,6,14866,14868,15671,15669,43,15052,15051,15855,15856,0,16,5,5,16,14749,14745,15548,15554,43,15455,15456,16260,16259,0,30,6,6,30,15151,15146,15951,15956,43,14742,14743,15547,15546,0,16,5,5,16,14459,14458,15263,15262,43,14748,14746,15550,15552,0,5,6,6,5,14462,14463,15268,15265,43,15123,15124,15928,15927,0,5,16,16,5,14844,14843,15648,15647,43,15136,15139,15943,15940,0,6,30,30,6,14854,14856,15659,15657,43,15470,15469,16273,16274,0,30,6,6,30,15166,15165,15972,15971,43,14963,14951,15755,15767,0,16,5,5,16,14670,14662,15465,15474,43,14781,14772,15576,15585,0,44,5,5,44,14493,14483,15290,15298,43,15164,15188,15992,15968,0,15,1522,1522,15,14878,14901,15706,15683,43,14996,14998,15802,15800,0,16,5,5,16,14680,14686,15489,15485,43,15364,15357,16161,16168,0,5,16,16,5,15071,15062,15865,15875,43,14891,14898,15702,15695,0,16,5,5,16,14571,14570,15375,15374,43,14835,14820,15624,15639,0,30,16,16,30,14535,14533,15336,15338,43,15476,15477,16281,16280,0,5,16,16,5,15172,15171,15974,15973,43,15129,15126,15930,15933,0,30,6,6,30,14845,14839,15642,15650,43,15010,15011,15815,15814,0,16,5,5,16,14704,14707,15514,15509,43,15211,15247,16051,16015,0,16,30,30,16,14931,14933,15737,15736,43,14972,14970,15774,15776,0,6,30,30,6,14658,14651,15458,15459,43,14756,14759,15563,15560,0,1359,15,15,1359,14469,14472,15275,15272,43,15248,15249,16053,16052,0,30,6,6,30,14960,14961,15765,15764,43,15186,15159,15963,15990,0,1520,1254,1254,1520,14897,14869,15676,15702,43,15162,15155,15959,15966,0,1360,30,30,1360,14874,14876,15679,15677,43,15335,15328,16132,16139,0,5,16,16,5,15030,15029,15832,15834,43,15369,15353,16157,16173,0,6,5,5,6,15063,15064,15867,15868,43,15485,15484,16288,16289,0,5,16,16,5,15181,15180,15981,15988,43,15081,15082,15886,15885,0,16,5,5,16,14777,14776,15581,15580,43,15080,15081,15885,15884,0,30,16,16,30,14778,14777,15580,15579,43,15007,15008,15812,15811,0,6,30,30,6,14703,14706,15507,15510,43,14774,14782,15586,15578,0,6,50,50,6,14484,14494,15297,15289,43,15054,15053,15857,15858,0,6,30,30,6,14746,14750,15553,15547,43,15422,15421,16225,16226,0,30,6,6,30,15118,15117,15924,15923,43,14926,14933,15737,15730,0,16,5,5,16,14626,14628,15432,15431,43,15370,15375,16179,16174,0,30,6,6,30,15049,15054,15859,15856,43,15004,15003,15807,15808,0,16,5,5,16,14701,14697,15500,15506,43,14802,14801,15605,15606,0,6,30,30,6,14516,14520,15323,15321,43,15420,15419,16223,16224,0,5,16,16,5,15116,15115,15918,15917,43,14803,14802,15606,15607,0,16,5,5,16,14517,14516,15321,15320,43,14739,14740,15544,15543,0,16,30,30,16,14456,14455,15260,15259,43,15410,15409,16213,16214,0,30,6,6,30,15106,15105,15912,15911,43,15083,15084,15888,15887,0,6,30,30,6,14779,14782,15583,15586,43,15135,15137,15941,15939,0,5,6,6,5,14853,14852,15653,15658,43,14930,14937,15741,15734,0,16,5,5,16,14641,14643,15447,15446,43,15076,15075,15879,15880,0,16,5,5,16,14773,14769,15572,15578,43,14766,14788,15592,15570,0,1248,56,56,1248,14502,14501,15308,15307,43,15491,15492,16296,16295,0,30,6,6,30,15189,15188,15989,15994,43,14967,14969,15773,15771,0,6,30,30,6,14661,14655,15462,15466,43,15082,15083,15887,15886,0,16,5,5,16,14776,14779,15586,15581,43,14763,14769,15573,15567,0,1243,1361,1361,1243,14480,14479,15286,15285,43,14786,14762,15566,15590,0,1522,15,15,1522,14500,14478,15279,15303,43,15130,15131,15935,15934,0,5,16,16,5,14846,14848,15651,15649,43,15307,15308,16112,16111,0,30,6,6,30,14990,14997,15800,15795,43,14820,14834,15638,15624,0,30,16,16,30,14533,14509,15312,15336,43,14894,14887,15691,15698,0,6,30,30,6,14560,14563,15364,15367,43,15044,15045,15849,15848,0,30,16,16,30,14742,14741,15544,15543,43,15463,15462,16266,16267,0,16,30,30,16,15159,15158,15963,15962,43,15246,15211,16015,16050,0,16,30,30,16,14932,14931,15736,15735,43,14968,14974,15778,15772,0,6,30,30,6,14647,14650,15451,15454,43,15361,15364,16168,16165,0,6,5,5,6,15065,15071,15875,15870,43,14970,14973,15777,15774,0,6,30,30,6,14651,14654,15455,15458,43,15324,15299,16103,16128,0,5,16,16,5,15012,15011,15816,15815,43,14752,14751,15555,15556,0,6,5,5,6,14498,14497,15302,15301,43,15413,15412,16216,16217,0,5,16,16,5,15109,15108,15909,15916,43,15059,15060,15864,15863,0,6,30,30,6,14755,14758,15559,15562,43,15022,15015,15819,15826,0,6,30,30,6,14716,14711,15518,15521,43,14916,14909,15713,15720,0,6,30,30,6,14578,14581,15382,15385,43,14936,14927,15731,15740,0,16,5,5,16,14631,14627,15430,15435,43,15060,15061,15865,15864,0,30,16,16,30,14758,14757,15560,15559,43,14884,14900,15704,15688,0,6,30,30,6,14596,14599,15400,15403,43,14921,14886,15690,15725,0,6,30,30,6,14611,14605,15412,15416,43,14969,14972,15776,15773,0,6,30,30,6,14655,14658,15459,15462,43,15075,15074,15878,15879,0,16,5,5,16,14769,14768,15573,15572,43,14831,14835,15639,15635,0,16,5,5,16,14556,14535,15338,15361,43,15089,15088,15892,15893,0,30,16,16,30,14788,14787,15592,15591,43,15424,15423,16227,16228,0,5,16,16,5,15120,15119,15922,15921,43,14861,14860,15664,15665,0,16,5,5,16,14415,14432,15237,15220,43,15201,15202,16006,16005,0,5,16,16,5,14917,14922,15725,15724,43,14784,14752,15556,15588,0,1520,6,6,1520,14496,14498,15301,15299,43,14902,14885,15689,15706,0,16,5,5,16,14601,14600,15405,15404,43,15017,15018,15822,15821,0,16,5,5,16,14713,14712,15517,15516,43,14760,14758,15562,15564,0,1360,1243,1243,1360,14471,14468,15273,15276,43,15505,15506,16310,16309,0,5,16,16,5,15203,15206,16009,16006,43,15482,15481,16285,16286,0,30,6,6,30,15178,15177,15984,15983,43,15016,15017,15821,15820,0,30,16,16,30,14714,14713,15516,15515,43,15506,15507,16311,16310,0,16,30,30,16,15206,15205,16010,16009,43,15338,15336,16140,16142,0,5,16,16,5,15033,15036,15840,15837,43,15151,15148,15952,15955,0,16,30,30,16,14867,14865,15670,15672,43,14892,14891,15695,15696,0,6,30,30,6,14564,14571,15374,15369,43,14897,14922,15726,15701,0,16,5,5,16,14610,14609,15414,15413,43,15309,15310,16114,16113,0,30,6,6,30,14984,14991,15794,15789,43,14964,14963,15767,15768,0,30,16,16,30,14668,14670,15474,15471,43,15405,15406,16210,16209,0,5,16,16,5,15099,15104,15907,15902,43,14993,14996,15800,15797,0,16,5,5,16,14681,14680,15485,15484,43,15090,15089,15893,15894,0,6,30,30,6,14784,14788,15591,15589,43,15125,15130,15934,15929,0,5,16,16,5,14840,14846,15649,15641,43,15014,15007,15811,15818,0,6,30,30,6,14708,14703,15510,15513,43,15479,15480,16284,16283,0,30,6,6,30,15175,15170,15975,15980,43,15385,15392,16196,16189,0,30,6,6,30,15090,15089,15894,15893,43,14950,14941,15745,15754,0,5,6,6,5,14625,14624,15429,15428,43,14740,14737,15541,15544,0,30,6,6,30,14455,14453,15258,15260,43,15053,15052,15856,15857,0,30,16,16,30,14750,14749,15554,15553,43,14718,14798,15602,15522,0,0,6,6,0,14429,14431,15235,15234,43,14834,14790,15594,15638,0,30,16,16,30,14509,14419,15222,15312,43,15421,15420,16224,16225,0,5,16,16,5,15117,15116,15917,15924,43,15478,15479,16283,16282,0,16,30,30,16,15176,15175,15980,15979,43,14856,14857,15661,15660,0,16,5,5,16,14420,14410,15213,15225,43,15204,15205,16009,16008,0,5,16,16,5,14920,14919,15722,15721,43,15366,15363,16167,16170,0,30,6,6,30,15070,15069,15874,15873,43,15124,15127,15931,15928,0,16,30,30,16,14843,14841,15646,15648,43,14925,14928,15732,15729,0,6,30,30,6,14620,14623,15424,15427,43,15137,15134,15938,15941,0,30,16,16,30,14852,14851,15654,15653,43,15133,15138,15942,15937,0,5,6,6,5,14850,14849,15656,15655,43,15477,15478,16282,16281,0,5,16,16,5,15171,15176,15979,15974,43,15340,15337,16141,16144,0,5,16,16,5,15043,15048,15852,15848,43,15067,15068,15872,15871,0,6,30,30,6,14763,14766,15567,15570,43,15431,15432,16236,16235,0,30,6,6,30,15127,15122,15927,15932,43,15427,15428,16232,16231,0,30,6,6,30,15125,15124,15925,15930,43,15305,15312,16116,16109,0,30,6,6,30,14987,14986,15793,15792,43,15177,15179,15983,15981,0,6,5,5,6,14889,14892,15693,15696,43,15128,15123,15927,15932,0,6,5,5,6,14842,14844,15647,15645,43,14746,14749,15553,15550,0,30,16,16,30,14463,14466,15269,15268,43,15131,15132,15936,15935,0,16,30,30,16,14848,14847,15652,15651,43,15374,15371,16175,16178,0,30,6,6,30,15058,15057,15864,15863,43,15148,15150,15954,15952,0,6,5,5,6,14865,14864,15667,15670,43,15336,15339,16143,16140,0,5,16,16,5,15036,15045,15849,15840,43,15377,15400,16204,16181,0,6,5,5,6,15087,15088,15891,15892,43,15317,15316,16120,16121,0,30,6,6,30,15016,14975,15780,15821,43,15301,15302,16106,16105,0,30,6,6,30,14996,14999,15804,15801,43,15104,15103,15907,15908,0,16,5,5,16,14803,14801,15604,15608,43,15174,15183,15987,15978,0,5,44,44,5,14885,14896,15699,15692,43,15120,15264,16068,15924,0,0,5,5,0,14831,14832,15635,15636,43,15486,15485,16289,16290,0,30,6,6,30,15182,15181,15988,15987,43,15226,15246,16050,16030,0,30,6,6,30,14956,14932,15735,15761,43,15015,15016,15820,15819,0,6,30,30,6,14711,14714,15515,15518,43,14862,14718,15522,15666,0,5,0,0,5,14430,14429,15234,15233,43,14730,14729,15533,15534,0,30,16,16,30,14446,14445,15250,15249,43,15484,15483,16287,16288,0,5,16,16,5,15180,15179,15982,15981,43,15105,15104,15908,15909,0,30,16,16,30,14804,14803,15608,15607,43,15290,15289,16093,16094,0,5,16,16,5,14974,14963,15768,15781,43,15231,15223,16027,16035,0,30,6,6,30,14949,14948,15755,15754,43,15045,15046,15850,15849,0,16,5,5,16,14741,14740,15545,15544,43,15401,15402,16206,16205,0,5,16,16,5,15097,15102,15905,15904,43,15062,15055,15859,15866,0,6,30,30,6,14756,14751,15558,15561,43,14750,14745,15549,15554,0,5,6,6,5,14465,14464,15267,15270,43,15310,15307,16111,16114,0,5,16,16,5,14991,14990,15795,15794,43,14990,14983,15787,15794,0,6,30,30,6,14687,14688,15491,15492,43,14888,14914,15718,15692,0,6,30,30,6,14572,14575,15376,15379,43,15166,15189,15993,15970,0,1254,1523,1523,1254,14905,14904,15709,15708,43,14961,14964,15768,15765,0,6,30,30,6,14667,14668,15471,15472,43,14731,14732,15536,15535,0,5,16,16,5,14450,14449,15252,15251,43,15376,15370,16174,16180,0,30,6,6,30,15050,15049,15856,15855,43,15025,15024,15828,15829,0,30,16,16,30,14724,14723,15528,15527,43,14860,14863,15667,15664,0,16,5,5,16,14432,14428,15232,15237,43,15295,15298,16102,16099,0,30,6,6,30,14969,14968,15775,15774,43,14743,14748,15552,15547,0,16,5,5,16,14458,14462,15265,15263,43,14988,14985,15789,15792,0,6,30,30,6,14691,14692,15495,15496,43,14726,14720,15524,15530,0,30,1519,1519,30,14440,14438,15239,15243,43,15188,15167,15971,15992,0,1522,1359,1359,1522,14901,14883,15686,15706,43,14999,15006,15810,15803,0,6,30,30,6,14695,14698,15499,15502,43,14973,14968,15772,15777,0,6,30,30,6,14654,14647,15454,15455,43,15406,15407,16211,16210,0,16,30,30,16,15104,15103,15908,15907,43,14992,14995,15799,15796,0,16,5,5,16,14677,14676,15481,15480,43,15489,15490,16294,16293,0,5,16,16,5,15185,15190,15993,15992,43,15286,15320,16124,16090,0,30,6,6,30,14998,15004,15809,15805,43,15432,15425,16229,16236,0,30,6,6,30,15122,15121,15928,15927,43,15490,15491,16295,16294,0,16,30,30,16,15190,15189,15994,15993,43,15474,15475,16279,16278,0,16,30,30,16,15174,15173,15978,15977,43,15086,15079,15883,15890,0,6,30,30,6,14780,14775,15582,15585,43,14855,14812,15616,15659,0,5,6,6,5,14513,14542,15346,15317,43,15009,15010,15814,15813,0,16,5,5,16,14705,14704,15509,15508,43,15190,15168,15972,15994,0,56,1248,1248,56,14903,14906,15707,15710,43,14900,14899,15703,15704,0,6,30,30,6,14599,14595,15398,15400,43,15475,15476,16280,16279,0,30,6,6,30,15173,15172,15973,15978,43,15175,15181,15985,15979,0,5,44,44,5,14887,14894,15697,15690,43,15436,15435,16239,16240,0,5,16,16,5,15132,15131,15934,15933,43,15207,15208,16012,16011,0,30,6,6,30,14923,14918,15723,15728,43,14770,14765,15569,15574,0,1107,1359,1359,1107,14482,14481,15284,15283,43,14798,14855,15659,15602,0,5,6,6,5,14431,14513,15317,15235,43,15292,15313,16117,16096,0,5,16,16,5,14979,14978,15783,15782,43,15033,15034,15838,15837,0,16,5,5,16,14729,14728,15533,15532,43,14914,14915,15719,15718,0,6,30,30,6,14575,14614,15419,15376,43,14738,14739,15543,15542,0,5,16,16,5,14454,14456,15259,15257,43,15032,15033,15837,15836,0,30,16,16,30,14730,14729,15532,15531,43,15293,15294,16098,16097,0,30,6,6,30,14972,14967,15770,15777,43,15363,15368,16172,16167,0,5,16,16,5,15069,15068,15871,15874,43,15167,15172,15976,15971,0,1359,1107,1107,1359,14883,14882,15687,15686,43,14905,14908,15712,15709,0,16,5,5,16,14589,14588,15393,15392,43,14767,14768,15572,15571,0,16,30,30,16,14477,14476,15281,15280,43,15291,15292,16096,16095,0,30,6,6,30,14966,14979,15782,15771,43,14783,14755,15559,15587,0,700,1248,1248,700,14495,14470,15271,15300,43,14984,14990,15794,15788,0,6,30,30,6,14689,14687,15492,15494,43,15008,15009,15813,15812,0,30,16,16,30,14706,14705,15508,15507,43,14885,14919,15723,15689,0,16,5,5,16,14600,14604,15408,15405,43,15205,15206,16010,16009,0,5,16,16,5,14919,14924,15727,15722,43,15097,15098,15902,15901,0,16,5,5,16,14793,14792,15597,15596,43,14985,14989,15793,15789,0,6,30,30,6,14692,14690,15493,15495,43,15096,15097,15901,15900,0,30,16,16,30,14794,14793,15596,15595,43,15031,15032,15836,15835,0,6,30,30,6,14727,14730,15531,15534,43,14779,14773,15577,15583,0,44,5,5,44,14491,14485,15288,15296,43,15430,15431,16235,16234,0,16,30,30,16,15128,15127,15932,15931,43,15428,15429,16233,16232,0,5,16,16,5,15124,15123,15926,15925,43,15487,15486,16290,16291,0,16,30,30,16,15183,15182,15987,15986,43,14754,14753,15557,15558,0,16,30,30,16,14474,14473,15278,15277,43,15142,15141,15945,15946,0,30,16,16,30,14858,14857,15662,15661,43,15157,15185,15989,15961,0,1248,700,700,1248,14870,14898,15701,15675,43,15311,15318,16122,16115,0,30,6,6,30,14981,14980,15787,15786,43,14804,14803,15607,15608,0,16,5,5,16,14521,14517,15320,15326,43,15365,15366,16170,16169,0,16,30,30,16,15072,15070,15873,15876,43,15315,15309,16113,16119,0,5,16,16,5,14985,14984,15789,15788,43,15095,15096,15900,15899,0,6,30,30,6,14791,14794,15595,15598,43,14995,14993,15797,15799,0,16,5,5,16,14676,14681,15484,15481,43,14962,14959,15763,15766,0,5,6,6,5,14669,14663,15468,15473,43,15389,15385,16189,16193,0,30,6,6,30,15096,15090,15893,15900,43,15287,15304,16108,16091,0,5,16,16,5,15003,15002,15807,15806,43,14790,14710,15514,15594,0,30,49,49,30,14419,14417,15218,15222,43,14971,14955,15759,15775,0,30,16,16,30,14660,14659,15464,15463,43,15438,15437,16241,16242,0,30,6,6,30,15134,15133,15940,15939,43,15371,15369,16173,16175,0,30,6,6,30,15057,15063,15868,15864,43,15030,15029,15833,15834,0,6,30,30,6,14722,14726,15529,15523,43,14910,14903,15707,15714,0,6,30,30,6,14584,14587,15388,15391,43,14805,14804,15608,15609,0,30,16,16,30,14522,14521,15326,15325,43,15472,15471,16275,16276,0,5,16,16,5,15168,15167,15970,15969,43,15182,15173,15977,15986,0,50,6,6,50,14893,14886,15691,15698,43,15337,15351,16155,16141,0,16,30,30,16,15048,15047,15850,15852,43,15321,15287,16091,16125,0,5,16,16,5,15006,15003,15806,15810,43,15333,15345,16149,16137,0,30,6,6,30,15037,15041,15846,15844,43,14986,14988,15792,15790,0,6,30,30,6,14693,14691,15496,15497,43,15483,15482,16286,16287,0,16,30,30,16,15179,15178,15983,15982,43,15094,15093,15897,15898,0,6,30,30,6,14786,14790,15593,15587,43,15024,15023,15827,15828,0,16,5,5,16,14723,14719,15526,15528,43,14747,14744,15548,15551,0,6,30,30,6,14461,14457,15264,15266,43,15146,15149,15953,15950,0,30,6,6,30,14859,14863,15668,15666,43,14721,14726,15530,15525,0,5,6,6,5,14441,14440,15243,15246,43,15155,15156,15960,15959,0,30,16,16,30,14876,14875,15680,15679,43,15493,15494,16298,16297,0,5,16,16,5,15187,15192,15995,15990,43,15296,15295,16099,16100,0,5,16,16,5,14962,14969,15774,15769,43,15037,15038,15842,15841,0,16,5,5,16,14733,14732,15537,15536,43,15200,15120,15924,16004,0,6,0,0,6,14833,14831,15636,15637,43,15170,15169,15973,15974,0,30,16,16,30,14880,14879,15682,15681,43,14997,14992,15796,15801,0,16,5,5,16,14672,14677,15480,15477,43,15035,15036,15840,15839,0,6,30,30,6,14731,14734,15535,15538,43,15245,15214,16018,16049,0,6,5,5,6,14945,14944,15748,15749,43,14765,14786,15590,15569,0,1359,1522,1522,1359,14481,14500,15303,15284,43,15070,15063,15867,15874,0,6,30,30,6,14764,14759,15566,15569,43,15466,15465,16269,16270,0,30,6,6,30,15162,15161,15968,15967,43,14911,14890,15694,15715,0,16,5,5,16,14577,14576,15381,15380,43,14844,14824,15628,15648,0,6,30,30,6,14529,14554,15359,15334,43,14918,14884,15688,15722,0,6,30,30,6,14602,14596,15403,15407,43,15101,15102,15906,15905,0,16,5,5,16,14797,14796,15601,15600,43,15433,15440,16244,16237,0,30,6,6,30,15129,15136,15937,15936,43,14974,14971,15775,15778,0,6,30,30,6,14650,14660,15463,15451,43,15099,15100,15904,15903,0,6,30,30,6,14795,14798,15599,15602,43,14906,14905,15709,15710,0,6,30,30,6,14594,14589,15392,15399,43,15457,15464,16268,16261,0,30,6,6,30,15153,15160,15961,15960,43,15407,15408,16212,16211,0,30,6,6,30,15103,15098,15903,15908,43,15497,15504,16308,16301,0,30,6,6,30,15193,15200,16001,16000,43,14745,14747,15551,15549,0,30,16,16,30,14464,14461,15266,15267,43,15039,15040,15844,15843,0,6,30,30,6,14735,14738,15539,15542,43,15468,15467,16271,16272,0,5,16,16,5,15164,15163,15966,15965,43,15222,15237,16041,16026,0,16,30,30,16,14935,14937,15740,15738,43,15149,15147,15951,15953,0,16,30,30,16,14863,14866,15669,15668,43,14857,14811,15615,15661,0,6,30,30,6,14410,14409,15214,15213,43,15444,15443,16247,16248,0,5,16,16,5,15140,15139,15942,15941,43,15302,15286,16090,16106,0,30,6,6,30,14999,14998,15805,15804,43,14773,14774,15578,15577,0,1359,1243,1243,1359,14485,14484,15289,15288,43,15346,15333,16137,16150,0,30,6,6,30,15038,15037,15844,15843,43,14771,14780,15584,15575,0,6,50,50,6,14486,14492,15295,15287,43,14941,14925,15729,15745,0,6,30,30,6,14624,14620,15427,15429,43,15139,15142,15946,15943,0,6,30,30,6,14856,14858,15661,15659,43,15423,15422,16226,16227,0,16,30,30,16,15119,15118,15923,15922,43,15303,15306,16110,16107,0,30,6,6,30,14993,14992,15799,15798,43,15185,15153,15957,15989,0,700,5,5,700,14898,14900,15703,15701,43,15040,15041,15845,15844,0,30,16,16,30,14738,14737,15540,15539,43,15026,15025,15829,15830,0,6,30,30,6,14720,14724,15527,15525,43,15467,15466,16270,16271,0,16,30,30,16,15163,15162,15967,15966,43,15445,15444,16248,16249,0,5,16,16,5,15141,15140,15941,15948,43,15206,15207,16011,16010,0,16,30,30,16,14924,14923,15728,15727,43,14903,14904,15708,15707,0,16,5,5,16,14587,14590,15397,15388,43,15396,15378,16182,16200,0,16,30,30,16,15086,15085,15890,15889,43,15341,15344,16148,16145,0,30,6,6,30,15034,15031,15836,15839,43,14989,14984,15788,15793,0,16,5,5,16,14690,14689,15494,15493,43,15299,15300,16104,16103,0,30,6,6,30,15011,14973,15776,15816,43,15154,15186,15990,15958,0,6,1520,1520,6,14899,14897,15702,15704,43,15134,15133,15937,15938,0,16,5,5,16,14851,14850,15655,15654,43,14799,14806,15610,15603,0,6,30,30,6,14515,14518,15319,15322,43,15357,15373,16177,16161,0,16,30,30,16,15062,15061,15866,15865,43,15141,15140,15944,15945,0,16,5,5,16,14857,14855,15660,15662,43,15091,15090,15894,15895,0,16,5,5,16,14785,14784,15589,15588,43,15368,15362,16166,16172,0,30,6,6,30,15068,15067,15872,15871,43,14983,14987,15791,15787,0,6,30,30,6,14688,14694,15498,15491,43,14901,14902,15706,15705,0,16,5,5,16,14593,14601,15404,15394,43,14991,14997,15801,15795,0,16,5,5,16,14673,14672,15477,15476,43,15437,15436,16240,16241,0,5,16,16,5,15133,15132,15933,15940,43,15294,15291,16095,16098,0,5,16,16,5,14967,14966,15771,15770,43,15029,15028,15832,15833,0,30,16,16,30,14726,14725,15530,15529,43,14933,14950,15754,15737,0,5,6,6,5,14628,14625,15428,15432,43,15092,15091,15895,15896,0,16,5,5,16,14789,14785,15588,15594,43,15429,15430,16234,16233,0,5,16,16,5,15123,15128,15931,15926,43,15183,15177,15981,15987,0,44,16,16,44,14896,14889,15696,15699,43,15236,15222,16026,16040,0,16,30,30,16,14911,14935,15738,15714,43,15043,15044,15848,15847,0,6,30,30,6,14739,14742,15543,15546,43,15048,15047,15851,15852,0,16,5,5,16,14747,14743,15550,15552,43,15460,15459,16263,16264,0,5,16,16,5,15156,15155,15958,15957,43,16330,16333,16336,16339,0,6,6,6,6,16013,16014,16015,16016,43,16337,16334,16331,16340,0,6,6,6,6,16017,16018,16019,16020,43,16327,16324,16345,16342,0,6,6,6,6,16021,16022,16023,16024,43,16346,16325,16328,16343,0,6,6,6,6,16025,16026,16027,16028,43,16317,16348,16351,16320,0,6,6,6,6,16029,16030,16031,16032,43,16352,16349,16318,16321,0,6,6,6,6,16033,16034,16035,16036,43,16357,16339,16336,16354,0,6,6,6,6,16037,16016,16015,16038,43,16337,16340,16358,16355,0,6,6,6,6,16017,16020,16039,16040,43,16345,16363,16360,16342,0,6,6,6,6,16023,16041,16042,16024,43,16361,16364,16346,16343,0,6,6,6,6,16043,16044,16025,16028,43,16363,16357,16354,16360,0,6,6,6,6,16041,16037,16038,16042,43,16355,16358,16364,16361,0,6,6,6,6,16040,16039,16044,16043,43,16348,16366,16369,16351,0,6,6,6,6,16030,16045,16031,16031,43,16370,16367,16349,16352,0,6,6,6,6,16046,16047,16034,16033,43,16366,16324,16327,16369,0,6,6,6,6,16045,16022,16021,16031,43,16328,16325,16367,16370,0,6,6,6,6,16027,16026,16047,16046,43,16330,16372,16375,16333,0,6,6,6,6,16013,16048,16049,16014,43,16376,16373,16331,16334,0,6,6,6,6,16050,16051,16019,16018,43,16378,16615,16621,16381,0,6,6,6,6,16052,16053,16054,16055,43,16622,16616,16379,16382,0,6,6,6,6,16056,16057,16058,16059,43,16319,16383,16385,16322,0,6,6,6,6,16060,16060,16061,16061,43,16386,16384,16319,16322,0,6,6,6,6,16061,16060,16060,16061,43,16383,16317,16320,16385,0,6,6,6,6,16060,16029,16032,16061,43,16321,16318,16384,16386,0,6,6,6,6,16036,16035,16060,16061,43,16333,16393,16395,16336,0,6,6,6,6,16014,16062,16063,16015,43,16396,16394,16334,16337,0,6,6,6,6,16064,16065,16018,16017,43,16393,16332,16335,16395,0,6,6,6,6,16062,16066,16067,16063,43,16335,16332,16394,16396,0,6,6,6,6,16067,16066,16065,16064,43,16329,16391,16397,16338,0,6,6,6,6,16068,16069,16070,16071,43,16398,16392,16329,16338,0,6,6,6,6,16072,16073,16068,16071,43,16391,16330,16339,16397,0,6,6,6,6,16069,16013,16016,16070,43,16340,16331,16392,16398,0,6,6,6,6,16020,16019,16073,16072,43,16326,16389,16399,16341,0,6,6,6,6,16074,16075,16076,16077,43,16400,16390,16326,16341,0,6,6,6,6,16078,16079,16074,16077,43,16389,16327,16342,16399,0,6,6,6,6,16075,16021,16024,16076,43,16343,16328,16390,16400,0,6,6,6,6,16028,16027,16079,16078,43,16324,16387,16401,16345,0,6,6,6,6,16022,16080,16081,16023,43,16402,16388,16325,16346,0,6,6,6,6,16082,16083,16026,16025,43,16387,16323,16344,16401,0,6,6,6,6,16080,16084,16085,16081,43,16344,16323,16388,16402,0,6,6,6,6,16085,16084,16083,16082,43,16347,16403,16383,16319,0,6,6,6,6,3423,3423,16060,16060,43,16384,16404,16347,16319,0,6,6,6,6,16060,3423,3423,16060,43,16403,16348,16317,16383,0,6,6,6,6,3423,16030,16029,16060,43,16318,16349,16404,16384,0,6,6,6,6,16035,16034,3423,16060,43,16322,16385,16405,16350,0,6,6,6,6,16061,16061,3471,3471,43,16406,16386,16322,16350,0,6,6,6,6,3471,16061,16061,3471,43,16385,16320,16351,16405,0,6,6,6,6,16061,16032,16031,3471,43,16352,16321,16386,16406,0,6,6,6,6,16033,16036,16061,3471,43,16353,16407,16395,16335,0,6,6,6,6,16086,16087,16063,16067,43,16396,16408,16353,16335,0,6,6,6,6,16064,16088,16086,16067,43,16407,16354,16336,16395,0,6,6,6,6,16087,16038,16015,16063,43,16337,16355,16408,16396,0,6,6,6,6,16017,16040,16088,16064,43,16338,16397,16409,16356,0,6,6,6,6,16071,16070,16089,16090,43,16410,16398,16338,16356,0,6,6,6,6,16091,16072,16071,16090,43,16397,16339,16357,16409,0,6,6,6,6,16070,16016,16037,16089,43,16358,16340,16398,16410,0,6,6,6,6,16039,16020,16072,16091,43,16359,16411,16407,16353,0,6,6,6,6,16086,16092,16087,16086,43,16408,16412,16359,16353,0,6,6,6,6,16088,16093,16086,16086,43,16411,16360,16354,16407,0,6,6,6,6,16092,16042,16038,16087,43,16355,16361,16412,16408,0,6,6,6,6,16040,16043,16093,16088,43,16341,16399,16411,16359,0,6,6,6,6,16077,16076,16092,16086,43,16412,16400,16341,16359,0,6,6,6,6,16093,16078,16077,16086,43,16399,16342,16360,16411,0,6,6,6,6,16076,16024,16042,16092,43,16361,16343,16400,16412,0,6,6,6,6,16043,16028,16078,16093,43,16362,16413,16401,16344,0,6,6,6,6,16090,16094,16081,16085,43,16402,16414,16362,16344,0,6,6,6,6,16082,16095,16090,16085,43,16413,16363,16345,16401,0,6,6,6,6,16094,16041,16023,16081,43,16346,16364,16414,16402,0,6,6,6,6,16025,16044,16095,16082,43,16356,16409,16413,16362,0,6,6,6,6,16090,16089,16094,16090,43,16414,16410,16356,16362,0,6,6,6,6,16095,16091,16090,16090,43,16409,16357,16363,16413,0,6,6,6,6,16089,16037,16041,16094,43,16364,16358,16410,16414,0,6,6,6,6,16044,16039,16091,16095,43,16365,16415,16403,16347,0,6,6,6,6,3423,3423,3423,3423,43,16404,16416,16365,16347,0,6,6,6,6,3423,3423,3423,3423,43,16415,16366,16348,16403,0,6,6,6,6,3423,16045,16030,3423,43,16349,16367,16416,16404,0,6,6,6,6,16034,16047,3423,3423,43,16323,16387,16415,16365,0,6,6,6,6,16084,16080,3423,3423,43,16416,16388,16323,16365,0,6,6,6,6,3423,16083,16084,3423,43,16387,16324,16366,16415,0,6,6,6,6,16080,16022,16045,3423,43,16367,16325,16388,16416,0,6,6,6,6,16047,16026,16083,3423,43,16368,16417,16389,16326,0,6,6,6,6,3471,3471,16075,16074,43,16390,16418,16368,16326,0,6,6,6,6,16079,3471,3471,16074,43,16417,16369,16327,16389,0,6,6,6,6,3471,16031,16021,16075,43,16328,16370,16418,16390,0,6,6,6,6,16027,16046,3471,16079,43,16350,16405,16417,16368,0,6,6,6,6,3471,3471,3471,3471,43,16418,16406,16350,16368,0,6,6,6,6,3471,3471,3471,3471,43,16405,16351,16369,16417,0,6,6,6,6,3471,16031,16031,3471,43,16370,16352,16406,16418,0,6,6,6,6,16046,16033,3471,3471,43,16371,16419,16391,16329,0,6,6,6,6,3423,3423,16069,16068,43,16392,16420,16371,16329,0,6,6,6,6,16073,3423,3423,16068,43,16419,16372,16330,16391,0,6,6,6,6,3423,16048,16013,16069,43,16331,16373,16420,16392,0,6,6,6,6,16019,16051,3423,16073,43,16332,16393,16421,16374,0,6,6,6,6,16066,16062,3471,3471,43,16422,16394,16332,16374,0,6,6,6,6,3471,16065,16066,3471,43,16393,16333,16375,16421,0,6,6,6,6,16062,16014,16049,3471,43,16376,16334,16394,16422,0,6,6,6,6,16050,16018,16065,3471,43,16686,16615,16378,16423,0,6,6,6,6,16096,16053,16052,16097,43,16379,16616,16687,16424,0,6,6,6,6,16058,16057,16098,16099,43,16380,16425,16690,16620,0,6,6,6,6,3471,3471,3471,3471,43,16691,16426,16380,16620,0,6,6,6,6,3471,3471,3471,3471,43,16425,16381,16621,16690,0,6,6,6,6,3471,16055,16054,3471,43,16622,16382,16426,16691,0,6,6,6,6,16056,16059,3471,3471,43,16739,16736,16427,16429,0,6,6,6,6,3423,16100,16101,16102,43,16428,16737,16739,16429,0,6,6,6,6,16103,16104,3423,16102,43,16423,16430,16742,16686,0,6,6,6,6,16097,16105,16106,16096,43,16743,16431,16424,16687,0,6,6,6,6,16107,16108,16099,16098,43,16377,16432,16430,16423,0,6,6,6,6,16109,16110,16105,16097,43,16431,16432,16377,16424,0,6,6,6,6,16108,16110,16109,16099,43,16372,16434,16437,16375,0,6,6,6,6,16048,16111,16112,16049,43,16438,16435,16373,16376,0,6,6,6,6,16113,16114,16051,16050,43,16434,16378,16381,16437,0,6,6,6,6,16111,16052,16055,16112,43,16382,16379,16435,16438,0,6,6,6,6,16059,16058,16114,16113,43,16423,16439,16433,16377,0,6,6,6,6,16097,3423,3423,16109,43,16433,16440,16424,16377,0,6,6,6,6,3423,3423,16099,16109,43,16439,16419,16371,16433,0,6,6,6,6,3423,3423,3423,3423,43,16371,16420,16440,16433,0,6,6,6,6,3423,3423,3423,3423,43,16378,16434,16439,16423,0,6,6,6,6,16052,16111,3423,16097,43,16440,16435,16379,16424,0,6,6,6,6,3423,16114,16058,16099,43,16434,16372,16419,16439,0,6,6,6,6,16111,16048,3423,3423,43,16420,16373,16435,16440,0,6,6,6,6,3423,16051,16114,3423,43,16421,16441,16436,16374,0,6,6,6,6,3471,3471,3471,3471,43,16436,16442,16422,16374,0,6,6,6,6,3471,3471,3471,3471,43,16441,16425,16380,16436,0,6,6,6,6,3471,3471,3471,3471,43,16380,16426,16442,16436,0,6,6,6,6,3471,3471,3471,3471,43,16375,16437,16441,16421,0,6,6,6,6,16049,16112,3471,3471,43,16442,16438,16376,16422,0,6,6,6,6,3471,16113,16050,3471,43,16437,16381,16425,16441,0,6,6,6,6,16112,16055,3471,3471,43,16426,16382,16438,16442,0,6,6,6,6,3471,16059,16113,3471,43,16443,16445,16448,16446,0,6,6,6,6,16115,16116,16116,16117,43,16448,16445,16444,16447,0,6,6,6,6,16116,16116,16118,16119,43,16757,16443,16446,16763,0,6,6,6,6,16120,16115,16117,16121,43,16447,16444,16758,16764,0,6,6,6,6,16119,16118,16122,16123,43,16429,16427,16449,16451,0,6,6,6,6,16102,16101,16124,16125,43,16450,16428,16429,16451,0,6,6,6,6,16126,16103,16102,16125,43,16427,16736,16768,16449,0,6,6,6,6,16101,16100,16127,16124,43,16769,16737,16428,16450,0,6,6,6,6,16128,16104,16103,16126,43,16452,16443,16757,16772,0,6,6,6,6,16129,16115,16120,16106,43,16758,16444,16453,16773,0,6,6,6,6,16122,16118,16130,16107,43,16454,16445,16443,16452,0,6,6,6,6,16131,16116,16115,16129,43,16444,16445,16454,16453,0,6,6,6,6,16118,16116,16131,16130,43,16455,16451,16449,16456,0,6,6,6,6,16132,16125,16124,16133,43,16450,16451,16455,16457,0,6,6,6,6,16126,16125,16132,16134,43,16456,16449,16768,16778,0,6,6,6,6,16133,16124,16127,4054,43,16769,16450,16457,16779,0,6,6,6,6,16128,16126,16134,4033,43,16448,16458,16459,16446,0,6,6,6,6,16116,16132,16133,16117,43,16460,16458,16448,16447,0,6,6,6,6,16134,16132,16116,16119,43,16458,16455,16456,16459,0,6,6,6,6,16132,16132,16133,16133,43,16457,16455,16458,16460,0,6,6,6,6,16134,16132,16132,16134,43,16446,16459,16783,16763,0,6,6,6,6,16117,16133,16135,16121,43,16784,16460,16447,16764,0,6,6,6,6,4123,16134,16119,16123,43,16459,16456,16778,16783,0,6,6,6,6,16133,16133,4054,16135,43,16779,16457,16460,16784,0,6,6,6,6,4033,16134,16134,4123,43,16485,16483,16479,16481,0,6,6,6,6,16136,16137,16138,16139,43,16480,16484,16486,16482,0,6,6,6,6,16140,16141,16142,16143,43,16489,16487,16483,16485,0,6,6,6,6,16144,16145,16137,16136,43,16484,16488,16490,16486,0,6,6,6,6,16141,16146,16147,16142,43,16493,16491,16487,16489,0,6,6,6,6,16148,16149,16145,16144,43,16488,16492,16494,16490,0,6,6,6,6,16146,16150,16151,16147,43,16804,16505,16503,16802,0,6,6,6,6,16152,16153,16154,16106,43,16504,16506,16805,16803,0,6,6,6,6,16155,16156,16157,16107,43,16505,16485,16481,16503,0,6,6,6,6,16153,16136,16139,16154,43,16482,16486,16506,16504,0,6,6,6,6,16143,16142,16156,16155,43,16806,16507,16505,16804,0,6,6,6,6,16158,16159,16153,16152,43,16506,16508,16807,16805,0,6,6,6,6,16156,16160,16161,16157,43,16507,16489,16485,16505,0,6,6,6,6,16159,16144,16136,16153,43,16486,16490,16508,16506,0,6,6,6,6,16142,16147,16160,16156,43,16808,16509,16507,16806,0,6,6,6,6,16162,16163,16159,16158,43,16508,16510,16809,16807,0,6,6,6,6,16160,16164,16165,16161,43,16509,16493,16489,16507,0,6,6,6,6,16163,16148,16144,16159,43,16490,16494,16510,16508,0,6,6,6,6,16147,16151,16164,16160,43,16483,16524,16522,16479,0,6,6,6,6,16137,16166,16167,16138,43,16523,16525,16484,16480,0,6,6,6,6,16168,16169,16141,16140,43,16524,16471,16468,16522,0,6,6,6,6,16166,16170,16171,16167,43,16468,16471,16525,16523,0,6,6,6,6,16171,16170,16169,16168,43,16487,16526,16524,16483,0,6,6,6,6,16145,16172,16166,16137,43,16525,16527,16488,16484,0,6,6,6,6,16169,16173,16146,16141,43,16526,16470,16471,16524,0,6,6,6,6,16172,16174,16170,16166,43,16471,16470,16527,16525,0,6,6,6,6,16170,16174,16173,16169,43,16491,16528,16526,16487,0,6,6,6,6,16149,16175,16172,16145,43,16527,16529,16492,16488,0,6,6,6,6,16173,16176,16150,16146,43,16528,16469,16470,16526,0,6,6,6,6,16175,16177,16174,16172,43,16470,16469,16529,16527,0,6,6,6,6,16174,16177,16176,16173,43,16796,16868,16530,16495,0,6,6,6,6,16178,3471,16179,16180,43,16868,16797,16496,16530,0,6,6,6,6,3471,16181,16182,16179,43,16474,16531,16532,16472,0,6,6,6,6,16183,16184,16185,16186,43,16531,16475,16473,16532,0,6,6,6,6,16184,16187,16188,16185,43,16474,16495,16530,16531,0,6,6,6,6,16183,16180,16179,16184,43,16475,16531,16530,16496,0,6,6,6,6,16187,16184,16179,16182,43,16462,16511,16533,16512,0,6,6,6,6,16189,16190,16191,16192,43,16472,16532,16533,16511,0,6,6,6,6,16186,16185,16191,16190,43,16473,16512,16533,16532,0,6,6,6,6,16188,16192,16191,16185,43,16472,16537,16535,16474,0,6,6,6,6,16186,16193,16194,16183,43,16537,16491,16493,16535,0,6,6,6,6,16193,16149,16148,16194,43,16492,16538,16536,16494,0,6,6,6,6,16150,16195,16196,16151,43,16538,16473,16475,16536,0,6,6,6,6,16195,16188,16187,16196,43,16495,16539,16874,16796,0,6,6,6,6,16180,16197,16198,16178,43,16539,16509,16808,16874,0,6,6,6,6,16197,16163,16162,16198,43,16510,16540,16875,16809,0,6,6,6,6,16164,16199,16200,16165,43,16540,16496,16797,16875,0,6,6,6,6,16199,16182,16181,16200,43,16474,16535,16539,16495,0,6,6,6,6,16183,16194,16197,16180,43,16535,16493,16509,16539,0,6,6,6,6,16194,16148,16163,16197,43,16494,16536,16540,16510,0,6,6,6,6,16151,16196,16199,16164,43,16536,16475,16496,16540,0,6,6,6,6,16196,16187,16182,16199,43,16511,16541,16537,16472,0,6,6,6,6,16190,16201,16193,16186,43,16541,16528,16491,16537,0,6,6,6,6,16201,16175,16149,16193,43,16529,16542,16538,16492,0,6,6,6,6,16176,16202,16195,16150,43,16542,16512,16473,16538,0,6,6,6,6,16202,16192,16188,16195,43,16462,16534,16541,16511,0,6,6,6,6,16189,16203,16201,16190,43,16534,16469,16528,16541,0,6,6,6,6,16203,16177,16175,16201,43,16469,16534,16542,16529,0,6,6,6,6,16177,16203,16202,16176,43,16534,16462,16512,16542,0,6,6,6,6,16203,16189,16192,16202,43,16476,16478,16477,16543,0,6,6,6,6,16204,16204,16205,16205,43,16547,16546,16544,16545,0,6,6,6,6,16206,16206,16207,16207,43,16548,16498,16478,16476,0,6,6,6,6,16208,16208,16204,16204,43,16549,16497,16546,16547,0,6,6,6,6,16209,16209,16206,16206,43,16884,16885,16498,16548,0,6,6,6,6,4054,4054,16208,16208,43,16887,16886,16497,16549,0,6,6,6,6,4033,4033,16209,16209,43,16550,16514,16463,16461,0,6,6,6,6,16210,16210,16211,16211,43,16461,16463,16515,16513,0,6,6,6,6,16211,16211,16212,16212,43,16543,16477,16514,16550,0,6,6,6,6,16205,16205,16210,16210,43,16545,16544,16513,16515,0,6,6,6,6,16207,16207,16212,16212,43,16564,16554,16552,16560,0,6,6,6,6,16205,16205,16204,16204,43,16554,16477,16478,16552,0,6,6,6,6,16205,16205,16204,16204,43,16545,16555,16553,16547,0,6,6,6,6,16207,16207,16206,16206,43,16555,16566,16562,16553,0,6,6,6,6,16207,16207,16206,16206,43,16499,16556,16897,16907,0,6,6,6,6,16208,16208,4054,4054,43,16556,16498,16885,16897,0,6,6,6,6,16208,16208,4054,4054,43,16549,16557,16898,16887,0,6,6,6,6,16209,16209,4033,4033,43,16557,16500,16798,16898,0,6,6,6,6,16209,16209,4033,4033,43,16560,16552,16556,16499,0,6,6,6,6,16204,16204,16208,16208,43,16552,16478,16498,16556,0,6,6,6,6,16204,16204,16208,16208,43,16547,16553,16557,16549,0,6,6,6,6,16206,16206,16209,16209,43,16553,16562,16500,16557,0,6,6,6,6,16206,16206,16209,16209,43,16516,16558,16554,16564,0,6,6,6,6,16210,16210,16205,16205,43,16558,16514,16477,16554,0,6,6,6,6,16210,16210,16205,16205,43,16515,16559,16555,16545,0,6,6,6,6,16212,16212,16207,16207,43,16559,16517,16566,16555,0,6,6,6,6,16212,16212,16207,16207,43,16464,16551,16558,16516,0,6,6,6,6,16211,16211,16210,16210,43,16551,16463,16514,16558,0,6,6,6,6,16211,16211,16210,16210,43,16463,16551,16559,16515,0,6,6,6,6,16211,16211,16212,16212,43,16551,16464,16517,16559,0,6,6,6,6,16211,16211,16212,16212,43,16565,16564,16560,16561,0,6,6,6,6,16205,16205,16204,16204,43,16566,16567,16563,16562,0,6,6,6,6,16207,16207,16206,16206,43,16568,16499,16907,16799,0,6,6,6,6,16208,16208,4054,4054,43,16500,16569,16908,16798,0,6,6,6,6,16209,16209,4033,4033,43,16561,16560,16499,16568,0,6,6,6,6,16204,16204,16208,16208,43,16562,16563,16569,16500,0,6,6,6,6,16206,16206,16209,16209,43,16570,16516,16564,16565,0,6,6,6,6,16210,16210,16205,16205,43,16517,16518,16567,16566,0,6,6,6,6,16212,16212,16207,16207,43,16465,16464,16516,16570,0,6,6,6,6,16211,16211,16210,16210,43,16464,16465,16518,16517,0,6,6,6,6,16211,16211,16212,16212,43,16584,16574,16572,16580,0,6,6,6,6,16205,16205,16204,16204,43,16574,16565,16561,16572,0,6,6,6,6,16205,16205,16204,16204,43,16567,16575,16573,16563,0,6,6,6,6,16207,16207,16206,16206,43,16575,16586,16582,16573,0,6,6,6,6,16207,16207,16206,16206,43,16501,16576,16921,16931,0,6,6,6,6,16208,16208,4054,16135,43,16576,16568,16799,16921,0,6,6,6,6,16208,16208,4054,4054,43,16569,16577,16922,16908,0,6,6,6,6,16209,16209,4123,4033,43,16577,16502,16800,16922,0,6,6,6,6,16209,16209,4033,4123,43,16580,16572,16576,16501,0,6,6,6,6,16204,16204,16208,16208,43,16572,16561,16568,16576,0,6,6,6,6,16204,16204,16208,16208,43,16563,16573,16577,16569,0,6,6,6,6,16206,16206,16209,16209,43,16573,16582,16502,16577,0,6,6,6,6,16206,16206,16209,16209,43,16519,16578,16574,16584,0,6,6,6,6,16210,16210,16205,16205,43,16578,16570,16565,16574,0,6,6,6,6,16210,16210,16205,16205,43,16518,16579,16575,16567,0,6,6,6,6,16212,16212,16207,16207,43,16579,16520,16586,16575,0,6,6,6,6,16212,16212,16207,16207,43,16466,16571,16578,16519,0,6,6,6,6,16211,16211,16210,16210,43,16571,16465,16570,16578,0,6,6,6,6,16211,16211,16210,16210,43,16465,16571,16579,16518,0,6,6,6,6,16211,16211,16212,16212,43,16571,16466,16520,16579,0,6,6,6,6,16211,16211,16212,16212,43,16585,16584,16580,16581,0,6,6,6,6,16205,16205,16204,16204,43,16586,16587,16583,16582,0,6,6,6,6,16207,16207,16206,16206,43,16588,16501,16931,16801,0,6,6,6,6,16208,16208,16135,4054,43,16502,16589,16932,16800,0,6,6,6,6,16209,16209,4033,4033,43,16581,16580,16501,16588,0,6,6,6,6,16204,16204,16208,16208,43,16582,16583,16589,16502,0,6,6,6,6,16206,16206,16209,16209,43,16590,16519,16584,16585,0,6,6,6,6,16210,16210,16205,16205,43,16520,16521,16587,16586,0,6,6,6,6,16212,16212,16207,16207,43,16467,16466,16519,16590,0,6,6,6,6,16211,16211,16210,16210,43,16466,16467,16521,16520,0,6,6,6,6,16211,16211,16212,16212,43,16479,16594,16592,16481,0,6,6,6,6,16138,16205,16204,16139,43,16594,16585,16581,16592,0,6,6,6,6,16205,16205,16204,16204,43,16587,16595,16593,16583,0,6,6,6,6,16207,16207,16206,16206,43,16595,16480,16482,16593,0,6,6,6,6,16207,16140,16143,16206,43,16503,16596,16945,16802,0,6,6,6,6,16154,16208,4054,16106,43,16596,16588,16801,16945,0,6,6,6,6,16208,16208,4054,4054,43,16589,16597,16946,16932,0,6,6,6,6,16209,16209,4033,4033,43,16597,16504,16803,16946,0,6,6,6,6,16209,16155,16107,4033,43,16481,16592,16596,16503,0,6,6,6,6,16139,16204,16208,16154,43,16592,16581,16588,16596,0,6,6,6,6,16204,16204,16208,16208,43,16583,16593,16597,16589,0,6,6,6,6,16206,16206,16209,16209,43,16593,16482,16504,16597,0,6,6,6,6,16206,16143,16155,16209,43,16522,16598,16594,16479,0,6,6,6,6,16167,16210,16205,16138,43,16598,16590,16585,16594,0,6,6,6,6,16210,16210,16205,16205,43,16521,16599,16595,16587,0,6,6,6,6,16212,16212,16207,16207,43,16599,16523,16480,16595,0,6,6,6,6,16212,16168,16140,16207,43,16468,16591,16598,16522,0,6,6,6,6,16171,16211,16210,16167,43,16591,16467,16590,16598,0,6,6,6,6,16211,16211,16210,16210,43,16467,16591,16599,16521,0,6,6,6,6,16211,16211,16212,16212,43,16591,16468,16523,16599,0,6,6,6,6,16211,16171,16168,16212,43,16600,16601,16962,16961,0,6,6,6,6,16213,16214,16106,16215,43,16601,16602,16963,16962,0,6,6,6,6,16214,16216,16217,16106,43,16605,16604,16965,16966,0,6,6,6,6,16218,16219,16107,16220,43,16604,16603,16964,16965,0,6,6,6,6,16219,16221,16222,16107,43,16606,16607,16601,16600,0,6,6,6,6,16223,16224,16214,16213,43,16607,16608,16602,16601,0,6,6,6,6,16224,16225,16216,16214,43,16608,16607,16604,16605,0,6,6,6,6,16225,16224,16219,16218,43,16607,16606,16603,16604,0,6,6,6,6,16224,16223,16221,16219,43,16430,16609,16972,16742,0,6,6,6,6,16105,16226,16215,16106,43,16609,16600,16961,16972,0,6,6,6,6,16226,16213,16215,16215,43,16603,16610,16973,16964,0,6,6,6,6,16221,16227,16222,16222,43,16610,16431,16743,16973,0,6,6,6,6,16227,16108,16107,16222,43,16432,16611,16609,16430,0,6,6,6,6,16110,16228,16226,16105,43,16611,16606,16600,16609,0,6,6,6,6,16228,16223,16213,16226,43,16606,16611,16610,16603,0,6,6,6,6,16223,16228,16227,16221,43,16611,16432,16431,16610,0,6,6,6,6,16228,16110,16108,16227,43,16602,16612,16977,16963,0,6,6,6,6,16216,16229,16217,16217,43,16612,16452,16772,16977,0,6,6,6,6,16229,16129,16106,16217,43,16453,16613,16978,16773,0,6,6,6,6,16130,16230,16220,16107,43,16613,16605,16966,16978,0,6,6,6,6,16230,16218,16220,16220,43,16608,16614,16612,16602,0,6,6,6,6,16225,16231,16229,16216,43,16614,16454,16452,16612,0,6,6,6,6,16231,16131,16129,16229,43,16454,16614,16613,16453,0,6,6,6,6,16131,16231,16230,16130,43,16614,16608,16605,16613,0,6,6,6,6,16231,16225,16218,16230,43,16633,16642,16639,16636,0,6,6,6,6,16232,16233,16234,16235,43,16640,16643,16634,16637,0,6,6,6,6,16236,16237,16238,16239,43,16630,16645,16648,16627,0,6,6,6,6,16240,16241,16242,16243,43,16649,16646,16631,16628,0,6,6,6,6,16244,16245,16246,16247,43,16617,16623,16654,16651,0,6,6,6,6,16248,16249,16250,16251,43,16655,16624,16618,16652,0,6,6,6,6,16252,16253,16254,16255,43,16660,16657,16639,16642,0,6,6,6,6,16256,16257,16234,16233,43,16640,16658,16661,16643,0,6,6,6,6,16236,16258,16259,16237,43,16648,16645,16663,16666,0,6,6,6,6,16242,16241,16260,16261,43,16664,16646,16649,16667,0,6,6,6,6,16262,16245,16244,16263,43,16666,16663,16657,16660,0,6,6,6,6,16261,16260,16257,16256,43,16658,16664,16667,16661,0,6,6,6,6,16258,16262,16263,16259,43,16651,16654,16672,16669,0,6,6,6,6,16251,16250,16250,16264,43,16673,16655,16652,16670,0,6,6,6,6,16265,16252,16255,16266,43,16669,16672,16630,16627,0,6,6,6,6,16264,16250,16240,16243,43,16631,16673,16670,16628,0,6,6,6,6,16246,16265,16266,16247,43,16633,16636,16678,16675,0,6,6,6,6,16232,16235,16267,16268,43,16679,16637,16634,16676,0,6,6,6,6,16269,16239,16238,16270,43,16681,16684,16621,16615,0,6,6,6,6,16271,16272,16054,16053,43,16622,16685,16682,16616,0,6,6,6,6,16056,16273,16274,16057,43,16619,16625,16692,16688,0,6,6,6,6,16275,16276,16276,16275,43,16693,16625,16619,16689,0,6,6,6,6,16276,16276,16275,16275,43,16688,16692,16623,16617,0,6,6,6,6,16275,16276,16249,16248,43,16624,16693,16689,16618,0,6,6,6,6,16253,16276,16275,16254,43,16636,16639,16702,16700,0,6,6,6,6,16235,16234,16277,16278,43,16703,16640,16637,16701,0,6,6,6,6,16279,16236,16239,16280,43,16700,16702,16638,16635,0,6,6,6,6,16278,16277,16281,16282,43,16638,16703,16701,16635,0,6,6,6,6,16281,16279,16280,16282,43,16632,16641,16704,16698,0,6,6,6,6,16283,16284,16285,16286,43,16705,16641,16632,16699,0,6,6,6,6,16287,16284,16283,16288,43,16698,16704,16642,16633,0,6,6,6,6,16286,16285,16233,16232,43,16643,16705,16699,16634,0,6,6,6,6,16237,16287,16288,16238,43,16629,16644,16706,16696,0,6,6,6,6,16289,16290,16291,16292,43,16707,16644,16629,16697,0,6,6,6,6,16293,16290,16289,16294,43,16696,16706,16645,16630,0,6,6,6,6,16292,16291,16241,16240,43,16646,16707,16697,16631,0,6,6,6,6,16245,16293,16294,16246,43,16627,16648,16708,16694,0,6,6,6,6,16243,16242,16295,16296,43,16709,16649,16628,16695,0,6,6,6,6,16297,16244,16247,16298,43,16694,16708,16647,16626,0,6,6,6,6,16296,16295,16299,16300,43,16647,16709,16695,16626,0,6,6,6,6,16299,16297,16298,16300,43,16650,16619,16688,16710,0,6,6,6,6,3423,16275,16275,3423,43,16689,16619,16650,16711,0,6,6,6,6,16275,16275,3423,3423,43,16710,16688,16617,16651,0,6,6,6,6,3423,16275,16248,16251,43,16618,16689,16711,16652,0,6,6,6,6,16254,16275,3423,16255,43,16625,16653,16712,16692,0,6,6,6,6,16276,3471,3471,16276,43,16713,16653,16625,16693,0,6,6,6,6,3471,3471,16276,16276,43,16692,16712,16654,16623,0,6,6,6,6,16276,3471,16250,16249,43,16655,16713,16693,16624,0,6,6,6,6,16252,3471,16276,16253,43,16656,16638,16702,16714,0,6,6,6,6,16301,16281,16277,16302,43,16703,16638,16656,16715,0,6,6,6,6,16279,16281,16301,16303,43,16714,16702,16639,16657,0,6,6,6,6,16302,16277,16234,16257,43,16640,16703,16715,16658,0,6,6,6,6,16236,16279,16303,16258,43,16641,16659,16716,16704,0,6,6,6,6,16284,16304,16305,16285,43,16717,16659,16641,16705,0,6,6,6,6,16306,16304,16284,16287,43,16704,16716,16660,16642,0,6,6,6,6,16285,16305,16256,16233,43,16661,16717,16705,16643,0,6,6,6,6,16259,16306,16287,16237,43,16662,16656,16714,16718,0,6,6,6,6,16301,16301,16302,16307,43,16715,16656,16662,16719,0,6,6,6,6,16303,16301,16301,16308,43,16718,16714,16657,16663,0,6,6,6,6,16307,16302,16257,16260,43,16658,16715,16719,16664,0,6,6,6,6,16258,16303,16308,16262,43,16644,16662,16718,16706,0,6,6,6,6,16290,16301,16307,16291,43,16719,16662,16644,16707,0,6,6,6,6,16308,16301,16290,16293,43,16706,16718,16663,16645,0,6,6,6,6,16291,16307,16260,16241,43,16664,16719,16707,16646,0,6,6,6,6,16262,16308,16293,16245,43,16665,16647,16708,16720,0,6,6,6,6,16304,16299,16295,16309,43,16709,16647,16665,16721,0,6,6,6,6,16297,16299,16304,16310,43,16720,16708,16648,16666,0,6,6,6,6,16309,16295,16242,16261,43,16649,16709,16721,16667,0,6,6,6,6,16244,16297,16310,16263,43,16659,16665,16720,16716,0,6,6,6,6,16304,16304,16309,16305,43,16721,16665,16659,16717,0,6,6,6,6,16310,16304,16304,16306,43,16716,16720,16666,16660,0,6,6,6,6,16305,16309,16261,16256,43,16667,16721,16717,16661,0,6,6,6,6,16263,16310,16306,16259,43,16668,16650,16710,16722,0,6,6,6,6,3423,3423,3423,3423,43,16711,16650,16668,16723,0,6,6,6,6,3423,3423,3423,3423,43,16722,16710,16651,16669,0,6,6,6,6,3423,3423,16251,16264,43,16652,16711,16723,16670,0,6,6,6,6,16255,3423,3423,16266,43,16626,16668,16722,16694,0,6,6,6,6,16300,3423,3423,16296,43,16723,16668,16626,16695,0,6,6,6,6,3423,3423,16300,16298,43,16694,16722,16669,16627,0,6,6,6,6,16296,3423,16264,16243,43,16670,16723,16695,16628,0,6,6,6,6,16266,3423,16298,16247,43,16671,16629,16696,16724,0,6,6,6,6,3471,16289,16292,3471,43,16697,16629,16671,16725,0,6,6,6,6,16294,16289,3471,3471,43,16724,16696,16630,16672,0,6,6,6,6,3471,16292,16240,16250,43,16631,16697,16725,16673,0,6,6,6,6,16246,16294,3471,16265,43,16653,16671,16724,16712,0,6,6,6,6,3471,3471,3471,3471,43,16725,16671,16653,16713,0,6,6,6,6,3471,3471,3471,3471,43,16712,16724,16672,16654,0,6,6,6,6,3471,3471,16250,16250,43,16673,16725,16713,16655,0,6,6,6,6,16265,3471,3471,16252,43,16674,16632,16698,16726,0,6,6,6,6,3423,16283,16286,3423,43,16699,16632,16674,16727,0,6,6,6,6,16288,16283,3423,3423,43,16726,16698,16633,16675,0,6,6,6,6,3423,16286,16232,16268,43,16634,16699,16727,16676,0,6,6,6,6,16238,16288,3423,16270,43,16635,16677,16728,16700,0,6,6,6,6,16282,3471,3471,16278,43,16729,16677,16635,16701,0,6,6,6,6,3471,3471,16282,16280,43,16700,16728,16678,16636,0,6,6,6,6,16278,3471,16267,16235,43,16679,16729,16701,16637,0,6,6,6,6,16269,3471,16280,16239,43,16686,16730,16681,16615,0,6,6,6,6,16096,16311,16271,16053,43,16682,16731,16687,16616,0,6,6,6,6,16274,16312,16098,16057,43,16683,16620,16690,16732,0,6,6,6,6,3471,3471,3471,3471,43,16691,16620,16683,16733,0,6,6,6,6,3471,3471,3471,3471,43,16732,16690,16621,16684,0,6,6,6,6,3471,3471,16054,16272,43,16622,16691,16733,16685,0,6,6,6,6,16056,3471,3471,16273,43,16739,16738,16734,16736,0,6,6,6,6,3423,16313,16314,16100,43,16735,16738,16739,16737,0,6,6,6,6,16315,16313,3423,16104,43,16730,16686,16742,16740,0,6,6,6,6,16311,16096,16106,16316,43,16743,16687,16731,16741,0,6,6,6,6,16107,16098,16312,16317,43,16680,16730,16740,16744,0,6,6,6,6,16318,16311,16316,16319,43,16741,16731,16680,16744,0,6,6,6,6,16317,16312,16318,16319,43,16675,16678,16749,16746,0,6,6,6,6,16268,16267,16320,16321,43,16750,16679,16676,16747,0,6,6,6,6,16322,16269,16270,16323,43,16746,16749,16684,16681,0,6,6,6,6,16321,16320,16272,16271,43,16685,16750,16747,16682,0,6,6,6,6,16273,16322,16323,16274,43,16730,16680,16745,16751,0,6,6,6,6,16311,16318,3423,3423,43,16745,16680,16731,16752,0,6,6,6,6,3423,16318,16312,3423,43,16751,16745,16674,16726,0,6,6,6,6,3423,3423,3423,3423,43,16674,16745,16752,16727,0,6,6,6,6,3423,3423,3423,3423,43,16681,16730,16751,16746,0,6,6,6,6,16271,16311,3423,16321,43,16752,16731,16682,16747,0,6,6,6,6,3423,16312,16274,16323,43,16746,16751,16726,16675,0,6,6,6,6,16321,3423,3423,16268,43,16727,16752,16747,16676,0,6,6,6,6,3423,3423,16323,16270,43,16728,16677,16748,16753,0,6,6,6,6,3471,3471,3471,3471,43,16748,16677,16729,16754,0,6,6,6,6,3471,3471,3471,16324,43,16753,16748,16683,16732,0,6,6,6,6,3471,3471,3471,3471,43,16683,16748,16754,16733,0,6,6,6,6,3471,3471,16324,3471,43,16678,16728,16753,16749,0,6,6,6,6,16267,3471,3471,16320,43,16754,16729,16679,16750,0,6,6,6,6,16324,3471,16269,16322,43,16749,16753,16732,16684,0,6,6,6,6,16320,3471,3471,16272,43,16733,16754,16750,16685,0,6,6,6,6,3471,16324,16322,16273,43,16755,16760,16762,16759,0,6,6,6,6,16325,16326,16327,16327,43,16762,16761,16756,16759,0,6,6,6,6,16327,16328,16329,16327,43,16757,16763,16760,16755,0,6,6,6,6,16120,16121,16326,16325,43,16761,16764,16758,16756,0,6,6,6,6,16328,16123,16122,16329,43,16738,16767,16765,16734,0,6,6,6,6,16313,16330,16331,16314,43,16766,16767,16738,16735,0,6,6,6,6,16332,16330,16313,16315,43,16734,16765,16768,16736,0,6,6,6,6,16314,16331,16127,16100,43,16769,16766,16735,16737,0,6,6,6,6,16128,16332,16315,16104,43,16770,16772,16757,16755,0,6,6,6,6,16333,16106,16120,16325,43,16758,16773,16771,16756,0,6,6,6,6,16122,16107,16334,16329,43,16774,16770,16755,16759,0,6,6,6,6,16335,16333,16325,16327,43,16756,16771,16774,16759,0,6,6,6,6,16329,16334,16335,16327,43,16775,16776,16765,16767,0,6,6,6,6,16336,16337,16331,16330,43,16766,16777,16775,16767,0,6,6,6,6,16332,16338,16336,16330,43,16776,16778,16768,16765,0,6,6,6,6,16337,4054,16127,16331,43,16769,16779,16777,16766,0,6,6,6,6,16128,4033,16338,16332,43,16762,16760,16781,16780,0,6,6,6,6,16327,16326,16337,16336,43,16782,16761,16762,16780,0,6,6,6,6,16338,16328,16327,16336,43,16780,16781,16776,16775,0,6,6,6,6,16336,16337,16337,16336,43,16777,16782,16780,16775,0,6,6,6,6,16338,16338,16336,16336,43,16760,16763,16783,16781,0,6,6,6,6,16326,16121,16135,16337,43,16784,16764,16761,16782,0,6,6,6,6,4123,16123,16328,16338,43,16781,16783,16778,16776,0,6,6,6,6,16337,16135,4054,16337,43,16779,16784,16782,16777,0,6,6,6,6,4033,4123,16338,16338,43,16823,16819,16817,16821,0,6,6,6,6,16339,16340,16341,16342,43,16818,16820,16824,16822,0,6,6,6,6,16343,16344,16345,16346,43,16827,16823,16821,16825,0,6,6,6,6,16347,16339,16342,16348,43,16822,16824,16828,16826,0,6,6,6,6,16346,16345,16349,16350,43,16831,16827,16825,16829,0,6,6,6,6,16351,16347,16348,16352,43,16826,16828,16832,16830,0,6,6,6,6,16350,16349,16353,16354,43,16804,16802,16841,16843,0,6,6,6,6,16152,16106,16355,16356,43,16842,16803,16805,16844,0,6,6,6,6,16357,16107,16157,16358,43,16843,16841,16819,16823,0,6,6,6,6,16356,16355,16340,16339,43,16820,16842,16844,16824,0,6,6,6,6,16344,16357,16358,16345,43,16806,16804,16843,16845,0,6,6,6,6,16158,16152,16356,16359,43,16844,16805,16807,16846,0,6,6,6,6,16358,16157,16161,16360,43,16845,16843,16823,16827,0,6,6,6,6,16359,16356,16339,16347,43,16824,16844,16846,16828,0,6,6,6,6,16345,16358,16360,16349,43,16808,16806,16845,16847,0,6,6,6,6,16162,16158,16359,16361,43,16846,16807,16809,16848,0,6,6,6,6,16360,16161,16165,16362,43,16847,16845,16827,16831,0,6,6,6,6,16361,16359,16347,16351,43,16828,16846,16848,16832,0,6,6,6,6,16349,16360,16362,16353,43,16821,16817,16860,16862,0,6,6,6,6,16342,16341,16363,16364,43,16861,16818,16822,16863,0,6,6,6,6,16365,16343,16346,16366,43,16862,16860,16792,16795,0,6,6,6,6,16364,16363,16367,16368,43,16792,16861,16863,16795,0,6,6,6,6,16367,16365,16366,16368,43,16825,16821,16862,16864,0,6,6,6,6,16348,16342,16364,16369,43,16863,16822,16826,16865,0,6,6,6,6,16366,16346,16350,16370,43,16864,16862,16795,16794,0,6,6,6,6,16369,16364,16368,16371,43,16795,16863,16865,16794,0,6,6,6,6,16368,16366,16370,16371,43,16829,16825,16864,16866,0,6,6,6,6,16352,16348,16369,16372,43,16865,16826,16830,16867,0,6,6,6,6,16370,16350,16354,16373,43,16866,16864,16794,16793,0,6,6,6,6,16372,16369,16371,16374,43,16794,16865,16867,16793,0,6,6,6,6,16371,16370,16373,16374,43,16796,16833,16869,16868,0,6,6,6,6,16178,16375,16376,3471,43,16868,16869,16834,16797,0,6,6,6,6,3471,16376,16377,16181,43,16812,16810,16871,16870,0,6,6,6,6,16378,16379,16380,16381,43,16870,16871,16811,16813,0,6,6,6,6,16381,16380,16382,16383,43,16812,16870,16869,16833,0,6,6,6,6,16378,16381,16376,16375,43,16813,16834,16869,16870,0,6,6,6,6,16383,16377,16376,16381,43,16786,16850,16872,16849,0,6,6,6,6,16384,16385,16386,16387,43,16810,16849,16872,16871,0,6,6,6,6,16379,16387,16386,16380,43,16811,16871,16872,16850,0,6,6,6,6,16382,16380,16386,16385,43,16810,16812,16876,16878,0,6,6,6,6,16379,16378,16388,16389,43,16878,16876,16831,16829,0,6,6,6,6,16389,16388,16351,16352,43,16830,16832,16877,16879,0,6,6,6,6,16354,16353,16390,16391,43,16879,16877,16813,16811,0,6,6,6,6,16391,16390,16383,16382,43,16833,16796,16874,16880,0,6,6,6,6,16375,16178,16198,16392,43,16880,16874,16808,16847,0,6,6,6,6,16392,16198,16162,16361,43,16848,16809,16875,16881,0,6,6,6,6,16362,16165,16200,16393,43,16881,16875,16797,16834,0,6,6,6,6,16393,16200,16181,16377,43,16812,16833,16880,16876,0,6,6,6,6,16378,16375,16392,16388,43,16876,16880,16847,16831,0,6,6,6,6,16388,16392,16361,16351,43,16832,16848,16881,16877,0,6,6,6,6,16353,16362,16393,16390,43,16877,16881,16834,16813,0,6,6,6,6,16390,16393,16377,16383,43,16849,16810,16878,16882,0,6,6,6,6,16387,16379,16389,16394,43,16882,16878,16829,16866,0,6,6,6,6,16394,16389,16352,16372,43,16867,16830,16879,16883,0,6,6,6,6,16373,16354,16391,16395,43,16883,16879,16811,16850,0,6,6,6,6,16395,16391,16382,16385,43,16786,16849,16882,16873,0,6,6,6,6,16384,16387,16394,16396,43,16873,16882,16866,16793,0,6,6,6,6,16396,16394,16372,16374,43,16793,16867,16883,16873,0,6,6,6,6,16374,16373,16395,16396,43,16873,16883,16850,16786,0,6,6,6,6,16396,16395,16385,16384,43,16814,16888,16815,16816,0,6,6,6,6,16397,16398,16398,16397,43,16892,16890,16889,16891,0,6,6,6,6,16399,16400,16400,16399,43,16893,16814,16816,16836,0,6,6,6,6,16401,16397,16397,16401,43,16894,16892,16891,16835,0,6,6,6,6,16402,16399,16399,16402,43,16884,16893,16836,16885,0,6,6,6,6,4054,16401,16401,4054,43,16887,16894,16835,16886,0,6,6,6,6,4033,16402,16402,4033,43,16895,16785,16787,16852,0,6,6,6,6,16403,4032,4032,16403,43,16785,16851,16853,16787,0,6,6,6,6,4032,16404,16404,4032,43,16888,16895,16852,16815,0,6,6,6,6,16398,16403,16403,16398,43,16890,16853,16851,16889,0,6,6,6,6,16400,16404,16404,16400,43,16913,16909,16899,16901,0,6,6,6,6,16398,16397,16397,16398,43,16901,16899,16816,16815,0,6,6,6,6,16398,16397,16397,16398,43,16890,16892,16900,16902,0,6,6,6,6,16400,16399,16399,16400,43,16902,16900,16911,16915,0,6,6,6,6,16400,16399,16399,16400,43,16837,16907,16897,16903,0,6,6,6,6,16401,4054,4054,16401,43,16903,16897,16885,16836,0,6,6,6,6,16401,4054,4054,16401,43,16894,16887,16898,16904,0,6,6,6,6,16402,4033,4033,16402,43,16904,16898,16798,16838,0,6,6,6,6,16402,4033,4033,16402,43,16909,16837,16903,16899,0,6,6,6,6,16397,16401,16401,16397,43,16899,16903,16836,16816,0,6,6,6,6,16397,16401,16401,16397,43,16892,16894,16904,16900,0,6,6,6,6,16399,16402,16402,16399,43,16900,16904,16838,16911,0,6,6,6,6,16399,16402,16402,16399,43,16854,16913,16901,16905,0,6,6,6,6,16403,16398,16398,16403,43,16905,16901,16815,16852,0,6,6,6,6,16403,16398,16398,16403,43,16853,16890,16902,16906,0,6,6,6,6,16404,16400,16400,16404,43,16906,16902,16915,16855,0,6,6,6,6,16404,16400,16400,16404,43,16788,16854,16905,16896,0,6,6,6,6,4032,16403,16403,4032,43,16896,16905,16852,16787,0,6,6,6,6,4032,16403,16403,4032,43,16787,16853,16906,16896,0,6,6,6,6,4032,16404,16404,4032,43,16896,16906,16855,16788,0,6,6,6,6,4032,16404,16404,4032,43,16914,16910,16909,16913,0,6,6,6,6,16398,16397,16397,16398,43,16915,16911,16912,16916,0,6,6,6,6,16400,16399,16399,16400,43,16917,16799,16907,16837,0,6,6,6,6,16401,4054,4054,16401,43,16838,16798,16908,16918,0,6,6,6,6,16402,4033,4033,16402,43,16910,16917,16837,16909,0,6,6,6,6,16397,16401,16401,16397,43,16911,16838,16918,16912,0,6,6,6,6,16399,16402,16402,16399,43,16919,16914,16913,16854,0,6,6,6,6,16403,16398,16398,16403,43,16855,16915,16916,16856,0,6,6,6,6,16404,16400,16400,16404,43,16789,16919,16854,16788,0,6,6,6,6,4032,16403,16403,4032,43,16788,16855,16856,16789,0,6,6,6,6,4032,16404,16404,4032,43,16937,16933,16923,16925,0,6,6,6,6,16398,16397,16397,16398,43,16925,16923,16910,16914,0,6,6,6,6,16398,16397,16397,16398,43,16916,16912,16924,16926,0,6,6,6,6,16400,16399,16399,16400,43,16926,16924,16935,16939,0,6,6,6,6,16400,16399,16399,16400,43,16839,16931,16921,16927,0,6,6,6,6,16401,16135,4054,16401,43,16927,16921,16799,16917,0,6,6,6,6,16401,4054,4054,16401,43,16918,16908,16922,16928,0,6,6,6,6,16402,4033,4123,16402,43,16928,16922,16800,16840,0,6,6,6,6,16402,4123,4033,16402,43,16933,16839,16927,16923,0,6,6,6,6,16397,16401,16401,16397,43,16923,16927,16917,16910,0,6,6,6,6,16397,16401,16401,16397,43,16912,16918,16928,16924,0,6,6,6,6,16399,16402,16402,16399,43,16924,16928,16840,16935,0,6,6,6,6,16399,16402,16402,16399,43,16857,16937,16925,16929,0,6,6,6,6,16403,16398,16398,16403,43,16929,16925,16914,16919,0,6,6,6,6,16403,16398,16398,16403,43,16856,16916,16926,16930,0,6,6,6,6,16404,16400,16400,16404,43,16930,16926,16939,16858,0,6,6,6,6,16404,16400,16400,16404,43,16790,16857,16929,16920,0,6,6,6,6,4032,16403,16403,4032,43,16920,16929,16919,16789,0,6,6,6,6,4032,16403,16403,4032,43,16789,16856,16930,16920,0,6,6,6,6,4032,16404,16404,4032,43,16920,16930,16858,16790,0,6,6,6,6,4032,16404,16404,4032,43,16938,16934,16933,16937,0,6,6,6,6,16398,16397,16397,16398,43,16939,16935,16936,16940,0,6,6,6,6,16400,16399,16399,16400,43,16941,16801,16931,16839,0,6,6,6,6,16401,4054,16135,16401,43,16840,16800,16932,16942,0,6,6,6,6,16402,4033,4033,16402,43,16934,16941,16839,16933,0,6,6,6,6,16397,16401,16401,16397,43,16935,16840,16942,16936,0,6,6,6,6,16399,16402,16402,16399,43,16943,16938,16937,16857,0,6,6,6,6,16403,16398,16398,16403,43,16858,16939,16940,16859,0,6,6,6,6,16404,16400,16400,16404,43,16791,16943,16857,16790,0,6,6,6,6,4032,16403,16403,4032,43,16790,16858,16859,16791,0,6,6,6,6,4032,16404,16404,4032,43,16817,16819,16947,16949,0,6,6,6,6,16341,16340,16397,16398,43,16949,16947,16934,16938,0,6,6,6,6,16398,16397,16397,16398,43,16940,16936,16948,16950,0,6,6,6,6,16400,16399,16399,16400,43,16950,16948,16820,16818,0,6,6,6,6,16400,16399,16344,16343,43,16841,16802,16945,16951,0,6,6,6,6,16355,16106,4054,16401,43,16951,16945,16801,16941,0,6,6,6,6,16401,4054,4054,16401,43,16942,16932,16946,16952,0,6,6,6,6,16402,4033,4033,16402,43,16952,16946,16803,16842,0,6,6,6,6,16402,4033,16107,16357,43,16819,16841,16951,16947,0,6,6,6,6,16340,16355,16401,16397,43,16947,16951,16941,16934,0,6,6,6,6,16397,16401,16401,16397,43,16936,16942,16952,16948,0,6,6,6,6,16399,16402,16402,16399,43,16948,16952,16842,16820,0,6,6,6,6,16399,16402,16357,16344,43,16860,16817,16949,16953,0,6,6,6,6,16363,16341,16398,16403,43,16953,16949,16938,16943,0,6,6,6,6,16403,16398,16398,16403,43,16859,16940,16950,16954,0,6,6,6,6,16404,16400,16400,16404,43,16954,16950,16818,16861,0,6,6,6,6,16404,16400,16343,16365,43,16792,16860,16953,16944,0,6,6,6,6,16367,16363,16403,4032,43,16944,16953,16943,16791,0,6,6,6,6,4032,16403,16403,4032,43,16791,16859,16954,16944,0,6,6,6,6,4032,16404,16404,4032,43,16944,16954,16861,16792,0,6,6,6,6,4032,16404,16365,16367,43,16955,16961,16962,16956,0,6,6,6,6,16405,16215,16106,16406,43,16956,16962,16963,16957,0,6,6,6,6,16406,16106,16217,16407,43,16960,16966,16965,16959,0,6,6,6,6,16408,16220,16107,16409,43,16959,16965,16964,16958,0,6,6,6,6,16409,16107,16222,16410,43,16967,16955,16956,16968,0,6,6,6,6,16411,16405,16406,16412,43,16968,16956,16957,16969,0,6,6,6,6,16412,16406,16407,16413,43,16969,16960,16959,16968,0,6,6,6,6,16413,16408,16409,16412,43,16968,16959,16958,16967,0,6,6,6,6,16412,16409,16410,16411,43,16740,16742,16972,16970,0,6,6,6,6,16316,16106,16215,16414,43,16970,16972,16961,16955,0,6,6,6,6,16414,16215,16215,16405,43,16958,16964,16973,16971,0,6,6,6,6,16410,16222,16222,16415,43,16971,16973,16743,16741,0,6,6,6,6,16415,16222,16107,16317,43,16744,16740,16970,16974,0,6,6,6,6,16319,16316,16414,16416,43,16974,16970,16955,16967,0,6,6,6,6,16416,16414,16405,16411,43,16967,16958,16971,16974,0,6,6,6,6,16411,16410,16415,16416,43,16974,16971,16741,16744,0,6,6,6,6,16416,16415,16317,16319,43,16957,16963,16977,16975,0,6,6,6,6,16407,16217,16217,16417,43,16975,16977,16772,16770,0,6,6,6,6,16417,16217,16106,16333,43,16771,16773,16978,16976,0,6,6,6,6,16334,16107,16220,16418,43,16976,16978,16966,16960,0,6,6,6,6,16418,16220,16220,16408,43,16969,16957,16975,16979,0,6,6,6,6,16413,16407,16417,16419,43,16979,16975,16770,16774,0,6,6,6,6,16419,16417,16333,16335,43,16774,16771,16976,16979,0,6,6,6,6,16335,16334,16418,16419,43,16979,16976,16960,16969,0,6,6,6,6,16419,16418,16408,16413], - - "bones" : [ - { - "parent" : -1, - "name" : "Armature.DEF_cog", - "pos" : [0,6.59559,-0.100367], - "scl" : [1,1,1], - "rot" : [-90,-180,-0], - "rotq" : [0,0.707107,0.707107,0] - }, - - { - "parent" : 0, - "name" : "Armature.DEF_spine_base", - "pos" : [0,0,0], - "scl" : [1,1,1], - "rot" : [90.8287,-6.42209e-07,-9.42902e-06], - "rotq" : [0.712202,-6.25367e-08,-5.37697e-08,0.701975] - }, - - { - "parent" : 1, - "name" : "Armature.DEF_spine", - "pos" : [0,0.582953,0], - "scl" : [1,1,1], - "rot" : [0.637364,1.78871e-05,-4.99159e-07], - "rotq" : [0.00556202,1.56068e-07,-5.22412e-09,0.999985] - }, - - { - "parent" : 2, - "name" : "Armature.DEF_neck", - "pos" : [0,2.38045,0], - "scl" : [1,1,1], - "rot" : [-15.1393,-1.11039e-07,-2.45636e-06], - "rotq" : [-0.131731,1.86321e-09,-2.13766e-08,0.991285] - }, - - { - "parent" : 3, - "name" : "Armature.DEF_head", - "pos" : [0,0.515184,0], - "scl" : [1,1,1], - "rot" : [3.65951,-1.85575e-08,5.53452e-07], - "rotq" : [0.0319298,-7.64864e-12,4.83249e-09,0.99949] - }, - - { - "parent" : 2, - "name" : "Armature.DEF_shoulder.L", - "pos" : [-0.448866,2.34411,-0.383927], - "scl" : [1,1,1], - "rot" : [-108.646,110.436,0.599783], - "rotq" : [-0.465891,0.476579,0.668913,0.3292] - }, - - { - "parent" : 5, - "name" : "Armature.DEF_biceps.L", - "pos" : [0,1.23321,0], - "scl" : [1,1,1], - "rot" : [18.7628,5.38374,-12.4562], - "rotq" : [0.166892,0.0283986,-0.114528,0.978889] - }, - - { - "parent" : 6, - "name" : "Armature.DEF_arm.L", - "pos" : [0,1.84572,0], - "scl" : [1,1,1], - "rot" : [-1.77169,-2.43097,-12.8926], - "rotq" : [-0.0177404,-0.0193406,-0.112559,0.993298] - }, - - { - "parent" : 7, - "name" : "Armature.carpus.L", - "pos" : [0,2.08019,0], - "scl" : [1,1,1], - "rot" : [0.734708,-4.87142,9.28224], - "rotq" : [0.00982335,-0.0418398,0.0811111,0.995778] - }, - - { - "parent" : 8, - "name" : "Armature.handA.L", - "pos" : [0,0.178703,0], - "scl" : [1,1,1], - "rot" : [13.1295,8.1548,2.4886], - "rotq" : [0.112476,0.0730975,0.0133913,0.990872] - }, - - { - "parent" : 9, - "name" : "Armature.handB.L", - "pos" : [0,0.344372,0], - "scl" : [1,1,1], - "rot" : [-18.789,0.225252,-4.44066], - "rotq" : [-0.163033,0.00826182,-0.037902,0.985858] - }, - - { - "parent" : 10, - "name" : "Armature.handC.L", - "pos" : [0,0.42432,0], - "scl" : [1,1,1], - "rot" : [-1.75438,-1.22469,0.326423], - "rotq" : [-0.0152779,-0.0107295,0.00268447,0.999822] - }, - - { - "parent" : 11, - "name" : "Armature.finger4A.L", - "pos" : [-0.348629,0.0826576,-0.0223067], - "scl" : [1,1,1], - "rot" : [3.66174,-0.741322,13.0635], - "rotq" : [0.0324767,-0.00278966,0.113899,0.992957] - }, - - { - "parent" : 12, - "name" : "Armature.finger4B.L", - "pos" : [0,0.264999,0], - "scl" : [1,1,1], - "rot" : [-1.16501,-0.313501,-0.439828], - "rotq" : [-0.0101768,-0.00269662,-0.00386582,0.999937] - }, - - { - "parent" : 13, - "name" : "Armature.finger4C.L", - "pos" : [0,0.234622,0], - "scl" : [1,1,1], - "rot" : [0.526626,-0.0318331,-0.109153], - "rotq" : [0.0045954,-0.000282171,-0.000951256,0.999989] - }, - - { - "parent" : 11, - "name" : "Armature.finger3A.L", - "pos" : [-0.134276,0.117965,0.0543792], - "scl" : [1,1,1], - "rot" : [3.36862,0.36432,6.71212], - "rotq" : [0.0291559,0.00489311,0.0584219,0.997854] - }, - - { - "parent" : 15, - "name" : "Armature.finger3B.L", - "pos" : [0,0.438173,0], - "scl" : [1,1,1], - "rot" : [-2.59043,-0.621036,-0.0239736], - "rotq" : [-0.0226046,-0.00541342,-0.000331655,0.99973] - }, - - { - "parent" : 16, - "name" : "Armature.finger3C.L", - "pos" : [0,0.32559,0], - "scl" : [1,1,1], - "rot" : [-1.91108,0.298525,-0.00457744], - "rotq" : [-0.0166763,0.00260543,3.50435e-06,0.999858] - }, - - { - "parent" : 11, - "name" : "Armature.finger2A.L", - "pos" : [0.111712,0.145074,0.0262816], - "scl" : [1,1,1], - "rot" : [9.16406,1.23999,5.01976], - "rotq" : [0.0793326,0.014274,0.0427855,0.995827] - }, - - { - "parent" : 18, - "name" : "Armature.finger2B.L", - "pos" : [0,0.506091,0], - "scl" : [1,1,1], - "rot" : [-8.57022,-0.0307819,-1.51463], - "rotq" : [-0.0747166,0.000719739,-0.0132004,0.997117] - }, - - { - "parent" : 19, - "name" : "Armature.finger2C.L", - "pos" : [0,0.348161,0], - "scl" : [1,1,1], - "rot" : [0.960281,0.347811,0.0184488], - "rotq" : [0.00837941,0.00303646,0.000135555,0.99996] - }, - - { - "parent" : 11, - "name" : "Armature.finger1A.L", - "pos" : [0.325705,0.132745,-0.0120127], - "scl" : [1,1,1], - "rot" : [2.99021,2.1442,-2.90171], - "rotq" : [0.0265522,0.0180377,-0.0257944,0.999152] - }, - - { - "parent" : 21, - "name" : "Armature.finger1B.L", - "pos" : [0,0.477781,0], - "scl" : [1,1,1], - "rot" : [-2.35545,0.0257994,-3.21461], - "rotq" : [-0.0205393,0.000801526,-0.0280386,0.999395] - }, - - { - "parent" : 22, - "name" : "Armature.finger1C.L", - "pos" : [0,0.316424,0], - "scl" : [1,1,1], - "rot" : [-1.60505,0.0767865,-0.206771], - "rotq" : [-0.014005,0.000695293,-0.00179485,0.9999] - }, - - { - "parent" : 9, - "name" : "Armature.thumbA.L", - "pos" : [0.132857,0.107478,-0.0911647], - "scl" : [1,1,1], - "rot" : [-14.4037,39.5581,-63.0762], - "rotq" : [0.075061,0.347841,-0.452167,0.817874] - }, - - { - "parent" : 24, - "name" : "Armature.thumbB.L", - "pos" : [0,0.501614,0], - "scl" : [1,1,1], - "rot" : [-2.87294,9.41674,-11.2952], - "rotq" : [-0.0167873,0.0841186,-0.0959992,0.991679] - }, - - { - "parent" : 25, - "name" : "Armature.thumbC.L", - "pos" : [0,0.463134,0], - "scl" : [1,1,1], - "rot" : [-1.87297,2.46363,-3.10327], - "rotq" : [-0.0157522,0.0219293,-0.0267168,0.999278] - }, - - { - "parent" : 6, - "name" : "Armature.REF_arm.L", - "pos" : [0,1.84572,0], - "scl" : [1,1,1], - "rot" : [-1.77169,-2.43097,-12.8926], - "rotq" : [-0.0177404,-0.0193406,-0.112559,0.993298] - }, - - { - "parent" : 2, - "name" : "Armature.DEF_shoulder.R", - "pos" : [0.448866,2.34411,-0.383927], - "scl" : [1,1,1], - "rot" : [-108.646,-110.436,-0.599768], - "rotq" : [-0.465891,-0.476579,-0.668913,0.3292] - }, - - { - "parent" : 28, - "name" : "Armature.DEF_biceps.R", - "pos" : [0,1.23321,0], - "scl" : [1,1,1], - "rot" : [18.7628,-5.38375,12.4562], - "rotq" : [0.166892,-0.0283987,0.114528,0.978889] - }, - - { - "parent" : 29, - "name" : "Armature.DEF_arm.R", - "pos" : [0,1.84572,0], - "scl" : [1,1,1], - "rot" : [-1.77169,2.43097,12.8926], - "rotq" : [-0.0177404,0.0193406,0.112559,0.993298] - }, - - { - "parent" : 30, - "name" : "Armature.carpus.R", - "pos" : [0,2.08019,0], - "scl" : [1,1,1], - "rot" : [0.734711,4.87142,-9.28228], - "rotq" : [0.00982338,0.0418398,-0.0811115,0.995778] - }, - - { - "parent" : 31, - "name" : "Armature.handA.R", - "pos" : [0,0.178703,0], - "scl" : [1,1,1], - "rot" : [13.1295,-8.15481,-2.48855], - "rotq" : [0.112476,-0.0730975,-0.0133909,0.990872] - }, - - { - "parent" : 32, - "name" : "Armature.handB.R", - "pos" : [0,0.344372,0], - "scl" : [1,1,1], - "rot" : [-18.789,-0.225248,4.44066], - "rotq" : [-0.163033,-0.00826178,0.037902,0.985858] - }, - - { - "parent" : 33, - "name" : "Armature.handC.R", - "pos" : [0,0.42432,0], - "scl" : [1,1,1], - "rot" : [-1.75438,1.22469,-0.326371], - "rotq" : [-0.0152778,0.0107295,-0.00268401,0.999822] - }, - - { - "parent" : 34, - "name" : "Armature.finger4A.R", - "pos" : [0.348629,0.0826568,-0.0223068], - "scl" : [1,1,1], - "rot" : [3.66174,0.741322,-13.0635], - "rotq" : [0.0324767,0.00278966,-0.113899,0.992957] - }, - - { - "parent" : 35, - "name" : "Armature.finger4B.R", - "pos" : [0,0.264998,0], - "scl" : [1,1,1], - "rot" : [-1.16501,0.313503,0.439828], - "rotq" : [-0.0101768,0.00269664,0.00386582,0.999937] - }, - - { - "parent" : 36, - "name" : "Armature.finger4C.R", - "pos" : [0,0.234622,0], - "scl" : [1,1,1], - "rot" : [0.526626,0.0318327,0.109153], - "rotq" : [0.0045954,0.000282167,0.000951254,0.999989] - }, - - { - "parent" : 34, - "name" : "Armature.finger3A.R", - "pos" : [0.134276,0.117965,0.0543793], - "scl" : [1,1,1], - "rot" : [3.36862,-0.364321,-6.71216], - "rotq" : [0.0291559,-0.00489313,-0.0584223,0.997854] - }, - - { - "parent" : 38, - "name" : "Armature.finger3B.R", - "pos" : [0,0.438173,0], - "scl" : [1,1,1], - "rot" : [-2.59043,0.621035,0.0239683], - "rotq" : [-0.0226046,0.00541341,0.000331608,0.99973] - }, - - { - "parent" : 39, - "name" : "Armature.finger3C.R", - "pos" : [0,0.32559,0], - "scl" : [1,1,1], - "rot" : [-1.91087,-0.298521,0.00456258], - "rotq" : [-0.0166745,-0.00260538,-3.62858e-06,0.999858] - }, - - { - "parent" : 34, - "name" : "Armature.finger2A.R", - "pos" : [-0.111712,0.145075,0.0262816], - "scl" : [1,1,1], - "rot" : [9.16406,-1.23999,-5.01981], - "rotq" : [0.0793326,-0.014274,-0.0427859,0.995827] - }, - - { - "parent" : 41, - "name" : "Armature.finger2B.R", - "pos" : [0,0.506091,0], - "scl" : [1,1,1], - "rot" : [-8.57022,0.0307851,1.51463], - "rotq" : [-0.0747166,-0.000719711,0.0132004,0.997117] - }, - - { - "parent" : 42, - "name" : "Armature.finger2C.R", - "pos" : [0,0.348161,0], - "scl" : [1,1,1], - "rot" : [0.960281,-0.34781,-0.0184487], - "rotq" : [0.00837941,-0.00303646,-0.000135554,0.99996] - }, - - { - "parent" : 34, - "name" : "Armature.finger1A.R", - "pos" : [-0.325705,0.132746,-0.0120136], - "scl" : [1,1,1], - "rot" : [2.99021,-2.1442,2.90165], - "rotq" : [0.0265521,-0.0180377,0.0257939,0.999152] - }, - - { - "parent" : 44, - "name" : "Armature.finger1B.R", - "pos" : [0,0.477781,0], - "scl" : [1,1,1], - "rot" : [-2.35545,-0.0258007,3.21461], - "rotq" : [-0.0205393,-0.000801537,0.0280386,0.999395] - }, - - { - "parent" : 45, - "name" : "Armature.finger1C.R", - "pos" : [0,0.316424,0], - "scl" : [1,1,1], - "rot" : [-1.60505,-0.0767832,0.206783], - "rotq" : [-0.014005,-0.000695265,0.00179495,0.9999] - }, - - { - "parent" : 32, - "name" : "Armature.thumbA.R", - "pos" : [-0.132857,0.107478,-0.0911647], - "scl" : [1,1,1], - "rot" : [-14.4037,-39.5581,63.0762], - "rotq" : [0.075061,-0.347841,0.452167,0.817874] - }, - - { - "parent" : 47, - "name" : "Armature.thumbB.R", - "pos" : [0,0.501614,0], - "scl" : [1,1,1], - "rot" : [-2.87294,-9.41674,11.2952], - "rotq" : [-0.0167873,-0.0841187,0.0959992,0.991679] - }, - - { - "parent" : 48, - "name" : "Armature.thumbC.R", - "pos" : [0,0.463134,0], - "scl" : [1,1,1], - "rot" : [-1.87297,-2.46364,3.10327], - "rotq" : [-0.0157522,-0.0219293,0.0267168,0.999278] - }, - - { - "parent" : 29, - "name" : "Armature.REF_arm.R", - "pos" : [0,1.84572,0], - "scl" : [1,1,1], - "rot" : [-1.77169,2.43097,12.8926], - "rotq" : [-0.0177404,0.0193406,0.112559,0.993298] - }, - - { - "parent" : 1, - "name" : "Armature.DEF_torso", - "pos" : [0,0.582953,0], - "scl" : [1,1,1], - "rot" : [0.637364,1.78871e-05,-4.99159e-07], - "rotq" : [0.00556202,1.56068e-07,-5.22412e-09,0.999985] - }, - - { - "parent" : 0, - "name" : "Armature.DEF_pelvis", - "pos" : [0,0,0], - "scl" : [1,1,1], - "rot" : [0,-0,180], - "rotq" : [0,0,1,0] - }, - - { - "parent" : 52, - "name" : "Armature.hip.L", - "pos" : [0.633559,-0.198643,-0.410762], - "scl" : [1,1,1], - "rot" : [-97.1285,-17.8983,-1.00814], - "rotq" : [-0.741449,-0.0964258,-0.122368,0.652673] - }, - - { - "parent" : 53, - "name" : "Armature.DEF_thigh.L", - "pos" : [0,0.632829,0], - "scl" : [1,1,1], - "rot" : [-0.964735,-11.1448,16.8286], - "rotq" : [0.00591988,-0.0972812,0.144825,0.984646] - }, - - { - "parent" : 54, - "name" : "Armature.DEF_calf.L", - "pos" : [0,2.02233,0], - "scl" : [1,1,1], - "rot" : [15.6634,-0.3229,-1.61318], - "rotq" : [0.13621,-0.00470946,-0.0135619,0.990576] - }, - - { - "parent" : 55, - "name" : "Armature.DEF_heel.L", - "pos" : [-0.0218962,2.88707,-0.475675], - "scl" : [1,1,1], - "rot" : [52.4798,4.69039,0.687216], - "rotq" : [0.441532,0.0393518,-0.0127171,0.896292] - }, - - { - "parent" : 52, - "name" : "Armature.hip.R", - "pos" : [-0.633559,-0.198643,-0.410762], - "scl" : [1,1,1], - "rot" : [-97.1285,17.8983,1.00814], - "rotq" : [-0.741449,0.0964258,0.122368,0.652673] - }, - - { - "parent" : 57, - "name" : "Armature.DEF_thigh.R", - "pos" : [0,0.632829,0], - "scl" : [1,1,1], - "rot" : [-0.964735,11.1448,-16.8286], - "rotq" : [0.00591988,0.0972812,-0.144825,0.984646] - }, - - { - "parent" : 58, - "name" : "Armature.DEF_calf.R", - "pos" : [0,2.02233,0], - "scl" : [1,1,1], - "rot" : [15.6634,0.3229,1.61318], - "rotq" : [0.13621,0.00470946,0.0135619,0.990576] - }, - - { - "parent" : 59, - "name" : "Armature.DEF_heel.R", - "pos" : [0.0218968,2.88707,-0.475675], - "scl" : [1,1,1], - "rot" : [52.4737,-2.21049,-0.971862], - "rotq" : [0.441838,-0.0210497,0.000921208,0.896848] - }, - - { - "parent" : 52, - "name" : "Armature.DEF_beltA.L", - "pos" : [0.684952,-1.23189,-0.378074], - "scl" : [1,1,1], - "rot" : [-101.845,-12.7405,35.2428], - "rotq" : [-0.714128,-0.300213,0.10756,0.623156] - }, - - { - "parent" : 52, - "name" : "Armature.DEF_beltB.L", - "pos" : [0.956542,-0.948859,-0.263877], - "scl" : [1,1,1], - "rot" : [-104.371,-9.64892,59.8575], - "rotq" : [-0.6565,-0.437442,0.247226,0.562611] - }, - - { - "parent" : 52, - "name" : "Armature.DEF_beltC.L", - "pos" : [1.0901,-0.516434,0.000152588], - "scl" : [1,1,1], - "rot" : [-109.79,1.18181,90.8892], - "rotq" : [-0.578173,-0.578763,0.415681,0.397439] - }, - - { - "parent" : 52, - "name" : "Armature.DEF_beltD.L", - "pos" : [1.01277,-0.00608802,0.121083], - "scl" : [1,1,1], - "rot" : [-110.424,11.7493,114.574], - "rotq" : [-0.49064,-0.65582,0.522954,0.235991] - }, - - { - "parent" : 52, - "name" : "Armature.DEF_beltA.R", - "pos" : [-0.684952,-1.23189,-0.378074], - "scl" : [1,1,1], - "rot" : [-101.845,12.7405,-35.2428], - "rotq" : [-0.714128,0.300213,-0.10756,0.623156] - }, - - { - "parent" : 52, - "name" : "Armature.DEF_beltB.R", - "pos" : [-0.956542,-0.948859,-0.263877], - "scl" : [1,1,1], - "rot" : [-104.371,9.64892,-59.8575], - "rotq" : [-0.6565,0.437442,-0.247226,0.562611] - }, - - { - "parent" : 52, - "name" : "Armature.DEF_beltC.R", - "pos" : [-1.0901,-0.516434,0.000152588], - "scl" : [1,1,1], - "rot" : [-109.79,-1.18181,-90.8892], - "rotq" : [-0.578173,0.578763,-0.415681,0.397439] - }, - - { - "parent" : 52, - "name" : "Armature.DEF_beltD.R", - "pos" : [-1.01277,-0.00608802,0.121083], - "scl" : [1,1,1], - "rot" : [-110.424,-11.7493,-114.574], - "rotq" : [-0.49064,0.65582,-0.522954,0.235991] - }, - - { - "parent" : -1, - "name" : "Armature.DEF_toes.L", - "pos" : [0.98547,7.7727e-08,2.15325], - "scl" : [1,1,1], - "rot" : [-90,3.35437,-3.99415e-07], - "rotq" : [-0.706804,0.0206957,0.0206957,0.706804] - }, - - { - "parent" : 69, - "name" : "Armature.DEF_footA.L", - "pos" : [0.0101042,0.274313,-1.7276e-08], - "scl" : [1,1,1], - "rot" : [2.77923e-06,-6.22882e-07,1.05969], - "rotq" : [2.43026e-08,-5.21119e-09,0.00924737,0.999957] - }, - - { - "parent" : 70, - "name" : "Armature.DEF_footB.L", - "pos" : [0,0.445289,0], - "scl" : [1,1,1], - "rot" : [8.63384e-07,-1.08268e-07,-0.0718941], - "rotq" : [7.53385e-09,-9.49469e-10,-0.000627394,1] - }, - - { - "parent" : 71, - "name" : "Armature.DEF_footC.L", - "pos" : [0,0.341904,0], - "scl" : [1,1,1], - "rot" : [4.34248e-07,3.57697e-08,-0.928513], - "rotq" : [3.79193e-09,2.81434e-10,-0.00810272,0.999967] - }, - - { - "parent" : 72, - "name" : "Armature.DEF_footD.L", - "pos" : [0,0.415182,0], - "scl" : [1,1,1], - "rot" : [-2.68912e-07,1.20637e-07,-0.681466], - "rotq" : [-2.34039e-09,1.0667e-09,-0.00594688,0.999982] - }, - - { - "parent" : -1, - "name" : "Armature.DEF_toes.R", - "pos" : [-0.98547,7.7727e-08,2.15325], - "scl" : [1,1,1], - "rot" : [-90,-3.35437,3.99415e-07], - "rotq" : [-0.706804,-0.0206957,-0.0206957,0.706804] - }, - - { - "parent" : 74, - "name" : "Armature.DEF_footA.R", - "pos" : [-0.0101042,0.274313,-1.7276e-08], - "scl" : [1,1,1], - "rot" : [2.77923e-06,6.22882e-07,-1.05969], - "rotq" : [2.43026e-08,5.21119e-09,-0.00924737,0.999957] - }, - - { - "parent" : 75, - "name" : "Armature.DEF_footB.R", - "pos" : [0,0.445289,0], - "scl" : [1,1,1], - "rot" : [8.63384e-07,1.08268e-07,0.0718941], - "rotq" : [7.53385e-09,9.49469e-10,0.000627394,1] - }, - - { - "parent" : 76, - "name" : "Armature.DEF_footC.R", - "pos" : [0,0.341904,0], - "scl" : [1,1,1], - "rot" : [6.39154e-07,-7.96195e-09,0.928513], - "rotq" : [5.57805e-09,-2.42842e-11,0.00810272,0.999967] - }, - - { - "parent" : 77, - "name" : "Armature.DEF_footD.R", - "pos" : [0,0.415182,0], - "scl" : [1,1,1], - "rot" : [7.25968e-08,-7.42918e-08,0.681466], - "rotq" : [6.37371e-10,-6.44538e-10,0.00594688,0.999982] - }, - - { - "parent" : -1, - "name" : "Armature.DEF_sword", - "pos" : [1.90735e-06,8.87587,3.11274], - "scl" : [1,1,1], - "rot" : [6.83019e-06,-8.65142e-06,180], - "rotq" : [7.54979e-08,5.96046e-08,1,1.19991e-15] - } - ], - - "skinIndices" : [8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,25,24,25,24,25,24,25,24,25,24,25,0,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,24,25,26,25,26,25,26,25,26,25,26,25,26,25,26,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,25,26,26,25,26,25,26,25,26,25,26,25,26,25,25,26,25,26,25,26,25,26,25,26,25,26,25,26,25,26,26,25,26,25,26,25,25,26,25,26,25,26,25,24,25,26,25,24,25,24,25,24,25,24,25,26,25,26,25,26,25,26,25,26,25,26,25,26,26,25,26,25,26,25,25,26,26,25,25,26,26,25,26,25,25,26,25,26,25,26,25,26,24,0,24,11,11,25,24,0,24,25,11,24,24,25,24,9,24,11,24,9,24,25,24,21,24,25,24,25,24,25,24,25,25,24,25,24,24,25,24,25,25,24,24,25,24,25,24,25,24,10,24,10,24,10,24,10,24,9,24,9,24,9,24,10,24,10,24,9,24,10,24,10,10,11,10,11,10,8,10,8,10,24,10,24,10,9,10,9,10,9,10,9,10,9,10,9,10,9,24,10,10,24,10,9,10,8,10,11,10,11,10,24,10,24,10,9,10,9,9,10,8,9,8,9,9,10,8,9,11,10,11,10,11,18,11,10,11,21,11,18,11,10,11,10,11,15,11,10,11,15,11,10,11,18,11,10,11,21,11,21,11,18,11,18,10,11,10,11,11,10,11,10,11,10,11,10,11,18,11,10,18,21,11,10,11,18,10,11,11,10,10,11,11,10,10,11,11,15,11,10,21,11,11,24,11,21,11,24,11,24,11,24,11,21,11,24,11,21,10,11,11,10,10,9,11,10,10,9,10,11,10,9,10,9,10,9,10,11,10,11,11,10,10,11,11,12,11,10,21,11,11,10,21,11,10,11,11,15,10,11,11,10,10,11,11,18,11,10,11,18,18,21,18,11,10,11,10,11,10,9,10,9,18,21,18,11,18,11,15,12,15,11,10,11,10,11,8,10,9,8,15,11,15,12,15,11,10,9,21,0,21,18,10,24,10,24,24,9,21,18,21,11,21,18,12,11,12,15,10,9,10,9,9,10,9,10,12,15,11,12,12,15,8,9,8,9,8,9,9,8,8,9,9,10,9,24,9,8,8,9,9,8,9,24,8,9,8,9,9,8,9,8,8,9,8,9,9,8,9,8,8,9,8,9,10,9,10,9,10,9,10,9,10,9,11,24,24,11,11,24,11,24,10,24,10,9,10,11,10,11,10,11,10,24,10,11,10,11,10,24,10,9,10,9,10,9,9,10,8,10,10,24,24,9,9,10,9,10,9,10,9,10,9,10,10,9,8,10,24,9,9,10,9,10,11,18,18,11,11,15,15,11,21,11,21,11,11,12,12,11,11,12,12,11,11,18,18,11,11,21,21,11,21,11,21,11,11,18,11,18,11,15,11,15,11,18,11,18,11,15,15,12,11,12,11,12,11,12,15,11,18,11,11,18,11,12,15,11,21,18,21,11,21,11,21,11,21,11,11,12,11,10,11,10,11,10,12,11,18,21,11,18,15,12,15,12,15,12,15,12,15,12,15,12,15,18,15,18,18,15,15,18,15,18,18,21,18,21,18,21,18,21,18,21,18,21,21,18,15,18,18,15,12,15,15,12,12,15,15,12,15,18,18,15,18,15,18,21,21,18,21,18,12,15,12,15,12,15,12,15,12,11,12,11,12,11,12,11,13,14,12,13,13,14,12,13,13,14,12,13,13,14,12,13,13,14,12,13,13,14,12,13,13,14,12,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,13,12,13,12,13,12,13,12,13,12,13,12,13,12,13,12,12,13,12,13,12,15,12,13,12,13,12,13,12,13,12,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,13,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,14,13,14,13,14,13,13,14,13,14,13,14,12,13,13,12,13,12,12,13,12,13,12,13,13,12,13,12,13,12,13,12,13,12,13,12,13,12,13,12,12,15,12,15,12,15,12,15,12,11,12,11,12,11,12,0,13,14,13,14,13,14,13,14,13,14,14,13,14,13,14,13,13,14,13,14,13,14,14,13,14,13,13,14,13,14,13,14,13,14,12,13,12,13,12,13,12,13,12,13,12,13,12,13,12,13,12,13,12,13,12,13,12,13,12,13,12,13,12,13,12,13,12,13,21,22,21,22,21,22,21,22,22,21,22,21,21,22,21,22,21,22,22,21,22,21,22,21,21,22,21,22,21,22,21,22,21,22,22,23,22,23,22,23,22,23,23,22,23,22,22,23,22,23,22,23,23,22,23,22,23,22,22,23,22,23,22,23,22,23,22,23,21,18,21,18,21,18,21,22,21,22,21,22,21,0,21,0,22,0,22,21,22,21,22,21,22,21,22,21,22,0,22,21,22,21,22,21,22,21,22,21,22,21,22,21,22,23,22,23,22,23,23,22,23,22,23,22,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,21,22,21,22,21,22,21,22,21,22,21,22,21,22,21,22,22,21,22,21,22,21,22,21,22,21,22,21,22,21,22,21,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,22,21,22,23,22,21,22,23,21,22,22,23,21,22,22,23,21,22,22,23,22,21,22,23,21,22,22,23,21,18,21,18,21,18,21,11,21,0,21,0,21,18,15,0,15,18,15,18,15,18,15,11,15,12,15,12,15,12,16,17,15,16,16,17,15,16,16,17,15,16,16,17,15,16,16,17,15,16,16,17,15,16,16,17,15,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,16,15,16,15,16,15,16,15,16,15,16,15,16,15,16,15,15,16,15,16,15,16,15,16,15,16,15,16,15,16,15,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,15,16,15,16,15,16,15,15,16,15,16,16,15,16,15,16,15,16,15,16,15,16,15,16,15,16,0,15,18,15,0,15,18,15,18,15,16,15,12,15,12,15,0,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,15,16,15,16,15,16,15,16,15,16,16,15,16,15,15,16,15,16,15,16,15,16,15,16,15,16,15,16,15,16,15,16,15,16,19,18,18,19,18,19,18,19,19,18,19,18,19,18,19,18,19,18,19,18,19,18,19,18,19,18,19,18,18,19,18,19,18,19,19,20,19,20,19,20,19,20,20,19,20,19,19,20,20,19,19,20,20,19,20,19,20,19,19,20,19,20,19,20,19,20,19,20,18,0,18,15,18,19,18,19,18,21,18,21,18,0,18,0,19,0,19,0,19,18,19,18,19,18,19,0,19,0,19,0,19,18,19,18,19,18,19,18,19,18,19,18,19,20,19,20,20,19,20,19,20,19,20,19,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,18,19,18,19,18,19,18,19,18,19,18,19,18,19,18,19,19,18,19,18,19,18,19,18,19,18,19,18,19,18,19,18,20,19,20,19,20,19,20,19,20,19,20,19,20,19,19,18,19,20,19,18,19,20,18,19,19,20,18,19,19,20,18,19,19,20,19,18,19,20,19,18,19,20,18,15,18,11,18,11,18,21,18,21,18,21,18,15,8,9,9,10,9,10,9,10,9,10,9,24,9,10,9,24,9,24,9,10,9,8,9,24,9,8,9,10,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,8,9,20,19,17,16,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,48,47,48,47,48,47,48,47,48,47,48,0,48,47,48,47,48,47,48,47,48,47,48,47,48,47,48,47,48,47,48,47,48,47,48,47,48,49,48,49,48,49,48,49,48,49,48,49,48,49,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,48,49,49,48,49,48,49,48,49,48,49,48,49,48,48,49,48,49,48,49,48,49,48,49,48,49,48,49,48,49,49,48,49,48,49,48,48,49,48,49,48,49,48,47,48,49,48,47,48,47,48,47,48,47,48,49,48,49,48,49,48,49,48,49,48,49,48,49,49,48,49,48,49,48,48,49,49,48,48,49,49,48,49,48,48,49,48,49,48,49,48,49,47,0,47,34,34,48,47,0,47,48,34,47,47,48,47,32,47,34,47,32,47,48,47,44,47,48,47,48,47,48,47,48,48,47,48,47,47,48,47,48,48,47,47,48,47,48,47,48,47,33,47,33,47,33,47,33,47,32,47,32,47,32,47,33,47,33,47,32,47,33,47,33,33,34,33,34,33,31,33,31,33,47,33,47,33,32,33,32,33,32,33,32,33,32,33,32,33,32,47,33,33,47,33,32,33,31,33,34,33,34,33,47,33,47,33,32,33,32,32,33,31,32,31,32,32,33,31,32,34,33,34,33,34,41,34,33,34,44,34,41,34,33,34,33,34,38,34,33,34,38,34,33,34,41,34,33,34,44,34,44,34,41,34,41,33,34,33,34,34,33,34,33,34,33,34,33,34,41,34,33,41,44,34,33,34,41,33,34,34,33,33,34,34,33,33,34,34,38,34,33,44,34,34,47,34,44,34,47,34,47,34,47,34,44,34,47,34,44,33,34,34,33,33,32,34,33,33,32,33,34,33,32,33,32,33,32,33,34,33,34,34,33,33,34,34,35,34,33,44,34,34,33,44,34,33,34,34,38,33,34,34,33,33,34,34,41,34,33,34,41,41,44,41,34,33,34,33,34,33,32,33,32,41,44,41,34,41,34,38,35,38,34,33,34,33,34,31,33,32,31,38,34,38,35,38,34,33,32,44,0,44,41,33,47,33,47,47,32,44,41,44,34,44,41,35,34,35,38,33,32,33,32,32,33,32,33,35,38,34,35,35,38,31,32,31,32,31,32,32,31,31,32,32,33,32,47,32,31,31,32,32,31,32,47,31,32,31,32,32,31,32,31,31,32,31,32,32,31,32,31,31,32,31,32,33,32,33,32,33,32,33,32,33,32,34,47,47,34,34,47,34,47,33,47,33,32,33,34,33,34,33,34,33,47,33,34,33,34,33,47,33,32,33,32,33,32,32,33,31,33,33,47,47,32,32,33,32,33,32,33,32,33,32,33,33,32,31,33,47,32,32,33,32,33,34,41,41,34,34,38,38,34,44,34,44,34,34,35,35,34,34,35,35,34,34,41,41,34,34,44,44,34,44,34,44,34,34,41,34,41,34,38,34,38,34,41,34,41,34,38,38,35,34,35,34,35,34,35,38,34,41,34,34,41,34,35,38,34,44,41,44,34,44,34,44,34,44,34,34,35,34,33,34,33,34,33,35,34,41,44,34,41,38,35,38,35,38,35,38,35,38,35,38,35,38,41,38,41,41,38,38,41,38,41,41,44,41,44,41,44,41,44,41,44,41,44,44,41,38,41,41,38,35,38,38,35,35,38,38,35,38,41,41,38,41,38,41,44,44,41,44,41,35,38,35,38,35,38,35,38,35,34,35,34,35,34,35,34,36,37,35,36,36,37,35,36,36,37,35,36,36,37,35,36,36,37,35,36,36,37,35,36,36,37,35,36,37,36,37,36,37,36,37,36,37,36,37,36,37,36,37,36,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,35,36,35,36,35,38,35,36,35,36,35,36,35,36,35,36,37,36,37,36,37,36,37,36,37,36,37,36,37,36,37,36,36,37,36,37,36,37,36,37,36,37,36,37,36,37,36,37,37,36,37,36,37,36,36,37,36,37,36,37,35,36,36,35,36,35,35,36,35,36,35,36,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,35,38,35,38,35,38,35,38,35,34,35,34,35,34,35,0,36,37,36,37,36,37,36,37,36,37,37,36,37,36,37,36,36,37,36,37,36,37,37,36,37,36,36,37,36,37,36,37,36,37,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,44,45,44,45,44,45,44,45,45,44,45,44,44,45,44,45,44,45,45,44,45,44,45,44,44,45,44,45,44,45,44,45,44,45,45,46,45,46,45,46,45,46,46,45,46,45,45,46,45,46,45,46,46,45,46,45,46,45,45,46,45,46,45,46,45,46,45,46,44,41,44,41,44,41,44,45,44,45,44,45,44,0,44,0,45,0,45,44,45,44,45,44,45,44,45,44,45,0,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,46,45,46,45,46,46,45,46,45,46,45,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,45,44,45,46,45,44,45,46,44,45,45,46,44,45,45,46,44,45,45,46,45,44,45,46,44,45,45,46,44,41,44,41,44,41,44,34,44,0,44,0,44,41,38,0,38,41,38,41,38,41,38,34,38,35,38,35,38,35,39,40,38,39,39,40,38,39,39,40,38,39,39,40,38,39,39,40,38,39,39,40,38,39,39,40,38,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,39,38,39,38,39,38,39,38,39,38,39,38,39,38,39,38,38,39,38,39,38,39,38,39,38,39,38,39,38,39,38,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,38,39,38,39,38,39,38,38,39,38,39,39,38,39,38,39,38,39,38,39,38,39,38,39,38,39,0,38,41,38,0,38,41,38,41,38,39,38,35,38,35,38,0,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,38,39,38,39,38,39,38,39,38,39,39,38,39,38,38,39,38,39,38,39,38,39,38,39,38,39,38,39,38,39,38,39,38,39,42,41,41,42,41,42,41,42,42,41,42,41,42,41,42,41,42,41,42,41,42,41,42,41,42,41,42,41,41,42,41,42,41,42,42,43,42,43,42,43,42,43,43,42,43,42,42,43,43,42,42,43,43,42,43,42,43,42,42,43,42,43,42,43,42,43,42,43,41,0,41,38,41,42,41,42,41,44,41,44,41,0,41,0,42,0,42,0,42,41,42,41,42,41,42,0,42,0,42,0,42,41,42,41,42,41,42,41,42,41,42,41,42,43,42,43,43,42,43,42,43,42,43,42,42,43,42,43,42,43,42,43,42,43,42,43,42,43,42,43,43,42,43,42,43,42,43,42,43,42,43,42,43,42,43,42,41,42,41,42,41,42,41,42,41,42,41,42,41,42,41,42,42,41,42,41,42,41,42,41,42,41,42,41,42,41,42,41,43,42,43,42,43,42,43,42,43,42,43,42,43,42,42,41,42,43,42,41,42,43,41,42,42,43,41,42,42,43,41,42,42,43,42,41,42,43,42,41,42,43,41,38,41,34,41,34,41,44,41,44,41,44,41,38,31,32,32,33,32,33,32,33,32,33,32,47,32,33,32,47,32,47,32,33,32,31,32,47,32,31,32,33,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,43,42,40,39,53,54,53,54,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,53,54,54,53,53,54,53,54,53,1,53,1,53,52,53,52,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,54,53,54,53,54,53,53,52,53,54,53,54,53,54,54,53,54,53,54,53,53,54,54,53,54,53,53,54,53,54,53,54,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,53,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,0,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,0,54,55,54,0,54,0,54,0,54,0,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,0,55,54,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,54,55,0,55,54,55,0,55,54,55,0,55,54,55,0,54,53,54,53,54,53,54,53,54,53,54,53,53,54,54,53,54,53,54,53,54,53,54,53,54,53,53,54,53,54,53,54,54,53,54,0,54,0,54,55,55,54,55,0,55,0,53,54,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,53,54,53,54,53,1,53,52,53,54,53,54,53,54,53,54,53,54,53,52,53,54,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,54,55,0,55,0,56,55,55,56,56,55,55,56,55,56,55,0,55,0,55,0,55,0,55,0,55,56,55,56,57,58,57,58,53,57,53,57,58,57,58,57,58,57,58,57,54,58,54,58,58,57,58,57,58,57,58,57,54,58,53,57,57,58,58,57,57,58,53,57,57,58,57,1,57,1,1,53,57,52,52,53,57,52,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,58,57,58,57,58,57,57,52,57,58,57,58,57,58,58,57,58,57,58,57,57,58,58,57,58,57,53,57,57,58,57,58,57,58,54,58,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,57,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,0,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,0,58,59,58,0,58,0,58,0,58,0,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,0,59,58,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,58,59,0,59,58,59,0,59,58,59,0,59,58,59,0,58,57,58,57,58,57,58,57,58,57,58,57,57,58,58,57,58,57,58,57,58,57,58,57,58,57,57,58,57,58,57,58,58,57,58,0,58,0,58,59,59,58,59,0,59,0,57,58,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,53,57,57,58,57,58,1,53,57,1,57,52,57,58,57,58,57,58,57,58,57,58,57,52,57,58,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,0,59,0,60,59,59,60,60,59,59,60,59,60,59,0,59,0,59,0,59,0,59,0,59,60,59,60,3,4,3,4,4,3,4,3,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,3,4,3,4,3,4,3,4,3,4,3,4,4,3,4,3,3,4,3,4,3,4,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,3,4,3,28,4,3,3,4,4,3,4,3,3,4,3,28,3,4,4,3,4,3,3,4,3,4,4,3,3,28,3,4,3,28,3,4,4,3,4,3,3,4,4,3,3,28,3,28,3,28,3,4,4,3,4,3,3,28,3,28,28,3,3,28,4,3,4,3,3,28,4,3,4,3,28,3,4,3,4,3,28,3,3,28,4,3,3,28,4,3,3,4,4,3,3,4,4,3,5,3,5,3,5,3,5,3,5,3,5,3,5,3,5,3,3,4,3,5,5,3,3,5,5,3,5,3,5,3,3,5,3,5,3,5,3,5,3,5,3,5,3,5,3,5,3,4,3,4,3,4,3,4,4,3,4,3,4,3,4,3,4,3,5,3,5,3,5,3,5,3,3,5,3,4,3,5,4,3,3,5,5,3,3,5,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,3,28,28,3,3,28,3,28,3,28,3,28,3,28,28,3,3,28,3,4,3,28,3,28,4,3,3,4,4,3,4,3,4,3,4,3,3,28,4,3,4,3,4,3,3,28,3,28,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,3,4,3,4,3,4,3,4,3,4,2,3,3,2,3,4,3,4,3,4,3,4,3,2,3,28,3,2,3,2,3,4,3,28,4,3,3,4,3,4,3,4,3,4,3,4,3,4,4,3,4,3,3,4,4,3,3,4,4,3,3,4,3,4,4,3,4,3,3,4,4,3,3,4,4,3,4,3,4,3,4,3,3,4,4,3,4,3,3,4,3,4,3,4,3,4,4,3,4,3,3,4,3,4,3,4,3,4,3,4,3,4,4,3,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,2,3,4,3,4,4,3,3,4,3,4,3,4,3,4,3,4,3,4,3,2,3,2,3,4,3,5,3,4,3,28,3,5,3,4,3,2,3,2,3,4,3,4,4,3,3,4,3,2,3,2,3,4,3,5,3,5,3,4,3,5,3,4,3,2,3,2,3,4,3,4,3,2,3,2,3,4,3,5,3,5,3,4,3,4,3,4,3,4,3,2,3,4,3,4,3,4,3,4,3,4,3,4,4,3,3,4,3,4,3,4,3,2,3,5,3,4,3,4,3,4,3,4,3,2,3,2,3,5,3,4,3,5,3,28,3,5,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,28,3,5,3,4,3,5,3,2,3,2,3,4,3,2,3,2,3,2,3,2,3,5,3,28,3,5,3,4,3,5,3,2,3,2,3,4,3,2,2,3,2,3,2,3,3,2,3,5,3,2,3,2,2,3,2,3,2,3,2,3,3,2,3,2,3,2,5,3,3,2,5,3,2,3,3,2,3,2,3,2,2,3,3,2,3,2,3,2,3,2,3,2,5,3,2,3,3,2,3,2,3,2,2,3,2,3,2,3,2,3,2,3,3,28,5,3,3,2,5,3,3,2,3,2,2,3,2,3,2,3,3,2,3,2,3,2,3,2,3,5,3,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,5,3,3,2,2,28,3,2,3,2,3,2,2,3,3,5,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,3,28,3,5,3,28,3,5,3,4,3,2,3,2,3,2,3,2,3,4,3,5,3,4,3,5,3,2,3,2,3,2,3,4,3,2,3,4,3,5,3,2,3,2,9,7,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,19,20,19,20,19,20,19,19,20,19,20,19,20,20,0,20,19,20,19,20,19,20,19,20,19,20,19,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,19,19,20,19,20,19,20,19,20,20,19,20,19,20,19,19,20,20,19,20,19,20,19,20,19,19,20,20,0,20,19,20,19,20,19,20,19,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,20,19,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,16,17,17,0,17,0,17,0,17,0,17,0,17,0,17,0,17,19,17,0,17,0,17,0,17,0,17,16,17,16,17,16,17,16,17,16,16,17,17,16,17,16,17,16,16,17,16,17,16,17,16,17,17,16,17,0,17,0,17,0,17,0,17,0,17,0,17,0,17,0,17,0,17,0,17,0,17,0,17,0,17,16,17,16,17,16,17,16,17,16,17,0,17,0,17,0,16,17,16,17,16,17,17,16,17,16,17,16,17,16,17,0,17,0,17,0,17,0,17,0,17,0,17,0,17,0,23,0,23,0,23,0,23,0,23,22,23,22,23,22,23,0,23,22,22,23,23,22,23,22,23,22,23,22,23,22,23,0,23,22,23,22,23,22,23,22,23,22,23,22,23,0,23,22,23,0,23,0,23,0,23,0,23,0,23,0,23,0,23,0,23,0,23,0,23,0,23,0,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,22,23,0,23,0,23,0,23,0,23,0,23,0,23,0,23,22,23,22,22,23,23,22,23,22,23,22,22,23,23,22,23,22,22,23,22,23,13,14,14,13,14,13,13,14,14,13,13,14,14,13,14,13,14,13,13,14,13,14,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,0,13,14,13,14,13,14,14,13,14,13,14,13,14,13,14,13,13,14,13,14,13,14,13,14,14,13,14,13,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,13,14,13,14,13,14,13,14,13,14,13,14,13,14,0,13,14,13,14,13,14,13,14,13,14,13,14,13,14,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,26,0,26,25,26,0,26,0,26,25,26,25,26,25,26,25,26,25,26,0,26,0,26,0,26,25,26,0,26,25,26,25,26,25,26,25,26,25,26,0,26,0,26,25,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,25,26,25,26,0,26,25,26,0,26,25,26,25,26,25,26,25,26,25,26,0,26,0,26,0,26,0,26,0,26,0,26,25,26,25,26,25,26,0,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,2,5,6,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,5,6,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,7,6,7,6,6,7,6,7,6,7,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,6,5,6,7,6,5,6,7,6,5,6,7,6,5,6,7,6,5,6,7,6,5,6,7,6,5,6,7,6,5,6,7,6,5,6,7,6,5,6,7,6,5,6,7,6,5,6,7,7,6,7,0,7,6,7,9,7,6,7,9,7,6,7,0,7,0,7,0,7,0,7,0,7,6,7,0,7,6,7,9,7,0,7,0,7,0,7,0,7,6,7,0,7,6,7,9,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,6,7,6,7,6,7,6,7,6,7,7,6,7,6,7,0,7,0,7,6,6,7,6,7,7,6,7,0,7,0,7,6,7,6,7,6,7,6,6,5,6,5,6,5,6,5,6,5,6,5,6,0,6,0,6,0,6,0,6,0,6,5,7,9,9,7,9,7,9,7,7,9,7,9,7,9,7,9,7,9,9,7,9,7,9,7,9,7,9,7,5,6,5,6,6,5,5,6,5,6,6,5,5,6,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,3,4,3,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,3,4,4,3,4,3,3,4,4,3,4,3,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,2,5,2,3,2,3,5,3,5,2,5,2,5,2,5,2,3,0,3,6,3,2,3,2,5,3,3,2,5,3,5,3,3,4,3,4,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,3,4,2,3,3,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,3,4,5,3,5,3,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,3,4,5,3,3,2,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,3,4,3,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,0,3,2,3,0,3,28,3,28,3,4,3,0,3,0,2,3,3,2,2,3,5,3,5,3,3,5,5,2,5,3,2,3,5,3,5,3,5,2,5,2,5,2,5,2,5,2,5,2,5,2,2,3,2,5,2,3,2,5,3,4,5,3,5,3,3,2,5,3,5,2,3,4,3,4,3,4,5,3,5,3,5,3,5,3,5,3,5,3,3,2,3,0,3,0,5,3,5,3,5,3,5,3,5,3,5,2,3,4,3,4,3,4,3,4,3,4,3,4,7,6,7,6,7,6,7,6,6,7,6,7,6,7,7,6,7,6,7,6,7,6,7,6,7,6,6,7,7,6,7,6,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,7,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,2,3,32,30,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,42,43,42,43,42,43,42,42,43,42,43,42,43,43,0,43,42,43,42,43,42,43,42,43,42,43,42,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,42,42,43,42,43,42,43,42,43,43,42,43,42,43,42,42,43,43,42,43,42,43,42,43,42,42,43,43,0,43,42,43,42,43,42,43,42,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,42,43,42,43,42,43,42,43,42,43,42,43,42,43,42,43,42,43,42,43,42,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,39,40,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,42,40,0,40,0,40,0,40,0,40,39,40,39,40,39,40,39,40,39,39,40,40,39,40,39,40,39,39,40,39,40,39,40,39,40,40,39,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,39,40,39,40,39,40,39,40,39,40,0,40,0,40,0,39,40,39,40,39,40,40,39,40,39,40,39,40,39,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,46,0,46,0,46,0,46,0,46,45,46,45,46,45,46,0,46,45,45,46,46,45,46,45,46,45,46,45,46,45,46,0,46,45,46,45,46,45,46,45,46,45,46,45,46,0,46,45,46,0,46,0,46,0,46,0,46,0,46,0,46,0,46,0,46,0,46,0,46,0,46,0,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,45,46,0,46,0,46,0,46,0,46,0,46,0,46,0,46,45,46,45,45,46,46,45,46,45,46,45,45,46,46,45,46,45,45,46,45,46,36,37,37,36,37,36,36,37,37,36,36,37,37,36,37,36,37,36,36,37,36,37,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,36,37,36,37,36,37,0,36,37,36,37,36,37,37,36,37,36,37,36,37,36,37,36,36,37,36,37,36,37,36,37,37,36,37,36,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,36,37,36,37,36,37,36,37,36,37,36,37,36,37,0,36,37,36,37,36,37,36,37,36,37,36,37,36,37,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,49,0,49,48,49,0,49,0,49,48,49,48,49,48,49,48,49,48,49,0,49,0,49,0,49,48,49,0,49,48,49,48,49,48,49,48,49,48,49,0,49,0,49,48,49,0,49,0,49,0,49,0,49,0,49,0,49,0,49,48,49,48,49,0,49,48,49,0,49,48,49,48,49,48,49,48,49,48,49,0,49,0,49,0,49,0,49,0,49,0,49,48,49,48,49,48,49,0,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,2,28,29,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,28,29,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,30,29,30,29,29,30,29,30,29,30,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,29,28,29,30,29,28,29,30,29,28,29,30,29,28,29,30,29,28,29,30,29,28,29,30,29,28,29,30,29,28,29,30,29,28,29,30,29,28,29,30,29,28,29,30,29,28,29,30,30,29,30,0,30,29,30,32,30,29,30,32,30,29,30,0,30,0,30,0,30,0,30,0,30,29,30,0,30,29,30,32,30,0,30,0,30,0,30,0,30,29,30,0,30,29,30,32,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,29,30,29,30,29,30,29,30,29,30,30,29,30,29,30,0,30,0,30,29,29,30,29,30,30,29,30,0,30,0,30,29,30,29,30,29,30,29,29,28,29,28,29,28,29,28,29,28,29,28,29,0,29,0,29,0,29,0,29,0,29,28,30,32,32,30,32,30,32,30,30,32,30,32,30,32,30,32,30,32,32,30,32,30,32,30,32,30,32,30,28,29,28,29,29,28,28,29,28,29,29,28,28,29,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,3,4,3,4,3,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,3,4,4,3,4,3,3,4,4,3,4,3,3,4,4,3,4,3,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,3,4,3,4,3,28,3,4,3,4,3,4,3,4,3,4,3,4,3,4,2,28,2,3,2,3,2,3,28,3,28,2,28,2,2,5,28,2,28,2,3,4,3,0,3,29,3,2,3,2,28,3,3,2,28,3,3,5,28,3,3,4,3,4,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,3,4,2,3,3,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,3,4,28,3,28,3,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,3,4,28,3,3,2,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,3,4,3,4,3,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,0,3,2,3,0,3,5,3,2,3,5,3,4,3,0,3,0,2,3,2,3,3,2,2,3,28,3,28,3,3,28,28,2,5,28,28,3,2,3,28,3,28,3,2,5,28,2,28,2,28,2,28,2,28,2,28,2,28,2,2,3,2,28,2,3,2,28,3,4,28,3,28,3,3,2,28,3,28,2,3,4,3,4,3,4,28,3,28,3,28,3,28,3,28,3,28,3,3,2,3,0,3,0,28,3,28,3,28,3,28,3,28,3,28,2,3,4,3,4,3,4,3,4,3,4,3,4,30,29,30,29,30,29,30,29,29,30,29,30,29,30,30,29,30,29,30,29,30,29,30,29,30,29,29,30,30,29,30,29,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,30,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,2,28,2,28,28,2,28,29,28,29,2,28,28,2,28,29,2,28,28,2,28,29,2,28,2,28,2,1,2,1,2,28,2,1,2,1,2,1,2,1,2,28,2,28,2,28,2,1,2,1,2,1,2,57,2,28,2,28,2,1,2,1,28,2,28,0,2,28,2,28,2,0,28,2,28,2,2,28,28,2,2,28,2,28,2,28,2,28,28,29,28,29,2,28,28,2,28,2,28,29,2,28,28,2,28,29,28,29,28,29,2,28,2,28,2,28,2,28,2,28,2,28,2,28,2,28,2,28,2,1,2,28,2,28,2,1,2,1,2,1,2,1,2,1,2,28,2,28,2,28,2,28,2,1,2,1,2,1,2,1,28,2,28,2,2,28,28,2,2,28,2,28,2,28,2,28,2,1,2,28,2,1,2,28,2,28,2,28,2,28,2,28,2,28,2,28,2,28,28,2,2,28,2,28,2,28,28,2,2,28,2,28,28,29,28,2,28,29,29,28,29,28,2,1,2,1,2,1,29,28,29,28,29,28,29,28,2,1,2,1,28,2,28,2,28,2,2,28,2,28,2,28,2,28,2,28,2,1,2,28,28,2,2,1,2,1,2,1,57,2,2,28,2,28,2,28,28,2,29,28,2,28,2,28,2,28,2,28,2,28,29,28,2,1,2,1,2,28,2,28,2,28,28,2,2,28,2,28,29,28,28,29,28,2,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,2,28,28,2,28,29,2,28,2,28,2,28,28,29,29,28,28,29,28,29,29,28,2,28,2,28,2,28,2,1,2,57,2,28,29,28,28,0,28,0,28,2,28,2,2,3,28,2,28,2,28,2,28,2,28,2,28,2,28,2,2,28,28,2,2,3,2,28,2,3,2,28,28,2,2,28,2,28,2,3,28,2,28,3,28,3,28,2,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,1,57,57,2,57,1,57,1,57,1,2,57,1,2,57,2,1,2,2,1,57,2,57,2,57,1,57,2,1,57,57,2,2,1,2,1,1,2,1,57,57,1,57,1,57,1,57,2,57,1,57,2,1,57,57,1,2,1,1,57,57,2,57,2,57,2,57,1,57,1,57,2,57,1,57,1,57,1,57,1,57,1,57,0,57,1,57,0,57,1,57,1,57,1,57,0,58,57,57,1,57,0,57,1,58,57,58,57,57,1,57,58,58,57,57,58,57,0,57,1,57,1,58,57,57,1,57,1,57,1,57,1,57,2,57,2,57,2,57,1,1,57,57,2,57,2,57,1,57,2,57,1,1,2,1,2,57,2,1,2,57,2,57,1,57,2,57,1,57,1,57,1,1,2,1,2,57,2,1,57,57,2,57,2,57,1,57,1,57,1,57,1,57,1,57,0,57,0,57,1,57,1,58,57,57,2,1,2,1,57,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,0,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,2,3,2,0,2,1,2,5,2,3,2,0,2,3,2,3,2,3,5,2,5,6,5,6,2,5,5,2,5,6,2,5,5,2,5,6,2,5,2,5,2,1,2,1,2,1,2,5,2,1,2,1,2,1,2,1,2,5,2,5,2,5,2,1,2,1,2,53,2,5,2,5,5,2,5,0,2,5,2,5,5,2,5,2,2,5,5,2,2,5,2,5,2,5,2,5,5,6,5,6,2,5,5,2,5,2,5,6,2,5,5,2,5,6,5,6,5,6,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,1,2,5,2,5,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,5,2,5,2,5,2,1,2,1,2,1,2,1,5,2,5,2,2,5,5,2,2,5,2,5,2,5,2,5,2,1,2,5,2,1,2,1,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,5,2,2,5,2,5,2,1,2,5,5,2,2,5,2,5,5,6,5,2,5,6,6,5,6,5,2,1,2,1,2,1,6,5,6,5,6,5,6,5,2,1,2,1,2,1,5,2,5,2,5,2,2,5,2,5,2,5,2,5,2,5,2,1,2,5,5,2,2,1,2,1,2,1,53,2,2,5,2,5,2,5,5,2,6,5,2,5,2,5,2,5,2,5,2,5,6,5,2,1,2,1,2,5,2,5,2,5,5,2,2,5,2,5,6,5,5,6,5,2,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,2,5,5,2,5,6,2,5,2,5,2,5,5,6,6,5,5,6,5,6,6,5,2,5,2,5,2,5,2,1,2,53,2,5,6,5,5,0,5,0,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,2,5,5,2,2,3,2,5,2,3,2,5,5,2,2,5,2,5,2,3,5,2,5,3,5,3,5,2,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,1,53,53,2,53,1,53,1,53,1,2,53,1,2,53,2,1,2,2,1,53,2,53,2,53,1,53,2,1,53,53,2,2,1,2,1,1,2,1,2,1,53,53,1,53,1,53,1,53,2,53,1,53,2,1,53,53,1,2,1,1,53,53,2,53,2,53,2,53,1,53,1,53,2,53,1,53,1,53,1,53,1,1,2,53,1,53,0,53,1,53,0,53,1,53,1,53,1,53,0,54,53,53,1,53,0,53,1,54,53,53,54,53,1,53,54,53,54,53,54,53,0,53,1,53,1,53,54,53,1,1,53,53,1,53,1,53,1,53,2,1,2,53,2,53,2,53,1,1,53,53,2,53,2,53,1,53,2,53,1,1,2,1,2,53,2,1,2,53,2,53,1,53,2,53,1,53,1,53,1,1,2,1,2,53,2,1,53,53,2,53,2,53,1,53,1,53,1,53,1,53,1,53,0,53,0,53,1,53,1,54,53,53,2,1,2,1,2,1,2,2,1,1,53,1,53,1,2,1,2,1,2,1,2,1,53,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,0,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,6,5,57,1,57,1,57,1,57,1,57,2,1,57,57,2,57,1,57,1,57,1,1,57,53,1,53,1,53,1,53,1,53,2,1,53,53,2,53,1,53,1,53,1,1,53,1,2,1,2,57,1,57,1,57,1,57,1,57,2,57,1,57,2,57,1,57,1,57,1,1,57,53,1,53,1,53,1,53,1,53,2,53,1,53,2,53,1,53,1,53,1,1,53,1,57,1,2,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,62,0,62,0,62,0,62,0,63,0,63,0,63,0,63,0,63,0,63,0,64,0,64,0,64,0,64,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,56,73,56,73,73,56,72,71,73,56,56,73,56,73,56,73,56,73,56,73,56,73,73,56,73,56,72,71,73,72,73,72,72,71,72,71,71,72,71,72,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,70,0,70,0,70,0,70,0,70,0,70,0,70,0,70,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,71,0,71,72,71,0,71,0,71,0,71,72,71,0,71,0,71,0,71,0,71,72,71,0,71,0,71,0,71,72,71,0,72,71,72,0,72,71,72,0,72,71,72,71,72,71,72,71,72,71,72,71,72,71,72,71,72,0,72,71,72,0,72,71,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,70,0,70,0,70,0,70,0,70,69,70,69,70,69,70,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,72,56,72,56,0,56,72,56,72,56,0,56,72,56,72,56,0,56,72,56,72,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,72,56,72,56,0,56,72,56,72,56,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,56,73,56,73,70,71,70,71,71,70,71,70,70,69,70,69,70,69,70,69,69,0,69,0,69,0,69,0,69,0,69,0,56,73,56,73,73,56,72,71,72,71,70,71,70,69,69,0,56,73,56,73,73,56,72,71,72,71,71,70,70,69,69,0,69,0,69,0,69,0,69,0,69,0,69,0,56,73,56,73,56,73,56,73,56,73,56,73,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,54,0,54,0,54,0,54,0,54,0,54,0,51,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,51,0,51,0,52,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,66,0,66,0,66,0,66,0,67,0,67,0,67,0,67,0,67,0,67,0,68,0,68,0,68,0,68,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,60,78,60,78,78,60,77,76,78,60,60,78,60,78,60,78,60,78,60,78,60,78,78,60,78,60,77,76,78,77,78,77,77,76,77,76,76,77,76,77,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,75,0,75,0,75,0,75,0,75,0,75,0,75,0,75,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,76,0,76,77,76,0,76,0,76,0,76,77,76,0,76,0,76,0,76,0,76,77,76,0,76,0,76,0,76,77,76,0,77,76,77,0,77,76,77,0,77,76,77,76,77,76,77,76,77,76,77,76,77,76,77,76,77,0,77,76,77,0,77,76,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,75,0,75,0,75,0,75,0,75,74,75,74,75,74,75,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,77,60,77,60,0,60,77,60,77,60,0,60,77,60,77,60,0,60,77,60,77,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,77,60,77,60,0,60,77,60,77,60,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,60,78,60,78,75,76,75,76,76,75,76,75,75,74,75,74,75,74,75,74,74,0,74,0,74,0,74,0,74,0,74,0,60,78,60,78,78,60,77,76,77,76,75,76,75,74,74,0,60,78,60,78,78,60,77,76,77,76,76,75,75,74,74,0,74,0,74,0,74,0,74,0,74,0,74,0,60,78,60,78,60,78,60,78,60,78,60,78,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,58,0,58,0,58,0,58,0,58,0,58,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,62,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,61,0,61,0,61,0,61,0,61,0,61,0,61,0,62,0,62,0,62,0,62,0,63,0,63,0,63,0,63,0,63,0,63,0,64,0,64,0,64,0,64,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,54,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,56,73,56,73,73,56,72,71,73,56,56,73,56,73,56,73,56,73,56,73,56,73,73,56,73,56,72,71,73,72,73,72,72,71,72,71,71,72,71,72,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,70,0,70,0,70,0,70,0,70,0,70,0,70,0,70,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,71,0,71,72,71,0,71,0,71,0,71,72,71,0,71,0,71,0,71,0,71,72,71,0,71,0,71,0,71,72,71,0,72,71,72,0,72,71,72,0,72,71,72,71,72,71,72,71,72,71,72,71,72,71,72,71,72,0,72,71,72,0,72,71,69,0,69,0,69,0,69,0,69,0,69,0,69,0,69,0,70,0,70,0,70,0,70,0,70,69,70,69,70,69,70,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,72,56,72,56,0,56,72,56,72,56,0,56,72,56,72,56,0,56,72,56,72,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,56,72,56,72,56,0,56,72,56,72,56,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,56,73,56,73,70,71,70,71,71,70,71,70,70,69,70,69,70,69,70,69,69,0,69,0,69,0,69,0,69,0,69,0,56,73,56,73,73,56,72,71,72,71,70,71,70,69,69,0,56,73,56,73,73,56,72,71,72,71,71,70,70,69,69,0,69,0,69,0,69,0,69,0,69,0,69,0,56,73,56,73,56,73,56,73,56,73,56,73,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,55,0,54,0,54,0,54,0,54,0,54,0,54,0,51,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,51,0,51,0,52,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,66,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,67,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,68,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,66,0,66,0,66,0,66,0,67,0,67,0,67,0,67,0,67,0,67,0,68,0,68,0,68,0,68,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,58,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,60,78,60,78,78,60,77,76,78,60,60,78,60,78,60,78,60,78,60,78,60,78,78,60,78,60,77,76,78,77,78,77,77,76,77,76,76,77,76,77,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,75,0,75,0,75,0,75,0,75,0,75,0,75,0,75,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,76,0,76,77,76,0,76,0,76,0,76,77,76,0,76,0,76,0,76,0,76,77,76,0,76,0,76,0,76,77,76,0,77,76,77,0,77,76,77,0,77,76,77,76,77,76,77,76,77,76,77,76,77,76,77,76,77,0,77,76,77,0,77,76,74,0,74,0,74,0,74,0,74,0,74,0,74,0,74,0,75,0,75,0,75,0,75,0,75,74,75,74,75,74,75,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,77,60,77,60,0,60,77,60,77,60,0,60,77,60,77,60,0,60,77,60,77,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,0,60,77,60,77,60,0,60,77,60,77,60,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,60,78,60,78,75,76,75,76,76,75,76,75,75,74,75,74,75,74,75,74,74,0,74,0,74,0,74,0,74,0,74,0,60,78,60,78,78,60,77,76,77,76,75,76,75,74,74,0,60,78,60,78,78,60,77,76,77,76,76,75,75,74,74,0,74,0,74,0,74,0,74,0,74,0,74,0,60,78,60,78,60,78,60,78,60,78,60,78,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,58,0,58,0,58,0,58,0,58,0,58,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,52,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,2,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,25,0,25,0,25,0,25,0,25,0,25,0,25,0,25,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,13,0,13,0,13,0,13,0,13,0,13,0,13,0,13,0,12,0,12,0,12,0,12,0,12,0,12,0,12,0,12,0,15,0,15,0,15,0,15,0,15,0,15,0,15,0,15,0,16,0,16,0,16,0,16,0,16,0,16,0,16,0,16,0,17,0,17,0,17,0,17,0,17,0,17,0,17,0,17,0,18,0,18,0,18,0,18,0,18,0,18,0,18,0,18,0,19,0,19,0,19,0,19,0,19,0,19,0,19,0,19,0,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,0,23,0,23,0,23,0,23,0,23,0,23,0,23,0,23,0,22,0,22,0,22,0,22,0,22,0,22,0,22,0,22,0,21,0,21,0,21,0,21,0,21,0,21,0,21,0,21,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,47,0,47,0,47,0,47,0,47,0,47,0,47,0,47,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,49,0,49,0,49,0,49,0,49,0,49,0,49,0,49,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,35,0,35,0,35,0,35,0,35,0,35,0,35,0,35,0,38,0,38,0,38,0,38,0,38,0,38,0,38,0,38,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,41,0,41,0,41,0,41,0,41,0,41,0,41,0,41,0,42,0,42,0,42,0,42,0,42,0,42,0,42,0,42,0,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,0,46,0,46,0,46,0,46,0,46,0,46,0,46,0,46,0,45,0,45,0,45,0,45,0,45,0,45,0,45,0,45,0,44,0,44,0,44,0,44,0,44,0,44,0,44,0,44,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,24,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,8,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,9,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,26,0,25,0,25,0,25,0,25,0,25,0,25,0,25,0,25,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,13,0,13,0,13,0,13,0,13,0,13,0,13,0,13,0,12,0,12,0,12,0,12,0,12,0,12,0,12,0,12,0,15,0,15,0,15,0,15,0,15,0,15,0,15,0,15,0,16,0,16,0,16,0,16,0,16,0,16,0,16,0,16,0,17,0,17,0,17,0,17,0,17,0,17,0,17,0,17,0,18,0,18,0,18,0,18,0,18,0,18,0,18,0,18,0,19,0,19,0,19,0,19,0,19,0,19,0,19,0,19,0,20,0,20,0,20,0,20,0,20,0,20,0,20,0,20,0,23,0,23,0,23,0,23,0,23,0,23,0,23,0,23,0,22,0,22,0,22,0,22,0,22,0,22,0,22,0,22,0,21,0,21,0,21,0,21,0,21,0,21,0,21,0,21,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,47,0,47,0,47,0,47,0,47,0,47,0,47,0,47,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,50,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,31,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,33,0,49,0,49,0,49,0,49,0,49,0,49,0,49,0,49,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,36,0,35,0,35,0,35,0,35,0,35,0,35,0,35,0,35,0,38,0,38,0,38,0,38,0,38,0,38,0,38,0,38,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,40,0,41,0,41,0,41,0,41,0,41,0,41,0,41,0,41,0,42,0,42,0,42,0,42,0,42,0,42,0,42,0,42,0,43,0,43,0,43,0,43,0,43,0,43,0,43,0,43,0,46,0,46,0,46,0,46,0,46,0,46,0,46,0,46,0,45,0,45,0,45,0,45,0,45,0,45,0,45,0,45,0,44,0,44,0,44,0,44,0,44,0,44,0,44,0,44,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0,79,0], - - "skinWeights" : [0.93557,0.0644304,0.891379,0.108621,0.864568,0.135432,0.748172,0.251828,0.697295,0.302705,0.730975,0.269025,0.938691,0.0613092,0.855392,0.144608,0.853529,0.146471,0.897949,0.102051,0.945125,0.0548752,0.956136,0.0438639,0.916575,0.0834247,0.805054,0.194946,0.931381,0.0686186,0.822862,0.177138,0.865831,0.134169,0.839475,0.160525,0.774556,0.225444,0.860166,0.139834,0.726356,0.273644,1,0,0.943176,0.0568237,0.941776,0.0582239,0.865335,0.134665,0.980625,0.0193753,0.998296,0.00170429,0.95562,0.0443799,0.878609,0.121391,0.729099,0.270901,0.755293,0.244707,0.803254,0.196746,0.893084,0.106916,0.858177,0.141823,0.638666,0.361334,0.645707,0.354293,0.678659,0.321341,0.688494,0.311506,0.629447,0.370553,0.568235,0.431765,0.643964,0.356036,1,0,0.951197,0.0488026,0.911102,0.0888977,0.866016,0.133984,0.83252,0.16748,0.829007,0.170993,0.947896,0.0521036,0.873502,0.126498,0.903728,0.0962717,0.500412,0.499588,0.615968,0.384032,0.750095,0.249905,0.704367,0.295633,0.683818,0.316182,0.848823,0.151177,0.714142,0.285858,0.844647,0.155353,0.912478,0.0875216,0.840104,0.159896,0.844376,0.155624,0.804833,0.195167,0.839839,0.160161,0.905702,0.0942981,0.967789,0.0322111,0.515104,0.484896,0.554339,0.445661,0.518321,0.481679,0.570815,0.429185,0.577137,0.422863,0.556914,0.443086,0.977508,0.0224915,1,0,0.934265,0.0657346,0.912546,0.0874535,0.939744,0.0602558,0.967702,0.0322978,1,0,1,0,0.786562,0.213438,0.802584,0.197416,0.742743,0.257257,0.664615,0.335385,0.620838,0.379162,0.699348,0.300652,0.668207,0.331793,0.572331,0.427669,0.604439,0.395561,0.593769,0.406231,0.59519,0.40481,0.520615,0.479385,0.572744,0.427256,0.694858,0.305142,0.727681,0.272319,0.70614,0.29386,0.581178,0.418822,1,0,0.562612,0.437388,0.587838,0.412162,1,0,0.968911,0.0310892,0.521687,0.478313,0.797873,0.202127,0.769172,0.230828,0.716337,0.283663,0.964789,0.0352107,0.931156,0.0688444,0.859181,0.140819,0.87939,0.12061,0.859317,0.140683,0.831945,0.168055,0.50804,0.49196,0.675408,0.324592,0.808917,0.191083,0.645789,0.354211,0.568199,0.431801,0.8304,0.1696,0.844042,0.155958,0.721379,0.278621,0.794756,0.205244,0.580492,0.419508,0.808302,0.191698,0.659756,0.340244,0.705253,0.294747,0.572758,0.427242,0.747661,0.252339,0.509639,0.490361,0.679556,0.320444,0.585691,0.414309,0.626291,0.373709,0.594277,0.405723,0.551376,0.448624,0.841191,0.158809,0.845489,0.154511,0.685105,0.314895,0.676139,0.323861,0.77854,0.22146,0.730411,0.269589,0.659651,0.340349,0.579238,0.420762,0.601379,0.398621,0.571218,0.428782,0.567347,0.432653,0.565825,0.434175,0.62176,0.37824,0.57961,0.42039,0.755151,0.244849,0.713843,0.286157,0.552815,0.447185,0.846225,0.153775,0.834759,0.165241,0.820698,0.179302,0.502894,0.497106,0.736987,0.263013,0.667651,0.332349,0.887694,0.112306,0.610998,0.389002,0.545343,0.454657,0.820915,0.179085,0.528161,0.471839,0.876619,0.123381,0.727181,0.272819,0.897512,0.102488,0.847685,0.152315,0.739207,0.260793,0.771763,0.228237,0.855779,0.144221,0.559437,0.440563,0.839673,0.160327,0.528614,0.471386,0.890779,0.109221,0.692881,0.307119,0.868605,0.131395,0.802459,0.197541,0.509927,0.490073,0.649197,0.350803,0.735088,0.264912,0.760186,0.239814,0.839765,0.160235,0.705672,0.294328,0.583002,0.416998,0.528049,0.471951,0.505626,0.494374,0.81794,0.18206,0.660074,0.339926,0.645149,0.354851,0.583197,0.416803,0.532764,0.467236,0.701834,0.298166,0.635658,0.364342,0.845609,0.154391,0.743044,0.256956,0.642115,0.357885,0.63704,0.36296,0.646217,0.353783,0.651272,0.348728,0.63685,0.36315,0.844187,0.155813,0.89432,0.10568,0.800386,0.199614,0.808988,0.191012,0.724217,0.275783,0.660157,0.339843,0.709944,0.290056,0.828607,0.171393,0.587765,0.412235,0.671422,0.328578,0.792747,0.207253,0.551101,0.448899,0.76987,0.23013,0.620497,0.379503,0.773102,0.226898,0.789355,0.210645,0.791417,0.208583,0.712179,0.287821,0.762541,0.237459,0.611506,0.388494,0.611434,0.388566,0.629963,0.370037,0.668129,0.331871,0.564456,0.435544,0.667939,0.332061,0.692981,0.307019,0.680113,0.319887,0.593382,0.406618,0.722706,0.277294,0.808064,0.191936,0.534385,0.465615,0.803639,0.196361,0.601955,0.398045,0.515744,0.484256,0.929437,0.0705631,0.857584,0.142416,0.912961,0.0870385,0.922698,0.0773019,0.572901,0.427099,0.814639,0.185361,0.881498,0.118502,0.716111,0.283889,0.924208,0.0757921,0.968393,0.0316065,0.886181,0.113819,0.860542,0.139458,0.831398,0.168602,0.690094,0.309906,0.554666,0.445334,0.730148,0.269852,0.91083,0.0891696,0.991382,0.00861808,0.556801,0.443199,1,0,0.842251,0.157749,0.841188,0.158812,0.8281,0.1719,0.508034,0.491966,0.790438,0.209562,0.995346,0.00465351,0.944972,0.0550278,0.724585,0.275415,0.774064,0.225936,0.828872,0.171128,0.741397,0.258603,0.682773,0.317227,0.684276,0.315724,0.675568,0.324432,0.581976,0.418024,0.883815,0.116185,0.588046,0.411954,0.892048,0.107952,0.513092,0.486908,0.823039,0.176961,0.674103,0.325897,0.810293,0.189707,0.626968,0.373032,0.501485,0.498515,0.611745,0.388255,0.877272,0.122728,0.775396,0.224604,0.623946,0.376054,0.712788,0.287212,0.645504,0.354496,0.847721,0.152279,0.738337,0.261663,0.588827,0.411173,0.80486,0.19514,0.527632,0.472368,0.850346,0.149654,0.730692,0.269308,0.747932,0.252068,0.707267,0.292733,0.702312,0.297688,0.715713,0.284287,0.78067,0.21933,0.544874,0.455126,0.678766,0.321234,0.623143,0.376857,0.772676,0.227324,0.824161,0.175839,0.878498,0.121502,0.848451,0.151549,0.987099,0.0129012,0.920306,0.0796942,0.899308,0.100692,0.66601,0.33399,0.72247,0.27753,0.82973,0.17027,0.879043,0.120957,0.799001,0.200999,0.697513,0.302487,0.651092,0.348908,0.619006,0.380994,0.564326,0.435674,0.674513,0.325487,0.695428,0.304572,0.677974,0.322026,0.670372,0.329628,0.67686,0.32314,0.618716,0.381284,0.539832,0.460168,0.55185,0.44815,0.531836,0.468164,0.707125,0.292875,0.675892,0.324108,0.598796,0.401204,0.566015,0.433985,0.632218,0.367782,0.646979,0.353021,0.867487,0.132513,0.900847,0.0991527,0.650244,0.349756,0.582449,0.417551,0.749742,0.250258,0.561978,0.438022,0.582685,0.417315,0.554958,0.445042,0.517984,0.482016,0.586753,0.413247,0.785273,0.214727,0.850516,0.149484,0.687399,0.312601,0.513513,0.486487,0.702218,0.297782,0.553882,0.446118,0.765665,0.234335,0.646251,0.353749,0.674681,0.325319,0.683229,0.316771,0.744919,0.255081,0.502032,0.497968,0.729942,0.270058,0.543523,0.456477,0.837059,0.162941,0.809447,0.190553,0.847358,0.152642,0.911346,0.0886536,0.932788,0.0672121,0.904063,0.0959366,0.729425,0.270575,0.667137,0.332863,0.615677,0.384323,0.619528,0.380472,0.527457,0.472543,0.506592,0.493408,0.659984,0.340016,0.724495,0.275505,0.715422,0.284578,0.635457,0.364543,0.718102,0.281898,0.639251,0.360749,0.609733,0.390267,0.559321,0.440679,0.652085,0.347915,0.629217,0.370783,0.510527,0.489473,0.510876,0.489124,0.514727,0.485273,0.519876,0.480124,0.546291,0.453709,0.521449,0.478551,0.508585,0.491415,0.501528,0.498472,0.57133,0.42867,0.604034,0.395966,0.637691,0.362309,0.593328,0.406672,0.560392,0.439608,0.638155,0.361845,0.508589,0.491411,0.772186,0.227814,0.526446,0.473554,0.833571,0.166429,0.656291,0.343709,0.716983,0.283017,0.724988,0.275012,0.775034,0.224966,0.674143,0.325857,0.65075,0.34925,0.928433,0.0715667,0.66698,0.33302,0.565723,0.434277,0.722661,0.277339,0.661781,0.338219,0.817114,0.182886,0.783398,0.216602,0.987944,0.0120559,0.748267,0.251733,0.740997,0.259003,0.706323,0.293677,0.696651,0.303349,0.673746,0.326254,0.666488,0.333512,0.633967,0.366033,0.669667,0.330333,0.661954,0.338046,0.741881,0.258119,0.691854,0.308146,0.739384,0.260616,0.732779,0.267221,0.791962,0.208038,0.903181,0.0968187,0.861142,0.138858,0.85198,0.14802,0.856415,0.143585,0.865326,0.134674,0.889168,0.110832,0.905453,0.0945467,0.930977,0.0690231,0.739578,0.260422,0.75099,0.24901,0.76766,0.23234,0.787542,0.212458,0.767035,0.232965,0.724915,0.275085,0.741923,0.258077,0.757231,0.242769,0.917913,0.0820871,0.957862,0.0421375,0.866986,0.133014,0.852944,0.147056,0.860092,0.139908,0.891329,0.108671,0.923147,0.0768525,0.955508,0.044492,0.78879,0.21121,0.732868,0.267132,0.753776,0.246224,0.766415,0.233585,0.762722,0.237278,0.760481,0.239519,0.881558,0.118442,0.822855,0.177145,0.929548,0.0704523,0.953956,0.0460443,0.898747,0.101253,0.865965,0.134035,0.850282,0.149718,0.863282,0.136718,0.895096,0.104904,0.927687,0.072313,0.52002,0.47998,0.557036,0.442964,0.526081,0.473919,0.529324,0.470676,0.562845,0.437155,0.551883,0.448117,0.627858,0.372142,0.51252,0.48748,0.540571,0.459429,0.665137,0.334863,0.589223,0.410777,0.562373,0.437627,0.964119,0.0358808,0.970436,0.0295636,0.944041,0.0559592,0.936504,0.0634956,0.927358,0.0726418,0.923222,0.0767776,0.938103,0.0618969,0.969868,0.0301324,0.818886,0.181114,0.952163,0.0478374,0.657186,0.342814,0.826011,0.173989,0.871899,0.128101,0.876192,0.123808,0.999563,0.00043733,1,0,0.857774,0.142226,0.835281,0.164719,0.842246,0.157754,0.70804,0.29196,0.701235,0.298765,0.613685,0.386315,0.700381,0.299619,0.650801,0.349199,0.669838,0.330162,0.518769,0.481231,0.641438,0.358562,0.55727,0.44273,0.579914,0.420086,0.778039,0.221961,0.775555,0.224445,0.7791,0.2209,0.633315,0.366685,0.899491,0.100509,0.892509,0.107491,0.871914,0.128086,0.80187,0.19813,0.772942,0.227058,0.646509,0.353491,0.669972,0.330028,0.636613,0.363387,0.715735,0.284265,0.789948,0.210052,0.810075,0.189925,0.740606,0.259394,0.732133,0.267867,0.848418,0.151582,0.863732,0.136268,0.862325,0.137675,0.806081,0.193919,0.584646,0.415354,0.717461,0.282539,0.675225,0.324775,0.756075,0.243925,0.531511,0.468489,0.640889,0.359111,0.513935,0.486065,0.657788,0.342212,0.50639,0.49361,0.612391,0.387609,0.736513,0.263487,0.679117,0.320883,0.679782,0.320218,0.503218,0.496782,0.813247,0.186753,0.745902,0.254098,0.80407,0.19593,0.613509,0.386491,0.739693,0.260307,0.745466,0.254534,0.737457,0.262543,0.543928,0.456072,0.52207,0.47793,0.622469,0.377531,0.519689,0.480311,0.647804,0.352196,0.592071,0.407929,0.637089,0.362911,0.58473,0.41527,0.673336,0.326664,0.700206,0.299794,0.799277,0.200723,0.810307,0.189693,0.815991,0.184009,0.985294,0.014706,0.918262,0.0817381,0.963648,0.0363517,0.956606,0.0433938,0.973921,0.0260786,0.996091,0.00390941,1,0,1,0,1,0,0.998192,0.00180777,0.970982,0.0290182,0.95867,0.0413304,0.964532,0.0354683,0.984161,0.0158393,1,0,0.997583,0.00241689,0.561901,0.438099,0.550277,0.449723,0.559162,0.440838,0.654059,0.345941,0.636422,0.363578,0.644289,0.355711,0.553713,0.446287,0.563221,0.436779,0.55337,0.44663,0.530757,0.469243,0.550098,0.449902,0.529075,0.470925,0.921386,0.0786144,0.906608,0.0933918,0.88175,0.11825,0.873032,0.126968,0.876231,0.123769,0.895702,0.104298,0.928505,0.0714955,0.905887,0.0941129,0.759579,0.240421,0.809551,0.190449,0.744459,0.255541,0.7759,0.2241,0.791392,0.208608,0.783371,0.216629,0.743841,0.256159,0.756412,0.243588,0.886386,0.113614,0.825418,0.174582,0.818143,0.181857,0.809079,0.190921,0.816574,0.183426,0.845481,0.154519,0.921158,0.0788421,0.909351,0.0906488,0.884988,0.115012,0.878209,0.121791,0.845968,0.154032,0.83377,0.16623,0.83929,0.16071,0.85634,0.14366,0.888882,0.111118,0.823432,0.176568,0.888532,0.111468,0.896219,0.103781,0.8741,0.1259,0.877489,0.122511,0.882439,0.117561,0.880012,0.119988,0.874124,0.125876,0.888574,0.111426,0.524305,0.475695,0.736554,0.263446,0.659324,0.340676,0.704483,0.295517,0.547097,0.452903,0.672448,0.327552,0.554177,0.445823,0.661059,0.338941,0.538577,0.461423,0.675558,0.324442,0.610634,0.389366,0.694183,0.305817,0.67375,0.32625,0.719761,0.280239,0.71963,0.28037,0.870106,0.129894,0.954489,0.0455109,0.984971,0.0150295,1,0,1,0,0.947541,0.0524587,1,0,0.790727,0.209273,0.618288,0.381712,0.740249,0.259751,0.854782,0.145218,0.803153,0.196847,0.804965,0.195035,0.92316,0.0768405,0.782015,0.217985,0.750087,0.249913,0.762967,0.237033,0.703815,0.296185,0.803005,0.196995,0.665353,0.334647,0.8203,0.1797,0.63779,0.36221,0.817962,0.182038,0.615816,0.384184,0.781184,0.218816,0.530855,0.469145,0.80845,0.19155,0.71562,0.28438,0.892891,0.107109,0.873995,0.126005,0.858917,0.141083,0.850949,0.149051,0.843184,0.156816,0.850714,0.149286,0.874267,0.125733,0.757846,0.242154,0.844903,0.155097,0.778425,0.221575,0.803994,0.196006,0.822922,0.177078,0.847411,0.152589,0.852966,0.147034,0.843677,0.156323,0.922824,0.0771764,0.944661,0.0553393,0.898499,0.101501,0.859093,0.140907,0.849932,0.150068,0.857738,0.142262,0.889634,0.110366,0.936608,0.0633917,0.719989,0.280011,0.729548,0.270452,0.712987,0.287013,0.70517,0.29483,0.691949,0.308051,0.697987,0.302013,0.740754,0.259246,0.695046,0.304954,0.944701,0.0552992,0.990932,0.00906812,0.928399,0.0716008,0.928131,0.0718688,0.933742,0.0662583,0.936667,0.0633334,0.942721,0.0572786,0.971359,0.0286412,0.694626,0.305374,0.701466,0.298534,0.684376,0.315624,0.761556,0.238444,0.744955,0.255045,0.756697,0.243303,0.600619,0.399381,0.575457,0.424543,0.547067,0.452933,0.502644,0.497356,0.542338,0.457662,0.553684,0.446316,0.97485,0.0251503,0.999257,0.000742632,0.958148,0.0418517,0.952834,0.0471663,0.958464,0.0415363,0.97836,0.0216403,0.996785,0.00321466,1,0,0.970957,0.0290434,1,0,0.906003,0.0939971,0.937891,0.0621088,0.97029,0.0297101,0.970223,0.0297768,0.97571,0.0242895,1,0,0.921269,0.0787308,0.909211,0.0907888,0.893774,0.106226,0.822254,0.177746,0.798508,0.201492,0.685164,0.314836,0.669388,0.330612,0.658513,0.341487,0.826581,0.173419,0.755188,0.244812,0.80631,0.19369,0.733017,0.266983,0.753292,0.246708,0.869155,0.130845,0.881569,0.118431,0.88641,0.11359,0.82744,0.17256,0.85801,0.14199,0.83693,0.16307,0.856921,0.143079,0.699256,0.300744,0.761977,0.238023,0.601778,0.398222,0.629722,0.370278,0.579886,0.420114,0.631938,0.368062,0.743908,0.256092,0.667396,0.332604,0.501012,0.498988,0.530887,0.469113,0.816885,0.183115,0.781027,0.218973,0.792478,0.207522,0.681909,0.318091,0.526499,0.473501,0.690519,0.309481,0.606806,0.393194,0.677145,0.322855,0.730668,0.269332,0.76919,0.23081,0.632789,0.367211,0.51465,0.48535,0.70031,0.29969,0.786063,0.213937,0.839827,0.160173,0.836762,0.163238,0.55332,0.44668,0.685652,0.314348,0.74672,0.25328,0.692002,0.307998,0.806278,0.193722,0.631608,0.368392,0.792574,0.207426,0.782181,0.217819,0.784056,0.215944,0.609497,0.390503,0.570823,0.429177,0.641276,0.358724,0.537324,0.462676,0.656202,0.343798,0.655609,0.344391,0.732612,0.267388,0.648401,0.351599,0.697836,0.302164,0.708252,0.291748,0.846806,0.153194,0.846049,0.153951,0.874054,0.125946,1,0,0.945373,0.0546273,0.960491,0.0395086,0.959335,0.0406651,0.956784,0.0432161,0.947516,0.0524843,1,0,1,0,1,0,1,0,0.97387,0.0261304,0.960833,0.0391674,0.97145,0.0285496,1,0,1,0,1,0,0.545241,0.454759,0.550596,0.449404,0.571216,0.428784,0.650653,0.349347,0.633444,0.366556,0.656693,0.343307,0.524572,0.475428,0.550029,0.449971,0.50818,0.49182,0.535125,0.464875,0.589174,0.410826,0.539121,0.460879,0.937565,0.0624353,0.897965,0.102035,0.860802,0.139198,0.846149,0.153851,0.867322,0.132678,0.903586,0.0964138,0.982604,0.0173958,0.936724,0.063276,0.821082,0.178918,0.905182,0.0948179,0.761327,0.238673,0.770605,0.229395,0.786436,0.213564,0.773172,0.226828,0.749789,0.250211,0.813218,0.186782,0.870967,0.129033,0.819518,0.180482,0.805831,0.194169,0.810467,0.189533,0.813624,0.186376,0.812375,0.187625,0.943556,0.0564444,0.887506,0.112494,0.936664,0.0633364,0.902023,0.0979767,0.852053,0.147947,0.836011,0.163989,0.847339,0.152661,0.891561,0.108439,0.969559,0.0304411,0.926243,0.0737572,0.937733,0.0622671,0.891713,0.108287,0.871791,0.128209,0.868712,0.131288,0.868054,0.131946,0.880151,0.119849,0.929329,0.0706711,0.731371,0.268629,0.734229,0.265771,0.712122,0.287878,0.68623,0.31377,0.524631,0.475369,0.645584,0.354416,0.55122,0.44878,0.605155,0.394845,0.532508,0.467492,0.664546,0.335454,0.683859,0.316141,0.701507,0.298493,0.702779,0.297221,0.740602,0.259398,0.823105,0.176895,0.807385,0.192615,0.839908,0.160092,0.754441,0.245559,0.705593,0.294407,0.887765,0.112235,0.996351,0.00364925,0.629084,0.370916,0.805869,0.194131,0.798986,0.201014,0.799391,0.200609,0.836796,0.163204,0.511869,0.488131,0.809431,0.190569,0.524532,0.475468,0.547277,0.452723,0.884704,0.115296,0.759959,0.240041,0.629737,0.370263,0.547493,0.452507,0.840384,0.159616,0.940934,0.0590665,0.860403,0.139597,0.891979,0.108021,0.900654,0.0993459,0.843961,0.156039,0.901054,0.0989463,0.917198,0.082802,0.937896,0.062104,0.925808,0.0741922,0.929106,0.0708943,0.893902,0.106098,0.75001,0.24999,0.973549,0.0264514,0.893162,0.106838,0.93557,0.0644304,0.891379,0.108621,0.864568,0.135432,0.748172,0.251828,0.697295,0.302705,0.730975,0.269025,0.938691,0.0613092,0.855392,0.144608,0.853529,0.146471,0.897949,0.102051,0.945125,0.0548752,0.956136,0.0438639,0.916575,0.0834247,0.805054,0.194946,0.931381,0.0686186,0.822862,0.177138,0.865831,0.134169,0.839475,0.160525,0.774556,0.225444,0.860166,0.139834,0.726356,0.273644,1,0,0.943176,0.0568237,0.941776,0.0582239,0.865335,0.134665,0.980625,0.0193753,0.998296,0.00170429,0.95562,0.0443799,0.878609,0.121391,0.729099,0.270901,0.755293,0.244707,0.803254,0.196746,0.893084,0.106916,0.858177,0.141823,0.638666,0.361334,0.645707,0.354293,0.678659,0.321341,0.688494,0.311506,0.629447,0.370553,0.568235,0.431765,0.643964,0.356036,1,0,0.951197,0.0488026,0.911102,0.0888977,0.866016,0.133984,0.83252,0.16748,0.829007,0.170993,0.947896,0.0521036,0.873502,0.126498,0.903728,0.0962717,0.500412,0.499588,0.615968,0.384032,0.750095,0.249905,0.704367,0.295633,0.683818,0.316182,0.848823,0.151177,0.714142,0.285858,0.844647,0.155353,0.912478,0.0875216,0.840104,0.159896,0.844376,0.155624,0.804833,0.195167,0.839839,0.160161,0.905702,0.0942981,0.967789,0.0322111,0.515104,0.484896,0.554339,0.445661,0.518321,0.481679,0.570815,0.429185,0.577137,0.422863,0.556914,0.443086,0.977508,0.0224915,1,0,0.934265,0.0657346,0.912546,0.0874535,0.939744,0.0602558,0.967702,0.0322978,1,0,1,0,0.786562,0.213438,0.802584,0.197416,0.742743,0.257257,0.664615,0.335385,0.620838,0.379162,0.699348,0.300652,0.668207,0.331793,0.572331,0.427669,0.604439,0.395561,0.593769,0.406231,0.59519,0.40481,0.520615,0.479385,0.572744,0.427256,0.694858,0.305142,0.727681,0.272319,0.70614,0.29386,0.581178,0.418822,1,0,0.562612,0.437388,0.587838,0.412162,1,0,0.968911,0.0310892,0.521687,0.478313,0.797873,0.202127,0.769172,0.230828,0.716337,0.283663,0.964789,0.0352107,0.931156,0.0688444,0.859181,0.140819,0.87939,0.12061,0.859317,0.140683,0.831945,0.168055,0.50804,0.49196,0.675408,0.324592,0.808917,0.191083,0.645789,0.354211,0.568199,0.431801,0.8304,0.1696,0.844042,0.155958,0.721379,0.278621,0.794756,0.205244,0.580492,0.419508,0.808302,0.191698,0.659756,0.340244,0.705253,0.294747,0.572758,0.427242,0.747661,0.252339,0.509639,0.490361,0.679556,0.320444,0.585691,0.414309,0.626291,0.373709,0.594277,0.405723,0.551376,0.448624,0.841191,0.158809,0.845489,0.154511,0.685105,0.314895,0.676139,0.323861,0.77854,0.22146,0.730411,0.269589,0.659651,0.340349,0.579238,0.420762,0.601379,0.398621,0.571218,0.428782,0.567347,0.432653,0.565825,0.434175,0.62176,0.37824,0.57961,0.42039,0.755151,0.244849,0.713843,0.286157,0.552815,0.447185,0.846225,0.153775,0.834759,0.165241,0.820698,0.179302,0.502894,0.497106,0.736987,0.263013,0.667651,0.332349,0.887694,0.112306,0.610998,0.389002,0.545343,0.454657,0.820915,0.179085,0.528161,0.471839,0.876619,0.123381,0.727181,0.272819,0.897512,0.102488,0.847685,0.152315,0.739207,0.260793,0.771763,0.228237,0.855779,0.144221,0.559437,0.440563,0.839673,0.160327,0.528614,0.471386,0.890779,0.109221,0.692881,0.307119,0.868605,0.131395,0.802459,0.197541,0.509927,0.490073,0.649197,0.350803,0.735088,0.264912,0.760186,0.239814,0.839765,0.160235,0.705672,0.294328,0.583002,0.416998,0.528049,0.471951,0.505626,0.494374,0.81794,0.18206,0.660074,0.339926,0.645149,0.354851,0.583197,0.416803,0.532764,0.467236,0.701834,0.298166,0.635658,0.364342,0.845609,0.154391,0.743044,0.256956,0.642115,0.357885,0.63704,0.36296,0.646217,0.353783,0.651272,0.348728,0.63685,0.36315,0.844187,0.155813,0.89432,0.10568,0.800386,0.199614,0.808988,0.191012,0.724217,0.275783,0.660157,0.339843,0.709944,0.290056,0.828607,0.171393,0.587765,0.412235,0.671422,0.328578,0.792747,0.207253,0.551101,0.448899,0.76987,0.23013,0.620497,0.379503,0.773102,0.226898,0.789355,0.210645,0.791417,0.208583,0.712179,0.287821,0.762541,0.237459,0.611506,0.388494,0.611434,0.388566,0.629963,0.370037,0.668129,0.331871,0.564456,0.435544,0.667939,0.332061,0.692981,0.307019,0.680113,0.319887,0.593382,0.406618,0.722706,0.277294,0.808064,0.191936,0.534385,0.465615,0.803639,0.196361,0.601955,0.398045,0.515744,0.484256,0.929437,0.0705631,0.857584,0.142416,0.912961,0.0870385,0.922698,0.0773019,0.572901,0.427099,0.814639,0.185361,0.881498,0.118502,0.716111,0.283889,0.924208,0.0757921,0.968393,0.0316065,0.886181,0.113819,0.860542,0.139458,0.831398,0.168602,0.690094,0.309906,0.554666,0.445334,0.730148,0.269852,0.91083,0.0891696,0.991382,0.00861808,0.556801,0.443199,1,0,0.842251,0.157749,0.841188,0.158812,0.8281,0.1719,0.508034,0.491966,0.790438,0.209562,0.995346,0.00465351,0.944972,0.0550278,0.724585,0.275415,0.774064,0.225936,0.828872,0.171128,0.741397,0.258603,0.682773,0.317227,0.684276,0.315724,0.675568,0.324432,0.581976,0.418024,0.883815,0.116185,0.588046,0.411954,0.892048,0.107952,0.513092,0.486908,0.823039,0.176961,0.674103,0.325897,0.810293,0.189707,0.626968,0.373032,0.501485,0.498515,0.611745,0.388255,0.877272,0.122728,0.775396,0.224604,0.623946,0.376054,0.712788,0.287212,0.645504,0.354496,0.847721,0.152279,0.738337,0.261663,0.588827,0.411173,0.80486,0.19514,0.527632,0.472368,0.850346,0.149654,0.730692,0.269308,0.747932,0.252068,0.707267,0.292733,0.702312,0.297688,0.715713,0.284287,0.78067,0.21933,0.544874,0.455126,0.678766,0.321234,0.623143,0.376857,0.772676,0.227324,0.824161,0.175839,0.878498,0.121502,0.848451,0.151549,0.987099,0.0129012,0.920306,0.0796942,0.899308,0.100692,0.66601,0.33399,0.72247,0.27753,0.82973,0.17027,0.879043,0.120957,0.799001,0.200999,0.697513,0.302487,0.651092,0.348908,0.619006,0.380994,0.564326,0.435674,0.674513,0.325487,0.695428,0.304572,0.677974,0.322026,0.670372,0.329628,0.67686,0.32314,0.618716,0.381284,0.539832,0.460168,0.55185,0.44815,0.531836,0.468164,0.707125,0.292875,0.675892,0.324108,0.598796,0.401204,0.566015,0.433985,0.632218,0.367782,0.646979,0.353021,0.867487,0.132513,0.900847,0.0991527,0.650244,0.349756,0.582449,0.417551,0.749742,0.250258,0.561978,0.438022,0.582685,0.417315,0.554958,0.445042,0.517984,0.482016,0.586753,0.413247,0.785273,0.214727,0.850516,0.149484,0.687399,0.312601,0.513513,0.486487,0.702218,0.297782,0.553882,0.446118,0.765665,0.234335,0.646251,0.353749,0.674681,0.325319,0.683229,0.316771,0.744919,0.255081,0.502032,0.497968,0.729942,0.270058,0.543523,0.456477,0.837059,0.162941,0.809447,0.190553,0.847358,0.152642,0.911346,0.0886536,0.932788,0.0672121,0.904063,0.0959366,0.729425,0.270575,0.667137,0.332863,0.615677,0.384323,0.619528,0.380472,0.527457,0.472543,0.506592,0.493408,0.659984,0.340016,0.724495,0.275505,0.715422,0.284578,0.635457,0.364543,0.718102,0.281898,0.639251,0.360749,0.609733,0.390267,0.559321,0.440679,0.652085,0.347915,0.629217,0.370783,0.510527,0.489473,0.510876,0.489124,0.514727,0.485273,0.519876,0.480124,0.546291,0.453709,0.521449,0.478551,0.508585,0.491415,0.501528,0.498472,0.57133,0.42867,0.604034,0.395966,0.637691,0.362309,0.593328,0.406672,0.560392,0.439608,0.638155,0.361845,0.508589,0.491411,0.772186,0.227814,0.526446,0.473554,0.833571,0.166429,0.656291,0.343709,0.716983,0.283017,0.724988,0.275012,0.775034,0.224966,0.674143,0.325857,0.65075,0.34925,0.928433,0.0715667,0.66698,0.33302,0.565723,0.434277,0.722661,0.277339,0.661781,0.338219,0.817114,0.182886,0.783398,0.216602,0.987944,0.0120559,0.748267,0.251733,0.740997,0.259003,0.706323,0.293677,0.696651,0.303349,0.673746,0.326254,0.666488,0.333512,0.633967,0.366033,0.669667,0.330333,0.661954,0.338046,0.741881,0.258119,0.691854,0.308146,0.739384,0.260616,0.732779,0.267221,0.791962,0.208038,0.903181,0.0968187,0.861142,0.138858,0.85198,0.14802,0.856415,0.143585,0.865326,0.134674,0.889168,0.110832,0.905453,0.0945467,0.930977,0.0690231,0.739578,0.260422,0.75099,0.24901,0.76766,0.23234,0.787542,0.212458,0.767035,0.232965,0.724915,0.275085,0.741923,0.258077,0.757231,0.242769,0.917913,0.0820871,0.957862,0.0421375,0.866986,0.133014,0.852944,0.147056,0.860092,0.139908,0.891329,0.108671,0.923147,0.0768525,0.955508,0.044492,0.78879,0.21121,0.732868,0.267132,0.753776,0.246224,0.766415,0.233585,0.762722,0.237278,0.760481,0.239519,0.881558,0.118442,0.822855,0.177145,0.929548,0.0704523,0.953956,0.0460443,0.898747,0.101253,0.865965,0.134035,0.850282,0.149718,0.863282,0.136718,0.895096,0.104904,0.927687,0.072313,0.52002,0.47998,0.557036,0.442964,0.526081,0.473919,0.529324,0.470676,0.562845,0.437155,0.551883,0.448117,0.627858,0.372142,0.51252,0.48748,0.540571,0.459429,0.665137,0.334863,0.589223,0.410777,0.562373,0.437627,0.964119,0.0358808,0.970436,0.0295636,0.944041,0.0559592,0.936504,0.0634956,0.927358,0.0726418,0.923222,0.0767776,0.938103,0.0618969,0.969868,0.0301324,0.818886,0.181114,0.952163,0.0478374,0.657186,0.342814,0.826011,0.173989,0.871899,0.128101,0.876192,0.123808,0.999563,0.00043733,1,0,0.857774,0.142226,0.835281,0.164719,0.842246,0.157754,0.70804,0.29196,0.701235,0.298765,0.613685,0.386315,0.700381,0.299619,0.650801,0.349199,0.669838,0.330162,0.518769,0.481231,0.641438,0.358562,0.55727,0.44273,0.579914,0.420086,0.778039,0.221961,0.775555,0.224445,0.7791,0.2209,0.633315,0.366685,0.899491,0.100509,0.892509,0.107491,0.871914,0.128086,0.80187,0.19813,0.772942,0.227058,0.646509,0.353491,0.669972,0.330028,0.636613,0.363387,0.715735,0.284265,0.789948,0.210052,0.810075,0.189925,0.740606,0.259394,0.732133,0.267867,0.848418,0.151582,0.863732,0.136268,0.862325,0.137675,0.806081,0.193919,0.584646,0.415354,0.717461,0.282539,0.675225,0.324775,0.756075,0.243925,0.531511,0.468489,0.640889,0.359111,0.513935,0.486065,0.657788,0.342212,0.50639,0.49361,0.612391,0.387609,0.736513,0.263487,0.679117,0.320883,0.679782,0.320218,0.503218,0.496782,0.813247,0.186753,0.745902,0.254098,0.80407,0.19593,0.613509,0.386491,0.739693,0.260307,0.745466,0.254534,0.737457,0.262543,0.543928,0.456072,0.52207,0.47793,0.622469,0.377531,0.519689,0.480311,0.647804,0.352196,0.592071,0.407929,0.637089,0.362911,0.58473,0.41527,0.673336,0.326664,0.700206,0.299794,0.799277,0.200723,0.810307,0.189693,0.815991,0.184009,0.985294,0.014706,0.918262,0.0817381,0.963648,0.0363517,0.956606,0.0433938,0.973921,0.0260786,0.996091,0.00390941,1,0,1,0,1,0,0.998192,0.00180777,0.970982,0.0290182,0.95867,0.0413304,0.964532,0.0354683,0.984161,0.0158393,1,0,0.997583,0.00241689,0.561901,0.438099,0.550277,0.449723,0.559162,0.440838,0.654059,0.345941,0.636422,0.363578,0.644289,0.355711,0.553713,0.446287,0.563221,0.436779,0.55337,0.44663,0.530757,0.469243,0.550098,0.449902,0.529075,0.470925,0.921386,0.0786144,0.906608,0.0933918,0.88175,0.11825,0.873032,0.126968,0.876231,0.123769,0.895702,0.104298,0.928505,0.0714955,0.905887,0.0941129,0.759579,0.240421,0.809551,0.190449,0.744459,0.255541,0.7759,0.2241,0.791392,0.208608,0.783371,0.216629,0.743841,0.256159,0.756412,0.243588,0.886386,0.113614,0.825418,0.174582,0.818143,0.181857,0.809079,0.190921,0.816574,0.183426,0.845481,0.154519,0.921158,0.0788421,0.909351,0.0906488,0.884988,0.115012,0.878209,0.121791,0.845968,0.154032,0.83377,0.16623,0.83929,0.16071,0.85634,0.14366,0.888882,0.111118,0.823432,0.176568,0.888532,0.111468,0.896219,0.103781,0.8741,0.1259,0.877489,0.122511,0.882439,0.117561,0.880012,0.119988,0.874124,0.125876,0.888574,0.111426,0.524305,0.475695,0.736554,0.263446,0.659324,0.340676,0.704483,0.295517,0.547097,0.452903,0.672448,0.327552,0.554177,0.445823,0.661059,0.338941,0.538577,0.461423,0.675558,0.324442,0.610634,0.389366,0.694183,0.305817,0.67375,0.32625,0.719761,0.280239,0.71963,0.28037,0.870106,0.129894,0.954489,0.0455109,0.984971,0.0150295,1,0,1,0,0.947541,0.0524587,1,0,0.790727,0.209273,0.618288,0.381712,0.740249,0.259751,0.854782,0.145218,0.803153,0.196847,0.804965,0.195035,0.92316,0.0768405,0.782015,0.217985,0.750087,0.249913,0.762967,0.237033,0.703815,0.296185,0.803005,0.196995,0.665353,0.334647,0.8203,0.1797,0.63779,0.36221,0.817962,0.182038,0.615816,0.384184,0.781184,0.218816,0.530855,0.469145,0.80845,0.19155,0.71562,0.28438,0.892891,0.107109,0.873995,0.126005,0.858917,0.141083,0.850949,0.149051,0.843184,0.156816,0.850714,0.149286,0.874267,0.125733,0.757846,0.242154,0.844903,0.155097,0.778425,0.221575,0.803994,0.196006,0.822922,0.177078,0.847411,0.152589,0.852966,0.147034,0.843677,0.156323,0.922824,0.0771764,0.944661,0.0553393,0.898499,0.101501,0.859093,0.140907,0.849932,0.150068,0.857738,0.142262,0.889634,0.110366,0.936608,0.0633917,0.719989,0.280011,0.729548,0.270452,0.712987,0.287013,0.70517,0.29483,0.691949,0.308051,0.697987,0.302013,0.740754,0.259246,0.695046,0.304954,0.944701,0.0552992,0.990932,0.00906812,0.928399,0.0716008,0.928131,0.0718688,0.933742,0.0662583,0.936667,0.0633334,0.942721,0.0572786,0.971359,0.0286412,0.694626,0.305374,0.701466,0.298534,0.684376,0.315624,0.761556,0.238444,0.744955,0.255045,0.756697,0.243303,0.600619,0.399381,0.575457,0.424543,0.547067,0.452933,0.502644,0.497356,0.542338,0.457662,0.553684,0.446316,0.97485,0.0251503,0.999257,0.000742632,0.958148,0.0418517,0.952834,0.0471663,0.958464,0.0415363,0.97836,0.0216403,0.996785,0.00321466,1,0,0.970957,0.0290434,1,0,0.906003,0.0939971,0.937891,0.0621088,0.97029,0.0297101,0.970223,0.0297768,0.97571,0.0242895,1,0,0.921269,0.0787308,0.909211,0.0907888,0.893774,0.106226,0.822254,0.177746,0.798508,0.201492,0.685164,0.314836,0.669388,0.330612,0.658513,0.341487,0.826581,0.173419,0.755188,0.244812,0.80631,0.19369,0.733017,0.266983,0.753292,0.246708,0.869155,0.130845,0.881569,0.118431,0.88641,0.11359,0.82744,0.17256,0.85801,0.14199,0.83693,0.16307,0.856921,0.143079,0.699256,0.300744,0.761977,0.238023,0.601778,0.398222,0.629722,0.370278,0.579886,0.420114,0.631938,0.368062,0.743908,0.256092,0.667396,0.332604,0.501012,0.498988,0.530887,0.469113,0.816885,0.183115,0.781027,0.218973,0.792478,0.207522,0.681909,0.318091,0.526499,0.473501,0.690519,0.309481,0.606806,0.393194,0.677145,0.322855,0.730668,0.269332,0.76919,0.23081,0.632789,0.367211,0.51465,0.48535,0.70031,0.29969,0.786063,0.213937,0.839827,0.160173,0.836762,0.163238,0.55332,0.44668,0.685652,0.314348,0.74672,0.25328,0.692002,0.307998,0.806278,0.193722,0.631608,0.368392,0.792574,0.207426,0.782181,0.217819,0.784056,0.215944,0.609497,0.390503,0.570823,0.429177,0.641276,0.358724,0.537324,0.462676,0.656202,0.343798,0.655609,0.344391,0.732612,0.267388,0.648401,0.351599,0.697836,0.302164,0.708252,0.291748,0.846806,0.153194,0.846049,0.153951,0.874054,0.125946,1,0,0.945373,0.0546273,0.960491,0.0395086,0.959335,0.0406651,0.956784,0.0432161,0.947516,0.0524843,1,0,1,0,1,0,1,0,0.97387,0.0261304,0.960833,0.0391674,0.97145,0.0285496,1,0,1,0,1,0,0.545241,0.454759,0.550596,0.449404,0.571216,0.428784,0.650653,0.349347,0.633444,0.366556,0.656693,0.343307,0.524572,0.475428,0.550029,0.449971,0.50818,0.49182,0.535125,0.464875,0.589174,0.410826,0.539121,0.460879,0.937565,0.0624353,0.897965,0.102035,0.860802,0.139198,0.846149,0.153851,0.867322,0.132678,0.903586,0.0964138,0.982604,0.0173958,0.936724,0.063276,0.821082,0.178918,0.905182,0.0948179,0.761327,0.238673,0.770605,0.229395,0.786436,0.213564,0.773172,0.226828,0.749789,0.250211,0.813218,0.186782,0.870967,0.129033,0.819518,0.180482,0.805831,0.194169,0.810467,0.189533,0.813624,0.186376,0.812375,0.187625,0.943556,0.0564444,0.887506,0.112494,0.936664,0.0633364,0.902023,0.0979767,0.852053,0.147947,0.836011,0.163989,0.847339,0.152661,0.891561,0.108439,0.969559,0.0304411,0.926243,0.0737572,0.937733,0.0622671,0.891713,0.108287,0.871791,0.128209,0.868712,0.131288,0.868054,0.131946,0.880151,0.119849,0.929329,0.0706711,0.731371,0.268629,0.734229,0.265771,0.712122,0.287878,0.68623,0.31377,0.524631,0.475369,0.645584,0.354416,0.55122,0.44878,0.605155,0.394845,0.532508,0.467492,0.664546,0.335454,0.683859,0.316141,0.701507,0.298493,0.702779,0.297221,0.740602,0.259398,0.823105,0.176895,0.807385,0.192615,0.839908,0.160092,0.754441,0.245559,0.705593,0.294407,0.887765,0.112235,0.996351,0.00364925,0.629084,0.370916,0.805869,0.194131,0.798986,0.201014,0.799391,0.200609,0.836796,0.163204,0.511869,0.488131,0.809431,0.190569,0.524532,0.475468,0.547277,0.452723,0.884704,0.115296,0.759959,0.240041,0.629737,0.370263,0.547493,0.452507,0.840384,0.159616,0.940934,0.0590665,0.860403,0.139597,0.891979,0.108021,0.900654,0.0993459,0.843961,0.156039,0.901054,0.0989463,0.917198,0.082802,0.937896,0.062104,0.925808,0.0741922,0.929106,0.0708943,0.893902,0.106098,0.75001,0.24999,0.973549,0.0264514,0.893162,0.106838,0.63469,0.36531,0.65213,0.34787,0.526336,0.473664,0.565226,0.434774,0.778389,0.221611,0.754918,0.245082,0.895343,0.104657,0.900283,0.0997173,0.861397,0.138603,0.866518,0.133482,0.526745,0.473255,0.531803,0.468197,0.784733,0.215267,0.795686,0.204314,0.655946,0.344054,0.701185,0.298815,0.655983,0.344017,0.706611,0.293389,0.535845,0.464155,0.69411,0.30589,0.804289,0.195711,0.749887,0.250113,0.922019,0.0779808,0.937366,0.0626339,0.945162,0.0548379,0.930063,0.0699367,0.897412,0.102588,0.92607,0.0739301,0.879331,0.120669,0.818678,0.181322,0.625896,0.374104,0.646307,0.353693,0.755007,0.244993,0.87837,0.12163,0.889363,0.110637,0.879957,0.120043,0.791876,0.208124,0.807185,0.192815,0.52489,0.47511,0.729374,0.270626,0.619744,0.380256,0.604702,0.395298,0.559609,0.440391,0.708165,0.291835,0.68624,0.31376,0.682552,0.317448,0.659707,0.340293,0.679934,0.320066,0.709853,0.290147,0.784478,0.215522,0.739074,0.260926,0.836954,0.163046,0.913545,0.0864551,0.954855,0.0451447,0.970883,0.0291173,0.945839,0.0541613,0.932249,0.0677506,0.940109,0.0598908,0.924061,0.075939,0.9043,0.0957,0.888106,0.111894,0.853479,0.146521,0.912923,0.0870766,0.917783,0.0822175,0.881841,0.118159,0.920725,0.0792749,0.842691,0.157309,0.863393,0.136607,0.852397,0.147603,0.833035,0.166965,0.826189,0.173811,0.826891,0.173109,0.890336,0.109664,0.926779,0.0732209,1,0,0.964864,0.0351358,0.913031,0.0869686,0.953555,0.0464454,0.88534,0.11466,0.935084,0.0649156,0.954383,0.045617,0.951654,0.0483457,0.934562,0.0654377,0.924416,0.0755844,0.922118,0.0778823,1,0,0.995833,0.00416658,1,0,1,0,1,0,1,0,0.984901,0.0150992,0.588164,0.411836,0.515494,0.484506,0.532601,0.467399,0.507052,0.492948,0.672733,0.327267,0.749337,0.250663,0.641601,0.358399,0.617725,0.382275,0.605375,0.394625,0.601021,0.398979,0.59676,0.40324,0.599488,0.400512,0.601992,0.398008,0.853695,0.146305,0.887916,0.112084,0.829898,0.170102,0.823177,0.176823,0.822627,0.177373,0.828441,0.171559,0.848136,0.151864,0.874596,0.125404,0.979012,0.0209876,0.904602,0.0953978,0.94862,0.0513803,0.976827,0.0231726,0.921127,0.0788735,0.982767,0.0172326,1,0,0.997105,0.00289519,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.99313,0.00687041,1,0,0.982336,0.0176645,1,0,0.979269,0.0207305,1,0,0.979098,0.020902,1,0,0.894985,0.105015,0.856434,0.143566,0.913254,0.0867464,0.839312,0.160688,0.771678,0.228322,0.501971,0.498029,0.709212,0.290788,0.64341,0.35659,0.786942,0.213058,0.819084,0.180916,0.845917,0.154083,0.934945,0.0650547,0.875514,0.124486,0.859251,0.140749,0.89278,0.10722,0.781684,0.218316,0.866281,0.133719,1,0,1,0,0.731052,0.268948,0.939867,0.0601332,1,0,1,0,0.531376,0.468624,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.598119,0.401881,0.609583,0.390417,0.659722,0.340278,0.704903,0.295097,0.662865,0.337135,0.794584,0.205416,0.933902,0.0660978,0.94423,0.0557697,0.921521,0.0784786,0.893286,0.106714,0.884149,0.115851,0.727066,0.272934,0.737238,0.262762,0.743677,0.256323,0.767156,0.232844,0.82713,0.17287,0.916709,0.0832909,0.853037,0.146963,0.809374,0.190626,0.769199,0.230801,0.734721,0.265279,0.722781,0.277219,0.722478,0.277522,0.745539,0.254461,0.902862,0.0971377,0.64891,0.35109,0.625161,0.374839,0.61882,0.38118,0.616034,0.383966,0.62001,0.37999,0.658185,0.341815,0.636755,0.363245,0.799436,0.200564,0.691623,0.308377,0.790733,0.209267,0.814531,0.185469,0.751859,0.248141,0.693218,0.306782,0.750554,0.249446,1,0,1,0,0.644133,0.355867,0.508842,0.491158,0.608321,0.391679,0.782645,0.217355,0.993314,0.00668594,1,0,1,0,1,0,1,0,1,0,0.9828,0.0172002,0.779501,0.220499,0.63469,0.36531,0.65213,0.34787,0.5,0.5,0.5,0.5,0.526336,0.473664,0.565226,0.434774,0.778389,0.221611,0.754918,0.245082,0.5,0.5,0.5,0.5,0.895343,0.104657,0.900283,0.0997173,0.861397,0.138603,0.866518,0.133482,0.5,0.5,0.5,0.5,0.526745,0.473255,0.531803,0.468197,0.784733,0.215267,0.5,0.5,0.795686,0.204314,0.655946,0.344054,0.701185,0.298815,0.515729,0.484271,0.655983,0.344017,0.520004,0.479996,0.706611,0.293389,0.535845,0.464155,0.69411,0.30589,0.804289,0.195711,0.749887,0.250113,0.922019,0.0779808,0.937366,0.0626339,0.945162,0.0548379,0.930063,0.0699367,0.897412,0.102588,0.92607,0.0739301,0.879331,0.120669,0.818678,0.181322,0.625896,0.374104,0.646307,0.353693,0.755007,0.244993,0.87837,0.12163,0.889363,0.110637,0.879957,0.120043,0.791876,0.208124,0.807185,0.192815,0.52489,0.47511,0.729374,0.270626,0.619744,0.380256,0.604702,0.395298,0.559609,0.440391,0.708165,0.291835,0.5,0.5,0.68624,0.31376,0.682552,0.317448,0.659707,0.340293,0.5,0.5,0.679934,0.320066,0.709853,0.290147,0.784478,0.215522,0.739074,0.260926,0.836954,0.163046,0.913545,0.0864551,0.954855,0.0451447,0.970883,0.0291173,0.945839,0.0541613,0.932249,0.0677506,0.940109,0.0598908,0.924061,0.075939,0.9043,0.0957,0.888106,0.111894,0.853479,0.146521,0.912923,0.0870766,0.917783,0.0822175,0.881841,0.118159,0.920725,0.0792749,0.842691,0.157309,0.863393,0.136607,0.852397,0.147603,0.833035,0.166965,0.826189,0.173811,0.826891,0.173109,0.890336,0.109664,0.926779,0.0732209,1,0,0.964864,0.0351358,0.913031,0.0869686,0.953555,0.0464454,0.88534,0.11466,0.935084,0.0649156,0.954383,0.045617,0.951654,0.0483457,0.934562,0.0654377,0.924416,0.0755844,0.922118,0.0778823,1,0,0.995833,0.00416658,1,0,1,0,1,0,1,0,0.984901,0.0150992,0.588164,0.411836,0.515494,0.484506,0.532601,0.467399,0.507052,0.492948,0.672733,0.327267,0.749337,0.250663,0.641601,0.358399,0.617725,0.382275,0.605375,0.394625,0.601021,0.398979,0.59676,0.40324,0.599488,0.400512,0.601992,0.398008,0.853695,0.146305,0.887916,0.112084,0.829898,0.170102,0.823177,0.176823,0.822627,0.177373,0.828441,0.171559,0.848136,0.151864,0.874596,0.125404,0.979012,0.0209876,0.904602,0.0953978,0.94862,0.0513803,0.976827,0.0231726,0.921127,0.0788735,0.982767,0.0172326,1,0,0.997105,0.00289519,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.99313,0.00687041,1,0,0.982336,0.0176645,1,0,0.979269,0.0207305,1,0,0.979098,0.020902,1,0,0.894985,0.105015,0.856434,0.143566,0.913254,0.0867464,0.839312,0.160688,0.771678,0.228322,0.501971,0.498029,0.709212,0.290788,0.64341,0.35659,0.786942,0.213058,0.819084,0.180916,0.845917,0.154083,0.934945,0.0650547,0.875514,0.124486,0.859251,0.140749,0.89278,0.10722,0.781684,0.218316,0.866281,0.133719,1,0,1,0,0.731052,0.268948,0.939867,0.0601332,1,0,1,0,0.531376,0.468624,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.598119,0.401881,0.609583,0.390417,0.501758,0.498242,0.659722,0.340278,0.704903,0.295097,0.662865,0.337135,0.794584,0.205416,0.933902,0.0660978,0.94423,0.0557697,0.921521,0.0784786,0.893286,0.106714,0.884149,0.115851,0.727066,0.272934,0.737238,0.262762,0.743677,0.256323,0.767156,0.232844,0.82713,0.17287,0.916709,0.0832909,0.853037,0.146963,0.809374,0.190626,0.769199,0.230801,0.734721,0.265279,0.722781,0.277219,0.722478,0.277522,0.745539,0.254461,0.902862,0.0971377,0.64891,0.35109,0.625161,0.374839,0.61882,0.38118,0.616034,0.383966,0.62001,0.37999,0.658185,0.341815,0.636755,0.363245,0.799436,0.200564,0.691623,0.308377,0.790733,0.209267,0.814531,0.185469,0.751859,0.248141,0.693218,0.306782,0.750554,0.249446,1,0,1,0,0.644133,0.355867,0.508842,0.491158,0.608321,0.391679,0.782645,0.217355,0.993314,0.00668594,1,0,1,0,1,0,1,0,1,0,0.9828,0.0172002,0.779501,0.220499,0.582228,0.417772,0.578387,0.421613,0.659758,0.340242,0.511178,0.488822,0.530407,0.469593,0.548256,0.451744,0.562494,0.437506,0.571813,0.428187,0.512341,0.487659,0.574952,0.425048,0.539131,0.460869,0.534143,0.465857,0.613466,0.386534,0.672098,0.327902,0.511457,0.488543,0.600121,0.399879,0.548426,0.451574,0.60924,0.39076,0.683164,0.316836,0.65299,0.34701,0.506668,0.493332,0.532337,0.467663,0.570803,0.429197,0.563281,0.436719,0.559373,0.440627,0.534374,0.465626,0.547892,0.452108,0.514614,0.485386,0.539145,0.460855,0.510912,0.489088,0.571404,0.428596,0.566597,0.433403,0.630742,0.369258,0.660933,0.339067,0.657939,0.342061,0.58599,0.41401,0.607861,0.392139,0.54913,0.45087,0.631346,0.368654,0.666101,0.333899,0.617499,0.382501,0.521745,0.478255,0.99087,0.00913024,0.65566,0.34434,0.500931,0.499069,0.66118,0.33882,0.662795,0.337205,0.977117,0.0228827,0.937473,0.0625274,0.619676,0.380324,0.54722,0.45278,0.582853,0.417147,0.536016,0.463984,0.685683,0.314317,0.590501,0.409499,0.968456,0.0315443,0.849002,0.150998,0.983425,0.0165747,0.738074,0.261926,0.534816,0.465184,0.652566,0.347434,0.615187,0.384813,0.657276,0.342724,0.695076,0.304924,0.71242,0.28758,0.756221,0.243779,0.654849,0.345151,0.684246,0.315754,0.646015,0.353985,0.608306,0.391694,0.643737,0.356263,0.777228,0.222772,0.562505,0.437495,0.536751,0.463249,0.66179,0.33821,0.580039,0.419961,0.54767,0.45233,0.617025,0.382975,0.527722,0.472278,0.654203,0.345797,0.570665,0.429335,0.731687,0.268313,0.585152,0.414848,0.643719,0.356281,0.58756,0.41244,0.638034,0.361966,0.54775,0.45225,0.591362,0.408638,0.642889,0.357111,0.514158,0.485842,0.597077,0.402923,0.603099,0.396901,0.679113,0.320887,0.674193,0.325807,0.646062,0.353938,0.676412,0.323588,0.647786,0.352214,0.653062,0.346938,0.817951,0.182049,0.61406,0.38594,0.513217,0.486783,0.548828,0.451172,0.569643,0.430357,0.628369,0.371631,0.625921,0.374079,0.511351,0.488649,0.671127,0.328873,0.641648,0.358352,0.618281,0.381719,0.643099,0.356901,0.65951,0.34049,0.653684,0.346316,0.655474,0.344526,0.667351,0.332649,0.571742,0.428258,0.542752,0.457248,0.508559,0.491441,0.551754,0.448246,0.548218,0.451782,0.516132,0.483868,0.540242,0.459758,0.54633,0.45367,0.566921,0.433079,0.547203,0.452797,0.548406,0.451594,0.634331,0.365669,0.527058,0.472942,0.657235,0.342765,0.60589,0.39411,0.588672,0.411328,0.590722,0.409278,0.532655,0.467345,0.539427,0.460573,0.55866,0.44134,0.581278,0.418722,0.558311,0.441689,0.55378,0.44622,0.552716,0.447284,0.556546,0.443454,0.57241,0.42759,0.58094,0.41906,0.590721,0.409279,0.707529,0.292471,0.727938,0.272062,0.621362,0.378638,0.59739,0.40261,0.560569,0.439431,0.549372,0.450628,0.500791,0.499209,0.589744,0.410256,0.592301,0.407699,0.581373,0.418627,0.558824,0.441176,0.606543,0.393457,0.553414,0.446586,0.59174,0.40826,0.565594,0.434406,0.600643,0.399357,0.589545,0.410455,0.797862,0.202138,0.635343,0.364657,0.684242,0.315758,0.679687,0.320313,0.77178,0.22822,0.730453,0.269547,0.5942,0.4058,0.570523,0.429477,0.535652,0.464348,0.616846,0.383154,0.628376,0.371624,0.669292,0.330708,0.677092,0.322908,0.588149,0.411851,0.595244,0.404756,0.550383,0.449617,0.543048,0.456952,0.909114,0.0908862,0.962465,0.0375354,0.897991,0.102009,0.986918,0.0130821,0.610778,0.389222,0.969932,0.030068,0.901434,0.0985662,0.985285,0.0147152,0.897783,0.102217,0.988109,0.0118908,0.938295,0.0617048,0.999987,1.27166e-05,0.750184,0.249816,0.998675,0.00132473,0.940737,0.059263,0.999993,6.91785e-06,0.572267,0.427733,0.571905,0.428095,0.897491,0.102509,0.844332,0.155668,0.907971,0.0920286,0.981241,0.0187588,0.645095,0.354905,0.561481,0.438519,0.569812,0.430188,0.579532,0.420468,0.555957,0.444043,0.502217,0.497783,0.554661,0.445339,0.503674,0.496326,0.507957,0.492043,0.55192,0.44808,0.602964,0.397036,0.603242,0.396758,0.597869,0.402131,0.659471,0.340529,0.587998,0.412002,0.634051,0.365949,0.629352,0.370648,0.58031,0.41969,0.61191,0.38809,0.50715,0.49285,0.540395,0.459605,0.629248,0.370752,0.581416,0.418584,0.605968,0.394032,0.517214,0.482786,0.526087,0.473913,0.508396,0.491604,0.55049,0.44951,0.559078,0.440922,0.566251,0.433749,0.602634,0.397366,0.594996,0.405004,0.532194,0.467806,0.527038,0.472962,0.613314,0.386686,0.626496,0.373504,0.551634,0.448366,0.543238,0.456762,0.640178,0.359822,0.61381,0.38619,0.672571,0.327429,0.613901,0.386099,0.617343,0.382657,0.62686,0.37314,0.633158,0.366842,0.584271,0.415729,0.54338,0.45662,0.507745,0.492255,0.522419,0.477581,0.547005,0.452995,0.608109,0.391891,0.535588,0.464412,0.600473,0.399527,0.617559,0.382441,0.631139,0.368861,0.566524,0.433476,0.812089,0.187911,0.736257,0.263743,0.648943,0.351057,0.621012,0.378988,0.727871,0.272129,0.582436,0.417564,0.524794,0.475206,0.514425,0.485575,0.507362,0.492638,0.509811,0.490189,0.625453,0.374547,0.637377,0.362623,0.544035,0.455965,0.567586,0.432414,0.721316,0.278684,0.736889,0.263111,0.750006,0.249994,0.659337,0.340663,0.73963,0.26037,0.582425,0.417575,0.676576,0.323424,0.7742,0.2258,0.760454,0.239546,0.723318,0.276682,0.736973,0.263027,0.728287,0.271713,0.532401,0.467599,0.594736,0.405264,0.729568,0.270432,0.753597,0.246403,0.750391,0.249609,0.639253,0.360747,0.662812,0.337188,0.729556,0.270444,0.677846,0.322154,0.771212,0.228788,0.766605,0.233395,0.722372,0.277628,0.756881,0.243119,0.728491,0.271509,0.739175,0.260825,0.768145,0.231855,0.729222,0.270778,0.648489,0.351511,0.737421,0.262579,0.698791,0.301209,0.805899,0.194101,0.695881,0.304119,0.777418,0.222582,0.727952,0.272048,0.711679,0.288321,0.654242,0.345758,0.53531,0.46469,0.568108,0.431892,0.597579,0.402421,0.553173,0.446827,0.520777,0.479223,0.522561,0.477439,0.63282,0.36718,0.588239,0.411761,0.727345,0.272655,0.769542,0.230458,0.640301,0.359699,0.775021,0.224979,0.621169,0.378831,0.600962,0.399038,0.971726,0.0282738,0.76522,0.23478,0.51443,0.48557,0.919759,0.080241,0.758183,0.241817,0.609776,0.390224,0.527107,0.472893,0.908729,0.0912708,0.953094,0.0469059,0.758238,0.241762,0.899704,0.100296,0.90682,0.0931797,0.748695,0.251305,0.760375,0.239625,0.744522,0.255478,0.605804,0.394196,0.518999,0.481001,0.780468,0.219532,0.607505,0.392495,0.783454,0.216546,0.746355,0.253645,0.817123,0.182877,0.759653,0.240347,0.740942,0.259058,0.753773,0.246227,0.736769,0.263231,0.637252,0.362748,0.652518,0.347482,0.518697,0.481303,0.774111,0.225889,0.528749,0.471251,0.776956,0.223044,0.740292,0.259708,0.8173,0.1827,0.758131,0.241869,0.737719,0.262281,0.945924,0.0540763,0.839635,0.160365,0.921674,0.0783256,0.524116,0.475884,0.833869,0.166131,0.793985,0.206015,0.973102,0.0268977,0.942968,0.0570316,0.914755,0.0852446,0.556101,0.443899,0.80183,0.19817,0.805183,0.194817,0.799006,0.200994,0.63896,0.36104,0.852093,0.147907,0.854884,0.145116,0.9416,0.0584,0.79806,0.20194,0.809336,0.190664,0.797202,0.202798,0.735588,0.264412,0.659545,0.340455,0.800687,0.199313,0.803757,0.196243,0.798013,0.201987,0.867967,0.132033,0.576868,0.423132,0.892375,0.107625,0.796498,0.203502,0.757771,0.242229,0.767256,0.232744,0.97358,0.0264197,0.858217,0.141783,0.830302,0.169698,0.959961,0.0400386,0.890072,0.109928,0.670588,0.329412,0.659121,0.340879,0.896202,0.103798,0.544142,0.455858,0.835732,0.164268,0.793504,0.206496,0.968087,0.0319133,0.928883,0.0711174,0.859141,0.140859,0.7817,0.2183,0.942462,0.0575376,0.779491,0.220509,0.946563,0.0534366,0.704868,0.295132,0.854083,0.145917,0.543248,0.456752,0.787306,0.212694,0.813436,0.186564,0.959078,0.0409219,0.790757,0.209243,0.909711,0.0902893,0.805702,0.194298,0.799542,0.200458,0.863487,0.136513,0.660146,0.339854,0.687224,0.312776,0.789291,0.210709,0.803162,0.196838,0.810289,0.189711,0.797973,0.202027,0.802252,0.197748,0.921256,0.078744,0.620622,0.379378,0.947444,0.052556,0.797356,0.202644,0.728288,0.271712,0.805612,0.194388,0.906708,0.0932922,0.862292,0.137708,0.935621,0.0643789,0.912728,0.0872724,0.571334,0.428666,0.792803,0.207197,0.780755,0.219245,0.769615,0.230385,0.753681,0.246319,0.627789,0.372211,0.566749,0.433251,0.500484,0.499516,0.555841,0.444159,0.823828,0.176172,0.759378,0.240622,0.787935,0.212065,0.751755,0.248245,0.759501,0.240499,0.828393,0.171607,0.569379,0.430621,0.774969,0.225031,0.534836,0.465164,0.726931,0.273069,0.76645,0.23355,0.729261,0.270739,0.793504,0.206496,0.755244,0.244756,0.765404,0.234596,0.60685,0.39315,0.74135,0.25865,0.723017,0.276983,0.849842,0.150158,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.793917,0.206083,0.813212,0.186788,0.708173,0.291827,0.651971,0.348029,0.588874,0.411126,0.605815,0.394185,0.516349,0.483651,1,0,1,0,1,0,0.787898,0.212102,0.782031,0.217969,0.875087,0.124913,0.997499,0.00250085,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.869197,0.130803,0.546833,0.453167,0.716535,0.283465,0.595362,0.404638,0.617671,0.382329,0.691587,0.308413,0.905063,0.094937,0.926288,0.0737123,0.58291,0.41709,0.717954,0.282046,0.769123,0.230877,0.692439,0.307561,0.735174,0.264826,0.589586,0.410414,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.659928,0.340072,0.809952,0.190048,0.779821,0.220179,0.860741,0.139259,0.856718,0.143282,0.774035,0.225965,0.785694,0.214306,0.819277,0.180723,0.843322,0.156678,0.798697,0.201303,0.779647,0.220353,0.843019,0.156981,0.891534,0.108466,0.9061,0.0939002,0.867243,0.132757,0.938753,0.0612469,0.890916,0.109084,0.920982,0.0790177,0.91287,0.0871298,0.957998,0.0420017,0.835057,0.164943,0.628429,0.371571,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.949271,0.0507285,1,0,1,0,1,0,1,0,0.521379,0.478621,0.634593,0.365407,0.688861,0.311139,0.670473,0.329527,0.816393,0.183607,0.53536,0.46464,0.94445,0.0555503,0.94256,0.0574399,0.608306,0.391694,0.729206,0.270794,0.686527,0.313473,0.753812,0.246188,0.55074,0.44926,0.985261,0.0147385,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.992928,0.00707171,0.973646,0.0263541,0.768066,0.231934,0.816569,0.183431,0.844623,0.155377,1,0,1,0,1,0,0.695531,0.304469,0.706313,0.293687,0.547772,0.452228,0.62688,0.37312,0.591405,0.408595,0.715663,0.284337,0.786205,0.213795,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.738615,0.261385,0.521415,0.478585,0.748357,0.251643,0.809832,0.190168,0.824197,0.175803,0.906305,0.0936954,0.571638,0.428362,1,0,1,0,0.999923,7.7494e-05,0.927771,0.0722286,0.873838,0.126162,0.987661,0.0123387,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.75503,0.24497,0.862761,0.137239,0.706701,0.293299,0.6176,0.3824,0.675572,0.324428,0.873314,0.126686,0.984799,0.0152014,0.999741,0.000259322,0.827909,0.172091,0.717275,0.282725,0.749066,0.250934,0.802607,0.197393,0.741483,0.258517,0.83567,0.16433,1,0,1,0,0.999967,3.26575e-05,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.723227,0.276773,0.943434,0.0565663,0.511148,0.488852,0.680049,0.319951,0.991822,0.00817796,0.54959,0.45041,0.571035,0.428965,0.750338,0.249662,0.936633,0.0633674,0.647312,0.352688,0.560483,0.439517,0.609842,0.390158,0.533142,0.466858,0.592281,0.407719,0.689717,0.310283,0.580665,0.419335,0.660231,0.339769,0.70343,0.29657,0.61536,0.38464,0.677674,0.322326,0.731855,0.268145,0.708021,0.291979,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.997051,0.00294938,0.999618,0.000381537,1,0,1,0,0.560044,0.439956,0.571704,0.428296,0.562867,0.437133,0.533188,0.466812,0.555141,0.444859,0.527928,0.472072,0.503692,0.496308,0.760504,0.239496,0.553646,0.446354,0.554949,0.445051,0.553514,0.446486,0.553517,0.446483,0.76349,0.23651,0.823754,0.176246,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.920484,0.0795159,0.948818,0.0511818,0.933481,0.066519,0.855096,0.144904,0.852002,0.147998,0.943614,0.0563864,0.977866,0.0221343,1,0,0.727123,0.272877,0.682855,0.317145,0.675299,0.324701,0.670135,0.329865,0.687639,0.312361,0.705846,0.294154,0.757755,0.242245,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.988901,0.0110992,1,0,1,0,0.971991,0.0280091,0.980162,0.0198382,0.870798,0.129202,0.86577,0.13423,0.966502,0.0334976,1,0,1,0,1,0,0.932573,0.0674269,1,0,0.577916,0.422084,0.759183,0.240817,0.692562,0.307438,0.608792,0.391208,0.899899,0.100101,1,0,1,0,0.997356,0.00264391,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.987563,0.0124371,0.999739,0.000260949,1,0,0.997343,0.00265746,1,0,0.86689,0.13311,0.776179,0.223821,0.866798,0.133202,0.961009,0.0389909,0.999274,0.000725775,1,0,1,0,1,0,1,0,1,0,1,0,0.897649,0.102351,0.927763,0.0722366,0.998465,0.00153478,1,0,0.727593,0.272407,0.686428,0.313572,0.851884,0.148116,0.559172,0.440828,0.772326,0.227674,0.798426,0.201574,0.551026,0.448974,0.646386,0.353614,0.508856,0.491144,0.504058,0.495942,0.523938,0.476062,0.711445,0.288555,0.627196,0.372804,0.720872,0.279128,0.866563,0.133437,0.546809,0.453191,0.537826,0.462174,0.642806,0.357194,0.713044,0.286956,0.926761,0.0732393,0.937235,0.0627651,0.99503,0.00497039,0.784774,0.215226,0.958308,0.041692,0.993871,0.00612891,0.967288,0.0327124,0.999826,0.000173954,0.77967,0.22033,0.813485,0.186515,0.95481,0.0451899,1,0,0.702703,0.297297,0.552423,0.447577,0.585507,0.414493,0.562086,0.437914,0.839133,0.160867,0.652012,0.347988,0.581159,0.418841,0.559997,0.440003,0.536394,0.463606,0.697057,0.302943,0.63252,0.36748,0.506505,0.493495,0.898195,0.101805,0.710273,0.289727,0.74547,0.25453,0.819633,0.180367,0.958356,0.0416439,0.788175,0.211825,0.79343,0.20657,0.67398,0.32602,0.78761,0.21239,0.640555,0.359445,0.864424,0.135576,0.503906,0.496094,0.935596,0.0644036,1,0,0.961629,0.0383712,1,0,0.901581,0.0984192,1,0,0.90519,0.0948102,1,0,0.900893,0.0991068,1,0,0.900742,0.0992575,1,0,0.914162,0.0858375,1,0,0.947068,0.0529316,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.903226,0.0967745,1,0,0.973171,0.0268293,1,0,0.966513,0.0334874,0.96181,0.0381901,0.955332,0.0446677,0.988468,0.0115318,0.986223,0.0137774,1,0,1,0,1,0,1,0,1,0,0.969085,0.0309148,1,0,0.967292,0.0327078,0.980333,0.0196672,1,0,1,0,1,0,1,0,0.996089,0.00391115,1,0,0.959189,0.0408113,0.988731,0.0112693,0.678776,0.321224,0.85153,0.14847,0.750185,0.249815,0.682193,0.317807,0.717952,0.282048,0.760603,0.239397,0.592645,0.407355,0.734277,0.265723,0.943129,0.0568712,0.991975,0.00802548,0.884681,0.115319,0.759837,0.240163,0.936554,0.0634459,0.952625,0.0473748,0.947032,0.0529675,0.949508,0.0504924,0.944385,0.0556149,0.947149,0.052851,0.936439,0.0635615,0.970494,0.029506,0.840338,0.159662,0.948444,0.0515558,0.953972,0.0460284,0.965162,0.0348383,0.991951,0.00804947,0.620664,0.379336,0.993995,0.00600452,0.78685,0.21315,0.827509,0.172491,0.640176,0.359824,0.603224,0.396776,1,0,1,0,0.959929,0.0400713,0.864294,0.135706,0.812539,0.187461,0.780046,0.219954,1,0,1,0,0.936884,0.0631165,0.813211,0.186789,0.566873,0.433127,0.687212,0.312788,1,0,1,0,0.990968,0.00903227,0.996875,0.0031249,0.988959,0.0110405,0.979653,0.0203469,1,0,1,0,1,0,1,0,1,0,0.978916,0.0210844,0.596349,0.403651,0.594728,0.405272,0.522596,0.477404,0.548931,0.451069,0.501287,0.498713,0.531669,0.468331,0.570553,0.429447,0.608187,0.391813,0.530806,0.469194,0.599036,0.400964,0.543095,0.456905,0.57631,0.42369,0.589392,0.410608,0.572806,0.427194,0.820101,0.179899,0.591397,0.408603,0.54338,0.45662,0.673145,0.326855,0.542635,0.457365,0.5464,0.4536,0.576131,0.423869,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.654556,0.345444,0.967589,0.0324114,1,0,0.599456,0.400544,0.728332,0.271668,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.598136,0.401864,0.632009,0.367991,0.791038,0.208962,0.764147,0.235853,0.640097,0.359903,0.832035,0.167965,0.836767,0.163233,0.813026,0.186974,0.615166,0.384834,0.699672,0.300328,0.678276,0.321724,0.899184,0.100816,0.780479,0.219521,0.571386,0.428614,0.675922,0.324078,0.812874,0.187126,1,0,1,0,0.715322,0.284678,0.783475,0.216525,0.766358,0.233642,0.734513,0.265487,0.604494,0.395506,0.715327,0.284673,0.639791,0.360209,0.688497,0.311503,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.835637,0.164363,0.72106,0.27894,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.75309,0.24691,0.886012,0.113988,0.683923,0.316077,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.802673,0.197327,0.860114,0.139886,0.780992,0.219008,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.907956,0.0920439,0.961422,0.0385783,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.617085,0.382915,0.628287,0.371713,0.690507,0.309493,0.664027,0.335973,0.619243,0.380757,0.69504,0.30496,0.691074,0.308926,0.68994,0.31006,0.711431,0.288569,0.898449,0.101551,0.890649,0.109351,0.877912,0.122088,1,0,0.876095,0.123905,1,0,0.734475,0.265525,0.800392,0.199608,0.898291,0.101709,1,0,1,0,0.524623,0.475377,0.50725,0.49275,0.518896,0.481104,0.645904,0.354096,0.862019,0.137981,0.532918,0.467082,0.701568,0.298432,0.806685,0.193315,0.566735,0.433265,0.805865,0.194135,0.752109,0.247891,0.629977,0.370023,0.745543,0.254457,0.963311,0.0366894,0.934851,0.0651487,0.844576,0.155424,0.671004,0.328996,0.894863,0.105137,0.819508,0.180492,0.735665,0.264335,0.80448,0.19552,0.537858,0.462142,0.597028,0.402972,0.880496,0.119504,0.753043,0.246957,0.850915,0.149085,0.841634,0.158366,0.843716,0.156284,0.684848,0.315152,0.715111,0.284889,0.735029,0.264971,0.88878,0.11122,0.879134,0.120866,0.883103,0.116897,0.748407,0.251593,0.729193,0.270807,0.715899,0.284101,0.893113,0.106887,1,0,1,0,0.844967,0.155033,0.834882,0.165118,0.82269,0.17731,0.941949,0.0580513,0.934456,0.0655444,0.926997,0.0730028,0.614806,0.385194,0.654179,0.345821,0.717185,0.282815,0.643867,0.356133,0.699089,0.300911,0.668022,0.331978,0.781892,0.218108,0.902982,0.0970175,0.772803,0.227197,0.527679,0.472321,0.540762,0.459238,0.528632,0.471368,0.557167,0.442833,0.809796,0.190204,0.688799,0.311201,0.633663,0.366337,0.595819,0.404181,0.648812,0.351188,0.514014,0.485986,0.648875,0.351125,0.618011,0.381989,0.501616,0.498384,0.650832,0.349168,0.656783,0.343217,0.695839,0.304161,0.77734,0.22266,0.909341,0.0906587,0.879499,0.120501,0.637139,0.362861,0.686913,0.313087,0.889034,0.110966,0.815531,0.184469,0.658304,0.341696,0.679744,0.320256,0.830819,0.169181,0.831215,0.168785,0.811471,0.188529,0.835203,0.164797,0.660105,0.339895,0.777696,0.222304,0.594475,0.405525,0.603653,0.396347,0.641081,0.358919,0.640197,0.359803,0.565803,0.434197,0.539632,0.460368,0.910417,0.0895832,0.941413,0.0585875,0.719202,0.280798,0.617479,0.382521,0.818643,0.181357,0.849842,0.150158,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.793917,0.206083,0.813212,0.186788,0.708173,0.291827,0.651971,0.348029,0.588874,0.411126,0.605815,0.394185,0.516349,0.483651,1,0,1,0,1,0,0.787898,0.212102,0.782031,0.217969,0.875087,0.124913,0.997499,0.00250085,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.869197,0.130803,0.546833,0.453167,0.716535,0.283465,0.595362,0.404638,0.617671,0.382329,0.691587,0.308413,0.905063,0.094937,0.926288,0.0737123,0.58291,0.41709,0.717954,0.282046,0.769123,0.230877,0.692439,0.307561,0.735174,0.264826,0.589586,0.410414,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.659928,0.340072,0.809952,0.190048,0.779821,0.220179,0.860741,0.139259,0.856718,0.143282,0.774035,0.225965,0.785694,0.214306,0.819277,0.180723,0.843322,0.156678,0.798697,0.201303,0.779647,0.220353,0.843019,0.156981,0.891534,0.108466,0.9061,0.0939002,0.867243,0.132757,0.938753,0.0612469,0.890916,0.109084,0.920982,0.0790177,0.91287,0.0871298,0.957998,0.0420017,0.835057,0.164943,0.628429,0.371571,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.949271,0.0507285,1,0,1,0,1,0,1,0,0.521379,0.478621,0.634593,0.365407,0.688861,0.311139,0.670473,0.329527,0.816393,0.183607,0.53536,0.46464,0.94445,0.0555503,0.94256,0.0574399,0.608306,0.391694,0.729206,0.270794,0.686527,0.313473,0.753812,0.246188,0.55074,0.44926,0.985261,0.0147385,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.992928,0.00707171,0.973646,0.0263541,0.768066,0.231934,0.816569,0.183431,0.844623,0.155377,1,0,1,0,1,0,0.695531,0.304469,0.706313,0.293687,0.547772,0.452228,0.62688,0.37312,0.591405,0.408595,0.715663,0.284337,0.786205,0.213795,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.738615,0.261385,0.521415,0.478585,0.748357,0.251643,0.809832,0.190168,0.824197,0.175803,0.906305,0.0936954,0.571638,0.428362,1,0,1,0,0.999923,7.7494e-05,0.927771,0.0722286,0.873838,0.126162,0.987661,0.0123387,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.75503,0.24497,0.862761,0.137239,0.706701,0.293299,0.6176,0.3824,0.675572,0.324428,0.873314,0.126686,0.984799,0.0152014,0.999741,0.000259322,0.827909,0.172091,0.717275,0.282725,0.749066,0.250934,0.802607,0.197393,0.741483,0.258517,0.83567,0.16433,1,0,1,0,0.999967,3.26575e-05,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.723227,0.276773,0.943434,0.0565663,0.511148,0.488852,0.680049,0.319951,0.991822,0.00817796,0.54959,0.45041,0.571035,0.428965,0.750338,0.249662,0.936633,0.0633674,0.647312,0.352688,0.560483,0.439517,0.609842,0.390158,0.533142,0.466858,0.592281,0.407719,0.689717,0.310283,0.580665,0.419335,0.660231,0.339769,0.70343,0.29657,0.61536,0.38464,0.677674,0.322326,0.731855,0.268145,0.708021,0.291979,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.997051,0.00294938,0.999618,0.000381537,1,0,1,0,0.560044,0.439956,0.571704,0.428296,0.562867,0.437133,0.533188,0.466812,0.555141,0.444859,0.527928,0.472072,0.503692,0.496308,0.760504,0.239496,0.553646,0.446354,0.554949,0.445051,0.553514,0.446486,0.553517,0.446483,0.76349,0.23651,0.823754,0.176246,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.920484,0.0795159,0.948818,0.0511818,0.933481,0.066519,0.855096,0.144904,0.852002,0.147998,0.943614,0.0563864,0.977866,0.0221343,1,0,0.727123,0.272877,0.682855,0.317145,0.675299,0.324701,0.670135,0.329865,0.687639,0.312361,0.705846,0.294154,0.757755,0.242245,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.988901,0.0110992,1,0,1,0,0.971991,0.0280091,0.980162,0.0198382,0.870798,0.129202,0.86577,0.13423,0.966502,0.0334976,1,0,1,0,1,0,0.932573,0.0674269,1,0,0.577916,0.422084,0.759183,0.240817,0.692562,0.307438,0.608792,0.391208,0.899899,0.100101,1,0,1,0,0.997356,0.00264391,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.987563,0.0124371,0.999739,0.000260949,1,0,0.997343,0.00265746,1,0,0.86689,0.13311,0.776179,0.223821,0.866798,0.133202,0.961009,0.0389909,0.999274,0.000725775,1,0,1,0,1,0,1,0,1,0,1,0,0.897649,0.102351,0.927763,0.0722366,0.998465,0.00153478,1,0,0.727593,0.272407,0.686428,0.313572,0.851884,0.148116,0.559172,0.440828,0.772326,0.227674,0.798426,0.201574,0.551026,0.448974,0.646386,0.353614,0.508856,0.491144,0.504058,0.495942,0.523938,0.476062,0.711445,0.288555,0.627196,0.372804,0.720872,0.279128,0.866563,0.133437,0.546809,0.453191,0.537826,0.462174,0.642806,0.357194,0.713044,0.286956,0.926761,0.0732393,0.937235,0.0627651,0.99503,0.00497039,0.784774,0.215226,0.958308,0.041692,0.993871,0.00612891,0.967288,0.0327124,0.999826,0.000173954,0.77967,0.22033,0.813485,0.186515,0.95481,0.0451899,1,0,0.702703,0.297297,0.552423,0.447577,0.585507,0.414493,0.562086,0.437914,0.839133,0.160867,0.652012,0.347988,0.581159,0.418841,0.559997,0.440003,0.536394,0.463606,0.697057,0.302943,0.63252,0.36748,0.506505,0.493495,0.898195,0.101805,0.710273,0.289727,0.74547,0.25453,0.819633,0.180367,0.958356,0.0416439,0.788175,0.211825,0.79343,0.20657,0.67398,0.32602,0.78761,0.21239,0.640555,0.359445,0.864424,0.135576,0.503906,0.496094,0.935596,0.0644036,1,0,0.961629,0.0383712,1,0,0.901581,0.0984192,1,0,0.90519,0.0948102,1,0,0.900893,0.0991068,1,0,0.900742,0.0992575,1,0,0.914162,0.0858375,1,0,0.947068,0.0529316,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.903226,0.0967745,1,0,0.973171,0.0268293,1,0,0.966513,0.0334874,0.96181,0.0381901,0.955332,0.0446677,0.988468,0.0115318,0.986223,0.0137774,1,0,1,0,1,0,1,0,1,0,0.969085,0.0309148,1,0,0.967292,0.0327078,0.980333,0.0196672,1,0,1,0,1,0,1,0,0.996089,0.00391115,1,0,0.959189,0.0408113,0.988731,0.0112693,0.678776,0.321224,0.85153,0.14847,0.750185,0.249815,0.682193,0.317807,0.717952,0.282048,0.760603,0.239397,0.592645,0.407355,0.734277,0.265723,0.943129,0.0568712,0.991975,0.00802548,0.884681,0.115319,0.759837,0.240163,0.936554,0.0634459,0.952625,0.0473748,0.947032,0.0529675,0.949508,0.0504924,0.944385,0.0556149,0.947149,0.052851,0.936439,0.0635615,0.970494,0.029506,0.840338,0.159662,0.948444,0.0515558,0.953972,0.0460284,0.965162,0.0348383,0.991951,0.00804947,0.620664,0.379336,0.993995,0.00600452,0.78685,0.21315,0.827509,0.172491,0.640176,0.359824,0.603224,0.396776,1,0,1,0,0.959929,0.0400713,0.864294,0.135706,0.812539,0.187461,0.780046,0.219954,1,0,1,0,0.936884,0.0631165,0.813211,0.186789,0.566873,0.433127,0.687212,0.312788,1,0,1,0,0.990968,0.00903227,0.996875,0.0031249,0.988959,0.0110405,0.979653,0.0203469,1,0,1,0,1,0,1,0,1,0,0.978916,0.0210844,0.596349,0.403651,0.594728,0.405272,0.522596,0.477404,0.548931,0.451069,0.501287,0.498713,0.531669,0.468331,0.570553,0.429447,0.608187,0.391813,0.530806,0.469194,0.599036,0.400964,0.543095,0.456905,0.57631,0.42369,0.589392,0.410608,0.572806,0.427194,0.820101,0.179899,0.591397,0.408603,0.54338,0.45662,0.673145,0.326855,0.542635,0.457365,0.5464,0.4536,0.576131,0.423869,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.590007,0.409993,0.855558,0.144442,1,0,0.654556,0.345444,0.967589,0.0324114,1,0,0.599456,0.400544,0.728332,0.271668,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.598136,0.401864,0.632009,0.367991,0.885044,0.114956,0.791038,0.208962,0.764147,0.235853,0.640097,0.359903,0.832035,0.167965,0.836767,0.163233,0.834535,0.165465,0.813026,0.186974,0.615166,0.384834,0.721987,0.278013,0.699672,0.300328,0.678276,0.321724,0.899184,0.100816,0.780479,0.219521,0.571386,0.428614,0.519299,0.480701,0.675922,0.324078,0.812874,0.187126,0.929027,0.0709732,1,0,1,0,0.715322,0.284678,0.783475,0.216525,0.766358,0.233642,0.734513,0.265487,0.604494,0.395506,0.555609,0.444391,0.715327,0.284673,0.639791,0.360209,0.688497,0.311503,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.835637,0.164363,0.72106,0.27894,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.75309,0.24691,0.886012,0.113988,0.683923,0.316077,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.802673,0.197327,0.860114,0.139886,0.780992,0.219008,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.861738,0.138262,0.907956,0.0920439,0.961422,0.0385783,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.617085,0.382915,0.628287,0.371713,0.690507,0.309493,0.629722,0.370278,0.664027,0.335973,0.619243,0.380757,0.69504,0.30496,0.686922,0.313078,0.691074,0.308926,0.68994,0.31006,0.711431,0.288569,0.897882,0.102118,0.898449,0.101551,0.890649,0.109351,0.877912,0.122088,1,0,0.876095,0.123905,1,0,0.734475,0.265525,0.77478,0.22522,0.800392,0.199608,0.898291,0.101709,1,0,1,0,0.553403,0.446597,0.524623,0.475377,0.50725,0.49275,0.518896,0.481104,0.645904,0.354096,0.862019,0.137981,0.532918,0.467082,0.701568,0.298432,0.5,0.5,0.806685,0.193315,0.566735,0.433265,0.805865,0.194135,0.752109,0.247891,0.646449,0.353551,0.629977,0.370023,0.745543,0.254457,0.963311,0.0366894,0.934851,0.0651487,0.844576,0.155424,0.671004,0.328996,0.894863,0.105137,0.819508,0.180492,0.735665,0.264335,0.80448,0.19552,0.537858,0.462142,0.597028,0.402972,0.880496,0.119504,0.753043,0.246957,0.850915,0.149085,0.841634,0.158366,0.843716,0.156284,0.684848,0.315152,0.715111,0.284889,0.735029,0.264971,0.88878,0.11122,0.879134,0.120866,0.883103,0.116897,0.748407,0.251593,0.729193,0.270807,0.715899,0.284101,0.893113,0.106887,1,0,1,0,0.844967,0.155033,0.834882,0.165118,0.82269,0.17731,0.941949,0.0580513,0.934456,0.0655444,0.926997,0.0730028,0.614806,0.385194,0.654179,0.345821,0.717185,0.282815,0.643867,0.356133,0.699089,0.300911,0.668022,0.331978,0.781892,0.218108,0.902982,0.0970175,0.772803,0.227197,0.527679,0.472321,0.540762,0.459238,0.528632,0.471368,0.557167,0.442833,0.809796,0.190204,0.688799,0.311201,0.633663,0.366337,0.595819,0.404181,0.648812,0.351188,0.514014,0.485986,0.648875,0.351125,0.618011,0.381989,0.501616,0.498384,0.650832,0.349168,0.656783,0.343217,0.695839,0.304161,0.77734,0.22266,0.909341,0.0906587,0.879499,0.120501,0.637139,0.362861,0.686913,0.313087,0.889034,0.110966,0.815531,0.184469,0.658304,0.341696,0.679744,0.320256,0.830819,0.169181,0.831215,0.168785,0.811471,0.188529,0.835203,0.164797,0.660105,0.339895,0.777696,0.222304,0.594475,0.405525,0.603653,0.396347,0.641081,0.358919,0.640197,0.359803,0.565803,0.434197,0.539632,0.460368,0.910417,0.0895832,0.941413,0.0585875,0.719202,0.280798,0.617479,0.382521,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.986154,0.0138461,0.988872,0.0111276,0.651659,0.348341,0.94862,0.0513804,0.924333,0.0756675,0.939798,0.0602024,0.884857,0.115143,0.727593,0.272407,0.929812,0.0701881,0.75445,0.24555,0.686428,0.313572,0.64086,0.35914,0.825192,0.174808,0.954577,0.0454233,0.901922,0.0980782,0.903344,0.0966561,0.927429,0.0725709,0.850712,0.149288,0.554077,0.445923,0.616901,0.383099,0.802332,0.197668,0.772381,0.227619,0.998827,0.00117283,0.950392,0.0496084,0.958281,0.0417189,0.712626,0.287374,0.735688,0.264312,0.934034,0.0659656,0.961941,0.0380593,0.845273,0.154727,0.517002,0.482998,0.739834,0.260166,1,0,0.571602,0.428398,0.980736,0.0192636,1,0,0.580728,0.419272,0.808389,0.191611,0.547705,0.452295,0.897566,0.102434,0.696474,0.303526,0.639144,0.360856,0.795221,0.204779,0.815455,0.184545,0.946528,0.0534717,0.851884,0.148116,0.558303,0.441697,0.672293,0.327707,0.755403,0.244597,0.559172,0.440828,0.582271,0.417729,0.65508,0.34492,0.772326,0.227674,0.997196,0.00280352,0.798426,0.201574,0.774035,0.225965,0.8455,0.1545,0.761366,0.238634,0.876059,0.123941,0.89507,0.10493,0.780281,0.219719,0.804331,0.195669,0.931641,0.0683588,0.61964,0.38036,0.964546,0.035454,0.865566,0.134434,0.982886,0.0171143,0.879991,0.120009,0.865429,0.134571,0.760434,0.239566,0.813705,0.186295,0.850323,0.149677,0.702289,0.297711,0.835642,0.164358,0.526514,0.473486,0.954326,0.0456741,0.910444,0.0895561,0.866731,0.133269,0.580902,0.419098,0.783737,0.216263,0.521295,0.478705,0.708167,0.291833,0.791892,0.208108,0.829571,0.170429,0.723871,0.276129,0.761092,0.238908,0.86223,0.13777,0.952623,0.0473766,0.924731,0.0752695,0.876226,0.123774,0.929145,0.0708547,0.782657,0.217343,0.77388,0.22612,0.786715,0.213285,0.642351,0.357649,0.640323,0.359677,0.641074,0.358926,0.624808,0.375192,0.680726,0.319274,0.525616,0.474384,0.955745,0.044255,0.811438,0.188562,0.568288,0.431712,0.545404,0.454596,0.828767,0.171233,0.684653,0.315347,0.551026,0.448974,0.646386,0.353614,0.508856,0.491144,0.504058,0.495942,0.523938,0.476062,0.814967,0.185033,0.762005,0.237995,0.9156,0.0843997,0.711445,0.288555,0.627196,0.372804,0.720872,0.279128,0.866563,0.133437,0.881663,0.118337,0.915638,0.084362,0.886439,0.113561,0.630772,0.369228,0.955817,0.044183,0.659628,0.340372,0.791609,0.208391,0.903962,0.0960382,0.937693,0.0623065,0.955472,0.0445282,0.893795,0.106205,0.918486,0.0815136,0.512581,0.487419,0.859777,0.140223,0.706895,0.293105,0.710434,0.289566,0.544851,0.455149,0.791965,0.208035,0.903661,0.0963389,0.616271,0.383729,0.612946,0.387054,0.546809,0.453191,0.960818,0.0391816,0.851296,0.148704,0.963242,0.0367583,0.781867,0.218133,0.58439,0.41561,0.537826,0.462174,0.864986,0.135014,0.771617,0.228383,0.964754,0.0352464,0.863586,0.136414,0.603446,0.396554,0.640724,0.359276,0.81533,0.18467,0.769701,0.230299,0.787527,0.212473,0.713044,0.286956,0.517822,0.482178,0.832769,0.167231,0.85153,0.14847,0.750185,0.249815,0.682193,0.317807,0.717952,0.282048,0.760603,0.239397,0.592645,0.407355,0.734277,0.265723,0.943129,0.0568712,0.991975,0.00802548,0.884681,0.115319,0.759837,0.240163,0.555213,0.444787,0.675925,0.324075,0.820101,0.179899,0.773511,0.226489,0.885939,0.114061,0.986288,0.0137125,0.591397,0.408603,0.54338,0.45662,0.673145,0.326855,0.542635,0.457365,0.5464,0.4536,0.63565,0.36435,0.761107,0.238893,0.950609,0.0493911,0.863664,0.136336,0.717998,0.282002,0.942183,0.0578171,0.750996,0.249004,1,0,1,0,0.794648,0.205352,0.922077,0.0779226,0.766412,0.233588,0.629977,0.370023,0.745543,0.254457,0.963311,0.0366894,0.934851,0.0651487,0.844576,0.155424,0.671004,0.328996,0.894863,0.105137,0.517944,0.482056,0.649306,0.350694,0.819508,0.180492,0.735665,0.264335,0.80448,0.19552,0.537858,0.462142,0.627655,0.372345,0.886903,0.113097,0.805202,0.194798,0.893499,0.106501,0.843716,0.156284,0.941949,0.0580513,0.934456,0.0655444,0.926997,0.0730028,0.881288,0.118712,0.777696,0.222304,0.654345,0.345655,0.603653,0.396347,0.641081,0.358919,0.640197,0.359803,0.565803,0.434197,0.539632,0.460368,0.910417,0.0895832,0.941413,0.0585875,0.719202,0.280798,0.617479,0.382521,0.851346,0.148654,0.846588,0.153412,0.791511,0.208489,0.669764,0.330236,0.567458,0.432542,0.540661,0.459339,0.535722,0.464278,0.553815,0.446185,0.56926,0.43074,0.542285,0.457715,0.683242,0.316758,0.55667,0.44333,0.583244,0.416756,0.713343,0.286657,0.519377,0.480623,0.728607,0.271393,0.760816,0.239184,0.84066,0.15934,0.826388,0.173612,0.796097,0.203903,0.629204,0.370796,0.723862,0.276138,0.825255,0.174745,0.880689,0.119311,0.881481,0.118519,0.893892,0.106108,0.726777,0.273223,0.539084,0.460916,0.59697,0.40303,0.573869,0.426131,0.504868,0.495132,0.713843,0.286157,0.892932,0.107068,0.861899,0.138101,0.921686,0.0783139,0.965565,0.0344347,0.949652,0.0503482,0.865252,0.134748,0.780015,0.219985,0.707397,0.292603,0.733587,0.266413,1,0,0.990182,0.00981752,1,0,0.829352,0.170648,0.958497,0.0415026,0.909889,0.0901113,1,0,0.772097,0.227903,0.897591,0.102409,1,0,0.843712,0.156288,0.802791,0.197209,0.684662,0.315338,0.806079,0.193921,0.519663,0.480337,0.594265,0.405735,0.882945,0.117055,1,0,0.900342,0.0996575,0.840169,0.159831,0.545694,0.454306,0.802777,0.197223,0.517537,0.482463,0.734566,0.265434,0.934421,0.065579,0.958104,0.0418956,0.838306,0.161694,0.830688,0.169312,0.616278,0.383722,0.64636,0.35364,0.849348,0.150652,0.773917,0.226083,0.627272,0.372728,0.761568,0.238432,0.523778,0.476222,0.544061,0.455939,0.554368,0.445632,0.790117,0.209883,0.558246,0.441754,0.789682,0.210318,0.589569,0.410431,0.820633,0.179367,0.651002,0.348998,0.779536,0.220464,0.546243,0.453757,0.571597,0.428403,0.571359,0.428641,0.827803,0.172197,0.562994,0.437006,0.818968,0.181032,0.787439,0.212561,0.678878,0.321122,0.560391,0.439609,0.986048,0.0139524,0.961838,0.0381625,0.761633,0.238367,1,0,1,0,0.882883,0.117117,0.940192,0.0598082,0.792944,0.207056,0.707794,0.292206,0.640319,0.359681,0.857547,0.142453,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.924743,0.0752569,0.845077,0.154923,0.90227,0.0977302,0.796665,0.203335,0.96156,0.0384398,0.92312,0.0768797,0.997325,0.00267516,0.99465,0.00535032,0.923791,0.076209,0.843831,0.156169,0.913961,0.0860393,0.825423,0.174577,0.981091,0.0189091,0.962134,0.0378661,0.912272,0.0877276,0.818474,0.181526,0.95051,0.0494902,0.90102,0.0989803,0.944859,0.0551408,0.889119,0.110881,0.874546,0.125454,0.73917,0.26083,0.919962,0.0800382,0.836754,0.163246,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.943427,0.0565732,1,0,0.89889,0.10111,0.995374,0.00462598,0.948188,0.0518117,1,0,0.864128,0.135872,0.818643,0.181357,0.89313,0.10687,0.651659,0.348341,0.94862,0.0513804,0.924333,0.0756675,0.939798,0.0602024,0.884857,0.115143,0.727593,0.272407,0.929812,0.0701881,0.75445,0.24555,0.686428,0.313572,0.64086,0.35914,0.825192,0.174808,0.954577,0.0454233,0.952746,0.0472543,0.901922,0.0980782,0.903344,0.0966561,0.927429,0.0725709,0.850712,0.149288,0.554077,0.445923,0.616901,0.383099,0.802332,0.197668,0.772381,0.227619,0.998827,0.00117283,0.950392,0.0496084,0.712626,0.287374,0.735688,0.264312,0.934034,0.0659656,0.961941,0.0380593,0.739834,0.260166,1,0,0.571602,0.428398,0.980736,0.0192636,0.580728,0.419272,0.808389,0.191611,0.547705,0.452295,0.897566,0.102434,0.696474,0.303526,0.639144,0.360856,0.795221,0.204779,0.815455,0.184545,0.946528,0.0534717,0.851884,0.148116,0.558303,0.441697,0.672293,0.327707,0.755403,0.244597,0.559172,0.440828,0.582271,0.417729,0.65508,0.34492,0.772326,0.227674,0.997196,0.00280352,0.798426,0.201574,0.774035,0.225965,0.8455,0.1545,0.761366,0.238634,0.876059,0.123941,0.89507,0.10493,0.780281,0.219719,0.804331,0.195669,0.931641,0.0683588,0.61964,0.38036,0.964546,0.035454,0.865566,0.134434,0.982886,0.0171143,0.879991,0.120009,0.865429,0.134571,0.760434,0.239566,0.813705,0.186295,0.850323,0.149677,0.749689,0.250311,0.702289,0.297711,0.835642,0.164358,0.526514,0.473486,0.954326,0.0456741,0.910444,0.0895561,0.866731,0.133269,0.580902,0.419098,0.783737,0.216263,0.521295,0.478705,0.708167,0.291833,0.791892,0.208108,0.829571,0.170429,0.723871,0.276129,0.761092,0.238908,0.86223,0.13777,0.952623,0.0473766,0.924731,0.0752695,0.876226,0.123774,0.92318,0.0768203,0.929145,0.0708547,0.782657,0.217343,0.77388,0.22612,0.786715,0.213285,0.642351,0.357649,0.640323,0.359677,0.641074,0.358926,0.624808,0.375192,0.680726,0.319274,0.525616,0.474384,0.955745,0.044255,0.811438,0.188562,0.990827,0.00917253,0.568288,0.431712,0.545404,0.454596,0.828767,0.171233,0.684653,0.315347,0.551026,0.448974,0.646386,0.353614,0.508856,0.491144,0.504058,0.495942,0.523938,0.476062,0.814967,0.185033,0.762005,0.237995,0.9156,0.0843997,0.711445,0.288555,0.627196,0.372804,0.720872,0.279128,0.866563,0.133437,0.881663,0.118337,0.915638,0.084362,0.877358,0.122642,0.886439,0.113561,0.630772,0.369228,0.955817,0.044183,0.659628,0.340372,0.791609,0.208391,0.903962,0.0960382,0.937693,0.0623065,0.955472,0.0445282,0.893795,0.106205,0.918486,0.0815136,0.512581,0.487419,0.859777,0.140223,0.706895,0.293105,0.710434,0.289566,0.544851,0.455149,0.791965,0.208035,0.903661,0.0963389,0.616271,0.383729,0.612946,0.387054,0.546809,0.453191,0.960818,0.0391816,0.851296,0.148704,0.963242,0.0367583,0.781867,0.218133,0.58439,0.41561,0.537826,0.462174,0.864986,0.135014,0.771617,0.228383,0.964754,0.0352464,0.863586,0.136414,0.603446,0.396554,0.640724,0.359276,0.81533,0.18467,0.769701,0.230299,0.787527,0.212473,0.713044,0.286956,0.517822,0.482178,0.832769,0.167231,0.85153,0.14847,0.750185,0.249815,0.682193,0.317807,0.717952,0.282048,0.760603,0.239397,0.592645,0.407355,0.734277,0.265723,0.943129,0.0568712,0.991975,0.00802548,0.884681,0.115319,0.759837,0.240163,0.555213,0.444787,0.675925,0.324075,0.820101,0.179899,0.773511,0.226489,0.885939,0.114061,0.986288,0.0137125,0.591397,0.408603,0.54338,0.45662,0.673145,0.326855,0.542635,0.457365,0.5464,0.4536,0.63565,0.36435,0.761107,0.238893,0.950609,0.0493911,0.863664,0.136336,0.717998,0.282002,0.942183,0.0578171,0.750996,0.249004,1,0,1,0,0.794648,0.205352,0.922077,0.0779226,0.629977,0.370023,0.745543,0.254457,0.963311,0.0366894,0.934851,0.0651487,0.844576,0.155424,0.671004,0.328996,0.894863,0.105137,0.517944,0.482056,0.649306,0.350694,0.819508,0.180492,0.735665,0.264335,0.80448,0.19552,0.537858,0.462142,0.627655,0.372345,0.886903,0.113097,0.805202,0.194798,0.893499,0.106501,0.843716,0.156284,0.941949,0.0580513,0.934456,0.0655444,0.926997,0.0730028,0.881288,0.118712,0.777696,0.222304,0.654345,0.345655,0.603653,0.396347,0.641081,0.358919,0.640197,0.359803,0.565803,0.434197,0.539632,0.460368,0.910417,0.0895832,0.941413,0.0585875,0.719202,0.280798,0.617479,0.382521,0.851346,0.148654,0.846588,0.153412,0.791511,0.208489,0.669764,0.330236,0.567458,0.432542,0.540661,0.459339,0.535722,0.464278,0.553815,0.446185,0.56926,0.43074,0.542285,0.457715,0.683242,0.316758,0.55667,0.44333,0.583244,0.416756,0.713343,0.286657,0.519377,0.480623,0.728607,0.271393,0.760816,0.239184,0.84066,0.15934,0.826388,0.173612,0.87608,0.12392,0.796097,0.203903,0.629204,0.370796,0.723862,0.276138,0.825255,0.174745,0.880689,0.119311,0.881481,0.118519,0.893892,0.106108,0.726777,0.273223,0.539084,0.460916,0.59697,0.40303,0.573869,0.426131,0.504868,0.495132,0.713843,0.286157,0.892932,0.107068,0.861899,0.138101,0.921686,0.0783139,0.965565,0.0344347,0.949652,0.0503482,0.865252,0.134748,0.780015,0.219985,0.707397,0.292603,0.613051,0.386949,0.733587,0.266413,1,0,0.990182,0.00981752,1,0,0.829352,0.170648,0.958497,0.0415026,0.909889,0.0901113,1,0,0.611065,0.388935,0.897591,0.102409,1,0,0.843712,0.156288,0.757786,0.242214,0.580797,0.419203,0.806079,0.193921,0.787365,0.212635,0.620887,0.379113,0.966423,0.0335768,1,0,0.900342,0.0996575,0.840169,0.159831,0.663556,0.336444,0.802777,0.197223,0.568744,0.431256,0.517537,0.482463,0.734566,0.265434,0.934421,0.065579,0.958104,0.0418956,0.790395,0.209605,0.838306,0.161694,0.830688,0.169312,0.616278,0.383722,0.64636,0.35364,0.849348,0.150652,0.773917,0.226083,0.627272,0.372728,0.761568,0.238432,0.523778,0.476222,0.544061,0.455939,0.554368,0.445632,0.790117,0.209883,0.558246,0.441754,0.789682,0.210318,0.589569,0.410431,0.820633,0.179367,0.651002,0.348998,0.779536,0.220464,0.546243,0.453757,0.571597,0.428403,0.571359,0.428641,0.827803,0.172197,0.562994,0.437006,0.818968,0.181032,0.787439,0.212561,0.678878,0.321122,0.560391,0.439609,0.986048,0.0139524,0.961838,0.0381625,0.761633,0.238367,1,0,1,0,0.882883,0.117117,0.940192,0.0598082,0.666955,0.333045,0.707794,0.292206,0.621568,0.378432,0.589768,0.410232,0.608086,0.391914,0.86397,0.13603,0.712251,0.287749,0.551767,0.448233,0.616577,0.383423,0.582075,0.417925,0.618609,0.381391,0.585519,0.414481,0.827821,0.172179,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.924743,0.0752569,0.845077,0.154923,0.90227,0.0977302,0.796665,0.203335,0.96156,0.0384398,0.92312,0.0768797,0.997325,0.00267516,0.99465,0.00535032,0.923791,0.076209,0.843831,0.156169,0.913961,0.0860393,0.825423,0.174577,0.981091,0.0189091,0.962134,0.0378661,0.912272,0.0877276,0.818474,0.181526,0.95051,0.0494902,0.90102,0.0989803,0.944859,0.0551408,0.889119,0.110881,0.874546,0.125454,0.73917,0.26083,0.919962,0.0800382,0.836754,0.163246,0.910001,0.0899987,0.607431,0.392569,0.751915,0.248085,0.668043,0.331957,0.925958,0.0740424,0.516233,0.483767,0.930532,0.0694682,0.915291,0.0847091,0.845395,0.154605,0.712449,0.287551,0.652998,0.347002,0.910001,0.0899987,0.607431,0.392569,0.751915,0.248085,0.668043,0.331957,0.925958,0.0740424,0.516233,0.483767,0.930532,0.0694682,0.915291,0.0847091,0.845395,0.154605,0.712449,0.287551,0.652998,0.347002,0.884698,0.115302,0.628689,0.371311,0.922262,0.0777377,0.723004,0.276996,0.765959,0.234041,0.687655,0.312345,0.942139,0.0578613,0.603446,0.396554,0.948243,0.0517573,0.932402,0.0675984,0.855359,0.144641,0.811922,0.188078,0.571631,0.428369,0.922262,0.0777377,0.723004,0.276996,0.765959,0.234041,0.687655,0.312345,0.942139,0.0578613,0.603446,0.396554,0.948243,0.0517573,0.932402,0.0675984,0.855359,0.144641,0.811922,0.188078,0.571631,0.428369,0.890138,0.109862,0.62149,0.37851,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.609322,0.390678,0.710427,0.289573,0.514586,0.485414,0.946261,0.0537393,0.88783,0.11217,0.881407,0.118593,0.882089,0.117911,0.866432,0.133568,0.860562,0.139438,0.620009,0.379991,0.584308,0.415692,0.706638,0.293362,0.831857,0.168143,0.945606,0.054394,0.718306,0.281694,0.705104,0.294896,0.710642,0.289358,0.849479,0.150521,0.682738,0.317262,0.795195,0.204805,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.934967,0.0650325,1,0,1,0,1,0,1,0,1,0,1,0,0.994616,0.00538384,1,0,1,0,0.995937,0.00406346,0.999184,0.000816002,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.896204,0.103796,0.987052,0.0129476,0.999771,0.000229338,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.940864,0.0591356,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.91336,0.08664,0.930423,0.0695767,0.776128,0.223872,0.630263,0.369737,0.649379,0.350621,0.5881,0.4119,0.892073,0.107927,0.823407,0.176593,0.630791,0.369209,0.677759,0.322241,1,0,1,0,1,0,1,0,1,0,1,0,0.905281,0.0947191,0.62488,0.37512,0.851693,0.148307,0.961064,0.0389356,0.501241,0.498759,0.662229,0.337771,0.743063,0.256937,1,0,0.889405,0.110595,0.711465,0.288535,0.525426,0.474574,0.957316,0.0426845,0.577788,0.422212,0.51465,0.48535,0.711039,0.288961,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.90011,0.0998902,0.923219,0.0767814,0.918924,0.0810762,0.907364,0.0926356,0.898359,0.101641,0.966815,0.0331847,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.609322,0.390678,0.710427,0.289573,0.514586,0.485414,0.946261,0.0537393,0.88783,0.11217,0.881407,0.118593,0.882089,0.117911,0.866432,0.133568,0.860562,0.139438,0.620009,0.379991,0.584308,0.415692,0.706638,0.293362,0.831857,0.168143,0.945606,0.054394,0.718306,0.281694,0.705104,0.294896,0.710642,0.289358,0.849479,0.150521,0.682738,0.317262,0.795195,0.204805,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.934967,0.0650325,1,0,1,0,1,0,1,0,1,0,1,0,0.994616,0.00538384,1,0,1,0,0.995937,0.00406346,0.999184,0.000816002,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.896204,0.103796,0.987052,0.0129476,0.999771,0.000229338,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.940864,0.0591356,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.91336,0.08664,0.930423,0.0695767,0.776128,0.223872,0.630263,0.369737,0.649379,0.350621,0.5881,0.4119,0.892073,0.107927,0.823407,0.176593,0.630791,0.369209,0.677759,0.322241,1,0,1,0,1,0,1,0,1,0,1,0,0.905281,0.0947191,0.62488,0.37512,0.851693,0.148307,0.961064,0.0389356,0.501241,0.498759,0.662229,0.337771,0.743063,0.256937,1,0,0.889405,0.110595,0.711465,0.288535,0.525426,0.474574,0.957316,0.0426845,0.577788,0.422212,0.51465,0.48535,0.711039,0.288961,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.90011,0.0998902,0.923219,0.0767814,0.918924,0.0810762,0.907364,0.0926356,0.898359,0.101641,0.966815,0.0331847,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.609322,0.390678,0.710427,0.289573,0.514586,0.485414,0.946261,0.0537393,0.88783,0.11217,0.881407,0.118593,0.882089,0.117911,0.866432,0.133568,0.860562,0.139438,0.620009,0.379991,0.584308,0.415692,0.706638,0.293362,0.831857,0.168143,0.945606,0.054394,0.718306,0.281694,0.705104,0.294896,0.710642,0.289358,0.849479,0.150521,0.682738,0.317262,0.795195,0.204805,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.934967,0.0650325,1,0,1,0,1,0,1,0,1,0,1,0,0.994616,0.00538384,1,0,1,0,0.995937,0.00406346,0.999184,0.000816002,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.896204,0.103796,0.987052,0.0129476,0.999771,0.000229338,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.940864,0.0591356,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.91336,0.08664,0.930423,0.0695767,0.776128,0.223872,0.630263,0.369737,0.649379,0.350621,0.5881,0.4119,0.892073,0.107927,0.823407,0.176593,0.630791,0.369209,0.677759,0.322241,1,0,1,0,1,0,1,0,1,0,1,0,0.905281,0.0947191,0.62488,0.37512,0.851693,0.148307,0.961064,0.0389356,0.501241,0.498759,0.662229,0.337771,0.743063,0.256937,1,0,0.889405,0.110595,0.711465,0.288535,0.525426,0.474574,0.957316,0.0426845,0.577788,0.422212,0.51465,0.48535,0.711039,0.288961,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.90011,0.0998902,0.923219,0.0767814,0.918924,0.0810762,0.907364,0.0926356,0.898359,0.101641,0.966815,0.0331847,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.609322,0.390678,0.710427,0.289573,0.514586,0.485414,0.946261,0.0537393,0.88783,0.11217,0.881407,0.118593,0.882089,0.117911,0.866432,0.133568,0.860562,0.139438,0.620009,0.379991,0.584308,0.415692,0.706638,0.293362,0.831857,0.168143,0.945606,0.054394,0.718306,0.281694,0.705104,0.294896,0.710642,0.289358,0.849479,0.150521,0.682738,0.317262,0.795195,0.204805,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.934967,0.0650325,1,0,1,0,1,0,1,0,1,0,1,0,0.994616,0.00538384,1,0,1,0,0.995937,0.00406346,0.999184,0.000816002,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.896204,0.103796,0.987052,0.0129476,0.999771,0.000229338,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.940864,0.0591356,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.91336,0.08664,0.930423,0.0695767,0.776128,0.223872,0.630263,0.369737,0.649379,0.350621,0.5881,0.4119,0.892073,0.107927,0.823407,0.176593,0.630791,0.369209,0.677759,0.322241,1,0,1,0,1,0,1,0,1,0,1,0,0.905281,0.0947191,0.62488,0.37512,0.851693,0.148307,0.961064,0.0389356,0.501241,0.498759,0.662229,0.337771,0.743063,0.256937,1,0,0.889405,0.110595,0.711465,0.288535,0.525426,0.474574,0.957316,0.0426845,0.577788,0.422212,0.51465,0.48535,0.711039,0.288961,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.90011,0.0998902,0.923219,0.0767814,0.918924,0.0810762,0.907364,0.0926356,0.898359,0.101641,0.966815,0.0331847,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0], - - "animation" : { - "name" : "Action", - "fps" : 25, - "length" : 2.0, - "hierarchy" : [ - { - "parent" : -1, - "keys" : [ - { - "time":0, - "pos" :[0.532239,5.88733,-0.119685], - "rot" :[-0.451519,0.544179,0.544179,0.451519], - "scl" :[1,1,1] - }, - { - "time":0.08, - "pos" :[0.532239,5.76655,-0.393084] - }, - { - "time":0.16, - "pos" :[0.532239,5.50488,-0.850525], - "rot" :[-0.451519,0.544179,0.544179,0.451519] - }, - { - "time":0.24, - "pos" :[0.532239,5.32189,-0.739237], - "rot" :[-0.446554,0.548261,0.548261,0.446554] - }, - { - "time":0.32, - "pos" :[0.532239,5.15073,0.535289], - "rot" :[-0.40942,0.57652,0.57652,0.40942] - }, - { - "time":0.4, - "pos" :[0.532239,5.04701,1.82609], - "rot" :[-0.367398,0.604168,0.604168,0.367398] - }, - { - "time":0.48, - "pos" :[0.470168,5.09969,2.01506], - "rot" :[-0.351552,0.612942,0.609913,0.358775] - }, - { - "time":0.56, - "pos" :[0.0273627,5.52497,2.01506], - "rot" :[-0.324444,0.624242,0.601723,0.378138] - }, - { - "time":0.64, - "pos" :[-0.404215,5.80996,2.01506], - "rot" :[-0.309872,0.629591,0.595542,0.391056] - }, - { - "time":0.72, - "pos" :[-0.653188,5.83471,2.01506] - }, - { - "time":0.8, - "pos" :[-0.790153,5.84127,2.01506] - }, - { - "time":0.88, - "pos" :[-0.804309,5.9449,2.01506] - }, - { - "time":0.96, - "pos" :[-0.804309,6.36728,2.01506] - }, - { - "time":1.04, - "pos" :[-0.804309,6.60838,2.01506] - }, - { - "time":1.12, - "pos" :[-0.804309,5.81645,3.02296] - }, - { - "time":1.2, - "pos" :[-0.192083,5.60773,2.45543] - }, - { - "time":1.28, - "pos" :[-0.192083,5.46847,2.56826] - }, - { - "time":1.36, - "pos" :[-0.192083,5.35743,2.86158] - }, - { - "time":1.44, - "pos" :[-0.192083,5.29469,3.15675] - }, - { - "time":1.52, - "pos" :[-0.192083,5.27752,3.27128] - }, - { - "time":1.6, - "pos" :[-0.192083,5.29925,2.78284] - }, - { - "time":1.68, - "pos" :[-0.192083,5.37089,1.61542] - }, - { - "time":1.76, - "pos" :[-0.192083,5.47029,0.689321], - "rot" :[-0.309872,0.629591,0.595542,0.391056] - }, - { - "time":1.84, - "pos" :[-0.0173923,5.62382,0.204412], - "rot" :[-0.345151,0.610846,0.584942,0.406916] - }, - { - "time":1.92, - "pos" :[0.356177,5.81128,-0.0579393], - "rot" :[-0.418591,0.566563,0.558313,0.438263] - }, - { - "time":2, - "pos" :[0.532239,5.88733,-0.119685], - "rot" :[-0.451519,0.544179,0.544179,0.451519], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 0, - "keys" : [ - { - "time":0, - "pos" :[-1.57164e-23,0,-2.77555e-17], - "rot" :[0.712202,-8.35191e-08,-7.45351e-08,0.701975], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-1.57164e-23,0,-2.77555e-17], - "rot" :[0.712202,-8.35191e-08,-7.45351e-08,0.701975], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 1, - "keys" : [ - { - "time":0, - "pos" :[-1.30151e-08,0.582952,-2.06714e-08], - "rot" :[0.0053135,0.295534,-0.00591876,0.955299], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.00529796,0.304419,-0.00588739,0.952505] - }, - { - "time":0.16, - "rot" :[0.00525069,0.32983,-0.00587316,0.944007] - }, - { - "time":0.24, - "rot" :[0.00517958,0.364363,-0.006056,0.931223] - }, - { - "time":0.32, - "rot" :[0.00510931,0.395126,-0.00662046,0.918589] - }, - { - "time":0.4, - "rot" :[0.00506779,0.412032,-0.00763348,0.911123] - }, - { - "time":0.48, - "rot" :[0.0042707,0.412404,-0.0119347,0.910913] - }, - { - "time":0.56, - "rot" :[-0.000824899,0.401064,-0.0319739,0.915492] - }, - { - "time":0.64, - "rot" :[-0.00384756,0.394231,-0.0435399,0.917971] - }, - { - "time":0.72, - "rot" :[0.00249561,0.39483,-0.0208876,0.918514] - }, - { - "time":0.8, - "rot" :[0.0272542,0.395332,0.0173402,0.91797] - }, - { - "time":0.88, - "rot" :[0.0709535,0.392199,0.0142013,0.91703] - }, - { - "time":0.96, - "rot" :[0.147535,0.371695,-0.0443084,0.915485] - }, - { - "time":1.04, - "rot" :[0.184133,0.358363,-0.0788597,0.91184] - }, - { - "time":1.12, - "rot" :[0.0810795,0.386897,-0.00300863,0.918547] - }, - { - "time":1.2, - "rot" :[-0.117331,0.411621,0.0666999,0.901306] - }, - { - "time":1.28, - "rot" :[-0.11721,0.408029,0.0589603,0.903492] - }, - { - "time":1.36, - "rot" :[-0.116111,0.398951,0.040826,0.908675] - }, - { - "time":1.44, - "rot" :[-0.113173,0.386407,0.0183452,0.915175] - }, - { - "time":1.52, - "rot" :[-0.107817,0.372015,-0.00396818,0.921935] - }, - { - "time":1.6, - "rot" :[-0.0996785,0.357144,-0.0227112,0.928438] - }, - { - "time":1.68, - "rot" :[-0.0885329,0.34293,-0.0353293,0.934512] - }, - { - "time":1.76, - "rot" :[-0.0742355,0.330269,-0.0399112,0.940116] - }, - { - "time":1.84, - "rot" :[-0.046732,0.31598,-0.0317225,0.947083] - }, - { - "time":1.92, - "rot" :[-0.00997895,0.301207,-0.0141283,0.953402] - }, - { - "time":2, - "pos" :[-1.30151e-08,0.582952,-2.06714e-08], - "rot" :[0.0053135,0.295534,-0.00591876,0.955299], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 2, - "keys" : [ - { - "time":0, - "pos" :[-3.0129e-08,2.38045,-2.30027e-08], - "rot" :[-0.131731,-1.51336e-08,-2.32435e-08,0.991285], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-3.0129e-08,2.38045,-2.30027e-08], - "rot" :[-0.131731,-1.51336e-08,-2.32435e-08,0.991285], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 3, - "keys" : [ - { - "time":0, - "pos" :[-3.54088e-08,0.515185,1.60674e-07], - "rot" :[-0.00435289,0.429287,0.105399,0.896987], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.00394747,0.419998,0.103285,0.90162] - }, - { - "time":0.16, - "rot" :[-0.00271496,0.391305,0.0964193,0.915192] - }, - { - "time":0.24, - "rot" :[-0.000718728,0.34353,0.0841782,0.935361] - }, - { - "time":0.32, - "rot" :[0.00180067,0.280811,0.0666535,0.957444] - }, - { - "time":0.4, - "rot" :[0.00443336,0.211768,0.0451022,0.976269] - }, - { - "time":0.48, - "rot" :[0.00675124,0.146652,0.0215947,0.988929] - }, - { - "time":0.56, - "rot" :[0.00847564,0.0931322,-0.00196261,0.995616] - }, - { - "time":0.64, - "rot" :[0.00951096,0.0546683,-0.0244591,0.99816] - }, - { - "time":0.72, - "rot" :[0.0100168,0.029264,-0.0568684,0.997903] - }, - { - "time":0.8, - "rot" :[0.010113,0.0189597,-0.0883627,0.995857] - }, - { - "time":0.88, - "rot" :[-0.00145283,0.0191277,-0.0899307,0.995763] - }, - { - "time":0.96, - "rot" :[-0.0757079,0.0248779,-0.0710321,0.994286] - }, - { - "time":1.04, - "rot" :[-0.119435,0.028202,-0.0596036,0.99065] - }, - { - "time":1.12, - "rot" :[0.0114923,0.0210231,-0.0739857,0.996971] - }, - { - "time":1.2, - "rot" :[0.14225,0.0134773,-0.0870774,0.985901] - }, - { - "time":1.28, - "rot" :[0.14037,0.0150311,-0.0853976,0.986295] - }, - { - "time":1.36, - "rot" :[0.134349,0.02128,-0.0797444,0.987491] - }, - { - "time":1.44, - "rot" :[0.123961,0.0350258,-0.0693593,0.98924] - }, - { - "time":1.52, - "rot" :[0.109763,0.0588125,-0.0541071,0.99074] - }, - { - "time":1.6, - "rot" :[0.0931184,0.0935775,-0.0347799,0.990637] - }, - { - "time":1.68, - "rot" :[0.0756281,0.13814,-0.0127955,0.987438] - }, - { - "time":1.76, - "rot" :[0.0585396,0.190003,0.010405,0.979982] - }, - { - "time":1.84, - "rot" :[0.0346154,0.2784,0.0461126,0.958733] - }, - { - "time":1.92, - "rot" :[0.00657572,0.387148,0.0888567,0.917703] - }, - { - "time":2, - "pos" :[-3.54088e-08,0.515185,1.60674e-07], - "rot" :[-0.00435289,0.429287,0.105399,0.896987], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 2, - "keys" : [ - { - "time":0, - "pos" :[-0.448867,2.34411,-0.383928], - "rot" :[-0.465891,0.476579,0.668913,0.3292], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.474037,0.362978,0.708106,0.376991] - }, - { - "time":0.16, - "rot" :[-0.469561,0.156418,0.747248,0.44347] - }, - { - "time":0.24, - "rot" :[-0.465928,0.13488,0.749925,0.449813] - }, - { - "time":0.32, - "rot" :[-0.456083,0.22268,0.745582,0.431868] - }, - { - "time":0.4, - "rot" :[-0.426853,0.385649,0.720266,0.387671] - }, - { - "time":0.48, - "rot" :[-0.377711,0.557875,0.664756,0.322815] - }, - { - "time":0.56, - "rot" :[-0.333839,0.666903,0.609442,0.269021] - }, - { - "time":0.64, - "rot" :[-0.317868,0.700252,0.588344,0.249916] - }, - { - "time":0.72, - "rot" :[-0.362889,0.635845,0.626712,0.266915] - }, - { - "time":0.8, - "rot" :[-0.442885,0.508403,0.671572,0.307197] - }, - { - "time":0.88, - "rot" :[-0.483829,0.470836,0.646579,0.355187] - }, - { - "time":0.96, - "rot" :[-0.520453,0.504807,0.550341,0.414033] - }, - { - "time":1.04, - "rot" :[-0.532514,0.529272,0.495323,0.436984] - }, - { - "time":1.12, - "rot" :[-0.573041,0.455095,0.574274,0.367044] - }, - { - "time":1.2, - "rot" :[-0.596581,0.376717,0.648398,0.28593] - }, - { - "time":1.28, - "rot" :[-0.584155,0.38499,0.65724,0.280324] - }, - { - "time":1.36, - "rot" :[-0.569333,0.395785,0.664378,0.278955] - }, - { - "time":1.44, - "rot" :[-0.552471,0.408724,0.669593,0.281719] - }, - { - "time":1.52, - "rot" :[-0.534303,0.423026,0.67275,0.288055] - }, - { - "time":1.6, - "rot" :[-0.516,0.437536,0.673929,0.29686] - }, - { - "time":1.68, - "rot" :[-0.499016,0.450931,0.673517,0.306624] - }, - { - "time":1.76, - "rot" :[-0.484756,0.462059,0.672159,0.315776] - }, - { - "time":1.84, - "rot" :[-0.474235,0.470182,0.670575,0.323048] - }, - { - "time":1.92, - "rot" :[-0.467937,0.475007,0.669361,0.327641] - }, - { - "time":2, - "pos" :[-0.448867,2.34411,-0.383928], - "rot" :[-0.465891,0.476579,0.668913,0.3292], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 5, - "keys" : [ - { - "time":0, - "pos" :[-1.09173e-07,1.23321,-3.06239e-07], - "rot" :[0.0939868,0.307984,-0.807977,0.493442], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.0335386,0.478979,-0.700569,0.52788] - }, - { - "time":0.16, - "rot" :[-0.164457,0.692023,-0.424384,0.560319] - }, - { - "time":0.24, - "rot" :[-0.0537267,0.695706,-0.358378,0.620219] - }, - { - "time":0.32, - "rot" :[0.177156,0.343749,-0.267565,0.882531] - }, - { - "time":0.4, - "rot" :[-0.215453,-0.175263,-0.522716,0.805997] - }, - { - "time":0.48, - "rot" :[-0.361652,-0.2243,-0.604805,0.673133] - }, - { - "time":0.56, - "rot" :[-0.41292,-0.160288,-0.56496,0.69615] - }, - { - "time":0.64, - "rot" :[-0.447609,-0.221416,-0.400206,0.768412] - }, - { - "time":0.72, - "rot" :[-0.29775,-0.0297398,-0.509255,0.806921] - }, - { - "time":0.8, - "rot" :[-0.0537614,0.0425642,-0.832124,0.550334] - }, - { - "time":0.88, - "rot" :[0.246944,0.0283479,-0.841907,0.478966] - }, - { - "time":0.96, - "rot" :[0.334157,-0.229622,-0.601729,0.688139] - }, - { - "time":1.04, - "rot" :[0.334323,-0.370004,-0.591153,0.633927] - }, - { - "time":1.12, - "rot" :[-0.0739248,-0.167362,-0.68248,0.707634] - }, - { - "time":1.2, - "rot" :[-0.150305,0.42227,-0.492036,0.746323] - }, - { - "time":1.28, - "rot" :[-0.142154,0.466039,-0.522103,0.700006] - }, - { - "time":1.36, - "rot" :[-0.141862,0.469591,-0.538453,0.685148] - }, - { - "time":1.44, - "rot" :[-0.137578,0.467386,-0.544927,0.682406] - }, - { - "time":1.52, - "rot" :[-0.129873,0.483966,-0.562752,0.657434] - }, - { - "time":1.6, - "rot" :[-0.043735,0.528905,-0.590456,0.608037] - }, - { - "time":1.68, - "rot" :[0.108288,0.545709,-0.605321,0.569265] - }, - { - "time":1.76, - "rot" :[0.192857,0.484896,-0.636118,0.568363] - }, - { - "time":1.84, - "rot" :[0.173992,0.392282,-0.70965,0.558783] - }, - { - "time":1.92, - "rot" :[0.114094,0.328588,-0.781404,0.518094] - }, - { - "time":2, - "pos" :[-1.09173e-07,1.23321,-3.06239e-07], - "rot" :[0.0939868,0.307984,-0.807977,0.493442], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 6, - "keys" : [ - { - "time":0, - "pos" :[2.97193e-07,1.84572,-2.76075e-07], - "rot" :[-0.00951776,-0.0244582,-0.465153,0.884841], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.00732432,-0.0252021,-0.541355,0.840385] - }, - { - "time":0.16, - "rot" :[-0.00557836,-0.0256451,-0.597726,0.801271] - }, - { - "time":0.24, - "rot" :[-0.00419193,-0.0259079,-0.639928,0.767986] - }, - { - "time":0.32, - "rot" :[0.00595133,-0.0255612,-0.883465,0.467761] - }, - { - "time":0.4, - "rot" :[0.00274959,-0.0261004,-0.818947,0.57327] - }, - { - "time":0.48, - "rot" :[0.00135282,-0.02621,-0.787187,0.616156] - }, - { - "time":0.56, - "rot" :[0.005617,-0.0256367,-0.877281,0.47926] - }, - { - "time":0.64, - "rot" :[0.00496337,-0.0257713,-0.864812,0.501409] - }, - { - "time":0.72, - "rot" :[0.00167825,-0.0261912,-0.794779,0.606331] - }, - { - "time":0.8, - "rot" :[-0.0098095,-0.0243426,-0.45454,0.890339] - }, - { - "time":0.88, - "rot" :[-0.0134564,-0.0225325,-0.311364,0.949928] - }, - { - "time":0.96, - "rot" :[-0.00851641,-0.0248246,-0.500712,0.865216] - }, - { - "time":1.04, - "rot" :[-0.0123502,-0.0231573,-0.356973,0.933746] - }, - { - "time":1.12, - "rot" :[-0.0107973,-0.0239209,-0.417732,0.908192] - }, - { - "time":1.2, - "rot" :[-0.00696893,-0.0253027,-0.553128,0.832683] - }, - { - "time":1.28, - "rot" :[-0.00767133,-0.0250986,-0.529709,0.847774] - }, - { - "time":1.36, - "rot" :[-0.00792204,-0.0250206,-0.521201,0.853031] - }, - { - "time":1.44, - "rot" :[-0.00805337,-0.0249787,-0.516712,0.855757] - }, - { - "time":1.52, - "rot" :[-0.00894916,-0.0246719,-0.485507,0.873839] - }, - { - "time":1.6, - "rot" :[-0.00869062,-0.0247642,-0.49462,0.868713] - }, - { - "time":1.68, - "rot" :[-0.00628917,-0.0254801,-0.575218,0.817579] - }, - { - "time":1.76, - "rot" :[-0.00486886,-0.0257893,-0.6196,0.784479] - }, - { - "time":1.84, - "rot" :[-0.0061561,-0.0255126,-0.579477,0.814566] - }, - { - "time":1.92, - "rot" :[-0.00848991,-0.0248337,-0.501635,0.864681] - }, - { - "time":2, - "pos" :[2.97193e-07,1.84572,-2.76075e-07], - "rot" :[-0.00951776,-0.0244582,-0.465153,0.884841], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 7, - "keys" : [ - { - "time":0, - "pos" :[8.32063e-08,2.08019,9.30944e-08], - "rot" :[0.0739653,-0.477541,-0.0542396,0.873809], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.181531,-0.571441,0.0412717,0.799249] - }, - { - "time":0.16, - "rot" :[0.186875,-0.618434,0.0966106,0.757155] - }, - { - "time":0.24, - "rot" :[0.0721411,-0.650851,0.0489097,0.754186] - }, - { - "time":0.32, - "rot" :[0.474434,-0.177564,0.53523,0.675953] - }, - { - "time":0.4, - "rot" :[0.367019,0.50617,0.210551,0.751503] - }, - { - "time":0.48, - "rot" :[0.462898,0.543916,0.0945936,0.693493] - }, - { - "time":0.56, - "rot" :[0.446573,0.359007,0.411477,0.708783] - }, - { - "time":0.64, - "rot" :[-0.140245,-0.314295,0.3817,0.85782] - }, - { - "time":0.72, - "rot" :[0.134035,-0.404686,-0.00199856,0.904577] - }, - { - "time":0.8, - "rot" :[0.640492,-0.552652,-0.154258,0.510441] - }, - { - "time":0.88, - "rot" :[0.711457,-0.673619,-0.0294754,0.197983] - }, - { - "time":0.96, - "rot" :[0.685992,-0.593125,-0.0419136,0.41936] - }, - { - "time":1.04, - "rot" :[0.424647,-0.601811,-0.141612,0.661396] - }, - { - "time":1.12, - "rot" :[0.230568,-0.241812,0.0964216,0.937586] - }, - { - "time":1.2, - "rot" :[0.477717,-0.567796,0.424666,0.518703] - }, - { - "time":1.28, - "rot" :[0.384202,-0.675964,0.444818,0.44452] - }, - { - "time":1.36, - "rot" :[0.312201,-0.745388,0.413186,0.419769] - }, - { - "time":1.44, - "rot" :[0.250829,-0.805642,0.314837,0.434631] - }, - { - "time":1.52, - "rot" :[0.179619,-0.857364,0.169352,0.451646] - }, - { - "time":1.6, - "rot" :[0.21694,-0.87864,0.0189284,0.424935] - }, - { - "time":1.68, - "rot" :[0.355555,-0.819098,-0.0436063,0.448061] - }, - { - "time":1.76, - "rot" :[0.366066,-0.718361,-0.0101415,0.591481] - }, - { - "time":1.84, - "rot" :[0.237385,-0.609559,-0.000667691,0.756363] - }, - { - "time":1.92, - "rot" :[0.114143,-0.511169,-0.0338453,0.851195] - }, - { - "time":2, - "pos" :[8.32063e-08,2.08019,9.30944e-08], - "rot" :[0.0739653,-0.477541,-0.0542396,0.873809], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 8, - "keys" : [ - { - "time":0, - "pos" :[-5.32737e-07,0.178703,2.07897e-06], - "rot" :[0.112476,0.0730975,0.0133913,0.990872], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-5.32737e-07,0.178703,2.07897e-06], - "rot" :[0.112476,0.0730975,0.0133913,0.990872], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 9, - "keys" : [ - { - "time":0, - "pos" :[-3.16804e-08,0.344372,-4.46039e-07], - "rot" :[-0.163033,0.00826181,-0.037902,0.985858], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-3.16804e-08,0.344372,-4.46039e-07], - "rot" :[-0.163033,0.00826181,-0.037902,0.985858], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 10, - "keys" : [ - { - "time":0, - "pos" :[-4.61989e-07,0.424319,7.82712e-07], - "rot" :[-0.258175,-0.00209535,-0.0043663,0.966086], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-4.61989e-07,0.424319,7.82712e-07], - "rot" :[-0.258175,-0.00209535,-0.0043663,0.966086], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 11, - "keys" : [ - { - "time":0, - "pos" :[-0.348629,0.0826573,-0.0223061], - "rot" :[-0.487954,-0.0386566,0.046611,0.870766], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-0.348629,0.0826573,-0.0223061], - "rot" :[-0.487954,-0.0386566,0.046611,0.870766], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 12, - "keys" : [ - { - "time":0, - "pos" :[-5.51728e-07,0.264999,1.13662e-07], - "rot" :[-0.304407,-0.00143709,-0.00448849,0.95253], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-5.51728e-07,0.264999,1.13662e-07], - "rot" :[-0.304407,-0.00143709,-0.00448849,0.95253], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 13, - "keys" : [ - { - "time":0, - "pos" :[-5.51341e-07,0.234622,-2.88451e-07], - "rot" :[-0.237856,-4.34465e-05,-0.000991279,0.9713], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-5.51341e-07,0.234622,-2.88451e-07], - "rot" :[-0.237856,-4.34465e-05,-0.000991279,0.9713], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 11, - "keys" : [ - { - "time":0, - "pos" :[-0.134276,0.117964,0.0543795], - "rot" :[-0.522027,-0.00581745,0.0199161,0.852677], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-0.134276,0.117964,0.0543795], - "rot" :[-0.522027,-0.00581745,0.0199161,0.852677], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 15, - "keys" : [ - { - "time":0, - "pos" :[7.89726e-07,0.438173,8.09521e-07], - "rot" :[-0.565393,-0.00435182,-0.00323678,0.824804], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[7.89726e-07,0.438173,8.09521e-07], - "rot" :[-0.565393,-0.00435182,-0.00323678,0.824804], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 16, - "keys" : [ - { - "time":0, - "pos" :[-1.78808e-07,0.325589,1.99704e-07], - "rot" :[-0.445718,0.00235172,0.00112412,0.895169], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-1.78808e-07,0.325589,1.99704e-07], - "rot" :[-0.445718,0.00235172,0.00112412,0.895169], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 11, - "keys" : [ - { - "time":0, - "pos" :[0.111712,0.145074,0.0262818], - "rot" :[-0.560478,0.0163295,0.0577338,0.825993], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[0.111712,0.145074,0.0262818], - "rot" :[-0.560478,0.0163295,0.0577338,0.825993], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 18, - "keys" : [ - { - "time":0, - "pos" :[5.51608e-07,0.506091,-4.5345e-07], - "rot" :[-0.576376,0.00739977,-0.0109541,0.817078], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[5.51608e-07,0.506091,-4.5345e-07], - "rot" :[-0.576376,0.00739977,-0.0109541,0.817078], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 19, - "keys" : [ - { - "time":0, - "pos" :[1.62054e-07,0.348162,1.04051e-07], - "rot" :[-0.617895,0.00228697,0.00200205,0.786254], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[1.62054e-07,0.348162,1.04051e-07], - "rot" :[-0.617895,0.00228697,0.00200205,0.786254], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 11, - "keys" : [ - { - "time":0, - "pos" :[0.325705,0.132745,-0.0120123], - "rot" :[-0.545661,9.50425e-05,0.039652,0.837067], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[0.325705,0.132745,-0.0120123], - "rot" :[-0.545661,9.50425e-05,0.039652,0.837067], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 21, - "keys" : [ - { - "time":0, - "pos" :[5.80819e-07,0.47778,8.03446e-07], - "rot" :[-0.58537,0.0166081,-0.0226047,0.810281], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[5.80819e-07,0.47778,8.03446e-07], - "rot" :[-0.58537,0.0166081,-0.0226047,0.810281], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 22, - "keys" : [ - { - "time":0, - "pos" :[4.24692e-07,0.316424,3.75847e-07], - "rot" :[-0.580283,0.0015928,-0.00108069,0.814413], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[4.24692e-07,0.316424,3.75847e-07], - "rot" :[-0.580283,0.0015928,-0.00108069,0.814413], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 9, - "keys" : [ - { - "time":0, - "pos" :[0.132857,0.107478,-0.0911649], - "rot" :[-0.0820237,0.367718,-0.802655,0.462386], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.0656585,0.370543,-0.774631,0.508266] - }, - { - "time":0.16, - "rot" :[-0.0182616,0.372139,-0.682048,0.629278] - }, - { - "time":0.24, - "rot" :[0.0381075,0.36185,-0.550801,0.751153] - }, - { - "time":0.32, - "rot" :[0.0710173,0.349666,-0.463466,0.811104] - }, - { - "time":0.4, - "rot" :[0.0748691,0.34793,-0.452706,0.817556] - }, - { - "time":0.48, - "rot" :[0.0733184,0.348636,-0.457051,0.814973] - }, - { - "time":0.56, - "rot" :[0.0701792,0.350034,-0.465791,0.809685] - }, - { - "time":0.64, - "rot" :[0.0654207,0.35207,-0.478893,0.801517] - }, - { - "time":0.72, - "rot" :[0.0590335,0.354644,-0.496207,0.790267] - }, - { - "time":0.8, - "rot" :[0.0510474,0.357613,-0.517421,0.775746] - }, - { - "time":0.88, - "rot" :[0.0415516,0.360787,-0.542028,0.757834] - }, - { - "time":0.96, - "rot" :[0.0307129,0.363942,-0.569306,0.736542] - }, - { - "time":1.04, - "rot" :[0.0187884,0.366847,-0.598332,0.712088] - }, - { - "time":1.12, - "rot" :[0.00612323,0.369288,-0.628044,0.684945] - }, - { - "time":1.2, - "rot" :[-0.00686877,0.371105,-0.657332,0.655857] - }, - { - "time":1.28, - "rot" :[-0.0197415,0.37222,-0.685163,0.625792] - }, - { - "time":1.36, - "rot" :[-0.032061,0.372644,-0.710682,0.595852] - }, - { - "time":1.44, - "rot" :[-0.0434474,0.37247,-0.733288,0.567156] - }, - { - "time":1.52, - "rot" :[-0.0536018,0.371852,-0.752644,0.540723] - }, - { - "time":1.6, - "rot" :[-0.0623174,0.370965,-0.76864,0.517391] - }, - { - "time":1.68, - "rot" :[-0.0694723,0.369988,-0.78134,0.497786] - }, - { - "time":1.76, - "rot" :[-0.0750127,0.369074,-0.790902,0.482319] - }, - { - "time":1.84, - "rot" :[-0.0789334,0.368344,-0.797523,0.471222] - }, - { - "time":1.92, - "rot" :[-0.0812579,0.367877,-0.80139,0.464583] - }, - { - "time":2, - "pos" :[0.132857,0.107478,-0.0911649], - "rot" :[-0.0820237,0.367718,-0.802655,0.462386], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 24, - "keys" : [ - { - "time":0, - "pos" :[-2.09749e-07,0.501614,9.2222e-08], - "rot" :[-0.575794,0.123709,-0.0314293,0.80757], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.523491,0.12147,-0.0392014,0.842417] - }, - { - "time":0.16, - "rot" :[-0.362466,0.112375,-0.060528,0.923215] - }, - { - "time":0.24, - "rot" :[-0.156879,0.0968509,-0.0831366,0.979335] - }, - { - "time":0.32, - "rot" :[-0.0322544,0.0856059,-0.0946754,0.991296] - }, - { - "time":0.4, - "rot" :[-0.017522,0.0841897,-0.0959369,0.991666] - }, - { - "time":0.48, - "rot" :[-0.0234561,0.0847623,-0.0954313,0.991543] - }, - { - "time":0.56, - "rot" :[-0.0354567,0.0859113,-0.0943983,0.991187] - }, - { - "time":0.64, - "rot" :[-0.0536143,0.0876267,-0.0928081,0.990371] - }, - { - "time":0.72, - "rot" :[-0.0779173,0.0898792,-0.0906284,0.988755] - }, - { - "time":0.8, - "rot" :[-0.108181,0.0926143,-0.0878316,0.985903] - }, - { - "time":0.88, - "rot" :[-0.143966,0.0957474,-0.0844051,0.981317] - }, - { - "time":0.96, - "rot" :[-0.18451,0.099163,-0.0803647,0.974507] - }, - { - "time":1.04, - "rot" :[-0.228692,0.10272,-0.0757659,0.965095] - }, - { - "time":1.12, - "rot" :[-0.275067,0.106261,-0.0707131,0.952915] - }, - { - "time":1.2, - "rot" :[-0.321969,0.109636,-0.0653583,0.938107] - }, - { - "time":1.28, - "rot" :[-0.367691,0.112716,-0.0598903,0.921147] - }, - { - "time":1.36, - "rot" :[-0.410676,0.115412,-0.054514,0.902803] - }, - { - "time":1.44, - "rot" :[-0.44967,0.117681,-0.0494273,0.884028] - }, - { - "time":1.52, - "rot" :[-0.483804,0.119519,-0.0448002,0.865819] - }, - { - "time":1.6, - "rot" :[-0.512588,0.120955,-0.0407639,0.849094] - }, - { - "time":1.68, - "rot" :[-0.535846,0.122035,-0.0374074,0.834612] - }, - { - "time":1.76, - "rot" :[-0.553617,0.122809,-0.0347824,0.822932] - }, - { - "time":1.84, - "rot" :[-0.566062,0.123323,-0.0329115,0.814421] - }, - { - "time":1.92, - "rot" :[-0.573389,0.123615,-0.0317972,0.809279] - }, - { - "time":2, - "pos" :[-2.09749e-07,0.501614,9.2222e-08], - "rot" :[-0.575794,0.123709,-0.0314293,0.80757], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 25, - "keys" : [ - { - "time":0, - "pos" :[-1.4133e-07,0.463133,-3.71071e-07], - "rot" :[-0.579248,0.0332082,-0.00958612,0.814418], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.526504,0.0325344,-0.0116701,0.84947] - }, - { - "time":0.16, - "rot" :[-0.364154,0.0298866,-0.0173629,0.930697] - }, - { - "time":0.24, - "rot" :[-0.156929,0.0254876,-0.0233465,0.987005] - }, - { - "time":0.32, - "rot" :[-0.0313381,0.0223434,-0.0263714,0.998911] - }, - { - "time":0.4, - "rot" :[-0.0164926,0.0219491,-0.0267005,0.999266] - }, - { - "time":0.48, - "rot" :[-0.0224723,0.0221085,-0.0265687,0.99915] - }, - { - "time":0.56, - "rot" :[-0.0345649,0.0224285,-0.0262991,0.998805] - }, - { - "time":0.64, - "rot" :[-0.0528622,0.0229066,-0.0258837,0.998003] - }, - { - "time":0.72, - "rot" :[-0.0773529,0.0235353,-0.0253134,0.996405] - }, - { - "time":0.8, - "rot" :[-0.107851,0.0243,-0.0245803,0.993566] - }, - { - "time":0.88, - "rot" :[-0.143915,0.0251779,-0.0236802,0.988986] - }, - { - "time":0.96, - "rot" :[-0.184777,0.0261376,-0.0226165,0.982173] - }, - { - "time":1.04, - "rot" :[-0.229308,0.0271403,-0.0214028,0.97274] - }, - { - "time":1.12, - "rot" :[-0.276051,0.028143,-0.0200662,0.960521] - }, - { - "time":1.2, - "rot" :[-0.323329,0.0291031,-0.0186463,0.945655] - }, - { - "time":1.28, - "rot" :[-0.369421,0.0299845,-0.0171933,0.928619] - }, - { - "time":1.36, - "rot" :[-0.412756,0.0307611,-0.0157617,0.910186] - }, - { - "time":1.44, - "rot" :[-0.45207,0.0314195,-0.0144047,0.891313] - }, - { - "time":1.52, - "rot" :[-0.486486,0.0319573,-0.0131684,0.873004] - }, - { - "time":1.6, - "rot" :[-0.51551,0.0323813,-0.0120885,0.856186] - }, - { - "time":1.68, - "rot" :[-0.538963,0.0327028,-0.0111895,0.84162] - }, - { - "time":1.76, - "rot" :[-0.556883,0.0329352,-0.0104858,0.829871] - }, - { - "time":1.84, - "rot" :[-0.569434,0.0330908,-0.00998391,0.82131] - }, - { - "time":1.92, - "rot" :[-0.576823,0.0331795,-0.00968487,0.816138] - }, - { - "time":2, - "pos" :[-1.4133e-07,0.463133,-3.71071e-07], - "rot" :[-0.579248,0.0332082,-0.00958612,0.814418], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 6, - "keys" : [ - { - "time":0, - "pos" :[2.97193e-07,1.84572,-2.76075e-07], - "rot" :[-0.00951775,-0.0244582,-0.465153,0.884841], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.00732431,-0.0252021,-0.541355,0.840385] - }, - { - "time":0.16, - "rot" :[-0.00557836,-0.0256451,-0.597726,0.801271] - }, - { - "time":0.24, - "rot" :[-0.00419192,-0.0259079,-0.639928,0.767986] - }, - { - "time":0.32, - "rot" :[0.00595133,-0.0255612,-0.883465,0.467761] - }, - { - "time":0.4, - "rot" :[0.00274959,-0.0261004,-0.818947,0.57327] - }, - { - "time":0.48, - "rot" :[0.00135283,-0.02621,-0.787187,0.616156] - }, - { - "time":0.56, - "rot" :[0.005617,-0.0256367,-0.877281,0.47926] - }, - { - "time":0.64, - "rot" :[0.00496338,-0.0257713,-0.864812,0.501409] - }, - { - "time":0.72, - "rot" :[0.00167826,-0.0261911,-0.794779,0.606331] - }, - { - "time":0.8, - "rot" :[-0.00980949,-0.0243426,-0.45454,0.890339] - }, - { - "time":0.88, - "rot" :[-0.0134564,-0.0225325,-0.311364,0.949928] - }, - { - "time":0.96, - "rot" :[-0.0085164,-0.0248246,-0.500712,0.865216] - }, - { - "time":1.04, - "rot" :[-0.0123502,-0.0231573,-0.356973,0.933746] - }, - { - "time":1.12, - "rot" :[-0.0107972,-0.0239209,-0.417732,0.908192] - }, - { - "time":1.2, - "rot" :[-0.00696892,-0.0253027,-0.553128,0.832683] - }, - { - "time":1.28, - "rot" :[-0.00767133,-0.0250986,-0.529709,0.847774] - }, - { - "time":1.36, - "rot" :[-0.00792204,-0.0250206,-0.521201,0.853031] - }, - { - "time":1.44, - "rot" :[-0.00805336,-0.0249787,-0.516712,0.855757] - }, - { - "time":1.52, - "rot" :[-0.00894916,-0.0246719,-0.485507,0.873839] - }, - { - "time":1.6, - "rot" :[-0.00869062,-0.0247641,-0.49462,0.868713] - }, - { - "time":1.68, - "rot" :[-0.00628916,-0.0254801,-0.575218,0.817579] - }, - { - "time":1.76, - "rot" :[-0.00486886,-0.0257892,-0.6196,0.784479] - }, - { - "time":1.84, - "rot" :[-0.0061561,-0.0255126,-0.579477,0.814566] - }, - { - "time":1.92, - "rot" :[-0.0084899,-0.0248337,-0.501635,0.864681] - }, - { - "time":2, - "pos" :[2.97193e-07,1.84572,-2.76075e-07], - "rot" :[-0.00951775,-0.0244582,-0.465153,0.884841], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 2, - "keys" : [ - { - "time":0, - "pos" :[0.448867,2.34411,-0.383927], - "rot" :[-0.373458,-0.5307,-0.673085,0.354744], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.381929,-0.530586,-0.678056,0.335929] - }, - { - "time":0.16, - "rot" :[-0.404017,-0.526129,-0.687219,0.296121] - }, - { - "time":0.24, - "rot" :[-0.429247,-0.513961,-0.690937,0.272389] - }, - { - "time":0.32, - "rot" :[-0.469213,-0.487544,-0.689109,0.259362] - }, - { - "time":0.4, - "rot" :[-0.499391,-0.465035,-0.685059,0.25504] - }, - { - "time":0.48, - "rot" :[-0.50047,-0.462706,-0.685196,0.256785] - }, - { - "time":0.56, - "rot" :[-0.477643,-0.469185,-0.690568,0.273566] - }, - { - "time":0.64, - "rot" :[-0.435172,-0.483457,-0.695673,0.304851] - }, - { - "time":0.72, - "rot" :[-0.386817,-0.50484,-0.692172,0.341184] - }, - { - "time":0.8, - "rot" :[-0.349446,-0.531232,-0.676255,0.371967] - }, - { - "time":0.88, - "rot" :[-0.330289,-0.560241,-0.643977,0.402905] - }, - { - "time":0.96, - "rot" :[-0.324293,-0.580771,-0.575105,0.476228] - }, - { - "time":1.04, - "rot" :[-0.323811,-0.584553,-0.538226,0.513573] - }, - { - "time":1.12, - "rot" :[-0.393082,-0.538945,-0.60776,0.430875] - }, - { - "time":1.2, - "rot" :[-0.465891,-0.476579,-0.668913,0.3292] - }, - { - "time":1.28, - "rot" :[-0.485691,-0.462469,-0.669927,0.318474] - }, - { - "time":1.36, - "rot" :[-0.505256,-0.445778,-0.664379,0.323418] - }, - { - "time":1.44, - "rot" :[-0.518555,-0.432842,-0.657115,0.334588] - }, - { - "time":1.52, - "rot" :[-0.522752,-0.428391,-0.654061,0.339729] - }, - { - "time":1.6, - "rot" :[-0.514049,-0.435111,-0.655863,0.340992] - }, - { - "time":1.68, - "rot" :[-0.488198,-0.454479,-0.660672,0.344419] - }, - { - "time":1.76, - "rot" :[-0.449977,-0.481558,-0.666355,0.348704] - }, - { - "time":1.84, - "rot" :[-0.410761,-0.507548,-0.670541,0.352201] - }, - { - "time":1.92, - "rot" :[-0.383044,-0.524891,-0.67256,0.354161] - }, - { - "time":2, - "pos" :[0.448867,2.34411,-0.383927], - "rot" :[-0.373458,-0.5307,-0.673085,0.354744], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 28, - "keys" : [ - { - "time":0, - "pos" :[2.97806e-08,1.23321,5.62777e-07], - "rot" :[-0.383658,-0.306184,0.192791,0.849641], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.289055,-0.326011,0.284731,0.853869] - }, - { - "time":0.16, - "rot" :[-0.0743112,-0.346738,0.47637,0.804564] - }, - { - "time":0.24, - "rot" :[0.030988,-0.31808,0.608777,0.726124] - }, - { - "time":0.32, - "rot" :[0.0319557,-0.11973,0.809155,0.57438] - }, - { - "time":0.4, - "rot" :[0.00234423,0.0938989,0.912501,0.398146] - }, - { - "time":0.48, - "rot" :[0.019107,0.121486,0.921489,0.368422] - }, - { - "time":0.56, - "rot" :[0.0277278,0.0992662,0.922455,0.372094] - }, - { - "time":0.64, - "rot" :[0.046189,0.0865973,0.918911,0.38206] - }, - { - "time":0.72, - "rot" :[0.11308,0.101502,0.87022,0.468644] - }, - { - "time":0.8, - "rot" :[0.190675,0.135057,0.765473,0.599544] - }, - { - "time":0.88, - "rot" :[0.200134,0.188631,0.726564,0.629658] - }, - { - "time":0.96, - "rot" :[0.162375,0.328627,0.716666,0.59332] - }, - { - "time":1.04, - "rot" :[0.0951923,0.404909,0.72441,0.549743] - }, - { - "time":1.12, - "rot" :[-0.101365,0.134827,0.856555,0.487709] - }, - { - "time":1.2, - "rot" :[-0.323358,-0.208718,0.716591,0.581699] - }, - { - "time":1.28, - "rot" :[-0.302729,-0.246713,0.68814,0.611515] - }, - { - "time":1.36, - "rot" :[-0.271611,-0.263082,0.680815,0.627301] - }, - { - "time":1.44, - "rot" :[-0.243784,-0.268139,0.677134,0.640437] - }, - { - "time":1.52, - "rot" :[-0.23054,-0.276898,0.656693,0.66252] - }, - { - "time":1.6, - "rot" :[-0.237739,-0.291031,0.606969,0.700264] - }, - { - "time":1.68, - "rot" :[-0.26781,-0.304085,0.519923,0.75199] - }, - { - "time":1.76, - "rot" :[-0.311057,-0.311392,0.404704,0.801556] - }, - { - "time":1.84, - "rot" :[-0.350824,-0.311262,0.292772,0.833261] - }, - { - "time":1.92, - "rot" :[-0.375666,-0.30788,0.217735,0.846567] - }, - { - "time":2, - "pos" :[2.97806e-08,1.23321,5.62777e-07], - "rot" :[-0.383658,-0.306184,0.192791,0.849641], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 29, - "keys" : [ - { - "time":0, - "pos" :[-2.48487e-07,1.84572,-1.0535e-06], - "rot" :[0.00372426,0.025979,0.839821,0.542229], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.00208434,0.0261617,0.804087,0.593933] - }, - { - "time":0.16, - "rot" :[-0.00139491,0.0262075,0.718448,0.695085] - }, - { - "time":0.24, - "rot" :[-0.00384024,0.025962,0.65028,0.759241] - }, - { - "time":0.32, - "rot" :[-0.00588189,0.0255769,0.588184,0.808301] - }, - { - "time":0.4, - "rot" :[-0.00787637,0.0250347,0.522753,0.85208] - }, - { - "time":0.48, - "rot" :[-0.00943438,0.0244901,0.468161,0.883254] - }, - { - "time":0.56, - "rot" :[-0.00965624,0.0244035,0.460126,0.887466] - }, - { - "time":0.64, - "rot" :[-0.00922128,0.0245712,0.475816,0.879153] - }, - { - "time":0.72, - "rot" :[-0.00635571,0.0254633,0.573077,0.819082] - }, - { - "time":0.8, - "rot" :[-0.00508829,0.0257465,0.612894,0.789729] - }, - { - "time":0.88, - "rot" :[-0.00500897,0.0257621,0.615323,0.787838] - }, - { - "time":0.96, - "rot" :[-0.00564767,0.0256296,0.595554,0.802887] - }, - { - "time":1.04, - "rot" :[-0.00815527,0.0249452,0.513211,0.857861] - }, - { - "time":1.12, - "rot" :[-0.014523,0.0218599,0.26538,0.963787] - }, - { - "time":1.2, - "rot" :[-0.0172524,0.0197769,0.137295,0.990183] - }, - { - "time":1.28, - "rot" :[-0.0172173,0.0198075,0.139049,0.989938] - }, - { - "time":1.36, - "rot" :[-0.0169088,0.0200715,0.154349,0.987668] - }, - { - "time":1.44, - "rot" :[-0.0160165,0.0207905,0.197315,0.979989] - }, - { - "time":1.52, - "rot" :[-0.0145252,0.0218584,0.265282,0.963814] - }, - { - "time":1.6, - "rot" :[-0.0109167,0.0238663,0.413183,0.91027] - }, - { - "time":1.68, - "rot" :[-0.00524471,0.0257151,0.608082,0.793441] - }, - { - "time":1.76, - "rot" :[-0.000608529,0.0262375,0.738965,0.673232] - }, - { - "time":1.84, - "rot" :[0.00208614,0.0261615,0.804127,0.593878] - }, - { - "time":1.92, - "rot" :[0.00336163,0.0260284,0.832178,0.553887] - }, - { - "time":2, - "pos" :[-2.48487e-07,1.84572,-1.0535e-06], - "rot" :[0.00372426,0.025979,0.839821,0.542229], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 30, - "keys" : [ - { - "time":0, - "pos" :[4.34404e-07,2.08019,-5.20939e-07], - "rot" :[0.175544,0.40413,0.127598,0.888585], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.256554,0.490421,-0.0156002,0.832721] - }, - { - "time":0.16, - "rot" :[0.375285,0.626485,-0.255925,0.633388] - }, - { - "time":0.24, - "rot" :[0.390556,0.710411,-0.255998,0.526542] - }, - { - "time":0.32, - "rot" :[0.370048,0.794054,-0.0637712,0.477992] - }, - { - "time":0.4, - "rot" :[0.305211,0.827305,0.127898,0.453933] - }, - { - "time":0.48, - "rot" :[0.217431,0.846435,0.147283,0.463226] - }, - { - "time":0.56, - "rot" :[0.0682544,0.850723,0.066919,0.51685] - }, - { - "time":0.64, - "rot" :[-0.00673975,0.803966,-0.00955681,0.594561] - }, - { - "time":0.72, - "rot" :[-0.0159857,0.678354,-0.047348,0.733034] - }, - { - "time":0.8, - "rot" :[-0.0143987,0.503984,-0.0668212,0.861004] - }, - { - "time":0.88, - "rot" :[0.0599015,0.459772,-0.0783824,0.882541] - }, - { - "time":0.96, - "rot" :[0.399924,0.420262,-0.0907126,0.809452] - }, - { - "time":1.04, - "rot" :[0.581782,0.390855,-0.0905121,0.70751] - }, - { - "time":1.12, - "rot" :[0.365419,0.669295,-0.0424546,0.645531] - }, - { - "time":1.2, - "rot" :[-0.0661937,0.467012,-0.297308,0.830136] - }, - { - "time":1.28, - "rot" :[-0.0706779,0.438367,-0.394489,0.804498] - }, - { - "time":1.36, - "rot" :[-0.0699441,0.423194,-0.451864,0.782198] - }, - { - "time":1.44, - "rot" :[-0.0609527,0.420137,-0.474899,0.77087] - }, - { - "time":1.52, - "rot" :[-0.0439298,0.420166,-0.480031,0.768831] - }, - { - "time":1.6, - "rot" :[-0.0152366,0.42353,-0.449342,0.786436] - }, - { - "time":1.68, - "rot" :[0.0310235,0.43206,-0.349088,0.830963] - }, - { - "time":1.76, - "rot" :[0.0879793,0.434529,-0.188526,0.8763] - }, - { - "time":1.84, - "rot" :[0.137595,0.424034,-0.0214094,0.894877] - }, - { - "time":1.92, - "rot" :[0.166698,0.409956,0.0907519,0.892139] - }, - { - "time":2, - "pos" :[4.34404e-07,2.08019,-5.20939e-07], - "rot" :[0.175544,0.40413,0.127598,0.888585], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 31, - "keys" : [ - { - "time":0, - "pos" :[-1.85417e-07,0.178702,6.79704e-07], - "rot" :[0.112476,-0.0730975,-0.0133909,0.990872], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-1.85417e-07,0.178702,6.79704e-07], - "rot" :[0.112476,-0.0730975,-0.0133909,0.990872], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 32, - "keys" : [ - { - "time":0, - "pos" :[4.02578e-07,0.344372,-3.29428e-07], - "rot" :[-0.163033,-0.0082618,0.037902,0.985858], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[4.02578e-07,0.344372,-3.29428e-07], - "rot" :[-0.163033,-0.0082618,0.037902,0.985858], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 33, - "keys" : [ - { - "time":0, - "pos" :[4.46925e-07,0.424319,-4.07928e-07], - "rot" :[-0.258175,0.00209525,0.00436675,0.966086], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[4.46925e-07,0.424319,-4.07928e-07], - "rot" :[-0.258175,0.00209525,0.00436675,0.966086], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 34, - "keys" : [ - { - "time":0, - "pos" :[0.348629,0.0826563,-0.0223081], - "rot" :[-0.487954,0.0386568,-0.0466113,0.870766], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[0.348629,0.0826563,-0.0223081], - "rot" :[-0.487954,0.0386568,-0.0466113,0.870766], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 35, - "keys" : [ - { - "time":0, - "pos" :[6.40792e-07,0.264999,-5.43015e-07], - "rot" :[-0.304407,0.00143796,0.00448885,0.95253], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[6.40792e-07,0.264999,-5.43015e-07], - "rot" :[-0.304407,0.00143796,0.00448885,0.95253], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 36, - "keys" : [ - { - "time":0, - "pos" :[-6.33326e-07,0.234621,-5.01652e-07], - "rot" :[-0.237856,4.32376e-05,0.000991298,0.9713], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-6.33326e-07,0.234621,-5.01652e-07], - "rot" :[-0.237856,4.32376e-05,0.000991298,0.9713], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 34, - "keys" : [ - { - "time":0, - "pos" :[0.134276,0.117965,0.0543787], - "rot" :[-0.522027,0.00581762,-0.0199165,0.852677], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[0.134276,0.117965,0.0543787], - "rot" :[-0.522027,0.00581762,-0.0199165,0.852677], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 38, - "keys" : [ - { - "time":0, - "pos" :[-5.81134e-07,0.438172,1.55409e-07], - "rot" :[-0.565393,0.0043519,0.00323675,0.824804], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-5.81134e-07,0.438172,1.55409e-07], - "rot" :[-0.565393,0.0043519,0.00323675,0.824804], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 39, - "keys" : [ - { - "time":0, - "pos" :[-6.55658e-07,0.32559,-5.94663e-07], - "rot" :[-0.445717,-0.00234956,-0.00112528,0.89517], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-6.55658e-07,0.32559,-5.94663e-07], - "rot" :[-0.445717,-0.00234956,-0.00112528,0.89517], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 34, - "keys" : [ - { - "time":0, - "pos" :[-0.111712,0.145074,0.0262809], - "rot" :[-0.560478,-0.0163292,-0.0577341,0.825993], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-0.111712,0.145074,0.0262809], - "rot" :[-0.560478,-0.0163292,-0.0577341,0.825993], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 41, - "keys" : [ - { - "time":0, - "pos" :[2.52752e-07,0.50609,-1.0004e-06], - "rot" :[-0.576377,-0.00739889,0.0109555,0.817077], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[2.52752e-07,0.50609,-1.0004e-06], - "rot" :[-0.576377,-0.00739889,0.0109555,0.817077], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 42, - "keys" : [ - { - "time":0, - "pos" :[-3.68812e-07,0.348162,4.17344e-07], - "rot" :[-0.617895,-0.00228695,-0.00200199,0.786254], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-3.68812e-07,0.348162,4.17344e-07], - "rot" :[-0.617895,-0.00228695,-0.00200199,0.786254], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 34, - "keys" : [ - { - "time":0, - "pos" :[-0.325705,0.132745,-0.0120139], - "rot" :[-0.545662,-9.47001e-05,-0.0396523,0.837067], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-0.325705,0.132745,-0.0120139], - "rot" :[-0.545662,-9.47001e-05,-0.0396523,0.837067], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 44, - "keys" : [ - { - "time":0, - "pos" :[4.70149e-07,0.477781,4.79494e-07], - "rot" :[-0.58537,-0.0166082,0.0226047,0.810281], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[4.70149e-07,0.477781,4.79494e-07], - "rot" :[-0.58537,-0.0166082,0.0226047,0.810281], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 45, - "keys" : [ - { - "time":0, - "pos" :[-1.49513e-08,0.316424,1.42721e-06], - "rot" :[-0.580283,-0.00159284,0.00108085,0.814413], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-1.49513e-08,0.316424,1.42721e-06], - "rot" :[-0.580283,-0.00159284,0.00108085,0.814413], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 32, - "keys" : [ - { - "time":0, - "pos" :[-0.132857,0.107477,-0.0911649], - "rot" :[-0.0400334,-0.513301,0.669579,0.535335], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.0276358,-0.499272,0.65108,0.571016] - }, - { - "time":0.16, - "rot" :[0.00725938,-0.454871,0.59266,0.664675] - }, - { - "time":0.24, - "rot" :[0.0480097,-0.393905,0.512604,0.761427] - }, - { - "time":0.32, - "rot" :[0.0720692,-0.353164,0.45915,0.81195] - }, - { - "time":0.4, - "rot" :[0.0749175,-0.348089,0.452493,0.81758] - }, - { - "time":0.48, - "rot" :[0.0737708,-0.350143,0.455188,0.815329] - }, - { - "time":0.56, - "rot" :[0.071451,-0.354256,0.460583,0.810716] - }, - { - "time":0.64, - "rot" :[0.0679454,-0.360404,0.468652,0.803653] - }, - { - "time":0.72, - "rot" :[0.0632585,-0.368501,0.479278,0.794039] - }, - { - "time":0.8, - "rot" :[0.0574248,-0.378386,0.492251,0.781802] - }, - { - "time":0.88, - "rot" :[0.0505196,-0.389813,0.50725,0.766936] - }, - { - "time":0.96, - "rot" :[0.0426694,-0.402447,0.523837,0.749541] - }, - { - "time":1.04, - "rot" :[0.0340572,-0.415877,0.541473,0.729858] - }, - { - "time":1.12, - "rot" :[0.0249204,-0.429641,0.559551,0.708301] - }, - { - "time":1.2, - "rot" :[0.0155386,-0.443258,0.577442,0.68545] - }, - { - "time":1.28, - "rot" :[0.00621302,-0.45628,0.594556,0.662022] - }, - { - "time":1.36, - "rot" :[-0.0027593,-0.468327,0.610394,0.638812] - }, - { - "time":1.44, - "rot" :[-0.0111099,-0.479116,0.624582,0.616621] - }, - { - "time":1.52, - "rot" :[-0.0186172,-0.488466,0.636882,0.596185] - }, - { - "time":1.6, - "rot" :[-0.025115,-0.496289,0.647178,0.578123] - }, - { - "time":1.68, - "rot" :[-0.0304923,-0.502575,0.655452,0.562913] - }, - { - "time":1.76, - "rot" :[-0.034686,-0.507357,0.661749,0.550885] - }, - { - "time":1.84, - "rot" :[-0.0376706,-0.510696,0.666147,0.542236] - }, - { - "time":1.92, - "rot" :[-0.039447,-0.512658,0.668731,0.537052] - }, - { - "time":2, - "pos" :[-0.132857,0.107477,-0.0911649], - "rot" :[-0.0400334,-0.513301,0.669579,0.535335], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 47, - "keys" : [ - { - "time":0, - "pos" :[6.99282e-07,0.501614,2.65694e-07], - "rot" :[-0.358879,-0.112139,0.0609638,0.924616], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.323313,-0.10973,0.0652011,0.937644] - }, - { - "time":0.16, - "rot" :[-0.222101,-0.1022,0.0764651,0.966633] - }, - { - "time":0.24, - "rot" :[-0.100546,-0.0919317,0.0885458,0.986711] - }, - { - "time":0.32, - "rot" :[-0.0262022,-0.0850264,0.0951962,0.991475] - }, - { - "time":0.4, - "rot" :[-0.0172349,-0.0841583,0.0959568,0.991626] - }, - { - "time":0.48, - "rot" :[-0.0208518,-0.0845079,0.0956494,0.991559] - }, - { - "time":0.56, - "rot" :[-0.0281421,-0.0852125,0.0950297,0.991421] - }, - { - "time":0.64, - "rot" :[-0.0391127,-0.086259,0.0940808,0.991049] - }, - { - "time":0.72, - "rot" :[-0.053697,-0.0876345,0.0928008,0.990366] - }, - { - "time":0.8, - "rot" :[-0.071724,-0.0893101,0.0911895,0.989224] - }, - { - "time":0.88, - "rot" :[-0.0928924,-0.0912424,0.0892559,0.987461] - }, - { - "time":0.96, - "rot" :[-0.11675,-0.0933747,0.0870228,0.984925] - }, - { - "time":1.04, - "rot" :[-0.142692,-0.0956378,0.0845294,0.981503] - }, - { - "time":1.12, - "rot" :[-0.169972,-0.097955,0.0818329,0.977148] - }, - { - "time":1.2, - "rot" :[-0.197753,-0.100248,0.0790078,0.971906] - }, - { - "time":1.28, - "rot" :[-0.225163,-0.102442,0.0761409,0.965925] - }, - { - "time":1.36, - "rot" :[-0.251363,-0.104476,0.0733251,0.95944] - }, - { - "time":1.44, - "rot" :[-0.275618,-0.106302,0.0706516,0.952755] - }, - { - "time":1.52, - "rot" :[-0.29733,-0.10789,0.0682027,0.946205] - }, - { - "time":1.6, - "rot" :[-0.316059,-0.109223,0.066047,0.940114] - }, - { - "time":1.68, - "rot" :[-0.33152,-0.110297,0.0642367,0.934774] - }, - { - "time":1.76, - "rot" :[-0.343556,-0.111117,0.0628079,0.930418] - }, - { - "time":1.84, - "rot" :[-0.352111,-0.111691,0.0617818,0.927214] - }, - { - "time":1.92, - "rot" :[-0.3572,-0.112028,0.0611672,0.925266] - }, - { - "time":2, - "pos" :[6.99282e-07,0.501614,2.65694e-07], - "rot" :[-0.358879,-0.112139,0.0609638,0.924616], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 48, - "keys" : [ - { - "time":0, - "pos" :[1.1499e-06,0.463133,5.82492e-07], - "rot" :[-0.360537,-0.029819,0.0174788,0.932104], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.324685,-0.0291299,0.0186046,0.945191] - }, - { - "time":0.16, - "rot" :[-0.222665,-0.0269937,0.0215875,0.974282] - }, - { - "time":0.24, - "rot" :[-0.100157,-0.0241091,0.0247676,0.994371] - }, - { - "time":0.32, - "rot" :[-0.0252393,-0.0221821,0.0265073,0.999084] - }, - { - "time":0.4, - "rot" :[-0.0162033,-0.0219405,0.0267056,0.999226] - }, - { - "time":0.48, - "rot" :[-0.019848,-0.0220378,0.0266255,0.999162] - }, - { - "time":0.56, - "rot" :[-0.0271941,-0.0222339,0.0264639,0.999032] - }, - { - "time":0.64, - "rot" :[-0.038249,-0.0225254,0.0262162,0.99867] - }, - { - "time":0.72, - "rot" :[-0.0529455,-0.0229089,0.0258818,0.997999] - }, - { - "time":0.8, - "rot" :[-0.0711117,-0.0233764,0.0254603,0.996869] - }, - { - "time":0.88, - "rot" :[-0.092444,-0.0239163,0.0249538,0.995118] - }, - { - "time":0.96, - "rot" :[-0.116487,-0.0245129,0.024368,0.992591] - }, - { - "time":1.04, - "rot" :[-0.142631,-0.0251472,0.0237129,0.989172] - }, - { - "time":1.12, - "rot" :[-0.170125,-0.0257979,0.0230033,0.984816] - }, - { - "time":1.2, - "rot" :[-0.198124,-0.026443,0.0222587,0.979567] - }, - { - "time":1.28, - "rot" :[-0.22575,-0.027062,0.0215019,0.973572] - }, - { - "time":1.36, - "rot" :[-0.252159,-0.027637,0.0207576,0.967068] - }, - { - "time":1.44, - "rot" :[-0.276607,-0.0281547,0.0200499,0.960361] - }, - { - "time":1.52, - "rot" :[-0.298492,-0.0286057,0.0194009,0.953786] - }, - { - "time":1.6, - "rot" :[-0.317372,-0.0289853,0.0188291,0.947671] - }, - { - "time":1.68, - "rot" :[-0.332957,-0.0292919,0.0183485,0.942308] - }, - { - "time":1.76, - "rot" :[-0.34509,-0.0295262,0.017969,0.937933] - }, - { - "time":1.84, - "rot" :[-0.353715,-0.0296905,0.0176962,0.934715] - }, - { - "time":1.92, - "rot" :[-0.358845,-0.0297873,0.0175329,0.932757] - }, - { - "time":2, - "pos" :[1.1499e-06,0.463133,5.82492e-07], - "rot" :[-0.360537,-0.029819,0.0174788,0.932104], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 29, - "keys" : [ - { - "time":0, - "pos" :[-2.48487e-07,1.84572,-1.0535e-06], - "rot" :[0.003724,0.0259789,0.839821,0.542229], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.00208408,0.0261616,0.804087,0.593933] - }, - { - "time":0.16, - "rot" :[-0.00139516,0.0262074,0.718448,0.695085] - }, - { - "time":0.24, - "rot" :[-0.0038405,0.025962,0.65028,0.759241] - }, - { - "time":0.32, - "rot" :[-0.00588214,0.0255768,0.588184,0.808301] - }, - { - "time":0.4, - "rot" :[-0.00787662,0.0250346,0.522753,0.85208] - }, - { - "time":0.48, - "rot" :[-0.00943463,0.02449,0.468161,0.883254] - }, - { - "time":0.56, - "rot" :[-0.00965649,0.0244034,0.460126,0.887466] - }, - { - "time":0.64, - "rot" :[-0.00922153,0.0245711,0.475816,0.879153] - }, - { - "time":0.72, - "rot" :[-0.00635597,0.0254632,0.573077,0.819082] - }, - { - "time":0.8, - "rot" :[-0.00508854,0.0257465,0.612894,0.789729] - }, - { - "time":0.88, - "rot" :[-0.00500922,0.025762,0.615323,0.787838] - }, - { - "time":0.96, - "rot" :[-0.00564793,0.0256296,0.595554,0.802887] - }, - { - "time":1.04, - "rot" :[-0.00815552,0.0249452,0.513211,0.857861] - }, - { - "time":1.12, - "rot" :[-0.0145233,0.0218598,0.26538,0.963787] - }, - { - "time":1.2, - "rot" :[-0.0172526,0.0197769,0.137295,0.990183] - }, - { - "time":1.28, - "rot" :[-0.0172175,0.0198074,0.139049,0.989938] - }, - { - "time":1.36, - "rot" :[-0.016909,0.0200714,0.154349,0.987668] - }, - { - "time":1.44, - "rot" :[-0.0160167,0.0207904,0.197315,0.979989] - }, - { - "time":1.52, - "rot" :[-0.0145255,0.0218583,0.265282,0.963814] - }, - { - "time":1.6, - "rot" :[-0.0109169,0.0238662,0.413183,0.91027] - }, - { - "time":1.68, - "rot" :[-0.00524497,0.0257151,0.608082,0.793441] - }, - { - "time":1.76, - "rot" :[-0.000608781,0.0262374,0.738965,0.673232] - }, - { - "time":1.84, - "rot" :[0.00208589,0.0261615,0.804127,0.593877] - }, - { - "time":1.92, - "rot" :[0.00336138,0.0260283,0.832178,0.553887] - }, - { - "time":2, - "pos" :[-2.48487e-07,1.84572,-1.0535e-06], - "rot" :[0.003724,0.0259789,0.839821,0.542229], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 1, - "keys" : [ - { - "time":0, - "pos" :[-1.30151e-08,0.582952,-2.06714e-08], - "rot" :[0.0053135,0.295534,-0.00591876,0.955299], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.00529796,0.304419,-0.00588739,0.952505] - }, - { - "time":0.16, - "rot" :[0.00525069,0.32983,-0.00587316,0.944007] - }, - { - "time":0.24, - "rot" :[0.00517958,0.364363,-0.006056,0.931223] - }, - { - "time":0.32, - "rot" :[0.00510931,0.395126,-0.00662046,0.918589] - }, - { - "time":0.4, - "rot" :[0.00506779,0.412032,-0.00763348,0.911123] - }, - { - "time":0.48, - "rot" :[0.0042707,0.412404,-0.0119347,0.910913] - }, - { - "time":0.56, - "rot" :[-0.000824899,0.401064,-0.0319739,0.915492] - }, - { - "time":0.64, - "rot" :[-0.00384756,0.394231,-0.0435399,0.917971] - }, - { - "time":0.72, - "rot" :[0.00249561,0.39483,-0.0208876,0.918514] - }, - { - "time":0.8, - "rot" :[0.0272542,0.395332,0.0173402,0.91797] - }, - { - "time":0.88, - "rot" :[0.0709535,0.392199,0.0142013,0.91703] - }, - { - "time":0.96, - "rot" :[0.147535,0.371695,-0.0443084,0.915485] - }, - { - "time":1.04, - "rot" :[0.184133,0.358363,-0.0788597,0.91184] - }, - { - "time":1.12, - "rot" :[0.0810795,0.386897,-0.00300863,0.918547] - }, - { - "time":1.2, - "rot" :[-0.117331,0.411621,0.0666999,0.901306] - }, - { - "time":1.28, - "rot" :[-0.11721,0.408029,0.0589603,0.903492] - }, - { - "time":1.36, - "rot" :[-0.116111,0.398951,0.040826,0.908675] - }, - { - "time":1.44, - "rot" :[-0.113173,0.386407,0.0183452,0.915175] - }, - { - "time":1.52, - "rot" :[-0.107817,0.372015,-0.00396818,0.921935] - }, - { - "time":1.6, - "rot" :[-0.0996785,0.357144,-0.0227112,0.928438] - }, - { - "time":1.68, - "rot" :[-0.0885329,0.34293,-0.0353293,0.934512] - }, - { - "time":1.76, - "rot" :[-0.0742355,0.330269,-0.0399112,0.940116] - }, - { - "time":1.84, - "rot" :[-0.046732,0.31598,-0.0317225,0.947083] - }, - { - "time":1.92, - "rot" :[-0.00997895,0.301207,-0.0141283,0.953402] - }, - { - "time":2, - "pos" :[-1.30151e-08,0.582952,-2.06714e-08], - "rot" :[0.0053135,0.295534,-0.00591876,0.955299], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 0, - "keys" : [ - { - "time":0, - "pos" :[0,0,0], - "rot" :[0,0,1,-2.23517e-08], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[4.80511e-05,0.000422998,1,-3.39523e-05] - }, - { - "time":0.16, - "rot" :[0.000193217,0.00170091,0.999997,-0.000136662] - }, - { - "time":0.24, - "rot" :[0.000433563,0.00381669,0.999988,-0.000306668] - }, - { - "time":0.32, - "rot" :[0.000760962,0.00669882,0.999971,-0.000538168] - }, - { - "time":0.4, - "rot" :[0.00115947,0.0102069,0.999947,-0.000820017] - }, - { - "time":0.48, - "rot" :[0.00160497,0.0141287,0.999898,-0.00113516] - }, - { - "time":0.56, - "rot" :[0.00206692,0.0181953,0.999831,-0.00146189] - }, - { - "time":0.64, - "rot" :[0.00251236,0.0221165,0.999751,-0.00177687] - }, - { - "time":0.72, - "rot" :[0.00291077,0.0256238,0.999665,-0.00205865] - }, - { - "time":0.8, - "rot" :[0.00323805,0.0285049,0.999586,-0.00229012] - }, - { - "time":0.88, - "rot" :[0.0034783,0.0306197,0.999522,-0.00246007] - }, - { - "time":0.96, - "rot" :[0.00362338,0.031897,0.999523,-0.00256265] - }, - { - "time":1.04, - "rot" :[0.00367141,0.0323198,0.999527,-0.00256191] - }, - { - "time":1.12, - "rot" :[0.00361501,0.0318232,0.999541,-0.00255675] - }, - { - "time":1.2, - "rot" :[0.00344473,0.0303242,0.999567,-0.00243629] - }, - { - "time":1.28, - "rot" :[0.00316391,0.0278522,0.999605,-0.00223764] - }, - { - "time":1.36, - "rot" :[0.00278484,0.0245152,0.999694,-0.00196955] - }, - { - "time":1.44, - "rot" :[0.00233084,0.0205186,0.999785,-0.00164842] - }, - { - "time":1.52, - "rot" :[0.00183595,0.016162,0.999867,-0.00129847] - }, - { - "time":1.6, - "rot" :[0.00134102,0.0118052,0.999929,-0.000948366] - }, - { - "time":1.68, - "rot" :[0.000886923,0.00780772,0.999961,-0.000627175] - }, - { - "time":1.76, - "rot" :[0.000507729,0.00446962,0.999984,-0.000359007] - }, - { - "time":1.84, - "rot" :[0.000226792,0.00199653,0.999996,-0.000160346] - }, - { - "time":1.92, - "rot" :[5.64319e-05,0.000496775,1,-3.99373e-05] - }, - { - "time":2, - "pos" :[0,0,0], - "rot" :[0,0,1,-2.23517e-08], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 52, - "keys" : [ - { - "time":0, - "pos" :[0.633559,-0.198643,-0.410763], - "rot" :[-0.741449,-0.0964258,-0.122368,0.652673], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[0.633559,-0.198643,-0.410763], - "rot" :[-0.741449,-0.0964258,-0.122368,0.652673], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 53, - "keys" : [ - { - "time":0, - "pos" :[4.31671e-07,0.632829,-1.56093e-07], - "rot" :[-0.204107,-0.600343,-0.0884547,0.768183], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.222055,-0.597471,-0.105045,0.763339] - }, - { - "time":0.16, - "rot" :[-0.24911,-0.592606,-0.12886,0.755088] - }, - { - "time":0.24, - "rot" :[-0.335915,-0.571671,-0.181755,0.726168] - }, - { - "time":0.32, - "rot" :[-0.439749,-0.532088,-0.157652,0.706151] - }, - { - "time":0.4, - "rot" :[-0.413013,-0.511819,-0.0185336,0.753073] - }, - { - "time":0.48, - "rot" :[-0.391913,-0.496261,0.00801165,0.774639] - }, - { - "time":0.56, - "rot" :[-0.294849,-0.462244,-0.0471298,0.834969] - }, - { - "time":0.64, - "rot" :[-0.212112,-0.445463,-0.0899052,0.865152] - }, - { - "time":0.72, - "rot" :[-0.193601,-0.441616,-0.112053,0.868872] - }, - { - "time":0.8, - "rot" :[-0.184812,-0.43985,-0.123855,0.870079] - }, - { - "time":0.88, - "rot" :[-0.165012,-0.443776,-0.111877,0.87368] - }, - { - "time":0.96, - "rot" :[-0.0616299,-0.456338,-0.0514561,0.886177] - }, - { - "time":1.04, - "rot" :[0.0379791,-0.460908,0.00385961,0.886627] - }, - { - "time":1.12, - "rot" :[-0.0693285,-0.455541,-0.0479947,0.886213] - }, - { - "time":1.2, - "rot" :[-0.225686,-0.455099,-0.0458447,0.860145] - }, - { - "time":1.28, - "rot" :[-0.233494,-0.454221,-0.0484197,0.858382] - }, - { - "time":1.36, - "rot" :[-0.20862,-0.455551,-0.0295152,0.864917] - }, - { - "time":1.44, - "rot" :[-0.170066,-0.456354,-0.00395885,0.873386] - }, - { - "time":1.52, - "rot" :[-0.149579,-0.455681,0.00539536,0.877469] - }, - { - "time":1.6, - "rot" :[-0.214173,-0.450498,-0.0489672,0.865323] - }, - { - "time":1.68, - "rot" :[-0.329529,-0.427965,-0.142399,0.829445] - }, - { - "time":1.76, - "rot" :[-0.356337,-0.414535,-0.175288,0.818816] - }, - { - "time":1.84, - "rot" :[-0.317573,-0.460356,-0.164134,0.812576] - }, - { - "time":1.92, - "rot" :[-0.244504,-0.557322,-0.12103,0.784195] - }, - { - "time":2, - "pos" :[4.31671e-07,0.632829,-1.56093e-07], - "rot" :[-0.204107,-0.600343,-0.0884547,0.768183], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 54, - "keys" : [ - { - "time":0, - "pos" :[-2.95926e-08,2.02233,-1.13178e-07], - "rot" :[0.220398,-0.00585175,-0.0131096,0.975304], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.203669,-0.00562646,-0.0132078,0.978935] - }, - { - "time":0.16, - "rot" :[0.162427,-0.00506749,-0.0134322,0.986616] - }, - { - "time":0.24, - "rot" :[0.333614,-0.00735348,-0.0123301,0.9426] - }, - { - "time":0.32, - "rot" :[0.630152,-0.0110597,-0.0091536,0.776339] - }, - { - "time":0.4, - "rot" :[0.713765,-0.0120223,-0.00784658,0.700239] - }, - { - "time":0.48, - "rot" :[0.707089,-0.0119473,-0.00796029,0.706979] - }, - { - "time":0.56, - "rot" :[0.64261,-0.0112061,-0.00897376,0.766059] - }, - { - "time":0.64, - "rot" :[0.579399,-0.0104539,-0.00983978,0.814918] - }, - { - "time":0.72, - "rot" :[0.572616,-0.0103719,-0.0099262,0.819698] - }, - { - "time":0.8, - "rot" :[0.569267,-0.0103313,-0.00996843,0.822028] - }, - { - "time":0.88, - "rot" :[0.536031,-0.00992551,-0.0103725,0.844076] - }, - { - "time":0.96, - "rot" :[0.356993,-0.00765837,-0.0121431,0.933997] - }, - { - "time":1.04, - "rot" :[0.170432,-0.00517637,-0.0133906,0.985265] - }, - { - "time":1.12, - "rot" :[0.54706,-0.0100607,-0.0102414,0.836971] - }, - { - "time":1.2, - "rot" :[0.629933,-0.0110571,-0.00915672,0.776517] - }, - { - "time":1.28, - "rot" :[0.661833,-0.0114301,-0.00868667,0.749514] - }, - { - "time":1.36, - "rot" :[0.676258,-0.0115966,-0.00846314,0.736525] - }, - { - "time":1.44, - "rot" :[0.673042,-0.0115596,-0.0085136,0.739465] - }, - { - "time":1.52, - "rot" :[0.668128,-0.0115029,-0.00858999,0.743908] - }, - { - "time":1.6, - "rot" :[0.691378,-0.0117695,-0.00822098,0.722351] - }, - { - "time":1.68, - "rot" :[0.680958,-0.0116505,-0.00838876,0.732182] - }, - { - "time":1.76, - "rot" :[0.594454,-0.0106351,-0.00964365,0.804001] - }, - { - "time":1.84, - "rot" :[0.475969,-0.00917933,-0.0110383,0.879345] - }, - { - "time":1.92, - "rot" :[0.313601,-0.00709102,-0.0124828,0.949446] - }, - { - "time":2, - "pos" :[-2.95926e-08,2.02233,-1.13178e-07], - "rot" :[0.220398,-0.00585175,-0.0131096,0.975304], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 55, - "keys" : [ - { - "time":0, - "pos" :[-0.0218962,2.88707,-0.475675], - "rot" :[0.541996,0.00305767,-0.0321916,0.839758], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.564388,0.00473248,-0.031748,0.824886] - }, - { - "time":0.16, - "rot" :[0.604416,0.00736919,-0.0312845,0.79602] - }, - { - "time":0.24, - "rot" :[0.576738,0.00395311,-0.0334084,0.816236] - }, - { - "time":0.32, - "rot" :[0.460791,-0.0179477,-0.0425241,0.886308] - }, - { - "time":0.4, - "rot" :[0.359259,-0.0475714,-0.0459335,0.930892] - }, - { - "time":0.48, - "rot" :[0.347113,-0.0479658,-0.0438678,0.935568] - }, - { - "time":0.56, - "rot" :[0.355628,-0.0109771,-0.0259015,0.934204] - }, - { - "time":0.64, - "rot" :[0.36563,0.0181277,-0.010671,0.930523] - }, - { - "time":0.72, - "rot" :[0.365638,0.032078,-0.00310299,0.930199] - }, - { - "time":0.8, - "rot" :[0.365722,0.0396126,0.000984998,0.92988] - }, - { - "time":0.88, - "rot" :[0.372764,0.0394982,0.0014599,0.927084] - }, - { - "time":0.96, - "rot" :[0.409153,0.0365185,0.0023288,0.911732] - }, - { - "time":1.04, - "rot" :[0.445096,0.0344672,0.00341796,0.894813] - }, - { - "time":1.12, - "rot" :[0.312026,0.035017,-0.00219666,0.949426] - }, - { - "time":1.2, - "rot" :[0.330064,-0.000522126,-0.0184364,0.943778] - }, - { - "time":1.28, - "rot" :[0.314861,-0.00253011,-0.0184334,0.948955] - }, - { - "time":1.36, - "rot" :[0.291479,-0.00675029,-0.018227,0.95638] - }, - { - "time":1.44, - "rot" :[0.272216,-0.0109455,-0.0178237,0.962009] - }, - { - "time":1.52, - "rot" :[0.265581,-0.0121824,-0.017516,0.963852] - }, - { - "time":1.6, - "rot" :[0.291483,-0.00448105,-0.0175862,0.956404] - }, - { - "time":1.68, - "rot" :[0.370658,0.00947979,-0.0167015,0.928571] - }, - { - "time":1.76, - "rot" :[0.441984,0.0173204,-0.0138475,0.896749] - }, - { - "time":1.84, - "rot" :[0.486226,0.0146402,-0.0168745,0.873548] - }, - { - "time":1.92, - "rot" :[0.524127,0.00632023,-0.0269686,0.851189] - }, - { - "time":2, - "pos" :[-0.0218962,2.88707,-0.475675], - "rot" :[0.541996,0.00305767,-0.0321916,0.839758], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 52, - "keys" : [ - { - "time":0, - "pos" :[-0.633559,-0.198643,-0.410763], - "rot" :[-0.741449,0.0964258,0.122368,0.652673], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-0.633559,-0.198643,-0.410763], - "rot" :[-0.741449,0.0964258,0.122368,0.652673], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 57, - "keys" : [ - { - "time":0, - "pos" :[2.06453e-07,0.632829,-2.30166e-07], - "rot" :[-0.178989,0.0488426,-0.151493,0.97089], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.216229,0.0343922,-0.189056,0.957246] - }, - { - "time":0.16, - "rot" :[-0.28989,-0.00393861,-0.258756,0.921408] - }, - { - "time":0.24, - "rot" :[-0.351467,-0.0705813,-0.261772,0.896083] - }, - { - "time":0.32, - "rot" :[-0.358175,-0.166388,-0.0931688,0.913972] - }, - { - "time":0.4, - "rot" :[-0.202811,-0.242085,0.0640709,0.946656] - }, - { - "time":0.48, - "rot" :[-0.126073,-0.289935,0.0219572,0.948452] - }, - { - "time":0.56, - "rot" :[0.0444479,-0.318992,-0.112054,0.94006] - }, - { - "time":0.64, - "rot" :[0.193135,-0.35042,-0.167151,0.901091] - }, - { - "time":0.72, - "rot" :[0.21795,-0.359222,-0.185337,0.888317] - }, - { - "time":0.8, - "rot" :[0.19404,-0.350911,-0.197484,0.894545] - }, - { - "time":0.88, - "rot" :[0.163517,-0.331732,-0.186113,0.910263] - }, - { - "time":0.96, - "rot" :[0.239542,-0.316972,-0.134886,0.907719] - }, - { - "time":1.04, - "rot" :[0.225906,-0.279455,-0.122866,0.925081] - }, - { - "time":1.12, - "rot" :[0.336355,-0.209528,-0.00988191,0.918077] - }, - { - "time":1.2, - "rot" :[0.303923,-0.155107,0.00784972,0.939953] - }, - { - "time":1.28, - "rot" :[0.317251,-0.13718,0.0259558,0.938009] - }, - { - "time":1.36, - "rot" :[0.332591,-0.129336,0.0505531,0.932791] - }, - { - "time":1.44, - "rot" :[0.343915,-0.123619,0.0713836,0.928087] - }, - { - "time":1.52, - "rot" :[0.348112,-0.108242,0.0845676,0.927335] - }, - { - "time":1.6, - "rot" :[0.340918,-0.0822076,0.0641021,0.934295] - }, - { - "time":1.68, - "rot" :[0.306726,-0.0617939,-0.0235814,0.949497] - }, - { - "time":1.76, - "rot" :[0.118414,-0.0277593,-0.114105,0.985996] - }, - { - "time":1.84, - "rot" :[0.00551914,0.00966587,-0.137844,0.990392] - }, - { - "time":1.92, - "rot" :[-0.130039,0.0390177,-0.144747,0.98011] - }, - { - "time":2, - "pos" :[2.06453e-07,0.632829,-2.30166e-07], - "rot" :[-0.178989,0.0488426,-0.151493,0.97089], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 58, - "keys" : [ - { - "time":0, - "pos" :[7.18622e-08,2.02233,3.52329e-07], - "rot" :[0.525352,0.00979399,0.0104967,0.850764], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.564242,0.0497338,0.0370581,0.823277] - }, - { - "time":0.16, - "rot" :[0.628563,0.111669,0.0917841,0.764208] - }, - { - "time":0.24, - "rot" :[0.695399,0.10226,0.0971976,0.704638] - }, - { - "time":0.32, - "rot" :[0.769603,0.0121425,0.00622561,0.638377] - }, - { - "time":0.4, - "rot" :[0.684175,-0.0829769,-0.0817775,0.719953] - }, - { - "time":0.48, - "rot" :[0.644827,-0.0787099,-0.0677397,0.757241] - }, - { - "time":0.56, - "rot" :[0.495017,0.106835,0.0668842,0.859693] - }, - { - "time":0.64, - "rot" :[0.284882,0.248484,0.087632,0.921639] - }, - { - "time":0.72, - "rot" :[0.254962,0.244682,0.078325,0.932197] - }, - { - "time":0.8, - "rot" :[0.296851,0.232427,0.0853714,0.922263] - }, - { - "time":0.88, - "rot" :[0.3221,0.22616,0.0896298,0.914915] - }, - { - "time":0.96, - "rot" :[0.13053,0.20785,0.0412201,0.968536] - }, - { - "time":1.04, - "rot" :[0.132481,0.157658,0.0344381,0.977961] - }, - { - "time":1.12, - "rot" :[0.134184,0.103303,0.0270548,0.985186] - }, - { - "time":1.2, - "rot" :[0.135048,0.0687612,0.0223422,0.988198] - }, - { - "time":1.28, - "rot" :[0.135381,0.0533205,0.0202305,0.989151] - }, - { - "time":1.36, - "rot" :[0.135513,0.0467335,0.0193287,0.989484] - }, - { - "time":1.44, - "rot" :[0.13555,0.0448011,0.0190641,0.989574] - }, - { - "time":1.52, - "rot" :[0.135646,0.0396992,0.0183651,0.989791] - }, - { - "time":1.6, - "rot" :[0.135815,0.0302681,0.017072,0.990125] - }, - { - "time":1.68, - "rot" :[0.151648,0.0205799,0.01589,0.988093] - }, - { - "time":1.76, - "rot" :[0.40945,0.0156034,0.01495,0.912077] - }, - { - "time":1.84, - "rot" :[0.482291,0.0119466,0.0124514,0.875841] - }, - { - "time":1.92, - "rot" :[0.523443,0.0103406,0.0108688,0.851929] - }, - { - "time":2, - "pos" :[7.18622e-08,2.02233,3.52329e-07], - "rot" :[0.525352,0.00979399,0.0104967,0.850764], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 59, - "keys" : [ - { - "time":0, - "pos" :[0.0218968,2.88707,-0.475675], - "rot" :[0.39838,-0.01888,0.000690233,0.917026], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.395841,-0.0210914,0.00414422,0.918067] - }, - { - "time":0.16, - "rot" :[0.392535,-0.0248516,0.00760431,0.91937] - }, - { - "time":0.24, - "rot" :[0.391835,-0.0253877,-0.00283744,0.919681] - }, - { - "time":0.32, - "rot" :[0.401844,-0.0384479,-0.0329456,0.914307] - }, - { - "time":0.4, - "rot" :[0.416694,-0.049218,-0.0559889,0.905985] - }, - { - "time":0.48, - "rot" :[0.413151,-0.0425619,-0.0686511,0.907073] - }, - { - "time":0.56, - "rot" :[0.418358,-0.0465828,-0.0618409,0.904977] - }, - { - "time":0.64, - "rot" :[0.42852,-0.0462561,-0.0478776,0.901076] - }, - { - "time":0.72, - "rot" :[0.429824,-0.0396365,-0.046508,0.900843] - }, - { - "time":0.8, - "rot" :[0.432965,-0.0409169,-0.0469527,0.899262] - }, - { - "time":0.88, - "rot" :[0.443232,-0.0474785,-0.0446735,0.89402] - }, - { - "time":0.96, - "rot" :[0.469645,-0.0414352,-0.0377469,0.881074] - }, - { - "time":1.04, - "rot" :[0.474185,-0.0389305,-0.0377065,0.878756] - }, - { - "time":1.12, - "rot" :[0.431409,-0.0528042,-0.0417501,0.899642] - }, - { - "time":1.2, - "rot" :[0.410552,-0.0473815,-0.041956,0.909638] - }, - { - "time":1.28, - "rot" :[0.402314,-0.0483447,-0.0429618,0.913214] - }, - { - "time":1.36, - "rot" :[0.394521,-0.0508587,-0.0458788,0.916331] - }, - { - "time":1.44, - "rot" :[0.388593,-0.0535407,-0.0484927,0.918573] - }, - { - "time":1.52, - "rot" :[0.38527,-0.0559796,-0.04879,0.919811] - }, - { - "time":1.6, - "rot" :[0.38546,-0.0543388,-0.042916,0.920123] - }, - { - "time":1.68, - "rot" :[0.388807,-0.0424256,-0.0284278,0.919903] - }, - { - "time":1.76, - "rot" :[0.374915,-0.0327096,-0.0134342,0.926384] - }, - { - "time":1.84, - "rot" :[0.379622,-0.0274858,-0.00606014,0.924714] - }, - { - "time":1.92, - "rot" :[0.391863,-0.0218983,-0.00137951,0.919762] - }, - { - "time":2, - "pos" :[0.0218968,2.88707,-0.475675], - "rot" :[0.39838,-0.01888,0.000690233,0.917026], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 52, - "keys" : [ - { - "time":0, - "pos" :[0.684952,-1.23189,-0.378076], - "rot" :[-0.878473,-0.318879,0.00362747,0.355792], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.885074,-0.318891,-0.00243143,0.339038] - }, - { - "time":0.16, - "rot" :[-0.896111,-0.318623,-0.0132949,0.308686] - }, - { - "time":0.24, - "rot" :[-0.926286,-0.314825,-0.0508156,0.200741] - }, - { - "time":0.32, - "rot" :[-0.946617,-0.302337,-0.101439,0.0471134] - }, - { - "time":0.4, - "rot" :[-0.942766,-0.307308,-0.0851989,0.0974449] - }, - { - "time":0.48, - "rot" :[-0.931848,-0.313174,-0.0601586,0.173097] - }, - { - "time":0.56, - "rot" :[-0.888407,-0.318851,-0.00560752,0.330206] - }, - { - "time":0.64, - "rot" :[-0.827465,-0.315958,0.0432156,0.462173] - }, - { - "time":0.72, - "rot" :[-0.806751,-0.313799,0.0568096,0.49745] - }, - { - "time":0.8, - "rot" :[-0.800075,-0.313017,0.0609706,0.508116] - }, - { - "time":0.88, - "rot" :[-0.792201,-0.312047,0.0657567,0.520308] - }, - { - "time":0.96, - "rot" :[-0.749628,-0.306033,0.0896719,0.579966] - }, - { - "time":1.04, - "rot" :[-0.705713,-0.298745,0.111574,0.632671] - }, - { - "time":1.12, - "rot" :[-0.751944,-0.30639,0.0884459,0.57696] - }, - { - "time":1.2, - "rot" :[-0.820849,-0.315316,0.0476776,0.473824] - }, - { - "time":1.28, - "rot" :[-0.833808,-0.316528,0.0388203,0.450629] - }, - { - "time":1.36, - "rot" :[-0.82575,-0.315796,0.0443838,0.465231] - }, - { - "time":1.44, - "rot" :[-0.8094,-0.314099,0.0551303,0.493127] - }, - { - "time":1.52, - "rot" :[-0.798629,-0.312843,0.0618597,0.510387] - }, - { - "time":1.6, - "rot" :[-0.818751,-0.315102,0.0490683,0.477441] - }, - { - "time":1.68, - "rot" :[-0.859715,-0.318306,0.0194631,0.39899] - }, - { - "time":1.76, - "rot" :[-0.880505,-0.318895,0.00179334,0.350734] - }, - { - "time":1.84, - "rot" :[-0.875711,-0.318842,0.00607945,0.362537] - }, - { - "time":1.92, - "rot" :[-0.868456,-0.318662,0.0123114,0.379587] - }, - { - "time":2, - "pos" :[0.684952,-1.23189,-0.378075], - "rot" :[-0.874081,-0.318812,0.00750501,0.366449], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 52, - "keys" : [ - { - "time":0, - "pos" :[0.956542,-0.948859,-0.263878], - "rot" :[-0.777524,-0.485772,0.128457,0.378127], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.782967,-0.487598,0.121344,0.366724] - }, - { - "time":0.16, - "rot" :[-0.79231,-0.490611,0.108522,0.346076] - }, - { - "time":0.24, - "rot" :[-0.820487,-0.498444,0.0634793,0.272627] - }, - { - "time":0.32, - "rot" :[-0.848228,-0.50247,0.000381872,0.167431] - }, - { - "time":0.4, - "rot" :[-0.842784,-0.502229,0.0155586,0.192975] - }, - { - "time":0.48, - "rot" :[-0.826511,-0.499766,0.0520559,0.253779] - }, - { - "time":0.56, - "rot" :[-0.785754,-0.488513,0.117605,0.360714] - }, - { - "time":0.64, - "rot" :[-0.737784,-0.471255,0.17434,0.450776] - }, - { - "time":0.72, - "rot" :[-0.722412,-0.465208,0.189889,0.475021] - }, - { - "time":0.8, - "rot" :[-0.717523,-0.463244,0.19463,0.482374] - }, - { - "time":0.88, - "rot" :[-0.711791,-0.460919,0.200073,0.490792] - }, - { - "time":0.96, - "rot" :[-0.681348,-0.448207,0.227127,0.532249] - }, - { - "time":1.04, - "rot" :[-0.650666,-0.434869,0.251723,0.569349] - }, - { - "time":1.12, - "rot" :[-0.682984,-0.448904,0.225745,0.530148] - }, - { - "time":1.2, - "rot" :[-0.732838,-0.469331,0.179455,0.458772] - }, - { - "time":1.28, - "rot" :[-0.742561,-0.473092,0.169293,0.442863] - }, - { - "time":1.36, - "rot" :[-0.736498,-0.470757,0.17568,0.452874] - }, - { - "time":1.44, - "rot" :[-0.72436,-0.465985,0.187973,0.472045] - }, - { - "time":1.52, - "rot" :[-0.716467,-0.462818,0.195642,0.483941] - }, - { - "time":1.6, - "rot" :[-0.731277,-0.46872,0.181046,0.461257] - }, - { - "time":1.68, - "rot" :[-0.762505,-0.480508,0.146928,0.407566] - }, - { - "time":1.76, - "rot" :[-0.77919,-0.486336,0.126307,0.374684] - }, - { - "time":1.84, - "rot" :[-0.775274,-0.485004,0.131328,0.38272] - }, - { - "time":1.92, - "rot" :[-0.769431,-0.482974,0.138607,0.394336] - }, - { - "time":2, - "pos" :[0.956542,-0.948859,-0.263878], - "rot" :[-0.773953,-0.484549,0.132996,0.385384], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 52, - "keys" : [ - { - "time":0, - "pos" :[1.0901,-0.516434,0.000152145], - "rot" :[-0.597748,-0.59927,0.38553,0.367342], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.598819,-0.600394,0.383777,0.365593] - }, - { - "time":0.16, - "rot" :[-0.600727,-0.602398,0.380624,0.362448] - }, - { - "time":0.24, - "rot" :[-0.607225,-0.609227,0.369595,0.351453] - }, - { - "time":0.32, - "rot" :[-0.615883,-0.61834,0.354138,0.336052] - }, - { - "time":0.4, - "rot" :[-0.61384,-0.616188,0.357868,0.339768] - }, - { - "time":0.48, - "rot" :[-0.608828,-0.610912,0.366803,0.34867] - }, - { - "time":0.56, - "rot" :[-0.599378,-0.600982,0.382856,0.364675] - }, - { - "time":0.64, - "rot" :[-0.590599,-0.591773,0.396942,0.378728] - }, - { - "time":0.72, - "rot" :[-0.588071,-0.589124,0.400863,0.382641] - }, - { - "time":0.8, - "rot" :[-0.587288,-0.588304,0.402066,0.383842] - }, - { - "time":0.88, - "rot" :[-0.586382,-0.587355,0.403451,0.385224] - }, - { - "time":0.96, - "rot" :[-0.581757,-0.582512,0.410411,0.392175] - }, - { - "time":1.04, - "rot" :[-0.57733,-0.577882,0.416857,0.398614] - }, - { - "time":1.12, - "rot" :[-0.581998,-0.582765,0.410052,0.391816] - }, - { - "time":1.2, - "rot" :[-0.589774,-0.590908,0.398228,0.380011] - }, - { - "time":1.28, - "rot" :[-0.591408,-0.59262,0.395676,0.377464] - }, - { - "time":1.36, - "rot" :[-0.590384,-0.591547,0.397279,0.379064] - }, - { - "time":1.44, - "rot" :[-0.588386,-0.589453,0.400378,0.382158] - }, - { - "time":1.52, - "rot" :[-0.58712,-0.588128,0.402323,0.384099] - }, - { - "time":1.6, - "rot" :[-0.589516,-0.590638,0.398629,0.380412] - }, - { - "time":1.68, - "rot" :[-0.594922,-0.596305,0.3901,0.371901] - }, - { - "time":1.76, - "rot" :[-0.598072,-0.599611,0.385,0.366813] - }, - { - "time":1.84, - "rot" :[-0.597313,-0.598813,0.386239,0.368048] - }, - { - "time":1.92, - "rot" :[-0.596203,-0.597649,0.388038,0.369843] - }, - { - "time":2, - "pos" :[1.0901,-0.516434,0.000152145], - "rot" :[-0.597059,-0.598548,0.386651,0.368459], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 52, - "keys" : [ - { - "time":0, - "pos" :[1.01277,-0.0060879,0.121082], - "rot" :[-0.496518,-0.668985,0.506003,0.22336], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.496843,-0.669724,0.505025,0.222634] - }, - { - "time":0.16, - "rot" :[-0.497425,-0.671046,0.503267,0.221331] - }, - { - "time":0.24, - "rot" :[-0.499419,-0.675599,0.497139,0.216794] - }, - { - "time":0.32, - "rot" :[-0.502109,-0.681805,0.488593,0.210489] - }, - { - "time":0.4, - "rot" :[-0.501471,-0.680326,0.49065,0.212005] - }, - { - "time":0.48, - "rot" :[-0.499914,-0.676735,0.495591,0.215651] - }, - { - "time":0.56, - "rot" :[-0.497014,-0.670111,0.504511,0.222254] - }, - { - "time":0.64, - "rot" :[-0.494355,-0.664107,0.512389,0.228107] - }, - { - "time":0.72, - "rot" :[-0.493594,-0.6624,0.514591,0.229747] - }, - { - "time":0.8, - "rot" :[-0.49336,-0.661876,0.515268,0.230252] - }, - { - "time":0.88, - "rot" :[-0.493088,-0.661268,0.516047,0.230832] - }, - { - "time":0.96, - "rot" :[-0.491694,-0.658171,0.51996,0.233756] - }, - { - "time":1.04, - "rot" :[-0.490388,-0.655269,0.523621,0.236493] - }, - { - "time":1.12, - "rot" :[-0.491778,-0.658346,0.51977,0.233611] - }, - { - "time":1.2, - "rot" :[-0.494106,-0.663549,0.513111,0.228645] - }, - { - "time":1.28, - "rot" :[-0.494615,-0.664677,0.511697,0.227587] - }, - { - "time":1.36, - "rot" :[-0.494297,-0.66397,0.512586,0.228251] - }, - { - "time":1.44, - "rot" :[-0.493678,-0.662599,0.514307,0.229539] - }, - { - "time":1.52, - "rot" :[-0.493289,-0.661736,0.515391,0.230349] - }, - { - "time":1.6, - "rot" :[-0.494029,-0.663375,0.513336,0.228812] - }, - { - "time":1.68, - "rot" :[-0.49566,-0.667046,0.508557,0.225257] - }, - { - "time":1.76, - "rot" :[-0.496616,-0.669209,0.505707,0.223141] - }, - { - "time":1.84, - "rot" :[-0.496377,-0.668674,0.506389,0.22365] - }, - { - "time":1.92, - "rot" :[-0.496031,-0.6679,0.507385,0.224392] - }, - { - "time":2, - "pos" :[1.01277,-0.0060879,0.121083], - "rot" :[-0.496308,-0.668512,0.506629,0.223825], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 52, - "keys" : [ - { - "time":0, - "pos" :[-0.684952,-1.23189,-0.378075], - "rot" :[-0.747274,0.305667,-0.0909105,0.582997], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.752404,0.30646,-0.0882018,0.576361] - }, - { - "time":0.16, - "rot" :[-0.771202,0.30923,-0.0779351,0.550954] - }, - { - "time":0.24, - "rot" :[-0.804531,0.313544,-0.058204,0.501031] - }, - { - "time":0.32, - "rot" :[-0.837647,0.31685,-0.0361012,0.443453] - }, - { - "time":0.4, - "rot" :[-0.803419,0.313414,-0.058899,0.502813] - }, - { - "time":0.48, - "rot" :[-0.764052,0.308202,-0.0819057,0.560827] - }, - { - "time":0.56, - "rot" :[-0.684649,0.294937,-0.121282,0.655407] - }, - { - "time":0.64, - "rot" :[-0.607814,0.279683,-0.153215,0.727231] - }, - { - "time":0.72, - "rot" :[-0.553668,0.267879,-0.173027,0.769256] - }, - { - "time":0.8, - "rot" :[-0.555858,0.268371,-0.172262,0.767675] - }, - { - "time":0.88, - "rot" :[-0.58643,0.275114,-0.161275,0.744582] - }, - { - "time":0.96, - "rot" :[-0.576268,0.272899,-0.164995,0.752475] - }, - { - "time":1.04, - "rot" :[-0.592896,0.276509,-0.158872,0.739443] - }, - { - "time":1.12, - "rot" :[-0.58773,0.275395,-0.160795,0.743557] - }, - { - "time":1.2, - "rot" :[-0.604366,0.278955,-0.154536,0.730099] - }, - { - "time":1.28, - "rot" :[-0.619646,0.282155,-0.148612,0.717176] - }, - { - "time":1.36, - "rot" :[-0.615423,0.281278,-0.150267,0.720804] - }, - { - "time":1.44, - "rot" :[-0.609227,0.27998,-0.152671,0.726048] - }, - { - "time":1.52, - "rot" :[-0.605719,0.279241,-0.154019,0.728977] - }, - { - "time":1.6, - "rot" :[-0.606587,0.279424,-0.153686,0.728255] - }, - { - "time":1.68, - "rot" :[-0.617917,0.281797,-0.149291,0.718666] - }, - { - "time":1.76, - "rot" :[-0.681181,0.294293,-0.122837,0.659011] - }, - { - "time":1.84, - "rot" :[-0.712631,0.299954,-0.10828,0.624868] - }, - { - "time":1.92, - "rot" :[-0.728086,0.302577,-0.10072,0.60679] - }, - { - "time":2, - "pos" :[-0.684952,-1.23189,-0.378075], - "rot" :[-0.741664,0.304784,-0.0938294,0.590116], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 52, - "keys" : [ - { - "time":0, - "pos" :[-0.956542,-0.948859,-0.263878], - "rot" :[-0.679687,0.447497,-0.228522,0.534369], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.683309,0.449042,-0.22547,0.529729] - }, - { - "time":0.16, - "rot" :[-0.696671,0.454678,-0.213879,0.512029] - }, - { - "time":0.24, - "rot" :[-0.720784,0.464556,-0.191479,0.477488] - }, - { - "time":0.32, - "rot" :[-0.745469,0.4742,-0.166164,0.437949] - }, - { - "time":0.4, - "rot" :[-0.719968,0.464228,-0.192271,0.478717] - }, - { - "time":0.48, - "rot" :[-0.691571,0.45254,-0.218366,0.518896] - }, - { - "time":0.56, - "rot" :[-0.636139,0.4284,-0.262582,0.585535] - }, - { - "time":0.64, - "rot" :[-0.583872,0.40444,-0.298168,0.637665] - }, - { - "time":0.72, - "rot" :[-0.547507,0.387232,-0.320198,0.669149] - }, - { - "time":0.8, - "rot" :[-0.548973,0.387933,-0.319349,0.667947] - }, - { - "time":0.88, - "rot" :[-0.569476,0.397675,-0.307132,0.650555] - }, - { - "time":0.96, - "rot" :[-0.562651,0.394446,-0.311269,0.656466] - }, - { - "time":1.04, - "rot" :[-0.573824,0.399725,-0.30446,0.646723] - }, - { - "time":1.12, - "rot" :[-0.570349,0.398087,-0.306598,0.649789] - }, - { - "time":1.2, - "rot" :[-0.581548,0.403352,-0.299638,0.639786] - }, - { - "time":1.28, - "rot" :[-0.591862,0.408165,-0.293048,0.630257] - }, - { - "time":1.36, - "rot" :[-0.589008,0.406837,-0.294889,0.632925] - }, - { - "time":1.44, - "rot" :[-0.584825,0.404885,-0.297563,0.636791] - }, - { - "time":1.52, - "rot" :[-0.58246,0.403779,-0.299063,0.638956] - }, - { - "time":1.6, - "rot" :[-0.583045,0.404053,-0.298693,0.638422] - }, - { - "time":1.68, - "rot" :[-0.590693,0.407622,-0.293804,0.631352] - }, - { - "time":1.76, - "rot" :[-0.633757,0.427331,-0.264318,0.588112] - }, - { - "time":1.84, - "rot" :[-0.655462,0.436985,-0.248033,0.56382] - }, - { - "time":1.92, - "rot" :[-0.666222,0.441691,-0.239552,0.551064] - }, - { - "time":2, - "pos" :[-0.956542,-0.948859,-0.263878], - "rot" :[-0.675738,0.445804,-0.231808,0.539354], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 52, - "keys" : [ - { - "time":0, - "pos" :[-1.0901,-0.516434,0.000152622], - "rot" :[-0.581513,0.582256,-0.410776,0.392535], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.582048,0.582817,-0.409984,0.391744] - }, - { - "time":0.16, - "rot" :[-0.584049,0.584911,-0.406987,0.388752] - }, - { - "time":0.24, - "rot" :[-0.58781,0.588849,-0.401268,0.383042] - }, - { - "time":0.32, - "rot" :[-0.591906,0.593142,-0.394894,0.376681] - }, - { - "time":0.4, - "rot" :[-0.587679,0.588712,-0.401469,0.383242] - }, - { - "time":0.48, - "rot" :[-0.583279,0.584104,-0.408143,0.389907] - }, - { - "time":0.56, - "rot" :[-0.57534,0.5758,-0.419778,0.401528] - }, - { - "time":0.64, - "rot" :[-0.568398,0.568546,-0.429551,0.411296] - }, - { - "time":0.72, - "rot" :[-0.563786,0.563731,-0.435851,0.417596] - }, - { - "time":0.8, - "rot" :[-0.563969,0.563922,-0.435604,0.417349] - }, - { - "time":0.88, - "rot" :[-0.566554,0.56662,-0.432088,0.413833] - }, - { - "time":0.96, - "rot" :[-0.565688,0.565717,-0.433271,0.415015] - }, - { - "time":1.04, - "rot" :[-0.567108,0.567199,-0.431328,0.413073] - }, - { - "time":1.12, - "rot" :[-0.566665,0.566737,-0.431936,0.413681] - }, - { - "time":1.2, - "rot" :[-0.568098,0.568233,-0.429965,0.41171] - }, - { - "time":1.28, - "rot" :[-0.569403,0.569597,-0.428095,0.409842] - }, - { - "time":1.36, - "rot" :[-0.569049,0.569227,-0.428622,0.410368] - }, - { - "time":1.44, - "rot" :[-0.568526,0.56868,-0.429385,0.41113] - }, - { - "time":1.52, - "rot" :[-0.568232,0.568372,-0.429814,0.411559] - }, - { - "time":1.6, - "rot" :[-0.56831,0.568453,-0.429712,0.411457] - }, - { - "time":1.68, - "rot" :[-0.569281,0.569468,-0.428328,0.410073] - }, - { - "time":1.76, - "rot" :[-0.575014,0.575459,-0.420245,0.401995] - }, - { - "time":1.84, - "rot" :[-0.578012,0.578595,-0.415885,0.397639] - }, - { - "time":1.92, - "rot" :[-0.579547,0.5802,-0.413652,0.395408] - }, - { - "time":2, - "pos" :[-1.0901,-0.516434,0.000152145], - "rot" :[-0.580935,0.581651,-0.411632,0.39339], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 52, - "keys" : [ - { - "time":0, - "pos" :[-1.01277,-0.00608802,0.121082], - "rot" :[-0.491634,0.658024,-0.520178,0.233915], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.491793,0.658377,-0.519729,0.23358] - }, - { - "time":0.16, - "rot" :[-0.492388,0.659706,-0.518036,0.232316] - }, - { - "time":0.24, - "rot" :[-0.493517,0.662225,-0.514818,0.229916] - }, - { - "time":0.32, - "rot" :[-0.494749,0.664991,-0.51124,0.227251] - }, - { - "time":0.4, - "rot" :[-0.493478,0.662138,-0.514931,0.23] - }, - { - "time":0.48, - "rot" :[-0.49216,0.659195,-0.51869,0.232804] - }, - { - "time":0.56, - "rot" :[-0.489801,0.653961,-0.525277,0.237729] - }, - { - "time":0.64, - "rot" :[-0.487753,0.649451,-0.530843,0.241903] - }, - { - "time":0.72, - "rot" :[-0.486413,0.646505,-0.534462,0.24462] - }, - { - "time":0.8, - "rot" :[-0.486453,0.646604,-0.534306,0.244507] - }, - { - "time":0.88, - "rot" :[-0.487187,0.648231,-0.532268,0.242982] - }, - { - "time":0.96, - "rot" :[-0.486942,0.647687,-0.532954,0.243495] - }, - { - "time":1.04, - "rot" :[-0.487349,0.648587,-0.531832,0.242655] - }, - { - "time":1.12, - "rot" :[-0.487226,0.648311,-0.532188,0.242919] - }, - { - "time":1.2, - "rot" :[-0.48764,0.649225,-0.531053,0.242069] - }, - { - "time":1.28, - "rot" :[-0.488028,0.650081,-0.529993,0.241275] - }, - { - "time":1.36, - "rot" :[-0.487927,0.649851,-0.530295,0.241499] - }, - { - "time":1.44, - "rot" :[-0.487777,0.649514,-0.530733,0.241825] - }, - { - "time":1.52, - "rot" :[-0.487695,0.649328,-0.530982,0.24201] - }, - { - "time":1.6, - "rot" :[-0.487723,0.649384,-0.530928,0.241967] - }, - { - "time":1.68, - "rot" :[-0.488012,0.650021,-0.530144,0.241379] - }, - { - "time":1.76, - "rot" :[-0.489685,0.653722,-0.525522,0.237919] - }, - { - "time":1.84, - "rot" :[-0.490584,0.655705,-0.523061,0.236074] - }, - { - "time":1.92, - "rot" :[-0.491047,0.656725,-0.521803,0.235131] - }, - { - "time":2, - "pos" :[-1.01277,-0.00608802,0.121082], - "rot" :[-0.491462,0.657641,-0.520662,0.234276], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : -1, - "keys" : [ - { - "time":0, - "pos" :[-0.559369,6.61998e-07,5.03401], - "rot" :[-0.706883,-0.017774,-0.017774,0.706883], - "scl" :[1,1,1] - }, - { - "time":2, - "pos" :[-0.559369,6.61998e-07,5.03401], - "rot" :[-0.706883,-0.017774,-0.017774,0.706883], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 69, - "keys" : [ - { - "time":0, - "pos" :[0.0101042,0.274313,-1.72761e-08], - "rot" :[2.43051e-08,-5.48699e-09,0.00924737,0.999957], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.0037798,3.4949e-05,0.00924737,0.999957] - }, - { - "time":0.16, - "rot" :[0.0101515,9.3873e-05,0.00924737,0.999957] - }, - { - "time":0.24, - "rot" :[0.0104536,9.66665e-05,0.00924737,0.999957] - }, - { - "time":0.32, - "rot" :[0.00557095,5.15131e-05,0.00924737,0.999957] - }, - { - "time":0.4, - "rot" :[0.00068817,6.35833e-06,0.00924737,0.999957] - }, - { - "time":0.48, - "rot" :[2.43051e-08,-5.48699e-09,0.00924737,0.999957] - }, - { - "time":2, - "pos" :[0.0101042,0.274313,-1.72761e-08], - "rot" :[2.43051e-08,-5.48699e-09,0.00924737,0.999957], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 70, - "keys" : [ - { - "time":0, - "pos" :[6.701e-08,0.445288,-3.68743e-14], - "rot" :[7.5336e-09,-1.37981e-09,-0.000627395,1], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.00589736,-3.70134e-06,-0.000627385,0.999983] - }, - { - "time":0.16, - "rot" :[0.0158387,-9.9385e-06,-0.000627317,0.999874] - }, - { - "time":0.24, - "rot" :[0.01631,-1.02342e-05,-0.000627312,0.999867] - }, - { - "time":0.32, - "rot" :[0.00869212,-5.45476e-06,-0.000627372,0.999962] - }, - { - "time":0.4, - "rot" :[0.0010737,-6.75011e-07,-0.000627379,0.999974] - }, - { - "time":0.48, - "rot" :[7.53345e-09,-1.37979e-09,-0.000627383,0.99998] - }, - { - "time":2, - "pos" :[6.701e-08,0.445288,-3.68743e-14], - "rot" :[7.5336e-09,-1.37981e-09,-0.000627395,1], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 71, - "keys" : [ - { - "time":0, - "pos" :[-7.45019e-08,0.341904,1.86704e-14], - "rot" :[3.78985e-09,2.32385e-11,-0.00810272,0.999967], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[0.0035381,-2.86691e-05,-0.00810272,0.999967] - }, - { - "time":0.16, - "rot" :[0.00950317,-7.7004e-05,-0.00810272,0.999967] - }, - { - "time":0.24, - "rot" :[0.00978596,-7.92954e-05,-0.00810272,0.999967] - }, - { - "time":0.32, - "rot" :[0.00521514,-4.22582e-05,-0.00810272,0.999967] - }, - { - "time":0.4, - "rot" :[0.0006442,-5.21989e-06,-0.00810272,0.999967] - }, - { - "time":0.48, - "rot" :[3.78985e-09,2.32385e-11,-0.00810272,0.999967] - }, - { - "time":2, - "pos" :[-7.45019e-08,0.341904,1.86704e-14], - "rot" :[3.78985e-09,2.32385e-11,-0.00810272,0.999967], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 72, - "keys" : [ - { - "time":0, - "pos" :[-2.5986e-08,0.415182,-4.61009e-15], - "rot" :[-2.33937e-09,1.23883e-09,-0.00594688,0.999982], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.00235926,1.40317e-05,-0.00594688,0.999982] - }, - { - "time":0.16, - "rot" :[-0.00633559,3.76789e-05,-0.00594688,0.999982] - }, - { - "time":0.24, - "rot" :[-0.00652413,3.88001e-05,-0.00594688,0.999982] - }, - { - "time":0.32, - "rot" :[-0.00347682,2.06778e-05,-0.00594688,0.999982] - }, - { - "time":0.4, - "rot" :[-0.000429476,2.55531e-06,-0.00594688,0.999982] - }, - { - "time":0.48, - "rot" :[-2.33937e-09,1.23883e-09,-0.00594688,0.999982] - }, - { - "time":2, - "pos" :[-2.5986e-08,0.415182,-4.61009e-15], - "rot" :[-2.33937e-09,1.23883e-09,-0.00594688,0.999982], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : -1, - "keys" : [ - { - "time":0, - "pos" :[-1.306,-6.61138e-09,-0.717687], - "rot" :[-0.532489,-0.465248,-0.465248,0.532489], - "scl" :[1,1,1] - }, - { - "time":0.08, - "rot" :[-0.538517,-0.458258,-0.458258,0.538516] - }, - { - "time":0.16, - "rot" :[-0.555367,-0.437684,-0.437684,0.555367] - }, - { - "time":0.24, - "rot" :[-0.577269,-0.408364,-0.408364,0.577268] - }, - { - "time":0.32, - "rot" :[-0.59571,-0.380959,-0.380959,0.59571] - }, - { - "time":0.4, - "rot" :[-0.605378,-0.3654,-0.3654,0.605378] - }, - { - "time":0.48, - "rot" :[-0.606562,-0.363432,-0.363432,0.606561] - }, - { - "time":1.76, - "rot" :[-0.606562,-0.363432,-0.363432,0.606561] - }, - { - "time":1.84, - "rot" :[-0.590388,-0.389156,-0.389156,0.590388] - }, - { - "time":1.92, - "rot" :[-0.551994,-0.44193,-0.44193,0.551994] - }, - { - "time":2, - "pos" :[-1.306,-6.61138e-09,-0.717687], - "rot" :[-0.532489,-0.465248,-0.465248,0.532489], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 74, - "keys" : [ - { - "time":0, - "pos" :[-0.0101042,0.274313,-1.7276e-08], - "rot" :[1.95493e-08,7.61654e-09,-0.00924746,0.999957], - "scl" :[1,1,1] - }, - { - "time":0.16, - "rot" :[1.95491e-08,7.61649e-09,-0.00924737,0.999948] - }, - { - "time":0.24, - "rot" :[0.00768753,-7.10847e-05,-0.00924719,0.999928] - }, - { - "time":0.32, - "rot" :[0.0635125,-0.000587341,-0.00922879,0.997938] - }, - { - "time":0.4, - "rot" :[0.119126,-0.00110164,-0.00918161,0.992836] - }, - { - "time":0.48, - "rot" :[0.123423,-0.00114138,-0.00917675,0.992311] - }, - { - "time":0.56, - "rot" :[0.101939,-0.000942697,-0.00919928,0.994748] - }, - { - "time":0.64, - "rot" :[0.0891841,-0.000824747,-0.00921061,0.995972] - }, - { - "time":0.72, - "rot" :[0.0936419,-0.00086597,-0.00920682,0.995563] - }, - { - "time":0.8, - "rot" :[0.106224,-0.000982331,-0.00919514,0.994299] - }, - { - "time":0.88, - "rot" :[0.122388,-0.00113181,-0.00917794,0.992439] - }, - { - "time":0.96, - "rot" :[0.134933,-0.00124782,-0.00916288,0.990812] - }, - { - "time":1.04, - "rot" :[0.13937,-0.00128886,-0.0091572,0.990197] - }, - { - "time":1.12, - "rot" :[0.0956343,-0.000884396,-0.00920507,0.995374] - }, - { - "time":1.2, - "rot" :[0.0450652,-0.000416745,-0.00923806,0.998941] - }, - { - "time":1.28, - "rot" :[0.0341268,-0.000315589,-0.00924207,0.999375] - }, - { - "time":1.36, - "rot" :[0.0245073,-0.00022663,-0.00924468,0.999657] - }, - { - "time":1.44, - "rot" :[0.0164593,-0.000152204,-0.00924621,0.999822] - }, - { - "time":1.52, - "rot" :[0.010155,-9.39029e-05,-0.00924698,0.999906] - }, - { - "time":1.6, - "rot" :[0.00561891,-5.19546e-05,-0.00924719,0.999928] - }, - { - "time":1.68, - "rot" :[0.00268811,-2.48512e-05,-0.00924733,0.999943] - }, - { - "time":1.76, - "rot" :[0.00103981,-9.60811e-06,-0.00924741,0.999952] - }, - { - "time":1.84, - "rot" :[0.000278746,-2.56998e-06,-0.00924745,0.999956] - }, - { - "time":1.92, - "rot" :[3.12778e-05,-2.81453e-07,-0.00924746,0.999957] - }, - { - "time":2, - "pos" :[-0.0101042,0.274313,-1.7276e-08], - "rot" :[1.95493e-08,7.61654e-09,-0.00924746,0.999957], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 75, - "keys" : [ - { - "time":0, - "pos" :[-1.63892e-07,0.445289,1.91993e-14], - "rot" :[8.08932e-11,4.62889e-09,0.000627373,1], - "scl" :[1,1,1] - }, - { - "time":0.16, - "rot" :[8.07404e-11,4.62887e-09,0.000627359,0.999977] - }, - { - "time":0.24, - "rot" :[0.0119945,7.52989e-06,0.000627328,0.999928] - }, - { - "time":0.32, - "rot" :[0.0990014,6.21175e-05,0.000624291,0.995087] - }, - { - "time":0.4, - "rot" :[0.185236,0.00011622,0.000616515,0.982694] - }, - { - "time":0.48, - "rot" :[0.191869,0.000120382,0.000615717,0.98142] - }, - { - "time":0.56, - "rot" :[0.158656,9.95443e-05,0.000619426,0.987334] - }, - { - "time":0.64, - "rot" :[0.138887,8.71412e-05,0.000621293,0.990308] - }, - { - "time":0.72, - "rot" :[0.1458,9.14786e-05,0.000620669,0.989314] - }, - { - "time":0.8, - "rot" :[0.165291,0.000103707,0.000618743,0.986245] - }, - { - "time":0.88, - "rot" :[0.190272,0.00011938,0.000615912,0.981731] - }, - { - "time":0.96, - "rot" :[0.209611,0.000131514,0.000613435,0.977785] - }, - { - "time":1.04, - "rot" :[0.21644,0.000135797,0.000612501,0.976296] - }, - { - "time":1.12, - "rot" :[0.148889,9.34164e-05,0.00062038,0.988854] - }, - { - "time":1.2, - "rot" :[0.0702799,4.40978e-05,0.000625822,0.997527] - }, - { - "time":1.28, - "rot" :[0.0532323,3.34023e-05,0.000626484,0.998582] - }, - { - "time":1.36, - "rot" :[0.0382326,2.39915e-05,0.000626915,0.999269] - }, - { - "time":1.44, - "rot" :[0.0256793,1.61157e-05,0.000627166,0.99967] - }, - { - "time":1.52, - "rot" :[0.0158441,9.94514e-06,0.000627295,0.999874] - }, - { - "time":1.6, - "rot" :[0.00876696,5.50496e-06,0.000627349,0.999961] - }, - { - "time":1.68, - "rot" :[0.00419411,2.63599e-06,0.00062736,0.999979] - }, - { - "time":1.76, - "rot" :[0.00162235,1.02248e-06,0.000627368,0.999991] - }, - { - "time":1.84, - "rot" :[0.00043489,2.77477e-07,0.000627372,0.999997] - }, - { - "time":1.92, - "rot" :[4.87716e-05,3.52278e-08,0.000627373,1] - }, - { - "time":2, - "pos" :[-1.63892e-07,0.445289,1.91993e-14], - "rot" :[8.08932e-11,4.62889e-09,0.000627373,1], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 76, - "keys" : [ - { - "time":0, - "pos" :[2.98678e-08,0.341904,1.95463e-14], - "rot" :[-7.05313e-10,3.01955e-09,0.00810255,0.999967], - "scl" :[1,1,1] - }, - { - "time":0.16, - "rot" :[-7.05408e-10,3.01955e-09,0.00810242,0.999951] - }, - { - "time":0.24, - "rot" :[0.0100751,8.16413e-05,0.00810214,0.999917] - }, - { - "time":0.32, - "rot" :[0.0831986,0.00067416,0.00807445,0.9965] - }, - { - "time":0.4, - "rot" :[0.155859,0.00126292,0.00800352,0.987746] - }, - { - "time":0.48, - "rot" :[0.161461,0.00130832,0.00799622,0.986846] - }, - { - "time":0.56, - "rot" :[0.133433,0.00108121,0.00803009,0.991025] - }, - { - "time":0.64, - "rot" :[0.116772,0.000946207,0.00804711,0.993126] - }, - { - "time":0.72, - "rot" :[0.122597,0.000993403,0.00804142,0.992424] - }, - { - "time":0.8, - "rot" :[0.139028,0.00112654,0.00802385,0.990255] - }, - { - "time":0.88, - "rot" :[0.160111,0.00129738,0.00799801,0.987066] - }, - { - "time":0.96, - "rot" :[0.176455,0.00142981,0.0079754,0.984276] - }, - { - "time":1.04, - "rot" :[0.18223,0.00147661,0.00796687,0.983223] - }, - { - "time":1.12, - "rot" :[0.1252,0.00101449,0.00803879,0.992099] - }, - { - "time":1.2, - "rot" :[0.0590476,0.000478464,0.00808841,0.998222] - }, - { - "time":1.28, - "rot" :[0.0447199,0.000362368,0.00809444,0.998967] - }, - { - "time":1.36, - "rot" :[0.0321166,0.000260244,0.00809837,0.999451] - }, - { - "time":1.44, - "rot" :[0.0215706,0.000174789,0.00810066,0.999735] - }, - { - "time":1.52, - "rot" :[0.0133088,0.000107844,0.00810183,0.999879] - }, - { - "time":1.6, - "rot" :[0.00736403,5.96737e-05,0.00810214,0.999917] - }, - { - "time":1.68, - "rot" :[0.00352286,2.85487e-05,0.00810235,0.999943] - }, - { - "time":1.76, - "rot" :[0.00136273,1.10452e-05,0.00810247,0.999958] - }, - { - "time":1.84, - "rot" :[0.000365295,2.96301e-06,0.00810253,0.999965] - }, - { - "time":1.92, - "rot" :[4.0966e-05,3.34972e-07,0.00810254,0.999967] - }, - { - "time":2, - "pos" :[2.98678e-08,0.341904,1.95463e-14], - "rot" :[-7.05313e-10,3.01955e-09,0.00810255,0.999967], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : 77, - "keys" : [ - { - "time":0, - "pos" :[2.59651e-08,0.415182,9.19816e-16], - "rot" :[3.6263e-09,-2.10041e-09,0.00594681,0.999982], - "scl" :[1,1,1] - }, - { - "time":0.16, - "rot" :[3.6263e-09,-2.10041e-09,0.00594679,0.999979] - }, - { - "time":0.24, - "rot" :[-0.0047978,-2.85345e-05,0.00594674,0.999971] - }, - { - "time":0.32, - "rot" :[-0.0396544,-0.000235826,0.00594213,0.999196] - }, - { - "time":0.4, - "rot" :[-0.0744544,-0.000442781,0.0059303,0.997207] - }, - { - "time":0.48, - "rot" :[-0.0771484,-0.000458802,0.00592908,0.997002] - }, - { - "time":0.56, - "rot" :[-0.0636873,-0.00037875,0.00593473,0.997952] - }, - { - "time":0.64, - "rot" :[-0.055705,-0.000331278,0.00593757,0.99843] - }, - { - "time":0.72, - "rot" :[-0.0584941,-0.000347866,0.00593662,0.99827] - }, - { - "time":0.8, - "rot" :[-0.066371,-0.000394709,0.00593369,0.997777] - }, - { - "time":0.88, - "rot" :[-0.0764993,-0.000454942,0.00592938,0.997052] - }, - { - "time":0.96, - "rot" :[-0.084369,-0.000501743,0.0059256,0.996417] - }, - { - "time":1.04, - "rot" :[-0.0871542,-0.000518306,0.00592418,0.996177] - }, - { - "time":1.12, - "rot" :[-0.0597411,-0.000355281,0.00593618,0.998196] - }, - { - "time":1.2, - "rot" :[-0.0281309,-0.000167296,0.00594445,0.999587] - }, - { - "time":1.28, - "rot" :[-0.021301,-0.000126679,0.00594546,0.999756] - }, - { - "time":1.36, - "rot" :[-0.0152959,-9.09666e-05,0.00594611,0.999865] - }, - { - "time":1.44, - "rot" :[-0.0102725,-6.10923e-05,0.00594652,0.999935] - }, - { - "time":1.52, - "rot" :[-0.00633776,-3.76927e-05,0.00594669,0.999962] - }, - { - "time":1.6, - "rot" :[-0.00350676,-2.08567e-05,0.00594673,0.99997] - }, - { - "time":1.68, - "rot" :[-0.00167776,-9.97975e-06,0.00594677,0.999976] - }, - { - "time":1.76, - "rot" :[-0.000648935,-3.86133e-06,0.00594679,0.99998] - }, - { - "time":1.84, - "rot" :[-0.00017395,-1.0366e-06,0.0059468,0.999982] - }, - { - "time":1.92, - "rot" :[-1.95046e-05,-1.18116e-07,0.00594681,0.999982] - }, - { - "time":2, - "pos" :[2.59651e-08,0.415182,9.19816e-16], - "rot" :[3.6263e-09,-2.10041e-09,0.00594681,0.999982], - "scl" :[1,1,1] - } - ] - }, - { - "parent" : -1, - "keys" : [ - { - "time":0, - "pos" :[-2.02787,8.25936,0.116719], - "rot" :[0.246363,-0.380005,0.147879,-0.879223], - "scl" :[1,1,1] - }, - { - "time":0.08, - "pos" :[-2.25572,7.73801,0.258966], - "rot" :[0.17455,-0.524694,-0.00183418,-0.833202] - }, - { - "time":0.16, - "pos" :[-2.44199,6.72756,0.493056], - "rot" :[0.102941,-0.649992,-0.236144,-0.714947] - }, - { - "time":0.24, - "pos" :[-2.09512,6.68488,1.43017], - "rot" :[0.125537,-0.712203,-0.226391,-0.652499] - }, - { - "time":0.32, - "pos" :[-0.383983,8.565,3.46519], - "rot" :[0.368038,-0.828763,-0.0424374,-0.419403] - }, - { - "time":0.4, - "pos" :[0.466391,10.2547,3.58581], - "rot" :[0.600695,-0.790656,0.0104928,-0.11798] - }, - { - "time":0.48, - "pos" :[0.552635,10.5262,3.68624], - "rot" :[0.569647,-0.818446,0.0235202,-0.0713886] - }, - { - "time":0.56, - "pos" :[0.759889,10.7824,3.77313], - "rot" :[0.364804,-0.927391,0.042938,-0.0708592] - }, - { - "time":0.64, - "pos" :[0.833071,10.7038,3.80046], - "rot" :[0.159866,-0.972581,0.121995,-0.116818] - }, - { - "time":0.72, - "pos" :[0.758396,10.1106,3.81907], - "rot" :[-0.0712268,-0.924711,0.337215,-0.161624] - }, - { - "time":0.8, - "pos" :[0.252098,9.89025,4.28776], - "rot" :[-0.307312,-0.735317,0.55298,-0.243066] - }, - { - "time":0.88, - "pos" :[0.394565,10.3908,4.01081], - "rot" :[-0.299081,-0.620628,0.669671,-0.27733] - }, - { - "time":0.96, - "pos" :[1.06484,11.751,2.14017], - "rot" :[0.135639,-0.446938,0.828639,-0.308555] - }, - { - "time":1.04, - "pos" :[0.887494,12.5713,0.972526], - "rot" :[0.446983,-0.336569,0.750526,-0.351621] - }, - { - "time":1.12, - "pos" :[-0.416582,11.1482,5.89345], - "rot" :[0.280133,-0.697632,0.246999,-0.611413] - }, - { - "time":1.2, - "pos" :[-0.765745,4.88824,5.97845], - "rot" :[-0.419053,-0.641441,-0.458663,-0.450084] - }, - { - "time":1.28, - "pos" :[-0.964442,4.33563,5.70331], - "rot" :[-0.504543,-0.551548,-0.513852,-0.420937] - }, - { - "time":1.36, - "pos" :[-1.0154,4.18856,5.96414], - "rot" :[-0.542623,-0.523276,-0.514879,-0.408219] - }, - { - "time":1.44, - "pos" :[-0.978857,4.31901,6.42123], - "rot" :[-0.539539,-0.545936,-0.487671,-0.415968] - }, - { - "time":1.52, - "pos" :[-0.981633,4.51147,6.59956], - "rot" :[-0.511321,-0.579773,-0.465461,-0.430999] - }, - { - "time":1.6, - "pos" :[-0.870805,4.98159,6.07417], - "rot" :[-0.426712,-0.665468,-0.417677,-0.447901] - }, - { - "time":1.68, - "pos" :[-0.923331,5.92913,4.68515], - "rot" :[-0.243969,-0.766923,-0.317928,-0.501229] - }, - { - "time":1.76, - "pos" :[-1.45713,6.85878,3.28671], - "rot" :[-0.027827,-0.764671,-0.192168,-0.614472] - }, - { - "time":1.84, - "pos" :[-2.04524,7.60588,1.96413], - "rot" :[0.145797,-0.638306,-0.0419456,-0.754685] - }, - { - "time":1.92, - "pos" :[-2.13783,8.10478,0.628833], - "rot" :[0.230376,-0.458147,0.0958079,-0.853141] - }, - { - "time":2, - "pos" :[-2.02787,8.25936,0.116719], - "rot" :[0.246363,-0.380005,0.147879,-0.879223], - "scl" :[1,1,1] - } - ] - } - ] - - } - - -} diff --git a/examples/software_geometry_earth.html b/examples/software_geometry_earth.html index 43d797cc48416c..5f7952f96b7a6c 100644 --- a/examples/software_geometry_earth.html +++ b/examples/software_geometry_earth.html @@ -73,7 +73,7 @@ var geometry = new THREE.SphereBufferGeometry( 200, 20, 20 ); - var material = new THREE.MeshLambertMaterial( { map: texture, overdraw: 0.5 } ); + var material = new THREE.MeshLambertMaterial( { map: texture } ); var mesh = new THREE.Mesh( geometry, material ); group.add( mesh ); @@ -103,7 +103,7 @@ var texture = new THREE.CanvasTexture( canvas ); var geometry = new THREE.PlaneBufferGeometry( 300, 300, 3, 3 ); - var material = new THREE.MeshBasicMaterial( { map: texture, overdraw: 0.5 } ); + var material = new THREE.MeshBasicMaterial( { map: texture } ); var mesh = new THREE.Mesh( geometry, material ); mesh.position.y = - 250; diff --git a/examples/software_sandbox.html b/examples/software_sandbox.html index 6eb525e29510ac..280acc53610d69 100644 --- a/examples/software_sandbox.html +++ b/examples/software_sandbox.html @@ -82,7 +82,7 @@ // Cube with texture var loader = new THREE.TextureLoader(); var map = loader.load( 'textures/brick_diffuse.jpg' ); - texCube = new THREE.Mesh( geometry, new THREE.MeshLambertMaterial( { map: map, overdraw: 0.5 } ) ); + texCube = new THREE.Mesh( geometry, new THREE.MeshLambertMaterial( { map: map } ) ); texCube.position.set( - 300, 0, 0 ); scene.add( texCube ); diff --git a/examples/svg_sandbox.html b/examples/svg_sandbox.html index 2fb8bc1f5e68b6..e5729b21bc53f8 100644 --- a/examples/svg_sandbox.html +++ b/examples/svg_sandbox.html @@ -39,10 +39,10 @@ // QRCODE - var loader = new THREE.JSONLoader(); - loader.load( 'models/json/QRCode.json', function ( geometry ) { + var loader = new THREE.BufferGeometryLoader(); + loader.load( 'models/json/QRCode_buffergeometry.json', function ( geometry ) { - mesh = new THREE.Mesh( geometry, new THREE.MeshLambertMaterial( { /*emissive: 0xff0000,*/ vertexColors: THREE.FaceColors } ) ); + mesh = new THREE.Mesh( geometry, new THREE.MeshLambertMaterial( { vertexColors: THREE.VertexColors } ) ); mesh.scale.x = mesh.scale.y = mesh.scale.z = 2; scene.add( mesh ); diff --git a/examples/webgl2_materials_texture3d_volume.html b/examples/webgl2_materials_texture3d_volume.html index d884b183be2889..91239d5f154146 100644 --- a/examples/webgl2_materials_texture3d_volume.html +++ b/examples/webgl2_materials_texture3d_volume.html @@ -158,7 +158,7 @@ } ); // Mesh - var geometry = new THREE.BoxGeometry( volume.xLength, volume.yLength, volume.zLength ); + var geometry = new THREE.BoxBufferGeometry( volume.xLength, volume.yLength, volume.zLength ); geometry.translate( volume.xLength / 2 - 0.5, volume.yLength / 2 - 0.5, volume.zLength / 2 - 0.5 ); var mesh = new THREE.Mesh( geometry, material ); diff --git a/examples/webgl_animation_cloth.html b/examples/webgl_animation_cloth.html index c4701508f55d1d..dd2fa3c72d0341 100644 --- a/examples/webgl_animation_cloth.html +++ b/examples/webgl_animation_cloth.html @@ -144,7 +144,7 @@ // cloth geometry - clothGeometry = new THREE.ParametricGeometry( clothFunction, cloth.w, cloth.h ); + clothGeometry = new THREE.ParametricBufferGeometry( clothFunction, cloth.w, cloth.h ); // cloth mesh @@ -296,13 +296,14 @@ for ( var i = 0, il = p.length; i < il; i ++ ) { - clothGeometry.vertices[ i ].copy( p[ i ].position ); + var v = p[ i ].position; + + clothGeometry.attributes.position.setXYZ( i, v.x, v.y, v.z ); } - clothGeometry.verticesNeedUpdate = true; + clothGeometry.attributes.position.needsUpdate = true; - clothGeometry.computeFaceNormals(); clothGeometry.computeVertexNormals(); sphere.position.copy( ballPosition ); diff --git a/examples/webgl_animation_skinning_blending.html b/examples/webgl_animation_skinning_blending.html index 70bcdfc8edb6cb..d78ee43b1964eb 100644 --- a/examples/webgl_animation_skinning_blending.html +++ b/examples/webgl_animation_skinning_blending.html @@ -183,23 +183,39 @@ var folder6 = panel.addFolder( 'General Speed' ); settings = { - 'show model': true, - 'show skeleton': false, - 'deactivate all': deactivateAllActions, - 'activate all': activateAllActions, - 'pause/continue': pauseContinue, - 'make single step': toSingleStepMode, - 'modify step size': 0.05, - 'from walk to idle': function () { prepareCrossFade( walkAction, idleAction, 1.0 ) }, - 'from idle to walk': function () { prepareCrossFade( idleAction, walkAction, 0.5 ) }, - 'from walk to run': function () { prepareCrossFade( walkAction, runAction, 2.5 ) }, - 'from run to walk': function () { prepareCrossFade( runAction, walkAction, 5.0 ) }, - 'use default duration': true, - 'set custom duration': 3.5, - 'modify idle weight': 0.0, - 'modify walk weight': 1.0, - 'modify run weight': 0.0, - 'modify time scale': 1.0 + 'show model': true, + 'show skeleton': false, + 'deactivate all': deactivateAllActions, + 'activate all': activateAllActions, + 'pause/continue': pauseContinue, + 'make single step': toSingleStepMode, + 'modify step size': 0.05, + 'from walk to idle': function () { + + prepareCrossFade( walkAction, idleAction, 1.0 ); + + }, + 'from idle to walk': function () { + + prepareCrossFade( idleAction, walkAction, 0.5 ); + + }, + 'from walk to run': function () { + + prepareCrossFade( walkAction, runAction, 2.5 ); + + }, + 'from run to walk': function () { + + prepareCrossFade( runAction, walkAction, 5.0 ); + + }, + 'use default duration': true, + 'set custom duration': 3.5, + 'modify idle weight': 0.0, + 'modify walk weight': 1.0, + 'modify run weight': 0.0, + 'modify time scale': 1.0 }; folder1.add( settings, 'show model' ).onChange( showModel ); @@ -215,9 +231,21 @@ crossFadeControls.push( folder4.add( settings, 'from run to walk' ) ); folder4.add( settings, 'use default duration' ); folder4.add( settings, 'set custom duration', 0, 10, 0.01 ); - folder5.add( settings, 'modify idle weight', 0.0, 1.0, 0.01 ).listen().onChange( function ( weight ) { setWeight( idleAction, weight ) } ); - folder5.add( settings, 'modify walk weight', 0.0, 1.0, 0.01 ).listen().onChange( function ( weight ) { setWeight( walkAction, weight ) } ); - folder5.add( settings, 'modify run weight', 0.0, 1.0, 0.01 ).listen().onChange( function ( weight ) { setWeight( runAction, weight ) } ); + folder5.add( settings, 'modify idle weight', 0.0, 1.0, 0.01 ).listen().onChange( function ( weight ) { + + setWeight( idleAction, weight ); + + } ); + folder5.add( settings, 'modify walk weight', 0.0, 1.0, 0.01 ).listen().onChange( function ( weight ) { + + setWeight( walkAction, weight ); + + } ); + folder5.add( settings, 'modify run weight', 0.0, 1.0, 0.01 ).listen().onChange( function ( weight ) { + + setWeight( runAction, weight ); + + } ); folder6.add( settings, 'modify time scale', 0.0, 1.5, 0.01 ).onChange( modifyTimeScale ); folder1.open(); @@ -380,7 +408,6 @@ } - function setCrossFadeDuration( defaultDuration ) { // Switch default crossfade duration <-> custom crossfade duration @@ -397,7 +424,6 @@ } - function synchronizeCrossFade( startAction, endAction, duration ) { mixer.addEventListener( 'loop', onLoopFinished ); @@ -416,7 +442,6 @@ } - function executeCrossFade( startAction, endAction, duration ) { // Not only the start action, but also the end action must get a weight of 1 before fading @@ -431,7 +456,6 @@ } - // This function is needed, since animationAction.crossFadeTo() disables its start action and sets // the start action's timeScale to ((start animation's duration) / (end animation's duration)) @@ -443,7 +467,6 @@ } - // Called by the render loop function updateWeightSliders() { @@ -454,7 +477,6 @@ } - // Called by the render loop function updateCrossFadeControls() { @@ -486,7 +508,6 @@ } - function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; @@ -496,7 +517,6 @@ } - function animate() { // Render loop diff --git a/examples/webgl_animation_skinning_morph.html b/examples/webgl_animation_skinning_morph.html index 27bd029a2c6f5a..6a333cf01c3262 100644 --- a/examples/webgl_animation_skinning_morph.html +++ b/examples/webgl_animation_skinning_morph.html @@ -1,601 +1,265 @@ - three.js webgl - skinning + morphing [knight] + three.js webgl - skinning and morphing - -
    -
    - three.js webgl - clip system - - knight by apendua -
    + three.js - webgl - skinning and morphing
    +

    + The animation system allows clips to be played individually, looped, or crossfaded with + other clips. This example shows a character looping in one of several base animation states, + then transitioning smoothly to one-time actions. Facial expressions are controlled + independently with morph targets. +

    + Model by + Tomás Laulhé, + modifications by Don McCurdy. CC0.
    + + + diff --git a/examples/webgl_buffergeometry.html b/examples/webgl_buffergeometry.html index 28d41d3c60c676..e49fc4c4b42ec6 100644 --- a/examples/webgl_buffergeometry.html +++ b/examples/webgl_buffergeometry.html @@ -77,7 +77,7 @@ scene.add( light1 ); var light2 = new THREE.DirectionalLight( 0xffffff, 1.5 ); - light2.position.set( 0, -1, 0 ); + light2.position.set( 0, - 1, 0 ); scene.add( light2 ); // @@ -160,7 +160,11 @@ } - function disposeArray() { this.array = null; } + function disposeArray() { + + this.array = null; + + } geometry.addAttribute( 'position', new THREE.Float32BufferAttribute( positions, 3 ).onUpload( disposeArray ) ); geometry.addAttribute( 'normal', new THREE.Float32BufferAttribute( normals, 3 ).onUpload( disposeArray ) ); diff --git a/examples/webgl_buffergeometry_constructed_from_geometry.html b/examples/webgl_buffergeometry_constructed_from_geometry.html index 130e96f16aa972..051201a57db339 100644 --- a/examples/webgl_buffergeometry_constructed_from_geometry.html +++ b/examples/webgl_buffergeometry_constructed_from_geometry.html @@ -192,7 +192,7 @@ } - function animate( time ) { + function animate() { requestAnimationFrame( animate ); diff --git a/examples/webgl_buffergeometry_custom_attributes_particles.html b/examples/webgl_buffergeometry_custom_attributes_particles.html index b3ecec1e780d50..df96f61a59ac11 100644 --- a/examples/webgl_buffergeometry_custom_attributes_particles.html +++ b/examples/webgl_buffergeometry_custom_attributes_particles.html @@ -99,22 +99,22 @@ uniforms = { - texture: { value: new THREE.TextureLoader().load( "textures/sprites/spark1.png" ) } + texture: { value: new THREE.TextureLoader().load( "textures/sprites/spark1.png" ) } }; var shaderMaterial = new THREE.ShaderMaterial( { - uniforms: uniforms, - vertexShader: document.getElementById( 'vertexshader' ).textContent, + uniforms: uniforms, + vertexShader: document.getElementById( 'vertexshader' ).textContent, fragmentShader: document.getElementById( 'fragmentshader' ).textContent, - blending: THREE.AdditiveBlending, - depthTest: false, - transparent: true, - vertexColors: true + blending: THREE.AdditiveBlending, + depthTest: false, + transparent: true, + vertexColors: true - }); + } ); var radius = 200; @@ -137,7 +137,7 @@ colors.push( color.r, color.g, color.b ); - sizes.push( 20 );; + sizes.push( 20 ); } @@ -191,7 +191,7 @@ var sizes = geometry.attributes.size.array; - for ( var i = 0; i < particles; i++ ) { + for ( var i = 0; i < particles; i ++ ) { sizes[ i ] = 10 * ( 1 + Math.sin( 0.1 * i + time ) ); diff --git a/examples/webgl_buffergeometry_drawcalls.html b/examples/webgl_buffergeometry_drawcalls.html index ce9de887b93ebd..8ef5dbc8d20da6 100644 --- a/examples/webgl_buffergeometry_drawcalls.html +++ b/examples/webgl_buffergeometry_drawcalls.html @@ -73,17 +73,25 @@ var gui = new dat.GUI(); - gui.add( effectController, "showDots" ).onChange( function( value ) { pointCloud.visible = value; } ); - gui.add( effectController, "showLines" ).onChange( function( value ) { linesMesh.visible = value; } ); + gui.add( effectController, "showDots" ).onChange( function ( value ) { + + pointCloud.visible = value; + + } ); + gui.add( effectController, "showLines" ).onChange( function ( value ) { + + linesMesh.visible = value; + + } ); gui.add( effectController, "minDistance", 10, 300 ); gui.add( effectController, "limitConnections" ); gui.add( effectController, "maxConnections", 0, 30, 1 ); - gui.add( effectController, "particleCount", 0, maxParticleCount, 1 ).onChange( function( value ) { + gui.add( effectController, "particleCount", 0, maxParticleCount, 1 ).onChange( function ( value ) { particleCount = parseInt( value ); particles.setDrawRange( 0, particleCount ); - }); + } ); } @@ -93,8 +101,6 @@ container = document.getElementById( 'container' ); - // - camera = new THREE.PerspectiveCamera( 45, window.innerWidth / window.innerHeight, 1, 4000 ); camera.position.z = 1750; @@ -128,19 +134,19 @@ particles = new THREE.BufferGeometry(); particlePositions = new Float32Array( maxParticleCount * 3 ); - for ( var i = 0; i < maxParticleCount; i++ ) { + for ( var i = 0; i < maxParticleCount; i ++ ) { var x = Math.random() * r - r / 2; var y = Math.random() * r - r / 2; var z = Math.random() * r - r / 2; - particlePositions[ i * 3 ] = x; + particlePositions[ i * 3 ] = x; particlePositions[ i * 3 + 1 ] = y; particlePositions[ i * 3 + 2 ] = z; // add it to the geometry particlesData.push( { - velocity: new THREE.Vector3( -1 + Math.random() * 2, -1 + Math.random() * 2, -1 + Math.random() * 2 ), + velocity: new THREE.Vector3( - 1 + Math.random() * 2, - 1 + Math.random() * 2, - 1 + Math.random() * 2 ), numConnections: 0 } ); @@ -206,68 +212,71 @@ var colorpos = 0; var numConnected = 0; - for ( var i = 0; i < particleCount; i++ ) + for ( var i = 0; i < particleCount; i ++ ) particlesData[ i ].numConnections = 0; - for ( var i = 0; i < particleCount; i++ ) { + for ( var i = 0; i < particleCount; i ++ ) { // get the particle - var particleData = particlesData[i]; + var particleData = particlesData[ i ]; - particlePositions[ i * 3 ] += particleData.velocity.x; + particlePositions[ i * 3 ] += particleData.velocity.x; particlePositions[ i * 3 + 1 ] += particleData.velocity.y; particlePositions[ i * 3 + 2 ] += particleData.velocity.z; - if ( particlePositions[ i * 3 + 1 ] < -rHalf || particlePositions[ i * 3 + 1 ] > rHalf ) - particleData.velocity.y = -particleData.velocity.y; + if ( particlePositions[ i * 3 + 1 ] < - rHalf || particlePositions[ i * 3 + 1 ] > rHalf ) + particleData.velocity.y = - particleData.velocity.y; - if ( particlePositions[ i * 3 ] < -rHalf || particlePositions[ i * 3 ] > rHalf ) - particleData.velocity.x = -particleData.velocity.x; + if ( particlePositions[ i * 3 ] < - rHalf || particlePositions[ i * 3 ] > rHalf ) + particleData.velocity.x = - particleData.velocity.x; - if ( particlePositions[ i * 3 + 2 ] < -rHalf || particlePositions[ i * 3 + 2 ] > rHalf ) - particleData.velocity.z = -particleData.velocity.z; + if ( particlePositions[ i * 3 + 2 ] < - rHalf || particlePositions[ i * 3 + 2 ] > rHalf ) + particleData.velocity.z = - particleData.velocity.z; if ( effectController.limitConnections && particleData.numConnections >= effectController.maxConnections ) continue; // Check collision - for ( var j = i + 1; j < particleCount; j++ ) { + for ( var j = i + 1; j < particleCount; j ++ ) { var particleDataB = particlesData[ j ]; if ( effectController.limitConnections && particleDataB.numConnections >= effectController.maxConnections ) continue; - var dx = particlePositions[ i * 3 ] - particlePositions[ j * 3 ]; + var dx = particlePositions[ i * 3 ] - particlePositions[ j * 3 ]; var dy = particlePositions[ i * 3 + 1 ] - particlePositions[ j * 3 + 1 ]; var dz = particlePositions[ i * 3 + 2 ] - particlePositions[ j * 3 + 2 ]; var dist = Math.sqrt( dx * dx + dy * dy + dz * dz ); if ( dist < effectController.minDistance ) { - particleData.numConnections++; - particleDataB.numConnections++; + particleData.numConnections ++; + particleDataB.numConnections ++; var alpha = 1.0 - dist / effectController.minDistance; - positions[ vertexpos++ ] = particlePositions[ i * 3 ]; - positions[ vertexpos++ ] = particlePositions[ i * 3 + 1 ]; - positions[ vertexpos++ ] = particlePositions[ i * 3 + 2 ]; + positions[ vertexpos ++ ] = particlePositions[ i * 3 ]; + positions[ vertexpos ++ ] = particlePositions[ i * 3 + 1 ]; + positions[ vertexpos ++ ] = particlePositions[ i * 3 + 2 ]; - positions[ vertexpos++ ] = particlePositions[ j * 3 ]; - positions[ vertexpos++ ] = particlePositions[ j * 3 + 1 ]; - positions[ vertexpos++ ] = particlePositions[ j * 3 + 2 ]; + positions[ vertexpos ++ ] = particlePositions[ j * 3 ]; + positions[ vertexpos ++ ] = particlePositions[ j * 3 + 1 ]; + positions[ vertexpos ++ ] = particlePositions[ j * 3 + 2 ]; - colors[ colorpos++ ] = alpha; - colors[ colorpos++ ] = alpha; - colors[ colorpos++ ] = alpha; + colors[ colorpos ++ ] = alpha; + colors[ colorpos ++ ] = alpha; + colors[ colorpos ++ ] = alpha; - colors[ colorpos++ ] = alpha; - colors[ colorpos++ ] = alpha; - colors[ colorpos++ ] = alpha; + colors[ colorpos ++ ] = alpha; + colors[ colorpos ++ ] = alpha; + colors[ colorpos ++ ] = alpha; + + numConnected ++; - numConnected++; } + } + } diff --git a/examples/webgl_buffergeometry_instancing.html b/examples/webgl_buffergeometry_instancing.html index 2470148d387bb5..49c10421e89046 100644 --- a/examples/webgl_buffergeometry_instancing.html +++ b/examples/webgl_buffergeometry_instancing.html @@ -141,8 +141,8 @@ var orientationsStart = []; var orientationsEnd = []; - positions.push( 0.025, -0.025, 0 ); - positions.push( -0.025, 0.025, 0 ); + positions.push( 0.025, - 0.025, 0 ); + positions.push( - 0.025, 0.025, 0 ); positions.push( 0, 0, 0.025 ); // instanced attributes @@ -233,7 +233,7 @@ } - function onWindowResize( event ) { + function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); diff --git a/examples/webgl_buffergeometry_instancing2.html b/examples/webgl_buffergeometry_instancing2.html index 0150bda0c4b0dd..ef027c2890a802 100644 --- a/examples/webgl_buffergeometry_instancing2.html +++ b/examples/webgl_buffergeometry_instancing2.html @@ -222,7 +222,7 @@ } - function onWindowResize( event ) { + function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); diff --git a/examples/webgl_buffergeometry_instancing_billboards.html b/examples/webgl_buffergeometry_instancing_billboards.html index 31e1873250dd77..dde2b92f3d5bf0 100644 --- a/examples/webgl_buffergeometry_instancing_billboards.html +++ b/examples/webgl_buffergeometry_instancing_billboards.html @@ -126,8 +126,10 @@ renderer = new THREE.WebGLRenderer(); if ( renderer.extensions.get( 'ANGLE_instanced_arrays' ) === null ) { + document.getElementById( 'notSupported' ).style.display = ''; return false; + } container = document.createElement( 'div' ); @@ -156,7 +158,7 @@ } - geometry.addAttribute( 'translate', new THREE.InstancedBufferAttribute( translateArray, 3, 1 ) ); + geometry.addAttribute( 'translate', new THREE.InstancedBufferAttribute( translateArray, 3 ) ); material = new THREE.RawShaderMaterial( { uniforms: { diff --git a/examples/webgl_buffergeometry_instancing_interleaved_dynamic.html b/examples/webgl_buffergeometry_instancing_interleaved_dynamic.html index a6ec87ed6af76b..52fd7c82a0d146 100644 --- a/examples/webgl_buffergeometry_instancing_interleaved_dynamic.html +++ b/examples/webgl_buffergeometry_instancing_interleaved_dynamic.html @@ -120,7 +120,6 @@ container = document.getElementById( 'container' ); camera = new THREE.PerspectiveCamera( 50, window.innerWidth / window.innerHeight, 1, 1000 ); - //camera.position.z = 20; scene = new THREE.Scene(); scene.background = new THREE.Color( 0x101010 ); @@ -137,35 +136,35 @@ // only use x,y,z and u,v; but x, y, z, nx, ny, nz, u, v would be a good layout var vertexBuffer = new THREE.InterleavedBuffer( new Float32Array( [ // Front - -1, 1, 1, 0, 0, 0, 0, 0, + - 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, - -1, -1, 1, 0, 0, 1, 0, 0, - 1, -1, 1, 0, 1, 1, 0, 0, + - 1, - 1, 1, 0, 0, 1, 0, 0, + 1, - 1, 1, 0, 1, 1, 0, 0, // Back - 1, 1, -1, 0, 1, 0, 0, 0, - -1, 1, -1, 0, 0, 0, 0, 0, - 1, -1, -1, 0, 1, 1, 0, 0, - -1, -1, -1, 0, 0, 1, 0, 0, + 1, 1, - 1, 0, 1, 0, 0, 0, + - 1, 1, - 1, 0, 0, 0, 0, 0, + 1, - 1, - 1, 0, 1, 1, 0, 0, + - 1, - 1, - 1, 0, 0, 1, 0, 0, // Left - -1, 1, -1, 0, 1, 1, 0, 0, - -1, 1, 1, 0, 1, 0, 0, 0, - -1, -1, -1, 0, 0, 1, 0, 0, - -1, -1, 1, 0, 0, 0, 0, 0, + - 1, 1, - 1, 0, 1, 1, 0, 0, + - 1, 1, 1, 0, 1, 0, 0, 0, + - 1, - 1, - 1, 0, 0, 1, 0, 0, + - 1, - 1, 1, 0, 0, 0, 0, 0, // Right 1, 1, 1, 0, 1, 0, 0, 0, - 1, 1, -1, 0, 1, 1, 0, 0, - 1, -1, 1, 0, 0, 0, 0, 0, - 1, -1, -1, 0, 0, 1, 0, 0, + 1, 1, - 1, 0, 1, 1, 0, 0, + 1, - 1, 1, 0, 0, 0, 0, 0, + 1, - 1, - 1, 0, 0, 1, 0, 0, // Top - -1, 1, 1, 0, 0, 0, 0, 0, + - 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, - -1, 1, -1, 0, 0, 1, 0, 0, - 1, 1, -1, 0, 1, 1, 0, 0, + - 1, 1, - 1, 0, 0, 1, 0, 0, + 1, 1, - 1, 0, 1, 1, 0, 0, // Bottom - 1, -1, 1, 0, 1, 0, 0, 0, - -1, -1, 1, 0, 0, 0, 0, 0, - 1, -1, -1, 0, 1, 1, 0, 0, - -1, -1, -1, 0, 0, 1, 0, 0 + 1, - 1, 1, 0, 1, 0, 0, 0, + - 1, - 1, 1, 0, 0, 0, 0, 0, + 1, - 1, - 1, 0, 1, 1, 0, 0, + - 1, - 1, - 1, 0, 0, 1, 0, 0 ] ), 8 ); // Use vertexBuffer, starting at offset 0, 3 items in position attribute @@ -197,7 +196,8 @@ var offsets = new THREE.InterleavedBufferAttribute( instanceBuffer, 3, 0 ); var vector = new THREE.Vector4(); - for ( var i = 0, ul = offsets.count; i < ul; i++ ) { + for ( var i = 0, ul = offsets.count; i < ul; i ++ ) { + var x = Math.random() * 100 - 50; var y = Math.random() * 100 - 50; var z = Math.random() * 100 - 50; @@ -211,7 +211,7 @@ orientations = new THREE.InterleavedBufferAttribute( instanceBuffer, 4, 4 ); - for ( var i = 0, ul = orientations.count; i < ul; i++ ) { + for ( var i = 0, ul = orientations.count; i < ul; i ++ ) { vector.set( Math.random() * 2 - 1, Math.random() * 2 - 1, Math.random() * 2 - 1, Math.random() * 2 - 1 ); vector.normalize(); @@ -244,8 +244,10 @@ if ( renderer.extensions.get( 'ANGLE_instanced_arrays' ) === null ) { + document.getElementById( "notSupported" ).style.display = ""; return; + } renderer.setPixelRatio( window.devicePixelRatio ); @@ -259,7 +261,7 @@ } - function onWindowResize( event ) { + function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); @@ -289,7 +291,7 @@ var time = performance.now(); - var object = scene.children[0]; + var object = scene.children[ 0 ]; object.rotation.y = time * 0.00005; @@ -298,9 +300,10 @@ var delta = ( time - lastTime ) / 5000; tmpQ.set( moveQ.x * delta, moveQ.y * delta, moveQ.z * delta, 1 ).normalize(); - for ( var i = 0, ul = orientations.count; i < ul; i++ ) { + for ( var i = 0, ul = orientations.count; i < ul; i ++ ) { + var index = i * instanceBuffer.stride + orientations.offset; - currentQ.set( instanceBuffer.array[index], instanceBuffer.array[index + 1], instanceBuffer.array[index + 2], instanceBuffer.array[index + 3] ); + currentQ.set( instanceBuffer.array[ index ], instanceBuffer.array[ index + 1 ], instanceBuffer.array[ index + 2 ], instanceBuffer.array[ index + 3 ] ); currentQ.multiply( tmpQ ); orientations.setXYZW( i, currentQ.x, currentQ.y, currentQ.z, currentQ.w ); @@ -308,6 +311,7 @@ } instanceBuffer.needsUpdate = true; lastTime = time; + } init(); diff --git a/examples/webgl_buffergeometry_instancing_lambert.html b/examples/webgl_buffergeometry_instancing_lambert.html index 3e7e2d7ad99bd4..eb71149b2ad269 100644 --- a/examples/webgl_buffergeometry_instancing_lambert.html +++ b/examples/webgl_buffergeometry_instancing_lambert.html @@ -319,7 +319,7 @@ } ); material.defines = material.defines || {}; - material.defines[ 'INSTANCED'] = ""; + material.defines[ 'INSTANCED' ] = ""; // custom depth material - required for instanced shadows @@ -373,7 +373,7 @@ } - function onWindowResize( event ) { + function onWindowResize() { renderer.setSize( window.innerWidth, window.innerHeight ); diff --git a/examples/webgl_buffergeometry_lines_indexed.html b/examples/webgl_buffergeometry_lines_indexed.html index a89adc6a8c6610..9d98aba2659d4b 100644 --- a/examples/webgl_buffergeometry_lines_indexed.html +++ b/examples/webgl_buffergeometry_lines_indexed.html @@ -90,7 +90,7 @@ } // simple Koch curve - + function snowflake_iteration( p0, p4, depth ) { if ( -- depth < 0 ) { @@ -128,7 +128,7 @@ add_vertex( points[ 0 ] ); - for ( var p_index=0, p_count = points.length - 1; p_index != p_count; p_index ++ ) { + for ( var p_index = 0, p_count = points.length - 1; p_index != p_count; p_index ++ ) { snowflake_iteration( points[ p_index ], points[ p_index + 1 ], iteration ); @@ -140,7 +140,7 @@ for ( var p_index = 0, p_count = points.length; p_index != p_count; p_index ++ ) { - points[p_index].x += x_offset; + points[ p_index ].x += x_offset; } @@ -149,8 +149,7 @@ } var y = 0; - snowflake - ( + snowflake( [ new THREE.Vector3( 0, y, 0 ), new THREE.Vector3( 500, y, 0 ) @@ -159,10 +158,9 @@ ); y += 600; - snowflake - ( + snowflake( [ - new THREE.Vector3( 0, y, 0) , + new THREE.Vector3( 0, y, 0 ), new THREE.Vector3( 250, y + 400, 0 ), new THREE.Vector3( 500, y, 0 ) ], @@ -170,8 +168,7 @@ ); y += 600; - snowflake - ( + snowflake( [ new THREE.Vector3( 0, y, 0 ), new THREE.Vector3( 500, y, 0 ), @@ -182,8 +179,7 @@ ); y += 1000; - snowflake - ( + snowflake( [ new THREE.Vector3( 250, y, 0 ), new THREE.Vector3( 500, y, 0 ), diff --git a/examples/webgl_buffergeometry_rawshader.html b/examples/webgl_buffergeometry_rawshader.html index 288127416a84db..713bbc25246544 100644 --- a/examples/webgl_buffergeometry_rawshader.html +++ b/examples/webgl_buffergeometry_rawshader.html @@ -170,7 +170,7 @@ } - function onWindowResize( event ) { + function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); diff --git a/examples/webgl_buffergeometry_uint.html b/examples/webgl_buffergeometry_uint.html index 8ef4391cc86bfa..f314b1a7889c9d 100644 --- a/examples/webgl_buffergeometry_uint.html +++ b/examples/webgl_buffergeometry_uint.html @@ -77,7 +77,7 @@ scene.add( light1 ); var light2 = new THREE.DirectionalLight( 0xffffff, 1.5 ); - light2.position.set( 0, -1, 0 ); + light2.position.set( 0, - 1, 0 ); scene.add( light2 ); // diff --git a/examples/webgl_camera.html b/examples/webgl_camera.html index 62db11867c5dfe..2727e75dbddc92 100644 --- a/examples/webgl_camera.html +++ b/examples/webgl_camera.html @@ -23,12 +23,9 @@ z-index: 100; } - a { - - color: #0080ff; - } - + a {color: #0080ff; } b { color: lightgreen } + @@ -125,9 +122,9 @@ for ( var i = 0; i < 10000; i ++ ) { - vertices.push( THREE.Math.randFloatSpread( 2000 ) ); // x - vertices.push( THREE.Math.randFloatSpread( 2000 ) ); // y - vertices.push( THREE.Math.randFloatSpread( 2000 ) ); // z + vertices.push( THREE.Math.randFloatSpread( 2000 ) ); // x + vertices.push( THREE.Math.randFloatSpread( 2000 ) ); // y + vertices.push( THREE.Math.randFloatSpread( 2000 ) ); // z } @@ -138,7 +135,6 @@ // - renderer = new THREE.WebGLRenderer( { antialias: true } ); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT ); @@ -160,9 +156,9 @@ // - function onKeyDown ( event ) { + function onKeyDown( event ) { - switch( event.keyCode ) { + switch ( event.keyCode ) { case 79: /*O*/ @@ -184,7 +180,7 @@ // - function onWindowResize( event ) { + function onWindowResize() { SCREEN_WIDTH = window.innerWidth; SCREEN_HEIGHT = window.innerHeight; @@ -198,9 +194,9 @@ cameraPerspective.aspect = 0.5 * aspect; cameraPerspective.updateProjectionMatrix(); - cameraOrtho.left = - 0.5 * frustumSize * aspect / 2; - cameraOrtho.right = 0.5 * frustumSize * aspect / 2; - cameraOrtho.top = frustumSize / 2; + cameraOrtho.left = - 0.5 * frustumSize * aspect / 2; + cameraOrtho.right = 0.5 * frustumSize * aspect / 2; + cameraOrtho.top = frustumSize / 2; cameraOrtho.bottom = - frustumSize / 2; cameraOrtho.updateProjectionMatrix(); @@ -258,12 +254,12 @@ activeHelper.visible = false; - renderer.setViewport( 0, 0, SCREEN_WIDTH/2, SCREEN_HEIGHT ); + renderer.setViewport( 0, 0, SCREEN_WIDTH / 2, SCREEN_HEIGHT ); renderer.render( scene, activeCamera ); activeHelper.visible = true; - renderer.setViewport( SCREEN_WIDTH/2, 0, SCREEN_WIDTH/2, SCREEN_HEIGHT ); + renderer.setViewport( SCREEN_WIDTH / 2, 0, SCREEN_WIDTH / 2, SCREEN_HEIGHT ); renderer.render( scene, camera ); } diff --git a/examples/webgl_camera_cinematic.html b/examples/webgl_camera_cinematic.html index 424e96e5d461fd..d6f3fcf0be71da 100644 --- a/examples/webgl_camera_cinematic.html +++ b/examples/webgl_camera_cinematic.html @@ -86,7 +86,7 @@ window.addEventListener( 'resize', onWindowResize, false ); - var effectController = { + var effectController = { focalLength: 15, // jsDepthCalculation: true, @@ -114,7 +114,7 @@ }; - var matChanger = function( ) { + var matChanger = function ( ) { for ( var e in effectController ) { @@ -197,7 +197,7 @@ var targetDistance = intersects[ 0 ].distance; - camera.focusAt( targetDistance ); // using Cinematic camera focusAt method + camera.focusAt( targetDistance ); // using Cinematic camera focusAt method if ( INTERSECTED != intersects[ 0 ].object ) { @@ -206,6 +206,7 @@ INTERSECTED = intersects[ 0 ].object; INTERSECTED.currentHex = INTERSECTED.material.emissive.getHex(); INTERSECTED.material.emissive.setHex( 0xff0000 ); + } } else { diff --git a/examples/webgl_camera_logarithmicdepthbuffer.html b/examples/webgl_camera_logarithmicdepthbuffer.html index 3b5de832fb0c67..ff7f020c02a1bb 100644 --- a/examples/webgl_camera_logarithmicdepthbuffer.html +++ b/examples/webgl_camera_logarithmicdepthbuffer.html @@ -40,10 +40,6 @@ display: block; text-align: center; } - .renderer_label.renderer_label_normal { - } - .renderer_label.renderer_label_logzbuf { - } #container { white-space: nowrap; } @@ -75,7 +71,7 @@
    -

    normal z-buffer

    logarithmic z-buffer

    +

    normal z-buffer

    logarithmic z-buffer

    @@ -96,8 +92,8 @@ var SCREEN_WIDTH = window.innerWidth; var SCREEN_HEIGHT = window.innerHeight; var screensplit = .25, screensplit_right = 0; - var mouse = [.5, .5]; - var zoompos = -100, minzoomspeed = .015; + var mouse = [ .5, .5 ]; + var zoompos = - 100, minzoomspeed = .015; var zoomspeed = minzoomspeed; var container, border, stats; @@ -107,23 +103,23 @@ // Try to use some descriptive real-world examples of objects at each scale var labeldata = [ - { size: .01, scale: 0.0001, label: "microscopic (1µm)" }, // FIXME - triangulating text fails at this size, so we scale instead - { size: .01, scale: 0.1, label: "minuscule (1mm)" }, - { size: .01, scale: 1.0, label: "tiny (1cm)" }, - { size: 1, scale: 1.0, label: "child-sized (1m)" }, - { size: 10, scale: 1.0, label: "tree-sized (10m)" }, - { size: 100, scale: 1.0, label: "building-sized (100m)" }, - { size: 1000, scale: 1.0, label: "medium (1km)" }, - { size: 10000, scale: 1.0, label: "city-sized (10km)" }, - { size: 3400000, scale: 1.0, label: "moon-sized (3,400 Km)" }, - { size: 12000000, scale: 1.0, label: "planet-sized (12,000 km)" }, - { size: 1400000000, scale: 1.0, label: "sun-sized (1,400,000 km)" }, - { size: 7.47e12, scale: 1.0, label: "solar system-sized (50Au)" }, - { size: 9.4605284e15, scale: 1.0, label: "gargantuan (1 light year)" }, - { size: 3.08567758e16, scale: 1.0, label: "ludicrous (1 parsec)" }, - { size: 1e19, scale: 1.0, label: "mind boggling (1000 light years)" }, - { size: 1.135e21, scale: 1.0, label: "galaxy-sized (120,000 light years)" }, - { size: 9.46e23, scale: 1.0, label: "... (100,000,000 light years)" } + { size: .01, scale: 0.0001, label: "microscopic (1µm)" }, // FIXME - triangulating text fails at this size, so we scale instead + { size: .01, scale: 0.1, label: "minuscule (1mm)" }, + { size: .01, scale: 1.0, label: "tiny (1cm)" }, + { size: 1, scale: 1.0, label: "child-sized (1m)" }, + { size: 10, scale: 1.0, label: "tree-sized (10m)" }, + { size: 100, scale: 1.0, label: "building-sized (100m)" }, + { size: 1000, scale: 1.0, label: "medium (1km)" }, + { size: 10000, scale: 1.0, label: "city-sized (10km)" }, + { size: 3400000, scale: 1.0, label: "moon-sized (3,400 Km)" }, + { size: 12000000, scale: 1.0, label: "planet-sized (12,000 km)" }, + { size: 1400000000, scale: 1.0, label: "sun-sized (1,400,000 km)" }, + { size: 7.47e12, scale: 1.0, label: "solar system-sized (50Au)" }, + { size: 9.4605284e15, scale: 1.0, label: "gargantuan (1 light year)" }, + { size: 3.08567758e16, scale: 1.0, label: "ludicrous (1 parsec)" }, + { size: 1e19, scale: 1.0, label: "mind boggling (1000 light years)" }, + { size: 1.135e21, scale: 1.0, label: "galaxy-sized (120,000 light years)" }, + { size: 9.46e23, scale: 1.0, label: "... (100,000,000 light years)" } ]; init(); @@ -146,7 +142,7 @@ } ); stats = new Stats(); - container.appendChild(stats.dom); + container.appendChild( stats.dom ); // Resize border allows the user to easily compare effects of logarithmic depth buffer over the whole scene border = document.getElementById( 'renderer_border' ); @@ -160,17 +156,17 @@ function initView( scene, name, logDepthBuf ) { - var framecontainer = document.getElementById('container_' + name); + var framecontainer = document.getElementById( 'container_' + name ); var camera = new THREE.PerspectiveCamera( 50, screensplit * SCREEN_WIDTH / SCREEN_HEIGHT, NEAR, FAR ); - scene.add(camera); + scene.add( camera ); - var renderer = new THREE.WebGLRenderer({ antialias: true, logarithmicDepthBuffer: logDepthBuf }); + var renderer = new THREE.WebGLRenderer( { antialias: true, logarithmicDepthBuffer: logDepthBuf } ); renderer.setPixelRatio( window.devicePixelRatio ); - renderer.setSize(SCREEN_WIDTH/2, SCREEN_HEIGHT); + renderer.setSize( SCREEN_WIDTH / 2, SCREEN_HEIGHT ); renderer.domElement.style.position = "relative"; renderer.domElement.id = 'renderer_' + name; - framecontainer.appendChild(renderer.domElement); + framecontainer.appendChild( renderer.domElement ); return { container: framecontainer, renderer: renderer, scene: scene, camera: camera }; @@ -182,9 +178,9 @@ scene.add( new THREE.AmbientLight( 0x222222 ) ); - var light = new THREE.DirectionalLight(0xffffff, 1); - light.position.set(100,100,100); - scene.add(light); + var light = new THREE.DirectionalLight( 0xffffff, 1 ); + light.position.set( 100, 100, 100 ); + scene.add( light ); var materialargs = { color: 0xffffff, @@ -193,16 +189,16 @@ emissive: 0x000000 }; - var geometry = new THREE.SphereBufferGeometry(0.5, 24, 12); + var geometry = new THREE.SphereBufferGeometry( 0.5, 24, 12 ); - for (var i = 0; i < labeldata.length; i++) { + for ( var i = 0; i < labeldata.length; i ++ ) { - var scale = labeldata[i].scale || 1; + var scale = labeldata[ i ].scale || 1; - var labelgeo = new THREE.TextBufferGeometry( labeldata[i].label, { + var labelgeo = new THREE.TextBufferGeometry( labeldata[ i ].label, { font: font, - size: labeldata[i].size, - height: labeldata[i].size / 2 + size: labeldata[ i ].size, + height: labeldata[ i ].size / 2 } ); labelgeo.computeBoundingSphere(); @@ -215,19 +211,19 @@ var material = new THREE.MeshPhongMaterial( materialargs ); var group = new THREE.Group(); - group.position.z = -labeldata[i].size * scale; - scene.add(group); + group.position.z = - labeldata[ i ].size * scale; + scene.add( group ); var textmesh = new THREE.Mesh( labelgeo, material ); - textmesh.scale.set(scale, scale, scale); - textmesh.position.z = -labeldata[i].size * scale; - textmesh.position.y = labeldata[i].size / 4 * scale; - group.add(textmesh); + textmesh.scale.set( scale, scale, scale ); + textmesh.position.z = - labeldata[ i ].size * scale; + textmesh.position.y = labeldata[ i ].size / 4 * scale; + group.add( textmesh ); - var dotmesh = new THREE.Mesh(geometry, material); - dotmesh.position.y = -labeldata[i].size / 4 * scale; - dotmesh.scale.multiplyScalar(labeldata[i].size * scale); - group.add(dotmesh); + var dotmesh = new THREE.Mesh( geometry, material ); + dotmesh.position.y = - labeldata[ i ].size / 4 * scale; + dotmesh.scale.multiplyScalar( labeldata[ i ].size * scale ); + group.add( dotmesh ); } @@ -248,15 +244,15 @@ objects.normal.camera.aspect = screensplit * SCREEN_WIDTH / SCREEN_HEIGHT; objects.normal.camera.updateProjectionMatrix(); objects.normal.camera.setViewOffset( SCREEN_WIDTH, SCREEN_HEIGHT, 0, 0, SCREEN_WIDTH * screensplit, SCREEN_HEIGHT ); - objects.normal.container.style.width = (screensplit * 100) + '%'; + objects.normal.container.style.width = ( screensplit * 100 ) + '%'; objects.logzbuf.renderer.setSize( screensplit_right * SCREEN_WIDTH, SCREEN_HEIGHT ); objects.logzbuf.camera.aspect = screensplit_right * SCREEN_WIDTH / SCREEN_HEIGHT; objects.logzbuf.camera.updateProjectionMatrix(); objects.logzbuf.camera.setViewOffset( SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_WIDTH * screensplit, 0, SCREEN_WIDTH * screensplit_right, SCREEN_HEIGHT ); - objects.logzbuf.container.style.width = (screensplit_right * 100) + '%'; + objects.logzbuf.container.style.width = ( screensplit_right * 100 ) + '%'; - border.style.left = (screensplit * 100) + "%"; + border.style.left = ( screensplit * 100 ) + "%"; } @@ -270,74 +266,94 @@ function render() { // Put some limits on zooming - var minzoom = labeldata[0].size * labeldata[0].scale*1; - var maxzoom = labeldata[labeldata.length-1].size * labeldata[labeldata.length-1].scale * 100; - var damping = (Math.abs(zoomspeed) > minzoomspeed ? .95 : 1.0); + var minzoom = labeldata[ 0 ].size * labeldata[ 0 ].scale * 1; + var maxzoom = labeldata[ labeldata.length - 1 ].size * labeldata[ labeldata.length - 1 ].scale * 100; + var damping = ( Math.abs( zoomspeed ) > minzoomspeed ? .95 : 1.0 ); // Zoom out faster the further out you go - var zoom = THREE.Math.clamp(Math.pow(Math.E, zoompos), minzoom, maxzoom); - zoompos = Math.log(zoom); + var zoom = THREE.Math.clamp( Math.pow( Math.E, zoompos ), minzoom, maxzoom ); + zoompos = Math.log( zoom ); // Slow down quickly at the zoom limits - if ((zoom == minzoom && zoomspeed < 0) || (zoom == maxzoom && zoomspeed > 0)) { + if ( ( zoom == minzoom && zoomspeed < 0 ) || ( zoom == maxzoom && zoomspeed > 0 ) ) { + damping = .85; + } zoompos += zoomspeed; zoomspeed *= damping; - objects.normal.camera.position.x = Math.sin(.5 * Math.PI * (mouse[0] - .5)) * zoom; - objects.normal.camera.position.y = Math.sin(.25 * Math.PI * (mouse[1] - .5)) * zoom; - objects.normal.camera.position.z = Math.cos(.5 * Math.PI * (mouse[0] - .5)) * zoom; - objects.normal.camera.lookAt(objects.normal.scene.position); + objects.normal.camera.position.x = Math.sin( .5 * Math.PI * ( mouse[ 0 ] - .5 ) ) * zoom; + objects.normal.camera.position.y = Math.sin( .25 * Math.PI * ( mouse[ 1 ] - .5 ) ) * zoom; + objects.normal.camera.position.z = Math.cos( .5 * Math.PI * ( mouse[ 0 ] - .5 ) ) * zoom; + objects.normal.camera.lookAt( objects.normal.scene.position ); // Clone camera settings across both scenes - objects.logzbuf.camera.position.copy(objects.normal.camera.position); - objects.logzbuf.camera.quaternion.copy(objects.normal.camera.quaternion); + objects.logzbuf.camera.position.copy( objects.normal.camera.position ); + objects.logzbuf.camera.quaternion.copy( objects.normal.camera.quaternion ); // Update renderer sizes if the split has changed - if (screensplit_right != 1 - screensplit) { + if ( screensplit_right != 1 - screensplit ) { + updateRendererSizes(); + } - objects.normal.renderer.render(objects.normal.scene, objects.normal.camera); - objects.logzbuf.renderer.render(objects.logzbuf.scene, objects.logzbuf.camera); + objects.normal.renderer.render( objects.normal.scene, objects.normal.camera ); + objects.logzbuf.renderer.render( objects.logzbuf.scene, objects.logzbuf.camera ); stats.update(); } - function onWindowResize(event) { + function onWindowResize() { + updateRendererSizes(); + } - function onBorderMouseDown(ev) { + function onBorderMouseDown( ev ) { + // activate draggable window resizing bar - window.addEventListener("mousemove", onBorderMouseMove); - window.addEventListener("mouseup", onBorderMouseUp); + window.addEventListener( "mousemove", onBorderMouseMove ); + window.addEventListener( "mouseup", onBorderMouseUp ); ev.stopPropagation(); ev.preventDefault(); + } - function onBorderMouseMove(ev) { - screensplit = Math.max(0, Math.min(1, ev.clientX / window.innerWidth)); + + function onBorderMouseMove( ev ) { + + screensplit = Math.max( 0, Math.min( 1, ev.clientX / window.innerWidth ) ); ev.stopPropagation(); + } - function onBorderMouseUp(ev) { - window.removeEventListener("mousemove", onBorderMouseMove); - window.removeEventListener("mouseup", onBorderMouseUp); + + function onBorderMouseUp() { + + window.removeEventListener( "mousemove", onBorderMouseMove ); + window.removeEventListener( "mouseup", onBorderMouseUp ); + } - function onMouseMove(ev) { - mouse[0] = ev.clientX / window.innerWidth; - mouse[1] = ev.clientY / window.innerHeight; + + function onMouseMove( ev ) { + + mouse[ 0 ] = ev.clientX / window.innerWidth; + mouse[ 1 ] = ev.clientY / window.innerHeight; + } - function onMouseWheel(ev) { + + function onMouseWheel( ev ) { + var amount = ev.deltaY; if ( amount === 0 ) return; - var dir = amount / Math.abs(amount); - zoomspeed = dir/10; + var dir = amount / Math.abs( amount ); + zoomspeed = dir / 10; // Slow down default zoom speed after user starts zooming, to give them more control minzoomspeed = 0.001; + } diff --git a/examples/webgl_clipping.html b/examples/webgl_clipping.html index aca30d905a5841..fb3aa66b03c1f4 100644 --- a/examples/webgl_clipping.html +++ b/examples/webgl_clipping.html @@ -72,15 +72,15 @@ // Geometry var material = new THREE.MeshPhongMaterial( { - color: 0x80ee10, - shininess: 100, - side: THREE.DoubleSide, + color: 0x80ee10, + shininess: 100, + side: THREE.DoubleSide, - // ***** Clipping setup (material): ***** - clippingPlanes: [ localPlane ], - clipShadows: true + // ***** Clipping setup (material): ***** + clippingPlanes: [ localPlane ], + clipShadows: true - } ); + } ); var geometry = new THREE.TorusKnotBufferGeometry( 0.4, 0.08, 95, 20 ); @@ -89,9 +89,9 @@ scene.add( object ); var ground = new THREE.Mesh( - new THREE.PlaneBufferGeometry( 9, 9, 1, 1 ), - new THREE.MeshPhongMaterial( { color: 0xa0adaf, shininess: 150 } ) - ); + new THREE.PlaneBufferGeometry( 9, 9, 1, 1 ), + new THREE.MeshPhongMaterial( { color: 0xa0adaf, shininess: 150 } ) + ); ground.rotation.x = - Math.PI / 2; // rotates X/Y to X/Z ground.receiveShadow = true; @@ -129,26 +129,65 @@ folderLocal = gui.addFolder( 'Local Clipping' ), propsLocal = { - get 'Enabled'() { return renderer.localClippingEnabled; }, - set 'Enabled'( v ) { renderer.localClippingEnabled = v; }, + get 'Enabled'() { - get 'Shadows'() { return material.clipShadows; }, - set 'Shadows'( v ) { material.clipShadows = v; }, + return renderer.localClippingEnabled; - get 'Plane'() { return localPlane.constant; }, - set 'Plane'( v ) { localPlane.constant = v } + }, + set 'Enabled'( v ) { + + renderer.localClippingEnabled = v; + + }, + + get 'Shadows'() { + + return material.clipShadows; + + }, + set 'Shadows'( v ) { + + material.clipShadows = v; + + }, + + get 'Plane'() { + + return localPlane.constant; + + }, + set 'Plane'( v ) { + + localPlane.constant = v; + + } }, folderGlobal = gui.addFolder( 'Global Clipping' ), propsGlobal = { - get 'Enabled'() { return renderer.clippingPlanes !== Empty; }, - set 'Enabled'( v ) { - renderer.clippingPlanes = v ? globalPlanes : Empty; }, + get 'Enabled'() { + + return renderer.clippingPlanes !== Empty; + + }, + set 'Enabled'( v ) { + + renderer.clippingPlanes = v ? globalPlanes : Empty; + + }, + + get 'Plane'() { + + return globalPlane.constant; + + }, + set 'Plane'( v ) { + + globalPlane.constant = v; - get 'Plane'() { return globalPlane.constant; }, - set 'Plane'( v ) { globalPlane.constant = v; } + } }; @@ -157,7 +196,7 @@ folderLocal.add( propsLocal, 'Plane', 0.3, 1.25 ); folderGlobal.add( propsGlobal, 'Enabled' ); - folderGlobal.add( propsGlobal, 'Plane', -0.4, 3 ); + folderGlobal.add( propsGlobal, 'Plane', - 0.4, 3 ); // Start diff --git a/examples/webgl_clipping_advanced.html b/examples/webgl_clipping_advanced.html index c84efddb1c7820..c93de9d60914b1 100644 --- a/examples/webgl_clipping_advanced.html +++ b/examples/webgl_clipping_advanced.html @@ -23,6 +23,7 @@ - - - - + + diff --git a/examples/webgl_effects_parallaxbarrier.html b/examples/webgl_effects_parallaxbarrier.html index 461c2ea30d8d6e..0e88026895d75f 100644 --- a/examples/webgl_effects_parallaxbarrier.html +++ b/examples/webgl_effects_parallaxbarrier.html @@ -49,15 +49,10 @@ } - var container; + var container, camera, scene, renderer, effect; - var camera, scene, renderer, effect; - - var mesh, lightMesh, geometry; var spheres = []; - var directionalLight, pointLight; - var mouseX = 0; var mouseY = 0; @@ -140,7 +135,7 @@ } - function onDocumentMouseMove(event) { + function onDocumentMouseMove( event ) { mouseX = ( event.clientX - windowHalfX ) / 100; mouseY = ( event.clientY - windowHalfY ) / 100; diff --git a/examples/webgl_effects_peppersghost.html b/examples/webgl_effects_peppersghost.html index 8d28c7419b35aa..7d0586a7dbeeef 100644 --- a/examples/webgl_effects_peppersghost.html +++ b/examples/webgl_effects_peppersghost.html @@ -63,94 +63,94 @@ function init() { - container = document.createElement( 'div' ); - document.body.appendChild( container ); + container = document.createElement( 'div' ); + document.body.appendChild( container ); - camera = new THREE.PerspectiveCamera( 60, window.innerWidth / window.innerHeight, 1, 100000 ); + camera = new THREE.PerspectiveCamera( 60, window.innerWidth / window.innerHeight, 1, 100000 ); - scene = new THREE.Scene(); + scene = new THREE.Scene(); - group = new THREE.Group(); - scene.add( group ); + group = new THREE.Group(); + scene.add( group ); - // Cube + // Cube - var geometry = new THREE.BoxBufferGeometry( 1, 1, 1 ); - geometry = geometry.toNonIndexed(); // ensure unique vertices for each triangle + var geometry = new THREE.BoxBufferGeometry( 1, 1, 1 ); + geometry = geometry.toNonIndexed(); // ensure unique vertices for each triangle - var position = geometry.attributes.position; - var colors = []; - var color = new THREE.Color(); + var position = geometry.attributes.position; + var colors = []; + var color = new THREE.Color(); - // generate for each side of the cube a different color + // generate for each side of the cube a different color - for ( var i = 0; i < position.count; i += 6 ) { + for ( var i = 0; i < position.count; i += 6 ) { - color.setHex( Math.random() * 0xffffff ); + color.setHex( Math.random() * 0xffffff ); - // first face + // first face - colors.push( color.r, color.g, color.b ); - colors.push( color.r, color.g, color.b ); - colors.push( color.r, color.g, color.b ); + colors.push( color.r, color.g, color.b ); + colors.push( color.r, color.g, color.b ); + colors.push( color.r, color.g, color.b ); - // second face + // second face - colors.push( color.r, color.g, color.b ); - colors.push( color.r, color.g, color.b ); - colors.push( color.r, color.g, color.b ); + colors.push( color.r, color.g, color.b ); + colors.push( color.r, color.g, color.b ); + colors.push( color.r, color.g, color.b ); - } + } - geometry.addAttribute( 'color', new THREE.Float32BufferAttribute( colors, 3 ) ); + geometry.addAttribute( 'color', new THREE.Float32BufferAttribute( colors, 3 ) ); - var material = new THREE.MeshBasicMaterial( { vertexColors: THREE.VertexColors, overdraw: 0.5 } ); + var material = new THREE.MeshBasicMaterial( { vertexColors: THREE.VertexColors } ); - for ( var i = 0; i < 10; i ++ ) { + for ( var i = 0; i < 10; i ++ ) { - var cube = new THREE.Mesh( geometry, material ); - cube.position.x = Math.random() * 2 - 1; - cube.position.y = Math.random() * 2 - 1; - cube.position.z = Math.random() * 2 - 1; - cube.scale.multiplyScalar( Math.random() + 0.5 ); - group.add( cube ); + var cube = new THREE.Mesh( geometry, material ); + cube.position.x = Math.random() * 2 - 1; + cube.position.y = Math.random() * 2 - 1; + cube.position.z = Math.random() * 2 - 1; + cube.scale.multiplyScalar( Math.random() + 0.5 ); + group.add( cube ); - } + } - renderer = new THREE.WebGLRenderer(); - renderer.setPixelRatio( window.devicePixelRatio ); - container.appendChild( renderer.domElement ); + renderer = new THREE.WebGLRenderer(); + renderer.setPixelRatio( window.devicePixelRatio ); + container.appendChild( renderer.domElement ); - effect = new THREE.PeppersGhostEffect( renderer ); - effect.setSize( window.innerWidth, window.innerHeight ); - effect.cameraDistance = 5; + effect = new THREE.PeppersGhostEffect( renderer ); + effect.setSize( window.innerWidth, window.innerHeight ); + effect.cameraDistance = 5; - window.addEventListener( 'resize', onWindowResize, false ); + window.addEventListener( 'resize', onWindowResize, false ); } function onWindowResize() { - camera.aspect = window.innerWidth / window.innerHeight; - camera.updateProjectionMatrix(); + camera.aspect = window.innerWidth / window.innerHeight; + camera.updateProjectionMatrix(); - effect.setSize( window.innerWidth, window.innerHeight ); + effect.setSize( window.innerWidth, window.innerHeight ); } function animate() { - requestAnimationFrame( animate ); + requestAnimationFrame( animate ); - render(); + render(); } function render() { - group.rotation.y += 0.01; + group.rotation.y += 0.01; - effect.render( scene, camera ); + effect.render( scene, camera ); } diff --git a/examples/webgl_effects_stereo.html b/examples/webgl_effects_stereo.html index f27bd0916244da..e43ef278e1c059 100644 --- a/examples/webgl_effects_stereo.html +++ b/examples/webgl_effects_stereo.html @@ -51,15 +51,10 @@ } - var container; + var container, camera, scene, renderer, effect; - var camera, scene, renderer, effect; - - var mesh, lightMesh, geometry; var spheres = []; - var directionalLight, pointLight; - var mouseX = 0, mouseY = 0; var windowHalfX = window.innerWidth / 2; diff --git a/examples/webgl_geometries.html b/examples/webgl_geometries.html index e071dc80fec3fa..e507f2508bafa0 100644 --- a/examples/webgl_geometries.html +++ b/examples/webgl_geometries.html @@ -179,7 +179,7 @@ camera.lookAt( scene.position ); - scene.traverse( function( object ) { + scene.traverse( function ( object ) { if ( object.isMesh === true ) { diff --git a/examples/webgl_geometry_colors_lookuptable.html b/examples/webgl_geometry_colors_lookuptable.html index 3eef998b7a0601..0ede87785841b7 100644 --- a/examples/webgl_geometry_colors_lookuptable.html +++ b/examples/webgl_geometry_colors_lookuptable.html @@ -104,11 +104,11 @@ renderer = new THREE.WebGLRenderer( { antialias: true } ); renderer.setPixelRatio( window.devicePixelRatio ); - renderer.setSize( window.innerWidth, window.innerHeight ); + renderer.setSize( window.innerWidth, window.innerHeight ); container.appendChild( renderer.domElement ); window.addEventListener( 'resize', onWindowResize, false ); - window.addEventListener( 'keydown', onKeyDown, true); + window.addEventListener( 'keydown', onKeyDown, true ); } @@ -139,9 +139,9 @@ } - function loadModel ( colorMap, numberOfColors, legendLayout ) { + function loadModel( colorMap, numberOfColors, legendLayout ) { - loader.load( 'models/json/pressure.json', function( geometry ) { + loader.load( 'models/json/pressure.json', function ( geometry ) { geometry.center(); geometry.computeVertexNormals(); @@ -186,7 +186,7 @@ if ( legendLayout === 'horizontal' ) { - legend = lut.setLegendOn( { 'layout':'horizontal', 'position': { 'x': 4, 'y': 0, 'z': 0 } } ); + legend = lut.setLegendOn( { 'layout': 'horizontal', 'position': { 'x': 4, 'y': 0, 'z': 0 } } ); } else { @@ -194,16 +194,16 @@ } - scene.add ( legend ); + scene.add( legend ); var labels = lut.setLegendLabels( { 'title': 'Pressure', 'um': 'Pa', 'ticks': 5 } ); - scene.add ( labels['title'] ); + scene.add( labels[ 'title' ] ); for ( var i = 0; i < Object.keys( labels[ 'ticks' ] ).length; i ++ ) { - scene.add ( labels[ 'ticks' ][ i ] ); - scene.add ( labels[ 'lines' ][ i ] ); + scene.add( labels[ 'ticks' ][ i ] ); + scene.add( labels[ 'lines' ][ i ] ); } @@ -257,7 +257,7 @@ var index = maps.indexOf( colorMap ) >= maps.length - 1 ? 0 : maps.indexOf( colorMap ) + 1; - colorMap = maps [ index ]; + colorMap = maps[ index ]; loadModel( colorMap, numberOfColors, legendLayout ); @@ -267,9 +267,9 @@ var index = colorNumbers.indexOf( numberOfColors ) >= colorNumbers.length - 1 ? 0 : colorNumbers.indexOf( numberOfColors ) + 1; - numberOfColors = colorNumbers [ index ]; + numberOfColors = colorNumbers[ index ]; - loadModel( colorMap , numberOfColors, legendLayout ); + loadModel( colorMap, numberOfColors, legendLayout ); } else if ( e.keyCode === 68 ) { @@ -279,7 +279,7 @@ legendLayout = 'vertical'; - loadModel( colorMap , numberOfColors, legendLayout ); + loadModel( colorMap, numberOfColors, legendLayout ); } else { @@ -287,7 +287,7 @@ legendLayout = lut.setLegendOff(); - loadModel( colorMap , numberOfColors, legendLayout ); + loadModel( colorMap, numberOfColors, legendLayout ); } @@ -299,7 +299,7 @@ lut.setLegendOff(); - if ( legendLayout === 'horizontal') { + if ( legendLayout === 'horizontal' ) { legendLayout = 'vertical'; @@ -309,7 +309,7 @@ } - loadModel( colorMap , numberOfColors, legendLayout ); + loadModel( colorMap, numberOfColors, legendLayout ); } diff --git a/examples/webgl_geometry_convex.html b/examples/webgl_geometry_convex.html index ba30f4beb1c947..e716e5ec384ca9 100644 --- a/examples/webgl_geometry_convex.html +++ b/examples/webgl_geometry_convex.html @@ -139,11 +139,11 @@ } - function randomPoint() { + // function randomPoint() { - return new THREE.Vector3( THREE.Math.randFloat( - 1, 1 ), THREE.Math.randFloat( - 1, 1 ), THREE.Math.randFloat( - 1, 1 ) ); + // return new THREE.Vector3( THREE.Math.randFloat( - 1, 1 ), THREE.Math.randFloat( - 1, 1 ), THREE.Math.randFloat( - 1, 1 ) ); - } + // } function onWindowResize() { diff --git a/examples/webgl_geometry_dynamic.html b/examples/webgl_geometry_dynamic.html index 33ac116a79e1ca..f64773e7d05e9b 100644 --- a/examples/webgl_geometry_dynamic.html +++ b/examples/webgl_geometry_dynamic.html @@ -56,10 +56,9 @@ var camera, controls, scene, renderer, stats; - var mesh, texture, geometry, material, clock; + var mesh, geometry, material, clock; - var worldWidth = 128, worldDepth = 128, - worldHalfWidth = worldWidth / 2, worldHalfDepth = worldDepth / 2; + var worldWidth = 128, worldDepth = 128; init(); animate(); diff --git a/examples/webgl_geometry_extrude_shapes.html b/examples/webgl_geometry_extrude_shapes.html index 445678a83ec7aa..ab601aa33f85cc 100644 --- a/examples/webgl_geometry_extrude_shapes.html +++ b/examples/webgl_geometry_extrude_shapes.html @@ -24,8 +24,6 @@ - + \ No newline at end of file diff --git a/examples/webgl_gpu_particle_system.html b/examples/webgl_gpu_particle_system.html index 120c488bbf07bb..f452ee6a99d389 100644 --- a/examples/webgl_gpu_particle_system.html +++ b/examples/webgl_gpu_particle_system.html @@ -108,7 +108,7 @@ gui.add( options, "turbulence", 0, 1 ); gui.add( spawnerOptions, "spawnRate", 10, 30000 ); - gui.add( spawnerOptions, "timeScale", -1, 1 ); + gui.add( spawnerOptions, "timeScale", - 1, 1 ); // @@ -161,7 +161,7 @@ options.position.y = Math.sin( tick * spawnerOptions.verticalSpeed ) * 10; options.position.z = Math.sin( tick * spawnerOptions.horizontalSpeed + spawnerOptions.verticalSpeed ) * 5; - for ( var x = 0; x < spawnerOptions.spawnRate * delta; x++ ) { + for ( var x = 0; x < spawnerOptions.spawnRate * delta; x ++ ) { // Yep, that's really it. Spawning particles is super cheap, and once you spawn them, the rest of // their lifecycle is handled entirely on the GPU, driven by a time uniform updated below diff --git a/examples/webgl_hdr.html b/examples/webgl_hdr.html index b96eaea7e8f6d4..068fe33f8e5a02 100644 --- a/examples/webgl_hdr.html +++ b/examples/webgl_hdr.html @@ -137,10 +137,10 @@ materialHDR = new THREE.ShaderMaterial( { uniforms: { - tDiffuse: { value: texture }, - exposure: { value: 0.125 }, + tDiffuse: { value: texture }, + exposure: { value: 0.125 }, brightMax: { value: 0.5 } - }, + }, vertexShader: getText( 'vs-hdr' ), fragmentShader: getText( 'fs-hdr' ) @@ -149,7 +149,7 @@ var plane = new THREE.PlaneBufferGeometry( 512, 768 ); quad = new THREE.Mesh( plane, materialHDR ); - quad.position.z = -100; + quad.position.z = - 100; scene.add( quad ); renderer = new THREE.WebGLRenderer(); @@ -208,7 +208,7 @@ if ( materialHDR.uniforms.exposure.value > 5 || materialHDR.uniforms.exposure.value <= 0 ) { - sign *= -1; + sign *= - 1; } diff --git a/examples/webgl_helpers.html b/examples/webgl_helpers.html index 89d6893480bac5..74486efcdb777c 100644 --- a/examples/webgl_helpers.html +++ b/examples/webgl_helpers.html @@ -67,7 +67,7 @@ scene.add( group ); // To make sure that the matrixWorld is up to date for the boxhelpers - group.updateMatrixWorld(true); + group.updateMatrixWorld( true ); group.add( mesh ); @@ -90,7 +90,7 @@ line.material.depthTest = false; line.material.opacity = 0.25; line.material.transparent = true; - line.position.x = -4; + line.position.x = - 4; group.add( line ); scene.add( new THREE.BoxHelper( line ) ); diff --git a/examples/webgl_interactive_buffergeometry.html b/examples/webgl_interactive_buffergeometry.html index 3ac5bf95181b43..f233391546ccab 100644 --- a/examples/webgl_interactive_buffergeometry.html +++ b/examples/webgl_interactive_buffergeometry.html @@ -80,7 +80,7 @@ scene.add( light1 ); var light2 = new THREE.DirectionalLight( 0xffffff, 1.5 ); - light2.position.set( 0, -1, 0 ); + light2.position.set( 0, - 1, 0 ); scene.add( light2 ); // @@ -95,8 +95,8 @@ var color = new THREE.Color(); - var n = 800, n2 = n/2; // triangles spread in the cube - var d = 120, d2 = d/2; // individual triangle size + var n = 800, n2 = n / 2; // triangles spread in the cube + var d = 120, d2 = d / 2; // individual triangle size var pA = new THREE.Vector3(); var pB = new THREE.Vector3(); @@ -125,7 +125,7 @@ var cy = y + Math.random() * d - d2; var cz = z + Math.random() * d - d2; - positions[ i ] = ax; + positions[ i ] = ax; positions[ i + 1 ] = ay; positions[ i + 2 ] = az; @@ -153,7 +153,7 @@ var ny = cb.y; var nz = cb.z; - normals[ i ] = nx; + normals[ i ] = nx; normals[ i + 1 ] = ny; normals[ i + 2 ] = nz; @@ -173,7 +173,7 @@ color.setRGB( vx, vy, vz ); - colors[ i ] = color.r; + colors[ i ] = color.r; colors[ i + 1 ] = color.g; colors[ i + 2 ] = color.b; @@ -194,8 +194,8 @@ geometry.computeBoundingSphere(); var material = new THREE.MeshPhongMaterial( { - color: 0xaaaaaa, specular: 0xffffff, shininess: 250, - side: THREE.DoubleSide, vertexColors: THREE.VertexColors + color: 0xaaaaaa, specular: 0xffffff, shininess: 250, + side: THREE.DoubleSide, vertexColors: THREE.VertexColors } ); mesh = new THREE.Mesh( geometry, material ); diff --git a/examples/webgl_interactive_cubes.html b/examples/webgl_interactive_cubes.html index 5c922d9ad4e6d9..4cc815a6b2819f 100644 --- a/examples/webgl_interactive_cubes.html +++ b/examples/webgl_interactive_cubes.html @@ -79,7 +79,7 @@ renderer = new THREE.WebGLRenderer(); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); - container.appendChild(renderer.domElement); + container.appendChild( renderer.domElement ); stats = new Stats(); container.appendChild( stats.dom ); diff --git a/examples/webgl_interactive_cubes_gpu.html b/examples/webgl_interactive_cubes_gpu.html index b8529fc8eb4fe0..335b130763ad6f 100644 --- a/examples/webgl_interactive_cubes_gpu.html +++ b/examples/webgl_interactive_cubes_gpu.html @@ -164,7 +164,7 @@ highlightBox = new THREE.Mesh( new THREE.BoxBufferGeometry(), new THREE.MeshLambertMaterial( { color: 0xffff00 } - ) ); + ) ); scene.add( highlightBox ); renderer = new THREE.WebGLRenderer( { antialias: true } ); @@ -216,11 +216,11 @@ var id = ( pixelBuffer[ 0 ] << 16 ) | ( pixelBuffer[ 1 ] << 8 ) | ( pixelBuffer[ 2 ] ); var data = pickingData[ id ]; - if ( data) { + if ( data ) { //move our highlightBox so that it surrounds the picked object - if ( data.position && data.rotation && data.scale ){ + if ( data.position && data.rotation && data.scale ) { highlightBox.position.copy( data.position ); highlightBox.rotation.copy( data.rotation ); diff --git a/examples/webgl_interactive_cubes_ortho.html b/examples/webgl_interactive_cubes_ortho.html index 64c769bdd319ea..6e3b499e3fbc5c 100644 --- a/examples/webgl_interactive_cubes_ortho.html +++ b/examples/webgl_interactive_cubes_ortho.html @@ -81,7 +81,7 @@ renderer = new THREE.WebGLRenderer(); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); - container.appendChild(renderer.domElement); + container.appendChild( renderer.domElement ); stats = new Stats(); container.appendChild( stats.dom ); @@ -98,9 +98,9 @@ var aspect = window.innerWidth / window.innerHeight; - camera.left = - frustumSize * aspect / 2; - camera.right = frustumSize * aspect / 2; - camera.top = frustumSize / 2; + camera.left = - frustumSize * aspect / 2; + camera.right = frustumSize * aspect / 2; + camera.top = frustumSize / 2; camera.bottom = - frustumSize / 2; camera.updateProjectionMatrix(); diff --git a/examples/webgl_interactive_draggablecubes.html b/examples/webgl_interactive_draggablecubes.html index b2863be490566e..a489fd0e26837e 100644 --- a/examples/webgl_interactive_draggablecubes.html +++ b/examples/webgl_interactive_draggablecubes.html @@ -102,8 +102,16 @@ container.appendChild( renderer.domElement ); var dragControls = new THREE.DragControls( objects, camera, renderer.domElement ); - dragControls.addEventListener( 'dragstart', function ( event ) { controls.enabled = false; } ); - dragControls.addEventListener( 'dragend', function ( event ) { controls.enabled = true; } ); + dragControls.addEventListener( 'dragstart', function () { + + controls.enabled = false; + + } ); + dragControls.addEventListener( 'dragend', function () { + + controls.enabled = true; + + } ); var info = document.createElement( 'div' ); info.style.position = 'absolute'; diff --git a/examples/webgl_interactive_instances_gpu.html b/examples/webgl_interactive_instances_gpu.html index 36a8ee5783871f..b7acd365c13951 100644 --- a/examples/webgl_interactive_instances_gpu.html +++ b/examples/webgl_interactive_instances_gpu.html @@ -377,7 +377,7 @@ instanceCount = parseInt( instanceCountElm.value ); - instanceCountElm.addEventListener( "change", function() { + instanceCountElm.addEventListener( "change", function () { instanceCount = parseInt( instanceCountElm.value ); initMesh(); @@ -390,7 +390,7 @@ method = methodElm.value; - methodElm.addEventListener( "change", function() { + methodElm.addEventListener( "change", function () { method = methodElm.value; initMesh(); @@ -403,7 +403,7 @@ doAnimate = animateElm.checked; - animateElm.addEventListener( "click", function() { + animateElm.addEventListener( "click", function () { doAnimate = animateElm.checked; animate(); @@ -416,7 +416,7 @@ useOverrideMaterial = overrideElm.checked; - overrideElm.addEventListener( "click", function() { + overrideElm.addEventListener( "click", function () { useOverrideMaterial = overrideElm.checked; initMesh(); @@ -427,7 +427,7 @@ var constructElm = document.getElementById( 'construct' ); - constructElm.addEventListener( "click", function() { + constructElm.addEventListener( "click", function () { initMesh(); @@ -439,13 +439,13 @@ THREE.Cache.clear(); - materialList.forEach( function( m ) { + materialList.forEach( function ( m ) { m.dispose(); } ); - geometryList.forEach( function( g ) { + geometryList.forEach( function ( g ) { g.dispose(); @@ -468,14 +468,14 @@ } - var randomizeMatrix = function() { + var randomizeMatrix = function () { var position = new THREE.Vector3(); var rotation = new THREE.Euler(); var quaternion = new THREE.Quaternion(); var scale = new THREE.Vector3(); - return function( matrix ) { + return function ( matrix ) { position.x = Math.random() * 40 - 20; position.y = Math.random() * 40 - 20; @@ -509,7 +509,7 @@ var start = window.performance.now(); - switch ( method ){ + switch ( method ) { case "merged": makeMerged( geo ); @@ -643,35 +643,41 @@ var matrix = new THREE.Matrix4(); - function onBeforeRender( renderer, scene, camera, geometry, material, group ){ + function onBeforeRender( renderer, scene, camera, geometry, material ) { var updateList = []; var u = material.uniforms; var d = this.userData; - if( u.pickingColor ){ + if ( u.pickingColor ) { + u.pickingColor.value.setHex( d.pickingColor ); updateList.push( "pickingColor" ); + } - if( u.color ){ + if ( u.color ) { + u.color.value.setHex( d.color ); updateList.push( "color" ); + } - if( updateList.length ){ + if ( updateList.length ) { var materialProperties = renderer.properties.get( material ); - if( materialProperties.program ){ + if ( materialProperties.program ) { var gl = renderer.getContext(); var p = materialProperties.program; gl.useProgram( p.program ); var pu = p.getUniforms(); - updateList.forEach( function( name ){ + updateList.forEach( function ( name ) { + pu.setValue( gl, name, u[ name ].value ); + } ); } @@ -703,7 +709,7 @@ object.userData[ "pickingColor" ] = i + 1; object.onBeforeRender = onBeforeRender; - }else { + } else { pickingObject.material = pickingMaterial; pickingObject.userData[ "pickingColor" ] = i + 1; @@ -780,7 +786,7 @@ var colors = new THREE.BufferAttribute( new Float32Array( instanceCount * colCount * 3 ), 3 ); - var randCol = function() { + var randCol = function () { return Math.random(); @@ -851,19 +857,19 @@ igeo.addAttribute( 'position', vertices ); // var matrices = new THREE.InstancedBufferAttribute( - // new Float32Array( instanceCount * 16 ), 16, 1 + // new Float32Array( instanceCount * 16 ), 16 // ); var mcol0 = new THREE.InstancedBufferAttribute( - new Float32Array( instanceCount * 3 ), 3, 1 + new Float32Array( instanceCount * 3 ), 3 ); var mcol1 = new THREE.InstancedBufferAttribute( - new Float32Array( instanceCount * 3 ), 3, 1 + new Float32Array( instanceCount * 3 ), 3 ); var mcol2 = new THREE.InstancedBufferAttribute( - new Float32Array( instanceCount * 3 ), 3, 1 + new Float32Array( instanceCount * 3 ), 3 ); var mcol3 = new THREE.InstancedBufferAttribute( - new Float32Array( instanceCount * 3 ), 3, 1 + new Float32Array( instanceCount * 3 ), 3 ); var matrix = new THREE.Matrix4(); var me = matrix.elements; @@ -887,13 +893,13 @@ igeo.addAttribute( 'mcol2', mcol2 ); igeo.addAttribute( 'mcol3', mcol3 ); - var randCol = function() { + var randCol = function () { return Math.random(); }; var colors = new THREE.InstancedBufferAttribute( - new Float32Array( instanceCount * 3 ), 3, 1 + new Float32Array( instanceCount * 3 ), 3 ); for ( var i = 0, ul = colors.count; i < ul; i ++ ) { @@ -904,7 +910,7 @@ var col = new THREE.Color(); var pickingColors = new THREE.InstancedBufferAttribute( - new Float32Array( instanceCount * 3 ), 3, 1 + new Float32Array( instanceCount * 3 ), 3 ); for ( var i = 0, ul = pickingColors.count; i < ul; i ++ ) { @@ -1008,7 +1014,7 @@ } - function onWindowResize( event ) { + function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); @@ -1045,7 +1051,7 @@ renderer.render( scene, camera, pickingRenderTarget ); scene.overrideMaterial = null; - }else { + } else { renderer.render( pickingScene, camera, pickingRenderTarget ); diff --git a/examples/webgl_interactive_lines.html b/examples/webgl_interactive_lines.html index ee5d918fded2ca..4b704af471d94f 100644 --- a/examples/webgl_interactive_lines.html +++ b/examples/webgl_interactive_lines.html @@ -27,8 +27,6 @@ var mouse = new THREE.Vector2(); var radius = 100, theta = 0; - var currentIntersected; - init(); animate(); @@ -128,7 +126,7 @@ renderer = new THREE.WebGLRenderer( { antialias: true } ); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); - container.appendChild(renderer.domElement); + container.appendChild( renderer.domElement ); stats = new Stats(); container.appendChild( stats.dom ); @@ -185,19 +183,15 @@ raycaster.setFromCamera( mouse, camera ); - var intersects = raycaster.intersectObjects( parentTransform.children, true); + var intersects = raycaster.intersectObjects( parentTransform.children, true ); if ( intersects.length > 0 ) { - currentIntersected = intersects[ 0 ].object; - sphereInter.visible = true; sphereInter.position.copy( intersects[ 0 ].point ); } else { - currentIntersected = undefined; - sphereInter.visible = false; } diff --git a/examples/webgl_interactive_points.html b/examples/webgl_interactive_points.html index 9fca41d98ac1a8..026fede817b5eb 100644 --- a/examples/webgl_interactive_points.html +++ b/examples/webgl_interactive_points.html @@ -87,7 +87,7 @@ var renderer, scene, camera, stats; - var particles, uniforms; + var particles; var PARTICLE_SIZE = 20; @@ -139,7 +139,7 @@ var material = new THREE.ShaderMaterial( { uniforms: { - color: { value: new THREE.Color( 0xffffff ) }, + color: { value: new THREE.Color( 0xffffff ) }, texture: { value: new THREE.TextureLoader().load( "textures/sprites/disc.png" ) } }, vertexShader: document.getElementById( 'vertexshader' ).textContent, diff --git a/examples/webgl_interactive_raycasting_points.html b/examples/webgl_interactive_raycasting_points.html index 9b523bdf28e6bd..a462fec0867616 100644 --- a/examples/webgl_interactive_raycasting_points.html +++ b/examples/webgl_interactive_raycasting_points.html @@ -62,19 +62,19 @@ init(); animate(); - function generatePointCloudGeometry( color, width, length ){ + function generatePointCloudGeometry( color, width, length ) { var geometry = new THREE.BufferGeometry(); - var numPoints = width*length; + var numPoints = width * length; - var positions = new Float32Array( numPoints*3 ); - var colors = new Float32Array( numPoints*3 ); + var positions = new Float32Array( numPoints * 3 ); + var colors = new Float32Array( numPoints * 3 ); var k = 0; - for( var i = 0; i < width; i++ ) { + for ( var i = 0; i < width; i ++ ) { - for( var j = 0; j < length; j++ ) { + for ( var j = 0; j < length; j ++ ) { var u = i / width; var v = j / length; @@ -91,7 +91,7 @@ colors[ 3 * k + 1 ] = color.g * intensity; colors[ 3 * k + 2 ] = color.b * intensity; - k++; + k ++; } @@ -124,12 +124,12 @@ var k = 0; - for( var i = 0; i < width; i++ ) { + for ( var i = 0; i < width; i ++ ) { - for( var j = 0; j < length; j++ ) { + for ( var j = 0; j < length; j ++ ) { indices[ k ] = k; - k++; + k ++; } @@ -144,7 +144,7 @@ } - function generateIndexedWithOffsetPointcloud( color, width, length ){ + function generateIndexedWithOffsetPointcloud( color, width, length ) { var geometry = generatePointCloudGeometry( color, width, length ); var numPoints = width * length; @@ -152,12 +152,12 @@ var k = 0; - for( var i = 0; i < width; i++ ){ + for ( var i = 0; i < width; i ++ ) { - for( var j = 0; j < length; j++ ) { + for ( var j = 0; j < length; j ++ ) { indices[ k ] = k; - k++; + k ++; } @@ -181,22 +181,22 @@ var k = 0; - for( var i = 0; i < width; i++ ) { + for ( var i = 0; i < width; i ++ ) { - for( var j = 0; j < length; j++ ) { + for ( var j = 0; j < length; j ++ ) { var u = i / width; var v = j / length; var x = u - 0.5; - var y = ( Math.cos( u * Math.PI * 8 ) + Math.sin( v * Math.PI * 8) ) / 20; + var y = ( Math.cos( u * Math.PI * 8 ) + Math.sin( v * Math.PI * 8 ) ) / 20; var z = v - 0.5; - var v = new THREE.Vector3( x,y,z ); + var v = new THREE.Vector3( x, y, z ); geometry.vertices.push( v ); var intensity = ( y + 0.1 ) * 7; colors[ k ] = ( color.clone().multiplyScalar( intensity ) ); - k++; + k ++; } @@ -227,24 +227,24 @@ // - var pcBuffer = generatePointcloud( new THREE.Color( 1,0,0 ), width, length ); - pcBuffer.scale.set( 10,10,10 ); - pcBuffer.position.set( -5,0,5 ); + var pcBuffer = generatePointcloud( new THREE.Color( 1, 0, 0 ), width, length ); + pcBuffer.scale.set( 10, 10, 10 ); + pcBuffer.position.set( - 5, 0, 5 ); scene.add( pcBuffer ); - var pcIndexed = generateIndexedPointcloud( new THREE.Color( 0,1,0 ), width, length ); - pcIndexed.scale.set( 10,10,10 ); - pcIndexed.position.set( 5,0,5 ); + var pcIndexed = generateIndexedPointcloud( new THREE.Color( 0, 1, 0 ), width, length ); + pcIndexed.scale.set( 10, 10, 10 ); + pcIndexed.position.set( 5, 0, 5 ); scene.add( pcIndexed ); - var pcIndexedOffset = generateIndexedWithOffsetPointcloud( new THREE.Color( 0,1,1 ), width, length ); - pcIndexedOffset.scale.set( 10,10,10 ); - pcIndexedOffset.position.set( 5,0,-5 ); + var pcIndexedOffset = generateIndexedWithOffsetPointcloud( new THREE.Color( 0, 1, 1 ), width, length ); + pcIndexedOffset.scale.set( 10, 10, 10 ); + pcIndexedOffset.position.set( 5, 0, - 5 ); scene.add( pcIndexedOffset ); - var pcRegular = generateRegularPointcloud( new THREE.Color( 1,0,1 ), width, length ); - pcRegular.scale.set( 10,10,10 ); - pcRegular.position.set( -5,0,-5 ); + var pcRegular = generateRegularPointcloud( new THREE.Color( 1, 0, 1 ), width, length ); + pcRegular.scale.set( 10, 10, 10 ); + pcRegular.position.set( - 5, 0, - 5 ); scene.add( pcRegular ); pointclouds = [ pcBuffer, pcIndexed, pcIndexedOffset, pcRegular ]; @@ -254,7 +254,7 @@ var sphereGeometry = new THREE.SphereBufferGeometry( 0.1, 32, 32 ); var sphereMaterial = new THREE.MeshBasicMaterial( { color: 0xff0000 } ); - for ( var i = 0; i < 40; i++ ) { + for ( var i = 0; i < 40; i ++ ) { var sphere = new THREE.Mesh( sphereGeometry, sphereMaterial ); scene.add( sphere ); @@ -325,7 +325,7 @@ var intersections = raycaster.intersectObjects( pointclouds ); intersection = ( intersections.length ) > 0 ? intersections[ 0 ] : null; - if ( toggle > 0.02 && intersection !== null) { + if ( toggle > 0.02 && intersection !== null ) { spheres[ spheresIndex ].position.copy( intersection.point ); spheres[ spheresIndex ].scale.set( 1, 1, 1 ); @@ -335,7 +335,7 @@ } - for ( var i = 0; i < spheres.length; i++ ) { + for ( var i = 0; i < spheres.length; i ++ ) { var sphere = spheres[ i ]; sphere.scale.multiplyScalar( 0.98 ); diff --git a/examples/webgl_interactive_voxelpainter.html b/examples/webgl_interactive_voxelpainter.html index 8b5d98da2832a0..70bb6c3bfa0aaa 100644 --- a/examples/webgl_interactive_voxelpainter.html +++ b/examples/webgl_interactive_voxelpainter.html @@ -181,7 +181,7 @@ } - // create cube + // create cube } else { @@ -202,7 +202,7 @@ function onDocumentKeyDown( event ) { - switch( event.keyCode ) { + switch ( event.keyCode ) { case 16: isShiftDown = true; break; diff --git a/examples/webgl_kinect.html b/examples/webgl_kinect.html index f0be15e9310b1f..9a9c1fb06efdea 100644 --- a/examples/webgl_kinect.html +++ b/examples/webgl_kinect.html @@ -25,9 +25,7 @@ } a { - color: #0040ff; - } @@ -98,8 +96,8 @@ var container; - var scene, camera, light, renderer; - var geometry, cube, mesh, material; + var scene, camera, renderer; + var geometry, mesh, material; var mouse, center; var stats; @@ -137,7 +135,7 @@ center.z = - 1000; video = document.createElement( 'video' ); - video.addEventListener( 'loadedmetadata', function ( event ) { + video.addEventListener( 'loadedmetadata', function () { texture = new THREE.VideoTexture( video ); texture.minFilter = THREE.NearestFilter; @@ -163,14 +161,14 @@ uniforms: { - "map": { value: texture }, - "width": { value: width }, - "height": { value: height }, + "map": { value: texture }, + "width": { value: width }, + "height": { value: height }, "nearClipping": { value: nearClipping }, - "farClipping": { value: farClipping }, + "farClipping": { value: farClipping }, - "pointSize": { value: 2 }, - "zOffset": { value: 1000 } + "pointSize": { value: 2 }, + "zOffset": { value: 1000 } }, vertexShader: document.getElementById( 'vs' ).textContent, diff --git a/examples/webgl_layers.html b/examples/webgl_layers.html index fee5b0f0cc9497..45e7c10635e33f 100644 --- a/examples/webgl_layers.html +++ b/examples/webgl_layers.html @@ -17,7 +17,7 @@ top: 10px; width: 100%; text-align: center; - z-index: 0; // to not conflict with dat.gui + z-index: 0; /* to not conflict with dat.gui */ display:block; } @@ -92,12 +92,10 @@ } - raycaster = new THREE.Raycaster(); - renderer = new THREE.WebGLRenderer(); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); - container.appendChild(renderer.domElement); + container.appendChild( renderer.domElement ); stats = new Stats(); container.appendChild( stats.dom ); @@ -107,9 +105,21 @@ // // Init gui var gui = new dat.GUI(); - gui.add( layers, 'red' ).onChange( function () { camera.layers.toggle( 0 ); } ); - gui.add( layers, 'green' ).onChange( function () { camera.layers.toggle( 1 ); } ); - gui.add( layers, 'blue' ).onChange( function () { camera.layers.toggle( 2 ); } ); + gui.add( layers, 'red' ).onChange( function () { + + camera.layers.toggle( 0 ); + + } ); + gui.add( layers, 'green' ).onChange( function () { + + camera.layers.toggle( 1 ); + + } ); + gui.add( layers, 'blue' ).onChange( function () { + + camera.layers.toggle( 2 ); + + } ); window.addEventListener( 'resize', onWindowResize, false ); diff --git a/examples/webgl_lensflares.html b/examples/webgl_lensflares.html index f050df0319a1c0..b3c9f292aad2d3 100644 --- a/examples/webgl_lensflares.html +++ b/examples/webgl_lensflares.html @@ -113,7 +113,7 @@ // lights var dirLight = new THREE.DirectionalLight( 0xffffff, 0.05 ); - dirLight.position.set( 0, -1, 0 ).normalize(); + dirLight.position.set( 0, - 1, 0 ).normalize(); dirLight.color.setHSL( 0.1, 0.7, 0.5 ); scene.add( dirLight ); @@ -124,7 +124,7 @@ var textureFlare3 = textureLoader.load( 'textures/lensflare/lensflare3.png' ); addLight( 0.55, 0.9, 0.5, 5000, 0, - 1000 ); - addLight( 0.08, 0.8, 0.5, 0, 0, - 1000 ); + addLight( 0.08, 0.8, 0.5, 0, 0, - 1000 ); addLight( 0.995, 0.5, 0.9, 5000, 5000, - 1000 ); function addLight( h, s, l, x, y, z ) { @@ -169,7 +169,7 @@ // - function onWindowResize( event ) { + function onWindowResize() { renderer.setSize( window.innerWidth, window.innerHeight ); diff --git a/examples/webgl_lights_hemisphere.html b/examples/webgl_lights_hemisphere.html index 9f56f6a11b6354..34c1edc33048f1 100644 --- a/examples/webgl_lights_hemisphere.html +++ b/examples/webgl_lights_hemisphere.html @@ -127,7 +127,7 @@ dirLight = new THREE.DirectionalLight( 0xffffff, 1 ); dirLight.color.setHSL( 0.1, 1, 0.95 ); - dirLight.position.set( -1, 1.75, 1 ); + dirLight.position.set( - 1, 1.75, 1 ); dirLight.position.multiplyScalar( 30 ); scene.add( dirLight ); @@ -138,13 +138,13 @@ var d = 50; - dirLight.shadow.camera.left = -d; + dirLight.shadow.camera.left = - d; dirLight.shadow.camera.right = d; dirLight.shadow.camera.top = d; - dirLight.shadow.camera.bottom = -d; + dirLight.shadow.camera.bottom = - d; dirLight.shadow.camera.far = 3500; - dirLight.shadow.bias = -0.0001; + dirLight.shadow.bias = - 0.0001; dirLightHeper = new THREE.DirectionalLightHelper( dirLight, 10 ); scene.add( dirLightHeper ); @@ -156,8 +156,8 @@ groundMat.color.setHSL( 0.095, 1, 0.75 ); var ground = new THREE.Mesh( groundGeo, groundMat ); - ground.rotation.x = -Math.PI/2; - ground.position.y = -33; + ground.rotation.x = - Math.PI / 2; + ground.position.y = - 33; scene.add( ground ); ground.receiveShadow = true; @@ -167,10 +167,10 @@ var vertexShader = document.getElementById( 'vertexShader' ).textContent; var fragmentShader = document.getElementById( 'fragmentShader' ).textContent; var uniforms = { - topColor: { value: new THREE.Color( 0x0077ff ) }, + topColor: { value: new THREE.Color( 0x0077ff ) }, bottomColor: { value: new THREE.Color( 0xffffff ) }, - offset: { value: 33 }, - exponent: { value: 0.6 } + offset: { value: 33 }, + exponent: { value: 0.6 } }; uniforms.topColor.value.copy( hemiLight.color ); @@ -186,14 +186,14 @@ var loader = new THREE.GLTFLoader(); - loader.load( 'models/gltf/Flamingo.glb', function( gltf ) { + loader.load( 'models/gltf/Flamingo.glb', function ( gltf ) { var mesh = gltf.scene.children[ 0 ]; var s = 0.35; mesh.scale.set( s, s, s ); mesh.position.y = 15; - mesh.rotation.y = -1; + mesh.rotation.y = - 1; mesh.castShadow = true; mesh.receiveShadow = true; @@ -239,21 +239,21 @@ } - function onKeyDown ( event ) { + function onKeyDown( event ) { switch ( event.keyCode ) { case 72: // h - hemiLight.visible = !hemiLight.visible; - hemiLightHelper.visible = !hemiLightHelper.visible; - break; + hemiLight.visible = ! hemiLight.visible; + hemiLightHelper.visible = ! hemiLightHelper.visible; + break; case 68: // d - dirLight.visible = !dirLight.visible; - dirLightHeper.visible = !dirLightHeper.visible; - break; + dirLight.visible = ! dirLight.visible; + dirLightHeper.visible = ! dirLightHeper.visible; + break; } diff --git a/examples/webgl_lights_physical.html b/examples/webgl_lights_physical.html index 242425e756984e..a934f458f6425d 100644 --- a/examples/webgl_lights_physical.html +++ b/examples/webgl_lights_physical.html @@ -55,8 +55,7 @@ } var camera, scene, renderer, - bulbLight, bulbMat, hemiLight, - object, loader, stats; + bulbLight, bulbMat, hemiLight, stats; var ballMat, cubeMat, floorMat; @@ -91,12 +90,9 @@ shadows: true, exposure: 0.68, bulbPower: Object.keys( bulbLuminousPowers )[ 4 ], - hemiIrradiance: Object.keys( hemiLuminousIrradiances )[0] + hemiIrradiance: Object.keys( hemiLuminousIrradiances )[ 0 ] }; - - var clock = new THREE.Clock(); - init(); animate(); @@ -109,7 +105,7 @@ camera = new THREE.PerspectiveCamera( 50, window.innerWidth / window.innerHeight, 0.1, 100 ); - camera.position.x = -4; + camera.position.x = - 4; camera.position.z = 4; camera.position.y = 2; @@ -122,7 +118,7 @@ emissive: 0xffffee, emissiveIntensity: 1, color: 0x000000 - }); + } ); bulbLight.add( new THREE.Mesh( bulbGeometry, bulbMat ) ); bulbLight.position.set( 0, 2, 0 ); bulbLight.castShadow = true; @@ -136,76 +132,90 @@ color: 0xffffff, metalness: 0.2, bumpScale: 0.0005 - }); + } ); var textureLoader = new THREE.TextureLoader(); - textureLoader.load( "textures/hardwood2_diffuse.jpg", function( map ) { + textureLoader.load( "textures/hardwood2_diffuse.jpg", function ( map ) { + map.wrapS = THREE.RepeatWrapping; map.wrapT = THREE.RepeatWrapping; map.anisotropy = 4; map.repeat.set( 10, 24 ); floorMat.map = map; floorMat.needsUpdate = true; - } ); - textureLoader.load( "textures/hardwood2_bump.jpg", function( map ) { + + } ); + textureLoader.load( "textures/hardwood2_bump.jpg", function ( map ) { + map.wrapS = THREE.RepeatWrapping; map.wrapT = THREE.RepeatWrapping; map.anisotropy = 4; map.repeat.set( 10, 24 ); floorMat.bumpMap = map; floorMat.needsUpdate = true; - } ); - textureLoader.load( "textures/hardwood2_roughness.jpg", function( map ) { + + } ); + textureLoader.load( "textures/hardwood2_roughness.jpg", function ( map ) { + map.wrapS = THREE.RepeatWrapping; map.wrapT = THREE.RepeatWrapping; map.anisotropy = 4; map.repeat.set( 10, 24 ); floorMat.roughnessMap = map; floorMat.needsUpdate = true; - } ); + + } ); cubeMat = new THREE.MeshStandardMaterial( { roughness: 0.7, color: 0xffffff, bumpScale: 0.002, metalness: 0.2 - }); - textureLoader.load( "textures/brick_diffuse.jpg", function( map ) { + } ); + textureLoader.load( "textures/brick_diffuse.jpg", function ( map ) { + map.wrapS = THREE.RepeatWrapping; map.wrapT = THREE.RepeatWrapping; map.anisotropy = 4; map.repeat.set( 1, 1 ); cubeMat.map = map; cubeMat.needsUpdate = true; - } ); - textureLoader.load( "textures/brick_bump.jpg", function( map ) { + + } ); + textureLoader.load( "textures/brick_bump.jpg", function ( map ) { + map.wrapS = THREE.RepeatWrapping; map.wrapT = THREE.RepeatWrapping; map.anisotropy = 4; map.repeat.set( 1, 1 ); cubeMat.bumpMap = map; cubeMat.needsUpdate = true; - } ); + + } ); ballMat = new THREE.MeshStandardMaterial( { color: 0xffffff, roughness: 0.5, metalness: 1.0 - }); - textureLoader.load( "textures/planets/earth_atmos_2048.jpg", function( map ) { + } ); + textureLoader.load( "textures/planets/earth_atmos_2048.jpg", function ( map ) { + map.anisotropy = 4; ballMat.map = map; ballMat.needsUpdate = true; - } ); - textureLoader.load( "textures/planets/earth_specular_2048.jpg", function( map ) { + + } ); + textureLoader.load( "textures/planets/earth_specular_2048.jpg", function ( map ) { + map.anisotropy = 4; ballMat.metalnessMap = map; ballMat.needsUpdate = true; - } ); + + } ); var floorGeometry = new THREE.PlaneBufferGeometry( 20, 20 ); var floorMesh = new THREE.Mesh( floorGeometry, floorMat ); floorMesh.receiveShadow = true; - floorMesh.rotation.x = -Math.PI / 2.0; + floorMesh.rotation.x = - Math.PI / 2.0; scene.add( floorMesh ); var ballGeometry = new THREE.SphereBufferGeometry( 0.5, 32, 32 ); @@ -217,12 +227,12 @@ var boxGeometry = new THREE.BoxBufferGeometry( 0.5, 0.5, 0.5 ); var boxMesh = new THREE.Mesh( boxGeometry, cubeMat ); - boxMesh.position.set( -0.5, 0.25, -1 ); + boxMesh.position.set( - 0.5, 0.25, - 1 ); boxMesh.castShadow = true; scene.add( boxMesh ); var boxMesh2 = new THREE.Mesh( boxGeometry, cubeMat ); - boxMesh2.position.set( 0, 0.25, -5 ); + boxMesh2.position.set( 0, 0.25, - 5 ); boxMesh2.castShadow = true; scene.add( boxMesh2 ); @@ -255,7 +265,8 @@ gui.add( params, 'exposure', 0, 1 ); gui.add( params, 'shadows' ); gui.open(); - } + +} function onWindowResize() { @@ -283,12 +294,14 @@ renderer.toneMappingExposure = Math.pow( params.exposure, 5.0 ); // to allow for very bright scenes. renderer.shadowMap.enabled = params.shadows; bulbLight.castShadow = params.shadows; - if( params.shadows !== previousShadowMap ) { + if ( params.shadows !== previousShadowMap ) { + ballMat.needsUpdate = true; cubeMat.needsUpdate = true; floorMat.needsUpdate = true; previousShadowMap = params.shadows; - } + + } bulbLight.power = bulbLuminousPowers[ params.bulbPower ]; bulbMat.emissiveIntensity = bulbLight.intensity / Math.pow( 0.02, 2.0 ); // convert from intensity to irradiance at bulb surface diff --git a/examples/webgl_lights_pointlights.html b/examples/webgl_lights_pointlights.html index 2b2a57217a9734..e7fc4102039b27 100644 --- a/examples/webgl_lights_pointlights.html +++ b/examples/webgl_lights_pointlights.html @@ -48,8 +48,8 @@ } var camera, scene, renderer, - light1, light2, light3, light4, - object, stats; + light1, light2, light3, light4, + object, stats; var clock = new THREE.Clock(); @@ -134,7 +134,7 @@ var time = Date.now() * 0.0005; var delta = clock.getDelta(); - if( object ) object.rotation.y -= 0.5 * delta; + if ( object ) object.rotation.y -= 0.5 * delta; light1.position.x = Math.sin( time * 0.7 ) * 30; light1.position.y = Math.cos( time * 0.5 ) * 40; diff --git a/examples/webgl_lights_rectarealight.html b/examples/webgl_lights_rectarealight.html index 24e8a55e8561e2..2428e2e4cffcca 100644 --- a/examples/webgl_lights_rectarealight.html +++ b/examples/webgl_lights_rectarealight.html @@ -33,7 +33,6 @@ -
    three.js - Demo of RectAreaLight - by abelnation
    Click and drag to move OrbitControls.
    @@ -49,8 +48,6 @@ - + \ No newline at end of file diff --git a/examples/webgl_loader_imagebitmap.html b/examples/webgl_loader_imagebitmap.html index 21905b7a442833..8fcfbe35a340e1 100644 --- a/examples/webgl_loader_imagebitmap.html +++ b/examples/webgl_loader_imagebitmap.html @@ -67,10 +67,14 @@ addCube( material ); - }, function( p ) { + }, function ( p ) { + console.log( p ); - }, function( e ) { + + }, function ( e ) { + console.log( e ); + } ); } @@ -80,14 +84,16 @@ new THREE.ImageLoader() .setCrossOrigin( '*' ) .load( 'textures/planets/earth_atmos_2048.jpg?' + performance.now(), function ( image ) { - var texture = new THREE.CanvasTexture( image ); - var material = new THREE.MeshBasicMaterial( { color: 0xff8888, map: texture } ); - addCube( material ); - }); + + var texture = new THREE.CanvasTexture( image ); + var material = new THREE.MeshBasicMaterial( { color: 0xff8888, map: texture } ); + addCube( material ); + + } ); } - var geometry = new THREE.BoxBufferGeometry( 1,1,1 ); + var geometry = new THREE.BoxBufferGeometry( 1, 1, 1 ); function addCube( material ) { diff --git a/examples/webgl_loader_json.html b/examples/webgl_loader_json.html index 0f0aba3539c72d..e37b38ae53e48b 100644 --- a/examples/webgl_loader_json.html +++ b/examples/webgl_loader_json.html @@ -51,7 +51,7 @@ } var container, stats, clock, mixer; - var camera, scene, renderer, objects; + var camera, scene, renderer; init(); animate(); @@ -85,7 +85,7 @@ // random placement in a grid - var x = ( ( i % 27 ) - 13.5 ) * 2 + THREE.Math.randFloatSpread( 1 ); + var x = ( ( i % 27 ) - 13.5 ) * 2 + THREE.Math.randFloatSpread( 1 ); var z = ( Math.floor( i / 27 ) - 13.5 ) * 2 + THREE.Math.randFloatSpread( 1 ); mesh.position.set( x, 0, z ); @@ -93,7 +93,7 @@ var s = THREE.Math.randFloat( 0.00075, 0.001 ); mesh.scale.set( s, s, s ); - mesh.rotation.y = THREE.Math.randFloat( -0.25, 0.25 ); + mesh.rotation.y = THREE.Math.randFloat( - 0.25, 0.25 ); mesh.matrixAutoUpdate = false; mesh.updateMatrix(); @@ -101,9 +101,9 @@ scene.add( mesh ); mixer.clipAction( geometry.animations[ 0 ], mesh ) - .setDuration( 1 ) // one second - .startAt( - Math.random() ) // random phase (already running) - .play(); // let's go + .setDuration( 1 ) // one second + .startAt( - Math.random() ) // random phase (already running) + .play(); // let's go } @@ -138,7 +138,7 @@ // - function onWindowResize( event ) { + function onWindowResize() { renderer.setSize( window.innerWidth, window.innerHeight ); diff --git a/examples/webgl_loader_json_claraio.html b/examples/webgl_loader_json_claraio.html index bb01b1b14af230..ca0d7eb97be2c0 100644 --- a/examples/webgl_loader_json_claraio.html +++ b/examples/webgl_loader_json_claraio.html @@ -73,8 +73,10 @@ // BEGIN Clara.io JSON loader code var objectLoader = new THREE.ObjectLoader(); - objectLoader.load("models/json/teapot-claraio.json", function ( obj ) { + objectLoader.load( "models/json/teapot-claraio.json", function ( obj ) { + scene.add( obj ); + } ); // END Clara.io JSON loader code diff --git a/examples/webgl_loader_kmz.html b/examples/webgl_loader_kmz.html index 47858d551e67d9..e55ad48c81e899 100644 --- a/examples/webgl_loader_kmz.html +++ b/examples/webgl_loader_kmz.html @@ -23,14 +23,11 @@ } - a { color: skyblue } - .button { background:#999; color:#eee; padding:0.2em 0.5em; cursor:pointer } - .highlight { background:orange; color:#fff; } + a { color: red } span { display: inline-block; width: 60px; - float: left; text-align: center; } diff --git a/examples/webgl_loader_md2.html b/examples/webgl_loader_md2.html index afc0cb45630458..10f67a6d6c7bcc 100644 --- a/examples/webgl_loader_md2.html +++ b/examples/webgl_loader_md2.html @@ -110,7 +110,7 @@ scene.add( light ); var light = new THREE.SpotLight( 0xffffff, 5, 1000 ); - light.position.set( -100, 350, 350 ); + light.position.set( - 100, 350, 350 ); light.angle = 0.5; light.penumbra = 0.5; @@ -167,13 +167,13 @@ gui = new dat.GUI(); - gui.add( playbackConfig, 'speed', 0, 2 ).onChange( function() { + gui.add( playbackConfig, 'speed', 0, 2 ).onChange( function () { character.setPlaybackRate( playbackConfig.speed ); } ); - gui.add( playbackConfig, 'wireframe', false ).onChange( function() { + gui.add( playbackConfig, 'wireframe', false ).onChange( function () { character.setWireframe( playbackConfig.wireframe ); @@ -187,7 +187,7 @@ body: "ratamahatta.md2", skins: [ "ratamahatta.png", "ctf_b.png", "ctf_r.png", "dead.png", "gearwhore.png" ], - weapons: [ [ "weapon.md2", "weapon.png" ], + weapons: [[ "weapon.md2", "weapon.png" ], [ "w_bfg.md2", "w_bfg.png" ], [ "w_blaster.md2", "w_blaster.png" ], [ "w_chaingun.md2", "w_chaingun.png" ], @@ -198,20 +198,20 @@ [ "w_rlauncher.md2", "w_rlauncher.png" ], [ "w_shotgun.md2", "w_shotgun.png" ], [ "w_sshotgun.md2", "w_sshotgun.png" ] - ] + ] }; character = new THREE.MD2Character(); character.scale = 3; - character.onLoadComplete = function() { + character.onLoadComplete = function () { setupSkinsGUI( character ); setupWeaponsGUI( character ); setupGUIAnimations( character ); - character.setAnimation( character.meshBody.geometry.animations[0].name ) + character.setAnimation( character.meshBody.geometry.animations[ 0 ].name ); }; @@ -223,14 +223,14 @@ // EVENT HANDLERS - function onWindowResize( event ) { + function onWindowResize() { SCREEN_WIDTH = window.innerWidth; SCREEN_HEIGHT = window.innerHeight; renderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT ); - camera.aspect = SCREEN_WIDTH/ SCREEN_HEIGHT; + camera.aspect = SCREEN_WIDTH / SCREEN_HEIGHT; camera.updateProjectionMatrix(); } @@ -258,9 +258,13 @@ var folder = gui.addFolder( "Weapons" ); - var generateCallback = function( index ) { + var generateCallback = function ( index ) { - return function () { character.setWeapon( index ); }; + return function () { + + character.setWeapon( index ); + + }; }; @@ -283,9 +287,13 @@ var folder = gui.addFolder( "Skins" ); - var generateCallback = function( index ) { + var generateCallback = function ( index ) { + + return function () { - return function () { character.setSkin( index ); }; + character.setSkin( index ); + + }; }; @@ -308,9 +316,13 @@ var folder = gui.addFolder( "Animations" ); - var generateCallback = function( animationClip ) { + var generateCallback = function ( animationClip ) { + + return function () { + + character.setAnimation( animationClip.name ); - return function () { character.setAnimation( animationClip.name ); }; + }; }; @@ -319,7 +331,7 @@ for ( var i = 0; i < animations.length; i ++ ) { - var clip = animations[i]; + var clip = animations[ i ]; playbackConfig[ clip.name ] = generateCallback( clip ); guiItems[ i ] = folder.add( playbackConfig, clip.name, clip.name ); diff --git a/examples/webgl_loader_md2_control.html b/examples/webgl_loader_md2_control.html index 48ca62bdcea200..0da45275a4cd4d 100644 --- a/examples/webgl_loader_md2_control.html +++ b/examples/webgl_loader_md2_control.html @@ -114,10 +114,10 @@ light.shadow.camera.near = 100; light.shadow.camera.far = 1200; - light.shadow.camera.left = -1000; + light.shadow.camera.left = - 1000; light.shadow.camera.right = 1000; light.shadow.camera.top = 350; - light.shadow.camera.bottom = -350; + light.shadow.camera.bottom = - 350; scene.add( light ); // scene.add( new THREE.CameraHelper( light.shadow.camera ) ); @@ -181,7 +181,7 @@ skins: [ "grok.jpg", "ogrobase.png", "arboshak.png", "ctf_r.png", "ctf_b.png", "darkam.png", "freedom.png", "gib.png", "gordogh.png", "igdosh.png", "khorne.png", "nabogro.png", "sharokh.png" ], - weapons: [ [ "weapon.md2", "weapon.jpg" ] ], + weapons: [[ "weapon.md2", "weapon.jpg" ]], animations: { move: "run", idle: "stand", @@ -232,7 +232,7 @@ cloneCharacter.setWeapon( 0 ); cloneCharacter.setSkin( i ); - cloneCharacter.root.position.x = ( i - nSkins/2 ) * 150; + cloneCharacter.root.position.x = ( i - nSkins / 2 ) * 150; cloneCharacter.root.position.z = j * 250; scene.add( cloneCharacter.root ); @@ -257,23 +257,23 @@ // EVENT HANDLERS - function onWindowResize( event ) { + function onWindowResize() { SCREEN_WIDTH = window.innerWidth; SCREEN_HEIGHT = window.innerHeight; renderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT ); - camera.aspect = SCREEN_WIDTH/ SCREEN_HEIGHT; + camera.aspect = SCREEN_WIDTH / SCREEN_HEIGHT; camera.updateProjectionMatrix(); } - function onKeyDown ( event ) { + function onKeyDown( event ) { event.stopPropagation(); - switch( event.keyCode ) { + switch ( event.keyCode ) { case 38: /*up*/ case 87: /*W*/ controls.moveForward = true; break; @@ -282,10 +282,10 @@ case 83: /*S*/ controls.moveBackward = true; break; case 37: /*left*/ - case 65: /*A*/ controls.moveLeft = true; break; + case 65: /*A*/ controls.moveLeft = true; break; case 39: /*right*/ - case 68: /*D*/ controls.moveRight = true; break; + case 68: /*D*/ controls.moveRight = true; break; //case 67: /*C*/ controls.crouch = true; break; //case 32: /*space*/ controls.jump = true; break; @@ -295,11 +295,11 @@ } - function onKeyUp ( event ) { + function onKeyUp( event ) { event.stopPropagation(); - switch( event.keyCode ) { + switch ( event.keyCode ) { case 38: /*up*/ case 87: /*W*/ controls.moveForward = false; break; @@ -311,7 +311,7 @@ case 65: /*A*/ controls.moveLeft = false; break; case 39: /*right*/ - case 68: /*D*/ controls.moveRight = false; break; + case 68: /*D*/ controls.moveRight = false; break; //case 67: /*C*/ controls.crouch = false; break; //case 32: /*space*/ controls.jump = false; break; diff --git a/examples/webgl_loader_mmd.html b/examples/webgl_loader_mmd.html index 9d5151bdfa12d3..27825c64cb7806 100644 --- a/examples/webgl_loader_mmd.html +++ b/examples/webgl_loader_mmd.html @@ -57,11 +57,6 @@ var mesh, camera, scene, renderer, effect; var helper, ikHelper, physicsHelper; - var mouseX = 0, mouseY = 0; - - var windowHalfX = window.innerWidth / 2; - var windowHalfY = window.innerHeight / 2; - var clock = new THREE.Clock(); init(); @@ -116,10 +111,8 @@ } - }; + } - function onError( xhr ) { - }; var modelFile = 'models/mmd/miku/miku_v2.pmd'; var vmdFiles = [ 'models/mmd/vmds/wavefile_v2.vmd' ]; @@ -151,7 +144,7 @@ initGui(); - }, onProgress, onError ); + }, onProgress, null ); var controls = new THREE.OrbitControls( camera, renderer.domElement ); @@ -193,7 +186,9 @@ var gui = new dat.GUI(); gui.add( api, 'animation' ).onChange( function () { + helper.enable( 'animation', api[ 'animation' ] ); + } ); gui.add( api, 'gradient mapping' ).onChange( function () { @@ -214,23 +209,33 @@ } ); gui.add( api, 'ik' ).onChange( function () { + helper.enable( 'ik', api[ 'ik' ] ); + } ); gui.add( api, 'outline' ).onChange( function () { + effect.enabled = api[ 'outline' ]; + } ); gui.add( api, 'physics' ).onChange( function () { + helper.enable( 'physics', api[ 'physics' ] ); + } ); gui.add( api, 'show IK bones' ).onChange( function () { + ikHelper.visible = api[ 'show IK bones' ]; + } ); gui.add( api, 'show rigid bodies' ).onChange( function () { + if ( physicsHelper !== undefined ) physicsHelper.visible = api[ 'show rigid bodies' ]; + } ); } @@ -239,9 +244,6 @@ function onWindowResize() { - windowHalfX = window.innerWidth / 2; - windowHalfY = window.innerHeight / 2; - camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); diff --git a/examples/webgl_loader_mmd_audio.html b/examples/webgl_loader_mmd_audio.html index 2350066fb42dfe..ca056c33814aab 100644 --- a/examples/webgl_loader_mmd_audio.html +++ b/examples/webgl_loader_mmd_audio.html @@ -51,18 +51,13 @@ diff --git a/examples/webgl_loader_obj.html b/examples/webgl_loader_obj.html index 471209e4ce21af..3e88ecd00630a4 100644 --- a/examples/webgl_loader_obj.html +++ b/examples/webgl_loader_obj.html @@ -111,7 +111,7 @@ } - function onError( xhr ) {} + function onError() {} var loader = new THREE.OBJLoader( manager ); diff --git a/examples/webgl_loader_obj2.html b/examples/webgl_loader_obj2.html index dc92e194a7d55d..fd0dd154ee8a54 100644 --- a/examples/webgl_loader_obj2.html +++ b/examples/webgl_loader_obj2.html @@ -83,31 +83,31 @@ 'use strict'; - var OBJLoader2Example = (function () { + var OBJLoader2Example = function ( elementToBindTo ) { + this.renderer = null; + this.canvas = elementToBindTo; + this.aspectRatio = 1; + this.recalcAspectRatio(); + + this.scene = null; + this.cameraDefaults = { + posCamera: new THREE.Vector3( 0.0, 175.0, 500.0 ), + posCameraTarget: new THREE.Vector3( 0, 0, 0 ), + near: 0.1, + far: 10000, + fov: 45 + }; + this.camera = null; + this.cameraTarget = this.cameraDefaults.posCameraTarget; - var Validator = THREE.LoaderSupport.Validator; + this.controls = null; + }; - function OBJLoader2Example( elementToBindTo ) { - this.renderer = null; - this.canvas = elementToBindTo; - this.aspectRatio = 1; - this.recalcAspectRatio(); + OBJLoader2Example.prototype = { - this.scene = null; - this.cameraDefaults = { - posCamera: new THREE.Vector3( 0.0, 175.0, 500.0 ), - posCameraTarget: new THREE.Vector3( 0, 0, 0 ), - near: 0.1, - far: 10000, - fov: 45 - }; - this.camera = null; - this.cameraTarget = this.cameraDefaults.posCameraTarget; + constructor: OBJLoader2Example, - this.controls = null; - } - - OBJLoader2Example.prototype.initGL = function () { + initGL: function () { this.renderer = new THREE.WebGLRenderer( { canvas: this.canvas, antialias: true, @@ -134,9 +134,9 @@ var helper = new THREE.GridHelper( 1200, 60, 0xFF4444, 0x404040 ); this.scene.add( helper ); - }; + }, - OBJLoader2Example.prototype.initContent = function () { + initContent: function () { var modelName = 'female02'; this._reportProgress( { detail: { text: 'Loading: ' + modelName } } ); @@ -155,49 +155,47 @@ objLoader.load( 'models/obj/female02/female02.obj', callbackOnLoad, null, null, null, false ); }; objLoader.loadMtl( 'models/obj/female02/female02.mtl', null, onLoadMtl ); - }; + }, - OBJLoader2Example.prototype._reportProgress = function( event ) { - var output = Validator.verifyInput( event.detail.text, '' ); + _reportProgress: function( event ) { + var output = THREE.LoaderSupport.Validator.verifyInput( event.detail.text, '' ); console.log( 'Progress: ' + output ); document.getElementById( 'feedback' ).innerHTML = output; - }; + }, - OBJLoader2Example.prototype.resizeDisplayGL = function () { + resizeDisplayGL: function () { this.controls.handleResize(); this.recalcAspectRatio(); this.renderer.setSize( this.canvas.offsetWidth, this.canvas.offsetHeight, false ); this.updateCamera(); - }; + }, - OBJLoader2Example.prototype.recalcAspectRatio = function () { + recalcAspectRatio: function () { this.aspectRatio = ( this.canvas.offsetHeight === 0 ) ? 1 : this.canvas.offsetWidth / this.canvas.offsetHeight; - }; + }, - OBJLoader2Example.prototype.resetCamera = function () { + resetCamera: function () { this.camera.position.copy( this.cameraDefaults.posCamera ); this.cameraTarget.copy( this.cameraDefaults.posCameraTarget ); this.updateCamera(); - }; + }, - OBJLoader2Example.prototype.updateCamera = function () { + updateCamera: function () { this.camera.aspect = this.aspectRatio; this.camera.lookAt( this.cameraTarget ); this.camera.updateProjectionMatrix(); - }; + }, - OBJLoader2Example.prototype.render = function () { + render: function () { if ( ! this.renderer.autoClear ) this.renderer.clear(); this.controls.update(); this.renderer.render( this.scene, this.camera ); - }; - - return OBJLoader2Example; + } - })(); + }; var app = new OBJLoader2Example( document.getElementById( 'example' ) ); diff --git a/examples/webgl_loader_obj2_meshspray.html b/examples/webgl_loader_obj2_meshspray.html index 243a8141ae7682..1f0ac909667060 100644 --- a/examples/webgl_loader_obj2_meshspray.html +++ b/examples/webgl_loader_obj2_meshspray.html @@ -82,40 +82,42 @@ 'use strict'; - var MeshSpray = (function () { + var MeshSpray = {}; - var Validator = THREE.LoaderSupport.Validator; + MeshSpray.Loader = function ( manager ) { + this.manager = THREE.LoaderSupport.Validator.verifyInput( manager, THREE.DefaultLoadingManager ); + this.logging = { + enabled: true, + debug: false + }; - function MeshSpray( manager ) { - this.manager = Validator.verifyInput( manager, THREE.DefaultLoadingManager ); - this.logging = { - enabled: true, - debug: false - }; + this.instanceNo = 0; + this.loaderRootNode = new THREE.Group(); - this.instanceNo = 0; - this.loaderRootNode = new THREE.Group(); + this.meshBuilder = new THREE.LoaderSupport.MeshBuilder(); + this.callbacks = new THREE.LoaderSupport.Callbacks(); + this.workerSupport = null; + }; - this.meshBuilder = new THREE.LoaderSupport.MeshBuilder(); - this.callbacks = new THREE.LoaderSupport.Callbacks(); - this.workerSupport = null; - } + MeshSpray.Loader.prototype = { + + constructor: MeshSpray.Loader, - MeshSpray.prototype.setLogging = function ( enabled, debug ) { + setLogging: function ( enabled, debug ) { this.logging.enabled = enabled === true; this.logging.debug = debug === true; this.meshBuilder.setLogging( this.logging.enabled, this.logging.debug ); - }; + }, - MeshSpray.prototype.setStreamMeshesTo = function ( streamMeshesTo ) { - this.loaderRootNode = Validator.verifyInput( streamMeshesTo, this.loaderRootNode ); - }; + setStreamMeshesTo: function ( streamMeshesTo ) { + this.loaderRootNode = THREE.LoaderSupport.Validator.verifyInput( streamMeshesTo, this.loaderRootNode ); + }, - MeshSpray.prototype.setForceWorkerDataCopy = function ( forceWorkerDataCopy ) { + setForceWorkerDataCopy: function ( forceWorkerDataCopy ) { // nothing to do here - }; + }, - MeshSpray.prototype.run = function ( prepData, workerSupportExternal ) { + run: function ( prepData, workerSupportExternal ) { if ( THREE.LoaderSupport.Validator.isValid( workerSupportExternal ) ) { @@ -157,19 +159,20 @@ if ( scope.logging.enabled ) console.timeEnd( 'MeshSpray' + scope.instanceNo ); }; - var buildCode = function ( funcBuildObject, funcBuildSingleton ) { + var buildCode = function ( codeSerializer ) { var workerCode = ''; workerCode += '/**\n'; workerCode += ' * This code was constructed by MeshSpray buildCode.\n'; workerCode += ' */\n\n'; workerCode += 'THREE.LoaderSupport = {};\n\n'; - workerCode += funcBuildObject( 'THREE.LoaderSupport.Validator', THREE.LoaderSupport.Validator ); - workerCode += funcBuildSingleton( 'Parser', Parser ); + workerCode += 'MeshSpray = {};\n\n'; + workerCode += codeSerializer.serializeObject( 'THREE.LoaderSupport.Validator', THREE.LoaderSupport.Validator ); + workerCode += codeSerializer.serializeClass( 'MeshSpray.Parser', MeshSpray.Parser ); return workerCode; }; var libs2Load = [ 'build/three.min.js' ]; - this.workerSupport.validate( buildCode, 'Parser', libs2Load, '../' ); + this.workerSupport.validate( buildCode, 'MeshSpray.Parser', libs2Load, '../../' ); this.workerSupport.setCallbacks( scopeBuilderFunc, scopeFuncComplete ); this.workerSupport.run( { @@ -191,10 +194,10 @@ } } ); - }; + }, - MeshSpray.prototype._applyPrepData = function ( prepData ) { - if ( Validator.isValid( prepData ) ) { + _applyPrepData: function ( prepData ) { + if ( THREE.LoaderSupport.Validator.isValid( prepData ) ) { this.setLogging( prepData.logging.enabled, prepData.logging.debug ); this.setStreamMeshesTo( prepData.streamMeshesTo ); @@ -202,202 +205,201 @@ this._setCallbacks( prepData.getCallbacks() ); } - }; + }, - MeshSpray.prototype._setCallbacks = function ( callbacks ) { - if ( Validator.isValid( callbacks.onProgress ) ) this.callbacks.setCallbackOnProgress( callbacks.onProgress ); - if ( Validator.isValid( callbacks.onMeshAlter ) ) this.callbacks.setCallbackOnMeshAlter( callbacks.onMeshAlter ); - if ( Validator.isValid( callbacks.onLoad ) ) this.callbacks.setCallbackOnLoad( callbacks.onLoad ); - if ( Validator.isValid( callbacks.onLoadMaterials ) ) this.callbacks.setCallbackOnLoadMaterials( callbacks.onLoadMaterials ); + _setCallbacks: function ( callbacks ) { + if ( THREE.LoaderSupport.Validator.isValid( callbacks.onProgress ) ) this.callbacks.setCallbackOnProgress( callbacks.onProgress ); + if ( THREE.LoaderSupport.Validator.isValid( callbacks.onReportError ) ) this.callbacks.setCallbackOnReportError( callbacks.onReportError ); + if ( THREE.LoaderSupport.Validator.isValid( callbacks.onMeshAlter ) ) this.callbacks.setCallbackOnMeshAlter( callbacks.onMeshAlter ); + if ( THREE.LoaderSupport.Validator.isValid( callbacks.onLoad ) ) this.callbacks.setCallbackOnLoad( callbacks.onLoad ); + if ( THREE.LoaderSupport.Validator.isValid( callbacks.onLoadMaterials ) ) this.callbacks.setCallbackOnLoadMaterials( callbacks.onLoadMaterials ); this.meshBuilder._setCallbacks( this.callbacks ); - }; + } + }; + MeshSpray.Parser = function () { + this.sizeFactor = 0.5; + this.localOffsetFactor = 1.0; + this.globalObjectCount = 0; + this.debug = false; + this.dimension = 200; + this.quantity = 1; + this.callbackMeshBuilder = null; + this.callbackProgress = null; + this.serializedMaterials = null; + this.logging = { + enabled: true, + debug: false + }; + }; - var Parser = ( function () { + MeshSpray.Parser.prototype = { - function Parser() { - this.sizeFactor = 0.5; - this.localOffsetFactor = 1.0; - this.globalObjectCount = 0; - this.debug = false; - this.dimension = 200; - this.quantity = 1; - this.callbackMeshBuilder = null; - this.callbackProgress = null; - this.serializedMaterials = null; - this.logging = { - enabled: true, - debug: false - }; - }; + constructor: MeshSpray.Parser, - Parser.prototype.setLogging = function ( enabled, debug ) { - this.logging.enabled = enabled === true; - this.logging.debug = debug === true; - }; + setLogging: function ( enabled, debug ) { + this.logging.enabled = enabled === true; + this.logging.debug = debug === true; + }, + + parse: function () { + var baseTriangle = [ 1.0, 1.0, 1.0, -1.0, 1.0, 1.0, 0.0, -1.0, 1.0 ]; + var vertices = []; + var colors = []; + var normals = []; + var uvs = []; + + var dimensionHalf = this.dimension / 2; + var fixedOffsetX; + var fixedOffsetY; + var fixedOffsetZ; + var s, t; + // complete triangle + var sizeVaring = this.sizeFactor * Math.random(); + // local coords offset + var localOffsetFactor = this.localOffsetFactor; + + for ( var i = 0; i < this.quantity; i++ ) { + sizeVaring = this.sizeFactor * Math.random(); - Parser.prototype.parse = function () { - var baseTriangle = [ 1.0, 1.0, 1.0, -1.0, 1.0, 1.0, 0.0, -1.0, 1.0 ]; - var vertices = []; - var colors = []; - var normals = []; - var uvs = []; - - var dimensionHalf = this.dimension / 2; - var fixedOffsetX; - var fixedOffsetY; - var fixedOffsetZ; - var s, t; - // complete triangle - // local coords offset - var localOffsetFactor = this.localOffsetFactor; - - for ( var i = 0; i < this.quantity; i++ ) { - var sizeVaring = this.sizeFactor * Math.random(); - - s = 2 * Math.PI * Math.random(); - t = Math.PI * Math.random(); - - fixedOffsetX = dimensionHalf * Math.random() * Math.cos( s ) * Math.sin( t ); - fixedOffsetY = dimensionHalf * Math.random() * Math.sin( s ) * Math.sin( t ); - fixedOffsetZ = dimensionHalf * Math.random() * Math.cos( t ); - for ( var j = 0; j < baseTriangle.length; j += 3 ) { - vertices.push( baseTriangle[ j ] * sizeVaring + localOffsetFactor * Math.random() + fixedOffsetX ); - vertices.push( baseTriangle[ j + 1 ] * sizeVaring + localOffsetFactor * Math.random() + fixedOffsetY ); - vertices.push( baseTriangle[ j + 2 ] * sizeVaring + localOffsetFactor * Math.random() + fixedOffsetZ ); - colors.push( Math.random() ); - colors.push( Math.random() ); - colors.push( Math.random() ); - } + s = 2 * Math.PI * Math.random(); + t = Math.PI * Math.random(); + + fixedOffsetX = dimensionHalf * Math.random() * Math.cos( s ) * Math.sin( t ); + fixedOffsetY = dimensionHalf * Math.random() * Math.sin( s ) * Math.sin( t ); + fixedOffsetZ = dimensionHalf * Math.random() * Math.cos( t ); + for ( var j = 0; j < baseTriangle.length; j += 3 ) { + vertices.push( baseTriangle[ j ] * sizeVaring + localOffsetFactor * Math.random() + fixedOffsetX ); + vertices.push( baseTriangle[ j + 1 ] * sizeVaring + localOffsetFactor * Math.random() + fixedOffsetY ); + vertices.push( baseTriangle[ j + 2 ] * sizeVaring + localOffsetFactor * Math.random() + fixedOffsetZ ); + colors.push( Math.random() ); + colors.push( Math.random() ); + colors.push( Math.random() ); } + } - var absoluteVertexCount = vertices.length; - var absoluteColorCount = colors.length; - var absoluteNormalCount = 0; - var absoluteUvCount = 0; + var absoluteVertexCount = vertices.length; + var absoluteColorCount = colors.length; + var absoluteNormalCount = 0; + var absoluteUvCount = 0; - var vertexFA = new Float32Array( absoluteVertexCount ); - var colorFA = ( absoluteColorCount > 0 ) ? new Float32Array( absoluteColorCount ) : null; - var normalFA = ( absoluteNormalCount > 0 ) ? new Float32Array( absoluteNormalCount ) : null; - var uvFA = ( absoluteUvCount > 0 ) ? new Float32Array( absoluteUvCount ) : null; + var vertexFA = new Float32Array( absoluteVertexCount ); + var colorFA = ( absoluteColorCount > 0 ) ? new Float32Array( absoluteColorCount ) : null; + var normalFA = ( absoluteNormalCount > 0 ) ? new Float32Array( absoluteNormalCount ) : null; + var uvFA = ( absoluteUvCount > 0 ) ? new Float32Array( absoluteUvCount ) : null; - vertexFA.set( vertices, 0 ); - if ( colorFA ) { + vertexFA.set( vertices, 0 ); + if ( colorFA ) { - colorFA.set( colors, 0 ); + colorFA.set( colors, 0 ); - } + } - if ( normalFA ) { + if ( normalFA ) { - normalFA.set( normals, 0 ); + normalFA.set( normals, 0 ); - } - if ( uvFA ) { + } + if ( uvFA ) { + + uvFA.set( uvs, 0 ); - uvFA.set( uvs, 0 ); + } + /* + * This demonstrates the usage of embedded three.js in the worker blob and + * the serialization of materials back to the Builder outside the worker. + * + * This is not the most effective way, but outlining possibilities + */ + var materialName = 'defaultVertexColorMaterial_double'; + var defaultVertexColorMaterialJson = this.serializedMaterials[ 'defaultVertexColorMaterial' ]; + var loader = new THREE.MaterialLoader(); + + var defaultVertexColorMaterialDouble = loader.parse( defaultVertexColorMaterialJson ); + defaultVertexColorMaterialDouble.name = materialName; + defaultVertexColorMaterialDouble.side = THREE.DoubleSide; + + var newSerializedMaterials = {}; + newSerializedMaterials[ materialName ] = defaultVertexColorMaterialDouble.toJSON(); + var payload = { + cmd: 'materialData', + materials: { + serializedMaterials: newSerializedMaterials } + }; + this.callbackMeshBuilder( payload ); - /* - * This demonstrates the usage of embedded three.js in the worker blob and - * the serialization of materials back to the Builder outside the worker. - * - * This is not the most effective way, but outlining possibilities - */ - var materialName = 'defaultVertexColorMaterial_double'; - var defaultVertexColorMaterialJson = this.serializedMaterials[ 'defaultVertexColorMaterial' ]; - var loader = new THREE.MaterialLoader(); - - var defaultVertexColorMaterialDouble = loader.parse( defaultVertexColorMaterialJson ); - defaultVertexColorMaterialDouble.name = materialName; - defaultVertexColorMaterialDouble.side = THREE.DoubleSide; - - var newSerializedMaterials = {}; - newSerializedMaterials[ materialName ] = defaultVertexColorMaterialDouble.toJSON(); - var payload = { - cmd: 'materialData', + this.globalObjectCount++; + this.callbackMeshBuilder( + { + cmd: 'meshData', + progress: { + numericalValue: 1.0 + }, + params: { + meshName: 'Gen' + this.globalObjectCount + }, materials: { - serializedMaterials: newSerializedMaterials - } - }; - this.callbackMeshBuilder( payload ); - - this.globalObjectCount++; - this.callbackMeshBuilder( - { - cmd: 'meshData', - progress: { - numericalValue: 1.0 - }, - params: { - meshName: 'Gen' + this.globalObjectCount - }, - materials: { - multiMaterial: false, - materialNames: [ materialName ], - materialGroups: [] - }, - buffers: { - vertices: vertexFA, - colors: colorFA, - normals: normalFA, - uvs: uvFA - } + multiMaterial: false, + materialNames: [ materialName ], + materialGroups: [] }, - [ vertexFA.buffer ], - colorFA !== null ? [ colorFA.buffer ] : null, - normalFA !== null ? [ normalFA.buffer ] : null, - uvFA !== null ? [ uvFA.buffer ] : null - ); - - if ( this.logging.enabled ) console.info( 'Global output object count: ' + this.globalObjectCount ); - }; - - return Parser; - })(); + buffers: { + vertices: vertexFA, + colors: colorFA, + normals: normalFA, + uvs: uvFA + } + }, + [ vertexFA.buffer ], + colorFA !== null ? [ colorFA.buffer ] : null, + normalFA !== null ? [ normalFA.buffer ] : null, + uvFA !== null ? [ uvFA.buffer ] : null + ); + if ( this.logging.enabled ) console.info( 'Global output object count: ' + this.globalObjectCount ); + }, - Parser.prototype.setSerializedMaterials = function ( serializedMaterials ) { + setSerializedMaterials: function ( serializedMaterials ) { if ( THREE.LoaderSupport.Validator.isValid( serializedMaterials ) ) { this.serializedMaterials = serializedMaterials; } - }; - - return MeshSpray; - - })(); + } + }; - var MeshSprayApp = (function () { + var MeshSprayApp = function ( elementToBindTo ) { + this.renderer = null; + this.canvas = elementToBindTo; + this.aspectRatio = 1; + this.recalcAspectRatio(); + + this.scene = null; + this.cameraDefaults = { + posCamera: new THREE.Vector3( 500.0, 500.0, 1000.0 ), + posCameraTarget: new THREE.Vector3( 0, 0, 0 ), + near: 0.1, + far: 10000, + fov: 45 + }; + this.camera = null; + this.cameraTarget = this.cameraDefaults.posCameraTarget; - function MeshSprayApp( elementToBindTo ) { - this.renderer = null; - this.canvas = elementToBindTo; - this.aspectRatio = 1; - this.recalcAspectRatio(); + this.controls = null; - this.scene = null; - this.cameraDefaults = { - posCamera: new THREE.Vector3( 500.0, 500.0, 1000.0 ), - posCameraTarget: new THREE.Vector3( 0, 0, 0 ), - near: 0.1, - far: 10000, - fov: 45 - }; - this.camera = null; - this.cameraTarget = this.cameraDefaults.posCameraTarget; + this.cube = null; + this.pivot = null; + }; - this.controls = null; + MeshSprayApp.prototype = { - this.cube = null; - this.pivot = null; - } + constructor: MeshSprayApp, - MeshSprayApp.prototype.initGL = function () { + initGL: function () { this.renderer = new THREE.WebGLRenderer( { canvas: this.canvas, antialias: true, @@ -434,13 +436,13 @@ this.pivot = new THREE.Object3D(); this.pivot.name = 'Pivot'; this.scene.add( this.pivot ); - }; + }, - MeshSprayApp.prototype.initContent = function () { + initContent: function () { var maxQueueSize = 1024; var maxWebWorkers = 4; var radius = 640; - var workerDirector = new THREE.LoaderSupport.WorkerDirector( MeshSpray ); + var workerDirector = new THREE.LoaderSupport.WorkerDirector( MeshSpray.Loader ); workerDirector.setLogging( false, false ); workerDirector.setCrossOrigin( 'anonymous' ); @@ -495,35 +497,35 @@ workerDirector.enqueueForRun( prepData ); } workerDirector.processQueue(); - }; + }, - MeshSprayApp.prototype.resizeDisplayGL = function () { + resizeDisplayGL: function () { this.controls.handleResize(); this.recalcAspectRatio(); this.renderer.setSize( this.canvas.offsetWidth, this.canvas.offsetHeight, false ); this.updateCamera(); - }; + }, - MeshSprayApp.prototype.recalcAspectRatio = function () { + recalcAspectRatio: function () { this.aspectRatio = ( this.canvas.offsetHeight === 0 ) ? 1 : this.canvas.offsetWidth / this.canvas.offsetHeight; - }; + }, - MeshSprayApp.prototype.resetCamera = function () { + resetCamera: function () { this.camera.position.copy( this.cameraDefaults.posCamera ); this.cameraTarget.copy( this.cameraDefaults.posCameraTarget ); this.updateCamera(); - }; + }, - MeshSprayApp.prototype.updateCamera = function () { + updateCamera: function () { this.camera.aspect = this.aspectRatio; this.camera.lookAt( this.cameraTarget ); this.camera.updateProjectionMatrix(); - }; + }, - MeshSprayApp.prototype.render = function () { + render: function () { if ( ! this.renderer.autoClear ) this.renderer.clear(); this.controls.update(); @@ -532,11 +534,8 @@ this.cube.rotation.y += 0.05; this.renderer.render( this.scene, this.camera ); - }; - - return MeshSprayApp; - - })(); + } + }; var app = new MeshSprayApp( document.getElementById( 'example' ) ); diff --git a/examples/webgl_loader_obj2_options.html b/examples/webgl_loader_obj2_options.html index 9708579d975e16..a74537e128f679 100644 --- a/examples/webgl_loader_obj2_options.html +++ b/examples/webgl_loader_obj2_options.html @@ -83,37 +83,37 @@ 'use strict'; - var WWOBJLoader2Example = (function () { - - var Validator = THREE.LoaderSupport.Validator; + var WWOBJLoader2Example = function ( elementToBindTo ) { + this.renderer = null; + this.canvas = elementToBindTo; + this.aspectRatio = 1; + this.recalcAspectRatio(); + + this.scene = null; + this.cameraDefaults = { + posCamera: new THREE.Vector3( 0.0, 175.0, 500.0 ), + posCameraTarget: new THREE.Vector3( 0, 0, 0 ), + near: 0.1, + far: 10000, + fov: 45 + }; + this.camera = null; + this.cameraTarget = this.cameraDefaults.posCameraTarget; - function WWOBJLoader2Example( elementToBindTo ) { - this.renderer = null; - this.canvas = elementToBindTo; - this.aspectRatio = 1; - this.recalcAspectRatio(); + this.controls = null; - this.scene = null; - this.cameraDefaults = { - posCamera: new THREE.Vector3( 0.0, 175.0, 500.0 ), - posCameraTarget: new THREE.Vector3( 0, 0, 0 ), - near: 0.1, - far: 10000, - fov: 45 - }; - this.camera = null; - this.cameraTarget = this.cameraDefaults.posCameraTarget; + this.flatShading = false; + this.doubleSide = false; - this.controls = null; + this.cube = null; + this.pivot = null; + }; - this.flatShading = false; - this.doubleSide = false; + WWOBJLoader2Example.prototype = { - this.cube = null; - this.pivot = null; - } + constructor: WWOBJLoader2Example, - WWOBJLoader2Example.prototype.initGL = function () { + initGL: function () { this.renderer = new THREE.WebGLRenderer( { canvas: this.canvas, antialias: true, @@ -150,9 +150,9 @@ this.pivot = new THREE.Object3D(); this.pivot.name = 'Pivot'; this.scene.add( this.pivot ); - }; + }, - WWOBJLoader2Example.prototype.useParseSync = function () { + useParseSync: function () { var modelName = 'female02'; this._reportProgress( { detail: { text: 'Loading: ' + modelName } } ); @@ -177,11 +177,13 @@ } ); }; - objLoader.loadMtl( 'models/obj/female02/female02.mtl', null, onLoadMtl ); - }; - + var onError = function ( event ) { + console.error( 'Error occurred: ' + event ); + }; + objLoader.loadMtl( 'models/obj/female02/female02.mtl', null, onLoadMtl, null, onError ); + }, - WWOBJLoader2Example.prototype.useParseAsync = function () { + useParseAsync: function () { var modelName = 'female02_vertex' ; this._reportProgress( { detail: { text: 'Loading: ' + modelName } } ); @@ -209,9 +211,9 @@ scope._reportProgress( { detail: { text: 'File loading complete: ' + filename } } ); } ); - }; + }, - WWOBJLoader2Example.prototype.useLoadSync = function () { + useLoadSync: function () { var modelName = 'male02'; this._reportProgress( { detail: { text: 'Loading: ' + modelName } } ); @@ -234,9 +236,9 @@ objLoader.load( 'models/obj/male02/male02.obj', callbackOnLoad, null, null, null, false ); }; objLoader.loadMtl( 'models/obj/male02/male02.mtl', null, onLoadMtl ); - }; + }, - WWOBJLoader2Example.prototype.useLoadAsync = function () { + useLoadAsync: function () { var modelName = 'WaltHead'; this._reportProgress( { detail: { text: 'Loading: ' + modelName } } ); @@ -261,11 +263,12 @@ objLoader.setMaterials( materials ); objLoader.terminateWorkerOnLoad = false; objLoader.load( 'models/obj/walt/WaltHead.obj', callbackOnLoad, null, null, null, true ); + }; objLoader.loadMtl( 'models/obj/walt/WaltHead.mtl', null, onLoadMtl ); - }; + }, - WWOBJLoader2Example.prototype.useRunSync = function () { + useRunSync: function () { var scope = this; var callbackOnLoad = function ( event ) { scope._reportProgress( { detail: { text: 'Loading complete: ' + event.detail.modelName } } ); @@ -284,9 +287,9 @@ var objLoader = new THREE.OBJLoader2(); objLoader.run( prepData ); - }; + }, - WWOBJLoader2Example.prototype.useRunAsyncMeshAlter = function () { + useRunAsyncMeshAlter: function () { var scope = this; var callbackOnLoad = function ( event ) { scope._reportProgress( { detail: { text: 'Loading complete: ' + event.detail.modelName } } ); @@ -322,45 +325,45 @@ var objLoader = new THREE.OBJLoader2(); objLoader.run( prepData ); - }; + }, - WWOBJLoader2Example.prototype.finalize = function () { + finalize: function () { this._reportProgress( { detail: { text: '' } } ); - }; + }, - WWOBJLoader2Example.prototype._reportProgress = function( event ) { - var output = Validator.verifyInput( event.detail.text, '' ); + _reportProgress: function( event ) { + var output = THREE.LoaderSupport.Validator.verifyInput( event.detail.text, '' ); console.log( 'Progress: ' + output ); document.getElementById( 'feedback' ).innerHTML = output; - }; + }, - WWOBJLoader2Example.prototype.resizeDisplayGL = function () { + resizeDisplayGL: function () { this.controls.handleResize(); this.recalcAspectRatio(); this.renderer.setSize( this.canvas.offsetWidth, this.canvas.offsetHeight, false ); this.updateCamera(); - }; + }, - WWOBJLoader2Example.prototype.recalcAspectRatio = function () { + recalcAspectRatio: function () { this.aspectRatio = ( this.canvas.offsetHeight === 0 ) ? 1 : this.canvas.offsetWidth / this.canvas.offsetHeight; - }; + }, - WWOBJLoader2Example.prototype.resetCamera = function () { + resetCamera: function () { this.camera.position.copy( this.cameraDefaults.posCamera ); this.cameraTarget.copy( this.cameraDefaults.posCameraTarget ); this.updateCamera(); - }; + }, - WWOBJLoader2Example.prototype.updateCamera = function () { + updateCamera: function () { this.camera.aspect = this.aspectRatio; this.camera.lookAt( this.cameraTarget ); this.camera.updateProjectionMatrix(); - }; + }, - WWOBJLoader2Example.prototype.render = function () { + render: function () { if ( ! this.renderer.autoClear ) this.renderer.clear(); this.controls.update(); @@ -369,9 +372,9 @@ this.cube.rotation.y += 0.05; this.renderer.render( this.scene, this.camera ); - }; + }, - WWOBJLoader2Example.prototype.alterShading = function () { + alterShading: function () { var scope = this; scope.flatShading = ! scope.flatShading; console.log( scope.flatShading ? 'Enabling flat shading' : 'Enabling smooth shading'); @@ -384,14 +387,14 @@ scope.traverseScene( object3d ); }; scope.pivot.traverse( scopeTraverse ); - }; + }, - WWOBJLoader2Example.prototype.alterDouble = function () { + alterDouble: function () { var scope = this; scope.doubleSide = ! scope.doubleSide; - console.log( scope.doubleSide ? 'Enabling DoubleSide materials' : 'Enabling FrontSide materials'); + console.log( scope.doubleSide ? 'Enabling DoubleSide materials' : 'Enabling FrontSide materials' ); - scope.traversalFunction = function ( material ) { + scope.traversalFunction = function ( material ) { material.side = scope.doubleSide ? THREE.DoubleSide : THREE.FrontSide; }; @@ -399,9 +402,9 @@ scope.traverseScene( object3d ); }; scope.pivot.traverse( scopeTraverse ); - }; + }, - WWOBJLoader2Example.prototype.traverseScene = function ( object3d ) { + traverseScene: function ( object3d ) { if ( object3d.material instanceof THREE.MultiMaterial ) { var materials = object3d.material.materials; @@ -416,11 +419,10 @@ this.traversalFunction( object3d.material ); } - }; + } - return WWOBJLoader2Example; + }; - })(); var app = new WWOBJLoader2Example( document.getElementById( 'example' ) ); @@ -492,4 +494,4 @@ - + \ No newline at end of file diff --git a/examples/webgl_loader_obj2_run_director.html b/examples/webgl_loader_obj2_run_director.html index 3089427c421568..f7a0e0f999216c 100644 --- a/examples/webgl_loader_obj2_run_director.html +++ b/examples/webgl_loader_obj2_run_director.html @@ -47,13 +47,13 @@ background-color: #000000; } #feedback { - position: absolute; - color: darkorange; - text-align: left; - bottom: 0%; - left: 0%; - width: auto; - padding: 0px 0px 4px 4px; + position: absolute; + color: darkorange; + text-align: left; + bottom: 0%; + left: 0%; + width: auto; + padding: 0px 0px 4px 4px; } #dat { user-select: none; @@ -89,46 +89,46 @@ 'use strict'; - var WWParallels = (function () { + var WWParallels = function ( elementToBindTo ) { + this.renderer = null; + this.canvas = elementToBindTo; + this.aspectRatio = 1; + this.recalcAspectRatio(); + + this.scene = null; + this.cameraDefaults = { + posCamera: new THREE.Vector3( 0.0, 175.0, 500.0 ), + posCameraTarget: new THREE.Vector3( 0, 0, 0 ), + near: 0.1, + far: 10000, + fov: 45 + }; + this.camera = null; + this.cameraTarget = this.cameraDefaults.posCameraTarget; - var Validator = THREE.LoaderSupport.Validator; + this.workerDirector = new THREE.LoaderSupport.WorkerDirector( THREE.OBJLoader2 ); + this.logging = { + enabled: false, + debug: false + }; + this.workerDirector.setLogging( this.logging.enabled, this.logging.debug ); + this.workerDirector.setCrossOrigin( 'anonymous' ); + this.workerDirector.setForceWorkerDataCopy( true ); - function WWParallels( elementToBindTo ) { - this.renderer = null; - this.canvas = elementToBindTo; - this.aspectRatio = 1; - this.recalcAspectRatio(); + this.controls = null; + this.cube = null; - this.scene = null; - this.cameraDefaults = { - posCamera: new THREE.Vector3( 0.0, 175.0, 500.0 ), - posCameraTarget: new THREE.Vector3( 0, 0, 0 ), - near: 0.1, - far: 10000, - fov: 45 - }; - this.camera = null; - this.cameraTarget = this.cameraDefaults.posCameraTarget; + this.allAssets = []; + this.feedbackArray = null; - this.workerDirector = new THREE.LoaderSupport.WorkerDirector( THREE.OBJLoader2 ); - this.logging = { - enabled: false, - debug: false - }; - this.workerDirector.setLogging( this.logging.enabled, this.logging.debug ); - this.workerDirector.setCrossOrigin( 'anonymous' ); - this.workerDirector.setForceWorkerDataCopy( true ); - - this.controls = null; - this.cube = null; + this.running = false; + }; - this.allAssets = []; - this.feedbackArray = null; + WWParallels.prototype = { - this.running = false; - } + constructor: WWParallels, - WWParallels.prototype.initGL = function () { + initGL: function () { this.renderer = new THREE.WebGLRenderer( { canvas: this.canvas, antialias: true, @@ -158,35 +158,35 @@ this.cube = new THREE.Mesh( geometry, material ); this.cube.position.set( 0, 0, 0 ); this.scene.add( this.cube ); - }; + }, - WWParallels.prototype.resizeDisplayGL = function () { + resizeDisplayGL: function () { this.controls.handleResize(); this.recalcAspectRatio(); this.renderer.setSize( this.canvas.offsetWidth, this.canvas.offsetHeight, false ); this.updateCamera(); - }; + }, - WWParallels.prototype.recalcAspectRatio = function () { + recalcAspectRatio: function () { this.aspectRatio = ( this.canvas.offsetHeight === 0 ) ? 1 : this.canvas.offsetWidth / this.canvas.offsetHeight; - }; + }, - WWParallels.prototype.resetCamera = function () { + resetCamera: function () { this.camera.position.copy( this.cameraDefaults.posCamera ); this.cameraTarget.copy( this.cameraDefaults.posCameraTarget ); this.updateCamera(); - }; + }, - WWParallels.prototype.updateCamera = function () { + updateCamera: function () { this.camera.aspect = this.aspectRatio; this.camera.lookAt( this.cameraTarget ); this.camera.updateProjectionMatrix(); - }; + }, - WWParallels.prototype.render = function () { + render: function () { if ( ! this.renderer.autoClear ) this.renderer.clear(); this.controls.update(); @@ -195,18 +195,18 @@ this.cube.rotation.y += 0.05; this.renderer.render( this.scene, this.camera ); - }; + }, - WWParallels.prototype._reportProgress = function( content ) { + _reportProgress: function( content ) { var output = content; - if ( Validator.isValid( content ) && Validator.isValid( content.detail ) ) output = content.detail.text; + if ( THREE.LoaderSupport.Validator.isValid( content ) && THREE.LoaderSupport.Validator.isValid( content.detail ) ) output = content.detail.text; - output = Validator.verifyInput( output, '' ); + output = THREE.LoaderSupport.Validator.verifyInput( output, '' ); if ( this.logging.enabled ) console.info( 'Progress:\n\t' + output.replace(/\/g, '\n\t' ) ); document.getElementById( 'feedback' ).innerHTML = output; - }; + }, - WWParallels.prototype.enqueueAllAssests = function ( maxQueueSize, maxWebWorkers, streamMeshes ) { + enqueueAllAssests: function ( maxQueueSize, maxWebWorkers, streamMeshes ) { if ( this.running ) { return; @@ -257,12 +257,20 @@ } }; + var callbackReportError = function ( supportDesc, errorMessage ) { + + console.error( 'LoaderWorkerDirector reported an error: ' ); + console.error( errorMessage ); + return true; + + }; + var callbackMeshAlter = function ( event, override ) { - if ( ! Validator.isValid( override ) ) override = new THREE.LoaderSupport.LoadedMeshUserOverride( false, false ); + if ( ! THREE.LoaderSupport.Validator.isValid( override ) ) override = new THREE.LoaderSupport.LoadedMeshUserOverride( false, false ); var material = event.detail.material; var meshName = event.detail.meshName; - if ( Validator.isValid( material ) && material.name === 'defaultMaterial' || meshName === 'Mesh_Mesh_head_geo.001_lambert2SG.001' ) { + if ( THREE.LoaderSupport.Validator.isValid( material ) && material.name === 'defaultMaterial' || meshName === 'Mesh_Mesh_head_geo.001_lambert2SG.001' ) { var materialOverride = material; materialOverride.color = new THREE.Color( Math.random(), Math.random(), Math.random() ); @@ -283,6 +291,7 @@ var callbacks = new THREE.LoaderSupport.Callbacks(); callbacks.setCallbackOnProgress( callbackReportProgress ); + callbacks.setCallbackOnReportError( callbackReportError ); callbacks.setCallbackOnLoad( callbackOnLoad ); callbacks.setCallbackOnMeshAlter( callbackMeshAlter ); callbacks.setCallbackOnLoadMaterials( callbackOnLoadMaterials ); @@ -290,10 +299,10 @@ this.workerDirector.prepareWorkers( callbacks, maxQueueSize, maxWebWorkers ); if ( this.logging.enabled ) console.info( 'Configuring WWManager with queue size ' + this.workerDirector.getMaxQueueSize() + ' and ' + this.workerDirector.getMaxWebWorkers() + ' workers.' ); - var modelPrepDatas = []; var prepData; + var modelPrepDatas = []; prepData = new THREE.LoaderSupport.PrepData( 'male02' ); - prepData.addResource( new THREE.LoaderSupport.ResourceDescriptor( 'models/obj/male02/male02.obj', 'OBJ ') ); + prepData.addResource( new THREE.LoaderSupport.ResourceDescriptor( 'models/obj/male02/male02.obj', 'OBJ ' ) ); prepData.addResource( new THREE.LoaderSupport.ResourceDescriptor( 'models/obj/male02/male02.mtl', 'MTL' ) ); prepData.setLogging( false, false ); modelPrepDatas.push( prepData ); @@ -334,7 +343,7 @@ modelPrepData = modelPrepDatas[ modelPrepDataIndex ]; modelPrepData.useAsync = true; - scale = Validator.verifyInput( modelPrepData.scale, 0 ); + scale = THREE.LoaderSupport.Validator.verifyInput( modelPrepData.scale, 0 ); modelPrepData = modelPrepData.clone(); pivot = new THREE.Object3D(); @@ -350,9 +359,9 @@ this.workerDirector.enqueueForRun( modelPrepData ); } this.workerDirector.processQueue(); - }; + }, - WWParallels.prototype.clearAllAssests = function () { + clearAllAssests: function () { var storedObject3d; for ( var asset in this.allAssets ) { @@ -381,7 +390,7 @@ } if ( object3d.hasOwnProperty( 'texture' ) ) object3d.texture.dispose(); }; - if ( Validator.isValid( storedObject3d ) ) { + if ( THREE.LoaderSupport.Validator.isValid( storedObject3d ) ) { if ( this.pivot !== storedObject3d ) scope.scene.remove( storedObject3d ); storedObject3d.traverse( remover ); @@ -390,14 +399,14 @@ } } this.allAssets = []; - }; + }, - WWParallels.prototype.terminateManager = function () { + terminateManager: function () { this.workerDirector.tearDown(); this.running = false; - }; + }, - WWParallels.prototype.terminateManagerAndClearScene = function () { + terminateManagerAndClearScene: function () { var scope = this; var scopedClearAllAssests = function (){ scope.clearAllAssests(); @@ -412,11 +421,9 @@ } this.running = false; - }; - - return WWParallels; + } - })(); + }; var app = new WWParallels( document.getElementById( 'example' ) ); diff --git a/examples/webgl_loader_obj_mtl.html b/examples/webgl_loader_obj_mtl.html index a07c933f2c114e..42cddba4e6f50a 100644 --- a/examples/webgl_loader_obj_mtl.html +++ b/examples/webgl_loader_obj_mtl.html @@ -86,7 +86,7 @@ }; - var onError = function ( xhr ) { }; + var onError = function () { }; THREE.Loader.Handlers.add( /\.dds$/i, new THREE.DDSLoader() ); diff --git a/examples/webgl_loader_pcd.html b/examples/webgl_loader_pcd.html index aad136dbd61345..d752f0a8b12242 100644 --- a/examples/webgl_loader_pcd.html +++ b/examples/webgl_loader_pcd.html @@ -30,7 +30,6 @@ span { display: inline-block; width: 60px; - float: left; text-align: center; } @@ -72,8 +71,8 @@ camera = new THREE.PerspectiveCamera( 15, window.innerWidth / window.innerHeight, 0.01, 40 ); camera.position.x = 0.4; - camera.position.z = -2; - camera.up.set(0,0,1); + camera.position.z = - 2; + camera.up.set( 0, 0, 1 ); controls = new THREE.TrackballControls( camera ); @@ -102,7 +101,7 @@ scene.add( mesh ); var center = mesh.geometry.boundingSphere.center; - controls.target.set( center.x, center.y, center.z); + controls.target.set( center.x, center.y, center.z ); controls.update(); } ); @@ -116,7 +115,7 @@ window.addEventListener( 'resize', onWindowResize, false ); - window.addEventListener('keypress', keyboard); + window.addEventListener( 'keypress', keyboard ); } @@ -129,24 +128,24 @@ } - function keyboard ( ev ) { + function keyboard( ev ) { var ZaghettoMesh = scene.getObjectByName( 'Zaghetto.pcd' ); switch ( ev.key || String.fromCharCode( ev.keyCode || ev.charCode ) ) { case '+': - ZaghettoMesh.material.size*=1.2; + ZaghettoMesh.material.size *= 1.2; ZaghettoMesh.material.needsUpdate = true; break; case '-': - ZaghettoMesh.material.size/=1.2; + ZaghettoMesh.material.size /= 1.2; ZaghettoMesh.material.needsUpdate = true; break; case 'c': - ZaghettoMesh.material.color.setHex(Math.random()*0xffffff); + ZaghettoMesh.material.color.setHex( Math.random() * 0xffffff ); ZaghettoMesh.material.needsUpdate = true; break; diff --git a/examples/webgl_loader_pdb.html b/examples/webgl_loader_pdb.html index 5af2b9cdb700ca..102717e9e12b13 100644 --- a/examples/webgl_loader_pdb.html +++ b/examples/webgl_loader_pdb.html @@ -121,7 +121,7 @@ scene.add( light ); var light = new THREE.DirectionalLight( 0xffffff, 0.5 ); - light.position.set( -1, -1, 1 ); + light.position.set( - 1, - 1, 1 ); scene.add( light ); root = new THREE.Group(); @@ -162,11 +162,11 @@ function generateButtonCallback( url ) { - return function ( event ) { + return function () { loadMolecule( url ); - } + }; } @@ -178,7 +178,7 @@ button.innerHTML = m; menu.appendChild( button ); - var url = 'models/molecules/' + MOLECULES[ m ]; + var url = 'models/molecules/' + MOLECULES[ m ]; button.addEventListener( 'click', generateButtonCallback( url ), false ); diff --git a/examples/webgl_loader_ply.html b/examples/webgl_loader_ply.html index 7e96bb6ed7b1fb..34e7ffa0c34929 100644 --- a/examples/webgl_loader_ply.html +++ b/examples/webgl_loader_ply.html @@ -30,7 +30,6 @@ span { display: inline-block; width: 60px; - float: left; text-align: center; } @@ -72,7 +71,7 @@ camera = new THREE.PerspectiveCamera( 35, window.innerWidth / window.innerHeight, 1, 15 ); camera.position.set( 3, 0.15, 3 ); - cameraTarget = new THREE.Vector3( 0, -0.1, 0 ); + cameraTarget = new THREE.Vector3( 0, - 0.1, 0 ); scene = new THREE.Scene(); scene.background = new THREE.Color( 0x72645b ); @@ -85,8 +84,8 @@ new THREE.PlaneBufferGeometry( 40, 40 ), new THREE.MeshPhongMaterial( { color: 0x999999, specular: 0x101010 } ) ); - plane.rotation.x = -Math.PI/2; - plane.position.y = -0.5; + plane.rotation.x = - Math.PI / 2; + plane.position.y = - 0.5; scene.add( plane ); plane.receiveShadow = true; @@ -103,7 +102,7 @@ var mesh = new THREE.Mesh( geometry, material ); mesh.position.y = - 0.2; - mesh.position.z = 0.3; + mesh.position.z = 0.3; mesh.rotation.x = - Math.PI / 2; mesh.scale.multiplyScalar( 0.001 ); @@ -138,7 +137,7 @@ scene.add( new THREE.HemisphereLight( 0x443333, 0x111122 ) ); addShadowedLight( 1, 1, 1, 0xffffff, 1.35 ); - addShadowedLight( 0.5, 1, -1, 0xffaa00, 1 ); + addShadowedLight( 0.5, 1, - 1, 0xffaa00, 1 ); // renderer @@ -173,10 +172,10 @@ directionalLight.castShadow = true; var d = 1; - directionalLight.shadow.camera.left = -d; + directionalLight.shadow.camera.left = - d; directionalLight.shadow.camera.right = d; directionalLight.shadow.camera.top = d; - directionalLight.shadow.camera.bottom = -d; + directionalLight.shadow.camera.bottom = - d; directionalLight.shadow.camera.near = 1; directionalLight.shadow.camera.far = 4; @@ -184,7 +183,7 @@ directionalLight.shadow.mapSize.width = 1024; directionalLight.shadow.mapSize.height = 1024; - directionalLight.shadow.bias = -0.001; + directionalLight.shadow.bias = - 0.001; } diff --git a/examples/webgl_loader_prwm.html b/examples/webgl_loader_prwm.html index 9955e93e90dbaf..69a9ebe0158a31 100644 --- a/examples/webgl_loader_prwm.html +++ b/examples/webgl_loader_prwm.html @@ -136,7 +136,7 @@ }; - var onError = function ( xhr ) { + var onError = function () { busy = false; diff --git a/examples/webgl_loader_sea3d.html b/examples/webgl_loader_sea3d.html index 9cb98ed201976d..d98f6744152c68 100644 --- a/examples/webgl_loader_sea3d.html +++ b/examples/webgl_loader_sea3d.html @@ -63,7 +63,7 @@ } - console.log("Visit https://github.com/sunag/sea3d to all codes and builds under development."); + console.log( "Visit https://github.com/sunag/sea3d to all codes and builds under development." ); var container, stats; @@ -81,13 +81,13 @@ loader = new THREE.SEA3D( { - autoPlay : true, // Auto play animations - container : scene, // Container to add models - progressive : true // Progressive download + autoPlay: true, // Auto play animations + container: scene, // Container to add models + progressive: true // Progressive download } ); - loader.onComplete = function( e ) { + loader.onComplete = function () { // Get camera from SEA3D Studio // use loader.get... to get others objects @@ -96,7 +96,7 @@ //camera.position.copy( cam.position ); //camera.rotation.copy( cam.rotation ); - console.log("SEA3D asset loaded!"); + console.log( "SEA3D asset loaded!" ); }; diff --git a/examples/webgl_loader_sea3d_hierarchy.html b/examples/webgl_loader_sea3d_hierarchy.html index 692c0a98a85178..f997ba6876c0c5 100644 --- a/examples/webgl_loader_sea3d_hierarchy.html +++ b/examples/webgl_loader_sea3d_hierarchy.html @@ -48,7 +48,7 @@ - + @@ -86,7 +86,7 @@ } ); - loader.onComplete = function ( e ) { + loader.onComplete = function () { // play all animations diff --git a/examples/webgl_loader_sea3d_keyframe.html b/examples/webgl_loader_sea3d_keyframe.html index bf1530fa971832..28a31ff4cf1d6c 100644 --- a/examples/webgl_loader_sea3d_keyframe.html +++ b/examples/webgl_loader_sea3d_keyframe.html @@ -83,7 +83,7 @@ } ); - loader.onComplete = function ( e ) { + loader.onComplete = function () { // Get the first camera from 3ds Max // use loader.get... to get others objects @@ -211,13 +211,13 @@ } - function onMouseClick( e ) { + function onMouseClick() { // 0 at 3 demos switch ( demoAt = ++ demoAt % 4 ) { - // play all animation to sequence "crash#1" + // play all animation to sequence "crash#1" case 0: diff --git a/examples/webgl_loader_sea3d_morph.html b/examples/webgl_loader_sea3d_morph.html index f0f297af1b03fc..7a72339a70b777 100644 --- a/examples/webgl_loader_sea3d_morph.html +++ b/examples/webgl_loader_sea3d_morph.html @@ -84,7 +84,7 @@ } ); - loader.onComplete = function ( e ) { + loader.onComplete = function () { // Get the first camera from SEA3D Studio // use loader.get... to get others objects diff --git a/examples/webgl_loader_sea3d_physics.html b/examples/webgl_loader_sea3d_physics.html index fcad86c187be2d..cf17a3cb44328d 100644 --- a/examples/webgl_loader_sea3d_physics.html +++ b/examples/webgl_loader_sea3d_physics.html @@ -91,7 +91,7 @@ } ); - loader.onComplete = function ( e ) { + loader.onComplete = function () { new THREE.OrbitControls( camera ); diff --git a/examples/webgl_loader_sea3d_skinning.html b/examples/webgl_loader_sea3d_skinning.html index 01cd8f9a452918..f7e5d284ca0a20 100644 --- a/examples/webgl_loader_sea3d_skinning.html +++ b/examples/webgl_loader_sea3d_skinning.html @@ -86,7 +86,7 @@ } ); - loader.onComplete = function ( e ) { + loader.onComplete = function () { // Get the first camera from SEA3D Studio // use loader.get... to get others objects @@ -95,7 +95,7 @@ camera.position.copy( cam.position ); camera.rotation.copy( cam.rotation ); - controls = new THREE.OrbitControls( camera ); + var controls = new THREE.OrbitControls( camera ); // get meshes player = loader.getMesh( "Player" ); diff --git a/examples/webgl_loader_sea3d_sound.html b/examples/webgl_loader_sea3d_sound.html index 8c94ec0f1be6e6..090be3ae1cd859 100644 --- a/examples/webgl_loader_sea3d_sound.html +++ b/examples/webgl_loader_sea3d_sound.html @@ -135,7 +135,7 @@ } ); - loader.onComplete = function ( e ) { + loader.onComplete = function () { audioListener = loader.audioListener; @@ -183,11 +183,10 @@ var element = document.body; - var pointerlockchange = function ( event ) { + var pointerlockchange = function () { if ( document.pointerLockElement === element || document.mozPointerLockElement === element || document.webkitPointerLockElement === element ) { - controlsEnabled = true; controls.enabled = true; blocker.style.display = 'none'; @@ -206,7 +205,7 @@ }; - var pointerlockerror = function ( event ) { + var pointerlockerror = function () { instructions.style.display = ''; @@ -221,7 +220,7 @@ document.addEventListener( 'mozpointerlockerror', pointerlockerror, false ); document.addEventListener( 'webkitpointerlockerror', pointerlockerror, false ); - instructions.addEventListener( 'click', function ( event ) { + instructions.addEventListener( 'click', function () { instructions.style.display = 'none'; diff --git a/examples/webgl_loader_stl.html b/examples/webgl_loader_stl.html index e8104ec951f241..43fc4319e1f212 100644 --- a/examples/webgl_loader_stl.html +++ b/examples/webgl_loader_stl.html @@ -30,7 +30,6 @@ span { display: inline-block; width: 60px; - float: left; text-align: center; } @@ -72,7 +71,7 @@ camera = new THREE.PerspectiveCamera( 35, window.innerWidth / window.innerHeight, 1, 15 ); camera.position.set( 3, 0.15, 3 ); - cameraTarget = new THREE.Vector3( 0, -0.25, 0 ); + cameraTarget = new THREE.Vector3( 0, - 0.25, 0 ); scene = new THREE.Scene(); scene.background = new THREE.Color( 0x72645b ); @@ -85,8 +84,8 @@ new THREE.PlaneBufferGeometry( 40, 40 ), new THREE.MeshPhongMaterial( { color: 0x999999, specular: 0x101010 } ) ); - plane.rotation.x = -Math.PI/2; - plane.position.y = -0.5; + plane.rotation.x = - Math.PI / 2; + plane.position.y = - 0.5; scene.add( plane ); plane.receiveShadow = true; @@ -150,8 +149,10 @@ loader.load( './models/stl/binary/colored.stl', function ( geometry ) { var meshMaterial = material; - if (geometry.hasColors) { - meshMaterial = new THREE.MeshPhongMaterial({ opacity: geometry.alpha, vertexColors: THREE.VertexColors }); + if ( geometry.hasColors ) { + + meshMaterial = new THREE.MeshPhongMaterial( { opacity: geometry.alpha, vertexColors: THREE.VertexColors } ); + } var mesh = new THREE.Mesh( geometry, meshMaterial ); @@ -173,7 +174,7 @@ scene.add( new THREE.HemisphereLight( 0x443333, 0x111122 ) ); addShadowedLight( 1, 1, 1, 0xffffff, 1.35 ); - addShadowedLight( 0.5, 1, -1, 0xffaa00, 1 ); + addShadowedLight( 0.5, 1, - 1, 0xffaa00, 1 ); // renderer renderer = new THREE.WebGLRenderer( { antialias: true } ); @@ -207,10 +208,10 @@ directionalLight.castShadow = true; var d = 1; - directionalLight.shadow.camera.left = -d; + directionalLight.shadow.camera.left = - d; directionalLight.shadow.camera.right = d; directionalLight.shadow.camera.top = d; - directionalLight.shadow.camera.bottom = -d; + directionalLight.shadow.camera.bottom = - d; directionalLight.shadow.camera.near = 1; directionalLight.shadow.camera.far = 4; @@ -218,7 +219,7 @@ directionalLight.shadow.mapSize.width = 1024; directionalLight.shadow.mapSize.height = 1024; - directionalLight.shadow.bias = -0.002; + directionalLight.shadow.bias = - 0.002; } diff --git a/examples/webgl_loader_svg.html b/examples/webgl_loader_svg.html index 706894375d5c11..310eee2f87ae15 100644 --- a/examples/webgl_loader_svg.html +++ b/examples/webgl_loader_svg.html @@ -79,7 +79,7 @@ group.scale.multiplyScalar( 0.25 ); group.position.x = - 70; group.position.y = 70; - group.scale.y *= -1; + group.scale.y *= - 1; for ( var i = 0; i < paths.length; i ++ ) { @@ -136,7 +136,7 @@ var group = scene.children[ 1 ]; group.traverse( function ( child ) { - if ( child.material ) child.material.wireframe = !child.material.wireframe; + if ( child.material ) child.material.wireframe = ! child.material.wireframe; } ); diff --git a/examples/webgl_loader_texture_dds.html b/examples/webgl_loader_texture_dds.html index 72d25b33fca1be..41d23ddafb6f3f 100644 --- a/examples/webgl_loader_texture_dds.html +++ b/examples/webgl_loader_texture_dds.html @@ -92,24 +92,30 @@ map6.anisotropy = 4; var cubemap1 = loader.load( 'textures/compressed/Mountains.dds', function ( texture ) { + texture.magFilter = THREE.LinearFilter; texture.minFilter = THREE.LinearFilter; texture.mapping = THREE.CubeReflectionMapping; material1.needsUpdate = true; + } ); var cubemap2 = loader.load( 'textures/compressed/Mountains_argb_mip.dds', function ( texture ) { + texture.magFilter = THREE.LinearFilter; texture.minFilter = THREE.LinearFilter; texture.mapping = THREE.CubeReflectionMapping; material5.needsUpdate = true; + } ); var cubemap3 = loader.load( 'textures/compressed/Mountains_argb_nomip.dds', function ( texture ) { + texture.magFilter = THREE.LinearFilter; texture.minFilter = THREE.LinearFilter; texture.mapping = THREE.CubeReflectionMapping; material6.needsUpdate = true; + } ); var material1 = new THREE.MeshBasicMaterial( { map: map1, envMap: cubemap1 } ); @@ -123,25 +129,25 @@ var mesh = new THREE.Mesh( new THREE.TorusBufferGeometry( 100, 50, 32, 16 ), material1 ); - mesh.position.x = -600; - mesh.position.y = -200; + mesh.position.x = - 600; + mesh.position.y = - 200; scene.add( mesh ); meshes.push( mesh ); mesh = new THREE.Mesh( geometry, material2 ); - mesh.position.x = -200; - mesh.position.y = -200; + mesh.position.x = - 200; + mesh.position.y = - 200; scene.add( mesh ); meshes.push( mesh ); mesh = new THREE.Mesh( geometry, material3 ); - mesh.position.x = -200; + mesh.position.x = - 200; mesh.position.y = 200; scene.add( mesh ); meshes.push( mesh ); mesh = new THREE.Mesh( geometry, material4 ); - mesh.position.x = -600; + mesh.position.x = - 600; mesh.position.y = 200; scene.add( mesh ); meshes.push( mesh ); @@ -154,13 +160,13 @@ mesh = new THREE.Mesh( geometry, material6 ); mesh.position.x = 200; - mesh.position.y = -200; + mesh.position.y = - 200; scene.add( mesh ); meshes.push( mesh ); mesh = new THREE.Mesh( geometry, material7 ); mesh.position.x = 600; - mesh.position.y = -200; + mesh.position.y = - 200; scene.add( mesh ); meshes.push( mesh ); @@ -170,7 +176,6 @@ scene.add( mesh ); meshes.push( mesh ); - renderer = new THREE.WebGLRenderer( { antialias: true } ); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); diff --git a/examples/webgl_loader_texture_exr.html b/examples/webgl_loader_texture_exr.html index 1649330aec6330..3c116d8dd2e98b 100644 --- a/examples/webgl_loader_texture_exr.html +++ b/examples/webgl_loader_texture_exr.html @@ -81,7 +81,8 @@ //console.log( textureData ); //console.log( texture ); - texture.generateMipmaps = true; + texture.minFilter = THREE.NearestFilter; + texture.magFilter = THREE.NearestFilter; // these setting are currently set correctly by default //texture.encoding = THREE.LinearEncoding; diff --git a/examples/webgl_loader_texture_hdr.html b/examples/webgl_loader_texture_hdr.html index 055ef58751dd49..b2b3a4432d0f19 100644 --- a/examples/webgl_loader_texture_hdr.html +++ b/examples/webgl_loader_texture_hdr.html @@ -76,7 +76,7 @@ camera = new THREE.OrthographicCamera( - aspect, aspect, 1, - 1, 0, 1 ); - new THREE.RGBELoader().load( 'textures/miranda_uncropped.hdr', function( texture, textureData ) { + new THREE.RGBELoader().load( 'textures/miranda_uncropped.hdr', function ( texture, textureData ) { //console.log( textureData ); //console.log( texture ); diff --git a/examples/webgl_loader_texture_pvrtc.html b/examples/webgl_loader_texture_pvrtc.html index 82ca00058f6887..d2670fe14b42b3 100644 --- a/examples/webgl_loader_texture_pvrtc.html +++ b/examples/webgl_loader_texture_pvrtc.html @@ -62,7 +62,7 @@ // - var onCube1Loaded = function( texture ){ + var onCube1Loaded = function ( texture ) { texture.magFilter = THREE.LinearFilter; texture.minFilter = THREE.LinearFilter; @@ -71,7 +71,7 @@ }; - var onCube2Loaded = function( texture ){ + var onCube2Loaded = function ( texture ) { texture.magFilter = THREE.LinearFilter; // texture.minFilter = THREE.LinearMipMapNearestFilter; @@ -85,25 +85,25 @@ var loader = new THREE.PVRLoader(); - var disturb_4bpp_rgb = loader.load( 'textures/compressed/disturb_4bpp_rgb.pvr'); - var disturb_4bpp_rgb_v3 = loader.load( 'textures/compressed/disturb_4bpp_rgb_v3.pvr'); - var disturb_4bpp_rgb_mips = loader.load( 'textures/compressed/disturb_4bpp_rgb_mips.pvr'); - var disturb_2bpp_rgb = loader.load( 'textures/compressed/disturb_2bpp_rgb.pvr'); - var flare_4bpp_rgba = loader.load( 'textures/compressed/flare_4bpp_rgba.pvr'); - var flare_2bpp_rgba = loader.load( 'textures/compressed/flare_2bpp_rgba.pvr'); - var park3_cube_nomip_4bpp_rgb = loader.load( 'textures/compressed/park3_cube_nomip_4bpp_rgb.pvr', onCube1Loaded ); - var park3_cube_mip_2bpp_rgb_v3 = loader.load( 'textures/compressed/park3_cube_mip_2bpp_rgb_v3.pvr', onCube2Loaded ); + var disturb_4bpp_rgb = loader.load( 'textures/compressed/disturb_4bpp_rgb.pvr' ); + var disturb_4bpp_rgb_v3 = loader.load( 'textures/compressed/disturb_4bpp_rgb_v3.pvr' ); + var disturb_4bpp_rgb_mips = loader.load( 'textures/compressed/disturb_4bpp_rgb_mips.pvr' ); + var disturb_2bpp_rgb = loader.load( 'textures/compressed/disturb_2bpp_rgb.pvr' ); + var flare_4bpp_rgba = loader.load( 'textures/compressed/flare_4bpp_rgba.pvr' ); + var flare_2bpp_rgba = loader.load( 'textures/compressed/flare_2bpp_rgba.pvr' ); + var park3_cube_nomip_4bpp_rgb = loader.load( 'textures/compressed/park3_cube_nomip_4bpp_rgb.pvr', onCube1Loaded ); + var park3_cube_mip_2bpp_rgb_v3 = loader.load( 'textures/compressed/park3_cube_mip_2bpp_rgb_v3.pvr', onCube2Loaded ); disturb_2bpp_rgb.minFilter = disturb_2bpp_rgb.magFilter = - flare_4bpp_rgba.minFilter = - flare_4bpp_rgba.magFilter = + flare_4bpp_rgba.minFilter = + flare_4bpp_rgba.magFilter = disturb_4bpp_rgb.minFilter = disturb_4bpp_rgb.magFilter = disturb_4bpp_rgb_v3.minFilter = disturb_4bpp_rgb_v3.magFilter = - flare_2bpp_rgba.minFilter = - flare_2bpp_rgba.magFilter = THREE.LinearFilter; + flare_2bpp_rgba.minFilter = + flare_2bpp_rgba.magFilter = THREE.LinearFilter; var material1 = new THREE.MeshBasicMaterial( { map: disturb_4bpp_rgb } ); var material2 = new THREE.MeshBasicMaterial( { map: disturb_4bpp_rgb_mips } ); @@ -118,13 +118,13 @@ // var mesh = new THREE.Mesh( geometry, material1 ); - mesh.position.x = -500; + mesh.position.x = - 500; mesh.position.y = 200; scene.add( mesh ); meshes.push( mesh ); mesh = new THREE.Mesh( geometry, material2 ); - mesh.position.x = -166; + mesh.position.x = - 166; mesh.position.y = 200; scene.add( mesh ); meshes.push( mesh ); @@ -142,28 +142,28 @@ meshes.push( mesh ); mesh = new THREE.Mesh( geometry, material4 ); - mesh.position.x = -500; - mesh.position.y = -200; + mesh.position.x = - 500; + mesh.position.y = - 200; scene.add( mesh ); meshes.push( mesh ); mesh = new THREE.Mesh( geometry, material5 ); - mesh.position.x = -166; - mesh.position.y = -200; + mesh.position.x = - 166; + mesh.position.y = - 200; scene.add( mesh ); meshes.push( mesh ); - var torus = new THREE.TorusBufferGeometry( 100, 50, 32, 24 ); + var torus = new THREE.TorusBufferGeometry( 100, 50, 32, 24 ); mesh = new THREE.Mesh( torus, material6 ); mesh.position.x = 166; - mesh.position.y = -200; + mesh.position.y = - 200; scene.add( mesh ); meshes.push( mesh ); mesh = new THREE.Mesh( torus, material8 ); mesh.position.x = 500; - mesh.position.y = -200; + mesh.position.y = - 200; scene.add( mesh ); meshes.push( mesh ); diff --git a/examples/webgl_loader_ttf.html b/examples/webgl_loader_ttf.html index 2944ff54eae961..01f159fdef8626 100644 --- a/examples/webgl_loader_ttf.html +++ b/examples/webgl_loader_ttf.html @@ -47,7 +47,7 @@ } - var container, color; + var container; var camera, cameraTarget, scene, renderer; var group, textMesh1, textMesh2, textGeo, material; var firstLetter = true; @@ -58,8 +58,7 @@ hover = 30, curveSegments = 4, bevelThickness = 2, - bevelSize = 1.5, - bevelSegments = 3; + bevelSize = 1.5; var font = null; var mirror = true; @@ -71,7 +70,6 @@ var mouseXOnMouseDown = 0; var windowHalfX = window.innerWidth / 2; - var windowHalfY = window.innerHeight / 2; init(); animate(); @@ -115,8 +113,10 @@ var loader = new THREE.TTFLoader(); loader.load( 'fonts/ttf/kenpixel.ttf', function ( json ) { + font = new THREE.Font( json ); createText(); + } ); var plane = new THREE.Mesh( @@ -149,7 +149,6 @@ function onWindowResize() { windowHalfX = window.innerWidth / 2; - windowHalfY = window.innerHeight / 2; camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); @@ -219,7 +218,7 @@ bevelSize: bevelSize, bevelEnabled: true - }); + } ); textGeo.computeBoundingBox(); textGeo.computeVertexNormals(); @@ -242,7 +241,7 @@ textMesh2 = new THREE.Mesh( textGeo, material ); textMesh2.position.x = centerOffset; - textMesh2.position.y = -hover; + textMesh2.position.y = - hover; textMesh2.position.z = height; textMesh2.rotation.x = Math.PI; @@ -259,7 +258,7 @@ group.remove( textMesh1 ); if ( mirror ) group.remove( textMesh2 ); - if ( !text ) return; + if ( ! text ) return; createText(); @@ -286,7 +285,7 @@ } - function onDocumentMouseUp( event ) { + function onDocumentMouseUp() { document.removeEventListener( 'mousemove', onDocumentMouseMove, false ); document.removeEventListener( 'mouseup', onDocumentMouseUp, false ); @@ -294,7 +293,7 @@ } - function onDocumentMouseOut( event ) { + function onDocumentMouseOut() { document.removeEventListener( 'mousemove', onDocumentMouseMove, false ); document.removeEventListener( 'mouseup', onDocumentMouseUp, false ); diff --git a/examples/webgl_loader_vtk.html b/examples/webgl_loader_vtk.html index c1a71135d4a9fe..d94a44ec60b83d 100644 --- a/examples/webgl_loader_vtk.html +++ b/examples/webgl_loader_vtk.html @@ -54,8 +54,6 @@ var camera, controls, scene, renderer; - var cross; - init(); animate(); diff --git a/examples/webgl_loader_x.html b/examples/webgl_loader_x.html index 2cb44fbd82a23b..4621eeb97f2ecd 100644 --- a/examples/webgl_loader_x.html +++ b/examples/webgl_loader_x.html @@ -53,7 +53,7 @@ mech 1 @@ -81,7 +81,6 @@ var container, stats, controls; var camera, scene, renderer; var clock = new THREE.Clock(); - var mixers = []; var manager = null; var skeletonHelper = null; @@ -102,7 +101,7 @@ }; - var onError = function ( xhr ) {}; + var onError = function () {}; function init() { @@ -214,7 +213,7 @@ for ( var i = 0; i < animates.length; i ++ ) { - animates[ i ].update( delta * 1000 ); + animates[ i ].update( delta * 1000 ); } diff --git a/examples/webgl_lod.html b/examples/webgl_lod.html index 31dfd0c75ee722..225aec009eb1f4 100644 --- a/examples/webgl_lod.html +++ b/examples/webgl_lod.html @@ -51,12 +51,10 @@ } - var container, stats; + var container; var camera, scene, renderer; - var geometry, objects; - var controls, clock = new THREE.Clock(); init(); @@ -115,7 +113,7 @@ } lod.position.x = 10000 * ( 0.5 - Math.random() ); - lod.position.y = 7500 * ( 0.5 - Math.random() ); + lod.position.y = 7500 * ( 0.5 - Math.random() ); lod.position.z = 10000 * ( 0.5 - Math.random() ); lod.updateMatrix(); lod.matrixAutoUpdate = false; diff --git a/examples/webgl_marchingcubes.html b/examples/webgl_marchingcubes.html index 60e0a920f1889f..ad42ea9a2fae85 100644 --- a/examples/webgl_marchingcubes.html +++ b/examples/webgl_marchingcubes.html @@ -94,18 +94,16 @@ var camera, scene, renderer; - var mesh, texture, geometry, materials, material, current_material; + var materials, current_material; var light, pointLight, ambientLight; - var effect, resolution, numBlobs; + var effect, resolution; var composer, effectFXAA, hblur, vblur; var effectController; - var controls; - var time = 0; var clock = new THREE.Clock(); @@ -119,7 +117,7 @@ // CAMERA camera = new THREE.PerspectiveCamera( 45, SCREEN_WIDTH / SCREEN_HEIGHT, 1, 10000 ); - camera.position.set( -500, 500, 1500 ); + camera.position.set( - 500, 500, 1500 ); // SCENE @@ -147,7 +145,6 @@ // MARCHING CUBES resolution = 28; - numBlobs = 10; effect = new THREE.MarchingCubes( resolution, materials[ current_material ].m, true, true ); effect.position.set( 0, 0, 0 ); @@ -177,7 +174,7 @@ // CONTROLS - controls = new THREE.OrbitControls( camera, renderer.domElement ); + var controls = new THREE.OrbitControls( camera, renderer.domElement ); // STATS @@ -231,7 +228,7 @@ // - function onWindowResize( event ) { + function onWindowResize() { SCREEN_WIDTH = window.innerWidth; SCREEN_HEIGHT = window.innerHeight - 2 * MARGIN; @@ -273,11 +270,11 @@ // toons var toonMaterial1 = createShaderMaterial( "toon1", light, ambientLight ), - toonMaterial2 = createShaderMaterial( "toon2", light, ambientLight ), - hatchingMaterial = createShaderMaterial( "hatching", light, ambientLight ), - hatchingMaterial2 = createShaderMaterial( "hatching", light, ambientLight ), - dottedMaterial = createShaderMaterial( "dotted", light, ambientLight ), - dottedMaterial2 = createShaderMaterial( "dotted", light, ambientLight ); + toonMaterial2 = createShaderMaterial( "toon2", light, ambientLight ), + hatchingMaterial = createShaderMaterial( "hatching", light, ambientLight ), + hatchingMaterial2 = createShaderMaterial( "hatching", light, ambientLight ), + dottedMaterial = createShaderMaterial( "dotted", light, ambientLight ), + dottedMaterial2 = createShaderMaterial( "dotted", light, ambientLight ); hatchingMaterial2.uniforms.uBaseColor.value.setRGB( 0, 0, 0 ); hatchingMaterial2.uniforms.uLineColor1.value.setHSL( 0, 0.8, 0.5 ); @@ -293,85 +290,85 @@ var materials = { - "chrome" : + "chrome": { m: new THREE.MeshLambertMaterial( { color: 0xffffff, envMap: reflectionCube } ), h: 0, s: 0, l: 1 }, - "liquid" : + "liquid": { m: new THREE.MeshLambertMaterial( { color: 0xffffff, envMap: refractionCube, refractionRatio: 0.85 } ), h: 0, s: 0, l: 1 }, - "shiny" : + "shiny": { m: new THREE.MeshStandardMaterial( { color: 0x550000, envMap: reflectionCube, roughness: 0.1, metalness: 1.0 } ), h: 0, s: 0.8, l: 0.2 }, - "matte" : + "matte": { m: new THREE.MeshPhongMaterial( { color: 0x000000, specular: 0x111111, shininess: 1 } ), h: 0, s: 0, l: 1 }, - "flat" : + "flat": { m: new THREE.MeshLambertMaterial( { color: 0x000000, flatShading: true } ), h: 0, s: 0, l: 1 }, - "textured" : + "textured": { m: new THREE.MeshPhongMaterial( { color: 0xffffff, specular: 0x111111, shininess: 1, map: texture } ), h: 0, s: 0, l: 1 }, - "colors" : + "colors": { m: new THREE.MeshPhongMaterial( { color: 0xffffff, specular: 0xffffff, shininess: 2, vertexColors: THREE.VertexColors } ), h: 0, s: 0, l: 1 }, - "plastic" : + "plastic": { m: new THREE.MeshPhongMaterial( { color: 0x000000, specular: 0x888888, shininess: 250 } ), h: 0.6, s: 0.8, l: 0.1 }, - "toon1" : + "toon1": { m: toonMaterial1, h: 0.2, s: 1, l: 0.75 }, - "toon2" : + "toon2": { m: toonMaterial2, h: 0.4, s: 1, l: 0.75 }, - "hatching" : + "hatching": { m: hatchingMaterial, h: 0.2, s: 1, l: 0.9 }, - "hatching2" : + "hatching2": { m: hatchingMaterial2, h: 0.0, s: 0.8, l: 0.5 }, - "dotted" : + "dotted": { m: dottedMaterial, h: 0.2, s: 1, l: 0.9 }, - "dotted2" : + "dotted2": { m: dottedMaterial2, h: 0.1, s: 1, l: 0.5 @@ -407,9 +404,9 @@ function setupGui() { - var createHandler = function( id ) { + var createHandler = function ( id ) { - return function() { + return function () { var mat_old = materials[ current_material ]; mat_old.h = m_h.getValue(); @@ -425,8 +422,8 @@ m_s.setValue( mat.s ); m_l.setValue( mat.l ); - effect.enableUvs = (current_material === "textured") ? true : false; - effect.enableColors = (current_material === "colors") ? true : false; + effect.enableUvs = ( current_material === "textured" ) ? true : false; + effect.enableColors = ( current_material === "colors" ) ? true : false; }; @@ -434,33 +431,32 @@ effectController = { - material: "shiny", + material: "shiny", - speed: 1.0, - numBlobs: 10, - resolution: 28, - isolation: 80, + speed: 1.0, + numBlobs: 10, + resolution: 28, + isolation: 80, - floor: true, - wallx: false, - wallz: false, + floor: true, + wallx: false, + wallz: false, - hue: 0.0, - saturation: 0.8, - lightness: 0.1, + hue: 0.0, + saturation: 0.8, + lightness: 0.1, - lhue: 0.04, - lsaturation: 1.0, - llightness: 0.5, + lhue: 0.04, + lsaturation: 1.0, + llightness: 0.5, - lx: 0.5, - ly: 0.5, - lz: 1.0, + lx: 0.5, + ly: 0.5, + lz: 1.0, - postprocessing: false, + postprocessing: false, - dummy: function() { - } + dummy: function () {} }; @@ -491,17 +487,17 @@ h = gui.addFolder( "Point light color" ); - h.add( effectController, "lhue", 0.0, 1.0, 0.025 ).name("hue"); - h.add( effectController, "lsaturation", 0.0, 1.0, 0.025 ).name("saturation"); - h.add( effectController, "llightness", 0.0, 1.0, 0.025 ).name("lightness"); + h.add( effectController, "lhue", 0.0, 1.0, 0.025 ).name( "hue" ); + h.add( effectController, "lsaturation", 0.0, 1.0, 0.025 ).name( "saturation" ); + h.add( effectController, "llightness", 0.0, 1.0, 0.025 ).name( "lightness" ); // light (directional) h = gui.addFolder( "Directional light orientation" ); - h.add( effectController, "lx", -1.0, 1.0, 0.025 ).name("x"); - h.add( effectController, "ly", -1.0, 1.0, 0.025 ).name("y"); - h.add( effectController, "lz", -1.0, 1.0, 0.025 ).name("z"); + h.add( effectController, "lx", - 1.0, 1.0, 0.025 ).name( "x" ); + h.add( effectController, "ly", - 1.0, 1.0, 0.025 ).name( "y" ); + h.add( effectController, "lz", - 1.0, 1.0, 0.025 ).name( "z" ); // simulation @@ -542,7 +538,7 @@ bally = Math.abs( Math.cos( i + 1.12 * time * Math.cos( 1.22 + 0.1424 * i ) ) ) * 0.77; // dip into the floor ballz = Math.cos( i + 1.32 * time * 0.1 * Math.sin( ( 0.92 + 0.53 * i ) ) ) * 0.27 + 0.5; - object.addBall(ballx, bally, ballz, strength, subtract); + object.addBall( ballx, bally, ballz, strength, subtract ); } @@ -554,7 +550,6 @@ // - function animate() { requestAnimationFrame( animate ); diff --git a/examples/webgl_materials_blending.html b/examples/webgl_materials_blending.html index 58471e820e2019..62cf1344e12554 100644 --- a/examples/webgl_materials_blending.html +++ b/examples/webgl_materials_blending.html @@ -26,7 +26,7 @@ } var camera, scene, renderer; - var mesh, mapBg; + var mapBg; var textureLoader = new THREE.TextureLoader(); @@ -73,7 +73,7 @@ var materialBg = new THREE.MeshBasicMaterial( { map: mapBg } ); var meshBg = new THREE.Mesh( new THREE.PlaneBufferGeometry( 4000, 2000 ), materialBg ); - meshBg.position.set( 0, 0, -1 ); + meshBg.position.set( 0, 0, - 1 ); scene.add( meshBg ); // OBJECTS @@ -92,8 +92,8 @@ addImageRow( map0, 300 ); addImageRow( map1, 150 ); addImageRow( map2, 0 ); - addImageRow( map3, -150 ); - addImageRow( map4, -300 ); + addImageRow( map3, - 150 ); + addImageRow( map4, - 300 ); function addImageRow( map, y ) { @@ -136,7 +136,7 @@ // - function onWindowResize( event ) { + function onWindowResize() { var SCREEN_WIDTH = window.innerWidth; var SCREEN_HEIGHT = window.innerHeight; @@ -176,8 +176,8 @@ requestAnimationFrame( animate ); var time = Date.now() * 0.00025; - var ox = ( time * -0.01 * mapBg.repeat.x ) % 1; - var oy = ( time * -0.01 * mapBg.repeat.y ) % 1; + var ox = ( time * - 0.01 * mapBg.repeat.x ) % 1; + var oy = ( time * - 0.01 * mapBg.repeat.y ) % 1; mapBg.offset.set( ox, oy ); diff --git a/examples/webgl_materials_blending_custom.html b/examples/webgl_materials_blending_custom.html index 716d90f0de4f0d..5a74145041f310 100644 --- a/examples/webgl_materials_blending_custom.html +++ b/examples/webgl_materials_blending_custom.html @@ -183,7 +183,7 @@ materialBg = new THREE.MeshBasicMaterial( { map: mapBg1 } ); var meshBg = new THREE.Mesh( new THREE.PlaneBufferGeometry( 4000, 2000 ), materialBg ); - meshBg.position.set( 0, 0, -1 ); + meshBg.position.set( 0, 0, - 1 ); scene.add( meshBg ); // FOREGROUND IMAGES @@ -238,7 +238,7 @@ var y = ( i - dst.length / 2 ) * 110 + 50; var mesh = new THREE.Mesh( geo1, material ); - mesh.position.set( x, -y, z ); + mesh.position.set( x, - y, z ); mesh.matrixAutoUpdate = false; mesh.updateMatrix(); scene.add( mesh ); @@ -258,7 +258,7 @@ var y = ( 0 - dst.length / 2 ) * 110 + 50; var mesh = new THREE.Mesh( geo2, generateLabelMaterial( blendSrc.replace( 'Factor', '' ), 'rgba( 0, 150, 0, 1 )' ) ); - mesh.position.set( x, - (y - 70), z ); + mesh.position.set( x, - ( y - 70 ), z ); mesh.matrixAutoUpdate = false; mesh.updateMatrix(); scene.add( mesh ); @@ -274,7 +274,7 @@ var y = ( i - dst.length / 2 ) * 110 + 165; var mesh = new THREE.Mesh( geo2, generateLabelMaterial( blendDst.replace( 'Factor', '' ), 'rgba( 150, 0, 0, 1 )' ) ); - mesh.position.set( x, - (y - 120), z ); + mesh.position.set( x, - ( y - 120 ), z ); mesh.matrixAutoUpdate = false; mesh.updateMatrix(); scene.add( mesh ); @@ -363,14 +363,18 @@ el.style.backgroundColor = 'darkorange'; - }); + } ); } function addBgHandler( id, map ) { var el = document.getElementById( id ); - el.addEventListener( 'click', function () { materialBg.map = map; } ); + el.addEventListener( 'click', function () { + + materialBg.map = map; + + } ); } @@ -398,7 +402,7 @@ // - function onWindowResize( event ) { + function onWindowResize() { renderer.setSize( window.innerWidth, window.innerHeight ); @@ -435,8 +439,8 @@ requestAnimationFrame( animate ); var time = Date.now() * 0.00025; - var ox = ( time * -0.01 * materialBg.map.repeat.x ) % 1; - var oy = ( time * -0.01 * materialBg.map.repeat.y ) % 1; + var ox = ( time * - 0.01 * materialBg.map.repeat.x ) % 1; + var oy = ( time * - 0.01 * materialBg.map.repeat.y ) % 1; materialBg.map.offset.set( ox, oy ); diff --git a/examples/webgl_materials_bumpmap.html b/examples/webgl_materials_bumpmap.html index 694e7b57f7eca4..f023b4c73f651e 100644 --- a/examples/webgl_materials_bumpmap.html +++ b/examples/webgl_materials_bumpmap.html @@ -111,7 +111,7 @@ spotLight.shadow.camera.fov = 40; - spotLight.shadow.bias = -0.005; + spotLight.shadow.bias = - 0.005; // @@ -126,7 +126,11 @@ } ); loader = new THREE.GLTFLoader(); - loader.load( "models/gltf/LeePerrySmith/LeePerrySmith.glb", function( gltf ) { createScene( gltf.scene.children[ 0 ].geometry, 100, material ) } ); + loader.load( "models/gltf/LeePerrySmith/LeePerrySmith.glb", function ( gltf ) { + + createScene( gltf.scene.children[ 0 ].geometry, 100, material ); + + } ); renderer = new THREE.WebGLRenderer(); renderer.setPixelRatio( window.devicePixelRatio ); @@ -172,7 +176,7 @@ // - function onWindowResize( event ) { + function onWindowResize() { renderer.setSize( window.innerWidth, window.innerHeight ); diff --git a/examples/webgl_materials_bumpmap_skin.html b/examples/webgl_materials_bumpmap_skin.html index cab5d7d0624411..bea103fd6d55fc 100644 --- a/examples/webgl_materials_bumpmap_skin.html +++ b/examples/webgl_materials_bumpmap_skin.html @@ -70,7 +70,7 @@ var camera, scene, renderer; - var mesh, mesh2; + var mesh; var directionalLight; @@ -79,15 +79,12 @@ var targetX = 0, targetY = 0; - var windowHalfX = window.innerWidth / 2; var windowHalfY = window.innerHeight / 2; - var mapColor, mapHeight, mapSpecular; - var firstPass = true; - var composer, composerBeckmann; + var composerBeckmann; init(); animate(); @@ -120,12 +117,12 @@ directionalLight.shadow.camera.near = 200; directionalLight.shadow.camera.far = 1500; - directionalLight.shadow.camera.left = -500; + directionalLight.shadow.camera.left = - 500; directionalLight.shadow.camera.right = 500; directionalLight.shadow.camera.top = 500; - directionalLight.shadow.camera.bottom = -500; + directionalLight.shadow.camera.bottom = - 500; - directionalLight.shadow.bias = -0.005; + directionalLight.shadow.bias = - 0.005; scene.add( directionalLight ); @@ -134,7 +131,7 @@ loader = new THREE.GLTFLoader(); loader.load( "models/gltf/LeePerrySmith/LeePerrySmith.glb", function ( gltf ) { - createScene( gltf.scene.children[ 0 ].geometry, 100 ) + createScene( gltf.scene.children[ 0 ].geometry, 100 ); } ); @@ -252,7 +249,7 @@ // - function onWindowResize( event ) { + function onWindowResize() { renderer.setSize( window.innerWidth, window.innerHeight ); diff --git a/examples/webgl_materials_channels.html b/examples/webgl_materials_channels.html index d682e9262f715d..913a2bcd151efa 100644 --- a/examples/webgl_materials_channels.html +++ b/examples/webgl_materials_channels.html @@ -59,7 +59,7 @@ var stats; - var camera, scene, renderer, controls; + var camera, scene, renderer; var params = { material: 'normal', @@ -78,8 +78,6 @@ var mesh, materialStandard, materialDepthBasic, materialDepthRGBA, materialNormal; - var pointLight, ambientLight; - var height = 500; // of camera frustum var SCALE = 2.436143; // from original model @@ -96,6 +94,7 @@ gui.add( params, 'material', [ 'standard', 'normal', 'depthBasic', 'depthRGBA' ] ); gui.add( params, 'camera', [ 'perspective', 'ortho' ] ); gui.add( params, 'side', [ 'front', 'back', 'double' ] ); + } function init() { diff --git a/examples/webgl_materials_compile.html b/examples/webgl_materials_compile.html index f155129843db33..66e7fe9782b134 100644 --- a/examples/webgl_materials_compile.html +++ b/examples/webgl_materials_compile.html @@ -22,7 +22,7 @@ text-align: center; display:block; } - + #waitScreen { color: #000; position: absolute; @@ -33,7 +33,7 @@ width: 100px; height: 100px; } - + .hide { display:none; } @@ -69,21 +69,24 @@ var frame = new THREE.NodeFrame(); var teapot; var controls; - var move = false; var rtTexture, rtMaterial; var meshes = []; - - document.getElementById( "preload" ).addEventListener( 'click', function() { + + document.getElementById( "preload" ).addEventListener( 'click', function () { var hash = document.location.hash.substr( 1 ); if ( hash.length === 0 ) { - window.location.hash = "#NoPreLoad" + + window.location.hash = "#NoPreLoad"; + } else { - window.location.hash = "" + + window.location.hash = ""; + } - - location.reload(true); + + location.reload( true ); }, false ); @@ -122,15 +125,16 @@ var itemsonrow = 10; - for (var i = 0 ; i< itemsonrow * itemsonrow; i ++ ){ - + for ( var i = 0; i < itemsonrow * itemsonrow; i ++ ) { + var mesh = new THREE.Mesh( teapot ); - - mesh.position.x = 50 *(i%itemsonrow) -50*itemsonrow/2; - mesh.position.z = 50*Math.floor(i/itemsonrow)-150; - updateMaterial(mesh); + + mesh.position.x = 50 * ( i % itemsonrow ) - 50 * itemsonrow / 2; + mesh.position.z = 50 * Math.floor( i / itemsonrow ) - 150; + updateMaterial( mesh ); scene.add( mesh ); - meshes.push(mesh); + meshes.push( mesh ); + } window.addEventListener( 'resize', onWindowResize, false ); @@ -139,24 +143,22 @@ if ( hash.length === 0 ) { - renderer.compile(scene,camera); - + renderer.compile( scene, camera ); + } - - document.getElementById("waitScreen").className = "hide"; - - setTimeout(function() { - + + document.getElementById( "waitScreen" ).className = "hide"; + + setTimeout( function () { + onWindowResize(); animate(); - - }, 1); - } + }, 1 ); - function updateMaterial(mesh) { + } - move = false; + function updateMaterial( mesh ) { if ( mesh.material ) mesh.material.dispose(); @@ -205,9 +207,9 @@ mtl.color = new THREE.ColorNode( 0 ); mtl.emissive = cos; - - - var transformer = new THREE.ExpressionNode( "position + 0.0 * " + Math.random(), "vec3", [ ]); + + + var transformer = new THREE.ExpressionNode( "position + 0.0 * " + Math.random(), "vec3", [ ] ); mtl.transform = transformer; // build shader ( ignore auto build ) @@ -237,9 +239,9 @@ frame.update( delta ); - for (var i = 0; i < meshes.length; i++ ){ + for ( var i = 0; i < meshes.length; i ++ ) { - var mesh = meshes[i]; + var mesh = meshes[ i ]; frame.updateNode( mesh.material ); diff --git a/examples/webgl_materials_cubemap.html b/examples/webgl_materials_cubemap.html index d9763da1181d9e..cbc527557187d2 100644 --- a/examples/webgl_materials_cubemap.html +++ b/examples/webgl_materials_cubemap.html @@ -55,8 +55,6 @@ var camera, scene, renderer; - var mesh, geometry; - var pointLight; init(); @@ -81,10 +79,10 @@ var path = "textures/cube/SwedishRoyalCastle/"; var format = '.jpg'; var urls = [ - path + 'px' + format, path + 'nx' + format, - path + 'py' + format, path + 'ny' + format, - path + 'pz' + format, path + 'nz' + format - ]; + path + 'px' + format, path + 'nx' + format, + path + 'py' + format, path + 'ny' + format, + path + 'pz' + format, path + 'nz' + format + ]; var reflectionCube = new THREE.CubeTextureLoader().load( urls ); reflectionCube.format = THREE.RGBFormat; @@ -114,10 +112,10 @@ objLoader.setPath( 'models/obj/walt/' ); objLoader.load( 'WaltHead.obj', function ( object ) { - var head = object.children[0]; + var head = object.children[ 0 ]; head.scale.multiplyScalar( 15 ); - head.position.y = -500; + head.position.y = - 500; head.material = cubeMaterial1; var head2 = head.clone(); @@ -159,6 +157,7 @@ requestAnimationFrame( animate ); render(); + } function render() { diff --git a/examples/webgl_materials_cubemap_balls_reflection.html b/examples/webgl_materials_cubemap_balls_reflection.html index afc4d15128ea49..8ebc7432254876 100644 --- a/examples/webgl_materials_cubemap_balls_reflection.html +++ b/examples/webgl_materials_cubemap_balls_reflection.html @@ -24,9 +24,7 @@ z-index:1000; } - a { - color: #ffffff; - } + a { color: #ffffff; } #webglmessage a { color:#da0 } @@ -51,11 +49,8 @@ var camera, scene, renderer; - var mesh, lightMesh, geometry; var spheres = []; - var directionalLight, pointLight; - var mouseX = 0; var mouseY = 0; diff --git a/examples/webgl_materials_cubemap_balls_refraction.html b/examples/webgl_materials_cubemap_balls_refraction.html index 0cf45643ec815e..3c8e1849703377 100644 --- a/examples/webgl_materials_cubemap_balls_refraction.html +++ b/examples/webgl_materials_cubemap_balls_refraction.html @@ -24,9 +24,7 @@ z-index:1000; } - a { - color: #ffffff; - } + a { color: #ffffff; } #webglmessage a { color:#da0 } @@ -51,11 +49,8 @@ var camera, scene, renderer; - var mesh, lightMesh, geometry; var spheres = []; - var directionalLight, pointLight; - var mouseX = 0, mouseY = 0; var windowHalfX = window.innerWidth / 2; @@ -125,7 +120,7 @@ } - function onDocumentMouseMove(event) { + function onDocumentMouseMove( event ) { mouseX = ( event.clientX - windowHalfX ) * 10; mouseY = ( event.clientY - windowHalfY ) * 10; diff --git a/examples/webgl_materials_cubemap_dynamic.html b/examples/webgl_materials_cubemap_dynamic.html index 41d1ee0e6b88b8..d93847976e2b3e 100644 --- a/examples/webgl_materials_cubemap_dynamic.html +++ b/examples/webgl_materials_cubemap_dynamic.html @@ -36,10 +36,12 @@ diff --git a/examples/webgl_materials_reflectivity.html b/examples/webgl_materials_reflectivity.html index c40b12df48a9cc..b40d62fa85c77b 100644 --- a/examples/webgl_materials_reflectivity.html +++ b/examples/webgl_materials_reflectivity.html @@ -69,9 +69,7 @@ exposure: 1.0, gemColor: 'Green' }; - var camera, scene, renderer, controls, objects = []; - var hdrCubeMap; - var composer; + var camera, scene, renderer, objects = []; var gemBackMaterial, gemFrontMaterial; var hdrCubeRenderTarget; @@ -84,7 +82,7 @@ document.body.appendChild( container ); camera = new THREE.PerspectiveCamera( 40, window.innerWidth / window.innerHeight, 1, 2000 ); - camera.position.set( 0.0, -10, 20 * 3.5 ); + camera.position.set( 0.0, - 10, 20 * 3.5 ); scene = new THREE.Scene(); scene.background = new THREE.Color( 0x000000 ); @@ -148,13 +146,15 @@ } ); - var genCubeUrls = function( prefix, postfix ) { + var genCubeUrls = function ( prefix, postfix ) { + return [ prefix + 'px' + postfix, prefix + 'nx' + postfix, prefix + 'py' + postfix, prefix + 'ny' + postfix, prefix + 'pz' + postfix, prefix + 'nz' + postfix ]; - }; + + }; var hdrUrls = genCubeUrls( "./textures/cube/pisaHDR/", ".hdr" ); new THREE.HDRCubeTextureLoader().load( THREE.UnsignedByteType, hdrUrls, function ( hdrCubeMap ) { @@ -187,11 +187,11 @@ scene.add( pointLight1 ); var pointLight2 = new THREE.PointLight( 0xffffff ); - pointLight2.position.set( -150, 0, 0 ); + pointLight2.position.set( - 150, 0, 0 ); scene.add( pointLight2 ); var pointLight3 = new THREE.PointLight( 0xffffff ); - pointLight3.position.set( 0, -10, -150 ); + pointLight3.position.set( 0, - 10, - 150 ); scene.add( pointLight3 ); var pointLight4 = new THREE.PointLight( 0xffffff ); @@ -209,7 +209,7 @@ stats = new Stats(); container.appendChild( stats.dom ); - controls = new THREE.OrbitControls( camera, renderer.domElement ); + var controls = new THREE.OrbitControls( camera, renderer.domElement ); window.addEventListener( 'resize', onWindowResize, false ); @@ -254,13 +254,15 @@ gemFrontMaterial.reflectivity = gemBackMaterial.reflectivity = params.reflectivity; var newColor = gemBackMaterial.color; - switch( params.gemColor ) { + switch ( params.gemColor ) { + case 'Blue': newColor = new THREE.Color( 0x000088 ); break; case 'Red': newColor = new THREE.Color( 0x880000 ); break; case 'Green': newColor = new THREE.Color( 0x008800 ); break; - case 'White': newColor = new THREE.Color( 0x888888 ); break; - case 'Black': newColor = new THREE.Color( 0x0f0f0f ); break; - } + case 'White': newColor = new THREE.Color( 0x888888 ); break; + case 'Black': newColor = new THREE.Color( 0x0f0f0f ); break; + + } gemBackMaterial.color = gemFrontMaterial.color = newColor; @@ -270,14 +272,16 @@ camera.lookAt( scene.position ); - if( params.autoRotate ) { + if ( params.autoRotate ) { + for ( var i = 0, l = objects.length; i < l; i ++ ) { var object = objects[ i ]; object.rotation.y += 0.005; } - } + + } renderer.render( scene, camera ); diff --git a/examples/webgl_materials_shaders_fresnel.html b/examples/webgl_materials_shaders_fresnel.html index 6d11dbc7551665..020b1f56a3d574 100644 --- a/examples/webgl_materials_shaders_fresnel.html +++ b/examples/webgl_materials_shaders_fresnel.html @@ -52,11 +52,8 @@ var camera, scene, renderer; - var mesh, zmesh, lightMesh, geometry; var spheres = []; - var directionalLight, pointLight; - var mouseX = 0, mouseY = 0; var windowHalfX = window.innerWidth / 2; @@ -80,10 +77,10 @@ var path = "textures/cube/Park2/"; var format = '.jpg'; var urls = [ - path + 'posx' + format, path + 'negx' + format, - path + 'posy' + format, path + 'negy' + format, - path + 'posz' + format, path + 'negz' + format - ]; + path + 'posx' + format, path + 'negx' + format, + path + 'posy' + format, path + 'negy' + format, + path + 'posz' + format, path + 'negz' + format + ]; var textureCube = new THREE.CubeTextureLoader().load( urls ); textureCube.format = THREE.RGBFormat; diff --git a/examples/webgl_materials_skin.html b/examples/webgl_materials_skin.html index 9b4948096c59c4..cecb17cdaf511f 100644 --- a/examples/webgl_materials_skin.html +++ b/examples/webgl_materials_skin.html @@ -78,7 +78,7 @@ var composer, composerUV1, composerUV2, composerUV3, composerBeckmann; - var directionalLight, pointLight, ambientLight; + var directionalLight; var mouseX = 0, mouseY = 0; var targetX = 0, targetY = 0; @@ -109,12 +109,12 @@ scene.add( directionalLight ); directionalLight = new THREE.DirectionalLight( 0xddddff, 0.5 ); - directionalLight.position.set( -1, 0.5, -1 ); + directionalLight.position.set( - 1, 0.5, - 1 ); scene.add( directionalLight ); // MATERIALS - var diffuse = 0xbbbbbb, specular = 0x555555, shininess = 50; + var diffuse = 0xbbbbbb, specular = 0x555555; var shader = THREE.ShaderSkin[ "skin" ]; @@ -123,7 +123,7 @@ var textureLoader = new THREE.TextureLoader(); uniformsUV[ "tNormal" ].value = textureLoader.load( "models/gltf/LeePerrySmith/Infinite-Level_02_Tangent_SmoothUV.jpg" ); - uniformsUV[ "uNormalScale" ].value = -1.5; + uniformsUV[ "uNormalScale" ].value = - 1.5; uniformsUV[ "tDiffuse" ].value = textureLoader.load( "models/gltf/LeePerrySmith/Map-COL.jpg" ); @@ -154,7 +154,7 @@ // LOADER loader = new THREE.GLTFLoader(); - loader.load( "models/gltf/LeePerrySmith/LeePerrySmith.glb", function( gltf ) { + loader.load( "models/gltf/LeePerrySmith/LeePerrySmith.glb", function ( gltf ) { createScene( gltf.scene.children[ 0 ].geometry, 100, material ); diff --git a/examples/webgl_materials_standard.html b/examples/webgl_materials_standard.html index 9bbf8f646d08bc..23a32ed033ef60 100644 --- a/examples/webgl_materials_standard.html +++ b/examples/webgl_materials_standard.html @@ -65,15 +65,9 @@ var statsEnabled = true; - var container, stats, loader; + var container, stats; - var camera, scene, renderer; - - var controls; - - var mesh; - - var spotLight; + var camera, scene, renderer, controls; init(); animate(); @@ -156,12 +150,14 @@ } ); - var genCubeUrls = function( prefix, postfix ) { + var genCubeUrls = function ( prefix, postfix ) { + return [ prefix + 'px' + postfix, prefix + 'nx' + postfix, prefix + 'py' + postfix, prefix + 'ny' + postfix, prefix + 'pz' + postfix, prefix + 'nz' + postfix ]; + }; var hdrUrls = genCubeUrls( './textures/cube/pisaHDR/', '.hdr' ); @@ -199,7 +195,7 @@ // - function onWindowResize( event ) { + function onWindowResize() { renderer.setSize( window.innerWidth, window.innerHeight ); diff --git a/examples/webgl_materials_texture_anisotropy.html b/examples/webgl_materials_texture_anisotropy.html index 8cea7717362835..4cb7e3b32353eb 100644 --- a/examples/webgl_materials_texture_anisotropy.html +++ b/examples/webgl_materials_texture_anisotropy.html @@ -64,7 +64,7 @@ var SCREEN_WIDTH = window.innerWidth; var SCREEN_HEIGHT = window.innerHeight; - var container,stats; + var container, stats; var camera, scene1, scene2, renderer; @@ -136,7 +136,7 @@ } else { document.getElementById( "val_left" ).innerHTML = "not supported"; - document.getElementById( "val_right" ).innerHTML = "not supported"; + document.getElementById( "val_right" ).innerHTML = "not supported"; } @@ -174,7 +174,7 @@ } - function onDocumentMouseMove(event) { + function onDocumentMouseMove( event ) { mouseX = ( event.clientX - windowHalfX ); mouseY = ( event.clientY - windowHalfY ); @@ -201,10 +201,10 @@ renderer.clear(); renderer.setScissorTest( true ); - renderer.setScissor( 0, 0, SCREEN_WIDTH/2 - 2, SCREEN_HEIGHT ); + renderer.setScissor( 0, 0, SCREEN_WIDTH / 2 - 2, SCREEN_HEIGHT ); renderer.render( scene1, camera ); - renderer.setScissor( SCREEN_WIDTH/2, 0, SCREEN_WIDTH/2 - 2, SCREEN_HEIGHT ); + renderer.setScissor( SCREEN_WIDTH / 2, 0, SCREEN_WIDTH / 2 - 2, SCREEN_HEIGHT ); renderer.render( scene2, camera ); renderer.setScissorTest( false ); diff --git a/examples/webgl_materials_texture_canvas.html b/examples/webgl_materials_texture_canvas.html index 2f030dee5fd21b..27397fd889af5a 100755 --- a/examples/webgl_materials_texture_canvas.html +++ b/examples/webgl_materials_texture_canvas.html @@ -106,26 +106,26 @@ var paint = false; // add canvas event listeners - drawingCanvas.addEventListener( 'mousedown', function( e ) { + drawingCanvas.addEventListener( 'mousedown', function ( e ) { paint = true; drawStartPos.set( e.offsetX, e.offsetY ); } ); - drawingCanvas.addEventListener( 'mousemove', function( e ) { + drawingCanvas.addEventListener( 'mousemove', function ( e ) { - if( paint ) draw( drawingContext, e.offsetX, e.offsetY ); + if ( paint ) draw( drawingContext, e.offsetX, e.offsetY ); } ); - drawingCanvas.addEventListener( 'mouseup', function( e ) { + drawingCanvas.addEventListener( 'mouseup', function () { paint = false; } ); - drawingCanvas.addEventListener( 'mouseleave', function( e ) { + drawingCanvas.addEventListener( 'mouseleave', function () { paint = false; diff --git a/examples/webgl_materials_texture_filters.html b/examples/webgl_materials_texture_filters.html index 70b0e3b0c818d7..e0dd45345c0572 100644 --- a/examples/webgl_materials_texture_filters.html +++ b/examples/webgl_materials_texture_filters.html @@ -77,7 +77,7 @@ var SCREEN_WIDTH = window.innerWidth; var SCREEN_HEIGHT = window.innerHeight; - var container,stats; + var container, stats; var camera, scene, scene2, renderer; @@ -117,7 +117,7 @@ context.fillRect( 0, 0, 128, 128 ); context.fillStyle = "#fff"; - context.fillRect( 0, 0, 64, 64); + context.fillRect( 0, 0, 64, 64 ); context.fillRect( 64, 64, 64, 64 ); var textureCanvas = new THREE.CanvasTexture( imageCanvas ); @@ -145,7 +145,7 @@ // PAINTING - var callbackPainting = function() { + var callbackPainting = function () { var image = texturePainting.image; @@ -176,14 +176,14 @@ zscene.add( meshFrame ); var meshShadow = new THREE.Mesh( geometry, new THREE.MeshBasicMaterial( { color: 0x000000, opacity: 0.75, transparent: true } ) ); - meshShadow.position.y = - 1.1 * image.height/2; - meshShadow.position.z = - 1.1 * image.height/2; + meshShadow.position.y = - 1.1 * image.height / 2; + meshShadow.position.z = - 1.1 * image.height / 2; meshShadow.rotation.x = - Math.PI / 2; meshShadow.scale.x = 1.1 * image.width / 100; meshShadow.scale.y = 1.1 * image.height / 100; zscene.add( meshShadow ); - var floorHeight = - 1.117 * image.height/2; + var floorHeight = - 1.117 * image.height / 2; meshCanvas.position.y = meshCanvas2.position.y = floorHeight; } @@ -217,7 +217,7 @@ } - function onDocumentMouseMove(event) { + function onDocumentMouseMove( event ) { mouseX = ( event.clientX - windowHalfX ); mouseY = ( event.clientY - windowHalfY ); @@ -237,17 +237,17 @@ function render() { camera.position.x += ( mouseX - camera.position.x ) * .05; - camera.position.y += ( - ( mouseY - 200) - camera.position.y ) * .05; + camera.position.y += ( - ( mouseY - 200 ) - camera.position.y ) * .05; camera.lookAt( scene.position ); renderer.clear(); renderer.setScissorTest( true ); - renderer.setScissor( 0, 0, SCREEN_WIDTH/2 - 2, SCREEN_HEIGHT ); + renderer.setScissor( 0, 0, SCREEN_WIDTH / 2 - 2, SCREEN_HEIGHT ); renderer.render( scene, camera ); - renderer.setScissor( SCREEN_WIDTH/2, 0, SCREEN_WIDTH/2 - 2, SCREEN_HEIGHT ); + renderer.setScissor( SCREEN_WIDTH / 2, 0, SCREEN_WIDTH / 2 - 2, SCREEN_HEIGHT ); renderer.render( scene2, camera ); renderer.setScissorTest( false ); diff --git a/examples/webgl_materials_texture_manualmipmap.html b/examples/webgl_materials_texture_manualmipmap.html index 563eb2d67a5b42..764821bdca4567 100644 --- a/examples/webgl_materials_texture_manualmipmap.html +++ b/examples/webgl_materials_texture_manualmipmap.html @@ -131,10 +131,10 @@ textureCanvas1.mipmaps[ 1 ] = mipmap( 64, '#0f0' ); textureCanvas1.mipmaps[ 2 ] = mipmap( 32, '#00f' ); textureCanvas1.mipmaps[ 3 ] = mipmap( 16, '#400' ); - textureCanvas1.mipmaps[ 4 ] = mipmap( 8, '#040' ); - textureCanvas1.mipmaps[ 5 ] = mipmap( 4, '#004' ); - textureCanvas1.mipmaps[ 6 ] = mipmap( 2, '#044' ); - textureCanvas1.mipmaps[ 7 ] = mipmap( 1, '#404' ); + textureCanvas1.mipmaps[ 4 ] = mipmap( 8, '#040' ); + textureCanvas1.mipmaps[ 5 ] = mipmap( 4, '#004' ); + textureCanvas1.mipmaps[ 6 ] = mipmap( 2, '#044' ); + textureCanvas1.mipmaps[ 7 ] = mipmap( 1, '#404' ); textureCanvas1.repeat.set( 1000, 1000 ); textureCanvas1.wrapS = THREE.RepeatWrapping; textureCanvas1.wrapT = THREE.RepeatWrapping; @@ -149,11 +149,11 @@ var geometry = new THREE.PlaneBufferGeometry( 100, 100 ); var meshCanvas1 = new THREE.Mesh( geometry, materialCanvas1 ); - meshCanvas1.rotation.x = -Math.PI / 2; - meshCanvas1.scale.set(1000, 1000, 1000); + meshCanvas1.rotation.x = - Math.PI / 2; + meshCanvas1.scale.set( 1000, 1000, 1000 ); var meshCanvas2 = new THREE.Mesh( geometry, materialCanvas2 ); - meshCanvas2.rotation.x = -Math.PI / 2; + meshCanvas2.rotation.x = - Math.PI / 2; meshCanvas2.scale.set( 1000, 1000, 1000 ); @@ -190,14 +190,14 @@ zscene.add( meshFrame ); var meshShadow = new THREE.Mesh( geometry, new THREE.MeshBasicMaterial( { color: 0x000000, opacity: 0.75, transparent: true } ) ); - meshShadow.position.y = -1.1 * image.height / 2; - meshShadow.position.z = -1.1 * image.height / 2; - meshShadow.rotation.x = -Math.PI / 2; + meshShadow.position.y = - 1.1 * image.height / 2; + meshShadow.position.z = - 1.1 * image.height / 2; + meshShadow.rotation.x = - Math.PI / 2; meshShadow.scale.x = 1.1 * image.width / 100; meshShadow.scale.y = 1.1 * image.height / 100; zscene.add( meshShadow ); - var floorHeight = -1.117 * image.height / 2; + var floorHeight = - 1.117 * image.height / 2; meshCanvas1.position.y = meshCanvas2.position.y = floorHeight; } @@ -251,7 +251,7 @@ function render() { camera.position.x += ( mouseX - camera.position.x ) * .05; - camera.position.y += ( -( mouseY - 200 ) - camera.position.y ) * .05; + camera.position.y += ( - ( mouseY - 200 ) - camera.position.y ) * .05; camera.lookAt( scene1.position ); diff --git a/examples/webgl_materials_texture_partialupdate.html b/examples/webgl_materials_texture_partialupdate.html index a74c031c7218bd..38f4a501c55c61 100644 --- a/examples/webgl_materials_texture_partialupdate.html +++ b/examples/webgl_materials_texture_partialupdate.html @@ -114,8 +114,8 @@ last = elapsedTime; - position.x = ( 32 * THREE.Math.randInt( 1, 16 ) ) - 32 ; - position.y = ( 32 * THREE.Math.randInt( 1, 16 ) ) - 32 ; + position.x = ( 32 * THREE.Math.randInt( 1, 16 ) ) - 32; + position.y = ( 32 * THREE.Math.randInt( 1, 16 ) ) - 32; // generate new color data diff --git a/examples/webgl_materials_texture_rotation.html b/examples/webgl_materials_texture_rotation.html index 90ed8db41deea6..9d2b067fb7ec48 100644 --- a/examples/webgl_materials_texture_rotation.html +++ b/examples/webgl_materials_texture_rotation.html @@ -64,8 +64,6 @@ }; init(); - render(); - function init() { @@ -88,20 +86,25 @@ var geometry = new THREE.BoxBufferGeometry( 10, 10, 10 ); - var loader = new THREE.TextureLoader(); - var texture = loader.load( 'textures/UV_Grid_Sm.jpg', render ); - texture.wrapS = texture.wrapT = THREE.RepeatWrapping; + new THREE.TextureLoader().load( 'textures/UV_Grid_Sm.jpg', function ( texture ) { + + texture.wrapS = texture.wrapT = THREE.RepeatWrapping; + texture.anisotropy = renderer.capabilities.getMaxAnisotropy(); + + //texture.matrixAutoUpdate = false; // default true; set to false to update texture.matrix manually + + var material = new THREE.MeshBasicMaterial( { map: texture } ); - texture.matrixAutoUpdate = false; // set this to false to update texture.matrix manually + mesh = new THREE.Mesh( geometry, material ); + scene.add( mesh ); - var material = new THREE.MeshBasicMaterial( { map: texture } ); + updateUvTransform(); - mesh = new THREE.Mesh( geometry, material ); - scene.add( mesh ); + initGui(); - updateUvTransform(); + render(); - initGui(); + } ); window.addEventListener( 'resize', onWindowResize, false ); diff --git a/examples/webgl_materials_translucency.html b/examples/webgl_materials_translucency.html index 4c368a4956bb10..ff81474869a2a3 100644 --- a/examples/webgl_materials_translucency.html +++ b/examples/webgl_materials_translucency.html @@ -48,7 +48,7 @@ } var container, stats; - var camera, scene, renderer, controls; + var camera, scene, renderer; var model; init(); @@ -76,15 +76,15 @@ pointLight1.add( new THREE.PointLight( 0x888888, 7.0, 300 ) ); scene.add( pointLight1 ); pointLight1.position.x = 0; - pointLight1.position.y = -50; + pointLight1.position.y = - 50; pointLight1.position.z = 350; var pointLight2 = new THREE.Mesh( new THREE.SphereBufferGeometry( 4, 8, 8 ), new THREE.MeshBasicMaterial( { color: 0x888800 } ) ); pointLight2.add( new THREE.PointLight( 0x888800, 1.0, 500 ) ); scene.add( pointLight2 ); - pointLight2.position.x = -100; + pointLight2.position.x = - 100; pointLight2.position.y = 20; - pointLight2.position.z = -260; + pointLight2.position.z = - 260; renderer = new THREE.WebGLRenderer( { antialias: true } ); renderer.setPixelRatio( window.devicePixelRatio ); @@ -99,7 +99,7 @@ stats = new Stats(); container.appendChild( stats.dom ); - controls = new THREE.OrbitControls( camera ); + var controls = new THREE.OrbitControls( camera, container ); window.addEventListener( 'resize', onWindowResize, false ); @@ -151,44 +151,59 @@ } ); - initGUI(uniforms); + initGUI( uniforms ); + } - function initGUI(uniforms) { + function initGUI( uniforms ) { + var gui = new dat.GUI(); - var ThicknessControls = function() { - this.distoration = uniforms['thicknessDistortion'].value; - this.ambient = uniforms['thicknessAmbient'].value; - this.attenuation = uniforms['thicknessAttenuation'].value; - this.power = uniforms['thicknessPower'].value; - this.scale = uniforms['thicknessScale'].value; + var ThicknessControls = function () { + + this.distoration = uniforms[ 'thicknessDistortion' ].value; + this.ambient = uniforms[ 'thicknessAmbient' ].value; + this.attenuation = uniforms[ 'thicknessAttenuation' ].value; + this.power = uniforms[ 'thicknessPower' ].value; + this.scale = uniforms[ 'thicknessScale' ].value; + }; var thicknessControls = new ThicknessControls(); var thicknessFolder = gui.addFolder( 'Thickness Control' ); - thicknessFolder.add(thicknessControls, 'distoration' ).min(0.01).max(1).step(0.01).onChange(function() { - uniforms['thicknessDistortion'].value = thicknessControls.distoration; - }); + thicknessFolder.add( thicknessControls, 'distoration' ).min( 0.01 ).max( 1 ).step( 0.01 ).onChange( function () { + + uniforms[ 'thicknessDistortion' ].value = thicknessControls.distoration; + + } ); + + thicknessFolder.add( thicknessControls, 'ambient' ).min( 0.01 ).max( 5.0 ).step( 0.05 ).onChange( function () { + + uniforms[ 'thicknessAmbient' ].value = thicknessControls.ambient; + + } ); + + thicknessFolder.add( thicknessControls, 'attenuation' ).min( 0.01 ).max( 5.0 ).step( 0.05 ).onChange( function () { + + uniforms[ 'thicknessAttenuation' ].value = thicknessControls.attenuation; + + } ); - thicknessFolder.add(thicknessControls, 'ambient' ).min(0.01).max(5.0).step(0.05).onChange(function() { - uniforms['thicknessAmbient'].value = thicknessControls.ambient; - }); + thicknessFolder.add( thicknessControls, 'power' ).min( 0.01 ).max( 16.0 ).step( 0.1 ).onChange( function () { - thicknessFolder.add(thicknessControls, 'attenuation' ).min(0.01).max(5.0).step(0.05).onChange(function() { - uniforms['thicknessAttenuation'].value = thicknessControls.attenuation; - }); + uniforms[ 'thicknessPower' ].value = thicknessControls.power; - thicknessFolder.add(thicknessControls, 'power' ).min(0.01).max(16.0).step(0.1).onChange(function() { - uniforms['thicknessPower'].value = thicknessControls.power; - }); + } ); + + thicknessFolder.add( thicknessControls, 'scale' ).min( 0.01 ).max( 50.0 ).step( 0.1 ).onChange( function () { - thicknessFolder.add(thicknessControls, 'scale' ).min(0.01).max(50.0).step(0.1).onChange(function() { - uniforms['thicknessScale'].value = thicknessControls.scale; - }); + uniforms[ 'thicknessScale' ].value = thicknessControls.scale; + + } ); thicknessFolder.open(); + } function onWindowResize() { diff --git a/examples/webgl_materials_variations_basic.html b/examples/webgl_materials_variations_basic.html index 9404217fee8c01..98693eda4fe71e 100644 --- a/examples/webgl_materials_variations_basic.html +++ b/examples/webgl_materials_variations_basic.html @@ -126,7 +126,7 @@ height: 1, curveSegments: 1 - }); + } ); var textMaterial = new THREE.MeshBasicMaterial( { color: 0xffffff } ); var textMesh = new THREE.Mesh( textGeo, textMaterial ); @@ -135,16 +135,16 @@ } - addLabel( "+hue", new THREE.Vector3( -350, 0, 0 ) ); + addLabel( "+hue", new THREE.Vector3( - 350, 0, 0 ) ); addLabel( "-hue", new THREE.Vector3( 350, 0, 0 ) ); - addLabel( "-reflectivity", new THREE.Vector3( 0, -300, 0 ) ); + addLabel( "-reflectivity", new THREE.Vector3( 0, - 300, 0 ) ); addLabel( "+reflectivity", new THREE.Vector3( 0, 300, 0 ) ); - addLabel( "-diffuse", new THREE.Vector3( 0, 0, -300 ) ); + addLabel( "-diffuse", new THREE.Vector3( 0, 0, - 300 ) ); addLabel( "+diffuse", new THREE.Vector3( 0, 0, 300 ) ); - addLabel( "envMap", new THREE.Vector3( -350, 300, 0 ) ); + addLabel( "envMap", new THREE.Vector3( - 350, 300, 0 ) ); addLabel( "no envMap", new THREE.Vector3( 350, 300, 0 ) ); particleLight = new THREE.Mesh( new THREE.SphereBufferGeometry( 4, 8, 8 ), new THREE.MeshBasicMaterial( { color: 0xffffff } ) ); diff --git a/examples/webgl_materials_variations_lambert.html b/examples/webgl_materials_variations_lambert.html index 84645135c1ee50..1deee1806e0317 100644 --- a/examples/webgl_materials_variations_lambert.html +++ b/examples/webgl_materials_variations_lambert.html @@ -126,7 +126,7 @@ height: 1, curveSegments: 1 - }); + } ); var textMaterial = new THREE.MeshBasicMaterial( { color: 0xffffff } ); var textMesh = new THREE.Mesh( textGeo, textMaterial ); @@ -135,16 +135,16 @@ } - addLabel( "+hue", new THREE.Vector3( -350, 0, 0 ) ); + addLabel( "+hue", new THREE.Vector3( - 350, 0, 0 ) ); addLabel( "-hue", new THREE.Vector3( 350, 0, 0 ) ); - addLabel( "-reflectivity", new THREE.Vector3( 0, -300, 0 ) ); + addLabel( "-reflectivity", new THREE.Vector3( 0, - 300, 0 ) ); addLabel( "+reflectivity", new THREE.Vector3( 0, 300, 0 ) ); - addLabel( "-diffuse", new THREE.Vector3( 0, 0, -300 ) ); + addLabel( "-diffuse", new THREE.Vector3( 0, 0, - 300 ) ); addLabel( "+diffuse", new THREE.Vector3( 0, 0, 300 ) ); - addLabel( "envMap", new THREE.Vector3( -350, 300, 0 ) ); + addLabel( "envMap", new THREE.Vector3( - 350, 300, 0 ) ); addLabel( "no envMap", new THREE.Vector3( 350, 300, 0 ) ); particleLight = new THREE.Mesh( new THREE.SphereBufferGeometry( 4, 8, 8 ), new THREE.MeshBasicMaterial( { color: 0xffffff } ) ); diff --git a/examples/webgl_materials_variations_phong.html b/examples/webgl_materials_variations_phong.html index c959a223aa7016..f3ac3b85828e5f 100644 --- a/examples/webgl_materials_variations_phong.html +++ b/examples/webgl_materials_variations_phong.html @@ -136,7 +136,7 @@ height: 1, curveSegments: 1 - }); + } ); var textMaterial = new THREE.MeshBasicMaterial( { color: 0xffffff } ); var textMesh = new THREE.Mesh( textGeo, textMaterial ); @@ -145,13 +145,13 @@ } - addLabel( "-shininess", new THREE.Vector3( -350, 0, 0 ) ); + addLabel( "-shininess", new THREE.Vector3( - 350, 0, 0 ) ); addLabel( "+shininess", new THREE.Vector3( 350, 0, 0 ) ); - addLabel( "-specular, -reflectivity", new THREE.Vector3( 0, -300, 0 ) ); + addLabel( "-specular, -reflectivity", new THREE.Vector3( 0, - 300, 0 ) ); addLabel( "+specular, +reflectivity", new THREE.Vector3( 0, 300, 0 ) ); - addLabel( "-diffuse", new THREE.Vector3( 0, 0, -300 ) ); + addLabel( "-diffuse", new THREE.Vector3( 0, 0, - 300 ) ); addLabel( "+diffuse", new THREE.Vector3( 0, 0, 300 ) ); particleLight = new THREE.Mesh( new THREE.SphereBufferGeometry( 4, 8, 8 ), new THREE.MeshBasicMaterial( { color: 0xffffff } ) ); diff --git a/examples/webgl_materials_variations_physical.html b/examples/webgl_materials_variations_physical.html index 31333cbb184da7..574c0e7c1fc54e 100644 --- a/examples/webgl_materials_variations_physical.html +++ b/examples/webgl_materials_variations_physical.html @@ -72,12 +72,14 @@ // - var genCubeUrls = function( prefix, postfix ) { + var genCubeUrls = function ( prefix, postfix ) { + return [ prefix + 'px' + postfix, prefix + 'nx' + postfix, prefix + 'py' + postfix, prefix + 'ny' + postfix, prefix + 'pz' + postfix, prefix + 'nz' + postfix ]; + }; @@ -124,7 +126,7 @@ color: diffuseColor, metalness: 0, roughness: 0.5, - clearCoat: 1.0 - alpha, + clearCoat: 1.0 - alpha, clearCoatRoughness: 1.0 - beta, reflectivity: 1.0 - gamma, envMap: ( index % 2 ) == 1 ? hdrCubeRenderTarget.texture : null @@ -164,7 +166,7 @@ height: 1, curveSegments: 1 - }); + } ); var textMaterial = new THREE.MeshBasicMaterial( { color: 0xffffff } ); var textMesh = new THREE.Mesh( textGeo, textMaterial ); @@ -173,13 +175,13 @@ } - addLabel( "+clearCoat", new THREE.Vector3( -350, 0, 0 ) ); + addLabel( "+clearCoat", new THREE.Vector3( - 350, 0, 0 ) ); addLabel( "-clearCoat", new THREE.Vector3( 350, 0, 0 ) ); - addLabel( "+clearCoatRoughness", new THREE.Vector3( 0, -300, 0 ) ); + addLabel( "+clearCoatRoughness", new THREE.Vector3( 0, - 300, 0 ) ); addLabel( "-clearCoatRoughness", new THREE.Vector3( 0, 300, 0 ) ); - addLabel( "+reflectivity", new THREE.Vector3( 0, 0, -300 ) ); + addLabel( "+reflectivity", new THREE.Vector3( 0, 0, - 300 ) ); addLabel( "-reflectivity", new THREE.Vector3( 0, 0, 300 ) ); particleLight = new THREE.Mesh( new THREE.SphereBufferGeometry( 4, 8, 8 ), new THREE.MeshBasicMaterial( { color: 0xffffff } ) ); diff --git a/examples/webgl_materials_variations_standard.html b/examples/webgl_materials_variations_standard.html index 50294a541bd353..2fe8022b958e57 100644 --- a/examples/webgl_materials_variations_standard.html +++ b/examples/webgl_materials_variations_standard.html @@ -70,12 +70,14 @@ camera.position.set( 0.0, 400, 400 * 3.5 ); // - var genCubeUrls = function( prefix, postfix ) { + var genCubeUrls = function ( prefix, postfix ) { + return [ prefix + 'px' + postfix, prefix + 'nx' + postfix, prefix + 'py' + postfix, prefix + 'ny' + postfix, prefix + 'pz' + postfix, prefix + 'nz' + postfix ]; + }; var textureCube = new THREE.CubeTextureLoader() @@ -168,7 +170,7 @@ height: 1, curveSegments: 1 - }); + } ); var textMaterial = new THREE.MeshBasicMaterial( { color: 0xffffff } ); var textMesh = new THREE.Mesh( textGeo, textMaterial ); @@ -177,13 +179,13 @@ } - addLabel( "+roughness", new THREE.Vector3( -350, 0, 0 ) ); + addLabel( "+roughness", new THREE.Vector3( - 350, 0, 0 ) ); addLabel( "-roughness", new THREE.Vector3( 350, 0, 0 ) ); - addLabel( "-metalness", new THREE.Vector3( 0, -300, 0 ) ); + addLabel( "-metalness", new THREE.Vector3( 0, - 300, 0 ) ); addLabel( "+metalness", new THREE.Vector3( 0, 300, 0 ) ); - addLabel( "-diffuse", new THREE.Vector3( 0, 0, -300 ) ); + addLabel( "-diffuse", new THREE.Vector3( 0, 0, - 300 ) ); addLabel( "+diffuse", new THREE.Vector3( 0, 0, 300 ) ); particleLight = new THREE.Mesh( new THREE.SphereBufferGeometry( 4, 8, 8 ), new THREE.MeshBasicMaterial( { color: 0xffffff } ) ); diff --git a/examples/webgl_materials_variations_toon.html b/examples/webgl_materials_variations_toon.html index 32215582f894bc..ccd12db804316e 100644 --- a/examples/webgl_materials_variations_toon.html +++ b/examples/webgl_materials_variations_toon.html @@ -138,7 +138,7 @@ height: 1, curveSegments: 1 - }); + } ); var textMaterial = new THREE.MeshBasicMaterial( { color: 0xffffff } ); var textMesh = new THREE.Mesh( textGeo, textMaterial ); @@ -147,13 +147,13 @@ } - addLabel( "-shininess", new THREE.Vector3( -350, 0, 0 ) ); + addLabel( "-shininess", new THREE.Vector3( - 350, 0, 0 ) ); addLabel( "+shininess", new THREE.Vector3( 350, 0, 0 ) ); - addLabel( "-specular, -reflectivity", new THREE.Vector3( 0, -300, 0 ) ); + addLabel( "-specular, -reflectivity", new THREE.Vector3( 0, - 300, 0 ) ); addLabel( "+specular, +reflectivity", new THREE.Vector3( 0, 300, 0 ) ); - addLabel( "-diffuse", new THREE.Vector3( 0, 0, -300 ) ); + addLabel( "-diffuse", new THREE.Vector3( 0, 0, - 300 ) ); addLabel( "+diffuse", new THREE.Vector3( 0, 0, 300 ) ); particleLight = new THREE.Mesh( new THREE.SphereBufferGeometry( 4, 8, 8 ), new THREE.MeshBasicMaterial( { color: 0xffffff } ) ); diff --git a/examples/webgl_materials_video.html b/examples/webgl_materials_video.html index f2e9060d0cada1..c51221dd25ae8d 100644 --- a/examples/webgl_materials_video.html +++ b/examples/webgl_materials_video.html @@ -17,9 +17,7 @@ text-align:center; } - a { - color:#0078ff; - } + a { color:#0078ff; } #info { color:#fff; @@ -130,42 +128,42 @@ cube_count = 0; for ( i = 0; i < xgrid; i ++ ) - for ( j = 0; j < ygrid; j ++ ) { + for ( j = 0; j < ygrid; j ++ ) { - ox = i; - oy = j; + ox = i; + oy = j; - geometry = new THREE.BoxBufferGeometry( xsize, ysize, xsize ); + geometry = new THREE.BoxBufferGeometry( xsize, ysize, xsize ); - change_uvs( geometry, ux, uy, ox, oy ); + change_uvs( geometry, ux, uy, ox, oy ); - materials[ cube_count ] = new THREE.MeshLambertMaterial( parameters ); + materials[ cube_count ] = new THREE.MeshLambertMaterial( parameters ); - material = materials[ cube_count ]; + material = materials[ cube_count ]; - material.hue = i/xgrid; - material.saturation = 1 - j/ygrid; + material.hue = i / xgrid; + material.saturation = 1 - j / ygrid; - material.color.setHSL( material.hue, material.saturation, 0.5 ); + material.color.setHSL( material.hue, material.saturation, 0.5 ); - mesh = new THREE.Mesh( geometry, material ); + mesh = new THREE.Mesh( geometry, material ); - mesh.position.x = ( i - xgrid/2 ) * xsize; - mesh.position.y = ( j - ygrid/2 ) * ysize; - mesh.position.z = 0; + mesh.position.x = ( i - xgrid / 2 ) * xsize; + mesh.position.y = ( j - ygrid / 2 ) * ysize; + mesh.position.z = 0; - mesh.scale.x = mesh.scale.y = mesh.scale.z = 1; + mesh.scale.x = mesh.scale.y = mesh.scale.z = 1; - scene.add( mesh ); + scene.add( mesh ); - mesh.dx = 0.001 * ( 0.5 - Math.random() ); - mesh.dy = 0.001 * ( 0.5 - Math.random() ); + mesh.dx = 0.001 * ( 0.5 - Math.random() ); + mesh.dy = 0.001 * ( 0.5 - Math.random() ); - meshes[ cube_count ] = mesh; + meshes[ cube_count ] = mesh; - cube_count += 1; + cube_count += 1; - } + } renderer.autoClear = false; @@ -218,7 +216,7 @@ } - function onDocumentMouseMove(event) { + function onDocumentMouseMove( event ) { mouseX = ( event.clientX - windowHalfX ); mouseY = ( event.clientY - windowHalfY ) * 0.3; @@ -278,8 +276,8 @@ mesh = meshes[ i ]; - mesh.dx *= -1; - mesh.dy *= -1; + mesh.dx *= - 1; + mesh.dy *= - 1; } diff --git a/examples/webgl_materials_video_webcam.html b/examples/webgl_materials_video_webcam.html index b4b269b5a2bef3..b3efdb50d1d0e5 100644 --- a/examples/webgl_materials_video_webcam.html +++ b/examples/webgl_materials_video_webcam.html @@ -104,14 +104,14 @@ var constraints = { video: { width: 1280, height: 720, facingMode: 'user' } }; - navigator.mediaDevices.getUserMedia( constraints ).then( function( stream ) { + navigator.mediaDevices.getUserMedia( constraints ).then( function ( stream ) { - // apply the stream to the video element used in the texture + // apply the stream to the video element used in the texture - video.srcObject = stream; - video.play(); + video.srcObject = stream; + video.play(); - } ).catch( function( error ) { + } ).catch( function ( error ) { console.error( 'Unable to access the camera/webcam.', error ); @@ -123,23 +123,23 @@ } - } + } - function onWindowResize() { + function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); renderer.setSize( window.innerWidth, window.innerHeight ); - } + } - function animate() { + function animate() { requestAnimationFrame( animate ); renderer.render( scene, camera ); - } + } diff --git a/examples/webgl_materials_wireframe.html b/examples/webgl_materials_wireframe.html index 6cd21469702421..c62f8e46759907 100644 --- a/examples/webgl_materials_wireframe.html +++ b/examples/webgl_materials_wireframe.html @@ -74,7 +74,7 @@ material = new THREE.MeshBasicMaterial( { wireframe: true } ); mesh = new THREE.Mesh( geometry, material ); - mesh.position.x = -150; + mesh.position.x = - 150; scene.add( mesh ); // @@ -112,7 +112,7 @@ material.extensions.derivatives = true; mesh = new THREE.Mesh( geometry, material ); - mesh.position.x = -150; + mesh.position.x = - 150; scene.add( mesh ); // renderer diff --git a/examples/webgl_mirror.html b/examples/webgl_mirror.html index b034b675b4416f..9e662fa5c4f668 100644 --- a/examples/webgl_mirror.html +++ b/examples/webgl_mirror.html @@ -76,8 +76,8 @@ camera = new THREE.PerspectiveCamera( VIEW_ANGLE, ASPECT, NEAR, FAR ); camera.position.set( 0, 75, 160 ); - cameraControls = new THREE.OrbitControls(camera, renderer.domElement); - cameraControls.target.set( 0, 40, 0); + cameraControls = new THREE.OrbitControls( camera, renderer.domElement ); + cameraControls.target.set( 0, 40, 0 ); cameraControls.maxDistance = 400; cameraControls.minDistance = 10; cameraControls.update(); @@ -134,7 +134,7 @@ var geometry = new THREE.IcosahedronBufferGeometry( 5, 0 ); var material = new THREE.MeshPhongMaterial( { color: 0xffffff, emissive: 0x333333, flatShading: true } ); smallSphere = new THREE.Mesh( geometry, material ); - scene.add(smallSphere); + scene.add( smallSphere ); // walls var planeTop = new THREE.Mesh( planeGeo, new THREE.MeshPhongMaterial( { color: 0xffffff } ) ); @@ -159,7 +159,7 @@ scene.add( planeRight ); var planeLeft = new THREE.Mesh( planeGeo, new THREE.MeshPhongMaterial( { color: 0xff0000 } ) ); - planeLeft.position.x = -50; + planeLeft.position.x = - 50; planeLeft.position.y = 50; planeLeft.rotateY( Math.PI / 2 ); scene.add( planeLeft ); @@ -199,7 +199,7 @@ smallSphere.rotation.y = ( Math.PI / 2 ) - timer * 0.1; smallSphere.rotation.z = timer * 0.8; - renderer.render(scene, camera); + renderer.render( scene, camera ); } diff --git a/examples/webgl_mirror_nodes.html b/examples/webgl_mirror_nodes.html index 77a914a09ec05e..29fad9c6967346 100644 --- a/examples/webgl_mirror_nodes.html +++ b/examples/webgl_mirror_nodes.html @@ -106,7 +106,6 @@ var groundMirror = new THREE.ReflectorRTT( geometry, { clipBias: 0.003, textureWidth: WIDTH, textureHeight: HEIGHT } ); var mask = new THREE.SwitchNode( new THREE.TextureNode( decalDiffuse ), 'w' ); - var maskFlip = new THREE.Math1Node( mask, THREE.Math1Node.INVERT ); var mirror = new THREE.ReflectorNode( groundMirror ); @@ -129,13 +128,6 @@ THREE.OperatorNode.MUL ); - var clr = new THREE.Math3Node( - mirror, - new THREE.ColorNode( 0xFFFFFF ), - mask, - THREE.Math3Node.MIX - ); - var blurMirror = new THREE.BlurNode( mirror ); blurMirror.size = new THREE.Vector2( WIDTH, HEIGHT ); blurMirror.uv = new THREE.ExpressionNode( "projCoord.xyz / projCoord.q", "vec3" ); diff --git a/examples/webgl_modifier_subdivision.html b/examples/webgl_modifier_subdivision.html index 2530ad52d71600..aa2815b61d999a 100644 --- a/examples/webgl_modifier_subdivision.html +++ b/examples/webgl_modifier_subdivision.html @@ -37,9 +37,9 @@ // Create new object by parameters - var createSomething = function( klass, args ) { + var createSomething = function ( klass, args ) { - var F = function( klass, args ) { + var F = function ( klass, args ) { return klass.apply( this, args ); @@ -74,19 +74,19 @@ { type: 'TorusKnotGeometry', args: [ 100, 30 ], scale: 0.25, meshScale: 4 }, { type: 'SphereGeometry', args: [ 100, 3, 3 ], meshScale: 2 }, { type: 'IcosahedronGeometry', args: [ 100, 1 ], meshScale: 2 }, - { type: 'CylinderGeometry', args: [ 25, 75, 200, 8, 3 ]} , - { type: 'OctahedronGeometry', args: [200, 0], meshScale: 2 }, - { type: 'LatheGeometry', args: [ [ + { type: 'CylinderGeometry', args: [ 25, 75, 200, 8, 3 ] }, + { type: 'OctahedronGeometry', args: [ 200, 0 ], meshScale: 2 }, + { type: 'LatheGeometry', args: [[ new THREE.Vector2( 0, 0 ), new THREE.Vector2( 50, 50 ), new THREE.Vector2( 10, 100 ), new THREE.Vector2( 50, 150 ), - new THREE.Vector2( 0, 200 ) ] ]}, - { type: 'TextGeometry', args: ['&', { - size: 200, - height: 50, - curveSegments: 1 - }]}, + new THREE.Vector2( 0, 200 ) ]] }, + { type: 'TextGeometry', args: [ '&', { + size: 200, + height: 50, + curveSegments: 1 + } ] }, { type: 'PlaneGeometry', args: [ 200, 200, 4, 4 ] } ]; @@ -103,28 +103,32 @@ geometry = new THREE.Geometry().fromBufferGeometry( geometry ); - geometriesParams.push( {type: 'WaltHead', args: [ ], meshScale: 6 } ); + geometriesParams.push( { type: 'WaltHead', args: [ ], meshScale: 6 } ); + + THREE.WaltHead = function () { - THREE.WaltHead = function() { return geometry.clone(); - }; - updateInfo() + }; + + updateInfo(); - }); + } ); var loader2 = new THREE.BufferGeometryLoader(); loader2.load( 'models/json/suzanne_buffergeometry.json', function ( geometry ) { geometry = new THREE.Geometry().fromBufferGeometry( geometry ); - geometriesParams.push( {type: 'Suzanne', args: [ ], scale: 100, meshScale:2 } ); + geometriesParams.push( { type: 'Suzanne', args: [ ], scale: 100, meshScale: 2 } ); + + THREE.Suzanne = function () { - THREE.Suzanne = function() { return geometry.clone(); - }; - updateInfo() + }; + + updateInfo(); } ); @@ -159,11 +163,12 @@ } - function switchGeometry(i) { + function switchGeometry( i ) { geometryIndex = i; addStuff(); + } function updateInfo() { @@ -173,11 +178,13 @@ var dropdown = ''; @@ -188,7 +195,7 @@ ' more/less' + '
    Geometry: ' + dropdown + ' next' + '

    Vertices count: before ' + geometry.vertices.length + ' after ' + smooth.vertices.length + - '
    Face count: before ' + geometry.faces.length + ' after ' + smooth.faces.length + '
    Face count: before ' + geometry.faces.length + ' after ' + smooth.faces.length; } @@ -224,7 +231,7 @@ for ( var i = 0; i < smooth.faces.length; i ++ ) { - var face = smooth.faces[ i ]; + var face = smooth.faces[ i ]; for ( var j = 0; j < 3; j ++ ) { diff --git a/examples/webgl_modifier_tessellation.html b/examples/webgl_modifier_tessellation.html index ed061d2b503df0..aa5b4ed0de8add 100644 --- a/examples/webgl_modifier_tessellation.html +++ b/examples/webgl_modifier_tessellation.html @@ -112,7 +112,7 @@ function init( font ) { camera = new THREE.PerspectiveCamera( 40, WIDTH / HEIGHT, 1, 10000 ); - camera.position.set( -100, 100, 200 ); + camera.position.set( - 100, 100, 200 ); controls = new THREE.TrackballControls( camera ); @@ -133,7 +133,7 @@ bevelSize: 1, bevelEnabled: true - }); + } ); geometry.center(); @@ -170,11 +170,11 @@ for ( var i = 0; i < 3; i ++ ) { - colors[ index + ( 3 * i ) ] = color.r; + colors[ index + ( 3 * i ) ] = color.r; colors[ index + ( 3 * i ) + 1 ] = color.g; colors[ index + ( 3 * i ) + 2 ] = color.b; - displacement[ index + ( 3 * i ) ] = d; + displacement[ index + ( 3 * i ) ] = d; displacement[ index + ( 3 * i ) + 1 ] = d; displacement[ index + ( 3 * i ) + 2 ] = d; @@ -195,11 +195,11 @@ var shaderMaterial = new THREE.ShaderMaterial( { - uniforms: uniforms, - vertexShader: document.getElementById( 'vertexshader' ).textContent, + uniforms: uniforms, + vertexShader: document.getElementById( 'vertexshader' ).textContent, fragmentShader: document.getElementById( 'fragmentshader' ).textContent - }); + } ); // diff --git a/examples/webgl_morphtargets.html b/examples/webgl_morphtargets.html index 50131f30aec88a..94071a9cd4b8dc 100644 --- a/examples/webgl_morphtargets.html +++ b/examples/webgl_morphtargets.html @@ -23,9 +23,7 @@ color: #ffffff; } - a { - color: #ffffff; - } + a { color: #ffffff; } @@ -51,12 +49,10 @@ } - var container, stats; + var container; var camera, scene, renderer; - var geometry, objects; - var mesh; init(); @@ -129,14 +125,46 @@ var gui = new dat.GUI(); var folder = gui.addFolder( 'Morph Targets' ); - folder.add( params, 'influence1', 0, 1 ).step( 0.01 ).onChange( function( value ) { mesh.morphTargetInfluences[ 0 ] = value; } ); - folder.add( params, 'influence2', 0, 1 ).step( 0.01 ).onChange( function( value ) { mesh.morphTargetInfluences[ 1 ] = value; } ); - folder.add( params, 'influence3', 0, 1 ).step( 0.01 ).onChange( function( value ) { mesh.morphTargetInfluences[ 2 ] = value; } ); - folder.add( params, 'influence4', 0, 1 ).step( 0.01 ).onChange( function( value ) { mesh.morphTargetInfluences[ 3 ] = value; } ); - folder.add( params, 'influence5', 0, 1 ).step( 0.01 ).onChange( function( value ) { mesh.morphTargetInfluences[ 4 ] = value; } ); - folder.add( params, 'influence6', 0, 1 ).step( 0.01 ).onChange( function( value ) { mesh.morphTargetInfluences[ 5 ] = value; } ); - folder.add( params, 'influence7', 0, 1 ).step( 0.01 ).onChange( function( value ) { mesh.morphTargetInfluences[ 6 ] = value; } ); - folder.add( params, 'influence8', 0, 1 ).step( 0.01 ).onChange( function( value ) { mesh.morphTargetInfluences[ 7 ] = value; } ); + folder.add( params, 'influence1', 0, 1 ).step( 0.01 ).onChange( function ( value ) { + + mesh.morphTargetInfluences[ 0 ] = value; + + } ); + folder.add( params, 'influence2', 0, 1 ).step( 0.01 ).onChange( function ( value ) { + + mesh.morphTargetInfluences[ 1 ] = value; + + } ); + folder.add( params, 'influence3', 0, 1 ).step( 0.01 ).onChange( function ( value ) { + + mesh.morphTargetInfluences[ 2 ] = value; + + } ); + folder.add( params, 'influence4', 0, 1 ).step( 0.01 ).onChange( function ( value ) { + + mesh.morphTargetInfluences[ 3 ] = value; + + } ); + folder.add( params, 'influence5', 0, 1 ).step( 0.01 ).onChange( function ( value ) { + + mesh.morphTargetInfluences[ 4 ] = value; + + } ); + folder.add( params, 'influence6', 0, 1 ).step( 0.01 ).onChange( function ( value ) { + + mesh.morphTargetInfluences[ 5 ] = value; + + } ); + folder.add( params, 'influence7', 0, 1 ).step( 0.01 ).onChange( function ( value ) { + + mesh.morphTargetInfluences[ 6 ] = value; + + } ); + folder.add( params, 'influence8', 0, 1 ).step( 0.01 ).onChange( function ( value ) { + + mesh.morphTargetInfluences[ 7 ] = value; + + } ); folder.open(); // diff --git a/examples/webgl_morphtargets_human.html b/examples/webgl_morphtargets_human.html deleted file mode 100644 index 3cc39e25f9f478..00000000000000 --- a/examples/webgl_morphtargets_human.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - three.js webgl - morph target - human - - - - - - - -
    - -
    - three.js webgl - morph targets - human -
    - - - - - - - - - - - - - - - diff --git a/examples/webgl_morphtargets_sphere.html b/examples/webgl_morphtargets_sphere.html index e4948e26bbc9b7..8ffd2ab293eb9a 100644 --- a/examples/webgl_morphtargets_sphere.html +++ b/examples/webgl_morphtargets_sphere.html @@ -42,12 +42,10 @@ + + + + + + + + + + diff --git a/examples/webgl_multiple_views.html b/examples/webgl_multiple_views.html index 0becde21ff80f2..51de22a1845983 100644 --- a/examples/webgl_multiple_views.html +++ b/examples/webgl_multiple_views.html @@ -64,10 +64,12 @@ eye: [ 0, 300, 1800 ], up: [ 0, 1, 0 ], fov: 30, - updateCamera: function ( camera, scene, mouseX, mouseY ) { + updateCamera: function ( camera, scene, mouseX ) { + camera.position.x += mouseX * 0.05; - camera.position.x = Math.max( Math.min( camera.position.x, 2000 ), -2000 ); + camera.position.x = Math.max( Math.min( camera.position.x, 2000 ), - 2000 ); camera.lookAt( scene.position ); + } }, { @@ -79,10 +81,12 @@ eye: [ 0, 1800, 0 ], up: [ 0, 0, 1 ], fov: 45, - updateCamera: function ( camera, scene, mouseX, mouseY ) { + updateCamera: function ( camera, scene, mouseX ) { + camera.position.x -= mouseX * 0.05; - camera.position.x = Math.max( Math.min( camera.position.x, 2000 ), -2000 ); + camera.position.x = Math.max( Math.min( camera.position.x, 2000 ), - 2000 ); camera.lookAt( camera.position.clone().setY( 0 ) ); + } }, { @@ -94,10 +98,12 @@ eye: [ 1400, 800, 1400 ], up: [ 0, 1, 0 ], fov: 60, - updateCamera: function ( camera, scene, mouseX, mouseY ) { + updateCamera: function ( camera, scene, mouseX ) { + camera.position.y -= mouseX * 0.05; - camera.position.y = Math.max( Math.min( camera.position.y, 1600 ), -1600 ); + camera.position.y = Math.max( Math.min( camera.position.y, 1600 ), - 1600 ); camera.lookAt( scene.position ); + } } ]; @@ -109,9 +115,9 @@ container = document.getElementById( 'container' ); - for (var ii = 0; ii < views.length; ++ii ) { + for ( var ii = 0; ii < views.length; ++ ii ) { - var view = views[ii]; + var view = views[ ii ]; var camera = new THREE.PerspectiveCamera( view.fov, window.innerWidth / window.innerHeight, 1, 10000 ); camera.position.fromArray( view.eye ); camera.up.fromArray( view.up ); @@ -148,19 +154,19 @@ shadowMesh = new THREE.Mesh( shadowGeo, shadowMaterial ); shadowMesh.position.y = - 250; - shadowMesh.rotation.x = - Math. PI / 2; + shadowMesh.rotation.x = - Math.PI / 2; scene.add( shadowMesh ); shadowMesh = new THREE.Mesh( shadowGeo, shadowMaterial ); shadowMesh.position.x = - 400; shadowMesh.position.y = - 250; - shadowMesh.rotation.x = - Math. PI / 2; + shadowMesh.rotation.x = - Math.PI / 2; scene.add( shadowMesh ); shadowMesh = new THREE.Mesh( shadowGeo, shadowMaterial ); shadowMesh.position.x = 400; shadowMesh.position.y = - 250; - shadowMesh.rotation.x = - Math. PI / 2; + shadowMesh.rotation.x = - Math.PI / 2; scene.add( shadowMesh ); var radius = 200; @@ -244,10 +250,10 @@ if ( windowWidth != window.innerWidth || windowHeight != window.innerHeight ) { - windowWidth = window.innerWidth; + windowWidth = window.innerWidth; windowHeight = window.innerHeight; - renderer.setSize ( windowWidth, windowHeight ); + renderer.setSize( windowWidth, windowHeight ); } @@ -259,22 +265,23 @@ stats.update(); requestAnimationFrame( animate ); + } function render() { updateSize(); - for ( var ii = 0; ii < views.length; ++ii ) { + for ( var ii = 0; ii < views.length; ++ ii ) { - var view = views[ii]; + var view = views[ ii ]; var camera = view.camera; view.updateCamera( camera, scene, mouseX, mouseY ); - var left = Math.floor( windowWidth * view.left ); - var top = Math.floor( windowHeight * view.top ); - var width = Math.floor( windowWidth * view.width ); + var left = Math.floor( windowWidth * view.left ); + var top = Math.floor( windowHeight * view.top ); + var width = Math.floor( windowWidth * view.width ); var height = Math.floor( windowHeight * view.height ); renderer.setViewport( left, top, width, height ); diff --git a/examples/webgl_nearestneighbour.html b/examples/webgl_nearestneighbour.html index b791f6ab2dd306..61f4e222ea44a7 100644 --- a/examples/webgl_nearestneighbour.html +++ b/examples/webgl_nearestneighbour.html @@ -80,10 +80,6 @@ var clock = new THREE.Clock(); - var blocker = document.getElementById( 'blocker' ); - var instructions = document.getElementById( 'instructions' ); - - function init() { camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 1, 1000000 ); @@ -128,7 +124,7 @@ tex1: { value: imagePreviewTexture }, zoom: { value: 9.0 } }, - vertexShader: document.getElementById( 'vertexshader' ).textContent, + vertexShader: document.getElementById( 'vertexshader' ).textContent, fragmentShader: document.getElementById( 'fragmentshader' ).textContent, transparent: true } ); @@ -137,7 +133,7 @@ //create particles with buffer geometry var distanceFunction = function ( a, b ) { - return Math.pow( a[ 0 ] - b [0 ], 2 ) + Math.pow( a[ 1 ] - b[ 1 ], 2 ) + Math.pow( a[ 2 ] - b[ 2 ], 2 ); + return Math.pow( a[ 0 ] - b[ 0 ], 2 ) + Math.pow( a[ 1 ] - b[ 1 ], 2 ) + Math.pow( a[ 2 ] - b[ 2 ], 2 ); }; @@ -183,6 +179,7 @@ renderer.setSize( window.innerWidth, window.innerHeight ); controls.handleResize(); + } function animate() { diff --git a/examples/webgl_octree.html b/examples/webgl_octree.html index 78c45ade2b3363..2da44731a4c000 100644 --- a/examples/webgl_octree.html +++ b/examples/webgl_octree.html @@ -24,7 +24,6 @@ renderer, octree, geometry = new THREE.BoxBufferGeometry( 50, 50, 50 ), - material, mesh, meshes = [], meshesSearch = [], @@ -157,9 +156,7 @@ } - } - // else remove objects from octree - else { + } else { // else remove objects from octree // get object @@ -203,7 +200,7 @@ // revert previous search objects to base color - for ( i = 0, il = meshesSearch.length; i < il; i++ ) { + for ( i = 0, il = meshesSearch.length; i < il; i ++ ) { meshesSearch[ i ].object.material.color.copy( base ); @@ -228,7 +225,7 @@ // set color of all meshes found in search - for ( i = 0, il = meshesSearch.length; i < il; i++ ) { + for ( i = 0, il = meshesSearch.length; i < il; i ++ ) { meshesSearch[ i ].object.material.color.copy( found ); diff --git a/examples/webgl_octree_raycasting.html b/examples/webgl_octree_raycasting.html index 96fa7d26416bb5..a5985af4a67f9e 100644 --- a/examples/webgl_octree_raycasting.html +++ b/examples/webgl_octree_raycasting.html @@ -32,22 +32,16 @@ var octree; var objects = []; - var objectsSearch = []; var totalFaces = 0; var simpleMeshCount = 5000; var radius = 100; var radiusMax = radius * 10; var radiusMaxHalf = radiusMax * 0.5; - var radiusSearch = radius * 0.75; var baseColor = 0x333333; - var foundColor = 0x12C0E3; var intersectColor = 0x00D66B; - var clock = new THREE.Clock(); - var searchDelay = 1; - var searchInterval = 0; var useOctree = true; var raycaster = new THREE.Raycaster(); @@ -103,7 +97,7 @@ var simpleGeometry = new THREE.BoxGeometry( 1, 1, 1 ); - for ( var i = 0; i < simpleMeshCount - 1; i++ ) { + for ( var i = 0; i < simpleMeshCount - 1; i ++ ) { totalFaces += simpleGeometry.faces.length; @@ -169,19 +163,19 @@ toggle.style.background = '#FFFFFF'; container.appendChild( toggle ); - var checkbox = document.createElement('input'); + var checkbox = document.createElement( 'input' ); checkbox.type = "checkbox"; checkbox.name = "octreeToggle"; checkbox.value = "value"; checkbox.id = "octreeToggle"; checkbox.checked = true; - var label = document.createElement('label'); + var label = document.createElement( 'label' ); label.htmlFor = "octreeToggle"; - label.appendChild(document.createTextNode('Use Octree') ); + label.appendChild( document.createTextNode( 'Use Octree' ) ); - toggle.appendChild(checkbox); - toggle.appendChild(label); + toggle.appendChild( checkbox ); + toggle.appendChild( label ); // events @@ -192,9 +186,9 @@ } - function toggleOctree () { + function toggleOctree() { - useOctree = !useOctree; + useOctree = ! useOctree; } @@ -317,14 +311,13 @@ numObjects = octreeObjects.length; - for ( var i = 0, il = numObjects; i < il; i++ ) { + for ( var i = 0, il = numObjects; i < il; i ++ ) { numFaces += octreeObjects[ i ].faces.length; } - } - else { + } else { intersections = raycaster.intersectObjects( objects ); numObjects = objects.length; @@ -345,8 +338,7 @@ document.body.style.cursor = 'pointer'; - } - else if ( intersected ) { + } else if ( intersected ) { intersected.material.color.setHex( baseColor ); intersected = null; diff --git a/examples/webgl_panorama_cube.html b/examples/webgl_panorama_cube.html index 0a227a3abc105e..09bc00a9bffc15 100644 --- a/examples/webgl_panorama_cube.html +++ b/examples/webgl_panorama_cube.html @@ -96,7 +96,7 @@ var imageObj = new Image(); - imageObj.onload = function() { + imageObj.onload = function () { var canvas, context; var tileWidth = imageObj.height; @@ -108,7 +108,7 @@ canvas.height = tileWidth; canvas.width = tileWidth; context.drawImage( imageObj, tileWidth * i, 0, tileWidth, tileWidth, 0, 0, tileWidth, tileWidth ); - textures[ i ].image = canvas + textures[ i ].image = canvas; textures[ i ].needsUpdate = true; } diff --git a/examples/webgl_panorama_dualfisheye.html b/examples/webgl_panorama_dualfisheye.html index 0f1dfe4605eb40..08686ce52b4d9c 100644 --- a/examples/webgl_panorama_dualfisheye.html +++ b/examples/webgl_panorama_dualfisheye.html @@ -41,11 +41,14 @@ var camera, scene, renderer; var isUserInteracting = false, - onMouseDownMouseX = 0, onMouseDownMouseY = 0, - lon = 0, onMouseDownLon = 0, - lat = 0, onMouseDownLat = 0, - phi = 0, theta = 0, - distance = 500; + lon = 0, lat = 0, + phi = 0, theta = 0, + distance = 500, + onPointerDownPointerX = 0, + onPointerDownPointerY = 0, + + onPointerDownLon = 0, + onPointerDownLat = 0; init(); animate(); @@ -153,7 +156,7 @@ } - function onDocumentMouseUp( event ) { + function onDocumentMouseUp() { isUserInteracting = false; diff --git a/examples/webgl_panorama_equirectangular.html b/examples/webgl_panorama_equirectangular.html index da0072c8dacbbf..4d70795abc01af 100644 --- a/examples/webgl_panorama_equirectangular.html +++ b/examples/webgl_panorama_equirectangular.html @@ -43,10 +43,10 @@ var camera, scene, renderer; var isUserInteracting = false, - onMouseDownMouseX = 0, onMouseDownMouseY = 0, - lon = 0, onMouseDownLon = 0, - lat = 0, onMouseDownLat = 0, - phi = 0, theta = 0; + onMouseDownMouseX = 0, onMouseDownMouseY = 0, + lon = 0, onMouseDownLon = 0, + lat = 0, onMouseDownLat = 0, + phi = 0, theta = 0; init(); animate(); @@ -98,13 +98,13 @@ }, false ); - document.addEventListener( 'dragenter', function ( event ) { + document.addEventListener( 'dragenter', function () { document.body.style.opacity = 0.5; }, false ); - document.addEventListener( 'dragleave', function ( event ) { + document.addEventListener( 'dragleave', function () { document.body.style.opacity = 1; @@ -171,7 +171,7 @@ } - function onPointerUp( event ) { + function onPointerUp() { isUserInteracting = false; diff --git a/examples/webgl_performance.html b/examples/webgl_performance.html index 1b8e1ef96b746e..212530151b2f7c 100644 --- a/examples/webgl_performance.html +++ b/examples/webgl_performance.html @@ -103,7 +103,7 @@ } - function onDocumentMouseMove(event) { + function onDocumentMouseMove( event ) { mouseX = ( event.clientX - windowHalfX ) * 10; mouseY = ( event.clientY - windowHalfY ) * 10; diff --git a/examples/webgl_performance_doublesided.html b/examples/webgl_performance_doublesided.html index a0a9fe5c82c017..61a4eb4d377919 100644 --- a/examples/webgl_performance_doublesided.html +++ b/examples/webgl_performance_doublesided.html @@ -33,8 +33,6 @@ var camera, scene, renderer; - var mesh, geometry; - var mouseX = 0, mouseY = 0; var SCREEN_WIDTH = window.innerWidth, @@ -65,7 +63,7 @@ scene.add( light ); var light = new THREE.PointLight( 0xff1100, 1, 5500 ); - light.position.set( -4000, 0, 0 ); + light.position.set( - 4000, 0, 0 ); scene.add( light ); var light = new THREE.PointLight( 0xffaa00, 2, 3000 ); @@ -75,10 +73,10 @@ var path = "textures/cube/SwedishRoyalCastle/"; var format = '.jpg'; var urls = [ - path + 'px' + format, path + 'nx' + format, - path + 'py' + format, path + 'ny' + format, - path + 'pz' + format, path + 'nz' + format - ]; + path + 'px' + format, path + 'nx' + format, + path + 'py' + format, path + 'ny' + format, + path + 'pz' + format, path + 'nz' + format + ]; var reflectionCube = new THREE.CubeTextureLoader().load( urls ); reflectionCube.format = THREE.RGBFormat; @@ -125,7 +123,7 @@ // - function onWindowResize( event ) { + function onWindowResize() { SCREEN_WIDTH = window.innerWidth; SCREEN_HEIGHT = window.innerHeight; @@ -140,7 +138,7 @@ } - function onDocumentMouseMove(event) { + function onDocumentMouseMove( event ) { mouseX = ( event.clientX - windowHalfX ) * 10; mouseY = ( event.clientY - windowHalfY ) * 10; diff --git a/examples/webgl_performance_static.html b/examples/webgl_performance_static.html index 9b7c55d8e27a4b..0f0ea5e292501c 100644 --- a/examples/webgl_performance_static.html +++ b/examples/webgl_performance_static.html @@ -25,8 +25,6 @@ var camera, scene, renderer; - var mesh, zmesh, lightMesh, geometry; - var mouseX = 0, mouseY = 0; var windowHalfX = window.innerWidth / 2; @@ -103,7 +101,7 @@ } - function onDocumentMouseMove(event) { + function onDocumentMouseMove( event ) { mouseX = ( event.clientX - windowHalfX ) * 10; mouseY = ( event.clientY - windowHalfY ) * 10; diff --git a/examples/webgl_physics_cloth.html b/examples/webgl_physics_cloth.html index a8cea55008e2f2..3efe50d98646a1 100644 --- a/examples/webgl_physics_cloth.html +++ b/examples/webgl_physics_cloth.html @@ -21,9 +21,7 @@ padding: 5px; } - a { - color: #a06851; - } + a { color: #a06851; } @@ -47,8 +45,6 @@ } - // - Global variables - - // Graphics variables var container, stats; var camera, controls, scene, renderer; @@ -56,7 +52,7 @@ var clock = new THREE.Clock(); // Physics variables - var gravityConstant = -9.8; + var gravityConstant = - 9.8; var physicsWorld; var rigidBodies = []; var margin = 0.05; @@ -64,17 +60,12 @@ var cloth; var transformAux1 = new Ammo.btTransform(); - var time = 0; var armMovement = 0; - // - Main code - - init(); animate(); - // - Functions - - function init() { initGraphics(); @@ -96,7 +87,7 @@ scene = new THREE.Scene(); scene.background = new THREE.Color( 0xbfd1e5 ); - camera.position.set( -12, 7, 4 ); + camera.position.set( - 12, 7, 4 ); controls = new THREE.OrbitControls( camera ); controls.target.set( 0, 2, 0 ); @@ -113,13 +104,13 @@ scene.add( ambientLight ); var light = new THREE.DirectionalLight( 0xffffff, 1 ); - light.position.set( -7, 10, 15 ); + light.position.set( - 7, 10, 15 ); light.castShadow = true; var d = 10; - light.shadow.camera.left = -d; + light.shadow.camera.left = - d; light.shadow.camera.right = d; light.shadow.camera.top = d; - light.shadow.camera.bottom = -d; + light.shadow.camera.bottom = - d; light.shadow.camera.near = 2; light.shadow.camera.far = 50; @@ -127,7 +118,7 @@ light.shadow.mapSize.x = 1024; light.shadow.mapSize.y = 1024; - light.shadow.bias = -0.003; + light.shadow.bias = - 0.003; scene.add( light ); @@ -153,7 +144,7 @@ var broadphase = new Ammo.btDbvtBroadphase(); var solver = new Ammo.btSequentialImpulseConstraintSolver(); var softBodySolver = new Ammo.btDefaultSoftBodySolver(); - physicsWorld = new Ammo.btSoftRigidDynamicsWorld( dispatcher, broadphase, solver, collisionConfiguration, softBodySolver); + physicsWorld = new Ammo.btSoftRigidDynamicsWorld( dispatcher, broadphase, solver, collisionConfiguration, softBodySolver ); physicsWorld.setGravity( new Ammo.btVector3( 0, gravityConstant, 0 ) ); physicsWorld.getWorldInfo().set_m_gravity( new Ammo.btVector3( 0, gravityConstant, 0 ) ); @@ -170,13 +161,15 @@ var ground = createParalellepiped( 40, 1, 40, 0, pos, quat, new THREE.MeshPhongMaterial( { color: 0xFFFFFF } ) ); ground.castShadow = true; ground.receiveShadow = true; - textureLoader.load( "textures/grid.png", function( texture ) { + textureLoader.load( "textures/grid.png", function ( texture ) { + texture.wrapS = THREE.RepeatWrapping; texture.wrapT = THREE.RepeatWrapping; texture.repeat.set( 40, 40 ); ground.material.map = texture; ground.material.needsUpdate = true; - } ); + + } ); // Wall var brickMass = 0.5; @@ -195,17 +188,21 @@ pos.z = z0; if ( oddRow ) { + pos.z -= 0.25 * brickLength; - } - var nRow = oddRow? numBricksLength + 1 : numBricksLength; + } + + var nRow = oddRow ? numBricksLength + 1 : numBricksLength; for ( var i = 0; i < nRow; i ++ ) { var brickLengthCurrent = brickLength; var brickMassCurrent = brickMass; if ( oddRow && ( i == 0 || i == nRow - 1 ) ) { + brickLengthCurrent *= 0.5; brickMassCurrent *= 0.5; + } var brick = createParalellepiped( brickDepth, brickHeight, brickLengthCurrent, brickMassCurrent, pos, quat, createMaterial() ); @@ -213,14 +210,18 @@ brick.receiveShadow = true; if ( oddRow && ( i == 0 || i == nRow - 2 ) ) { + pos.z += 0.75 * brickLength; - } - else { + + } else { + pos.z += brickLength; + } } pos.y += brickHeight; + } // The cloth @@ -229,9 +230,7 @@ var clothHeight = 3; var clothNumSegmentsZ = clothWidth * 5; var clothNumSegmentsY = clothHeight * 5; - var clothSegmentLengthZ = clothWidth / clothNumSegmentsZ; - var clothSegmentLengthY = clothHeight / clothNumSegmentsY; - var clothPos = new THREE.Vector3( -3, 3, 2 ); + var clothPos = new THREE.Vector3( - 3, 3, 2 ); //var clothGeometry = new THREE.BufferGeometry(); var clothGeometry = new THREE.PlaneBufferGeometry( clothWidth, clothHeight, clothNumSegmentsZ, clothNumSegmentsY ); @@ -243,12 +242,14 @@ cloth.castShadow = true; cloth.receiveShadow = true; scene.add( cloth ); - textureLoader.load( "textures/grid.png", function( texture ) { + textureLoader.load( "textures/grid.png", function ( texture ) { + texture.wrapS = THREE.RepeatWrapping; texture.wrapT = THREE.RepeatWrapping; texture.repeat.set( clothNumSegmentsZ, clothNumSegmentsY ); cloth.material.map = texture; cloth.material.needsUpdate = true; + } ); // Cloth physic object @@ -264,7 +265,7 @@ clothSoftBody.setTotalMass( 0.9, false ); Ammo.castObject( clothSoftBody, Ammo.btCollisionObject ).getCollisionShape().setMargin( margin * 3 ); - physicsWorld.addSoftBody( clothSoftBody, 1, -1 ); + physicsWorld.addSoftBody( clothSoftBody, 1, - 1 ); cloth.userData.physicsBody = clothSoftBody; // Disable deactivation clothSoftBody.setActivationState( 4 ); @@ -295,7 +296,7 @@ // Hinge constraint to move the arm var pivotA = new Ammo.btVector3( 0, pylonHeight * 0.5, 0 ); - var pivotB = new Ammo.btVector3( 0, -0.2, - armLength * 0.5 ); + var pivotB = new Ammo.btVector3( 0, - 0.2, - armLength * 0.5 ); var axis = new Ammo.btVector3( 0, 1, 0 ); hinge = new Ammo.btHingeConstraint( pylon.userData.physicsBody, arm.userData.physicsBody, pivotA, pivotB, axis, axis, true ); physicsWorld.addConstraint( hinge, true ); @@ -336,10 +337,12 @@ scene.add( threeObject ); if ( mass > 0 ) { + rigidBodies.push( threeObject ); // Disable deactivation body.setActivationState( 4 ); + } physicsWorld.addRigidBody( body ); @@ -347,36 +350,42 @@ } function createRandomColor() { + return Math.floor( Math.random() * ( 1 << 24 ) ); + } function createMaterial() { - return new THREE.MeshPhongMaterial( { color: createRandomColor() } ); + + return new THREE.MeshPhongMaterial( { color: createRandomColor() } ); + } function initInput() { - window.addEventListener( 'keydown', function( event ) { + window.addEventListener( 'keydown', function ( event ) { + + switch ( event.keyCode ) { - switch ( event.keyCode ) { - // Q - case 81: - armMovement = 1; + // Q + case 81: + armMovement = 1; break; // A - case 65: - armMovement = - 1; + case 65: + armMovement = - 1; break; - } - }, false ); + } + + }, false ); - window.addEventListener( 'keyup', function( event ) { + window.addEventListener( 'keyup', function () { - armMovement = 0; + armMovement = 0; - }, false ); + }, false ); } @@ -406,8 +415,6 @@ renderer.render( scene, camera ); - time += deltaTime; - } function updatePhysics( deltaTime ) { @@ -428,9 +435,9 @@ var node = nodes.at( i ); var nodePos = node.get_m_x(); - clothPositions[ indexFloat++ ] = nodePos.x(); - clothPositions[ indexFloat++ ] = nodePos.y(); - clothPositions[ indexFloat++ ] = nodePos.z(); + clothPositions[ indexFloat ++ ] = nodePos.x(); + clothPositions[ indexFloat ++ ] = nodePos.y(); + clothPositions[ indexFloat ++ ] = nodePos.z(); } cloth.geometry.computeVertexNormals(); @@ -438,7 +445,8 @@ cloth.geometry.attributes.normal.needsUpdate = true; // Update rigid bodies - for ( var i = 0, il = rigidBodies.length; i < il; i++ ) { + for ( var i = 0, il = rigidBodies.length; i < il; i ++ ) { + var objThree = rigidBodies[ i ]; var objPhys = objThree.userData.physicsBody; var ms = objPhys.getMotionState(); @@ -451,6 +459,7 @@ objThree.quaternion.set( q.x(), q.y(), q.z(), q.w() ); } + } } diff --git a/examples/webgl_physics_rope.html b/examples/webgl_physics_rope.html index 639aea6550db97..66a50648639ae4 100644 --- a/examples/webgl_physics_rope.html +++ b/examples/webgl_physics_rope.html @@ -21,9 +21,7 @@ padding: 5px; } - a { - color: #a06851; - } + a { color: #a06851; } @@ -48,8 +46,6 @@ } - // - Global variables - - // Graphics variables var container, stats; var camera, controls, scene, renderer; @@ -57,7 +53,7 @@ var clock = new THREE.Clock(); // Physics variables - var gravityConstant = -9.8; + var gravityConstant = - 9.8; var collisionConfiguration; var dispatcher; var broadphase; @@ -70,17 +66,11 @@ var rope; var transformAux1 = new Ammo.btTransform(); - var time = 0; var armMovement = 0; - // - Main code - - init(); animate(); - - // - Functions - - function init() { initGraphics(); @@ -102,7 +92,7 @@ scene = new THREE.Scene(); scene.background = new THREE.Color( 0xbfd1e5 ); - camera.position.set( -7, 5, 8 ); + camera.position.set( - 7, 5, 8 ); controls = new THREE.OrbitControls( camera ); controls.target.set( 0, 2, 0 ); @@ -119,13 +109,13 @@ scene.add( ambientLight ); var light = new THREE.DirectionalLight( 0xffffff, 1 ); - light.position.set( -10, 10, 5 ); + light.position.set( - 10, 10, 5 ); light.castShadow = true; var d = 10; - light.shadow.camera.left = -d; + light.shadow.camera.left = - d; light.shadow.camera.right = d; light.shadow.camera.top = d; - light.shadow.camera.bottom = -d; + light.shadow.camera.bottom = - d; light.shadow.camera.near = 2; light.shadow.camera.far = 50; @@ -135,7 +125,6 @@ scene.add( light ); - container.innerHTML = ""; container.appendChild( renderer.domElement ); @@ -160,7 +149,7 @@ broadphase = new Ammo.btDbvtBroadphase(); solver = new Ammo.btSequentialImpulseConstraintSolver(); softBodySolver = new Ammo.btDefaultSoftBodySolver(); - physicsWorld = new Ammo.btSoftRigidDynamicsWorld( dispatcher, broadphase, solver, collisionConfiguration, softBodySolver); + physicsWorld = new Ammo.btSoftRigidDynamicsWorld( dispatcher, broadphase, solver, collisionConfiguration, softBodySolver ); physicsWorld.setGravity( new Ammo.btVector3( 0, gravityConstant, 0 ) ); physicsWorld.getWorldInfo().set_m_gravity( new Ammo.btVector3( 0, gravityConstant, 0 ) ); @@ -177,12 +166,14 @@ var ground = createParalellepiped( 40, 1, 40, 0, pos, quat, new THREE.MeshPhongMaterial( { color: 0xFFFFFF } ) ); ground.castShadow = true; ground.receiveShadow = true; - textureLoader.load( "textures/grid.png", function( texture ) { + textureLoader.load( "textures/grid.png", function ( texture ) { + texture.wrapS = THREE.RepeatWrapping; texture.wrapT = THREE.RepeatWrapping; texture.repeat.set( 40, 40 ); ground.material.map = texture; ground.material.needsUpdate = true; + } ); @@ -195,7 +186,7 @@ ball.receiveShadow = true; var ballShape = new Ammo.btSphereShape( ballRadius ); ballShape.setMargin( margin ); - pos.set( -3, 2, 0 ); + pos.set( - 3, 2, 0 ); quat.set( 0, 0, 0, 1 ); createRigidBody( ball, ballShape, ballMass, pos, quat ); ball.userData.physicsBody.setFriction( 0.5 ); @@ -217,17 +208,21 @@ pos.z = z0; if ( oddRow ) { + pos.z -= 0.25 * brickLength; + } - var nRow = oddRow? numBricksLength + 1 : numBricksLength; + var nRow = oddRow ? numBricksLength + 1 : numBricksLength; for ( var i = 0; i < nRow; i ++ ) { var brickLengthCurrent = brickLength; var brickMassCurrent = brickMass; if ( oddRow && ( i == 0 || i == nRow - 1 ) ) { + brickLengthCurrent *= 0.5; brickMassCurrent *= 0.5; + } var brick = createParalellepiped( brickDepth, brickHeight, brickLengthCurrent, brickMassCurrent, pos, quat, createMaterial() ); @@ -235,14 +230,18 @@ brick.receiveShadow = true; if ( oddRow && ( i == 0 || i == nRow - 2 ) ) { + pos.z += 0.75 * brickLength; - } - else { + + } else { + pos.z += brickLength; + } } pos.y += brickHeight; + } // The rope @@ -259,12 +258,16 @@ var ropePositions = []; var ropeIndices = []; - for ( var i = 0; i < ropeNumSegments + 1; i++ ) { + for ( var i = 0; i < ropeNumSegments + 1; i ++ ) { + ropePositions.push( ropePos.x, ropePos.y + i * segmentLength, ropePos.z ); + } - for ( var i = 0; i < ropeNumSegments; i++ ) { + for ( var i = 0; i < ropeNumSegments; i ++ ) { + ropeIndices.push( i, i + 1 ); + } ropeGeometry.setIndex( new THREE.BufferAttribute( new Uint16Array( ropeIndices ), 1 ) ); @@ -285,7 +288,7 @@ sbConfig.set_piterations( 10 ); ropeSoftBody.setTotalMass( ropeMass, false ); Ammo.castObject( ropeSoftBody, Ammo.btCollisionObject ).getCollisionShape().setMargin( margin * 3 ); - physicsWorld.addSoftBody( ropeSoftBody, 1, -1 ); + physicsWorld.addSoftBody( ropeSoftBody, 1, - 1 ); rope.userData.physicsBody = ropeSoftBody; // Disable deactivation ropeSoftBody.setActivationState( 4 ); @@ -316,7 +319,7 @@ // Hinge constraint to move the arm var pivotA = new Ammo.btVector3( 0, pylonHeight * 0.5, 0 ); - var pivotB = new Ammo.btVector3( 0, -0.2, - armLength * 0.5 ); + var pivotB = new Ammo.btVector3( 0, - 0.2, - armLength * 0.5 ); var axis = new Ammo.btVector3( 0, 1, 0 ); hinge = new Ammo.btHingeConstraint( pylon.userData.physicsBody, arm.userData.physicsBody, pivotA, pivotB, axis, axis, true ); physicsWorld.addConstraint( hinge, true ); @@ -358,10 +361,12 @@ scene.add( threeObject ); if ( mass > 0 ) { + rigidBodies.push( threeObject ); // Disable deactivation body.setActivationState( 4 ); + } physicsWorld.addRigidBody( body ); @@ -369,32 +374,38 @@ } function createRandomColor() { + return Math.floor( Math.random() * ( 1 << 24 ) ); + } function createMaterial() { + return new THREE.MeshPhongMaterial( { color: createRandomColor() } ); + } function initInput() { - window.addEventListener( 'keydown', function( event ) { + window.addEventListener( 'keydown', function ( event ) { switch ( event.keyCode ) { + // Q case 81: armMovement = 1; - break; + break; // A case 65: armMovement = - 1; - break; + break; + } }, false ); - window.addEventListener( 'keyup', function( event ) { + window.addEventListener( 'keyup', function () { armMovement = 0; @@ -428,8 +439,6 @@ renderer.render( scene, camera ); - time += deltaTime; - } function updatePhysics( deltaTime ) { @@ -450,15 +459,16 @@ var node = nodes.at( i ); var nodePos = node.get_m_x(); - ropePositions[ indexFloat++ ] = nodePos.x(); - ropePositions[ indexFloat++ ] = nodePos.y(); - ropePositions[ indexFloat++ ] = nodePos.z(); + ropePositions[ indexFloat ++ ] = nodePos.x(); + ropePositions[ indexFloat ++ ] = nodePos.y(); + ropePositions[ indexFloat ++ ] = nodePos.z(); } rope.geometry.attributes.position.needsUpdate = true; // Update rigid bodies - for ( var i = 0, il = rigidBodies.length; i < il; i++ ) { + for ( var i = 0, il = rigidBodies.length; i < il; i ++ ) { + var objThree = rigidBodies[ i ]; var objPhys = objThree.userData.physicsBody; var ms = objPhys.getMotionState(); @@ -471,6 +481,7 @@ objThree.quaternion.set( q.x(), q.y(), q.z(), q.w() ); } + } } diff --git a/examples/webgl_physics_terrain.html b/examples/webgl_physics_terrain.html index 837eeae40dac2e..fdb36428b41ddc 100644 --- a/examples/webgl_physics_terrain.html +++ b/examples/webgl_physics_terrain.html @@ -1,439 +1,446 @@ - - Ammo.js terrain heightfield demo - - - - - -





    Loading...
    -
    Ammo.js physics terrain heightfield demo
    - - - - - - - - + + + + - var heightData = null; - var ammoHeightData = null; + + } + + } + + - + diff --git a/examples/webgl_physics_volume.html b/examples/webgl_physics_volume.html index 16c87634ad68fd..ead192ca8660a5 100644 --- a/examples/webgl_physics_volume.html +++ b/examples/webgl_physics_volume.html @@ -21,9 +21,7 @@ padding: 5px; } - a { - color: #a06851; - } + a { color: #a06851; } @@ -38,8 +36,6 @@ diff --git a/examples/canvas_particles_waves.html b/examples/webgl_points_waves.html similarity index 52% rename from examples/canvas_particles_waves.html rename to examples/webgl_points_waves.html index 63431e6f16d12f..37c4bb92afe299 100644 --- a/examples/canvas_particles_waves.html +++ b/examples/webgl_points_waves.html @@ -1,37 +1,89 @@ - three.js canvas - particles - waves + three.js webgl - particles - waves - - - +
    + three.js - webgl particles waves example +
    + + + + + + + @@ -62,14 +60,13 @@ var windowHalfX = window.innerWidth / 2; var windowHalfY = window.innerHeight / 2; - var postprocessing = { enabled : true }; + var postprocessing = { enabled: true }; var shaderSettings = { rings: 3, samples: 4 }; - var singleMaterial = false; var mouse = new THREE.Vector2(); var raycaster = new THREE.Raycaster(); var distance = 100; @@ -142,11 +139,11 @@ var planePiece = new THREE.PlaneBufferGeometry( 10, 10, 1, 1 ); var planeMat = new THREE.MeshPhongMaterial( { - color: 0xffffff * 0.4, - shininess: 0.5, - specular: 0xffffff, - envMap: textureCube, - side: THREE.DoubleSide + color: 0xffffff * 0.4, + shininess: 0.5, + specular: 0xffffff, + envMap: textureCube, + side: THREE.DoubleSide } ); var rand = Math.random; @@ -160,8 +157,8 @@ plane.rotation.dz = rand() * 0.1; plane.position.set( rand() * 150, 0 + rand() * 300, rand() * 150 ); - plane.position.dx = (rand() - 0.5 ); - plane.position.dz = (rand() - 0.5 ); + plane.position.dx = ( rand() - 0.5 ); + plane.position.dz = ( rand() - 0.5 ); scene.add( plane ); planes.push( plane ); @@ -180,7 +177,7 @@ shininess: 50, reflectivity: 1.0, flatShading: true - }); + } ); var monkeys = 20; @@ -211,14 +208,14 @@ var ballmaterial = new THREE.MeshPhongMaterial( { color: 0xffffff * Math.random(), shininess: 0.5, - specular: 0xffffff , + specular: 0xffffff, envMap: textureCube } ); var mesh = new THREE.Mesh( geometry, ballmaterial ); mesh.position.x = ( Math.random() - 0.5 ) * 200; mesh.position.y = Math.random() * 50; - mesh.position.z = ( Math.random() - 0.5 ) * 200; + mesh.position.z = ( Math.random() - 0.5 ) * 200; mesh.scale.multiplyScalar( 10 ); scene.add( mesh ); @@ -233,7 +230,7 @@ scene.add( directionalLight ); var directionalLight = new THREE.DirectionalLight( 0xffffff, 1 ); - directionalLight.position.set( - 2, 1.2, -10 ).normalize(); + directionalLight.position.set( - 2, 1.2, - 10 ).normalize(); scene.add( directionalLight ); initPostprocessing(); @@ -245,7 +242,7 @@ document.addEventListener( 'touchstart', onDocumentTouchStart, false ); document.addEventListener( 'touchmove', onDocumentTouchMove, false ); - effectController = { + effectController = { enabled: true, jsDepthCalculation: true, @@ -273,7 +270,7 @@ }; - var matChanger = function() { + var matChanger = function () { for ( var e in effectController ) { @@ -288,7 +285,7 @@ postprocessing.enabled = effectController.enabled; postprocessing.bokeh_uniforms[ 'znear' ].value = camera.near; postprocessing.bokeh_uniforms[ 'zfar' ].value = camera.far; - camera.setFocalLength(effectController.focalLength); + camera.setFocalLength( effectController.focalLength ); }; @@ -310,7 +307,7 @@ gui.add( effectController, 'threshold', 0, 1, 0.001 ).onChange( matChanger ); gui.add( effectController, 'gain', 0, 100, 0.001 ).onChange( matChanger ); - gui.add( effectController, 'bias', 0,3, 0.001 ).onChange( matChanger ); + gui.add( effectController, 'bias', 0, 3, 0.001 ).onChange( matChanger ); gui.add( effectController, 'fringe', 0, 5, 0.001 ).onChange( matChanger ); gui.add( effectController, 'focalLength', 16, 80, 0.001 ).onChange( matChanger ); @@ -321,8 +318,8 @@ gui.add( effectController, 'pentagon' ).onChange( matChanger ); - gui.add( shaderSettings, 'rings', 1, 8).step(1).onChange( shaderUpdate ); - gui.add( shaderSettings, 'samples', 1, 13).step(1).onChange( shaderUpdate ); + gui.add( shaderSettings, 'rings', 1, 8 ).step( 1 ).onChange( shaderUpdate ); + gui.add( shaderSettings, 'samples', 1, 13 ).step( 1 ).onChange( shaderUpdate ); matChanger(); @@ -358,6 +355,7 @@ mouse.y = - ( event.touches[ 0 ].pageY - windowHalfY ) / windowHalfY; } + } function onDocumentTouchMove( event ) { @@ -377,7 +375,7 @@ postprocessing.scene = new THREE.Scene(); - postprocessing.camera = new THREE.OrthographicCamera( window.innerWidth / - 2, window.innerWidth / 2, window.innerHeight / 2, window.innerHeight / - 2, -10000, 10000 ); + postprocessing.camera = new THREE.OrthographicCamera( window.innerWidth / - 2, window.innerWidth / 2, window.innerHeight / 2, window.innerHeight / - 2, - 10000, 10000 ); postprocessing.camera.position.z = 100; postprocessing.scene.add( postprocessing.camera ); @@ -438,7 +436,6 @@ } - function smoothstep( near, far, depth ) { var x = saturate( ( depth - near ) / ( far - near ) ); @@ -475,15 +472,15 @@ var targetDistance = intersects[ 0 ].distance; - distance += (targetDistance - distance) * 0.03; + distance += ( targetDistance - distance ) * 0.03; - var sdistance = smoothstep(camera.near, camera.far, distance); + var sdistance = smoothstep( camera.near, camera.far, distance ); - var ldistance = linearize(1 - sdistance); + var ldistance = linearize( 1 - sdistance ); postprocessing.bokeh_uniforms[ 'focalDepth' ].value = ldistance; - effectController['focalDepth'] = ldistance; + effectController[ 'focalDepth' ] = ldistance; } @@ -534,7 +531,6 @@ } - diff --git a/examples/webgl_postprocessing_fxaa.html b/examples/webgl_postprocessing_fxaa.html index 4263c13c7db85c..36944cd0c18340 100644 --- a/examples/webgl_postprocessing_fxaa.html +++ b/examples/webgl_postprocessing_fxaa.html @@ -55,6 +55,7 @@ var loader = new THREE.TextureLoader(); loader.load( "textures/fxaa_scene.png", function onLoad( texture ) { + var image = texture.image; texture.minFilter = THREE.LinearFilter; texture.magFilter = THREE.LinearFilter; @@ -75,7 +76,7 @@ scene1.add( quad1 ); scene2.add( quad2 ); - var camera = new THREE.OrthographicCamera( -0.5, 0.5, 0.5, -0.5, -0.5, 0.5 ); + var camera = new THREE.OrthographicCamera( - 0.5, 0.5, 0.5, - 0.5, - 0.5, 0.5 ); var container = document.getElementById( 'container' ); @@ -92,8 +93,10 @@ renderer1.render( scene1, camera ); renderer2.render( scene2, camera ); - }); - })(); + + } ); + + } )(); diff --git a/examples/webgl_postprocessing_glitch.html b/examples/webgl_postprocessing_glitch.html index 476bc9375e5f71..e90ce08e30fdd4 100644 --- a/examples/webgl_postprocessing_glitch.html +++ b/examples/webgl_postprocessing_glitch.html @@ -21,9 +21,7 @@ width: 100%; } - label, input { - cursor: pointer; - } + input { cursor: pointer; } @@ -54,8 +52,10 @@ animate(); function updateOptions() { - var wildGlitch = document.getElementById('wildGlitch'); - glitchPass.goWild=wildGlitch.checked; + + var wildGlitch = document.getElementById( 'wildGlitch' ); + glitchPass.goWild = wildGlitch.checked; + } function init() { diff --git a/examples/webgl_postprocessing_godrays.html b/examples/webgl_postprocessing_godrays.html index bfda3becf2e39f..07aa8603af5130 100644 --- a/examples/webgl_postprocessing_godrays.html +++ b/examples/webgl_postprocessing_godrays.html @@ -16,9 +16,7 @@ text-align:center; } - a { - color:#0078ff; - } + a { color:#0078ff; } #info { color:#fff; @@ -56,7 +54,7 @@ var sphereMesh; - var sunPosition = new THREE.Vector3( 0, 1000, -1000 ); + var sunPosition = new THREE.Vector3( 0, 1000, - 1000 ); var screenSpacePosition = new THREE.Vector3(); var mouseX = 0, mouseY = 0; @@ -64,7 +62,7 @@ var windowHalfX = window.innerWidth / 2; var windowHalfY = window.innerHeight / 2; - var postprocessing = { enabled : true }; + var postprocessing = { enabled: true }; var orbitRadius = 200; @@ -98,7 +96,7 @@ loader.load( 'models/obj/tree.obj', function ( object ) { object.material = materialScene; - object.position.set( 0, -150, -150 ); + object.position.set( 0, - 150, - 150 ); object.scale.multiplyScalar( 400 ); scene.add( object ); @@ -179,7 +177,7 @@ postprocessing.scene = new THREE.Scene(); - postprocessing.camera = new THREE.OrthographicCamera( window.innerWidth / - 2, window.innerWidth / 2, window.innerHeight / 2, window.innerHeight / - 2, -10000, 10000 ); + postprocessing.camera = new THREE.OrthographicCamera( window.innerWidth / - 2, window.innerWidth / 2, window.innerHeight / 2, window.innerHeight / - 2, - 10000, 10000 ); postprocessing.camera.position.z = 100; postprocessing.scene.add( postprocessing.camera ); @@ -255,7 +253,7 @@ new THREE.PlaneBufferGeometry( window.innerWidth, window.innerHeight ), postprocessing.materialGodraysGenerate ); - postprocessing.quad.position.z = -9900; + postprocessing.quad.position.z = - 9900; postprocessing.scene.add( postprocessing.quad ); } @@ -344,7 +342,7 @@ postprocessing.godrayMaskUniforms[ "tInput" ].value = postprocessing.rtTextureDepth.texture; postprocessing.scene.overrideMaterial = postprocessing.materialGodraysDepthMask; - renderer.render( postprocessing.scene, postprocessing.camera, postprocessing.rtTextureDepthMask ); + renderer.render( postprocessing.scene, postprocessing.camera, postprocessing.rtTextureDepthMask ); // -- Render god-rays -- @@ -364,7 +362,7 @@ // pass 1 - render into first ping-pong target var pass = 1.0; - var stepLen = filterLen * Math.pow( TAPS_PER_PASS, -pass ); + var stepLen = filterLen * Math.pow( TAPS_PER_PASS, - pass ); postprocessing.godrayGenUniforms[ "fStepSize" ].value = stepLen; postprocessing.godrayGenUniforms[ "tInput" ].value = postprocessing.rtTextureDepthMask.texture; @@ -376,27 +374,27 @@ // pass 2 - render into second ping-pong target pass = 2.0; - stepLen = filterLen * Math.pow( TAPS_PER_PASS, -pass ); + stepLen = filterLen * Math.pow( TAPS_PER_PASS, - pass ); postprocessing.godrayGenUniforms[ "fStepSize" ].value = stepLen; postprocessing.godrayGenUniforms[ "tInput" ].value = postprocessing.rtTextureGodRays2.texture; - renderer.render( postprocessing.scene, postprocessing.camera, postprocessing.rtTextureGodRays1 ); + renderer.render( postprocessing.scene, postprocessing.camera, postprocessing.rtTextureGodRays1 ); // pass 3 - 1st RT pass = 3.0; - stepLen = filterLen * Math.pow( TAPS_PER_PASS, -pass ); + stepLen = filterLen * Math.pow( TAPS_PER_PASS, - pass ); postprocessing.godrayGenUniforms[ "fStepSize" ].value = stepLen; postprocessing.godrayGenUniforms[ "tInput" ].value = postprocessing.rtTextureGodRays1.texture; - renderer.render( postprocessing.scene, postprocessing.camera , postprocessing.rtTextureGodRays2 ); + renderer.render( postprocessing.scene, postprocessing.camera, postprocessing.rtTextureGodRays2 ); // final pass - composite god-rays onto colors - postprocessing.godrayCombineUniforms["tColors"].value = postprocessing.rtTextureColors.texture; - postprocessing.godrayCombineUniforms["tGodRays"].value = postprocessing.rtTextureGodRays2.texture; + postprocessing.godrayCombineUniforms[ "tColors" ].value = postprocessing.rtTextureColors.texture; + postprocessing.godrayCombineUniforms[ "tGodRays" ].value = postprocessing.rtTextureGodRays2.texture; postprocessing.scene.overrideMaterial = postprocessing.materialGodraysCombine; diff --git a/examples/webgl_postprocessing_outline.html b/examples/webgl_postprocessing_outline.html index 7bb620ae730dd8..9ef4ae53e3c055 100644 --- a/examples/webgl_postprocessing_outline.html +++ b/examples/webgl_postprocessing_outline.html @@ -126,13 +126,13 @@ var conf = new Configuration(); - var controllerVisible = gui.addColor( conf, 'visibleEdgeColor' ).onChange( function ( value ) { + gui.addColor( conf, 'visibleEdgeColor' ).onChange( function ( value ) { outlinePass.visibleEdgeColor.set( value ); } ); - var controllerHidden = gui.addColor( conf, 'hiddenEdgeColor' ).onChange( function ( value ) { + gui.addColor( conf, 'hiddenEdgeColor' ).onChange( function ( value ) { outlinePass.hiddenEdgeColor.set( value ); diff --git a/examples/webgl_postprocessing_procedural.html b/examples/webgl_postprocessing_procedural.html index b0fc9436ed2dbe..24b0e6535577de 100644 --- a/examples/webgl_postprocessing_procedural.html +++ b/examples/webgl_postprocessing_procedural.html @@ -81,10 +81,9 @@ @@ -53,7 +51,7 @@ } - var scene, camera, clock, renderer, controls, water; + var scene, camera, clock, renderer, water; var torusKnot; @@ -102,13 +100,15 @@ scene.add( ground ); var textureLoader = new THREE.TextureLoader(); - textureLoader.load( 'textures/hardwood2_diffuse.jpg', function( map ) { + textureLoader.load( 'textures/hardwood2_diffuse.jpg', function ( map ) { + map.wrapS = THREE.RepeatWrapping; map.wrapT = THREE.RepeatWrapping; map.anisotropy = 16; map.repeat.set( 4, 4 ); groundMaterial.map = map; groundMaterial.needsUpdate = true; + } ); // water @@ -171,23 +171,23 @@ var gui = new dat.GUI(); - gui.addColor( params, 'color' ).onChange( function( value ) { + gui.addColor( params, 'color' ).onChange( function ( value ) { water.material.uniforms.color.value.set( value ); } ); - gui.add( params, 'scale', 1, 10 ).onChange( function( value ) { + gui.add( params, 'scale', 1, 10 ).onChange( function ( value ) { water.material.uniforms.config.value.w = value; } ); - gui.add( params, 'flowX', - 1, 1 ).step( 0.01 ).onChange( function( value ) { + gui.add( params, 'flowX', - 1, 1 ).step( 0.01 ).onChange( function ( value ) { water.material.uniforms.flowDirection.value.x = value; water.material.uniforms.flowDirection.value.normalize(); } ); - gui.add( params, 'flowY', - 1, 1 ).step( 0.01 ).onChange( function( value ) { + gui.add( params, 'flowY', - 1, 1 ).step( 0.01 ).onChange( function ( value ) { water.material.uniforms.flowDirection.value.y = value; water.material.uniforms.flowDirection.value.normalize(); @@ -198,7 +198,7 @@ // - controls = new THREE.OrbitControls( camera, renderer.domElement ); + var controls = new THREE.OrbitControls( camera, renderer.domElement ); // diff --git a/examples/webgl_water_flowmap.html b/examples/webgl_water_flowmap.html index 2166460f82e397..bb9d17e83d1f23 100644 --- a/examples/webgl_water_flowmap.html +++ b/examples/webgl_water_flowmap.html @@ -24,9 +24,7 @@ text-align:center; } - a { - color: #ffffff; - } + a { color: #ffffff; } @@ -53,7 +51,7 @@ } - var scene, camera, renderer, controls, water; + var scene, camera, renderer, water; init(); animate(); @@ -79,13 +77,15 @@ scene.add( ground ); var textureLoader = new THREE.TextureLoader(); - textureLoader.load( 'textures/floors/FloorsCheckerboard_S_Diffuse.jpg', function( map ) { + textureLoader.load( 'textures/floors/FloorsCheckerboard_S_Diffuse.jpg', function ( map ) { + map.wrapS = THREE.RepeatWrapping; map.wrapT = THREE.RepeatWrapping; map.anisotropy = 16; map.repeat.set( 4, 4 ); groundMaterial.map = map; groundMaterial.needsUpdate = true; + } ); // water @@ -124,12 +124,12 @@ // var gui = new dat.GUI(); - gui.add( helper, 'visible' ).name( 'Show Flow Map'); + gui.add( helper, 'visible' ).name( 'Show Flow Map' ); gui.open(); // - controls = new THREE.OrbitControls( camera, renderer.domElement ); + var controls = new THREE.OrbitControls( camera, renderer.domElement ); // diff --git a/examples/webgl_worker_offscreencanvas.html b/examples/webgl_worker_offscreencanvas.html index 653621cb3b64dc..a74a25a2d39762 100644 --- a/examples/webgl_worker_offscreencanvas.html +++ b/examples/webgl_worker_offscreencanvas.html @@ -34,9 +34,7 @@ color: #ff0000; } - a { - color: #ffffff; - } + a { color: #ffffff; } diff --git a/examples/webgldeferred_animation.html b/examples/webgldeferred_animation.html index dff9a5b868f854..1640396c816fc0 100644 --- a/examples/webgldeferred_animation.html +++ b/examples/webgldeferred_animation.html @@ -50,6 +50,8 @@ + + - - - - - - diff --git a/examples/webvr_lorenzattractor.html b/examples/webvr_lorenzattractor.html index 93c1878f0abb8b..80c310404e9d52 100644 --- a/examples/webvr_lorenzattractor.html +++ b/examples/webvr_lorenzattractor.html @@ -6,10 +6,10 @@ - - - - + + + +